Package mods.railcraft.common.items

Examples of mods.railcraft.common.items.ItemRailcraft


            }
        }

        if (bleachedbone == null) {
            bleachedbone = defineBrick("bleachedbone");
            Item bleachedClay = new ItemRailcraft().setUnlocalizedName("railcraft.part.bleached.clay");
            ItemRegistry.registerItem(bleachedClay);
            CraftingPlugin.addShapelessRecipe(new ItemStack(bleachedClay), new ItemStack(Items.clay_ball), new ItemStack(Items.dye, 1, 15), new ItemStack(Items.dye, 1, 15), new ItemStack(Items.dye, 1, 15));
            CraftingPlugin.addFurnaceRecipe(new ItemStack(bleachedClay), new ItemStack(bleachedbone, 1, 2), 0.3F);
        }
View Full Code Here


        BlockDetector.registerBlock();
        RailcraftBlocks.registerBlockMachineGamma();

        if (RailcraftConfig.isItemEnabled("ic2.upgrade.lapotron")) {
            lapotronUpgrade = new ItemRailcraft().setUnlocalizedName("railcraft.upgrade.lapotron").setMaxStackSize(9);

            ItemRegistry.registerItem(lapotronUpgrade);

            ItemRegistry.registerItemStack("ic2.upgrade.lapotron", new ItemStack(lapotronUpgrade));
        }
View Full Code Here

TOP

Related Classes of mods.railcraft.common.items.ItemRailcraft

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.