From 7b55e4ea5d88eca22b7ddfea645433ea5d28c2e4 Mon Sep 17 00:00:00 2001 From: wyfyjc <55006368+wyfyjc@users.noreply.github.com> Date: Fri, 15 Dec 2023 00:34:29 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=8F=90=E7=BA=B3=E9=87=8C?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E4=BC=A4=E5=AE=B3=E8=AE=A1=E7=AE=97=E7=9A=84?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 重击伤害*3,缠藤箭激化次数+1,次级缠藤箭激化次数+1 --- .../target_functions/dendro/tighnari_default.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mona_core/src/target_functions/target_functions/dendro/tighnari_default.rs b/mona_core/src/target_functions/target_functions/dendro/tighnari_default.rs index 2e0412a5..54ae2efc 100644 --- a/mona_core/src/target_functions/target_functions/dendro/tighnari_default.rs +++ b/mona_core/src/target_functions/target_functions/dendro/tighnari_default.rs @@ -44,11 +44,11 @@ impl TargetFunction for TighnariDefaultTargetFunction { let dmg_q2 = Tighnari::damage::(&&context, S::Q2, &CharacterSkillConfig::NoConfig, None); let dmg_e = Tighnari::damage::(&&context, S::E1, &CharacterSkillConfig::NoConfig, None); let dmg = - dmg_c3.spread.unwrap().expectation + + (dmg_c3.spread.unwrap().expectation + dmg_c4.spread.unwrap().expectation + - dmg_c4.normal.expectation * 3.0 + dmg_cc6 + - dmg_q1.spread.unwrap().expectation + dmg_q2.spread.unwrap().expectation + - (dmg_q1.normal.expectation + dmg_q2.normal.expectation) * 5.0 + + dmg_c4.normal.expectation * 3.0 + dmg_cc6) * 3.0 + + (dmg_q1.spread.unwrap().expectation + dmg_q2.spread.unwrap().expectation) * 2.0 + + (dmg_q1.normal.expectation + dmg_q2.normal.expectation) * 4.0 + dmg_e.spread.unwrap().expectation; dmg @@ -76,4 +76,4 @@ impl TargetFunctionMetaTrait for TighnariDefaultTargetFunction { fn create(character: &CharacterCommonData, weapon: &WeaponCommonData, config: &TargetFunctionConfig) -> Box { Box::new(TighnariDefaultTargetFunction) } -} \ No newline at end of file +}