-
Notifications
You must be signed in to change notification settings - Fork 2.8k
/
Copy pathpokedex_text.h
2321 lines (1935 loc) · 82.9 KB
/
pokedex_text.h
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
const u8 gDummyPokedexText[] = _(
"This is a newly discovered POKéMON.\n"
"It is currently under investigation.\n"
"No detailed information is available\n"
"at this time.");
const u8 gBulbasaurPokedexText[] = _(
"BULBASAUR can be seen napping in bright\n"
"sunlight. There is a seed on its back.\n"
"By soaking up the sun's rays, the seed\n"
"grows progressively larger.");
const u8 gIvysaurPokedexText[] = _(
"To support its bulb, IVYSAUR's legs\n"
"grow sturdy. If it spends more time lying in\n"
"the sunlight, the bud will soon bloom into\n"
"a large flower.");
const u8 gVenusaurPokedexText[] = _(
"VENUSAUR's flower is said to take on vivid\n"
"colors if it gets plenty of nutrition and\n"
"sunlight. The flower's aroma soothes the\n"
"emotions of people.");
const u8 gCharmanderPokedexText[] = _(
"The flame that burns at the tip of its\n"
"tail is an indication of its emotions.\n"
"The flame wavers when CHARMANDER is\n"
"happy, and blazes when it is enraged.");
const u8 gCharmeleonPokedexText[] = _(
"Without pity, its sharp claws destroy foes.\n"
"If it encounters a strong enemy, it\n"
"becomes agitated, and the flame on its\n"
"tail flares with a bluish white color.");
const u8 gCharizardPokedexText[] = _(
"A CHARIZARD flies about in search of\n"
"strong opponents. It breathes intense\n"
"flames that can melt any material. However,\n"
"it will never torch a weaker foe.");
const u8 gSquirtlePokedexText[] = _(
"Its shell is not just for protection.\n"
"Its rounded shape and the grooves on its\n"
"surface minimize resistance in water,\n"
"enabling SQUIRTLE to swim at high speeds.");
const u8 gWartortlePokedexText[] = _(
"Its large tail is covered with rich, thick\n"
"fur that deepens in color with age.\n"
"The scratches on its shell are evidence\n"
"of this POKéMON's toughness in battle.");
const u8 gBlastoisePokedexText[] = _(
"The waterspouts that protrude from its\n"
"shell are highly accurate. Their bullets of\n"
"water can precisely nail tin cans from\n"
"a distance of over 160 feet.");
const u8 gCaterpiePokedexText[] = _(
"Its voracious appetite compels it to\n"
"devour leaves bigger than itself without\n"
"hesitation. It releases a terribly strong\n"
"odor from its antennae.");
const u8 gMetapodPokedexText[] = _(
"Its shell is as hard as an iron slab.\n"
"A METAPOD does not move very much\n"
"because it is preparing its soft innards\n"
"for evolution inside the shell.");
const u8 gButterfreePokedexText[] = _(
"It has a superior ability to search for\n"
"delicious honey from flowers. It can seek,\n"
"extract, and carry honey from flowers\n"
"blooming over six miles away.");
const u8 gWeedlePokedexText[] = _(
"A WEEDLE has an extremely acute sense\n"
"of smell. It distinguishes its favorite\n"
"kinds of leaves from those it dislikes by\n"
"sniffing with its big red proboscis (nose).");
const u8 gKakunaPokedexText[] = _(
"It remains virtually immobile while it\n"
"clings to a tree. However, on the inside,\n"
"it busily prepares for evolution. This is\n"
"evident from how hot its shell becomes.");
const u8 gBeedrillPokedexText[] = _(
"A BEEDRILL is extremely territorial.\n"
"For safety reasons, no one should \n"
"ever approach its nest. If angered,\n"
"they will attack in a swarm.");
const u8 gPidgeyPokedexText[] = _(
"It has an extremely sharp sense of\n"
"direction. It can unerringly return home to\n"
"its nest, however far it may be removed\n"
"from its familiar surroundings.");
const u8 gPidgeottoPokedexText[] = _(
"This POKéMON flies around, patrolling its\n"
"large territory. If its living space is\n"
"violated, it shows no mercy in thoroughly\n"
"punishing the foe with its sharp claws.");
const u8 gPidgeotPokedexText[] = _(
"This POKéMON has gorgeous, glossy\n"
"feathers. Many TRAINERS are so captivated\n"
"by the beautiful feathers on its head that\n"
"they choose PIDGEOT as their POKéMON.");
const u8 gRattataPokedexText[] = _(
"A RATTATA is cautious in the extreme.\n"
"Even while it is asleep, it constantly\n"
"moves its ears and listens for danger.\n"
"It will make its nest anywhere.");
const u8 gRaticatePokedexText[] = _(
"A RATICATE's sturdy fangs grow steadily.\n"
"To keep them ground down, it gnaws on\n"
"rocks and logs. It may even chew on the\n"
"walls of houses.");
const u8 gSpearowPokedexText[] = _(
"Its loud cry can be heard over half a mile\n"
"away. If its high, keening cry is heard\n"
"echoing all around, it is a sign that they\n"
"are warning each other of danger.");
const u8 gFearowPokedexText[] = _(
"Its long neck and elongated beak are\n"
"ideal for catching prey in soil or water.\n"
"It deftly moves this extended and skinny\n"
"beak to pluck prey.");
const u8 gEkansPokedexText[] = _(
"An EKANS curls itself up in a spiral while\n"
"it rests. This position allows it to quickly\n"
"respond to an enemy from any direction\n"
"with a threat from its upraised head.");
const u8 gArbokPokedexText[] = _(
"This POKéMON has a terrifically strong\n"
"constricting power. It can even flatten\n"
"steel oil drums. Once it wraps its body\n"
"around its foe, escaping is impossible.");
const u8 gPikachuPokedexText[] = _(
"It stores electricity in the electric sacs\n"
"on its cheeks. When it releases pent-up\n"
"energy in a burst, the electric power is\n"
"equal to a lightning bolt.");
const u8 gRaichuPokedexText[] = _(
"If it stores too much electricity, its\n"
"behavior turns aggressive. To avoid this,\n"
"it occasionally discharges excess energy\n"
"and calms itself down.");
const u8 gSandshrewPokedexText[] = _(
"When it curls up in a ball, it can make any\n"
"attack bounce off harmlessly. Its hide has\n"
"turned tough and solid as a result of\n"
"living in the desert.");
const u8 gSandslashPokedexText[] = _(
"It curls up in a ball to protect itself from\n"
"enemy attacks. It also curls up to prevent\n"
"heatstroke during the daytime when\n"
"temperatures rise sharply.");
const u8 gNidoranFPokedexText[] = _(
"Its highly toxic barbs are thought to have\n"
"developed as protection for this small-\n"
"bodied POKéMON. When enraged, it releases\n"
"a horrible toxin from its horn.");
const u8 gNidorinaPokedexText[] = _(
"When it is with its friends or\n"
"family, its barbs are tucked away to\n"
"prevent injury. It appears to become\n"
"nervous if separated from the others.");
const u8 gNidoqueenPokedexText[] = _(
"It is adept at sending foes flying with\n"
"harsh tackles using its tough, scaly body.\n"
"This POKéMON is at its strongest when\n"
"it is defending its young.");
const u8 gNidoranMPokedexText[] = _(
"The male NIDORAN has developed muscles\n"
"that freely move its ears in any direction.\n"
"Even the slightest sound does not escape\n"
"this POKéMON's notice.");
const u8 gNidorinoPokedexText[] = _(
"Its horn is harder than a diamond.\n"
"If it senses a hostile presence, all the\n"
"barbs on its back bristle up at once, and it\n"
"challenges the foe with all its might.");
const u8 gNidokingPokedexText[] = _(
"A NIDOKING's thick tail packs enormously\n"
"destructive power capable of toppling\n"
"a metal transmission tower. Once it goes\n"
"on a rampage, there is no stopping it.");
const u8 gClefairyPokedexText[] = _(
"On every night of a full moon, they come\n"
"out to play. When dawn arrives, the tired\n"
"CLEFAIRY go to sleep nestled up against\n"
"each other in deep and quiet mountains.");
const u8 gClefablePokedexText[] = _(
"A CLEFABLE uses its wings to skip lightly \n"
"as if it were flying. Its bouncy step\n"
"lets it even walk on water. On quiet,\n"
"moonlit nights, it strolls on lakes.");
const u8 gVulpixPokedexText[] = _(
"It can freely control fire, making fiery\n"
"orbs fly like will-o'-the-wisps. Just\n"
"before evolution, its six tails grow hot \n"
"as if on fire.");
const u8 gNinetalesPokedexText[] = _(
"It has long been said that each of the\n"
"nine tails embody an enchanted power.\n"
"A long-lived NINETALES will have fur that\n"
"shines like gold.");
const u8 gJigglypuffPokedexText[] = _(
"Nothing can avoid falling asleep hearing a\n"
"JIGGLYPUFF's song. The sound waves of its\n"
"singing voice match the brain waves of\n"
"someone in a deep sleep.");
const u8 gWigglytuffPokedexText[] = _(
"Its fur is the ultimate in luxuriousness.\n"
"Sleeping alongside a WIGGLYTUFF is simply\n"
"divine. Its body expands seemingly without\n"
"end when it inhales.");
const u8 gZubatPokedexText[] = _(
"While living in pitch-black caverns, their\n"
"eyes gradually grew shut and deprived\n"
"them of vision. They use ultrasonic waves\n"
"to detect obstacles.");
const u8 gGolbatPokedexText[] = _(
"Its fangs easily puncture even thick\n"
"animal hide. It loves to feast on the blood\n"
"of people and POKéMON. It flits about in\n"
"darkness and strikes from behind.");
const u8 gOddishPokedexText[] = _(
"This POKéMON grows by absorbing moonlight.\n"
"During the daytime, it buries itself in the\n"
"ground, leaving only its leaves exposed to\n"
"avoid detection by its enemies.");
const u8 gGloomPokedexText[] = _(
"A horribly noxious honey drools from its\n"
"mouth. One whiff of the honey can result\n"
"in memory loss. Some fans are said to\n"
"enjoy this overwhelming stink, however.");
const u8 gVileplumePokedexText[] = _(
"In seasons when it produces more pollen,\n"
"the air around a VILEPLUME turns yellow\n"
"with the powder as it walks. The pollen is\n"
"highly toxic and causes paralysis.");
const u8 gParasPokedexText[] = _(
"A PARAS has parasitic tochukaso\n"
"mushrooms growing on its back. They grow\n"
"by drawing nutrients from the host. They\n"
"are valued as a medicine for long life.");
const u8 gParasectPokedexText[] = _(
"PARASECT are known to infest the roots of\n"
"large trees en masse and drain nutrients.\n"
"When an infested tree dies, they move\n"
"onto another tree all at once.");
const u8 gVenonatPokedexText[] = _(
"Its coat of thin, stiff hair that covers\n"
"its entire body is said to have evolved\n"
"for protection. Its large eyes never fail\n"
"to spot even miniscule prey.");
const u8 gVenomothPokedexText[] = _(
"VENOMOTH are nocturnal--they only are\n"
"active at night. Their favorite prey are\n"
"insects that gather around streetlights,\n"
"attracted by the light in the darkness.");
const u8 gDiglettPokedexText[] = _(
"DIGLETT are raised in most farms.\n"
"The reason is simple--wherever they\n"
"burrow, the soil is left perfectly tilled\n"
"for growing delicious crops.");
const u8 gDugtrioPokedexText[] = _(
"Because the triplets originally split from\n"
"one body, they think exactly alike.\n"
"They work cooperatively to burrow\n"
"endlessly through the ground.");
const u8 gMeowthPokedexText[] = _(
"MEOWTH withdraw their sharp claws into\n"
"their paws to silently sneak about.\n"
"For some reason, this POKéMON loves\n"
"shiny coins that glitter with light.");
const u8 gPersianPokedexText[] = _(
"A PERSIAN's six bold whiskers sense air\n"
"movements to determine what is in its\n"
"vicinity. It becomes docile if grabbed\n"
"by the whiskers.");
const u8 gPsyduckPokedexText[] = _(
"When its headache intensifies, it starts\n"
"using strange powers. However, it has no\n"
"recollection of its powers, so it always\n"
"looks befuddled and bewildered.");
const u8 gGolduckPokedexText[] = _(
"A GOLDUCK is an adept swimmer.\n"
"It sometimes joins competitive swimmers\n"
"in training. It uses psychic powers when\n"
"its forehead shimmers with light.");
const u8 gMankeyPokedexText[] = _(
"When it starts shaking and its nasal\n"
"breathing turns rough, it's a sure sign\n"
"of anger. However, since this happens\n"
"instantly, there is no time to flee.");
const u8 gPrimeapePokedexText[] = _(
"When it becomes furious, its blood\n"
"circulation becomes more robust, and\n"
"its muscles are made stronger. But it\n"
"also becomes much less intelligent.");
const u8 gGrowlithePokedexText[] = _(
"Its superb sense of smell ensures that\n"
"this POKéMON won't forget any scent,\n"
"no matter what. It uses its sense of smell\n"
"to detect the emotions of others.");
const u8 gArcaninePokedexText[] = _(
"This fleet-footed POKéMON is said to run\n"
"over 6,200 miles in a single day and night.\n"
"The fire that blazes wildly within its body\n"
"is its source of power.");
const u8 gPoliwagPokedexText[] = _(
"It is possible to see this POKéMON's spiral\n"
"innards right through its thin skin.\n"
"However, the skin is also very flexible.\n"
"Even sharp fangs bounce right off it.");
const u8 gPoliwhirlPokedexText[] = _(
"Its body surface is always wet and slick\n"
"with an oily fluid. Because of this greasy\n"
"covering, it can easily slip and slide out\n"
"of the clutches of any enemy in battle.");
const u8 gPoliwrathPokedexText[] = _(
"Its highly developed muscles never grow\n"
"fatigued, however much it exercises.\n"
"This POKéMON can swim back and forth\n"
"across the Pacific Ocean without effort.");
const u8 gAbraPokedexText[] = _(
"A POKéMON that sleeps 18 hours a day.\n"
"Observation revealed that it uses\n"
"TELEPORT to change its location once\n"
"every hour.");
const u8 gKadabraPokedexText[] = _(
"It is rumored that a boy with psychic\n"
"abilities suddenly transformed into\n"
"KADABRA while he was assisting research\n"
"into extrasensory powers.");
const u8 gAlakazamPokedexText[] = _(
"While it has strong psychic abilities and\n"
"high intelligence, an ALAKAZAM's muscles\n"
"are very weak. It uses psychic power to\n"
"move its body.");
const u8 gMachopPokedexText[] = _(
"It continually undertakes strenuous\n"
"training to master all forms of martial\n"
"arts. Its strength lets it easily hoist\n"
"a sumo wrestler onto its shoulders.");
const u8 gMachokePokedexText[] = _(
"A belt is worn by a MACHOKE to keep its\n"
"overwhelming power under control.\n"
"Because it is so dangerous, no one has\n"
"ever removed the belt.");
const u8 gMachampPokedexText[] = _(
"It is impossible to defend against punches\n"
"and chops doled out by its four arms.\n"
"Its fighting spirit flares up when it faces\n"
"a tough opponent.");
const u8 gBellsproutPokedexText[] = _(
"A BELLSPROUT's thin and flexible body lets\n"
"it bend and sway to avoid any attack,\n"
"however strong it may be. From its mouth,\n"
"it leaks a fluid that melts even iron.");
const u8 gWeepinbellPokedexText[] = _(
"At night, a WEEPINBELL hangs on to a tree\n"
"branch with its hooked rear and sleeps.\n"
"If it moves around in its sleep, it may\n"
"wake up to find itself on the ground.");
const u8 gVictreebelPokedexText[] = _(
"The long vine extending from its head is\n"
"waved about as if it were a living thing to\n"
"attract prey. When an unsuspecting victim\n"
"approaches, it is swallowed whole.");
const u8 gTentacoolPokedexText[] = _(
"Its body is almost entirely composed of\n"
"water. It ensnares its foe with its two\n"
"long tentacles, then stabs with the poison\n"
"stingers at their tips.");
const u8 gTentacruelPokedexText[] = _(
"It lives in complex rock formations on\n"
"the ocean floor and traps prey using its\n"
"80 tentacles. Its red orbs glow when it\n"
"grows excited or agitated.");
const u8 gGeodudePokedexText[] = _(
"It climbs mountain paths using only the\n"
"power of its arms. Because they look just\n"
"like boulders lining paths, hikers may step\n"
"on them without noticing.");
const u8 gGravelerPokedexText[] = _(
"They descend from mountains by tumbling\n"
"down steep slopes. They are so brutal,\n"
"they smash aside obstructing trees and\n"
"massive boulders with thunderous tackles.");
const u8 gGolemPokedexText[] = _(
"It is said to live in volcanic craters\n"
"on mountain peaks. Once a year, it sheds\n"
"its hide and grows larger. The shed hide\n"
"crumbles and returns to the soil.");
const u8 gPonytaPokedexText[] = _(
"A PONYTA is very weak at birth. It can\n"
"barely stand up. Its legs become stronger\n"
"as it stumbles and falls while trying to\n"
"keep up with its parent.");
const u8 gRapidashPokedexText[] = _(
"It usually canters casually in the fields\n"
"and plains. But once a RAPIDASH turns\n"
"serious, its fiery manes flare and blaze\n"
"as it gallops its way up to 150 mph.");
const u8 gSlowpokePokedexText[] = _(
"It catches prey by dipping its tail in\n"
"water at the side of a river. But it often\n"
"forgets what it is doing and spends entire\n"
"days just loafing at water's edge.");
const u8 gSlowbroPokedexText[] = _(
"Its tail has a SHELLDER firmly attached\n"
"with a bite. As a result, the tail can't be\n"
"used for fishing anymore. This forces it\n"
"to reluctantly swim and catch prey.");
const u8 gMagnemitePokedexText[] = _(
"The units at its sides are extremely\n"
"powerful magnets. They generate enough\n"
"magnetism to draw in iron objects from\n"
"over 300 feet away.");
const u8 gMagnetonPokedexText[] = _(
"It is actually three MAGNEMITE linked\n"
"by magnetism. It generates powerful radio\n"
"waves that raise temperatures by 3.6\n"
"degrees F within a 3,300-foot radius.");
const u8 gFarfetchdPokedexText[] = _(
"It is always seen with a stick from a plant.\n"
"Apparently, there are good sticks and bad\n"
"sticks. This POKéMON occasionally fights\n"
"with others over choice sticks.");
const u8 gDoduoPokedexText[] = _(
"Even while eating or sleeping, one of the\n"
"heads remains always vigilant for any sign\n"
"of danger. When threatened, it flees at\n"
"over 60 miles per hour.");
const u8 gDodrioPokedexText[] = _(
"A peculiar POKéMON species with three\n"
"heads. It vigorously races across grassy\n"
"plains even in arid seasons with little\n"
"rainfall.");
const u8 gSeelPokedexText[] = _(
"SEEL hunt for prey in frigid, ice-covered\n"
"seas. When it needs to breathe, it punches\n"
"a hole through the ice with the sharply\n"
"protruding section of its head.");
const u8 gDewgongPokedexText[] = _(
"It loves to snooze on bitterly cold ice.\n"
"The sight of this POKéMON sleeping on\n"
"a glacier was mistakenly thought to be\n"
"a mermaid by a mariner long ago.");
const u8 gGrimerPokedexText[] = _(
"Born from polluted sludge in the sea,\n"
"GRIMER's favorite food is anything filthy.\n"
"They feed on wastewater pumped out from\n"
"factories.");
const u8 gMukPokedexText[] = _(
"It prefers warm and humid habitats.\n"
"In the summertime, the toxic substances\n"
"in its body intensify, making MUK reek like\n"
"putrid kitchen garbage.");
const u8 gShellderPokedexText[] = _(
"At night, it burrows a hole in the seafloor\n"
"with its broad tongue to make a place to\n"
"sleep. While asleep, it closes its shell,\n"
"but leaves its tongue hanging out.");
const u8 gCloysterPokedexText[] = _(
"It swims in the sea by swallowing water,\n"
"then jetting it out toward the rear.\n"
"The CLOYSTER shoots spikes from its\n"
"shell using the same system.");
const u8 gGastlyPokedexText[] = _(
"When exposed to a strong wind, a GASTLY's\n"
"gaseous body quickly dwindles away.\n"
"They cluster under the eaves of houses\n"
"to escape the ravages of wind.");
const u8 gHaunterPokedexText[] = _(
"If a HAUNTER beckons you while it is\n"
"floating in darkness, don't approach it.\n"
"This POKéMON will try to lick you with its\n"
"tongue and steal your life away.");
const u8 gGengarPokedexText[] = _(
"Deep in the night, your shadow cast by\n"
"a streetlight may suddenly overtake you.\n"
"It is actually a GENGAR running past\n"
"you, pretending to be your shadow.");
const u8 gOnixPokedexText[] = _(
"There is a magnet in its brain that\n"
"prevents an ONIX from losing direction\n"
"while tunneling. As it grows older, its body\n"
"becomes steadily rounder and smoother.");
const u8 gDrowzeePokedexText[] = _(
"If your nose becomes itchy while you are\n"
"sleeping, it's a sure sign that a DROWZEE is\n"
"standing above your pillow and trying to\n"
"eat your dream through your nostrils.");
const u8 gHypnoPokedexText[] = _(
"The arcing movement and glitter of the\n"
"pendulum in a HYPNO's hand lull the foe\n"
"into deep hypnosis. While searching for\n"
"prey, it polishes the pendulum.");
const u8 gKrabbyPokedexText[] = _(
"KRABBY live in holes dug into beaches.\n"
"On sandy shores with little in the way\n"
"of food, they can be seen squabbling with\n"
"each other over territory.");
const u8 gKinglerPokedexText[] = _(
"It waves its huge, oversized claw in the\n"
"air to communicate with others.\n"
"But since the claw is so heavy, this\n"
"POKéMON quickly tires.");
const u8 gVoltorbPokedexText[] = _(
"It bears an uncanny and unexplained\n"
"resemblance to a POKé BALL. Because it\n"
"explodes at the slightest shock, even\n"
"veteran TRAINERS treat it with caution.");
const u8 gElectrodePokedexText[] = _(
"They appear in great numbers at electric\n"
"power plants. Because they feed on\n"
"electricity, they cause massive and\n"
"chaotic blackouts in nearby cities.");
const u8 gExeggcutePokedexText[] = _(
"It consists of six eggs that care for each\n"
"other. The eggs attract each other and\n"
"spin around. When cracks increasingly\n"
"appear, it is close to evolution.");
const u8 gExeggutorPokedexText[] = _(
"Originally from the tropics, EXEGGUTOR's\n"
"heads grow larger from exposure to strong\n"
"sunlight. It is said that when the heads\n"
"fall, they group to form an EXEGGCUTE.");
const u8 gCubonePokedexText[] = _(
"It pines for the mother it will never see\n"
"again. Seeing a likeness of its mother in\n"
"the full moon, it cries. The stains on the\n"
"skull it wears are from its tears.");
const u8 gMarowakPokedexText[] = _(
"A MAROWAK is the evolved form of a CUBONE\n"
"that has grown tough by overcoming the\n"
"grief of losing its mother. Its tempered\n"
"and hardened spirit is not easily broken.");
const u8 gHitmonleePokedexText[] = _(
"Its legs freely stretch and contract.\n"
"Using these springlike limbs, it bowls over\n"
"foes with devastating kicks. After battle,\n"
"it rubs down its tired legs.");
const u8 gHitmonchanPokedexText[] = _(
"A HITMONCHAN is said to possess the\n"
"spirit of a boxer who aimed to become the\n"
"world champion. Having an indomitable\n"
"spirit means that it will never give up.");
const u8 gLickitungPokedexText[] = _(
"Whenever it sees something unfamiliar,\n"
"it always licks the object because it\n"
"memorizes things by texture and taste.\n"
"It is somewhat put off by sour things.");
const u8 gKoffingPokedexText[] = _(
"Getting up close to a KOFFING will give\n"
"you a chance to observe, through its thin\n"
"skin, the toxic gases swirling inside. It\n"
"blows up at the slightest stimulation.");
const u8 gWeezingPokedexText[] = _(
"By diluting its toxic gases with a special\n"
"process, the highest grade of perfume can\n"
"be extracted. To WEEZING, gases emanating\n"
"from garbage are the ultimate feast.");
const u8 gRhyhornPokedexText[] = _(
"Once it starts running, it doesn't stop.\n"
"Its tiny brain makes it so stupid that it\n"
"can't remember why it started running in\n"
"the first place.");
const u8 gRhydonPokedexText[] = _(
"Its horn, which rotates like a drill,\n"
"destroys tall buildings with one strike.\n"
"It stands on its hind legs, and its brain\n"
"is well developed.");
const u8 gChanseyPokedexText[] = _(
"CHANSEY lay nutritionally excellent eggs\n"
"every day. The eggs are so delicious, they\n"
"are eagerly devoured by even those people\n"
"who have lost their appetite.");
const u8 gTangelaPokedexText[] = _(
"Its vines snap off easily and painlessly\n"
"if they are grabbed, allowing it to make a\n"
"quick getaway. The lost vines are replaced\n"
"by new growth the very next day.");
const u8 gKangaskhanPokedexText[] = _(
"If you come across a young KANGASKHAN\n"
"playing by itself, never try to catch it.\n"
"The baby's parent is sure to be in the area,\n"
"and it will become violently enraged.");
const u8 gHorseaPokedexText[] = _(
"By cleverly flicking the fins on its back\n"
"side to side, it moves in any direction\n"
"while facing forward. It spits ink to\n"
"escape if it senses danger.");
const u8 gSeadraPokedexText[] = _(
"The poisonous barbs all over its body are\n"
"highly valued as ingredients for making\n"
"traditional herbal medicine. It shows no\n"
"mercy to anything approaching its nest.");
const u8 gGoldeenPokedexText[] = _(
"In the springtime, schools of GOLDEEN\n"
"can be seen swimming up falls and rivers.\n"
"It metes out staggering damage with its\n"
"single horn.");
const u8 gSeakingPokedexText[] = _(
"It punches holes in boulders on stream-\n"
"beds. This is a clever innovation that\n"
"prevents its eggs from being attacked or\n"
"washed away by the current.");
const u8 gStaryuPokedexText[] = _(
"It gathers with others in the night and\n"
"makes its red core glow on and off with\n"
"the twinkling stars. It can regenerate\n"
"limbs if they are severed from its body.");
const u8 gStarmiePokedexText[] = _(
"People in ancient times imagined that\n"
"STARMIE were transformed from the\n"
"reflections of stars that twinkled on\n"
"gentle waves at night.");
const u8 gMrMimePokedexText[] = _(
"A MR. MIME is a master of pantomime. It can\n"
"convince others that something unseeable\n"
"actually exists. Once believed, the\n"
"imaginary object does become real.");
const u8 gScytherPokedexText[] = _(
"Its blindingly fast speed adds to the\n"
"sharpness of its twin forearm scythes.\n"
"The scythes can slice through thick logs\n"
"in one wicked stroke.");
const u8 gJynxPokedexText[] = _(
"A JYNX sashays rhythmically as if it were\n"
"dancing. Its motions are so bouncingly\n"
"alluring, people seeing it are compelled to\n"
"shake their hips without noticing.");
const u8 gElectabuzzPokedexText[] = _(
"When a storm approaches, it competes with\n"
"others to scale heights that are likely to\n"
"be stricken by lightning. Some towns use\n"
"ELECTABUZZ in place of lightning rods.");
const u8 gMagmarPokedexText[] = _(
"In battle, it blows out intense flames from\n"
"all over its body to intimidate its foe.\n"
"These fiery bursts create heat waves that\n"
"ignite grass and trees in the area.");
const u8 gPinsirPokedexText[] = _(
"Their pincers are strong enough to\n"
"shatter thick logs. Because they dislike\n"
"cold, PINSIR burrow and sleep under\n"
"the ground on chilly nights.");
const u8 gTaurosPokedexText[] = _(
"It is not satisfied unless it is rampaging\n"
"at all times. If there is no opponent for\n"
"TAUROS to battle, it will charge at thick\n"
"trees and knock them down to calm itself.");
const u8 gMagikarpPokedexText[] = _(
"Its swimming muscles are weak, so it is\n"
"easily washed away by currents. In places\n"
"where water pools, you can see many\n"
"MAGIKARP deposited there by the flow.");
const u8 gGyaradosPokedexText[] = _(
"It is an extremely vicious and violent\n"
"POKéMON. When humans begin to fight,\n"
"it will appear and burn everything to the\n"
"ground with intensely hot flames.");
const u8 gLaprasPokedexText[] = _(
"People have driven LAPRAS almost to the\n"
"point of extinction. In the evenings,\n"
"it is said to sing plaintively as it seeks\n"
"what few others of its kind still remain.");
const u8 gDittoPokedexText[] = _(
"A DITTO rearranges its cell structure to\n"
"transform itself. However, if it tries to\n"
"change based on its memory, it will get\n"
"details wrong.");
const u8 gEeveePokedexText[] = _(
"An EEVEE has an unstable genetic makeup\n"
"that suddenly mutates due to its\n"
"environment. Radiation from various\n"
"STONES causes this POKéMON to evolve.");
const u8 gVaporeonPokedexText[] = _(
"VAPOREON underwent a spontaneous\n"
"mutation and grew fins and gills that\n"
"allow them to live underwater. They have\n"
"the ability to freely control water.");
const u8 gJolteonPokedexText[] = _(
"Its cells generate weak power that is\n"
"amplified by its fur's static electricity\n"
"to drop thunderbolts. The bristling fur is\n"
"made of electrically charged needles.");
const u8 gFlareonPokedexText[] = _(
"FLAREON's fluffy fur releases heat into\n"
"the air so that its body does not get\n"
"excessively hot. Its body temperature can\n"
"rise to a maximum of 1,650 degrees F.");
const u8 gPorygonPokedexText[] = _(
"It is capable of reverting itself entirely\n"
"back to program data in order to enter\n"
"cyberspace. A PORYGON is copy-\n"
"protected so it cannot be duplicated.");
const u8 gOmanytePokedexText[] = _(
"One of the ancient and long-since-extinct\n"
"POKéMON that have been regenerated\n"
"from fossils by humans. If attacked,\n"
"it withdraws into its hard shell.");
const u8 gOmastarPokedexText[] = _(
"An OMASTAR uses its tentacles to capture\n"
"its prey. It is believed to have become\n"
"extinct because its shell grew too large,\n"
"making its movements slow and ponderous.");
const u8 gKabutoPokedexText[] = _(
"It is a POKéMON that has been regenerated\n"
"from a fossil. However, in rare cases, living\n"
"examples have been discovered. KABUTO\n"
"have not changed for 300 million years.");
const u8 gKabutopsPokedexText[] = _(
"KABUTOPS once swam underwater to hunt \n"
"for prey. It was apparently evolving from\n"
"being a water dweller to living on land as\n"
"evident from changes in its gills and legs.");
const u8 gAerodactylPokedexText[] = _(
"AERODACTYL is a POKéMON from the age\n"
"of dinosaurs. It was regenerated from DNA\n"
"extracted from amber. It is imagined to\n"
"have been the king of the skies.");
const u8 gSnorlaxPokedexText[] = _(
"SNORLAX's typical day consists of nothing\n"
"more than eating and sleeping. It is such\n"
"a docile POKéMON that there are children\n"
"who use its big belly as a place to play.");
const u8 gArticunoPokedexText[] = _(
"ARTICUNO is a legendary bird POKéMON that\n"
"can control ice. The flapping of its wings\n"
"chills the air. As a result, it is said that\n"
"when this POKéMON flies, snow will fall.");
const u8 gZapdosPokedexText[] = _(
"ZAPDOS is a legendary bird POKéMON that\n"
"has the ability to control electricity.\n"
"It usually lives in thunderclouds. It gains\n"
"power if it is stricken by lightning bolts.");
const u8 gMoltresPokedexText[] = _(
"MOLTRES is a legendary bird POKéMON\n"
"that can control fire. If injured, it is said\n"
"to dip its body in the molten magma of\n"
"a volcano to burn and heal itself.");
const u8 gDratiniPokedexText[] = _(
"A DRATINI continually molts and sloughs\n"
"off its old skin. It does so because the\n"
"life energy within its body steadily builds\n"
"to reach uncontrollable levels.");
const u8 gDragonairPokedexText[] = _(
"A DRAGONAIR stores an enormous amount of\n"
"energy inside its body. It is said to alter\n"
"the weather around it by loosing energy\n"
"from the crystals on its neck and tail.");
const u8 gDragonitePokedexText[] = _(
"It can circle the globe in just 16 hours.\n"
"It is a kindhearted POKéMON that leads\n"
"lost and foundering ships in a storm\n"
"to the safety of land.");
const u8 gMewtwoPokedexText[] = _(
"A POKéMON that was created by genetic\n"
"manipulation. However, even though the\n"
"scientific power of humans made its body,\n"
"they failed to give it a warm heart.");
const u8 gMewPokedexText[] = _(
"A MEW is said to possess the genes of all\n"
"POKéMON. It is capable of making itself\n"
"invisible at will, so it entirely avoids\n"
"notice even if it approaches people.");
const u8 gChikoritaPokedexText[] = _(
"It waves its leaf around to keep foes\n"
"at bay. However, a sweet fragrance also\n"
"wafts from the leaf, creating a friendly\n"
"atmosphere that becalms the battlers.");
const u8 gBayleefPokedexText[] = _(
"A BAYLEEF's neck is ringed by curled-up\n"
"leaves. Inside each leaf is a small tree\n"
"shoot. The fragrance of this shoot\n"
"makes people peppy.");
const u8 gMeganiumPokedexText[] = _(
"The fragrance of a MEGANIUM's flower\n"
"soothes and calms emotions. In battle,\n"
"it gives off more of its becalming scent\n"
"to blunt the foe's fighting spirit.");
const u8 gCyndaquilPokedexText[] = _(
"It flares flames from its back to protect\n"
"itself. The fire burns vigorously if the\n"
"POKéMON is angry. When it is tired,\n"
"it sputters with incomplete combustion.");
const u8 gQuilavaPokedexText[] = _(
"It intimidates foes with intense gusts of\n"
"flames and superheated air. Its quick\n"
"nimbleness lets it dodge attacks even\n"
"while scorching an enemy.");
const u8 gTyphlosionPokedexText[] = _(
"It can hide behind a shimmering heat haze\n"
"that it creates using its intense flames.\n"
"TYPHLOSION create blazing explosive\n"
"blasts that burn everything to cinders.");
const u8 gTotodilePokedexText[] = _(
"Despite its small body, TOTODILE's jaws\n"
"are very powerful. While it may think it is\n"
"just playfully nipping, its bite has enough\n"
"strength to cause serious injury.");
const u8 gCroconawPokedexText[] = _(
"Once its jaws clamp down on its foe, it will\n"
"absolutely not let go. Because the tips of\n"
"its fangs are forked back like fishhooks,\n"
"they become irremovably embedded.");
const u8 gFeraligatrPokedexText[] = _(
"It opens its huge mouth to intimidate\n"
"enemies. In battle, it runs using its thick\n"
"and powerful hind legs to charge the\n"
"foe with incredible speed.");
const u8 gSentretPokedexText[] = _(
"They take turns standing guard when it\n"
"is time to sleep. The sentry awakens the\n"
"others if it senses danger. If one becomes\n"
"separated, it turns sleepless with fear.");
const u8 gFurretPokedexText[] = _(
"A FURRET has a very slim build. When under\n"
"attack, it can squirm through narrow\n"
"spaces and get away. In spite of its short\n"
"limbs, it is very nimble and fleet.");
const u8 gHoothootPokedexText[] = _(
"It has an internal organ that senses\n"
"the earth's rotation. Using this special\n"
"organ, a HOOTHOOT begins hooting at\n"
"precisely the same time every day.");
const u8 gNoctowlPokedexText[] = _(
"It unfailingly catches prey in darkness.\n"
"NOCTOWL owe their success to superior\n"
"vision that allows them to see in minimal\n"
"light, and to their supple and silent wings.");
const u8 gLedybaPokedexText[] = _(
"LEDYBA communicate using a fluid that\n"
"they secrete from where the legs join the\n"
"body. They are said to convey feelings to\n"
"others by altering the fluid's scent.");
const u8 gLedianPokedexText[] = _(
"It is said that in lands with clean air,\n"
"where the stars fill the sky, there live\n"
"many LEDIAN. For good reason, they use\n"