pryingtuna85649

EmeraldBlockItems

Apr 24th, 2014
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. package com.wizardofoz.basic;
  2.  
  3. import net.minecraft.item.Item;
  4. import cpw.mods.fml.common.Mod;
  5. import cpw.mods.fml.common.SidedProxy;
  6. import com.wizardofoz.basic.item.EmeraldAxe;
  7.  
  8. @Mod(modid = "EmeraldBlock", name = "EmeraldBlock", version = "ALPHA 1.0")
  9. public class EmeraldBlockItems {
  10. @SidedProxy(clientSide = "com.wizardofoz.basic.ClientProxy", serverSide = "com.wizardofoz.basic.CommonProxy")
  11. public static CommonProxy proxy;
  12.  
  13. public static Item EmeraldAxe = new EmeraldAxe(3000, Emerald).setUnlocalizedName("EmeraldAxe").setTextureName("EmeraldBlockItems:EmeraldAxe");
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment