From 6312636fd9a4d0f56dc7c9ff474a99d879bcb4e9 Mon Sep 17 00:00:00 2001 From: OnyxDarkKnight Date: Mon, 23 Mar 2015 14:51:06 +0000 Subject: Reworked the whole repo. --- .../jewelrycraft/curses/CurseRottenHeart.java | 25 ---------------------- 1 file changed, 25 deletions(-) delete mode 100644 java/darkknight/jewelrycraft/curses/CurseRottenHeart.java (limited to 'java/darkknight/jewelrycraft/curses/CurseRottenHeart.java') diff --git a/java/darkknight/jewelrycraft/curses/CurseRottenHeart.java b/java/darkknight/jewelrycraft/curses/CurseRottenHeart.java deleted file mode 100644 index f7fcfae..0000000 --- a/java/darkknight/jewelrycraft/curses/CurseRottenHeart.java +++ /dev/null @@ -1,25 +0,0 @@ -package darkknight.jewelrycraft.curses; - -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.potion.Potion; -import net.minecraft.potion.PotionEffect; -import net.minecraft.world.World; - -public class CurseRottenHeart extends Curse -{ - public CurseRottenHeart(int id, String name, int text) - { - super(id, name, text); - } - - @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)); - } - - public String getDescription() - { - return "Your heart slowly rots inside"; - } -} -- cgit v1.2.3