Package buildcraft.core

Examples of buildcraft.core.ItemBuildCraft


      });

      facadeBlacklistProp.comment = "Blocks listed here will not have facades created. The format is modid:blockname.\nFor mods with a | character, the value needs to be surrounded with quotes.";
      facadeBlacklist = facadeBlacklistProp.getStringList();

      pipeWaterproof = new ItemBuildCraft();

      pipeWaterproof.setUnlocalizedName("pipeWaterproof");
      CoreProxy.proxy.registerItem(pipeWaterproof);

      if (Loader.isModLoaded("BuildCraft|Compat")) {
View Full Code Here


    redstoneBoard = new ItemRedstoneBoard();
    redstoneBoard.setUnlocalizedName("redstone_board");
    CoreProxy.proxy.registerItem(redstoneBoard);

    redstoneCrystal = (new ItemBuildCraft()).setUnlocalizedName("redstoneCrystal");
    CoreProxy.proxy.registerItem(redstoneCrystal);
    OreDictionary.registerOre("redstoneCrystal", new ItemStack(redstoneCrystal));

    robotItem = new ItemRobot().setUnlocalizedName("robot");
    CoreProxy.proxy.registerItem(robotItem);
View Full Code Here

TOP

Related Classes of buildcraft.core.ItemBuildCraft

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.