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

42 lines
750 B
JavaScript

// priority: 99
events.listen('recipes', e => {
// Minecraft
e.shaped(Item.of('minecraft:stick', 16), ['A', 'A'], {
A: '#minecraft:logs'
});
e.shaped('minecraft:hopper', ['ABA', 'ABA', ' A '], {
A: '#forge:ingots/iron',
B: '#minecraft:logs'
});
e.shaped('minecraft:furnace', ['LLL', 'L L', 'LLL'], {
L: '#forge:stone'
});
// Xreliquary
e.shaped(Item.of('minecraft:glowstone_dust', 6), [
'H ',
' H ',
' H'
], {
H: 'xreliquary:witch_hat'
});
e.shaped(Item.of('minecraft:gunpowder', 6), [
' H ',
' H ',
' H '
], {
H: 'xreliquary:witch_hat'
});
e.shaped(Item.of('minecraft:redstone', 6), [
'H ',
' H ',
'H '
], {
H: 'xreliquary:witch_hat'
});
});