From f6109e8f399d2dcb81777643f8806e0ae579f68f Mon Sep 17 00:00:00 2001 From: bruberu <80226372+bruberu@users.noreply.github.com> Date: Sat, 17 Feb 2024 03:23:34 -0600 Subject: [PATCH] Add air vent recipe (#757) * Add air vent recipe * Add assembler versions --- groovy/postInit/mod/SusyCore.groovy | 43 ++++++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/groovy/postInit/mod/SusyCore.groovy b/groovy/postInit/mod/SusyCore.groovy index e56e290ef..8a354bfa4 100755 --- a/groovy/postInit/mod/SusyCore.groovy +++ b/groovy/postInit/mod/SusyCore.groovy @@ -48,6 +48,47 @@ mods.gregtech.assembler.recipeBuilder() .EUt(Globals.voltAmps[3]) .buildAndRegister() +mods.gregtech.assembler.recipeBuilder() + .circuitMeta(11) + .inputs(ore('plateStainlessSteel') * 4) + .inputs(ore('frameGtStainlessSteel')) + .outputs(item('susy:susy_multiblock_casing', 1)) + .duration(240) + .EUt(Globals.voltAmps[3]) + .buildAndRegister() + +crafting.addShaped("susy:air_vent_w", item('susy:meta_item', 4), [ + [ore('craftingToolHardHammer'),ore('stickWroughtIron'),ore('craftingToolScrewdriver')], + [ore('plateWroughtIron'),ore('stickWroughtIron'),ore('plateWroughtIron')], + [ore('screwWroughtIron'),ore('stickWroughtIron'),ore('screwWroughtIron')] +]) + +crafting.addShaped("susy:air_vent_n", item('susy:meta_item', 4), [ + [ore('craftingToolHardHammer'),ore('stickIron'),ore('craftingToolScrewdriver')], + [ore('plateIron'),ore('stickIron'),ore('plateIron')], + [ore('screwIron'),ore('stickIron'),ore('screwIron')] +]) + +mods.gregtech.assembler.recipeBuilder() + .inputs(ore('plateWroughtIron') * 2) + .inputs(ore('stickWroughtIron') * 2) + .inputs(ore('screwWroughtIron') * 2) + .circuitMeta(13) + .outputs(item('susy:meta_item', 4)) + .duration(200) + .EUt(Globals.voltAmps[1]) + .buildAndRegister() + +mods.gregtech.assembler.recipeBuilder() + .inputs(ore('plateIron') * 2) + .inputs(ore('stickIron') * 2) + .inputs(ore('screwIron') * 2) + .circuitMeta(13) + .outputs(item('susy:meta_item', 4)) + .duration(200) + .EUt(Globals.voltAmps[1]) + .buildAndRegister() + mods.gregtech.assembler.recipeBuilder() .circuitMeta(11) .inputs(ore('plateStainlessSteel') * 4) @@ -61,4 +102,4 @@ mods.gregtech.assembler.recipeBuilder() // Crushed Sulfur Ore * 1 mods.gregtech.forge_hammer.removeByInput(16, [item('gregtech:ore_sulfur_0')], null) // Crushed Sulfur Ore * 2 -mods.gregtech.macerator.removeByInput(2, [item('gregtech:ore_sulfur_0')], null) \ No newline at end of file +mods.gregtech.macerator.removeByInput(2, [item('gregtech:ore_sulfur_0')], null)