aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/recipe
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2017-08-12 19:45:05 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2017-08-12 19:45:05 +1000
commitf31a88106ed54dc271f8eec50e3fe996e01bbcb3 (patch)
treebf0bba82f1a2b4ee46fe951772ae7c305253a978 /src/Java/gtPlusPlus/core/recipe
parentc4a21ba699d52d2dc13f01ccc5dde22120f619c6 (diff)
downloadGT5-Unofficial-f31a88106ed54dc271f8eec50e3fe996e01bbcb3.tar.gz
GT5-Unofficial-f31a88106ed54dc271f8eec50e3fe996e01bbcb3.tar.bz2
GT5-Unofficial-f31a88106ed54dc271f8eec50e3fe996e01bbcb3.zip
+ Added a config option for the Thermal Boiler.
+ Added the Lava Filter. + Added Thermal Boiler Casing. + Added Recipes for the Thermal Boiler controller and casing block.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
-rw-r--r--src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java30
1 files changed, 29 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java
index de6feb8950..e3604e2f7d 100644
--- a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java
+++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java
@@ -71,7 +71,11 @@ public class RECIPES_Machines {
//Tesseracts
public static ItemStack RECIPE_TesseractGenerator;
public static ItemStack RECIPE_TesseractTerminal;
-
+ //Thermal Boiler
+ public static ItemStack RECIPE_ThermalBoilerController;
+ public static ItemStack RECIPE_ThermalBoilerCasing;
+
+
//Buffer Cores
public static ItemStack RECIPE_BufferCore_ULV = ItemUtils.getItemStack("miscutils:item.itemBufferCore1", 1);
public static ItemStack RECIPE_BufferCore_LV = ItemUtils.getItemStack("miscutils:item.itemBufferCore2", 1);
@@ -777,6 +781,30 @@ public class RECIPES_Machines {
"plateCarbon", "plateCarbon", "plateCarbon",
ItemUtils.simpleMetaStack(ModItems.itemAirFilter, 0, 1));
}
+
+ if (CORE.configSwitches.enableMachine_ThermalBoiler){
+ RECIPE_ThermalBoilerController = GregtechItemList.GT4_Thermal_Boiler.get(1);
+ RECIPE_ThermalBoilerCasing = GregtechItemList.Casing_ThermalContainment.get(4);
+ ItemStack centrifugeHV = ItemList.Machine_HV_Centrifuge.get(1);
+
+ RecipeUtils.addShapedGregtechRecipe(
+ "craftingGeothermalGenerator", centrifugeHV, "craftingGeothermalGenerator",
+ "gearTitanium", "circuitElite", "gearTitanium",
+ "craftingGeothermalGenerator", centrifugeHV, "craftingGeothermalGenerator",
+ RECIPE_ThermalBoilerController);
+
+ RecipeUtils.addShapedGregtechRecipe(
+ "craftingGeothermalGenerator", centrifugeHV, "craftingGeothermalGenerator",
+ "gearTungstenSteel", "circuitElite", "gearTungstenSteel",
+ "craftingGeothermalGenerator", centrifugeHV, "craftingGeothermalGenerator",
+ RECIPE_ThermalBoilerController);
+
+ RecipeUtils.addShapedGregtechRecipe(
+ "plateStainlessSteel", "plateStainlessSteel", "plateStainlessSteel",
+ "circuitAdvanced", CI.machineHull_HV, "circuitAdvanced",
+ "plateStainlessSteel", "plateStainlessSteel", "plateStainlessSteel",
+ RECIPE_ThermalBoilerCasing);
+ }