From 6a5068deee32faeed3e3f066fd5f5ae72325d7c5 Mon Sep 17 00:00:00 2001 From: xtex Date: Sun, 30 Jul 2023 15:22:46 +0800 Subject: [PATCH] feat: add recipe for CA and RS --- .../quaedam/recipes/causality_anchor.json | 9 +++++++++ .../data/quaedam/recipes/reality_stabler.json | 19 +++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 common/src/main/resources/data/quaedam/recipes/causality_anchor.json create mode 100644 common/src/main/resources/data/quaedam/recipes/reality_stabler.json diff --git a/common/src/main/resources/data/quaedam/recipes/causality_anchor.json b/common/src/main/resources/data/quaedam/recipes/causality_anchor.json new file mode 100644 index 0000000..1b818dc --- /dev/null +++ b/common/src/main/resources/data/quaedam/recipes/causality_anchor.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "ingredient": { + "item": "quaedam:projection_metal" + }, + "result": "quaedam:causality_anchor", + "experience": 1.0, + "cookingtime": 1200 +} diff --git a/common/src/main/resources/data/quaedam/recipes/reality_stabler.json b/common/src/main/resources/data/quaedam/recipes/reality_stabler.json new file mode 100644 index 0000000..763feec --- /dev/null +++ b/common/src/main/resources/data/quaedam/recipes/reality_stabler.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "---", + "-.-", + "---" + ], + "key": { + "-": { + "item": "quaedam:projection_metal" + }, + ".": { + "item": "minecraft:obsidian" + } + }, + "result": { + "item": "quaedam:reality_stabler" + } +}