forked from BuffelSaft/decomp_resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpokedex_text.h
4050 lines (3232 loc) · 256 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"
"No detailed information is available\n"
"at this time.");
const u8 gBulbasaurPokedexText[] = _(
"A strange seed was planted on\n"
"its back at birth. The plant\n"
"sprouts and grows with this Pokémon.");
const u8 gIvysaurPokedexText[] = _(
"There is a plant bulb on its back.\n"
"When it absorbs nutrients, the bulb is\n"
"said to blossom into a large flower.");
const u8 gVenusaurPokedexText[] = _(
"By spreading the broad petals of its\n"
"flower and catching the sun’s rays, it\n"
"fills its body with power.");
const u8 gCharmanderPokedexText[] = _(
"The flame on its tail indicates\n"
"Charmander’s life force. If it is healthy,\n"
"the flame burns brightly.");
const u8 gCharmeleonPokedexText[] = _(
"It lashes about with its tail to\n"
"knock down its foe. It then tears\n"
"up the fallen opponent with sharp claws.");
const u8 gCharizardPokedexText[] = _(
"When expelling a blast of superhot fire,\n"
"the red flame at the tip of its tail\n"
"burns more intensely.");
const u8 gSquirtlePokedexText[] = _(
"It shelters itself in its shell,\n"
"then strikes back with spouts of\n"
"water at every opportunity.");
const u8 gWartortlePokedexText[] = _(
"When tapped, this Pokémon will pull\n"
"in its head, but its tail will still\n"
"stick out a little bit.");
const u8 gBlastoisePokedexText[] = _(
"It crushes its foe under its heavy body\n"
"to cause fainting. In a pinch, it will\n"
"withdraw inside its shell.");
const u8 gCaterpiePokedexText[] = _(
"Perhaps because it would like to grow\n"
"up quickly, it has a voracious appetite,\n"
"eating a hundred leaves a day.");
const u8 gMetapodPokedexText[] = _(
"Its hard shell doesn’t crack a bit even\n"
"if Pikipek pecks at it, but it will\n"
"tip over, spilling out its insides.");
const u8 gButterfreePokedexText[] = _(
"Nectar from pretty flowers is its favorite\n"
"food. In fields of flowers, it has heated\n"
"battles with Cutiefly for territory.");
const u8 gWeedlePokedexText[] = _(
"Often found in forests and grasslands.\n"
"It has a sharp, toxic barb of around\n"
"two inches on top of its head.");
const u8 gKakunaPokedexText[] = _(
"Almost incapable of moving, this Pokémon\n"
"can only harden its shell to protect\n"
"itself when it is in danger.");
const u8 gBeedrillPokedexText[] = _(
"It has three poisonous stingers on its\n"
"forelegs and its tail. They are used\n"
"to jab its enemy repeatedly.");
const u8 gPidgeyPokedexText[] = _(
"A common sight in forests and woods.\n"
"It flaps its wings at ground level\n"
"to kick up blinding sand.");
const u8 gPidgeottoPokedexText[] = _(
"The claws on its feet are well developed.\n"
"It can carry prey such as an Exeggcute\n"
"to its nest over 60 miles away.");
const u8 gPidgeotPokedexText[] = _(
"When hunting, it skims the surface of\n"
"water at high speed to pick off\n"
"unwary prey such as Magikarp.");
const u8 gRattataPokedexText[] = _(
"This Pokémon is common but hazardous.\n"
"Its sharp incisors can easily cut\n"
"right through hard wood.");
const u8 gRaticatePokedexText[] = _(
"People say that it fled from its enemies\n"
"by using its small webbed hind feet to\n"
"swim from island to island in Alola.");
const u8 gSpearowPokedexText[] = _(
"Its reckless nature leads it to stand up\n"
"to others even large Pokémon if\n"
"it has to protect its territory.");
const u8 gFearowPokedexText[] = _(
"Carrying food through Fearow’s territory\n"
"is dangerous. It will snatch the food\n"
"away from you in a flash!");
const u8 gEkansPokedexText[] = _(
"By dislocating its jaw, it can swallow\n"
"prey larger than itself. After a meal,\n"
"it curls up and rests.");
const u8 gArbokPokedexText[] = _(
"The latest research has determined that\n"
"there are over 20 possible arrangements\n"
"of the patterns on its stomach.");
const u8 gPikachuPokedexText[] = _(
"A plan was recently announced\n"
"to gather many Pikachu and\n"
"make an electric power plant.");
const u8 gRaichuPokedexText[] = _(
"Because so many Trainers like the\n"
"way Pikachu looks, you don’t see\n"
"this Pokémon very often.");
const u8 gSandshrewPokedexText[] = _(
"It lives in areas of limited rainfall.\n"
"When danger approaches, it curls up into\n"
"a ball to protect its soft stomach.");
const u8 gSandslashPokedexText[] = _(
"Its claws and horns often break off. The\n"
"broken claws and horns can be used to\n"
"carve plows for tilling farm fields.");
const u8 gNidoranFPokedexText[] = _(
"Although small, its venomous barbs render\n"
"this Pokémon dangerous. The female has\n"
"smaller horns.");
const u8 gNidorinaPokedexText[] = _(
"The female has a gentle temperament. It\n"
"emits ultrasonic cries that have the power\n"
"to befuddle foes.");
const u8 gNidoqueenPokedexText[] = _(
"It uses its scaly, rugged body to\n"
"seal the entrance of its nest and\n"
"protect its young from predators.");
const u8 gNidoranMPokedexText[] = _(
"It scans its surroundings by raising\n"
"its ears out of the grass.\n"
"Its toxic horn is for protection.");
const u8 gNidorinoPokedexText[] = _(
"It raises its big ears to\n"
"check its surroundings. If it senses\n"
"anything, it attacks immediately.");
const u8 gNidokingPokedexText[] = _(
"It is recognized by its rock-hard hide\n"
"and its extended horn. Be careful with\n"
"the horn, as it contains venom.");
const u8 gClefairyPokedexText[] = _(
"They’re popular, but they’re rare.\n"
"Trainers who show them off recklessly\n"
"may be targeted by thieves.");
const u8 gClefablePokedexText[] = _(
"Some scientists believe that it gazes\n"
"intently at the sky on nights with a\n"
"full moon because it’s homesick.");
const u8 gVulpixPokedexText[] = _(
"Its beautiful fur and tails have made it\n"
"very popular. As it grows, its tails split\n"
"to form more tails.");
const u8 gNinetalesPokedexText[] = _(
"Legend has it that this\n"
"mystical Pokémon was formed when\n"
"nine saints coalesced into one.");
const u8 gJigglypuffPokedexText[] = _(
"The songs they sing are totally different\n"
"dependingon the region they live in.\n"
"Some even sound like they’re shouting!");
const u8 gWigglytuffPokedexText[] = _(
"Thanks to its bouncy body and fine fur,\n"
"this Pokémon is sought after. Holding one\n"
"in your arms while sleep feels great.");
const u8 gZubatPokedexText[] = _(
"It has no eyeballs, so it can’t\n"
"see. It checks its surroundings via the\n"
"ultrasonic waves it emits from its mouth.");
const u8 gGolbatPokedexText[] = _(
"Its thick fangs are hollow like straws,\n"
"making them unexpectedly fragile. These\n"
"fangs are specialized for sucking blood.");
const u8 gOddishPokedexText[] = _(
"During the day, it stays in the\n"
"cold underground to avoid the sun.\n"
"It grows by bathing in moonlight.");
const u8 gGloomPokedexText[] = _(
"Smells incredibly foul! However,\n"
"around one out of a thousand people\n"
"enjoy sniffing its nose-bending stink.");
const u8 gVileplumePokedexText[] = _(
"The larger its petals, the more toxic\n"
"pollen it contains. Its big head is heavy\n"
"and hard to hold up.");
const u8 gParasPokedexText[] = _(
"Whether it’s due to a lack of moisture or\n"
"a lack of nutrients, in Alola mushrooms\n"
"on Paras don’t grow up quite right.");
const u8 gParasectPokedexText[] = _(
"The large mushroom on its\n"
"back controls it. It often\n"
"fights over territory with Shiinotic.");
const u8 gVenonatPokedexText[] = _(
"Its big eyes are actually clusters of\n"
"tiny eyes. At night, its kind is\n"
"drawn by light.");
const u8 gVenomothPokedexText[] = _(
"The scales it scatters will paralyze\n"
"anyone who touches them, making that\n"
"person unable to stand.");
const u8 gDiglettPokedexText[] = _(
"It travels through tunnels that it digs\n"
"underground. It hates sunlight, so it\n"
"comes out only after the sun goes down.");
const u8 gDugtrioPokedexText[] = _(
"Dugtrio’s heads are sleek and smooth\n"
"and incredibly hard. It can dig\n"
"through any soil with its headbutts.");
const u8 gMeowthPokedexText[] = _(
"When visiting a junkyard, you may catch\n"
"sight of it having an intense fight\n"
"with Murkrow over shiny objects.");
const u8 gPersianPokedexText[] = _(
"This Pokémon is popular with rich people.\n"
"It’s also targeted by hunters who are\n"
"after the jewel in its forehead.");
const u8 gPsyduckPokedexText[] = _(
"Using psychokinesis gives it a headache,\n"
"so it normally passes the time spacing out\n"
"and doing as little as possible.");
const u8 gGolduckPokedexText[] = _(
"Even fast-swimming fish Pokémon can be\n"
"disabled by Golduck. It brings them\n"
"to a standstill and seizes them.");
const u8 gMankeyPokedexText[] = _(
"If one gets angry, all the others around\n"
"it will get angry, so silence is a rare\n"
"visitor in a troop of Mankey.");
const u8 gPrimeapePokedexText[] = _(
"It has been known to become so angry\n"
"that it dies as a result. Its face\n"
"looks peaceful in death, however.");
const u8 gGrowlithePokedexText[] = _(
"It has lived alongside humans since ages\n"
"ago. Its bones have been found in\n"
"excavations of ruins from the Stone Age.");
const u8 gArcaninePokedexText[] = _(
"Legends tell of its fighting\n"
"alongside a general and conquering\n"
"a whole country.");
const u8 gPoliwagPokedexText[] = _(
"It’s still not very good at walking.\n"
"Its Trainers should train this Pokémon to\n"
"walk every day.");
const u8 gPoliwhirlPokedexText[] = _(
"Its health suffers when its\n"
"skin dries out, so be\n"
"sure to moisturize it diligently.");
const u8 gPoliwrathPokedexText[] = _(
"It’s quite a gifted swimmer, even among\n"
"Water-type Pokémon, but it normally\n"
"spends its time on land.");
const u8 gAbraPokedexText[] = _(
"It uses various psychic powers even\n"
"while it’s sleeping, so you can’t\n"
"tell whether or not it’s awake.");
const u8 gKadabraPokedexText[] = _(
"It stares at a silver spoon to amplify\n"
" its psychic powers before it lets loose.\n"
"Apparently, gold spoons are no good.");
const u8 gAlakazamPokedexText[] = _(
"It is said to have an IQ of approximately\n"
"5000. Its overflowing psychokinetic\n"
"powers cause headaches to anyone nearby.");
const u8 gMachopPokedexText[] = _(
"It likes food that’s highly\n"
"nutritious because its instincts drive\n"
"it to build muscle efficiently.");
const u8 gMachokePokedexText[] = _(
"A popular motif for sculptures, its\n"
"incredibly well-shaped muscles have\n"
"captured the imagination of many artists.");
const u8 gMachampPokedexText[] = _(
"It grasps its opponents with its four arms\n"
"and twists them up in an intricate hold.\n"
"People call it the Machamp special.");
const u8 gBellsproutPokedexText[] = _(
"Even though its body is\n"
"extremely skinny, it is blindingly\n"
"fast when catching its prey.");
const u8 gWeepinbellPokedexText[] = _(
"The leafy parts act as cutters\n"
"for slashing foes. It spits a\n"
"fluid that dissolves everything.");
const u8 gVictreebelPokedexText[] = _(
"Said to live in huge colonies deep\n"
"in jungles, although no one has ever\n"
"returned from there.");
const u8 gTentacoolPokedexText[] = _(
"Its body is 0.99 water.\n"
"The remaining 0.01 contains the\n"
"organ that makes its poison.");
const u8 gTentacruelPokedexText[] = _(
"It fires off ultrasonic waves from its\n"
"red orbs to weaken its prey, and then it\n"
"wraps them up in its 80 tentacles.");
const u8 gGeodudePokedexText[] = _(
"It uses both hands to climb precipitous\n"
"cliffs. People who see it in action\n"
"have been known to take up bouldering.");
const u8 gGravelerPokedexText[] = _(
"It travels by rolling down cliffs. If\n"
"it falls into a river, it will\n"
"explode with its last gasp.");
const u8 gGolemPokedexText[] = _(
"When Golem grow old, they stop shedding\n"
"their shells. Those that have lived a\n"
"long time have shells green with moss.");
const u8 gPonytaPokedexText[] = _(
"As a newborn, it can barely stand.\n"
"However, through galloping, its legs are\n"
"made tougher and faster.");
const u8 gRapidashPokedexText[] = _(
"Very competitive, this Pokémon will chase\n"
"anything that moves fast in the\n"
"hopes of racing it.");
const u8 gSlowpokePokedexText[] = _(
"There are some places where Slowpoke is\n"
"worshiped because of an old belief that\n"
"whenever Slowpoke yawns, it rains.");
const u8 gSlowbroPokedexText[] = _(
"Spacing out is basically all it does. It\n"
"turns back into Slowpoke if its tail, along\n"
"with Shellder, breaks off.");
const u8 gMagnemitePokedexText[] = _(
"It’s frequently the cause of power outages,\n"
"which is why some power plants send\n"
"out electrical signals that it can’t stand.");
const u8 gMagnetonPokedexText[] = _(
"Delicate equipment can malfunction in\n"
"areas inhabited by Magneton, which\n"
"send out mysterious electrical signals.");
const u8 gFarfetchdPokedexText[] = _(
"The plant stalk it holds is its\n"
"weapon. The stalk is used like a\n"
"sword to cut all sorts of things.");
const u8 gDoduoPokedexText[] = _(
"A two-headed Pokémon that was discovered\n"
" as a sudden mutation. It runs at a\n"
"pace of over 60 miles per hour.");
const u8 gDodrioPokedexText[] = _(
"An enemy that takes its eyes\n"
"off any of the three heads even\n"
"for a second will get pecked severely.");
const u8 gSeelPokedexText[] = _(
"It has always been supposed that Seel\n"
"live only in cold seas. Their having\n"
"shown up in Alola is a mystery.");
const u8 gDewgongPokedexText[] = _(
"It sunbathes on the beach after\n"
"meals. The rise in its body\n"
"temperature helps its digestion.");
const u8 gGrimerPokedexText[] = _(
"It was born from sludge on the sea floor.\n"
"In a sterile environment, the germs within\n"
"its body can’t multiply and it dies.");
const u8 gMukPokedexText[] = _(
"The stench it gives off will make your\n"
"nose scrunch up. Still, there are Muk fans\n"
"who think that’s a good thing.");
const u8 gShellderPokedexText[] = _(
"The hardness of its shell surpasses the\n"
"hardness of a diamond. In days gone by,\n"
"people used the shells to make shields.");
const u8 gCloysterPokedexText[] = _(
"If areas of Cloyster’s very hard\n"
"shell get damaged, those areas swell,\n"
"gradually growing into large sharp spikes.");
const u8 gGastlyPokedexText[] = _(
"It’s said that gas emanating from a grave-\n"
"yard was possessed by the grievances\n"
"of the deceased and thus became a Pokémon.");
const u8 gHaunterPokedexText[] = _(
"On moonless nights, Haunter searches for\n"
"someone to curse, so it’s best\n"
"not to go out walking around.");
const u8 gGengarPokedexText[] = _(
"You can hear tales told all over\n"
"the world about how Gengar will pay\n"
"a visit to children who are naughty.");
const u8 gOnixPokedexText[] = _(
"Burrows at high speed in search\n"
"of food. The tunnels it leaves\n"
"are used as homes by Diglett.");
const u8 gDrowzeePokedexText[] = _(
"A Pokémon that nourishes itself by eating\n"
"dreams, it is thought to share common\n"
"ancestry with Munna and Musharna.");
const u8 gHypnoPokedexText[] = _(
"In Alola, Komala is Hypno’s\n"
"main target. It rarely harms\n"
"people.");
const u8 gKrabbyPokedexText[] = _(
"If it senses danger approaching, it\n"
"cloaks itself with bubbles from its\n"
"mouth so it will look bigger.");
const u8 gKinglerPokedexText[] = _(
"Its large and hard pincer has 10,000\n"
"horsepower strength. However,\n"
"being so big, it is unwieldy to move.");
const u8 gVoltorbPokedexText[] = _(
"It was discovered when PokéBalls\n"
"were introduced. It is said that\n"
"there is some connection.");
const u8 gElectrodePokedexText[] = _(
"It explodes in response to even\n"
"minor stimuli. It is feared, with\n"
"the nickname of The Bomb Ball.");
const u8 gExeggcutePokedexText[] = _(
"Six of them form a single Pokémon. Should\n"
"one of the six be lost, the next morning\n"
"there will once more be six.");
const u8 gExeggutorPokedexText[] = _(
"It engages its enemies using psychic powers\n"
"Each of its three heads fires off\n"
"psychokinetic energy, tripling its power.");
const u8 gCubonePokedexText[] = _(
"At night, it weeps loudly for its\n"
"dead mother, but those cries only attract\n"
"its natural enemy Mandibuzz.");
const u8 gMarowakPokedexText[] = _(
"It throws bones at Mandibuzz to knock\n"
"it down. It’s thought that Marowak is\n"
"trying to avenge its parent.");
const u8 gHitmonleePokedexText[] = _(
"The legs freely contract and stretch.\n"
"The stretchy legs allow it to hit\n"
"a distant foe with a rising kick.");
const u8 gHitmonchanPokedexText[] = _(
"The arm-twisting punches it throws\n"
"pulverize even concrete. It rests\n"
"after three minutes of fighting.");
const u8 gLickitungPokedexText[] = _(
"Its long tongue, slathered with a\n"
"gooey saliva, sticks to anything, so\n"
"it is very useful.");
const u8 gKoffingPokedexText[] = _(
"Its thin, balloon-like body is inflated\n"
"by horribly toxic gases. It reeks\n"
"when it is nearby.");
const u8 gWeezingPokedexText[] = _(
"If one of the twin Koffing inflates,\n"
"the other one deflates. It constantly\n"
"mixes its poisonous gases.");
const u8 gRhyhornPokedexText[] = _(
"Strong, but not too bright, this\n"
"Pokémon can shatter even a skyscraper\n"
"with its charging Tackles.");
const u8 gRhydonPokedexText[] = _(
"Protected by an armor-like hide, it is\n"
"capable of living in molten lava of\n"
"3600 degrees Fahrenheit.");
const u8 gChanseyPokedexText[] = _(
"Because the eggs on their bellies have\n"
"been overharvested by people in the past,\n"
"its population remains very small.");
const u8 gTangelaPokedexText[] = _(
"Many writhing vines cover it, so its\n"
"true identity remains unknown.\n"
"The blue vines grow its whole life long.");
const u8 gKangaskhanPokedexText[] = _(
"Kangaskhan’s maternal love is so\n"
"deep that it will brave\n"
"death to protect its offspring.");
const u8 gHorseaPokedexText[] = _(
"Known to shoot down flying bugs with\n"
"precision blasts of ink from the surface\n"
"of the water.");
const u8 gSeadraPokedexText[] = _(
"Its body bristles with sharp spikes.\n"
"Carelessly trying to touch it could cause\n"
"fainting from the spikes.");
const u8 gGoldeenPokedexText[] = _(
"The way it swims along fluttering\n"
"its dress-like fins has earned it\n"
"the name princess of the water.");
const u8 gSeakingPokedexText[] = _(
"Its horn spins like a drill to steadily\n"
"hollow out rocks even harder ones.\n"
"The coloration of the male is more vivid.");
const u8 gStaryuPokedexText[] = _(
"In many places, there are\n"
"folktales of stardust falling into\n"
"the ocean and becoming Staryu.");
const u8 gStarmiePokedexText[] = _(
"It rotates its geometrically shaped body\n"
"to swim in the water. It always seems\n"
"to be sending out mysterious radio waves.");
const u8 gMrmimePokedexText[] = _(
"It creates invisible walls with its\n"
"pantomiming. If you don’t act impressed, it will\n"
"attack you with a double slap!");
const u8 gScytherPokedexText[] = _(
"Its two sharp scythes are more than just\n"
"weapons. It uses them with dexterity to\n"
"dress its prey before eating.");
const u8 gJynxPokedexText[] = _(
"It sways its hips to a rhythm\n"
"all its own. The precise movements of\n"
"Jynx living in Alola are truly wonderful.");
const u8 gElectabuzzPokedexText[] = _(
"Electricity permeates its body. It swings\n"
"its arms round and round to charge up\n"
"electricity before unleashing a punch.");
const u8 gMagmarPokedexText[] = _(
"Its entire body is burning. When it\n"
"breathes, the temperature rises.\n"
"When it sneezes, flames shoot out!");
const u8 gPinsirPokedexText[] = _(
"It gets into territorial disputes with\n"
"Vikavolt. For some reason, it apparently\n"
"gets along well with Heracross in Alola.");
const u8 gTaurosPokedexText[] = _(
"They live in groups. The one with the\n"
" longest, thickest, and most-scarred horns\n"
" is the boss of the herd.");
const u8 gMagikarpPokedexText[] = _(
"In the distant past, they were\n"
"fairly strong, but they have become\n"
"gradually weaker over time.");
const u8 gGyaradosPokedexText[] = _(
"The energy from evolution stimulated\n"
"its brain cells strongly, causing\n"
"it to become very ferocious.");
const u8 gLaprasPokedexText[] = _(
"Its high intelligence enables it to\n"
"comprehend human speech. When it’s in a\n"
"good mood, it sings in its beautiful voice.");
const u8 gDittoPokedexText[] = _(
"While it can transform into anything, it\n"
"apparently has its own strengths and\n"
"weaknesses when it comes to transformations.");
const u8 gEeveePokedexText[] = _(
"The question of why only\n"
"Eevee has such unstable genes\n"
"has still not been solved.");
const u8 gVaporeonPokedexText[] = _(
"It detects nearby moisture with its fin.\n"
"When its fin begins trembling rapidly,\n"
"that means rain will fall in a few hours.");
const u8 gJolteonPokedexText[] = _(
"Its lungs contain an organ that creates\n"
"electricity. The crackling sound of\n"
"electricity can be heard when it exhales.");
const u8 gFlareonPokedexText[] = _(
"If it inhales deeply, that’s a sign it’s\n"
"about to attack. Prepare to be hit by\n"
"flames of over 3000 degrees Fahrenheit!");
const u8 gPorygonPokedexText[] = _(
"This Pokémon was created using the cutting-\n"
"edge science of 20 years ago, so many\n"
"parts of it have since become obsolete.");
const u8 gOmanytePokedexText[] = _(
"It was restored from an ancient fossil.\n"
"Those Helix Fossils are excavated\n"
"from areas that were once oceans long ago.");
const u8 gOmastarPokedexText[] = _(
"Its heavy shell is thought to be the\n"
"reason this ancient Pokémon died out.\n"
"It’s a distant ancestor of Octillery.");
const u8 gKabutoPokedexText[] = _(
"This Pokémon became extinct everywhere,\n"
"except in a few areas. It protects\n"
"itself with its hard shell.");
const u8 gKabutopsPokedexText[] = _(
"Its body had begun to change so\n"
"it could function on land. But it\n"
"didn’t adapt in time and went extinct.");
const u8 gAerodactylPokedexText[] = _(
"Restored from DNA found in amber, this\n"
"Pokémon showed much greater ferocity\n"
"than expected. Some casualties resulted.");
const u8 gSnorlaxPokedexText[] = _(
"Its stomach is said to be incomparably\n"
"strong. Even Muk’s poison is nothing more\n"
"than a hint of spice on Snorlax’s tongue.");
const u8 gArticunoPokedexText[] = _(
"A legendary bird Pokémon. It can\n"
"create blizzards by freezing moisture in\n"
"the air.");
const u8 gZapdosPokedexText[] = _(
"A legendary bird Pokémon that is\n"
"said to appear from clouds while\n"
"dropping enormous lightning bolts.");
const u8 gMoltresPokedexText[] = _(
"It is said to be the legendary bird\n"
"Pokémon of fire. Every flap of its wings\n"
"creates a dazzling flare of flames.");
const u8 gDratiniPokedexText[] = _(
"It’s still weak, so it lurks on the floor\n"
"of bodies of water, eats whatever\n"
"food sinks down and lives a quiet life.");
const u8 gDragonairPokedexText[] = _(
"It has long been thought that\n"
"its crystalline orbs are imbued with\n"
"the power to control the weather.");
const u8 gDragonitePokedexText[] = _(
"You’ll often hear tales of\n"
"this kindhearted Pokémon rescuing people\n"
"or Pokémon that are drowning.");
const u8 gMewtwoPokedexText[] = _(
"It was created by a scientist\n"
"after years of horrific gene-splicing and\n"
"DNA-engineering experiments.");
const u8 gMewPokedexText[] = _(
"Because it can use all kinds\n"
"of moves, many scientists believe Mew\n"
"to be the ancestor of Pokémon.");
const u8 gChikoritaPokedexText[] = _(
"A sweet aroma gently wafts from the\n"
"leaf on its head. It is docile\n"
"and loves to soak up sun rays.");
const u8 gBayleefPokedexText[] = _(
"A spicy aroma emanates from around its\n"
"neck. The aroma acts as a stimulant\n"
"to restore health.");
const u8 gMeganiumPokedexText[] = _(
"The aroma that rises from its\n"
"petals contains a substance that calms\n"
"aggressive feelings.");
const u8 gCyndaquilPokedexText[] = _(
"It is timid and always curls itself up\n"
"in a ball. If attacked, it flares up\n"
"its back for protection.");
const u8 gQuilavaPokedexText[] = _(
"Before battle, it turns its back\n"
"on its opponent to demonstrate how\n"
"ferociously its fire blazes.");
const u8 gTyphlosionPokedexText[] = _(
"If its rage peaks, it becomes so\n"
"hot that anything that touches it will\n"
"instantly go up in flames.");
const u8 gTotodilePokedexText[] = _(
"It is small but rough and tough.\n"
"It won’t hesitate to take a bite\n"
"out of anything that moves.");
const u8 gCroconawPokedexText[] = _(
"If it loses a fang, a new\n"
"one grows back in its place. There\n"
"are always 48 fangs lining its mouth.");
const u8 gFeraligatrPokedexText[] = _(
"It usually moves slowly, but it\n"
"goes at blinding speed when it\n"
"attacks and bites prey.");
const u8 gSentretPokedexText[] = _(
"When acting as a lookout, it warns\n"
"others of danger by screeching and\n"
"hitting the ground with its tail.");
const u8 gFurretPokedexText[] = _(
"The mother puts its offspring to sleep\n"
"by curling up around them. It corners\n"
"foes with speed.");
const u8 gHoothootPokedexText[] = _(
"Every day, it tilts its head in the\n"
"same rhythm. A long time ago, people\n"
"raised these Pokémon to serve as clocks.");
const u8 gNoctowlPokedexText[] = _(
"With eyes that can see in pitch-darkness,\n"
"it never lets its prey escape. Some even\n"
"call it the emperor of dark nights.");
const u8 gLedybaPokedexText[] = _(
"This Pokémon is very sensitive to\n"
"cold. In the warmth of Alola,\n"
"it appears quite lively.");
const u8 gLedianPokedexText[] = _(
"It’s said that the patterns on its back\n"
"are related to the stars in the night\n"
"sky, but the details remain unclear.");
const u8 gSpinarakPokedexText[] = _(
"With threads from its mouth, it fashions\n"
"sturdy webs that won’t break even if you\n"
"set a rock on them.");
const u8 gAriadosPokedexText[] = _(
"It spews threads from its mouth to\n"
"catch its prey. When night falls, it\n"
"leaves its web to go hunt aggressively.");
const u8 gCrobatPokedexText[] = _(
"Both its legs became wings, and as a\n"
"result, it can’t move well on the ground.\n"
"All it can do is crawl around.");
const u8 gChinchouPokedexText[] = _(
"Its two antennae glow softly to lure\n"
"in prey, making it a useful Pokémon\n"
"for night fishing.");
const u8 gLanturnPokedexText[] = _(
"When the bacteria living inside its\n"
"antennae absorb Lanturn’s bodily fluids,\n"
"a strong luminescent effect is produced.");
const u8 gPichuPokedexText[] = _(
"It still can’t use electricity well.\n"
"When it’s surprised or excited,\n"
"it discharges electricity unintentionally.");
const u8 gCleffaPokedexText[] = _(
"Said to have ridden here on a shooting\n"
"star, Cleffa seem to appear in places\n"
"where meteorites have struck in the past.");
const u8 gIgglybuffPokedexText[] = _(
"It’s always practicing singing because it\n"
"wants to improve. Even when it’s asleep,\n"
"it keeps singing in its dreams!");
const u8 gTogepiPokedexText[] = _(
"The shell seems to be filled with joy.\n"
"It is said that it will share good\n"
"luck when treated kindly.");
const u8 gTogeticPokedexText[] = _(
"It grows dispirited if it is not\n"
"with kind people. It can float in\n"
"midair without moving its wings.");
const u8 gNatuPokedexText[] = _(
"The look in its eyes gives the impression\n"
"that it’s carefully observing you.\n"
"If you approach it, Natu will hop away.");
const u8 gXatuPokedexText[] = _(
"While it can see the future, it has no\n"
"desire to change it, which is probably\n"
"why it remains motionless at all times.");
const u8 gMareepPokedexText[] = _(
"Clothing made from Mareep’s fleece is\n"
"easily charged with static electricity,\n"
"so a special process is used on it.");
const u8 gFlaaffyPokedexText[] = _(
"It stores electricity in its fluffy fleece.\n"
"If it stores up too much, it will start\n"
"to go bald in those patches.");
const u8 gAmpharosPokedexText[] = _(
"Its tail shines bright and strong.\n"
"It has been prized since long\n"
"ago as a beacon for sailors.");
const u8 gBellossomPokedexText[] = _(
"Bellossom gather at times and seem to\n"
"dance. They say that the dance is a ritual\n"
"to summon the sun.");
const u8 gMarillPokedexText[] = _(
"The fur on its body naturally repels\n"
"water. It can stay dry, even when\n"
"it plays in the water.");
const u8 gAzumarillPokedexText[] = _(
"Its long ears are superb sensors.\n"
"It can distinguish the movements of\n"
"living things on riverbeds.");
const u8 gSudowoodoPokedexText[] = _(
"The result of its holding the same\n"
"pose all the time is arms that\n"
"have become supple yet strong.");
const u8 gPolitoedPokedexText[] = _(
"Although its cries sound like screams,\n"
"a composer created a beautiful ballad\n"
"that was influenced by the sounds.");
const u8 gHoppipPokedexText[] = _(
"Its body is so light, it must grip\n"
"the ground firmly with its feet to keep\n"
"from being blown away.");
const u8 gSkiploomPokedexText[] = _(
"The bloom on top of its head opens and\n"
"closes as the temperature fluctuates\n"
"up and down.");
const u8 gJumpluffPokedexText[] = _(
"Blown by seasonal winds, it circles\n"
"the globe, scattering cotton spores as\n"
"it goes.");
const u8 gAipomPokedexText[] = _(
"As it did more and more with\n"
"its tail, its hands became clumsy. It\n"
"makes its nest high in the treetops.");
const u8 gSunkernPokedexText[] = _(
"It may plummet from the sky. If\n"
"attacked by a Spearow, it will violently\n"
"shake its leaves.");
const u8 gSunfloraPokedexText[] = _(
"As the hot season approaches, the\n"
"petals on this Pokémon’s face become\n"
"more vivid and lively.");
const u8 gYanmaPokedexText[] = _(
"Its eyes can see 360 degrees without\n"
"moving its head. It won’t miss prey--even\n"
"those behind it.");
const u8 gWooperPokedexText[] = _(
"This Pokémon lives in cold water. It will\n"
"leave the water to search for food when\n"
"it gets cold outside.");
const u8 gQuagsirePokedexText[] = _(
"It has a sluggish nature. It lies\n"
"at the river’s bottom, waiting for prey\n"
"to stray into its mouth.");
const u8 gEspeonPokedexText[] = _(
"Psychic power builds up in the orb on\n"
"its forehead as it bathes in the sunshine.\n"
"Espeon is not good at battling at night.");
const u8 gUmbreonPokedexText[] = _(
"This Pokémon is nocturnal. Even in\n"
"total darkness, its large eyes can\n"
"spot its prey clearly!");