Package forestry.core.items

Examples of forestry.core.items.ItemForestryPickaxe


    // / RECLAMATION
    ForestryItem.brokenBronzePickaxe.registerItem((new ItemForestry()), "brokenBronzePickaxe");
    ForestryItem.brokenBronzeShovel.registerItem((new ItemForestry()), "brokenBronzeShovel");

    // / TOOLS
    ForestryItem.bronzePickaxe.registerItem(new ItemForestryPickaxe(ForestryItem.brokenBronzePickaxe.getItemStack()), "bronzePickaxe");
    ForestryItem.bronzePickaxe.item().setHarvestLevel("pickaxe", 3);
    MinecraftForge.EVENT_BUS.register(ForestryItem.bronzePickaxe.item());
    ForestryItem.bronzeShovel.registerItem(new ItemForestryShovel(ForestryItem.brokenBronzeShovel.getItemStack()), "bronzeShovel");
    ForestryItem.bronzeShovel.item().setHarvestLevel("shovel", 3);
    MinecraftForge.EVENT_BUS.register(ForestryItem.bronzeShovel.item());
View Full Code Here

TOP

Related Classes of forestry.core.items.ItemForestryPickaxe

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.