71 lines
2.0 KiB
JavaScript
71 lines
2.0 KiB
JavaScript
ServerEvents.recipes(event => {
|
|
//
|
|
//event.remove({output:'',not:{mod:'kubejs'}})
|
|
//event.remove({id:''})
|
|
//event.remove({input:''})
|
|
//event.custom()
|
|
//第一章科技包-精密构件
|
|
event.remove({ output: 'create:precision_mechanism', not: { mod: 'kubejs' } })
|
|
event.custom({
|
|
"type": "create:sequenced_assembly",
|
|
"ingredient": {
|
|
"tag": "forge:plates/gold"
|
|
},
|
|
"loops": 3,
|
|
"results": [{ "item": "create:precision_mechanism" }
|
|
],
|
|
"sequence": [
|
|
{
|
|
"type": "create:deploying",
|
|
"ingredients": [
|
|
{ "item": "create:incomplete_precision_mechanism" },
|
|
{ "item": "create_connected:encased_chain_cogwheel" }
|
|
],
|
|
"results": [
|
|
{ "item": "create:incomplete_precision_mechanism" }
|
|
]
|
|
},
|
|
{
|
|
"type": "create:deploying",
|
|
"ingredients": [
|
|
{ "item": "create:incomplete_precision_mechanism" },
|
|
{ "item": "kubejs:mechanical_core" }
|
|
],
|
|
"results": [
|
|
{ "item": "create:incomplete_precision_mechanism" }
|
|
]
|
|
},
|
|
{
|
|
"type": "create:deploying",
|
|
"ingredients": [
|
|
{ "item": "create:incomplete_precision_mechanism" },
|
|
{ "item": "create:mechanical_pump" }
|
|
],
|
|
"results": [
|
|
{ "item": "create:incomplete_precision_mechanism" }
|
|
]
|
|
},
|
|
{
|
|
"type": "create:deploying",
|
|
"ingredients": [
|
|
{ "item": "create:incomplete_precision_mechanism" },
|
|
{ "item": "kubejs:circuit_board" }
|
|
],
|
|
"results": [
|
|
{ "item": "create:incomplete_precision_mechanism" }
|
|
]
|
|
},
|
|
{
|
|
"type": "create:deploying",
|
|
"ingredients": [
|
|
{ "item": "create:incomplete_precision_mechanism" },
|
|
{ "item": "create:sturdy_sheet" }
|
|
],
|
|
"results": [
|
|
{ "item": "create:incomplete_precision_mechanism" }
|
|
]
|
|
}
|
|
],
|
|
"transitionalItem": {"item": "create:incomplete_precision_mechanism"}
|
|
}).id("dut_create:tech/precision_mechanism")
|
|
}) |