Advertisement
gottabadfeeling

Paper Mario Mod 1.8 - Apple Pie Item Class

Apr 18th, 2015
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. package com.gottabadfeeling.mod.papermario.items;
  2.  
  3. import net.minecraft.item.ItemFood;
  4. import net.minecraft.potion.Potion;
  5.  
  6. public class ItemApplePie extends ItemFood {
  7.  
  8.     public ItemApplePie()
  9.     {
  10.         super(5, 0.8F, false);
  11.         this.setPotionEffect(Potion.damageBoost.id, 15, 2, 1.0F);
  12.         this.setAlwaysEdible();
  13.     }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement