From f31a88106ed54dc271f8eec50e3fe996e01bbcb3 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Sat, 12 Aug 2017 19:45:05 +1000 Subject: + 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. --- .../gtPlusPlus/core/recipe/RECIPES_Machines.java | 30 +++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) (limited to 'src/Java/gtPlusPlus/core/recipe') 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); + } -- cgit