Search in sources :

Example 1 with BlockArbStairs

use of forestry.arboriculture.gadgets.BlockArbStairs in project ForestryMC by ForestryMC.

the class PluginArboriculture method preInit.

@Override
public void preInit() {
    super.preInit();
    ForestryBlock.log1.registerBlock(new BlockLog(LogCat.CAT0), ItemWoodBlock.class, "log1");
    ForestryBlock.log2.registerBlock(new BlockLog(LogCat.CAT1), ItemWoodBlock.class, "log2");
    ForestryBlock.log3.registerBlock(new BlockLog(LogCat.CAT2), ItemWoodBlock.class, "log3");
    ForestryBlock.log4.registerBlock(new BlockLog(LogCat.CAT3), ItemWoodBlock.class, "log4");
    ForestryBlock.log5.registerBlock(new BlockLog(LogCat.CAT4), ItemWoodBlock.class, "log5");
    ForestryBlock.log6.registerBlock(new BlockLog(LogCat.CAT5), ItemWoodBlock.class, "log6");
    ForestryBlock.log7.registerBlock(new BlockLog(LogCat.CAT6), ItemWoodBlock.class, "log7");
    ForestryBlock.log8.registerBlock(new BlockLog(LogCat.CAT7), ItemWoodBlock.class, "log8");
    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");
    ForestryBlock.fireproofLog8.registerBlock(new BlockFireproofLog(LogCat.CAT7), ItemWoodBlock.class, "fireproofLog8");
    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());
    }
    ForestryBlock.fireproofPlanks1.registerBlock(new BlockFireproofPlanks(PlankCat.CAT0), ItemWoodBlock.class, "fireproofPlanks1");
    ForestryBlock.fireproofPlanks2.registerBlock(new BlockFireproofPlanks(PlankCat.CAT1), ItemWoodBlock.class, "fireproofPlanks2");
    for (ForestryBlock plank : fireproofPlanks) {
        plank.block().setHarvestLevel("axe", 0);
        OreDictionary.registerOre("plankWood", plank.getWildcard());
    }
    ForestryBlock.slabs1.registerBlock(new BlockSlab(SlabCat.CAT0), ItemWoodBlock.class, "slabs1");
    ForestryBlock.slabs2.registerBlock(new BlockSlab(SlabCat.CAT1), ItemWoodBlock.class, "slabs2");
    ForestryBlock.slabs3.registerBlock(new BlockSlab(SlabCat.CAT2), ItemWoodBlock.class, "slabs3");
    ForestryBlock.slabs4.registerBlock(new BlockSlab(SlabCat.CAT3), ItemWoodBlock.class, "slabs4");
    for (ForestryBlock plank : slabs) {
        plank.block().setHarvestLevel("axe", 0);
        OreDictionary.registerOre("slabWood", plank.getWildcard());
    }
    // Fences
    ForestryBlock.fences1.registerBlock(new BlockArbFence(FenceCat.CAT0), ItemWoodBlock.class, "fences");
    ForestryBlock.fences2.registerBlock(new BlockArbFence(FenceCat.CAT1), ItemWoodBlock.class, "fences2");
    for (ForestryBlock block : fences) {
        block.block().setHarvestLevel("axe", 0);
        OreDictionary.registerOre("fenceWood", block.getWildcard());
    }
    // Stairs
    ForestryBlock.stairs.registerBlock(new BlockArbStairs(ForestryBlock.planks1.block(), 0), ItemStairs.class, "stairs");
    ForestryBlock.stairs.block().setHarvestLevel("axe", 0);
    // Saplings
    ForestryBlock.saplingGE.registerBlock(new BlockSapling(), ItemForestryBlock.class, "saplingGE");
    // Leaves
    ForestryBlock.leaves.registerBlock(new ForestryBlockLeaves(), ItemLeavesBlock.class, "leaves");
    OreDictionary.registerOre("treeLeaves", ForestryBlock.leaves.getWildcard());
    // Pods
    ForestryBlock.pods.registerBlock(new BlockFruitPod(), ItemForestryBlock.class, "pods");
    // Machines
    ForestryBlock.arboriculture.registerBlock(new BlockBase(Material.iron), ItemForestryBlock.class, "arboriculture");
    ForestryBlock.arboriculture.block().setCreativeTab(Tabs.tabArboriculture);
    definitionChest = ((BlockBase) ForestryBlock.arboriculture.block()).addDefinition(new MachineDefinition(Defaults.DEFINITION_ARBCHEST_META, "forestry.ArbChest", TileArboristChest.class, ShapedRecipeCustom.createShapedRecipe(ForestryBlock.arboriculture.getItemStack(1, Defaults.DEFINITION_ARBCHEST_META), " # ", "XYX", "XXX", '#', Blocks.glass, 'X', "treeSapling", 'Y', Blocks.chest)).setFaces(0, 1, 2, 3, 4, 4, 0, 7));
    // Init rendering
    proxy.initializeRendering();
    // Register vanilla and forestry fence ids
    validFences.add(ForestryBlock.fences1.block());
    validFences.add(ForestryBlock.fences2.block());
    validFences.add(Blocks.fence);
    validFences.add(Blocks.fence_gate);
    validFences.add(Blocks.nether_brick_fence);
    // Commands
    PluginCore.rootCommand.addChildCommand(new CommandTree());
    // Create alleles
    createAlleles();
    createMutations();
    registerTemplates();
    registerErsatzGenomes();
}
Also used : MachineDefinition(forestry.core.gadgets.MachineDefinition) ForestryBlockLeaves(forestry.arboriculture.gadgets.ForestryBlockLeaves) TileArboristChest(forestry.arboriculture.gadgets.TileArboristChest) BlockFireproofPlanks(forestry.arboriculture.gadgets.BlockFireproofPlanks) BlockLog(forestry.arboriculture.gadgets.BlockLog) ItemForestryBlock(forestry.core.items.ItemForestryBlock) ForestryBlock(forestry.core.config.ForestryBlock) BlockPlanks(forestry.arboriculture.gadgets.BlockPlanks) BlockArbStairs(forestry.arboriculture.gadgets.BlockArbStairs) BlockBase(forestry.core.gadgets.BlockBase) BlockSlab(forestry.arboriculture.gadgets.BlockSlab) BlockArbFence(forestry.arboriculture.gadgets.BlockArbFence) BlockSapling(forestry.arboriculture.gadgets.BlockSapling) BlockFireproofLog(forestry.arboriculture.gadgets.BlockFireproofLog) CommandTree(forestry.arboriculture.commands.CommandTree) BlockFruitPod(forestry.arboriculture.gadgets.BlockFruitPod)

