diff options
Diffstat (limited to 'maps/CherrygrovePokeCenter1F.asm')
-rw-r--r-- | maps/CherrygrovePokeCenter1F.asm | 53 |
1 files changed, 21 insertions, 32 deletions
diff --git a/maps/CherrygrovePokeCenter1F.asm b/maps/CherrygrovePokeCenter1F.asm index 402f1ff1c..4827f1440 100644 --- a/maps/CherrygrovePokeCenter1F.asm +++ b/maps/CherrygrovePokeCenter1F.asm @@ -1,24 +1,20 @@ -CherrygrovePokeCenter1F_MapScriptHeader: ; 0x19696b - ; trigger count +CherrygrovePokeCenter1F_MapScriptHeader: +.MapTriggers: db 0 - ; callback count +.MapCallbacks: db 0 -; 0x19696d -NurseScript_0x19696d: ; 0x19696d +NurseScript_0x19696d: jumpstd pokecenternurse -; 0x196970 -FisherScript_0x196970: ; 0x196970 +FisherScript_0x196970: jumptextfaceplayer UnknownText_0x19698a -; 0x196973 -GentlemanScript_0x196973: ; 0x196973 +GentlemanScript_0x196973: jumptextfaceplayer UnknownText_0x1969c8 -; 0x196976 -TeacherScript_0x196976: ; 0x196976 +TeacherScript_0x196976: faceplayer loadfont checkevent EVENT_GAVE_MYSTERY_EGG_TO_ELM @@ -27,32 +23,28 @@ TeacherScript_0x196976: ; 0x196976 closetext loadmovesprites end -; 0x196984 -UnknownScript_0x196984: ; 0x196984 +UnknownScript_0x196984: writetext UnknownText_0x196a46 closetext loadmovesprites end -; 0x19698a -UnknownText_0x19698a: ; 0x19698a +UnknownText_0x19698a: text "It's great. I can" line "store any number" para "of #MON, and" line "it's all free." done -; 0x1969c8 -UnknownText_0x1969c8: ; 0x1969c8 +UnknownText_0x1969c8: text "That PC is free" line "for any trainer" cont "to use." done -; 0x1969f1 -UnknownText_0x1969f1: ; 0x1969f1 +UnknownText_0x1969f1: text "The COMMUNICATION" line "CENTER upstairs" cont "was just built." @@ -60,9 +52,8 @@ UnknownText_0x1969f1: ; 0x1969f1 para "But they're still" line "finishing it up." done -; 0x196a46 -UnknownText_0x196a46: ; 0x196a46 +UnknownText_0x196a46: text "The COMMUNICATION" line "CENTER upstairs" cont "was just built." @@ -70,28 +61,26 @@ UnknownText_0x196a46: ; 0x196a46 para "I traded #MON" line "there already!" done -; 0x196a96 -CherrygrovePokeCenter1F_MapEventHeader: ; 0x196a96 +CherrygrovePokeCenter1F_MapEventHeader: ; filler db 0, 0 - ; warps +.Warps: db 3 warp_def $7, $3, 2, GROUP_CHERRYGROVE_CITY, MAP_CHERRYGROVE_CITY warp_def $7, $4, 2, GROUP_CHERRYGROVE_CITY, MAP_CHERRYGROVE_CITY warp_def $7, $0, 1, GROUP_POKECENTER_2F, MAP_POKECENTER_2F - ; xy triggers +.XYTriggers: db 0 - ; signposts +.Signposts: db 0 - ; people-events +.PersonEvents: db 4 - person_event SPRITE_NURSE, 5, 7, $6, $0, 255, 255, $0, 0, NurseScript_0x19696d, $ffff - person_event SPRITE_FISHER, 7, 6, $7, $0, 255, 255, $80, 0, FisherScript_0x196970, $ffff - person_event SPRITE_GENTLEMAN, 10, 12, $7, $0, 255, 255, $0, 0, GentlemanScript_0x196973, $ffff - person_event SPRITE_TEACHER, 10, 5, $9, $0, 255, 255, $a0, 0, TeacherScript_0x196976, $ffff -; 0x196adf + person_event SPRITE_NURSE, 5, 7, OW_UP | $2, $0, -1, -1, $0, 0, NurseScript_0x19696d, -1 + person_event SPRITE_FISHER, 7, 6, OW_UP | $3, $0, -1, -1, (PAL_OW_RED << 4) | $80, 0, FisherScript_0x196970, -1 + person_event SPRITE_GENTLEMAN, 10, 12, OW_UP | $3, $0, -1, -1, $0, 0, GentlemanScript_0x196973, -1 + person_event SPRITE_TEACHER, 10, 5, OW_LEFT | $1, $0, -1, -1, (PAL_OW_GREEN << 4) | $80, 0, TeacherScript_0x196976, -1 |