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