summaryrefslogtreecommitdiff
path: root/data/text/trainers.inc
blob: 5be1149aedd736fb2dd3ae11b053180d6e78686a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
VSSeeker_Text_BatteryNotChargedNeedXSteps:: @ 81C137C
	.string "The battery isn't charged enough.\p"
	.string "No. of steps required to fully\n"
	.string "charge the battery: {STR_VAR_1}{PAUSE_UNTIL_PRESS}$"

VSSeeker_Text_NoTrainersWithinRange:: @ 81C13D6
	.string "There are no TRAINERS within range\n"
	.string "who can battle…\p"
	.string "The VS SEEKER was turned off.{PAUSE_UNTIL_PRESS}$"

VSSeeker_Text_TrainersNotReady:: @ 81C1429
	.string "The other TRAINERS don't appear\n"
	.string "to be ready for battle.\p"
	.string "Let's wait till later.{PAUSE_UNTIL_PRESS}$"

Route3_Text_ColtonRematchIntro:: @ 81C147A
	.string "Hey!\n"
	.string "I saw you in VIRIDIAN FOREST!$"

Route3_Text_BenRematchIntro:: @ 81C149D
	.string "Hi! I like shorts!\n"
	.string "They're comfy and easy to wear!\p"
	.string "You should be wearing shorts, too!$"

Route3_Text_JaniceRematchIntro:: @ 81C14F3
	.string "Excuse me!\n"
	.string "You keep looking at me, don't you?$"

Route3_Text_GregRematchIntro:: @ 81C1521
	.string "You're a TRAINER, aren't you?\n"
	.string "Let's get with it right away!$"

Route3_Text_SallyRematchIntro:: @ 81C155D
	.string "That look you give me…\n"
	.string "It intrigues me so!$"

Route3_Text_CalvinRematchIntro:: @ 81C1588
	.string "Hey! What's wrong with you?\n"
	.string "You're still not wearing shorts!$"

Route3_Text_JamesRematchIntro:: @ 81C15C5
	.string "I'll battle you with the POKéMON\n"
	.string "I started raising.$"

Route3_Text_RobinRematchIntro:: @ 81C15F9
	.string "Eek!\n"
	.string "Did you push me?$"

Route4_Text_CrissyRematchIntro:: @ 81C160F
	.string "I always catch mushroom POKéMON\n"
	.string "on MT. MOON.$"

Route6_Text_RickyRematchIntro:: @ 81C163C
	.string "Oh! You're that nosy kid who\n"
	.string "eavesdropped on us!$"

Route6_Text_NancyRematchIntro:: @ 81C166D
	.string "Excuse me! Didn't I tell you that\n"
	.string "this is a private conversation?\p"
	.string "You shouldn't be listening in,\n"
	.string "you uncouth person!$"

Route6_Text_KeigoRematchIntro:: @ 81C16E2
	.string "I'm trying to find something good\n"
	.string "that's not a BUG POKéMON, but…$"

Route6_Text_JeffRematchIntro:: @ 81C1723
	.string "Huh?\n"
	.string "You want to go with me again?$"

Route6_Text_IsabelleRematchIntro:: @ 81C1746
	.string "Me?\n"
	.string "Well, okay. I'll play this once.$"

Route6_Text_ElijahRematchIntro:: @ 81C176B
	.string "Hey, long time!\n"
	.string "Have you gotten better?$"

Route8_Text_AidanRematchIntro:: @ 81C1793
	.string "You are good at POKéMON, but how\n"
	.string "is your chemistry grade?$"

Route8_Text_StanRematchIntro:: @ 81C17CD
	.string "All right!\n"
	.string "Let's play another game!$"

Route8_Text_GlennRematchIntro:: @ 81C17F1
	.string "You need strategy to win at\n"
	.string "battling.\p"
	.string "Are you following my advice?$"

Route8_Text_PaigeRematchIntro:: @ 81C1834
	.string "I've collected many NIDORAN.\n"
	.string "I don't want them to evolve, but…$"

Route8_Text_LeslieRematchIntro:: @ 81C1873
	.string "School is fun, but I still think\n"
	.string "POKéMON are fun, too.$"

Route8_Text_AndreaRematchIntro:: @ 81C18AA
	.string "MEOWTH and PERSIAN are so cute,\n"
	.string "meow, meow, meow!$"

Route8_Text_MeganRematchIntro:: @ 81C18DC
	.string "We may look silly standing here\n"
	.string "like this, but I can still battle.$"

Route8_Text_RichRematchIntro:: @ 81C191F
	.string "I'm a rambling, gaming dude!\n"
	.string "I'm on a winning streak!$"

Route8_Text_JuliaRematchIntro:: @ 81C1955
	.string "What's a cute, round, and fluffy\n"
	.string "POKéMON?\p"
	.string "You already know, don't you?$"

Route8_Text_RicardoRematchIntro:: @ 81C199C
	.string "My bike's still acting up, man.$"

Route8_Text_JarenRematchIntro:: @ 81C19BC
	.string "Okay, kid!\n"
	.string "Don't expect mercy this time!$"

