blob: 41620018ff5c6d1a8111260dbaf6acbb5a837ebc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
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");
}
}
|