diff --git a/Common/src/main/resources/data/hyperlighting/recipes/pumpkin_trio.json b/Common/src/main/resources/data/hyperlighting/recipes/pumpkin_trio.json new file mode 100644 index 0000000..8ba8ed6 --- /dev/null +++ b/Common/src/main/resources/data/hyperlighting/recipes/pumpkin_trio.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "C": { + "item": "minecraft:hay_block" + }, + "Y": { + "item": "minecraft:pumpkin" + } + }, + "pattern": [ + "Y Y", + " Y ", + "CCC" + ], + "result": { + "item": "hyperlighting:pumpkin_trio", + "count": 3 + }, + "show_notification": true +} diff --git a/Common/src/main/resources/data/hyperlighting/recipes/pumpkin_trio_inverted.json b/Common/src/main/resources/data/hyperlighting/recipes/pumpkin_trio_inverted.json new file mode 100644 index 0000000..9820859 --- /dev/null +++ b/Common/src/main/resources/data/hyperlighting/recipes/pumpkin_trio_inverted.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "C": { + "item": "minecraft:hay_block" + }, + "Y": { + "item": "minecraft:pumpkin" + } + }, + "pattern": [ + "CCC", + " Y ", + "Y Y" + ], + "result": { + "item": "hyperlighting:pumpkin_trio_inverted", + "count": 3 + }, + "show_notification": true +}