Co-authored-by: tracer4b <61507029+tracer4b@users.noreply.github.com> Co-authored-by: Serenibyss <10861407+serenibyss@users.noreply.github.com> Co-authored-by: Sylvia <skraman1999@gmail.com> Co-authored-by: windyknight <windyknight@users.noreply.github.com> Co-authored-by: Ghzdude <44148655+ghzdude@users.noreply.github.com> [BREAKING]
25 lines
1.4 KiB
Groovy
Executable File
25 lines
1.4 KiB
Groovy
Executable File
import static com.nomiceu.nomilabs.groovy.GroovyHelpers.RecipeRecyclingHelpers.*
|
|
|
|
// Pyrolyse Oven
|
|
replaceRecipeInput(metaitem('pyrolyse_oven'), [
|
|
[metaitem('electric.piston.lv'), ore('circuitLv'), ore('wireGtQuadrupleCupronickel')],
|
|
[ore('circuitLv'), metaitem('hull.ulv'), ore('circuitLv')],
|
|
[metaitem('electric.piston.lv'), metaitem('electric.pump.lv'), ore('wireGtQuadrupleCupronickel')]])
|
|
|
|
// HV Coil
|
|
mods.gregtech.assembler.removeByInput(480, [metaitem('stickSteelMagnetic'), metaitem('wireFineBlackSteel') * 16, metaitem('circuit.integrated').withNbt([Configuration: 1])], null)
|
|
mods.gregtech.assembler.recipeBuilder()
|
|
.inputs(metaitem('stickSteelMagnetic'), metaitem('wireFineSilver') * 16)
|
|
.circuitMeta(1)
|
|
.outputs(metaitem('voltage_coil.hv'))
|
|
.changeRecycling()
|
|
.duration(200)
|
|
.EUt(480)
|
|
.buildAndRegister()
|
|
|
|
// Refresh HV Energy and HV Dynamo Recipes
|
|
// Since stacks are not stored, they cannot simply be reloaded, we must recall.
|
|
// TODO Remove once we get Recursive Recycling Removal
|
|
changeStackRecycling(metaitem('energy_hatch.input.hv'), [metaitem('hull.hv'), metaitem('springGold') * 2, metaitem('plate.low_power_integrated_circuit') * 2, metaitem('voltage_coil.hv')])
|
|
changeStackRecycling(metaitem('energy_hatch.output.hv'), [metaitem('hull.hv'), metaitem('cableGtSingleGold') * 2, metaitem('plate.low_power_integrated_circuit') * 2, metaitem('voltage_coil.hv')])
|