Package extrabiomes.blocks

Examples of extrabiomes.blocks.BlockMiniLog


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

    final BlockMiniLog block = new BlockMiniLog(BlockSettings.MINILOG);
    extrabiomes.lib.Blocks.BLOCK_LOG_SAKURA_GROVE.set(block);
    block.setBlockName("extrabiomes.log").setStepSound(Block.soundTypeWood).setHardness(2.0F).setResistance(Blocks.log.getExplosionResistance(null) * 5.0F).setCreativeTab(Extrabiomes.tabsEBXL);

    final CommonProxy proxy = Extrabiomes.proxy;
    proxy.setBlockHarvestLevel(block, "axe", 0);
    proxy.registerBlock(block, extrabiomes.items.ItemCustomMiniLog.class, "mini_log_1");
    proxy.registerOreInAllSubblocks("logWood", block);
View Full Code Here

TOP

Related Classes of extrabiomes.blocks.BlockMiniLog

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.