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

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

All Bobo recipes require 3 ingredients and an 'offering' item. The allowed offering items for all Bobo recipes are defined in the tag crossroads:bobo_unlock_key. By default, poisonous potatoes and nether stars are allowed.

Format (anything preceded by // is a comment that should not be in a real JSON):

{
    "type": "crossroads:bobo",
    "active": <boolean> //Optional, defaults to true. If false, disables this recipe
    "output": {
        "item": <string item ID>,//Registry name of the created item
        "count": <integer>//Optional, defaults to 1. Number of created items
    },
    //Order of the three ingredients is irrelevant
    "input_a": <item ingredient>,//First required item
    "input_b": <item ingredient>,//Second required item
    "input_c": <item ingredient>//Third required item
}
Clone this wiki locally