Merge branch 'jcoxeye/item-tiering-fixes' into 'master'

Adjusted tiers of various items

See merge request veloren/veloren!4249
This commit is contained in:
maxicarlos08 2024-01-23 21:58:14 +00:00
commit ef84ab6603
10 changed files with 10 additions and 10 deletions

View File

@ -9,7 +9,7 @@ ItemDef(
precision_power: Some(-0.03), precision_power: Some(-0.03),
)), )),
)), )),
quality: Moderate, quality: Common,
tags: [ tags: [
SalvageInto(Amethyst, 1), SalvageInto(Amethyst, 1),
], ],

View File

@ -9,7 +9,7 @@ ItemDef(
energy_reward: Some(-0.15), energy_reward: Some(-0.15),
)), )),
)), )),
quality: Epic, quality: High,
tags: [ tags: [
SalvageInto(Emerald, 1), SalvageInto(Emerald, 1),
], ],

View File

@ -9,7 +9,7 @@ ItemDef(
precision_power: Some(0.0225), precision_power: Some(0.0225),
)), )),
)), )),
quality: Moderate, quality: High,
tags: [ tags: [
SalvageInto(Sapphire, 1), SalvageInto(Sapphire, 1),
], ],

View File

@ -9,7 +9,7 @@ ItemDef(
precision_power: Some(-0.02), precision_power: Some(-0.02),
)), )),
)), )),
quality: Moderate, quality: Common,
tags: [ tags: [
SalvageInto(Amethyst, 1), SalvageInto(Amethyst, 1),
], ],

View File

@ -9,7 +9,7 @@ ItemDef(
energy_reward: Some(-0.1), energy_reward: Some(-0.1),
)), )),
)), )),
quality: Epic, quality: High,
tags: [ tags: [
SalvageInto(Emerald, 1), SalvageInto(Emerald, 1),
], ],

View File

@ -9,7 +9,7 @@ ItemDef(
precision_power: Some(0.015), precision_power: Some(0.015),
)), )),
)), )),
quality: Moderate, quality: High,
tags: [ tags: [
SalvageInto(Sapphire, 1), SalvageInto(Sapphire, 1),
], ],

View File

@ -9,7 +9,7 @@ ItemDef(
energy_reward: Some(-0.05), energy_reward: Some(-0.05),
)), )),
)), )),
quality: Moderate, quality: Common,
tags: [ tags: [
SalvageInto(Topaz, 1), SalvageInto(Topaz, 1),
], ],

View File

@ -8,6 +8,6 @@ ItemDef(
flicker_thousandths: 600, flicker_thousandths: 600,
), ),
), ),
quality: High, quality: Legendary,
tags: [Utility], tags: [Utility],
) )

View File

@ -4,6 +4,6 @@ ItemDef(
kind: Ingredient( kind: Ingredient(
descriptor: "Tin", descriptor: "Tin",
), ),
quality: Common, quality: Low,
tags: [MaterialKind(Metal)], tags: [MaterialKind(Metal)],
) )

View File

@ -5,6 +5,6 @@ ItemDef(
// Descriptor not needed // Descriptor not needed
descriptor: "", descriptor: "",
), ),
quality: Common, quality: Moderate,
tags: [], tags: [],
) )