summaryrefslogtreecommitdiff
path: root/src/data/pokemon/pokedex_text_lg.h
blob: b9e2055c20ac121e10b8cdff9983763c50eaa343 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
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
const u8 gDummyPokedexText[] = _(
    "This is a newly discovered POKéMON. It is\n"
    "currently under investigation. No detailed\n"
    "information is available at this time.");

const u8 gDummyPokedexTextUnused[] = _("");

const u8 gBulbasaurPokedexText[] = _(
    "A strange seed was planted on its back at\n"
    "birth. The plant sprouts and grows with\n"
    "this POKéMON.");

const u8 gBulbasaurPokedexTextUnused[] = _("");

const u8 gIvysaurPokedexText[] = _(
    "When the bulb on its back grows large, it\n"
    "appears to lose the ability to stand on\n"
    "its hind legs.");

const u8 gIvysaurPokedexTextUnused[] = _("");

const u8 gVenusaurPokedexText[] = _(
    "Its plant blooms when it is absorbing\n"
    "solar energy. It stays on the move to\n"
    "seek sunlight.");

const u8 gVenusaurPokedexTextUnused[] = _(
    " ");

const u8 gCharmanderPokedexText[] = _(
    "It has a preference for hot things.\n"
    "When it rains, steam is said to spout from\n"
    "the tip of its tail.");

const u8 gCharmanderPokedexTextUnused[] = _("");

const u8 gCharmeleonPokedexText[] = _(
    "When it swings its burning tail, it\n"
    "elevates the air temperature to \n"
    "unbearably high levels.");

const u8 gCharmeleonPokedexTextUnused[] = _("");

const u8 gCharizardPokedexText[] = _(
    "It spits fire that is hot enough to melt\n"
    "boulders. It may cause forest fires by\n"
    "blowing flames.");

const u8 gCharizardPokedexTextUnused[] = _("");

const u8 gSquirtlePokedexText[] = _(
    "After birth, its back swells and hardens\n"
    "into a shell. It powerfully sprays foam \n"
    "from its mouth.");

const u8 gSquirtlePokedexTextUnused[] = _("");

const u8 gWartortlePokedexText[] = _(
    "It often hides in water to stalk unwary\n"
    "prey. For fast swimming, it moves its\n"
    "ears to maintain balance.");

const u8 gWartortlePokedexTextUnused[] = _("");

const u8 gBlastoisePokedexText[] = _(
    "The pressurized water jets on this brutal\n"
    "POKéMON's shell are used for high-\n"
    "speed tackles.");

const u8 gBlastoisePokedexTextUnused[] = _("");

const u8 gCaterpiePokedexText[] = _(
    "Its short feet are tipped with suction\n"
    "pads that enable it to tirelessly climb\n"
    "slopes and walls.");

const u8 gCaterpiePokedexTextUnused[] = _("");

const u8 gMetapodPokedexText[] = _(
    "This POKéMON is vulnerable to attack\n"
    "while its shell is soft, exposing its weak\n"
    "and tender body.");

const u8 gMetapodPokedexTextUnused[] = _(
    " ");

const u8 gButterfreePokedexText[] = _(
    "In battle, it flaps its wings at great\n"
    "speed to release highly toxic dust into\n"
    "the air.");

const u8 gButterfreePokedexTextUnused[] = _(
    " ");

const u8 gWeedlePokedexText[] = _(
    "Often found in forests, eating leaves.\n"
    "It has a sharp stinger on its head that\n"
    "injects poison.");

const u8 gWeedlePokedexTextUnused[] = _("");

const u8 gKakunaPokedexText[] = _(
    "Almost incapable of moving, this POKéMON\n"
    "can only harden its shell to protect\n"
    "itself when it is in danger.");

const u8 gKakunaPokedexTextUnused[] = _("");

const u8 gBeedrillPokedexText[] = _(
    "It flies at high speed and attacks using \n"
    "the large venomous stingers on its\n"
    "forelegs and tail.");

const u8 gBeedrillPokedexTextUnused[] = _("");

const u8 gPidgeyPokedexText[] = _(
    "A common sight in forests and woods.\n"
    "It flaps its wings at ground level to kick\n"
    "up blinding sand.");

const u8 gPidgeyPokedexTextUnused[] = _("");

const u8 gPidgeottoPokedexText[] = _(
    "Very protective of its sprawling\n"
    "territorial area, this POKéMON will\n"
    "fiercely peck at any intruder.");

const u8 gPidgeottoPokedexTextUnused[] = _("");

const u8 gPidgeotPokedexText[] = _(
    "When hunting, it skims the surface of\n"
    "water at high speed to pick off unwary\n"
    "prey such as MAGIKARP.");

const u8 gPidgeotPokedexTextUnused[] = _("");

const u8 gRattataPokedexText[] = _(
    "Bites anything when it attacks. Small and\n"
    "very quick, it is a common sight in many\n"
    "places.");

const u8 gRattataPokedexTextUnused[] = _("");

const u8 gRaticatePokedexText[] = _(
    "It uses its whiskers to maintain its\n"
    "balance. It apparently slows down if\n"
    "they are cut off.");

const u8 gRaticatePokedexTextUnused[] = _("");

const u8 gSpearowPokedexText[] = _(
    "Eats bugs in grassy areas. It has to flap\n"
    "its short wings at high speed to stay\n"
    "airborne.");

const u8 gSpearowPokedexTextUnused[] = _("");

const u8 gFearowPokedexText[] = _(
    "With its huge and magnificent wings, it can\n"
    "keep aloft without ever having to land\n"
    "for rest.");

const u8 gFearowPokedexTextUnused[] = _("");

const u8 gEkansPokedexText[] = _(
    "Moving silently and stealthily, it eats\n"
    "the eggs of birds, such as PIDGEY\n"
    "and SPEAROW, whole.");

const u8 gEkansPokedexTextUnused[] = _("");

const u8 gArbokPokedexText[] = _(
    "It is rumored that the ferocious warning\n"
    "markings on its belly differ from area to\n"
    "area.");

const u8 gArbokPokedexTextUnused[] = _("");

const u8 gPikachuPokedexText[] = _(
    "When several of these POKéMON gather,\n"
    "their electricity can build and cause\n"
    "lightning storms.");

const u8 gPikachuPokedexTextUnused[] = _("");

const u8 gRaichuPokedexText[] = _(
    "Its long tail serves as a ground to\n"
    "protect itself from its own high-voltage\n"
    "power.");

const u8 gRaichuPokedexTextUnused[] = _("");

const u8 gSandshrewPokedexText[] = _(
    "Burrows deep underground in arid locations\n"
    "far from water. It only emerges to hunt\n"
    "for prey.");

const u8 gSandshrewPokedexTextUnused[] = _("");

const u8 gSandslashPokedexText[] = _(
    "Curls up into a spiny ball when\n"
    "threatened. It can roll while curled up\n"
    "to attack or escape.");

const u8 gSandslashPokedexTextUnused[] = _("");

const u8 gNidoranFPokedexText[] = _(
    "Although small, its venomous barbs render\n"
    "this POKéMON dangerous. The female has\n"
    "smaller horns.");

const u8 gNidoranFPokedexTextUnused[] = _("");

const u8 gNidorinaPokedexText[] = _(
    "The female's horns develop slowly.\n"
    "Prefers physical attacks such as clawing\n"
    "and biting.");

const u8 gNidorinaPokedexTextUnused[] = _("");

const u8 gNidoqueenPokedexText[] = _(
    "Its hard scales provide strong protection.\n"
    "It uses its hefty bulk to execute\n"
    "powerful moves.");

const u8 gNidoqueenPokedexTextUnused[] = _("");

const u8 gNidoranMPokedexText[] = _(
    "It stiffens its ears to sense danger.\n"
    "The larger its horns, the more \n"
    "powerful its secreted venom.");

const u8 gNidoranMPokedexTextUnused[] = _("");

const u8 gNidorinoPokedexText[] = _(
    "An aggressive POKéMON that is quick to\n"
    "attack. The horn on its head secretes a\n"
    "powerful venom.");

const u8 gNidorinoPokedexTextUnused[] = _("");

const u8 gNidokingPokedexText[] = _(
    "It uses its powerful tail in battle to\n"
    "smash, constrict, then break the prey's\n"
    "bones.");

const u8 gNidokingPokedexTextUnused[] = _("");

const u8 gClefairyPokedexText[] = _(
    "With its magical and cute appeal, it has \n"
    "many admirers. It is rare and found only\n"
    "in certain areas.");

const u8 gClefairyPokedexTextUnused[] = _("");

const u8 gClefablePokedexText[] = _(
    "A timid fairy POKéMON that is rarely seen,\n"
    "it will run and hide the moment it senses\n"
    "people.");

const u8 gClefablePokedexTextUnused[] = _("");

const u8 gVulpixPokedexText[] = _(
    "When it is born, it has just one snow-\n"
    "white tail. The tail splits from its tip as\n"
    "it grows older.");

const u8 gVulpixPokedexTextUnused[] = _("");

const u8 gNinetalesPokedexText[] = _(
    "Very smart and very vengeful. Grabbing\n"
    "one of its many tails could result in a\n"
    "1,000-year curse.");

const u8 gNinetalesPokedexTextUnused[] = _("");

const u8 gJigglypuffPokedexText[] = _(
    "When its huge eyes waver, it sings a\n"
    "mysteriously soothing melody that lulls\n"
    "its enemies to sleep.");

const u8 gJigglypuffPokedexTextUnused[] = _("");

const u8 gWigglytuffPokedexText[] = _(
    "The body is soft and rubbery. When\n"
    "angered, it will suck in air and inflate\n"
    "itself to an enormous size.");

const u8 gWigglytuffPokedexTextUnused[] = _("");

const u8 gZubatPokedexText[] = _(
    "It forms colonies in perpetually dark \n"
    "places and uses ultrasonic waves to  \n"
    "identify and approach targets.");

const u8 gZubatPokedexTextUnused[] = _("");

const u8 gGolbatPokedexText[] = _(
    "Once it bites, it will not stop draining\n"
    "energy from the victim even if it gets too\n"
    "heavy to fly.");

const u8 gGolbatPokedexTextUnused[] = _("");

const u8 gOddishPokedexText[] = _(
    "During the day, it keeps its face buried\n"
    "in the ground. At night, it wanders around\n"
    "sowing its seeds.");

const u8 gOddishPokedexTextUnused[] = _("");

const u8 gGloomPokedexText[] = _(
    "The fluid that oozes from its mouth isn't\n"
    "drool. It is a nectar that is used to\n"
    "attract prey.");

const u8 gGloomPokedexTextUnused[] = _("");

const u8 gVileplumePokedexText[] = _(
    "The larger its petals, the more toxic\n"
    "pollen it contains. Its big head is heavy\n"
    "and hard to hold up.");

const u8 gVileplumePokedexTextUnused[] = _("");

const u8 gParasPokedexText[] = _(
    "Burrows to suck tree roots. The mushrooms\n"
    "on its back grow by drawing nutrients from\n"
    "the bug host.");

const u8 gParasPokedexTextUnused[] = _("");

const u8 gParasectPokedexText[] = _(
    "A host-parasite pair in which the parasite\n"
    "mushroom has taken over the host bug.\n"
    "Prefers damp places. ");

const u8 gParasectPokedexTextUnused[] = _("");

