From 420faddca46e70e3a70def168fb4e452ef193b0d Mon Sep 17 00:00:00 2001 From: OnyxDarkKnight Date: Sat, 21 Feb 2015 21:31:16 +0000 Subject: Added just a butt ton of stuff, also thanks to pau101 for helping me with the Hand Pedestal animation :) --- .../darkknight/jewelrycraft/curses/CurseGreed.java | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 java/darkknight/jewelrycraft/curses/CurseGreed.java (limited to 'java/darkknight/jewelrycraft/curses/CurseGreed.java') diff --git a/java/darkknight/jewelrycraft/curses/CurseGreed.java b/java/darkknight/jewelrycraft/curses/CurseGreed.java new file mode 100644 index 0000000..1626925 --- /dev/null +++ b/java/darkknight/jewelrycraft/curses/CurseGreed.java @@ -0,0 +1,30 @@ +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 CurseGreed extends Curse +{ + public CurseGreed(int id, String name, int text) + { + super(id, name, text); + } + + @Override + public void action(World world, EntityPlayer player) + { + } + + @Override + public boolean itemToss() + { + return true; + } + + public String getDescription() + { + return "You might need that later"; + } +} -- cgit v1.2.3