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
|
gDummyPokedexText:: @ 855D30D
.string "This is a newly discovered POKéMON.\n"
.string "It is currently under investigation.\n"
.string "No detailed information is available\n"
.string "at this time.$"
gBulbasaurPokedexText:: @ 855D389
.string "BULBASAUR can be seen napping in bright\n"
.string "sunlight. There is a seed on its back.\n"
.string "By soaking up the sun’s rays, the seed\n"
.string "grows progressively larger.$"
gIvysaurPokedexText:: @ 855D41B
.string "To support its bulb, IVYSAUR’s legs\n"
.string "grow sturdy. If it spends more time lying in\n"
.string "the sunlight, the bud will soon bloom into\n"
.string "a large flower.$"
gVenusaurPokedexText:: @ 855D4A7
.string "VENUSAUR’s flower is said to take on vivid\n"
.string "colors if it gets plenty of nutrition and\n"
.string "sunlight. The flower’s aroma soothes the\n"
.string "emotions of people.$"
gCharmanderPokedexText:: @ 855D539
.string "The flame that burns at the tip of its\n"
.string "tail is an indication of its emotions.\n"
.string "The flame wavers when CHARMANDER is\n"
.string "happy, and blazes when it is enraged.$"
gCharmeleonPokedexText:: @ 855D5D1
.string "Without pity, its sharp claws destroy foes.\n"
.string "If it encounters a strong enemy, it\n"
.string "becomes agitated, and the flame on its\n"
.string "tail flares with a bluish white color.$"
gCharizardPokedexText:: @ 855D66F
.string "A CHARIZARD flies about in search of\n"
.string "strong opponents. It breathes intense\n"
.string "flames that can melt any material. However,\n"
.string "it will never torch a weaker foe.$"
gSquirtlePokedexText:: @ 855D708
.string "Its shell is not just for protection.\n"
.string "Its rounded shape and the grooves on its\n"
.string "surface minimize resistance in water,\n"
.string "enabling SQUIRTLE to swim at high speeds.$"
gWartortlePokedexText:: @ 855D7A7
.string "Its large tail is covered with rich, thick\n"
.string "fur that deepens in color with age.\n"
.string "The scratches on its shell are evidence\n"
.string "of this POKéMON’s toughness in battle.$"
gBlastoisePokedexText:: @ 855D845
.string "The waterspouts that protrude from its\n"
.string "shell are highly accurate. Their bullets of\n"
.string "water can precisely nail tin cans from\n"
.string "a distance of over 160 feet.$"
gCaterpiePokedexText:: @ 855D8DC
.string "Its voracious appetite compels it to\n"
.string "devour leaves bigger than itself without\n"
.string "hesitation. It releases a terribly strong\n"
.string "odor from its antennae.$"
gMetapodPokedexText:: @ 855D96C
.string "Its shell is as hard as an iron slab.\n"
.string "A METAPOD does not move very much\n"
.string "because it is preparing its soft innards\n"
.string "for evolution inside the shell.$"
gButterfreePokedexText:: @ 855D9FD
.string "It has a superior ability to search for\n"
.string "delicious honey from flowers. It can seek,\n"
.string "extract, and carry honey from flowers\n"
.string "blooming over six miles away.$"
gWeedlePokedexText:: @ 855DA94
.string "A WEEDLE has an extremely acute sense\n"
.string "of smell. It distinguishes its favorite\n"
.string "kinds of leaves from those it dislikes by\n"
.string "sniffing with its big red proboscis (nose).$"
gKakunaPokedexText:: @ 855DB38
.string "It remains virtually immobile while it\n"
.string "clings to a tree. However, on the inside,\n"
.string "it busily prepares for evolution. This is\n"
.string "evident from how hot its shell becomes.$"
gBeedrillPokedexText:: @ 855DBDB
.string "A BEEDRILL is extremely territorial.\n"
.string "For safety reasons, no one should \n"
.string "ever approach its nest. If angered,\n"
.string "they will attack in a swarm.$"
gPidgeyPokedexText:: @ 855DC64
.string "It has an extremely sharp sense of\n"
.string "direction. It can unerringly return home to\n"
.string "its nest, however far it may be removed\n"
.string "from its familiar surroundings.$"
gPidgeottoPokedexText:: @ 855DCFB
.string "This POKéMON flies around, patrolling its\n"
.string "large territory. If its living space is\n"
.string "violated, it shows no mercy in thoroughly\n"
.string "punishing the foe with its sharp claws.$"
gPidgeotPokedexText:: @ 855DD9F
.string "This POKéMON has gorgeous, glossy\n"
.string "feathers. Many TRAINERS are so captivated\n"
.string "by the beautiful feathers on its head that\n"
.string "they choose PIDGEOT as their POKéMON.$"
gRattataPokedexText:: @ 855DE3C
.string "A RATTATA is cautious in the extreme.\n"
.string "Even while it is asleep, it constantly\n"
.string "moves its ears and listens for danger.\n"
.string "It will make its nest anywhere.$"
gRaticatePokedexText:: @ 855DED0
.string "A RATICATE’s sturdy fangs grow steadily.\n"
.string "To keep them ground down, it gnaws on\n"
.string "rocks and logs. It may even chew on the\n"
.string "walls of houses.$"
gSpearowPokedexText:: @ 855DF58
.string "Its loud cry can be heard over half a mile\n"
.string "away. If its high, keening cry is heard\n"
.string "echoing all around, it is a sign that they\n"
.string "are warning each other of danger.$"
gFearowPokedexText:: @ 855DFF8
.string "Its long neck and elongated beak are\n"
.string "ideal for catching prey in soil or water.\n"
.string "It deftly moves this extended and skinny\n"
.string "beak to pluck prey.$"
gEkansPokedexText:: @ 855E084
.string "An EKANS curls itself up in a spiral while\n"
.string "it rests. This position allows it to quickly\n"
.string "respond to an enemy from any direction\n"
.string "with a threat from its upraised head.$"
gArbokPokedexText:: @ 855E129
.string "This POKéMON has a terrifically strong\n"
.string "constricting power. It can even flatten\n"
.string "steel oil drums. Once it wraps its body\n"
.string "around its foe, escaping is impossible.$"
gPikachuPokedexText:: @ 855E1C8
.string "It stores electricity in the electric sacs\n"
.string "on its cheeks. When it releases pent-up\n"
.string "energy in a burst, the electric power is\n"
.string "equal to a lightning bolt.$"
gRaichuPokedexText:: @ 855E25F
.string "If it stores too much electricity, its\n"
.string "behavior turns aggressive. To avoid this,\n"
.string "it occasionally discharges excess energy\n"
.string "and calms itself down.$"
gSandshrewPokedexText:: @ 855E2F0
.string "When it curls up in a ball, it can make any\n"
.string "attack bounce off harmlessly. Its hide has\n"
.string "turned tough and solid as a result of\n"
.string "living in the desert.$"
gSandslashPokedexText:: @ 855E383
.string "It curls up in a ball to protect itself from\n"
.string "enemy attacks. It also curls up to prevent\n"
.string "heatstroke during the daytime when\n"
.string "temperatures rise sharply.$"
gNidoranFPokedexText:: @ 855E419
.string "Its highly toxic barbs are thought to have\n"
.string "developed as protection for this small-\n"
.string "bodied POKéMON. When enraged, it releases\n"
.string "a horrible toxin from its horn.$"
gNidorinaPokedexText:: @ 855E4B6
.string "When it is with its friends or\n"
.string "family, its barbs are tucked away to\n"
.string "prevent injury. It appears to become\n"
.string "nervous if separated from the others.$"
gNidoqueenPokedexText:: @ 855E545
.string "It is adept at sending foes flying with\n"
.string "harsh tackles using its tough, scaly body.\n"
.string "This POKéMON is at its strongest when\n"
.string "it is defending its young.$"
gNidoranMPokedexText:: @ 855E5D9
.string "The male NIDORAN has developed muscles\n"
.string "that freely move its ears in any direction.\n"
.string "Even the slightest sound does not escape\n"
.string "this POKéMON’s notice.$"
gNidorinoPokedexText:: @ 855E66C
.string "Its horn is harder than a diamond.\n"
.string "If it senses a hostile presence, all the\n"
.string "barbs on its back bristle up at once, and it\n"
.string "challenges the foe with all its might.$"
gNidokingPokedexText:: @ 855E70C
.string "A NIDOKING’s thick tail packs enormously\n"
.string "destructive power capable of toppling\n"
.string "a metal transmission tower. Once it goes\n"
.string "on a rampage, there is no stopping it.$"
gClefairyPokedexText:: @ 855E7AB
.string "On every night of a full moon, they come\n"
.string "out to play. When dawn arrives, the tired\n"
.string "CLEFAIRY go to sleep nestled up against\n"
.string "each other in deep and quiet mountains.$"
gClefablePokedexText:: @ 855E84E
.string "A CLEFABLE uses its wings to skip lightly \n"
.string "as if it were flying. Its bouncy step\n"
.string "lets it even walk on water. On quiet,\n"
.string "moonlit nights, it strolls on lakes.$"
gVulpixPokedexText:: @ 855E8EA
.string "It can freely control fire, making fiery\n"
.string "orbs fly like will-o’-the-wisps. Just\n"
.string "before evolution, its six tails grow hot \n"
.string "as if on fire.$"
gNinetalesPokedexText:: @ 855E972
.string "It has long been said that each of the\n"
.string "nine tails embody an enchanted power.\n"
.string "A long-lived NINETALES will have fur that\n"
.string "shines like gold.$"
gJigglypuffPokedexText:: @ 855E9FB
.string "Nothing can avoid falling asleep hearing a\n"
.string "JIGGLYPUFF’s song. The sound waves of its\n"
.string "singing voice match the brain waves of\n"
.string "someone in a deep sleep.$"
gWigglytuffPokedexText:: @ 855EA90
.string "Its fur is the ultimate in luxuriousness.\n"
.string "Sleeping alongside a WIGGLYTUFF is simply\n"
.string "divine. Its body expands seemingly without\n"
.string "end when it inhales.$"
gZubatPokedexText:: @ 855EB24
.string "While living in pitch-black caverns, their\n"
.string "eyes gradually grew shut and deprived\n"
.string "them of vision. They use ultrasonic waves\n"
.string "to detect obstacles.$"
gGolbatPokedexText:: @ 855EBB4
.string "Its fangs easily puncture even thick\n"
.string "animal hide. It loves to feast on the blood\n"
.string "of people and POKéMON. It flits about in\n"
.string "darkness and strikes from behind.$"
gOddishPokedexText:: @ 855EC50
.string "This POKéMON grows by absorbing moonlight.\n"
.string "During the daytime, it buries itself in the\n"
.string "ground, leaving only its leaves exposed to\n"
.string "avoid detection by its enemies.$"
gGloomPokedexText:: @ 855ECF2
.string "A horribly noxious honey drools from its\n"
.string "mouth. One whiff of the honey can result\n"
.string "in memory loss. Some fans are said to\n"
.string "enjoy this overwhelming stink, however.$"
gVileplumePokedexText:: @ 855ED92
.string "In seasons when it produces more pollen,\n"
.string "the air around a VILEPLUME turns yellow\n"
.string "with the powder as it walks. The pollen is\n"
.string "highly toxic and causes paralysis.$"
gParasPokedexText:: @ 855EE31
.string "A PARAS has parasitic tochukaso\n"
.string "mushrooms growing on its back. They grow\n"
.string "by drawing nutrients from the host. They\n"
.string "are valued as a medicine for long life.$"
gParasectPokedexText:: @ 855EECB
.string "PARASECT are known to infest the roots of\n"
.string "large trees en masse and drain nutrients.\n"
.string "When an infested tree dies, they move\n"
.string "onto another tree all at once.$"
gVenonatPokedexText:: @ 855EF64
.string "Its coat of thin, stiff hair that covers\n"
.string "its entire body is said to have evolved\n"
.string "for protection. Its large eyes never fail\n"
.string "to spot even miniscule prey.$"
gVenomothPokedexText:: @ 855EFFC
.string "VENOMOTH are nocturnal--they only are\n"
.string "active at night. Their favorite prey are\n"
.string "insects that gather around streetlights,\n"
.string "attracted by the light in the darkness.$"
gDiglettPokedexText:: @ 855F09C
.string "DIGLETT are raised in most farms.\n"
.string "The reason is simple--wherever they\n"
.string "burrow, the soil is left perfectly tilled\n"
.string "for growing delicious crops.$"
gDugtrioPokedexText:: @ 855F129
.string "Because the triplets originally split from\n"
.string "one body, they think exactly alike.\n"
.string "They work cooperatively to burrow\n"
.string "endlessly through the ground.$"
gMeowthPokedexText:: @ 855F1B8
.string "MEOWTH withdraw their sharp claws into\n"
.string "their paws to silently sneak about.\n"
.string "For some reason, this POKéMON loves\n"
.string "shiny coins that glitter with light.$"
gPersianPokedexText:: @ 855F24C
.string "A PERSIAN’s six bold whiskers sense air\n"
.string "movements to determine what is in its\n"
.string "vicinity. It becomes docile if grabbed\n"
.string "by the whiskers.$"
gPsyduckPokedexText:: @ 855F2D2
.string "When its headache intensifies, it starts\n"
.string "using strange powers. However, it has no\n"
.string "recollection of its powers, so it always\n"
.string "looks befuddled and bewildered.$"
gGolduckPokedexText:: @ 855F36D
.string "A GOLDUCK is an adept swimmer.\n"
.string "It sometimes joins competitive swimmers\n"
.string "in training. It uses psychic powers when\n"
.string "its forehead shimmers with light.$"
gMankeyPokedexText:: @ 855F3FF
.string "When it starts shaking and its nasal\n"
.string "breathing turns rough, it’s a sure sign\n"
.string "of anger. However, since this happens\n"
.string "instantly, there is no time to flee.$"
gPrimeapePokedexText:: @ 855F497
.string "When it becomes furious, its blood\n"
.string "circulation becomes more robust, and\n"
.string "its muscles are made stronger. But it\n"
.string "also becomes much less intelligent.$"
gGrowlithePokedexText:: @ 855F529
.string "Its superb sense of smell ensures that\n"
.string "this POKéMON won’t forget any scent,\n"
.string "no matter what. It uses its sense of smell\n"
.string "to detect the emotions of others.$"
gArcaninePokedexText:: @ 855F5C2
.string "This fleet-footed POKéMON is said to run\n"
.string "over 6,200 miles in a single day and night.\n"
.string "The fire that blazes wildly within its body\n"
.string "is its source of power.$"
gPoliwagPokedexText:: @ 855F65B
.string "It is possible to see this POKéMON’s spiral\n"
.string "innards right through its thin skin.\n"
.string "However, the skin is also very flexible.\n"
.string "Even sharp fangs bounce right off it.$"
gPoliwhirlPokedexText:: @ 855F6FB
.string "Its body surface is always wet and slick\n"
.string "with an oily fluid. Because of this greasy\n"
.string "covering, it can easily slip and slide out\n"
.string "of the clutches of any enemy in battle.$"
gPoliwrathPokedexText:: @ 855F7A2
.string "Its highly developed muscles never grow\n"
.string "fatigued, however much it exercises.\n"
.string "This POKéMON can swim back and forth\n"
.string "across the Pacific Ocean without effort.$"
gAbraPokedexText:: @ 855F83D
.string "A POKéMON that sleeps 18 hours a day.\n"
.string "Observation revealed that it uses\n"
.string "TELEPORT to change its location once\n"
.string "every hour.$"
gKadabraPokedexText:: @ 855F8B6
.string "It is rumored that a boy with psychic\n"
.string "abilities suddenly transformed into\n"
.string "KADABRA while he was assisting research\n"
.string "into extrasensory powers.$"
gAlakazamPokedexText:: @ 855F942
.string "While it has strong psychic abilities and\n"
.string "high intelligence, an ALAKAZAM’s muscles\n"
.string "are very weak. It uses psychic power to\n"
.string "move its body.$"
gMachopPokedexText:: @ 855F9CC
.string "It continually undertakes strenuous\n"
.string "training to master all forms of martial\n"
.string "arts. Its strength lets it easily hoist\n"
.string "a sumo wrestler onto its shoulders.$"
gMachokePokedexText:: @ 855FA64
.string "A belt is worn by a MACHOKE to keep its\n"
.string "overwhelming power under control.\n"
.string "Because it is so dangerous, no one has\n"
.string "ever removed the belt.$"
gMachampPokedexText:: @ 855FAEC
.string "It is impossible to defend against punches\n"
.string "and chops doled out by its four arms.\n"
.string "Its fighting spirit flares up when it faces\n"
.string "a tough opponent.$"
gBellsproutPokedexText:: @ 855FB7B
.string "A BELLSPROUT’s thin and flexible body lets\n"
.string "it bend and sway to avoid any attack,\n"
.string "however strong it may be. From its mouth,\n"
.string "it leaks a fluid that melts even iron.$"
gWeepinbellPokedexText:: @ 855FC1D
.string "At night, a WEEPINBELL hangs on to a tree\n"
.string "branch with its hooked rear and sleeps.\n"
.string "If it moves around in its sleep, it may\n"
.string "wake up to find itself on the ground.$"
gVictreebelPokedexText:: @ 855FCBD
.string "The long vine extending from its head is\n"
.string "waved about as if it were a living thing to\n"
.string "attract prey. When an unsuspecting victim\n"
.string "approaches, it is swallowed whole.$"
gTentacoolPokedexText:: @ 855FD5F
.string "Its body is almost entirely composed of\n"
.string "water. It ensnares its foe with its two\n"
.string "long tentacles, then stabs with the poison\n"
.string "stingers at their tips.$"
gTentacruelPokedexText:: @ 855FDF2
.string "It lives in complex rock formations on\n"
.string "the ocean floor and traps prey using its\n"
.string "80 tentacles. Its red orbs glow when it\n"
.string "grows excited or agitated.$"
gGeodudePokedexText:: @ 855FE85
.string "It climbs mountain paths using only the\n"
.string "power of its arms. Because they look just\n"
.string "like boulders lining paths, hikers may step\n"
.string "on them without noticing.$"
gGravelerPokedexText:: @ 855FF1D
.string "They descend from mountains by tumbling\n"
.string "down steep slopes. They are so brutal,\n"
.string "they smash aside obstructing trees and\n"
.string "massive boulders with thunderous tackles.$"
gGolemPokedexText:: @ 855FFBD
.string "It is said to live in volcanic craters\n"
.string "on mountain peaks. Once a year, it sheds\n"
.string "its hide and grows larger. The shed hide\n"
.string "crumbles and returns to the soil.$"
gPonytaPokedexText:: @ 8560058
.string "A PONYTA is very weak at birth. It can\n"
.string "barely stand up. Its legs become stronger\n"
.string "as it stumbles and falls while trying to\n"
.string "keep up with its parent.$"
gRapidashPokedexText:: @ 85600EB
.string "It usually canters casually in the fields\n"
.string "and plains. But once a RAPIDASH turns\n"
.string "serious, its fiery manes flare and blaze\n"
.string "as it gallops its way up to 150 mph.$"
gSlowpokePokedexText:: @ 8560189
.string "It catches prey by dipping its tail in\n"
.string "water at the side of a river. But it often\n"
.string "forgets what it is doing and spends entire\n"
.string "days just loafing at water’s edge.$"
gSlowbroPokedexText:: @ 8560229
.string "Its tail has a SHELLDER firmly attached\n"
.string "with a bite. As a result, the tail can’t be\n"
.string "used for fishing anymore. This forces it\n"
.string "to reluctantly swim and catch prey.$"
gMagnemitePokedexText:: @ 85602CA
.string "The units at its sides are extremely\n"
.string "powerful magnets. They generate enough\n"
.string "magnetism to draw in iron objects from\n"
.string "over 300 feet away.$"
gMagnetonPokedexText:: @ 8560351
.string "It is actually three MAGNEMITE linked\n"
.string "by magnetism. It generates powerful radio\n"
.string "waves that raise temperatures by 3.6\n"
.string "degrees F within a 3,300-foot radius.$"
gFarfetchdPokedexText:: @ 85603EC
.string "It is always seen with a stick from a plant.\n"
.string "Apparently, there are good sticks and bad\n"
.string "sticks. This POKéMON occasionally fights\n"
.string "with others over choice sticks.$"
gDoduoPokedexText:: @ 856048C
.string "Even while eating or sleeping, one of the\n"
.string "heads remains always vigilant for any sign\n"
.string "of danger. When threatened, it flees at\n"
.string "over 60 miles per hour.$"
gDodrioPokedexText:: @ 8560521
.string "A peculiar POKéMON species with three\n"
.string "heads. It vigorously races across grassy\n"
.string "plains even in arid seasons with little\n"
.string "rainfall.$"
gSeelPokedexText:: @ 85605A2
.string "SEEL hunt for prey in frigid, ice-covered\n"
.string "seas. When it needs to breathe, it punches\n"
.string "a hole through the ice with the sharply\n"
.string "protruding section of its head.$"
gDewgongPokedexText:: @ 856063F
.string "It loves to snooze on bitterly cold ice.\n"
.string "The sight of this POKéMON sleeping on\n"
.string "a glacier was mistakenly thought to be\n"
.string "a mermaid by a mariner long ago.$"
gGrimerPokedexText:: @ 85606D6
.string "Born from polluted sludge in the sea,\n"
.string "GRIMER’s favorite food is anything filthy.\n"
.string "They feed on wastewater pumped out from\n"
.string "factories.$"
gMukPokedexText:: @ 856075A
.string "It prefers warm and humid habitats.\n"
.string "In the summertime, the toxic substances\n"
.string "in its body intensify, making MUK reek like\n"
.string "putrid kitchen garbage.$"
gShellderPokedexText:: @ 85607EA
.string "At night, it burrows a hole in the seafloor\n"
.string "with its broad tongue to make a place to\n"
.string "sleep. While asleep, it closes its shell,\n"
.string "but leaves its tongue hanging out.$"
gCloysterPokedexText:: @ 856088C
.string "It swims in the sea by swallowing water,\n"
.string "then jetting it out toward the rear.\n"
.string "The CLOYSTER shoots spikes from its\n"
.string "shell using the same system.$"
gGastlyPokedexText:: @ 856091B
.string "When exposed to a strong wind, a GASTLY’s\n"
.string "gaseous body quickly dwindles away.\n"
.string "They cluster under the eaves of houses\n"
.string "to escape the ravages of wind.$"
gHaunterPokedexText:: @ 85609AF
.string "If a HAUNTER beckons you while it is\n"
.string "floating in darkness, don’t approach it.\n"
.string "This POKéMON will try to lick you with its\n"
.string "tongue and steal your life away.$"
gGengarPokedexText:: @ 8560A49
.string "Deep in the night, your shadow cast by\n"
.string "a streetlight may suddenly overtake you.\n"
.string "It is actually a GENGAR running past\n"
.string "you, pretending to be your shadow.$"
gOnixPokedexText:: @ 8560AE1
.string "There is a magnet in its brain that\n"
.string "prevents an ONIX from losing direction\n"
.string "while tunneling. As it grows older, its body\n"
.string "becomes steadily rounder and smoother.$"
gDrowzeePokedexText:: @ 8560B80
.string "If your nose becomes itchy while you are\n"
.string "sleeping, it’s a sure sign that a DROWZEE is\n"
.string "standing above your pillow and trying to\n"
.string "eat your dream through your nostrils.$"
gHypnoPokedexText:: @ 8560C25
.string "The arcing movement and glitter of the\n"
.string "pendulum in a HYPNO’s hand lull the foe\n"
.string "into deep hypnosis. While searching for\n"
.string "prey, it polishes the pendulum.$"
gKrabbyPokedexText:: @ 8560CBC
.string "KRABBY live in holes dug into beaches.\n"
.string "On sandy shores with little in the way\n"
.string "of food, they can be seen squabbling with\n"
.string "each other over territory.$"
gKinglerPokedexText:: @ 8560D4F
.string "It waves its huge, oversized claw in the\n"
.string "air to communicate with others.\n"
.string "But since the claw is so heavy, this\n"
.string "POKéMON quickly tires.$"
gVoltorbPokedexText:: @ 8560DD4
.string "It bears an uncanny and unexplained\n"
.string "resemblance to a POKé BALL. Because it\n"
.string "explodes at the slightest shock, even\n"
.string "veteran TRAINERS treat it with caution.$"
gElectrodePokedexText:: @ 8560E6D
.string "They appear in great numbers at electric\n"
.string "power plants. Because they feed on\n"
.string "electricity, they cause massive and\n"
.string "chaotic blackouts in nearby cities.$"
gExeggcutePokedexText:: @ 8560F01
.string "It consists of six eggs that care for each\n"
.string "other. The eggs attract each other and\n"
.string "spin around. When cracks increasingly\n"
.string "appear, it is close to evolution.$"
gExeggutorPokedexText:: @ 8560F9B
.string "Originally from the tropics, EXEGGUTOR’s\n"
.string "heads grow larger from exposure to strong\n"
.string "sunlight. It is said that when the heads\n"
.string "fall, they group to form an EXEGGCUTE.$"
gCubonePokedexText:: @ 856103E
.string "It pines for the mother it will never see\n"
.string "again. Seeing a likeness of its mother in\n"
.string "the full moon, it cries. The stains on the\n"
.string "skull it wears are from its tears.$"
gMarowakPokedexText:: @ 85610E0
.string "A MAROWAK is the evolved form of a CUBONE\n"
.string "that has grown tough by overcoming the\n"
.string "grief of losing its mother. Its tempered\n"
.string "and hardened spirit is not easily broken.$"
gHitmonleePokedexText:: @ 8561184
.string "Its legs freely stretch and contract.\n"
.string "Using these springlike limbs, it bowls over\n"
.string "foes with devastating kicks. After battle,\n"
.string "it rubs down its tired legs.$"
gHitmonchanPokedexText:: @ 856121E
.string "A HITMONCHAN is said to possess the\n"
.string "spirit of a boxer who aimed to become the\n"
.string "world champion. Having an indomitable\n"
.string "spirit means that it will never give up.$"
gLickitungPokedexText:: @ 85612BB
.string "Whenever it sees something unfamiliar,\n"
.string "it always licks the object because it\n"
.string "memorizes things by texture and taste.\n"
.string "It is somewhat put off by sour things.$"
gKoffingPokedexText:: @ 8561356
.string "Getting up close to a KOFFING will give\n"
.string "you a chance to observe, through its thin\n"
.string "skin, the toxic gases swirling inside. It\n"
.string "blows up at the slightest stimulation.$"
gWeezingPokedexText:: @ 85613F9
.string "By diluting its toxic gases with a special\n"
.string "process, the highest grade of perfume can\n"
.string "be extracted. To WEEZING, gases emanating\n"
.string "from garbage are the ultimate feast.$"
gRhyhornPokedexText:: @ 856149D
.string "Once it starts running, it doesn’t stop.\n"
.string "Its tiny brain makes it so stupid that it\n"
.string "can’t remember why it started running in\n"
.string "the first place.$"
gRhydonPokedexText:: @ 856152A
.string "Its horn, which rotates like a drill,\n"
.string "destroys tall buildings with one strike.\n"
.string "It stands on its hind legs, and its brain\n"
.string "is well developed.$"
gChanseyPokedexText:: @ 85615B6
.string "CHANSEY lay nutritionally excellent eggs\n"
.string "every day. The eggs are so delicious, they\n"
.string "are eagerly devoured by even those people\n"
.string "who have lost their appetite.$"
gTangelaPokedexText:: @ 8561652
.string "Its vines snap off easily and painlessly\n"
.string "if they are grabbed, allowing it to make a\n"
.string "quick getaway. The lost vines are replaced\n"
.string "by new growth the very next day.$"
gKangaskhanPokedexText:: @ 85616F2
.string "If you come across a young KANGASKHAN\n"
.string "playing by itself, never try to catch it.\n"
.string "The baby’s parent is sure to be in the area,\n"
.string "and it will become violently enraged.$"
gHorseaPokedexText:: @ 8561795
.string "By cleverly flicking the fins on its back\n"
.string "side to side, it moves in any direction\n"
.string "while facing forward. It spits ink to\n"
.string "escape if it senses danger.$"
gSeadraPokedexText:: @ 8561829
.string "The poisonous barbs all over its body are\n"
.string "highly valued as ingredients for making\n"
.string "traditional herbal medicine. It shows no\n"
.string "mercy to anything approaching its nest.$"
gGoldeenPokedexText:: @ 85618CC
.string "In the springtime, schools of GOLDEEN\n"
.string "can be seen swimming up falls and rivers.\n"
.string "It metes out staggering damage with its\n"
.string "single horn.$"
gSeakingPokedexText:: @ 8561951
.string "It punches holes in boulders on stream-\n"
.string "beds. This is a clever innovation that\n"
.string "prevents its eggs from being attacked or\n"
.string "washed away by the current.$"
gStaryuPokedexText:: @ 85619E5
.string "It gathers with others in the night and\n"
.string "makes its red core glow on and off with\n"
.string "the twinkling stars. It can regenerate\n"
.string "limbs if they are severed from its body.$"
gStarmiePokedexText:: @ 8561A85
.string "People in ancient times imagined that\n"
.string "STARMIE were transformed from the\n"
.string "reflections of stars that twinkled on\n"
.string "gentle waves at night.$"
gMrmimePokedexText:: @ 8561B0A
.string "A MR. MIME is a master of pantomime. It can\n"
.string "convince others that something unseeable\n"
.string "actually exists. Once believed, the\n"
.string "imaginary object does become real.$"
gScytherPokedexText:: @ 8561BA6
.string "Its blindingly fast speed adds to the\n"
.string "sharpness of its twin forearm scythes.\n"
.string "The scythes can slice through thick logs\n"
.string "in one wicked stroke.$"
gJynxPokedexText:: @ 8561C32
.string "A JYNX sashays rhythmically as if it were\n"
.string "dancing. Its motions are so bouncingly\n"
.string "alluring, people seeing it are compelled to\n"
.string "shake their hips without noticing.$"
gElectabuzzPokedexText:: @ 8561CD2
.string "When a storm approaches, it competes with\n"
.string "others to scale heights that are likely to\n"
.string "be stricken by lightning. Some towns use\n"
.string "ELECTABUZZ in place of lightning rods.$"
gMagmarPokedexText:: @ 8561D77
.string "In battle, it blows out intense flames from\n"
.string "all over its body to intimidate its foe.\n"
.string "These fiery bursts create heat waves that\n"
.string "ignite grass and trees in the area.$"
gPinsirPokedexText:: @ 8561E1A
.string "Their pincers are strong enough to\n"
.string "shatter thick logs. Because they dislike\n"
.string "cold, PINSIR burrow and sleep under\n"
.string "the ground on chilly nights.$"
gTaurosPokedexText:: @ 8561EA7
.string "It is not satisfied unless it is rampaging\n"
.string "at all times. If there is no opponent for\n"
.string "TAUROS to battle, it will charge at thick\n"
.string "trees and knock them down to calm itself.$"
gMagikarpPokedexText:: @ 8561F50
.string "Its swimming muscles are weak, so it is\n"
.string "easily washed away by currents. In places\n"
.string "where water pools, you can see many\n"
.string "MAGIKARP deposited there by the flow.$"
gGyaradosPokedexText:: @ 8561FEC
.string "It is an extremely vicious and violent\n"
.string "POKéMON. When humans begin to fight,\n"
.string "it will appear and burn everything to the\n"
.string "ground with intensely hot flames.$"
gLaprasPokedexText:: @ 8562084
.string "People have driven LAPRAS almost to the\n"
.string "point of extinction. In the evenings,\n"
.string "it is said to sing plaintively as it seeks\n"
.string "what few others of its kind still remain.$"
gDittoPokedexText:: @ 8562127
.string "A DITTO rearranges its cell structure to\n"
.string "transform itself. However, if it tries to\n"
.string "change based on its memory, it will get\n"
.string "details wrong.$"
gEeveePokedexText:: @ 85621B1
.string "An EEVEE has an unstable genetic makeup\n"
.string "that suddenly mutates due to its\n"
.string "environment. Radiation from various\n"
.string "STONES causes this POKéMON to evolve.$"
gVaporeonPokedexText:: @ 8562244
.string "VAPOREON underwent a spontaneous\n"
.string "mutation and grew fins and gills that\n"
.string "allow them to live underwater. They have\n"
.string "the ability to freely control water.$"
gJolteonPokedexText:: @ 85622D9
.string "Its cells generate weak power that is\n"
.string "amplified by its fur’s static electricity\n"
.string "to drop thunderbolts. The bristling fur is\n"
.string "made of electrically charged needles.$"
gFlareonPokedexText:: @ 856237A
.string "FLAREON’s fluffy fur releases heat into\n"
.string "the air so that its body does not get\n"
.string "excessively hot. Its body temperature can\n"
.string "rise to a maximum of 1,650 degrees F.$"
gPorygonPokedexText:: @ 8562418
.string "It is capable of reverting itself entirely\n"
.string "back to program data in order to enter\n"
.string "cyberspace. A PORYGON is copy-\n"
.string "protected so it cannot be duplicated.$"
gOmanytePokedexText:: @ 85624AF
.string "One of the ancient and long-since-extinct\n"
.string "POKéMON that have been regenerated\n"
.string "from fossils by humans. If attacked,\n"
.string "it withdraws into its hard shell.$"
gOmastarPokedexText:: @ 8562543
.string "An OMASTAR uses its tentacles to capture\n"
.string "its prey. It is believed to have become\n"
.string "extinct because its shell grew too large,\n"
.string "making its movements slow and ponderous.$"
gKabutoPokedexText:: @ 85625E7
.string "It is a POKéMON that has been regenerated\n"
.string "from a fossil. However, in rare cases, living\n"
.string "examples have been discovered. KABUTO\n"
.string "have not changed for 300 million years.$"
gKabutopsPokedexText:: @ 856268D
.string "KABUTOPS once swam underwater to hunt \n"
.string "for prey. It was apparently evolving from\n"
.string "being a water dweller to living on land as\n"
.string "evident from changes in its gills and legs.$"
gAerodactylPokedexText:: @ 8562735
.string "AERODACTYL is a POKéMON from the age\n"
.string "of dinosaurs. It was regenerated from DNA\n"
.string "extracted from amber. It is imagined to\n"
.string "have been the king of the skies.$"
gSnorlaxPokedexText:: @ 85627CD
.string "SNORLAX’s typical day consists of nothing\n"
.string "more than eating and sleeping. It is such\n"
.string "a docile POKéMON that there are children\n"
.string "who use its big belly as a place to play.$"
gArticunoPokedexText:: @ 8562874
.string "ARTICUNO is a legendary bird POKéMON that\n"
.string "can control ice. The flapping of its wings\n"
.string "chills the air. As a result, it is said that\n"
.string "when this POKéMON flies, snow will fall.$"
gZapdosPokedexText:: @ 856291F
.string "ZAPDOS is a legendary bird POKéMON that\n"
.string "has the ability to control electricity.\n"
.string "It usually lives in thunderclouds. It gains\n"
.string "power if it is stricken by lightning bolts.$"
gMoltresPokedexText:: @ 85629C7
.string "MOLTRES is a legendary bird POKéMON\n"
.string "that can control fire. If injured, it is said\n"
.string "to dip its body in the molten magma of\n"
.string "a volcano to burn and heal itself.$"
gDratiniPokedexText:: @ 8562A63
.string "A DRATINI continually molts and sloughs\n"
.string "off its old skin. It does so because the\n"
.string "life energy within its body steadily builds\n"
.string "to reach uncontrollable levels.$"
gDragonairPokedexText:: @ 8562B00
.string "A DRAGONAIR stores an enormous amount of\n"
.string "energy inside its body. It is said to alter\n"
.string "the weather around it by loosing energy\n"
.string "from the crystals on its neck and tail.$"
gDragonitePokedexText:: @ 8562BA5
.string "It can circle the globe in just 16 hours.\n"
.string "It is a kindhearted POKéMON that leads\n"
.string "lost and foundering ships in a storm\n"
.string "to the safety of land.$"
gMewtwoPokedexText:: @ 8562C32
.string "A POKéMON that was created by genetic\n"
.string "manipulation. However, even though the\n"
.string "scientific power of humans made its body,\n"
.string "they failed to give it a warm heart.$"
gMewPokedexText:: @ 8562CCE
.string "A MEW is said to possess the genes of all\n"
.string "POKéMON. It is capable of making itself\n"
.string "invisible at will, so it entirely avoids\n"
.string "notice even if it approaches people.$"
gChikoritaPokedexText:: @ 8562D6E
.string "It waves its leaf around to keep foes\n"
.string "at bay. However, a sweet fragrance also\n"
.string "wafts from the leaf, creating a friendly\n"
.string "atmosphere that becalms the battlers.$"
gBayleefPokedexText:: @ 8562E0B
.string "A BAYLEEF’s neck is ringed by curled-up\n"
.string "leaves. Inside each leaf is a small tree\n"
.string "shoot. The fragrance of this shoot\n"
.string "makes people peppy.$"
gMeganiumPokedexText:: @ 8562E93
.string "The fragrance of a MEGANIUM’s flower\n"
.string "soothes and calms emotions. In battle,\n"
.string "it gives off more of its becalming scent\n"
.string "to blunt the foe’s fighting spirit.$"
gCyndaquilPokedexText:: @ 8562F2C
.string "It flares flames from its back to protect\n"
.string "itself. The fire burns vigorously if the\n"
.string "POKéMON is angry. When it is tired,\n"
.string "it sputters with incomplete combustion.$"
gQuilavaPokedexText:: @ 8562FCB
.string "It intimidates foes with intense gusts of\n"
.string "flames and superheated air. Its quick\n"
.string "nimbleness lets it dodge attacks even\n"
.string "while scorching an enemy.$"
gTyphlosionPokedexText:: @ 856305B
.string "It can hide behind a shimmering heat haze\n"
.string "that it creates using its intense flames.\n"
.string "TYPHLOSION create blazing explosive\n"
.string "blasts that burn everything to cinders.$"
gTotodilePokedexText:: @ 85630FB
.string "Despite its small body, TOTODILE’s jaws\n"
.string "are very powerful. While it may think it is\n"
.string "just playfully nipping, its bite has enough\n"
.string "strength to cause serious injury.$"
gCroconawPokedexText:: @ 856319D
.string "Once its jaws clamp down on its foe, it will\n"
.string "absolutely not let go. Because the tips of\n"
.string "its fangs are forked back like fishhooks,\n"
.string "they become irremovably embedded.$"
gFeraligatrPokedexText:: @ 8563241
.string "It opens its huge mouth to intimidate\n"
.string "enemies. In battle, it runs using its thick\n"
.string "and powerful hind legs to charge the\n"
.string "foe with incredible speed.$"
gSentretPokedexText:: @ 85632D3
.string "They take turns standing guard when it\n"
.string "is time to sleep. The sentry awakens the\n"
.string "others if it senses danger. If one becomes\n"
.string "separated, it turns sleepless with fear.$"
gFurretPokedexText:: @ 8563377
.string "A FURRET has a very slim build. When under\n"
.string "attack, it can squirm through narrow\n"
.string "spaces and get away. In spite of its short\n"
.string "limbs, it is very nimble and fleet.$"
gHoothootPokedexText:: @ 8563416
.string "It has an internal organ that senses\n"
.string "the earth’s rotation. Using this special\n"
.string "organ, a HOOTHOOT begins hooting at\n"
.string "precisely the same time every day.$"
gNoctowlPokedexText:: @ 85634AB
.string "It unfailingly catches prey in darkness.\n"
.string "NOCTOWL owe their success to superior\n"
.string "vision that allows them to see in minimal\n"
.string "light, and to their supple and silent wings.$"
gLedybaPokedexText:: @ 8563551
.string "LEDYBA communicate using a fluid that\n"
.string "they secrete from where the legs join the\n"
.string "body. They are said to convey feelings to\n"
.string "others by altering the fluid’s scent.$"
gLedianPokedexText:: @ 85635F1
.string "It is said that in lands with clean air,\n"
.string "where the stars fill the sky, there live\n"
.string "many LEDIAN. For good reason, they use\n"
.string "the light of the stars as energy.$"
gSpinarakPokedexText:: @ 856368C
.string "The web it spins can be considered its\n"
.string "second nervous system. It is said that a\n"
.string "SPINARAK determines its prey by the tiny\n"
.string "vibrations it feels through the web.$"
gAriadosPokedexText:: @ 856372A
.string "Its feet are tipped with tiny hooked claws\n"
.string "that enable it to scuttle on ceilings and\n"
.string "vertical walls. It constricts its foe with\n"
.string "thin and strong silk webbing.$"
gCrobatPokedexText:: @ 85637C8
.string "Over the course of evolution, its hind legs\n"
.string "turned into wings. By alternately resting\n"
.string "its front and rear wings, it can fly all day\n"
.string "without having to stop.$"
gChinchouPokedexText:: @ 8563863
.string "When it senses danger, it discharges\n"
.string "positive and negative electricity from its\n"
.string "two antennae. It lives in depths beyond\n"
.string "sunlight’s reach.$"
gLanturnPokedexText:: @ 85638ED
.string "The light-emitting orbs on its back are\n"
.string "very bright. They are formed from a part of\n"
.string "its dorsal fin. This POKéMON illuminates\n"
.string "the inky darkness of deep seas.$"
gPichuPokedexText:: @ 856398A
.string "It is still inept at retaining electricity.\n"
.string "When it is startled, it discharges power\n"
.string "accidentally. It gets better at holding\n"
.string "power as it grows older.$"
gCleffaPokedexText:: @ 8563A20
.string "On nights with many shooting stars,\n"
.string "CLEFFA can be seen dancing in a ring.\n"
.string "They dance until daybreak, when they\n"
.string "quench their thirst with the morning dew.$"
gIgglybuffPokedexText:: @ 8563AB9
.string "Its soft and pliable body is very bouncy.\n"
.string "When it sings continuously with all its\n"
.string "might, its body steadily turns a deepening\n"
.string "pink color.$"
gTogepiPokedexText:: @ 8563B42
.string "As its energy, it uses the feelings of\n"
.string "compassion and pleasure exuded by\n"
.string "people and POKéMON. It stores up happy\n"
.string "feelings in its shell, then shares them out.$"
gTogeticPokedexText:: @ 8563BDF
.string "It is said to be a POKéMON that brings good\n"
.string "fortune. When it spots someone who is pure\n"
.string "of heart, a TOGETIC appears and shares its\n"
.string "happiness with that person.$"
gNatuPokedexText:: @ 8563C7D
.string "It runs up short trees that grow on the\n"
.string "savanna to peck at new shoots.\n"
.string "A NATU’s eyes look as if they are\n"
.string "always observing something.$"
gXatuPokedexText:: @ 8563D02
.string "It has the enigmatic power of foreseeing\n"
.string "the future. Some people in different lands\n"
.string "have long believed that XATU are\n"
.string "emissaries from another world.$"
gMareepPokedexText:: @ 8563D96
.string "Its fluffy wool rubs together and builds\n"
.string "a static charge. The more energy is\n"
.string "charged, the more brightly the lightbulb\n"
.string "at the tip of its tail glows.$"
gFlaaffyPokedexText:: @ 8563E2A
.string "Its fleece quality changes to generate\n"
.string "strong static electricity with a small\n"
.string "amount of wool. The bare, slick parts of its\n"
.string "hide are shielded against electricity.$"
gAmpharosPokedexText:: @ 8563ECC
.string "It gives off so much light that it can be\n"
.string "seen even from space. People in the old\n"
.string "days used its light to send signals back\n"
.string "and forth with others far away.$"
gBellossomPokedexText:: @ 8563F67
.string "Its flower petals deepen in color through\n"
.string "exposure to sunlight. When cloudy weather\n"
.string "persists, it does a dance that is thought\n"
.string "to be a ritual for summoning the sun.$"
gMarillPokedexText:: @ 856400B
.string "Its body is covered with water-repellent\n"
.string "fur. Because of the fur, it can swim\n"
.string "through water at high speed without being\n"
.string "slowed by the water’s resistance.$"
gAzumarillPokedexText:: @ 85640A5
.string "It lives in water virtually all day long.\n"
.string "Its body color and pattern act as\n"
.string "camouflage that makes it tough for\n"
.string "enemies to spot in water.$"
gSudowoodoPokedexText:: @ 856412E
.string "It mimics a tree to avoid being attacked\n"
.string "by enemies. But since its forelegs\n"
.string "remain green throughout the year, it is\n"
.string "easily identified as a fake in the winter.$"
gPolitoedPokedexText:: @ 85641CD
.string "The curled hair on its head proves its\n"
.string "status as a king. It is said that the\n"
.string "longer and curlier the hair, the more\n"
.string "respect it earns from its peers.$"
gHoppipPokedexText:: @ 8564261
.string "This POKéMON drifts and floats with the\n"
.string "wind. If it senses the approach of strong\n"
.string "winds, a HOPPIP links leaves with others\n"
.string "to prepare against being blown away.$"
gSkiploomPokedexText:: @ 8564301
.string "It blossoms when the temperature rises\n"
.string "above 64 degrees F. Because its flower’s\n"
.string "blooming changes with the temperature,\n"
.string "it is sometimes used as a thermometer.$"
gJumpluffPokedexText:: @ 856439F
.string "JUMPLUFF ride warm southern winds to\n"
.string "cross the sea and fly to foreign lands.\n"
.string "This POKéMON lands when it encounters\n"
.string "cold air while it is floating.$"
gAipomPokedexText:: @ 8564431
.string "Its tail ends with a dexterous, handlike\n"
.string "appendage. However, because it uses the\n"
.string "tail so much, AIPOM’s real hands have\n"
.string "become rather clumsy.$"
gSunkernPokedexText:: @ 85644BE
.string "SUNKERN try to minimize movement to\n"
.string "conserve the nutrients they have stored\n"
.string "in their bodies for evolution. They will\n"
.string "not eat, subsisting only on morning dew.$"
gSunfloraPokedexText:: @ 856455C
.string "SUNFLORA convert solar energy into\n"
.string "nutrition. They are highly active in the\n"
.string "warm daytime but suddenly stop moving as\n"
.string "soon as the sun sets.$"
gYanmaPokedexText:: @ 85645E7
.string "It can see 360 degrees without moving\n"
.string "its eyes. It is a great flier capable of\n"
.string "making sudden stops and turning midair to\n"
.string "quickly chase down targeted prey.$"
gWooperPokedexText:: @ 8564682
.string "WOOPER usually live in water but come\n"
.string "out onto land seeking food occasionally.\n"
.string "On land, they coat their bodies with a\n"
.string "gooey, toxic film.$"
gQuagsirePokedexText:: @ 856470B
.string "A QUAGSIRE hunts by leaving its mouth wide\n"
.string "open in water and waiting for its prey to\n"
.string "blunder in. Because it doesn’t move, it\n"
.string "does not get very hungry.$"
gEspeonPokedexText:: @ 85647A2
.string "An ESPEON is extremely loyal to any\n"
.string "TRAINER it considers to be worthy. It is\n"
.string "said to have developed precognitive\n"
.string "powers to protect its TRAINER from harm.$"
gUmbreonPokedexText:: @ 856483C
.string "UMBREON evolved from exposure to the\n"
.string "moon’s energy pulses. It lurks in darkness\n"
.string "and waits for its foes to move. The rings\n"
.string "on its body glow when it leaps to attack.$"
gMurkrowPokedexText:: @ 85648E0
.string "MURKROW were feared as the alleged\n"
.string "bearers of ill fortune. It shows strong\n"
.string "interest in anything that sparkles. It will\n"
.string "even try to steal rings from women.$"
gSlowkingPokedexText:: @ 856497B
.string "It undertakes research every day to\n"
.string "solve the mysteries of the world.\n"
.string "However, it apparently forgets everything\n"
.string "if the SHELLDER on its head comes off.$"
gMisdreavusPokedexText:: @ 8564A12
.string "A MISDREAVUS frightens people with a\n"
.string "creepy, sobbing cry. It apparently uses\n"
.string "its red spheres to absorb the fear of foes\n"
.string "as its nutrition.$"
gUnownPokedexText:: @ 8564A9C
.string "This POKéMON is shaped like ancient text\n"
.string "characters. Although research is ongoing,\n"
.string "it is a mystery as to which came first,\n"
.string "the ancient writings or the various UNOWN.$"
gWobbuffetPokedexText:: @ 8564B42
.string "Usually docile, a WOBBUFFET strikes back\n"
.string "ferociously if its black tail is attacked.\n"
.string "It makes its lair in caves where it waits\n"
.string "for nightfall.$"
gGirafarigPokedexText:: @ 8564BCF
.string "A GIRAFARIG is an herbivore--it eats\n"
.string "grass and tree shoots. While it is eating,\n"
.string "its tail makes chewing and swallowing\n"
.string "motions as if it were also eating.$"
gPinecoPokedexText:: @ 8564C68
.string "A PINECO hangs from a tree branch and\n"
.string "waits for prey. While eating, if it is\n"
.string "disturbed by someone shaking its tree, it\n"
.string "falls on the ground and suddenly explodes.$"
gForretressPokedexText:: @ 8564D0A
.string "It keeps itself inside its steel shell.\n"
.string "The shell is opened when it is catching\n"
.string "prey, but it is so quick that the shell’s\n"
.string "inside cannot be seen.$"
gDunsparcePokedexText:: @ 8564D9B
.string "Its drill-tipped tail is used to burrow into\n"
.string "the ground backwards. This POKéMON is\n"
.string "known to make its nest in complex shapes\n"
.string "deep under the ground.$"
gGligarPokedexText:: @ 8564E2E
.string "It glides without making a single sound.\n"
.string "It grasps the face of its foe using its\n"
.string "hind and large front claws, then stabs\n"
.string "with its poison barb.$"
gSteelixPokedexText:: @ 8564EBC
.string "STEELIX live even further underground\n"
.string "than ONIX. This POKéMON is known to dig\n"
.string "toward the earth’s core, reaching a depth\n"
.string "of over six-tenths of a mile underground.$"
gSnubbullPokedexText:: @ 8564F5E
.string "By baring its fangs and making a scary\n"
.string "face, it sends smaller POKéMON scurrying\n"
.string "in terror. The SNUBBULL does seem a\n"
.string "little sad at making its foes flee.$"
gGranbullPokedexText:: @ 8564FF6
.string "It has a particularly well-developed lower\n"
.string "jaw. The huge fangs are heavy, causing\n"
.string "it to tilt its head. Unless it is startled, it\n"
.string "will not try to bite.$"
gQwilfishPokedexText:: @ 856508D
.string "A QWILFISH uses the pressure of water\n"
.string "it swallows to shoot toxic quills all at\n"
.string "once from all over its body. It finds\n"
.string "swimming to be somewhat challenging.$"
gScizorPokedexText:: @ 8565127
.string "A SCIZOR has a body with the hardness of\n"
.string "steel. It is not easily fazed by ordinary\n"
.string "sorts of attacks. It flaps its wings to\n"
.string "regulate its body temperature.$"
gShucklePokedexText:: @ 85651C1
.string "A SHUCKLE hides under rocks, keeping its\n"
.string "body concealed inside its shell while\n"
.string "eating stored berries. The berries mix with\n"
.string "its body fluids to become a juice.$"
gHeracrossPokedexText:: @ 856525F
.string "They gather in forests seeking the sweet\n"
.string "sap of trees. It is completely clad in a\n"
.string "steel-hard shell. It is proud of its horn,\n"
.string "which it uses to fling foes.$"
gSneaselPokedexText:: @ 85652F9
.string "A SNEASEL scales trees by punching its\n"
.string "hooked claws into the bark. It seeks out\n"
.string "unguarded nests and steals eggs for food\n"
.string "while the parents are away.$"
gTeddiursaPokedexText:: @ 856538E
.string "It licks its palms that are sweetened by\n"
.string "being soaked in honey. A TEDDIURSA makes\n"
.string "its own honey by blending fruits and pollen\n"
.string "collected by BEEDRILL.$"
gUrsaringPokedexText:: @ 8565423
.string "In forests, it is said that there are many\n"
.string "streams and towering trees where an\n"
.string "URSARING gathers food. It walks through\n"
.string "its forest collecting food every day.$"
gSlugmaPokedexText:: @ 85654C0
.string "It is a species of POKéMON that lives in\n"
.string "volcanic areas. If its body cools, its skin\n"
.string "hardens and immobilizes it. To avoid that,\n"
.string "it sleeps near magma.$"
gMagcargoPokedexText:: @ 8565556
.string "The shell on its back is made of hardened\n"
.string "magma. Tens of thousands of years spent\n"
.string "living in volcanic craters have turned\n"
.string "MAGCARGO’s bodies into magma.$"
gSwinubPokedexText:: @ 85655ED
.string "It roots for food by rubbing its snout\n"
.string "against the ground. Its favorite food is a\n"
.string "mushroom that grows under dried grass.\n"
.string "It occasionally roots out hot springs.$"
gPiloswinePokedexText:: @ 856568D
.string "A PILOSWINE is covered by a thick coat\n"
.string "of long hair for enduring freezing cold.\n"
.string "It uses its tusks to dig up food that has\n"
.string "been buried under ice.$"
gCorsolaPokedexText:: @ 856571E
.string "CORSOLA live in warm southern seas.\n"
.string "If the sea becomes polluted, the beautiful\n"
.string "coral stalks become discolored and crumble\n"
.string "away in tatters.$"
gRemoraidPokedexText:: @ 85657A9
.string "A REMORAID uses its abdominal muscles\n"
.string "to forcefully expel swallowed water, then\n"
.string "shoot down flying prey. When evolution\n"
.string "approaches, it travels down rivers.$"
gOctilleryPokedexText:: @ 8565844
.string "It ensnares its foe with its suction-\n"
.string "cupped tentacles before delivering the\n"
.string "finishing blow. If the foe turns out to be\n"
.string "too strong, it spews ink to escape.$"
gDelibirdPokedexText:: @ 85658E0
.string "It carries food bundled up in its tail.\n"
.string "There was a famous explorer who\n"
.string "managed to scale Mt. Everest thanks\n"
.string "to a DELIBIRD sharing its food.$"
gMantinePokedexText:: @ 856596C
.string "On sunny days, schools of MANTINE can be\n"
.string "seen elegantly leaping over the waves.\n"
.string "It is not bothered by the REMORAID that\n"
.string "hitches rides.$"
gSkarmoryPokedexText:: @ 85659F3
.string "A POKéMON that has a body and wings of\n"
.string "steel. People in the past used feathers\n"
.string "fallen from SKARMORY to make swords and\n"
.string "knives.$"
gHoundourPokedexText:: @ 8565A72
.string "HOUNDOUR communicate with each other\n"
.string "using a variety of cries to corner their\n"
.string "prey. This POKéMON’s remarkable teamwork\n"
.string "is simply unparalleled.$"
gHoundoomPokedexText:: @ 8565B01
.string "In a HOUNDOOM pack, the one with its horns\n"
.string "raked sharply back serves a leadership\n"
.string "role. They choose their leader by fighting\n"
.string "among themselves.$"
gKingdraPokedexText:: @ 8565B90
.string "It sleeps quietly, deep on the seafloor.\n"
.string "When it comes up to the surface, it\n"
.string "creates a huge whirlpool that can swallow\n"
.string "even ships.$"
gPhanpyPokedexText:: @ 8565C13
.string "PHANPY’s big ears serve as broad fans.\n"
.string "When it becomes hot, it flaps the ears\n"
.string "busily to cool down. Even the young are\n"
.string "very strong.$"
gDonphanPokedexText:: @ 8565C96
.string "A DONPHAN is so strong it can easily haul\n"
.string "a dump truck. Its hide has toughened to a\n"
.string "rock-hard state. An ordinary sort of\n"
.string "attack won’t even leave a scratch.$"
gPorygon2PokedexText:: @ 8565D32
.string "It was created by humans using the power\n"
.string "of science. It has been given artificial\n"
.string "intelligence that enables it to learn new\n"
.string "gestures and emotions on its own.$"
gStantlerPokedexText:: @ 8565DD0
.string "STANTLER’s magnificent antlers were\n"
.string "once traded at high prices as works of art.\n"
.string "As a result, this POKéMON was hunted\n"
.string "close to extinction.$"
gSmearglePokedexText:: @ 8565E5A
.string "A SMEARGLE marks its territory using a\n"
.string "fluid that leaks out from the tip of its\n"
.string "tail. About 5,000 different marks left by\n"
.string "this POKéMON have been found.$"
gTyroguePokedexText:: @ 8565EF2
.string "TYROGUE become stressed out if they do\n"
.string "not get to train every day. When raising\n"
.string "this POKéMON, the TRAINER must establish\n"
.string "a regular training schedule.$"
gHitmontopPokedexText:: @ 8565F88
.string "Its technique of kicking while spinning is\n"
.string "a remarkable mix of both offense and\n"
.string "defense. HITMONTOP travel faster\n"
.string "spinning than they do walking.$"
gSmoochumPokedexText:: @ 8566018
.string "It actively runs about, but also falls\n"
.string "often. Whenever it falls, it will check its\n"
.string "reflection on a lake’s surface to make\n"
.string "sure its face hasn’t become dirty.$"
gElekidPokedexText:: @ 85660B5
.string "If it touches metal and discharges the\n"
.string "electricity it has stored in its body, an\n"
.string "ELEKID begins swinging its arms in circles\n"
.string "to recharge itself.$"
gMagbyPokedexText:: @ 8566145
.string "If a MAGBY is spouting yellow flames from\n"
.string "its mouth, it is in good health. When it is\n"
.string "fatigued, black smoke will be mixed in with\n"
.string "the flames.$"
gMiltankPokedexText:: @ 85661D3
.string "It gives over five gallons of milk daily.\n"
.string "Its sweet milk is enjoyed by children and\n"
.string "grown-ups alike. People who can’t drink\n"
.string "milk turn it into yogurt and eat it instead.$"
gBlisseyPokedexText:: @ 856627C
.string "If it senses sadness with its fluffy fur,\n"
.string "a BLISSEY will rush over to the sad person,\n"
.string "however far away, to share an egg of\n"
.string "happiness that brings a smile to any face.$"
gRaikouPokedexText:: @ 8566322
.string "RAIKOU embodies the speed of lightning.\n"
.string "Its roars send shock waves shuddering\n"
.string "through the air and ground as if\n"
.string "lightning bolts were crashing down.$"
gEnteiPokedexText:: @ 85663B5
.string "ENTEI embodies the passion of magma.\n"
.string "It is thought to have been born in the\n"
.string "eruption of a volcano. It blasts fire that\n"
.string "consumes all that it touches.$"
gSuicunePokedexText:: @ 856644A
.string "SUICUNE embodies the compassion of\n"
.string "a pure spring of water. It runs across\n"
.string "the land with gliding elegance. It has the\n"
.string "power to purify dirty water.$"
gLarvitarPokedexText:: @ 85664DC
.string "A LARVITAR is born deep under the ground.\n"
.string "It must eat its way through the soil above\n"
.string "and reach the surface for it to see its\n"
.string "parents’ faces.$"
gPupitarPokedexText:: @ 8566569
.string "A PUPITAR creates a gas inside its body\n"
.string "that it ejects under compression to propel\n"
.string "itself like a jet. Its body can withstand\n"
.string "a collision with solid steel.$"
gTyranitarPokedexText:: @ 8566604
.string "A TYRANITAR is so overwhelmingly powerful,\n"
.string "it can bring down a whole mountain to make\n"
.string "its nest. It roams in mountains seeking\n"
.string "new opponents to fight.$"
gLugiaPokedexText:: @ 856669A
.string "LUGIA is so powerful even a light\n"
.string "fluttering of its wings can blow apart\n"
.string "houses. As a result, it chooses to live out\n"
.string "of sight deep under the sea.$"
gHoOhPokedexText:: @ 856672C
.string "Its feathers--which glow in seven colors\n"
.string "depending on the angle at which they are\n"
.string "struck by light--are thought to bring joy.\n"
.string "It is said to live at the foot of a rainbow.$"
gCelebiPokedexText:: @ 85667D6
.string "This POKéMON came from the future by\n"
.string "crossing over time. It is thought that so\n"
.string "long as CELEBI appears, a bright and\n"
.string "shining future awaits us.$"
gTreeckoPokedexText:: @ 8566864
.string "It makes its nest in a giant tree in the\n"
.string "forest. It ferociously guards against\n"
.string "anything nearing its territory. It is said\n"
.string "to be the protector of the forest’s trees.$"
gGrovylePokedexText:: @ 8566909
.string "Leaves grow out of this POKéMON’s body.\n"
.string "They help obscure a GROVYLE from the eyes\n"
.string "of its enemies while it is in a thickly\n"
.string "overgrown forest.$"
gSceptilePokedexText:: @ 8566995
.string "In the jungle, its power is without equal.\n"
.string "This POKéMON carefully grows trees and\n"
.string "plants. It regulates its body temperature\n"
.string "by basking in sunlight.$"
gTorchicPokedexText:: @ 8566A29
.string "If attacked, it strikes back by spitting\n"
.string "balls of fire it forms in its stomach.\n"
.string "A TORCHIC dislikes darkness because it\n"
.string "can’t see its surroundings.$"
gCombuskenPokedexText:: @ 8566ABC
.string "It lashes out with 10 kicks per second.\n"
.string "Its strong fighting instinct compels it\n"
.string "to keep up its offensive until the\n"
.string "opponent gives up.$"
gBlazikenPokedexText:: @ 8566B42
.string "It learns martial arts that use punches\n"
.string "and kicks. Every several years, its old\n"
.string "feathers burn off, and new, supple\n"
.string "feathers grow back in their place.$"
gMudkipPokedexText:: @ 8566BD8
.string "On land, it can powerfully lift large\n"
.string "boulders by planting its four feet and\n"
.string "heaving. It sleeps by burying itself in soil\n"
.string "at the water’s edge.$"
gMarshtompPokedexText:: @ 8566C67
.string "Its toughened hind legs enable it to stand\n"
.string "upright. Because it weakens if its skin\n"
.string "dries out, it replenishes fluids by playing\n"
.string "in mud.$"
gSwampertPokedexText:: @ 8566CEE
.string "If it senses the approach of a storm and\n"
.string "a tidal wave, it protects its seaside nest\n"
.string "by piling up boulders. It swims as fast as\n"
.string "a jet ski.$"
gPoochyenaPokedexText:: @ 8566D78
.string "It savagely threatens foes with bared\n"
.string "fangs. It chases after fleeing targets\n"
.string "tenaciously. It turns tail and runs,\n"
.string "however, if the foe strikes back.$"
gMightyenaPokedexText:: @ 8566E0C
.string "In the wild, MIGHTYENA live in a pack.\n"
.string "They never defy their leader’s orders.\n"
.string "They defeat foes with perfectly\n"
.string "coordinated teamwork.$"
gZigzagoonPokedexText:: @ 8566E90
.string "Rubbing its nose against the ground, it\n"
.string "always wanders about back and forth in\n"
.string "search of something. It is distinguished\n"
.string "by the zigzag footprints it leaves.$"
gLinoonePokedexText:: @ 8566F2C
.string "It is exceedingly fast if it only has to run\n"
.string "in a straight line. When it spots pond-\n"
.string "dwelling prey underwater, it quickly leaps\n"
.string "in and catches it with its sharp claws.$"
gWurmplePokedexText:: @ 8566FD4
.string "It sticks to tree branches and eats\n"
.string "leaves. The thread it spits from its mouth,\n"
.string "which becomes gooey when it touches\n"
.string "air, slows the movement of its foes.$"
gSilcoonPokedexText:: @ 856706D
.string "It prepares for evolution using the\n"
.string "energy it stored while it was a WURMPLE.\n"
.string "It keeps watch over the surroundings with\n"
.string "its two eyes.$"
gBeautiflyPokedexText:: @ 85670F2
.string "Its colorfully patterned wings are its\n"
.string "most prominent feature. It flies through\n"
.string "flower-covered fields collecting pollen.\n"
.string "It attacks ferociously when angered.$"
gCascoonPokedexText:: @ 8567190
.string "To avoid detection by its enemies, it hides\n"
.string "motionlessly beneath large leaves and in\n"
.string "the gaps of branches. It also attaches\n"
.string "dead leaves to its body for camouflage.$"
gDustoxPokedexText:: @ 8567234
.string "It is a nocturnal POKéMON that flies from\n"
.string "fields and mountains to the attraction of\n"
.string "streetlights at night. It looses highly\n"
.string "toxic powder from its wings.$"
gLotadPokedexText:: @ 85672CD
.string "This POKéMON lives in ponds with clean\n"
.string "water. It is known to ferry small POKéMON\n"
.string "across ponds by carrying them on the\n"
.string "broad leaf on its head.$"
gLombrePokedexText:: @ 856735B
.string "In the evening, it takes great delight in\n"
.string "popping out of rivers and startling people.\n"
.string "It feeds on aquatic moss that grows on\n"
.string "rocks in the riverbed.$"
gLudicoloPokedexText:: @ 85673EF
.string "When it hears festive music, all the cells\n"
.string "in its body become stimulated, and it\n"
.string "begins moving in rhythm. It does not\n"
.string "quail even when it faces a tough opponent.$"
gSeedotPokedexText:: @ 8567490
.string "It hangs off branches and absorbs\n"
.string "nutrients. When it finishes eating, its\n"
.string "body becomes so heavy that it drops to\n"
.string "the ground with a thump.$"
gNuzleafPokedexText:: @ 856751A
.string "A forest-dwelling POKéMON that is skilled\n"
.string "at climbing trees. Its long and pointed\n"
.string "nose is its weak point. It loses power if\n"
.string "the nose is gripped.$"
gShiftryPokedexText:: @ 85675AB
.string "It is said to arrive on chilly, wintry winds.\n"
.string "Feared from long ago as the guardian of\n"
.string "forests, this POKéMON lives in a deep\n"
.string "forest where people do not venture.$"
gTaillowPokedexText:: @ 856764B
.string "Although it is small, it is very courageous.\n"
.string "It will take on a larger SKARMORY on an\n"
.string "equal footing. However, its will weakens if\n"
.string "it becomes hungry.$"
gSwellowPokedexText:: @ 85676DF
.string "A SWELLOW dives upon prey from far above.\n"
.string "It never misses its targets. It takes to\n"
.string "the skies in search of lands with a warm\n"
.string "climate.$"
gWingullPokedexText:: @ 8567764
.string "It makes its nest on a sheer cliff at the\n"
.string "edge of the sea. It has trouble keeping\n"
.string "its wings flapping in flight. Instead, it\n"
.string "soars on updrafts.$"
gPelipperPokedexText:: @ 85677F3
.string "It skims the tops of waves as it flies.\n"
.string "When it spots prey, it uses its large beak\n"
.string "to scoop up the victim with water.\n"
.string "It protects its eggs in its beak.$"
gRaltsPokedexText:: @ 856788B
.string "A RALTS has the power to sense the\n"
.string "emotions of people and POKéMON with the\n"
.string "horns on its head. It takes cover if it\n"
.string "senses any hostility.$"
gKirliaPokedexText:: @ 8567914
.string "A KIRLIA has the psychic power to create \n"
.string "a rip in the dimensions and see into the\n"
.string "future. It is said to dance with pleasure\n"
.string "on sunny mornings.$"
gGardevoirPokedexText:: @ 85679A4
.string "It apparently does not feel the pull of\n"
.string "gravity because it supports itself with\n"
.string "psychic power. It will give its life to\n"
.string "protect its TRAINER.$"
gSurskitPokedexText:: @ 8567A31
.string "They gather on puddles after evening\n"
.string "downpours, gliding across the surface\n"
.string "of water as if sliding. It secretes honey\n"
.string "with a sweet aroma from its head.$"
gMasquerainPokedexText:: @ 8567AC8
.string "It intimidates foes with the large eyelike\n"
.string "patterns on its antennae. Because it can’t\n"
.string "fly if its wings get wet, it shelters itself\n"
.string "from rain under large trees and eaves.$"
gShroomishPokedexText:: @ 8567B72
.string "It loves to eat damp, composted soil in\n"
.string "forests. If you enter a forest after a\n"
.string "long rain, you can see many SHROOMISH\n"
.string "feasting on composted soil.$"
gBreloomPokedexText:: @ 8567C03
.string "It scatters spores from holes in the cap\n"
.string "on its head. It loves warm and humid\n"
.string "climates. It feeds on trees and plants in\n"
.string "fields and forests.$"
gSlakothPokedexText:: @ 8567C8F
.string "It sleeps virtually all day and night long.\n"
.string "It doesn’t change its nest its entire life,\n"
.string "but it sometimes travels great distances\n"
.string "by swimming in rivers.$"
gVigorothPokedexText:: @ 8567D27
.string "It can’t keep still because its blood boils\n"
.string "with energy. It runs through the fields\n"
.string "and mountains all day to calm itself. If it\n"
.string "doesn’t, it can’t sleep at night.$"
gSlakingPokedexText:: @ 8567DC9
.string "Hordes of SLAKING gather around trees\n"
.string "when fruits come into season. They wait\n"
.string "around patiently for ripened fruits to fall\n"
.string "out of the trees.$"
gNincadaPokedexText:: @ 8567E55
.string "It makes its nest at the roots of a mighty\n"
.string "tree. Using its whiskerlike antennae, it\n"
.string "probes its surroundings in the\n"
.string "pitch-black darkness of soil.$"
gNinjaskPokedexText:: @ 8567EE6
.string "Because it darts about vigorously at high\n"
.string "speed, it is very difficult to see. Hearing\n"
.string "its distinctive cries for too long induces\n"
.string "a headache.$"
gShedinjaPokedexText:: @ 8567F73
.string "A peculiar POKéMON that floats in air even\n"
.string "though its wings remain completely still.\n"
.string "The inside of its body is hollow and\n"
.string "utterly dark.$"
gWhismurPokedexText:: @ 8567FFB
.string "Its cries equal a jet plane in volume.\n"
.string "It inhales through its ear canals. Because\n"
.string "of this system, it can cry continually\n"
.string "without having to catch its breath.$"
gLoudredPokedexText:: @ 8568098
.string "It positions the round speakers on its\n"
.string "head to assail foes with ultrasonic waves\n"
.string "at massive volume. It builds power by\n"
.string "stomping the ground.$"
gExploudPokedexText:: @ 8568124
.string "It has sound-generating organs all over\n"
.string "its body. It communicates with others by\n"
.string "adjusting the tone and volume of the cries\n"
.string "it emits.$"
gMakuhitaPokedexText:: @ 85681AA
.string "It loves to toughen up its body above all\n"
.string "else. If you hear quaking rumbles in a cave,\n"
.string "it is the sound of MAKUHITA undertaking\n"
.string "strenuous training.$"
gHariyamaPokedexText:: @ 856823D
.string "It has the habit of challenging others\n"
.string "without hesitation to tests of strength.\n"
.string "It’s been known to stand on train tracks\n"
.string "and stop trains using forearm thrusts.$"
gAzurillPokedexText:: @ 85682DD
.string "Its tail, which is packed with nutrition,\n"
.string "is very bouncy like a rubber ball. On sunny\n"
.string "days they gather at the edge of water and\n"
.string "splash about for fun.$"
gNosepassPokedexText:: @ 8568373
.string "Its body emits a powerful magnetism.\n"
.string "It feeds on prey that is pulled in by the\n"
.string "force. Its magnetism is stronger in cold\n"
.string "seasons.$"
gSkittyPokedexText:: @ 85683F4
.string "A SKITTY’s adorably cute behavior makes it\n"
.string "highly popular. In battle, it makes its tail\n"
.string "puff out. It threatens foes with a sharp\n"
.string "growl.$"
gDelcattyPokedexText:: @ 856847C
.string "Rather than keeping a permanent lair,\n"
.string "it habitually seeks comfortable spots and\n"
.string "sleeps there. It is nocturnal and becomes\n"
.string "active at dusk.$"
gSableyePokedexText:: @ 8568506
.string "It digs branching holes in caves using its\n"
.string "sharp claws in search of food--raw gems.\n"
.string "A SABLEYE lurks in darkness and is seen\n"
.string "only rarely.$"
gMawilePokedexText:: @ 856858F
.string "Its giant jaws are actually steel horns\n"
.string "that transformed. It fools foes into\n"
.string "complacency with its adorable gestures,\n"
.string "then chomps them with its huge jaws.$"
gAronPokedexText:: @ 8568629
.string "A POKéMON that is clad in steel armor.\n"
.string "A new suit of armor is made when it evolves.\n"
.string "The old, discarded armor is salvaged as\n"
.string "metal for making iron products.$"
gLaironPokedexText:: @ 85686C5
.string "When two LAIRON meet in the wild, they\n"
.string "fight for territory by bashing into each\n"
.string "other with their steel bodies. The sound\n"
.string "of their collision carries for miles.$"
gAggronPokedexText:: @ 8568764
.string "Its iron horns grow longer a little at\n"
.string "a time. They are used to determine the\n"
.string "AGGRON’s age. The gouges in its armor are\n"
.string "worn with pride as mementos from battles.$"
gMedititePokedexText:: @ 8568806
.string "It continually meditates for hours every\n"
.string "day. As a result of rigorous and dedicated\n"
.string "yoga training, it has tempered its\n"
.string "spiritual power so much it can fly.$"
gMedichamPokedexText:: @ 85688A1
.string "Through crushingly harsh yoga training, it\n"
.string "gained the power to foretell its foe’s\n"
.string "actions. It battles with elegant, dance-\n"
.string "like movement.$"
gElectrikePokedexText:: @ 856892B
.string "It generates electricity using friction\n"
.string "from the atmosphere. In seasons with\n"
.string "especially arid air, its entire body blazes\n"
.string "with violent showers of sparks.$"
gManectricPokedexText:: @ 85689C4
.string "Because lightning falls in their vicinities,\n"
.string "MANECTRIC were thought to have been born\n"
.string "from lightning. In battle, they create\n"
.string "thunderclouds.$"
gPluslePokedexText:: @ 8568A50
.string "It has the trait of cheering on its fellow\n"
.string "POKéMON. By shorting out the electricity\n"
.string "it releases from its paws, it creates\n"
.string "pom-poms for cheering.$"
gMinunPokedexText:: @ 8568AE1
.string "At a meeting of POKéMON academics, it was\n"
.string "announced that simultaneous exposure to\n"
.string "electricity from a PLUSLE and MINUN will\n"
.string "promote circulation and boost vitality.$"
gVolbeatPokedexText:: @ 8568B84
.string "With their taillights lit, VOLBEAT fly in\n"
.string "a swarm, drawing geometric designs in the\n"
.string "night sky. They move their nests if their\n"
.string "pond water becomes dirty.$"
gIllumisePokedexText:: @ 8568C1C
.string "A nocturnal POKéMON that becomes active\n"
.string "upon nightfall. It leads a VOLBEAT swarm\n"
.string "to draw patterns in the night sky. Over 200\n"
.string "different patterns have been confirmed.$"
gRoseliaPokedexText:: @ 8568CC1
.string "A ROSELIA that drinks nutritionally rich\n"
.string "springwater blooms with lovely flowers.\n"
.string "The fragrance of its flowers has the\n"
.string "effect of making its foes careless.$"
gGulpinPokedexText:: @ 8568D5B
.string "This POKéMON’s stomach fluid can even\n"
.string "digest scrap iron. In one gulp, it can\n"
.string "swallow something that is as large as\n"
.string "itself.$"
gSwalotPokedexText:: @ 8568DD6
.string "Its powerful stomach acid is capable of\n"
.string "digesting almost anything. The one thing\n"
.string "in the whole world a SWALOT can’t digest is\n"
.string "its own stomach.$"
gCarvanhaPokedexText:: @ 8568E64
.string "CARVANHA attack ships in swarms, making\n"
.string "them sink. Although it is said to be a very\n"
.string "vicious POKéMON, it timidly flees as soon\n"
.string "as it finds itself alone.$"
gSharpedoPokedexText:: @ 8568EFC
.string "The vicious and sly gangster of the sea.\n"
.string "Its skin is specially textured to minimize\n"
.string "drag in water. Its speed tops out at over\n"
.string "75 miles per hour.$"
gWailmerPokedexText:: @ 8568F8D
.string "While this POKéMON usually lives in the sea,\n"
.string "it can survive on land, although not too\n"
.string "long. It loses vitality if its body becomes\n"
.string "dried out.$"
gWailordPokedexText:: @ 856901A
.string "It breathes through nostrils that it\n"
.string "raises above the sea. By inhaling to its\n"
.string "maximum capacity, a WAILORD can dive close\n"
.string "to 10,000 feet beneath the waves.$"
gNumelPokedexText:: @ 85690B5
.string "A NUMEL stores boiling magma in the hump\n"
.string "on its back. It is a hardy POKéMON that can\n"
.string "transport a 220-pound load. It has served\n"
.string "humans at work since long ago.$"
gCameruptPokedexText:: @ 8569153
.string "A POKéMON that lives in the crater of\n"
.string "a volcano. Every 10 years, the volcanoes\n"
.string "on its back erupt violently. Research is\n"
.string "under way on the cause of eruption.$"
gTorkoalPokedexText:: @ 85691EF
.string "It battles using energy it gets from\n"
.string "burning coal. When loosing smoke from its\n"
.string "nostrils, it lets off a sound that is\n"
.string "similar to a locomotive’s horn.$"
gSpoinkPokedexText:: @ 8569284
.string "A POKéMON that manipulates psychic power\n"
.string "at will. It doesn’t stop bouncing even when\n"
.string "it is asleep. It loves eating mushrooms\n"
.string "that grow underground.$"
gGrumpigPokedexText:: @ 8569318
.string "It stores power in the black pearls on its\n"
.string "forehead. When it uses psychic power, it\n"
.string "performs an odd dance step. Its style of\n"
.string "dancing became hugely popular overseas.$"
gSpindaPokedexText:: @ 85693BD
.string "It is distinguished by a pattern of\n"
.string "spots that is always different. Its\n"
.string "unsteady, tottering walk has the\n"
.string "effect of fouling its foe’s aim.$"
gTrapinchPokedexText:: @ 8569447
.string "Its big jaws crunch through boulders.\n"
.string "Because its head is so big, it has a hard\n"
.string "time getting back upright if it tips over\n"
.string "onto its back.$"
gVibravaPokedexText:: @ 85694D0
.string "It looses ultrasonic waves by rubbing its\n"
.string "wings together. Since a VIBRAVA’s wings\n"
.string "are still in the process of growing, it can\n"
.string "only fly short distances.$"
gFlygonPokedexText:: @ 8569568
.string "The flapping of its wings sounds like\n"
.string "singing. To prevent detection by enemies,\n"
.string "it hides itself by flapping up a cloud of\n"
.string "desert sand.$"
gCacneaPokedexText:: @ 85695EF
.string "CACNEA live in deserts with virtually no\n"
.string "rainfall. It battles by swinging its thick,\n"
.string "spiked arms. Once a year, a yellow flower\n"
.string "blooms.$"
gCacturnePokedexText:: @ 8569676
.string "After spending thousands of years in\n"
.string "harsh deserts, its blood transformed into\n"
.string "the same substances as sand. It is\n"
.string "nocturnal, so it hunts at night.$"
gSwabluPokedexText:: @ 8569709
.string "A POKéMON that has wings like cottony\n"
.string "clouds. After enduring winter, in which\n"
.string "little food is available, SWABLU flocks\n"
.string "move closer to towns in the spring.$"
gAltariaPokedexText:: @ 85697A3
.string "It hums in a beautiful soprano voice.\n"
.string "It flies among white clouds in the blue\n"
.string "sky. It launches intensely hot fireballs\n"
.string "from its mouth.$"
gZangoosePokedexText:: @ 856982A
.string "When it battles, it stands on its hind legs\n"
.string "and attacks with its sharply clawed\n"
.string "forelegs. Its fur bristles if it encounters\n"
.string "any SEVIPER.$"
gSeviperPokedexText:: @ 85698B3
.string "SEVIPER and ZANGOOSE are eternal rivals.\n"
.string "It counters a ZANGOOSE’s dazzling agility\n"
.string "with its swordlike tail, which also oozes\n"
.string "a horrible poison.$"
gLunatonePokedexText:: @ 8569943
.string "It becomes very active on the night of\n"
.string "a full moon. This POKéMON was first\n"
.string "discovered 40 years ago at the site of\n"
.string "a meteor strike.$"
gSolrockPokedexText:: @ 85699C6
.string "Solar energy is the source of this \n"
.string "POKéMON’s power. On sunny days, groups of\n"
.string "SOLROCK line up facing the sun and absorb\n"
.string "its light.$"
gBarboachPokedexText:: @ 8569A49
.string "Its body is covered with a slimy film.\n"
.string "The film acts as a barrier to prevent germs\n"
.string "in muddy water from entering the\n"
.string "BARBOACH’s body.$"
gWhiscashPokedexText:: @ 8569ACE
.string "Mysteriously, it can foretell earthquakes.\n"
.string "In the daytime, it sleeps in mud at the\n"
.string "bottom of a pond. When it awakens, it\n"
.string "continually feeds throughout the night.$"
gCorphishPokedexText:: @ 8569B6F
.string "Once it grips prey with its large pincers,\n"
.string "it will never let go, no matter what.\n"
.string "It is a hardy POKéMON that can thrive\n"
.string "in any environment.$"
gCrawdauntPokedexText:: @ 8569BFA
.string "A brutish POKéMON that loves to battle.\n"
.string "A veteran CRAWDAUNT that has prevailed in\n"
.string "hundreds of battles has giant pincers\n"
.string "marked with countless scars.$"
gBaltoyPokedexText:: @ 8569C8F
.string "A BALTOY moves by spinning on its single\n"
.string "foot. It has been depicted in murals \n"
.string "adorning the walls of a once-bustling city\n"
.string "in an ancient age.$"
gClaydolPokedexText:: @ 8569D1C
.string "A CLAYDOL sleeps while hovering in midair.\n"
.string "Its arms are separate from its body.\n"
.string "They are kept floating by the POKéMON’s\n"
.string "manipulation of psychic power.$"
gLileepPokedexText:: @ 8569DB3
.string "It disguises itself as seaweed by making\n"
.string "its tentacles sway. Unsuspecting prey\n"
.string "that come too close are swallowed whole.\n"
.string "It became extinct 100 million years ago.$"
gCradilyPokedexText:: @ 8569E54
.string "It drags its heavy body along the\n"
.string "seafloor. It makes its nest in the shallows\n"
.string "of warm seas. CRADILY can be seen on\n"
.string "beaches when the tide goes out.$"
gAnorithPokedexText:: @ 8569EE7
.string "It was resurrected from a fossil using the\n"
.string "power of science. It swims by undulating\n"
.string "the eight wings at its sides. They were\n"
.string "feet that adapted to life in the sea.$"
gArmaldoPokedexText:: @ 8569F89
.string "ARMALDO usually lives on land. However,\n"
.string "when it hunts for prey, it dives beneath\n"
.string "the ocean. It swims around using its two\n"
.string "large wings.$"
gFeebasPokedexText:: @ 856A010
.string "FEEBAS live in ponds that are heavily\n"
.string "infested with weeds. Because of its\n"
.string "hopelessly shabby appearance, it\n"
.string "seems as if few TRAINERS raise it.$"
gMiloticPokedexText:: @ 856A09E
.string "It is said to live at the bottom of\n"
.string "large lakes. Considered to be the most\n"
.string "beautiful of all POKéMON, it has been\n"
.string "depicted in paintings and statues.$"
gCastformPokedexText:: @ 856A132
.string "It alters its form depending on the\n"
.string "weather. Changes in the climate such as\n"
.string "the temperature and humidity appear to\n"
.string "affect its cellular structure.$"
gKecleonPokedexText:: @ 856A1C4
.string "A POKéMON that has the ability to alter its\n"
.string "body colors to match its surroundings.\n"
.string "A KECLEON reverts to its original colors if\n"
.string "it is startled.$"
gShuppetPokedexText:: @ 856A253
.string "This POKéMON roams about deep in the\n"
.string "night seeking such negative emotions as\n"
.string "grudges and envy. It retreats to its nest\n"
.string "when the sun begins to rise.$"
gBanettePokedexText:: @ 856A2E7
.string "An abandoned plush doll became this\n"
.string "POKéMON. They are said to live in garbage\n"
.string "dumps and wander about in search of the\n"
.string "children that threw them away.$"
gDuskullPokedexText:: @ 856A37C
.string "A glare from its single scarlet eye makes\n"
.string "even burly grown-ups freeze in utter fear.\n"
.string "It is a nocturnal POKéMON that roams\n"
.string "about under the cloak of darkness.$"
gDusclopsPokedexText:: @ 856A419
.string "It is thought that its body is hollow with\n"
.string "only a spectral ball of fire burning inside.\n"
.string "However, no one has been able to\n"
.string "confirm this theory as fact.$"
gTropiusPokedexText:: @ 856A4AF
.string "It flies by flapping its broad leaves.\n"
.string "The bunch of fruit that grows around its\n"
.string "neck is deliciously sweet. In the spring,\n"
.string "it scatters pollen from its neck.$"
gChimechoPokedexText:: @ 856A54B
.string "They fly about very actively when the hot\n"
.string "season arrives. They communicate among\n"
.string "themselves using seven different and\n"
.string "distinguishing cries.$"
gAbsolPokedexText:: @ 856A5D7
.string "It sharply senses even subtle changes in\n"
.string "the sky and the land to predict natural\n"
.string "disasters. It is a long-lived POKéMON that\n"
.string "has a life-span of 100 years.$"
gWynautPokedexText:: @ 856A671
.string "A WYNAUT loves to eat sweet fruits.\n"
.string "It cleverly picks fruits using its earlike\n"
.string "arms. They gather in fruit gardens, drawn\n"
.string "by the fragrance.$"
gSnoruntPokedexText:: @ 856A6FC
.string "They tend to move about in groups of\n"
.string "around five SNORUNT. In snowy regions,\n"
.string "it is said that when they are seen late at\n"
.string "night, snowfall will arrive by morning.$"
gGlaliePokedexText:: @ 856A79B
.string "A GLALIE has the power to instantaneously\n"
.string "freeze moisture in the atmosphere.\n"
.string "A dazzling cloud of diamondlike ice\n"
.string "crystals forms around its body.$"
gSphealPokedexText:: @ 856A82C
.string "It is completely covered with plushy fur.\n"
.string "As a result, it never feels the cold even\n"
.string "when it is rolling about on ice floes or\n"
.string "diving in the sea.$"
gSealeoPokedexText:: @ 856A8BC
.string "SEALEO live in herds on ice floes. Using its\n"
.string "powerful flippers, it shatters ice.\n"
.string "It dives into the sea to hunt prey five\n"
.string "times a day.$"
gWalreinPokedexText:: @ 856A942
.string "To protect its herd, the leader battles\n"
.string "anything that invades its territory, even\n"
.string "at the cost of its life. Its tusks may snap\n"
.string "off in battle.$"
gClamperlPokedexText:: @ 856A9CF
.string "A CLAMPERL slams its shell closed on prey\n"
.string "to prevent escape. The pearl it creates\n"
.string "upon evolution is said to be infused with\n"
.string "a mysterious energy.$"
gHuntailPokedexText:: @ 856AA60
.string "To withstand the crushing pressure of\n"
.string "water deep under the sea, its spine is very\n"
.string "thick and sturdy. Its tail, which is shaped\n"
.string "like a small fish, has eyes that light up.$"
gGorebyssPokedexText:: @ 856AB09
.string "A GOREBYSS siphons the body fluids of prey\n"
.string "through its thin, tubular mouth. Its light\n"
.string "pink body color turns vivid when it\n"
.string "finishes feeding.$"
gRelicanthPokedexText:: @ 856AB95
.string "A POKéMON that was once believed to have\n"
.string "been extinct. The species has not changed\n"
.string "its form for 100 million years. It walks on\n"
.string "the seafloor using its pectoral fins.$"
gLuvdiscPokedexText:: @ 856AC3A
.string "LUVDISC make the branches of CORSOLA\n"
.string "their nests. There is a custom from long\n"
.string "ago of giving a LUVDISC as a gift to\n"
.string "express one’s feelings of love.$"
gBagonPokedexText:: @ 856ACCD
.string "Although it is small, this POKéMON is very\n"
.string "powerful because its body is a bundle of\n"
.string "muscles. It launches head-butts with its\n"
.string "ironlike skull.$"
gShelgonPokedexText:: @ 856AD5A
.string "It hardly eats while it awaits evolution.\n"
.string "It becomes hardier by enduring hunger.\n"
.string "Its shell peels off the instant it begins\n"
.string "to evolve.$"
gSalamencePokedexText:: @ 856ADE0
.string "After many long years, its cellular\n"
.string "structure underwent a sudden mutation to\n"
.string "grow wings. When angered, it loses all\n"
.string "thought and rampages out of control.$"
gBeldumPokedexText:: @ 856AE79
.string "When BELDUM gather in a swarm, they move\n"
.string "in perfect unison as if they were but one\n"
.string "POKéMON. They communicate with each other\n"
.string "using brain waves.$"
gMetangPokedexText:: @ 856AF09
.string "The claws tipping its arms pack the\n"
.string "destructive power to tear through thick\n"
.string "iron sheets as if they were silk. It flies\n"
.string "at over 60 miles per hour.$"
gMetagrossPokedexText:: @ 856AF9B
.string "METAGROSS has four brains that are joined\n"
.string "by a complex neural network. As a result of\n"
.string "integration, this POKéMON is smarter than\n"
.string "a supercomputer.$"
gRegirockPokedexText:: @ 856B02C
.string "A POKéMON that is made entirely of rocks\n"
.string "and boulders. If parts of its body chip off\n"
.string "in battle, REGIROCK repairs itself by\n"
.string "adding new rocks.$"
gRegicePokedexText:: @ 856B0B9
.string "Its entire body is made of Antarctic ice.\n"
.string "After extensive studies, researchers\n"
.string "believe the ice was formed during an\n"
.string "ice age.$"
gRegisteelPokedexText:: @ 856B136
.string "Its body is harder than any other kind of\n"
.string "metal. The body metal is composed of a\n"
.string "mysterious substance. Not only is it hard,\n"
.string "it shrinks and stretches flexibly.$"
gLatiasPokedexText:: @ 856B1D5
.string "They make a small herd of only several\n"
.string "members. They rarely make contact with\n"
.string "people or other POKéMON. They disappear\n"
.string "if they sense enemies.$"
gLatiosPokedexText:: @ 856B262
.string "Even in hiding, it can detect the locations\n"
.string "of others and sense their emotions since\n"
.string "it has telepathy. Its intelligence allows\n"
.string "it to understand human languages.$"
gKyogrePokedexText:: @ 856B303
.string "KYOGRE has appeared in mythology as the\n"
.string "creator of the sea. After long years of\n"
.string "feuding with GROUDON, it took to sleep at\n"
.string "the bottom of the sea.$"
gGroudonPokedexText:: @ 856B394
.string "GROUDON has appeared in mythology as the\n"
.string "creator of the land. It sleeps in magma\n"
.string "underground and is said to make volcanoes\n"
.string "erupt on awakening.$"
gRayquazaPokedexText:: @ 856B423
.string "A POKéMON that flies endlessly in the\n"
.string "ozone layer. It is said it would descend\n"
.string "to the ground if KYOGRE and GROUDON\n"
.string "were to fight.$"
gJirachiPokedexText:: @ 856B4A5
.string "JIRACHI is said to make wishes come true.\n"
.string "While it sleeps, a tough crystalline shell\n"
.string "envelops the body to protect it from\n"
.string "enemies.$"
gDeoxysPokedexText:: @ 856B528
.string "A POKéMON that mutated from an\n"
.string "extraterrestrial virus exposed to a laser\n"
.string "beam. Its body is configured for superior\n"
.string "agility and speed.$"
|