const u8 gVenonatPokedexText[] = _(
    "Lives in the shadows of tall trees where\n"
    "it eats bugs. It is attracted by light\n"
    "at night.");

const u8 gVenonatPokedexTextUnused[] = _("");

const u8 gVenomothPokedexText[] = _(
    "The dustlike scales covering its wings\n"
    "are color-coded to indicate the kinds of\n"
    "poison it has.");

const u8 gVenomothPokedexTextUnused[] = _("");

const u8 gDiglettPokedexText[] = _(
    "Lives about one yard underground where it\n"
    "feeds on plant roots. It sometimes appears\n"
    "aboveground.");

const u8 gDiglettPokedexTextUnused[] = _("");

const u8 gDugtrioPokedexText[] = _(
    "A team of DIGLETT triplets. It triggers\n"
    "huge earthquakes by burrowing 60 miles\n"
    "underground.");

const u8 gDugtrioPokedexTextUnused[] = _("");

const u8 gMeowthPokedexText[] = _(
    "Adores round objects. It wanders the\n"
    "streets on a nightly basis to look for\n"
    "dropped loose change.");

const u8 gMeowthPokedexTextUnused[] = _("");

const u8 gPersianPokedexText[] = _(
    "Although its fur has many admirers, it is\n"
    "tough to raise as a pet because of its\n"
    "fickle meanness.");

const u8 gPersianPokedexTextUnused[] = _("");

const u8 gPsyduckPokedexText[] = _(
    "While lulling its enemies with its vacant\n"
    "look, this wily POKéMON will use\n"
    "psychokinetic powers.");

const u8 gPsyduckPokedexTextUnused[] = _("");

const u8 gGolduckPokedexText[] = _(
    "Often seen swimming elegantly by\n"
    "lakeshores. It is often mistaken for the\n"
    "Japanese monster Kappa.");

const u8 gGolduckPokedexTextUnused[] = _("");

const u8 gMankeyPokedexText[] = _(
    "Extremely quick to anger. It could be\n"
    "docile one moment, then thrashing away \n"
    "the next instant.");

const u8 gMankeyPokedexTextUnused[] = _("");

const u8 gPrimeapePokedexText[] = _(
    "Always furious and tenacious to boot.\n"
    "It will not abandon chasing its quarry\n"
    "until it catches up.");

const u8 gPrimeapePokedexTextUnused[] = _("");

const u8 gGrowlithePokedexText[] = _(
    "It is very protective of its territory.\n"
    "It will bark and bite to repel intruders\n"
    "from its space.");

const u8 gGrowlithePokedexTextUnused[] = _("");

const u8 gArcaninePokedexText[] = _(
    "A POKéMON that has long been admired\n"
    "for its beauty. It runs agilely as if\n"
    "on wings.");

const u8 gArcaninePokedexTextUnused[] = _("");

const u8 gPoliwagPokedexText[] = _(
    "Its newly grown legs prevent it from\n"
    "walking well. It appears to prefer\n"
    "swimming over walking.");

const u8 gPoliwagPokedexTextUnused[] = _("");

const u8 gPoliwhirlPokedexText[] = _(
    "It can live in or out of water. When out\n"
    "of water, it constantly sweats to keep its\n"
    "body slimy.");

const u8 gPoliwhirlPokedexTextUnused[] = _("");

const u8 gPoliwrathPokedexText[] = _(
    "A swimmer adept at both the front crawl\n"
    "and breaststroke. Easily overtakes the\n"
    "best human swimmers.");

const u8 gPoliwrathPokedexTextUnused[] = _("");

const u8 gAbraPokedexText[] = _(
    "Using its ability to read minds, it will\n"
    "sense impending danger and TELEPORT to\n"
    "safety.");

const u8 gAbraPokedexTextUnused[] = _("");

const u8 gKadabraPokedexText[] = _(
    "It emits special alpha waves from its\n"
    "body that induce headaches just by being\n"
    "close.");

const u8 gKadabraPokedexTextUnused[] = _("");

const u8 gAlakazamPokedexText[] = _(
    "Its brain can outperform a supercomputer.\n"
    "Its IQ (intelligence quotient) is said to\n"
    "be around 5,000.");

const u8 gAlakazamPokedexTextUnused[] = _("");

const u8 gMachopPokedexText[] = _(
    "Loves to build its muscles. It trains in\n"
    "all styles of martial arts to become even\n"
    "stronger.");

const u8 gMachopPokedexTextUnused[] = _("");

const u8 gMachokePokedexText[] = _(
    "Its muscular body is so powerful, it must\n"
    "wear a power-save belt to be able to\n"
    "regulate its motions.");

const u8 gMachokePokedexTextUnused[] = _("");

const u8 gMachampPokedexText[] = _(
    "Its superpowerful punches are said to\n"
    "knock the victim flying clear over the\n"
    "horizon.");

const u8 gMachampPokedexTextUnused[] = _("");

const u8 gBellsproutPokedexText[] = _(
    "A carnivorous POKéMON that traps and eats\n"
    "bugs. It appears to use its root feet to\n"
    "replenish moisture.");

const u8 gBellsproutPokedexTextUnused[] = _("");

const u8 gWeepinbellPokedexText[] = _(
    "It spits out POISONPOWDER to immobilize\n"
    "the enemy and then finishes it with a\n"
    "spray of ACID.");

const u8 gWeepinbellPokedexTextUnused[] = _("");

const u8 gVictreebelPokedexText[] = _(
    "Said to live in huge colonies deep in\n"
    "jungles, although no one has ever\n"
    "returned from there.");

const u8 gVictreebelPokedexTextUnused[] = _("");

const u8 gTentacoolPokedexText[] = _(
    "Drifts in shallow seas. Anglers who hook\n"
    "them by accident are often punished by\n"
    "their stingers.");

const u8 gTentacoolPokedexTextUnused[] = _("");

const u8 gTentacruelPokedexText[] = _(
    "The tentacles are normally kept short.\n"
    "On hunts, they are extended to ensnare\n"
    "and immobilize prey.");

const u8 gTentacruelPokedexTextUnused[] = _("");

const u8 gGeodudePokedexText[] = _(
    "Found in fields and mountains. Mistaking\n"
    "them for boulders, people often step or\n"
    "trip on them.");

const u8 gGeodudePokedexTextUnused[] = _("");

const u8 gGravelerPokedexText[] = _(
    "Rolls down slopes to move. It rolls over\n"
    "any obstacle without slowing or changing\n"
    "its direction.");

const u8 gGravelerPokedexTextUnused[] = _("");

const u8 gGolemPokedexText[] = _(
    "Its boulder-like body is extremely hard.\n"
    "It can easily withstand dynamite blasts\n"
    "without taking damage.");

const u8 gGolemPokedexTextUnused[] = _("");

const u8 gPonytaPokedexText[] = _(
    "Its hooves are ten times harder than\n"
    "diamond. It can trample anything\n"
    "completely flat in little time.");

const u8 gPonytaPokedexTextUnused[] = _("");

const u8 gRapidashPokedexText[] = _(
    "Very competitive, this POKéMON will chase\n"
    "anything that moves fast in the hopes of\n"
    "racing it.");

const u8 gRapidashPokedexTextUnused[] = _("");

const u8 gSlowpokePokedexText[] = _(
    "Incredibly slow and dopey. It takes five\n"
    "seconds for it to feel pain when under\n"
    "attack.");

const u8 gSlowpokePokedexTextUnused[] = _("");

const u8 gSlowbroPokedexText[] = _(
    "The SHELLDER that latches onto\n"
    "SLOWPOKE's tail is said to feed on the\n"
    "host's leftover scraps.");

const u8 gSlowbroPokedexTextUnused[] = _("");

const u8 gMagnemitePokedexText[] = _(
    "Uses antigravity to stay suspended.\n"
    "Appears without warning and uses THUNDER\n"
    "WAVE and similar moves.");

const u8 gMagnemitePokedexTextUnused[] = _("");

const u8 gMagnetonPokedexText[] = _(
    "Formed by several MAGNEMITE linked\n"
    "together. They frequently appear when\n"
    "sunspots flare up.");

const u8 gMagnetonPokedexTextUnused[] = _("");

const u8 gFarfetchdPokedexText[] = _(
    "The plant stalk it holds is its weapon.\n"
    "The stalk is used like a sword to cut all\n"
    "sorts of things.");

const u8 gFarfetchdPokedexTextUnused[] = _("");

const u8 gDoduoPokedexText[] = _(
    "A bird that makes up for its poor flying\n"
    "with its fast foot speed. Leaves giant\n"
    "footprints.");

const u8 gDoduoPokedexTextUnused[] = _("");

const u8 gDodrioPokedexText[] = _(
    "Uses its three brains to execute complex\n"
    "plans. While two heads sleep, one head is\n"
    "said to stay awake.");

const u8 gDodrioPokedexTextUnused[] = _("");

const u8 gSeelPokedexText[] = _(
    "The protruding horn on its head is very\n"
    "hard. It is used for bashing through thick\n"
    "icebergs.");

const u8 gSeelPokedexTextUnused[] = _("");

const u8 gDewgongPokedexText[] = _(
    "It stores thermal energy in the body.\n"
    "It swims at a steady eight knots even in\n"
    "intensely cold waters.");

const u8 gDewgongPokedexTextUnused[] = _("");

const u8 gGrimerPokedexText[] = _(
    "Appears in filthy areas. It thrives by\n"
    "sucking up polluted sludge that is pumped\n"
    "out of factories.");

const u8 gGrimerPokedexTextUnused[] = _("");

const u8 gMukPokedexText[] = _(
    "Thickly covered with a filthy, vile\n"
    "sludge. It is so toxic, even its footprints\n"
    "contain poison.");

const u8 gMukPokedexTextUnused[] = _("");

const u8 gShellderPokedexText[] = _(
    "Its hard shell repels any kind of attack.\n"
    "It is vulnerable only when its shell is\n"
    "open.");

const u8 gShellderPokedexTextUnused[] = _("");

const u8 gCloysterPokedexText[] = _(
    "When attacked, it launches its horns in\n"
    "quick volleys. Its innards have never been\n"
    "seen.");

const u8 gCloysterPokedexTextUnused[] = _("");

const u8 gGastlyPokedexText[] = _(
    "Almost invisible, this gaseous POKéMON\n"
    "cloaks the target and puts it to sleep\n"
    "without notice.");

const u8 gGastlyPokedexTextUnused[] = _("");

const u8 gHaunterPokedexText[] = _(
    "Because of its ability to slip through\n"
    "block walls, it is said to be from another\n"
    "dimension.");

const u8 gHaunterPokedexTextUnused[] = _("");

const u8 gGengarPokedexText[] = _(
    "On the night of a full moon, if shadows\n"
    "move on their own and laugh, it must be\n"
    "GENGAR's doing.");

const u8 gGengarPokedexTextUnused[] = _("");

const u8 gOnixPokedexText[] = _(
    "As it grows, the stone portions of its\n"
    "body harden to become similar to\n"
    "black-colored diamonds.");

const u8 gOnixPokedexTextUnused[] = _("");

const u8 gDrowzeePokedexText[] = _(
    "Puts enemies to sleep, then eats their\n"
    "dreams. Occasionally gets sick from eating\n"
    "only bad dreams.");

const u8 gDrowzeePokedexTextUnused[] = _("");

