From 8326410c8c59b9848fe6d2ab3b9a81c468677aac Mon Sep 17 00:00:00 2001 From: GaLi <3096147684@qq.com> Date: Fri, 22 Aug 2025 20:04:26 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=B9=B6=E8=A1=8C=E5=A4=84?= =?UTF-8?q?=E7=90=86=E5=8D=95=E5=85=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../resources/assets/extendedae_plus/lang/zh_cn.json | 12 +++++++++++- .../recipes/16x_crafting_accelerator.json | 8 ++++++++ .../recipes/256x_crafting_accelerator.json | 8 ++++++++ .../recipes/4x_crafting_accelerator.json | 8 ++++++++ .../recipes/64x_crafting_accelerator.json | 8 ++++++++ 5 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 src/main/resources/data/extendedae_plus/recipes/16x_crafting_accelerator.json create mode 100644 src/main/resources/data/extendedae_plus/recipes/256x_crafting_accelerator.json create mode 100644 src/main/resources/data/extendedae_plus/recipes/4x_crafting_accelerator.json create mode 100644 src/main/resources/data/extendedae_plus/recipes/64x_crafting_accelerator.json diff --git a/src/main/resources/assets/extendedae_plus/lang/zh_cn.json b/src/main/resources/assets/extendedae_plus/lang/zh_cn.json index 90e1e2d..7ef5235 100644 --- a/src/main/resources/assets/extendedae_plus/lang/zh_cn.json +++ b/src/main/resources/assets/extendedae_plus/lang/zh_cn.json @@ -14,5 +14,15 @@ "extendedae_plus.screen.reload_mapping": "重载映射", "extendedae_plus.screen.add_mapping": "增加映射", "extendedae_plus.screen.cn_name": "中文名", - "extendedae_plus.button.choose_provider":"上传样板" + "extendedae_plus.button.choose_provider":"上传样板", + + "block.extendedae_plus.4x_crafting_accelerator": "4x并行处理单元", + "block.extendedae_plus.16x_crafting_accelerator": "16x并行处理单元", + "block.extendedae_plus.64x_crafting_accelerator": "64x并行处理单元", + "block.extendedae_plus.256x_crafting_accelerator": "256x并行处理单元", + + "item.extendedae_plus.4x_crafting_accelerator": "4x并行处理单元", + "item.extendedae_plus.16x_crafting_accelerator": "16x并行处理单元", + "item.extendedae_plus.64x_crafting_accelerator": "64x并行处理单元", + "item.extendedae_plus.256x_crafting_accelerator": "256x并行处理单元" } \ No newline at end of file diff --git a/src/main/resources/data/extendedae_plus/recipes/16x_crafting_accelerator.json b/src/main/resources/data/extendedae_plus/recipes/16x_crafting_accelerator.json new file mode 100644 index 0000000..84ce19e --- /dev/null +++ b/src/main/resources/data/extendedae_plus/recipes/16x_crafting_accelerator.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { "item": "ae2:crafting_accelerator" }, + { "item": "ae2:cell_component_16k" } + ], + "result": { "item": "extendedae_plus:16x_crafting_accelerator", "count": 1 } +} diff --git a/src/main/resources/data/extendedae_plus/recipes/256x_crafting_accelerator.json b/src/main/resources/data/extendedae_plus/recipes/256x_crafting_accelerator.json new file mode 100644 index 0000000..eef86b8 --- /dev/null +++ b/src/main/resources/data/extendedae_plus/recipes/256x_crafting_accelerator.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { "item": "ae2:crafting_accelerator" }, + { "item": "ae2:cell_component_256k" } + ], + "result": { "item": "extendedae_plus:256x_crafting_accelerator", "count": 1 } +} diff --git a/src/main/resources/data/extendedae_plus/recipes/4x_crafting_accelerator.json b/src/main/resources/data/extendedae_plus/recipes/4x_crafting_accelerator.json new file mode 100644 index 0000000..a6013c4 --- /dev/null +++ b/src/main/resources/data/extendedae_plus/recipes/4x_crafting_accelerator.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { "item": "ae2:crafting_accelerator" }, + { "item": "ae2:cell_component_4k" } + ], + "result": { "item": "extendedae_plus:4x_crafting_accelerator", "count": 1 } +} diff --git a/src/main/resources/data/extendedae_plus/recipes/64x_crafting_accelerator.json b/src/main/resources/data/extendedae_plus/recipes/64x_crafting_accelerator.json new file mode 100644 index 0000000..d7bf57a --- /dev/null +++ b/src/main/resources/data/extendedae_plus/recipes/64x_crafting_accelerator.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { "item": "ae2:crafting_accelerator" }, + { "item": "ae2:cell_component_64k" } + ], + "result": { "item": "extendedae_plus:64x_crafting_accelerator", "count": 1 } +}