From bd10e3ad78ac92e66b9820235e83e3ccbc8e132a Mon Sep 17 00:00:00 2001 From: Sollace Date: Fri, 1 Feb 2019 14:25:09 +0200 Subject: [PATCH] Added recipes for water_bottle and water_bucket using dew drops --- .../assets/unicopia/recipes/water_bottle.json | 26 +++++++++++++++++++ .../assets/unicopia/recipes/water_bucket.json | 24 +++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 src/main/resources/assets/unicopia/recipes/water_bottle.json create mode 100644 src/main/resources/assets/unicopia/recipes/water_bucket.json diff --git a/src/main/resources/assets/unicopia/recipes/water_bottle.json b/src/main/resources/assets/unicopia/recipes/water_bottle.json new file mode 100644 index 00000000..648f6ffa --- /dev/null +++ b/src/main/resources/assets/unicopia/recipes/water_bottle.json @@ -0,0 +1,26 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "***", + " * ", + " # " + ], + "key": { + "#": [ + { + "item": "minecraft:glass_bottle" + } + ], + "*": [ + { + "item": "unicopia:dew_drop" + } + ] + }, + "result": { + "item": "minecraft:potion", + "data": 0, + "count": 1, + "nbt": { "Potion": "minecraft:water" } + } +} diff --git a/src/main/resources/assets/unicopia/recipes/water_bucket.json b/src/main/resources/assets/unicopia/recipes/water_bucket.json new file mode 100644 index 00000000..5aba6335 --- /dev/null +++ b/src/main/resources/assets/unicopia/recipes/water_bucket.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "***", + "***", + " # " + ], + "key": { + "#": [ + { + "item": "minecraft:bucket" + } + ], + "*": [ + { + "item": "unicopia:dew_drop" + } + ] + }, + "result": { + "item": "minecraft:water_bucket", + "count": 1 + } +}