Advertisement
Guest User

Untitled

a guest
Jul 24th, 2014
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.48 KB | None | 0 0
  1. package com.kurisubrooks.starter.item;
  2.  
  3. import net.minecraft.item.ItemFood;
  4. import net.minecraft.item.ItemStack;
  5. import net.minecraft.potion.Potion;
  6. import net.minecraft.potion.PotionEffect;
  7. import net.minecraft.potion.PotionHealth;
  8.  
  9. public class ItemFoodTest extends ItemFood
  10. {
  11.  
  12.     public ItemFoodTest()
  13.     {
  14.         super();
  15.         this.setUnlocalizedName("foodTest");
  16.         this.setAlwaysEdible();
  17.         this.setPotionEffect(int 6, int 200, int 1, float 1.0f);
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement