From 61fbeb58df06e7222958b4376297150843bcfedc Mon Sep 17 00:00:00 2001 From: HypherionSA Date: Sun, 2 Apr 2023 17:15:01 +0200 Subject: [PATCH] [FEAT] Advanced Candle Recipe --- .../recipes/advanced_candle.json | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Common/src/main/resources/data/hyperlighting/recipes/advanced_candle.json diff --git a/Common/src/main/resources/data/hyperlighting/recipes/advanced_candle.json b/Common/src/main/resources/data/hyperlighting/recipes/advanced_candle.json new file mode 100644 index 0000000..51c9404 --- /dev/null +++ b/Common/src/main/resources/data/hyperlighting/recipes/advanced_candle.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "H": { + "item": "minecraft:honeycomb" + }, + "S": { + "item": "minecraft:string" + } + }, + "pattern": [ + "S", + "H", + "H" + ], + "result": { + "item": "hyperlighting:advanced_candle", + "count": 2 + }, + "show_notification": true +}