Skip to content

Commit 86c8a10

Browse files
authored
Fix circuit duplicate recipes (#1535)
We should try to avoid GTm circuits that are used for basic materials. Mainly #4 and #6 Put everything on #11 so it says harmonized Signed-off-by: TomPlop <[email protected]>
1 parent 530c438 commit 86c8a10

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

kubejs/server_scripts/tfg/recipes.supports.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ function registerTFGSupportRecipes(event) {
4747
}).id('tfg:shaped/light_concrete_support'))
4848

4949
event.recipes.gtceu.assembler('tfg:gtceu/assembler/light_concrete_support')
50-
.circuit(4)
50+
.circuit(11)
5151
.inputFluids(Fluid.of('gtceu:concrete', 36))
5252
.itemOutputs('8x tfg:light_concrete_support')
5353
.itemInputs('3x gtceu:light_concrete')
@@ -66,7 +66,7 @@ function registerTFGSupportRecipes(event) {
6666
}).id('tfg:shaped/dark_concrete_support'))
6767

6868
event.recipes.gtceu.assembler('tfg:gtceu/assembler/dark_concrete_support')
69-
.circuit(4)
69+
.circuit(11)
7070
.inputFluids(Fluid.of('gtceu:concrete', 36))
7171
.itemOutputs('8x tfg:dark_concrete_support')
7272
.itemInputs('3x gtceu:dark_concrete')
@@ -98,15 +98,15 @@ function registerTFGSupportRecipes(event) {
9898
}).id(`tfg:shaped/mossy/${stone}_support`))
9999

100100
event.recipes.gtceu.assembler(`tfg:gtceu/assembler/${stone}_support`)
101-
.circuit(4)
101+
.circuit(11)
102102
.inputFluids(Fluid.of('gtceu:concrete', 36))
103103
.itemOutputs(`8x tfg:${stone}_support`)
104104
.itemInputs(`3x tfc:rock/loose/${stone}`)
105105
.duration(40)
106106
.EUt(GTValues.VA[GTValues.ULV])
107107

108108
event.recipes.gtceu.assembler(`tfg:gtceu/assembler/mossy/${stone}_support`)
109-
.circuit(4)
109+
.circuit(11)
110110
.inputFluids(Fluid.of('gtceu:concrete', 36))
111111
.itemOutputs(`8x tfg:${stone}_support`)
112112
.itemInputs(`3x tfc:rock/mossy_loose/${stone}`)
@@ -126,7 +126,7 @@ function registerTFGSupportRecipes(event) {
126126
}).id('tfg:shaped/travertine_support'))
127127

128128
event.recipes.gtceu.assembler('tfg:gtceu/assembler/travertine_support')
129-
.circuit(4)
129+
.circuit(11)
130130
.inputFluids(Fluid.of('gtceu:concrete', 36))
131131
.itemOutputs('8x tfg:travertine_support')
132132
.itemInputs('3x tfg:loose/dripstone')
@@ -145,7 +145,7 @@ function registerTFGSupportRecipes(event) {
145145
}).id('tfg:shaped/migmatite_support'))
146146

147147
event.recipes.gtceu.assembler('tfg:gtceu/assembler/migmatite_support')
148-
.circuit(4)
148+
.circuit(11)
149149
.inputFluids(Fluid.of('gtceu:concrete', 36))
150150
.itemOutputs('8x tfg:migmatite_support')
151151
.itemInputs('3x tfg:loose/deepslate')
@@ -164,7 +164,7 @@ function registerTFGSupportRecipes(event) {
164164
}).id('tfg:shaped/pyroxenite_support'))
165165

166166
event.recipes.gtceu.assembler('tfg:gtceu/assembler/pyroxenite_support')
167-
.circuit(4)
167+
.circuit(11)
168168
.inputFluids(Fluid.of('gtceu:concrete', 36))
169169
.itemOutputs('8x tfg:pyroxenite_support')
170170
.itemInputs('3x beneath:blackstone_pebble')
@@ -182,7 +182,7 @@ function registerTFGSupportRecipes(event) {
182182
}).id('tfg:shaped/rebar_support')
183183

184184
event.recipes.gtceu.assembler('tfg:gtceu/assembler/rebar_support')
185-
.circuit(4)
185+
.circuit(11)
186186
.itemOutputs('8x tfg:rebar_support')
187187
.itemInputs(ChemicalHelper.get(TagPrefix.rod, GTMaterials.Steel, 2), ChemicalHelper.get(TagPrefix.wireFine, GTMaterials.Steel, 1))
188188
.duration(100)
@@ -199,7 +199,7 @@ function registerTFGSupportRecipes(event) {
199199
.id('tfg:anvil/steel_support')
200200

201201
event.recipes.gtceu.assembler('tfg:gtceu/assembler/steel_support')
202-
.circuit(4)
202+
.circuit(11)
203203
.itemOutputs('4x tfg:steel_support')
204204
.itemInputs('2x #forge:double_ingots/steel')
205205
.duration(100)
@@ -229,4 +229,4 @@ function registerTFGSupportRecipes(event) {
229229
.duration(GTMaterials.Steel.getMass() * 2)
230230
.category(GTRecipeCategories.EXTRACTOR_RECYCLING)
231231
.EUt(GTValues.VA[GTValues.ULV])
232-
}
232+
}

0 commit comments

Comments
 (0)