blob: 050605d79ee8b16e39d0b0852afa15f348a08108 (
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
47
48
49
|
package darkknight.jewelrycraft.curses;
import darkknight.jewelrycraft.api.Curse;
import darkknight.jewelrycraft.config.ConfigHandler;
import darkknight.jewelrycraft.util.Variables;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.util.StatCollector;
import net.minecraft.world.World;
public class CurseRottenHeart extends Curse {
public CurseRottenHeart(String name, int txtID, String pack) {
super(name, txtID, pack);
}
@Override
public void action(World world, EntityPlayer player) {
if (!player.isPotionActive(Potion.poison) || player
.getActivePotionEffect(Potion.poison).getDuration() < 30)
player.addPotionEffect(new PotionEffect(Potion.poison.id, 80));
}
@Override
public String getDescription() {
return StatCollector.translateToLocal(
"curse." + Variables.MODID + ".rottenheart.description");
}
@Override
public String getDisplayName() {
return StatCollector.translateToLocal(
"curse." + Variables.MODID + ".rottenheart");
}
@Override
public boolean canCurseBeActivated(World world) {
if (world.getWorldInfo().isHardcoreModeEnabled()) {
return false;
}
return ConfigHandler.CURSE_ROTTEN_HEART;
}
@Override
public boolean canCurseBeActivated() {
return ConfigHandler.CURSE_ROTTEN_HEART;
}
}
|