diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-01-22 21:37:13 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-01-22 21:37:13 -0300 |
commit | 816008273eadcad4313f24b840dbc6d871a7d859 (patch) | |
tree | 7838461bc2779b7aead641290ac69f7f17e58120 /npc/026-7/boss.txt | |
parent | 33c0ec3277337bbe6348612aaf486dbf0081e51a (diff) | |
download | serverdata-816008273eadcad4313f24b840dbc6d871a7d859.tar.gz serverdata-816008273eadcad4313f24b840dbc6d871a7d859.tar.bz2 serverdata-816008273eadcad4313f24b840dbc6d871a7d859.tar.xz serverdata-816008273eadcad4313f24b840dbc6d871a7d859.zip |
Fix Monster King Showdown races
Diffstat (limited to 'npc/026-7/boss.txt')
-rw-r--r-- | npc/026-7/boss.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/npc/026-7/boss.txt b/npc/026-7/boss.txt index 532876000..0364e9d29 100644 --- a/npc/026-7/boss.txt +++ b/npc/026-7/boss.txt @@ -75,6 +75,7 @@ OnBegin: .@opt=.@opt|MD_CHANGETARGET_MELEE; .@opt=.@opt|MD_CHANGETARGET_CHASE; setunitdata(.MK, UDT_MODE, .@opt); + setunitdata(.MK, UDT_RACE, RC_Legendary); // The Four Generals which command his immortality .GUARD1=monster("026-7", 35, 30, "Air General", MonsterGeneral, 1); .GUARD4=monster("026-7", 44, 45, "Fire General", MonsterGeneral, 1); @@ -94,6 +95,10 @@ OnBegin: setunitdata(.GUARD2, UDT_ELETYPE, Ele_Dark); setunitdata(.GUARD4, UDT_ELETYPE, Ele_Fire); setunitdata(.GUARD3, UDT_ELETYPE, Ele_Earth); + setunitdata(.GUARD1, UDT_RACE, RC_Legendary); + setunitdata(.GUARD2, UDT_RACE, RC_Legendary); + setunitdata(.GUARD3, UDT_RACE, RC_Legendary); + setunitdata(.GUARD4, UDT_RACE, RC_Legendary); // The remainder of MK army (Centered at the generals / 20 total) .@x = 35; .@y = 30; areamonster("026-7", .@x-3, .@y-3, .@x+3, .@y+3, "Air Officer", Reaper, 5); // Air Troops .@x = 44; .@y = 45; areamonster("026-7", .@x-3, .@y-3, .@x+3, .@y+3, "Fire Officer", LavaSkullSlime, 6); // Fire Troops |