diff options
author | Jesusaves <jesusalva@themanaworld.org> | 2020-03-31 16:45:48 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-31 19:45:48 +0000 |
commit | 8413c5da8ca62235b0c5a2594fe9e0b6c1d47885 (patch) | |
tree | 452e86bfbc2a61e2afd8312999515effe47a0311 /world/map/npc/functions | |
parent | 12524fc0f3bdc91c25311f7af76a823bc8522e7c (diff) | |
download | serverdata-8413c5da8ca62235b0c5a2594fe9e0b6c1d47885.tar.gz serverdata-8413c5da8ca62235b0c5a2594fe9e0b6c1d47885.tar.bz2 serverdata-8413c5da8ca62235b0c5a2594fe9e0b6c1d47885.tar.xz serverdata-8413c5da8ca62235b0c5a2594fe9e0b6c1d47885.zip |
End March Updates (#549)
* Mana Guardian EXP +750 DEF -6 LUK -160
* Second monster point table
* Banshee Bow no longer crits. Added more damage and a walk speed bonus. Lowered HP penalty in half.
* Release [Sand Cutter] weapon, with power matching Banshee.
PS. If Sand Cutter dealt only 120 damage, it would draw with setzer.
* Add Virus monster (ID 1139)
The main and most annoying attack is poison; otherwise it is quite weak.
More vulnerable to magic than slashing. Drops the following three items:
Acorn, 11.00%
Snapples, 5.00%
Gumi Candy, 0.11%
Range 6.
Diffstat (limited to 'world/map/npc/functions')
-rw-r--r-- | world/map/npc/functions/mob_points.txt | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/world/map/npc/functions/mob_points.txt b/world/map/npc/functions/mob_points.txt index 72b5ac23..e60b0588 100644 --- a/world/map/npc/functions/mob_points.txt +++ b/world/map/npc/functions/mob_points.txt @@ -135,9 +135,24 @@ function|script|MobPoints // -o11c ; // END - if (MPQUEST == 1) + setarray @points_extended, + 100, // 1130 Moonshroom + 20, // 1131 ManaBug + 80, // 1132 LavaSlime + 80, // 1133 Anne + 200, // 1134 SUSAN + 80, // 1135 LovelyMaggot + 10, // 1136 LesserGhost + 500, // 1137 Tormenta + 200 // 1138 ManaGuardian + ; + + if ((MPQUEST == 1) && (@mobID < 1130)) set Mobpt, Mobpt + @points[@mobID - 1002]; + if ((MPQUEST == 1) && (@mobID > 1129)) + set Mobpt, Mobpt + @points_extended[@mobID - 1130]; + callfunc "ValonCount"; if (((QL_VALON >= 2) && (QL_VALON < 6)) && (@mobID == $@ValonMob[@valon_mob])) goto L_ValonMobKill; |