Route8_Text_EliRematchIntro:: @ 81C19E5
	.string "ELI: Our twin power became even\n"
	.string "better!$"

Route8_Text_AnneRematchIntro:: @ 81C1A0D
	.string "ANNE: Our twin power powered up!$"

Route9_Text_AliciaRematchIntro:: @ 81C1A2E
	.string "We're to battle again?\n"
	.string "This time, you're mine!$"

Route9_Text_ChrisRematchIntro:: @ 81C1A5D
	.string "I haven't forgotten you were with\n"
	.string "those good-looking POKéMON.$"

Route9_Text_DrewRematchIntro:: @ 81C1A9B
	.string "I'm taking ROCK TUNNEL to go to\n"
	.string "LAVENDER…\p"
	.string "But I keep getting stopped by\n"
	.string "everyone along the way…$"

Route9_Text_CaitlinRematchIntro:: @ 81C1AFB
	.string "Don't you dare patronize me today!\n"
	.string "We're playing for keeps!$"

Route9_Text_JeremyRematchIntro:: @ 81C1B37
	.string "Bwahaha!\n"
	.string "Great! I was bored again, eh!$"

Route9_Text_BriceRematchIntro:: @ 81C1B5E
	.string "Hahaha!\n"
	.string "A little toughie, as always!$"

Route9_Text_BrentRematchIntro:: @ 81C1B83
	.string "I got up early every day to train\n"
	.string "my POKéMON from cocoons!$"

Route9_Text_AlanRematchIntro:: @ 81C1BBE
	.string "Hahahaha!\n"
	.string "I'll win this time!$"

Route9_Text_ConnerRematchIntro:: @ 81C1BDC
	.string "Go win, my super BUG POKéMON!$"

Route10_Text_MarkRematchIntro:: @ 81C1BFA
	.string "Wow, you came here again?\n"
	.string "Maybe you're a POKéMANIAC, too?\l"
	.string "Want to see my collection?$"

Route10_Text_ClarkRematchIntro:: @ 81C1C4F
	.string "Ha-hahah-ah-ha!\n"
	.string "I can't stop sneezing!$"

Route10_Text_HermanRematchIntro:: @ 81C1C76
	.string "Hi, kid!\n"
	.string "Did I show you my POKéMON?$"

Route10_Text_HeidiRematchIntro:: @ 81C1C9A
	.string "I went out to a POKéMON GYM again.\p"
	.string "…But I lost as usual.$"

Route10_Text_TrentRematchIntro:: @ 81C1CD3
	.string "Ah!\n"
	.string "This mountain air is delicious!\l"
	.string "It's so good, I can't leave!$"

Route10_Text_CarolRematchIntro:: @ 81C1D14
	.string "My head is starting to spin.\n"
	.string "I've been hiking for too long…$"

Route11_Text_HugoRematchIntro:: @ 81C1D50
	.string "Win, lose, or draw!\n"
	.string "Now for our rematch!$"

Route11_Text_JasperRematchIntro:: @ 81C1D79
	.string "Competing is the ultimate thrill.\n"
	.string "I still can't get enough!$"

Route11_Text_EddieRematchIntro:: @ 81C1DB5
	.string "You know, right?\n"
	.string "Let's go, but don't cheat!$"

Route11_Text_BraxtonRematchIntro:: @ 81C1DE1
	.string "Hi, there!\p"
	.string "But be careful!\n"
	.string "I'm still laying down some cables!$"

Route11_Text_DillonRematchIntro:: @ 81C1E1F
	.string "I became a TRAINER a while ago.\n"
	.string "But, I think I can win.$"

Route11_Text_DirkRematchIntro:: @ 81C1E57
	.string "Fwahaha!\n"
	.string "I have never lost!\p"
	.string "…And if I did, I've forgotten all\n"
	.string "about it!$"

Route11_Text_DarianRematchIntro:: @ 81C1E9F
	.string "I have never won before…\p"
	.string "Perhaps I am destined to remain\n"
	.string "that way…$"

Route11_Text_YasuRematchIntro:: @ 81C1EE2
	.string "I'm the best in my class.\n"
	.string "I train every morning and night!$"

Route11_Text_BernieRematchIntro:: @ 81C1F1D
	.string "Keep your eyes out for live wires!$"

Route11_Text_DaveRematchIntro:: @ 81C1F40
	.string "I raised my POKéMON carefully.\n"
	.string "They should be ready by now.\l"
	.string "This time, they should win, too.$"

Route12_Text_NedRematchIntro:: @ 81C1F9D
	.string "Yeah!\n"
	.string "I got a bite, here!\l"
	.string "Th-this might be the real thing!$"

Route12_Text_ChipRematchIntro:: @ 81C1FD8
	.string "You're finally here.\n"
	.string "Fishing is a waiting game.$"

Route12_Text_JustinRematchIntro:: @ 81C2008
	.string "Still can't find a MOON STONE…\n"
	.string "Have you found one?$"

Route12_Text_LucaRematchIntro:: @ 81C203B
	.string "Electricity has always been my\n"
	.string "specialty.\p"
	.string "I don't know a thing about POKéMON\n"
	.string "of the sea, though.$"

