Package mods.natura.blocks.overrides

Examples of mods.natura.blocks.overrides.NetherLever


        GameRegistry.registerBlock(netherHopper, "NetherHopper");
        netherPressurePlate = new AlternatePressurePlate("netherrack", Material.rock, Sensitivity.mobs).setHardness(0.5F).setStepSound(Block.soundTypeStone).setBlockName("pressurePlate");
        GameRegistry.registerBlock(netherPressurePlate, "NetherPressurePlate");
        netherButton = new NetherrackButton().setHardness(0.5F).setStepSound(Block.soundTypeStone).setBlockName("button");
        GameRegistry.registerBlock(netherButton, "NetherButton");
        netherLever = new NetherLever().setHardness(0.5F).setStepSound(Block.soundTypeWood).setBlockName("lever").setBlockTextureName("natura:nlever");
        GameRegistry.registerBlock(netherLever, "NetherLever");
        /*public static Block netherDropper;
        public static Block netherDispenser;*/

        /*piston = (NetherPistonBase) new NetherPistonBase(PHNatura.piston, false).setBlockName("nether.piston");
View Full Code Here

TOP

Related Classes of mods.natura.blocks.overrides.NetherLever

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.