Package forestry.core.items

Examples of forestry.core.items.ItemAssemblyKit


    ForestryItem.bronzeShovel.registerItem(new ItemForestryShovel(ForestryItem.brokenBronzeShovel.getItemStack()), "bronzeShovel");
    ForestryItem.bronzeShovel.item().setHarvestLevel("shovel", 3);
    MinecraftForge.EVENT_BUS.register(ForestryItem.bronzeShovel.item());

    // / ASSEMBLY KITS
    ForestryItem.kitShovel.registerItem(new ItemAssemblyKit(ForestryItem.bronzeShovel.getItemStack()), "kitShovel");
    ForestryItem.kitPickaxe.registerItem(new ItemAssemblyKit(ForestryItem.bronzePickaxe.getItemStack()), "kitPickaxe");

    // / MOISTENER RESOURCES
    ForestryItem.mouldyWheat.registerItem((new ItemForestry()), "mouldyWheat");
    ForestryItem.decayingWheat.registerItem((new ItemForestry()), "decayingWheat");
    ForestryItem.mulch.registerItem((new ItemForestry()), "mulch");
View Full Code Here

TOP

Related Classes of forestry.core.items.ItemAssemblyKit

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.