diff options
Diffstat (limited to 'maps/Route26HealHouse.asm')
-rw-r--r-- | maps/Route26HealHouse.asm | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/maps/Route26HealHouse.asm b/maps/Route26HealHouse.asm new file mode 100644 index 000000000..536154500 --- /dev/null +++ b/maps/Route26HealHouse.asm @@ -0,0 +1,63 @@ + const_def 2 ; object constants + const ROUTE26HEALHOUSE_TEACHER + +Route26HealHouse_MapScripts: + db 0 ; scene scripts + + db 0 ; callbacks + +TeacherScript_0x7b125: + faceplayer + opentext + writetext UnknownText_0x7b14d + waitbutton + closetext + special FadeBlackQuickly + special ReloadSpritesNoPalettes + special StubbedTrainerRankings_Healings + playmusic MUSIC_HEAL + special HealParty + pause 60 + special FadeInQuickly + special RestartMapMusic + opentext + writetext UnknownText_0x7b18b + waitbutton + closetext + end + +Route26HealHouseBookshelf: + jumpstd picturebookshelf + +UnknownText_0x7b14d: + text "Your #MON look" + line "a little tired." + + para "You should rest" + line "them a while." + done + +UnknownText_0x7b18b: + text "There!" + + para "Your #MON are" + line "looking good!" + + para "Keep at it!" + done + +Route26HealHouse_MapEvents: + db 0, 0 ; filler + + db 2 ; warp events + warp_event 2, 7, ROUTE_26, 2 + warp_event 3, 7, ROUTE_26, 2 + + db 0 ; coord events + + db 2 ; bg events + bg_event 0, 1, BGEVENT_READ, Route26HealHouseBookshelf + bg_event 1, 1, BGEVENT_READ, Route26HealHouseBookshelf + + db 1 ; object events + object_event 2, 3, SPRITE_TEACHER, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, TeacherScript_0x7b125, -1 |