Skip to main content

Recipe Documentation - Shapeless Recipe

Represents a shapeless crafting recipe.

note

Unlike a Shaped Recipe, pattern and key are not used when defining a Shapeless Recipe.

Parameters

NameTypeDefaultDescription
ingredientsItem descriptor arraynot setItems used as input (without a shape) for the recipe.
priorityIntegernot setSets the priority order of the recipe. Lower numbers represent a higher priority.
resultItem descriptornot setWhen input items match the recipe, this item will be produced as output.
tagsString arraynot setItem that can create the shapeless recipe, such as "crafting_table".

Shapeless Recipe Example

{
"format_version": "1.0.0",
"minecraft:recipe_shapeless": {
"description": {
"identifier": "minecraft:blaze_powder"
},
"tags": [ "crafting_table" ],
"ingredients": [
{
"item": "minecraft:blaze_rod"
}
],
"result": {
"item": "minecraft:blaze_powder",
"count": 2
}
}
}