Route12_Text_HankRematchIntro:: @ 81C209C
	.string "The FISHING FOOL vs. POKéMON KID!\n"
	.string "Another round, fight!$"

Route12_Text_ElliotRematchIntro:: @ 81C20D4
	.string "I love fishing, don't get me wrong.\n"
	.string "But, I wish I had more work…\l"
	.string "…It's hard to give up fishing!$"

Route12_Text_AndrewRematchIntro:: @ 81C2134
	.string "What's catching?\p"
	.string "You'll never know unless you beat\n"
	.string "me!$"

Route12_Text_JesRematchIntro:: @ 81C216B
	.string "JES: I'll win here today and\n"
	.string "propose to my GIA.$"

Route12_Text_GiaRematchIntro:: @ 81C219B
	.string "GIA: Hey, JES…\n"
	.string "I've been waiting a long time now.\p"
	.string "If we win today, I'll marry you!$"

Route13_Text_SebastianRematchIntro:: @ 81C21EE
	.string "My bird POKéMON remember you!$"

Route13_Text_SusieRematchIntro:: @ 81C220C
	.string "I want to be the best TRAINER \n"
	.string "while I'm a kid!$"

Route13_Text_ValerieRematchIntro:: @ 81C223C
	.string "Wow!\n"
	.string "You got more cool BADGES!$"

Route13_Text_GwenRematchIntro:: @ 81C225B
	.string "My cutely grown POKéMON wish to\n"
	.string "become reacquainted with you.$"

Route13_Text_AlmaRematchIntro:: @ 81C2299
	.string "I cleaned out my savings and\n"
	.string "bought more CARBOS.$"

Route13_Text_PerryRematchIntro:: @ 81C22CA
	.string "I'm not going to lose this time.\n"
	.string "The wind's blowing my way!$"

Route13_Text_LolaRematchIntro:: @ 81C2306
	.string "Oh, you're back?\p"
	.string "Sure, I'll play again with you,\n"
	.string "sweetie.$"

Route13_Text_SheilaRematchIntro:: @ 81C2340
	.string "Can't you forget that you battled\n"
	.string "with me?$"

Route13_Text_JaredRematchIntro:: @ 81C236B
	.string "What're you starin' at?$"

Route13_Text_RobertRematchIntro:: @ 81C2383
	.string "I always go with bird POKéMON.\n"
	.string "I've dedicated myself to them.$"

Route14_Text_CarterRematchIntro:: @ 81C23C1
	.string "I used TMs to teach good moves\n"
	.string "to my POKéMON.$"

Route14_Text_MitchRematchIntro:: @ 81C23EF
	.string "My bird POKéMON should be ready\n"
	.string "for battle this time.$"

Route14_Text_BeckRematchIntro:: @ 81C2425
	.string "Are you using TMs on POKéMON?\n"
	.string "Just holding them is useless.$"

Route14_Text_MarlonRematchIntro:: @ 81C2461
	.string "Have you taught your bird POKéMON\n"
	.string "how to FLY?\p"
	.string "You'll be able to soar with it into\n"
	.string "the sky! Give it a try.$"

Route14_Text_DonaldRematchIntro:: @ 81C24CB
	.string "The legend of the winged mirages…\n"
	.string "You've heard it, right?$"

Route14_Text_BennyRematchIntro:: @ 81C2505
	.string "I'm really not into it, but okay.\n"
	.string "Let's go!$"

Route14_Text_LukasRematchIntro:: @ 81C2531
	.string "Hey!\n"
	.string "I remember you!\p"
	.string "C'mon, c'mon.\n"
	.string "Let's go, let's go, let's go!$"

Route14_Text_IsaacRematchIntro:: @ 81C2572
	.string "You're here again, huh?\n"
	.string "Shut up and battle.$"

Route14_Text_GeraldRematchIntro:: @ 81C259E
	.string "We've been riding here because of\n"
	.string "the wide-open spaces.$"

Route14_Text_MalikRematchIntro:: @ 81C25D6
	.string "POKéMON battle, right?\n"
	.string "Cool! Rumble!$"

Route14_Text_KiriRematchIntro:: @ 81C25FB
	.string "KIRI: JAN, I hope we win today.$"

Route14_Text_JanRematchIntro:: @ 81C261B
	.string "JAN: KIRI, here we go!\n"
	.string "Let's win for sure this time!$"

Route15_Text_KindraRematchIntro:: @ 81C2650
	.string "I'm going to keep battling with the\n"
	.string "POKéMON I got in trades.$"

Route15_Text_BeckyRematchIntro:: @ 81C268D
	.string "You look gentle, so I think I can\n"
	.string "beat you.\p"
	.string "I'll give it one more go!$"

Route15_Text_EdwinRematchIntro:: @ 81C26D3
	.string "When I whistle, bird POKéMON\n"
	.string "gather around.\p"
	.string "They're amazingly cute!$"

Route15_Text_ChesterRematchIntro:: @ 81C2717
	.string "Hmm? My birds are shivering!\n"
	.string "Wait, aren't you that TRAINER…$"

Route15_Text_GraceRematchIntro:: @ 81C2753
	.string "Oh, you're a little cutie!\n"
	.string "So like a darling POKéMON!\l"
	.string "I remember you now!$"

