Skip to content

Stonecutting Recipes

Stonecutting recipes are used in the stonecutter to convert one block type into another.

YAML Example

yaml
type: 'vanilla_stonecutting'
result: 'minecraft:stone_brick'
ingredient: 'minecraft:stone'
group: 'stonecutting'

Fields

FieldTypeRequiredDescription
typestringYesMust be vanilla_stonecutting
resultstringYesOutput item ID
ingredientstringYesInput item ID (single item)
groupstringNoRecipe group name

Multiple Outputs

To allow one material to produce multiple outputs, create separate recipe files:

yaml
# stone_to_bricks.yml
type: 'vanilla_stonecutting'
result: 'minecraft:stone_bricks'
ingredient: 'minecraft:stone'

# stone_to_slab.yml
type: 'vanilla_stonecutting'
result: 'minecraft:stone_slab'
ingredient: 'minecraft:stone'

基于 GPL-3.0 许可证发布