From 7381f6181ee679d0379780fa9aae31c663a352e5 Mon Sep 17 00:00:00 2001 From: Sollace Date: Mon, 26 Sep 2022 13:58:12 +0200 Subject: [PATCH] Added recipe to get dirt from wheat worms and sand --- .../data/unicopia/recipes/worms_to_dirt.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/main/resources/data/unicopia/recipes/worms_to_dirt.json diff --git a/src/main/resources/data/unicopia/recipes/worms_to_dirt.json b/src/main/resources/data/unicopia/recipes/worms_to_dirt.json new file mode 100644 index 00000000..172b1e4f --- /dev/null +++ b/src/main/resources/data/unicopia/recipes/worms_to_dirt.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "WX", + "XW" + ], + "key": { + "W": { + "item": "unicopia:wheat_worms" + }, + "X": { + "item": "minecraft:sand" + } + }, + "result": { + "item": "minecraft:dirt", + "count": 2 + } +} \ No newline at end of file