aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-09-19 17:42:28 +1000
committerAlkalus <draknyte1@hotmail.com>2017-09-19 17:42:28 +1000
commit283c20cc571e837061bda328ec21c13346be3777 (patch)
tree136e03194b10c5d8fddeb4382ca1a6f89f88474d /src/Java/gtPlusPlus/core
parent9d7ea595609228d8341c0dc7c9a7461153d764bb (diff)
downloadGT5-Unofficial-283c20cc571e837061bda328ec21c13346be3777.tar.gz
GT5-Unofficial-283c20cc571e837061bda328ec21c13346be3777.tar.bz2
GT5-Unofficial-283c20cc571e837061bda328ec21c13346be3777.zip
+ Added recipes for the Wash Plant and Large Thermal Processor and their casings.
Diffstat (limited to 'src/Java/gtPlusPlus/core')
-rw-r--r--src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java51
1 files changed, 39 insertions, 12 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java
index e9bf16b540..0a7986f219 100644
--- a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java
+++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java
@@ -970,19 +970,46 @@ public class RECIPES_Machines {
}
if (CORE.configSwitches.enableMultiblock_PowerSubstation){
-
+ RecipeUtils.recipeBuilder(
+ null, "plateIncoloy020", null,
+ "plateIncoloy020", "frameGtIncoloyMA956", "plateIncoloy020",
+ null, "plateIncoloy020", null,
+ GregtechItemList.Casing_Power_SubStation.get(1));
+
+ RecipeUtils.recipeBuilder(
+ "plateIncoloyMA956", GregtechItemList.Battery_RE_EV_Lithium.get(1), "plateIncoloyMA956",
+ GregtechItemList.Casing_Power_SubStation.get(1), GregtechItemList.Casing_Vanadium_Redox.get(1), GregtechItemList.Casing_Power_SubStation.get(1),
+ "plateIncoloy020", "plateIncoloyMA956", "plateIncoloy020",
+ GregtechItemList.PowerSubStation.get(1));
+ }
+
+ if (CORE.configSwitches.enableMultiblock_IndustrialThermalCentrifuge){
+ RecipeUtils.recipeBuilder(
+ "plateRedSteel", CI.craftingToolHammer_Hard, "plateRedSteel",
+ "plateRedSteel", "frameGtBlackSteel", "plateRedSteel",
+ "plateRedSteel", CI.craftingToolWrench, "plateRedSteel",
+ GregtechItemList.Casing_ThermalCentrifuge.get(2));
+
+ RecipeUtils.recipeBuilder(
+ "plateRedSteel","circuitData","plateRedSteel",
+ "stickTalonite",GregtechItemList.Casing_ThermalCentrifuge.get(1),"stickTalonite",
+ "plateRedSteel","gearTalonite","plateRedSteel",
+ GregtechItemList.Industrial_ThermalCentrifuge.get(1));
+ }
+
+ if (CORE.configSwitches.enableMultiblock_IndustrialWashPlant){
+ RecipeUtils.recipeBuilder(
+ "plateGrisium", CI.craftingToolHammer_Hard, "plateGrisium",
+ "plateTalonite", "frameGtGrisium", "plateTalonite",
+ "plateGrisium", CI.craftingToolWrench, "plateGrisium",
+ GregtechItemList.Casing_WashPlant.get(2));
+
+ RecipeUtils.recipeBuilder(
+ "plateGrisium",CI.electricPump_MV,"plateGrisium",
+ "plateTalonite",GregtechItemList.Casing_WashPlant.get(1),"plateTalonite",
+ "plateGrisium","circuitData","plateGrisium",
+ GregtechItemList.Industrial_WashPlant.get(1));
}
- RecipeUtils.recipeBuilder(
- null, "plateIncoloy020", null,
- "plateIncoloy020", "frameGtIncoloyMA956", "plateIncoloy020",
- null, "plateIncoloy020", null,
- GregtechItemList.Casing_Power_SubStation.get(1));
-
- RecipeUtils.recipeBuilder(
- "plateIncoloyMA956", GregtechItemList.Battery_RE_EV_Lithium.get(1), "plateIncoloyMA956",
- GregtechItemList.Casing_Power_SubStation.get(1), GregtechItemList.Casing_Vanadium_Redox.get(1), GregtechItemList.Casing_Power_SubStation.get(1),
- "plateIncoloy020", "plateIncoloyMA956", "plateIncoloy020",
- GregtechItemList.PowerSubStation.get(1));
}