Fellies/kubejs/server_scripts/fellies/kubejs/recipes/shaped.js

28 lines
446 B
JavaScript

events.listen('recipes', (event) => {
// Xreliquary
event.shaped(Item.of('minecraft:glowstone_dust', 6), [
'H ',
' H ',
' H'
], {
H: 'xreliquary:witch_hat'
});
event.shaped(Item.of('minecraft:gunpowder', 6), [
' H ',
' H ',
' H '
], {
H: 'xreliquary:witch_hat'
});
event.shaped(Item.of('minecraft:redstone', 6), [
'H ',
' H ',
'H '
], {
H: 'xreliquary:witch_hat'
});
});