#Adding Tinkerers Construct tool parts to recipes

11 messages · Page 1 of 1 (latest)

leaden spruce
#

I've seen a couple of people complain about tinkerers construct tool parts not working for recipes because they require a tag along with their item id. I've seen someone suggest the [ /kjs hand ] command and it sort of helped, but the custom recipe I've made still isn't registering the tool part.

cobalt flareBOT
#

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

leaden spruce
#

Am I reffering to it incorrectly?

austere forum
#

The issue is minecraft crafting recipes cannot have NBT in them, I think there's some way around this in kubeJS, I'll need to check a second

#

Try

event.shaped(
    Item.of("minecraft:stone_pickaxe"),
    [
        " X "
        " # "
    ],
    {
        X: Item.of(What you had last time).weakNBT(),
        #: Ingredient.of("#tconstruct:parts")
    }
)
#

This is the kubeJS format for shaped recipes, and the .weakNBT tells the recipe the item needs that but can have more in the NBT data

#

If you want it to be an exact match change it to .strongNBT, though that often isn't advised

leaden spruce
#

Posting proof for future issues!