Cooking blueprint config

Guide how to create a cooking recipe.

You can write cooking recipes inside the following folders:

  • blueprints/vanilla/furnace

  • blueprints/vanilla/blast_furnace

  • blueprints/vanilla/smoker

  • blueprints/vanilla/campfire

The folder defines where the recipe will be available. (Regular furnace, Blast furnace, Smoker, Campfire)

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 vanilla recipe. Required.
  - id: cooked_diamond
    # The thing you want to smelt
    input: "minecraft:prismarine_shard"
    # The output after you have smelt it
    result: "minecraft:diamond"
    # Every field is optional below
    # How much vanilla XP will it give
    experience: 10
    # How long does it take to smelt the input into the result. Defined in ticks.
    cooking-time: 1000
    # In what category should this be in the relevant vanilla recipe book?
    category: misc
    # Used to group together recipes when their type and result are the same. Optional
    group: "my group"

To see the available vanilla cooking recipe book category options, look here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/inventory/recipe/CookingBookCategory.html

Last updated