From f67f02fbdcf96be797c9d0ba7a28c8434e7a73eb Mon Sep 17 00:00:00 2001 From: Pandro Date: Sat, 11 Oct 2025 14:45:24 +0200 Subject: [PATCH] Added "Orb of Origins" crafting recipe Makde the "Orb of Origins craftable by combining a diamond in the middle surrounded by 4 emeralds. --- data/crafting/recipe/crafting_recipe.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 data/crafting/recipe/crafting_recipe.json diff --git a/data/crafting/recipe/crafting_recipe.json b/data/crafting/recipe/crafting_recipe.json new file mode 100644 index 0000000..9035a17 --- /dev/null +++ b/data/crafting/recipe/crafting_recipe.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + " # ", + "#D#", + " # " + ], + "key": { + "#": { + "item": "minecraft:emerald" + }, + "D": { + "item": "minecraft:diamond" + } + }, + "result": { + "id": "origins:orb_of_origin", + "count": 1 + } +}