Aurora Plugins

Brewing recipes

Guide how to create a brewing recipe.

These are vanilla recipes, so you have to follow vanilla rules. However, you can still use custom items in these recipes. Because they use PredicateChoice, they are more flexible than cooking/stonecutter recipes.

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.