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
|
UnknownText_0x1c0000: ; 1c0000
text "Oh, no picture?"
line "Come again, OK?"
done
; 1c0021
UnknownText_0x1c0021: ; 1c0021
text "An EGG? My talent"
line "is worth more…"
done
; 1c0043
UnknownText_0x1c0043: ; 1c0043
text "Hello, hello! I'm"
line "the NAME RATER."
para "I rate the names"
line "of #MON."
para "Would you like me"
line "to rate names?"
done
; 1c00a0
UnknownText_0x1c00a0: ; 1c00a0
text "Which #MON's"
line "nickname should I"
cont "rate for you?"
prompt
; 1c00cd
UnknownText_0x1c00cd: ; 1c00cd
text "Hm… @"
text_from_ram $d073
text "…"
line "That's a fairly"
cont "decent name."
para "But, how about a"
line "slightly better"
cont "nickname?"
para "Want me to give it"
line "a better name?"
done
; 1c0142
UnknownText_0x1c0142: ; 1c0142
text "All right. What"
line "name should we"
cont "give it, then?"
prompt
; 1c0171
UnknownText_0x1c0171: ; 1c0171
text "That's a better"
line "name than before!"
para "Well done!"
done
; 1c019e
UnknownText_0x1c019e: ; 1c019e
text "OK, then. Come"
line "again sometime."
done
; 1c01be
UnknownText_0x1c01be: ; 1c01be
text "Hm… @"
text_from_ram $d073
text "?"
line "What a great name!"
cont "It's perfect."
para "Treat @"
text_from_ram $d073
db $0
line "with loving care."
done
; 1c0208
UnknownText_0x1c0208: ; 1c0208
text "Whoa… That's just"
line "an EGG."
done
; 1c0222
UnknownText_0x1c0222: ; 1c0222
text "It might look the"
line "same as before,"
para "but this new name"
line "is much better!"
para "Well done!"
done
; 1c0272
UnknownText_0x1c0272: ; 1c0272
text "All right. This"
line "#MON is now"
cont "named @"
text_from_ram $d073
text "."
prompt
; 1c029c
UnknownText_0x1c029c: ; 1c029c
text_from_ram $d073
text " gained@"
db "@"
; 1c02a9
UnknownText_0x1c02a9: ; 1c02a9
db $0
line "a boosted"
cont "@"
deciram $d086, $24
text " EXP. Points!"
prompt
; 1c02c9
UnknownText_0x1c02c9: ; 1c02c9
db $0
line "@"
deciram $d086, $24
text " EXP. Points!"
prompt
; 1c02df
UnknownText_0x1c02df: ; 1c02df
text "Go! @"
db "@"
; 1c02e6
UnknownText_0x1c02e6: ; 1c02e6
text "Do it! @"
db "@"
; 1c02f0
UnknownText_0x1c02f0: ; 1c02f0
text "Go for it,"
line "@"
db "@"
; 1c02fe
UnknownText_0x1c02fe: ; 1c02fe
text "Your foe's weak!"
line "Get'm, @"
db "@"
; 1c0317
UnknownText_0x1c0317: ; 1c0317
text_from_ram $c621
text "!"
done
; 1c031d
UnknownText_0x1c031d: ; 1c031d
text_from_ram $c621
text ",@"
db "@"
; 1c0324
UnknownText_0x1c0324: ; 1c0324
text " that's"
line "enough! Come back!@"
db "@"
; 1c0340
UnknownText_0x1c0340: ; 1c0340
text " OK!"
line "Come back!@"
db "@"
; 1c0352
UnknownText_0x1c0352: ; 1c0352
text " good!"
line "Come back!@"
db "@"
; 1c0366
UnknownText_0x1c0366: ; 1c0366
text " come"
line "back!"
done
; 1c0373
UnknownText_0x1c0373: ; 1c0373
text "Booted up a TM."
prompt
; 1c0384
UnknownText_0x1c0384: ; 1c0384
text "Booted up an HM."
prompt
; 1c0396
UnknownText_0x1c0396: ; 1c0396
text "It contained"
line "@"
text_from_ram $d086
text "."
para "Teach @"
text_from_ram $d086
db $0
line "to a #MON?"
done
; 1c03c2
UnknownText_0x1c03c2: ; 1c03c2
text_from_ram $d086
text " is"
line "not compatible"
cont "with @"
text_from_ram $d073
text "."
para "It can't learn"
line "@"
text_from_ram $d086
text "."
prompt
; 1c03fa
UnknownText_0x1c03fa: ; 1c03fa
text "You have no room"
line "for any more"
cont "@"
text_from_ram $d073
text "S."
prompt
; 1c0421
UnknownText_0x1c0421: ; 1c0421
text "You received"
line "@"
text_from_ram $d073
text "!"
prompt
; 1c0436
UnknownText_0x1c0436: ; 1c0436
text "The link has been"
line "cancelled."
prompt
; 1c0454
UnknownText_0x1c0454: ; 1c0454
text "Communication"
line "error."
prompt
; 1c046a
UnknownText_0x1c046a: ; 1c046a
text "Must retrieve GIFT"
line "at #MON CENTER."
prompt
; 1c048e
UnknownText_0x1c048e: ; 1c048e
text "Your friend isn't"
line "ready."
prompt
; 1c04a7
UnknownText_0x1c04a7: ; 1c04a7
text "Sorry--only five"
line "GIFTS a day."
prompt
; 1c04c6
UnknownText_0x1c04c6: ; 1c04c6
text "Sorry. One GIFT"
line "a day per person."
prompt
; 1c04e9
UnknownText_0x1c04e9: ; 1c04e9
text_from_ram $c903
text " sent"
line "@"
text_from_ram $d073
text "."
prompt
; 1c04fa
UnknownText_0x1c04fa: ; 1c04fa
text_from_ram $c903
text " sent"
line "@"
text_from_ram $d073
text $55
db "to @"
text_from_ram $c953
text "'s home."
prompt
; 1c051a
UnknownText_0x1c051a: ; 1c051a
text "Received"
line "@"
text_from_ram $c850
text "'s CARD."
prompt
; 1c0531
UnknownText_0x1c0531: ; 1c0531
text_from_ram $c850
text "'s CARD was"
line "listed as no.@"
deciram $d265, $12
text "."
prompt
; 1c0555
UnknownText_0x1c0555: ; 1c0555
text "The CARD was not"
line "registered."
prompt
; 1c0573
UnknownText_0x1c0573: ; 1c0573
text "The link has been"
line "cancelled."
prompt
; 1c0591
UnknownText_0x1c0591: ; 1c0591
text "Communication"
line "error."
prompt
; 1c05a7
_BadgeRequiredText: ; 1c05a7
text "Sorry! A new BADGE"
line "is required."
prompt
; 1c05c8
UnknownText_0x1c05c8: ; 1c05c8
text "Can't use that"
line "here."
prompt
; 1c05dd
UnknownText_0x1c05dd: ; 1c05dd
text_from_ram $d086
text " used"
line "CUT!"
prompt
; 1c05ec
UnknownText_0x1c05ec: ; 1c05ec
text "There's nothing to"
line "CUT here."
prompt
; 1c0609
UnknownText_0x1c0609: ; 1c0609
text "A blinding FLASH"
line "lights the area!@"
text_waitbutton
db "@"
; 1c062e
UnknownText_0x1c062e: ; 1c062e
db "@"
; 1c062f
_UsedSurfText: ; 1c062f
text_from_ram $d086
text " used"
line "SURF!"
done
; 1c063f
_CantSurfText: ; 1c063f
text "You can't SURF"
line "here."
prompt
; 1c0654
_AlreadySurfingText: ; 1c0654
text "You're already"
line "SURFING."
prompt
; 1c066c
_AskSurfText: ; 1c066c
text "The water is calm."
line "Want to SURF?"
done
; 1c068e
UnknownText_0x1c068e: ; 1c068e
text_from_ram $d086
text " used"
line "WATERFALL!"
done
; 1c06a3
UnknownText_0x1c06a3: ; 1c06a3
text "Wow, it's a huge"
line "waterfall."
done
; 1c06bf
UnknownText_0x1c06bf: ; 1c06bf
text "Do you want to use"
line "WATERFALL?"
done
; 1c06de
UnknownText_0x1c06de: ; 1c06de
text_from_ram $d086
text " used"
line "DIG!"
done
; 1c06ed
UnknownText_0x1c06ed: ; 1c06ed
text $52, " used an"
line "ESCAPE ROPE."
done
; 1c0705
UnknownText_0x1c0705: ; 1c0705
text "Can't use that"
line "here."
done
; 1c071a
UnknownText_0x1c071a: ; 1c071a
text "Return to the last"
line "#MON CENTER."
done
; 1c073b
UnknownText_0x1c073b: ; 1c073b
text "Can't use that"
line "here.", $51
db $57
; 1c0751
UnknownText_0x1c0751: ; 1c0751
text "A #MON is using"
line "STRENGTH already."
prompt
; 1c0774
UnknownText_0x1c0774: ; 1c0774
text_from_ram $d086
text " used"
line "STRENGTH!"
done
; 1c0788
UnknownText_0x1c0788: ; 1c0788
text_from_ram $d073
text " can"
line "move boulders."
prompt
; 1c07a0
UnknownText_0x1c07a0: ; 1c07a0
text "A #MON may be"
line "able to move this."
para "Want to use"
line "STRENGTH?"
done
; 1c07d8
UnknownText_0x1c07d8: ; 1c07d8
text "Boulders may now"
line "be moved!"
done
; 1c07f4
UnknownText_0x1c07f4: ; 1c07f4
text "A #MON may be"
line "able to move this."
done
; 1c0816
UnknownText_0x1c0816: ; 1c0816
text_from_ram $d086
text " used"
line "WHIRLPOOL!"
prompt
; 1c082b
UnknownText_0x1c082b: ; 1c082b
text "It's a vicious"
line "whirlpool!"
para "A #MON may be"
line "able to pass it."
done
; 1c0864
UnknownText_0x1c0864: ; 1c0864
text "A whirlpool is in"
line "the way."
para "Want to use"
line "WHIRLPOOL?"
done
; 1c0897
UnknownText_0x1c0897: ; 1c0897
text_from_ram $d086
text " did a"
line "HEADBUTT!"
prompt
; 1c08ac
UnknownText_0x1c08ac: ; 1c08ac
text "Nope. Nothing…"
done
; 1c08bc
UnknownText_0x1c08bc: ; 1c08bc
text "A #MON could be"
line "in this tree."
para "Want to HEADBUTT"
line "it?"
done
; 1c08f0
UnknownText_0x1c08f0: ; 1c08f0
text_from_ram $d086
text " used"
line "ROCK SMASH!"
prompt
; 1c0906
UnknownText_0x1c0906: ; 1c0906
text "Maybe a #MON"
line "can break this."
done
; 1c0924
UnknownText_0x1c0924: ; 1c0924
text "This rock looks"
line "breakable."
para "Want to use ROCK"
line "SMASH?"
done
; 1c0958
UnknownText_0x1c0958: ; 1c0958
text "Oh!"
line "A bite!"
prompt
; 1c0965
UnknownText_0x1c0965: ; 1c0965
text "Not even a nibble!"
prompt
; 1c0979
UnknownText_0x1c0979: ; 1c0979
text "Looks like there's"
line "nothing here."
prompt
; 1c099a
UnknownText_0x1c099a: ; 1c099a
text "You can't get off"
line "here!"
done
; 1c09b2
UnknownText_0x1c09b2: ; 1c09b2
text $52, " got on the"
line "@"
text_from_ram $d086
text "."
done
; 1c09c7
UnknownText_0x1c09c7: ; 1c09c7
text $52, " got off"
line "the @"
text_from_ram $d086
text "."
done
; 1c09dd
UnknownText_0x1c09dd: ; 1c09dd
text "This tree can be"
line "CUT!"
para "Want to use CUT?"
done
; 1c0a05
UnknownText_0x1c0a05: ; 1c0a05
text "This tree can be"
line "CUT!"
done
; 1c0a1c
UnknownText_0x1c0a1c: ; 1c0a1c
text $52, " found"
line "@"
text_from_ram $d099
text "!"
done
; 1c0a2c
UnknownText_0x1c0a2c: ; 1c0a2c
text "But ", $52, " can't"
line "carry any more"
cont "items."
done
; 1c0a4e
UnknownText_0x1c0a4e: ; 1c0a4e
text $52, " is out of"
line "useable #MON!"
para $52, " whited"
line "out!"
done
; 1c0a77
UnknownText_0x1c0a77: ; 1c0a77
text "Yes! ITEMFINDER"
line "indicates there's"
cont "an item nearby."
prompt
; 1c0aa9
UnknownText_0x1c0aa9: ; 1c0aa9
text "Nope! ITEMFINDER"
line "isn't responding."
prompt
; 1c0acc
UnknownText_0x1c0acc: ; 1c0acc
text_from_ram $d099
db $0
line "fainted!"
prompt
; 1c0ada
UnknownText_0x1c0ada: ; 1c0ada
text $52, " is out of"
line "useable #MON!"
para $52, " whited"
line "out!"
prompt
; 1c0b03
UnknownText_0x1c0b03: ; 1c0b03
text_from_ram $d099
text " used"
line "SWEET SCENT!"
done
; 1c0b1a
UnknownText_0x1c0b1a: ; 1c0b1a
text "Looks like there's"
line "nothing here…"
done
; 1c0b3b
UnknownText_0x1c0b3b: ; 1c0b3b
text $52, " sprinkled"
line "water."
para "But nothing"
line "happened…"
done
; 1c0b65
UnknownText_0x1c0b65: ; 1c0b65
text $52, "'s #MON"
line "were all healed!"
done
; 1c0b7f
UnknownText_0x1c0b7f: ; 1c0b7f
text "An EGG can't hold"
line "an item."
prompt
; 1c0b9a
UnknownText_0x1c0b9a: ; 1c0b9a
text "No items."
done
; 1c0ba5
UnknownText_0x1c0ba5: ; 1c0ba5
text "Throw away how"
line "many?"
done
; 1c0bbb
UnknownText_0x1c0bbb: ; 1c0bbb
text "Throw away @"
deciram $d10c, $12
db $0
line "@"
text_from_ram $d086
text "(S)?"
done
; 1c0bd8
UnknownText_0x1c0bd8: ; 1c0bd8
text "Threw away"
line "@"
text_from_ram $d086
text "(S)."
prompt
; 1c0bee
UnknownText_0x1c0bee: ; 1c0bee
text "OAK: ", $52, "!"
line "This isn't the"
cont "time to use that!"
prompt
; 1c0c17
UnknownText_0x1c0c17: ; 1c0c17
text "You don't have a"
line "#MON!"
prompt
; 1c0c2e
UnknownText_0x1c0c2e: ; 1c0c2e
text "Registered the"
line "@"
text_from_ram $d086
text "."
prompt
; 1c0c45
UnknownText_0x1c0c45: ; 1c0c45
text "You can't register"
line "that item."
prompt
; 1c0c63
UnknownText_0x1c0c63: ; 1c0c63
text "Where should this"
line "be moved to?"
done
; 1c0c83
UnknownText_0x1c0c83: ; 1c0c83
db $0, $57
; 1c0c85
UnknownText_0x1c0c85: ; 1c0c85
text "You can't use it"
line "in a battle."
prompt
; 1c0ca3
UnknownText_0x1c0ca3: ; 1c0ca3
text "Are you a boy?"
line "Or are you a girl?"
done
; 1c0cc6
UnknownText_0x1c0cc6: ; 1c0cc6
db $0, $5a, "'s"
line "@"
text_from_ram $d086
db "@"
; 1c0ccf
UnknownText_0x1c0ccf: ; 1c0ccf
db "@"
; 1c0cd0
UnknownText_0x1c0cd0: ; 1c0cd0
interpret_data
text $4c, "went way up!"
prompt
; 1c0ce0
UnknownText_0x1c0ce0: ; 1c0ce0
text " went up!"
prompt
; 1c0ceb
UnknownText_0x1c0ceb: ; 1c0ceb
db $0, $59, "'s"
line "@"
text_from_ram $d086
db "@"
; 1c0cf4
UnknownText_0x1c0cf4: ; 1c0cf4
db "@"
; 1c0cf5
UnknownText_0x1c0cf5: ; 1c0cf5
interpret_data
text $4c, "sharply fell!"
prompt
; 1c0d06
UnknownText_0x1c0d06: ; 1c0d06
text " fell!"
prompt
; 1c0d0e
UnknownText_0x1c0d0e: ; 1c0d0e
db $0, $5a, "@"
db "@"
; 1c0d12
UnknownText_0x1c0d12: ; 1c0d12
db $0
line "made a whirlwind!"
prompt
; 1c0d26
UnknownText_0x1c0d26: ; 1c0d26
db $0
line "took in sunlight!"
prompt
; 1c0d3a
UnknownText_0x1c0d3a: ; 1c0d3a
db $0
line "lowered its head!"
prompt
; 1c0d4e
UnknownText_0x1c0d4e: ; 1c0d4e
db $0
line "is glowing!"
prompt
; 1c0d5c
UnknownText_0x1c0d5c: ; 1c0d5c
db $0
line "flew up high!"
prompt
; 1c0d6c
UnknownText_0x1c0d6c: ; 1c0d6c
db $0
line "dug a hole!"
prompt
; 1c0d7a
_ActorNameText: ; 1c0d7a
db $0, $5a, "@"
db "@"
; 1c0d7e
_UsedMove1Text: ; 1c0d7e
db $0
line "used @"
db "@"
; 1c0d87
_UsedMove2Text: ; 1c0d87
db $0
line "used @"
db "@"
; 1c0d90
_UsedInsteadText: ; 1c0d90
text "instead,", $55
db "@"
db "@"
; 1c0d9c
_MoveNameText: ; 1c0d9c
text_from_ram StringBuffer2
db "@"
; 1c0da0
UnknownText_0x1c0da0: ; 1c0da0
db "@"
; 1c0da1
_EndUsedMove1Text: ; 1c0da1
text "!"
done
; 1c0da4
_EndUsedMove2Text: ; 1c0da4
text "!"
done
; 1c0da7
_EndUsedMove3Text: ; 1c0da7
text "!"
done
; 1c0daa
_EndUsedMove4Text: ; 1c0daa
text "!"
done
; 1c0dad
_EndUsedMove5Text: ; 1c0dad
text "!"
done
; 1c0db0
UnknownText_0x1c0db0: ; 1c0db0
text "Huh?", $51
db "@"
db "@"
; 1c0db8
UnknownText_0x1c0db8: ; 1c0db8
db $0, $57
; 1c0dba
UnknownText_0x1c0dba: ; 1c0dba
text_from_ram StringBuffer1
text " came"
line "out of its EGG!@"
sound0x02
text_waitbutton
db "@"
; 1c0dd7
UnknownText_0x1c0dd7: ; 1c0dd7
db "@"
; 1c0dd8
UnknownText_0x1c0dd8: ; 1c0dd8
text "Give a nickname to"
line "@"
text_from_ram StringBuffer1
text "?"
done
; 1c0df3
UnknownText_0x1c0df3: ; 1c0df3
text "It's @"
text_from_ram $df2f
db $0
line "that was left with"
cont "the DAY-CARE LADY."
done
; 1c0e24
UnknownText_0x1c0e24: ; 1c0e24
text "It's @"
text_from_ram $def6
db $0
line "that was left with"
cont "the DAY-CARE MAN."
done
; 1c0e54
UnknownText_0x1c0e54: ; 1c0e54
text "It's brimming with"
line "energy."
prompt
; 1c0e6f
UnknownText_0x1c0e6f: ; 1c0e6f
text "It has no interest"
line "in @"
text_from_ram $d073
text "."
prompt
; 1c0e8d
UnknownText_0x1c0e8d: ; 1c0e8d
text "It appears to care"
line "for @"
text_from_ram $d073
text "."
prompt
; 1c0eac
UnknownText_0x1c0eac: ; 1c0eac
text "It's friendly with"
line "@"
text_from_ram $d073
text "."
prompt
; 1c0ec6
UnknownText_0x1c0ec6: ; 1c0ec6
text "It shows interest"
line "in @"
text_from_ram $d073
text "."
prompt
; 1c0ee3
_EmptyMailboxText: ; 1c0ee3
text "There's no MAIL"
line "here."
prompt
; 1c0ef9
ClearedMailPutAwayText: ; 1c0ef9
text "The cleared MAIL"
line "was put away."
prompt
; 1c0f19
MailPackFullText: ; 1c0f19
text "The PACK is full."
prompt
; 1c0f2c
MailMessageLostText: ; 1c0f2c
text "The MAIL's message"
line "will be lost. OK?"
done
; 1c0f51
MailAlreadyHoldingItemText: ; 1c0f51
text "It's already hold-"
line "ing an item."
prompt
; 1c0f71
MailEggText: ; 1c0f71
text "An EGG can't hold"
line "any MAIL."
prompt
; 1c0f8d
MailMovedFromBoxText: ; 1c0f8d
text "The MAIL was moved"
line "from the MAILBOX."
prompt
; 1c0fb3
UnknownText_0x1c0fb3: ; 1c0fb3
text "Yes"
prompt
; 1c0fb8
UnknownText_0x1c0fb8: ; 1c0fb8
text "No"
prompt
; 1c0fbc
UnknownText_0x1c0fbc: ; 1c0fbc
deciram $cf64, $13
text " @"
text_from_ram $d073
db $0
line "Animation type @"
text_from_ram $d086
db "@"
; 1c0fdc
UnknownText_0x1c0fdc: ; 1c0fdc
db "@"
; 1c0fdd
UnknownText_0x1c0fdd: ; 1c0fdd
text "#MON number?"
done
; 1c0feb
UnknownText_0x1c0feb: ; 1c0feb
text_from_ram $d073
text " was"
line "sent to BILL's PC."
prompt
; 1c1006
UnknownText_0x1c1006: ; 1c1006
text "You gotta have"
line "#MON to call!"
prompt
; 1c1024
UnknownText_0x1c1024: ; 1c1024
text "What?"
done
; 1c102b
UnknownText_0x1c102b: ; 1c102b
text "There is a #MON"
line "holding MAIL."
para "Please remove the"
line "MAIL."
prompt
; 1c1062
UnknownText_0x1c1062: ; 1c1062
text "You don't have a"
line "single #MON!"
prompt
; 1c1080
UnknownText_0x1c1080: ; 1c1080
text "You can't deposit"
line "your last #MON!"
prompt
; 1c10a2
UnknownText_0x1c10a2: ; 1c10a2
text "You can't take any"
line "more #MON."
prompt
; 1c10c0
UnknownText_0x1c10c0: ; 1c10c0
text "Caught @"
text_from_ram $d073
text "!"
prompt
; 1c10cf
UnknownText_0x1c10cf: ; 1c10cf
text "Switch #MON?"
done
; 1c10dd
UnknownText_0x1c10dd: ; 1c10dd
text "You already caught"
line "a @"
text_from_ram $d073
text "."
prompt
; 1c10fa
UnknownText_0x1c10fa: ; 1c10fa
text "This Bug-Catching"
line "Contest winner is@"
interpret_data
text "…", $51
db "@"
text_from_ram $d016
text ","
line "who caught a", $55
db "@"
text_from_ram $d073
text "!@"
db "@"
; 1c113f
UnknownText_0x1c113f: ; 1c113f
text $51
db "The winning score"
line "was @"
deciram $d004, $23
text " points!"
prompt
; 1c1166
UnknownText_0x1c1166: ; 1c1166
text "Placing second was"
line "@"
text_from_ram $d016
text ",", $51
db "who caught a"
line "@"
text_from_ram $d073
text "!@"
db "@"
; 1c1196
UnknownText_0x1c1196: ; 1c1196
text $51
db "The score was"
line "@"
deciram $d008, $23
text " points!"
prompt
; 1c11b5
UnknownText_0x1c11b5: ; 1c11b5
text "Placing third was"
line "@"
text_from_ram $d016
text ",", $51
db "who caught a"
line "@"
text_from_ram $d073
text "!@"
db "@"
; 1c11e4
UnknownText_0x1c11e4: ; 1c11e4
text $51
db "The score was"
line "@"
deciram $d00c, $23
text " points!"
prompt
; 1c1203
UnknownText_0x1c1203: ; 1c1203
text "Let me measure"
line "that MAGIKARP."
para "…Hm, it measures"
line "@"
text_from_ram $d073
text "."
prompt
; 1c123a
UnknownText_0x1c123a: ; 1c123a
text "CURRENT RECORD", $51
db "@"
text_from_ram $d073
text " caught by"
line "@"
text_from_ram $dfea
text_waitbutton
db "@"
; 1c1260
UnknownText_0x1c1260: ; 1c1260
db "@"
; 1c1261
UnknownText_0x1c1261: ; 1c1261
text "Congratulations!"
para "We have a match"
line "with the ID number"
para "of @"
text_from_ram $d073
text " in"
line "your party."
prompt
; 1c12ae
UnknownText_0x1c12ae: ; 1c12ae
text "Congratulations!"
para "We have a match"
line "with the ID number"
para "of @"
text_from_ram $d073
text " in"
line "your PC BOX."
prompt
; 1c12fc
UnknownText_0x1c12fc: ; 1c12fc
text "Give a nickname to"
line "the @"
text_from_ram $d073
text " you"
cont "received?"
done
; 1c1328
UnknownText_0x1c1328: ; 1c1328
text "Bzzzzt! You must"
line "have a #MON to"
cont "use this!"
prompt
; 1c1353
UnknownText_0x1c1353: ; 1c1353
text $52, " turned on"
line "the PC."
prompt
; 1c1368
UnknownText_0x1c1368: ; 1c1368
text "What do you want"
line "to do?"
done
; 1c1381
_KrissPCHowManyWithdrawText: ; 1c1381
text "How many do you"
line "want to withdraw?"
done
; 1c13a4
_KrissPCWithdrewItemsText: ; 1c13a4
text "Withdrew @"
deciram $d10c, $12
db $0
line "@"
text_from_ram $d086
text "(S)."
prompt
; 1c13bf
_KrissPCNoRoomWithdrawText: ; 1c13bf
text "There's no room"
line "for more items."
prompt
; 1c13df
UnknownText_0x1c13df: ; 1c13df
text "No items here!"
prompt
; 1c13ef
_KrissPCHowManyDepositText: ; 1c13ef
text "How many do you"
line "want to deposit?"
done
; 1c1411
_KrissPCDepositItemsText: ; 1c1411
text "Deposited @"
deciram $d10c, $12
db $0
line "@"
text_from_ram $d086
text "(S)."
prompt
; 1c142d
_KrissPCNoRoomDepositText: ; 1c142d
text "There's no room to"
line "store items."
prompt
; 1c144d
UnknownText_0x1c144d: ; 1c144d
text $52, " turned on"
line "the PC."
prompt
; 1c1462
UnknownText_0x1c1462: ; 1c1462
text "Access whose PC?"
done
; 1c1474
UnknownText_0x1c1474: ; 1c1474
text "BILL's PC"
line "accessed."
para "#MON Storage"
line "System opened."
prompt
; 1c14a4
UnknownText_0x1c14a4: ; 1c14a4
text "Accessed own PC."
para "Item Storage"
line "System opened."
prompt
; 1c14d2
UnknownText_0x1c14d2: ; 1c14d2
text "PROF.OAK's PC"
line "accessed."
para "#DEX Rating"
line "System opened."
prompt
; 1c1505
UnknownText_0x1c1505: ; 1c1505
text "…"
line "Link closed…"
done
; 1c1515
_OakPCText1: ; 1c1515
text "Want to get your"
line "#DEX rated?"
done
; 1c1533
_OakPCText2: ; 1c1533
text "Current #DEX"
line "completion level:"
prompt
; 1c1553
_OakPCText3: ; 1c1553
text_from_ram $d099
text " #MON seen"
line "@"
text_from_ram $d0ac
text " #MON owned"
para "PROF.OAK's"
line "Rating:"
done
; 1c1585
_OakRating01: ; 1c1585
text "Look for #MON"
line "in grassy areas!"
done
; 1c15a5
_OakRating02: ; 1c15a5
text "Good. I see you"
line "understand how to"
cont "use # BALLS."
done
; 1c15d5
_OakRating03: ; 1c15d5
text "You're getting"
line "good at this."
para "But you have a"
line "long way to go."
done
; 1c1611
_OakRating04: ; 1c1611
text "You need to fill"
line "up the #DEX."
para "Catch different"
line "kinds of #MON!"
done
; 1c164f
_OakRating05: ; 1c164f
text "You're trying--I"
line "can see that."
para "Your #DEX is"
line "coming together."
done
; 1c168c
_OakRating06: ; 1c168c
text "To evolve, some"
line "#MON grow,"
para "others use the"
line "effects of STONES."
done
; 1c16ca
_OakRating07: ; 1c16ca
text "Have you gotten a"
line "fishing ROD? You"
para "can catch #MON"
line "by fishing."
done
; 1c1709
_OakRating08: ; 1c1709
text "Excellent! You"
line "seem to like col-"
cont "lecting things!"
done
; 1c173b
_OakRating09: ; 1c173b
text "Some #MON only"
line "appear during"
para "certain times of"
line "the day."
done
; 1c1773
_OakRating10: ; 1c1773
text "Your #DEX is"
line "filling up. Keep"
cont "up the good work!"
done
; 1c17a4
_OakRating11: ; 1c17a4
text "I'm impressed."
line "You're evolving"
para "#MON, not just"
line "catching them."
done
; 1c17e0
_OakRating12: ; 1c17e0
text "Have you met KURT?"
line "His custom BALLS"
cont "should help."
done
; 1c1812
_OakRating13: ; 1c1812
text "Wow. You've found"
line "more #MON than"
para "the last #DEX"
line "research project."
done
; 1c1853
_OakRating14: ; 1c1853
text "Are you trading"
line "your #MON?"
para "It's tough to do"
line "this alone!"
done
; 1c188b
_OakRating15: ; 1c188b
text "Wow! You've hit"
line "200! Your #DEX"
cont "is looking great!"
done
; 1c18bc
_OakRating16: ; 1c18bc
text "You've found so"
line "many #MON!"
para "You've really"
line "helped my studies!"
done
; 1c18f7
_OakRating17: ; 1c18f7
text "Magnificent! You"
line "could become a"
para "#MON professor"
line "right now!"
done
; 1c1932
_OakRating18: ; 1c1932
text "Your #DEX is"
line "amazing! You're"
para "ready to turn"
line "professional!"
done
; 1c196b
_OakRating19: ; 1c196b
text "Whoa! A perfect"
line "#DEX! I've"
para "dreamt about this!"
line "Congratulations!"
done
; 1c19aa
_OakPCText4: ; 1c19aa
text "The link to PROF."
line "OAK's PC closed."
done
; 1c19cd
UnknownText_0x1c19cd: ; 1c19cd
text "Triple-theme"
line "trainer ranking!", $51
db "The SAVE file you"
line "just sent might", $55
db "make the rankings!", $51
db $57
; 1c1a22
UnknownText_0x1c1a22: ; 1c1a22
text "There is no"
line "ranking data.", $51
db "Link to obtain"
line "ranking data.", $51
db $57
; 1c1a5b
UnknownText_0x1c1a5b: ; 1c1a5b
text " , yeah!"
done
; 1c1a65
UnknownText_0x1c1a65: ; 1c1a65
text "Darn…"
done
; 1c1a6c
UnknownText_0x1c1a6c: ; 1c1a6c
text "Would you like to"
line "end the Contest?"
done
; 1c1a90
UnknownText_0x1c1a90: ; 1c1a90
text "Toss out how many"
line "@"
text_from_ram $d086
text "(S)?"
done
; 1c1aad
UnknownText_0x1c1aad: ; 1c1aad
text "Throw away @"
deciram $d10c, $12
db $0
line "@"
text_from_ram $d086
text "(S)?"
done
; 1c1aca
UnknownText_0x1c1aca: ; 1c1aca
text "Discarded"
line "@"
text_from_ram $d073
text "(S)."
prompt
; 1c1adf
UnknownText_0x1c1adf: ; 1c1adf
text "That's too impor-"
line "tant to toss out!"
prompt
; 1c1b03
UnknownText_0x1c1b03: ; 1c1b03
text "OAK: ", $52, "!"
line "This isn't the"
cont "time to use that!"
done
; 1c1b2c
UnknownText_0x1c1b2c: ; 1c1b2c
text "Took @"
text_from_ram $d050
text "'s"
line "@"
text_from_ram $d073
text " and"
para "made it hold"
line "@"
text_from_ram $d086
text "."
prompt
; 1c1b57
UnknownText_0x1c1b57: ; 1c1b57
text "Made @"
text_from_ram $d050
db $0
line "hold @"
text_from_ram $d086
text "."
prompt
; 1c1b6f
UnknownText_0x1c1b6f: ; 1c1b6f
text "Please remove the"
line "MAIL first."
prompt
; 1c1b8e
UnknownText_0x1c1b8e: ; 1c1b8e
text_from_ram $d050
text " isn't"
line "holding anything."
prompt
; 1c1baa
UnknownText_0x1c1baa: ; 1c1baa
text "Item storage space"
line "full."
prompt
; 1c1bc4
UnknownText_0x1c1bc4: ; 1c1bc4
text "Took @"
text_from_ram $d073
db $0
line "from @"
text_from_ram $d050
text "."
prompt
; 1c1bdc
UnknownText_0x1c1bdc: ; 1c1bdc
text_from_ram $d050
text " is"
line "already holding"
para "@"
text_from_ram $d073
text "."
line "Switch items?"
done
; 1c1c09
UnknownText_0x1c1c09: ; 1c1c09
text "This item can't be"
line "held."
prompt
; 1c1c22
UnknownText_0x1c1c22: ; 1c1c22
text "The MAIL will lose"
line "its message. OK?"
done
; 1c1c47
UnknownText_0x1c1c47: ; 1c1c47
text "MAIL detached from"
line "@"
text_from_ram $d073
text "."
prompt
; 1c1c62
UnknownText_0x1c1c62: ; 1c1c62
text "There's no space"
line "for removing MAIL."
prompt
; 1c1c86
UnknownText_0x1c1c86: ; 1c1c86
text "Send the removed"
line "MAIL to your PC?"
done
; 1c1ca9
UnknownText_0x1c1ca9: ; 1c1ca9
text "Your PC's MAILBOX"
line "is full."
prompt
; 1c1cc4
UnknownText_0x1c1cc4: ; 1c1cc4
text "The MAIL was sent"
line "to your PC."
prompt
; 1c1ce3
UnknownText_0x1c1ce3: ; 1c1ce3
text "Not enough HP!"
prompt
; 1c1cf3
UnknownText_0x1c1cf3: ; 1c1cf3
text "An item in your"
line "PACK may be"
para "registered for use"
line "on SELECT Button."
done
; 1c1d35
_OakText1: ; 1c1d35
text "Hello! Sorry to"
line "keep you waiting!"
para "Welcome to the"
line "world of #MON!"
para "My name is OAK."
para "People call me the"
line "#MON PROF."
prompt
; 1c1da4
_OakText2: ; 1c1da4
text "This world is in-"
line "habited by crea-", $55
db "tures that we call", $55
db "#MON.@"
db "@"
; 1c1de2
_OakText3: ; 1c1de2
text_waitbutton
db "@"
; 1c1de4
UnknownText_0x1c1de4: ; 1c1de4
db "@"
; 1c1de5
_OakText4: ; 1c1de5
text "People and #MON"
line "live together by"
para "supporting each"
line "other."
para "Some people play"
line "with #MON, some"
cont "battle with them."
prompt
; 1c1e51
_OakText5: ; 1c1e51
text "But we don't know"
line "everything about"
cont "#MON yet."
para "There are still"
line "many mysteries to"
cont "solve."
para "That's why I study"
line "#MON every day."
prompt
; 1c1ec9
|