Package extrabiomes.blocks

Examples of extrabiomes.blocks.GenericTerrainBlock


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

    final GenericTerrainBlock block = new GenericTerrainBlock(0, Material.rock);
    block.setBlockName("extrabiomes.crackedsand").setHardness(1.2F).setStepSound(Block.soundTypeStone).setCreativeTab(Extrabiomes.tabsEBXL);

    block.texturePath = "crackedsand";

    final CommonProxy proxy = Extrabiomes.proxy;
    proxy.setBlockHarvestLevel(block, "pickaxe", 0);
View Full Code Here

TOP

Related Classes of extrabiomes.blocks.GenericTerrainBlock

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.