Brewing recipes

Guide how to create a brewing recipe.

You can write these recipes inside the blueprints/vanilla/brewing_standfolder.

Format of the recipe yml files:

recipes:
    # ID of the recipe. Must be unique across every type of vanilla recipe. Required.
  - id: brewing_test
    # The top (single) slot
    ingredient: "minecraft:emerald"
    # The bottom 3 slots before the brewing starts
    input: "minecraft:diamond"
    # Result after the input is brewed into the ingredient
    result: "minecraft:golden_apple"

TIP: You can use /aurora registeritem <id> while holding an item and then using it like aurora:id in your recipe config. This way, you can operate with vanilla potions as well.

Last updated