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
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
|
UnknownText_0x174000: ; 0x174000
db $0, "Hi, ", $14, "!", $4f
db "Our BICYCLE sales", $51
db "have gone through", $4f
db "the roof!", $51
db "We owe it all to", $4f
db "your advertising", $51
db "by riding around", $4f
db "on our BICYCLE.", $51
db "As our way of say-", $4f
db "ing thanks, please", $51
db "keep that BICYCLE.", $4f
db "Thanks again!", $57
; 0x1740c0
UnknownText_0x1740c0: ; 0x1740c0
db $0, "My @"
text_from_ram $d0ac
db $0, "'s", $4f
db "intelligence keeps", $51
db "rising. It might", $4f
db "be smarter than", $55
db "yours!", $57
; 0x174106
UnknownText_0x174106: ; 0x174106
db $0, "The other day, I", $4f
db "easily defeated a", $55
db "@"
text_from_ram $d0ac
db $0, ".", $51
db "I think swapping", $4f
db "tips with you is", $55
db "starting to help.", $57
; 0x174165
UnknownText_0x174165: ; 0x174165
db $0, "Oh, and listen.", $4f
db "I missed catching", $51
db "a @"
text_from_ram $d0ac
db $0, " by", $4f
db "just a tiny bit.", $51
db "If I'd been a bit", $4f
db "more informed, I'm", $51
db "sure I would've", $4f
db "caught it…", $57
; 0x1741e1
UnknownText_0x1741e1: ; 0x1741e1
db $0, "Do you want to", $4f
db "battle? I'll show", $51
db "you how to battle", $4f
db "logically.", $51
db "I'll be in", $4f
db "@"
text_from_ram $d0bf
db $0, ".", $51
db "Give me a shout if", $4f
db "you're nearby.", $57
; 0x174251
UnknownText_0x174251: ; 0x174251
db $0, "See you later!", $57
; 0x174261
UnknownText_0x174261: ; 0x174261
db $0, "Did you know?", $51
db "When it's raining,", $4f
db "THUNDER is sure to", $55
db "strike.", $57
; 0x17429d
UnknownText_0x17429d: ; 0x17429d
db $0, "Did you know…?", $51
db "If you use DEFENSE", $4f
db "CURL, ROLLOUT's", $51
db "power goes way up", $4f
db "past normal.", $57
; 0x1742ee
UnknownText_0x1742ee: ; 0x1742ee
db $0, "Did you know…?", $51
db "If the sunlight is", $4f
db "harsh, SOLARBEAM", $51
db "doesn't need to be", $4f
db "charged up.", $57
; 0x174340
UnknownText_0x174340: ; 0x174340
db $0, "Did you know…?", $51
db "If the opponent", $4f
db "uses MINIMIZE,", $51
db "your STOMP becomes", $4f
db "more powerful.", $57
; 0x174391
UnknownText_0x174391: ; 0x174391
db $0, "Did you know…?", $51
db "If your opponent", $4f
db "is FLYing, your", $51
db "GUST becomes much", $4f
db "more powerful.", $57
; 0x1743e3
UnknownText_0x1743e3: ; 0x1743e3
db $0, "Did you know…?", $51
db "If your opponent", $4f
db "is FLYing, your", $51
db "TWISTER becomes", $4f
db "more powerful.", $57
; 0x174433
UnknownText_0x174433: ; 0x174433
db $0, "Did you know…?", $51
db "If your opponent", $4f
db "uses DIG, your", $51
db "EARTHQUAKE becomes", $4f
db "more powerful.", $57
; 0x174485
UnknownText_0x174485: ; 0x174485
db $0, "Did you know…?", $51
db "If your opponent", $4f
db "uses DIG, your", $51
db "MAGNITUDE becomes", $4f
db "more powerful.", $57
; 0x1744d6
UnknownText_0x1744d6: ; 0x1744d6
db $0, "Did you know…?", $51
db "The rock, ground", $4f
db "and steel types", $51
db "can't be hurt by", $4f
db "SANDSTORM.", $57
; 0x174522
UnknownText_0x174522: ; 0x174522
db $0, "Did you know…?", $51
db "If the sunlight is", $4f
db "harsh, water-type", $51
db "moves become much", $4f
db "weaker.", $57
; 0x174571
UnknownText_0x174571: ; 0x174571
db $0, "Did you know…?", $51
db "When it's raining,", $4f
db "fire-type moves", $51
db "become much weaker", $4f
db "than usual.", $57
; 0x1745c2
UnknownText_0x1745c2: ; 0x1745c2
db $0, "My friend heard", $4f
db "some great tips.", $51
db "He's going to let", $4f
db "me in on some.", $51
db "When he tells me,", $4f
db "I'll call right", $55
db "away and tell you.", $57
; 0x174638
UnknownText_0x174638: ; 0x174638
db $0, "Hey, ", $14, "!", $51
db "Do you remember", $4f
db "your promise?", $51
db "We have to battle", $4f
db "soon!", $51
db "I'll be at", $4f
db "@"
text_from_ram $d0bf
db $0, ".", $57
; 0x174688
UnknownText_0x174688: ; 0x174688
db $0, "I fancied up my", $4f
db "@"
text_from_ram $d0ac
db $0, " and", $51
db "made it even cuter", $4f
db "than before!", $57
; 0x1746c3
UnknownText_0x1746c3: ; 0x1746c3
db $0, "I happened to come", $4f
db "across a wild", $55
db "SNUBBULL recently.", $51
db "My SNUBBULL, I", $4f
db "assure you, was", $51
db "far cuter than the", $4f
db "wild one.", $57
; 0x174734
UnknownText_0x174734: ; 0x174734
db $0, "I happened to see", $4f
db "a wild MARILL the", $51
db "other day.", $4f
db "Or so I thought.", $51
db "A closer look", $4f
db "showed it was", $51
db "@"
text_from_ram $d0ac
db $0, ". I was", $4f
db "quite miffed.", $57
; 0x1747ac
UnknownText_0x1747ac: ; 0x1747ac
db $0, "You can expect a", $4f
db "call from me.", $57
; 0x1747cc
UnknownText_0x1747cc: ; 0x1747cc
db $0, "My husband got", $4f
db "some NUGGETS.", $51
db "If you'd like, you", $4f
db "could have one as", $51
db "thanks for helping", $4f
db "me out.", $51
db "I'll be at", $4f
db "@"
text_from_ram $d0bf
db $0, ".", $51
db "Please come see me", $4f
db "when you can.", $57
; 0x17485b
UnknownText_0x17485b: ; 0x17485b
db $0, "Are your #MON", $4f
db "in prime form?", $51
db "Let's chat about", $4f
db "#MON again.", $57
; 0x174895
UnknownText_0x174895: ; 0x174895
db $0, "Pardon?", $4f
db "Oh, the NUGGET?", $51
db "There's no need to", $4f
db "hurry. Come see me", $51
db "in @"
text_from_ram $d0bf
db $0, $4f
db "when you can.", $57
; 0x1748ea
UnknownText_0x1748ea: ; 0x1748ea
db $0, "Hey, I challenge", $4f
db "you to a battle!", $51
db "It won't be like", $4f
db "last time!", $51
db "@"
text_from_ram $d0bf
db $0, "'s", $4f
db "where I'm waiting", $51
db "for you. Hustle", $4f
db "over here pronto!", $57
; 0x174962
UnknownText_0x174962: ; 0x174962
db $0, "See ya!", $57
; 0x17496b
UnknownText_0x17496b: ; 0x17496b
db $0, "We have to battle", $4f
db "again sometime.", $51
db "You can bet I'm", $4f
db "going to keep", $51
db "challenging you", $4f
db "till I win.", $57
; 0x1749c7
UnknownText_0x1749c7: ; 0x1749c7
db $0, "Hey, you'd better", $4f
db "not have forgotten", $55
db "about our battle!", $51
db "@"
text_from_ram $d0bf
db $0, "!", $51
db "Hustle over quick!", $4f
db "I'm waiting!", $57
; 0x174a24
UnknownText_0x174a24: ; 0x174a24
db $0, "My @"
text_from_ram $d0ac
db $0, $4f
db "might be greater", $55
db "than I imagined.", $51
db "I doubt I'll see a", $4f
db "@"
text_from_ram $d0ac
db $0, " that's", $55
db "better than mine.", $57
; 0x174a80
UnknownText_0x174a80: ; 0x174a80
db $0, "Oh, and I managed", $4f
db "to barely defeat", $51
db "@"
text_from_ram $d0ac
db $0, " the", $4f
db "other day.", $51
db "I've never seen a", $4f
db "@"
text_from_ram $d0ac
db $0, " get", $55
db "that strong…", $51
db "You shouldn't let", $4f
db "your guard down,", $51
db "even against a", $4f
db "#MON you're", $55
db "used to seeing.", $57
; 0x174b2d
UnknownText_0x174b2d: ; 0x174b2d
db $0, "And a while back,", $4f
db "I tried to catch a", $55
db "wild @"
text_from_ram $d0ac
db $0, ".", $51
db "But it managed to", $4f
db "elude me.", $51
db "One wrong decision", $4f
db "could mean total", $51
db "failure… You ought", $4f
db "to be careful too.", $57
; 0x174bc5
UnknownText_0x174bc5: ; 0x174bc5
db $0, "Let's battle!", $51
db "I'll be waiting on", $4f
db "@"
text_from_ram $d0bf
db $0, ".", $51
db "Give me a shout", $4f
db "when you're close.", $57
; 0x174c0e
UnknownText_0x174c0e: ; 0x174c0e
db $0, "OK, I'll talk to", $4f
db "you soon!", $57
; 0x174c29
UnknownText_0x174c29: ; 0x174c29
db $0, "I obsess over how", $4f
db "to beat you.", $57
; 0x174c49
UnknownText_0x174c49: ; 0x174c49
db $0, $14, ", why", $4f
db "aren't you here?", $51
db "I'll take you down", $4f
db "with @"
text_from_ram $d0bf
db $0, "!", $57
; 0x174c7f
UnknownText_0x174c7f: ; 0x174c7f
db $0, "Do you remember my", $4f
db "sweet @"
text_from_ram $d0ac
db $0, "?", $51
db "@"
text_from_ram $d0ac
db $0, " runs", $4f
db "very fast.", $51
db "It's exhilarating", $4f
db "to ride on its", $51
db "back when it", $4f
db "really gets going.", $57
; 0x174cf6
UnknownText_0x174cf6: ; 0x174cf6
db $0, "Oh, have you ever", $4f
db "seen a @"
text_from_ram $d0ac
db $0, $55
db "before?", $51
db "I just battled", $4f
db "one…", $51
db "It was much faster", $4f
db "than I expected.", $51
db "I was a little", $4f
db "shocked.", $51
db "I still won, of", $4f
db "course.", $57
; 0x174d86
UnknownText_0x174d86: ; 0x174d86
db $0, "Oh, I just saw a", $4f
db "wild @"
text_from_ram $d0ac
db $0, ".", $51
db "I was trying to", $4f
db "catch it when I", $51
db "noticed that I was", $4f
db "all out of #", $55
db "BALLS.", $51
db "If you don't check", $4f
db "your items, you", $51
db "may run out at the", $4f
db "worst time.", $51
db "I hope you learn", $4f
db "from my mistake.", $57
; 0x174e4e
UnknownText_0x174e4e: ; 0x174e4e
db $0, "Do you want to", $4f
db "battle? I'm going", $55
db "to win this time!", $51
db "I'll be waiting", $4f
db "for you around", $51
db "@"
text_from_ram $d0bf
db $0, ".", $4f
db "Look for me, OK?", $57
; 0x174eb7
UnknownText_0x174eb7: ; 0x174eb7
db $0, "OK, bye-bye!", $57
; 0x174ec5
UnknownText_0x174ec5: ; 0x174ec5
db $0, "Let's battle again", $4f
db "sometime!", $57
; 0x174ee2
UnknownText_0x174ee2: ; 0x174ee2
db $0, "Um… ", $14, "?", $4f
db "What's wrong?", $51
db "Did you forget our", $4f
db "deal?", $51
db "@"
text_from_ram $d0bf
db $0, ".", $51
db "That's where I'm", $4f
db "waiting.", $57
; 0x174f2f
UnknownText_0x174f2f: ; 0x174f2f
db $0, "Hey listen, my", $4f
db "@"
text_from_ram $d0ac
db $0, "'s stick", $51
db "has this really", $4f
db "delicious aroma.", $51
db "That aroma gets my", $4f
db "appetite going!", $57
; 0x174f90
UnknownText_0x174f90: ; 0x174f90
db $0, "A while ago, my", $4f
db "FARFETCH'D KO'd", $55
db "this @"
text_from_ram $d0ac
db $0, ".", $51
db "You should have", $4f
db "seen FARFETCH'D", $51
db "wield that stick.", $4f
db "Amazing stuff!", $57
; 0x174ffd
UnknownText_0x174ffd: ; 0x174ffd
db $0, "I ran into a wild", $4f
db "@"
text_from_ram $d0ac
db $0, "…", $51
db "I was trying to", $4f
db "catch it, but it", $51
db "took off faster", $4f
db "than I thought it", $51
db "would. It was a", $4f
db "bit disappointing.", $57
; 0x17507d
UnknownText_0x17507d: ; 0x17507d
db $0, "Want to battle", $4f
db "again?", $51
db "For some reason,", $4f
db "my FARFETCH'D is", $51
db "all worked up and", $4f
db "raring to go.", $51
db "@"
text_from_ram $d0bf
db $0, "'s", $4f
db "where I'm at.", $51
db "Keep an eye out", $4f
db "for me, OK?", $57
; 0x175106
UnknownText_0x175106: ; 0x175106
db $0, "Be seeing you!", $57
; 0x175116
UnknownText_0x175116: ; 0x175116
db $0, "My FARFETCH'D had", $4f
db "something pretty", $55
db "in its beak.", $51
db "Like I promised,", $4f
db "you can have it.", $51
db "Catch up to me on", $4f
db "@"
text_from_ram $d0bf
db $0, ",", $51
db "and I'll let you", $4f
db "have it.", $57
; 0x17519b
UnknownText_0x17519b: ; 0x17519b
db $0, "I haven't gotten", $4f
db "what I promised", $55
db "you yet.", $51
db "I'll call you as", $4f
db "soon as I get it,", $51
db "so could you wait", $4f
db "a little longer?", $57
; 0x17520a
UnknownText_0x17520a: ; 0x17520a
db $0, $14, ", could you", $4f
db "hurry over?", $51
db "FARFETCH'D is", $4f
db "agitated.", $51
db "If you don't come", $4f
db "soon, it might", $51
db "smack me with its", $4f
db "stick!", $51
db "@"
text_from_ram $d0bf
db $0, "!", $51
db "Please come as", $4f
db "soon as you can!", $57
; 0x17529c
UnknownText_0x17529c: ; 0x17529c
db $0, "What's wrong?", $51
db "Don't you want", $4f
db "this gift?", $51
db "Catch up to me on", $4f
db "@"
text_from_ram $d0bf
db $0, ",", $51
db "and I'll let you", $4f
db "have it.", $57
; 0x1752f5
UnknownText_0x1752f5: ; 0x1752f5
db $0, "Listen, dear…", $51
db "Do you recall my", $4f
db "@"
text_from_ram $d0ac
db $0, "?", $51
db "Yes, exactly. That", $4f
db "lovely @"
text_from_ram $d0ac
db $0, ".", $51
db "Wouldn't you agree", $4f
db "it's a perfect", $55
db "match for me?", $57
; 0x17536b
UnknownText_0x17536b: ; 0x17536b
db $0, "Have I ever faced", $4f
db "a wild @"
text_from_ram $d0ac
db $0, "?", $51
db "You need to ask?", $51
db "@"
text_from_ram $d0ac
db $0, " I've", $4f
db "beaten on numerous", $55
db "occasions!", $57
; 0x1753c5
UnknownText_0x1753c5: ; 0x1753c5
db $0, "Have I ever failed", $4f
db "to catch a wild", $55
db "#MON?", $51
db "You need to ask?", $51
db "I would never fail", $4f
db "to catch a wild", $51
db "@"
text_from_ram $d0ac
db $0, "…", $4f
db "Oh! Never mind!", $57
; 0x17543a
UnknownText_0x17543a: ; 0x17543a
db $0, "We are going to", $4f
db "battle!", $51
db "The place shall be", $4f
db "@"
text_from_ram $d0bf
db $0, "!", $51
db "Don't make me", $4f
db "wait! Got it?", $57
; 0x175488
UnknownText_0x175488: ; 0x175488
db $0, "Fine, you may go.", $57
; 0x17549b
UnknownText_0x17549b: ; 0x17549b
db $0, "Don't be too proud", $4f
db "just because you", $51
db "happened to beat", $4f
db "me… ", $51
db "It was a fluke!", $57
; 0x1754e5
UnknownText_0x1754e5: ; 0x1754e5
db $0, "What are you", $4f
db "doing?", $51
db "I told you that", $4f
db "the place was", $51
db "@"
text_from_ram $d0bf
db $0, "!", $4f
db "Don't try to run!", $57
; 0x175530
UnknownText_0x175530: ; 0x175530
db $0, "My @"
text_from_ram $d0ac
db $0, "'s", $4f
db "looking sharper", $55
db "than before!", $51
db "I doubt there's a", $4f
db "#MON as cool as", $51
db "this guy in your", $4f
db "party!", $57
; 0x175591
UnknownText_0x175591: ; 0x175591
db $0, "Oh yeah, I took", $4f
db "down a @"
text_from_ram $d0ac
db $0, $51
db "in the wild the", $4f
db "other day.", $51
db "It was a cakewalk.", $4f
db "Well, I guess it", $51
db "can't be helped,", $4f
db "us being so tough.", $57
; 0x175611
UnknownText_0x175611: ; 0x175611
db $0, "Oh yeah, I saw a", $4f
db "wild @"
text_from_ram $d0ac
db $0, "!", $51
db "I thought about", $4f
db "going for it, but", $51
db "I decided to work", $4f
db "with my one-and-", $51
db "only right to the", $4f
db "extreme end.", $57
; 0x175693
UnknownText_0x175693: ; 0x175693
db $0, "Let's get together", $4f
db "and battle!", $51
db "I promise things", $4f
db "will be different!", $51
db "@"
text_from_ram $d0bf
db $0, "'s", $4f
db "where I'll be.", $51
db "Give me a shout", $4f
db "when you come.", $57
; 0x17570a
UnknownText_0x17570a: ; 0x17570a
db $0, "All right. Later!", $57
; 0x17571d
UnknownText_0x17571d: ; 0x17571d
db $0, "I'm checking out", $4f
db "@"
text_from_ram $d0ac
db $0, "'s moves", $51
db "and devising some", $4f
db "strategies.", $51
db "When I come up", $4f
db "with a good one,", $55
db "let's battle!", $57
; 0x175786
UnknownText_0x175786: ; 0x175786
db $0, "What's keeping", $4f
db "you, ", $52, "!", $51
db "Let's get down and", $4f
db "battle already!", $51
db "I'm waiting on", $4f
db "@"
text_from_ram $d0bf
db $0, "!", $57
; 0x1757d4
UnknownText_0x1757d4: ; 0x1757d4
db $0, "Are your #MON", $4f
db "growing?", $51
db "My #MON are", $4f
db "growing a bit too", $51
db "quickly for me.", $4f
db "It's overwhelming!", $51
db "@"
text_from_ram $d0ac
db $0, "'s grow-", $4f
db "ing especially", $51
db "quickly. I think", $4f
db "it'll get tough.", $57
; 0x175869
UnknownText_0x175869: ; 0x175869
db $0, "Oh yeah, we KO'd a", $4f
db "wild @"
text_from_ram $d0ac
db $0, $51
db "with one hit a", $4f
db "while back.", $51
db "It went down so", $4f
db "easily, I felt a", $51
db "little sorry for", $4f
db "the poor thing.", $57
; 0x1758e4
UnknownText_0x1758e4: ; 0x1758e4
db $0, "Oh yeah, a wild", $4f
db "@"
text_from_ram $d0ac
db $0, " got", $51
db "away from me at", $4f
db "the last second.", $51
db "I know it's a", $4f
db "common #MON…", $51
db "But it does annoy", $4f
db "me that it got", $51
db "away when I almost", $4f
db "had it.", $57
; 0x175976
UnknownText_0x175976: ; 0x175976
db $0, "Do you feel like a", $4f
db "#MON battle?", $51
db "It won't be like", $4f
db "last time!", $51
db "@"
text_from_ram $d0bf
db $0, "'s", $4f
db "where I'll be.", $51
db "Let me know when", $4f
db "you get there.", $57
; 0x1759e7
UnknownText_0x1759e7: ; 0x1759e7
db $0, "See you later!", $57
; 0x1759f7
UnknownText_0x1759f7: ; 0x1759f7
db $0, "The Bug-Catching", $4f
db "Contest is at the", $51
db "NATIONAL PARK", $4f
db "today.", $51
db "Are you going,", $4f
db $14, "?", $51
db "I'm trying to make", $4f
db "up my mind.", $57
; 0x175a60
UnknownText_0x175a60: ; 0x175a60
db $0, "I found all kinds", $4f
db "of BERRIES. If you", $51
db "want, I'll share", $4f
db "some with you.", $51
db "I'll be waiting on", $4f
db "@"
text_from_ram $d0bf
db $0, ".", $57
; 0x175abe
UnknownText_0x175abe: ; 0x175abe
db $0, "Huh? BERRIES?", $51
db "Sorry, I haven't", $4f
db "found any yet.", $51
db "I'll call you if I", $4f
db "find any. Will you", $55
db "please wait?", $57
; 0x175b1e
UnknownText_0x175b1e: ; 0x175b1e
db $0, "Let's battle", $4f
db "already!", $51
db "@"
text_from_ram $d0bf
db $0, " is", $4f
db "where I am.", $51
db "Please get here as", $4f
db "soon as you can!", $57
; 0x175b6d
UnknownText_0x175b6d: ; 0x175b6d
db $0, "How come you're", $4f
db "not here yet?", $51
db "@"
text_from_ram $d0bf
db $0, " is", $4f
db "where I am.", $51
db "Please get here as", $4f
db "soon as you can!", $57
; 0x175bc4
UnknownText_0x175bc4: ; 0x175bc4
db $0, "I've been spending", $4f
db "more time with my", $51
db "@"
text_from_ram $d0ac
db $0, " than I", $4f
db "have with my kids.", $51
db "That's a bit sad,", $4f
db "actually.", $57
; 0x175c24
UnknownText_0x175c24: ; 0x175c24
db $0, "I just beat a wild", $4f
db "@"
text_from_ram $d0ac
db $0, ".", $51
db "I told my kid, but", $4f
db "he scoffed that he", $51
db "could do the same", $4f
db "thing easily.", $51
db "Boy, has he gotten", $4f
db "cocky…", $57
; 0x175c9f
UnknownText_0x175c9f: ; 0x175c9f
db $0, "Yesterday a wild", $4f
db "@"
text_from_ram $d0ac
db $0, " slipped", $51
db "away from me, in", $4f
db "front of my kid.", $51
db "I was feeling down", $4f
db "about it until he", $51
db "shared his #", $4f
db "BALLS with me.", $51
db "Hahah, that sure", $4f
db "made my day!", $57
; 0x175d40
UnknownText_0x175d40: ; 0x175d40
db $0, "What do you say to", $4f
db "a battle with me?", $51
db "Good, you're going", $4f
db "to do it!", $51
db "For a kid, you're", $4f
db "quite agreeable.", $51
db "@"
text_from_ram $d0bf
db $0, " is", $4f
db "the spot!", $57
; 0x175db7
UnknownText_0x175db7: ; 0x175db7
db $0, "You call your mom", $4f
db "sometimes too!", $57
; 0x175dd9
UnknownText_0x175dd9: ; 0x175dd9
db $0, "Listen, I… Yowch!", $51
db "Uh, sorry! See,", $4f
db "@"
text_from_ram $d0ac
db $0, " are", $51
db "biting like there", $4f
db "is no tomorrow", $51
db "over here on", $4f
db "@"
text_from_ram $d0bf
db $0, "!", $51
db "Aiyee! Ouch!", $4f
db "One jabbed me!", $51
db "Heh, they're some", $4f
db "kind of feisty!", $51
db $14, ", you have", $4f
db "to see this rare", $51
db "sight! Get ready", $4f
db "to fish!", $57
; 0x175eaf
UnknownText_0x175eaf: ; 0x175eaf
db $0, "Yeah, I know.", $51
db "You're looking for", $4f
db "rare #MON.", $51
db "Recently, all I've", $4f
db "been catching are", $55
db "MAGIKARP, though…", $57
; 0x175f11
UnknownText_0x175f11: ; 0x175f11
db $0, "So where are you?", $4f
db "I'm waiting for", $51
db "you to show up on", $4f
db "@"
text_from_ram $d0bf
db $0, ".", $51
db "You shouldn't make", $4f
db "your elders wait!", $57
; 0x175f70
UnknownText_0x175f70: ; 0x175f70
db $0, "Hey, what's the", $4f
db "matter with you?", $51
db "Aren't you coming", $4f
db "over to fish for", $55
db "QWILFISH?", $51
db "I'm on ROUTE 32,", $4f
db "so hurry up!", $57
; 0x175fda
UnknownText_0x175fda: ; 0x175fda
db $0, "Oh, you have to", $4f
db "hear this.", $51
db "My @"
text_from_ram $d0ac
db $0, " is", $4f
db "so adorable!", $51
db "It always wants to", $4f
db "nuzzle me!", $57
; 0x17602d
UnknownText_0x17602d: ; 0x17602d
db $0, "And, and! Um…", $51
db "We beat a wild", $4f
db "@"
text_from_ram $d0ac
db $0, " with", $51
db "just one hit a", $4f
db "little while ago.", $51
db "We felt sorry for", $4f
db "it, though.", $57
; 0x176095
UnknownText_0x176095: ; 0x176095
db $0, "And, and! Uh…", $51
db "We just saw a", $4f
db "really gorgeous", $55
db "@"
text_from_ram $d0ac
db $0, ".", $51
db "But I was on the", $4f
db "phone, so it got", $51
db "away. It made us", $4f
db "really angry!", $57
; 0x17610a
UnknownText_0x17610a: ; 0x17610a
db $0, "Hi! Do you have", $4f
db "some free time?", $51
db "I've got all sorts", $4f
db "of time. If you're", $51
db "free, would you", $4f
db "like to battle?", $51
db "I'll be waiting on", $4f
db "@"
text_from_ram $d0bf
db $0, ".", $51
db "Let me know when", $4f
db "you get here!", $57
; 0x1761a7
UnknownText_0x1761a7: ; 0x1761a7
db $0, "Hi, TANIA. How are", $4f
db "you? This is LIZ.", $51
db "I'm fine, but I'm", $4f
db "bored silly!", $51
db "Huh… Wrong number?", $4f
db "Oops! Sorry!", $57
; 0x17620a
UnknownText_0x17620a: ; 0x17620a
db $0, "OK, I'll call you", $4f
db "later!", $57
; 0x176223
UnknownText_0x176223: ; 0x176223
db $0, "Listen, listen!", $51
db "I was listening to", $4f
db "the radio in the", $51
db "RUINS OF ALPH when", $4f
db "an odd broadcast", $51
db "suddenly cut it on", $4f
db "the regular show.", $51
db "I wonder what it", $4f
db "was. So strange!", $57
; 0x1762c3
UnknownText_0x1762c3: ; 0x1762c3
db $0, "Listen, listen!", $51
db "Don't you think", $4f
db "FALKNER of VIOLET", $51
db "GYM is cool and", $4f
db "handsome?", $51
db "But they say his", $4f
db "dad, who's out", $51
db "training on the", $4f
db "road, is even more", $51
db "cool and handsome", $4f
db "than FALKNER.", $51
db "I wish I could", $4f
db "meet him!", $57
; 0x17638a
UnknownText_0x17638a: ; 0x17638a
db $0, "Listen, listen!", $51
db "Do you know EARL,", $4f
db "the teacher who", $51
db "runs the #MON", $4f
db "ACADEMY in VIOLET?", $51
db "I saw him doing", $4f
db "pirouettes while", $51
db "he was running. It", $4f
db "was wildly funny!", $57
; 0x176424
UnknownText_0x176424: ; 0x176424
db $0, "Listen, listen!", $51
db "I collect #MON", $4f
db "plush dolls.", $51
db "But I can't seem", $4f
db "to get a hold of a", $51
db "SURF PIKACHU DOLL.", $4f
db "None of my friends", $51
db "have it. It must", $4f
db "be totally rare!", $51
db "You could really", $4f
db "brag about it if", $55
db "you had one.", $57
; 0x1764eb
UnknownText_0x1764eb: ; 0x1764eb
db $0, "Listen, listen!", $51
db "Do you know about", $4f
db "MOOMOO MILK?", $51
db "You can buy it at", $4f
db "MOOMOO FARM.", $51
db "It's supposed to", $4f
db "be good for health", $51
db "and beauty.", $4f
db "I really want to", $51
db "try some. I bet", $4f
db "it's delicious!", $57
; 0x176599
UnknownText_0x176599: ; 0x176599
db $0, "Listen, listen!", $51
db "There's a #MON", $4f
db "SALON in GOLDENROD", $51
db "that's run by two", $4f
db "brothers.", $51
db "The older brother", $4f
db "is good, but the", $51
db "younger one really", $4f
db "isn't.", $51
db "But sometimes the", $4f
db "younger one does a", $51
db "better job than", $4f
db "his brother.", $51
db "Every time I go, I", $4f
db "have a hard time", $51
db "trying to decide", $4f
db "whom I should use…", $57
; 0x1766ac
UnknownText_0x1766ac: ; 0x1766ac
db $0, "Listen, listen!", $51
db "GOLDENROD GYM's", $4f
db "WHITNEY began", $51
db "battling only a", $4f
db "little while ago!", $51
db "But the #MON", $4f
db "LEAGUE chose her", $55
db "as a GYM LEADER!", $51
db "I bet she must be", $4f
db "totally talented.", $57
; 0x17674f
UnknownText_0x17674f: ; 0x17674f
db $0, "Listen, listen!", $51
db "Have you ever", $4f
db "taken part in a", $51
db "Bug-Catching", $4f
db "Contest at the", $55
db "NATIONAL PARK?", $51
db "I did once, but", $4f
db "all I could catch", $55
db "was a CATERPIE.", $51
db "But guess what!", $51
db "I won with that", $4f
db "CATERPIE. Isn't", $55
db "that great?", $57
; 0x176816
UnknownText_0x176816: ; 0x176816
db $0, "Listen, listen!", $51
db "I saw a beautiful", $4f
db "@"
text_from_ram $d0ac
db $0, "!", $51
db "I wish I could", $4f
db "become a beautiful", $55
db "@"
text_from_ram $d0ac
db $0, " too.", $57
; 0x17686d
UnknownText_0x17686d: ; 0x17686d
db $0, "Listen, listen!", $51
db "Uh… Um… Whoops!", $51
db "I forgot what I", $4f
db "was going to say!", $57
; 0x1768b0
UnknownText_0x1768b0: ; 0x1768b0
db $0, "Listen, listen!", $51
db "My @"
text_from_ram $d0ac
db $0, "…", $4f
db "it… so pretty…", $51
db "and… giggle… so", $4f
db "awesome… yes… but…", $51
db "very much… eeek!", $4f
db "And… lovely…", $51
db "Just ravishing…", $4f
db "Oh, too much!", $51
db "…Hug it… sleeping…", $4f
db "That's right…", $51
db "pretty… sigh… So", $4f
db "nice… Cute…", $51
db "…Oops! Look at the", $4f
db "time! I chatted", $55
db "too long!", $51
db "I'm sorry I took", $4f
db "so much of your", $51
db "time!", $4f
db "I love chatting!", $57
; 0x1769da
UnknownText_0x1769da: ; 0x1769da
db $0, "I've got too much", $4f
db "time on my hands!", $51
db "Let's battle right", $4f
db "away!", $51
db "I'll be waiting on", $4f
db "@"
text_from_ram $d0bf
db $0, "!", $57
; 0x176a2f
UnknownText_0x176a2f: ; 0x176a2f
db $0, "The other day, I", $4f
db "was watching my", $51
db "@"
text_from_ram $d0ac
db $0, " eat", $4f
db "some BERRIES.", $51
db "It looked like it", $4f
db "was enjoying its", $51
db "meal, so I decided", $4f
db "to try some.", $51
db "I'm not sure if", $4f
db "people should eat", $51
db "that stuff, but it", $4f
db "was delicious!", $57
; 0x176aef
UnknownText_0x176aef: ; 0x176aef
db $0, "Lately, I've been", $4f
db "running across", $51
db "wild @"
text_from_ram $d0ac
db $0, $4f
db "quite often.", $51
db "They're easily", $4f
db "taken care of.", $57
; 0x176b45
UnknownText_0x176b45: ; 0x176b45
db $0, "Oh yeah, I was", $4f
db "battling this", $51
db "@"
text_from_ram $d0ac
db $0, " the", $4f
db "other day…", $51
db "It took off when I", $4f
db "got distracted by", $55
db "a passing BEAUTY.", $51
db "Learn from my", $4f
db "mistake--always", $51
db "stay focused on", $4f
db "the job at hand!", $57
; 0x176bee
UnknownText_0x176bee: ; 0x176bee
db $0, "Come on--let's", $4f
db "battle right now!", $51
db "@"
text_from_ram $d0bf
db $0, " is", $4f
db "where I am.", $51
db "Come on down if", $4f
db "you feel up to it!", $57
; 0x176c47
UnknownText_0x176c47: ; 0x176c47
db $0, "All right then!", $4f
db "Be good!", $57
; 0x176c61
UnknownText_0x176c61: ; 0x176c61
db $0, $52, "! It's", $4f
db "mind-blowing!", $51
db "I took a hike in", $4f
db "@"
text_from_ram $d0bf
db $0, $55
db "yesterday, see?", $51
db "Well, there were", $4f
db "tons of @"
text_from_ram $d0ac
db $0, $51
db "around! You have", $4f
db "to see it!", $51
db "I get this feeling", $4f
db "that @"
text_from_ram $d0ac
db $0, $51
db "may be timid.", $4f
db "I didn't see any", $51
db "where there are", $4f
db "strong #MON.", $57
; 0x176d32
UnknownText_0x176d32: ; 0x176d32
db $0, "Rare #MON?", $51
db "Hey, sorry! I was", $4f
db "too focused on my", $51
db "hike, so I wasn't", $4f
db "paying attention.", $57
; 0x176d85
UnknownText_0x176d85: ; 0x176d85
db $0, "Hello! You haven't", $4f
db "forgotten about", $51
db "our battle, have", $4f
db "you?", $51
db "@"
text_from_ram $d0bf
db $0, "!", $4f
db "I'm waiting!", $57
; 0x176dd1
UnknownText_0x176dd1: ; 0x176dd1
db $0, "Hello? What? Where", $4f
db "is DUNSPARCE?", $51
db "DARK CAVE! Hurry!", $51
db "I know I've said", $4f
db "it before, but", $51
db "DUNSPARCE don't", $4f
db "appear when there", $51
db "are strong #MON", $4f
db "around.", $57
; 0x176e5d
UnknownText_0x176e5d: ; 0x176e5d
db $0, "My @"
text_from_ram $d0ac
db $0, " is", $4f
db "looking more and", $51
db "more like me. It's", $4f
db "getting cuter!", $57
; 0x176e9c
UnknownText_0x176e9c: ; 0x176e9c
db $0, "And, you know?", $51
db "Now we can KO", $4f
db "@"
text_from_ram $d0ac
db $0, " easily.", $51
db "I should challenge", $4f
db "the GOLDENROD GYM.", $57
; 0x176eee
UnknownText_0x176eee: ; 0x176eee
db $0, "And, you know?", $4f
db "We just failed to", $51
db "beat @"
text_from_ram $d0ac
db $0, " by", $4f
db "a tiny margin.", $51
db "I'm guessing my", $4f
db "#MON's levels", $51
db "aren't high enough", $4f
db "yet…", $57
; 0x176f60
UnknownText_0x176f60: ; 0x176f60
db $0, "You must be a lot", $4f
db "better now, huh?", $51
db "How about showing", $4f
db "me your technique", $51
db "in a real battle", $4f
db "with me?", $51
db "I'll be waiting on", $4f
db "@"
text_from_ram $d0bf
db $0, ".", $57
; 0x176fdb
UnknownText_0x176fdb: ; 0x176fdb
db $0, "See you later!", $57
; 0x176feb
UnknownText_0x176feb: ; 0x176feb
db $0, "This is it--the", $4f
db "one we've all been", $55
db "waiting for!", $51
db "GOLDENROD DEPT.", $4f
db "STORE's bargain", $55
db "sale is on now!", $51
db "Want it cheap?", $4f
db "Want it lots?", $51
db "Don't miss this", $4f
db "GOLDENROD chance!", $51
db "Huh? I sound like", $4f
db "a huckster?", $51
db "Well, yeah. I was", $4f
db "mimicking them…", $51
db "Anyway, you've got", $4f
db "to get there as", $55
db "soon as you can!", $57
; 0x1770fb
UnknownText_0x1770fb: ; 0x1770fb
db $0, "I'm saving up for", $4f
db "the next bargain", $51
db "sale. When's the", $4f
db "next one?", $57
; 0x177138
UnknownText_0x177138: ; 0x177138
db $0, "Where are you?", $51
db "Let's have our", $4f
db "battle soon!", $51
db "I'll be waiting on", $4f
db "@"
text_from_ram $d0bf
db $0, ".", $57
; 0x17717c
UnknownText_0x17717c: ; 0x17717c
db $0, "Haven't you gone", $4f
db "to GOLDENROD DEPT.", $51
db "STORE? I've scoped", $4f
db "it out already!", $51
db "They had some real", $4f
db "bargains.", $51
db "You should get", $4f
db "there quickly.", $57
; 0x1771fd
UnknownText_0x1771fd: ; 0x1771fd
db $0, "My @"
text_from_ram $d0ac
db $0, " and", $4f
db "I are getting more", $51
db "in sync with each", $4f
db "other.", $57
; 0x177237
UnknownText_0x177237: ; 0x177237
db $0, "We battled a wild", $4f
db "@"
text_from_ram $d0ac
db $0, " and", $51
db "managed to drop it", $4f
db "in a close match.", $51
db "We're getting into", $4f
db "the groove!", $57
; 0x177297
UnknownText_0x177297: ; 0x177297
db $0, "But, you know?", $51
db "I still haven't", $4f
db "caught @"
text_from_ram $d0ac
db $0, ".", $51
db "It's getting past", $4f
db "frustrating…", $57
; 0x1772e2
UnknownText_0x1772e2: ; 0x1772e2
db $0, "Would you be my", $4f
db "practice partner", $55
db "again sometime?", $51
db "I'll be waiting on", $4f
db "@"
text_from_ram $d0bf
db $0, ".", $51
db "…Could you take it", $4f
db "a little easier on", $55
db "me next time?", $57
; 0x177361
UnknownText_0x177361: ; 0x177361
db $0, "Bye! Let's chat", $4f
db "again!", $57
; 0x177378
UnknownText_0x177378: ; 0x177378
db $0, "Have you heard", $4f
db "about TEAM ROCKET?", $51
db "They've taken over", $4f
db "the RADIO TOWER in", $55
db "GOLDENROD.", $51
db "Are the people", $4f
db "inside safe?", $57
; 0x1773e7
UnknownText_0x1773e7: ; 0x1773e7
db $0, "I picked up some-", $4f
db "thing nice today.", $51
db "I want you to have", $4f
db "it, so I called!", $51
db "You will come for", $4f
db "it, won't you?", $51
db "@"
text_from_ram $d0bf
db $0, " is", $4f
db "where I am.", $57
; 0x177465
UnknownText_0x177465: ; 0x177465
db $0, "Sorry, I haven't", $4f
db "found anything", $51
db "useful yet…", $4f
db "I promise, if I", $51
db "find anything, you", $4f
db "can have it!", $57
; 0x1774c1
UnknownText_0x1774c1: ; 0x1774c1
db $0, "Oh, ", $14, "!", $4f
db "How soon can I", $51
db "expect to see you", $4f
db "for our battle?", $51
db "Don't forget,", $4f
db "@"
text_from_ram $d0bf
db $0, "!", $57
; 0x17750e
UnknownText_0x17750e: ; 0x17750e
db $0, "I'm getting really", $4f
db "impatient, waiting", $51
db "to give you my", $4f
db "present!", $51
db "Hurry over to", $4f
db "@"
text_from_ram $d0bf
db $0, "!", $57
; 0x177561
|