From c692c93a2dcf50139ec3de673d85743f4c375394 Mon Sep 17 00:00:00 2001 From: Sergeant Acoustic Date: Mon, 25 Aug 2025 02:51:46 +0100 Subject: [PATCH] Backported saddle recipe This should incentivise using horses for transport Consider making this cheaper, such as leather to hide and/or the ingot to a nugget --- data/minecraft/recipes/saddle.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 data/minecraft/recipes/saddle.json diff --git a/data/minecraft/recipes/saddle.json b/data/minecraft/recipes/saddle.json new file mode 100644 index 0000000..a9cc49d --- /dev/null +++ b/data/minecraft/recipes/saddle.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category":"equipment", + "pattern": [ + " 1 ", + "121" + ], + "key": { + "1":{"item":"minecraft:leather"}, + "2":{"item":"minecraft:iron_ingot"} + }, + "result": { + "item":"minecraft:saddle" + }, + "show_notification":true +}