Cheaper leather armour recipes

* Make leather craftable back into rabbit hide
* Make leather armour use rabbit hide for crafting
This commit is contained in:
Sergeant Acoustic 2025-08-24 05:06:53 +01:00
parent 5bdaeab6e8
commit 45212f8bac
7 changed files with 94 additions and 2 deletions

View file

@ -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,7 +35,6 @@ 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

View file

@ -0,0 +1,12 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "minecraft:leather"
}
],
"result": {
"item": "minecraft:rabbit_hide",
"count": 4
}
}

View file

@ -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
}

View file

@ -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
}

View file

@ -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
}

View file

@ -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
}

View file

@ -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
}