summaryrefslogtreecommitdiff
path: root/maps/Route9.asm
diff options
context:
space:
mode:
authorIIMarckus <iimarckus@gmail.com>2018-10-03 12:02:04 -0600
committerIIMarckus <iimarckus@gmail.com>2018-10-03 12:02:04 -0600
commited33ea6efc98761b1902dd43fe047d2fc6ad2a68 (patch)
tree4821a5f947ce8e740c741936784451c48fbca5f0 /maps/Route9.asm
parent9425a0110e00a3173accdac94cb2a4a4042efdd0 (diff)
Add map objects from bank 50.
Diffstat (limited to 'maps/Route9.asm')
-rw-r--r--maps/Route9.asm224
1 files changed, 224 insertions, 0 deletions
diff --git a/maps/Route9.asm b/maps/Route9.asm
new file mode 100644
index 00000000..6b8c63e5
--- /dev/null
+++ b/maps/Route9.asm
@@ -0,0 +1,224 @@
+ const_def 2 ; object constants
+ const ROUTE9_YOUNGSTER1
+ const ROUTE9_LASS1
+ const ROUTE9_YOUNGSTER2
+ const ROUTE9_LASS2
+ const ROUTE9_POKEFAN_M1
+ const ROUTE9_POKEFAN_M2
+
+Route9_MapScripts:
+ db 0 ; scene scripts
+
+ db 0 ; callbacks
+
+TrainerCamperDean:
+ trainer CAMPER, DEAN, EVENT_BEAT_CAMPER_DEAN, CamperDeanSeenText, CamperDeanBeatenText, 0, .Script
+
+.Script:
+ endifjustbattled
+ opentext
+ writetext CamperDeanAfterBattleText
+ waitbutton
+ closetext
+ end
+
+TrainerPicnickerHeidi:
+ trainer PICNICKER, HEIDI, EVENT_BEAT_PICNICKER_HEIDI, PicnickerHeidiSeenText, PicnickerHeidiBeatenText, 0, .Script
+
+.Script:
+ endifjustbattled
+ opentext
+ writetext PicnickerHeidiAfterBattleText
+ waitbutton
+ closetext
+ end
+
+TrainerCamperSid:
+ trainer CAMPER, SID, EVENT_BEAT_CAMPER_SID, CamperSidSeenText, CamperSidBeatenText, 0, .Script
+
+.Script:
+ endifjustbattled
+ opentext
+ writetext CamperSidAfterBattleText
+ waitbutton
+ closetext
+ end
+
+TrainerPicnickerEdna:
+ trainer PICNICKER, EDNA, EVENT_BEAT_PICNICKER_EDNA, PicnickerEdnaSeenText, PicnickerEdnaBeatenText, 0, .Script
+
+.Script:
+ endifjustbattled
+ opentext
+ writetext PicnickerEdnaAfterBattleText
+ waitbutton
+ closetext
+ end
+
+TrainerHikerTim:
+ trainer HIKER, TIM, EVENT_BEAT_HIKER_TIM, HikerTimSeenText, HikerTimBeatenText, 0, .Script
+
+.Script:
+ endifjustbattled
+ opentext
+ writetext HikerTimAfterBattleText
+ waitbutton
+ closetext
+ end
+
+TrainerHikerSidney:
+ trainer HIKER, SIDNEY, EVENT_BEAT_HIKER_SIDNEY, HikerSidneySeenText, HikerSidneyBeatenText, 0, .Script
+
+.Script:
+ endifjustbattled
+ opentext
+ writetext HikerSidneyAfterBattleText
+ waitbutton
+ closetext
+ end
+
+Route9Sign:
+ jumptext Route9SignText
+
+Route9HiddenEther:
+ hiddenitem ETHER, EVENT_ROUTE_9_HIDDEN_ETHER
+
+CamperDeanSeenText:
+ text "I came to explore"
+ line "ROCK TUNNEL."
+ done
+
+CamperDeanBeatenText:
+ text "Whoa! Danger, man."
+ done
+
+CamperDeanAfterBattleText:
+ text "My #MON were"
+ line "hurt before even"
+
+ para "entering ROCK"
+ line "TUNNEL."
+
+ para "I'd better take"
+ line "them to a #MON"
+ cont "CENTER right away."
+ done
+
+PicnickerHeidiSeenText:
+ text "Have you ever been"
+ line "to a picnic?"
+
+ para "They're so much"
+ line "fun!"
+ done
+
+PicnickerHeidiBeatenText:
+ text "Ohhhh!"
+ done
+
+PicnickerHeidiAfterBattleText:
+ text "We bake lots of"
+ line "goodies and share"
+
+ para "them all around."
+ line "They're delicious!"
+ done
+
+CamperSidSeenText:
+ text "Hey, you!"
+ line "Don't litter!"
+ done
+
+CamperSidBeatenText:
+ text "I was just point-"
+ line "ing out…"
+ done
+
+CamperSidAfterBattleText:
+ text "Sorry. You weren't"
+ line "littering. It was"
+ cont "my mistake."
+ done
+
+PicnickerEdnaSeenText:
+ text "People shouldn't"
+ line "leave any litter"
+ cont "behind."
+ done
+
+PicnickerEdnaBeatenText:
+ text "Ohh… I lost…"
+ done
+
+PicnickerEdnaAfterBattleText:
+ text "Conserving energy"
+ line "is important, but"
+
+ para "the environment is"
+ line "even more vital."
+ done
+
+HikerTimSeenText:
+ text "She'll be coming"
+ line "'round MT.SILVER"
+ cont "when she comes…"
+
+ para "MT.SILVER is in"
+ line "JOHTO, right?"
+ done
+
+HikerTimBeatenText:
+ text "I was too busy"
+ line "singing…"
+ done
+
+HikerTimAfterBattleText:
+ text "Battles are about"
+ line "concentration."
+ done
+
+HikerSidneySeenText:
+ text "I'll tell you a"
+ line "secret."
+
+ para "But first, we"
+ line "battle!"
+ done
+
+HikerSidneyBeatenText:
+ text "Oh, dang!"
+ line "I lost that…"
+ done
+
+HikerSidneyAfterBattleText:
+ text "The POWER PLANT is"
+ line "across a small"
+ cont "river."
+ done
+
+Route9SignText:
+ text "ROUTE 9"
+
+ para "CERULEAN CITY -"
+ line "ROCK TUNNEL"
+ done
+
+Route9_MapEvents:
+ db 0, 0 ; filler
+
+ db 1 ; warp events
+ warp_event 48, 15, ROCK_TUNNEL_1F, 1
+
+ db 0 ; coord events
+
+ db 2 ; bg events
+ bg_event 15, 7, BGEVENT_READ, Route9Sign
+ bg_event 10, 5, BGEVENT_ITEM, Route9HiddenEther
+
+ db 6 ; object events
+ object_event 23, 11, SPRITE_YOUNGSTER, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_TRAINER, 3, TrainerCamperDean, -1
+ object_event 35, 8, SPRITE_LASS, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_TRAINER, 2, TrainerPicnickerHeidi, -1
+ object_event 11, 2, SPRITE_YOUNGSTER, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_TRAINER, 2, TrainerCamperSid, -1
+ object_event 9, 10, SPRITE_LASS, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_TRAINER, 1, TrainerPicnickerEdna, -1
+ object_event 32, 3, SPRITE_POKEFAN_M, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_BROWN, OBJECTTYPE_TRAINER, 4, TrainerHikerTim, -1
+ object_event 33, 15, SPRITE_POKEFAN_M, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_BROWN, OBJECTTYPE_TRAINER, 4, TrainerHikerSidney, -1