Welcome to the Nbt Crafting wiki!¶
Nbt Crafting is a mod which finally introduces nbt-related recipes.
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
}
]
}
}
}