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

47 lines
1.3 KiB
JavaScript
Raw Permalink Normal View History

2025-04-11 17:07:29 +08:00
ServerEvents.recipes(event => {
//氯气漂白-染料
event.custom({
"type": "create:mixing",
"ingredients": [
{ "tag": "forge:dyes" },
{ "fluid": "kubejs:chlorine", "amount": 50 },
],
"results": [
{ "item": "minecraft:white_dye" }
]
}).id('dut_create:chlorine_bleach_dye')
//氯气漂白-羊毛
event.custom({
"type": "create:mixing",
"ingredients": [
{ "tag": "minecraft:wool" },
{ "fluid": "kubejs:chlorine", "amount": 50 },
],
"results": []
}).id('dut_create:chlorine_bleach_wool')
//氯气漂白-旗帜
event.custom({
"type": "create:mixing",
"ingredients": [
{ "tag": "minecraft:banners" },
{ "fluid": "kubejs:chlorine", "amount": 50 },
],
"results": [{ "item": "minecraft:stick"}]
}).id('dut_create:chlorine_bleach_banners')
//氯气还原
event.custom({
"type": "vintageimprovements:pressurizing",
"secondaryFluidInput": 1,
"heatRequirement": "heated",
"ingredients": [
{ "fluid": "minecraft:water", "amount": 500 },
{ "fluid": "kubejs:chlorine", "amount": 500 },
],
"results": [
{ "fluid": "kubejs:muriatic_acid", "amount": 500 },
{ "fluid": "ad_astra:oxygen", "amount": 250 }
],
"processingTime": 300
}).id('dut_create:chlorine_reduction')
})