const u8 gHypnoPokedexText[] = _(
    "When it locks eyes with an enemy, it will\n"
    "use a mix of PSI moves such as HYPNOSIS\n"
    "and CONFUSION.");

const u8 gHypnoPokedexTextUnused[] = _("");

const u8 gKrabbyPokedexText[] = _(
    "Its pincers are not only powerful weapons,\n"
    "they are used for balance when walking\n"
    "sideways.");

const u8 gKrabbyPokedexTextUnused[] = _("");

const u8 gKinglerPokedexText[] = _(
    "The large pincer has 10,000-horsepower\n"
    "crushing force. However, its huge size\n"
    "makes it unwieldy to use.");

const u8 gKinglerPokedexTextUnused[] = _("");

const u8 gVoltorbPokedexText[] = _(
    "Usually found in power plants. Easily\n"
    "mistaken for a POKé BALL, it has\n"
    "zapped many people.");

const u8 gVoltorbPokedexTextUnused[] = _("");

const u8 gElectrodePokedexText[] = _(
    "It stores electric energy under very high\n"
    "pressure. It often explodes with little or\n"
    "no provocation.");

const u8 gElectrodePokedexTextUnused[] = _("");

const u8 gExeggcutePokedexText[] = _(
    "It is often mistaken for eggs. When\n"
    "disturbed, they quickly gather and attack\n"
    "in swarms.");

const u8 gExeggcutePokedexTextUnused[] = _("");

const u8 gExeggutorPokedexText[] = _(
    "It is said that on rare occasions, one\n"
    "of its heads will drop off and continue on\n"
    "as an EXEGGCUTE.");

const u8 gExeggutorPokedexTextUnused[] = _("");

const u8 gCubonePokedexText[] = _(
    "Because it never removes its skull helmet,\n"
    "no one has ever seen this POKéMON's real\n"
    "face.");

const u8 gCubonePokedexTextUnused[] = _("");

const u8 gMarowakPokedexText[] = _(
    "The bone it holds is its key weapon.\n"
    "It throws the bone skillfully like a\n"
    "boomerang to KO targets.");

const u8 gMarowakPokedexTextUnused[] = _("");

const u8 gHitmonleePokedexText[] = _(
    "When in a hurry, its legs lengthen\n"
    "progressively. It runs smoothly with\n"
    "extra-long, loping strides.");

const u8 gHitmonleePokedexTextUnused[] = _("");

const u8 gHitmonchanPokedexText[] = _(
    "While apparently doing nothing, it fires\n"
    "punches in lightning-fast volleys that are\n"
    "impossible to see.");

const u8 gHitmonchanPokedexTextUnused[] = _("");

const u8 gLickitungPokedexText[] = _(
    "Its tongue can be extended like a\n"
    "chameleon's. It leaves a tingling\n"
    "sensation when it licks enemies.");

const u8 gLickitungPokedexTextUnused[] = _("");

const u8 gKoffingPokedexText[] = _(
    "Because it stores several kinds of toxic\n"
    "gases in its body, it is prone to\n"
    "exploding without warning.");

const u8 gKoffingPokedexTextUnused[] = _("");

const u8 gWeezingPokedexText[] = _(
    "Where two kinds of poison gases meet, two\n"
    "KOFFING can fuse into a WEEZING over\n"
    "many years.");

const u8 gWeezingPokedexTextUnused[] = _("");

const u8 gRhyhornPokedexText[] = _(
    "Its massive bones are 1,000 times harder\n"
    "than human bones. Its TACKLE can knock a\n"
    "semitrailer flying.");

const u8 gRhyhornPokedexTextUnused[] = _("");

const u8 gRhydonPokedexText[] = _(
    "Protected by an armor-like hide, it is\n"
    "capable of living in molten lava of 3,600\n"
    "degrees Fahrenheit.");

const u8 gRhydonPokedexTextUnused[] = _("");

const u8 gChanseyPokedexText[] = _(
    "A rare and elusive POKéMON that is said\n"
    "to bring happiness to those who manage to\n"
    "catch one.");

const u8 gChanseyPokedexTextUnused[] = _("");

const u8 gTangelaPokedexText[] = _(
    "The whole body is swathed with wide vines\n"
    "that are similar to seaweed. The vines\n"
    "sway as it walks.");

const u8 gTangelaPokedexTextUnused[] = _("");

const u8 gKangaskhanPokedexText[] = _(
    "The infant rarely ventures out of its\n"
    "mother's protective pouch until it is\n"
    "three years old.");

const u8 gKangaskhanPokedexTextUnused[] = _("");

const u8 gHorseaPokedexText[] = _(
    "Known to shoot down flying bugs with\n"
    "precision blasts of ink from the surface\n"
    "of the water.");

const u8 gHorseaPokedexTextUnused[] = _("");

const u8 gSeadraPokedexText[] = _(
    "It is capable of swimming backwards by\n"
    "rapidly flapping its winglike pectoral fins\n"
    "and stout tail.");

const u8 gSeadraPokedexTextUnused[] = _("");

const u8 gGoldeenPokedexText[] = _(
    "Its tail fin billows like an elegant\n"
    "ballroom dress, giving it the nickname of\n"
    "“The Water Queen.”");

const u8 gGoldeenPokedexTextUnused[] = _("");

const u8 gSeakingPokedexText[] = _(
    "In the autumn spawning season, they can\n"
    "be seen swimming powerfully up rivers and\n"
    "creeks.");

const u8 gSeakingPokedexTextUnused[] = _("");

const u8 gStaryuPokedexText[] = _(
    "An enigmatic POKéMON that can effortlessly\n"
    "regenerate any appendage it loses in\n"
    "battle.");

const u8 gStaryuPokedexTextUnused[] = _("");

const u8 gStarmiePokedexText[] = _(
    "Its central core glows with the seven\n"
    "colors of the rainbow. Some people value\n"
    "the core as a gem.");

const u8 gStarmiePokedexTextUnused[] = _("");

const u8 gMrmimePokedexText[] = _(
    "If interrupted while it is miming, it will\n"
    "suddenly DOUBLESLAP the offender with its\n"
    "broad hands.");

const u8 gMrmimePokedexTextUnused[] = _("");

const u8 gScytherPokedexText[] = _(
    "With ninja-like agility and speed, it can\n"
    "create the illusion that there is more\n"
    "than one of itself.");

const u8 gScytherPokedexTextUnused[] = _("");

const u8 gJynxPokedexText[] = _(
    "It seductively wiggles its hips as it\n"
    "walks. It can cause people to dance in\n"
    "unison with it.");

const u8 gJynxPokedexTextUnused[] = _("");

const u8 gElectabuzzPokedexText[] = _(
    "Normally found near power plants, they\n"
    "can wander away and cause major\n"
    "blackouts in cities.");

const u8 gElectabuzzPokedexTextUnused[] = _("");

const u8 gMagmarPokedexText[] = _(
    "Its body always burns with an orange glow\n"
    "that enables it to hide perfectly amidst\n"
    "flames.");

const u8 gMagmarPokedexTextUnused[] = _("");

const u8 gPinsirPokedexText[] = _(
    "If it fails to crush the foe in its\n"
    "pincers, it will swing around and toss\n"
    "the opponent.");

const u8 gPinsirPokedexTextUnused[] = _("");

const u8 gTaurosPokedexText[] = _(
    "When it targets an enemy, it charges\n"
    "furiously while whipping its body with its\n"
    "long tails.");

const u8 gTaurosPokedexTextUnused[] = _("");

const u8 gMagikarpPokedexText[] = _(
    "In the distant past, it was somewhat\n"
    "stronger than the horribly weak\n"
    "descendants that exist today.");

const u8 gMagikarpPokedexTextUnused[] = _("");

const u8 gGyaradosPokedexText[] = _(
    "Rarely seen in the wild. Huge and vicious,\n"
    "it is capable of destroying entire cities\n"
    "in a rage.");

const u8 gGyaradosPokedexTextUnused[] = _("");

const u8 gLaprasPokedexText[] = _(
    "A POKéMON that has been overhunted\n"
    "almost to extinction. It can ferry people\n"
    "on its back.");

const u8 gLaprasPokedexTextUnused[] = _("");

const u8 gDittoPokedexText[] = _(
    "Capable of copying an opponent's genetic\n"
    "code to instantly transform itself into a\n"
    "duplicate of the enemy.");

const u8 gDittoPokedexTextUnused[] = _("");

const u8 gEeveePokedexText[] = _(
    "Its genetic code is irregular. It may\n"
    "mutate if it is exposed to radiation from\n"
    "element STONES.");

const u8 gEeveePokedexTextUnused[] = _("");

const u8 gVaporeonPokedexText[] = _(
    "Lives close to water. Its long tail is\n"
    "ridged with a fin which is often mistaken\n"
    "for a mermaid's.");

const u8 gVaporeonPokedexTextUnused[] = _("");

const u8 gJolteonPokedexText[] = _(
    "It accumulates negative ions in the\n"
    "atmosphere to blast out 10,000-volt\n"
    "lightning bolts.");

const u8 gJolteonPokedexTextUnused[] = _("");

const u8 gFlareonPokedexText[] = _(
    "When storing thermal energy in its body,\n"
    "its temperature can soar to over 1,600\n"
    "degrees Fahrenheit.");

const u8 gFlareonPokedexTextUnused[] = _("");

const u8 gPorygonPokedexText[] = _(
    "A POKéMON that consists entirely of\n"
    "programming code. It is capable of moving\n"
    "freely in cyberspace.");

const u8 gPorygonPokedexTextUnused[] = _("");

const u8 gOmanytePokedexText[] = _(
    "Although long extinct, in rare cases, it\n"
    "can be genetically regenerated from\n"
    "fossils.");

const u8 gOmanytePokedexTextUnused[] = _("");

const u8 gOmastarPokedexText[] = _(
    "Despite having strong fangs and tentacles,\n"
    "it went extinct when its heavy shell made\n"
    "it unable to catch prey.");

const u8 gOmastarPokedexTextUnused[] = _("");

const u8 gKabutoPokedexText[] = _(
    "A POKéMON that was regenerated from a\n"
    "fossil found in what was once the ocean\n"
    "floor long ago.");

const u8 gKabutoPokedexTextUnused[] = _("");

const u8 gKabutopsPokedexText[] = _(
    "Its sleek shape is perfect for swimming.\n"
    "It slashes prey with its claws and drains\n"
    "their fluids.");

const u8 gKabutopsPokedexTextUnused[] = _("");

const u8 gAerodactylPokedexText[] = _(
    "A ferocious, prehistoric POKéMON that\n"
    "goes for the enemy's throat with its\n"
    "serrated, sawlike fangs.");

const u8 gAerodactylPokedexTextUnused[] = _("");

const u8 gSnorlaxPokedexText[] = _(
    "Very lazy. Just eats and sleeps. As its\n"
    "rotund bulk builds, it becomes steadily\n"
    "more slothful.");

const u8 gSnorlaxPokedexTextUnused[] = _("");

const u8 gArticunoPokedexText[] = _(
    "A legendary bird POKéMON that is said to\n"
    "appear to doomed people who are lost in\n"
    "icy mountains.");

const u8 gArticunoPokedexTextUnused[] = _("");

const u8 gZapdosPokedexText[] = _(
    "A legendary bird POKéMON that is said to\n"
    "appear from clouds while dropping\n"
    "enormous lightning bolts.");