Route15_Text_OliviaRematchIntro:: @ 81C279D
	.string "I raise POKéMON for protection\n"
	.string "because I live alone.\p"
	.string "That hasn't changed.$"

Route15_Text_ErnestRematchIntro:: @ 81C27E7
	.string "Hey, kid! C'mon!\n"
	.string "I got these off some loser!$"

Route15_Text_AlexRematchIntro:: @ 81C2814
	.string "Fork over all your cash when you\n"
	.string "lose to me, kid!$"

Route15_Text_CeliaRematchIntro:: @ 81C2846
	.string "What's cool and happening?\n"
	.string "Trading POKéMON, of course.$"

Route15_Text_YazminRematchIntro:: @ 81C287D
	.string "Want to play with my POKéMON\n"
	.string "again?$"

Route15_Text_MyaRematchIntro:: @ 81C28A1
	.string "MYA: Hi, we keep meeting,\n"
	.string "don't we?\p"
	.string "Help me train my little brother\n"
	.string "again?$"

Route15_Text_RonRematchIntro:: @ 81C28EC
	.string "RON: My sister's gotten more\n"
	.string "powerful…$"

Route16_Text_LaoRematchIntro:: @ 81C2913
	.string "What do you want?$"

Route16_Text_KojiRematchIntro:: @ 81C2925
	.string "Nice BIKE!\n"
	.string "Hand it over quick!$"

Route16_Text_LukeRematchIntro:: @ 81C2944
	.string "Come out and play, little mouse.\n"
	.string "I'll treat you right!$"

Route16_Text_HideoRematchIntro:: @ 81C297B
	.string "Hey, wait a second!\n"
	.string "Don't call me and then run away!$"

Route16_Text_CamronRematchIntro:: @ 81C29B0
	.string "I'm feeling hungry and mean!\n"
	.string "I really need a punching bag!$"

Route16_Text_RubenRematchIntro:: @ 81C29EB
	.string "Hey, there!\n"
	.string "We'll have ourselves a good time!$"

Route16_Text_JedRematchIntro:: @ 81C2A19
	.string "JED: Are you here to see our\n"
	.string "love, which knows no bounds?$"

Route16_Text_LeaRematchIntro:: @ 81C2A53
	.string "LEA: Sometimes, the intensity of\n"
	.string "our love scares me.$"

Route17_Text_RaulRematchIntro:: @ 81C2A88
	.string "I told you, there's no getting rich\n"
	.string "quick in battling kids.$"

Route17_Text_IsaiahRematchIntro:: @ 81C2AC4
	.string "I'm mighty proud of my bod, kiddo.\n"
	.string "Come on!$"

Route17_Text_VirgilRematchIntro:: @ 81C2AF0
	.string "You out for a stroll?$"

Route17_Text_BillyRematchIntro:: @ 81C2B06
	.string "We're BIKERS!\n"
	.string "We rule the roads, man!$"

Route17_Text_NikolasRematchIntro:: @ 81C2B2C
	.string "VOLTORB's going to seriously\n"
	.string "electrify you today!$"

Route17_Text_ZeekRematchIntro:: @ 81C2B5E
	.string "I leveled up my POKéMON, but it\n"
	.string "absolutely won't evolve. Why?$"

Route17_Text_JamalRematchIntro:: @ 81C2B9C
	.string "Gaah! I really need to exercise\n"
	.string "and seriously trim some flab!$"

Route17_Text_CoreyRematchIntro:: @ 81C2BDA
	.string "Be a rebel!$"

Route17_Text_JaxonRematchIntro:: @ 81C2BE6
	.string "Yep, that's a nice BIKE!\n"
	.string "How's it handle?$"

Route17_Text_WilliamRematchIntro:: @ 81C2C10
	.string "Get lost, kid!\n"
	.string "I'm bushed!$"

Route18_Text_WiltonRematchIntro:: @ 81C2C2B
	.string "I've been checking every grassy\n"
	.string "area for new POKéMON.\p"
	.string "But it's not always easy…$"

Route18_Text_RamiroRematchIntro:: @ 81C2C7B
	.string "Koorukukukoo!\n"
	.string "Is my birdcall getting better?$"

Route18_Text_JacobRematchIntro:: @ 81C2CA8
	.string "I warned you before, this is my\n"
	.string "turf!\p"
	.string "I don't want you coming around.$"

Route19_Text_RichardRematchIntro:: @ 81C2CEE
	.string "I'm almost warmed up to go\n"
	.string "out for a swim.$"

Route19_Text_ReeceRematchIntro:: @ 81C2D19
	.string "Wait! Slow down!\n"
	.string "What if you have a heart attack?$"

Route19_Text_MatthewRematchIntro:: @ 81C2D4B
	.string "I love swimming!\n"
	.string "I guess you're the surfing type.$"

Route19_Text_DouglasRematchIntro:: @ 81C2D7D
	.string "What's beyond the horizon?\n"
	.string "Have you seen?$"

Route19_Text_DavidRematchIntro:: @ 81C2DA7
	.string "I tried diving for POKéMON again,\n"
	.string "but it was a no-go like before.$"

