mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Brinestone armor recipe fix
This commit is contained in:
parent
690385df96
commit
2805509c12
@ -38,6 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
- Removed weapon and armor drops from standard NPCs
|
||||
- Tweaked dungeons mobs and chests loot tables to be more balanced and rewarding
|
||||
- Changed iron ore to iron ingots in the instruments' recipes
|
||||
- Changed gold ore to gold ingots in the Brinstone armor set recipes
|
||||
|
||||
### Removed
|
||||
- Medium and large potions from all loot tables
|
||||
|
@ -1652,7 +1652,7 @@
|
||||
"brinestone_back": (
|
||||
output: ("common.items.armor.brinestone.back", 1),
|
||||
inputs: [
|
||||
(Item("common.items.mineral.ore.gold"), 1, false),
|
||||
(Item("common.items.mineral.ingot.gold"), 1, false),
|
||||
(Item("common.items.crafting_ing.brinestone"), 2, false),
|
||||
(Item("common.items.crafting_ing.leather.rigid_leather"), 3, false),
|
||||
],
|
||||
@ -1661,7 +1661,7 @@
|
||||
"brinestone_belt": (
|
||||
output: ("common.items.armor.brinestone.belt", 1),
|
||||
inputs: [
|
||||
(Item("common.items.mineral.ore.gold"), 1, false),
|
||||
(Item("common.items.mineral.ingot.gold"), 1, false),
|
||||
(Item("common.items.crafting_ing.brinestone"), 2, false),
|
||||
],
|
||||
craft_sprite: Some(Anvil),
|
||||
@ -1669,7 +1669,7 @@
|
||||
"brinestone_chest": (
|
||||
output: ("common.items.armor.brinestone.chest", 1),
|
||||
inputs: [
|
||||
(Item("common.items.mineral.ore.gold"), 2, false),
|
||||
(Item("common.items.mineral.ingot.gold"), 2, false),
|
||||
(Item("common.items.crafting_ing.brinestone"), 4, false),
|
||||
(Item("common.items.crafting_ing.leather.rigid_leather"), 2, false),
|
||||
],
|
||||
@ -1678,7 +1678,7 @@
|
||||
"brinestone_feet": (
|
||||
output: ("common.items.armor.brinestone.foot", 1),
|
||||
inputs: [
|
||||
(Item("common.items.mineral.ore.gold"), 1, false),
|
||||
(Item("common.items.mineral.ingot.gold"), 1, false),
|
||||
(Item("common.items.crafting_ing.brinestone"), 2, false),
|
||||
],
|
||||
craft_sprite: Some(Anvil),
|
||||
@ -1694,7 +1694,7 @@
|
||||
"brinestone_pants": (
|
||||
output: ("common.items.armor.brinestone.pants", 1),
|
||||
inputs: [
|
||||
(Item("common.items.mineral.ore.gold"), 2, false),
|
||||
(Item("common.items.mineral.ingot.gold"), 2, false),
|
||||
(Item("common.items.crafting_ing.brinestone"), 4, false),
|
||||
(Item("common.items.crafting_ing.leather.rigid_leather"), 3, false),
|
||||
],
|
||||
@ -1703,7 +1703,7 @@
|
||||
"brinestone_shoulder": (
|
||||
output: ("common.items.armor.brinestone.shoulder", 1),
|
||||
inputs: [
|
||||
(Item("common.items.mineral.ore.gold"), 2, false),
|
||||
(Item("common.items.mineral.ingot.gold"), 2, false),
|
||||
(Item("common.items.crafting_ing.brinestone"), 4, false),
|
||||
(Item("common.items.crafting_ing.leather.rigid_leather"), 4, false),
|
||||
],
|
||||
@ -1712,7 +1712,7 @@
|
||||
"brinestone_crown": (
|
||||
output: ("common.items.armor.brinestone.crown", 1),
|
||||
inputs: [
|
||||
(Item("common.items.mineral.ore.gold"), 1, false),
|
||||
(Item("common.items.mineral.ingot.gold"), 1, false),
|
||||
(Item("common.items.crafting_ing.pearl"), 2, false),
|
||||
(Item("common.items.crafting_ing.brinestone"), 4, false),
|
||||
],
|
||||
|
Loading…
Reference in New Issue
Block a user