diff options
-rw-r--r-- | db/re/item_db.conf | 4 | ||||
-rw-r--r-- | npc/functions/hub.txt | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index cfed5622b..081071a16 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -14870,8 +14870,8 @@ item_db: ( bonus bMdefRate, -50; bonus bMdef2Rate, -50; bonus bFlee2Rate, 25; - bonus bAtk, BaseLevel-109; - bonus bMatk, (BaseLevel-109)/2; + bonus bAtk, max(0, BaseLevel-109); + bonus bMatk, max(0, BaseLevel-109)/2; //bonus bAtk, getrefine()*2; "> }, diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt index 85fe79c37..9628c0a2a 100644 --- a/npc/functions/hub.txt +++ b/npc/functions/hub.txt @@ -310,10 +310,12 @@ function script HUB_SkillInvoke { /* // Weapon Overload attack case TMW2_OVERLOAD: - .@PW=100+(50*@skillLv); + .@PW=67+(33*@skillLv); harm(@skillTarget, AdjustAttackpower(.@PW), HARM_MISC); break; + // TODO: Ultimate Skills (T5/0) + // Support magic // TODO: Debuffs // TODO: Buffs |