18 lines
572 B
JavaScript
18 lines
572 B
JavaScript
ServerEvents.recipes(event => {
|
|
//吸收氯气
|
|
event.custom({
|
|
"type": "vintageimprovements:pressurizing",
|
|
"secondaryFluidOutput": 2,
|
|
"heatRequirement": "heated",
|
|
"ingredients": [
|
|
{ "fluid": "kubejs:caustic_soda", "amount": 500 },
|
|
{ "fluid": "kubejs:chlorine", "amount": 500 }
|
|
],
|
|
"results": [
|
|
{ "fluid": "kubejs:muriatic_acid", "amount": 500 },
|
|
{ "fluid": "kubejs:saline_water", "amount": 500 },
|
|
{ "fluid": "ad_astra:oxygen", "amount": 250 }
|
|
],
|
|
"processingTime": 160
|
|
}).id('dut_create:remove_chlorine')
|
|
}) |