const u8 gZapdosPokedexTextUnused[] = _("");

const u8 gMoltresPokedexText[] = _(
    "It is said to be the legendary bird\n"
    "POKéMON of fire. Every flap of its wings\n"
    "creates a dazzling flare of flames.");

const u8 gMoltresPokedexTextUnused[] = _("");

const u8 gDratiniPokedexText[] = _(
    "Long considered a mythical POKéMON until\n"
    "recently, when a small colony was found\n"
    "living underwater.");

const u8 gDratiniPokedexTextUnused[] = _("");

const u8 gDragonairPokedexText[] = _(
    "A mystical POKéMON that exudes a gentle\n"
    "aura. It is said to have the ability to\n"
    "change the weather.");

const u8 gDragonairPokedexTextUnused[] = _("");

const u8 gDragonitePokedexText[] = _(
    "Only a very few people ever see this\n"
    "POKéMON. Its intelligence is said to\n"
    "match that of humans.");

const u8 gDragonitePokedexTextUnused[] = _("");

const u8 gMewtwoPokedexText[] = _(
    "It was created by a scientist after years\n"
    "of horrific gene-splicing and DNA-\n"
    "engineering experiments.");

const u8 gMewtwoPokedexTextUnused[] = _("");

const u8 gMewPokedexText[] = _(
    "So rare that it is still said to be a\n"
    "mirage by many experts. Only a few people\n"
    "have seen it worldwide.");

const u8 gMewPokedexTextUnused[] = _("");

const u8 gChikoritaPokedexText[] = _(
    "A sweet aroma gently wafts from the leaf\n"
    "on its head. It is docile and loves to\n"
    "soak up the sun's rays.");

const u8 gChikoritaPokedexTextUnused[] = _("");

const u8 gBayleefPokedexText[] = _(
    "The scent of spices comes from around\n"
    "its neck. Somehow, sniffing it makes you\n"
    "want to fight.");

const u8 gBayleefPokedexTextUnused[] = _("");

const u8 gMeganiumPokedexText[] = _(
    "The aroma that rises from its petals\n"
    "contains a substance that calms aggressive\n"
    "feelings.");

const u8 gMeganiumPokedexTextUnused[] = _("");

const u8 gCyndaquilPokedexText[] = _(
    "It is timid and always curls itself up in\n"
    "a ball. If attacked, it flares up its back\n"
    "for protection.");

const u8 gCyndaquilPokedexTextUnused[] = _("");

const u8 gQuilavaPokedexText[] = _(
    "Be careful if it turns its back during\n"
    "battle. It means that it will attack with\n"
    "the fire on its back.");

const u8 gQuilavaPokedexTextUnused[] = _("");

const u8 gTyphlosionPokedexText[] = _(
    "If its rage peaks, it becomes so hot that\n"
    "anything that touches it will instantly go\n"
    "up in flames.");

const u8 gTyphlosionPokedexTextUnused[] = _("");

const u8 gTotodilePokedexText[] = _(
    "Its well-developed jaws are powerful and\n"
    "capable of crushing anything. Even its\n"
    "TRAINER must be careful.");

const u8 gTotodilePokedexTextUnused[] = _("");

const u8 gCroconawPokedexText[] = _(
    "If it loses a fang, a new one grows back\n"
    "in its place. There are always 48 fangs\n"
    "lining its mouth.");

const u8 gCroconawPokedexTextUnused[] = _("");

const u8 gFeraligatrPokedexText[] = _(
    "When it bites with its massive and\n"
    "powerful jaws, it shakes its head and\n"
    "savagely tears up its victim.");

const u8 gFeraligatrPokedexTextUnused[] = _("");

const u8 gSentretPokedexText[] = _(
    "A very cautious POKéMON, it raises itself\n"
    "up using its tail to get a better view of\n"
    "its surroundings.");

const u8 gSentretPokedexTextUnused[] = _("");

const u8 gFurretPokedexText[] = _(
    "It makes a nest to suit its long and skinny\n"
    "body. The nest is impossible for other\n"
    "POKéMON to enter.");

const u8 gFurretPokedexTextUnused[] = _("");

const u8 gHoothootPokedexText[] = _(
    "It always stands on one foot. It changes\n"
    "feet so fast, the movement can rarely be\n"
    "seen.");

const u8 gHoothootPokedexTextUnused[] = _("");

const u8 gNoctowlPokedexText[] = _(
    "Its eyes are specially adapted. They\n"
    "concentrate even faint light and enable it\n"
    "to see in the dark.");

const u8 gNoctowlPokedexTextUnused[] = _("");

const u8 gLedybaPokedexText[] = _(
    "It is very timid. It will be afraid to\n"
    "move if it is alone. But it will be active\n"
    "if it is in a group.");

const u8 gLedybaPokedexTextUnused[] = _("");

const u8 gLedianPokedexText[] = _(
    "When the stars flicker in the night sky, it\n"
    "flutters about, scattering a glowing\n"
    "powder.");

const u8 gLedianPokedexTextUnused[] = _("");

const u8 gSpinarakPokedexText[] = _(
    "It lies still in the same pose for days\n"
    "in its web, waiting for its unsuspecting\n"
    "prey to wander close.");

const u8 gSpinarakPokedexTextUnused[] = _("");

const u8 gAriadosPokedexText[] = _(
    "It spins string not only from its rear but\n"
    "also from its mouth. It is hard to tell\n"
    "which end is which.");

const u8 gAriadosPokedexTextUnused[] = _("");

const u8 gCrobatPokedexText[] = _(
    "It flies so silently through the dark on\n"
    "its four wings that it may not be noticed\n"
    "even when nearby.");

const u8 gCrobatPokedexTextUnused[] = _("");

const u8 gChinchouPokedexText[] = _(
    "It shoots positive and negative\n"
    "electricity between the tips of its two\n"
    "antennae and zaps its enemies.");

const u8 gChinchouPokedexTextUnused[] = _("");

const u8 gLanturnPokedexText[] = _(
    "The light it emits is so bright that it can\n"
    "illuminate the sea's surface from a depth\n"
    "of over three miles.");

const u8 gLanturnPokedexTextUnused[] = _("");

const u8 gPichuPokedexText[] = _(
    "It is not yet skilled at storing\n"
    "electricity. It may send out a jolt if\n"
    "amused or startled.");

const u8 gPichuPokedexTextUnused[] = _("");

const u8 gCleffaPokedexText[] = _(
    "Because of its unusual, starlike\n"
    "silhouette, people believe that it came\n"
    "here on a meteor.");

const u8 gCleffaPokedexTextUnused[] = _("");

const u8 gIgglybuffPokedexText[] = _(
    "It has a very soft body. If it starts to\n"
    "roll, it will bounce all over and be\n"
    "impossible to stop.");

const u8 gIgglybuffPokedexTextUnused[] = _("");

const u8 gTogepiPokedexText[] = _(
    "The shell seems to be filled with joy.\n"
    "It is said that it will share good luck\n"
    "when treated kindly.");

const u8 gTogepiPokedexTextUnused[] = _("");

const u8 gTogeticPokedexText[] = _(
    "They say that it will appear before\n"
    "kindhearted, caring people and shower\n"
    "them with happiness.");

const u8 gTogeticPokedexTextUnused[] = _("");

const u8 gNatuPokedexText[] = _(
    "Because its wings aren't yet fully grown,\n"
    "it has to hop to get around. It is always\n"
    "staring at something.");

const u8 gNatuPokedexTextUnused[] = _("");

const u8 gXatuPokedexText[] = _(
    "They say that it stays still and quiet\n"
    "because it is seeing both the past and\n"
    "future at the same time.");

const u8 gXatuPokedexTextUnused[] = _("");

const u8 gMareepPokedexText[] = _(
    "If static electricity builds in its body,\n"
    "its fleece doubles in volume. Touching\n"
    "it will shock you.");

const u8 gMareepPokedexTextUnused[] = _("");

const u8 gFlaaffyPokedexText[] = _(
    "As a result of storing too much\n"
    "electricity, it developed patches where\n"
    "even downy wool won't grow.");

const u8 gFlaaffyPokedexTextUnused[] = _("");

const u8 gAmpharosPokedexText[] = _(
    "The tail's tip shines brightly and can be\n"
    "seen from far away. It acts as a beacon\n"
    "for lost people.");

const u8 gAmpharosPokedexTextUnused[] = _("");

const u8 gBellossomPokedexText[] = _(
    "BELLOSSOM gather at times and appear to\n"
    "dance. They say that the dance is a\n"
    "ritual to summon the sun.");

const u8 gBellossomPokedexTextUnused[] = _("");

const u8 gMarillPokedexText[] = _(
    "The tip of its tail, which contains oil\n"
    "that is lighter than water, lets it swim\n"
    "without drowning.");

const u8 gMarillPokedexTextUnused[] = _("");

const u8 gAzumarillPokedexText[] = _(
    "By keeping still and listening intently, it\n"
    "can even tell what is in wild, fast-moving\n"
    "rivers.");

const u8 gAzumarillPokedexTextUnused[] = _("");

const u8 gSudowoodoPokedexText[] = _(
    "Although it always pretends to be a tree,\n"
    "its composition appears to be closer to a\n"
    "rock than a plant.");

const u8 gSudowoodoPokedexTextUnused[] = _("");

const u8 gPolitoedPokedexText[] = _(
    "If POLIWAG and POLIWHIRL hear its\n"
    "echoing cry, they respond by gathering\n"
    "from far and wide.");

const u8 gPolitoedPokedexTextUnused[] = _("");

const u8 gHoppipPokedexText[] = _(
    "To keep from being blown away by the\n"
    "wind, they gather in clusters. They do\n"
    "enjoy gentle breezes, though.");

const u8 gHoppipPokedexTextUnused[] = _("");

const u8 gSkiploomPokedexText[] = _(
    "The bloom on top of its head opens and\n"
    "closes as the temperature fluctuates up\n"
    "and down.");

const u8 gSkiploomPokedexTextUnused[] = _("");

const u8 gJumpluffPokedexText[] = _(
    "Once it catches the wind, it deftly\n"
    "controls its cotton-puff spores to float,\n"
    "even around the world.");

const u8 gJumpluffPokedexTextUnused[] = _("");

const u8 gAipomPokedexText[] = _(
    "Its tail is so powerful that it can use it\n"
    "to grab a tree branch and hold itself up\n"
    "in the air.");

const u8 gAipomPokedexTextUnused[] = _("");

const u8 gSunkernPokedexText[] = _(
    "It may drop out of the sky suddenly.\n"
    "If attacked by a SPEAROW, it will\n"
    "violently shake its leaves.");

const u8 gSunkernPokedexTextUnused[] = _("");

const u8 gSunfloraPokedexText[] = _(
    "It converts sunlight into energy. In the\n"
    "darkness after sunset, it closes its petals\n"
    "and becomes still.");

const u8 gSunfloraPokedexTextUnused[] = _("");

const u8 gYanmaPokedexText[] = _(
    "If it flaps its wings really fast, it can\n"
    "generate shock waves that will shatter\n"
    "windows in the area.");

const u8 gYanmaPokedexTextUnused[] = _("");

const u8 gWooperPokedexText[] = _(
    "This POKéMON lives in cold water. It will\n"
    "leave the water to search for food when\n"
    "it gets cold outside.");

const u8 gWooperPokedexTextUnused[] = _("");

