Version 1.0.21b
This commit is contained in:
40
minecraft/kubejs/server_scripts/modpack/atm_molten_fluids.js
Normal file
40
minecraft/kubejs/server_scripts/modpack/atm_molten_fluids.js
Normal 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}`)
|
||||
)
|
||||
})
|
||||
Reference in New Issue
Block a user