diff options
author | Jesusaves <cpntb1@ymail.com> | 2023-10-28 18:23:02 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2023-10-28 18:23:02 -0300 |
commit | 1c85a33ab460f1177cddf96429d44c008fcf2fc2 (patch) | |
tree | 1c7bd34932f69ce14d04aac4b5f00be1aa2f4b0d /npc | |
parent | 03d6a67f788f5578bb3f127a7bc36afe766f0ecf (diff) | |
download | serverdata-1c85a33ab460f1177cddf96429d44c008fcf2fc2.tar.gz serverdata-1c85a33ab460f1177cddf96429d44c008fcf2fc2.tar.bz2 serverdata-1c85a33ab460f1177cddf96429d44c008fcf2fc2.tar.xz serverdata-1c85a33ab460f1177cddf96429d44c008fcf2fc2.zip |
Add the superior monster tier to Aeros after Monster King perishes
Diffstat (limited to 'npc')
-rw-r--r-- | npc/001-1/eventmaster.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/npc/001-1/eventmaster.txt b/npc/001-1/eventmaster.txt index add05c452..3986013dd 100644 --- a/npc/001-1/eventmaster.txt +++ b/npc/001-1/eventmaster.txt @@ -758,6 +758,13 @@ OnAutoSched: CloverPatch, EvilScythe); spawner(strmobinfo(1, .@m), .@m, .@r); .@t += .@r; + // Additional complement after Monster King is dead, with the remainder + // (33% chance of spawn) + if ($GAME_STORYLINE >= 5 && rand2(3)) { + .@m=any(PanthomWisp, EpiphanyWisp, Tortuga, EvilWisp, SacredWisp, WindElement, EarthElement, WaterElement, FireElement, ShadowTortuga, GreenhornAbomination, Golem, SiegeTower, Nutcracker, SuperiorShroom, Moubi, TerraniteKing, Tengu, Junglefowl, PinkieMaximus, Mandragora, Jhon, PinkieSuseran, WhirlyBird, WhirlyBird, Snail, NightmareDragon, Reaper, BlackSkullSlime, LavaSkullSlime, Brainic, CopperSkullSlime); + spawner(strmobinfo(1, .@m), .@m, 1); + .@t += .@r; + } } freeloop(false); // Open gate if full |