Skip to content
Da-Technomancer edited this page Aug 30, 2020 · 1 revision

Millstone recipes are defined by JSON, and can be added/changed/removed by data packs.

The JSON specification is below. Anything preceded by // is a comment, and should not be in an actual JSON.

{
    "type": "crossroads:mill",
    "active": <boolean>,//Optional, default true. If false, disables this recipe
    "input": <item ingredient>,//Allowed input(s)
    //ONE OF THE FOLLOWING
    //For multiple or a single output
    "output": [
        {
            "item": <string item ID>,//Registry name of the output item
            "count": <integer>//Optional, default 1. Number of items produced
        },
        ...//Up to three output items can be specified this way. Any outputs after the first three will be ignored
    ]
    //For a single output
    "output": {
        "item": <string item ID>,//Registry name of the output item
        "count": <integer>//Optional, default 1. Number of items produced
    }
}
Clone this wiki locally