Advertisement
gottabadfeeling

Paper Mario Mod 1.8 - Honey Syrup Definition Class

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