TechReborn/src/main/java/techreborn/init/ModBlocks.java

385 lines
18 KiB
Java
Raw Normal View History

2015-04-11 18:03:14 +02:00
package techreborn.init;
2015-07-02 20:51:24 +02:00
import cpw.mods.fml.common.registry.GameRegistry;
2015-04-12 10:45:31 +02:00
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
2015-05-07 19:39:47 +02:00
import net.minecraft.init.Blocks;
2015-04-12 15:59:29 +02:00
import net.minecraft.item.ItemStack;
import net.minecraftforge.oredict.OreDictionary;
2015-07-02 20:51:24 +02:00
import techreborn.blocks.BlockChunkLoader;
import techreborn.blocks.BlockComputerCube;
import techreborn.blocks.BlockDigitalChest;
import techreborn.blocks.BlockElectricCraftingTable;
import techreborn.blocks.BlockFusionCoil;
import techreborn.blocks.BlockFusionControlComputer;
import techreborn.blocks.BlockHighlyAdvancedMachine;
import techreborn.blocks.BlockMachineCasing;
import techreborn.blocks.BlockMachineFrame;
import techreborn.blocks.BlockMetalShelf;
import techreborn.blocks.BlockOre;
import techreborn.blocks.BlockQuantumChest;
import techreborn.blocks.BlockQuantumTank;
import techreborn.blocks.BlockStorage;
import techreborn.blocks.BlockStorage2;
import techreborn.blocks.BlockSupercondensator;
import techreborn.blocks.BlockWoodenshelf;
2015-05-08 01:39:17 +02:00
import techreborn.blocks.generator.BlockDieselGenerator;
import techreborn.blocks.generator.BlockDragonEggSiphoner;
2015-07-02 20:51:24 +02:00
import techreborn.blocks.generator.BlockGasTurbine;
2015-05-10 17:42:01 +02:00
import techreborn.blocks.generator.BlockHeatGenerator;
2015-05-08 01:39:17 +02:00
import techreborn.blocks.generator.BlockLightningRod;
import techreborn.blocks.generator.BlockMagicEnergyAbsorber;
import techreborn.blocks.generator.BlockMagicEnergyConverter;
import techreborn.blocks.generator.BlockPlasmaGenerator;
import techreborn.blocks.generator.BlockSemiFluidGenerator;
import techreborn.blocks.generator.BlockThermalGenerator;
import techreborn.blocks.machine.BlockAlloyFurnace;
import techreborn.blocks.machine.BlockAlloySmelter;
import techreborn.blocks.machine.BlockAssemblingMachine;
import techreborn.blocks.machine.BlockBlastFurnace;
import techreborn.blocks.machine.BlockCentrifuge;
import techreborn.blocks.machine.BlockChargeBench;
2015-05-08 01:39:17 +02:00
import techreborn.blocks.machine.BlockChemicalReactor;
import techreborn.blocks.machine.BlockDistillationTower;
import techreborn.blocks.machine.BlockGrinder;
import techreborn.blocks.machine.BlockImplosionCompressor;
import techreborn.blocks.machine.BlockIndustrialElectrolyzer;
import techreborn.blocks.machine.BlockIndustrialSawmill;
2015-05-08 01:39:17 +02:00
import techreborn.blocks.machine.BlockLathe;
import techreborn.blocks.machine.BlockMatterFabricator;
import techreborn.blocks.machine.BlockPlateCuttingMachine;
import techreborn.blocks.machine.BlockRollingMachine;
import techreborn.blocks.machine.BlockVacuumFreezer;
import techreborn.blocks.storage.BlockAesu;
import techreborn.blocks.storage.BlockIDSU;
import techreborn.blocks.storage.BlockLesu;
import techreborn.blocks.storage.BlockLesuStorage;
2015-07-02 20:51:24 +02:00
import techreborn.itemblocks.ItemBlockAesu;
import techreborn.itemblocks.ItemBlockDigitalChest;
import techreborn.itemblocks.ItemBlockMachineCasing;
import techreborn.itemblocks.ItemBlockMachineFrame;
import techreborn.itemblocks.ItemBlockOre;
import techreborn.itemblocks.ItemBlockQuantumChest;
import techreborn.itemblocks.ItemBlockQuantumTank;
import techreborn.itemblocks.ItemBlockStorage;
import techreborn.itemblocks.ItemBlockStorage2;
import techreborn.tiles.TileAesu;
import techreborn.tiles.TileAlloyFurnace;
import techreborn.tiles.TileAlloySmelter;
import techreborn.tiles.TileAssemblingMachine;
import techreborn.tiles.TileBlastFurnace;
import techreborn.tiles.TileCentrifuge;
import techreborn.tiles.TileChargeBench;
import techreborn.tiles.TileChemicalReactor;
import techreborn.tiles.TileChunkLoader;
import techreborn.tiles.TileDieselGenerator;
import techreborn.tiles.TileDigitalChest;
import techreborn.tiles.TileDragonEggSiphoner;
import techreborn.tiles.TileGasTurbine;
import techreborn.tiles.TileGrinder;
import techreborn.tiles.TileHeatGenerator;
import techreborn.tiles.TileImplosionCompressor;
import techreborn.tiles.TileIndustrialElectrolyzer;
import techreborn.tiles.TileIndustrialSawmill;
import techreborn.tiles.TileLathe;
import techreborn.tiles.TileMachineCasing;
import techreborn.tiles.TileMatterFabricator;
import techreborn.tiles.TileMetalShelf;
import techreborn.tiles.TilePlateCuttingMachine;
import techreborn.tiles.TileQuantumChest;
import techreborn.tiles.TileQuantumTank;
import techreborn.tiles.TileRollingMachine;
import techreborn.tiles.TileSemifluidGenerator;
import techreborn.tiles.TileThermalGenerator;
import techreborn.tiles.idsu.TileIDSU;
2015-06-14 14:35:36 +02:00
import techreborn.tiles.lesu.TileLesu;
import techreborn.tiles.lesu.TileLesuStorage;
2015-04-12 00:13:38 +02:00
import techreborn.util.LogHelper;
2015-04-11 18:03:14 +02:00
public class ModBlocks {
2015-04-15 17:23:12 +02:00
2015-04-24 15:20:09 +02:00
public static Block thermalGenerator;
public static Block quantumTank;
public static Block quantumChest;
2015-06-07 04:11:13 +02:00
public static Block digitalChest;
2015-04-24 15:20:09 +02:00
public static Block centrifuge;
public static Block RollingMachine;
public static Block MachineCasing;
public static Block BlastFurnace;
2015-04-24 16:01:19 +02:00
public static Block AlloySmelter;
2015-04-28 00:43:55 +02:00
public static Block Grinder;
public static Block ImplosionCompressor;
public static Block MatterFabricator;
public static Block ChunkLoader;
public static Block HighAdvancedMachineBlock;
2015-05-03 22:48:10 +02:00
public static Block Dragoneggenergysiphoner;
2015-05-03 23:15:39 +02:00
public static Block Magicenergeyconverter;
public static Block AssemblyMachine;
public static Block DieselGenerator;
2015-05-03 23:58:11 +02:00
public static Block IndustrialElectrolyzer;
2015-05-04 00:09:13 +02:00
public static Block MagicalAbsorber;
2015-05-04 00:13:45 +02:00
public static Block Semifluidgenerator;
public static Block Gasturbine;
2015-05-04 00:25:16 +02:00
public static Block AlloyFurnace;
2015-05-04 00:30:44 +02:00
public static Block ChemicalReactor;
2015-05-04 00:34:49 +02:00
public static Block lathe;
2015-05-04 00:37:30 +02:00
public static Block platecuttingmachine;
2015-05-04 00:49:30 +02:00
public static Block Idsu;
2015-05-04 20:01:03 +02:00
public static Block Aesu;
2015-05-04 20:06:42 +02:00
public static Block Lesu;
public static Block Supercondensator;
public static Block Woodenshelf;
2015-05-04 22:26:51 +02:00
public static Block Metalshelf;
public static Block LesuStorage;
public static Block Distillationtower;
public static Block ElectricCraftingTable;
public static Block VacuumFreezer;
2015-05-04 22:52:08 +02:00
public static Block PlasmaGenerator;
public static Block FusionControlComputer;
public static Block ComputerCube;
2015-05-04 22:52:08 +02:00
public static Block FusionCoil;
public static Block LightningRod;
2015-05-10 17:42:01 +02:00
public static Block heatGenerator;
public static Block industrialSawmill;
public static Block chargeBench;
2015-04-24 15:20:09 +02:00
public static Block ore;
public static Block storage;
2015-05-23 00:37:10 +02:00
public static Block storage2;
public static Block machineframe;
2015-04-24 15:20:09 +02:00
public static void init(){
2015-05-08 23:28:37 +02:00
thermalGenerator = new BlockThermalGenerator();
2015-04-28 00:43:55 +02:00
GameRegistry.registerBlock(thermalGenerator, "techreborn.thermalGenerator");
GameRegistry.registerTileEntity(TileThermalGenerator.class, "TileThermalGeneratorTR");
2015-04-24 15:20:09 +02:00
2015-05-08 23:28:37 +02:00
quantumTank = new BlockQuantumTank();
2015-04-28 00:43:55 +02:00
GameRegistry.registerBlock(quantumTank, ItemBlockQuantumTank.class, "techreborn.quantumTank");
GameRegistry.registerTileEntity(TileQuantumTank.class, "TileQuantumTankTR");
2015-04-24 15:20:09 +02:00
2015-05-08 23:28:37 +02:00
quantumChest = new BlockQuantumChest();
2015-04-28 00:43:55 +02:00
GameRegistry.registerBlock(quantumChest, ItemBlockQuantumChest.class, "techreborn.quantumChest");
GameRegistry.registerTileEntity(TileQuantumChest.class, "TileQuantumChestTR");
2015-06-07 04:11:13 +02:00
digitalChest = new BlockDigitalChest();
GameRegistry.registerBlock(digitalChest, ItemBlockDigitalChest.class, "techreborn.digitalChest");
GameRegistry.registerTileEntity(TileDigitalChest.class, "TileDigitalChestTR");
2015-04-24 15:20:09 +02:00
2015-05-08 23:28:37 +02:00
centrifuge = new BlockCentrifuge();
2015-04-24 15:20:09 +02:00
GameRegistry.registerBlock(centrifuge, "techreborn.centrifuge");
GameRegistry.registerTileEntity(TileCentrifuge.class, "TileCentrifugeTR");
2015-04-24 15:20:09 +02:00
2015-04-28 17:07:26 +02:00
RollingMachine = new BlockRollingMachine(Material.rock);
2015-04-24 15:20:09 +02:00
GameRegistry.registerBlock(RollingMachine, "rollingmachine");
GameRegistry.registerTileEntity(TileRollingMachine.class, "TileRollingMachineTR");
2015-04-24 15:20:09 +02:00
2015-04-28 17:07:26 +02:00
BlastFurnace = new BlockBlastFurnace(Material.rock);
2015-04-24 15:20:09 +02:00
GameRegistry.registerBlock(BlastFurnace, "blastFurnace");
GameRegistry.registerTileEntity(TileBlastFurnace.class, "TileBlastFurnaceTR");
2015-04-24 16:01:19 +02:00
2015-04-28 17:07:26 +02:00
AlloySmelter = new BlockAlloySmelter(Material.rock);
2015-04-24 16:01:19 +02:00
GameRegistry.registerBlock(AlloySmelter, "alloySmelter");
GameRegistry.registerTileEntity(TileAlloySmelter.class, "TileAlloySmalterTR");
2015-04-28 00:43:55 +02:00
2015-04-28 17:07:26 +02:00
Grinder = new BlockGrinder(Material.rock);
2015-04-28 00:43:55 +02:00
GameRegistry.registerBlock(Grinder, "grinder");
2015-06-10 21:52:07 +02:00
GameRegistry.registerTileEntity(TileGrinder.class, "TileGrinderTR");
2015-04-28 00:43:55 +02:00
2015-04-28 17:07:26 +02:00
ImplosionCompressor = new BlockImplosionCompressor(Material.rock);
2015-04-28 00:43:55 +02:00
GameRegistry.registerBlock(ImplosionCompressor, "implosioncompressor");
GameRegistry.registerTileEntity(TileImplosionCompressor.class, "TileImplosionCompressorTR");
2015-04-28 00:43:55 +02:00
2015-04-28 17:07:26 +02:00
MatterFabricator = new BlockMatterFabricator(Material.rock);
2015-04-28 00:43:55 +02:00
GameRegistry.registerBlock(MatterFabricator, "matterfabricator");
GameRegistry.registerTileEntity(TileMatterFabricator.class, "TileMatterFabricatorTR");
ChunkLoader = new BlockChunkLoader(Material.rock);
GameRegistry.registerBlock(ChunkLoader, "chunkloader");
GameRegistry.registerTileEntity(TileChunkLoader.class, "TileChunkLoaderTR");
chargeBench = new BlockChargeBench(Material.rock);
GameRegistry.registerBlock(chargeBench, "chargebench");
GameRegistry.registerTileEntity(TileChargeBench.class, "TileChargeBench");
2015-04-24 15:20:09 +02:00
2015-04-28 17:07:26 +02:00
MachineCasing = new BlockMachineCasing(Material.rock);
2015-04-28 00:43:55 +02:00
GameRegistry.registerBlock(MachineCasing, ItemBlockMachineCasing.class, "machinecasing");
GameRegistry.registerTileEntity(TileMachineCasing.class, "TileMachineCasingTR");
2015-04-24 15:20:09 +02:00
ore = new BlockOre(Material.rock);
GameRegistry.registerBlock(ore, ItemBlockOre.class, "techreborn.ore");
2015-05-23 00:37:10 +02:00
storage = new BlockStorage(Material.iron);
2015-04-28 00:43:55 +02:00
GameRegistry.registerBlock(storage, ItemBlockStorage.class, "techreborn.storage");
2015-05-23 00:37:10 +02:00
storage2 = new BlockStorage2(Material.iron);
GameRegistry.registerBlock(storage2, ItemBlockStorage2.class, "techreborn.storage2");
HighAdvancedMachineBlock = new BlockHighlyAdvancedMachine(Material.rock);
GameRegistry.registerBlock(HighAdvancedMachineBlock, "highlyadvancedmachine");
2015-05-03 22:48:10 +02:00
Dragoneggenergysiphoner = new BlockDragonEggSiphoner(Material.rock);
GameRegistry.registerBlock(Dragoneggenergysiphoner, "dragoneggenergsiphon");
GameRegistry.registerTileEntity(TileDragonEggSiphoner.class, "TileDragonEggSiphonerTR");
2015-05-03 23:15:39 +02:00
Magicenergeyconverter = new BlockMagicEnergyConverter(Material.rock);
GameRegistry.registerBlock(Magicenergeyconverter, "magicenergyconverter");
AssemblyMachine = new BlockAssemblingMachine(Material.rock);
GameRegistry.registerBlock(AssemblyMachine, "assemblymachine");
GameRegistry.registerTileEntity(TileAssemblingMachine.class, "TileAssemblyMachineTR");
DieselGenerator = new BlockDieselGenerator(Material.rock);
GameRegistry.registerBlock(DieselGenerator, "dieselgenerator");
2015-06-10 21:52:07 +02:00
GameRegistry.registerTileEntity(TileDieselGenerator.class, "TileDieselGeneratorTR");
2015-05-03 23:58:11 +02:00
IndustrialElectrolyzer = new BlockIndustrialElectrolyzer(Material.rock);
GameRegistry.registerBlock(IndustrialElectrolyzer, "industrialelectrolyzer");
GameRegistry.registerTileEntity(TileIndustrialElectrolyzer.class, "TileIndustrialElectrolyzerTR");
2015-05-04 00:09:13 +02:00
MagicalAbsorber = new BlockMagicEnergyAbsorber(Material.rock);
GameRegistry.registerBlock(MagicalAbsorber, "magicrnergyabsorber");
2015-05-04 00:13:45 +02:00
Semifluidgenerator = new BlockSemiFluidGenerator(Material.rock);
GameRegistry.registerBlock(Semifluidgenerator, "semifluidgenerator");
2015-06-10 21:52:07 +02:00
GameRegistry.registerTileEntity(TileSemifluidGenerator.class, "TileSemifluidGeneratorTR");
2015-05-04 00:25:16 +02:00
Gasturbine = new BlockGasTurbine(Material.rock);
GameRegistry.registerBlock(Gasturbine, "gasturbine");
2015-06-10 21:52:07 +02:00
GameRegistry.registerTileEntity(TileGasTurbine.class, "TileGassTurbineTR");
2015-05-04 00:25:16 +02:00
AlloyFurnace = new BlockAlloyFurnace(Material.rock);
GameRegistry.registerBlock(AlloyFurnace, "alloyfurnace");
2015-06-10 21:52:07 +02:00
GameRegistry.registerTileEntity(TileAlloyFurnace.class, "TileAlloyFurnaceTR");
2015-05-04 00:30:44 +02:00
ChemicalReactor = new BlockChemicalReactor(Material.rock);
GameRegistry.registerBlock(ChemicalReactor, "chemicalreactor");
GameRegistry.registerTileEntity(TileChemicalReactor.class, "TileChemicalReactorTR");
2015-05-04 00:34:49 +02:00
lathe = new BlockLathe(Material.rock);
GameRegistry.registerBlock(lathe, "lathe");
2015-05-08 01:15:04 +02:00
GameRegistry.registerTileEntity(TileLathe.class, "TileLathe");
2015-05-04 00:37:30 +02:00
platecuttingmachine = new BlockPlateCuttingMachine(Material.rock);
GameRegistry.registerBlock(platecuttingmachine, "platecuttingmachine");
GameRegistry.registerTileEntity(TilePlateCuttingMachine.class, "TilePlateCuttingMachineTR");
2015-05-04 00:49:30 +02:00
Idsu = new BlockIDSU(Material.rock);
GameRegistry.registerBlock(Idsu, "idsu");
GameRegistry.registerTileEntity(TileIDSU.class, "TileIDSUTR");
2015-05-04 20:01:03 +02:00
Aesu = new BlockAesu(Material.rock);
GameRegistry.registerBlock(Aesu, ItemBlockAesu.class, "aesu");
GameRegistry.registerTileEntity(TileAesu.class, "TileAesuTR");
2015-05-04 20:06:42 +02:00
Lesu = new BlockLesu(Material.rock);
GameRegistry.registerBlock(Lesu, "lesu");
2015-06-14 14:35:36 +02:00
GameRegistry.registerTileEntity(TileLesu.class, "TileLesuTR");
2015-05-04 20:06:42 +02:00
Supercondensator = new BlockSupercondensator(Material.rock);
GameRegistry.registerBlock(Supercondensator, "supercondensator");
Woodenshelf = new BlockWoodenshelf(Material.wood);
GameRegistry.registerBlock(Woodenshelf, "woodenshelf");
2015-05-04 22:26:51 +02:00
Metalshelf = new BlockMetalShelf(Material.rock);
GameRegistry.registerBlock(Metalshelf, "metalshelf");
2015-06-08 21:51:08 +02:00
GameRegistry.registerTileEntity(TileMetalShelf.class, "TileMetalShelf");
2015-05-04 22:26:51 +02:00
LesuStorage = new BlockLesuStorage(Material.rock);
GameRegistry.registerBlock(LesuStorage, "lesustorage");
2015-06-14 14:35:36 +02:00
GameRegistry.registerTileEntity(TileLesuStorage.class, "TileLesuStorageTR");
2015-05-04 22:26:51 +02:00
Distillationtower = new BlockDistillationTower(Material.rock);
GameRegistry.registerBlock(Distillationtower, "distillationtower");
ElectricCraftingTable = new BlockElectricCraftingTable(Material.rock);
GameRegistry.registerBlock(ElectricCraftingTable, "electriccraftingtable");
VacuumFreezer = new BlockVacuumFreezer(Material.rock);
GameRegistry.registerBlock(VacuumFreezer, "vacuumfreezer");
2015-05-04 22:52:08 +02:00
PlasmaGenerator = new BlockPlasmaGenerator(Material.rock);
GameRegistry.registerBlock(PlasmaGenerator, "plasmagenerator");
ComputerCube = new BlockComputerCube(Material.rock);
GameRegistry.registerBlock(ComputerCube, "computercube");
2015-05-04 22:52:08 +02:00
FusionControlComputer = new BlockFusionControlComputer(Material.rock);
GameRegistry.registerBlock(FusionControlComputer, "fusioncontrolcomputer");
FusionCoil = new BlockFusionCoil(Material.rock);
GameRegistry.registerBlock(FusionCoil, "fusioncoil");
LightningRod = new BlockLightningRod(Material.rock);
GameRegistry.registerBlock(LightningRod, "lightningrod");
2015-05-10 17:42:01 +02:00
heatGenerator = new BlockHeatGenerator(Material.rock);
GameRegistry.registerBlock(heatGenerator, "heatgenerator");
GameRegistry.registerTileEntity(TileHeatGenerator.class, "TileHeatGeneratorTR");
industrialSawmill = new BlockIndustrialSawmill(Material.rock);
GameRegistry.registerBlock(industrialSawmill, "industrialSawmill");
GameRegistry.registerTileEntity(TileIndustrialSawmill.class, "TileIndustrialSawmillTR");
machineframe = new BlockMachineFrame(Material.iron);
GameRegistry.registerBlock(machineframe, ItemBlockMachineFrame.class, "techreborn.machineFrame");
LogHelper.info("TechReborns Blocks Loaded");
2015-04-24 15:20:09 +02:00
registerOreDict();
}
public static void registerOreDict(){
2015-04-24 15:20:09 +02:00
OreDictionary.registerOre("oreGalena", new ItemStack(ore, 1, 0));
OreDictionary.registerOre("oreIridium", new ItemStack(ore, 1, 1));
OreDictionary.registerOre("oreRuby", new ItemStack(ore, 1, 2));
OreDictionary.registerOre("oreSapphire", new ItemStack(ore, 1, 3));
OreDictionary.registerOre("oreBauxite", new ItemStack(ore, 1, 4));
OreDictionary.registerOre("orePyrite", new ItemStack(ore, 1, 5));
OreDictionary.registerOre("oreCinnabar", new ItemStack(ore, 1, 6));
OreDictionary.registerOre("oreSphalerite", new ItemStack(ore, 1, 7));
2015-05-08 07:12:25 +02:00
OreDictionary.registerOre("oreTungsten", new ItemStack(ore, 1, 8));
2015-04-24 15:20:09 +02:00
OreDictionary.registerOre("oreSheldonite", new ItemStack(ore, 1, 9));
2015-05-08 07:12:25 +02:00
OreDictionary.registerOre("orePlatinum", new ItemStack(ore, 1, 9));
OreDictionary.registerOre("orePeridot", new ItemStack(ore, 1, 10));
2015-04-24 15:20:09 +02:00
OreDictionary.registerOre("oreSodalite", new ItemStack(ore, 1, 11));
2015-05-08 07:12:25 +02:00
OreDictionary.registerOre("oreTetrahedrite", new ItemStack(ore, 1, 12));
OreDictionary.registerOre("oreTin", new ItemStack(ore, 1, 13));
OreDictionary.registerOre("oreLead", new ItemStack(ore, 1, 14));
OreDictionary.registerOre("oreSilver", new ItemStack(ore, 1, 15));
2015-04-24 15:20:09 +02:00
OreDictionary.registerOre("blockSilver", new ItemStack(storage, 1, 0));
OreDictionary.registerOre("blockAluminum", new ItemStack(storage, 1, 1));
2015-05-08 07:12:25 +02:00
OreDictionary.registerOre("blockTitanium", new ItemStack(storage, 1, 2));
OreDictionary.registerOre("blockChrome", new ItemStack(storage, 1, 3));
OreDictionary.registerOre("blockSteel", new ItemStack(storage, 1, 4));
OreDictionary.registerOre("blockBrass", new ItemStack(storage, 1, 5));
OreDictionary.registerOre("blockLead", new ItemStack(storage, 1, 6));
2015-05-08 07:12:25 +02:00
OreDictionary.registerOre("blockElectrum", new ItemStack(storage, 1, 7));
OreDictionary.registerOre("blockZinc", new ItemStack(storage, 1, 8));
OreDictionary.registerOre("blockPlatinum", new ItemStack(storage, 1, 9));
OreDictionary.registerOre("blockTungsten", new ItemStack(storage, 1, 10));
OreDictionary.registerOre("blockNickel", new ItemStack(storage, 1, 11));
OreDictionary.registerOre("blockInvar", new ItemStack(storage, 1, 12));
OreDictionary.registerOre("blockOsmium", new ItemStack(storage, 1, 13));
OreDictionary.registerOre("blockIridium", new ItemStack(storage, 1, 14));
OreDictionary.registerOre("blockTungstensteel", new ItemStack(storage2, 1, 0));
OreDictionary.registerOre("blockLodestone", new ItemStack(storage2, 1, 1));
OreDictionary.registerOre("blockTellurium", new ItemStack(storage2, 1, 2));
OreDictionary.registerOre("blockRuby", new ItemStack(storage2, 1, 5));
OreDictionary.registerOre("blockSapphire", new ItemStack(storage2, 1, 6));
OreDictionary.registerOre("blockPeridot", new ItemStack(storage2, 1, 7));
OreDictionary.registerOre("blockYellowGarnet", new ItemStack(storage2, 1, 8));
OreDictionary.registerOre("blockRedGarnet", new ItemStack(storage2, 1, 9));
2015-04-24 15:20:09 +02:00
2015-05-07 19:39:47 +02:00
OreDictionary.registerOre("craftingPiston", Blocks.piston);
OreDictionary.registerOre("craftingPiston", Blocks.sticky_piston);
OreDictionary.registerOre("crafterWood", Blocks.crafting_table);
OreDictionary.registerOre("machineBasic", new ItemStack(machineframe, 1));
2015-05-07 19:39:47 +02:00
2015-04-24 15:20:09 +02:00
}
2015-04-11 18:03:14 +02:00
}