Route19_Text_TonyRematchIntro:: @ 81C2DE9
	.string "I look at the sea to forget all\n"
	.string "the bad things that happened.\p"
	.string "…Like losing to you the last time!$"

Route19_Text_AnyaRematchIntro:: @ 81C2E4A
	.string "You always get to ride your\n"
	.string "POKéMON…\p"
	.string "It looks so relaxing.\n"
	.string "Can I have it if I win?$"

Route19_Text_AliceRematchIntro:: @ 81C2E9D
	.string "Swimming's great!\n"
	.string "Sunburns aren't!$"

Route19_Text_AxleRematchIntro:: @ 81C2EC0
	.string "These waters are treacherous!\n"
	.string "You shouldn't come back here!$"

Route19_Text_ConnieRematchIntro:: @ 81C2EFC
	.string "I swam here with my friends…\n"
	.string "I'm tired…\l"
	.string "Must we really battle again?$"

Route19_Text_LiaRematchIntro:: @ 81C2F41
	.string "LIA: You know my brother just\n"
	.string "became a TRAINER, right?\p"
	.string "I want to make him better, so I\n"
	.string "need your help again.$"

Route19_Text_LucRematchIntro:: @ 81C2FAE
	.string "LUC: My big sis taught me all\n"
	.string "about POKéMON.\p"
	.string "I wonder if I'm better?$"

Route20_Text_BarryRematchIntro:: @ 81C2FF3
	.string "The water is shallow here.\n"
	.string "There are many people swimming.$"

Route20_Text_ShirleyRematchIntro:: @ 81C302E
	.string "Are you jealous that I'm\n"
	.string "vacationing on SEAFOAM?$"

Route20_Text_TiffanyRematchIntro:: @ 81C305F
	.string "I love floating with the fishes\n"
	.string "here among the waves.$"

Route20_Text_IreneRematchIntro:: @ 81C3095
	.string "Were you on vacation, too?$"

Route20_Text_DeanRematchIntro:: @ 81C30B0
	.string "Check out my physique!\p"
	.string "It's even more buff than ever\n"
	.string "before!$"

Route20_Text_DarrinRematchIntro:: @ 81C30ED
	.string "Why are you riding a POKéMON?\n"
	.string "Haven't you learned to swim yet?$"

Route20_Text_RogerRematchIntro:: @ 81C312C
	.string "I rode my bird POKéMON here.$"

Route20_Text_NoraRematchIntro:: @ 81C3149
	.string "My boyfriend gave me big pearls.\n"
	.string "And, they've grown bigger!$"

Route20_Text_MissyRematchIntro:: @ 81C3185
	.string "I swam here from CINNABAR ISLAND.\n"
	.string "It wasn't easy, like I said.$"

Route20_Text_MelissaRematchIntro:: @ 81C31C4
	.string "CINNABAR, in the west, has a LAB\n"
	.string "for POKéMON.\p"
	.string "My daddy works there.$"

Route21_North_Text_RonaldRematchIntro:: @ 81C3208
	.string "You want to know if the fish are\n"
	.string "biting?$"

Route21_North_Text_WadeRematchIntro:: @ 81C3231
	.string "I got a big haul again!\n"
	.string "Wanna go for it once more?$"

Route21_North_Text_SpencerRematchIntro:: @ 81C3264
	.string "The sea cleanses my body and soul!$"

@ Unused trainer from RB that had a rematch intro added
Route21_North_Text_CueBallRematchIntro:: @ 81C3287
	.string "きょうも およぎに\n"
	.string "きちまったぜ$"

Route21_South_Text_JackRematchIntro:: @ 81C3298
	.string "I caught my POKéMON at sea.\n"
	.string "And that's where I train them.$"

Route21_South_Text_JeromeRematchIntro:: @ 81C32D3
	.string "Right now, I'm in another triathlon\n"
	.string "meet!$"

Route21_South_Text_RolandRematchIntro:: @ 81C32FD
	.string "Ahh!\n"
	.string "Feel the sun and the wind!$"

Route21_South_Text_ClaudeRematchIntro:: @ 81C331D
	.string "Hey, cut it out already.\n"
	.string "You always scare away the fish!$"

Route21_South_Text_NolanRematchIntro:: @ 81C3356
	.string "Keep me company till I get a hit.$"

Route21_North_Text_LilRematchIntro:: @ 81C3378
	.string "LIL: Huh? A battle again?\n"
	.string "IAN, can't you do it alone?$"

Route21_North_Text_IanRematchIntro:: @ 81C33AE
	.string "IAN: My sis is still a slob.\n"
	.string "Help me get her into shape!$"

Route25_Text_JoeyRematchIntro:: @ 81C33E7
	.string "I won't lose while I'm here!$"

Route25_Text_DanRematchIntro:: @ 81C3404
	.string "Dad took me to a great party on\n"
	.string "the S.S. ANNE at VERMILION CITY.$"

Route25_Text_FlintRematchIntro:: @ 81C3445
	.string "I'm a cool guy.\n"
	.string "I've got a girlfriend!\p"
	.string "I'll show her how cool I am for\n"
	.string "sure this time!$"

