Cooking blueprint config
Guide how to create a cooking recipe.
# 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"Last updated