All the items

This commit is contained in:
Gig 2015-05-04 21:52:08 +01:00
parent 617a33aea3
commit f4a717c0ea
13 changed files with 803 additions and 1 deletions

View file

@ -16,6 +16,8 @@ import techreborn.blocks.BlockDieselGenerator;
import techreborn.blocks.BlockDistillationTower;
import techreborn.blocks.BlockDragonEggSiphoner;
import techreborn.blocks.BlockElectricCraftingTable;
import techreborn.blocks.BlockFusionCoil;
import techreborn.blocks.BlockFusionControlComputer;
import techreborn.blocks.BlockGrinder;
import techreborn.blocks.BlockHighlyAdvancedMachine;
import techreborn.blocks.BlockIDSU;
@ -24,12 +26,14 @@ import techreborn.blocks.BlockIndustrialElectrolyzer;
import techreborn.blocks.BlockLathe;
import techreborn.blocks.BlockLesu;
import techreborn.blocks.BlockLesuStorage;
import techreborn.blocks.BlockLightningRod;
import techreborn.blocks.BlockMachineCasing;
import techreborn.blocks.BlockMagicEnergyAbsorber;
import techreborn.blocks.BlockMagicEnergyConverter;
import techreborn.blocks.BlockMatterFabricator;
import techreborn.blocks.BlockMetalShelf;
import techreborn.blocks.BlockOre;
import techreborn.blocks.BlockPlasmaGenerator;
import techreborn.blocks.BlockPlateCuttingMachine;
import techreborn.blocks.BlockQuantumChest;
import techreborn.blocks.BlockQuantumTank;
@ -97,6 +101,10 @@ public class ModBlocks {
public static Block Distillationtower;
public static Block ElectricCraftingTable;
public static Block VacuumFreezer;
public static Block PlasmaGenerator;
public static Block FusionControlComputer;
public static Block FusionCoil;
public static Block LightningRod;
public static Block ore;
public static Block storage;
@ -237,6 +245,18 @@ public class ModBlocks {
VacuumFreezer = new BlockVacuumFreezer(Material.rock);
GameRegistry.registerBlock(VacuumFreezer, "vacuumfreezer");
PlasmaGenerator = new BlockPlasmaGenerator(Material.rock);
GameRegistry.registerBlock(PlasmaGenerator, "plasmagenerator");
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");
registerOreDict();
}

View file

@ -6,11 +6,17 @@ import net.minecraft.item.ItemArmor.ArmorMaterial;
import net.minecraft.item.ItemStack;
import net.minecraftforge.oredict.OreDictionary;
import techreborn.items.ItemCells;
import techreborn.items.ItemCrushedOre;
import techreborn.items.ItemDustTiny;
import techreborn.items.ItemDusts;
import techreborn.items.ItemDustsSmall;
import techreborn.items.ItemGems;
import techreborn.items.ItemIngots;
import techreborn.items.ItemNuggets;
import techreborn.items.ItemParts;
import techreborn.items.ItemPlates;
import techreborn.items.ItemPurifiedCrushedOre;
import techreborn.items.ItemRods;
import techreborn.items.ItemUUmatter;
import techreborn.items.armor.ItemGravityChest;
import techreborn.items.armor.ItemLapotronPack;
@ -38,6 +44,12 @@ public class ModItems {
public static Item advancedDrill;
public static Item manuel;
public static Item uuMatter;
public static Item dustTiny;
public static Item plate;
public static Item nuggets;
public static Item rods;
public static Item crushedOre;
public static Item purifiedCrushedOre;
public static void init()
{
@ -69,6 +81,18 @@ public class ModItems {
GameRegistry.registerItem(manuel, "techmanuel");
uuMatter = new ItemUUmatter();
GameRegistry.registerItem(uuMatter, "uumatter");
dustTiny = new ItemDustTiny();
GameRegistry.registerItem(dustTiny, "dustTiny");
plate = new ItemPlates();
GameRegistry.registerItem(plate, "plates");
nuggets = new ItemNuggets();
GameRegistry.registerItem(nuggets, "nuggets");
rods = new ItemRods();
GameRegistry.registerItem(rods, "rods");
crushedOre = new ItemCrushedOre();
GameRegistry.registerItem(crushedOre, "crushedore");
purifiedCrushedOre = new ItemPurifiedCrushedOre();
GameRegistry.registerItem(purifiedCrushedOre, "purifiedCrushedOre");
LogHelper.info("TechReborns Items Loaded");