create-the-brass-oncerto/kubejs/server_scripts/add/chemistry/cryogen.js

88 lines
2.0 KiB
JavaScript
Raw Permalink Normal View History

2025-04-11 17:07:29 +08:00
ServerEvents.recipes(event => {
//雪球-顶层雪
event.custom({
"type": "vintageimprovements:vacuumizing",
"secondaryFluidInput": 0,
"ingredients": [
{ "fluid": "kubejs:cryogen", "amount": 25 },
{ "item": "minecraft:snowball" }
],
"results": [
{ "item": "minecraft:snow" }
],
"processingTime": 300
}).id('dut_create:cryogen/snow')
//顶层雪-雪块
event.custom({
"type": "vintageimprovements:vacuumizing",
"secondaryFluidInput": 0,
"ingredients": [
{ "fluid": "kubejs:cryogen", "amount": 25 },
{ "item": "minecraft:snow" }
],
"results": [
{ "item": "minecraft:snow_block" }
],
"processingTime": 300
}).id('dut_create:cryogen/snow_block')
//冰冷却液
event.custom({
"type": "vintageimprovements:vacuumizing",
"ingredients": [
{ "item": "minecraft:ice" },
{ "item": "minecraft:ice" },
{ "item": "minecraft:ice" }
],
"results": [
{
"fluid": "kubejs:cryogen",
"amount": 300
}
],
"processingTime": 600
}).id('dut_create:cryogen/from_ice')
//液氨冷却液
event.custom({
"type": "vintageimprovements:vacuumizing",
"ingredients": [
{
"item": "minecraft:ice"
},
{
"fluid": "kubejs:ammonia",
"amount": 125
}
],
"results": [
{
"fluid": "kubejs:cryogen",
"amount": 1500
}
],
"processingTime": 600
}).id('dut_create:cryogen/from_ammonia')
//细雪冷却液
event.custom({
"type": "vintageimprovements:vacuumizing",
"ingredients": [
{
"item": "minecraft:powder_snow_bucket"
},
{
"fluid": "minecraft:water",
"amount": 225
}
],
"results": [
{
"item": "minecraft:bucket",
"count": 1
},
{
"fluid": "kubejs:cryogen",
"amount": 500
}
],
"processingTime": 600
}).id('dut_create:cryogen/from_powder_snow')
})