86 lines
2.7 KiB
JavaScript
86 lines
2.7 KiB
JavaScript
ServerEvents.recipes(event => {
|
|
//末影龙龙蛋
|
|
event.custom({
|
|
"type": "create:haunting",
|
|
"ingredients": [
|
|
{ "item": "minecraft:dragon_egg" }
|
|
],
|
|
"results": [
|
|
{ "item": "minecraft:dragon_head", "count": 16 }
|
|
]
|
|
}).id('dut_create:ender_dragon/dragon_head')
|
|
event.custom({
|
|
"type": "vintageimprovements:vacuumizing",
|
|
"secondaryFluidInput": 0,
|
|
"ingredients": [
|
|
{ "fluid": "kubejs:nitric_acid", "amount": 1000 },
|
|
{"item":"kubejs:phantom_fungus"},
|
|
{ "item": "minecraft:netherite_scrap" }
|
|
],
|
|
"results": [
|
|
{ "fluid": "create_central_kitchen:dragon_breath", "amount": 1000 },
|
|
{"item":"kubejs:phantom_fungus"}
|
|
],
|
|
"processingTime": 200
|
|
}).id('dut_create:ender_dragon/dragon_breath')
|
|
event.custom({
|
|
"type": "create:sequenced_assembly",
|
|
"ingredient": { "item": "minecraft:egg" },
|
|
"results": [
|
|
{ "item": "minecraft:dragon_egg", "chance": 0.125 },
|
|
{ "item": "minecraft:egg", "chance": 0.875 }
|
|
],
|
|
"loops": 8,
|
|
"sequence": [
|
|
{
|
|
"type": "create:filling",
|
|
"ingredients": [{ "item": "minecraft:egg" },
|
|
{ "fluid": "create_central_kitchen:dragon_breath", "amount": 1000 }],
|
|
"results": [{ "item": "minecraft:egg" }]
|
|
},
|
|
{
|
|
"type": "create:deploying",
|
|
"ingredients": [{ "item": "minecraft:egg" },
|
|
{ "item": "minecraft:netherite_scrap"}],
|
|
"results": [{ "item": "minecraft:egg" }]
|
|
},
|
|
{
|
|
"type": "create:filling",
|
|
"ingredients": [{ "item": "minecraft:egg" },
|
|
{ "fluid": "kubejs:nitric_acid", "amount": 250 }],
|
|
"results": [{ "item": "minecraft:egg" }]
|
|
}
|
|
],
|
|
"transitionalItem": { "item": "minecraft:egg" }
|
|
}).id("dut_create:ender_dragon/dragon_egg")
|
|
event.custom({
|
|
"type": "create:sequenced_assembly",
|
|
"ingredient": { "item": "minecraft:egg" },
|
|
"results": [
|
|
{ "item": "minecraft:dragon_egg", "count":2},
|
|
],
|
|
"loops": 1,
|
|
"sequence": [
|
|
{
|
|
"type": "create:filling",
|
|
"ingredients": [{ "item": "minecraft:egg" },
|
|
{ "fluid": "create_central_kitchen:dragon_breath", "amount": 500 }],
|
|
"results": [{ "item": "minecraft:egg" }]
|
|
},
|
|
{
|
|
"type": "create:deploying",
|
|
"ingredients": [{ "item": "minecraft:egg" },
|
|
{ "item": "minecraft:dragon_egg"}],
|
|
"results": [{ "item": "minecraft:egg" }]
|
|
},
|
|
{
|
|
"type": "create:filling",
|
|
"ingredients": [{ "item": "minecraft:egg" },
|
|
{ "fluid": "kubejs:nitric_acid", "amount": 250 }],
|
|
"results": [{ "item": "minecraft:egg" }]
|
|
}
|
|
],
|
|
"transitionalItem": { "item": "minecraft:egg" }
|
|
}).id("dut_create:ender_dragon/dragon_egg2")
|
|
|
|
}) |