Added a handfull of recipes for #182
This commit is contained in:
parent
3799eb3eb2
commit
faa1d079cd
2 changed files with 36 additions and 1 deletions
|
@ -210,6 +210,41 @@ public class
|
||||||
'C', ItemParts.getPartByName("energyFlowCircuit")
|
'C', ItemParts.getPartByName("energyFlowCircuit")
|
||||||
);
|
);
|
||||||
|
|
||||||
|
CraftingHelper.addShapedOreRecipe(new ItemStack(ModBlocks.LightningRod),
|
||||||
|
"CAC", "ACA", "CAC",
|
||||||
|
'A', new ItemStack(ModBlocks.MachineCasing, 1, 2),
|
||||||
|
'S', ItemParts.getPartByName("superConductor"),
|
||||||
|
'C', ItemParts.getPartByName("energyFlowCircuit")
|
||||||
|
);
|
||||||
|
|
||||||
|
CraftingHelper.addShapedOreRecipe(new ItemStack(ModBlocks.FusionCoil),
|
||||||
|
"CSC", "NAN", "CRC",
|
||||||
|
'A', new ItemStack(ModBlocks.MachineCasing, 1, 2),
|
||||||
|
'N', new ItemStack(ModBlocks.FusionCoil),
|
||||||
|
'C', ItemParts.getPartByName("energyFlowCircuit"),
|
||||||
|
'S', ItemParts.getPartByName("superConductor"),
|
||||||
|
'R', ItemParts.getPartByName("iridiumNeutronReflector")
|
||||||
|
);
|
||||||
|
|
||||||
|
CraftingHelper.addShapedOreRecipe(ItemParts.getPartByName("iridiumNeutronReflector"),
|
||||||
|
"PPP", "PIP", "PPP",
|
||||||
|
'P', ItemParts.getPartByName("thickNeutronReflector"),
|
||||||
|
'I', "ingotIridium"
|
||||||
|
);
|
||||||
|
|
||||||
|
CraftingHelper.addShapedOreRecipe(ItemParts.getPartByName("thickNeutronReflector"),
|
||||||
|
" P ", "PCP", " P ",
|
||||||
|
'P', ItemParts.getPartByName("neutronReflector"),
|
||||||
|
'C', ItemCells.getCellByName("Berylium")
|
||||||
|
);
|
||||||
|
|
||||||
|
CraftingHelper.addShapedOreRecipe(ItemParts.getPartByName("neutronReflector"),
|
||||||
|
"TCT", "CPC", "TCT",
|
||||||
|
'T', "dustTin",
|
||||||
|
'C', "dustCoal",
|
||||||
|
'P', "plateCopper"
|
||||||
|
);
|
||||||
|
|
||||||
GameRegistry.addShapelessRecipe(ItemCells.getCellByName("heliumPlasma"), ItemCells.getCellByName("tritium"), ItemCells.getCellByName("deuterium"));
|
GameRegistry.addShapelessRecipe(ItemCells.getCellByName("heliumPlasma"), ItemCells.getCellByName("tritium"), ItemCells.getCellByName("deuterium"));
|
||||||
|
|
||||||
Core.logHelper.info("Shapped Recipes Added");
|
Core.logHelper.info("Shapped Recipes Added");
|
||||||
|
|
|
@ -41,7 +41,7 @@ public class ItemParts extends Item implements IReactorComponent {
|
||||||
"laserFocus", "ductTape", "lazuriteChunk", "iridiumAlloyIngot", "rockCutterBlade", "superConductor",
|
"laserFocus", "ductTape", "lazuriteChunk", "iridiumAlloyIngot", "rockCutterBlade", "superConductor",
|
||||||
"thoriumCell", "doubleThoriumCell", "quadThoriumCell", "plutoniumCell", "doublePlutoniumCell",
|
"thoriumCell", "doubleThoriumCell", "quadThoriumCell", "plutoniumCell", "doublePlutoniumCell",
|
||||||
"quadPlutoniumCell", "destructoPack", "iridiumNeutronReflector", "massHoleDevice", "computerMonitor"
|
"quadPlutoniumCell", "destructoPack", "iridiumNeutronReflector", "massHoleDevice", "computerMonitor"
|
||||||
, "machineParts"};
|
, "machineParts", "thickNeutronReflector", "neutronReflector"};
|
||||||
|
|
||||||
private IIcon[] textures;
|
private IIcon[] textures;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue