Package forestry.arboriculture.gadgets

Examples of forestry.arboriculture.gadgets.BlockPlanks


    for (ForestryBlock fireproofLog : fireproofLogs) {
      fireproofLog.block().setHarvestLevel("axe", 0);
      OreDictionary.registerOre("logWood", fireproofLog.getWildcard());
    }

    ForestryBlock.planks1.registerBlock(new BlockPlanks(PlankCat.CAT0), ItemWoodBlock.class, "planks");
    ForestryBlock.planks2.registerBlock(new BlockPlanks(PlankCat.CAT1), ItemWoodBlock.class, "planks2");

    for (ForestryBlock plank : planks) {
      plank.block().setHarvestLevel("axe", 0);
      OreDictionary.registerOre("plankWood", plank.getWildcard());
    }
View Full Code Here

TOP

Related Classes of forestry.arboriculture.gadgets.BlockPlanks

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.