aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Robertz <dream-master@gmx.net>2022-11-07 17:18:02 +0100
committerGitHub <noreply@github.com>2022-11-07 17:18:02 +0100
commitfb2a49b9afb193b9419084e1cbcc9433a45c4c59 (patch)
treebbc1047d869becf36978ebcee84fa4e04d9a6290
parente83b79c608776fb0f7c3514912bb693a0741d8f9 (diff)
downloadGT5-Unofficial-fb2a49b9afb193b9419084e1cbcc9433a45c4c59.tar.gz
GT5-Unofficial-fb2a49b9afb193b9419084e1cbcc9433a45c4c59.tar.bz2
GT5-Unofficial-fb2a49b9afb193b9419084e1cbcc9433a45c4c59.zip
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 <dream-master@gmx.net> Co-authored-by: GitHub GTNH Actions <> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
-rw-r--r--src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java27
1 files changed, 18 insertions, 9 deletions
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));
}