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

Name Type Description
ingredients Array of item names Items used as input (without a shape) for the recipe.
priority Integer Sets the priority order of the recipe. Lower numbers represent a higher priority.
result Array of item names These items are the result.
tags String array (optional) Item that can create the shapeless recipe such as "stonecutter".

Shapeless Recipe Example

{
"format_version": "1.17",
    "minecraft:recipe_shapeless": {
        "description": {
            "identifier": "minecraft:firecharge_coal_sulphur"
        },
     "priority": 0,
     "ingredients": {
        "item": "minecraft:fireball",
        "data": 0,
        "count": 4
     },
    "result": {
        "item": "minecraft:blaze_powder",
        "data": 4
        }
    }
}

Vanilla Example

Blaze Powder

{
  "format_version": "1.12",
  "minecraft:recipe_shapeless": {
    "description": {
    "identifier": "minecraft:blaze_powder"
    },

    
    "tags": [ "crafting_table" ],
    "ingredients": [
      {
        "item": "minecraft:blaze_rod"
      }
    ],
    "result": {
      "item": "minecraft:blaze_powder",
      "count": 2
    }
  }
}

Stonecutter Andesite Wall (with optional tag parameter)

{
  "format_version": "1.12",
  "minecraft:recipe_shapeless": {
    "description": {
    "identifier": "minecraft:stonecutter_andesite_wall"
    },

    
    "tags": [ "stonecutter" ],
    "priority": 2,
    "ingredients": [
      {
        "item": "minecraft:stone",
        "data": 5
      }
    ],
    "result": {
      "item": "minecraft:cobblestone_wall",
      "data": 4,
      "count": 1
    }
  }
  
}