Skip to main content

Recipe Documentation - Furnace Recipe

Represents a recipe that is to be used with a furnace. Input items will burn and transform into items specified in output.

Parameters

NameTypeDefaultDescription
inputItem descriptornot setItem that is to be transformed in the furnace.
outputItem descriptornot setItem that is produced as output when the input item is burned.
tagsString arraynot setItem that can create the furnace recipe, such as "furnace".
experienceFloat0.0Amount of experience to be given to the player when the recipe is completed.

Furnace Recipe Example

{
"format_version": "1.0.0",
"minecraft:recipe_furnace": {
"description": {
"identifier": "minecraft:furnace_beef"
},
"tags": [
"furnace",
"smoker",
"campfire",
"soul_campfire"
],
"experience": 0.15,
"input": {
"item": "minecraft:beef"
},
"output": {
"item": "minecraft:cooked_beef"
}
}
}