fix ad astra wood window panes recipe

This commit is contained in:
Pyritie 2025-09-09 23:55:49 +01:00
parent fef9da7d42
commit 5a17891a39

View file

@ -58,4 +58,27 @@ const registerEveryCompatRecipes = (event) => {
.duration(40)
.EUt(7)
})
const AD_ASTRA = [
'glacian',
'aeronos',
'strophar'
]
AD_ASTRA.forEach(wood => {
event.remove({ id: `everycomp:c/ad_astra/${wood}_window_pane` })
event.shapeless(`2x everycomp:c/ad_astra/${wood}_window_pane`,
[
`everycomp:c/ad_astra/${wood}_window`,
'#forge:tools/saws'
])
.id(`tfg:everycompat/shapeless/${wood}_window_pane`)
event.recipes.gtceu.cutter(`tfg:everycompat/shapeless/${wood}_window_pane`)
.itemInputs(`3x everycomp:c/ad_astra/${wood}_window`)
.itemOutputs(`8x everycomp:c/ad_astra/${wood}_window_pane`)
.duration(40)
.EUt(7)
})
}