From 46daa6bfa979c6b0deda7fb02c97d9ced2bce464 Mon Sep 17 00:00:00 2001 From: Sam Date: Sat, 8 Oct 2022 12:31:04 -0400 Subject: [PATCH] Armor nerf --- assets/common/material_stats_manifest.ron | 56 +++++++++++------------ 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/assets/common/material_stats_manifest.ron b/assets/common/material_stats_manifest.ron index a8b8fd3dc3..e2d64bae00 100644 --- a/assets/common/material_stats_manifest.ron +++ b/assets/common/material_stats_manifest.ron @@ -127,59 +127,59 @@ armor_stats: { // Metals "Bronze": ( - protection: Some(Normal(40.0)), + protection: Some(Normal(60.0)), poise_resilience: Some(Normal(10.0)), ), "Iron": ( - protection: Some(Normal(80.0)), + protection: Some(Normal(84.0)), poise_resilience: Some(Normal(20.0)), ), "Steel": ( - protection: Some(Normal(120.0)), + protection: Some(Normal(108.0)), poise_resilience: Some(Normal(30.0)), ), "Cobalt": ( - protection: Some(Normal(160.0)), + protection: Some(Normal(122.0)), poise_resilience: Some(Normal(40.0)), ), "Bloodsteel": ( - protection: Some(Normal(200.0)), + protection: Some(Normal(146.0)), poise_resilience: Some(Normal(50.0)), ), "Orichalcum": ( - protection: Some(Normal(240.0)), + protection: Some(Normal(180.0)), poise_resilience: Some(Normal(60.0)), ), // Hides "Rawhide": ( protection: Some(Normal(20.0)), - crit_power: Some(0.333), - stealth: Some(0.333), + crit_power: Some(0.5), + stealth: Some(0.5), ), "Leather": ( - protection: Some(Normal(40.0)), - crit_power: Some(0.667), - stealth: Some(0.667), + protection: Some(Normal(28.0)), + crit_power: Some(0.6), + stealth: Some(0.7), ), "Scale": ( - protection: Some(Normal(60.0)), - crit_power: Some(1.0), - stealth: Some(1.0), + protection: Some(Normal(36.0)), + crit_power: Some(0.7), + stealth: Some(0.9), ), "Carapace": ( - protection: Some(Normal(80.0)), - crit_power: Some(1.33), - stealth: Some(1.33), + protection: Some(Normal(44.0)), + crit_power: Some(0.8), + stealth: Some(1.1), ), "Plate": ( - protection: Some(Normal(100.0)), - crit_power: Some(1.67), - stealth: Some(1.67), + protection: Some(Normal(52.0)), + crit_power: Some(0.9), + stealth: Some(1.3), ), "Dragonscale": ( - protection: Some(Normal(120.0)), - crit_power: Some(2.0), - stealth: Some(2.0), + protection: Some(Normal(60.0)), + crit_power: Some(1.0), + stealth: Some(1.5), ), // Cloths "Linen": ( @@ -189,31 +189,31 @@ stealth: Some(0.167), ), "Wool": ( - protection: Some(Normal(30.0)), + protection: Some(Normal(20.0)), energy_max: Some(33.3), energy_reward: Some(0.333), stealth: Some(0.333), ), "Silk": ( - protection: Some(Normal(45.0)), + protection: Some(Normal(25.0)), energy_max: Some(50.0), energy_reward: Some(0.5), stealth: Some(0.5), ), "Lifecloth": ( - protection: Some(Normal(60.0)), + protection: Some(Normal(30.0)), energy_max: Some(66.7), energy_reward: Some(0.667), stealth: Some(0.667), ), "Moonweave": ( - protection: Some(Normal(75.0)), + protection: Some(Normal(35.0)), energy_max: Some(83.3), energy_reward: Some(0.833), stealth: Some(0.833), ), "Sunsilk": ( - protection: Some(Normal(90.0)), + protection: Some(Normal(40.0)), energy_max: Some(100.0), energy_reward: Some(1.0), stealth: Some(1.0),