From 7f7d9a015a09229067696e3dea2f9d8a05df6b93 Mon Sep 17 00:00:00 2001 From: xuruian <1925134362@qq.com> Date: Wed, 21 Aug 2024 13:03:19 +0800 Subject: [PATCH] =?UTF-8?q?=E5=92=95=E5=92=95=E9=95=878=E6=9C=8821?= =?UTF-8?q?=E6=97=A5=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- newkf.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/newkf.cpp b/newkf.cpp index bbae8b4..ad892bf 100644 --- a/newkf.cpp +++ b/newkf.cpp @@ -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];