From 550056e1724ca5a33e0ccbde7f0b3dc2f5fcf50c Mon Sep 17 00:00:00 2001 From: bcmray <975875040@qq.com> Date: Tue, 24 Feb 2026 21:49:36 +0800 Subject: [PATCH 1/4] feat: add another recipe for grass blocks - blue_grass - light_blue_grass - light_purple_grass - orange_grass - purple_grass --- box3formula/data/box3/recipe/blue_grass_2.json | 9 +++++++++ box3formula/data/box3/recipe/light_blue_grass_2.json | 9 +++++++++ box3formula/data/box3/recipe/light_purple_grass_2.json | 9 +++++++++ box3formula/data/box3/recipe/orange_grass_2.json | 9 +++++++++ box3formula/data/box3/recipe/purple_grass_2.json | 9 +++++++++ 5 files changed, 45 insertions(+) create mode 100644 box3formula/data/box3/recipe/blue_grass_2.json create mode 100644 box3formula/data/box3/recipe/light_blue_grass_2.json create mode 100644 box3formula/data/box3/recipe/light_purple_grass_2.json create mode 100644 box3formula/data/box3/recipe/orange_grass_2.json create mode 100644 box3formula/data/box3/recipe/purple_grass_2.json diff --git a/box3formula/data/box3/recipe/blue_grass_2.json b/box3formula/data/box3/recipe/blue_grass_2.json new file mode 100644 index 0000000..79a3719 --- /dev/null +++ b/box3formula/data/box3/recipe/blue_grass_2.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": ["minecraft:dirt", "minecraft:dirt", "minecraft:blue_dye"], + "result": { + "id": "box3:blue_grass", + "count": 1 + }, + "group": "blue_grass" +} diff --git a/box3formula/data/box3/recipe/light_blue_grass_2.json b/box3formula/data/box3/recipe/light_blue_grass_2.json new file mode 100644 index 0000000..0e5ebec --- /dev/null +++ b/box3formula/data/box3/recipe/light_blue_grass_2.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": ["minecraft:dirt", "minecraft:dirt", "minecraft:light_blue_dye"], + "result": { + "id": "box3:light_blue_grass", + "count": 1 + }, + "group": "light_blue_grass" +} diff --git a/box3formula/data/box3/recipe/light_purple_grass_2.json b/box3formula/data/box3/recipe/light_purple_grass_2.json new file mode 100644 index 0000000..783c538 --- /dev/null +++ b/box3formula/data/box3/recipe/light_purple_grass_2.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": ["minecraft:dirt", "minecraft:dirt", "minecraft:magenta_dye"], + "result": { + "id": "box3:light_purple_grass", + "count": 1 + }, + "group": "light_purple_grass" +} diff --git a/box3formula/data/box3/recipe/orange_grass_2.json b/box3formula/data/box3/recipe/orange_grass_2.json new file mode 100644 index 0000000..9343640 --- /dev/null +++ b/box3formula/data/box3/recipe/orange_grass_2.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": ["minecraft:dirt", "minecraft:dirt", "minecraft:orange_dye"], + "result": { + "id": "box3:orange_grass", + "count": 1 + }, + "group": "orange_grass" +} diff --git a/box3formula/data/box3/recipe/purple_grass_2.json b/box3formula/data/box3/recipe/purple_grass_2.json new file mode 100644 index 0000000..90d717e --- /dev/null +++ b/box3formula/data/box3/recipe/purple_grass_2.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": ["minecraft:dirt", "minecraft:dirt", "minecraft:purple_dye"], + "result": { + "id": "box3:purple_grass", + "count": 1 + }, + "group": "purple_grass" +} From 381ad9cb1e175e8462796001ea543c18c2b640aa Mon Sep 17 00:00:00 2001 From: bcmray <975875040@qq.com> Date: Tue, 24 Feb 2026 22:11:09 +0800 Subject: [PATCH 2/4] feat: add button recipe --- box3formula/data/box3/recipe/button.json | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 box3formula/data/box3/recipe/button.json diff --git a/box3formula/data/box3/recipe/button.json b/box3formula/data/box3/recipe/button.json new file mode 100644 index 0000000..feeaaf8 --- /dev/null +++ b/box3formula/data/box3/recipe/button.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": ["#stone_buttons", "minecraft:stone"], + "result": { + "count": 1, + "id": "box3:button" + } +} From 2a288a9c702ec468d307988e39147060d675899c Mon Sep 17 00:00:00 2001 From: bcmray <975875040@qq.com> Date: Tue, 24 Feb 2026 22:16:10 +0800 Subject: [PATCH 3/4] feat: add green_leaf recipe --- box3formula/data/box3/recipe/green_leaf.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 box3formula/data/box3/recipe/green_leaf.json diff --git a/box3formula/data/box3/recipe/green_leaf.json b/box3formula/data/box3/recipe/green_leaf.json new file mode 100644 index 0000000..27d0414 --- /dev/null +++ b/box3formula/data/box3/recipe/green_leaf.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "##", + "##" + ], + "key": { + "#": "#leaves" + }, + "result": { + "id": "box3:green_leaf", + "count": 4 + } +} From bb6cc4c7976fa83d63710d513b32a3fbe1fec835 Mon Sep 17 00:00:00 2001 From: bcmray <975875040@qq.com> Date: Tue, 24 Feb 2026 22:24:17 +0800 Subject: [PATCH 4/4] feat: add recipe for plank blocks - plank_01 - plank_02 - plank_03 --- box3formula/data/box3/recipe/plank_01.json | 15 +++++++++++++++ box3formula/data/box3/recipe/plank_02.json | 15 +++++++++++++++ box3formula/data/box3/recipe/plank_03.json | 15 +++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 box3formula/data/box3/recipe/plank_01.json create mode 100644 box3formula/data/box3/recipe/plank_02.json create mode 100644 box3formula/data/box3/recipe/plank_03.json diff --git a/box3formula/data/box3/recipe/plank_01.json b/box3formula/data/box3/recipe/plank_01.json new file mode 100644 index 0000000..4fe8f88 --- /dev/null +++ b/box3formula/data/box3/recipe/plank_01.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###", + "###" + ], + "key": { + "#": "minecraft:oak_planks" + }, + "result": { + "id": "box3:plank_01", + "count": 9 + } +} diff --git a/box3formula/data/box3/recipe/plank_02.json b/box3formula/data/box3/recipe/plank_02.json new file mode 100644 index 0000000..df05316 --- /dev/null +++ b/box3formula/data/box3/recipe/plank_02.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###", + "###" + ], + "key": { + "#": "minecraft:spruce_planks" + }, + "result": { + "id": "box3:plank_02", + "count": 9 + } +} diff --git a/box3formula/data/box3/recipe/plank_03.json b/box3formula/data/box3/recipe/plank_03.json new file mode 100644 index 0000000..fe7916e --- /dev/null +++ b/box3formula/data/box3/recipe/plank_03.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###", + "###" + ], + "key": { + "#": "minecraft:acacia_planks" + }, + "result": { + "id": "box3:plank_03", + "count": 9 + } +}