This project is currently unmaintained and looking for maintainers interested in further development. For further information or if you want to help out, please join the Discord :)
A 1.15+ Minecraft Fabric mod to let you work with NBT data in recipes, add brewing recipes and a lot more.
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
}
]
}
}
}
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.
This mod is available under the Apache 2.0 License.