Skip to content

Smelting Recipes

Smelting recipes support 4 device types: furnace, blast furnace, smoker, and campfire.

Types

TypeDeviceDefault Time (ticks)
vanilla_smelting_furnaceFurnace200
vanilla_smelting_blastBlast Furnace100
vanilla_smelting_smokerSmoker100
vanilla_smelting_campfireCampfire100

YAML Example

yaml
type: 'vanilla_smelting_furnace'
result: 'minecraft:diamond'
ingredient: 'minecraft:bedrock'
exp: 1.0
time: 200
group: 'smelting'
recipe_book_category: misc

Fields

FieldTypeRequiredDescription
typestringYesOne of the 4 types listed above
resultstringYesOutput item ID
ingredientstringYesInput item ID (single item)
expnumberNoSmelting experience reward, default 0
timeintegerNoSmelting time in ticks, default depends on device type
groupstringNoRecipe group name
recipe_book_categorystringNoRecipe book category: food, blocks, misc

Experience and Time

  • Experience (exp): Experience points given to the player after smelting completes. Supports decimals.
  • Time (time): Unit is ticks (20 ticks = 1 second)
    • Furnace default: 200 ticks (10 seconds)
    • Blast furnace / Smoker / Campfire default: 100 ticks (5 seconds)

Four Device Types

yaml
# Furnace — most versatile, slowest
type: 'vanilla_smelting_furnace'

# Blast Furnace — ores only, 2× speed
type: 'vanilla_smelting_blast'

# Smoker — food only, 2× speed
type: 'vanilla_smelting_smoker'

# Campfire — food only, no experience
type: 'vanilla_smelting_campfire'

基于 GPL-3.0 许可证发布