From 9cc12c0eb1d79f8d2248636b921c50b9c83406bb Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 23 Jan 2025 11:45:38 +0800 Subject: [PATCH] =?UTF-8?q?buff(monster):=20=E8=B0=83=E6=95=B4=E6=80=AA?= =?UTF-8?q?=E7=89=A9=E5=B1=9E=E6=80=A7=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将怪物 124 的最大生命值加成从 100000 提高到 1000000 - 提升物理防御和魔法防御的最小和最大加成值 --- LogicServer/data/config/monster/Props.config | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/LogicServer/data/config/monster/Props.config b/LogicServer/data/config/monster/Props.config index ffbbccb..e7fbc00 100755 --- a/LogicServer/data/config/monster/Props.config +++ b/LogicServer/data/config/monster/Props.config @@ -3268,7 +3268,7 @@ Props = { }, [124] = { id = 124, - nMaxHpAdd = 100000, + nMaxHpAdd = 1000000, nMaxMpAdd = 0, nPhysicalAttackMinAdd = 12000, nPhysicalAttackMaxAdd = 12000, @@ -3276,10 +3276,10 @@ Props = { nMagicAttackMaxAdd = 12000, nWizardAttackMinAdd = 12000, nWizardAttackMaxAdd = 12000, - nPhysicalDefenceMinAdd = 10000, - nPhysicalDefenceMaxAdd = 20000, - nMagicDefenceMinAdd = 10000, - nMagicDefenceMaxAdd = 20000, + nPhysicalDefenceMinAdd = 30000, + nPhysicalDefenceMaxAdd = 80000, + nMagicDefenceMinAdd = 30000, + nMagicDefenceMaxAdd = 80000, nHitValueAdd = 10000, nDogValueAdd = 0, nMagicHitRateAdd = 10000,