package darkknight.jewelrycraft.curses; import darkknight.jewelrycraft.api.Curse; import darkknight.jewelrycraft.config.ConfigHandler; import darkknight.jewelrycraft.util.Variables; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.util.StatCollector; import net.minecraft.world.World; import net.minecraftforge.event.entity.living.LivingHealEvent; public class CurseScionOfHell extends Curse { public CurseScionOfHell(String name, int txtID, String texturepack) { super(name, txtID, texturepack); } @Override public void entityDeathAction(World world, EntityLivingBase target, EntityPlayer player) { player.setHealth(Math.max(player.getMaxHealth(), player.getHealth() + target.getMaxHealth() / 5.0f)); } @Override public void playerHealAction(World world, EntityPlayer player, LivingHealEvent event) { event.amount = 0; } @Override public boolean canCurseBeActivated() { return ConfigHandler.CURSE_SCION_OF_HELL; } @Override public String getDescription() { return StatCollector.translateToLocal("curse." + Variables.MODID + ".scionofhell.description"); } @Override public String getDisplayName() { return StatCollector.translateToLocal("curse." + Variables.MODID + ".scionofhell"); } }