const u8 gQuagsirePokedexText[] = _(
    "This carefree POKéMON has an easygoing\n"
    "nature. While swimming, it always bumps\n"
    "into boat hulls.");

const u8 gQuagsirePokedexTextUnused[] = _("");

const u8 gEspeonPokedexText[] = _(
    "It uses the fine hair that covers its body\n"
    "to sense air currents and predict its\n"
    "enemy's actions.");

const u8 gEspeonPokedexTextUnused[] = _("");

const u8 gUmbreonPokedexText[] = _(
    "When agitated, this POKéMON protects\n"
    "itself by spraying poisonous sweat from its\n"
    "pores.");

const u8 gUmbreonPokedexTextUnused[] = _("");

const u8 gMurkrowPokedexText[] = _(
    "Feared and loathed by many, it is\n"
    "believed to bring misfortune to all those\n"
    "who see it at night.");

const u8 gMurkrowPokedexTextUnused[] = _("");

const u8 gSlowkingPokedexText[] = _(
    "It has incredible intellect and intuition.\n"
    "Whatever the situation, it remains calm\n"
    "and collected.");

const u8 gSlowkingPokedexTextUnused[] = _("");

const u8 gMisdreavusPokedexText[] = _(
    "It likes playing mischievous tricks such as\n"
    "screaming and wailing to startle people at\n"
    "night. ");

const u8 gMisdreavusPokedexTextUnused[] = _("");

const u8 gUnownPokedexText[] = _(
    "Their shapes look like hieroglyphs on\n"
    "ancient tablets. It is said that the two\n"
    "are somehow related.");

const u8 gUnownPokedexTextUnused[] = _("");

const u8 gWobbuffetPokedexText[] = _(
    "It hates light and shock. If attacked,\n"
    "it inflates its body to pump up its\n"
    "counterstrike.");

const u8 gWobbuffetPokedexTextUnused[] = _("");

const u8 gGirafarigPokedexText[] = _(
    "Its tail has a small brain of its own.\n"
    "Beware! If you get close, it may react\n"
    "to your scent and bite.");

const u8 gGirafarigPokedexTextUnused[] = _("");

const u8 gPinecoPokedexText[] = _(
    "It likes to make its shell thicker by\n"
    "adding layers of tree bark. The extra\n"
    "weight doesn't bother it.");

const u8 gPinecoPokedexTextUnused[] = _("");

const u8 gForretressPokedexText[] = _(
    "Its entire body is shielded by a steel-\n"
    "hard shell. What lurks inside the armor is\n"
    "a total mystery.");

const u8 gForretressPokedexTextUnused[] = _("");

const u8 gDunsparcePokedexText[] = _(
    "When spotted, this POKéMON escapes\n"
    "backward by furiously boring into the\n"
    "ground with its tail.");

const u8 gDunsparcePokedexTextUnused[] = _("");

const u8 gGligarPokedexText[] = _(
    "It flies straight at its target's face,\n"
    "then clamps down on the startled\n"
    "victim to inject poison.");

const u8 gGligarPokedexTextUnused[] = _("");

const u8 gSteelixPokedexText[] = _(
    "Its body has been compressed deep under\n"
    "the ground. As a result, it is even harder\n"
    "than diamond.");

const u8 gSteelixPokedexTextUnused[] = _("");

const u8 gSnubbullPokedexText[] = _(
    "Although it looks frightening, it is\n"
    "actually kind and affectionate. It is very\n"
    "popular among women.");

const u8 gSnubbullPokedexTextUnused[] = _("");

const u8 gGranbullPokedexText[] = _(
    "It is actually timid and easily spooked.\n"
    "If attacked, it flails about to fend off\n"
    "its attacker.");

const u8 gGranbullPokedexTextUnused[] = _("");

const u8 gQwilfishPokedexText[] = _(
    "To fire its poison spikes, it must inflate\n"
    "its body by drinking over 2.6 gallons of \n"
    "water all at once.");

const u8 gQwilfishPokedexTextUnused[] = _("");

const u8 gScizorPokedexText[] = _(
    "It swings its eye-patterned pincers up to\n"
    "scare its foes. This makes it look like it\n"
    "has three heads.");

const u8 gScizorPokedexTextUnused[] = _("");

const u8 gShucklePokedexText[] = _(
    "The BERRIES it stores in its vaselike\n"
    "shell decompose and become a gooey\n"
    "liquid.");

const u8 gShucklePokedexTextUnused[] = _("");

const u8 gHeracrossPokedexText[] = _(
    "This powerful POKéMON thrusts its prized\n"
    "horn under its enemies' bellies, then lifts\n"
    "and throws them.");

const u8 gHeracrossPokedexTextUnused[] = _("");

const u8 gSneaselPokedexText[] = _(
    "Its paws conceal sharp claws.\n"
    "If attacked, it suddenly extends the\n"
    "claws and startles its enemy.");

const u8 gSneaselPokedexTextUnused[] = _("");

const u8 gTeddiursaPokedexText[] = _(
    "If it finds honey, its crescent mark glows.\n"
    "It always licks its paws because they are\n"
    "soaked with honey.");

const u8 gTeddiursaPokedexTextUnused[] = _("");

const u8 gUrsaringPokedexText[] = _(
    "Although it is a good climber, it prefers\n"
    "to snap stout trees with its forelegs and\n"
    "eat fallen BERRIES.");

const u8 gUrsaringPokedexTextUnused[] = _("");

const u8 gSlugmaPokedexText[] = _(
    "It never sleeps. It has to keep moving\n"
    "because if it stopped, its magma body\n"
    "would cool and harden.");

const u8 gSlugmaPokedexTextUnused[] = _("");

const u8 gMagcargoPokedexText[] = _(
    "The shell on its back is just skin that\n"
    "has cooled and hardened. It breaks easily\n"
    "with a slight touch.");

const u8 gMagcargoPokedexTextUnused[] = _("");

const u8 gSwinubPokedexText[] = _(
    "It rubs its snout on the ground to find\n"
    "and dig up food. It sometimes discovers\n"
    "hot springs.");

const u8 gSwinubPokedexTextUnused[] = _("");

const u8 gPiloswinePokedexText[] = _(
    "Because the long hair all over its body\n"
    "obscures its sight, it just keeps charging\n"
    "repeatedly.");

const u8 gPiloswinePokedexTextUnused[] = _("");

const u8 gCorsolaPokedexText[] = _(
    "It continuously sheds and grows. The tip\n"
    "of its head is prized as a treasure for\n"
    "its beauty.");

const u8 gCorsolaPokedexTextUnused[] = _("");

const u8 gRemoraidPokedexText[] = _(
    "It has superb accuracy. The water it\n"
    "shoots out can strike even moving prey\n"
    "from more than 100 yards.");

const u8 gRemoraidPokedexTextUnused[] = _("");

const u8 gOctilleryPokedexText[] = _(
    "It traps enemies with its suction-cupped\n"
    "tentacles, then smashes them with its\n"
    "rock-hard head.");

const u8 gOctilleryPokedexTextUnused[] = _("");

const u8 gDelibirdPokedexText[] = _(
    "It carries food all day long. There are\n"
    "tales about lost people who were saved\n"
    "by the food it had.");

const u8 gDelibirdPokedexTextUnused[] = _("");

const u8 gMantinePokedexText[] = _(
    "As it majestically swims, it doesn't care\n"
    "if REMORAID attach to it to scavenge\n"
    "for its leftovers.");

const u8 gMantinePokedexTextUnused[] = _("");

const u8 gSkarmoryPokedexText[] = _(
    "Its sturdy wings look heavy, but its bones\n"
    "are hollow and light, allowing it to fly\n"
    "freely in the sky.");

const u8 gSkarmoryPokedexTextUnused[] = _("");

const u8 gHoundourPokedexText[] = _(
    "It uses different kinds of cries for\n"
    "communicating with others of its kind and\n"
    "for pursuing prey.");

const u8 gHoundourPokedexTextUnused[] = _("");

const u8 gHoundoomPokedexText[] = _(
    "If you are burned by the flames it shoots\n"
    "from its mouth, the pain will never go\n"
    "away.");

const u8 gHoundoomPokedexTextUnused[] = _("");

const u8 gKingdraPokedexText[] = _(
    "It is said that it usually hides in\n"
    "underwater caves. It can create\n"
    "whirlpools by yawning.");

const u8 gKingdraPokedexTextUnused[] = _("");

const u8 gPhanpyPokedexText[] = _(
    "It swings its long snout around playfully,\n"
    "but because it is so strong, this can be\n"
    "dangerous.");

const u8 gPhanpyPokedexTextUnused[] = _("");

const u8 gDonphanPokedexText[] = _(
    "It has sharp, hard tusks and a rugged\n"
    "hide. Its TACKLE is strong enough to\n"
    "knock down a house.");

const u8 gDonphanPokedexTextUnused[] = _("");

const u8 gPorygon2PokedexText[] = _(
    "This upgraded version of PORYGON is\n"
    "designed for space exploration. However,\n"
    "it can't even fly.");

const u8 gPorygon2PokedexTextUnused[] = _("");

const u8 gStantlerPokedexText[] = _(
    "Its curved antlers subtly change the flow\n"
    "of air to create a strange space where\n"
    "reality is distorted.");

const u8 gStantlerPokedexTextUnused[] = _("");

const u8 gSmearglePokedexText[] = _(
    "A special fluid oozes from the tip of its\n"
    "tail. It paints the fluid everywhere to\n"
    "mark its territory.");

const u8 gSmearglePokedexTextUnused[] = _("");

const u8 gTyroguePokedexText[] = _(
    "It is always bursting with energy. To make\n"
    "itself stronger, it keeps on fighting even\n"
    "if it loses.");

const u8 gTyroguePokedexTextUnused[] = _("");

const u8 gHitmontopPokedexText[] = _(
    "If you become enchanted by its smooth,\n"
    "elegant, dance-like kicks, you may get\n"
    "drilled hard.");

const u8 gHitmontopPokedexTextUnused[] = _("");

const u8 gSmoochumPokedexText[] = _(
    "Its lips are the most sensitive parts on\n"
    "its body. It always uses its lips first to\n"
    "examine things.");

const u8 gSmoochumPokedexTextUnused[] = _("");

const u8 gElekidPokedexText[] = _(
    "It rotates its arms to generate\n"
    "electricity, but it tires easily, so it\n"
    "charges up only a little bit.");

const u8 gElekidPokedexTextUnused[] = _("");

const u8 gMagbyPokedexText[] = _(
    "Each and every time it inhales and\n"
    "exhales, hot embers dribble out of its\n"
    "mouth and nostrils.");

const u8 gMagbyPokedexTextUnused[] = _("");

const u8 gMiltankPokedexText[] = _(
    "Its milk is packed with nutrition, making\n"
    "it the ultimate beverage for the sick or\n"
    "weary.");

const u8 gMiltankPokedexTextUnused[] = _("");

const u8 gBlisseyPokedexText[] = _(
    "Anyone who takes even one bite of\n"
    "BLISSEY's egg becomes unfailingly caring\n"
    "and pleasant to everyone.");

const u8 gBlisseyPokedexTextUnused[] = _("");

const u8 gRaikouPokedexText[] = _(
    "The rain clouds it carries let it fire\n"
    "thunderbolts at will. They say that it\n"
    "descended with lightning.");

