Enchanting Apparatus

Add a new Enchanting Apparatus recipe

server_scripts
KeyDescription
sourceHow much source is required
reagentThe central item placed inside the Enchanting Apparatus
keepNbtOfReagentWhether NBT from the reagent should be copied over to the output
pedestalItemsA list of items required on pedestals around the Imbuement Chamber
ServerEvents.recipes(event => {
event.custom({
type: "ars_nouveau:enchanting_apparatus",
keepNbtOfReagent: false,
output: { item: "ars_nouveau:alchemists_crown" },
pedestalItems: [
{ item: "minecraft:glass_bottle" },
{ item: "minecraft:glass_bottle" },
{ item: "minecraft:glass_bottle" },
],
reagent: [
{ item: "minecraft:golden_helmet" },
],
sourceCost: 0
})
});