AuroraCrafting
  • AuroraCrafting
  • Configuration
    • Main config
    • Workbench config
    • Blueprint config
    • Smithing blueprint config
    • Cooking blueprint config
    • Brewing recipes
    • Stonecutter blueprint config
    • Cauldron blueprint config
    • Recipe book config
    • Merchant config
    • Disabled vanilla recipes config
  • Commands
  • Permissions
  • Compatible plugins
  • API
Powered by GitBook
On this page
  1. Configuration

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
    input: "minecraft:diamond"
    # The bottom 3 slots before the brewing starts
    ingredient: "minecraft:emerald"
    # 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.

PreviousCooking blueprint configNextStonecutter blueprint config

Last updated 28 days ago