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

28 lines
446 B
JavaScript
Raw Normal View History

2021-01-31 15:23:02 +00:00
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'
});
});