Reformated

This commit is contained in:
Frank 2022-06-08 20:58:41 +02:00
parent fc1da134e7
commit 60e8008cb7
416 changed files with 5772 additions and 4573 deletions

View file

@ -1,32 +1,38 @@
package org.betterx.betterend.effects;
import org.betterx.betterend.BetterEnd;
import org.betterx.betterend.effects.status.EndVeilEffect;
import net.minecraft.core.Registry;
import net.minecraft.world.effect.MobEffect;
import net.minecraft.world.effect.MobEffectInstance;
import net.minecraft.world.effect.MobEffects;
import org.betterx.betterend.BetterEnd;
import org.betterx.betterend.effects.status.EndVeilEffect;
public class EndStatusEffects {
public final static MobEffectInstance CRYSTALITE_HEALTH_REGEN = new MobEffectInstance(MobEffects.REGENERATION,
80,
0,
true,
false,
true);
public final static MobEffectInstance CRYSTALITE_DIG_SPEED = new MobEffectInstance(MobEffects.DIG_SPEED,
80,
0,
true,
false,
true);
public final static MobEffectInstance CRYSTALITE_MOVE_SPEED = new MobEffectInstance(MobEffects.MOVEMENT_SPEED,
80,
0,
true,
false,
true);
public final static MobEffectInstance CRYSTALITE_HEALTH_REGEN = new MobEffectInstance(
MobEffects.REGENERATION,
80,
0,
true,
false,
true
);
public final static MobEffectInstance CRYSTALITE_DIG_SPEED = new MobEffectInstance(
MobEffects.DIG_SPEED,
80,
0,
true,
false,
true
);
public final static MobEffectInstance CRYSTALITE_MOVE_SPEED = new MobEffectInstance(
MobEffects.MOVEMENT_SPEED,
80,
0,
true,
false,
true
);
public final static MobEffect END_VEIL = registerEffect("end_veil", new EndVeilEffect());