41 lines
1.6 KiB
JavaScript
41 lines
1.6 KiB
JavaScript
|
ServerEvents.recipes(event => {
|
||
|
//空气分馏
|
||
|
event.custom({
|
||
|
"type": "createdieselgenerators:distillation",
|
||
|
"ingredients": [{ "fluid": "kubejs:air_fluid", "amount": 1000 }],
|
||
|
"processingTime": 400,
|
||
|
"heatRequirement": "heated",
|
||
|
"results": [
|
||
|
{ "fluid": "ad_astra:oxygen", "amount": 200 },
|
||
|
{ "fluid": "kubejs:nitrogen", "amount": 800 }
|
||
|
]
|
||
|
}).id('dut_create:air_distillation')
|
||
|
//下界空气分馏
|
||
|
event.custom({
|
||
|
"type": "createdieselgenerators:distillation",
|
||
|
"ingredients": [{ "fluid": "kubejs:nether_air_fluid", "amount": 1000 }],
|
||
|
"processingTime": 1200,
|
||
|
"heatRequirement": "heated",
|
||
|
"results": [
|
||
|
{ "fluid": "vintageimprovements:sulfur_dioxide", "amount": 250 },
|
||
|
{ "fluid": "kubejs:nitrogen_dioxide", "amount": 150 },
|
||
|
{ "fluid": "vintageimprovements:sulfur_trioxide", "amount": 25 },
|
||
|
{ "fluid": "ad_astra:oxygen", "amount": 175 },
|
||
|
{ "fluid": "kubejs:nitrogen", "amount": 400 }
|
||
|
]
|
||
|
}).id('dut_create:nether_air_distillation')
|
||
|
//末地空气分馏
|
||
|
event.custom({
|
||
|
"type": "createdieselgenerators:distillation",
|
||
|
"ingredients": [{ "fluid": "kubejs:end_air_fluid", "amount": 1000 }],
|
||
|
"processingTime": 600,
|
||
|
"heatRequirement": "heated",
|
||
|
"results": [
|
||
|
{ "fluid": "create_central_kitchen:dragon_breath", "amount": 5 },
|
||
|
{ "fluid": "kubejs:nitrogen_dioxide", "amount": 210 },
|
||
|
{ "fluid": "kubejs:chlorine", "amount": 210 },
|
||
|
{ "fluid": "ad_astra:oxygen", "amount": 175 },
|
||
|
{ "fluid": "kubejs:nitrogen", "amount": 400 }
|
||
|
]
|
||
|
}).id('dut_create:end_air_distillation')
|
||
|
})
|