Route25_Text_KelseyRematchIntro:: @ 81C349C
	.string "Hi!\n"
	.string "My boyfriend is cool!\l"
	.string "My conditioning's good today!$"

Route25_Text_ChadRematchIntro:: @ 81C34D4
	.string "I had this feeling…\n"
	.string "I knew I had to battle you again!$"

Route25_Text_HaleyRematchIntro:: @ 81C350A
	.string "My friend has many cute POKéMON.\n"
	.string "I'm so jealous!$"

Route25_Text_FranklinRematchIntro:: @ 81C353B
	.string "I just trained up on MT. MOON,\n"
	.string "but I've still got gas in the tank!$"

Route25_Text_NobRematchIntro:: @ 81C357E
	.string "A POKéMANIAC lives on the cape.\n"
	.string "Have you seen his collection?$"

Route25_Text_WayneRematchIntro:: @ 81C35BC
	.string "You're going to see BILL again?\n"
	.string "First, we battle!$"

Route24_Text_ShaneRematchIntro:: @ 81C35EE
	.string "I saw your feat from the grass!$"

Route24_Text_EthanRematchIntro:: @ 81C360E
	.string "Okay!\n"
	.string "I'll stomp you!$"

Route24_Text_ReliRematchIntro:: @ 81C3624
	.string "You always look so busy…\n"
	.string "Aren't you getting tired?$"

Route24_Text_TimmyRematchIntro:: @ 81C3657
	.string "You really must love coming to\n"
	.string "NUGGET BRIDGE.$"

Route24_Text_AliRematchIntro:: @ 81C3685
	.string "The time we battled…\p"
	.string "Even though I was the second in\n"
	.string "line, I was the best, wasn't I?$"

Route24_Text_CaleRematchIntro:: @ 81C36DA
	.string "People call this the NUGGET\n"
	.string "BRIDGE!\p"
	.string "You've already beaten us, so you're\n"
	.string "not allowed to take the challenge…\p"
	.string "…But, you're welcome to battle with\n"
	.string "us again.$"

OneIsland_TreasureBeach_Text_AmaraRematchIntro:: @ 81C3773
	.string "Lying back, rocked by the waves…\n"
	.string "I don't notice time slipping by…$"

OneIsland_KindleRoad_Text_MariaRematchIntro:: @ 81C37B5
	.string "The weather's gorgeous!\n"
	.string "I'll try not to spoil it.$"

OneIsland_KindleRoad_Text_AbigailRematchIntro:: @ 81C37E7
	.string "My sunburn is starting to hurt…$"

OneIsland_KindleRoad_Text_FinnRematchIntro:: @ 81C3807
	.string "The fire bird's mountain casts\n"
	.string "a huge shadow…$"

OneIsland_KindleRoad_Text_GarrettRematchIntro:: @ 81C3835
	.string "I have this strong feeling that\n"
	.string "I can win this time!$"

OneIsland_KindleRoad_Text_TommyRematchIntro:: @ 81C386A
	.string "Wait! Wait a second!\n"
	.string "I'm sure I've hooked a big one!$"

OneIsland_KindleRoad_Text_SharonRematchIntro:: @ 81C389F
	.string "You'll help me out with my\n"
	.string "training again?$"

OneIsland_KindleRoad_Text_TanyaRematchIntro:: @ 81C38CA
	.string "We haven't missed a single day of\n"
	.string "training yet!$"

OneIsland_KindleRoad_Text_SheaRematchIntro:: @ 81C38FA
	.string "Every morning, before breakfast,\n"
	.string "I swim around this island…\l"
	.string "Three times!$"

OneIsland_KindleRoad_Text_HughRematchIntro:: @ 81C3943
	.string "Dress appropriately for battle!\n"
	.string "Lose that frivolous outfit, I said!$"

OneIsland_KindleRoad_Text_BryceRematchIntro:: @ 81C3987
	.string "You know, everything tastes great\n"
	.string "when you're out in the wild.$"

OneIsland_KindleRoad_Text_ClaireRematchIntro:: @ 81C39C6
	.string "I ate too much again, so will you\n"
	.string "battle us for some exercise?$"

OneIsland_KindleRoad_Text_KiaRematchIntro:: @ 81C3A05
	.string "KIA: My big brother and I make\n"
	.string "an awesome combination!\p"
	.string "We won't lose this time!$"

OneIsland_KindleRoad_Text_MikRematchIntro:: @ 81C3A55
	.string "MIK: Together with KIA, we're\n"
	.string "afraid of nothing!\p"
	.string "We'll prove it to you this time!$"

ThreeIsland_BondBridge_Text_NikkiRematchIntro:: @ 81C3AA7
	.string "Are we to battle again?$"

ThreeIsland_BondBridge_Text_VioletRematchIntro:: @ 81C3ABF
	.string "From where have you come, and\n"
	.string "where are you bound?$"

ThreeIsland_BondBridge_Text_AmiraRematchIntro:: @ 81C3AF2
	.string "I want to swim without my float\n"
	.string "ring soon.$"

