We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12e8917 commit 4fd83edCopy full SHA for 4fd83ed
mona_core/src/weapon/weapons/claymores/a_thousand_blazing_suns.rs
@@ -21,11 +21,11 @@ impl<A: Attribute> WeaponEffect<A> for AThousandBlazingSunsEffect {
21
let refine = data.refine as f64;
22
23
let crit_dmg_bonus = refine * 0.05 + 0.15;
24
- let bonus = crit_dmg_bonus * self.rate1 + 0.75 * self.rate2;
+ let bonus = crit_dmg_bonus * self.rate1 * (1.0 + 0.75 * self.rate2);
25
attribute.set_value_by(AttributeName::CriticalDamageBase, "「焚曜千阳」被动", bonus);
26
27
let atk_bonus = 0.07 * refine + 0.21;
28
- let bonus = atk_bonus * self.rate1 + 0.75 * self.rate2;
+ let bonus = atk_bonus * self.rate1 * (1.0 + 0.75 * self.rate2);
29
attribute.add_atk_percentage("「焚曜千阳」被动", bonus);
30
}
31
0 commit comments