const u8 gRaikouPokedexTextUnused[] = _("");

const u8 gEnteiPokedexText[] = _(
    "Volcanoes erupt when it barks. Unable to\n"
    "restrain its extreme power, it races\n"
    "headlong around the land.");

const u8 gEnteiPokedexTextUnused[] = _("");

const u8 gSuicunePokedexText[] = _(
    "Said to be the reincarnation of north\n"
    "winds, it can instantly purify filthy,\n"
    "murky water.");

const u8 gSuicunePokedexTextUnused[] = _("");

const u8 gLarvitarPokedexText[] = _(
    "It feeds on soil. After it has eaten a\n"
    "large mountain, it will fall asleep so it\n"
    "can grow.");

const u8 gLarvitarPokedexTextUnused[] = _("");

const u8 gPupitarPokedexText[] = _(
    "Its shell is as hard as sheet rock, and it\n"
    "is also very strong. Its THRASHING can\n"
    "topple a mountain.");

const u8 gPupitarPokedexTextUnused[] = _("");

const u8 gTyranitarPokedexText[] = _(
    "Its body can't be harmed by any sort of\n"
    "attack, so it is very eager to make\n"
    "challenges against enemies.");

const u8 gTyranitarPokedexTextUnused[] = _("");

const u8 gLugiaPokedexText[] = _(
    "It is said that it quietly spends its time\n"
    "deep at the bottom of the sea because\n"
    "its powers are too strong.");

const u8 gLugiaPokedexTextUnused[] = _("");

const u8 gHoOhPokedexText[] = _(
    "Legends claim this POKéMON flies the\n"
    "world's skies continuously on its\n"
    "magnificent seven-colored wings.");

const u8 gHoOhPokedexTextUnused[] = _("");

const u8 gCelebiPokedexText[] = _(
    "This POKéMON wanders across time.\n"
    "Grass and trees flourish in the forests in\n"
    "which it has appeared.");

const u8 gCelebiPokedexTextUnused[] = _("");

const u8 gTreeckoPokedexText[] = _(
    "It quickly scales even vertical walls.\n"
    "It senses humidity with its tail to predict\n"
    "the next day's weather.");

const u8 gTreeckoPokedexTextUnused[] = _("");

const u8 gGrovylePokedexText[] = _(
    "Its strongly developed thigh muscles\n"
    "give it astounding agility and jumping\n"
    "performance.");

const u8 gGrovylePokedexTextUnused[] = _("");

const u8 gSceptilePokedexText[] = _(
    "The leaves on its forelegs are as sharp\n"
    "as swords. It agilely leaps about the\n"
    "branches of trees to strike.");

const u8 gSceptilePokedexTextUnused[] = _("");

const u8 gTorchicPokedexText[] = _(
    "It has a flame sac inside its belly that\n"
    "perpetually burns. It feels warm if it is\n"
    "hugged.");

const u8 gTorchicPokedexTextUnused[] = _("");

const u8 gCombuskenPokedexText[] = _(
    "It boosts its concentration by emitting\n"
    "harsh cries. Its kicks have outstanding\n"
    "destructive power.");

const u8 gCombuskenPokedexTextUnused[] = _("");

const u8 gBlazikenPokedexText[] = _(
    "When facing a tough foe, it looses flames\n"
    "from its wrists. Its powerful legs let it\n"
    "jump clear over buildings.");

const u8 gBlazikenPokedexTextUnused[] = _("");

const u8 gMudkipPokedexText[] = _(
    "Its large tail fin propels it through\n"
    "water with powerful acceleration. It is\n"
    "strong in spite of its size.");

const u8 gMudkipPokedexTextUnused[] = _("");

const u8 gMarshtompPokedexText[] = _(
    "It is at its best when on muddy ground\n"
    "with poor footing. It quickly overwhelms\n"
    "foes struggling in mud.");

const u8 gMarshtompPokedexTextUnused[] = _("");

const u8 gSwampertPokedexText[] = _(
    "Its arms are rock-hard. With one swing,\n"
    "they can batter down its foe. It makes its\n"
    "nest on beautiful beaches.");

const u8 gSwampertPokedexTextUnused[] = _("");

const u8 gPoochyenaPokedexText[] = _(
    "It has a very tenacious nature. Its acute\n"
    "sense of smell lets it chase a chosen\n"
    "prey without ever losing track.");

const u8 gPoochyenaPokedexTextUnused[] = _("");

const u8 gMightyenaPokedexText[] = _(
    "It will always obey the commands of a\n"
    "skilled TRAINER. Its behavior arises from\n"
    "its living in packs in ancient times.");

const u8 gMightyenaPokedexTextUnused[] = _("");

const u8 gZigzagoonPokedexText[] = _(
    "A POKéMON with abundant curiosity.\n"
    "It shows an interest in everything, so it\n"
    "always zigs and zags.");

const u8 gZigzagoonPokedexTextUnused[] = _("");

const u8 gLinoonePokedexText[] = _(
    "When running in a straight line, it can top\n"
    "60 miles per hour. However, it has a\n"
    "tough time with curved roads.");

const u8 gLinoonePokedexTextUnused[] = _("");

const u8 gWurmplePokedexText[] = _(
    "It lives amidst tall grass and in forests.\n"
    "When attacked, it resists by pointing its\n"
    "venomous spikes at the foe.");

const u8 gWurmplePokedexTextUnused[] = _("");

const u8 gSilcoonPokedexText[] = _(
    "It conserves its energy by moving as\n"
    "little as possible. It awaits evolution\n"
    "while drinking only a little rainwater.");

const u8 gSilcoonPokedexTextUnused[] = _("");

const u8 gBeautiflyPokedexText[] = _(
    "Despite its appearance, it has an\n"
    "aggressive nature. It attacks by jabbing\n"
    "with its long, thin mouth.");

const u8 gBeautiflyPokedexTextUnused[] = _("");

const u8 gCascoonPokedexText[] = _(
    "Its body, which is made of soft silk,\n"
    "hardens over time. When cracks appear,\n"
    "evolution is near.");

const u8 gCascoonPokedexTextUnused[] = _("");

const u8 gDustoxPokedexText[] = _(
    "It scatters horribly toxic dust when it\n"
    "senses danger. They tend to gather in the\n"
    "glow of streetlamps at night.");

const u8 gDustoxPokedexTextUnused[] = _("");

const u8 gLotadPokedexText[] = _(
    "It searches about for clean water. If it\n"
    "does not drink water for too long, the\n"
    "leaf on its head wilts.");

const u8 gLotadPokedexTextUnused[] = _("");

const u8 gLombrePokedexText[] = _(
    "It lives at the water's edge where it is\n"
    "sunny. It sleeps on a bed of water grass\n"
    "by day and becomes active at night.");

const u8 gLombrePokedexTextUnused[] = _("");

const u8 gLudicoloPokedexText[] = _(
    "The rhythm of bright, festive music\n"
    "activates LUDICOLO's cells, making it more\n"
    "powerful.");

const u8 gLudicoloPokedexTextUnused[] = _("");

const u8 gSeedotPokedexText[] = _(
    "If it remains still, it becomes impossible\n"
    "to distinguish from real nuts. It delights\n"
    "in surprising foraging PIDGEY.");

const u8 gSeedotPokedexTextUnused[] = _("");

const u8 gNuzleafPokedexText[] = _(
    "They live in holes bored in large trees.\n"
    "The sound of NUZLEAF's grass flute fills\n"
    "listeners with dread.");

const u8 gNuzleafPokedexTextUnused[] = _("");

const u8 gShiftryPokedexText[] = _(
    "A POKéMON that was feared as a forest\n"
    "guardian. It can read the foe's mind and\n"
    "take preemptive action.");

const u8 gShiftryPokedexTextUnused[] = _("");

const u8 gTaillowPokedexText[] = _(
    "It dislikes cold seasons. They migrate to\n"
    "other lands in search of warmth, flying\n"
    "over 180 miles a day.");

const u8 gTaillowPokedexTextUnused[] = _("");

const u8 gSwellowPokedexText[] = _(
    "If its two tail feathers are standing at\n"
    "attention, it is proof of good health.\n"
    "It soars elegantly in the sky.");

const u8 gSwellowPokedexTextUnused[] = _("");

const u8 gWingullPokedexText[] = _(
    "It rides upon ocean winds as if it were\n"
    "a glider. In the winter, it hides food\n"
    "around its nest.");

const u8 gWingullPokedexTextUnused[] = _("");

const u8 gPelipperPokedexText[] = _(
    "It is a flying transporter that carries\n"
    "small POKéMON in its beak. It bobs on the\n"
    "waves to rest its wings.");

const u8 gPelipperPokedexTextUnused[] = _("");

const u8 gRaltsPokedexText[] = _(
    "It is highly attuned to the emotions of\n"
    "people and POKéMON. It hides if it senses\n"
    "hostility.");

const u8 gRaltsPokedexTextUnused[] = _("");

const u8 gKirliaPokedexText[] = _(
    "The cheerful spirit of its TRAINER gives\n"
    "it energy for its psychokinetic power.\n"
    "It spins and dances when happy.");

const u8 gKirliaPokedexTextUnused[] = _("");

const u8 gGardevoirPokedexText[] = _(
    "It has the power to predict the future.\n"
    "Its power peaks when it is protecting its\n"
    "TRAINER.");

const u8 gGardevoirPokedexTextUnused[] = _("");

const u8 gSurskitPokedexText[] = _(
    "They usually live on ponds, but after an\n"
    "evening shower, they may appear on\n"
    "puddles in towns.");

const u8 gSurskitPokedexTextUnused[] = _("");

const u8 gMasquerainPokedexText[] = _(
    "The antennae have distinctive patterns\n"
    "that look like eyes. When it rains, they\n"
    "grow heavy, making flight impossible.");

const u8 gMasquerainPokedexTextUnused[] = _("");

const u8 gShroomishPokedexText[] = _(
    "It prefers damp places. By day it remains\n"
    "still in the forest shade. It releases\n"
    "toxic powder from its head.");

const u8 gShroomishPokedexTextUnused[] = _("");

const u8 gBreloomPokedexText[] = _(
    "The seeds on its tail are made of toxic\n"
    "spores. It knocks out foes with quick,\n"
    "virtually invisible punches.");

const u8 gBreloomPokedexTextUnused[] = _("");

const u8 gSlakothPokedexText[] = _(
    "It sleeps for 20 hours every day. Making\n"
    "drowsy those that see it is one of\n"
    "its abilities.");

const u8 gSlakothPokedexTextUnused[] = _("");

const u8 gVigorothPokedexText[] = _(
    "It is always hungry because it won't stop\n"
    "rampaging. Even while it is eating, it\n"
    "can't keep still.");

const u8 gVigorothPokedexTextUnused[] = _("");

const u8 gSlakingPokedexText[] = _(
    "It is the world's most slothful POKéMON.\n"
    "However, it can exert horrifying power by\n"
    "releasing pent-up energy all at once.");

const u8 gSlakingPokedexTextUnused[] = _("");

const u8 gNincadaPokedexText[] = _(
    "Because it lived almost entirely\n"
    "underground, it is nearly blind.\n"
    "It uses its antennae instead.");

const u8 gNincadaPokedexTextUnused[] = _("");

const u8 gNinjaskPokedexText[] = _(
    "This POKéMON is so quick, it is said to\n"
    "be able to avoid any attack. It loves to\n"
    "feed on tree sap.");

