diff options
Diffstat (limited to 'maps/Route7.asm')
-rw-r--r-- | maps/Route7.asm | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/maps/Route7.asm b/maps/Route7.asm new file mode 100644 index 00000000..6f1c5251 --- /dev/null +++ b/maps/Route7.asm @@ -0,0 +1,48 @@ +Route7_MapScripts: + db 0 ; scene scripts + + db 0 ; callbacks + +Route7UndergroundPathSign: + jumptext Route7UndergroundPathSignText + +Route7LockedDoor: + jumptext Route7LockedDoorText + +Route7UndergroundPathSignText: + text "What's this flyer?" + + para "… Uncouth trainers" + line "have been holding" + + para "battles in the" + line "UNDERGROUND PATH." + + para "Because of rising" + line "complaints by lo-" + cont "cal residents, the" + cont "UNDERGROUND PATH" + cont "has been sealed" + cont "indefinitely." + + para "CELADON POLICE" + done + +Route7LockedDoorText: + text "It's locked…" + done + +Route7_MapEvents: + db 0, 0 ; filler + + db 2 ; warp events + warp_event 15, 6, ROUTE_7_SAFFRON_GATE, 1 + warp_event 15, 7, ROUTE_7_SAFFRON_GATE, 2 + + db 0 ; coord events + + db 2 ; bg events + bg_event 5, 11, BGEVENT_READ, Route7UndergroundPathSign + bg_event 6, 9, BGEVENT_READ, Route7LockedDoor + + db 0 ; object events |