61 lines
2.1 KiB
JavaScript
61 lines
2.1 KiB
JavaScript
ServerEvents.recipes(event => {
|
|
//event.replaceInput({ input: '' },'','')
|
|
//event.remove({output: '',not:{mod:'kubejs'}})
|
|
//event.remove({id: ''})
|
|
//event.remove({input: ''})
|
|
//event.custom({})
|
|
//精致润滑油制作
|
|
event.custom({
|
|
"type": "vintageimprovements:pressurizing",
|
|
"secondaryFluidInput": 2,
|
|
"heatRequirement": "heated",
|
|
"ingredients": [
|
|
{ "fluidTag": "forge:diesel", "amount": 300 },
|
|
{ "fluid": "ad_astra:hydrogen", "amount": 1000 },
|
|
{ "fluid": "vintageimprovements:sulfur_dioxide", "amount": 500 }
|
|
],
|
|
"results": [
|
|
{ "fluid": "kubejs:lube_oil", "amount": 250 }
|
|
],
|
|
"processingTime": 400
|
|
}).id('dut_create:lube_from_oil_with_so2')
|
|
event.custom({
|
|
"type": "vintageimprovements:pressurizing",
|
|
"secondaryFluidInput": 2,
|
|
"ingredients": [
|
|
{ "fluid": "kubejs:refined_oil", "amount": 300 },
|
|
{ "fluid": "ad_astra:hydrogen", "amount": 1000 },
|
|
{ "fluid": "vintageimprovements:sulfur_dioxide", "amount": 500 }
|
|
],
|
|
"results": [
|
|
{ "fluid": "kubejs:lube_oil", "amount": 500 }
|
|
],
|
|
"processingTime": 300
|
|
}).id('dut_create:lube_from_refined_oil_with_so2')
|
|
//润滑油制作
|
|
event.custom({
|
|
"type": "vintageimprovements:pressurizing",
|
|
"secondaryFluidInput": 1,
|
|
"ingredients": [
|
|
{ "fluidTag": "forge:diesel", "amount": 300 },
|
|
{ "fluid": "ad_astra:hydrogen", "amount": 1000 }
|
|
],
|
|
"results": [
|
|
{ "fluid": "kubejs:lube_oil", "amount": 100 }
|
|
],
|
|
"processingTime": 1200
|
|
}).id('dut_create:lube_from_oil')
|
|
event.custom({
|
|
"type": "vintageimprovements:pressurizing",
|
|
"secondaryFluidInput": 1,
|
|
"ingredients": [
|
|
{ "fluid": "kubejs:refined_oil", "amount": 300 },
|
|
{ "fluid": "ad_astra:hydrogen", "amount": 1000 }
|
|
],
|
|
"results": [
|
|
{ "fluid": "kubejs:lube_oil", "amount": 250 }
|
|
],
|
|
"processingTime": 800
|
|
}).id('dut_create:lube_from_refined_oil')
|
|
})
|