From ddcc5fafe7aa2120b8ccec2e3996e77cd66fad47 Mon Sep 17 00:00:00 2001 From: steev Date: Mon, 6 Nov 2023 10:38:52 +0100 Subject: [PATCH] added pressure body recipe --- .../data/brewcraft/recipes/milling_stone.json | 21 +++++++++++++++++++ .../data/brewcraft/recipes/pressure_body.json | 21 +++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 src/main/resources/data/brewcraft/recipes/milling_stone.json create mode 100644 src/main/resources/data/brewcraft/recipes/pressure_body.json diff --git a/src/main/resources/data/brewcraft/recipes/milling_stone.json b/src/main/resources/data/brewcraft/recipes/milling_stone.json new file mode 100644 index 0000000..1f5d0d6 --- /dev/null +++ b/src/main/resources/data/brewcraft/recipes/milling_stone.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "SSS", + "SIS", + "SSS" + ], + "key": { + "I": { + "item": "minecraft:iron_ingot" + }, + "S": { + "item": "minecraft:stone" + } + }, + "result": { + "item": "brewcraft:milling_stone", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/brewcraft/recipes/pressure_body.json b/src/main/resources/data/brewcraft/recipes/pressure_body.json new file mode 100644 index 0000000..8f3b3c3 --- /dev/null +++ b/src/main/resources/data/brewcraft/recipes/pressure_body.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "PPP", + "PTP", + "PPP" + ], + "key": { + "P": { + "item": "brewcraft:pressed_iron" + }, + "T": { + "item": "brewcraft:fluid_tank" + } + }, + "result": { + "item": "brewcraft:pressure_body", + "count": 1 + } +} \ No newline at end of file