26 lines
799 B
Plaintext
26 lines
799 B
Plaintext
|
ServerEvents.recipes(event => {
|
||
|
//event.replaceInput({ input: '' },'','')
|
||
|
//event.remove({output: '',not:{mod:'kubejs'}})
|
||
|
//event.remove({id: ''})
|
||
|
//event.remove({input: ''})
|
||
|
//event.custom()
|
||
|
//event.remove({mod: 'cataclysm' })
|
||
|
event.remove({output: 'cataclysm:mechanical_fusion_anvil',not:{mod:'kubejs'}})
|
||
|
event.custom({
|
||
|
"type": "create:mechanical_crafting",
|
||
|
"acceptMirrored": true,
|
||
|
"key": {
|
||
|
"A": { "item": "create:precision_mechanism" },
|
||
|
"P": { "item": "cataclysm:witherite_block" },
|
||
|
"S": { "item": "kubejs:differential" },
|
||
|
"M": { "item": "kubejs:electric_gear" }
|
||
|
},
|
||
|
"pattern": [
|
||
|
"AAA",
|
||
|
"MPM",
|
||
|
"SSS",
|
||
|
],
|
||
|
"result": { "item": "cataclysm:mechanical_fusion_anvil" }
|
||
|
}
|
||
|
).id("dut_create:mechanical_fusion_anvil")
|
||
|
})
|