-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
trainers.inc
4781 lines (3640 loc) · 131 KB
/
trainers.inc
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
Route102_Text_CalvinIntro:
.string "If you have POKéMON with you, then\n"
.string "you're an official POKéMON TRAINER!\l"
.string "You can't say no to my challenge!$"
Route102_Text_CalvinDefeated:
.string "Arrgh, I lost…\n"
.string "I should have trained mine more…$"
Route102_Text_CalvinPostBattle:
.string "Listen, you. If you're strong,\n"
.string "you should have told me before!$"
Route102_Text_CalvinRegister:
.string "I've been working hard at this since\n"
.string "I saw you before.\p"
.string "I'd like to battle you again, so can\n"
.string "you register me in your POKéNAV?$"
Route102_Text_CalvinRegisterShort:
.string "I'd like to battle you again, so can\n"
.string "you register me in your POKéNAV?$"
Route102_Text_CalvinRematchIntro:
.string "Ever since I lost to you, I desperately\n"
.string "trained my POKéMON.\l"
.string "You can't say no to my challenge!$"
Route102_Text_CalvinRematchDefeated:
.string "Arrgh, I lost…\n"
.string "Is my training method not right?$"
Route102_Text_CalvinRematchPostBattle:
.string "If you're going to get stronger,\n"
.string "I'll get stronger, too.$"
Route102_Text_AllenIntro:
.string "Did you just become a TRAINER?\n"
.string "We're both beginners!$"
Route102_Text_AllenDefeated:
.string "I called you because I thought\n"
.string "I could beat you…$"
Route102_Text_AllenPostBattle:
.string "I haven't won once yet…\n"
.string "I wish I would win soon…$"
Route102_Text_RickIntro:
.string "Hahah! Our eyes met!\n"
.string "I'll take you on with my BUG POKéMON!$"
Route102_Text_RickDefeated:
.string "Ow! Down and out!$"
Route102_Text_RickPostBattle:
.string "If you lock eyes with a TRAINER,\n"
.string "you have to challenge! It's a rule!$"
Route102_Text_TianaIntro:
.string "I'm going to keep winning and aim\n"
.string "to be the best TRAINER.\p"
.string "Help me further my career!$"
Route102_Text_TianaDefeated:
.string "I ended up furthering your career…$"
Route102_Text_TianaPostBattle:
.string "To keep winning my way up, I see that\n"
.string "I have to catch more POKéMON.$"
Route103_Text_DaisyIntro:
.string "Did you feel the tug of our\n"
.string "soul-soothing fragrance?$"
Route103_Text_DaisyDefeated:
.string "You weren't led astray by our aroma…$"
Route103_Text_DaisyPostBattle:
.string "Aromatherapy is a form of mental\n"
.string "healing that works with fragrances.$"
Route103_Text_AmyIntro:
.string "AMY: I'm AMY.\n"
.string "And this is my little sister LIV.\l"
.string "We battle together!$"
Route103_Text_AmyDefeated:
.string "AMY: Uh-oh, we lost.$"
Route103_Text_AmyPostBattle:
.string "AMY: You have to think about all\n"
.string "kinds of things when you're battling\l"
.string "against two TRAINERS.$"
Route103_Text_AmyNotEnoughPokemon:
.string "AMY: Uh-oh, you have only one\n"
.string "POKéMON with you.\l"
.string "You can't battle us like that.$"
Route103_Text_LivIntro:
.string "LIV: We battle together as one\n"
.string "team.$"
Route103_Text_LivDefeated:
.string "LIV: Oh, we lost, big sister…$"
Route103_Text_LivPostBattle:
.string "LIV: We work perfectly together,\n"
.string "me and my big sister…\p"
.string "But we still lost…$"
Route103_Text_AmyLivRegister:
.string "LIV: Really, we're a lot better…\n"
.string "It's true! We'll show you next time!$"
Route103_Text_LivNotEnoughPokemon:
.string "LIV: If you want to battle us,\n"
.string "you have to have two POKéMON!\l"
.string "It's not fair if you don't!$"
Route103_Text_AmyRematchIntro:
.string "AMY: I'm AMY.\n"
.string "And this is my little sister LIV.\l"
.string "We battle together!$"
Route103_Text_AmyRematchDefeated:
.string "AMY: Aww, boo!\n"
.string "We couldn't win again…$"
Route103_Text_AmyRematchPostBattle:
.string "AMY: You have to think about all\n"
.string "kinds of things when you're battling\l"
.string "against two TRAINERS.$"
Route103_Text_AmyRematchNotEnoughPokemon:
.string "AMY: Uh-oh, you have only one\n"
.string "POKéMON with you.\l"
.string "You can't battle us like that.$"
Route103_Text_LivRematchIntro:
.string "LIV: We battle together as one\n"
.string "team.$"
Route103_Text_LivRematchDefeated:
.string "LIV: Awww, we lost again…\n"
.string "Big sister…$"
Route103_Text_LivRematchPostBattle:
.string "LIV: We work perfectly together,\n"
.string "me and my big sister…\p"
.string "But why did we lose again?$"
Route103_Text_LivRematchNotEnoughPokemon:
.string "LIV: If you want to battle us, you\n"
.string "have to have two POKéMON!\l"
.string "It's not fair if you don't!$"
Route103_Text_AndrewIntro:
.string "Gah! My fishing line's all snarled up!\n"
.string "I'm getting frustrated and mean!\l"
.string "That's it! Battle me!$"
Route103_Text_AndrewDefeated:
.string "Gah! Lost it!\n"
.string "I'm even more annoyed now!$"
Route103_Text_AndrewPostBattle:
.string "Gah, I'm still boiling mad…\n"
.string "Grrrrr…$"
Route103_Text_MiguelIntro:
.string "My POKéMON is delightfully adorable!\n"
.string "Don't be shy--I'll show you!$"
Route103_Text_MiguelDefeated:
.string "Oh, my gosh!\n"
.string "My darling POKéMON!$"
Route103_Text_MiguelPostBattle:
.string "My delightful POKéMON looks darling\n"
.string "even when it's fainted!$"
Route103_Text_MiguelRegister:
.string "I'll get you to come out and look in\n"
.string "on my delightful POKéMON again!$"
Route103_Text_MiguelRematchIntro:
.string "Hi, you! My delightfully adorable\n"
.string "POKéMON has become more darling!$"
Route103_Text_MiguelRematchDefeated:
.string "Oh!\n"
.string "My darling POKéMON!$"
Route103_Text_MiguelRematchPostBattle:
.string "The more I spend time with it,\n"
.string "the more adorable my POKéMON becomes.$"
Route103_Text_PeteIntro:
.string "This sort of distance…\n"
.string "You should just swim it!$"
Route103_Text_PeteDefeated:
.string "Oh, that's good going!$"
Route103_Text_PetePostBattle:
.string "Oh, I understand where you're coming\n"
.string "from now.\p"
.string "If I had a POKéMON that trusty,\n"
.string "I'd want to SURF on it, too!$"
Route103_Text_IsabelleIntro:
.string "Watch where you're going!\n"
.string "We're going to crash!$"
Route103_Text_IsabelleDefeated:
.string "Groan…$"
Route103_Text_IsabellePostBattle:
.string "I'm a poor swimmer so I was practicing…\n"
.string "Sorry for almost crashing into you.$"
Route103_Text_RhettIntro:
.string "Whoa!\n"
.string "How'd you get into a space this small?$"
Route103_Text_RhettDefeated:
.string "Whoa!\n"
.string "The kid can rock!$"
Route103_Text_RhettPostBattle:
.string "Do you like cramped quarters\n"
.string "like this?$"
Route103_Text_MarcosIntro:
.string "Did my guitar's wailing draw you in?$"
Route103_Text_MarcosDefeated:
.string "My one-man show is ruined…$"
Route103_Text_MarcosPostBattle:
.string "I was playing my guitar where few\n"
.string "people were around, but a lot of fans\l"
.string "have gathered.\p"
.string "Heh, maybe I should turn pro.$"
Route104_Text_GinaIntro:
.string "GINA: Okay, let's battle with our\n"
.string "POKéMON!$"
Route104_Text_GinaDefeat:
.string "GINA: Losing upsets me!$"
Route104_Text_GinaPostBattle:
.string "GINA: You are strong!\n"
.string "We have to train lots more!$"
Route104_Text_GinaNotEnoughMons:
.string "GINA: Oh? Only one POKéMON?\n"
.string "Then, we don't battle with you.\p"
.string "If there's only one POKéMON, it will\n"
.string "be lonesome. That's not nice.$"
Route104_Text_MiaIntro:
.string "MIA: We are twins, so we battle\n"
.string "POKéMON together.$"
Route104_Text_MiaDefeat:
.string "MIA: We battled together, but we\n"
.string "both lost…$"
Route104_Text_MiaPostBattle:
.string "MIA: We will train our POKéMON more\n"
.string "and be strong like you.$"
Route104_Text_MiaNotEnoughMons:
.string "MIA: You want to battle with us?\p"
.string "It's a big no-no if you don't have two\n"
.string "POKéMON with you.\l"
.string "We're too strong for you!$"
Route104_Text_IvanIntro:
.string "Why keep it a secret?\n"
.string "I'm the WATER POKéMON expert!\p"
.string "Huh?\n"
.string "You don't know me?$"
Route104_Text_IvanDefeat:
.string "I thought I wasn't too bad, if I may\n"
.string "say so, but I guess not… Bleah…$"
Route104_Text_IvanPostBattle:
.string "I got too into fishing.\n"
.string "I forgot I had to raise my POKéMON…$"
Route104_Text_BillyIntro:
.string "Leaving footprints in the sand is\n"
.string "so fun!$"
Route104_Text_BillyDefeat:
.string "Waah! I got sand in my runners!\n"
.string "They're all gritty!$"
Route104_Text_BillyPostBattle:
.string "I want to leave my footprints in\n"
.string "the sand everywhere, but they\l"
.string "disappear quickly…$"
Route104_Text_HaleyIntro:
.string "Should I…\n"
.string "Or shouldn't I?\p"
.string "Okay, sure, I will battle!$"
Route104_Text_HaleyDefeat:
.string "I shouldn't have battled…$"
Route104_Text_HaleyPostBattle:
.string "If you're faced with a decision and\n"
.string "you let someone else choose for you,\l"
.string "you will regret it, however things\l"
.string "turn out.$"
Route104_Text_HaleyRegister1:
.string "You're strong, but should I register\n"
.string "you in my POKéNAV?\l"
.string "Maybe I shouldn't…\p"
.string "Okay, sure, I will register you!$"
Route104_Text_HaleyRegister2:
.string "You're strong, but should I register\n"
.string "you in my POKéNAV?\l"
.string "Maybe I shouldn't…\p"
.string "Okay, sure, I will register you!$"
Route104_Text_HaleyRematchIntro:
.string "Come on, battle with me!$"
Route104_Text_HaleyRematchDefeat:
.string "Ohh…\n"
.string "I thought I could win…$"
Route104_Text_HaleyPostRematch:
.string "I made the decision to battle, so\n"
.string "I can accept this loss with grace.\p"
.string "I am still upset about losing!$"
Route104_Text_WinstonIntro:
.string "Oh, sure, I'll accept your challenge.\n"
.string "I have a lot of money.$"
Route104_Text_WinstonDefeat:
.string "Why couldn't I win?$"
Route104_Text_WinstonPostBattle:
.string "There are some things money can't buy.\n"
.string "That's POKéMON…$"
Route104_Text_WinstonRegister1:
.string "Hm?\n"
.string "Ah, you've obtained a POKéNAV.\p"
.string "I will gladly register you.\n"
.string "After all, I have plenty of money.$"
Route104_Text_WinstonRegister2:
.string "Hm?\n"
.string "Ah, you've obtained a POKéNAV.\p"
.string "I will gladly register you.\n"
.string "After all, I have plenty of money.$"
Route104_Text_WinstonRematchIntro:
.string "After I lost to you, I learned a bunch\n"
.string "of things about POKéMON.$"
Route104_Text_WinstonRematchDefeat:
.string "I lost again?\n"
.string "Why couldn't I win?$"
Route104_Text_WinstonPostRematch:
.string "I'm fabulously wealthy, but I can't\n"
.string "seem to win at POKéMON…\p"
.string "It's so deep, the world of POKéMON…$"
Route104_Text_CindyIntro:
.string "We must have been fated to meet.\n"
.string "May I ask you for a battle?$"
Route104_Text_CindyDefeat:
.string "Oh, my!$"
Route104_Text_CindyPostBattle:
.string "“Hello” is the beginning of “good-bye.”\n"
.string "I hope we meet again.$"
Route104_Text_CindyRegister1:
.string "Hello, we meet again.\p"
.string "We seem to be drawn together. Let's\n"
.string "register each other in our POKéNAVS.$"
Route104_Text_CindyRegister2:
.string "We should commemorate how we seem\n"
.string "to be drawn to each other.\p"
.string "Let's register each other in our\n"
.string "POKéNAVS.$"
Route104_Text_CindyRematchIntro:
.string "Hello, we meet again.\n"
.string "May I ask you for a battle?$"
Route104_Text_CindyRematchDefeat:
.string "Oh, my…\n"
.string "I did the best that I could…$"
Route104_Text_CindyPostRematch:
.string "“Hello” is the beginning of “good-bye.”\n"
.string "I hope we meet again.$"
Route104_Text_DarianIntro:
.string "I fished up a tough-looking POKéMON!\p"
.string "It has this magical quality to it!\n"
.string "It surely looks tough, yes it does!$"
Route104_Text_DarianDefeat:
.string "What the…$"
Route104_Text_DarianPostBattle:
.string "Hey, MAGIKARP, you sure don't live up\n"
.string "to your name, do you?$"
Route105_Text_FosterIntro:
.string "There's supposed to be a mystical\n"
.string "rock around here.\l"
.string "Do you know anything about it?$"
Route105_Text_FosterDefeated:
.string "I was thinking too much about that\n"
.string "rock, while my POKéMON remained weak…$"
Route105_Text_FosterPostBattle:
.string "I can spend hours and hours staring\n"
.string "at a nice rock without growing bored.$"
Route105_Text_LuisIntro:
.string "Whew! I was worried that a kid was\n"
.string "drowning when I saw you.\p"
.string "You seem to be okay, so what do you\n"
.string "say to a battle?$"
Route105_Text_LuisDefeated:
.string "Glub… Glub…$"
Route105_Text_LuisPostBattle:
.string "If you are drowning, the signal is to\n"
.string "wave one arm toward the beach.$"
Route105_Text_DominikIntro:
.string "Swimming the deep blue sea…\n"
.string "It feels the greatest!$"
Route105_Text_DominikDefeated:
.string "I lost…\n"
.string "Now I'm feeling blue…$"
Route105_Text_DominikPostBattle:
.string "Why is the sea blue?\p"
.string "I learned about that at the MUSEUM in\n"
.string "SLATEPORT, but I forgot.$"
Route105_Text_BeverlyIntro:
.string "My body feels lighter in the water.\n"
.string "It's as if I've gotten slimmer!$"
Route105_Text_BeverlyDefeated:
.string "I'm floating…$"
Route105_Text_PostBattle:
.string "Your body weight is reduced to just\n"
.string "one tenth in the water.\p"
.string "That would make me…\n"
.string "Whoops! I'm not telling you my weight!$"
Route105_Text_ImaniIntro:
.string "The blue, blue sky…\n"
.string "The vast sea…\l"
.string "It's so peaceful…$"
Route105_Text_ImaniDefeated:
.string "I lost while I was lounging!$"
Route105_Text_ImaniPostBattle:
.string "I want to be told I'm relaxing to be\n"
.string "with. Giggle.$"
Route105_Text_AndresIntro:
.string "I'm convinced that the sea keeps\n"
.string "secrets from us.$"
Route105_Text_AndresDefeated:
.string "Yes…\n"
.string "I am no good at battling…$"
Route105_Text_AndresPostBattle:
.string "I'm sure there are many secrets to be\n"
.string "discovered in the world's seas.\p"
.string "I mean to find them all!$"
Route105_Text_AndresRegister:
.string "Huh? I'm so weak, but you're willing\n"
.string "to register me in your POKéNAV?$"
Route105_Text_AndresRematchIntro:
.string "I've told you that I'm weak…\n"
.string "Are you sure you want to do this?$"
Route105_Text_AndresRematchDefeated:
.string "Yes…\n"
.string "I didn't think I could win.$"
Route105_Text_AndresRematchPostBattle:
.string "I may be weak at battling, but my\n"
.string "drive to explore can't be bested.\p"
.string "I will travel the seas all around\n"
.string "the world!$"
Route105_Text_JosueIntro:
.string "I'm exhausted from swimming.\n"
.string "I'm just not used to it.\p"
.string "I need a battle for a change of pace!$"
Route105_Text_JosueDefeated:
.string "I lost because I battled at sea.$"
Route105_Text_JosuePostBattle:
.string "Yeah, for me, the sky is a much better\n"
.string "match than the sea.$"
Route106_Text_ElliotIntro:
.string "Which do you prefer, fishing in the\n"
.string "sea or a stream?$"
Route106_Text_ElliotDefeated:
.string "Like in deep-sea fishing, I lost\n"
.string "spectacularly!$"
Route106_Text_ElliotPostBattle:
.string "Fishing is the greatest whether it's\n"
.string "in the sea or a stream.\l"
.string "You agree with me, right?$"
Route106_Text_ElliotRegister:
.string "Fishing's great, but so is battling.\n"
.string "If you don't mind, can we meet again?$"
Route106_Text_ElliotRematchIntro:
.string "I caught a bunch of POKéMON fishing.\n"
.string "I'll show you an impressive battle!$"
Route106_Text_ElliotRematchDefeated:
.string "I lost again spectacularly!$"
Route106_Text_ElliotRematchPostBattle:
.string "Win or lose, POKéMON are the greatest!\n"
.string "You agree with me, right?$"
Route106_Text_NedIntro:
.string "What do people do if they need to go\n"
.string "to a washroom?\p"
.string "What if my ROD hooks a big one while\n"
.string "I'm in the washroom? I just can't go…$"
Route106_Text_NedDefeated:
.string "I lost because I'm trying to not go\n"
.string "to the washroom…$"
Route106_Text_NedPostBattle:
.string "Oh, no! I've got this feeling I'll hook\n"
.string "a big one!$"
Route106_Text_DouglasIntro:
.string "Hahahah! I'm a lousy runner, but in\n"
.string "the water you can't catch me!$"
Route106_Text_DouglasDefeated:
.string "I give up!$"
Route106_Text_DouglasPostBattle:
.string "I wouldn't lose in a swim race…$"
Route106_Text_KylaIntro:
.string "The sea is my backyard. I'm not going\n"
.string "to take it easy because you're a kid!$"
Route106_Text_KylaDefeated:
.string "Did you take it easy on me by any\n"
.string "chance?$"
Route106_Text_KylaPostBattle:
.string "Drifting along with the waves…\n"
.string "I love it! Why don't you give it a try?$"
Route107_Text_DarrinIntro:
.string "Yawn…\p"
.string "I must have drifted off to sleep while\n"
.string "I was drifting in the waves.$"
Route107_Text_DarrinDefeated:
.string "Ahaha, I lost…\n"
.string "I'll take a snooze, I think…$"
Route107_Text_DarrinPostBattle:
.string "Floating and being rocked by\n"
.string "the waves--it's like sleeping in\l"
.string "a plush, comfy bed.$"
Route107_Text_TonyIntro:
.string "The sea is like my backyard.\n"
.string "Let's battle!$"
Route107_Text_TonyDefeated:
.string "I lost on my home field…\n"
.string "I'm in shock!$"
Route107_Text_TonyPostBattle:
.string "I swim the seas with a heart full of\n"
.string "dreams…\p"
.string "It's a song!\n"
.string "Anyways, I'm swimming some more.$"
Route107_Text_TonyRegister:
.string "You've shocked me to the bone!\n"
.string "Well, so you won't forget me…$"
Route107_Text_TonyRematchIntro:
.string "Swimming in the big, wide sea,\n"
.string "my POKéMON has grown stronger!$"
Route107_Text_TonyRematchDefeated:
.string "What a shock!\p"
.string "My POKéMON has gotten stronger, but\n"
.string "I stayed weak as a TRAINER!$"
Route107_Text_TonyRematchPostBattle:
.string "What you learn in battle makes you\n"
.string "a stronger TRAINER.\l"
.string "The waves taught me that.$"
Route107_Text_DeniseIntro:
.string "Do you know a little town called\n"
.string "DEWFORD?$"
Route107_Text_DeniseDefeated:
.string "I hate this!$"
Route107_Text_DenisePostBattle:
.string "A weird saying is getting really\n"
.string "trendy at DEWFORD HALL.$"
Route107_Text_BethIntro:
.string "Did you want to battle me?\n"
.string "Sure, I'll go with you!$"
Route107_Text_BethDefeated:
.string "I wasn't good enough for you.$"
Route107_Text_BethPostBattle:
.string "I think you're going to keep getting\n"
.string "better. I'll go for it, too!$"
Route107_Text_LisaIntro:
.string "LISA: We challenge you as a sister\n"
.string "and brother!$"
Route107_Text_LisaDefeated:
.string "LISA: Awesome.\n"
.string "You're in a different class of tough.$"
Route107_Text_LisaPostBattle:
.string "LISA: Do you have any friends who\n"
.string "would go to the beach with you?$"
Route107_Text_LisaNotEnoughPokemon:
.string "LISA: If you want to battle with us,\n"
.string "bring more POKéMON.$"
Route107_Text_RayIntro:
.string "RAY: We always battle POKéMON,\n"
.string "me and my sister.\p"
.string "I always lose, but we can beat you\n"
.string "2-on-2!$"
Route107_Text_RayDefeated:
.string "RAY: Wowee, you're at a higher level\n"
.string "than us!$"
Route107_Text_RayPostBattle:
.string "RAY: My sister gave me my POKéMON.\n"
.string "I raised it, and now it's my important\l"
.string "partner!$"
Route107_Text_RayNotEnoughPokemon:
.string "RAY: If you want to battle us,\n"
.string "go bring some more POKéMON!$"
Route107_Text_CamronIntro:
.string "I'm in the middle of a triathlon,\n"
.string "but I'm nowhere near tired!$"
Route107_Text_CamronDefeated:
.string "That exhausted me…$"
Route107_Text_CamronPostBattle:
.string "I still have swimming and running left\n"
.string "to do after this.\p"
.string "Am I going to be okay?$"
Route108_Text_JeromeIntro:
.string "My dream is to swim the world's seven\n"
.string "seas!$"
Route108_Text_JeromeDefeated:
.string "I won't be able to swim the seven seas\n"
.string "like this…$"
Route108_Text_JeromePostBattle:
.string "Playing with marine POKéMON is one of\n"
.string "the pleasures of swimming!$"
Route108_Text_MatthewIntro:
.string "Ahoy, there! Are you going out to\n"
.string "the ABANDONED SHIP, too?$"
Route108_Text_MatthewDefeated:
.string "I'm sinking!\n"
.string "Glub… Glub…$"
Route108_Text_MatthewPostBattle:
.string "Some people even go inside that\n"
.string "ABANDONED SHIP.$"
Route108_Text_TaraIntro:
.string "My liar of a boyfriend told me that\n"
.string "I look great in a bikini…$"
Route108_Text_TaraDefeated:
.string "Oh, boo!$"
Route108_Text_TaraPostBattle:
.string "Even if it's a lie, I love being told\n"
.string "I look great…\l"
.string "We girls are so complex…$"
Route108_Text_MissyIntro:
.string "I love the sea!\n"
.string "I forget all my worries when I swim!$"
Route108_Text_MissyDefeated:
.string "When I lose a battle, I get all\n"
.string "stressed out!$"
Route108_Text_MissyPostBattle:
.string "Work off your stress by swimming!\n"
.string "It's so healthy!$"
Route108_Text_CoryIntro:
.string "I love WATER-type POKéMON.\n"
.string "I love other POKéMON, too!$"
Route108_Text_CoryDefeated:
.string "Waaah! I lost!\n"
.string "Waaah! Waaah!$"
Route108_Text_CoryPostBattle:
.string "Shouting is good for me!\n"
.string "It uplifts me!$"
Route108_Text_CoryRegister:
.string "I love tough TRAINERS, too!\n"
.string "Register me in your POKéNAV!$"
Route108_Text_CoryRematchIntro:
.string "Win or lose, I love battling at sea!$"
Route108_Text_CoryRematchDefeated:
.string "Waaah! I lost again!\n"
.string "Waaah! Waaah!$"
Route108_Text_CoryRematchPostBattle:
.string "If you're faced with a challenge,\n"
.string "try shouting at the sea!$"
Route108_Text_CarolinaIntro:
.string "I take huge pride in my POKéMON.\n"
.string "We'll show you one speedy battle!$"
Route108_Text_CarolinaDefeated:
.string "That wasn't cute at all.$"
Route108_Text_CarolinaPostBattle:
.string "Since I'm at sea like this, I wouldn't\n"
.string "mind putting on a pink, frilly swimsuit…$"
Route109_Text_DavidIntro:
.string "Hiyah! Look at my chiseled abs!\n"
.string "This is what you call “cut”!$"
Route109_Text_DavidDefeated:
.string "Aiyah!\n"
.string "Flubbed out!$"
Route109_Text_DavidPostBattle:
.string "Hiyah!\p"
.string "My sculpted abs have nothing to do\n"
.string "with POKéMON battles!$"
Route109_Text_AliceIntro:
.string "Are you properly protected against\n"
.string "the sun?$"
Route109_Text_AliceDefeated:
.string "Ouch, ouch, ouch!$"
Route109_Text_AlicePostBattle:
.string "Cheeks are the most prone to burning!$"
Route109_Text_HueyIntro:
.string "I've laid anchor in ports around\n"
.string "the world, but SLATEPORT's the best.$"
Route109_Text_HueyDefeated:
.string "You're the best!$"
Route109_Text_HueyPostBattle:
.string "In the best port was the best\n"
.string "TRAINER…$"
Route109_Text_EdmondIntro:
.string "Urrrrppp…\n"
.string "Battle? With me?$"
Route109_Text_EdmondDefeated:
.string "Urp… Ooooooohhhhhh…\n"
.string "Urrrrpppp…$"
Route109_Text_EdmondPostBattle:
.string "I'm usually stronger than this!\n"
.string "I'm just seasick as a dog!\p"
.string "I'm a SAILOR, but…$"
Route109_Text_RickyIntro:
.string "I'm thirsty… I could go for a SODA POP\n"
.string "at the SEASHORE HOUSE…$"
Route109_Text_RickyDefeated:
.string "Groan…$"
Route109_Text_RickyPostBattle:
.string "I'm getting famished… My inner tube\n"
.string "looks like a giant doughnut…$"
Route109_Text_RickyRegister:
.string "Will you have another match with me\n"
.string "when I'm not all thirsty?$"
Route109_Text_RickyRematchIntro:
.string "I'm hungry, but I've got enough pep in\n"
.string "me for a battle!$"
Route109_Text_RickyRematchDefeated:
.string "I lost…\n"
.string "It's because I'm hungry…$"
Route109_Text_RickyRematchPostBattle:
.string "When you eat on a beach, everything\n"
.string "seems to taste a little better.$"
Route109_Text_LolaIntro:
.string "Doesn't a beach umbrella look like\n"
.string "a giant flower?$"
Route109_Text_LolaDefeated:
.string "Mommy!$"
Route109_Text_LolaPostBattle:
.string "If you look at the beach from the sky,\n"
.string "it looks like a big flower garden!$"
Route109_Text_LolaRegister:
.string "Me?\n"
.string "I'm here every day!$"
Route109_Text_LolaRematchIntro:
.string "I'm not losing to you again!\n"
.string "That's why I have my inner tube!$"
Route109_Text_LolaRematchDefeated:
.string "Mommy!$"
Route109_Text_LolaRematchPostBattle:
.string "If I have an inner tube, me and my\n"
.string "POKéMON's cuteness goes way up!$"
Route109_Text_AustinaIntro:
.string "I can't swim without my inner tube,\n"
.string "but I won't lose at POKéMON!$"
Route109_Text_AustinaDefeated:
.string "Did I lose because I have an inner\n"
.string "tube?$"
Route109_Text_AustinaPostBattle:
.string "My inner tube is a fashion item.\n"
.string "I can't be seen without it.$"
Route109_Text_GwenIntro:
.string "Hi, big TRAINER.\n"
.string "Will you battle with me?$"
Route109_Text_GwenDefeated:
.string "Oh, you're strong.$"
Route109_Text_GwenPostBattle:
.string "How did you get to be so strong?$"
Route109_Text_CarterIntro:
.string "Wahahah! This dude's going to catch\n"
.string "himself a big one!$"
Route109_Text_CarterDefeated:
.string "This dude just lost one…$"
Route109_Text_CarterPostBattle:
.string "This dude thinks you're a big one.\n"
.string "No, you're a big-one-to-be!$"
Route109_Text_PaulIntro:
.string "PAUL: Well, this is a mood-breaker.\p"
.string "I wish you wouldn't disturb our\n"
.string "precious time together.$"
Route109_Text_PaulDefeated:
.string "PAUL: Well, I give up.$"
Route109_Text_PaulPostBattle:
.string "PAUL: Well, don't tell anyone that\n"
.string "we're here.\l"
.string "This is just our private world of two!$"
Route109_Text_PaulNotEnoughPokemon:
.string "PAUL: We're totally, deeply in love.\n"
.string "That's why we make our POKéMON battle\l"
.string "together.$"
Route109_Text_MelIntro:
.string "MEL: We're, like, totally in love.\n"
.string "Our romance is heating up all of HOENN!$"
Route109_Text_MelDefeated:
.string "MEL: We lost, and it's my fault!\n"
.string "PAUL will hate me!$"
Route109_Text_MelPostBattle:
.string "MEL: Um, PAUL, are you angry with me?\n"
.string "Please don't be angry.$"
Route109_Text_MelNotEnoughPokemon:
.string "MEL: We're, like, deeply and truly in love.\n"
.string "That's why we make our POKéMON\l"
.string "battle together.$"
Route109_Text_ChandlerIntro:
.string "Tadaah! See?\n"
.string "My inner tube's round!$"
Route109_Text_ChandlerDefeated:
.string "Oh, oh!\n"
.string "Too bad!$"
Route109_Text_ChandlerPostBattle:
.string "After I showed you my round inner\n"
.string "tube, too…$"
Route109_Text_HaileyIntro:
.string "I can't swim, so I'm pretending\n"
.string "to swim.$"
Route109_Text_HaileyDefeated:
.string "I thought so!\n"
.string "I didn't think we could win.$"
Route109_Text_HaileyPostBattle:
.string "When I learn how to swim, I think\n"
.string "my POKéMON will become tougher.$"
Route109_Text_ElijahIntro:
.string "For a guy as macho as me, this kind\n"
.string "of POKéMON is the perfect match!$"
Route109_Text_ElijahDefeated:
.string "I'm cool even in defeat, hey?$"