diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-09-01 15:25:57 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-09-01 15:25:57 -0300 |
commit | 3d1b949f02b21168af4db8e0977c2eefdda1d158 (patch) | |
tree | f02486be540aa18c5850742c02f7465bb314d527 /npc/018-6-3/main.txt | |
parent | b2b177b50a38d08fcd0b3db2c123622dd5f1b91b (diff) | |
download | serverdata-3d1b949f02b21168af4db8e0977c2eefdda1d158.tar.gz serverdata-3d1b949f02b21168af4db8e0977c2eefdda1d158.tar.bz2 serverdata-3d1b949f02b21168af4db8e0977c2eefdda1d158.tar.xz serverdata-3d1b949f02b21168af4db8e0977c2eefdda1d158.zip |
018-6-3: Prepare all boss fights (they look like the same).
There's no difficulty progression. Internal Warp System still missing.
Diffstat (limited to 'npc/018-6-3/main.txt')
-rw-r--r-- | npc/018-6-3/main.txt | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/npc/018-6-3/main.txt b/npc/018-6-3/main.txt index 50210fee1..ed1f57b84 100644 --- a/npc/018-6-3/main.txt +++ b/npc/018-6-3/main.txt @@ -82,10 +82,39 @@ function BossRoom { return; } -OnRoomA: +// W - West, C - Center, E - East, N - North, S - South +OnRoomNorth: BossRoom(1, 62, 41, 121, 58, true); end; +OnRoomNW: + BossRoom(2, 48, 65, 68, 85); + end; + +OnRoomNC: + BossRoom(4, 77, 65, 103, 76); + end; + +OnRoomNE: + BossRoom(8, 111, 65, 131, 85); + end; + +OnRoomSW: + BossRoom(16, 48, 95, 68, 115); + end; + +OnRoomSC: + BossRoom(32, 77, 104, 103, 115); + end; + +OnRoomSE: + BossRoom(64, 111, 95, 131, 115); + end; + +OnRoomSouth: + BossRoom(128, 62, 122, 121, 139, true); + end; + // Kill boss will use setq3 and also erase any remaining monster OnKill1: .@q3=getq3(LoFQuest_Barbara); |