Aggregations

CommandTree (forestry.arboriculture.commands.CommandTree)1 BlockArbFence (forestry.arboriculture.gadgets.BlockArbFence)1 BlockArbStairs (forestry.arboriculture.gadgets.BlockArbStairs)1 BlockFireproofLog (forestry.arboriculture.gadgets.BlockFireproofLog)1 BlockFireproofPlanks (forestry.arboriculture.gadgets.BlockFireproofPlanks)1 BlockFruitPod (forestry.arboriculture.gadgets.BlockFruitPod)1 BlockLog (forestry.arboriculture.gadgets.BlockLog)1 BlockPlanks (forestry.arboriculture.gadgets.BlockPlanks)1 BlockSapling (forestry.arboriculture.gadgets.BlockSapling)1 BlockSlab (forestry.arboriculture.gadgets.BlockSlab)1 ForestryBlockLeaves (forestry.arboriculture.gadgets.ForestryBlockLeaves)1 TileArboristChest (forestry.arboriculture.gadgets.TileArboristChest)1 ForestryBlock (forestry.core.config.ForestryBlock)1 BlockBase (forestry.core.gadgets.BlockBase)1 MachineDefinition (forestry.core.gadgets.MachineDefinition)1 ItemForestryBlock (forestry.core.items.ItemForestryBlock)1