Skip to content

Commit

Permalink
咕咕镇8月21日更新
Browse files Browse the repository at this point in the history
  • Loading branch information
ilusrdbb committed Aug 21, 2024
1 parent f238c8b commit 7f7d9a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions newkf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2753,8 +2753,8 @@ BResult calcBattle(const BStat& attacker, const BStat& defender, bool showDetail
}
if (b[i].role == ROLE_XIA)
{
sldMAdd += b[i].growth > 200000 ? 40 : int(b[i].growth * 0.0002);
b[i].mAtkR += b[i].growth > 200000 ? 40 : int(b[i].growth * 0.0002);
sldMAdd += b[i].growth > 100000 ? 20 : int(b[i].growth * 0.0002);
b[i].mAtkR += b[i].growth > 100000 ? 20 : int(b[i].growth * 0.0002);
}
hpMAdd += b[i].amul[AMUL_HP];
sldMAdd += b[i].amul[AMUL_SLD];
Expand Down

0 comments on commit 7f7d9a0

Please sign in to comment.