diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-05-17 20:19:01 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-05-17 20:19:01 -0300 |
commit | cf40170a73876d5246aad64da92336a6102aafda (patch) | |
tree | c392d3dbd3853d774face7123184d8e133285dfd /npc/026-7 | |
parent | e7f9ad2a35767362e44f37ee81a1667e5c251eb6 (diff) | |
download | serverdata-cf40170a73876d5246aad64da92336a6102aafda.tar.gz serverdata-cf40170a73876d5246aad64da92336a6102aafda.tar.bz2 serverdata-cf40170a73876d5246aad64da92336a6102aafda.tar.xz serverdata-cf40170a73876d5246aad64da92336a6102aafda.zip |
Improve Death Touch
Diffstat (limited to 'npc/026-7')
-rw-r--r-- | npc/026-7/boss.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/npc/026-7/boss.txt b/npc/026-7/boss.txt index 9adeec20a..cdac955ac 100644 --- a/npc/026-7/boss.txt +++ b/npc/026-7/boss.txt @@ -539,6 +539,13 @@ OnDeathTouch: dispbottom l("Death grazes your soul (-%s HP)", fnum(Hp*3/10)); percentheal -30, 0; } + // Buff the Monster King slightly (approx. +3.5% damage per player) + .@bat=getunitdata(.MK, UDT_ATKMAX); + .@bat += .@bat / 28; + setunitdata(.MK, UDT_ATKMAX, .@bat); + .@bat=getunitdata(.MK, UDT_ATKMIN); + .@bat += .@bat / 28; + setunitdata(.MK, UDT_ATKMIN, .@bat); end; // Monster King was defeated - game won |