Files
2026-07-14 08:05:36 -07:00

4.9 KiB

Crafting Recipes

1. The Blaze Rod (The End-Game Key)

This is the most important one. It's the absolute hard-lock on peaceful progression. The recipe needs to feel earned and require a trip to the Nether.

  • The Recipe Logic: We're combining a material forged in the Nether (Nether Brick), a valuable and conductive material (Gold Ingot), and a source of intense, contained heat (Magma Block).

  • Crafting Grid:

    [   Magma Block   ]
    [   Gold Ingot    ]
    [  Nether Brick   ]
    

    Result: 1 Blaze Rod

  • JSON Code (blaze_rod.json):

    JSON

    {
      "type": "minecraft:crafting_shaped",
      "pattern": [
        "M",
        "G",
        "N"
      ],
      "key": {
        "M": {
          "item": "minecraft:magma_block"
        },
        "G": {
          "item": "minecraft:gold_ingot"
        },
        "N": {
          "item": "minecraft:nether_brick"
        }
      },
      "result": {
        "item": "minecraft:blaze_rod"
      }
    }
    

2. The Ender Pearl

The second key to the End. This recipe should feel magical and rare, reflecting the pearl's mysterious nature.

  • The Recipe Logic: Combining a rare crystalline gem (Diamond), a block associated with portals and dark places (Obsidian), and the newly introduced magical crystal (Amethyst Shard).

  • Crafting Grid:

    [      Obsidian     ] [ Amethyst Shard ] [      Obsidian     ]
    [  Amethyst Shard   ] [     Diamond    ] [  Amethyst Shard   ]
    [      Obsidian     ] [ Amethyst Shard ] [      Obsidian     ]
    

    Result: 1 Ender Pearl

  • JSON Code (ender_pearl.json):

    JSON

    {
      "type": "minecraft:crafting_shaped",
      "pattern": [
        "OPO",
        "PDP",
        "OPO"
      ],
      "key": {
        "O": {
          "item": "minecraft:obsidian"
        },
        "P": {
          "item": "minecraft:amethyst_shard"
        },
        "D": {
          "item": "minecraft:diamond"
        }
      },
      "result": {
        "item": "minecraft:ender_pearl"
      }
    }
    

3. Gunpowder

A staple for TNT and fireworks. The recipe should be simple and use common, logical materials.

  • The Recipe Logic: A classic combination. Carbon from Charcoal acts as the fuel, and Sand (silica) provides the body. It feels like a plausible, primitive explosive mixture.

  • Crafting Grid (Shapeless):

    1 Charcoal + 1 Sand + 1 Gravel (added Gravel for texture and to make it slightly more than a 2-item recipe)

    Result: 2 Gunpowder

  • JSON Code (gunpowder.json):

    JSON

    {
      "type": "minecraft:crafting_shapeless",
      "ingredients": [
        {
          "item": "minecraft:charcoal"
        },
        {
          "item": "minecraft:sand"
        },
        {
          "item": "minecraft:gravel"
        }
      ],
      "result": {
        "item": "minecraft:gunpowder",
        "count": 2
      }
    }
    

4. Slimeball

Crucial for Redstone contraptions. The recipe should mimic a sticky, green, natural substance.

  • The Recipe Logic: We're combining a gooey, natural block (Moss Block), a sticky substance (Honey Bottle), and a green dye to get the color right.

  • Crafting Grid (Shapeless):

    1 Moss Block + 1 Honey Bottle + 1 Lime Dye

    Result: 2 Slimeballs (and you get your bottle back!)

  • JSON Code (slimeball.json):

    JSON

    {
      "type": "minecraft:crafting_shapeless",
      "ingredients": [
        {
          "item": "minecraft:moss_block"
        },
        {
          "item": "minecraft:honey_bottle"
        },
        {
          "item": "minecraft:lime_dye"
        }
      ],
      "result": {
        "item": "minecraft:slimeball",
        "count": 2
      },
      "group": "slimeball"
    }
    

    (Note: This recipe won't return the bottle by default with data packs, but the logic stands. The cost is one honey bottle.)


5. String

While findable, having a renewable source is a huge quality-of-life improvement.

  • The Recipe Logic: Simply unraveling a block of Wool back into its constituent parts.

  • Crafting Grid (Shapeless):

    1 White Wool (or any color wool)

    Result: 4 String

  • JSON Code (string_from_wool.json):

    JSON

    {
      "type": "minecraft:crafting_shapeless",
      "ingredients": [
        {
          "tag": "minecraft:wool"
        }
      ],
      "result": {
        "item": "minecraft:string",
        "count": 4
      }
    }
    

    (Using a "tag" means this recipe will work with any color of wool, not just white.)

With these five recipes in your data pack, you will have a complete, balanced, and rewarding way to progress through the entire game. Happy crafting!