#Adding Tinkerers Construct tool parts to recipes
11 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
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
Thank you for your help!