Package tconstruct.blocks

Examples of tconstruct.blocks.SlabBase


    {
        MinecraftForge.EVENT_BUS.register(new TinkerWorldEvents());

        //Blocks
        TinkerWorld.meatBlock = new MeatBlock().setBlockName("tconstruct.meatblock");
        TinkerWorld.woolSlab1 = new SlabBase(Material.cloth, Blocks.wool, 0, 8).setBlockName("cloth");
        TinkerWorld.woolSlab1.setStepSound(Block.soundTypeCloth).setCreativeTab(CreativeTabs.tabDecorations);
        TinkerWorld.woolSlab2 = new SlabBase(Material.cloth, Blocks.wool, 8, 8).setBlockName("cloth");
        TinkerWorld.woolSlab2.setStepSound(Block.soundTypeCloth).setCreativeTab(CreativeTabs.tabDecorations);
        // Traps
        TinkerWorld.punji = new Punji().setBlockName("trap.punji");
        TinkerWorld.barricadeOak = new BarricadeBlock(Blocks.log, 0).setBlockName("trap.barricade.oak");
        TinkerWorld.barricadeSpruce = new BarricadeBlock(Blocks.log, 1).setBlockName("trap.barricade.spruce");
View Full Code Here

TOP

Related Classes of tconstruct.blocks.SlabBase

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.