This commit is contained in:
Modmuss50 2015-11-11 08:33:05 +00:00
parent f326dbfec9
commit 3799eb3eb2
2 changed files with 28 additions and 0 deletions

View file

@ -342,6 +342,14 @@ public class RecipesIC2 implements ICompatModule {
'Q', ModBlocks.digitalChest,
'T', IC2Items.getItem("teleporter"));
CraftingHelper.addShapedOreRecipe(new ItemStack(ModBlocks.PlasmaGenerator),
"PPP", "PTP", "CGC",
'P', ItemPlates.getPlateByName("tungstensteel"),
'T', IC2Items.getItem("hvTransformer"),
'G', IC2Items.getItem("generator"),
'C', ItemParts.getPartByName("energyFlowCircuit")
);
//Smetling
GameRegistry.addSmelting(ItemDusts.getDustByName("copper", 1), IC2Items.getItem("copperIngot"), 1F);

View file

@ -190,6 +190,26 @@ public class
'H', ItemParts.getPartByName("NaKCoolantTriple")
);
CraftingHelper.addShapedOreRecipe(new ItemStack(ModBlocks.Aesu),
"LLL", "LCL", "LLL",
'L', new ItemStack(ModItems.lapotronicOrb),
'C', new ItemStack(ModBlocks.ComputerCube)
);
CraftingHelper.addShapedOreRecipe(new ItemStack(ModBlocks.Idsu),
"PAP", "ACA", "PAP",
'P', ItemPlates.getPlateByName("iridium"),
'C', new ItemStack(Blocks.ender_chest),
'A', new ItemStack(ModBlocks.Aesu)
);
CraftingHelper.addShapedOreRecipe(new ItemStack(ModBlocks.FusionControlComputer),
"CCC", "PTP", "CCC",
'P', new ItemStack(ModBlocks.ComputerCube),
'T', new ItemStack(ModBlocks.FusionCoil),
'C', ItemParts.getPartByName("energyFlowCircuit")
);
GameRegistry.addShapelessRecipe(ItemCells.getCellByName("heliumPlasma"), ItemCells.getCellByName("tritium"), ItemCells.getCellByName("deuterium"));
Core.logHelper.info("Shapped Recipes Added");