summaryrefslogtreecommitdiff
path: root/text/phone/extra.asm
blob: 4ec789f49b8853e414e0b498b4b591d15a06a219 (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
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
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880

UnknownText_0x64000: ; 0x64000
	text "I hate having to"
	line "hang up on you!"

	para "Call you later!"
	done
; 0x64032

UnknownText_0x64032: ; 0x64032
	text $14, ", have you"
	line "heard?"

	para "GOLDENROD's RADIO"
	line "TOWER has been"

	para "taken over by TEAM"
	line "ROCKET!"

	para "…Um… What's TEAM"
	line "ROCKET?"
	done
; 0x64099

UnknownText_0x64099: ; 0x64099
	text $14, ", I heard!"

	para "You defeated that"
	line "WHITNEY?"

	para "It makes me proud"
	line "to be your friend!"
	done
; 0x640e6

UnknownText_0x640e6: ; 0x640e6
	text "Hey, I heard about"
	line "you!"

	para "You saved that"
	line "#MON at the"

	para "LIGHTHOUSE, didn't"
	line "you?"

	para $14, ", I wish"
	line "you'd come see me"

	para "when I'm sick in"
	line "bed with a cold!"
	done
; 0x6416d

UnknownText_0x6416d: ; 0x6416d
	text "I heard, I heard,"
	line "I heard!"

	para "You smashed TEAM"
	line "ROCKET's hideout!"

	para "You're like a"
	line "movie hero, even!"

	para "But um… What was"
	line "TEAM ROCKET?"
	done
; 0x641e8

UnknownText_0x641e8: ; 0x641e8
	text "I heard, I heard,"
	line "I heard!"

	para "About your heroic"
	line "liberation of the"

	para "RADIO TOWER! You"
	line "rock so hard!"
	done
; 0x64247

UnknownText_0x64247: ; 0x64247
	text "I saw, I saw!"

	para "I saw you go into"
	line "the DRAGON'S DEN!"

	para "I'm certain you"
	line "passed! Aww, no"

	para "need to be modest!"
	line "You can't fail!"
	done
; 0x642bb

UnknownText_0x642bb: ; 0x642bb
	text "Yesterday, I went"
	line "out to NEW BARK"

	para "TOWN.  There was a"
	line "lady who looked a"

	para "lot like you,"
	line $14, "."

	para "What? That lady"
	line "was your mom?"

	para "Aww, I should've"
	line "introduced myself!"

	para "I bet your mom's"
	line "really proud of"

	para "all that you've"
	line "accomplished."

	para "Heh, put it this"
	line "way. I'd be proud"

	para "if I were your"
	line "mom, believe me!"
	done
; 0x643d4

UnknownText_0x643d4: ; 0x643d4
	text "I saw, I saw,"
	line "I saw!"

	para "You striding onto"
	line "a ship, ", $14, "!"

	para "I can't get over"
	line "how good you look"

	para "with the sea as"
	line "your backdrop!"
	done
; 0x64448

UnknownText_0x64448: ; 0x64448
	text "I heard, I heard!"

	para "You got a MAGNET"
	line "TRAIN PASS!"

	para "When I saw you"
	line "departing on the"

	para "ship, I felt sad"
	line "that I wouldn't be"

	para "able to see you"
	line "for a while."

	para "But since you have"
	line "that PASS, you can"

	para "zip back anytime!"
	line "That's reassuring!"

	para "What? You can FLY"
	line "back anytime?"

	para "What do you mean"
	line "by FLY?"
	done
; 0x6455b

UnknownText_0x6455b: ; 0x6455b
	text "I saw, I saw!"

	para "You waking up"
	line "SNORLAX!"

	para "I was watching you"
	line "from afar, so I"

	para "couldn't tell what"
	line "you did exactly."

	para "Did you play a"
	line "flute to wake it?"

	para "Wow! That's like"
	line "magic!"
	done
; 0x645ff

UnknownText_0x645ff: ; 0x645ff
	text "I hear rumors"
	line "about you all over"
	cont "the place."

	para "It just makes me"
	line "sigh, ", $14, "."

	para "How did you get so"
	line "strong?"

	para "Go for the world"
	line "championship now!"

	para "I'll always be"
	line "cheering you on!"
	done
; 0x646a3

UnknownText_0x646a3: ; 0x646a3
	text "Hehe, I called"
	line "right away!"

	para "I think we can be"
	line "good friends!"
	done
; 0x646df

UnknownText_0x646df: ; 0x646df
	text "I saw, I heard!"

	para "You beat MORTY of"
	line "ECRUTEAK GYM!"

	para "Th-that's just"
	line "incredible!"

	para "I actually went to"
	line "the GYM's entrance"

	para "to cheer you on."
	line "Did you know that?"

	para "But everyone was"
	line "floating, and"

	para "there were ghosts"
	line "all over! So I"

	para "chickened out and"
	line "took off for home…"
	done
; 0x647d8

UnknownText_0x647d8: ; 0x647d8
	text $14, ", I heard!"

	para "You're kicking up"
	line "a mighty ruckus"

	para "over in KANTO!"
	line "What a glorious"

	para "rampage it must"
	line "be!"

	para "You so rock!"
	done
; 0x64846

UnknownText_0x64846: ; 0x64846
	text "Hearing about your"
	line "escapades rocks my"

	para "soul!"
	line "It sure does!"
	done
; 0x64881

UnknownText_0x64881: ; 0x64881
	text "I'm so glad you"
	line "called!"

	para "I was just about"
	line "to call you too!"

	para "I guess we must be"
	line "a good match!"
	done
; 0x648dc

UnknownText_0x648dc: ; 0x648dc
	text "How are you?"

	para "What are you"
	line "doing?"

	para "Where are you?"

	para "How many BADGES do"
	line "you have now?"

	para "How much money"
	line "have you saved?"

	para "How's your mom?"

	para "Have you got lots"
	line "of #MON?"

	para "Is it going to be"
	line "sunny tomorrow?"

	para "Arrgh, there's so"
	line "much I want to"

	para "chat about! This"
	line "is going nowhere!"
	done
; 0x649dc

UnknownText_0x649dc: ; 0x649dc
	text "I'm always with my"
	line "@"
	text_from_ram StringBuffer4
	text "!"

	para "It's so cute!"
	line "I just love it!"
	done
; 0x64a13

UnknownText_0x64a13: ; 0x64a13
	text "Changing the topic"
	line "here, I saw this"

	para "@"
	text_from_ram StringBuffer4
	text " for the"
	line "first time."

	para "It was easy to"
	line "beat, actually."
	done
; 0x64a71

UnknownText_0x64a71: ; 0x64a71
	text "I was wondering,"
	line "do you happen to"
	cont "have @"
	text_from_ram StringBuffer4
	text "?"

	para "I can't seem to"
	line "catch one. What is"

	para "its weakness, I"
	line "wonder."
	done
; 0x64ada

UnknownText_0x64ada: ; 0x64ada
	text "Hey, let's battle"
	line "our #MON!"

	para "I won't lose to"
	line "you battling or in"

	para "the Bug-Catching"
	line "Contest!"

	para "I'll be here on"
	line "@"
	text_from_ram StringBuffer5
	text "!"
	done
; 0x64b48

UnknownText_0x64b48: ; 0x64b48
	text "Let's talk again,"
	line "huh?"
	done
; 0x64b5f

UnknownText_0x64b5f: ; 0x64b5f
	text "Boy, am I glad I"
	line "caught you!"

	para "A whole bunch of"
	line "@"
	text_from_ram StringBuffer4
	text " have"

	para "appeared around"
	line "@"
	text_from_ram StringBuffer5
	text "!"

	para "You have to see"
	line "this!"
	done
; 0x64bc6

UnknownText_0x64bc6: ; 0x64bc6
	text "I haven't had any"
	line "luck seeing rare"
	cont "#MON lately…"

	para "But I know they're"
	line "out there!"
	done
; 0x64c13

UnknownText_0x64c13: ; 0x64c13
	text "Hey, where are you"
	line "now?"

	para "Let's battle. I'll"
	line "be waiting for you"
	cont "on @"
	text_from_ram StringBuffer5
	text "!"
	done
; 0x64c5a

UnknownText_0x64c5a: ; 0x64c5a
	text "Hello? Are you"
	line "coming or what?"

	para "You're missing out"
	line "on seeing YANMA!"

	para "Get down to ROUTE"
	line "35 right now!"
	done
; 0x64cbd

UnknownText_0x64cbd: ; 0x64cbd
	text "My @"
	text_from_ram StringBuffer4
	text "'s"
	line "getting stronger,"

	para "exactly as I"
	line "calculated!"
	done
; 0x64cf3

UnknownText_0x64cf3: ; 0x64cf3
	text "By the way, we"
	line "knocked out a wild"

	para "@"
	text_from_ram StringBuffer4
	text " just"
	line "the other day."

	para "Studying up in"
	line "advance worked!"
	done
; 0x64d4f

UnknownText_0x64d4f: ; 0x64d4f
	text "By the way, a wild"
	line "@"
	text_from_ram StringBuffer4
	text " escaped"
	cont "on me yesterday."

	para "A computational"
	line "error on my part…"
	done
; 0x64da4

UnknownText_0x64da4: ; 0x64da4
	text "I've studied quite"
	line "a bit since then,"

	para "and I've gotten a"
	line "lot better!"

	para "I'm hanging out on"
	line "@"
	text_from_ram StringBuffer5
	text "."

	para "Can you come down"
	line "for a battle?"
	done
; 0x64e1f

UnknownText_0x64e1f: ; 0x64e1f
	text "See you later!"
	done
; 0x64e2f

UnknownText_0x64e2f: ; 0x64e2f
	text "Hehehe, I picked"
	line "up something nice!"

	para "You can have it!"
	line "Why don't you come"

	para "to @"
	text_from_ram StringBuffer5
	db $0
	line "and pick it up?"
	done
; 0x64e90

UnknownText_0x64e90: ; 0x64e90
	text "I haven't picked"
	line "up anything yet."

	para "I'll call you if I"
	line "find something."
	done
; 0x64ed4

UnknownText_0x64ed4: ; 0x64ed4
	text "If we don't battle"
	line "soon, I'll forget"
	cont "my strategy!"

	para "I'm waiting on"
	line "@"
	text_from_ram StringBuffer5
	text "!"
	done
; 0x64f1a

UnknownText_0x64f1a: ; 0x64f1a
	text "I have to do my"
	line "homework, so can"

	para "you come get your"
	line "gift right away?"

	para "I'm waiting on"
	line "@"
	text_from_ram StringBuffer5
	text "!"
	done
; 0x64f74

UnknownText_0x64f74: ; 0x64f74
	text "My @"
	text_from_ram StringBuffer4
	text " is"
	line "getting prettier!"

	para "I've been taking"
	line "photos galore!"
	done
; 0x64fb2

UnknownText_0x64fb2: ; 0x64fb2
	text "It took only an"
	line "instant to KO a"
	cont "wild @"
	text_from_ram StringBuffer4
	text "."

	para "It must be because"
	line "you gave me some"

	para "battling tips last"
	line "time."
	done
; 0x6501c

UnknownText_0x6501c: ; 0x6501c
	text "You know what?"
	line "A wild @"
	text_from_ram StringBuffer4
	text $51
	db "got away from me"
	line "again."

	para "It was so close!"
	line "Really, just a"

	para "little bit more,"
	line "and I would've…"
	done
; 0x65091

UnknownText_0x65091: ; 0x65091
	text "Right now, I'm on"
	line "@"
	text_from_ram StringBuffer5
	text "."

	para "If you're close"
	line "by, let's battle!"

	para "I'll be waiting"
	line "for you!"
	done
; 0x650e2

UnknownText_0x650e2: ; 0x650e2
	text "See you!"
	done
; 0x650ec

UnknownText_0x650ec: ; 0x650ec
	text "You know what?"
	line "I got a good gift!"

	para "As I promised,"
	line "it's yours!"

	para "I'm sure you'd"
	line "like it. Come get"

	para "it! I'm waiting on"
	line "@"
	text_from_ram StringBuffer5
	text "!"
	done
; 0x65161

UnknownText_0x65161: ; 0x65161
	text "Oh! You wanted a"
	line "gift, right?"

	para "I got one, but I"
	line "want to keep this."

	para "Can you wait a bit"
	line "longer?"
	done
; 0x651bf

UnknownText_0x651bf: ; 0x651bf
	text "Hi! You haven't"
	line "forgotten about"

	para "your promise to"
	line "battle me?"

	para "I'm waiting on"
	line "@"
	text_from_ram StringBuffer5
	text "!"
	done
; 0x6520f

UnknownText_0x6520f: ; 0x6520f
	text "Hello?"

	para "If you don't come"
	line "get your present"

	para "soon, I'll give it"
	line "to someone else."

	para "I'm waiting on"
	line "@"
	text_from_ram StringBuffer5
	text "!"
	done
; 0x65271

UnknownText_0x65271: ; 0x65271
	text "I recently began"
	line "observing wild"
	cont "@"
	text_from_ram StringBuffer4
	text "."

	para "I've been learning"
	line "all sorts of new"

	para "things through my"
	line "observations."

	para "I wish I could"
	line "become a #MON"

	para "researcher like"
	line "PROF.OAK soon."
	done
; 0x65318

UnknownText_0x65318: ; 0x65318
	text "Oh yes, I managed"
	line "to knock out a"

	para "wild @"
	text_from_ram StringBuffer4
	text " a"
	line "while back."

	para "Well, considering"
	line "all the studying I"

	para "do every day, it"
	line "was inevitable."
	done
; 0x65399

UnknownText_0x65399: ; 0x65399
	text "Oh yes, I came"
	line "close to catching"

	para "a wild @"
	text_from_ram StringBuffer4
	text ","
	line "but it got away."

	para "For the longest"
	line "time, I've been"

	para "wanting to observe"
	line "@"
	text_from_ram StringBuffer4
	text ". Rats…"
	done
; 0x65419

UnknownText_0x65419: ; 0x65419
	text "Want to battle?"
	line "I have to battle"

	para "every so often to"
	line "avoid rusting out."

	para "I'll be on"
	line "@"
	text_from_ram StringBuffer5
	text "!"
	done
; 0x65471

UnknownText_0x65471: ; 0x65471
	text "See you later!"
	done
; 0x65481

UnknownText_0x65481: ; 0x65481
	text "Do you know BLUE?"

	para "He's PROF.OAK's"
	line "grandson and a"

	para "former #MON"
	line "LEAGUE CHAMPION!"

	para "He's one super"
	line "#MON trainer!"
	done
; 0x654ea

UnknownText_0x654ea: ; 0x654ea
	text "PROF.OAK has a"
	line "granddaughter"
	cont "named DAISY."

	para "When she's around,"
	line "even the most"

	para "ferocious #MON"
	line "calm right down."
	done
; 0x65555

UnknownText_0x65555: ; 0x65555
	text "Everyone's talking"
	line "about PROF.ELM."

	para "He used to be an"
	line "assistant to the"
	cont "great PROF.OAK!"

	para "That is so cool!"
	line "I envy him!"
	done
; 0x655c7

UnknownText_0x655c7: ; 0x655c7
	text "PROF.OAK's dream"
	line "is to compile a"

	para "comprehensive"
	line "#DEX."

	para "I envy you for"
	line "taking part in"
	cont "that project…"
	done
; 0x65628

UnknownText_0x65628: ; 0x65628
	text "Do you know KURT,"
	line "the BALL creator?"

	para "He and PROF.OAK go"
	line "back a long way."

	para "I guess great"
	line "people attract one"
	cont "another!"
	done
; 0x6569b

UnknownText_0x6569b: ; 0x6569b
	text "#MON LEAGUE is"
	line "the great gather-"
	cont "ing place for all"

	para "trainers who wish"
	line "to become CHAMP."

	para "PROF.OAK acts as"
	line "an advisor to the"

	para "#MON LEAGUE's"
	line "headquarters."

	para "He really is a"
	line "great man."
	done
; 0x6574a

UnknownText_0x6574a: ; 0x6574a
	text "PROF.OAK'S #MON"
	line "TALK is a popular"
	cont "radio show, right?"

	para "Did you know that"
	line "he was going to"

	para "turn down the show"
	line "at first?"

	para "But MARY's energy"
	line "and persistence"
	cont "wore him down."

	para "So we have MARY to"
	line "thank for it!"
	done
; 0x65810

UnknownText_0x65810: ; 0x65810
	text "PROF.OAK used to"
	line "be a trainer a"
	cont "long time ago."

	para "But rather than"
	line "battling, he found"

	para "#MON themselves"
	line "to be interesting."

	para "So he abandoned"
	line "his training to"

	para "focus on becoming"
	line "a researcher."
	done
; 0x658c6

UnknownText_0x658c6: ; 0x658c6
	text "PROF.OAK has a"
	line "granddaughter"
	cont "named DAISY."

	para "She has tea every"
	line "day for an hour"

	para "from three in the"
	line "afternoon."

	para "I wish I could"
	line "join her for tea"

	para "and chat about"
	line "PROF.OAK."
	done
; 0x65969

UnknownText_0x65969: ; 0x65969
	text "Did you know?"
	line "PROF.OAK traveled"

	para "all over the world"
	line "when he was young."

	para "While traveling,"
	line "he must've learned"

	para "about #MON"
	line "naturally."

	para "I envy him…"
	line "I'd like to travel"

	para "and learn about"
	line "things too…"
	done
; 0x65a23

UnknownText_0x65a23: ; 0x65a23
	text "I'm going to study"
	line "hard so PROF.OAK"

	para "will make me his"
	line "assistant!"
	done
; 0x65a63

UnknownText_0x65a63: ; 0x65a63
	text "Do you remember"
	line "about our battle?"

	para "The place is"
	line "@"
	text_from_ram StringBuffer5
	text "."

	para "Hurry over--I'm"
	line "waiting."
	done
; 0x65ab2

UnknownText_0x65ab2: ; 0x65ab2
	text "Listen to this."
	line "My @"
	text_from_ram StringBuffer4
	text $51
	db "grins happily when"
	line "I pinch its cheek."

	para "But it never grins"
	line "for anyone else."

	para "I must be special."
	done
; 0x65b29

UnknownText_0x65b29: ; 0x65b29
	text "Oh, and recently,"
	line "my PIKACHU beat a"
	cont "wild @"
	text_from_ram StringBuffer4
	text "!"

	para "A wild @"
	text_from_ram StringBuffer4
	text ","
	line "I tell you!"

	para "Don't you think"
	line "that's astounding?"

	para "My PIKACHU is"
	line "awesome!"

	para "My PIKACHU is the"
	line "greatest!"
	done
; 0x65bc8

UnknownText_0x65bc8: ; 0x65bc8
	text "Oh, and I saw a"
	line "wild @"
	text_from_ram StringBuffer4
	text " a"
	cont "little while ago."

	para "But it wasn't very"
	line "cute, so I left"

	para "it…"
	line "#MON have to be"

	para "cute. They're no"
	line "good otherwise."
	done
; 0x65c4e

UnknownText_0x65c4e: ; 0x65c4e
	text "Well, let's talk"
	line "again!"
	done
; 0x65c66

UnknownText_0x65c66: ; 0x65c66
	text "Did you remember?"
	line "The Bug-Catching"
	cont "Contest is today."

	para "You're going to"
	line "go, aren't you?"

	para "I think I'll"
	line "participate with"

	para "PIKACHU to show"
	line "off its cuteness."
	done
; 0x65cf9

UnknownText_0x65cf9: ; 0x65cf9
	text "I'd like you to"
	line "have a NUGGET."

	para "My PIKACHU just"
	line "loves it."

	para "I'm certain your"
	line "PIKACHU will love"
	cont "it too!"
	done
; 0x65d5c

UnknownText_0x65d5c: ; 0x65d5c
	text "How is your"
	line "PIKACHU doing?"

	para "Let's get together"
	line "and brag about our"
	cont "PIKACHU!"
	done
; 0x65da6

UnknownText_0x65da6: ; 0x65da6
	text "What's wrong?"

	para "I'm waiting on"
	line "@"
	text_from_ram StringBuffer5
	text "."

	para "Come pick this up"
	line "anytime."
	done
; 0x65de4

UnknownText_0x65de4: ; 0x65de4
	text "My @"
	text_from_ram StringBuffer4
	text " has"
	line "grown again."

	para "It was only about"
	line "so big when I"

	para "caught it, but now"
	line "it's way bigger."
	done
; 0x65e42

UnknownText_0x65e42: ; 0x65e42
	text "Oh yeah, I KO'd a"
	line "wild @"
	text_from_ram StringBuffer4
	text "."

	para "It was huge, like"
	line "this big even."

	para "Heh, I guess you"
	line "can't tell over"
	cont "the phone…"
	done
; 0x65eac

UnknownText_0x65eac: ; 0x65eac
	text "Oh yeah, I lost a"
	line "wild @"
	text_from_ram StringBuffer4
	text "."

	para "It was huge, like"
	line "this big even."

	para "Heh, I guess you"
	line "can't tell over"
	cont "the phone…"
	done
; 0x65f17

UnknownText_0x65f17: ; 0x65f17
	text "We should get a"
	line "battle going!"

	para "I'll be fishing on"
	line "@"
	text_from_ram StringBuffer5
	text "."

	para "Swing by if you"
	line "have the time."
	done
; 0x65f6e

UnknownText_0x65f6e: ; 0x65f6e
	text "Well, I'll be"
	line "seeing you."
	done
; 0x65f88

UnknownText_0x65f88: ; 0x65f88
	text "I picked up a good"
	line "little thing at"
	cont "the water's edge."

	para "Like I promised,"
	line "it's yours."

	para "I'll be waiting on"
	line "@"
	text_from_ram StringBuffer5
	text "."
	done
; 0x65ff2

UnknownText_0x65ff2: ; 0x65ff2
	text "Have I found"
	line "anything good?"

	para "Nope, not yet."

	para "It's like fishing,"
	line "you need patience."
	done
; 0x66043

UnknownText_0x66043: ; 0x66043
	text "Yup, TULLY here…"

	para $14, "? What?"
	line "You're lost?"

	para "Our battle will be"
	line "on @"
	text_from_ram StringBuffer5
	text "."
	done
; 0x66087

UnknownText_0x66087: ; 0x66087
	text "I've got something"
	line "good for you."

	para "Hustle over to"
	line "@"
	text_from_ram StringBuffer5
	text "."
	done
; 0x660be

UnknownText_0x660be: ; 0x660be
	text "Oh yeah, I got an"
	line "extremely rare"

	para "#MON in a trade"
	line "a while back."

	para "Do you want to"
	line "know what it is?"

	para "Hehe, I'm keeping"
	line "it a secret!"
	done
; 0x6613c

UnknownText_0x6613c: ; 0x6613c
	text "Oh yeah, I took"
	line "down this wild"

	para "@"
	text_from_ram StringBuffer4
	text "."
	line "It wasn't rare"

	para "enough to bother"
	line "catching."
	done
; 0x6618c

UnknownText_0x6618c: ; 0x6618c
	text "Oh yeah, I saw a"
	line "rare #MON about"
	cont "an hour ago."

	para "It was my first"
	line "sighting. But I"

	para "didn't have any"
	line "# BALLS…"

	para "Would BILL laugh"
	line "at my mistakes?"
	done
; 0x66214

UnknownText_0x66214: ; 0x66214
	text "You've got time"
	line "like usual, right?"

	para "Feel like having a"
	line "battle?"

	para "It'll be a chance"
	line "to see my rare"

	para "#MON. It'll be"
	line "worth your time!"

	para "You know where--"
	line "@"
	text_from_ram StringBuffer5
	text "."
	done
; 0x662a9

UnknownText_0x662a9: ; 0x662a9
	text "So that's it then."
	done
; 0x662bc

UnknownText_0x662bc: ; 0x662bc
	text "Did you know…?"
	line "BILL's father is"

	para "supposed to be a"
	line "great #MANIAC."
	done
; 0x662fc

UnknownText_0x662fc: ; 0x662fc
	text "Did you know…?"
	line "Apparently BILL's"

	para "grandpa isn't a"
	line "#MANIAC."
	done
; 0x66335

UnknownText_0x66335: ; 0x66335
	text "Did you know…?"
	line "BILL's originally"
	cont "from GOLDENROD."
	done
; 0x66366

UnknownText_0x66366: ; 0x66366
	text "Did you know…?"
	line "BILL evidently"

	para "lives on ROUTE 25"
	line "in KANTO."
	done
; 0x663a1

UnknownText_0x663a1: ; 0x663a1
	text "Did you know…?"
	line "ABRA was the first"

	para "#MON that BILL"
	line "ostensibly caught."
	done
; 0x663e6

UnknownText_0x663e6: ; 0x663e6
	text "Did you know…?"
	line "BILL's younger"

	para "sister apparently"
	line "can't wink."
	done
; 0x66421

UnknownText_0x66421: ; 0x66421
	text "Did you know…?"
	line "BILL supposedly"

	para "hates milk and"
	line "can't drink it."
	done
; 0x6645f

UnknownText_0x6645f: ; 0x6645f
	text "Did you know…?"
	line "Evidently, BILL"

	para "isn't very good at"
	line "battling."
	done
; 0x6649b

UnknownText_0x6649b: ; 0x6649b
	text "Did you know…?"
	line "BILL appears to"

	para "like the lady at"
	line "the FLOWER SHOP."
	done
; 0x664dd

UnknownText_0x664dd: ; 0x664dd
	text "Did you know…?"
	line "BILL's mother is"

	para "said to have been"
	line "a KIMONO GIRL."
	done
; 0x6651e

UnknownText_0x6651e: ; 0x6651e
	text "You wanted to hear"
	line "about BILL?"

	para "Sorry, but I'm too"
	line "busy for you."

	para "I'll call when I"
	line "have time."
	done
; 0x66579

UnknownText_0x66579: ; 0x66579
	text "You want to see my"
	line "rare #MON."

	para "Hurry over to"
	line "@"
	text_from_ram StringBuffer5
	text "."
	done
; 0x665ad

UnknownText_0x665ad: ; 0x665ad
	text "My @"
	text_from_ram StringBuffer4
	text "'s"
	line "adorable, don't"

	para "you think so?"
	line "I always sleep"

	para "with it--it's so"
	line "fluffy and warm!"
	done
; 0x66605

UnknownText_0x66605: ; 0x66605
	text "Oh, and we had to"
	line "battle a wild"

	para "@"
	text_from_ram StringBuffer4
	text " a while"
	line "ago…"

	para "My CLEFAIRY came"
	line "close to fainting!"

	para "Isn't that awful?"

	para "I hate those nasty"
	line "@"
	text_from_ram StringBuffer4
	text "!"
	done
; 0x66688

UnknownText_0x66688: ; 0x66688
	text "Oh, and we had to"
	line "battle a wild"

	para "@"
	text_from_ram StringBuffer4
	text " a while"
	line "ago…"

	para "My CLEFAIRY got"
	line "frightened, so we"

	para "ran away as fast"
	line "as we could!"

	para "I just can't help"
	line "feeling protective"
	cont "of my CLEFAIRY."
	done
; 0x66730

UnknownText_0x66730: ; 0x66730
	text "I know this might"
	line "surprise you, but"

	para "would you like to"
	line "battle?"

	para "I'll be waiting"
	line "with CLEFAIRY on"
	cont "@"
	text_from_ram StringBuffer5
	text "."
	done
; 0x66796

UnknownText_0x66796: ; 0x66796
	text_from_ram StringBuffer4
	text "!"

	para "It's awful."
	line "My CLEFAIRY…"

	para "Huh? ", $14, "?"

	para "Oh, sorry! I was"
	line "in a hurry, and I…"

	para "I have to go!"
	line "Bye-bye!"
	done
; 0x667f7

UnknownText_0x667f7: ; 0x667f7
	text "Bye-bye!"
	done
; 0x66801

UnknownText_0x66801: ; 0x66801
	text "I bought some PINK"
	line "BOWS at GOLDENROD"

	para "DEPT.STORE for my"
	line "CLEFAIRY."

	para "I got too many, so"
	line "I'll give you one!"

	para "Come collect it on"
	line "@"
	text_from_ram StringBuffer5
	text "."
	done
; 0x66882

UnknownText_0x66882: ; 0x66882
	text "I love dressing up"
	line "my CLEFAIRY!"
	done
; 0x668a3

UnknownText_0x668a3: ; 0x668a3
	text "What's wrong?"
	line "Can't you visit?"

	para "CLEFAIRY got tired"
	line "and fell asleep."

	para "I'm not sure if I"
	line "can wake it up…"

	para "Please hurry to"
	line "@"
	text_from_ram StringBuffer5
	text "!"
	done
; 0x6691d

UnknownText_0x6691d: ; 0x6691d
	text "What's wrong?"
	line "Can't you visit?"

	para "I'm sure this will"
	line "look good on your"
	cont "CLEFAIRY."

	para "Please hurry to"
	line "@"
	text_from_ram StringBuffer5
	text "!"
	done
; 0x66980

UnknownText_0x66980: ; 0x66980
	text "My @"
	text_from_ram StringBuffer4
	text "'s"
	line "become tougher."

	para "We've achieved"
	line "liftoff!"
	done
; 0x669b2

UnknownText_0x669b2: ; 0x669b2
	text "We can easily beat"
	line "@"
	text_from_ram StringBuffer4
	text "!"

	para "…Huh? You too?"
	line "Isn't that great?"
	done
; 0x669ed

UnknownText_0x669ed: ; 0x669ed
	text "But get this, a"
	line "wild @"
	text_from_ram StringBuffer4
	text $51
	db "just barely eluded"
	line "us."

	para "I wanted to FLY"
	line "after it…"
	done
; 0x66a3a

UnknownText_0x66a3a: ; 0x66a3a
	text "Right now, I'm on"
	line "@"
	text_from_ram StringBuffer5
	text "."

	para "You know, where I"
	line "first met you?"

	para "Want to battle?"
	line "I'll wait here."
	done
; 0x66a93

UnknownText_0x66a93: ; 0x66a93
	text "OK, bye for now!"
	done
; 0x66aa5

UnknownText_0x66aa5: ; 0x66aa5
	text "I'll be looking"
	line "forward to our"
	cont "next battle!"
	done
; 0x66ad1

UnknownText_0x66ad1: ; 0x66ad1
	text "Oh, ", $14, "!"
	line "Hurry, hurry!"

	para "@"
	text_from_ram StringBuffer5
	text "!"
	line "FLY over now!"
	done
; 0x66afc

UnknownText_0x66afc: ; 0x66afc
	text "My @"
	text_from_ram StringBuffer4
	text "'s"
	line "grown impressive!"

	para "My fishing skills"
	line "have improved too!"
	done
; 0x66b3e

UnknownText_0x66b3e: ; 0x66b3e
	text "We beat a wild"
	line "@"
	text_from_ram StringBuffer4
	text "…"

	para "You know, I have"
	line "more fun fishing"

	para "than beating wild"
	line "#MON."
	done
; 0x66b8f

UnknownText_0x66b8f: ; 0x66b8f
	text "But a while back,"
	line "we came this close"

	para "to landing a wild"
	line "@"
	text_from_ram StringBuffer4
	text "."

	para "I tell you, it was"
	line "huge. Believe me."
	done
; 0x66bf3

UnknownText_0x66bf3: ; 0x66bf3
	text "I'm fishing on"
	line "@"
	text_from_ram StringBuffer5
	text ","

	para "but nothing's"
	line "biting today."

	para "Help me while my"
	line "time away, come"
	cont "over for a battle."
	done
; 0x66c58

UnknownText_0x66c58: ; 0x66c58
	text "All right, later."
	done
; 0x66c6b

UnknownText_0x66c6b: ; 0x66c6b
	text "I snagged an item"
	line "while fishing."

	para "Come pick it up on"
	line "@"
	text_from_ram StringBuffer5
	text "."
	done
; 0x66ca7

UnknownText_0x66ca7: ; 0x66ca7
	text "Nah, I haven't"
	line "found anything"

	para "that's worth your"
	line "time."

	para "You have to have"
	line "patience."
	done
; 0x66cf7

UnknownText_0x66cf7: ; 0x66cf7
	text "Sigh…"
	line "They're not biting"

	para "like before on"
	line "@"
	text_from_ram StringBuffer5
	text "…"

	para "You have to come"
	line "for a battle!"
	done
; 0x66d45

UnknownText_0x66d45: ; 0x66d45
	text "Don't you want"
	line "this item?"

	para "Hah? You don't"
	line "know where?"

	para "@"
	text_from_ram StringBuffer5
	text "…"
	line "Just head from"

	para "MAHOGANY toward"
	line "BLACKTHORN!"
	done
; 0x66dab

UnknownText_0x66dab: ; 0x66dab
	text "Anyway, we'll chat"
	line "again!"
	done
; 0x66dc5

UnknownText_0x66dc5: ; 0x66dc5
	text "Are you still on"
	line "your journey?"

	para "I remain dedicated"
	line "to my training."

	para "Oooooaaarrrgh!"
	done
; 0x66e17

UnknownText_0x66e17: ; 0x66e17
	text "I'm in training"
	line "now. I apologize,"

	para "but call me back"
	line "another time."

	para "Oooooaaarrrgh!"
	done
; 0x66e67

UnknownText_0x66e67: ; 0x66e67
	text "I apologize, but I"
	line "don't have time to"

	para "chat while I am in"
	line "training!"

	para "I'll have time to"
	line "chat tomorrow!"

	para "Yiiihah!"
	done
; 0x66ed3

UnknownText_0x66ed3: ; 0x66ed3
	text "I plan to take a"
	line "lunch break, so"

	para "come see me then!"
	line "Ayiiiyah!"
	done
; 0x66f11

UnknownText_0x66f11: ; 0x66f11
	text "I'm taking a break"
	line "on ROUTE 45!"

	para "Why not drop by if"
	line "you are free?"
	done
; 0x66f52

UnknownText_0x66f52: ; 0x66f52
	text "I rested up over"
	line "my lunch break."

	para "Now it's time to"
	line "resume training!"

	para "Oooryaah!"
	done
; 0x66f9f

UnknownText_0x66f9f: ; 0x66f9f
	text "Nothing can match"
	line "my @"
	text_from_ram StringBuffer4
	text " now."
	done
; 0x66fc0

UnknownText_0x66fc0: ; 0x66fc0
	text "Yeah, we KO'd a"
	line "wild @"
	text_from_ram StringBuffer4
	text "!"

	para "That was OK, but I"
	line "wanted to get it…"
	done
; 0x67001

UnknownText_0x67001: ; 0x67001
	text "And yesterday, we"
	line "spotted a wild"

	para "@"
	text_from_ram StringBuffer4
	text "."
	line "We were debating"

	para "whether to catch"
	line "it or beat it."

	para "When along came"
	line "another guy who"

	para "caught it!"
	line "How about that!"
	done
; 0x67096

UnknownText_0x67096: ; 0x67096
	text "You're thinking"
	line "you'd like to"

	para "battle me. Am I"
	line "right or what?"

	para "Yep! We'll meet on"
	line "@"
	text_from_ram StringBuffer5
	text "!"
	done
; 0x670eb

UnknownText_0x670eb: ; 0x670eb
	text "OK, give me a call"
	line "again!"
	done
; 0x67106

UnknownText_0x67106: ; 0x67106
	text "You'll battle with"
	line "me again, right?"
	done
; 0x6712a

UnknownText_0x6712a: ; 0x6712a
	text "Haven't you gotten"
	line "to @"
	text_from_ram StringBuffer5
	text "?"

	para "Waiting here isn't"
	line "bad, but I'd sure"
	cont "like to battle!"
	done
; 0x6717a

UnknownText_0x6717a: ; 0x6717a
	text_from_ram StringBuffer3
	text "'s @"
	text_from_ram StringBuffer4
	db $0
	line "is much stronger"
	cont "than before!"
	done
; 0x671a4

UnknownText_0x671a4: ; 0x671a4
	text "And, and…"
	line "I just battled and"
	cont "beat @"
	text_from_ram StringBuffer4
	text "!"

	para "I've raised my"
	line "#MON properly!"
	done
; 0x671eb

UnknownText_0x671eb: ; 0x671eb
	text "But, but…"

	para "A wild @"
	text_from_ram StringBuffer4
	db $0
	line "got away from me"

	para "again. It's just"
	line "not fair!"
	done
; 0x6722e

UnknownText_0x6722e: ; 0x6722e
	text "I'm ERIN. Want to"
	line "battle me again?"

	para "I won't lose this"
	line "time!"

	para "I'll be waiting on"
	line "@"
	text_from_ram StringBuffer5
	text "!"
	done
; 0x67281

UnknownText_0x67281: ; 0x67281
	text "See you. Bye-bye!"
	done
; 0x67294

UnknownText_0x67294: ; 0x67294
	text "I'm working hard"
	line "to raise my"
	cont "#MON!"

	para "Come back for"
	line "another battle!"
	done
; 0x672d5

UnknownText_0x672d5: ; 0x672d5
	text "Oh, ", $14, "!"
	line "Come battle ERIN!"

	para "I'll be waiting on"
	line "@"
	text_from_ram StringBuffer5
	text "!"
	done
; 0x67308