Cheaper leather armour recipes
* Make leather craftable back into rabbit hide * Make leather armour use rabbit hide for crafting
This commit is contained in:
parent
5bdaeab6e8
commit
45212f8bac
|
|
@ -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 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
|
- 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
|
- 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
|
## 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)
|
- 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 a new music disc, sure, why not
|
||||||
- Add two developer items
|
- 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
|
- 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)
|
- Replace the blackstone hammer with cobalt and the obsidian hammer with something (we have not decided what)
|
||||||
- Make minecarts fast
|
- Make minecarts fast
|
||||||
|
|
|
||||||
12
data/mc_rebalance/recipes/rabbit_hide.json
Normal file
12
data/mc_rebalance/recipes/rabbit_hide.json
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"ingredients": [
|
||||||
|
{
|
||||||
|
"item": "minecraft:leather"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"item": "minecraft:rabbit_hide",
|
||||||
|
"count": 4
|
||||||
|
}
|
||||||
|
}
|
||||||
15
data/minecraft/recipes/leather_boots.json
Normal file
15
data/minecraft/recipes/leather_boots.json
Normal 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
|
||||||
|
}
|
||||||
16
data/minecraft/recipes/leather_chestplate.json
Normal file
16
data/minecraft/recipes/leather_chestplate.json
Normal 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
|
||||||
|
}
|
||||||
15
data/minecraft/recipes/leather_helmet.json
Normal file
15
data/minecraft/recipes/leather_helmet.json
Normal 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
|
||||||
|
}
|
||||||
18
data/minecraft/recipes/leather_horse_armor.json
Normal file
18
data/minecraft/recipes/leather_horse_armor.json
Normal 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
|
||||||
|
}
|
||||||
16
data/minecraft/recipes/leather_leggings.json
Normal file
16
data/minecraft/recipes/leather_leggings.json
Normal 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
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue