Update to BCLib 0.3.0
This commit is contained in:
parent
1a52251af0
commit
b2431153dc
294 changed files with 7484 additions and 1440 deletions
|
@ -8,9 +8,30 @@ import ru.betterend.BetterEnd;
|
|||
import ru.betterend.effects.status.EndVeilEffect;
|
||||
|
||||
public class EndStatusEffects {
|
||||
public final static MobEffectInstance CRYSTALITE_HEALTH_REGEN = new MobEffectInstance(MobEffects.REGENERATION, 40, 0, true, false, true);
|
||||
public final static MobEffectInstance CRYSTALITE_DIG_SPEED = new MobEffectInstance(MobEffects.DIG_SPEED, 40, 0, true, false, true);
|
||||
public final static MobEffectInstance CRYSTALITE_MOVE_SPEED = new MobEffectInstance(MobEffects.MOVEMENT_SPEED, 40, 0, true, false, true);
|
||||
public final static MobEffectInstance CRYSTALITE_HEALTH_REGEN = new MobEffectInstance(
|
||||
MobEffects.REGENERATION,
|
||||
40,
|
||||
0,
|
||||
true,
|
||||
false,
|
||||
true
|
||||
);
|
||||
public final static MobEffectInstance CRYSTALITE_DIG_SPEED = new MobEffectInstance(
|
||||
MobEffects.DIG_SPEED,
|
||||
40,
|
||||
0,
|
||||
true,
|
||||
false,
|
||||
true
|
||||
);
|
||||
public final static MobEffectInstance CRYSTALITE_MOVE_SPEED = new MobEffectInstance(
|
||||
MobEffects.MOVEMENT_SPEED,
|
||||
40,
|
||||
0,
|
||||
true,
|
||||
false,
|
||||
true
|
||||
);
|
||||
|
||||
public final static MobEffect END_VEIL = registerEffect("end_veil", new EndVeilEffect());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue