diff options
Diffstat (limited to 'maps/SlowpokeWellB2F.asm')
-rw-r--r-- | maps/SlowpokeWellB2F.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/maps/SlowpokeWellB2F.asm b/maps/SlowpokeWellB2F.asm index 21a8f73e4..3098815e2 100644 --- a/maps/SlowpokeWellB2F.asm +++ b/maps/SlowpokeWellB2F.asm @@ -7,12 +7,12 @@ SlowpokeWellB2F_MapScripts: db 0 ; callbacks -GymGuyScript_0x5ad0b: +SlowpokeWellB2FGymGuyScript: faceplayer opentext checkevent EVENT_GOT_KINGS_ROCK_IN_SLOWPOKE_WELL iftrue .GotKingsRock - writetext UnknownText_0x5ad2a + writetext SlowpokeWellB2FGymGuyText buttonsound verbosegiveitem KINGS_ROCK iffalse .NoRoom @@ -22,7 +22,7 @@ GymGuyScript_0x5ad0b: end .GotKingsRock: - writetext UnknownText_0x5adf2 + writetext SlowpokeWellB2FGymGuyText_GotKingsRock waitbutton closetext end @@ -30,7 +30,7 @@ GymGuyScript_0x5ad0b: SlowpokeWellB2FTMRainDance: itemball TM_RAIN_DANCE -UnknownText_0x5ad2a: +SlowpokeWellB2FGymGuyText: text "I'm waiting to see" line "SLOWPOKE's moment" cont "of evolution." @@ -50,7 +50,7 @@ UnknownText_0x5ad2a: cont "you." done -UnknownText_0x5adf2: +SlowpokeWellB2FGymGuyText_GotKingsRock: text "I'm going to be" line "like SLOWPOKE." @@ -70,5 +70,5 @@ SlowpokeWellB2F_MapEvents: db 0 ; bg events db 2 ; object events - object_event 5, 4, SPRITE_GYM_GUY, SPRITEMOVEDATA_WANDER, 1, 2, -1, -1, 0, OBJECTTYPE_SCRIPT, 1, GymGuyScript_0x5ad0b, -1 + object_event 5, 4, SPRITE_GYM_GUY, SPRITEMOVEDATA_WANDER, 1, 2, -1, -1, 0, OBJECTTYPE_SCRIPT, 1, SlowpokeWellB2FGymGuyScript, -1 object_event 15, 5, SPRITE_POKE_BALL, SPRITEMOVEDATA_STILL, 0, 0, -1, -1, 0, OBJECTTYPE_ITEMBALL, 0, SlowpokeWellB2FTMRainDance, EVENT_SLOWPOKE_WELL_B2F_TM_RAIN_DANCE |