diff options
Diffstat (limited to 'npc')
-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 |