Download Messy Craft — Minecraft Mods — ModStock

Messy Craft

Active

Downloads

0

Last update

1 month ago

Versions

1.20.5 — 1.21.5
Server
Fabric
Libraries

Messy Craft

Messy Craft is a nbt crafting library runs on server-side.

Command

  • /craft <recipe> [<times>] Craft recipes.
  • /c <recipe> [<times>] Alias of /craft.

Recipe

Recipes can be configured by data packs in data/MY_NAMESPACE/messy_recipe/.../MY_RECIPE.json. (where MY_NAMESPACE and MY_RECIPE should be replaced, obviously)

Here is a template recipe file.

{
    "ingredients": [
        {
            "count": 1,
            "id": "minecraft:stick",
            "components": {
                "minecraft:rarity": "uncommon"
            }
        }
    ],
    "result": {
        "count": 1,
        "id": "minecraft:milk_bucket",
        "components": {
            "minecraft:item_name": "Milky Water"
        }
    }
}