diff options
author | IIMarckus <iimarckus@gmail.com> | 2018-10-03 12:35:21 -0600 |
---|---|---|
committer | IIMarckus <iimarckus@gmail.com> | 2018-10-03 12:35:21 -0600 |
commit | 1ef55364cb911ed70d51f8d01ea7f9a09d2d8d3b (patch) | |
tree | 4e3400e91af17e2d2fa6d85433482d54516cbc7f /maps/Route14.asm | |
parent | ed33ea6efc98761b1902dd43fe047d2fc6ad2a68 (diff) |
Add map objects from bank 4F.
Diffstat (limited to 'maps/Route14.asm')
-rw-r--r-- | maps/Route14.asm | 123 |
1 files changed, 123 insertions, 0 deletions
diff --git a/maps/Route14.asm b/maps/Route14.asm new file mode 100644 index 00000000..0e04a72d --- /dev/null +++ b/maps/Route14.asm @@ -0,0 +1,123 @@ + const_def 2 ; object constants + const ROUTE14_POKEFAN_M1 + const ROUTE14_YOUNGSTER + const ROUTE14_POKEFAN_M2 + const ROUTE14_KIM + +Route14_MapScripts: + db 0 ; scene scripts + + db 0 ; callbacks + +Kim: + faceplayer + opentext + trade NPC_TRADE_KIM + waitbutton + closetext + end + +TrainerPokefanmCarter: + trainer POKEFANM, CARTER, EVENT_BEAT_POKEFANM_CARTER, PokefanmCarterSeenText, PokefanmCarterBeatenText, 0, .Script + +.Script: + endifjustbattled + opentext + writetext PokefanmCarterAfterBattleText + waitbutton + closetext + end + +TrainerBirdKeeperRoy: + trainer BIRD_KEEPER, ROY, EVENT_BEAT_BIRD_KEEPER_ROY, BirdKeeperRoySeenText, BirdKeeperRoyBeatenText, 0, .Script + +.Script: + endifjustbattled + opentext + writetext BirdKeeperRoyAfterBattleText + waitbutton + closetext + end + +TrainerPokefanmTrevor: + trainer POKEFANM, TREVOR, EVENT_BEAT_POKEFANM_TREVOR, PokefanmTrevorSeenText, PokefanmTrevorBeatenText, 0, .Script + +.Script: + endifjustbattled + opentext + writetext PokefanmTrevorAfterBattleText + waitbutton + closetext + end + +PokefanmCarterSeenText: + text "Let me tell you," + line "I had a hard time" + + para "catching my prized" + line "#MON." + done + +PokefanmCarterBeatenText: + text "Awaaah!" + done + +PokefanmCarterAfterBattleText: + text "SQUIRTLE, CHARMAN-" + line "DER and BULBASAUR…" + + para "I think that's a" + line "well-balanced mix." + done + +BirdKeeperRoySeenText: + text "My dream is to fly" + line "with my beloved" + cont "bird #MON." + done + +BirdKeeperRoyBeatenText: + text "I can dream, but I" + line "can't ever fly…" + done + +BirdKeeperRoyAfterBattleText: + text "You have #MON" + line "that know the HM" + + para "move FLY, don't" + line "you? I envy you." + done + +PokefanmTrevorSeenText: + text "Did you battle all" + line "the GYM trainers?" + done + +PokefanmTrevorBeatenText: + text "Oh, wow! Too" + line "strong for me!" + done + +PokefanmTrevorAfterBattleText: + text "If you have KANTO" + line "BADGES, they'll" + + para "help you in linked" + line "battles." + done + +Route14_MapEvents: + db 0, 0 ; filler + + db 0 ; warp events + + db 0 ; coord events + + db 0 ; bg events + + db 4 ; object events + object_event 12, 14, SPRITE_POKEFAN_M, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_TRAINER, 4, TrainerPokefanmCarter, -1 + object_event 11, 27, SPRITE_YOUNGSTER, SPRITEMOVEDATA_SPINRANDOM_FAST, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_TRAINER, 3, TrainerBirdKeeperRoy, -1 + object_event 5, 9, SPRITE_POKEFAN_M, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_TRAINER, 4, TrainerPokefanmTrevor, -1 + object_event 7, 5, SPRITE_TEACHER, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 1, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 4, Kim, -1 |