diff options
Diffstat (limited to 'maps/Route32RuinsofAlphGate.asm')
-rw-r--r-- | maps/Route32RuinsofAlphGate.asm | 42 |
1 files changed, 17 insertions, 25 deletions
diff --git a/maps/Route32RuinsofAlphGate.asm b/maps/Route32RuinsofAlphGate.asm index fde87863b..57ffd34bd 100644 --- a/maps/Route32RuinsofAlphGate.asm +++ b/maps/Route32RuinsofAlphGate.asm @@ -1,24 +1,20 @@ -Route32RuinsofAlphGate_MapScriptHeader: ; 0x69a2b - ; trigger count +Route32RuinsofAlphGate_MapScriptHeader: +.MapTriggers: db 0 - ; callback count +.MapCallbacks: db 0 -; 0x69a2d -OfficerScript_0x69a2d: ; 0x69a2d +OfficerScript_0x69a2d: jumptextfaceplayer UnknownText_0x69a36 -; 0x69a30 -PokefanMScript_0x69a30: ; 0x69a30 +PokefanMScript_0x69a30: jumptextfaceplayer UnknownText_0x69a81 -; 0x69a33 -YoungsterScript_0x69a33: ; 0x69a33 +YoungsterScript_0x69a33: jumptextfaceplayer UnknownText_0x69abd -; 0x69a36 -UnknownText_0x69a36: ; 0x69a36 +UnknownText_0x69a36: text "RUINS OF ALPH" para "A Look-and-Touch" @@ -27,18 +23,16 @@ UnknownText_0x69a36: ; 0x69a36 para "Try the sliding" line "stone panels!" done -; 0x69a81 -UnknownText_0x69a81: ; 0x69a81 +UnknownText_0x69a81: text "You're studying" line "the RUINS?" para "I see a scientist" line "in the making." done -; 0x69abd -UnknownText_0x69abd: ; 0x69abd +UnknownText_0x69abd: text "There are drawings" line "on stone panels." @@ -46,28 +40,26 @@ UnknownText_0x69abd: ; 0x69abd line "them. I wonder" cont "what they are." done -; 0x69b0f -Route32RuinsofAlphGate_MapEventHeader: ; 0x69b0f +Route32RuinsofAlphGate_MapEventHeader: ; filler db 0, 0 - ; warps +.Warps: db 4 warp_def $4, $0, 10, GROUP_RUINS_OF_ALPH_OUTSIDE, MAP_RUINS_OF_ALPH_OUTSIDE warp_def $5, $0, 11, GROUP_RUINS_OF_ALPH_OUTSIDE, MAP_RUINS_OF_ALPH_OUTSIDE warp_def $4, $9, 2, GROUP_ROUTE_32, MAP_ROUTE_32 warp_def $5, $9, 3, GROUP_ROUTE_32, MAP_ROUTE_32 - ; xy triggers +.XYTriggers: db 0 - ; signposts +.Signposts: db 0 - ; people-events +.PersonEvents: db 3 - person_event SPRITE_OFFICER, 6, 9, $6, $0, 255, 255, $80, 0, OfficerScript_0x69a2d, $ffff - person_event SPRITE_POKEFAN_M, 6, 12, $4, $10, 255, 255, $b0, 0, PokefanMScript_0x69a30, $ffff - person_event SPRITE_YOUNGSTER, 10, 5, $7, $0, 255, 255, $a0, 0, YoungsterScript_0x69a33, $ffff -; 0x69b50 + person_event SPRITE_OFFICER, 6, 9, OW_UP | $2, $0, -1, -1, (PAL_OW_RED << 4) | $80, 0, OfficerScript_0x69a2d, -1 + person_event SPRITE_POKEFAN_M, 6, 12, OW_UP | $0, $10, -1, -1, (PAL_OW_BROWN << 4) | $80, 0, PokefanMScript_0x69a30, -1 + person_event SPRITE_YOUNGSTER, 10, 5, OW_UP | $3, $0, -1, -1, (PAL_OW_GREEN << 4) | $80, 0, YoungsterScript_0x69a33, -1 |