Recipe Documentation - Potion Brewing Container Recipe

Represents a Potion Brewing Container Recipe.

Parameters

Name Type Description
input potion Input potion used in the brewing container recipe.
output potion Output potion from the brewing container recipe.
reagent item Item used in the brewing container recipe with the input potion.
tags String array Item that can create the Brewing Container Recipe, such as "brewing_stand".

Potion Brewing Container Recipe Example

{
"format_version": "1.17",
    "minecraft:recipe_brewing_container": {
    "description": {
        "identifier": "minecraft:brew_potion_sulphur"
    },
    "tags": [ "brewing_stand" ],
    "input": "minecraft:potion",
    "reagent": "minecraft:gunpowder",
    "output": "minecraft:splash_potion"
    }
}

Vanilla Example

Brew Potion Sulphur

{
  "format_version": "1.12",
  "minecraft:recipe_brewing_container": {
    "description": {
      "identifier": "minecraft:brew_potion_sulphur"
    },

    "tags": [ "brewing_stand" ],

    "input": "minecraft:potion",
    "reagent": "minecraft:gunpowder",
    "output": "minecraft:splash_potion"
  }

}