76 lines
2.8 KiB
JavaScript
76 lines
2.8 KiB
JavaScript
|
ServerEvents.recipes(event => {
|
||
|
//倒空
|
||
|
event.custom({
|
||
|
"type": "create:emptying",
|
||
|
"ingredients": [
|
||
|
{ "item": "kubejs:slime_cola_can" }
|
||
|
],
|
||
|
"results": [
|
||
|
{ "item": "kubejs:empty_can" },
|
||
|
{ "amount": 250, "fluid": "kubejs:slime_cola" }
|
||
|
]
|
||
|
}).id("dut_create:slime_cola_emptying")
|
||
|
//罐装
|
||
|
event.custom({
|
||
|
"type": "create:filling",
|
||
|
"ingredients": [
|
||
|
{ "item": "kubejs:empty_can" },
|
||
|
{ "amount": 250, "fluid": "kubejs:slime_cola" }
|
||
|
],
|
||
|
"results": [
|
||
|
{ "item": "kubejs:slime_cola_can" }
|
||
|
]
|
||
|
}).id("dut_create:slime_cola_can")
|
||
|
//绝秘!史莱姆可乐秘方
|
||
|
event.custom({
|
||
|
"type": "vintageimprovements:pressurizing",
|
||
|
"secondaryFluidInput": 2,
|
||
|
"heatRequirement": "heated",
|
||
|
"ingredients": [
|
||
|
{ "item": "create_confectionery:cocoa_powder" },
|
||
|
{ "fluid": "create_confectionery:caramel", "amount": 250 },
|
||
|
{ "fluid": "create:tea", "amount": 50 },
|
||
|
{ "fluid": "create_things_and_misc:slime", "amount": 100 }
|
||
|
],
|
||
|
"results": [{ "fluid": "kubejs:cola_puree", "amount": 150 }],
|
||
|
"processingTime": 400
|
||
|
}).id('dut_create:secret_recipe_of_slime_cola')
|
||
|
event.custom({
|
||
|
"type": "vintageimprovements:pressurizing",
|
||
|
"secondaryFluidInput": 2,
|
||
|
"ingredients": [
|
||
|
{ "item": "minecraft:ice" },
|
||
|
{ "fluid": "minecraft:water", "amount": 375 },
|
||
|
{ "fluid": "kubejs:cola_puree", "amount": 125 },
|
||
|
{ "fluid": "kubejs:carbon_dioxide", "amount": 100 }
|
||
|
],
|
||
|
"results": [{ "fluid": "kubejs:slime_cola", "amount": 500 }],
|
||
|
"processingTime": 200
|
||
|
}).id('dut_create:slime_cola')
|
||
|
//可乐炸弹
|
||
|
event.custom({
|
||
|
"type": "vintageimprovements:vibrating",
|
||
|
"ingredients": [{ "item": "kubejs:slime_cola_can" }],
|
||
|
"results": [{ "item": "supplementaries:bomb_blue" }],
|
||
|
"processingTime": 100
|
||
|
}).id("dut_create:cola_bomb")
|
||
|
event.custom({
|
||
|
"type": "vintageimprovements:pressurizing",
|
||
|
"secondaryFluidInput": 0,
|
||
|
"ingredients": [
|
||
|
{ "fluid": "kubejs:cryogen", "amount": 50 },
|
||
|
{ "fluid": "create_things_and_misc:slime", "amount": 900 }
|
||
|
],
|
||
|
"results": [{ "item": "minecraft:slime_block" }],
|
||
|
"processingTime": 200
|
||
|
}).id('dut_create:slime_block')
|
||
|
event.custom({
|
||
|
"type": "vintageimprovements:pressurizing",
|
||
|
"heatRequirement": "heated",
|
||
|
"ingredients": [
|
||
|
{ "item": "minecraft:slime_block" }
|
||
|
],
|
||
|
"results": [{ "fluid": "create_things_and_misc:slime", "amount": 900 }],
|
||
|
"processingTime": 200
|
||
|
}).id('dut_create:slime_block_melt')
|
||
|
})
|