Added lapatron and energy crystals

This commit is contained in:
gigabit101 2016-03-05 22:50:39 +00:00
parent 5400dff4d3
commit 3302d63385
4 changed files with 123 additions and 0 deletions

View file

@ -85,6 +85,8 @@ public class ModItems {
public static Item diamondJackhammer;
public static Item hammer;
public static Item wrench;
public static Item lapatronCrystal;
public static Item energyCrystal;
public static Item upgrades;
@ -129,6 +131,11 @@ public class ModItems {
GameRegistry.registerItem(lapotronicOrb, "lapotronicOrb");
omniTool = PoweredItem.createItem(ItemOmniTool.class);
GameRegistry.registerItem(omniTool, "omniTool");
energyCrystal = PoweredItem.createItem(ItemEnergyCrystal.class);
GameRegistry.registerItem(energyCrystal, "energycrystal");
lapatronCrystal = PoweredItem.createItem(ItemLapotronCrystal.class);
GameRegistry.registerItem(lapatronCrystal, "lapatroncrystal");
manual = new ItemTechManual();
GameRegistry.registerItem(manual, "techmanuel");

View file

@ -61,6 +61,8 @@ public class RecipeCompact implements IRecipeCompact {
recipes.put("mvTransformer", ItemParts.getPartByName("mvTransformer"));
recipes.put("hvTransformer", ItemParts.getPartByName("hvTransformer"));
recipes.put("windMill", new ItemStack(ModBlocks.windMill));
recipes.put("energyCrystal", new ItemStack(ModItems.energyCrystal));
recipes.put("lapotronCrystal", new ItemStack(ModItems.lapatronCrystal));
inited = false;
}