diff options
Diffstat (limited to 'maps/IlexForestAzaleaGate.asm')
-rw-r--r-- | maps/IlexForestAzaleaGate.asm | 34 |
1 files changed, 14 insertions, 20 deletions
diff --git a/maps/IlexForestAzaleaGate.asm b/maps/IlexForestAzaleaGate.asm index a282247b5..68ac4631f 100644 --- a/maps/IlexForestAzaleaGate.asm +++ b/maps/IlexForestAzaleaGate.asm @@ -1,27 +1,23 @@ -IlexForestAzaleaGate_MapScriptHeader: ; 0x62c78 - ; trigger count +IlexForestAzaleaGate_MapScriptHeader: +.MapTriggers: db 0 - ; callback count +.MapCallbacks: db 0 -; 0x62c7a -OfficerScript_0x62c7a: ; 0x62c7a +OfficerScript_0x62c7a: jumptextfaceplayer UnknownText_0x62c80 -; 0x62c7d -GrannyScript_0x62c7d: ; 0x62c7d +GrannyScript_0x62c7d: jumptextfaceplayer UnknownText_0x62cb0 -; 0x62c80 -UnknownText_0x62c80: ; 0x62c80 +UnknownText_0x62c80: text "ILEX FOREST is" line "big. Be careful!" cont "Don't get lost." done -; 0x62cb0 -UnknownText_0x62cb0: ; 0x62cb0 +UnknownText_0x62cb0: text "The FOREST is" line "watched over by" cont "its protector." @@ -29,27 +25,25 @@ UnknownText_0x62cb0: ; 0x62cb0 para "Stay out of" line "mischief!" done -; 0x62cf4 -IlexForestAzaleaGate_MapEventHeader: ; 0x62cf4 +IlexForestAzaleaGate_MapEventHeader: ; filler db 0, 0 - ; warps +.Warps: db 4 warp_def $4, $0, 2, GROUP_ILEX_FOREST, MAP_ILEX_FOREST warp_def $5, $0, 3, GROUP_ILEX_FOREST, MAP_ILEX_FOREST warp_def $4, $9, 7, GROUP_AZALEA_TOWN, MAP_AZALEA_TOWN warp_def $5, $9, 8, GROUP_AZALEA_TOWN, MAP_AZALEA_TOWN - ; xy triggers +.XYTriggers: db 0 - ; signposts +.Signposts: db 0 - ; people-events +.PersonEvents: db 2 - person_event SPRITE_OFFICER, 6, 9, $6, $0, 255, 255, $80, 0, OfficerScript_0x62c7a, $ffff - person_event SPRITE_GRANNY, 7, 5, $6, $0, 255, 255, $b0, 0, GrannyScript_0x62c7d, $ffff -; 0x62d28 + person_event SPRITE_OFFICER, 6, 9, OW_UP | $2, $0, -1, -1, (PAL_OW_RED << 4) | $80, 0, OfficerScript_0x62c7a, -1 + person_event SPRITE_GRANNY, 7, 5, OW_UP | $2, $0, -1, -1, (PAL_OW_BROWN << 4) | $80, 0, GrannyScript_0x62c7d, -1 |