8000 GitHub - sohcah/nbt-crafting: A 1.14+ 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

sohcah/nbt-crafting

 
 

Repository files navigation

Nbt Crafting 2.0 supported Minecraft versions: 1.15 | 1.16 | 1.17 | 1.18

curseforge downloads modrinth downloads latest maven release

logo

About

A fabric mod which allows you to add/change JSON crafting/cooking/etc. recipes to use nbt input and output.

Everything is kept nicely visualized in the vanilla gui.

This can be achieved through the reintroduced data attribute.

You can find more information in the wiki.

Example

A simple recipe allowing to craft wooden swords with 20 damage from diamond swords with 2 damage.

{
  "type": "crafting_shapeless",
  "ingredients": [
    {
      "item": "minecraft:diamond_sword",
      "data": {
        "require": {
          "Damage": 2
        }
      }
    }
  ],
  "result": {
    "item": "minecraft:wooden_sword",
    "data": {
      "Damage": 2
    }
  }
}

Extra

Due to some additions made with this mod the recipe book displays also the output amount of all recipes - yay!

License

This mod is available under the Apache 2.0 License.

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%
0