diff options
| author | OnyxDarkKnight <sor1n.iliutza16@gmail.com> | 2015-04-23 18:08:44 +0100 |
|---|---|---|
| committer | OnyxDarkKnight <sor1n.iliutza16@gmail.com> | 2015-04-23 18:08:44 +0100 |
| commit | 05f43b228ae0de5bd33ccd303ebbadfaaa464bc7 (patch) | |
| tree | df2067001e0b28c2d40edc5ccde43830616ec8ce /src/main/java/darkknight/jewelrycraft/curses/Curse.java | |
| parent | 2a7e0a624f482a28af1c770dbcf2a20f52f94f78 (diff) | |
Added new curses!
Diffstat (limited to 'src/main/java/darkknight/jewelrycraft/curses/Curse.java')
| -rw-r--r-- | src/main/java/darkknight/jewelrycraft/curses/Curse.java | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/main/java/darkknight/jewelrycraft/curses/Curse.java b/src/main/java/darkknight/jewelrycraft/curses/Curse.java index f833542..75b4056 100644 --- a/src/main/java/darkknight/jewelrycraft/curses/Curse.java +++ b/src/main/java/darkknight/jewelrycraft/curses/Curse.java @@ -3,8 +3,11 @@ package darkknight.jewelrycraft.curses; import java.util.ArrayList; import java.util.Random; import net.minecraft.entity.Entity; +import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.item.EntityItem; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.world.World; +import net.minecraftforge.client.event.RenderPlayerEvent; public class Curse { @@ -77,7 +80,10 @@ public class Curse * @param world * @param player */ - public void deathAction(World world, EntityPlayer player) + public void playerDeathAction(World world, EntityPlayer player) + {} + + public void entityDeathAction(World world, EntityLivingBase target, EntityPlayer player) {} /** @@ -101,6 +107,12 @@ public class Curse public void attackedByPlayerAction(World world, EntityPlayer player, Entity target) {} + public void entityDropItems(EntityPlayer player, Entity target, ArrayList<EntityItem> drops) + {} + + public void playerRender(EntityPlayer player, RenderPlayerEvent.Specials.Post event) + {} + public boolean itemToss() { return false; |
