Guest User

ItemSilverSword

a guest
Oct 14th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. package passage.extrafurniture.item;
  2.  
  3. import net.minecraft.item.Item;
  4. import passage.extrafurniture.ExtraFurniture;
  5.  
  6. public class ItemSilverSword extends Item{
  7.  
  8. public ItemSilverSword()
  9. {
  10. setRegistryName("firstitem"); // The unique name (within your mod) that identifies this item
  11. setUnlocalizedName(ExtraFurniture.MODID + ".firstitem"); // Used for localization (en_US.lang)
  12. }
  13.  
  14. }
Add Comment
Please, Sign In to add comment