Advertisement
Guest User

Untitled

a guest
May 7th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.50 KB | None | 0 0
  1. ItemEntityCatcher
  2. public abstract class ItemEntityCatcher extends Item {
  3.  
  4.     public ItemEntityCatcher(String name) {
  5.         setMaxStackSize(1);
  6.         setUnlocalizedName(EntityCatcher.MODID + "_" + name);
  7.         setCreativeTab(EntityCatcher.tab);
  8.         setRegistryName(name);
  9.         GameRegistry.register(this);
  10.     }
  11.  
  12.     @Override
  13.     public EnumActionResult onItemUse(ItemStack stack, EntityPlayer player, World world, BlockPos pos, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ) {
  14.         if (!world.isRemote) {
  15.             NBTTagCompound nbt = NBTTagCompounds.getOrCreateTag(stack);
  16.             NBTTagCompound entityNBT = nbt.getCompoundTag("WrittenEntity");
  17.             Entity entityFromNBT = EntityList.createEntityFromNBT(entityNBT, world);
  18.             world.spawnEntityInWorld(entityFromNBT);
  19.             stack.damageItem(1, player);
  20.         }
  21.         return EnumActionResult.SUCCESS;
  22.     }
  23.  
  24.     @Override
  25.     public void addInformation(ItemStack stack, EntityPlayer playerIn, List<String> tooltip, boolean advanced) {
  26.         super.addInformation(stack, playerIn, tooltip, advanced);
  27.     }
  28.  
  29.     public static class SingleUseEntityCatcher extends ItemEntityCatcher {
  30.  
  31.         public SingleUseEntityCatcher() {
  32.             super("single_use_catcher");
  33.             setMaxDamage(1);
  34.         }
  35.     }
  36.  
  37.     public static class MultiUseEntityCatcher extends ItemEntityCatcher {
  38.  
  39.         public MultiUseEntityCatcher() {
  40.             super("multi_use_catcher");
  41.             setMaxDamage(25);
  42.         }
  43.     }
  44. }
  45.  
  46.  
  47. The Event Handler:
  48. public class ECEventHandler {
  49.  
  50.     @SubscribeEvent
  51.     public void interactionEvent(PlayerInteractEvent.EntityInteract event) {
  52.         EntityPlayer player = event.getEntityPlayer();
  53.         if (!player.worldObj.isRemote) {
  54.             Entity entity = event.getTarget();
  55.             if (entity != null && !entity.isRiding()) {
  56.                 ItemStack held = player.getHeldItemMainhand();
  57.                 if (held != null && held.getItem() instanceof ItemEntityCatcher) {
  58.                     NBTTagCompound nbt = NBTTagCompounds.getOrCreateTag(held);
  59.                     NBTTagCompound entityNBT = new NBTTagCompound();
  60.                     entity.writeToNBTOptional(entityNBT);
  61.                     nbt.setTag("WrittenEntity", entityNBT);
  62.                     entity.setGlowing(true);
  63.                     entity.attackEntityFrom(EntityDamageSource.outOfWorld, Float.MAX_VALUE);
  64.                 }
  65.             }
  66.         }
  67.     }
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement