Skip to content

Commit

Permalink
Add air vent recipe (#757)
Browse files Browse the repository at this point in the history
* Add air vent recipe

* Add assembler versions
  • Loading branch information
bruberu authored Feb 17, 2024
1 parent af427a9 commit f6109e8
Showing 1 changed file with 42 additions and 1 deletion.
43 changes: 42 additions & 1 deletion groovy/postInit/mod/SusyCore.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
mods.gregtech.macerator.removeByInput(2, [item('gregtech:ore_sulfur_0')], null)

0 comments on commit f6109e8

Please sign in to comment.