diff options
Diffstat (limited to 'maps/GuideGentsHouse.asm')
-rw-r--r-- | maps/GuideGentsHouse.asm | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/maps/GuideGentsHouse.asm b/maps/GuideGentsHouse.asm new file mode 100644 index 00000000..376aa0d0 --- /dev/null +++ b/maps/GuideGentsHouse.asm @@ -0,0 +1,42 @@ + const_def 2 ; object constants + const GUIDEGENTSHOUSE_GRAMPS + +GuideGentsHouse_MapScripts: + db 0 ; scene scripts + + db 0 ; callbacks + +GuideGentsHouseGuideGent: + jumptextfaceplayer GuideGentsHouseGuideGentText + +GuideGentsHouseBookshelf: + jumpstd magazinebookshelf + +GuideGentsHouseGuideGentText: + text "When I was a wee" + line "lad, I was a hot-" + cont "shot trainer!" + + para "Here's a word of" + line "advice: Catch lots" + cont "of #MON!" + + para "Treat them all" + line "with kindness!" + done + +GuideGentsHouse_MapEvents: + db 0, 0 ; filler + + db 2 ; warp events + warp_event 2, 7, CHERRYGROVE_CITY, 4 + warp_event 3, 7, CHERRYGROVE_CITY, 4 + + db 0 ; coord events + + db 2 ; bg events + bg_event 0, 1, BGEVENT_READ, GuideGentsHouseBookshelf + bg_event 1, 1, BGEVENT_READ, GuideGentsHouseBookshelf + + db 1 ; object events + object_event 2, 3, SPRITE_GRAMPS, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, GuideGentsHouseGuideGent, EVENT_GUIDE_GENT_VISIBLE_IN_CHERRYGROVE |