/snippet
JSON Minecraft 1.20+ Data Pack

Custom Recipe Snippet.

A simple custom crafting recipe for Minecraft. This example brings back the Enchanted Golden Apple recipe using 8 gold blocks around a regular apple. Place in data/yourmod/recipes/.

// how to use

Create the JSON file in data/yourmod/recipes/ and Minecraft will automatically load it. No Java registration required!

// requirements

Minecraft 1.20+. Works in both vanilla and modded environments. Replace 'yourmod' with your namespace.

{
  "type": "minecraft:crafting_shaped",
  "pattern": [
    "GGG",
    "GAG",
    "GGG"
  ],
  "key": {
    "G": { "item": "minecraft:gold_block" },
    "A": { "item": "minecraft:apple" }
  },
  "result": {
    "item": "minecraft:enchanted_golden_apple",
    "count": 1
  }
}