const u8 gNinjaskPokedexTextUnused[] = _("");

const u8 gShedinjaPokedexText[] = _(
    "A most peculiar POKéMON that somehow\n"
    "appears in a POKé BALL when a NINCADA\n"
    "evolves.");

const u8 gShedinjaPokedexTextUnused[] = _("");

const u8 gWhismurPokedexText[] = _(
    "It usually murmurs, but starts crying\n"
    "loudly if it senses danger. It stops when\n"
    "its ear covers are shut.");

const u8 gWhismurPokedexTextUnused[] = _("");

const u8 gLoudredPokedexText[] = _(
    "When it stamps its feet and bellows, it\n"
    "generates ultrasonic waves that can blow\n"
    "apart a house.");

const u8 gLoudredPokedexTextUnused[] = _("");

const u8 gExploudPokedexText[] = _(
    "It emits a variety of sounds from the \n"
    "holes all over its body. Its loud cries\n"
    "can be heard from over six miles away.");

const u8 gExploudPokedexTextUnused[] = _("");

const u8 gMakuhitaPokedexText[] = _(
    "It grows stronger by enduring harsh\n"
    "training. It is a gutsy POKéMON that can\n"
    "withstand any attack.");

const u8 gMakuhitaPokedexTextUnused[] = _("");

const u8 gHariyamaPokedexText[] = _(
    "It stomps on the ground to build power.\n"
    "It can send a 10-ton truck flying with a\n"
    "straight-arm punch.");

const u8 gHariyamaPokedexTextUnused[] = _("");

const u8 gAzurillPokedexText[] = _(
    "It battles by flinging around its tail,\n"
    "which is bigger than its body. The\n"
    "tail is a flotation device in water.");

const u8 gAzurillPokedexTextUnused[] = _("");

const u8 gNosepassPokedexText[] = _(
    "Its magnetic nose consistently faces\n"
    "north. Travelers check NOSEPASS to get\n"
    "their bearings.");

const u8 gNosepassPokedexTextUnused[] = _("");

const u8 gSkittyPokedexText[] = _(
    "It is said to be difficult to earn its\n"
    "trust. However, it is extremely popular\n"
    "for its cute looks and behavior.");

const u8 gSkittyPokedexTextUnused[] = _("");

const u8 gDelcattyPokedexText[] = _(
    "The favorite of trend-conscious\n"
    "female TRAINERS, they are used in\n"
    "competition for their style and fur.");

const u8 gDelcattyPokedexTextUnused[] = _("");

const u8 gSableyePokedexText[] = _(
    "It feeds on gemstone crystals.\n"
    "In darkness, its eyes sparkle with the\n"
    "glitter of jewels.");

const u8 gSableyePokedexTextUnused[] = _("");

const u8 gMawilePokedexText[] = _(
    "It uses its docile-looking face to lull\n"
    "foes into complacency, then bites with its\n"
    "huge, relentless jaws.");

const u8 gMawilePokedexTextUnused[] = _("");

const u8 gAronPokedexText[] = _(
    "It eats iron to build its steel body.\n"
    "It is a pest that descends from mountains\n"
    "to eat bridges and train tracks.");

const u8 gAronPokedexTextUnused[] = _("");

const u8 gLaironPokedexText[] = _(
    "It habitually shows off its strength with\n"
    "the size of sparks it creates by ramming\n"
    "its steel body into boulders.");

const u8 gLaironPokedexTextUnused[] = _("");

const u8 gAggronPokedexText[] = _(
    "It claims a large mountain as its sole\n"
    "territory. It mercilessly thrashes those\n"
    "that violate its space.");

const u8 gAggronPokedexTextUnused[] = _("");

const u8 gMedititePokedexText[] = _(
    "It never skips its daily yoga training.\n"
    "It heightens its inner strength through\n"
    "meditation.");

const u8 gMedititePokedexTextUnused[] = _("");

const u8 gMedichamPokedexText[] = _(
    "It elegantly avoids attacks with dance-\n"
    "like steps, then launches a devastating\n"
    "blow in the same motion.");

const u8 gMedichamPokedexTextUnused[] = _("");

const u8 gElectrikePokedexText[] = _(
    "It stores static electricity in its fur\n"
    "for discharging. It gives off sparks if a\n"
    "storm approaches.");

const u8 gElectrikePokedexTextUnused[] = _("");

const u8 gManectricPokedexText[] = _(
    "It rarely appears before people.\n"
    "It is said to nest where lightning has\n"
    "fallen.");

const u8 gManectricPokedexTextUnused[] = _("");

const u8 gPluslePokedexText[] = _(
    "It cheers on partners while scattering\n"
    "sparks from its body. It climbs telephone\n"
    "poles to absorb electricity.");

const u8 gPluslePokedexTextUnused[] = _("");

const u8 gMinunPokedexText[] = _(
    "Its dislike of water makes it take shelter\n"
    "under the eaves of houses in rain. It uses\n"
    "pom-poms made of sparks for cheering.");

const u8 gMinunPokedexTextUnused[] = _("");

const u8 gVolbeatPokedexText[] = _(
    "It lives around clean ponds. At night,\n"
    "its rear lights up. It converses with\n"
    "others by flashing its light.");

const u8 gVolbeatPokedexTextUnused[] = _("");

const u8 gIllumisePokedexText[] = _(
    "It guides VOLBEAT to draw signs in night\n"
    "skies. There are scientists that study the\n"
    "patterns it creates.");

const u8 gIllumisePokedexTextUnused[] = _("");

const u8 gRoseliaPokedexText[] = _(
    "Its flowers give off a relaxing fragrance.\n"
    "The stronger its aroma, the healthier\n"
    "the ROSELIA is.");

const u8 gRoseliaPokedexTextUnused[] = _("");

const u8 gGulpinPokedexText[] = _(
    "There is nothing its stomach can't digest.\n"
    "While it is digesting, vile, overpowering\n"
    "gases are expelled.");

const u8 gGulpinPokedexTextUnused[] = _("");

const u8 gSwalotPokedexText[] = _(
    "It can swallow a tire whole in one gulp.\n"
    "It secretes a horribly toxic fluid from\n"
    "the pores on its body.");

const u8 gSwalotPokedexTextUnused[] = _("");

const u8 gCarvanhaPokedexText[] = _(
    "It lives in massive rivers that course\n"
    "through jungles. It swarms prey that\n"
    "enter its territory.");

const u8 gCarvanhaPokedexTextUnused[] = _("");

const u8 gSharpedoPokedexText[] = _(
    "The ruffian of the seas, it has fangs that\n"
    "crunch through iron. It swims by jetting\n"
    "water from its rear.");

const u8 gSharpedoPokedexTextUnused[] = _("");

const u8 gWailmerPokedexText[] = _(
    "When it sucks in a large volume of\n"
    "seawater, it becomes like a big, bouncy\n"
    "ball. It eats a ton of food daily.");

const u8 gWailmerPokedexTextUnused[] = _("");

const u8 gWailordPokedexText[] = _(
    "It is among the largest of all POKéMON.\n"
    "It herds prey in a pack then swallows the\n"
    "massed prey in one gulp.");

const u8 gWailordPokedexTextUnused[] = _("");

const u8 gNumelPokedexText[] = _(
    "Magma of almost 2,200 degrees Fahrenheit\n"
    "courses through its body. When it grows\n"
    "cold, the magma hardens and slows it.");

const u8 gNumelPokedexTextUnused[] = _("");

const u8 gCameruptPokedexText[] = _(
    "If angered, the humps on its back erupt\n"
    "in a shower of molten lava. It lives in\n"
    "the craters of volcanoes.");

const u8 gCameruptPokedexTextUnused[] = _("");

const u8 gTorkoalPokedexText[] = _(
    "It burns coal inside its shell. If it is\n"
    "attacked, it belches thick, black smoke\n"
    "and flees.");

const u8 gTorkoalPokedexTextUnused[] = _("");

const u8 gSpoinkPokedexText[] = _(
    "It apparently dies if it stops bouncing\n"
    "about. It carries a pearl from CLAMPERL\n"
    "on its head.");

const u8 gSpoinkPokedexTextUnused[] = _("");

const u8 gGrumpigPokedexText[] = _(
    "It can gain control over foes by doing\n"
    "odd dance steps. The black pearls on its\n"
    "forehead are precious gems.");

const u8 gGrumpigPokedexTextUnused[] = _("");

const u8 gSpindaPokedexText[] = _(
    "No two SPINDA are said to have identical\n"
    "patterns. It confuses foes with its\n"
    "stumbling motions.");

const u8 gSpindaPokedexTextUnused[] = _("");

const u8 gTrapinchPokedexText[] = _(
    "It lives in arid deserts. It makes a\n"
    "sloping pit trap in sand where it\n"
    "patiently awaits prey.");

const u8 gTrapinchPokedexTextUnused[] = _("");

const u8 gVibravaPokedexText[] = _(
    "It generates ultrasonic waves by violently\n"
    "flapping its wings. After making its prey\n"
    "faint, it melts the prey with acid.");

const u8 gVibravaPokedexTextUnused[] = _("");

const u8 gFlygonPokedexText[] = _(
    "It hides itself by kicking up desert sand\n"
    "with its wings. Red covers shield its eyes\n"
    "from sand.");

const u8 gFlygonPokedexTextUnused[] = _("");

const u8 gCacneaPokedexText[] = _(
    "It prefers harsh environments such as\n"
    "deserts. It can survive for 30 days on\n"
    "water stored in its body.");

const u8 gCacneaPokedexTextUnused[] = _("");

const u8 gCacturnePokedexText[] = _(
    "It lives in deserts. It becomes active at\n"
    "night when it hunts for prey exhausted\n"
    "from the desert's heat.");

const u8 gCacturnePokedexTextUnused[] = _("");

const u8 gSwabluPokedexText[] = _(
    "It constantly grooms its cotton-like\n"
    "wings. It takes a shower to clean\n"
    "itself if it becomes dirty.");

const u8 gSwabluPokedexTextUnused[] = _("");

const u8 gAltariaPokedexText[] = _(
    "If you hear a beautiful melody trilling\n"
    "deep among mountains far from people,\n"
    "it is ALTARIA's humming.");

const u8 gAltariaPokedexTextUnused[] = _("");

const u8 gZangoosePokedexText[] = _(
    "If it comes across a SEVIPER, its fur\n"
    "bristles and it assumes its battle pose.\n"
    "Its sharp claws are its best weapon.");

const u8 gZangoosePokedexTextUnused[] = _("");

const u8 gSeviperPokedexText[] = _(
    "It sharpens its swordlike tail on hard\n"
    "rocks. It hides in tall grass and strikes\n"
    "unwary prey with venomous fangs.");

const u8 gSeviperPokedexTextUnused[] = _("");

const u8 gLunatonePokedexText[] = _(
    "Its health ebbs and flows with the lunar\n"
    "cycle. It brims with power when exposed\n"
    "to the light of the full moon.");

const u8 gLunatonePokedexTextUnused[] = _("");

const u8 gSolrockPokedexText[] = _(
    "It absorbs solar energy during the day.\n"
    "Always expressionless, it can sense what\n"
    "its foe is thinking.");

const u8 gSolrockPokedexTextUnused[] = _("");

