Package forestry.arboriculture.gadgets

Examples of forestry.arboriculture.gadgets.BlockFireproofLog


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

    ForestryBlock.fireproofLog1.registerBlock(new BlockFireproofLog(LogCat.CAT0), ItemWoodBlock.class, "fireproofLog1");
    ForestryBlock.fireproofLog2.registerBlock(new BlockFireproofLog(LogCat.CAT1), ItemWoodBlock.class, "fireproofLog2");
    ForestryBlock.fireproofLog3.registerBlock(new BlockFireproofLog(LogCat.CAT2), ItemWoodBlock.class, "fireproofLog3");
    ForestryBlock.fireproofLog4.registerBlock(new BlockFireproofLog(LogCat.CAT3), ItemWoodBlock.class, "fireproofLog4");
    ForestryBlock.fireproofLog5.registerBlock(new BlockFireproofLog(LogCat.CAT4), ItemWoodBlock.class, "fireproofLog5");
    ForestryBlock.fireproofLog6.registerBlock(new BlockFireproofLog(LogCat.CAT5), ItemWoodBlock.class, "fireproofLog6");
    ForestryBlock.fireproofLog7.registerBlock(new BlockFireproofLog(LogCat.CAT6), ItemWoodBlock.class, "fireproofLog7");

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

TOP

Related Classes of forestry.arboriculture.gadgets.BlockFireproofLog

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.