ThreeIsland_BondBridge_Text_AlexisRematchIntro:: @ 81C3B1D
	.string "Yay, yay!\n"
	.string "POKéMON!$"

ThreeIsland_BondBridge_Text_TishaRematchIntro:: @ 81C3B30
	.string "Oh, no, didn't I tell you already?\n"
	.string "Please, stay away from me!$"

ThreeIsland_BondBridge_Text_JoyRematchIntro:: @ 81C3B6E
	.string "JOY: We've gotten stronger!\n"
	.string "Lots and lots!$"

ThreeIsland_BondBridge_Text_MegRematchIntro:: @ 81C3B99
	.string "MEG: You can't beat us today!$"

FiveIsland_WaterLabyrinth_Text_AlizeRematchIntro:: @ 81C3BB7
	.string "Oh, hello!\p"
	.string "Are you raising your POKéMON in a\n"
	.string "good environment?$"

FiveIsland_ResortGorgeous_Text_DaisyRematchIntro:: @ 81C3BF6
	.string "With these hands, I will create\n"
	.string "my victory today.$"

FiveIsland_ResortGorgeous_Text_CelinaRematchIntro:: @ 81C3C28
	.string "Must I repeat myself?\n"
	.string "I'm trying to paint.\l"
	.string "Please keep out of my sight!$"

FiveIsland_ResortGorgeous_Text_RaynaRematchIntro:: @ 81C3C70
	.string "I haven't made any progress…\n"
	.string "I still can't get the right angle…$"

FiveIsland_ResortGorgeous_Text_JackiRematchIntro:: @ 81C3CB0
	.string "Oh, you will give me another\n"
	.string "opportunity to match wits with you?$"

FiveIsland_ResortGorgeous_Text_GillianRematchIntro:: @ 81C3CF1
	.string "They're almost finished making the\n"
	.string "pool for my POKéMON.\p"
	.string "You must drop in for a visit.$"

FiveIsland_ResortGorgeous_Text_DestinRematchIntro:: @ 81C3D47
	.string "I'm a good runner.\n"
	.string "I've gotten even faster!$"

FiveIsland_ResortGorgeous_Text_TobyRematchIntro:: @ 81C3D73
	.string "I say, friend!\n"
	.string "Let us enjoy our time together!$"

FiveIsland_MemorialPillar_Text_MiloRematchIntro:: @ 81C3DA2
	.string "I'm the eldest of the BIRD\n"
	.string "BROTHERS. Remember me?\p"
	.string "That's right, I'm the one who loves\n"
	.string "birds for their beaks!$"

FiveIsland_MemorialPillar_Text_ChazRematchIntro:: @ 81C3E0F
	.string "I'm the middle kid of the BIRD\n"
	.string "BROTHERS.\p"
	.string "I'm the one that loves wings.\n"
	.string "Let's battle again!$"

FiveIsland_MemorialPillar_Text_HaroldRematchIntro:: @ 81C3E6A
	.string "I'm the youngest of the BIRD\n"
	.string "BROTHERS.\p"
	.string "I love birds for their down.\n"
	.string "I didn't think I'd see you again!$"

SixIsland_OutcastIsland_Text_TylorRematchIntro:: @ 81C3ED0
	.string "I'm still having no luck at all.\n"
	.string "A battle'd be a change of pace!$"

SixIsland_OutcastIsland_Text_MymoRematchIntro:: @ 81C3F11
	.string "Gasp… Gasp…\p"
	.string "I swam here from SIX ISLAND's port\n"
	.string "in one go again.$"

SixIsland_OutcastIsland_Text_NicoleRematchIntro:: @ 81C3F51
	.string "You always come along while I'm\n"
	.string "swimming.$"

SixIsland_OutcastIsland_Text_AvaRematchIntro:: @ 81C3F7B
	.string "AVA: Let's have another\n"
	.string "two-on-two marine battle today!$"

SixIsland_OutcastIsland_Text_GebRematchIntro:: @ 81C3FB3
	.string "GEB: My big sister and I are way\n"
	.string "tougher than before!$"

SixIsland_GreenPath_Text_JaclynRematchIntro:: @ 81C3FE9
	.string "…Huh?\p"
	.string "I envision my house, but TELEPORT\n"
	.string "always brings me here!$"

SixIsland_WaterPath_Text_RoseRematchIntro:: @ 81C4028
	.string "Oh, hello.\n"
	.string "A pleasant breeze is blowing again.$"

SixIsland_WaterPath_Text_EdwardRematchIntro:: @ 81C4057
	.string "Hehehe, I'm practicing in secret\n"
	.string "again.$"

SixIsland_WaterPath_Text_SamirRematchIntro:: @ 81C407F
	.string "What, you're sick of seeing\n"
	.string "SWIMMERS like me?\p"
	.string "Aww, don't be hatin'!\n"
	.string "Battle with me again.$"

SixIsland_WaterPath_Text_DeniseRematchIntro:: @ 81C40D9
	.string "Sigh…\n"
	.string "My boyfriend's busy again…$"

SixIsland_WaterPath_Text_EarlRematchIntro:: @ 81C40FA
	.string "Come on, tell me, where are the\n"
	.string "mountains around these parts?$"

