package com.thexfactor117.losteclipse.items.scrolls; import com.thexfactor117.levels.leveling.Rarity; import com.thexfactor117.losteclipse.init.ModItems; import com.thexfactor117.losteclipse.items.base.ItemLE; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.ItemStack; import net.minecraft.util.ActionResult; import net.minecraft.util.EnumActionResult; import net.minecraft.util.EnumHand; import net.minecraft.world.World; /** * * @author TheXFactor117 * */ public class ItemFamiliarConjurationScroll extends ItemLE { public ItemFamiliarConjurationScroll(String name, Rarity rarity) { super(name, rarity); } @Override public ActionResult<ItemStack> onItemRightClick(World world, EntityPlayer player, EnumHand hand) { ItemStack stack = player.inventory.getCurrentItem(); if (player.inventory.getCurrentItem().getItem() == ModItems.hardenedScroll) { if (!world.isRemote) { // TODO: add entity and spawn in world //world.spawnEntityInWorld(entityIn) // decrease stack size by 1 stack.shrink(1); } } return new ActionResult<ItemStack>(EnumActionResult.SUCCESS, stack); } }