Back to Snippets

Custom Recipe Snippet.

A simple custom recipe setup for Fabric mods using the Minecraft Java API. This recipe adds the Enchanted Golden Apple back using 8 gold blocks around a regular apple. Swap yourmod with your mod ID throughout.

How to Use?
Create the recipe JSON in data/yourmod/recipes, and it will be automatically loaded by Minecraft. No Java registration needed.

Requirements
Fabric API, Minecraft 1.20+, Java 17+.

{
  "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
  }
}