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
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
|
TEXT_1 EQU $20
TEXT_2 EQU $21
TEXT_3 EQU $22
TEXT_4 EQU $23
TEXT_5 EQU $24
TEXT_6 EQU $25
TEXT_7 EQU $26
TEXT_8 EQU $27
TEXT_9 EQU $28
TEXT_10 EQU $29
TEXT_11 EQU $2a
POKEDEX_TEXT EQU $2b
MOVE_NAMES EQU $2c
INCLUDE "macros.asm"
SECTION "Text 1", ROMX, BANK[TEXT_1]
_CardKeySuccessText1:: ; 80000 (20:4000)
text "Bingo!@@"
_CardKeySuccessText2:: ; 80009 (20:4009)
db $0
line "The CARD KEY"
cont "opened the door!"
done
_CardKeyFailText:: ; 80029 (20:4029)
text "Darn! It needs a"
line "CARD KEY!"
done
_TrainerNameText:: ; 80045 (20:4045)
TX_RAM $cd6d
text ": @@"
_NoNibbleText:: ; 8004d (20:404d)
text "Not even a nibble!"
prompt
_NothingHereText:: ; 80061 (20:4061)
text "Looks like there's"
line "nothing here."
prompt
_ItsABiteText:: ; 80082 (20:4082)
text "Oh!"
line "It's a bite!"
prompt
_ExclamationText:: ; 80093 (20:4093)
text "!"
done
_GroundRoseText:: ; 80096 (20:4096)
text "Ground rose up"
line "somewhere!"
done
_BoulderText:: ; 800b1 (20:40b1)
text "This requires"
line "STRENGTH to move!"
done
_MartSignText:: ; 800d2 (20:40d2)
text "All your item"
line "needs fulfilled!"
cont "#MON MART"
done
_PokeCenterSignText:: ; 800fc (20:40fc)
text "Heal Your #MON!"
line "#MON CENTER"
done
_FoundItemText:: ; 80119 (20:4119)
text $52, " found"
line "@"
TX_RAM $cf4b
text "!@@"
_NoMoreRoomForItemText:: ; 8012a (20:412a)
text "No more room for"
line "items!"
done
_OaksAideHiText:: ; 80143 (20:4143)
text "Hi! Remember me?"
line "I'm PROF.OAK's"
cont "AIDE!"
para "If you caught @"
TX_NUM $ffdb, 1, 3
db $0
line "kinds of #MON,"
cont "I'm supposed to"
cont "give you an"
cont "@"
TX_RAM $cc5b
text "!"
para "So, ", $52, "! Have"
line "you caught at"
cont "least @"
TX_NUM $ffdb, 1, 3
text " kinds of"
cont "#MON?"
done
_OaksAideUhOhText:: ; 801e4 (20:41e4)
text "Let's see..."
line "Uh-oh! You have"
cont "caught only @"
TX_NUM $ffdd, 1, 3
db $0
cont "kinds of #MON!"
para "You need @"
TX_NUM $ffdb, 1, 3
text " kinds"
line "if you want the"
cont "@"
TX_RAM $cc5b
text "."
done
_OaksAideComeBackText:: ; 80250 (20:4250)
text "Oh. I see."
para "When you get @"
TX_NUM $ffdb, 1, 3
db $0
line "kinds, come back"
cont "for @"
TX_RAM $cc5b
text "."
done
_OaksAideHereYouGoText:: ; 8028c (20:428c)
text "Great! You have"
line "caught @"
TX_NUM $ffdd, 1, 3
text " kinds "
cont "of #MON!"
cont "Congratulations!"
para "Here you go!"
prompt
_OaksAideGotItemText:: ; 802d9 (20:42d9)
text $52, " got the"
line "@"
TX_RAM $cc5b
text "!@@"
_OaksAideNoRoomText:: ; 802ec (20:42ec)
text "Oh! I see you"
line "don't have any"
cont "room for the"
cont "@"
TX_RAM $cc5b
text "."
done
INCLUDE "text/maps/viridian_forest.asm"
INCLUDE "text/maps/mt_moon_1f.asm"
INCLUDE "text/maps/mt_moon_b1f.asm"
INCLUDE "text/maps/mt_moon_b2f.asm"
INCLUDE "text/maps/ss_anne_1.asm"
INCLUDE "text/maps/ss_anne_2.asm"
INCLUDE "text/maps/ss_anne_3.asm"
INCLUDE "text/maps/ss_anne_4.asm"
INCLUDE "text/maps/ss_anne_5.asm"
INCLUDE "text/maps/ss_anne_6.asm"
INCLUDE "text/maps/ss_anne_7.asm"
INCLUDE "text/maps/ss_anne_8.asm"
INCLUDE "text/maps/ss_anne_9.asm"
INCLUDE "text/maps/ss_anne_10.asm"
INCLUDE "text/maps/victory_road_3f.asm"
INCLUDE "text/maps/rocket_hideout_b1f.asm"
INCLUDE "text/maps/rocket_hideout_b2f.asm"
INCLUDE "text/maps/rocket_hideout_b3f.asm"
INCLUDE "text/maps/rocket_hideout_b4f.asm"
INCLUDE "text/maps/rocket_hideout_elevator.asm"
INCLUDE "text/maps/silph_co_2f.asm"
INCLUDE "text/maps/silph_co_3f.asm"
INCLUDE "text/maps/silph_co_4f.asm"
INCLUDE "text/maps/silph_co_5f_1.asm"
SECTION "Text 2", ROMX, BANK[TEXT_2]
INCLUDE "text/maps/silph_co_5f_2.asm"
INCLUDE "text/maps/silph_co_6f.asm"
INCLUDE "text/maps/silph_co_7f.asm"
INCLUDE "text/maps/silph_co_8f.asm"
INCLUDE "text/maps/silph_co_9f.asm"
INCLUDE "text/maps/silph_co_10f.asm"
INCLUDE "text/maps/silph_co_11f.asm"
INCLUDE "text/maps/mansion_2f.asm"
INCLUDE "text/maps/mansion_3f.asm"
INCLUDE "text/maps/mansion_b1f.asm"
INCLUDE "text/maps/safari_zone_east.asm"
INCLUDE "text/maps/safari_zone_north.asm"
INCLUDE "text/maps/safari_zone_west.asm"
INCLUDE "text/maps/safari_zone_center.asm"
INCLUDE "text/maps/safari_zone_rest_house_1.asm"
INCLUDE "text/maps/safari_zone_secret_house.asm"
INCLUDE "text/maps/safari_zone_rest_house_2.asm"
INCLUDE "text/maps/safari_zone_rest_house_3.asm"
INCLUDE "text/maps/safari_zone_rest_house_4.asm"
INCLUDE "text/maps/unknown_dungeon_1f.asm"
INCLUDE "text/maps/unknown_dungeon_2f.asm"
INCLUDE "text/maps/unknown_dungeon_b1f.asm"
INCLUDE "text/maps/victory_road_1f.asm"
INCLUDE "text/maps/lance.asm"
INCLUDE "text/maps/hall_of_fame.asm"
INCLUDE "text/maps/champion.asm"
INCLUDE "text/maps/lorelei.asm"
INCLUDE "text/maps/bruno.asm"
INCLUDE "text/maps/agatha.asm"
INCLUDE "text/maps/rock_tunnel_b2f_1.asm"
SECTION "Text 3", ROMX, BANK[TEXT_3]
INCLUDE "text/maps/rock_tunnel_b2f_2.asm"
INCLUDE "text/maps/seafoam_islands_1f.asm"
INCLUDE "text/maps/seafoam_islands_b1f.asm"
INCLUDE "text/maps/seafoam_islands_b2f.asm"
INCLUDE "text/maps/seafoam_islands_b3f.asm"
INCLUDE "text/maps/seafoam_islands_b4f.asm"
_AIBattleWithdrawText:: ; 880be (22:40be)
TX_RAM W_TRAINERNAME
text " with-"
line "drew @"
TX_RAM W_ENEMYMONNAME
text "!"
prompt
_AIBattleUseItemText:: ; 880d5 (22:40d5)
TX_RAM W_TRAINERNAME
db $0
line "used @"
TX_RAM $CD6D
db $0
cont "on @"
TX_RAM W_ENEMYMONNAME
text "!"
prompt
_TradeWentToText:: ; 880ef (22:40ef)
TX_RAM $cf4b
text " went"
line "to @"
TX_RAM $d887
text "."
done
_TradeForText:: ; 88103 (22:4103)
text "For ", $52, "'s"
line "@"
TX_RAM $cf4b
text ","
done
_TradeSendsText:: ; 88112 (22:4112)
TX_RAM $d887
text " sends"
line "@"
TX_RAM $cd6d
text "."
done
_TradeWavesFarewellText:: ; 88124 (22:4124)
TX_RAM $d887
text " waves"
line "farewell as"
done
_TradeTransferredText:: ; 8813b (22:413b)
TX_RAM $cd6d
text " is"
line "transferred."
done
_TradeTakeCareText:: ; 88150 (22:4150)
text "Take good care of"
line "@"
TX_RAM $cd6d
text "."
done
_TradeWillTradeText:: ; 8816a (22:416a)
TX_RAM $d887
text " will"
line "trade @"
TX_RAM $cd6d
db $0
done
_TradeforText:: ; 88180 (22:4180)
text "for ", $52, "'s"
line "@"
TX_RAM $cf4b
text "."
done
_PlaySlotMachineText:: ; 8818f (22:418f)
text "A slot machine!"
line "Want to play?"
done
_OutOfCoinsSlotMachineText:: ; 881ae (22:41ae)
text "Darn!"
line "Ran out of coins!"
done
_BetHowManySlotMachineText:: ; 881c7 (22:41c7)
text "Bet how many"
line "coins?"
done
_StartSlotMachineText:: ; 881dc (22:41dc)
text "Start!"
done
_NotEnoughCoinsSlotMachineText:: ; 881e4 (22:41e4)
text "Not enough"
line "coins!"
prompt
_OneMoreGoSlotMachineText:: ; 881f7 (22:41f7)
text "One more "
line "go?"
done
_LinedUpText:: ; 88206 (22:4206)
text " lined up!"
line "Scored @"
TX_RAM $cf4b
text " coins!"
done
_NotThisTimeText:: ; 88226 (22:4226)
text "Not this time!"
prompt
_YeahText:: ; 88236 (22:4236)
text "Yeah!@@"
_DexSeenOwnedText:: ; 8823e (22:423e)
text "#DEX Seen:@"
TX_NUM $cc5b, 1, 3
db $0
line " Owned:@"
TX_NUM $cc5c, 1, 3
db "@"
_DexRatingText:: ; 88267 (22:4267)
text "#DEX Rating", $6d
done
_GymStatueText1:: ; 88275 (22:4275)
TX_RAM wGymCityName
db $0
line "#MON GYM"
cont "LEADER: @"
TX_RAM wGymLeaderName
db $0
para "WINNING TRAINERS:"
line $53
done
_GymStatueText2:: ; 882a5 (22:42a5)
TX_RAM wGymCityName
db $0
line "#MON GYM"
cont "LEADER: @"
TX_RAM wGymLeaderName
db $0
para "WINNING TRAINERS:"
line $53
cont $52
done
_ViridianCityPokecenterGuyText:: ; 882d7 (22:42d7)
text "#MON CENTERs"
line "heal your tired,"
cont "hurt or fainted"
cont "#MON!"
done
_PewterCityPokecenterGuyText:: ; 8830c (22:430c)
text "Yawn!"
para "When JIGGLYPUFF"
line "sings, #MON"
cont "get drowsy..."
para "...Me too..."
line "Snore..."
done
_CeruleanPokecenterGuyText:: ; 88353 (22:4353)
text "BILL has lots of"
line "#MON!"
para "He collects rare"
line "ones too!"
done
_LavenderPokecenterGuyText:: ; 88386 (22:4386)
text "CUBONEs wear"
line "skulls, right?"
para "People will pay a"
line "lot for one!"
done
_MtMoonPokecenterBenchGuyText:: ; 883c2 (22:43c2)
text "If you have too"
line "many #MON, you"
cont "should store them"
cont "via PC!"
done
_RockTunnelPokecenterGuyText:: ; 883fc (22:43fc)
text "I heard that"
line "GHOSTs haunt"
cont "LAVENDER TOWN!"
done
_UnnamedText_624c1:: ; 88426 (22:4426)
text "I wish I could"
line "catch #MON."
done
_UnnamedText_624c6:: ; 88442 (22:4442)
text "I'm tired from"
line "all the fun..."
done
_UnnamedText_624cb:: ; 88460 (22:4460)
text "SILPH's manager"
line "is hiding in the"
cont "SAFARI ZONE."
done
_VermilionPokecenterGuyText:: ; 8848e (22:448e)
text "It is true that a"
line "higher level"
cont "#MON will be"
cont "more powerful..."
para "But, all #MON"
line "will have weak"
cont "points against"
cont "specific types."
para "So, there is no"
line "universally"
cont "strong #MON."
done
_CeladonCityPokecenterGuyText:: ; 88531 (22:4531)
text "If I had a BIKE,"
line "I would go to"
cont "CYCLING ROAD!"
done
_FuchsiaCityPokecenterGuyText:: ; 8855f (22:455f)
text "If you're studying "
line "#MON, visit"
cont "the SAFARI ZONE."
para "It has all sorts"
line "of rare #MON."
done
_CinnabarPokecenterGuyText:: ; 885af (22:45af)
text "#MON can still"
line "learn techniques"
cont "after canceling"
cont "evolution."
para "Evolution can wait"
line "until new moves"
cont "have been learned."
done
_SaffronCityPokecenterGuyText1:: ; 88621 (22:4621)
text "It would be great"
line "if the ELITE FOUR"
cont "came and stomped"
cont "TEAM ROCKET!"
done
_SaffronCityPokecenterGuyText2:: ; 88664 (22:4664)
text "TEAM ROCKET took"
line "off! We can go"
cont "out safely again!"
cont "That's great!"
done
_CeladonCityHotelText:: ; 886a4 (22:46a4)
text "My sis brought me"
line "on this vacation!"
done
_BookcaseText:: ; 886c9 (22:46c9)
text "Crammed full of"
line "#MON books!"
done
_NewBicycleText:: ; 886e6 (22:46e6)
text "A shiny new"
line "BICYCLE!"
done
_PushStartText:: ; 886fc (22:46fc)
text "Push START to"
line "open the MENU!"
done
_SaveOptionText:: ; 8871a (22:471a)
text "The SAVE option is"
line "on the MENU"
cont "screen."
done
_StrengthsAndWeaknessesText:: ; 88742 (22:4742)
text "All #MON types"
line "have strong and"
cont "weak points"
cont "against others."
done
_TimesUpText:: ; 8877e (22:477e)
text "PA: Ding-dong!"
para "Time's up!"
prompt
_GameOverText:: ; 88798 (22:4798)
text "PA: Your SAFARI"
line "GAME is over!"
done
_CinnabarGymQuizIntroText:: ; 887b7 (22:47b7)
text "#MON Quiz!"
para "Get it right and"
line "the door opens to"
cont "the next room!"
para "Get it wrong and"
line "face a trainer!"
para "If you want to"
line "conserve your"
cont "#MON for the"
cont "GYM LEADER..."
para "Then get it right!"
line "Here we go!"
prompt
_CinnabarQuizQuestionsText1:: ; 8886d (22:486d)
text "CATERPIE evolves"
line "into BUTTERFREE?"
done
_CinnabarQuizQuestionsText2:: ; 88890 (22:4890)
text "There are 9"
line "certified #MON"
cont "LEAGUE BADGEs?"
done
_CinnabarQuizQuestionsText3:: ; 888bb (22:48bb)
text "POLIWAG evolves 3"
line "times?"
done
_CinnabarQuizQuestionsText4:: ; 888d5 (22:48d5)
text "Are thunder moves"
line "effective against"
cont "ground element-"
cont "type #MON?"
done
_CinnabarQuizQuestionsText5:: ; 88915 (22:4915)
text "#MON of the"
line "same kind and"
cont "level are not"
cont "identical?"
done
_CinnabarQuizQuestionsText6:: ; 88949 (22:4949)
text "TM28 contains"
line "TOMBSTONER?"
done
_CinnabarGymQuizCorrectText:: ; 88964 (22:4964)
text "You're absolutely"
line "correct!"
para "Go on through!@@"
_CinnabarGymQuizIncorrectText:: ; 8898f (22:498f)
text "Sorry! Bad call!"
prompt
_MagazinesText:: ; 889a1 (22:49a1)
text "#MON magazines!"
para "#MON notebooks!"
para "#MON graphs!"
done
_BillsHouseMonitorText:: ; 889cf (22:49cf)
text "TELEPORTER is"
line "displayed on the"
cont "PC monitor."
done
_BillsHouseInitiatedText:: ; 889fb (22:49fb)
text $52, " initiated"
line "TELEPORTER's Cell"
cont "Separator!@@"
_BillsHousePokemonListText1:: ; 88a25 (22:4a25)
text "BILL's favorite"
line "#MON list!"
prompt
_BillsHousePokemonListText2:: ; 88a40 (22:4a40)
text "Which #MON do"
line "you want to see?"
done
_OakLabEmailText:: ; 88a60 (22:4a60)
text "There's an e-mail"
line "message here!"
para "..."
para "Calling all"
line "#MON trainers!"
para "The elite trainers"
line "of #MON LEAGUE"
cont "are ready to take"
cont "on all comers!"
para "Bring your best"
line "#MON and see"
cont "how you rate as a"
cont "trainer!"
para "#MON LEAGUE HQ"
line "INDIGO PLATEAU"
para "PS: PROF.OAK,"
line "please visit us!"
cont "..."
done
_GameCornerCoinCaseText:: ; 88b5b (22:4b5b)
text "A COIN CASE is"
line "required!"
done
_GameCornerNoCoinsText:: ; 88b75 (22:4b75)
text "You don't have"
line "any coins!"
done
_GameCornerOutOfOrderText:: ; 88b8f (22:4b8f)
text "OUT OF ORDER"
line "This is broken."
done
_GameCornerOutToLunchText:: ; 88bad (22:4bad)
text "OUT TO LUNCH"
line "This is reserved."
done
_GameCornerSomeonesKeysText:: ; 88bcd (22:4bcd)
text "Someone's keys!"
line "They'll be back."
done
_JustAMomentText:: ; 88bed (22:4bed)
text "Just a moment."
done
TMNotebookText:: ; 88bfd (22:4bfd)
text "It's a pamphlet"
line "on TMs."
para "..."
para "There are 50 TMs"
line "in all."
para "There are also 5"
line "HMs that can be"
cont "used repeatedly."
para "SILPH CO.@@"
_TurnPageText:: ; 88c6f (22:4c6f)
text "Turn the page?"
done
_ViridianSchoolNotebookText5:: ; 88c7f (22:4c7f)
text "GIRL: Hey! Don't"
line "look at my notes!@@"
_ViridianSchoolNotebookText1:: ; 88ca3 (22:4ca3)
text "Looked at the"
line "notebook!"
para "First page..."
para "# BALLs are"
line "used to catch"
cont "#MON."
para "Up to 6 #MON"
line "can be carried."
para "People who raise"
line "and make #MON"
cont "fight are called"
cont "#MON trainers."
prompt
_ViridianSchoolNotebookText2:: ; 88d46 (22:4d46)
text "Second page..."
para "A healthy #MON"
line "may be hard to"
cont "catch, so weaken"
cont "it first!"
para "Poison, burns and"
line "other damage are"
cont "effective!"
prompt
_ViridianSchoolNotebookText3:: ; 88dbd (22:4dbd)
text "Third page..."
para "#MON trainers"
line "seek others to"
cont "engage in #MON"
cont "fights."
para "Battles are"
line "constantly fought"
cont "at #MON GYMs."
prompt
_ViridianSchoolNotebookText4:: ; 88e2c (22:4e2c)
text "Fourth page..."
para "The goal for"
line "#MON trainers"
cont "is to beat the "
cont "top 8 #MON"
cont "GYM LEADERs."
para "Do so to earn the"
line "right to face..."
para "The ELITE FOUR of"
line "#MON LEAGUE!"
prompt
_UnnamedText_52a10:: ; 88ec1 (22:4ec1)
text "Enemies on every"
line "side!"
done
_UnnamedText_52a1d:: ; 88ed9 (22:4ed9)
text "What goes around"
line "comes around!"
done
_FightingDojoText:: ; 88ef9 (22:4ef9)
text "FIGHTING DOJO"
done
_IndigoPlateauHQText:: ; 88f08 (22:4f08)
text "INDIGO PLATEAU"
line "#MON LEAGUE HQ"
done
_RedBedroomSNESText:: ; 88f27 (22:4f27)
text $52, " is"
line "playing the SNES!"
cont "...Okay!"
cont "It's time to go!"
done
_Route15UpstairsBinocularsText:: ; 88f58 (22:4f58)
text "Looked into the"
line "binoculars..."
para "A large, shining"
line "bird is flying"
cont "toward the sea."
done
_AerodactylFossilText:: ; 88fa7 (22:4fa7)
text "AERODACTYL Fossil"
line "A primitive and"
cont "rare #MON."
done
_KabutopsFossilText:: ; 88fd5 (22:4fd5)
text "KABUTOPS Fossil"
line "A primitive and"
cont "rare #MON."
done
_LinkCableHelpText1:: ; 89001 (22:5001)
text "TRAINER TIPS"
para "Using a Game Link"
line "Cable"
prompt
_LinkCableHelpText2:: ; 89027 (22:5027)
text "Which heading do"
line "you want to read?"
done
_LinkCableInfoText1:: ; 8904b (22:504b)
text "When you have"
line "linked your GAME"
cont "BOY with another"
cont "GAME BOY, talk to"
cont "the attendant on"
cont "the right in any"
cont "#MON CENTER."
prompt
_LinkCableInfoText2:: ; 890bd (22:50bd)
text "COLOSSEUM lets"
line "you play against"
cont "a friend."
prompt
_LinkCableInfoText3:: ; 890e8 (22:50e8)
text "TRADE CENTER is"
line "used for trading"
cont "#MON."
prompt
_ViridianSchoolBlackboardText1:: ; 89110 (22:5110)
text "The blackboard"
line "describes #MON"
cont "STATUS changes"
cont "during battles."
prompt
_ViridianSchoolBlackboardText2:: ; 8914e (22:514e)
text "Which heading do"
line "you want to read?"
done
_ViridianBlackboardSleepText:: ; 89172 (22:5172)
text "A #MON can't"
line "attack if it's"
cont "asleep!"
para "#MON will stay"
line "asleep even after"
cont "battles."
para "Use AWAKENING to"
line "wake them up!"
prompt
_ViridianBlackboardPoisonText:: ; 891de (22:51de)
text "When poisoned, a"
line "#MON's health"
cont "steadily drops."
para "Poison lingers"
line "after battles."
para "Use an ANTIDOTE"
line "to cure poison!"
prompt
_ViridianBlackbaordPrlzText:: ; 8924b (22:524b)
text "Paralysis could"
line "make #MON"
cont "moves misfire!"
para "Paralysis remains"
line "after battles."
para "Use PARLYZ HEAL"
line "for treatment!"
prompt
_ViridianBlackboardBurnText:: ; 892b5 (22:52b5)
text "A burn reduces"
line "power and speed."
cont "It also causes"
cont "ongoing damage."
para "Burns remain"
line "after battles."
para "Use BURN HEAL to"
line "cure a burn!"
prompt
_ViridianBlackboardFrozenText:: ; 8932f (22:532f)
text "If frozen, a"
line "#MON becomes"
cont "totally immobile!"
para "It stays frozen"
line "even after the"
cont "battle ends."
para "Use ICE HEAL to"
line "thaw out #MON!"
prompt
_VermilionGymTrashText:: ; 893a7 (22:53a7)
text "Nope, there's"
line "only trash here."
done
_VermilionGymTrashSuccesText1:: ; 893c6 (22:53c6)
text "Hey! There's a"
line "switch under the"
cont "trash!"
cont "Turn it on!"
para "The 1st electric"
line "lock opened!@@"
_VermilionGymTrashSuccesText2:: ; 89418 (22:5418)
text "Hey! There's"
line "another switch"
cont "under the trash!"
cont "Turn it on!"
prompt
_VermilionGymTrashSuccesText3:: ; 89451 (22:5451)
text "The 2nd electric"
line "lock opened!"
para "The motorized door"
line "opened!@@"
_VermilionGymTrashFailText:: ; 8948c (22:548c)
text "Nope! There's"
line "only trash here."
cont "Hey! The electric"
cont "locks were reset!@@"
_FoundHiddenItemText:: ; 894d0 (22:54d0)
text $52, " found"
line "@"
TX_RAM $cd6d
text "!@@"
_HiddenItemBagFullText:: ; 894e1 (22:54e1)
text "But, ", $52, " has"
line "no more room for"
cont "other items!"
done
_FoundHiddenCoinsText:: ; 8950b (22:550b)
text $52, " found"
line "@"
db $2, $a0, $ff, $c2 ; XXX $2
text " coins!@@"
_FoundHiddenCoins2Text:: ; 89523 (22:5523)
text $52, " found"
line "@"
db $2, $a0, $ff, $c2 ; XXX $2 probably coins
text " coins!@@"
_DroppedHiddenCoinsText:: ; 8953b (22:553b)
db $0
para "Oops! Dropped"
line "some coins!"
done
_IndigoPlateauStatuesText1:: ; 89557 (22:5557)
text "INDIGO PLATEAU"
prompt
_IndigoPlateauStatuesText2:: ; 89567 (22:5567)
text "The ultimate goal"
line "of trainers!"
cont "#MON LEAGUE HQ"
done
_IndigoPlateauStatuesText3:: ; 89596 (22:5596)
text "The highest"
line "#MON authority"
cont "#MON LEAGUE HQ"
done
_PokemonBooksText:: ; 895c1 (22:55c1)
text "Crammed full of"
line "#MON books!"
done
_DiglettSculptureText:: ; 895de (22:55de)
text "It's a sculpture"
line "of DIGLETT."
done
_ElevatorText:: ; 895fb (22:55fb)
text "This is an"
line "elevator."
done
_TownMapText:: ; 89611 (22:5611)
text "A TOWN MAP.@@"
_PokemonStuffText:: ; 8961f (22:561f)
text "Wow! Tons of"
line "#MON stuff!"
done
_OutOfSafariBallsText:: ; 89639 (22:5639)
text "PA: Ding-dong!"
para "You are out of"
line "SAFARI BALLs!"
prompt
_WildRanText:: ; 89666 (22:5666)
text "Wild @"
TX_RAM W_ENEMYMONNAME
db $0
line "ran!"
prompt
_EnemyRanText:: ; 89677 (22:5677)
text "Enemy @"
TX_RAM W_ENEMYMONNAME
db $0
line "ran!"
prompt
_HurtByPoisonText:: ; 89689 (22:5689)
text $5a, "'s"
line "hurt by poison!"
prompt
_HurtByBurnText:: ; 8969d (22:569d)
text $5a, "'s"
line "hurt by the burn!"
prompt
_HurtByLeechSeedText:: ; 896b3 (22:56b3)
text "LEECH SEED saps"
line $5a, "!"
prompt
_EnemyMonFaintedText:: ; 0x896c7
text "Enemy @"
TX_RAM W_ENEMYMONNAME
db $0
line "fainted!"
prompt
_MoneyForWinningText:: ; 896dd (22:56dd)
text $52, " got ¥@"
;XXX $2
db $2, $79, $d0, $c3
db $0
line "for winning!"
prompt
_TrainerDefeatedText:: ; 896f9 (22:56f9)
text $52, " defeated"
line "@"
TX_RAM W_TRAINERNAME ; 0x89706
text "!"
prompt
_PlayerMonFaintedText:: ; 8970c (22:570c)
TX_RAM W_PLAYERMONNAME
db $0
line "fainted!"
prompt
_UseNextMonText:: ; 8971a (22:571a)
text "Use next #MON?"
done
_Sony1WinText:: ; 8972a (22:572a)
text $53, ": Yeah! Am"
line "I great or what?"
prompt
_PlayerBlackedOutText2:: ; 89748 (22:5748)
text $52, " is out of"
line "useable #MON!"
para $52, " blacked"
line "out!"
prompt
_LinkBattleLostText:: ; 89772 (22:5772)
text $52, " lost to"
line "@"
TX_RAM W_TRAINERNAME ; 0x8977e
text "!"
prompt
_TrainerAboutToUseText:: ; 89784 (22:5784)
TX_RAM W_TRAINERNAME
text " is"
line "about to use"
cont"@"
TX_RAM W_ENEMYMONNAME
text "!"
para "Will ", $52
line "change #MON?"
done
_TrainerSentOutText:: ; 897b4 (22:57b4)
TX_RAM W_TRAINERNAME
text " sent"
line "out @"
TX_RAM W_ENEMYMONNAME
text "!"
done
_NoWillText:: ; 897c9 (22:57c9)
text "There's no will"
line "to fight!"
prompt
_CantEscapeText:: ; 897e3 (22:57e3)
text "Can't escape!"
prompt
_NoRunningText:: ; 897f1 (22:57f1)
text "No! There's no"
line "running from a"
cont "trainer battle!"
prompt
_GotAwayText:: ; 8981f (22:581f)
text "Got away safely!"
prompt
_ItemsCantBeUsedHereText:: ; 89831 (22:5831)
text "Items can't be"
line "used here."
prompt
_AlreadyOutText:: ; 8984b (22:584b)
TX_RAM W_PLAYERMONNAME
text " is"
line "already out!"
prompt
_MoveNoPPText:: ; 89860 (22:5860)
text "No PP left for"
line "this move!"
prompt
_MoveDisabledText:: ; 8987b (22:587b)
text "The move is"
line "disabled!"
prompt
_NoMovesLeftText:: ; 89892 (22:5892)
TX_RAM W_PLAYERMONNAME
text " has no"
line "moves left!"
done
_MultiHitText:: ; 898aa (22:58aa)
text "Hit the enemy"
line "@"
TX_NUM W_NUMHITS,1,1
text " times!"
prompt
_ScaredText:: ; 898c7 (22:58c7)
TX_RAM W_PLAYERMONNAME
text " is too"
line "scared to move!"
prompt
_GetOutText:: ; 898e3 (22:58e3)
text "GHOST: Get out..."
line "Get out..."
prompt
_FastAsleepText:: ; 89901 (22:5901)
text $5A
line "is fast asleep!"
prompt
_WokeUpText:: ; 89914 (22:5914)
text $5A
line "woke up!"
prompt
_IsFrozenText:: ; 89920 (22:5920)
text $5A
line "is frozen solid!"
prompt
_FullyParalyzedText:: ; 89934 (22:5934)
text $5A,"'s"
line "fully paralyzed!"
prompt
_FlinchedText:: ; 89949 (22:5949)
text $5A
line "flinched!"
prompt
_MustRechargeText:: ; 89956 (22:5956)
text $5A
line "must recharge!"
prompt
_DisabledNoMoreText:: ; 89968 (22:5968)
text $5A,"'s"
line "disabled no more!"
prompt
_IsConfusedText:: ; 8997e (22:597e)
text $5A
line "is confused!"
prompt
_HurtItselfText:: ; 8998e (22:598e)
text "It hurt itself in"
line "its confusion!"
prompt
_ConfusedNoMoreText:: ; 899b0 (22:59b0)
text $5A,"'s"
line "confused no more!"
prompt
_SavingEnergyText:: ; 899c6 (22:59c6)
text $5A
line "is saving energy!"
prompt
_UnleashedEnergyText:: ; 899db (22:59db)
text $5A
line "unleashed energy!"
prompt
_ThrashingAboutText:: ; 899f0 (22:59f0)
text $5A,"'s"
line "thrashing about!"
done
_AttackContinuesText:: ; 89a05 (22:5a05)
text $5A,"'s"
line "attack continues!"
done
_CantMoveText:: ; 89a1b (22:5a1b)
text $5A
line "can't move!"
prompt
_MoveIsDisabledText:: ; 89a29 (22:5a29)
text $5a, "'s"
line "@"
TX_RAM $cd6d
text " is"
cont "disabled!"
prompt
_MonName1Text:: ; 89a40 (22:5a40)
text $5a, "@@"
_Used1Text:: ; 89a44 (22:5a44)
db $0
line "used @@"
_Used2Text:: ; 89a4d (22:5a4d)
db $0
line "used @@"
_InsteadText:: ; 89a56 (22:5a56)
text "instead,"
cont "@@"
_CF4BText:: ; 89a62 (22:5a62)
TX_RAM $cf4b
text "@"
_ExclamationPoint1Text:: ; 89a67 (22:5a67)
text "!"
done
_ExclamationPoint2Text:: ; 89a6a (22:5a6a)
text "!"
done
_ExclamationPoint3Text:: ; 89a6d (22:5a6d)
text "!"
done
_ExclamationPoint4Text:: ; 89a70 (22:5a70)
text "!"
done
_ExclamationPoint5Text:: ; 89a73 (22:5a73)
text "!"
done
_AttackMissedText:: ; 89a76 (22:5a76)
text $5a, "'s"
line "attack missed!"
prompt
_KeptGoingAndCrashedText:: ; 89a89 (22:5a89)
text $5a
line "kept going and"
cont "crashed!"
prompt
_UnaffectedText:: ; 89aa4 (22:5aa4)
text $59, "'s"
line "unaffected!"
prompt
_DoesntAffectMonText:: ; 89ab4 (22:5ab4)
text "It doesn't affect"
line $59, "!"
prompt
_CriticalHitText:: ; 89ac9 (22:5ac9)
text "Critical hit!"
prompt
_OHKOText:: ; 89ad8 (22:5ad8)
text "One-hit KO!"
prompt
_LoafingAroundText:: ; 89ae5 (22:5ae5)
TX_RAM W_PLAYERMONNAME
text " is"
line "loafing around."
prompt
_BeganToNapText:: ; 89afd (22:5afd)
TX_RAM W_PLAYERMONNAME
text " began"
line "to nap!"
prompt
_WontObeyText:: ; 89b10 (22:5b10)
TX_RAM W_PLAYERMONNAME
text " won't"
line "obey!"
prompt
_TurnedAwayText:: ; 89b20 (22:5b20)
TX_RAM W_PLAYERMONNAME
text " turned"
line "away!"
prompt
_IgnoredOrdersText:: ; 89b32 (22:5b32)
TX_RAM W_PLAYERMONNAME
db $0
line "ignored orders!"
prompt
_SubstituteTookDamageText:: ; 89b47 (22:5b47)
text "The SUBSTITUTE"
line "took damage for"
cont $59, "!"
prompt
_SubstituteBrokeText:: ; 89b6a (22:5b6a)
text $59, "'s"
line "SUBSTITUTE broke!"
prompt
_BuildingRageText:: ; 89b80 (22:5b80)
text $5a, "'s"
line "RAGE is building!"
prompt
_MirrorMoveFailedText:: ; 89b96 (22:5b96)
text "The MIRROR MOVE"
next "failed!"
prompt
_HitXTimesText:: ; 89baf (22:5baf)
text "Hit @"
TX_NUM $cd05, 1, 1
text " times!"
prompt
_GainedText:: ; 89bc2 (22:5bc2)
TX_RAM $cd6d
text " gained"
line "@@"
_WithExpAllText:: ; 89bd0 (22:5bd0)
text "with EXP.ALL,"
cont "@@"
_BoostedText:: ; 89be1 (22:5be1)
text "a boosted"
cont "@@"
_ExpPointsText:: ; 89bee (22:5bee)
TX_NUM $cf4b, 2, 4
text " EXP. Points!"
prompt
_GrewLevelText:: ; 89c01 (22:5c01)
TX_RAM $cd6d
text " grew"
line "to level @"
TX_NUM $d127, 1, 3
text "!@@"
_WildMonAppearedText:: ; 89c1d (22:5c1d)
text "Wild @"
TX_RAM W_ENEMYMONNAME
db $0
line "appeared!"
prompt
_HookedMonAttackedText:: ; 89c33 (22:5c33)
text "The hooked"
line "@"
TX_RAM W_ENEMYMONNAME
db $0
cont "attacked!"
prompt
_EnemyAppearedText:: ; 89c4f (22:5c4f)
TX_RAM W_ENEMYMONNAME
db $0
line "appeared!"
prompt
_TrainerWantsToFightText:: ; 89c5e (22:5c5e)
TX_RAM W_TRAINERNAME
text " wants"
line "to fight!"
prompt
_UnveiledGhostText:: ; 89c73 (22:5c73)
text "SILPH SCOPE"
line "unveiled the"
cont "GHOST's identity!"
prompt
_GhostCantBeIDdText:: ; 89c9e (22:5c9e)
text "Darn! The GHOST"
line "can't be ID'd!"
prompt
_GoText:: ; 89cbc (22:5cbc)
text "Go! @@"
_DoItText:: ; 89cc3 (22:5cc3)
text "Do it! @@"
_GetmText:: ; 89ccd (22:5ccd)
text "Get'm! @@"
_EnemysWeakText:: ; 89cd6 (22:5cd6)
text "The enemy's weak!"
line "Get'm! @@"
_PlayerMon1Text:: ; 89cf0 (22:5cf0)
TX_RAM W_PLAYERMONNAME
text "!"
done
_PlayerMon2Text:: ; 89cf6 (22:5cf6)
TX_RAM W_PLAYERMONNAME
text " @@"
_EnoughText:: ; 89cfd (22:5cfd)
text "enough!@@"
_OKExclamationText:: ; 89d07 (22:5d07)
text "OK!@@"
_GoodText:: ; 89d0d (22:5d0d)
text "good!@@"
_ComeBackText:: ; 89d15 (22:5d15)
db $0
line "Come back!"
done
_SupperEffectiveText:: ; 89d22 (22:5d22)
text "It's super"
line "effective!"
prompt
_NotVeryEffectiveText:: ; 89d38 (22:5d38)
text "It's not very"
line "effective..."
prompt
_SafariZoneEatingText:: ; 89d53 (22:5d53)
text "Wild @"
TX_RAM W_ENEMYMONNAME
db $0
line "is eating!"
prompt
_SafariZoneAngryText:: ; 89d6a (22:5d6a)
text "Wild @"
TX_RAM W_ENEMYMONNAME
db $0
line "is angry!"
prompt
; money related
; XXX $2 BCD macro
; $2, pointer, byte
_PickUpPayDayMoneyText:: ; 89d80 (22:5d80)
text $52, " picked up"
line "¥@"
db $2, $e5, $cc, $c3
text "!"
prompt
_ClearSaveDataText:: ; 89d96 (22:5d96)
text "Clear all saved"
line "data?"
done
_WhichFloorText:: ; 89dad (22:5dad)
text "Which floor do"
line "you want? "
done
_PartyMenuNormalText:: ; 89dc8 (22:5dc8)
text "Choose a #MON."
done
_PartyMenuItemUseText:: ; 89dd8 (22:5dd8)
text "Use item on which"
line "#MON?"
done
_PartyMenuBattleText:: ; 89df1 (22:5df1)
text "Bring out which"
line "#MON?"
done
_PartyMenuUseTMText:: ; 89e08 (22:5e08)
text "Use TM on which"
line "#MON?"
done
_PartyMenuSwapMonText:: ; 89e1f (22:5e1f)
text "Move #MON"
line "where?"
done
_PotionText:: ; 89e31 (22:5e31)
TX_RAM $cd6d
db $0
line "recovered by @"
TX_NUM wHPBarHPDifference, 2, 3
text "!"
done
_AntidoteText:: ; 89e4b (22:5e4b)
TX_RAM $cd6d
text " was"
line "cured of poison!"
done
_ParlyzHealText:: ; 89e65 (22:5e65)
TX_RAM $cd6d
text "'s"
line "rid of paralysis!"
done
_BurnHealText:: ; 89e7d (22:5e7d)
TX_RAM $cd6d
text "'s"
line "burn was healed!"
done
_IceHealText:: ; 89e94 (22:5e94)
TX_RAM $cd6d
text " was"
line "defrosted!"
done
_AwakeningText:: ; 89ea8 (22:5ea8)
TX_RAM $cd6d
db $0
line "woke up!"
done
_FullHealText:: ; 89eb6 (22:5eb6)
TX_RAM $cd6d
text "'s"
line "health returned!"
done
_ReviveText:: ; 89ecd (22:5ecd)
TX_RAM $cd6d
db $0
line "is revitalized!"
done
_RareCandyText:: ; 89ee2 (22:5ee2)
TX_RAM $cd6d
text " grew"
line "to level @"
TX_NUM $d127, $1,$3
text "!@@"
_TurnedOnPC1Text:: ; 89efe (22:5efe)
text $52, " turned on"
line "the PC."
prompt
_AccessedBillsPCText:: ; 89f13 (22:5f13)
text "Accessed BILL's"
line "PC."
para "Accessed #MON"
line "Storage System."
prompt
_AccessedSomeonesPCText:: ; 89f45 (22:5f45)
text "Accessed someone's"
line "PC."
para "Accessed #MON"
line "Storage System."
prompt
_AccessedMyPCText:: ; 89f7a (22:5f7a)
text "Accessed my PC."
para "Accessed Item"
line "Storage System."
prompt
_TurnedOnPC2Text:: ; 89fa9 (22:5fa9)
text $52, " turned on"
line "the PC."
prompt
_WhatDoYouWantText:: ; 89fbe (22:5fbe)
text "What do you want"
line "to do?"
done
_WhatToDepositText:: ; 89fd7 (22:5fd7)
text "What do you want"
line "to deposit?"
done
_DepositHowManyText:: ; 89ff5 (22:5ff5)
text "How many?"
done
_ItemWasStoredText:: ; 8a000 (22:6000)
TX_RAM $cd6d
text " was"
line "stored via PC."
prompt
_NothingToDepositText:: ; 8a018 (22:6018)
text "You have nothing"
line "to deposit."
prompt
_NoRoomToStoreText:: ; 8a036 (22:6036)
text "No room left to"
line "store items."
prompt
_WhatToWithdrawText:: ; 8a054 (22:6054)
text "What do you want"
line "to withdraw?"
done
_WithdrawHowManyText:: ; 8a073 (22:6073)
text "How many?"
done
_WithdrewItemText:: ; 8a07e (22:607e)
text "Withdrew"
line "@"
TX_RAM $cd6d
text "."
prompt
_NothingStoredText:: ; 8a08f (22:608f)
text "There is nothing"
line "stored."
prompt
_CantCarryMoreText:: ; 8a0a9 (22:60a9)
text "You can't carry"
line "any more items."
prompt
_WhatToTossText:: ; 8a0c9 (22:60c9)
text "What do you want"
line "to toss away?"
done
_TossHowManyText:: ; 8a0e9 (22:60e9)
text "How many?"
done
_AccessedHoFPCText:: ; 8a0f4 (22:60f4)
text "Accessed #MON"
line "LEAGUE's site."
para "Accessed the HALL"
line "OF FAME List."
prompt
_SwitchOnText:: ; 0x8a131
text "Switch on!"
prompt
_WhatText:: ; 0x8a13d
text "What?"
done
_DepositWhichMonText:: ; 0x8a144
text "Deposit which"
line "#MON?"
done
_MonWasStoredText:: ; 0x8a159
TX_RAM $cf4b
text " was"
line "stored in Box @"
TX_RAM $cd3d
text "."
prompt
_CantDepositLastMonText:: ; 0x8a177
text "You can't deposit"
line "the last #MON!"
prompt
_BoxFullText:: ; 0x8a198
text "Oops! This Box is"
line "full of #MON."
prompt
_MonIsTakenOutText:: ; 0x8a1b9
TX_RAM $cf4b
text " is"
line "taken out."
cont "Got @"
TX_RAM $cf4b
text "."
prompt
_NoMonText:: ; 0x8a1d7
text "What? There are"
line "no #MON here!"
prompt
_CantTakeMonText:: ; 0x8a1f6
text "You can't take"
line "any more #MON."
para "Deposit #MON"
line "first."
prompt
_ReleaseWhichMonText:: ; 0x8a228
text "Release which"
line "#MON?"
done
_OnceReleasedText:: ; 0x8a23d
text "Once released,"
line "@"
TX_RAM $cf4b
text " is"
cont "gone forever. OK?"
done
_MonWasReleasedText:: ; 0x8a268
TX_RAM $cf4b
text " was"
line "released outside."
cont "Bye @"
_CF4BExclamationText:: ; 8a288 (22:6288)
TX_RAM $cf4b
text "!"
prompt
_RequireCoinCaseText:: ; 8a28e (22:628e)
text "A COIN CASE is"
line "required!@@"
_ExchangeCoinsForPrizesText:: ; 8a2a9 (22:62a9)
text "We exchange your"
line "coins for prizes."
prompt
_WhichPrizeText:: ; 8a2cd (22:62cd)
text "Which prize do"
line "you want?"
done
_HereYouGoText:: ; 8a2e7 (22:62e7)
text "Here you go!@@"
_SoYouWantPrizeText:: ; 8a2f6 (22:62f6)
text "So, you want"
line "@"
TX_RAM $CD6D
text "?"
done
_SorryNeedMoreCoinsText:: ; 8a30b (22:630b)
text "Sorry, you need"
line "more coins.@@"
_OopsYouDontHaveEnoughRoomText:: ; 8a329 (22:6329)
text "Oops! You don't"
line "have enough room.@@"
_OhFineThenText:: ; 8a34c (22:634c)
text "Oh, fine then.@@"
_GetDexRatedText:: ; 8a35d (22:635d)
text "Want to get your"
line "#DEX rated?"
done
_ClosedOaksPCText:: ; 8a37b (22:637b)
text "Closed link to"
line "PROF.OAK's PC.@@"
_AccessedOaksPCText:: ; 8a39a (22:639a)
text "Accessed PROF."
line "OAK's PC."
para "Accessed #DEX"
line "Rating System."
prompt
_WhereWouldYouLikeText:: ; 8a3d0 (22:63d0)
text "Where would you"
line "like to go?"
done
_PleaseWaitText:: ; 8a3ed (22:63ed)
text "OK, please wait"
line "just a moment."
done
_LinkCanceledText:: ; 8a40d (22:640d)
text "The link was"
line "canceled."
done
INCLUDE "text/oakspeech.asm"
_DoYouWantToNicknameText:: ; 0x8a605
text "Do you want to"
line "give a nickname"
cont "to @"
TX_RAM $cd6d
text "?"
done
_YourNameIsText:: ; 8a62f (22:662f)
text "Right! So your"
line "name is ", $52, "!"
prompt
_HisNameIsText:: ; 8a64a (22:664a)
text "That's right! I"
line "remember now! His"
cont "name is ", $53, "!"
prompt
_SSAnne8AfterBattleText2:: ; 8a677 (22:6677)
TX_RAM $cd3f
text " and"
line "@"
TX_RAM $cd6d
text " will"
cont "be traded."
done
_Char00Text:: ; 8a696 (22:6696)
TX_NUM $FF8C,1,2
text " ERROR."
done
_Char55Text:: ; 8a6a3 (22:66a3)
text $4B,"@@"
INCLUDE "text/maps/digletts_cave_route_2_entrance.asm"
INCLUDE "text/maps/viridian_forest_exit.asm"
INCLUDE "text/maps/route_2_house.asm"
INCLUDE "text/maps/route_2_gate.asm"
INCLUDE "text/maps/viridian_forest_entrance.asm"
INCLUDE "text/maps/mt_moon_pokecenter.asm"
INCLUDE "text/maps/saffron_gates.asm"
INCLUDE "text/maps/daycare_1.asm"
SECTION "Text 4", ROMX, BANK[TEXT_4]
INCLUDE "text/maps/daycare_2.asm"
INCLUDE "text/maps/underground_path_route_5_entrance.asm"
INCLUDE "text/maps/underground_path_route_6_entrance.asm"
INCLUDE "text/maps/underground_path_route_7_entrance.asm"
INCLUDE "text/maps/underground_path_route_7_entrance_unused.asm"
INCLUDE "text/maps/underground_path_route_8_entrance.asm"
INCLUDE "text/maps/rock_tunnel_pokecenter.asm"
INCLUDE "text/maps/rock_tunnel_b1f.asm"
INCLUDE "text/maps/power_plant.asm"
INCLUDE "text/maps/route_11_gate.asm"
INCLUDE "text/maps/route_11_gate_upstairs.asm"
INCLUDE "text/maps/digletts_cave_route_11_entrance.asm"
INCLUDE "text/maps/route_12_gate.asm"
INCLUDE "text/maps/route_12_gate_upstairs.asm"
INCLUDE "text/maps/route_12_house.asm"
INCLUDE "text/maps/route_15_gate.asm"
INCLUDE "text/maps/route_15_gate_upstairs.asm"
INCLUDE "text/maps/route_16_gate.asm"
INCLUDE "text/maps/route_16_gate_upstairs.asm"
INCLUDE "text/maps/route_16_house.asm"
INCLUDE "text/maps/route_18_gate.asm"
INCLUDE "text/maps/route_18_gate_upstairs.asm"
INCLUDE "text/maps/pokemon_league_gate.asm"
INCLUDE "text/maps/victory_road_2f.asm"
INCLUDE "text/maps/bills_house.asm"
INCLUDE "text/maps/route_1.asm"
INCLUDE "text/maps/route_2.asm"
INCLUDE "text/maps/route_3.asm"
INCLUDE "text/maps/route_4.asm"
INCLUDE "text/maps/route_5.asm"
INCLUDE "text/maps/route_6.asm"
INCLUDE "text/maps/route_7.asm"
INCLUDE "text/maps/route_8.asm"
INCLUDE "text/maps/route_9.asm"
INCLUDE "text/maps/route_10.asm"
INCLUDE "text/maps/route_11_1.asm"
SECTION "Text 5", ROMX, BANK[TEXT_5]
INCLUDE "text/maps/route_11_2.asm"
INCLUDE "text/maps/route_12.asm"
INCLUDE "text/maps/route_13.asm"
INCLUDE "text/maps/route_14.asm"
INCLUDE "text/maps/route_15.asm"
INCLUDE "text/maps/route_16.asm"
INCLUDE "text/maps/route_17.asm"
INCLUDE "text/maps/route_18.asm"
INCLUDE "text/maps/route_19.asm"
INCLUDE "text/maps/route_20.asm"
INCLUDE "text/maps/route_21.asm"
INCLUDE "text/maps/route_22.asm"
INCLUDE "text/maps/route_23.asm"
INCLUDE "text/maps/route_24_1.asm"
SECTION "Text 6", ROMX, BANK[TEXT_6]
INCLUDE "text/maps/route_24_2.asm"
INCLUDE "text/maps/route_25.asm"
_FileDataDestroyedText:: ; 945f1 (25:45f1)
text "The file data is"
line "destroyed!"
prompt
_WouldYouLikeToSaveText:: ; 9460e (25:460e)
text "Would you like to"
line "SAVE the game?"
done
_GameSavedText:: ; 94630 (25:4630)
text $52, " saved"
line "the game!"
done
_OlderFileWillBeErasedText:: ; 94643 (25:4643)
text "The older file"
line "will be erased to"
cont "save. Okay?"
done
_WhenYouChangeBoxText:: ; 94671 (25:4671)
text "When you change a"
line "#MON BOX, data"
cont "will be saved."
para "Is that okay?"
done
_ChooseABoxText:: ; 946b0 (25:46b0)
text "Choose a"
line $4a, " BOX.@@"
_EvolvedText:: ; 946c2 (25:46c2)
TX_RAM $cf4b
text " evolved"
done
_IntoText:: ; 946cf (25:46cf)
db $0
line "into @"
TX_RAM $cd6d
text "!"
done
_StoppedEvolvingText:: ; 946dd (25:46dd)
text "Huh? @"
TX_RAM $cf4b
db $0
line "stopped evolving!"
prompt
_IsEvolvingText:: ; 946fb (25:46fb)
text "What? @"
TX_RAM $cf4b
db $0
line "is evolving!"
done
_FellAsleepText:: ; 94715 (25:4715)
text $59
line "fell asleep!"
prompt
_AlreadyAsleepText:: ; 94725 (25:4725)
text $59, "'s"
line "already asleep!"
prompt
_PoisonedText:: ; 94739 (25:4739)
text $59
line "was poisoned!"
prompt
_BadlyPoisonedText:: ; 9474a (25:474a)
text $59, "'s"
line "badly poisoned!"
prompt
_BurnedText:: ; 9475e (25:475e)
text $59
line "was burned!"
prompt
_FrozenText:: ; 9476d (25:476d)
text $59
line "was frozen solid!"
prompt
_FireDefrostedText:: ; 94782 (25:4782)
text "Fire defrosted"
line $59, "!"
prompt
_MonsStatsRoseText:: ; 94795 (25:4795)
text $5a, "'s"
line "@"
TX_RAM $cf4b
text "@@"
_GreatlyRoseText:: ; 947a0 (25:47a0)
text $4c, "greatly@@"
_RoseText:: ; 947ab (25:47ab)
text " rose!"
prompt
_MonsStatsFellText:: ; 947b3 (25:47b3)
text $59, "'s"
line "@"
TX_RAM $cf4b
text "@@"
_GreatlyFellText:: ; 947be (25:47be)
text $4c, "greatly@@"
_FellText:: ; 947c9 (25:47c9)
text " fell!"
prompt
_RanFromBattleText:: ; 947d1 (25:47d1)
text $5a
line "ran from battle!"
prompt
_RanAwayScaredText:: ; 947e5 (25:47e5)
text $59
line "ran away scared!"
prompt
_WasBlownAwayText:: ; 947f9 (25:47f9)
text $59
line "was blown away!"
prompt
_ChargeMoveEffectText:: ; 9480c (25:480c)
text $5a, "@@"
_MadeWhirlwindText:: ; 94810 (25:4810)
db $0
line "made a whirlwind!"
prompt
_TookInSunlightText:: ; 94824 (25:4824)
db $0
line "took in sunlight!"
prompt
_LoweredItsHeadText:: ; 94838 (25:4838)
db $0
line "lowered its head!"
prompt
_SkyAttackGlowingText:: ; 9484c (25:484c)
db $0
line "is glowing!"
prompt
_FlewUpHighText:: ; 9485a (25:485a)
db $0
line "flew up high!"
prompt
_DugAHoleText:: ; 9486a (25:486a)
db $0
line "dug a hole!"
prompt
_BecameConfusedText:: ; 94878 (25:4878)
text $59
line "became confused!"
prompt
_MimicLearnedMoveText:: ; 9488c (25:488c)
text $5a
line "learned"
cont "@"
TX_RAM $cd6d
text "!"
prompt
_MoveWasDisabledText:: ; 9489e (25:489e)
text $59, "'s"
line "@"
TX_RAM $cd6d
text " was"
cont "disabled!"
prompt
_NothingHappenedText:: ; 948b6 (25:48b6)
text "Nothing happened!"
prompt
_NoEffectText:: ; 948c9 (25:48c9)
text "No effect!"
prompt
_ButItFailedText:: ; 948d5 (25:48d5)
text "But, it failed! "
prompt
_DidntAffectText:: ; 948e7 (25:48e7)
text "It didn't affect"
line $59, "!"
prompt
_IsUnaffectedText:: ; 948fb (25:48fb)
text $59
line "is unaffected!"
prompt
_ParalyzedMayNotAttackText:: ; 9490d (25:490d)
text $59, "'s"
line "paralyzed! It may"
cont "not attack!"
prompt
_SubstituteText:: ; 9492f (25:492f)
text "It created a"
line "SUBSTITUTE!"
prompt
_HasSubstituteText:: ; 94949 (25:4949)
text $5a
line "has a SUBSTITUTE!"
prompt
_TooWeakSubstituteText:: ; 9495e (25:495e)
text "Too weak to make"
line "a SUBSTITUTE!"
prompt
_CoinsScatteredText:: ; 9497e (25:497e)
text "Coins scattered"
line "everywhere!"
prompt
_GettingPumpedText:: ; 9499b (25:499b)
text $5a, "'s"
line "getting pumped!"
prompt
_WasSeededText:: ; 949af (25:49af)
text $59
line "was seeded!"
prompt
_EvadedAttackText:: ; 949be (25:49be)
text $59
line "evaded attack!"
prompt
_HitWithRecoilText:: ; 949d0 (25:49d0)
text $5a, "'s"
line "hit with recoil!"
prompt
_ConvertedTypeText:: ; 949e5 (25:49e5)
text "Converted type to"
line $59, "'s!"
prompt
_StatusChangesEliminatedText:: ; 949fc (25:49fc)
text "All STATUS changes"
line "are eliminated!"
prompt
_StartedSleepingEffect:: ; 94a20 (25:4a20)
text $5a
line "started sleeping!"
done
_FellAsleepBecameHealthyText:: ; 94a35 (25:4a35)
text $5a
line "fell asleep and"
cont "became healthy!"
done
_RegainedHealthText:: ; 94a58 (25:4a58)
text $5a
line "regained health!"
prompt
_TransformedText:: ; 94a6c (25:4a6c)
text $5a
line "transformed into"
cont "@"
TX_RAM $cd6d
text "!"
prompt
_LightScreenProtectedText:: ; 94a87 (25:4a87)
text $5a, "'s"
line "protected against"
cont "special attacks!"
prompt
_ReflectGainedArmorText:: ; 94aae (25:4aae)
text $5a
line "gained armor!"
prompt
_ShroudedInMistText:: ; 94abf (25:4abf)
text $5a, "'s"
line "shrouded in mist!"
prompt
_SuckedHealthText:: ; 94ad5 (25:4ad5)
text "Sucked health from"
line $59, "!"
prompt
_DreamWasEatenText:: ; 94aec (25:4aec)
text $59, "'s"
line "dream was eaten!"
prompt
_BattleCenterMText1:: ; 94b01 (25:4b01)
text "!"
done
_TradeCenterMText1:: ; 94b04 (25:4b04)
text "!"
done
INCLUDE "text/maps/reds_house_1f.asm"
INCLUDE "text/maps/blues_house.asm"
INCLUDE "text/maps/oaks_lab.asm"
INCLUDE "text/maps/viridian_mart.asm"
INCLUDE "text/maps/school.asm"
INCLUDE "text/maps/viridian_house.asm"
INCLUDE "text/maps/viridian_gym.asm"
INCLUDE "text/maps/museum_1f.asm"
INCLUDE "text/maps/museum_2f.asm"
INCLUDE "text/maps/pewter_gym_1.asm"
SECTION "Text 7", ROMX, BANK[TEXT_7]
INCLUDE "text/maps/pewter_gym_2.asm"
INCLUDE "text/maps/pewter_house_1.asm"
INCLUDE "text/maps/pewter_mart.asm"
INCLUDE "text/maps/pewter_house_2.asm"
INCLUDE "text/maps/pewter_pokecenter.asm"
INCLUDE "text/maps/cerulean_trashed_house.asm"
INCLUDE "text/maps/cerulean_trade_house.asm"
INCLUDE "text/maps/cerulean_pokecenter.asm"
INCLUDE "text/maps/cerulean_gym.asm"
INCLUDE "text/maps/bike_shop.asm"
INCLUDE "text/maps/cerulean_mart.asm"
INCLUDE "text/maps/cerulean_badge_house.asm"
INCLUDE "text/maps/lavender_pokecenter.asm"
INCLUDE "text/maps/pokemon_tower_1f.asm"
INCLUDE "text/maps/pokemon_tower_2f.asm"
INCLUDE "text/maps/pokemon_tower_3f.asm"
INCLUDE "text/maps/pokemon_tower_4f.asm"
INCLUDE "text/maps/pokemon_tower_5f.asm"
INCLUDE "text/maps/pokemon_tower_6f.asm"
INCLUDE "text/maps/pokemon_tower_7f.asm"
INCLUDE "text/maps/fujis_house.asm"
INCLUDE "text/maps/lavender_mart.asm"
INCLUDE "text/maps/lavender_house.asm"
INCLUDE "text/maps/name_rater.asm"
INCLUDE "text/maps/vermilion_pokecenter.asm"
INCLUDE "text/maps/fan_club.asm"
INCLUDE "text/maps/vermilion_mart.asm"
INCLUDE "text/maps/vermilion_gym_1.asm"
SECTION "Text 8", ROMX, BANK[TEXT_8]
INCLUDE "text/maps/vermilion_gym_2.asm"
INCLUDE "text/maps/vermilion_house.asm"
INCLUDE "text/maps/vermilion_dock.asm"
INCLUDE "text/maps/vermilion_fishing_house.asm"
INCLUDE "text/maps/celadon_dept_store_1f.asm"
INCLUDE "text/maps/celadon_dept_store_2f.asm"
INCLUDE "text/maps/celadon_dept_store_3f.asm"
INCLUDE "text/maps/celadon_dept_store_4f.asm"
INCLUDE "text/maps/celadon_dept_store_roof.asm"
INCLUDE "text/maps/celadon_mansion_1f.asm"
INCLUDE "text/maps/celadon_mansion_2f.asm"
INCLUDE "text/maps/celadon_mansion_3f.asm"
INCLUDE "text/maps/celadon_mansion_4f_outside.asm"
INCLUDE "text/maps/celadon_mansion_4f_inside.asm"
INCLUDE "text/maps/celadon_pokecenter.asm"
INCLUDE "text/maps/celadon_gym.asm"
INCLUDE "text/maps/celadon_game_corner.asm"
INCLUDE "text/maps/celadon_dept_store_5f.asm"
INCLUDE "text/maps/celadon_prize_room.asm"
INCLUDE "text/maps/celadon_diner.asm"
INCLUDE "text/maps/celadon_house.asm"
INCLUDE "text/maps/celadon_hotel.asm"
INCLUDE "text/maps/fuchsia_mart.asm"
INCLUDE "text/maps/fuchsia_house.asm"
INCLUDE "text/maps/fuchsia_pokecenter.asm"
INCLUDE "text/maps/wardens_house.asm"
INCLUDE "text/maps/safari_zone_entrance.asm"
INCLUDE "text/maps/fuchsia_gym_1.asm"
SECTION "Text 9", ROMX, BANK[TEXT_9]
INCLUDE "text/maps/fuchsia_gym_2.asm"
INCLUDE "text/maps/fuchsia_meeting_room.asm"
INCLUDE "text/maps/fuchsia_fishing_house.asm"
INCLUDE "text/maps/mansion_1f.asm"
INCLUDE "text/maps/cinnabar_gym.asm"
INCLUDE "text/maps/cinnabar_lab.asm"
INCLUDE "text/maps/cinnabar_lab_trade_room.asm"
INCLUDE "text/maps/cinnabar_lab_metronome_room.asm"
INCLUDE "text/maps/cinnabar_lab_fossil_room.asm"
INCLUDE "text/maps/cinnabar_pokecenter.asm"
INCLUDE "text/maps/cinnabar_mart.asm"
INCLUDE "text/maps/indigo_plateau_lobby.asm"
INCLUDE "text/maps/copycats_house_1f.asm"
INCLUDE "text/maps/copycats_house_2f.asm"
INCLUDE "text/maps/fighting_dojo.asm"
INCLUDE "text/maps/saffron_gym.asm"
INCLUDE "text/maps/saffron_house.asm"
INCLUDE "text/maps/saffron_mart.asm"
INCLUDE "text/maps/silph_co_1f.asm"
INCLUDE "text/maps/saffron_pokecenter.asm"
INCLUDE "text/maps/mr_psychics_house.asm"
_PokemartGreetingText:: ; a259c (28:659c)
text "Hi there!"
next "May I help you?"
done
_PokemonFaintedText:: ; a25b7 (28:65b7)
TX_RAM $cd6d
db $0
line "fainted!"
done
_PlayerBlackedOutText:: ; a25c5 (28:65c5)
text $52, " is out of"
line "useable #MON!"
para $52, " blacked"
line "out!"
prompt
_RepelWoreOffText:: ; a25ef (28:65ef)
text "REPEL's effect"
line "wore off."
done
_PokemartBuyingGreetingText:: ; a2608 (28:6608)
text "Take your time."
done
_PokemartTellBuyPriceText:: ; a2619 (28:6619)
TX_RAM $cf4b
text "?"
line "That will be"
cont "¥@"
db $2, $9f, $ff, $c3
text ". OK?"
done
_PokemartBoughtItemText:: ; a2639 (28:6639)
text "Here you are!"
line "Thank you!"
prompt
_PokemartNotEnoughMoneyText:: ; a2653 (28:6653)
text "You don't have"
line "enough money."
prompt
_PokemartItemBagFullText:: ; a2670 (28:6670)
text "You can't carry"
line "any more items."
prompt
_PokemonSellingGreetingText:: ; a2690 (28:6690)
text "What would you"
line "like to sell?"
done
_PokemartTellSellPriceText:: ; a26ae (28:66ae)
text "I can pay you"
line "¥@"
db $2, $9f, $ff, $c3 ; XXX
text " for that."
done
_PokemartItemBagEmptyText:: ; a26cf (28:66cf)
text "You don't have"
line "anything to sell."
prompt
_PokemartUnsellableItemText:: ; a26f0 (28:66f0)
text "I can't put a"
line "price on that."
prompt
_PokemartThankYouText:: ; a270d (28:670d)
text "Thank you!"
done
_PokemartAnythingElseText:: ; a2719 (28:6719)
text "Is there anything"
line "else I can do?"
done
_LearnedMove1Text:: ; a273b (28:673b)
TX_RAM $d036
text " learned"
line "@"
TX_RAM $cf4b
text "!@@"
_WhichMoveToForgetText:: ; a2750 (28:6750)
text "Which move should"
next "be forgotten?"
done
_AbandonLearningText:: ; a2771 (28:6771)
text "Abandon learning"
line "@"
TX_RAM $cf4b
text "?"
done
_DidNotLearnText:: ; a278a (28:678a)
TX_RAM $d036
db $0
line "did not learn"
cont "@"
TX_RAM $cf4b
text "!"
prompt
_TryingToLearnText:: ; a27a4 (28:67a4)
TX_RAM $d036
text " is"
line "trying to learn"
cont "@"
TX_RAM $cf4b
text "!"
para "But, @"
TX_RAM $d036
db $0
line "can't learn more"
cont "than 4 moves!"
para "Delete an older"
line "move to make room"
cont "for @"
TX_RAM $cf4b
text "?"
done
_OneTwoAndText:: ; a2819 (28:6819)
text "1, 2 and...@@"
_PoofText:: ; a2827 (28:6827)
text " Poof!@@"
_ForgotAndText:: ; a2830 (28:6830)
db $0
para "@"
TX_RAM $d036
text " forgot"
line "@"
TX_RAM $cd6d
text "!"
para "And..."
prompt
_HMCantDeleteText:: ; a284d (28:684d)
text "HM techniques"
line "can't be deleted!"
prompt
_PokemonCenterWelcomeText:: ; a286d (28:686d)
text "Welcome to our"
line "#MON CENTER!"
para "We heal your"
line "#MON back to"
cont "perfect health!"
prompt
_ShallWeHealYourPokemonText:: ; a28b4 (28:68b4)
text "Shall we heal your"
line "#MON?"
done
_NeedYourPokemonText:: ; a28ce (28:68ce)
text "OK. We'll need"
line "your #MON."
done
_PokemonFightingFitText:: ; a28e8 (28:68e8)
text "Thank you!"
line "Your #MON are"
cont "fighting fit!"
prompt
_PokemonCenterFarewellText:: ; a2910 (28:6910)
text "We hope to see"
line "you again!"
done
_CableClubNPCText7:: ; a292b (28:692b)
text "This area is"
line "reserved for 2"
cont "friends who are"
cont "linked by cable."
done
_CableClubNPCText1:: ; a2969 (28:6969)
text "Welcome to the"
line "Cable Club!"
done
_CableClubNPCText2:: ; a2985 (28:6985)
text "Please apply here."
para "Before opening"
line "the link, we have"
cont "to save the game."
done
_CableClubNPCText3:: ; a29cc (28:69cc)
text "Please wait.@@"
_CableClubNPCText4:: ; a29db (28:69db)
text "The link has been"
line "closed because of"
cont "inactivity."
para "Please contact"
line "your friend and"
cont "come again!"
done
SECTION "Text 10", ROMX, BANK[TEXT_10]
_CableClubNPCText5:: ; a4000 (29:4000)
text "Please come again!"
done
_CableClubNPCText6:: ; a4014 (29:4014)
text "We're making"
line "preparations."
cont "Please wait."
done
_UsedStrengthText:: ; a403c (29:403c)
TX_RAM $cd6d
text " used"
line "STRENGTH.@@"
_CanMoveBouldersText:: ; a4051 (29:4051)
TX_RAM $cd6d
text " can"
line "move boulders."
prompt
_CurrentTooFastText:: ; a4069 (29:4069)
text "The current is"
line "much too fast!"
prompt
_CyclingIsFunText:: ; a4088 (29:4088)
text "Cycling is fun!"
line "Forget SURFing!"
prompt
_FlashLightsAreaText:: ; a40a9 (29:40a9)
text "A blinding FLASH"
line "lights the area!"
prompt
_WarpToLastPokemonCenterText:: ; a40cc (29:40cc)
text "Warp to the last"
line "#MON CENTER."
done
_CannotUseTeleportNowText:: ; a40eb (29:40eb)
TX_RAM $cd6d
text " can't"
line "use TELEPORT now."
prompt
_CannotFlyHereText:: ; a4107 (29:4107)
TX_RAM $cd6d
text " can't"
line "FLY here."
prompt
_NotHealthyEnoughText:: ; a411b (29:411b)
text "Not healthy"
line "enough."
prompt
_NewBadgeRequiredText:: ; a4130 (29:4130)
text "No! A new BADGE"
line "is required."
prompt
_CannotUseItemsHereText:: ; a414e (29:414e)
text "You can't use items"
line "here."
prompt
_CannotGetOffHereText:: ; a4168 (29:4168)
text "You can't get off"
line "here."
prompt
_GotMonText:: ; a4180 (29:4180)
text $52, " got"
line "@"
TX_RAM $cd6d
text "!@@"
_SetToBoxText:: ; a418f (29:418f)
text "There's no more"
line "room for #MON!"
cont "@"
TX_RAM W_BOXMON1NAME
text " was"
cont "sent to #MON"
cont "BOX @"
TX_RAM $cf4b
text " on PC!"
done
_BoxIsFullText:: ; a41d6 (29:41d6)
text "There's no more"
line "room for #MON!"
para "The #MON BOX"
line "is full and can't"
cont "accept any more!"
para "Change the BOX at"
line "a #MON CENTER!"
done
INCLUDE "text/maps/pallet_town.asm"
INCLUDE "text/maps/viridian_city.asm"
INCLUDE "text/maps/pewter_city.asm"
INCLUDE "text/maps/cerulean_city.asm"
INCLUDE "text/maps/lavender_town.asm"
INCLUDE "text/maps/vermilion_city.asm"
INCLUDE "text/maps/celadon_city.asm"
INCLUDE "text/maps/fuchsia_city.asm"
INCLUDE "text/maps/cinnabar_island.asm"
INCLUDE "text/maps/saffron_city.asm"
_ItemUseBallText00:: ; a6729 (29:6729)
text "It dodged the"
line "thrown BALL!"
para "This #MON"
line "can't be caught!"
prompt
_ItemUseBallText01:: ; a675f (29:675f)
text "You missed the"
line "#MON!"
prompt
_ItemUseBallText02:: ; a6775 (29:6775)
text "Darn! The #MON"
line "broke free!"
prompt
_ItemUseBallText03:: ; a6791 (29:6791)
text "Aww! It appeared"
line "to be caught! "
prompt
_ItemUseBallText04:: ; a67b2 (29:67b2)
text "Shoot! It was so"
line "close too!"
prompt
_ItemUseBallText05:: ; a67cf (29:67cf)
text "All right!"
line "@"
TX_RAM W_ENEMYMONNAME
text " was"
cont "caught!@@"
_ItemUseBallText07:: ; a67ee (29:67ee)
TX_RAM W_BOXMON1NAME
text " was"
line "transferred to"
cont "BILL's PC!"
prompt
_ItemUseBallText08:: ; a6810 (29:6810)
TX_RAM W_BOXMON1NAME
text " was"
line "transferred to"
cont "someone's PC!"
prompt
_ItemUseBallText06:: ; a6835 (29:6835)
text "New #DEX data"
line "will be added for"
cont "@"
TX_RAM W_ENEMYMONNAME
text "!@@"
_SurfingGotOnText:: ; a685e (29:685e)
text $52, " got on"
line "@"
TX_RAM $cd6d
text "!"
prompt
_SurfingNoPlaceToGetOffText:: ; a686f (29:686f)
text "There's no place"
line "to get off!"
prompt
_VitaminStatRoseText:: ; a688c (29:688c)
TX_RAM $cd6d
text "'s"
line "@"
TX_RAM $cf4b
text " rose."
prompt
_VitaminNoEffectText:: ; a689e (29:689e)
text "It won't have any"
line "effect."
prompt
_ThrewBaitText:: ; a68b8 (29:68b8)
text $52, " threw"
line "some BAIT."
done
_ThrewRockText:: ; a68cc (29:68cc)
text $52, " threw a"
line "ROCK."
done
_PlayedFluteNoEffectText:: ; a68dd (29:68dd)
text "Played the #"
line "FLUTE."
para "Now, that's a"
line "catchy tune!"
prompt
_FluteWokeUpText:: ; a690c (29:690c)
text "All sleeping"
line "#MON woke up."
prompt
_PlayedFluteHadEffectText:: ; a6928 (29:6928)
text $52, " played the"
line "# FLUTE.@@"
_CoinCaseNumCoinsText:: ; a6940 (29:6940)
text "Coins"
line "@"
db $2, $a4, $d5, $c2 ; print BCD number
text " "
prompt
_ItemfinderFoundItemText:: ; a694f (29:694f)
text "Yes! ITEMFINDER"
line "indicates there's"
cont "an item nearby."
prompt
_ItemfinderFoundNothingText:: ; a6981 (29:6981)
text "Nope! ITEMFINDER"
line "isn't responding."
prompt
_RaisePPWhichTechniqueText:: ; a69a4 (29:69a4)
text "Raise PP of which"
line "technique?"
done
_RestorePPWhichTechniqueText:: ; a69c2 (29:69c2)
text "Restore PP of"
line "which technique?"
done
_PPMaxedOutText:: ; a69e2 (29:69e2)
TX_RAM $cf4b
text "'s PP"
line "is maxed out."
prompt
_PPIncreasedText:: ; a69f9 (29:69f9)
TX_RAM $cf4b
text "'s PP"
line "increased."
prompt
_PPRestoredText:: ; a6a0d (29:6a0d)
text "PP was restored."
prompt
_BootedUpTMText:: ; a6a1f (29:6a1f)
text "Booted up a TM!"
prompt
_BootedUpHMText:: ; a6a30 (29:6a30)
text "Booted up an HM!"
prompt
_TeachMachineMoveText:: ; a6a42 (29:6a42)
text "It contained"
line "@"
TX_RAM $cf4b
text "!"
para "Teach @"
TX_RAM $cf4b
db $0
line "to a #MON?"
done
_MonCannotLearnMachineMoveText:: ; a6a6e (29:6a6e)
TX_RAM $cd6d
text " is not"
line "compatible with"
cont "@"
TX_RAM $cf4b
text "."
para "It can't learn"
line "@"
TX_RAM $cf4b
text "."
prompt
_ItemUseNotTimeText:: ; a6aa6 (29:6aa6)
text "OAK: ", $52, "!"
line "This isn't the"
cont "time to use that! "
prompt
_ItemUseNotYoursToUseText:: ; a6ad0 (29:6ad0)
text "This isn't yours"
line "to use!"
prompt
_ItemUseNoEffectText:: ; a6ae9 (29:6ae9)
text "It won't have any"
line "effect."
prompt
_ThrowBallAtTrainerMonText1:: ; a6b03 (29:6b03)
text "The trainer"
line "blocked the BALL!"
prompt
_ThrowBallAtTrainerMonText2:: ; a6b22 (29:6b22)
text "Don't be a thief!"
prompt
_NoCyclingAllowedHereText:: ; a6b34 (29:6b34)
text "No cycling"
next "allowed here."
prompt
_NoSurfingHereText:: ; a6b4e (29:6b4e)
text "No SURFing on"
line "@"
TX_RAM $cd6d
text " here!"
prompt
_BoxFullCannotThrowBallText:: ; a6b69 (29:6b69)
text "The #MON BOX"
line "is full! Can't"
cont "use that item!"
prompt
SECTION "Text 11", ROMX, BANK[TEXT_11]
_ItemUseText001:: ; a8000 (2a:4000)
text $52," used@@"
_ItemUseText002:: ; a8009 (2a:4009)
TX_RAM $cf4b
text "!"
done
_GotOnBicycleText1:: ; a800f (2a:400f)
text $52, " got on the@@"
_GotOnBicycleText2:: ; a801e (2a:401e)
TX_RAM $cf4b
text "!"
prompt
_GotOffBicycleText1:: ; a8024 (2a:4024)
text $52, " got off@@"
_GotOffBicycleText2:: ; a8030 (2a:4030)
text "the @"
TX_RAM $cf4b
text "."
prompt
_ThrewAwayItemText:: ; a803c (2a:403c)
text "Threw away"
line "@"
TX_RAM $cd6d
text "."
prompt
_IsItOKToTossItemText:: ; a804f (2a:404f)
text "Is it OK to toss"
line "@"
TX_RAM $cf4b
text "?"
prompt
_TooImportantToTossText:: ; a8068 (2a:4068)
text "That's too impor-"
line "tant to toss!"
prompt
_AlreadyKnowsText:: ; a8088 (2a:4088)
TX_RAM $cd6d
text " knows"
line "@"
TX_RAM $cf4b
text "!"
prompt
_ConnectCableText:: ; a809a (2a:409a)
text "Okay, connect the"
line "cable like so!"
prompt
_TradedForText:: ; a80bc (2a:40bc)
text $52, " traded"
line "@"
TX_RAM $cd13
text " for"
cont "@"
TX_RAM $cd1e
text "!@@"
_WannaTrade1Text:: ; a80d8 (2a:40d8)
text "I'm looking for"
line "@"
TX_RAM $cd13
text "! Wanna"
para "trade one for"
line "@"
TX_RAM $cd1e
text "? "
done
_NoTrade1Text:: ; a810b (2a:410b)
text "Awww!"
line "Oh well..."
done
_WrongMon1Text:: ; a811d (2a:411d)
text "What? That's not"
line "@"
TX_RAM $cd13
text "!"
para "If you get one,"
line "come back here!"
done
_Thanks1Text:: ; a8155 (2a:4155)
text "Hey thanks!"
done
_AfterTrade1Text:: ; a8162 (2a:4162)
text "Isn't my old"
line "@"
TX_RAM $cd1e
text " great?"
done
_WannaTrade2Text:: ; a817c (2a:417c)
text "Hello there! Do"
line "you want to trade"
para "your @"
TX_RAM $cd13
db $0
line "for @"
TX_RAM $cd1e
text "?"
done
_NoTrade2Text:: ; a81b5 (2a:41b5)
text "Well, if you"
line "don't want to..."
done
_WrongMon2Text:: ; a81d3 (2a:41d3)
text "Hmmm? This isn't"
line "@"
TX_RAM $cd13
text "."
para "Think of me when"
line "you get one."
done
_Thanks2Text:: ; a8209 (2a:4209)
text "Thanks!"
done
_AfterTrade2Text:: ; a8212 (2a:4212)
text "The @"
TX_RAM $cd13
text " you"
line "traded to me"
para "went and evolved!"
done
_WannaTrade3Text:: ; a8240 (2a:4240)
text "Hi! Do you have"
line "@"
TX_RAM $cd13
text "?"
para "Want to trade it"
line "for @"
TX_RAM $cd1e
text "?"
done
_NoTrade3Text:: ; a8274 (2a:4274)
text "That's too bad."
done
_WrongMon3Text:: ; a8284 (2a:4284)
text "...This is no"
line "@"
TX_RAM $cd13
text "."
para "If you get one,"
line "trade it with me!"
done
_Thanks3Text:: ; a82bc (2a:42bc)
text "Thanks pal!"
done
_AfterTrade3Text:: ; a82c9 (2a:42c9)
text "How is my old"
line "@"
TX_RAM $cd1e
text "?"
para "My @"
TX_RAM $cd13
text " is"
line "doing great!"
done
_NothingToCutText:: ; a82f8 (2a:42f8)
text "There isn't"
line "anything to CUT!"
prompt
_UsedCutText:: ; a8315 (2a:4315)
TX_RAM $cd6d
text " hacked"
line "away with CUT!"
prompt
SECTION "Pokedex Text", ROMX, BANK[POKEDEX_TEXT]
INCLUDE "text/pokedex.asm"
SECTION "Move Names", ROMX, BANK[MOVE_NAMES]
INCLUDE "text/move_names.asm"
|