Hi all, I am looking for a way to make a create sequence recipe that keeps the armor enchantments, etc.
The idea is to take your armor do the sequence recipe and upgrade it with the enchantments, but I truly have no idea how to achieve this.
I know for normal recipes you can use modifyResult() but i don't think that's the case here.
Id really appreciate some help with this.
Here's one of my recipes for reference
ServerEvents.recipes((event) => {
let inter = Item.of("minecraft:chainmail_helmet"); // temp transitional item
event.recipes.create
.sequenced_assembly(
[
Item.of("aether:obsidian_helmet"),
],
diamondHelmet,
[
event.recipes.createDeploying(inter, [inter, "minecraft:crying_obsidian"]),
event.recipes.createDeploying(inter, [inter, "create:sturdy_sheet"]),
event.recipes.createFilling(inter, [inter, Fluid.lava(250)]),
event.recipes.createPressing(inter, inter),
]
)
.transitionalItem(inter)
.loops(1);
});