-
Notifications
You must be signed in to change notification settings - Fork 991
/
dex_text.asm
1509 lines (1208 loc) · 24.7 KB
/
dex_text.asm
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
_RhydonDexEntry::
text "Protected by an"
next "armor-like hide,"
next "it is capable of"
page "living in molten"
next "lava of 3,600"
next "degrees"
dex
_KangaskhanDexEntry::
text "The infant rarely"
next "ventures out of"
next "its mother's"
page "protective pouch"
next "until it is 3"
next "years old"
dex
_NidoranMDexEntry::
text "Stiffens its ears"
next "to sense danger."
next "The larger its"
page "horns, the more"
next "powerful its"
next "secreted venom"
dex
_ClefairyDexEntry::
text "Its magical and"
next "cute appeal has"
next "many admirers."
page "It is rare and"
next "found only in"
next "certain areas"
dex
_SpearowDexEntry::
text "Eats bugs in"
next "grassy areas. It"
next "has to flap its"
page "short wings at"
next "high speed to"
next "stay airborne"
dex
_VoltorbDexEntry::
text "Usually found in"
next "power plants."
next "Easily mistaken"
page "for a # BALL,"
next "they have zapped"
next "many people"
dex
_NidokingDexEntry::
text "It uses its"
next "powerful tail in"
next "battle to smash,"
page "constrict, then"
next "break the prey's"
next "bones"
dex
_SlowbroDexEntry::
text "The SHELLDER that"
next "is latched onto"
next "SLOWPOKE's tail"
page "is said to feed"
next "on the host's left"
next "over scraps"
dex
_IvysaurDexEntry::
text "When the bulb on"
next "its back grows"
next "large, it appears"
page "to lose the"
next "ability to stand"
next "on its hind legs"
dex
_ExeggutorDexEntry::
text "Legend has it that"
next "on rare occasions,"
next "one of its heads"
page "will drop off and"
next "continue on as an"
next "EXEGGCUTE"
dex
_LickitungDexEntry::
text "Its tongue can be"
next "extended like a"
next "chameleon's. It"
page "leaves a tingling"
next "sensation when it"
next "licks enemies"
dex
_ExeggcuteDexEntry::
text "Often mistaken"
next "for eggs."
next "When disturbed,"
page "they quickly"
next "gather and attack"
next "in swarms"
dex
_GrimerDexEntry::
text "Appears in filthy"
next "areas. Thrives by"
next "sucking up"
page "polluted sludge"
next "that is pumped"
next "out of factories"
dex
_GengarDexEntry::
text "Under a full moon,"
next "this #MON"
next "likes to mimic"
page "the shadows of"
next "people and laugh"
next "at their fright"
dex
_NidoranFDexEntry::
text "Although small,"
next "its venomous"
next "barbs render this"
page "#MON dangerous."
next "The female has"
next "smaller horns"
dex
_NidoqueenDexEntry::
text "Its hard scales"
next "provide strong"
next "protection. It"
page "uses its hefty"
next "bulk to execute"
next "powerful moves"
dex
_CuboneDexEntry::
text "Because it never"
next "removes its skull"
next "helmet, no one"
page "has ever seen"
next "this #MON's"
next "real face"
dex
_RhyhornDexEntry::
text "Its massive bones"
next "are 1000 times"
next "harder than human"
page "bones. It can"
next "easily knock a"
next "trailer flying"
dex
_LaprasDexEntry::
text "A #MON that"
next "has been over-"
next "hunted almost to"
page "extinction. It"
next "can ferry people"
next "across the water"
dex
_ArcanineDexEntry::
text "A #MON that"
next "has been admired"
next "since the past"
page "for its beauty."
next "It runs agilely"
next "as if on wings"
dex
_MewDexEntry::
text "So rare that it"
next "is still said to"
next "be a mirage by"
page "many experts. Only"
next "a few people have"
next "seen it worldwide"
dex
_GyaradosDexEntry::
text "Rarely seen in"
next "the wild. Huge"
next "and vicious, it"
page "is capable of"
next "destroying entire"
next "cities in a rage"
dex
_ShellderDexEntry::
text "Its hard shell"
next "repels any kind"
next "of attack."
page "It is vulnerable"
next "only when its"
next "shell is open"
dex
_TentacoolDexEntry::
text "Drifts in shallow"
next "seas. Anglers who"
next "hook them by"
page "accident are"
next "often punished by"
next "its stinging acid"
dex
_GastlyDexEntry::
text "Almost invisible,"
next "this gaseous"
next "#MON cloaks"
page "the target and"
next "puts it to sleep"
next "without notice"
dex
_ScytherDexEntry::
text "With ninja-like"
next "agility and speed,"
next "it can create the"
page "illusion that"
next "there is more"
next "than one"
dex
_StaryuDexEntry::
text "An enigmatic"
next "#MON that can"
next "effortlessly"
page "regenerate any"
next "appendage it"
next "loses in battle"
dex
_BlastoiseDexEntry::
text "A brutal #MON"
next "with pressurized"
next "water jets on its"
page "shell. They are"
next "used for high"
next "speed tackles"
dex
_PinsirDexEntry::
text "If it fails to"
next "crush the victim"
next "in its pincers,"
page "it will swing it"
next "around and toss"
next "it hard"
dex
_TangelaDexEntry::
text "The whole body is"
next "swathed with wide"
next "vines that are"
page "similar to sea-"
next "weed. Its vines"
next "shake as it walks"
dex
_GrowlitheDexEntry::
text "Very protective"
next "of its territory."
next "It will bark and"
page "bite to repel"
next "intruders from"
next "its space"
dex
_OnixDexEntry::
text "As it grows, the"
next "stone portions of"
next "its body harden"
page "to become similar"
next "to a diamond, but"
next "colored black"
dex
_FearowDexEntry::
text "With its huge and"
next "magnificent wings,"
next "it can keep aloft"
page "without ever"
next "having to land"
next "for rest"
dex
_PidgeyDexEntry::
text "A common sight in"
next "forests and woods."
next "It flaps its"
page "wings at ground"
next "level to kick up"
next "blinding sand"
dex
_SlowpokeDexEntry::
text "Incredibly slow"
next "and dopey. It"
next "takes 5 seconds"
page "for it to feel"
next "pain when under"
next "attack"
dex
_KadabraDexEntry::
text "It emits special"
next "alpha waves from"
next "its body that"
page "induce headaches"
next "just by being"
next "close by"
dex
_GravelerDexEntry::
text "Rolls down slopes"
next "to move. It rolls"
next "over any obstacle"
page "without slowing"
next "or changing its"
next "direction"
dex
_ChanseyDexEntry::
text "A rare and elusive"
next "#MON that is"
next "said to bring"
page "happiness to those"
next "who manage to get"
next "it"
dex
_MachokeDexEntry::
text "Its muscular body"
next "is so powerful, it"
next "must wear a power"
page "save belt to be"
next "able to regulate"
next "its motions"
dex
_MrMimeDexEntry::
text "If interrupted"
next "while it is"
next "miming, it will"
page "slap around the"
next "offender with its"
next "broad hands"
dex
_HitmonleeDexEntry::
text "When in a hurry,"
next "its legs lengthen"
next "progressively."
page "It runs smoothly"
next "with extra long,"
next "loping strides"
dex
_HitmonchanDexEntry::
text "While apparently"
next "doing nothing, it"
next "fires punches in"
page "lightning fast"
next "volleys that are"
next "impossible to see"
dex
_ArbokDexEntry::
text "It is rumored that"
next "the ferocious"
next "warning markings"
page "on its belly"
next "differ from area"
next "to area"
dex
_ParasectDexEntry::
text "A host-parasite"
next "pair in which the"
next "parasite mushroom"
page "has taken over the"
next "host bug. Prefers"
next "damp places"
dex
_PsyduckDexEntry::
text "While lulling its"
next "enemies with its"
next "vacant look, this"
page "wily #MON will"
next "use psychokinetic"
next "powers"
dex
_DrowzeeDexEntry::
text "Puts enemies to"
next "sleep then eats"
next "their dreams."
page "Occasionally gets"
next "sick from eating"
next "bad dreams"
dex
_GolemDexEntry::
text "Its boulder-like"
next "body is extremely"
next "hard. It can"
page "easily withstand"
next "dynamite blasts"
next "without damage"
dex
_MagmarDexEntry::
text "Its body always"
next "burns with an"
next "orange glow that"
page "enables it to"
next "hide perfectly"
next "among flames"
dex
_ElectabuzzDexEntry::
text "Normally found"
next "near power plants,"
next "they can wander"
page "away and cause"
next "major blackouts"
next "in cities"
dex
_MagnetonDexEntry::
text "Formed by several"
next "MAGNEMITEs linked"
next "together. They"
page "frequently appear"
next "when sunspots"
next "flare up"
dex
_KoffingDexEntry::
text "Because it stores"
next "several kinds of"
next "toxic gases in"
page "its body, it is"
next "prone to exploding"
next "without warning"
dex
_MankeyDexEntry::
text "Extremely quick to"
next "anger. It could"
next "be docile one"
page "moment then"
next "thrashing away"
next "the next instant"
dex
_SeelDexEntry::
text "The protruding"
next "horn on its head"
next "is very hard."
page "It is used for"
next "bashing through"
next "thick ice"
dex
_DiglettDexEntry::
text "Lives about one"
next "yard underground"
next "where it feeds on"
page "plant roots. It"
next "sometimes appears"
next "above ground"
dex
_TaurosDexEntry::
text "When it targets"
next "an enemy, it"
next "charges furiously"
page "while whipping its"
next "body with its"
next "long tails"
dex
_FarfetchdDexEntry::
text "The sprig of"
next "green onions it"
next "holds is its"
page "weapon. It is"
next "used much like a"
next "metal sword"
dex
_VenonatDexEntry::
text "Lives in the"
next "shadows of tall"
next "trees where it"
page "eats insects. It"
next "is attracted by"
next "light at night"
dex
_DragoniteDexEntry::
text "An extremely"
next "rarely seen"
next "marine #MON."
page "Its intelligence"
next "is said to match"
next "that of humans"
dex
_DoduoDexEntry::
text "A bird that makes"
next "up for its poor"
next "flying with its"
page "fast foot speed."
next "Leaves giant"
next "footprints"
dex
_PoliwagDexEntry::
text "Its newly grown"
next "legs prevent it"
next "from running. It"
page "appears to prefer"
next "swimming than"
next "trying to stand"
dex
_JynxDexEntry::
text "It seductively"
next "wiggles its hips"
next "as it walks. It"
page "can cause people"
next "to dance in"
next "unison with it"
dex
_MoltresDexEntry::
text "Known as the"
next "legendary bird of"
next "fire. Every flap"
page "of its wings"
next "creates a dazzling"
next "flash of flames"
dex
_ArticunoDexEntry::
text "A legendary bird"
next "#MON that is"
next "said to appear to"
page "doomed people who"
next "are lost in icy"
next "mountains"
dex
_ZapdosDexEntry::
text "A legendary bird"
next "#MON that is"
next "said to appear"
page "from clouds while"
next "dropping enormous"
next "lightning bolts"
dex
_DittoDexEntry::
text "Capable of copying"
next "an enemy's genetic"
next "code to instantly"
page "transform itself"
next "into a duplicate"
next "of the enemy"
dex
_MeowthDexEntry::
text "Adores circular"
next "objects. Wanders"
next "the streets on a"
page "nightly basis to"
next "look for dropped"
next "loose change"
dex
_KrabbyDexEntry::
text "Its pincers are"
next "not only powerful"
next "weapons, they are"
page "used for balance"
next "when walking"
next "sideways"
dex
_VulpixDexEntry::
text "At the time of"
next "birth, it has"
next "just one tail."
page "The tail splits"
next "from its tip as"
next "it grows older"
dex
_NinetalesDexEntry::
text "Very smart and"
next "very vengeful."
next "Grabbing one of"
page "its many tails"
next "could result in a"
next "1000-year curse"
dex
_PikachuDexEntry::
text "When several of"
next "these #MON"
next "gather, their"
page "electricity could"
next "build and cause"
next "lightning storms"
dex
_RaichuDexEntry::
text "Its long tail"
next "serves as a"
next "ground to protect"
page "itself from its"
next "own high voltage"
next "power"
dex
_DratiniDexEntry::
text "Long considered a"
next "mythical #MON"
next "until recently"
page "when a small"
next "colony was found"
next "living underwater"
dex
_DragonairDexEntry::
text "A mystical #MON"
next "that exudes a"
next "gentle aura."
page "Has the ability"
next "to change climate"
next "conditions"
dex
_KabutoDexEntry::
text "A #MON that"
next "was resurrected"
next "from a fossil"
page "found in what was"
next "once the ocean"
next "floor eons ago"
dex
_KabutopsDexEntry::
text "Its sleek shape is"
next "perfect for swim-"
next "ming. It slashes"
page "prey with its"
next "claws and drains"
next "the body fluids"
dex
_HorseaDexEntry::
text "Known to shoot"
next "down flying bugs"
next "with precision"
page "blasts of ink"
next "from the surface"
next "of the water"
dex
_SeadraDexEntry::
text "Capable of swim-"
next "ming backwards by"
next "rapidly flapping"
page "its wing-like"
next "pectoral fins and"
next "stout tail"
dex
_SandshrewDexEntry::
text "Burrows deep"
next "underground in"
next "arid locations"
page "far from water."
next "It only emerges"
next "to hunt for food"
dex
_SandslashDexEntry::
text "Curls up into a"
next "spiny ball when"
next "threatened. It"
page "can roll while"
next "curled up to"
next "attack or escape"
dex
_OmanyteDexEntry::
text "Although long"
next "extinct, in rare"
next "cases, it can be"
page "genetically"
next "resurrected from"
next "fossils"
dex
_OmastarDexEntry::
text "A prehistoric"
next "#MON that died"
next "out when its"
page "heavy shell made"
next "it impossible to"
next "catch prey"
dex
_JigglypuffDexEntry::
text "When its huge eyes"
next "light up, it sings"
next "a mysteriously"
page "soothing melody"
next "that lulls its"
next "enemies to sleep"
dex
_WigglytuffDexEntry::
text "The body is soft"
next "and rubbery. When"
next "angered, it will"
page "suck in air and"
next "inflate itself to"
next "an enormous size"
dex
_EeveeDexEntry::
text "Its genetic code"
next "is irregular."
next "It may mutate if"
page "it is exposed to"
next "radiation from"
next "element STONEs"
dex
_FlareonDexEntry::
text "When storing"
next "thermal energy in"
next "its body, its"
page "temperature could"
next "soar to over 1600"
next "degrees"
dex
_JolteonDexEntry::
text "It accumulates"
next "negative ions in"
next "the atmosphere to"
page "blast out 10000-"
next "volt lightning"
next "bolts"
dex
_VaporeonDexEntry::
text "Lives close to"
next "water. Its long"
next "tail is ridged"
page "with a fin which"
next "is often mistaken"
next "for a mermaid's"
dex
_MachopDexEntry::
text "Loves to build"
next "its muscles."
next "It trains in all"
page "styles of martial"
next "arts to become"
next "even stronger"
dex
_ZubatDexEntry::
text "Forms colonies in"
next "perpetually dark"
next "places. Uses"
page "ultrasonic waves"
next "to identify and"
next "approach targets"
dex
_EkansDexEntry::
text "Moves silently"
next "and stealthily."
next "Eats the eggs of"
page "birds, such as"
next "PIDGEY and"
next "SPEAROW, whole"
dex
_ParasDexEntry::
text "Burrows to suck"
next "tree roots. The"
next "mushrooms on its"
page "back grow by draw-"
next "ing nutrients from"
next "the bug host"
dex
_PoliwhirlDexEntry::
text "Capable of living"
next "in or out of"
next "water. When out"
page "of water, it"
next "sweats to keep"
next "its body slimy"
dex
_PoliwrathDexEntry::
text "An adept swimmer"
next "at both the front"
next "crawl and breast"
page "stroke. Easily"
next "overtakes the best"
next "human swimmers"
dex
_WeedleDexEntry::
text "Often found in"
next "forests, eating"
next "leaves."
page "It has a sharp"
next "venomous stinger"
next "on its head"
dex
_KakunaDexEntry::
text "Almost incapable"
next "of moving, this"
next "#MON can only"
page "harden its shell"
next "to protect itself"
next "from predators"
dex
_BeedrillDexEntry::
text "Flies at high"
next "speed and attacks"
next "using its large"
page "venomous stingers"
next "on its forelegs"
next "and tail"
dex
_DodrioDexEntry::
text "Uses its three"
next "brains to execute"
next "complex plans."
page "While two heads"
next "sleep, one head"
next "stays awake"
dex
_PrimeapeDexEntry::
text "Always furious"
next "and tenacious to"
next "boot. It will not"
page "abandon chasing"
next "its quarry until"
next "it is caught"
dex
_DugtrioDexEntry::
text "A team of DIGLETT"
next "triplets."
next "It triggers huge"
page "earthquakes by"
next "burrowing 60 miles"
next "underground"
dex
_VenomothDexEntry::
text "The dust-like"
next "scales covering"
next "its wings are"
page "color coded to"
next "indicate the kinds"
next "of poison it has"
dex