From df98c6ebd905500fceb0042dc3c7d526e72d67e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E5=85=B9=E5=8D=A1=E7=8F=AD=E6=AF=95=E4=B8=9A?= =?UTF-8?q?=E7=94=9F?= Date: Tue, 3 Mar 2026 20:51:24 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20add=20all=20=E2=80=9Cbox3:=E7=AC=A6?= =?UTF-8?q?=E5=8F=B7=E2=80=9D=20block=20recipes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- box3formula/data/box3/recipe/ampersand.json | 8 ++++++++ box3formula/data/box3/recipe/asterisk.json | 8 ++++++++ box3formula/data/box3/recipe/at.json | 8 ++++++++ box3formula/data/box3/recipe/backslash.json | 8 ++++++++ box3formula/data/box3/recipe/bracket_close.json | 8 ++++++++ box3formula/data/box3/recipe/bracket_open.json | 8 ++++++++ box3formula/data/box3/recipe/caret.json | 8 ++++++++ box3formula/data/box3/recipe/colon.json | 8 ++++++++ box3formula/data/box3/recipe/comma.json | 8 ++++++++ box3formula/data/box3/recipe/dollar.json | 8 ++++++++ box3formula/data/box3/recipe/greater_than.json | 8 ++++++++ box3formula/data/box3/recipe/less_than.json | 8 ++++++++ box3formula/data/box3/recipe/paren_close.json | 8 ++++++++ box3formula/data/box3/recipe/paren_open.json | 8 ++++++++ box3formula/data/box3/recipe/percent.json | 8 ++++++++ box3formula/data/box3/recipe/period.json | 8 ++++++++ box3formula/data/box3/recipe/pound.json | 8 ++++++++ box3formula/data/box3/recipe/quotation_mark.json | 8 ++++++++ box3formula/data/box3/recipe/semicolon.json | 8 ++++++++ box3formula/data/box3/recipe/slash.json | 8 ++++++++ box3formula/data/box3/recipe/tilde.json | 8 ++++++++ 21 files changed, 168 insertions(+) create mode 100644 box3formula/data/box3/recipe/ampersand.json create mode 100644 box3formula/data/box3/recipe/asterisk.json create mode 100644 box3formula/data/box3/recipe/at.json create mode 100644 box3formula/data/box3/recipe/backslash.json create mode 100644 box3formula/data/box3/recipe/bracket_close.json create mode 100644 box3formula/data/box3/recipe/bracket_open.json create mode 100644 box3formula/data/box3/recipe/caret.json create mode 100644 box3formula/data/box3/recipe/colon.json create mode 100644 box3formula/data/box3/recipe/comma.json create mode 100644 box3formula/data/box3/recipe/dollar.json create mode 100644 box3formula/data/box3/recipe/greater_than.json create mode 100644 box3formula/data/box3/recipe/less_than.json create mode 100644 box3formula/data/box3/recipe/paren_close.json create mode 100644 box3formula/data/box3/recipe/paren_open.json create mode 100644 box3formula/data/box3/recipe/percent.json create mode 100644 box3formula/data/box3/recipe/period.json create mode 100644 box3formula/data/box3/recipe/pound.json create mode 100644 box3formula/data/box3/recipe/quotation_mark.json create mode 100644 box3formula/data/box3/recipe/semicolon.json create mode 100644 box3formula/data/box3/recipe/slash.json create mode 100644 box3formula/data/box3/recipe/tilde.json diff --git a/box3formula/data/box3/recipe/ampersand.json b/box3formula/data/box3/recipe/ampersand.json new file mode 100644 index 0000000..4687546 --- /dev/null +++ b/box3formula/data/box3/recipe/ampersand.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:chiseled_stone_bricks", + "result": { + "id": "box3:ampersand", + "count": 4 + } +} diff --git a/box3formula/data/box3/recipe/asterisk.json b/box3formula/data/box3/recipe/asterisk.json new file mode 100644 index 0000000..abce03a --- /dev/null +++ b/box3formula/data/box3/recipe/asterisk.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:chiseled_stone_bricks", + "result": { + "id": "box3:asterisk", + "count": 4 + } +} diff --git a/box3formula/data/box3/recipe/at.json b/box3formula/data/box3/recipe/at.json new file mode 100644 index 0000000..8ad1fed --- /dev/null +++ b/box3formula/data/box3/recipe/at.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:chiseled_stone_bricks", + "result": { + "id": "box3:at", + "count": 4 + } +} diff --git a/box3formula/data/box3/recipe/backslash.json b/box3formula/data/box3/recipe/backslash.json new file mode 100644 index 0000000..15a335c --- /dev/null +++ b/box3formula/data/box3/recipe/backslash.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:chiseled_stone_bricks", + "result": { + "id": "box3:backslash", + "count": 4 + } +} diff --git a/box3formula/data/box3/recipe/bracket_close.json b/box3formula/data/box3/recipe/bracket_close.json new file mode 100644 index 0000000..ddf9a6e --- /dev/null +++ b/box3formula/data/box3/recipe/bracket_close.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:chiseled_stone_bricks", + "result": { + "id": "box3:bracket_close", + "count": 4 + } +} diff --git a/box3formula/data/box3/recipe/bracket_open.json b/box3formula/data/box3/recipe/bracket_open.json new file mode 100644 index 0000000..e0c1374 --- /dev/null +++ b/box3formula/data/box3/recipe/bracket_open.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:chiseled_stone_bricks", + "result": { + "id": "box3:bracket_open", + "count": 4 + } +} diff --git a/box3formula/data/box3/recipe/caret.json b/box3formula/data/box3/recipe/caret.json new file mode 100644 index 0000000..029415c --- /dev/null +++ b/box3formula/data/box3/recipe/caret.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:chiseled_stone_bricks", + "result": { + "id": "box3:caret", + "count": 4 + } +} diff --git a/box3formula/data/box3/recipe/colon.json b/box3formula/data/box3/recipe/colon.json new file mode 100644 index 0000000..ff036c9 --- /dev/null +++ b/box3formula/data/box3/recipe/colon.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:chiseled_stone_bricks", + "result": { + "id": "box3:colon", + "count": 4 + } +} diff --git a/box3formula/data/box3/recipe/comma.json b/box3formula/data/box3/recipe/comma.json new file mode 100644 index 0000000..67cca3b --- /dev/null +++ b/box3formula/data/box3/recipe/comma.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:chiseled_stone_bricks", + "result": { + "id": "box3:comma", + "count": 4 + } +} diff --git a/box3formula/data/box3/recipe/dollar.json b/box3formula/data/box3/recipe/dollar.json new file mode 100644 index 0000000..7b06e39 --- /dev/null +++ b/box3formula/data/box3/recipe/dollar.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:chiseled_stone_bricks", + "result": { + "id": "box3:dollar", + "count": 4 + } +} diff --git a/box3formula/data/box3/recipe/greater_than.json b/box3formula/data/box3/recipe/greater_than.json new file mode 100644 index 0000000..952984a --- /dev/null +++ b/box3formula/data/box3/recipe/greater_than.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:chiseled_stone_bricks", + "result": { + "id": "box3:greater_than", + "count": 4 + } +} diff --git a/box3formula/data/box3/recipe/less_than.json b/box3formula/data/box3/recipe/less_than.json new file mode 100644 index 0000000..930a92e --- /dev/null +++ b/box3formula/data/box3/recipe/less_than.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:chiseled_stone_bricks", + "result": { + "id": "box3:less_than", + "count": 4 + } +} diff --git a/box3formula/data/box3/recipe/paren_close.json b/box3formula/data/box3/recipe/paren_close.json new file mode 100644 index 0000000..6d99802 --- /dev/null +++ b/box3formula/data/box3/recipe/paren_close.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:chiseled_stone_bricks", + "result": { + "id": "box3:paren_close", + "count": 4 + } +} diff --git a/box3formula/data/box3/recipe/paren_open.json b/box3formula/data/box3/recipe/paren_open.json new file mode 100644 index 0000000..3bc2624 --- /dev/null +++ b/box3formula/data/box3/recipe/paren_open.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:chiseled_stone_bricks", + "result": { + "id": "box3:paren_open", + "count": 4 + } +} diff --git a/box3formula/data/box3/recipe/percent.json b/box3formula/data/box3/recipe/percent.json new file mode 100644 index 0000000..767286c --- /dev/null +++ b/box3formula/data/box3/recipe/percent.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:chiseled_stone_bricks", + "result": { + "id": "box3:percent", + "count": 4 + } +} diff --git a/box3formula/data/box3/recipe/period.json b/box3formula/data/box3/recipe/period.json new file mode 100644 index 0000000..de20963 --- /dev/null +++ b/box3formula/data/box3/recipe/period.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:chiseled_stone_bricks", + "result": { + "id": "box3:period", + "count": 4 + } +} diff --git a/box3formula/data/box3/recipe/pound.json b/box3formula/data/box3/recipe/pound.json new file mode 100644 index 0000000..bbb778c --- /dev/null +++ b/box3formula/data/box3/recipe/pound.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:chiseled_stone_bricks", + "result": { + "id": "box3:pound", + "count": 4 + } +} diff --git a/box3formula/data/box3/recipe/quotation_mark.json b/box3formula/data/box3/recipe/quotation_mark.json new file mode 100644 index 0000000..bc2e162 --- /dev/null +++ b/box3formula/data/box3/recipe/quotation_mark.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:chiseled_stone_bricks", + "result": { + "id": "box3:quotation_mark", + "count": 4 + } +} diff --git a/box3formula/data/box3/recipe/semicolon.json b/box3formula/data/box3/recipe/semicolon.json new file mode 100644 index 0000000..007a075 --- /dev/null +++ b/box3formula/data/box3/recipe/semicolon.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:chiseled_stone_bricks", + "result": { + "id": "box3:semicolon", + "count": 4 + } +} diff --git a/box3formula/data/box3/recipe/slash.json b/box3formula/data/box3/recipe/slash.json new file mode 100644 index 0000000..e770af3 --- /dev/null +++ b/box3formula/data/box3/recipe/slash.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:chiseled_stone_bricks", + "result": { + "id": "box3:slash", + "count": 4 + } +} diff --git a/box3formula/data/box3/recipe/tilde.json b/box3formula/data/box3/recipe/tilde.json new file mode 100644 index 0000000..56fddd0 --- /dev/null +++ b/box3formula/data/box3/recipe/tilde.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:chiseled_stone_bricks", + "result": { + "id": "box3:tilde", + "count": 4 + } +}