From b1f27ef243f4887498474ab5695ba9e04e12fbe4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BE=8A=E6=92=85=E6=92=85?= <31302548+Fachep@users.noreply.github.com> Date: Thu, 9 Nov 2023 11:38:11 +0800 Subject: [PATCH] fix furina skill ratio bonus --- mona_core/src/character/characters/hydro/furina.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mona_core/src/character/characters/hydro/furina.rs b/mona_core/src/character/characters/hydro/furina.rs index 5666dc58..181a16d8 100644 --- a/mona_core/src/character/characters/hydro/furina.rs +++ b/mona_core/src/character/characters/hydro/furina.rs @@ -273,7 +273,7 @@ impl CharacterTrait for Furina { if s == E2 || s == E3 || s == E4 { let bonus = 0.1 * hp_above50_count as f64; - builder.add_hp_ratio("「沙龙成员」加成", bonus); + builder.add_hp_ratio("「沙龙成员」加成", ratio * bonus); if context.character_common_data.has_talent2 { let hp = context.attribute.get_hp(); let factor = (hp / 1000.0).floor();