Package buildcraft.core

Examples of buildcraft.core.ItemGear


      Property consumeWater = BuildCraftCore.mainConfiguration.get(Configuration.CATEGORY_GENERAL, "consumeWater", consumeWaterSources);
      consumeWaterSources = consumeWater.getBoolean(consumeWaterSources);
      consumeWater.comment = "set to true if the Pump should consume water";

      woodenGearItem = (new ItemGear()).setUnlocalizedName("woodenGearItem");
      CoreProxy.proxy.registerItem(woodenGearItem);
      OreDictionary.registerOre("gearWood", new ItemStack(woodenGearItem));

      stoneGearItem = (new ItemGear()).setUnlocalizedName("stoneGearItem");
      CoreProxy.proxy.registerItem(stoneGearItem);
      OreDictionary.registerOre("gearStone", new ItemStack(stoneGearItem));

      ironGearItem = (new ItemGear()).setUnlocalizedName("ironGearItem");
      CoreProxy.proxy.registerItem(ironGearItem);
      OreDictionary.registerOre("gearIron", new ItemStack(ironGearItem));

      goldGearItem = (new ItemGear()).setUnlocalizedName("goldGearItem");
      CoreProxy.proxy.registerItem(goldGearItem);
      OreDictionary.registerOre("gearGold", new ItemStack(goldGearItem));

      diamondGearItem = (new ItemGear()).setUnlocalizedName("diamondGearItem");
      CoreProxy.proxy.registerItem(diamondGearItem);
      OreDictionary.registerOre("gearDiamond", new ItemStack(diamondGearItem));

      MinecraftForge.EVENT_BUS.register(this);
      MinecraftForge.EVENT_BUS.register(new BlockHighlightHandler());
View Full Code Here

TOP

Related Classes of buildcraft.core.ItemGear

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.