Added computercube and lapotronic energy orb

This commit is contained in:
joflashstudios 2015-06-07 15:55:23 -04:00
parent 2a754b2497
commit 2f59ca1b84
8 changed files with 198 additions and 24 deletions

View file

@ -106,6 +106,7 @@ public class ModBlocks {
public static Block VacuumFreezer;
public static Block PlasmaGenerator;
public static Block FusionControlComputer;
public static Block ComputerCube;
public static Block FusionCoil;
public static Block LightningRod;
public static Block heatGenerator;
@ -261,6 +262,9 @@ public class ModBlocks {
PlasmaGenerator = new BlockPlasmaGenerator(Material.rock);
GameRegistry.registerBlock(PlasmaGenerator, "plasmagenerator");
ComputerCube = new BlockComputerCube(Material.rock);
GameRegistry.registerBlock(ComputerCube, "computercube");
FusionControlComputer = new BlockFusionControlComputer(Material.rock);
GameRegistry.registerBlock(FusionControlComputer, "fusioncontrolcomputer");

View file

@ -22,6 +22,7 @@ import techreborn.items.ItemPlates;
import techreborn.items.ItemPurifiedCrushedOre;
import techreborn.items.ItemRods;
import techreborn.items.ItemUUmatter;
import techreborn.items.ItemLapotronicOrb;
import techreborn.items.armor.ItemGravityChest;
import techreborn.items.armor.ItemLapotronPack;
import techreborn.items.armor.ItemLithiumBatpack;
@ -51,6 +52,7 @@ public class ModItems {
public static Item gravityChest;
public static Item omniTool;
public static Item advancedDrill;
public static Item lapotronicOrb;
public static Item manuel;
public static Item uuMatter;
public static Item plate;
@ -119,6 +121,8 @@ public class ModItems {
GameRegistry.registerItem(lithiumBatpack, "lithiumBatpack");
lapotronpack = new ItemLapotronPack(ArmorMaterial.DIAMOND, 7, 1);
GameRegistry.registerItem(lapotronpack, "lapotronPack");
lapotronicOrb = new ItemLapotronicOrb();
GameRegistry.registerItem(lapotronicOrb, "lapotronicOrb");
omniTool = new ItemOmniTool(ToolMaterial.EMERALD);
GameRegistry.registerItem(omniTool, "omniTool");
advancedDrill = new ItemAdvancedDrill();