Welcome to the Nbt Crafting 2.0 wiki!

Nbt Crafting is a mod which finally introduces nbt-related recipes.

curseforge downloads modrinth downloads supported Minecraft versions: 1.15 | 1.16 | 1.17 | 1.18


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.

Note

Click here to see notes about updating to v2

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
                }
            ]
        }
    }
}