Package extrabiomes.blocks

Examples of extrabiomes.blocks.BlockRedRock


  private static void createRedRock() {
    if (!ModuleControlSettings.SUMMA.isEnabled() || !BlockSettings.REDROCK.getEnabled())
      return;

    final BlockRedRock block = new BlockRedRock();
    block.setBlockName("extrabiomes.redrock").setHardness(1.5F).setResistance(2.0F).setCreativeTab(Extrabiomes.tabsEBXL);

    final CommonProxy proxy = Extrabiomes.proxy;
    proxy.setBlockHarvestLevel(block, "pickaxe", 0);
    proxy.registerBlock(block, extrabiomes.items.ItemRedRock.class, "terrain_blocks1");
View Full Code Here

TOP

Related Classes of extrabiomes.blocks.BlockRedRock

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.