diff options
author | Martin Robertz <dream-master@gmx.net> | 2022-11-07 17:16:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-07 17:16:48 +0100 |
commit | e83b79c608776fb0f7c3514912bb693a0741d8f9 (patch) | |
tree | dc3c66deb4a109a724bc05d68056c275bdbae338 | |
parent | f8c701e137e17c711da8a8c102de99897d09b220 (diff) | |
download | GT5-Unofficial-e83b79c608776fb0f7c3514912bb693a0741d8f9.tar.gz GT5-Unofficial-e83b79c608776fb0f7c3514912bb693a0741d8f9.tar.bz2 GT5-Unofficial-e83b79c608776fb0f7c3514912bb693a0741d8f9.zip |
unifying recipe with iv circuits (#432)
add assembler recipe for casings
-rw-r--r-- | src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java index afba0a6aec..37afa43470 100644 --- a/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java +++ b/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java @@ -3215,16 +3215,26 @@ public class RECIPES_Machines { CI.craftingToolWrench, plate, GregtechItemList.Casing_FishPond.get(Casing_Amount)); - + GT_Values.RA.addAssemblerRecipe( + new ItemStack[] { + ALLOY.AQUATIC_STEEL.getPlate(4), + ALLOY.EGLIN_STEEL.getPlate(2), + ALLOY.EGLIN_STEEL.getFrameBox(1), + GT_Utility.getIntegratedCircuit(1), + }, + GT_Values.NF, + GregtechItemList.Casing_FishPond.get(1L), + 50, + 16); RecipeUtils.addShapedRecipe( plate, - CI.getTieredCircuit(3), + CI.getTieredCircuit(5), plate, "wireFineElectrum", ItemUtils.getSimpleStack(ModBlocks.blockFishTrap), "wireFineElectrum", plate, - CI.getTieredCircuit(2), + CI.getTieredCircuit(5), plate, GregtechItemList.Industrial_FishingPond.get(1)); } |