Cauldron blueprint config

Guide how to create a cauldron recipe.

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

Format of the recipe yml files:

# You can list any amount of recipes here  
recipes:
    # ID of the recipe. Must be unique across every type of recipe. Required
  - id: soaked_diamond
    # This is the item that will be taken from the player. Required
    input: "minecraft:diamond"
    # This is the item the player will get in exhange. Required
    result: "minecraft:prismarine_shard"
    # How much fluid should the cauldron have and how much should we take? Required
    fluid-level: 1
    # What fluid should the cauldron have? Required
    fluid: POWDER_SNOW_CAULDRON
    # How much vanilla exp should the player get? Optional
    experience: 10

Last updated