Package mods.natura.items.tools

Examples of mods.natura.items.tools.NaturaKama


        GameRegistry.registerItem(netherquartzPickaxe, "natura.pickaxe.netherquartz");
        netherquartzShovel = new NaturaShovel(ToolMaterial.STONE, "netherquartz").setUnlocalizedName("natura.shovel.netherquartz");
        GameRegistry.registerItem(netherquartzShovel, "natura.shovel.netherquartz");
        netherquartzAxe = new NaturaHatchet(ToolMaterial.STONE, "netherquartz").setUnlocalizedName("natura.axe.netherquartz");
        GameRegistry.registerItem(netherquartzAxe, "natura.axe.netherquartz");
        netherquartzKama = new NaturaKama(ToolMaterial.STONE, "netherquartz").setUnlocalizedName("natura.kama.netherquartz");
        GameRegistry.registerItem(netherquartzKama, "natura.kama.netherquartz");

        ghostwoodKama = new NaturaKama(ToolMaterial.WOOD, "ghostwood").setUnlocalizedName("natura.kama.ghostwood");
        GameRegistry.registerItem(ghostwoodKama, "natura.kama.ghostwood");
        bloodwoodKama = new NaturaKama(Bloodwood, "bloodwood").setUnlocalizedName("natura.kama.bloodwood");
        GameRegistry.registerItem(bloodwoodKama, "natura.kama.bloodwood");
        darkwoodKama = new NaturaKama(ToolMaterial.STONE, "darkwood").setUnlocalizedName("natura.kama.darkwood");
        GameRegistry.registerItem(darkwoodKama, "natura.kama.darkwood");
        fusewoodKama = new NaturaKama(ToolMaterial.IRON, "fusewood").setUnlocalizedName("natura.kama.fusewood");
        GameRegistry.registerItem(fusewoodKama, "natura.kama.fusewood");

        ghostwoodBow = new NaturaBow(384, "ghostwood").setUnlocalizedName("natura.bow.ghostwood");
        GameRegistry.registerItem(ghostwoodBow, "natura.bow.ghostwood");
        bloodwoodBow = new NaturaBow(1501, "bloodwood").setUnlocalizedName("natura.bow.bloodwood");
View Full Code Here

TOP

Related Classes of mods.natura.items.tools.NaturaKama

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.