This commit is contained in:
Putoo
2026-07-18 11:24:44 +08:00
parent e4d39f3f2f
commit 723a6861a0
9 changed files with 158 additions and 41 deletions

View File

@@ -84,7 +84,7 @@ export class FightTool {
if (defUser.rebound > 0) {
let reboundRide = defUser.rebound = atkUser.reboundLess;
if (reboundRide > 0) {
atkHarm = defHarm * reboundRide;
atkHarm += defHarm * reboundRide;
}
}
defHarm += 0 - atkUser.harm_Add;//额外伤害
@@ -92,7 +92,7 @@ export class FightTool {
if (atkUser.atk_Next > 0) {
if (this.randomTrigger(atkUser.atk_Next)) {
defHarm = defHarm * 1.3;
atkHarm = atkHarm * 1.3;
atkHarm += atkHarm * 1.3;
}
}
//免伤处理