Version 1.0.21b

This commit is contained in:
2023-06-22 00:44:38 +00:00
parent b37aa5cd58
commit 2cce1cc03e
169 changed files with 7289 additions and 3706 deletions

View File

@@ -0,0 +1,40 @@
/*
Authored by Mitchell52
for AllTheMods 8
*/
ServerEvents.recipes(e=>{
let ATM_metal = ['allthemodium','unobtainium','vibranium',]
ATM_metal.forEach(ATM_metal =>
e.custom({
"type": "thermal:crucible",
"ingredient": {
"item": `allthemodium:${ATM_metal}_block`
},
"result": [
{
"fluid": `allthemodium:molten_${ATM_metal}`,
"amount": 1000
}
],
"energy": 232000
}).id(`kubejs:molten_${ATM_metal}`)
)
ATM_metal.forEach(ATM_metal =>
e.custom({
"type": "thermal:chiller",
"ingredients": [
{
"fluid": `allthemodium:molten_${ATM_metal}`,
"amount": 1000
}
],
"result": [
{
"item": `allthemodium:${ATM_metal}_block`
}
],
"energy": 232000
}).id(`kubejs:chilling_${ATM_metal}`)
)
})