#Transfer NBT data in create sequence recipe

20 messages · Page 1 of 1 (latest)

jagged geyser
#

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);
});
ashen abyssBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

viral sonnetBOT
#

Paste version of message.txt, message.txt from @jagged geyser

silk bough
#

doesn't support NBT

#

you'd need a mod to add a custom recipe serialiser

#

I've tried to do this exact same thing before

jagged geyser
silk bough
#

nope

#

gave up

#

you'd have to write a custom mod

jagged geyser
#

well this is bleak lol

silk bough
#

unfortunately so

jagged geyser
#

alrigth then, ill just make people to the ingredients in create and then upgrade in smithing i guess

#

a sequence recipe would have been so cool .-.

silk bough
#

it really would be

#

it's sadly a limitation in create's recipes itself

#

and how minecraft handles stuff

#

maybe components will help mods shift to a more modular system in future

#

sorry I couldn't help any more

viral sonnetBOT
#

Please close your ticket (with </ticket close:1054771505520717835> or the button atop this thread) once you resolved your issue!
This also helps others that would like to help out, as they don't have to look into this thread to check if it has been resolved by now.

Do you have any other questions regarding your issue? Feel free to ask!
Note: You should create a new post for unrelated issues.