From 45212f8bac69f645a87943c5c9aaba0b75806681 Mon Sep 17 00:00:00 2001 From: Sergeant Acoustic Date: Sun, 24 Aug 2025 05:06:53 +0100 Subject: [PATCH] Cheaper leather armour recipes * Make leather craftable back into rabbit hide * Make leather armour use rabbit hide for crafting --- README.md | 4 ++-- data/mc_rebalance/recipes/rabbit_hide.json | 12 ++++++++++++ data/minecraft/recipes/leather_boots.json | 15 +++++++++++++++ data/minecraft/recipes/leather_chestplate.json | 16 ++++++++++++++++ data/minecraft/recipes/leather_helmet.json | 15 +++++++++++++++ .../minecraft/recipes/leather_horse_armor.json | 18 ++++++++++++++++++ data/minecraft/recipes/leather_leggings.json | 16 ++++++++++++++++ 7 files changed, 94 insertions(+), 2 deletions(-) create mode 100644 data/mc_rebalance/recipes/rabbit_hide.json create mode 100644 data/minecraft/recipes/leather_boots.json create mode 100644 data/minecraft/recipes/leather_chestplate.json create mode 100644 data/minecraft/recipes/leather_helmet.json create mode 100644 data/minecraft/recipes/leather_horse_armor.json create mode 100644 data/minecraft/recipes/leather_leggings.json diff --git a/README.md b/README.md index e3d287f..adc11b5 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ This mod does *not* change the difficulty of the game. - Netherite has been moved to the End and its damage and mining speed has been buffed to actually mean something - Netherite has been renamed to Dendrite in accordance with its new position - Changes every single lootpool to stop players skipping tiers so easily and reward them more for progression +- Adds a 4:1 conversion between hide and leather and makes leather armour craftable from hide ## Tinker's Construct @@ -34,9 +35,8 @@ This mod does *not* change the difficulty of the game. - Buff gold heavily to ~75% of diamond's durability, increasing other stats to just over iron (pushing up diamond and netherite) - Add a new music disc, sure, why not - Add two developer items -- Add a 4:1 conversion between hide and leather and make leather armour craftable from hide - Tweak the hammers in Tetra to reflect progression - Replace the blackstone hammer with cobalt and the obsidian hammer with something (we have not decided what) - Make minecarts fast - New texture for the enchanting table -- I forgot slimewood and nahuatl lol \ No newline at end of file +- I forgot slimewood and nahuatl lol diff --git a/data/mc_rebalance/recipes/rabbit_hide.json b/data/mc_rebalance/recipes/rabbit_hide.json new file mode 100644 index 0000000..d6961cc --- /dev/null +++ b/data/mc_rebalance/recipes/rabbit_hide.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:leather" + } + ], + "result": { + "item": "minecraft:rabbit_hide", + "count": 4 + } +} diff --git a/data/minecraft/recipes/leather_boots.json b/data/minecraft/recipes/leather_boots.json new file mode 100644 index 0000000..3256736 --- /dev/null +++ b/data/minecraft/recipes/leather_boots.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category":"equipment", + "pattern": [ + "1 1", + "1 1" + ], + "key": { + "1":{"item":"minecraft:rabbit_hide"} + }, + "result": { + "item":"minecraft:leather_boots" + }, + "show_notification":true +} diff --git a/data/minecraft/recipes/leather_chestplate.json b/data/minecraft/recipes/leather_chestplate.json new file mode 100644 index 0000000..285e4cf --- /dev/null +++ b/data/minecraft/recipes/leather_chestplate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category":"equipment", + "pattern": [ + "1 1", + "111", + "111" + ], + "key": { + "1":{"item":"minecraft:rabbit_hide"} + }, + "result": { + "item":"minecraft:leather_chestplate" + }, + "show_notification":true +} diff --git a/data/minecraft/recipes/leather_helmet.json b/data/minecraft/recipes/leather_helmet.json new file mode 100644 index 0000000..5f23590 --- /dev/null +++ b/data/minecraft/recipes/leather_helmet.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category":"equipment", + "pattern": [ + "111", + "1 1" + ], + "key": { + "1":{"item":"minecraft:rabbit_hide"} + }, + "result": { + "item":"minecraft:leather_helmet" + }, + "show_notification":true +} diff --git a/data/minecraft/recipes/leather_horse_armor.json b/data/minecraft/recipes/leather_horse_armor.json new file mode 100644 index 0000000..f636b24 --- /dev/null +++ b/data/minecraft/recipes/leather_horse_armor.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "X": { + "item": "minecraft:rabbit_hide" + } + }, + "pattern": [ + "X X", + "XXX", + "X X" + ], + "result": { + "item": "minecraft:leather_horse_armor" + }, + "show_notification": true +} diff --git a/data/minecraft/recipes/leather_leggings.json b/data/minecraft/recipes/leather_leggings.json new file mode 100644 index 0000000..e516642 --- /dev/null +++ b/data/minecraft/recipes/leather_leggings.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category":"equipment", + "pattern": [ + "111", + "1 1", + "1 1" + ], + "key": { + "1":{"item":"minecraft:rabbit_hide"} + }, + "result": { + "item":"minecraft:leather_leggings" + }, + "show_notification":true +}