diff options
author | Johannes Gäßler <updrn@student.kit.edu> | 2017-06-24 17:26:57 +0200 |
---|---|---|
committer | Dream-Master <dream-master@gmx.net> | 2017-06-24 20:34:44 +0200 |
commit | c2eaf942e3d2fc62272caa27162a6ad253af153d (patch) | |
tree | bae77aa181a1c955d5bacfb1f8716315d0c9639e /src/main/java/gregtech/loaders/oreprocessing | |
parent | 51574479e928a91d724d85ff9e38d2de65fe6fd4 (diff) | |
download | GT5-Unofficial-c2eaf942e3d2fc62272caa27162a6ad253af153d.tar.gz GT5-Unofficial-c2eaf942e3d2fc62272caa27162a6ad253af153d.tar.bz2 GT5-Unofficial-c2eaf942e3d2fc62272caa27162a6ad253af153d.zip |
cherry pick
51574479e928a91d724d85ff9e38d2de65fe6fd4
Made the Large Chemical Reactor cheaper, added more Cell Materials
Large Chemical Reactor Circuits: Elite -> Advanced
Inert Machine Casing: Clean Stainless Steel Casing -> Solid Steel Casing
Fluid Cells can now also be made from Steel and Polytetrafluoroethylene
Fixed the name of Plastic and PTFE Fluid Pipes.
Diffstat (limited to 'src/main/java/gregtech/loaders/oreprocessing')
-rw-r--r-- | src/main/java/gregtech/loaders/oreprocessing/ProcessingShaping.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingShaping.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingShaping.java index 89a6bd02fd..2e91fda06f 100644 --- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingShaping.java +++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingShaping.java @@ -80,6 +80,7 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi GT_Values.RA.addAlloySmelterRecipe(GT_Utility.copyAmount(1L, new Object[]{aStack}), ItemList.Shape_Mold_Bottle.get(0L, new Object[0]), new ItemStack(Items.glass_bottle, 1), tAmount * 64, 4); break; case "Steel": + GT_Values.RA.addExtruderRecipe(GT_Utility.copyAmount(2L, new Object[]{aStack}), ItemList.Shape_Extruder_Cell.get(0L, new Object[0]), ItemList.Cell_Empty.get(tAmount, new Object[0]), tAmount * 128, 32); if (tAmount * 2 <= 64) GT_Values.RA.addExtruderRecipe(GT_Utility.copyAmount(1L, new Object[]{aStack}), ItemList.Shape_Extruder_Casing.get(0L, new Object[0]), GT_ModHandler.getIC2Item("casingadviron", tAmount * 2), tAmount * 32, 3 * tVoltageMultiplier); if (tAmount * 2 <= 64) @@ -127,6 +128,9 @@ public class ProcessingShaping implements gregtech.api.interfaces.IOreRecipeRegi if (tAmount * 2 <= 64) GT_Values.RA.addAlloySmelterRecipe(GT_Utility.copyAmount(2L, new Object[]{aStack}), ItemList.Shape_Mold_Casing.get(0L, new Object[0]), GT_ModHandler.getIC2Item("casinggold", tAmount * 3), tAmount * 128, 1 * tVoltageMultiplier); break; + case "Polytetrafluoroethylene": + GT_Values.RA.addExtruderRecipe(GT_Utility.copyAmount(2L, new Object[]{aStack}), ItemList.Shape_Extruder_Cell.get(0L, new Object[0]), ItemList.Cell_Empty.get(tAmount, new Object[0]), tAmount * 128, 32); + break; } } } |