create-the-brass-oncerto/kubejs/server_scripts/change/dreadsteel.js

20 lines
682 B
JavaScript

ServerEvents.recipes(event => {
event.remove({output: 'dreadsteel:dreadsteel_ingot',mod:'dreadsteel'})
event.custom({
"type": "minecraft:crafting_shaped",
"key": {
"A": {"item": "iceandfire:dragonsteel_fire_ingot"},
"B": {"item": "iceandfire:dragonsteel_ice_ingot"},
"C": {"item": "iceandfire:dragonsteel_lightning_ingot"},
"D": {"item": "minecraft:dragon_egg"},
"E": {"tag": "forge:ingots/chromatic"}
},
"pattern": [
"ABC",
"DDD",
"EEE"
],
"result": {"item": "dreadsteel:dreadsteel_ingot","count":3},
"show_notification": true
}).id("dut_create:dread_steel")
})