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_stand
folder.
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"
Last updated