const u8 gBarboachPokedexText[] = _(
    "It probes muddy riverbeds with its two\n"
    "long whiskers. A slimy film protects its\n"
    "body.");

const u8 gBarboachPokedexTextUnused[] = _("");

const u8 gWhiscashPokedexText[] = _(
    "It makes its nest at the bottom of \n"
    "swamps. It will eat anything - if it is\n"
    "alive, WHISCASH will eat it.");

const u8 gWhiscashPokedexTextUnused[] = _("");

const u8 gCorphishPokedexText[] = _(
    "It came from overseas. It is a very hardy\n"
    "creature that will quickly proliferate,\n"
    "even in polluted streams.");

const u8 gCorphishPokedexTextUnused[] = _("");

const u8 gCrawdauntPokedexText[] = _(
    "A rough customer that wildly flails its\n"
    "giant claws. It is said to be extremely\n"
    "hard to raise.");

const u8 gCrawdauntPokedexTextUnused[] = _("");

const u8 gBaltoyPokedexText[] = _(
    "It was discovered in ancient ruins.\n"
    "While moving, it constantly spins. It\n"
    "stands on one foot even when asleep.");

const u8 gBaltoyPokedexTextUnused[] = _("");

const u8 gClaydolPokedexText[] = _(
    "It appears to have been born from clay\n"
    "dolls made by ancient people. It uses\n"
    "telekinesis to float and move.");

const u8 gClaydolPokedexTextUnused[] = _("");

const u8 gLileepPokedexText[] = _(
    "It became extinct roughly 100 million\n"
    "years ago. It was regenerated from a\n"
    "fossil using advanced techniques.");

const u8 gLileepPokedexTextUnused[] = _("");

const u8 gCradilyPokedexText[] = _(
    "It ensnares prey with its eight tentacles.\n"
    "It then melts the prey with a strong acid\n"
    "before feeding.");

const u8 gCradilyPokedexTextUnused[] = _("");

const u8 gAnorithPokedexText[] = _(
    "It is a kind of POKéMON progenitor.\n"
    "It uses its extending claws to catch prey\n"
    "hiding among rocks on the seafloor.");

const u8 gAnorithPokedexTextUnused[] = _("");

const u8 gArmaldoPokedexText[] = _(
    "Protected by a hard shell, its body is\n"
    "very sturdy. It skewers prey with its\n"
    "claws to feed.");

const u8 gArmaldoPokedexTextUnused[] = _("");

const u8 gFeebasPokedexText[] = _(
    "Ridiculed for its shabby appearance,\n"
    "it is ignored by researchers. It lives in\n"
    "ponds choked with weeds.");

const u8 gFeebasPokedexTextUnused[] = _("");

const u8 gMiloticPokedexText[] = _(
    "MILOTIC is breathtakingly beautiful.\n"
    "Those that see it are said to forget their\n"
    "combative spirits.");

const u8 gMiloticPokedexTextUnused[] = _("");

const u8 gCastformPokedexText[] = _(
    "It has the ability to change its form into\n"
    "the sun, the rain, or a snow cloud, \n"
    "depending on the weather.");

const u8 gCastformPokedexTextUnused[] = _("");

const u8 gKecleonPokedexText[] = _(
    "It changes body color to blend in with\n"
    "its surroundings. It also changes color if\n"
    "it is happy or sad.");

const u8 gKecleonPokedexTextUnused[] = _("");

const u8 gShuppetPokedexText[] = _(
    "It loves to feed on feelings like envy and\n"
    "malice. Its upright horn catches the\n"
    "emotions of people.");

const u8 gShuppetPokedexTextUnused[] = _("");

const u8 gBanettePokedexText[] = _(
    "Strong feelings of hatred turned a puppet\n"
    "into a POKéMON. If it opens its mouth,\n"
    "its cursed energy escapes.");

const u8 gBanettePokedexTextUnused[] = _("");

const u8 gDuskullPokedexText[] = _(
    "Making itself invisible, it silently sneaks\n"
    "up to prey. It has the ability to slip\n"
    "through thick walls.");

const u8 gDuskullPokedexTextUnused[] = _("");

const u8 gDusclopsPokedexText[] = _(
    "Its body is entirely hollow. When it opens\n"
    "its mouth, it sucks everything in as if it\n"
    "were a black hole.");

const u8 gDusclopsPokedexTextUnused[] = _("");

const u8 gTropiusPokedexText[] = _(
    "It lives in tropical jungles. The bunch of\n"
    "fruit around its neck is delicious.\n"
    "The fruit grows twice a year.");

const u8 gTropiusPokedexTextUnused[] = _("");

const u8 gChimechoPokedexText[] = _(
    "It travels by riding on winds. It cleverly\n"
    "uses its long tail to pluck nuts and\n"
    "berries, which it loves to eat.");

const u8 gChimechoPokedexTextUnused[] = _("");

const u8 gAbsolPokedexText[] = _(
    "It appears when it senses an impending\n"
    "natural disaster. As a result, it was\n"
    "mistaken as a doom-bringer.");

const u8 gAbsolPokedexTextUnused[] = _("");

const u8 gWynautPokedexText[] = _(
    "It tends to move in a pack with others.\n"
    "They cluster in a tight group to sleep in\n"
    "a cave.");

const u8 gWynautPokedexTextUnused[] = _("");

const u8 gSnoruntPokedexText[] = _(
    "It is said that a home visited by a\n"
    "SNORUNT will prosper. It can withstand\n"
    "cold of minus 150 degrees Fahrenheit.");

const u8 gSnoruntPokedexTextUnused[] = _("");

const u8 gGlaliePokedexText[] = _(
    "It has a body of ice that won't melt,\n"
    "even with fire. It can instantly freeze\n"
    "moisture in the atmosphere.");

const u8 gGlaliePokedexTextUnused[] = _("");

const u8 gSphealPokedexText[] = _(
    "Its body is covered in fluffy fur.\n"
    "The fur keeps it from feeling cold while\n"
    "it is rolling on ice.");

const u8 gSphealPokedexTextUnused[] = _("");

const u8 gSealeoPokedexText[] = _(
    "It touches new things with its nose to\n"
    "test for smell and feel. It plays by\n"
    "spinning SPHEAL on its nose.");

const u8 gSealeoPokedexTextUnused[] = _("");

const u8 gWalreinPokedexText[] = _(
    "It swims through icy seas while shattering\n"
    "ice floes with its large tusks. It is\n"
    "protected by its thick blubber.");

const u8 gWalreinPokedexTextUnused[] = _("");

const u8 gClamperlPokedexText[] = _(
    "It is protected by a sturdy shell.\n"
    "Once in a lifetime, it makes a magnificent\n"
    "pearl.");

const u8 gClamperlPokedexTextUnused[] = _("");

const u8 gHuntailPokedexText[] = _(
    "It lives deep in the sea where no light\n"
    "ever filters down. It lights up its small\n"
    "fishlike tail to attract prey.");

const u8 gHuntailPokedexTextUnused[] = _("");

const u8 gGorebyssPokedexText[] = _(
    "Its swimming form is exquisitely elegant.\n"
    "With its thin mouth, it feeds on seaweed\n"
    "that grows between rocks.");

const u8 gGorebyssPokedexTextUnused[] = _("");

const u8 gRelicanthPokedexText[] = _(
    "It has remained unchanged for 100\n"
    "million years. It was discovered\n"
    "during a deep-sea exploration.");

const u8 gRelicanthPokedexTextUnused[] = _("");

const u8 gLuvdiscPokedexText[] = _(
    "During the spawning season, countless\n"
    "LUVDISC congregate at coral reefs,\n"
    "turning the waters pink.");

const u8 gLuvdiscPokedexTextUnused[] = _("");

const u8 gBagonPokedexText[] = _(
    "Its steel-hard head can shatter boulders.\n"
    "It longingly hopes for wings to grow so it\n"
    "can fly.");

const u8 gBagonPokedexTextUnused[] = _("");

const u8 gShelgonPokedexText[] = _(
    "Its armored body makes all attacks bounce\n"
    "off. The armor is too tough, however,\n"
    "making it heavy and somewhat sluggish.");

const u8 gShelgonPokedexTextUnused[] = _("");

const u8 gSalamencePokedexText[] = _(
    "It becomes uncontrollable if it is\n"
    "enraged. It destroys everything with\n"
    "shredding claws and fire.");

const u8 gSalamencePokedexTextUnused[] = _("");

const u8 gBeldumPokedexText[] = _(
    "It uses magnetic waves to converse with\n"
    "its kind. All the cells in its body are\n"
    "magnetic.");

const u8 gBeldumPokedexTextUnused[] = _("");

const u8 gMetangPokedexText[] = _(
    "It floats midair using magnetism. Its body\n"
    "is so tough, even a crash with a jet\n"
    "plane won't leave a scratch.");

const u8 gMetangPokedexTextUnused[] = _("");

const u8 gMetagrossPokedexText[] = _(
    "It is formed by two METANG fusing.\n"
    "Its four brains are said to be superior\n"
    "to a supercomputer.");

const u8 gMetagrossPokedexTextUnused[] = _("");

const u8 gRegirockPokedexText[] = _(
    "It is entirely composed of rocks with no\n"
    "sign of a brain or heart. It is a mystery\n"
    "even to modern scientists.");

const u8 gRegirockPokedexTextUnused[] = _("");

const u8 gRegicePokedexText[] = _(
    "Research revealed that its body is made\n"
    "of the same kind of ice that is found at\n"
    "the South Pole.");

const u8 gRegicePokedexTextUnused[] = _("");

const u8 gRegisteelPokedexText[] = _(
    "It is sturdier than any kind of metal.\n"
    "It hardened due to pressure underground\n"
    "over tens of thousands of years.");

const u8 gRegisteelPokedexTextUnused[] = _("");

const u8 gLatiasPokedexText[] = _(
    "It can telepathically communicate with\n"
    "people. It changes its appearance using\n"
    "its down that refracts light.");

const u8 gLatiasPokedexTextUnused[] = _("");

const u8 gLatiosPokedexText[] = _(
    "It has a docile temperament and dislikes\n"
    "fighting. Tucking in its forelegs, it can\n"
    "fly faster than a jet plane.");

const u8 gLatiosPokedexTextUnused[] = _("");

const u8 gKyogrePokedexText[] = _(
    "This POKéMON is said to have expanded\n"
    "the sea by bringing heavy rains.\n"
    "It has the power to control water.");

const u8 gKyogrePokedexTextUnused[] = _("");

const u8 gGroudonPokedexText[] = _(
    "This legendary POKéMON is said to\n"
    "represent the land. It went to sleep after\n"
    "dueling KYOGRE.");

const u8 gGroudonPokedexTextUnused[] = _("");

const u8 gRayquazaPokedexText[] = _(
    "It has lived for hundreds of millions of\n"
    "years in the ozone layer. Its flying form\n"
    "looks like a meteor.");

const u8 gRayquazaPokedexTextUnused[] = _("");

const u8 gJirachiPokedexText[] = _(
    "It is said to make any wish come true.\n"
    "It is awake for only seven days out of\n"
    "a thousand years.");

const u8 gJirachiPokedexTextUnused[] = _("");

const u8 gDeoxysPokedexText[] = _(
    "When it changes form, an aurora appears.\n"
    "It absorbs attacks by altering its\n"
    "cellular structure.");

const u8 gDeoxysPokedexTextUnused[] = _("");