From fb2a49b9afb193b9419084e1cbcc9433a45c4c59 Mon Sep 17 00:00:00 2001 From: Martin Robertz Date: Mon, 7 Nov 2022 17:18:02 +0100 Subject: Add a Extruder Casing recipe (#424) * Add a Extruder Casing recipe set Extruder recipe to iv component wise * spotlessApply (#425) Co-authored-by: Martin Robertz Co-authored-by: GitHub GTNH Actions <> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .../gtPlusPlus/core/recipe/RECIPES_Machines.java | 27 ++++++++++++++-------- 1 file changed, 18 insertions(+), 9 deletions(-) (limited to 'src/main/java/gtPlusPlus') diff --git a/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java index 37afa43470..ad6c000955 100644 --- a/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java +++ b/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java @@ -175,7 +175,7 @@ public class RECIPES_Machines { public static ItemStack IV_MACHINE_Macerator; public static ItemStack EV_MACHINE_Cutter; public static ItemStack EV_MACHINE_MassFabricator; - public static ItemStack EV_MACHINE_Extruder; + public static ItemStack IV_MACHINE_Extruder; public static ItemStack HV_MACHINE_Sifter; public static ItemStack IV_MACHINE_ThermalCentrifuge; public static ItemStack IV_MACHINE_OreWasher; @@ -1232,7 +1232,6 @@ public class RECIPES_Machines { EV_MACHINE_MassFabricator = ItemList.Machine_EV_Massfab.get(1); EV_MACHINE_Centrifuge = ItemList.Machine_EV_Centrifuge.get(1); EV_MACHINE_Cutter = ItemList.Machine_EV_Cutter.get(1); - EV_MACHINE_Extruder = ItemList.Machine_EV_Extruder.get(1); EV_MACHINE_AlloySmelter = ItemList.Machine_EV_AlloySmelter.get(1); } // Balanced opposites @@ -1244,7 +1243,6 @@ public class RECIPES_Machines { : ItemList.Machine_IV_Massfab.get(1); EV_MACHINE_Centrifuge = ItemList.Machine_IV_Centrifuge.get(1); EV_MACHINE_Cutter = ItemList.Machine_IV_Cutter.get(1); - EV_MACHINE_Extruder = ItemList.Machine_IV_Extruder.get(1); EV_MACHINE_AlloySmelter = ItemList.Machine_IV_AlloySmelter.get(1); } } @@ -3174,7 +3172,7 @@ public class RECIPES_Machines { GregtechItemList.Industrial_CuttingFactoryController.get(1)); } - // EV_MACHINE_Extruder + // IV_MACHINE_Extruder if (CORE.ConfigSwitches.enableMultiblock_IndustrialExtrudingMachine) { ItemStack plate = ALLOY.INCONEL_690.getPlate(1); RecipeUtils.addShapedRecipe( @@ -3188,16 +3186,27 @@ public class RECIPES_Machines { CI.craftingToolWrench, plate, GregtechItemList.Casing_Extruder.get(Casing_Amount)); + GT_Values.RA.addAssemblerRecipe( + new ItemStack[] { + ALLOY.INCONEL_690.getPlate(4), + ALLOY.TALONITE.getPlate(2), + ALLOY.STABALLOY.getFrameBox(1), + GT_Utility.getIntegratedCircuit(1), + }, + GT_Values.NF, + GregtechItemList.Casing_Extruder.get(1L), + 50, + 16); RecipeUtils.addShapedRecipe( plate, - CI.getTieredCircuit(4), + CI.getTieredCircuit(5), plate, - CI.electricPiston_EV, - EV_MACHINE_Extruder, - CI.electricPiston_EV, + CI.electricPiston_IV, + IV_MACHINE_Extruder, + CI.electricPiston_IV, plate, - CI.getTieredCircuit(4), + CI.getTieredCircuit(5), plate, GregtechItemList.Industrial_Extruder.get(1)); } -- cgit