Enchantment and potions
This commit is contained in:
parent
64f4285fbb
commit
b79339e5bc
13 changed files with 169 additions and 6 deletions
16
src/main/java/ru/betterend/effects/status/EndVeilEffect.java
Normal file
16
src/main/java/ru/betterend/effects/status/EndVeilEffect.java
Normal file
|
@ -0,0 +1,16 @@
|
|||
package ru.betterend.effects.status;
|
||||
|
||||
import net.minecraft.entity.effect.StatusEffect;
|
||||
import net.minecraft.entity.effect.StatusEffectType;
|
||||
|
||||
public class EndVeilEffect extends StatusEffect {
|
||||
|
||||
public EndVeilEffect() {
|
||||
super(StatusEffectType.BENEFICIAL, 0x0D554A);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canApplyUpdateEffect(int duration, int amplifier) {
|
||||
return false;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue