summaryrefslogtreecommitdiff
path: root/data/pokemon/dex_text.asm
blob: 7e84a83d45befd436f88a35cd40811498e86c70f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
_BulbasaurDexEntry::
	text "It can go for days"
	next "without eating a"
	next "single morsel."

	page "In the bulb on"
	next "its back, it"
	next "stores energy"
	dex

_IvysaurDexEntry::
	text "The bulb on its"
	next "back grows by"
	next "drawing energy."

	page "It gives off an"
	next "aroma when it is"
	next "ready to bloom"
	dex

_VenusaurDexEntry::
	text "The flower on its"
	next "back catches the"
	next "sun's rays."

	page "The sunlight is"
	next "then absorbed and"
	next "used for energy"
	dex

_CharmanderDexEntry::
	text "The flame at the"
	next "tip of its tail"
	next "makes a sound as"

	page "it burns. You can"
	next "only hear it in"
	next "quiet places"
	dex

_CharmeleonDexEntry::
	text "Tough fights could"
	next "excite this"
	next "#MON. When"

	page "excited, it may"
	next "blow out bluish-"
	next "white flames"
	dex

_CharizardDexEntry::
	text "When expelling a"
	next "blast of super"
	next "hot fire, the red"

	page "flame at the tip"
	next "of its tail burns"
	next "more intensely"
	dex

_SquirtleDexEntry::
	text "Shoots water at"
	next "prey while in the"
	next "water."

	page "Withdraws into"
	next "its shell when in"
	next "danger"
	dex

_WartortleDexEntry::
	text "When tapped, this"
	next "#MON will pull"
	next "in its head, but"

	page "its tail will"
	next "still stick out a"
	next "little bit"
	dex

_BlastoiseDexEntry::
	text "Once it takes aim"
	next "at its enemy, it"
	next "blasts out water"

	page "with even more"
	next "force than a fire"
	next "hose"
	dex

_CaterpieDexEntry::
	text "If you touch the"
	next "feeler on top of"
	next "its head, it will"

	page "release a horrible"
	next "stink to protect"
	next "itself"
	dex

_MetapodDexEntry::
	text "Hardens its shell"
	next "to protect itself."
	next "However, a large"

	page "impact may cause"
	next "it to pop out of"
	next "its shell"
	dex

_ButterfreeDexEntry::
	text "Its wings, covered"
	next "with poisonous"
	next "powders, repel"

	page "water. This"
	next "allows it to fly"
	next "in the rain"
	dex

_WeedleDexEntry::
	text "Beware of the"
	next "sharp stinger on"
	next "its head. It"

	page "hides in grass"
	next "and bushes where"
	next "it eats leaves"
	dex

_KakunaDexEntry::
	text "Able to move only"
	next "slightly. When"
	next "endangered, it"

	page "may stick out its"
	next "stinger and poison"
	next "its enemy"
	dex

_BeedrillDexEntry::
	text "It has 3 poisonous"
	next "stingers on its"
	next "forelegs and its"

	page "tail. They are"
	next "used to jab its"
	next "enemy repeatedly"
	dex

_PidgeyDexEntry::
	text "Very docile. If"
	next "attacked, it will"
	next "often kick up"

	page "sand to protect"
	next "itself rather"
	next "than fight back"
	dex

_PidgeottoDexEntry::
	text "This #MON is"
	next "full of vitality."
	next "It constantly"

	page "flies around its"
	next "large territory in"
	next "search of prey"
	dex

_PidgeotDexEntry::
	text "This #MON flies"
	next "at Mach 2 speed,"
	next "seeking prey."

	page "Its large talons"
	next "are feared as"
	next "wicked weapons"
	dex

_RattataDexEntry::
	text "Will chew on any-"
	next "thing with its"
	next "fangs. If you see"

	page "one, it is certain"
	next "that 40 more live"
	next "in the area"
	dex

_RaticateDexEntry::
	text "Its hind feet are"
	next "webbed. They act"
	next "as flippers, so"

	page "it can swim in"
	next "rivers and hunt"
	next "for prey"
	dex

_SpearowDexEntry::
	text "Inept at flying"
	next "high. However, it"
	next "can fly around"

	page "very fast to"
	next "protect its ter-"
	next "ritory"
	dex

_FearowDexEntry::
	text "A #MON that"
	next "dates back many"
	next "years. If it"

	page "senses danger, it"
	next "flies high and"
	next "away, instantly"
	dex

_EkansDexEntry::
	text "The older it gets,"
	next "the longer it"
	next "grows. At night,"

	page "it wraps its long"
	next "body around tree"
	next "branches to rest"
	dex

_ArbokDexEntry::
	text "The frightening"
	next "patterns on its"
	next "belly have been"

	page "studied. Six"
	next "variations have"
	next "been confirmed"
	dex

_PikachuDexEntry::
	text "It keeps its tail"
	next "raised to monitor"
	next "its surroundings."

	page "If you yank its"
	next "tail, it will try"
	next "to bite you"
	dex

_RaichuDexEntry::
	text "When electricity"
	next "builds up inside"
	next "its body, it"

	page "becomes feisty."
	next "It also glows in"
	next "the dark"
	dex

_SandshrewDexEntry::
	text "Its body is dry."
	next "When it gets cold"
	next "at night, its"

	page "hide is said to"
	next "become coated with"
	next "a fine dew"
	dex

_SandslashDexEntry::
	text "It is skilled at"
	next "slashing enemies"
	next "with its claws."

	page "If broken, they"
	next "start to grow back"
	next "in a day"
	dex

_NidoranFDexEntry::
	text "A mild-mannered"
	next "#MON that does"
	next "not like to"

	page "fight. Beware, its"
	next "small horns"
	next "secrete venom"
	dex

_NidorinaDexEntry::
	text "When resting deep"
	next "in its burrow, its"
	next "thorns always"

	page "retract."
	next "This is proof that"
	next "it is relaxed"
	dex

_NidoqueenDexEntry::
	text "Tough scales cover"
	next "the sturdy body"
	next "of this #MON."

	page "It appears that"
	next "the scales grow"
	next "in cycles"
	dex

_NidoranMDexEntry::
	text "Its large ears"
	next "are always kept"
	next "upright. If it"

	page "senses danger, it"
	next "will attack with a"
	next "poisonous sting"
	dex

_NidorinoDexEntry::
	text "Its horns contain"
	next "venom. If they"
	next "are stabbed into"

	page "an enemy, the"
	next "impact makes the"
	next "poison leak out"
	dex

_NidokingDexEntry::
	text "Its steel-like"
	next "hide adds to its"
	next "powerful tackle."

	page "Its horns are so"
	next "hard, they can"
	next "pierce a diamond"
	dex

_ClefairyDexEntry::
	text "Adored for their"
	next "cute looks and"
	next "playfulness. They"

	page "are thought to be"
	next "rare, as they do"
	next "not appear often"
	dex

_ClefableDexEntry::
	text "They appear to be"
	next "very protective of"
	next "their own world."

	page "It is a kind of"
	next "fairy, rarely seen"
	next "by people"
	dex

_VulpixDexEntry::
	text "Both its fur and"
	next "its tails are"
	next "beautiful. As it"

	page "grows, the tails"
	next "split and form"
	next "more tails"
	dex

_NinetalesDexEntry::
	text "According to an"
	next "enduring legend,"
	next "9 noble saints"

	page "were united and"
	next "reincarnated as"
	next "this #MON"
	dex

_JigglypuffDexEntry::
	text "Uses its alluring"
	next "eyes to enrapture"
	next "its foe. It then"

	page "sings a pleasing"
	next "melody that lulls"
	next "the foe to sleep"
	dex

_WigglytuffDexEntry::
	text "Its body is full"
	next "of elasticity. By"
	next "inhaling deeply,"

	page "it can continue"
	next "to inflate itself"
	next "without limit"
	dex

_ZubatDexEntry::
	text "Emits ultrasonic"
	next "cries while it"
	next "flies. They act"

	page "as a sonar used"
	next "to check for ob-"
	next "jects in its way"
	dex

_GolbatDexEntry::
	text "It attacks in a"
	next "stealthy manner,"
	next "without warning."

	page "Its sharp fangs"
	next "are used to bite"
	next "and suck blood"
	dex

_OddishDexEntry::
	text "It may be mistaken"
	next "for a clump of"
	next "weeds. If you try"

	page "to yank it out of"
	next "the ground, it"
	next "shrieks horribly"
	dex

_GloomDexEntry::
	text "Smells incredibly"
	next "foul! However,"
	next "around 1 out of"

	page "1,000 people enjoy"
	next "sniffing its nose-"
	next "bending stink"
	dex

_VileplumeDexEntry::
	text "Flaps its broad"
	next "flower petals to"
	next "scatter its"

	page "poisonous pollen."
	next "The flapping sound"
	next "is very loud"
	dex

_ParasDexEntry::
	text "Burrows under the"
	next "ground to gnaw on"
	next "tree roots. The"

	page "mushrooms on its"
	next "back absorb most"
	next "of the nutrition"
	dex

_ParasectDexEntry::
	text "The bug host is"
	next "drained of energy"
	next "by the mushrooms"

	page "on its back. They"
	next "appear to do all"
	next "the thinking"
	dex

_VenonatDexEntry::
	text "Its large eyes act"
	next "as radars. In a"
	next "bright place, you"

	page "can see that they"
	next "are clusters of"
	next "many tiny eyes"
	dex

_VenomothDexEntry::
	text "The powdery scales"
	next "on its wings are"
	next "hard to remove."

	page "They also contain"
	next "poison that leaks"
	next "out on contact"
	dex

_DiglettDexEntry::
	text "It prefers dark"
	next "places. It spends"
	next "most of its time"

	page "underground,"
	next "though it may pop"
	next "up in caves"
	dex

_DugtrioDexEntry::
	text "A team of triplets"
	next "that can burrow"
	next "over 60 MPH."

	page "Due to this, some"
	next "people think it's"
	next "an earthquake"
	dex

_MeowthDexEntry::
	text "Appears to be more"
	next "active at night."
	next "It loves round"

	page "and shiny things."
	next "It can't stop from"
	next "picking them up"
	dex

_PersianDexEntry::
	text "The gem in its"
	next "forehead glows on"
	next "its own! It walks"

	page "with all the grace"
	next "and elegance of a"
	next "proud queen"
	dex

_PsyduckDexEntry::
	text "Always tormented"
	next "by headaches."
	next "It uses psychic"

	page "powers, but it is"
	next "not known if it"
	next "intends to do so"
	dex

_GolduckDexEntry::
	text "Its slim and long"
	next "limbs end in broad"
	next "flippers. They"

	page "are used for swim-"
	next "ming gracefully"
	next "in lakes"
	dex

_MankeyDexEntry::
	text "An agile #MON"
	next "that lives in"
	next "trees. It angers"

	page "easily and will"
	next "not hesitate to"
	next "attack anything"
	dex

_PrimeapeDexEntry::
	text "It stops being"
	next "angry only when"
	next "nobody else is"

	page "around. To view"
	next "this moment is"
	next "very difficult"
	dex

_GrowlitheDexEntry::
	text "A #MON with a"
	next "friendly nature."
	next "However, it will"

	page "bark fiercely at"
	next "anything invading"
	next "its territory"
	dex

_ArcanineDexEntry::
	text "A legendary #-"
	next "MON in China."
	next "Many people are"

	page "charmed by its"
	next "grace and beauty"
	next "while running"
	dex

_PoliwagDexEntry::
	text "The direction of"
	next "the spiral on the"
	next "belly differs by"

	page "area. It is more"
	next "adept at swimming"
	next "than walking"
	dex

_PoliwhirlDexEntry::
	text "Under attack, it"
	next "uses its belly "
	next "spiral to put the"

	page "foe to sleep. It"
	next "then makes its"
	next "escape"
	dex

_PoliwrathDexEntry::
	text "Swims powerfully"
	next "using all the"
	next "muscles in its"

	page "body. It can even"
	next "overtake champion"
	next "swimmers"
	dex

_AbraDexEntry::
	text "Sleeps 18 hours a"
	next "day. If it senses"
	next "danger, it will"

	page "teleport itself to"
	next "safety even as it"
	next "sleeps"
	dex

_KadabraDexEntry::
	text "Many odd things"
	next "happen if this"
	next "#MON is close"

	page "by. For example,"
	next "it makes clocks"
	next "run backwards"
	dex

_AlakazamDexEntry::
	text "A #MON that can"
	next "memorize anything."
	next "It never forgets"

	page "what it learns--"
	next "that's why this"
	next "#MON is smart"
	dex

_MachopDexEntry::
	text "Very powerful in"
	next "spite of its small"
	next "size. Its mastery"

	page "of many types of"
	next "martial arts makes"
	next "it very tough"
	dex

_MachokeDexEntry::
	text "The belt around"
	next "its waist holds"
	next "back its energy."

	page "Without it, this"
	next "#MON would be"
	next "unstoppable"
	dex

_MachampDexEntry::
	text "One arm alone can"
	next "move mountains."
	next "Using all four"

	page "arms, this #MON"
	next "fires off awesome"
	next "punches"
	dex

_BellsproutDexEntry::
	text "Prefers hot and"
	next "humid places."
	next "It ensnares tiny"

	page "insects with its"
	next "vines and devours"
	next "them"
	dex

_WeepinbellDexEntry::
	text "When hungry, it"
	next "swallows anything"
	next "that moves. Its"

	page "hapless prey is"
	next "melted inside by"
	next "strong acids"
	dex

_VictreebelDexEntry::
	text "Lures prey with"
	next "the sweet aroma of"
	next "honey. Swallowed"

	page "whole, the prey is"
	next "melted in a day,"
	next "bones and all"
	dex

_TentacoolDexEntry::
	text "It can sometimes"
	next "be found all dry"
	next "and shriveled up"

	page "on a beach. Toss"
	next "it back into the"
	next "sea to revive it"
	dex

_TentacruelDexEntry::
	text "Its 80 tentacles"
	next "can stretch and"
	next "contract freely."

	page "They wrap around"
	next "prey and weaken"
	next "it with poison"
	dex

_GeodudeDexEntry::
	text "Commonly found"
	next "near mountain"
	next "trails, etc."

	page "If you step on"
	next "one by accident,"
	next "it gets angry"
	dex

_GravelerDexEntry::
	text "Often seen rolling"
	next "down mountain"
	next "trails. Obstacles"

	page "are just things to"
	next "roll straight"
	next "over, not avoid"
	dex

_GolemDexEntry::
	text "Once it sheds its"
	next "skin, its body"
	next "turns tender and"

	page "whitish. Its hide"
	next "hardens when it's"
	next "exposed to air"
	dex

_PonytaDexEntry::
	text "Capable of jumping"
	next "incredibly high."
	next "Its hooves and"

	page "sturdy legs absorb"
	next "the impact of a"
	next "hard landing"
	dex

_RapidashDexEntry::
	text "Just loves to run."
	next "If it sees some-"
	next "thing faster than"

	page "itself, it will"
	next "give chase at top"
	next "speed"
	dex

_SlowpokeDexEntry::
	text "Incredibly slow"
	next "and sluggish. It"
	next "is quite content"

	page "to loll about"
	next "without worrying"
	next "about the time"
	dex

_SlowbroDexEntry::
	text "Lives lazily by"
	next "the sea. If the"
	next "SHELLDER on its"

	page "tail comes off,"
	next "it becomes a"
	next "SLOWPOKE again"
	dex

_MagnemiteDexEntry::
	text "It is born with"
	next "the ability to"
	next "defy gravity. It"

	page "floats in air on"
	next "powerful electro-"
	next "magnetic waves"
	dex

_MagnetonDexEntry::
	text "Generates strange"
	next "radio signals. It"
	next "raises the tem-"

	page "perature by 3.6F"
	next "degrees within"
	next "3,300 feet"
	dex

_FarfetchdDexEntry::
	text "Lives where reedy"
	next "plants grow. They"
	next "are rarely seen,"

	page "so it's thought"
	next "their numbers are"
	next "decreasing"
	dex

_DoduoDexEntry::
	text "Its short wings"
	next "make flying dif-"
	next "ficult. Instead,"

	page "this #MON runs"
	next "at high speed on"
	next "developed legs"
	dex

_DodrioDexEntry::
	text "One of DODUO's 2"
	next "heads splits to"
	next "form a unique"

	page "species. It runs"
	next "close to 40 MPH"
	next "in prairies"
	dex

_SeelDexEntry::
	text "Loves freezing"
	next "cold conditions."
	next "Relishes swimming"

	page "in a frigid cli-"
	next "mate of around 14F"
	next "degrees"
	dex

_DewgongDexEntry::
	text "Its entire body is"
	next "a snowy-white."
	next "Unharmed by even"

	page "intense cold, it"
	next "swims powerfully"
	next "in icy waters"
	dex

_GrimerDexEntry::
	text "Made of hardened"
	next "sludge. It smells"
	next "too putrid to"

	page "touch."
	next "Even weeds won't"
	next "grow in its path"
	dex

_MukDexEntry::
	text "Smells so awful,"
	next "it can cause"
	next "fainting. Through"

	page "degeneration, it"
	next "lost its sense of"
	next "smell"
	dex

_ShellderDexEntry::
	text "The shell can"
	next "withstand any"
	next "attack. However,"

	page "when it is open,"
	next "the tender body"
	next "is exposed"
	dex

_CloysterDexEntry::
	text "For protection, it"
	next "uses its harder-"
	next "than-diamonds"

	page "shell. It also"
	next "shoots spikes from"
	next "the shell"
	dex

_GastlyDexEntry::
	text "Said to appear in"
	next "decrepit, deserted"
	next "buildings. It has"

	page "no real shape as"
	next "it appears to be"
	next "made of a gas"
	dex

_HaunterDexEntry::
	text "By licking, it"
	next "saps the victim's"
	next "life. It causes"

	page "shaking that won't"
	next "stop until the"
	next "victim's demise"
	dex

_GengarDexEntry::
	text "A GENGAR is close"
	next "by if you feel a"
	next "sudden chill."

	page "It may be trying"
	next "to lay a curse"
	next "on you"
	dex

_OnixDexEntry::
	text "Burrows at high"
	next "speed in search"
	next "of food. The"

	page "tunnels it leaves"
	next "are used as homes"
	next "by DIGLETTs"
	dex

_DrowzeeDexEntry::
	text "If you sleep by"
	next "it all the time,"
	next "it will sometimes"

	page "show you dreams"
	next "it has eaten in"
	next "the past"
	dex

_HypnoDexEntry::
	text "Avoid eye contact"
	next "if you come across"
	next "one. It will try"

	page "to put you to"
	next "sleep by using"
	next "its pendulum"
	dex

_KrabbyDexEntry::
	text "Its pincers are"
	next "superb weapons."
	next "They sometimes"

	page "break off during"
	next "battle, but they"
	next "grow back fast"
	dex

_KinglerDexEntry::
	text "One claw grew"
	next "massively and as"
	next "hard as steel."

	page "It has 10,000-HP"
	next "strength. However,"
	next "it is too heavy"
	dex

_VoltorbDexEntry::
	text "It is said to"
	next "camouflage itself"
	next "as a # BALL. It"

	page "will self-destruct"
	next "with very little"
	next "stimulus"
	dex

_ElectrodeDexEntry::
	text "Stores electrical"
	next "energy inside its"
	next "body. Even the"

	page "slightest shock"
	next "could trigger a"
	next "huge explosion"
	dex

_ExeggcuteDexEntry::
	text "The heads attract"
	next "each other and"
	next "spin around."

	page "There must be 6"
	next "heads for it to"
	next "maintain balance"
	dex

_ExeggutorDexEntry::
	text "Its cries are very"
	next "noisy. This is"
	next "because each of"

	page "the 3 heads thinks"
	next "about whatever it"
	next "likes"
	dex

_CuboneDexEntry::
	text "Wears the skull"
	next "of its deceased"
	next "mother. Its cries"

	page "echo inside the"
	next "skull and come out"
	next "as a sad melody"
	dex

_MarowakDexEntry::
	text "Small and weak,"
	next "this #MON is"
	next "adept with its"

	page "bone club. It has"
	next "grown more vicious"
	next "over the ages"
	dex

_HitmonleeDexEntry::
	text "When kicking, the"
	next "sole of its foot"
	next "turns as hard as"

	page "a diamond on im-"
	next "pact and destroys"
	next "its enemy"
	dex

_HitmonchanDexEntry::
	text "Punches in cork-"
	next "screw fashion. It"
	next "can punch its way"

	page "through a concrete"
	next "wall in the same"
	next "way as a drill"
	dex

_LickitungDexEntry::
	text "Its tongue spans"
	next "almost 7 feet and"
	next "moves more freely"

	page "than its forelegs."
	next "Its licks can"
	next "cause paralysis"
	dex

_KoffingDexEntry::
	text "In hot places, its"
	next "internal gases"
	next "could expand and"

	page "explode without"
	next "any warning. Be"
	next "very careful!@@"

_WeezingDexEntry::
	text "It lives and grows"
	next "by absorbing dust,"
	next "germs and poison"

	page "gases that are"
	next "contained in toxic"
	next "waste and garbage"
	dex

_RhyhornDexEntry::
	text "A #MON with a"
	next "one-track mind."
	next "Once it charges, "

	page "it won't stop"
	next "running until it"
	next "falls asleep"
	dex

_RhydonDexEntry::
	text "Walks on its hind"
	next "legs. Shows signs"
	next "of intelligence."

	page "Its armor-like"
	next "hide even repels"
	next "molten lava"
	dex

_ChanseyDexEntry::
	text "A gentle and kind-"
	next "hearted #MON"
	next "that shares its"

	page "nutritious eggs"
	next "if it sees an"
	next "injured #MON"
	dex

_TangelaDexEntry::
	text "Its identity is"
	next "obscured by masses"
	next "of thick, blue"

	page "vines. The vines"
	next "are said to never"
	next "stop growing"
	dex

_KangaskhanDexEntry::
	text "Raises its young"
	next "in its belly"
	next "pouch. Won't run"

	page "from any fight"
	next "to keep its young"
	next "protected"
	dex

_HorseaDexEntry::
	text "If it senses any"
	next "danger, it will"
	next "vigorously spray"

	page "water or a special"
	next "type of ink from"
	next "its mouth"
	dex

_SeadraDexEntry::
	text "Touching the back"
	next "fin causes numb-"
	next "ness. It hooks"

	page "its tail to coral"
	next "to stay in place"
	next "while sleeping"
	dex

_GoldeenDexEntry::
	text "When it is time"
	next "for them to lay"
	next "eggs, they can be"

	page "seen swimming up"
	next "rivers and falls"
	next "in large groups"
	dex

_SeakingDexEntry::
	text "It is the male's"
	next "job to make a"
	next "nest by carving"

	page "out boulders in a"
	next "stream using the"
	next "horn on its head"
	dex

_StaryuDexEntry::
	text "As long as the"
	next "center section is"
	next "unharmed, it can"

	page "grow back fully"
	next "even if it is"
	next "chopped to bits"
	dex

_StarmieDexEntry::
	text "The center section"
	next "is named the core."
	next "People think it"

	page "is communicating"
	next "when it glows in"
	next "7 colors"
	dex

_MrMimeDexEntry::
	text "Always practices"
	next "its pantomime act."
	next "It makes enemies"

	page "believe something"
	next "exists that"
	next "really doesn't"
	dex

_ScytherDexEntry::
	text "Leaps out of tall"
	next "grass and slices"
	next "prey with its"

	page "scythes. The move-"
	next "ment looks like"
	next "that of a ninja"
	dex

_JynxDexEntry::
	text "Appears to move"
	next "to a rhythm of"
	next "its own, as if it"

	page "were dancing. It"
	next "wiggles its hips"
	next "as it walks"
	dex

_ElectabuzzDexEntry::
	text "If a major power"
	next "outage occurs, it"
	next "is certain that"

	page "this #MON has"
	next "eaten electricity"
	next "at a power plant"
	dex

_MagmarDexEntry::
	text "Born in an active"
	next "volcano. Its body"
	next "is always cloaked"

	page "in flames, so it"
	next "looks like a big"
	next "ball of fire"
	dex

_PinsirDexEntry::
	text "Grips its prey in"
	next "its pincers and"
	next "squeezes hard! It"

	page "can't move if it's"
	next "cold, so it lives"
	next "in warm places"
	dex

_TaurosDexEntry::
	text "A rowdy #MON"
	next "with a lot of"
	next "stamina. Once"

	page "running, it won't"
	next "stop until it hits"
	next "something"
	dex

_MagikarpDexEntry::
	text "Famous for being"
	next "very unreliable."
	next "It can be found"

	page "swimming in seas,"
	next "lakes, rivers and"
	next "shallow puddles"
	dex

_GyaradosDexEntry::
	text "Brutally vicious"
	next "and enormously"
	next "destructive."

	page "Known for totally"
	next "destroying cities"
	next "in ancient times"
	dex

_LaprasDexEntry::
	text "A gentle soul that"
	next "can read the minds"
	next "of people. It can"

	page "ferry people"
	next "across the sea on"
	next "its back"
	dex

_DittoDexEntry::
	text "When it spots an"
	next "enemy, its body"
	next "transfigures into"

	page "an almost perfect"
	next "copy of its oppo-"
	next "nent"
	dex

_EeveeDexEntry::
	text "Its genetic code"
	next "is unstable, so it"
	next "could evolve in"

	page "a variety of ways."
	next "There are only a"
	next "few alive"
	dex

_VaporeonDexEntry::
	text "Its cell structure"
	next "is similar to"
	next "water molecules."

	page "It will melt away"
	next "and become invis-"
	next "ible in water"
	dex

_JolteonDexEntry::
	text "A sensitive #-"
	next "MON that easily"
	next "becomes sad or"

	page "angry. Every time"
	next "its mood changes,"
	next "it charges power"
	dex

_FlareonDexEntry::
	text "It has a flame"
	next "chamber inside its"
	next "body. It inhales,"

	page "then blows out"
	next "fire that is over"
	next "3,000F degrees"
	dex

_PorygonDexEntry::
	text "The only #MON"
	next "people anticipate"
	next "can fly into"

	page "space. None has"
	next "managed the feat"
	next "yet, however"
	dex

_OmanyteDexEntry::
	text "An ancient #MON"
	next "that was recovered"
	next "from a fossil. It"

	page "swims by cleverly"
	next "twisting its 10"
	next "tentacles about"
	dex

_OmastarDexEntry::
	text "Sharp beaks ring"
	next "its mouth. Its"
	next "shell was too big"

	page "for it to move"
	next "freely, so it"
	next "became extinct"
	dex

_KabutoDexEntry::
	text "A #MON that was"
	next "recovered from a"
	next "fossil. It uses"

	page "the eyes on its"
	next "back while hiding"
	next "on the sea floor"
	dex

_KabutopsDexEntry::
	text "A slim and fast"
	next "swimmer. It slices"
	next "its prey with its"

	page "sharp sickles and"
	next "drinks the body"
	next "fluids"
	dex

_AerodactylDexEntry::
	text "A savage #MON"
	next "that died out in"
	next "ancient times. It"

	page "was resurrected"
	next "using DNA taken"
	next "from amber"
	dex

_SnorlaxDexEntry::
	text "Will eat anything,"
	next "even if the food"
	next "happens to be a"

	page "little moldy. It"
	next "never gets an"
	next "upset stomach"
	dex

_ArticunoDexEntry::
	text "A legendary bird"
	next "#MON. It"
	next "freezes water"

	page "that is contained"
	next "in winter air and"
	next "makes it snow"
	dex

_ZapdosDexEntry::
	text "This legendary"
	next "bird #MON is"
	next "said to appear"

	page "when the sky turns"
	next "dark and lightning"
	next "showers down"
	dex

_MoltresDexEntry::
	text "A legendary bird"
	next "#MON. As it"
	next "flaps its flaming"

	page "wings, even the"
	next "night sky will"
	next "turn red"
	dex

_DratiniDexEntry::
	text "The existence of"
	next "this mythical"
	next "#MON was only"

	page "recently confirmed"
	next "by a fisherman"
	next "who caught one"
	dex

_DragonairDexEntry::
	text "According to a"
	next "witness, its body"
	next "was surrounded by"

	page "a strange aura"
	next "that gave it a"
	next "mystical look"
	dex

_DragoniteDexEntry::
	text "It is said that"
	next "this #MON lives"
	next "somewhere in the"

	page "sea and that it"
	next "flies. However, it"
	next "is only a rumor"
	dex

_MewtwoDexEntry::
	text "Its DNA is almost"
	next "the same as MEW's."
	next "However, its size"

	page "and disposition"
	next "are vastly dif-"
	next "ferent"
	dex

_MewDexEntry::
	text "When viewed"
	next "through a micro-"
	next "scope, this"

	page "#MON's short,"
	next "fine, delicate"
	next "hair can be seen"
	dex