file upload

meat of the pack
This commit is contained in:
mina
2023-09-04 14:34:19 +01:00
parent 02473111e4
commit f49f5e9c50
163 changed files with 19679 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
ServerEvents.recipes(event => {
const patpros = [
["hv", "stainless_steel", 1],
["ev", "titanium", 4],
["iv", "tungsten_steel", 16]
]
patpros.forEach((tier)=> {
let interProv = (materialType, blockType) => {
event.shaped(tier[2]+ "x " + blockType, [
'PGP',
'ACF',
'PGP'
] , {
P: `#forge:plates/${tier[1]}`,
G: materialType,
A: "ae2:annihilation_core",
F: "ae2:formation_core",
C: `gtceu:${tier[0]}_conveyor_module`
})
}
event.remove({id: "ae2:network/crafting/molecular_assembler"})
interProv("ae2:quartz_glass", "ae2:molecular_assembler")
})
})