SixIsland_WaterPath_Text_MiuRematchIntro:: @ 81C4138
	.string "MIU: Hello, POKéMON!\n"
	.string "It's time to play again!$"

SixIsland_WaterPath_Text_MiaRematchIntro:: @ 81C4166
	.string "MIA: Hello, POKéMON!\n"
	.string "It's time to battle again!$"

SixIsland_RuinValley_Text_StanlyRematchIntro:: @ 81C4196
	.string "There appear to be many secrets\n"
	.string "still unsolved in this world.$"

SixIsland_RuinValley_Text_FosterRematchIntro:: @ 81C41D4
	.string "Hi, didn't we meet before?\n"
	.string "What compelled you to come back?$"

SixIsland_RuinValley_Text_LarryRematchIntro:: @ 81C4210
	.string "It's been said that there are\n"
	.string "mysterious stones on this island.\p"
	.string "Have you discovered anything since\n"
	.string "we last met?$"

SixIsland_RuinValley_Text_DarylRematchIntro:: @ 81C4280
	.string "A rematch with you, so high up!$"

SixIsland_RuinValley_Text_HectorRematchIntro:: @ 81C42A0
	.string "I'm pretty familiar with the land\n"
	.string "around these parts.$"

SevenIsland_TrainerTower_Text_DarioRematchIntro:: @ 81C42D6
	.string "I sensed your approach.$"

SevenIsland_TrainerTower_Text_RodetteRematchIntro:: @ 81C42EE
	.string "Somewhere on this island, peculiar\n"
	.string "POKéMON are sleeping.$"

SevenIsland_SevaultCanyon_Entrance_Text_MiahRematchIntro:: @ 81C4327
	.string "Kyahaha!\p"
	.string "Coming back won't change a thing.\n"
	.string "I'll flick you away effortlessly!$"

SevenIsland_SevaultCanyon_Entrance_Text_MasonRematchIntro:: @ 81C4374
	.string "Howdy! You're a member of my\n"
	.string "fan club, isn't that right?$"

SevenIsland_SevaultCanyon_Entrance_Text_NicolasRematchIntro:: @ 81C43AD
	.string "This island is too spread out…\n"
	.string "Patrolling the place is a drag…$"

SevenIsland_SevaultCanyon_Entrance_Text_MadelineRematchIntro:: @ 81C43EC
	.string "I don't forgive people who abuse\n"
	.string "POKéMON!$"

SevenIsland_SevaultCanyon_Entrance_Text_EveRematchIntro:: @ 81C4416
	.string "EVE: I'll team up with JON and\n"
	.string "battle together again.$"

SevenIsland_SevaultCanyon_Entrance_Text_JonRematchIntro:: @ 81C444C
	.string "JON: When I'm with EVE, it feels\n"
	.string "like we could never lose, not ever.$"

SevenIsland_SevaultCanyon_Text_CyndyRematchIntro:: @ 81C4491
	.string "Let's have another battle.\n"
	.string "My conditioning's in top form!$"

SevenIsland_SevaultCanyon_Text_EvanRematchIntro:: @ 81C44CB
	.string "It doesn't matter if you happen to\n"
	.string "have the strongest POKéMON…\p"
	.string "It doesn't mean a thing if you don't\n"
	.string "know how to use them properly!$"

SevenIsland_SevaultCanyon_Text_JacksonRematchIntro:: @ 81C454E
	.string "I work to protect the environment.\n"
	.string "In turn, nature protects me!$"

SevenIsland_SevaultCanyon_Text_KatelynRematchIntro:: @ 81C458E
	.string "Every time we meet, you have those\n"
	.string "snazzy shoes on.$"

SevenIsland_SevaultCanyon_Text_LeroyRematchIntro:: @ 81C45C2
	.string "You must have gotten tougher.\n"
	.string "Let me battle you, please!$"

SevenIsland_SevaultCanyon_Text_MichelleRematchIntro:: @ 81C45FB
	.string "I was given the best possible\n"
	.string "education to become this strong.\p"
	.string "I won't lose this time.\n"
	.string "Absolutely not!$"

SevenIsland_SevaultCanyon_Text_LexRematchIntro:: @ 81C4662
	.string "LEX: My darling NYA, together\n"
	.string "we will win for certain!$"

SevenIsland_SevaultCanyon_Text_NyaRematchIntro:: @ 81C4699
	.string "NYA: I won't drag down my mentor\n"
	.string "LEX! We're going to win!$"

SevenIsland_TanobyRuins_Text_BrandonRematchIntro:: @ 81C46D3
	.string "Have you discovered anything about\n"
	.string "this stone chamber?$"

SevenIsland_TanobyRuins_Text_BenjaminRematchIntro:: @ 81C470A
	.string "A mystic POKéMON is said to sleep\n"
	.string "inside here.$"

SevenIsland_TanobyRuins_Text_EdnaRematchIntro:: @ 81C4739
	.string "My teacher is showing me how to\n"
	.string "paint some more.$"

SevenIsland_TanobyRuins_Text_CliffordRematchIntro:: @ 81C476A
	.string "Today, in addition to our lesson,\n"
	.string "we came to see the chamber again.$"