8000 GitHub - Estyms/nbt-crafting: A 1.15+ fabric Minecraft mod to enable nbt related recipe stuff
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Estyms/nbt-crafting

 
 

Repository files navigation

Logo

Nbt Crafting

supported Minecraft versions: 1.15 | 1.16 | 1.17 | 1.18 | 1.19

curseforge downloads modrinth downloads latest maven release

A 1.15+ Minecraft Fabric mod to let you work with NBT data in recipes, add brewing recipes and a lot more.

  Wiki · Discord · Example Datapack  

Demo

Show example recipe

This example recipe allows you to craft a diamond axe named "Battle Axe" with sharpness X.

Ingredients are a diamond sword with at most 40 uses and a plain old diamond.

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

Feedback, Support or Showcase your creations

If you find any issues, please report them on the issues page.

If you're stuck and need help or just want to show something that you've created with this mod, you may either come to the official Discord server or open a GitHub discussion.

License

This mod is available under the Apache 2.0 License.

About

A 1.15+ fabric Minecraft mod to enable nbt related recipe stuff

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%
0