summaryrefslogtreecommitdiff
path: root/text/phone/extra3.asm
blob: b368b75adb1d6d8fb6cd39caa34fb060b4a2b179 (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
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928

UnknownText_0x174000: ; 0x174000
	text "Hi, ", $14, "!"
	line "Our BICYCLE sales"

	para "have gone through"
	line "the roof!"

	para "We owe it all to"
	line "your advertising"

	para "by riding around"
	line "on our BICYCLE."

	para "As our way of say-"
	line "ing thanks, please"

	para "keep that BICYCLE."
	line "Thanks again!"
	done
; 0x1740c0

UnknownText_0x1740c0: ; 0x1740c0
	text "My @"
	text_from_ram StringBuffer4
	text "'s"
	line "intelligence keeps"

	para "rising. It might"
	line "be smarter than"
	cont "yours!"
	done
; 0x174106

UnknownText_0x174106: ; 0x174106
	text "The other day, I"
	line "easily defeated a"
	cont "@"
	text_from_ram StringBuffer4
	text "."

	para "I think swapping"
	line "tips with you is"
	cont "starting to help."
	done
; 0x174165

UnknownText_0x174165: ; 0x174165
	text "Oh, and listen."
	line "I missed catching"

	para "a @"
	text_from_ram StringBuffer4
	text " by"
	line "just a tiny bit."

	para "If I'd been a bit"
	line "more informed, I'm"

	para "sure I would've"
	line "caught it…"
	done
; 0x1741e1

UnknownText_0x1741e1: ; 0x1741e1
	text "Do you want to"
	line "battle? I'll show"

	para "you how to battle"
	line "logically."

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

	para "Give me a shout if"
	line "you're nearby."
	done
; 0x174251

UnknownText_0x174251: ; 0x174251
	text "See you later!"
	done
; 0x174261

UnknownText_0x174261: ; 0x174261
	text "Did you know?"

	para "When it's raining,"
	line "THUNDER is sure to"
	cont "strike."
	done
; 0x17429d

UnknownText_0x17429d: ; 0x17429d
	text "Did you know…?"

	para "If you use DEFENSE"
	line "CURL, ROLLOUT's"

	para "power goes way up"
	line "past normal."
	done
; 0x1742ee

UnknownText_0x1742ee: ; 0x1742ee
	text "Did you know…?"

	para "If the sunlight is"
	line "harsh, SOLARBEAM"

	para "doesn't need to be"
	line "charged up."
	done
; 0x174340

UnknownText_0x174340: ; 0x174340
	text "Did you know…?"

	para "If the opponent"
	line "uses MINIMIZE,"

	para "your STOMP becomes"
	line "more powerful."
	done
; 0x174391

UnknownText_0x174391: ; 0x174391
	text "Did you know…?"

	para "If your opponent"
	line "is FLYing, your"

	para "GUST becomes much"
	line "more powerful."
	done
; 0x1743e3

UnknownText_0x1743e3: ; 0x1743e3
	text "Did you know…?"

	para "If your opponent"
	line "is FLYing, your"

	para "TWISTER becomes"
	line "more powerful."
	done
; 0x174433

UnknownText_0x174433: ; 0x174433
	text "Did you know…?"

	para "If your opponent"
	line "uses DIG, your"

	para "EARTHQUAKE becomes"
	line "more powerful."
	done
; 0x174485

UnknownText_0x174485: ; 0x174485
	text "Did you know…?"

	para "If your opponent"
	line "uses DIG, your"

	para "MAGNITUDE becomes"
	line "more powerful."
	done
; 0x1744d6

UnknownText_0x1744d6: ; 0x1744d6
	text "Did you know…?"

	para "The rock, ground"
	line "and steel types"

	para "can't be hurt by"
	line "SANDSTORM."
	done
; 0x174522

UnknownText_0x174522: ; 0x174522
	text "Did you know…?"

	para "If the sunlight is"
	line "harsh, water-type"

	para "moves become much"
	line "weaker."
	done
; 0x174571

UnknownText_0x174571: ; 0x174571
	text "Did you know…?"

	para "When it's raining,"
	line "fire-type moves"

	para "become much weaker"
	line "than usual."
	done
; 0x1745c2

UnknownText_0x1745c2: ; 0x1745c2
	text "My friend heard"
	line "some great tips."

	para "He's going to let"
	line "me in on some."

	para "When he tells me,"
	line "I'll call right"
	cont "away and tell you."
	done
; 0x174638

UnknownText_0x174638: ; 0x174638
	text "Hey, ", $14, "!"

	para "Do you remember"
	line "your promise?"

	para "We have to battle"
	line "soon!"

	para "I'll be at"
	line "@"
	text_from_ram StringBuffer5
	text "."
	done
; 0x174688

UnknownText_0x174688: ; 0x174688
	text "I fancied up my"
	line "@"
	text_from_ram StringBuffer4
	text " and"

	para "made it even cuter"
	line "than before!"
	done
; 0x1746c3

UnknownText_0x1746c3: ; 0x1746c3
	text "I happened to come"
	line "across a wild"
	cont "SNUBBULL recently."

	para "My SNUBBULL, I"
	line "assure you, was"

	para "far cuter than the"
	line "wild one."
	done
; 0x174734

UnknownText_0x174734: ; 0x174734
	text "I happened to see"
	line "a wild MARILL the"

	para "other day."
	line "Or so I thought."

	para "A closer look"
	line "showed it was"

	para "@"
	text_from_ram StringBuffer4
	text ". I was"
	line "quite miffed."
	done
; 0x1747ac

UnknownText_0x1747ac: ; 0x1747ac
	text "You can expect a"
	line "call from me."
	done
; 0x1747cc

UnknownText_0x1747cc: ; 0x1747cc
	text "My husband got"
	line "some NUGGETS."

	para "If you'd like, you"
	line "could have one as"

	para "thanks for helping"
	line "me out."

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

	para "Please come see me"
	line "when you can."
	done
; 0x17485b

UnknownText_0x17485b: ; 0x17485b
	text "Are your #MON"
	line "in prime form?"

	para "Let's chat about"
	line "#MON again."
	done
; 0x174895

UnknownText_0x174895: ; 0x174895
	text "Pardon?"
	line "Oh, the NUGGET?"

	para "There's no need to"
	line "hurry. Come see me"

	para "in @"
	text_from_ram StringBuffer5
	db $0
	line "when you can."
	done
; 0x1748ea

UnknownText_0x1748ea: ; 0x1748ea
	text "Hey, I challenge"
	line "you to a battle!"

	para "It won't be like"
	line "last time!"

	para "@"
	text_from_ram StringBuffer5
	text "'s"
	line "where I'm waiting"

	para "for you. Hustle"
	line "over here pronto!"
	done
; 0x174962

UnknownText_0x174962: ; 0x174962
	text "See ya!"
	done
; 0x17496b

UnknownText_0x17496b: ; 0x17496b
	text "We have to battle"
	line "again sometime."

	para "You can bet I'm"
	line "going to keep"

	para "challenging you"
	line "till I win."
	done
; 0x1749c7

UnknownText_0x1749c7: ; 0x1749c7
	text "Hey, you'd better"
	line "not have forgotten"
	cont "about our battle!"

	para "@"
	text_from_ram StringBuffer5
	text "!"

	para "Hustle over quick!"
	line "I'm waiting!"
	done
; 0x174a24

UnknownText_0x174a24: ; 0x174a24
	text "My @"
	text_from_ram StringBuffer4
	db $0
	line "might be greater"
	cont "than I imagined."

	para "I doubt I'll see a"
	line "@"
	text_from_ram StringBuffer4
	text " that's"
	cont "better than mine."
	done
; 0x174a80

UnknownText_0x174a80: ; 0x174a80
	text "Oh, and I managed"
	line "to barely defeat"

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

	para "I've never seen a"
	line "@"
	text_from_ram StringBuffer4
	text " get"
	cont "that strong…"

	para "You shouldn't let"
	line "your guard down,"

	para "even against a"
	line "#MON you're"
	cont "used to seeing."
	done
; 0x174b2d

UnknownText_0x174b2d: ; 0x174b2d
	text "And a while back,"
	line "I tried to catch a"
	cont "wild @"
	text_from_ram StringBuffer4
	text "."

	para "But it managed to"
	line "elude me."

	para "One wrong decision"
	line "could mean total"

	para "failure… You ought"
	line "to be careful too."
	done
; 0x174bc5

UnknownText_0x174bc5: ; 0x174bc5
	text "Let's battle!"

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

	para "Give me a shout"
	line "when you're close."
	done
; 0x174c0e

UnknownText_0x174c0e: ; 0x174c0e
	text "OK, I'll talk to"
	line "you soon!"
	done
; 0x174c29

UnknownText_0x174c29: ; 0x174c29
	text "I obsess over how"
	line "to beat you."
	done
; 0x174c49

UnknownText_0x174c49: ; 0x174c49
	text $14, ", why"
	line "aren't you here?"

	para "I'll take you down"
	line "with @"
	text_from_ram StringBuffer5
	text "!"
	done
; 0x174c7f

UnknownText_0x174c7f: ; 0x174c7f
	text "Do you remember my"
	line "sweet @"
	text_from_ram StringBuffer4
	text "?"

	para "@"
	text_from_ram StringBuffer4
	text " runs"
	line "very fast."

	para "It's exhilarating"
	line "to ride on its"

	para "back when it"
	line "really gets going."
	done
; 0x174cf6

UnknownText_0x174cf6: ; 0x174cf6
	text "Oh, have you ever"
	line "seen a @"
	text_from_ram StringBuffer4
	text $55
	db "before?"

	para "I just battled"
	line "one…"

	para "It was much faster"
	line "than I expected."

	para "I was a little"
	line "shocked."

	para "I still won, of"
	line "course."
	done
; 0x174d86

UnknownText_0x174d86: ; 0x174d86
	text "Oh, I just saw a"
	line "wild @"
	text_from_ram StringBuffer4
	text "."

	para "I was trying to"
	line "catch it when I"

	para "noticed that I was"
	line "all out of #"
	cont "BALLS."

	para "If you don't check"
	line "your items, you"

	para "may run out at the"
	line "worst time."

	para "I hope you learn"
	line "from my mistake."
	done
; 0x174e4e

UnknownText_0x174e4e: ; 0x174e4e
	text "Do you want to"
	line "battle? I'm going"
	cont "to win this time!"

	para "I'll be waiting"
	line "for you around"

	para "@"
	text_from_ram StringBuffer5
	text "."
	line "Look for me, OK?"
	done
; 0x174eb7

UnknownText_0x174eb7: ; 0x174eb7
	text "OK, bye-bye!"
	done
; 0x174ec5

UnknownText_0x174ec5: ; 0x174ec5
	text "Let's battle again"
	line "sometime!"
	done
; 0x174ee2

UnknownText_0x174ee2: ; 0x174ee2
	text "Um… ", $14, "?"
	line "What's wrong?"

	para "Did you forget our"
	line "deal?"

	para "@"
	text_from_ram StringBuffer5
	text "."

	para "That's where I'm"
	line "waiting."
	done
; 0x174f2f

UnknownText_0x174f2f: ; 0x174f2f
	text "Hey listen, my"
	line "@"
	text_from_ram StringBuffer4
	text "'s stick"

	para "has this really"
	line "delicious aroma."

	para "That aroma gets my"
	line "appetite going!"
	done
; 0x174f90

UnknownText_0x174f90: ; 0x174f90
	text "A while ago, my"
	line "FARFETCH'D KO'd"
	cont "this @"
	text_from_ram StringBuffer4
	text "."

	para "You should have"
	line "seen FARFETCH'D"

	para "wield that stick."
	line "Amazing stuff!"
	done
; 0x174ffd

UnknownText_0x174ffd: ; 0x174ffd
	text "I ran into a wild"
	line "@"
	text_from_ram StringBuffer4
	text "…"

	para "I was trying to"
	line "catch it, but it"

	para "took off faster"
	line "than I thought it"

	para "would. It was a"
	line "bit disappointing."
	done
; 0x17507d

UnknownText_0x17507d: ; 0x17507d
	text "Want to battle"
	line "again?"

	para "For some reason,"
	line "my FARFETCH'D is"

	para "all worked up and"
	line "raring to go."

	para "@"
	text_from_ram StringBuffer5
	text "'s"
	line "where I'm at."

	para "Keep an eye out"
	line "for me, OK?"
	done
; 0x175106

UnknownText_0x175106: ; 0x175106
	text "Be seeing you!"
	done
; 0x175116

UnknownText_0x175116: ; 0x175116
	text "My FARFETCH'D had"
	line "something pretty"
	cont "in its beak."

	para "Like I promised,"
	line "you can have it."

	para "Catch up to me on"
	line "@"
	text_from_ram StringBuffer5
	text ","

	para "and I'll let you"
	line "have it."
	done
; 0x17519b

UnknownText_0x17519b: ; 0x17519b
	text "I haven't gotten"
	line "what I promised"
	cont "you yet."

	para "I'll call you as"
	line "soon as I get it,"

	para "so could you wait"
	line "a little longer?"
	done
; 0x17520a

UnknownText_0x17520a: ; 0x17520a
	text $14, ", could you"
	line "hurry over?"

	para "FARFETCH'D is"
	line "agitated."

	para "If you don't come"
	line "soon, it might"

	para "smack me with its"
	line "stick!"

	para "@"
	text_from_ram StringBuffer5
	text "!"

	para "Please come as"
	line "soon as you can!"
	done
; 0x17529c

UnknownText_0x17529c: ; 0x17529c
	text "What's wrong?"

	para "Don't you want"
	line "this gift?"

	para "Catch up to me on"
	line "@"
	text_from_ram StringBuffer5
	text ","

	para "and I'll let you"
	line "have it."
	done
; 0x1752f5

UnknownText_0x1752f5: ; 0x1752f5
	text "Listen, dear…"

	para "Do you recall my"
	line "@"
	text_from_ram StringBuffer4
	text "?"

	para "Yes, exactly. That"
	line "lovely @"
	text_from_ram StringBuffer4
	text "."

	para "Wouldn't you agree"
	line "it's a perfect"
	cont "match for me?"
	done
; 0x17536b

UnknownText_0x17536b: ; 0x17536b
	text "Have I ever faced"
	line "a wild @"
	text_from_ram StringBuffer4
	text "?"

	para "You need to ask?"

	para "@"
	text_from_ram StringBuffer4
	text " I've"
	line "beaten on numerous"
	cont "occasions!"
	done
; 0x1753c5

UnknownText_0x1753c5: ; 0x1753c5
	text "Have I ever failed"
	line "to catch a wild"
	cont "#MON?"

	para "You need to ask?"

	para "I would never fail"
	line "to catch a wild"

	para "@"
	text_from_ram StringBuffer4
	text "…"
	line "Oh! Never mind!"
	done
; 0x17543a

UnknownText_0x17543a: ; 0x17543a
	text "We are going to"
	line "battle!"

	para "The place shall be"
	line "@"
	text_from_ram StringBuffer5
	text "!"

	para "Don't make me"
	line "wait! Got it?"
	done
; 0x175488

UnknownText_0x175488: ; 0x175488
	text "Fine, you may go."
	done
; 0x17549b

UnknownText_0x17549b: ; 0x17549b
	text "Don't be too proud"
	line "just because you"

	para "happened to beat"
	line "me… "

	para "It was a fluke!"
	done
; 0x1754e5

UnknownText_0x1754e5: ; 0x1754e5
	text "What are you"
	line "doing?"

	para "I told you that"
	line "the place was"

	para "@"
	text_from_ram StringBuffer5
	text "!"
	line "Don't try to run!"
	done
; 0x175530

UnknownText_0x175530: ; 0x175530
	text "My @"
	text_from_ram StringBuffer4
	text "'s"
	line "looking sharper"
	cont "than before!"

	para "I doubt there's a"
	line "#MON as cool as"

	para "this guy in your"
	line "party!"
	done
; 0x175591

UnknownText_0x175591: ; 0x175591
	text "Oh yeah, I took"
	line "down a @"
	text_from_ram StringBuffer4
	text $51
	db "in the wild the"
	line "other day."

	para "It was a cakewalk."
	line "Well, I guess it"

	para "can't be helped,"
	line "us being so tough."
	done
; 0x175611

UnknownText_0x175611: ; 0x175611
	text "Oh yeah, I saw a"
	line "wild @"
	text_from_ram StringBuffer4
	text "!"

	para "I thought about"
	line "going for it, but"

	para "I decided to work"
	line "with my one-and-"

	para "only right to the"
	line "extreme end."
	done
; 0x175693

UnknownText_0x175693: ; 0x175693
	text "Let's get together"
	line "and battle!"

	para "I promise things"
	line "will be different!"

	para "@"
	text_from_ram StringBuffer5
	text "'s"
	line "where I'll be."

	para "Give me a shout"
	line "when you come."
	done
; 0x17570a

UnknownText_0x17570a: ; 0x17570a
	text "All right. Later!"
	done
; 0x17571d

UnknownText_0x17571d: ; 0x17571d
	text "I'm checking out"
	line "@"
	text_from_ram StringBuffer4
	text "'s moves"

	para "and devising some"
	line "strategies."

	para "When I come up"
	line "with a good one,"
	cont "let's battle!"
	done
; 0x175786

UnknownText_0x175786: ; 0x175786
	text "What's keeping"
	line "you, ", $52, "!"

	para "Let's get down and"
	line "battle already!"

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

UnknownText_0x1757d4: ; 0x1757d4
	text "Are your #MON"
	line "growing?"

	para "My #MON are"
	line "growing a bit too"

	para "quickly for me."
	line "It's overwhelming!"

	para "@"
	text_from_ram StringBuffer4
	text "'s grow-"
	line "ing especially"

	para "quickly. I think"
	line "it'll get tough."
	done
; 0x175869

UnknownText_0x175869: ; 0x175869
	text "Oh yeah, we KO'd a"
	line "wild @"
	text_from_ram StringBuffer4
	text $51
	db "with one hit a"
	line "while back."

	para "It went down so"
	line "easily, I felt a"

	para "little sorry for"
	line "the poor thing."
	done
; 0x1758e4

UnknownText_0x1758e4: ; 0x1758e4
	text "Oh yeah, a wild"
	line "@"
	text_from_ram StringBuffer4
	text " got"

	para "away from me at"
	line "the last second."

	para "I know it's a"
	line "common #MON…"

	para "But it does annoy"
	line "me that it got"

	para "away when I almost"
	line "had it."
	done
; 0x175976

UnknownText_0x175976: ; 0x175976
	text "Do you feel like a"
	line "#MON battle?"

	para "It won't be like"
	line "last time!"

	para "@"
	text_from_ram StringBuffer5
	text "'s"
	line "where I'll be."

	para "Let me know when"
	line "you get there."
	done
; 0x1759e7

UnknownText_0x1759e7: ; 0x1759e7
	text "See you later!"
	done
; 0x1759f7

UnknownText_0x1759f7: ; 0x1759f7
	text "The Bug-Catching"
	line "Contest is at the"

	para "NATIONAL PARK"
	line "today."

	para "Are you going,"
	line $14, "?"

	para "I'm trying to make"
	line "up my mind."
	done
; 0x175a60

UnknownText_0x175a60: ; 0x175a60
	text "I found all kinds"
	line "of BERRIES. If you"

	para "want, I'll share"
	line "some with you."

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

UnknownText_0x175abe: ; 0x175abe
	text "Huh? BERRIES?"

	para "Sorry, I haven't"
	line "found any yet."

	para "I'll call you if I"
	line "find any. Will you"
	cont "please wait?"
	done
; 0x175b1e

UnknownText_0x175b1e: ; 0x175b1e
	text "Let's battle"
	line "already!"

	para "@"
	text_from_ram StringBuffer5
	text " is"
	line "where I am."

	para "Please get here as"
	line "soon as you can!"
	done
; 0x175b6d

UnknownText_0x175b6d: ; 0x175b6d
	text "How come you're"
	line "not here yet?"

	para "@"
	text_from_ram StringBuffer5
	text " is"
	line "where I am."

	para "Please get here as"
	line "soon as you can!"
	done
; 0x175bc4

UnknownText_0x175bc4: ; 0x175bc4
	text "I've been spending"
	line "more time with my"

	para "@"
	text_from_ram StringBuffer4
	text " than I"
	line "have with my kids."

	para "That's a bit sad,"
	line "actually."
	done
; 0x175c24

UnknownText_0x175c24: ; 0x175c24
	text "I just beat a wild"
	line "@"
	text_from_ram StringBuffer4
	text "."

	para "I told my kid, but"
	line "he scoffed that he"

	para "could do the same"
	line "thing easily."

	para "Boy, has he gotten"
	line "cocky…"
	done
; 0x175c9f

UnknownText_0x175c9f: ; 0x175c9f
	text "Yesterday a wild"
	line "@"
	text_from_ram StringBuffer4
	text " slipped"

	para "away from me, in"
	line "front of my kid."

	para "I was feeling down"
	line "about it until he"

	para "shared his #"
	line "BALLS with me."

	para "Hahah, that sure"
	line "made my day!"
	done
; 0x175d40

UnknownText_0x175d40: ; 0x175d40
	text "What do you say to"
	line "a battle with me?"

	para "Good, you're going"
	line "to do it!"

	para "For a kid, you're"
	line "quite agreeable."

	para "@"
	text_from_ram StringBuffer5
	text " is"
	line "the spot!"
	done
; 0x175db7

UnknownText_0x175db7: ; 0x175db7
	text "You call your mom"
	line "sometimes too!"
	done
; 0x175dd9

UnknownText_0x175dd9: ; 0x175dd9
	text "Listen, I… Yowch!"

	para "Uh, sorry! See,"
	line "@"
	text_from_ram StringBuffer4
	text " are"

	para "biting like there"
	line "is no tomorrow"

	para "over here on"
	line "@"
	text_from_ram StringBuffer5
	text "!"

	para "Aiyee! Ouch!"
	line "One jabbed me!"

	para "Heh, they're some"
	line "kind of feisty!"

	para $14, ", you have"
	line "to see this rare"

	para "sight! Get ready"
	line "to fish!"
	done
; 0x175eaf

UnknownText_0x175eaf: ; 0x175eaf
	text "Yeah, I know."

	para "You're looking for"
	line "rare #MON."

	para "Recently, all I've"
	line "been catching are"
	cont "MAGIKARP, though…"
	done
; 0x175f11

UnknownText_0x175f11: ; 0x175f11
	text "So where are you?"
	line "I'm waiting for"

	para "you to show up on"
	line "@"
	text_from_ram StringBuffer5
	text "."

	para "You shouldn't make"
	line "your elders wait!"
	done
; 0x175f70

UnknownText_0x175f70: ; 0x175f70
	text "Hey, what's the"
	line "matter with you?"

	para "Aren't you coming"
	line "over to fish for"
	cont "QWILFISH?"

	para "I'm on ROUTE 32,"
	line "so hurry up!"
	done
; 0x175fda

UnknownText_0x175fda: ; 0x175fda
	text "Oh, you have to"
	line "hear this."

	para "My @"
	text_from_ram StringBuffer4
	text " is"
	line "so adorable!"

	para "It always wants to"
	line "nuzzle me!"
	done
; 0x17602d

UnknownText_0x17602d: ; 0x17602d
	text "And, and! Um…"

	para "We beat a wild"
	line "@"
	text_from_ram StringBuffer4
	text " with"

	para "just one hit a"
	line "little while ago."

	para "We felt sorry for"
	line "it, though."
	done
; 0x176095

UnknownText_0x176095: ; 0x176095
	text "And, and! Uh…"

	para "We just saw a"
	line "really gorgeous"
	cont "@"
	text_from_ram StringBuffer4
	text "."

	para "But I was on the"
	line "phone, so it got"

	para "away. It made us"
	line "really angry!"
	done
; 0x17610a

UnknownText_0x17610a: ; 0x17610a
	text "Hi! Do you have"
	line "some free time?"

	para "I've got all sorts"
	line "of time. If you're"

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

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

	para "Let me know when"
	line "you get here!"
	done
; 0x1761a7

UnknownText_0x1761a7: ; 0x1761a7
	text "Hi, TANIA. How are"
	line "you? This is LIZ."

	para "I'm fine, but I'm"
	line "bored silly!"

	para "Huh… Wrong number?"
	line "Oops! Sorry!"
	done
; 0x17620a

UnknownText_0x17620a: ; 0x17620a
	text "OK, I'll call you"
	line "later!"
	done
; 0x176223

UnknownText_0x176223: ; 0x176223
	text "Listen, listen!"

	para "I was listening to"
	line "the radio in the"

	para "RUINS OF ALPH when"
	line "an odd broadcast"

	para "suddenly cut it on"
	line "the regular show."

	para "I wonder what it"
	line "was. So strange!"
	done
; 0x1762c3

UnknownText_0x1762c3: ; 0x1762c3
	text "Listen, listen!"

	para "Don't you think"
	line "FALKNER of VIOLET"

	para "GYM is cool and"
	line "handsome?"

	para "But they say his"
	line "dad, who's out"

	para "training on the"
	line "road, is even more"

	para "cool and handsome"
	line "than FALKNER."

	para "I wish I could"
	line "meet him!"
	done
; 0x17638a

UnknownText_0x17638a: ; 0x17638a
	text "Listen, listen!"

	para "Do you know EARL,"
	line "the teacher who"

	para "runs the #MON"
	line "ACADEMY in VIOLET?"

	para "I saw him doing"
	line "pirouettes while"

	para "he was running. It"
	line "was wildly funny!"
	done
; 0x176424

UnknownText_0x176424: ; 0x176424
	text "Listen, listen!"

	para "I collect #MON"
	line "plush dolls."

	para "But I can't seem"
	line "to get a hold of a"

	para "SURF PIKACHU DOLL."
	line "None of my friends"

	para "have it. It must"
	line "be totally rare!"

	para "You could really"
	line "brag about it if"
	cont "you had one."
	done
; 0x1764eb

UnknownText_0x1764eb: ; 0x1764eb
	text "Listen, listen!"

	para "Do you know about"
	line "MOOMOO MILK?"

	para "You can buy it at"
	line "MOOMOO FARM."

	para "It's supposed to"
	line "be good for health"

	para "and beauty."
	line "I really want to"

	para "try some. I bet"
	line "it's delicious!"
	done
; 0x176599

UnknownText_0x176599: ; 0x176599
	text "Listen, listen!"

	para "There's a #MON"
	line "SALON in GOLDENROD"

	para "that's run by two"
	line "brothers."

	para "The older brother"
	line "is good, but the"

	para "younger one really"
	line "isn't."

	para "But sometimes the"
	line "younger one does a"

	para "better job than"
	line "his brother."

	para "Every time I go, I"
	line "have a hard time"

	para "trying to decide"
	line "whom I should use…"
	done
; 0x1766ac

UnknownText_0x1766ac: ; 0x1766ac
	text "Listen, listen!"

	para "GOLDENROD GYM's"
	line "WHITNEY began"

	para "battling only a"
	line "little while ago!"

	para "But the #MON"
	line "LEAGUE chose her"
	cont "as a GYM LEADER!"

	para "I bet she must be"
	line "totally talented."
	done
; 0x17674f

UnknownText_0x17674f: ; 0x17674f
	text "Listen, listen!"

	para "Have you ever"
	line "taken part in a"

	para "Bug-Catching"
	line "Contest at the"
	cont "NATIONAL PARK?"

	para "I did once, but"
	line "all I could catch"
	cont "was a CATERPIE."

	para "But guess what!"

	para "I won with that"
	line "CATERPIE. Isn't"
	cont "that great?"
	done
; 0x176816

UnknownText_0x176816: ; 0x176816
	text "Listen, listen!"

	para "I saw a beautiful"
	line "@"
	text_from_ram StringBuffer4
	text "!"

	para "I wish I could"
	line "become a beautiful"
	cont "@"
	text_from_ram StringBuffer4
	text " too."
	done
; 0x17686d

UnknownText_0x17686d: ; 0x17686d
	text "Listen, listen!"

	para "Uh… Um… Whoops!"

	para "I forgot what I"
	line "was going to say!"
	done
; 0x1768b0

UnknownText_0x1768b0: ; 0x1768b0
	text "Listen, listen!"

	para "My @"
	text_from_ram StringBuffer4
	text "…"
	line "it… so pretty…"

	para "and… giggle… so"
	line "awesome… yes… but…"

	para "very much… eeek!"
	line "And… lovely…"

	para "Just ravishing…"
	line "Oh, too much!"

	para "…Hug it… sleeping…"
	line "That's right…"

	para "pretty… sigh… So"
	line "nice… Cute…"

	para "…Oops! Look at the"
	line "time! I chatted"
	cont "too long!"

	para "I'm sorry I took"
	line "so much of your"

	para "time!"
	line "I love chatting!"
	done
; 0x1769da

UnknownText_0x1769da: ; 0x1769da
	text "I've got too much"
	line "time on my hands!"

	para "Let's battle right"
	line "away!"

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

UnknownText_0x176a2f: ; 0x176a2f
	text "The other day, I"
	line "was watching my"

	para "@"
	text_from_ram StringBuffer4
	text " eat"
	line "some BERRIES."

	para "It looked like it"
	line "was enjoying its"

	para "meal, so I decided"
	line "to try some."

	para "I'm not sure if"
	line "people should eat"

	para "that stuff, but it"
	line "was delicious!"
	done
; 0x176aef

UnknownText_0x176aef: ; 0x176aef
	text "Lately, I've been"
	line "running across"

	para "wild @"
	text_from_ram StringBuffer4
	db $0
	line "quite often."

	para "They're easily"
	line "taken care of."
	done
; 0x176b45

UnknownText_0x176b45: ; 0x176b45
	text "Oh yeah, I was"
	line "battling this"

	para "@"
	text_from_ram StringBuffer4
	text " the"
	line "other day…"

	para "It took off when I"
	line "got distracted by"
	cont "a passing BEAUTY."

	para "Learn from my"
	line "mistake--always"

	para "stay focused on"
	line "the job at hand!"
	done
; 0x176bee

UnknownText_0x176bee: ; 0x176bee
	text "Come on--let's"
	line "battle right now!"

	para "@"
	text_from_ram StringBuffer5
	text " is"
	line "where I am."

	para "Come on down if"
	line "you feel up to it!"
	done
; 0x176c47

UnknownText_0x176c47: ; 0x176c47
	text "All right then!"
	line "Be good!"
	done
; 0x176c61

UnknownText_0x176c61: ; 0x176c61
	text $52, "! It's"
	line "mind-blowing!"

	para "I took a hike in"
	line "@"
	text_from_ram StringBuffer5
	text $55
	db "yesterday, see?"

	para "Well, there were"
	line "tons of @"
	text_from_ram StringBuffer4
	text $51
	db "around! You have"
	line "to see it!"

	para "I get this feeling"
	line "that @"
	text_from_ram StringBuffer4
	text $51
	db "may be timid."
	line "I didn't see any"

	para "where there are"
	line "strong #MON."
	done
; 0x176d32

UnknownText_0x176d32: ; 0x176d32
	text "Rare #MON?"

	para "Hey, sorry! I was"
	line "too focused on my"

	para "hike, so I wasn't"
	line "paying attention."
	done
; 0x176d85

UnknownText_0x176d85: ; 0x176d85
	text "Hello! You haven't"
	line "forgotten about"

	para "our battle, have"
	line "you?"

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

UnknownText_0x176dd1: ; 0x176dd1
	text "Hello? What? Where"
	line "is DUNSPARCE?"

	para "DARK CAVE! Hurry!"

	para "I know I've said"
	line "it before, but"

	para "DUNSPARCE don't"
	line "appear when there"

	para "are strong #MON"
	line "around."
	done
; 0x176e5d

UnknownText_0x176e5d: ; 0x176e5d
	text "My @"
	text_from_ram StringBuffer4
	text " is"
	line "looking more and"

	para "more like me. It's"
	line "getting cuter!"
	done
; 0x176e9c

UnknownText_0x176e9c: ; 0x176e9c
	text "And, you know?"

	para "Now we can KO"
	line "@"
	text_from_ram StringBuffer4
	text " easily."

	para "I should challenge"
	line "the GOLDENROD GYM."
	done
; 0x176eee

UnknownText_0x176eee: ; 0x176eee
	text "And, you know?"
	line "We just failed to"

	para "beat @"
	text_from_ram StringBuffer4
	text " by"
	line "a tiny margin."

	para "I'm guessing my"
	line "#MON's levels"

	para "aren't high enough"
	line "yet…"
	done
; 0x176f60

UnknownText_0x176f60: ; 0x176f60
	text "You must be a lot"
	line "better now, huh?"

	para "How about showing"
	line "me your technique"

	para "in a real battle"
	line "with me?"

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

UnknownText_0x176fdb: ; 0x176fdb
	text "See you later!"
	done
; 0x176feb

UnknownText_0x176feb: ; 0x176feb
	text "This is it--the"
	line "one we've all been"
	cont "waiting for!"

	para "GOLDENROD DEPT."
	line "STORE's bargain"
	cont "sale is on now!"

	para "Want it cheap?"
	line "Want it lots?"

	para "Don't miss this"
	line "GOLDENROD chance!"

	para "Huh? I sound like"
	line "a huckster?"

	para "Well, yeah. I was"
	line "mimicking them…"

	para "Anyway, you've got"
	line "to get there as"
	cont "soon as you can!"
	done
; 0x1770fb

UnknownText_0x1770fb: ; 0x1770fb
	text "I'm saving up for"
	line "the next bargain"

	para "sale. When's the"
	line "next one?"
	done
; 0x177138

UnknownText_0x177138: ; 0x177138
	text "Where are you?"

	para "Let's have our"
	line "battle soon!"

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

UnknownText_0x17717c: ; 0x17717c
	text "Haven't you gone"
	line "to GOLDENROD DEPT."

	para "STORE? I've scoped"
	line "it out already!"

	para "They had some real"
	line "bargains."

	para "You should get"
	line "there quickly."
	done
; 0x1771fd

UnknownText_0x1771fd: ; 0x1771fd
	text "My @"
	text_from_ram StringBuffer4
	text " and"
	line "I are getting more"

	para "in sync with each"
	line "other."
	done
; 0x177237

UnknownText_0x177237: ; 0x177237
	text "We battled a wild"
	line "@"
	text_from_ram StringBuffer4
	text " and"

	para "managed to drop it"
	line "in a close match."

	para "We're getting into"
	line "the groove!"
	done
; 0x177297

UnknownText_0x177297: ; 0x177297
	text "But, you know?"

	para "I still haven't"
	line "caught @"
	text_from_ram StringBuffer4
	text "."

	para "It's getting past"
	line "frustrating…"
	done
; 0x1772e2

UnknownText_0x1772e2: ; 0x1772e2
	text "Would you be my"
	line "practice partner"
	cont "again sometime?"

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

	para "…Could you take it"
	line "a little easier on"
	cont "me next time?"
	done
; 0x177361

UnknownText_0x177361: ; 0x177361
	text "Bye! Let's chat"
	line "again!"
	done
; 0x177378

UnknownText_0x177378: ; 0x177378
	text "Have you heard"
	line "about TEAM ROCKET?"

	para "They've taken over"
	line "the RADIO TOWER in"
	cont "GOLDENROD."

	para "Are the people"
	line "inside safe?"
	done
; 0x1773e7

UnknownText_0x1773e7: ; 0x1773e7
	text "I picked up some-"
	line "thing nice today."

	para "I want you to have"
	line "it, so I called!"

	para "You will come for"
	line "it, won't you?"

	para "@"
	text_from_ram StringBuffer5
	text " is"
	line "where I am."
	done
; 0x177465

UnknownText_0x177465: ; 0x177465
	text "Sorry, I haven't"
	line "found anything"

	para "useful yet…"
	line "I promise, if I"

	para "find anything, you"
	line "can have it!"
	done
; 0x1774c1

UnknownText_0x1774c1: ; 0x1774c1
	text "Oh, ", $14, "!"
	line "How soon can I"

	para "expect to see you"
	line "for our battle?"

	para "Don't forget,"
	line "@"
	text_from_ram StringBuffer5
	text "!"
	done
; 0x17750e

UnknownText_0x17750e: ; 0x17750e
	text "I'm getting really"
	line "impatient, waiting"

	para "to give you my"
	line "present!"

	para "Hurry over to"
	line "@"
	text_from_ram StringBuffer5
	text "!"
	done
; 0x177561