Welcome to the Nbt Crafting 2.0 wiki!¶
Nbt Crafting is a mod which finally introduces nbt-related recipes.
If you want to get started with datapacks and recipes in Minecraft you can check out the Resources site.
For detailed information see recipe results and recipe ingredients.
You might also want to add brewing, cauldron or anvil recipes.
Go here if you're a modder and want to work with Nbt Crafting.
Example Recipe¶
Sometimes one Hello-World-ish example is worth a thousand words.
{
"type": "crafting_shapeless",
"ingredients": [
{
"item": "minecraft:diamond_sword",
"data": {
"require": {
"Damage": "$..40"
}
}
},
{ "item": "minecraft:diamond" }
],
"result": {
"item": "minecraft:diamond_axe",
"data": {
"display": {
"Name": "{\"text\":\"Battle Axe\"}"
},
"Enchantments": [
{
"id": "minecraft:sharpness",
"lvl": 10
}
]
}
}
}