-
Notifications
You must be signed in to change notification settings - Fork 0
/
pokemons.json
12938 lines (12938 loc) · 528 KB
/
pokemons.json
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
[
{
"_id": "557a723880a20c9db3bc31c2",
"pkdx_id": 1,
"national_id": 1,
"name": "Bulbasaur",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/1.png",
"description": "Bulbasaur can be seen napping in bright sunlight. There is a seed on its back. By soaking up the sun's rays, the seed grows progressively larger. Bulbasaur can be seen napping in bright sunlight. There is a seed on its back. By soaking up the sun's rays, the seed grows progressively larger.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/001.png",
"types": [
"poison",
"grass"
],
"evolutions": [
{
"level": 16,
"method": "level_up",
"to": "Ivysaur",
"_id": "557a723880a20c9db3bc31c3"
}
]
},
{
"_id": "557a723980a20c9db3bc31e3",
"pkdx_id": 2,
"national_id": 2,
"name": "Ivysaur",
"__v": 4,
"image_url": "http://pokeapi.co/media/img/2.png",
"description": "There is a bud on this Pokémon's back. To support its weight, Ivysaur's legs and trunk grow thick and strong. If it starts spending more time lying in the sunlight, it's a sign that the bud will bloom into a large flower soon. There is a bud on this Pokémon's back. To support its weight, Ivysaur's legs and trunk grow thick and strong. If it starts spending more time lying in the sunlight, it's a sign that the bud will bloom into a large flower soon.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/002.png",
"types": [
"poison",
"grass"
],
"evolutions": [
{
"level": 32,
"method": "level_up",
"to": "Venusaur",
"_id": "557a723980a20c9db3bc31e4"
}
]
},
{
"_id": "557a723880a20c9db3bc31cc",
"pkdx_id": 3,
"national_id": 3,
"name": "Venusaur",
"__v": 5,
"image_url": "http://pokeapi.co/media/img/3.png",
"description": "There is a large flower on Venusaur's back. The flower is said to take on vivid colors if it gets plenty of nutrition and sunlight. The flower's aroma soothes the emotions of people. There is a large flower on Venusaur's back. The flower is said to take on vivid colors if it gets plenty of nutrition and sunlight. The flower's aroma soothes the emotions of people.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/003.png",
"types": [
"poison",
"grass"
],
"evolutions": [
{
"method": "other",
"to": "Venusaur-mega",
"_id": "557a723880a20c9db3bc31cd"
}
]
},
{
"_id": "557a723880a20c9db3bc31c8",
"pkdx_id": 4,
"national_id": 4,
"name": "Charmander",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/4.png",
"description": "The flame that burns at the tip of its tail is an indication of its emotions. The flame wavers when Charmander is enjoying itself. If the Pokémon becomes enraged, the flame burns fiercely. The flame that burns at the tip of its tail is an indication of its emotions. The flame wavers when Charmander is enjoying itself. If the Pokémon becomes enraged, the flame burns fiercely.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/004.png",
"types": [
"fire"
],
"evolutions": [
{
"level": 16,
"method": "level_up",
"to": "Charmeleon",
"_id": "557a723880a20c9db3bc31c9"
}
]
},
{
"_id": "557a723980a20c9db3bc31e8",
"pkdx_id": 5,
"national_id": 5,
"name": "Charmeleon",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/5.png",
"description": "Charmeleon mercilessly destroys its foes using its sharp claws. If it encounters a strong foe, it turns aggressive. In this excited state, the flame at the tip of its tail flares with a bluish white color. Charmeleon mercilessly destroys its foes using its sharp claws. If it encounters a strong foe, it turns aggressive. In this excited state, the flame at the tip of its tail flares with a bluish white color.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/005.png",
"types": [
"fire"
],
"evolutions": [
{
"level": 36,
"method": "level_up",
"to": "Charizard",
"_id": "557a723980a20c9db3bc31e9"
}
]
},
{
"_id": "557a723880a20c9db3bc31d1",
"pkdx_id": 6,
"national_id": 6,
"name": "Charizard",
"__v": 4,
"image_url": "http://pokeapi.co/media/img/6.png",
"description": "Charizard flies around the sky in search of powerful opponents. It breathes fire of such great heat that it melts anything. However, it never turns its fiery breath on any opponent weaker than itself. Charizard flies around the sky in search of powerful opponents. It breathes fire of such great heat that it melts anything. However, it never turns its fiery breath on any opponent weaker than itself.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/006.png",
"types": [
"flying",
"fire"
],
"evolutions": [
{
"method": "other",
"to": "Charizard-mega-y",
"_id": "557a723880a20c9db3bc31d3"
},
{
"method": "other",
"to": "Charizard-mega-x",
"_id": "557a723880a20c9db3bc31d2"
}
]
},
{
"_id": "557a723980a20c9db3bc31d7",
"pkdx_id": 7,
"national_id": 7,
"name": "Squirtle",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/7.png",
"description": "Squirtle's shell is not merely used for protection. The shell's rounded shape and the grooves on its surface help minimize resistance in water, enabling this Pokémon to swim at high speeds. Squirtle's shell is not merely used for protection. The shell's rounded shape and the grooves on its surface help minimize resistance in water, enabling this Pokémon to swim at high speeds.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/007.png",
"types": [
"water"
],
"evolutions": [
{
"level": 16,
"method": "level_up",
"to": "Wartortle",
"_id": "557a723980a20c9db3bc31d8"
}
]
},
{
"_id": "557a723980a20c9db3bc31df",
"pkdx_id": 8,
"national_id": 8,
"name": "Wartortle",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/8.png",
"description": "Its tail is large and covered with a rich, thick fur. The tail becomes increasingly deeper in color as Wartortle ages. The scratches on its shell are evidence of this Pokémon's toughness as a battler. Its tail is large and covered with a rich, thick fur. The tail becomes increasingly deeper in color as Wartortle ages. The scratches on its shell are evidence of this Pokémon's toughness as a battler.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/008.png",
"types": [
"water"
],
"evolutions": [
{
"level": 36,
"method": "level_up",
"to": "Blastoise",
"_id": "557a723980a20c9db3bc31e0"
}
]
},
{
"_id": "557a723980a20c9db3bc31db",
"pkdx_id": 9,
"national_id": 9,
"name": "Blastoise",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/9.png",
"description": "Blastoise has water spouts that protrude from its shell. The water spouts are very accurate. They can shoot bullets of water with enough accuracy to strike empty cans from a distance of over 160 feet. Blastoise has water spouts that protrude from its shell. The water spouts are very accurate. They can shoot bullets of water with enough accuracy to strike empty cans from a distance of over 160 feet.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/009.png",
"types": [
"water"
],
"evolutions": [
{
"method": "other",
"to": "Blastoise-mega",
"_id": "557a723980a20c9db3bc31dc"
}
]
},
{
"_id": "557a72aa7276d341b41edda6",
"pkdx_id": 10,
"national_id": 10,
"name": "Caterpie",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/10.png",
"description": "Caterpie has a voracious appetite. It can devour leaves bigger than its body right before your eyes. From its antenna, this Pokémon releases a terrifically strong odor. Caterpie has a voracious appetite. It can devour leaves bigger than its body right before your eyes. From its antenna, this Pokémon releases a terrifically strong odor.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/008.png",
"types": [
"bug"
],
"evolutions": [
{
"level": 7,
"method": "level_up",
"to": "Metapod",
"_id": "557a72aa7276d341b41edda7"
}
]
},
{
"_id": "557a72ad7276d341b41eddfa",
"pkdx_id": 11,
"national_id": 11,
"name": "Metapod",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/11.png",
"description": "The shell covering this Pokémon's body is as hard as an iron slab. Metapod does not move very much. It stays still because it is preparing its soft innards for evolution inside the hard shell. The shell covering this Pokémon's body is as hard as an iron slab. Metapod does not move very much. It stays still because it is preparing its soft innards for evolution inside the hard shell.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/011.png",
"types": [
"bug"
],
"evolutions": [
{
"level": 10,
"method": "level_up",
"to": "Butterfree",
"_id": "557a72ad7276d341b41eddfb"
}
]
},
{
"_id": "557a72aa7276d341b41eddbf",
"pkdx_id": 12,
"national_id": 12,
"name": "Butterfree",
"__v": 4,
"image_url": "http://pokeapi.co/media/img/12.png",
"description": "Butterfree has a superior ability to search for delicious honey from flowers. It can even search out, extract, and carry honey from flowers that are blooming over six miles from its nest. Butterfree has a superior ability to search for delicious honey from flowers. It can even search out, extract, and carry honey from flowers that are blooming over six miles from its nest.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/012.png",
"types": [
"flying",
"bug"
],
"evolutions": []
},
{
"_id": "557a72a97276d341b41edd99",
"pkdx_id": 13,
"national_id": 13,
"name": "Weedle",
"__v": 4,
"image_url": "http://pokeapi.co/media/img/13.png",
"description": "Weedle has an extremely acute sense of smell. It is capable of distinguishing its favorite kinds of leaves from those it dislikes just by sniffing with its big red proboscis (nose). Weedle has an extremely acute sense of smell. It is capable of distinguishing its favorite kinds of leaves from those it dislikes just by sniffing with its big red proboscis (nose).",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/013.png",
"types": [
"poison",
"bug"
],
"evolutions": [
{
"level": 7,
"method": "level_up",
"to": "Kakuna",
"_id": "557a72a97276d341b41edd9a"
}
]
},
{
"_id": "557a72ac7276d341b41edde8",
"pkdx_id": 14,
"national_id": 14,
"name": "Kakuna",
"__v": 4,
"image_url": "http://pokeapi.co/media/img/14.png",
"description": "Kakuna remains virtually immobile as it clings to a tree. However, on the inside, it is extremely busy as it prepares for its coming evolution. This is evident from how hot the shell becomes to the touch. Kakuna remains virtually immobile as it clings to a tree. However, on the inside, it is extremely busy as it prepares for its coming evolution. This is evident from how hot the shell becomes to the touch.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/014.png",
"types": [
"poison",
"bug"
],
"evolutions": [
{
"level": 10,
"method": "level_up",
"to": "Beedrill",
"_id": "557a72ac7276d341b41edde9"
}
]
},
{
"_id": "557a72a97276d341b41edd9e",
"pkdx_id": 15,
"national_id": 15,
"name": "Beedrill",
"__v": 4,
"image_url": "http://pokeapi.co/media/img/15.png",
"description": "Beedrill is extremely territorial. No one should ever approach its nest—this is for their own safety. If angered, they will attack in a furious swarm. Beedrill is extremely territorial. No one should ever approach its nest—this is for their own safety. If angered, they will attack in a furious swarm.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/015.png",
"types": [
"poison",
"bug"
],
"evolutions": []
},
{
"_id": "557a72a97276d341b41edd91",
"pkdx_id": 16,
"national_id": 16,
"name": "Pidgey",
"__v": 4,
"image_url": "http://pokeapi.co/media/img/16.png",
"description": "Pidgey has an extremely sharp sense of direction. It is capable of unerringly returning home to its nest, however far it may be removed from its familiar surroundings. Pidgey has an extremely sharp sense of direction. It is capable of unerringly returning home to its nest, however far it may be removed from its familiar surroundings.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/016.png",
"types": [
"normal",
"flying"
],
"evolutions": [
{
"level": 18,
"method": "level_up",
"to": "Pidgeotto",
"_id": "557a72a97276d341b41edd92"
}
]
},
{
"_id": "557a72ac7276d341b41edded",
"pkdx_id": 17,
"national_id": 17,
"name": "Pidgeotto",
"__v": 4,
"image_url": "http://pokeapi.co/media/img/17.png",
"description": "Pidgeotto claims a large area as its own territory. This Pokémon flies around, patrolling its living space. If its territory is violated, it shows no mercy in thoroughly punishing the foe with its sharp claws. Pidgeotto claims a large area as its own territory. This Pokémon flies around, patrolling its living space. If its territory is violated, it shows no mercy in thoroughly punishing the foe with its sharp claws.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/017.png",
"types": [
"normal",
"flying"
],
"evolutions": [
{
"level": 36,
"method": "level_up",
"to": "Pidgeot",
"_id": "557a72ac7276d341b41eddee"
}
]
},
{
"_id": "557a72aa7276d341b41eddaa",
"pkdx_id": 18,
"national_id": 18,
"name": "Pidgeot",
"__v": 4,
"image_url": "http://pokeapi.co/media/img/18.png",
"description": "This Pokémon has a dazzling plumage of beautifully glossy feathers. Many Trainers are captivated by the striking beauty of the feathers on its head, compelling them to choose Pidgeot as their Pokémon. This Pokémon has a dazzling plumage of beautifully glossy feathers. Many Trainers are captivated by the striking beauty of the feathers on its head, compelling them to choose Pidgeot as their Pokémon.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/018.png",
"types": [
"normal",
"flying"
],
"evolutions": []
},
{
"_id": "557a72ab7276d341b41eddc9",
"pkdx_id": 19,
"national_id": 19,
"name": "Rattata",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/19.png",
"description": "Rattata is cautious in the extreme. Even while it is asleep, it constantly listens by moving its ears around. It is not picky about where it lives—it will make its nest anywhere. Rattata is cautious in the extreme. Even while it is asleep, it constantly listens by moving its ears around. It is not picky about where it lives—it will make its nest anywhere.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/019.png",
"types": [
"normal"
],
"evolutions": [
{
"level": 20,
"method": "level_up",
"to": "Raticate",
"_id": "557a72ab7276d341b41eddca"
}
]
},
{
"_id": "557a72a97276d341b41edd96",
"pkdx_id": 20,
"national_id": 20,
"name": "Raticate",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/20.png",
"description": "Raticate's sturdy fangs grow steadily. To keep them ground down, it gnaws on rocks and logs. It may even chew on the walls of houses. Raticate's sturdy fangs grow steadily. To keep them ground down, it gnaws on rocks and logs. It may even chew on the walls of houses.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/020.png",
"types": [
"normal"
],
"evolutions": []
},
{
"_id": "557a72aa7276d341b41eddba",
"pkdx_id": 21,
"national_id": 21,
"name": "Spearow",
"__v": 5,
"image_url": "http://pokeapi.co/media/img/21.png",
"description": "Spearow has a very loud cry that can be heard over half a mile away. If its high, keening cry is heard echoing all around, it is a sign that they are warning each other of danger. Spearow has a very loud cry that can be heard over half a mile away. If its high, keening cry is heard echoing all around, it is a sign that they are warning each other of danger.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/021.png",
"types": [
"normal",
"flying"
],
"evolutions": [
{
"level": 20,
"method": "level_up",
"to": "Fearow",
"_id": "557a72aa7276d341b41eddbb"
}
]
},
{
"_id": "557a72aa7276d341b41eddae",
"pkdx_id": 22,
"national_id": 22,
"name": "Fearow",
"__v": 4,
"image_url": "http://pokeapi.co/media/img/22.png",
"description": "Fearow is recognized by its long neck and elongated beak. They are conveniently shaped for catching prey in soil or water. It deftly moves its long and skinny beak to pluck prey. Fearow is recognized by its long neck and elongated beak. They are conveniently shaped for catching prey in soil or water. It deftly moves its long and skinny beak to pluck prey.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/022.png",
"types": [
"normal",
"flying"
],
"evolutions": []
},
{
"_id": "557a72aa7276d341b41eddb6",
"pkdx_id": 23,
"national_id": 23,
"name": "Ekans",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/23.png",
"description": "Ekans curls itself up in a spiral while it rests. Assuming this position allows it to quickly respond to a threat from any direction with a glare from its upraised head. Ekans curls itself up in a spiral while it rests. Assuming this position allows it to quickly respond to a threat from any direction with a glare from its upraised head.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/023.png",
"types": [
"poison"
],
"evolutions": [
{
"level": 22,
"method": "level_up",
"to": "Arbok",
"_id": "557a72aa7276d341b41eddb7"
}
]
},
{
"_id": "557a72ac7276d341b41edddc",
"pkdx_id": 24,
"national_id": 24,
"name": "Arbok",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/24.png",
"description": "This Pokémon is terrifically strong in order to constrict things with its body. It can even flatten steel oil drums. Once Arbok wraps its body around its foe, escaping its crunching embrace is impossible. This Pokémon is terrifically strong in order to constrict things with its body. It can even flatten steel oil drums. Once Arbok wraps its body around its foe, escaping its crunching embrace is impossible.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/024.png",
"types": [
"poison"
],
"evolutions": []
},
{
"_id": "557a72a97276d341b41edda2",
"pkdx_id": 25,
"national_id": 25,
"name": "Pikachu",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/25.png",
"description": "This Pokémon has electricity-storing pouches on its cheeks. These appear to become electrically charged during the night while Pikachu sleeps. It occasionally discharges electricity when it is dozy after waking up. Whenever Pikachu comes across something new, it blasts it with a jolt of electricity. If you come across a blackened berry, it's evidence that this Pokémon mistook the intensity of its charge.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/025.png",
"types": [
"electric"
],
"evolutions": [
{
"method": "stone",
"to": "Raichu",
"_id": "557a72a97276d341b41edda3"
}
]
},
{
"_id": "557a72ab7276d341b41eddc6",
"pkdx_id": 26,
"national_id": 26,
"name": "Raichu",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/26.png",
"description": "This Pokémon exudes a weak electrical charge from all over its body that makes it take on a slight glow in darkness. Raichu plants its tail in the ground to discharge electricity. If the electrical sacs become excessively charged, Raichu plants its tail in the ground and discharges. Scorched patches of ground will be found near this Pokémon's nest.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/026.png",
"types": [
"electric"
],
"evolutions": []
},
{
"_id": "557a72ac7276d341b41eddf2",
"pkdx_id": 27,
"national_id": 27,
"name": "Sandshrew",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/27.png",
"description": "Sandshrew has a very dry hide that is extremely tough. The Pokémon can roll into a ball that repels any attack. At night, it burrows into the desert sand to sleep. Sandshrew's body is configured to absorb water without waste, enabling it to survive in an arid desert. This Pokémon curls up to protect itself from its enemies.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/027.png",
"types": [
"ground"
],
"evolutions": [
{
"level": 22,
"method": "level_up",
"to": "Sandslash",
"_id": "557a72ac7276d341b41eddf3"
}
]
},
{
"_id": "557a72ac7276d341b41edde5",
"pkdx_id": 28,
"national_id": 28,
"name": "Sandslash",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/28.png",
"description": "Sandslash can roll up its body as if it were a ball covered with large spikes. In battle, this Pokémon will try to make the foe flinch by jabbing it with its spines. It then leaps at the stunned foe to tear wildly with its sharp claws. Sandslash's body is covered by tough spikes, which are hardened sections of its hide. Once a year, the old spikes fall out, to be replaced with new spikes that grow out from beneath the old ones.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/028.png",
"types": [
"ground"
],
"evolutions": []
},
{
"_id": "557a72ac7276d341b41eddd8",
"pkdx_id": 29,
"national_id": 29,
"name": "Nidoran-f",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/29.png",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/029.png",
"description": "Nidoran has barbs that secrete a powerful poison. They are thought to have developed as protection for this small-bodied Pokémon. When enraged, it releases a horrible toxin from its horn.",
"types": [
"poison"
],
"evolutions": [
{
"level": 16,
"method": "level_up",
"to": "Nidorina",
"_id": "557a72ac7276d341b41eddd9"
}
]
},
{
"_id": "557a72d07276d341b41ee1f0",
"pkdx_id": 30,
"national_id": 30,
"name": "Nidorina",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/30.png",
"description": "When Nidorina are with their friends or family, they keep their barbs tucked away to prevent hurting each other. This Pokémon appears to become nervous if separated from the others. When Nidorina are with their friends or family, they keep their barbs tucked away to prevent hurting each other. This Pokémon appears to become nervous if separated from the others.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/030.png",
"types": [
"poison"
],
"evolutions": [
{
"method": "stone",
"to": "Nidoqueen",
"_id": "557a72d07276d341b41ee1f1"
}
]
},
{
"_id": "557a72aa7276d341b41eddb2",
"pkdx_id": 31,
"national_id": 31,
"name": "Nidoqueen",
"__v": 4,
"image_url": "http://pokeapi.co/media/img/31.png",
"description": "Nidoqueen's body is encased in extremely hard scales. It is adept at sending foes flying with harsh tackles. This Pokémon is at its strongest when it is defending its young. Nidoqueen's body is encased in extremely hard scales. It is adept at sending foes flying with harsh tackles. This Pokémon is at its strongest when it is defending its young.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/031.png",
"types": [
"poison",
"ground"
],
"evolutions": []
},
{
"_id": "557a72ad7276d341b41eddfe",
"pkdx_id": 32,
"national_id": 32,
"name": "Nidoran-m",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/32.png",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/032.png",
"description": "Nidoran has developed muscles for moving its ears. Thanks to them, the ears can be freely moved in any direction. Even the slightest sound does not escape this Pokémon's notice.",
"types": [
"poison"
],
"evolutions": [
{
"level": 16,
"method": "level_up",
"to": "Nidorino",
"_id": "557a72ad7276d341b41eddff"
}
]
},
{
"_id": "557a72ad7276d341b41ede12",
"pkdx_id": 33,
"national_id": 33,
"name": "Nidorino",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/33.png",
"description": "Nidorino has a horn that is harder than a diamond. If it senses a hostile presence, all the barbs on its back bristle up at once, and it challenges the foe with all its might. Nidorino has a horn that is harder than a diamond. If it senses a hostile presence, all the barbs on its back bristle up at once, and it challenges the foe with all its might.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/033.png",
"types": [
"poison"
],
"evolutions": [
{
"method": "stone",
"to": "Nidoking",
"_id": "557a72ad7276d341b41ede13"
}
]
},
{
"_id": "557a72ab7276d341b41eddcd",
"pkdx_id": 34,
"national_id": 34,
"name": "Nidoking",
"__v": 4,
"image_url": "http://pokeapi.co/media/img/34.png",
"description": "Nidoking's thick tail packs enormously destructive power. With one swing, it can topple a metal transmission tower. Once this Pokémon goes on a rampage, there is no stopping it. Nidoking's thick tail packs enormously destructive power. With one swing, it can topple a metal transmission tower. Once this Pokémon goes on a rampage, there is no stopping it.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/034.png",
"types": [
"poison",
"ground"
],
"evolutions": []
},
{
"_id": "557a72ab7276d341b41eddd4",
"pkdx_id": 35,
"national_id": 35,
"name": "Clefairy",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/35.png",
"description": "On every night of a full moon, groups of this Pokémon come out to play. When dawn arrives, the tired Clefairy return to their quiet mountain retreats and go to sleep nestled up against each other. On every night of a full moon, groups of this Pokémon come out to play. When dawn arrives, the tired Clefairy return to their quiet mountain retreats and go to sleep nestled up against each other.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/035.png",
"types": [
"fairy"
],
"evolutions": [
{
"method": "stone",
"to": "Clefable",
"_id": "557a72ab7276d341b41eddd5"
}
]
},
{
"_id": "557a72ab7276d341b41eddd1",
"pkdx_id": 36,
"national_id": 36,
"name": "Clefable",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/36.png",
"description": "Clefable moves by skipping lightly as if it were flying using its wings. Its bouncy step lets it even walk on water. It is known to take strolls on lakes on quiet, moonlit nights. Clefable moves by skipping lightly as if it were flying using its wings. Its bouncy step lets it even walk on water. It is known to take strolls on lakes on quiet, moonlit nights.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/036.png",
"types": [
"fairy"
],
"evolutions": []
},
{
"_id": "557a72ae7276d341b41ede2d",
"pkdx_id": 37,
"national_id": 37,
"name": "Vulpix",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/37.png",
"description": "Inside Vulpix's body burns a flame that never goes out. During the daytime, when the temperatures rise, this Pokémon releases flames from its mouth to prevent its body from growing too hot. At the time of its birth, Vulpix has one white tail. The tail separates into six if this Pokémon receives plenty of love from its Trainer. The six tails become magnificently curled.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/037.png",
"types": [
"fire"
],
"evolutions": [
{
"method": "stone",
"to": "Ninetales",
"_id": "557a72ae7276d341b41ede2e"
}
]
},
{
"_id": "557a72ab7276d341b41eddc3",
"pkdx_id": 38,
"national_id": 38,
"name": "Ninetales",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/38.png",
"description": "Legend has it that Ninetales came into being when nine wizards possessing sacred powers merged into one. This Pokémon is highly intelligent—it can understand human speech. Ninetales casts a sinister light from its bright red eyes to gain total control over its foe's mind. This Pokémon is said to live for a thousand years.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/038.png",
"types": [
"fire"
],
"evolutions": []
},
{
"_id": "557a72b07276d341b41ede4b",
"pkdx_id": 39,
"national_id": 39,
"name": "Jigglypuff",
"__v": 4,
"image_url": "http://pokeapi.co/media/img/39.png",
"description": "When this Pokémon sings, it never pauses to breathe. If it is in a battle against an opponent that does not easily fall asleep, Jigglypuff cannot breathe, endangering its life. Jigglypuff's vocal cords can freely adjust the wavelength of its voice. This Pokémon uses this ability to sing at precisely the right wavelength to make its foes most drowsy.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/039.png",
"types": [
"normal",
"fairy"
],
"evolutions": [
{
"method": "stone",
"to": "Wigglytuff",
"_id": "557a72b07276d341b41ede4c"
}
]
},
{
"_id": "557a72ac7276d341b41eddf6",
"pkdx_id": 40,
"national_id": 40,
"name": "Wigglytuff",
"__v": 4,
"image_url": "http://pokeapi.co/media/img/40.png",
"description": "Wigglytuff's body is very flexible. By inhaling deeply, this Pokémon can inflate itself seemingly without end. Once inflated, Wigglytuff bounces along lightly like a balloon. Wigglytuff has large, saucerlike eyes. The surfaces of its eyes are always covered with a thin layer of tears. If any dust gets in this Pokémon's eyes, it is quickly washed away.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/040.png",
"types": [
"normal",
"fairy"
],
"evolutions": []
},
{
"_id": "557a72b27276d341b41ede82",
"pkdx_id": 41,
"national_id": 41,
"name": "Zubat",
"__v": 4,
"image_url": "http://pokeapi.co/media/img/41.png",
"description": "Zubat avoids sunlight because exposure causes it to become unhealthy. During the daytime, it stays in caves or under the eaves of old houses, sleeping while hanging upside down. Zubat remains quietly unmoving in a dark spot during the bright daylight hours. It does so because prolonged exposure to the sun causes its body to become slightly burned.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/041.png",
"types": [
"flying",
"poison"
],
"evolutions": [
{
"level": 22,
"method": "level_up",
"to": "Golbat",
"_id": "557a72b27276d341b41ede83"
}
]
},
{
"_id": "557a72ae7276d341b41ede28",
"pkdx_id": 42,
"national_id": 42,
"name": "Golbat",
"__v": 5,
"image_url": "http://pokeapi.co/media/img/42.png",
"description": "Golbat bites down on prey with its four fangs and drinks the victim's blood. It becomes active on inky dark moonless nights, flying around to attack people and Pokémon. Golbat loves to drink the blood of living things. It is particularly active in the pitch black of night. This Pokémon flits around in the night skies, seeking fresh blood.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/042.png",
"types": [
"flying",
"poison"
],
"evolutions": [
{
"method": "other",
"to": "Crobat",
"_id": "557a72ae7276d341b41ede29"
}
]
},
{
"_id": "557a72ad7276d341b41ede16",
"pkdx_id": 43,
"national_id": 43,
"name": "Oddish",
"__v": 5,
"image_url": "http://pokeapi.co/media/img/43.png",
"description": "Oddish searches for fertile, nutrient-rich soil, then plants itself. During the daytime, while it is planted, this Pokémon's feet are thought to change shape and become similar to the roots of trees. During the daytime, Oddish buries itself in soil to absorb nutrients from the ground using its entire body. The more fertile the soil, the glossier its leaves become.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/043.png",
"types": [
"poison",
"grass"
],
"evolutions": [
{
"level": 21,
"method": "level_up",
"to": "Gloom",
"_id": "557a72ad7276d341b41ede17"
}
]
},
{
"_id": "557a72ac7276d341b41edddf",
"pkdx_id": 44,
"national_id": 44,
"name": "Gloom",
"__v": 4,
"image_url": "http://pokeapi.co/media/img/44.png",
"description": "From its mouth Gloom drips honey that smells absolutely horrible. Apparently, it loves the horrid stench. It sniffs the noxious fumes and then drools even more of its honey. Gloom releases a foul fragrance from the pistil of its flower. When faced with danger, the stench worsens. If this Pokémon is feeling calm and secure, it does not release its usual stinky aroma.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/044.png",
"types": [
"poison",
"grass"
],
"evolutions": [
{
"method": "stone",
"to": "Bellossom",
"_id": "557a72ac7276d341b41edde1"
},
{
"method": "stone",
"to": "Vileplume",
"_id": "557a72ac7276d341b41edde0"
}
]
},
{
"_id": "557a72ad7276d341b41ede02",
"pkdx_id": 45,
"national_id": 45,
"name": "Vileplume",
"__v": 4,
"image_url": "http://pokeapi.co/media/img/45.png",
"description": "Vileplume has the world's largest petals. They are used to attract prey that are then doused with toxic spores. Once the prey are immobilized, this Pokémon catches and devours them. Vileplume's toxic pollen triggers atrocious allergy attacks. That's why it is advisable never to approach any attractive flowers in a jungle, however pretty they may be.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/045.png",
"types": [
"poison",
"grass"
],
"evolutions": []
},
{
"_id": "557a72ae7276d341b41ede23",
"pkdx_id": 46,
"national_id": 46,
"name": "Paras",
"__v": 4,
"image_url": "http://pokeapi.co/media/img/46.png",
"description": "Paras has parasitic mushrooms growing on its back called tochukaso. They grow large by drawing nutrients from this Bug Pokémon host. They are highly valued as a medicine for extending life. Paras has parasitic mushrooms growing on its back called tochukaso. They grow large by drawing nutrients from this Bug Pokémon host. They are highly valued as a medicine for extending life.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/046.png",
"types": [
"bug",
"grass"
],
"evolutions": [
{
"level": 24,
"method": "level_up",
"to": "Parasect",
"_id": "557a72ae7276d341b41ede24"
}
]
},
{
"_id": "557a72af7276d341b41ede44",
"pkdx_id": 47,
"national_id": 47,
"name": "Parasect",
"__v": 5,
"image_url": "http://pokeapi.co/media/img/47.png",
"description": "Parasect is known to infest large trees en masse and drain nutrients from the lower trunk and roots. When an infested tree dies, they move onto another tree all at once. Parasect is known to infest large trees en masse and drain nutrients from the lower trunk and roots. When an infested tree dies, they move onto another tree all at once.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/047.png",
"types": [
"bug",
"grass"
],
"evolutions": []
},
{
"_id": "557a72ad7276d341b41ede06",
"pkdx_id": 48,
"national_id": 48,
"name": "Venonat",
"__v": 5,
"image_url": "http://pokeapi.co/media/img/48.png",
"description": "Venonat is said to have evolved with a coat of thin, stiff hair that covers its entire body for protection. It possesses large eyes that never fail to spot even minuscule prey. Venonat is said to have evolved with a coat of thin, stiff hair that covers its entire body for protection. It possesses large eyes that never fail to spot even minuscule prey.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/048.png",
"types": [
"poison",
"bug"
],
"evolutions": [
{
"level": 31,
"method": "level_up",
"to": "Venomoth",
"_id": "557a72ad7276d341b41ede07"
}
]
},
{
"_id": "557a72b07276d341b41ede5b",
"pkdx_id": 49,
"national_id": 49,
"name": "Venomoth",
"__v": 4,
"image_url": "http://pokeapi.co/media/img/49.png",
"description": "Venomoth is nocturnal—it is a Pokémon that only becomes active at night. Its favorite prey are small insects that gather around streetlights, attracted by the light in the darkness. Venomoth is nocturnal—it is a Pokémon that only becomes active at night. Its favorite prey are small insects that gather around streetlights, attracted by the light in the darkness.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/049.png",
"types": [
"poison",
"bug"
],
"evolutions": []
},
{
"_id": "557a72ad7276d341b41ede0e",
"pkdx_id": 50,
"national_id": 50,
"name": "Diglett",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/50.png",
"description": "Diglett are raised in most farms. The reason is simple— wherever this Pokémon burrows, the soil is left perfectly tilled for planting crops. This soil is made ideal for growing delicious vegetables. Diglett are raised in most farms. The reason is simple— wherever this Pokémon burrows, the soil is left perfectly tilled for planting crops. This soil is made ideal for growing delicious vegetables.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/050.png",
"types": [
"ground"
],
"evolutions": [
{
"level": 26,
"method": "level_up",
"to": "Dugtrio",
"_id": "557a72ad7276d341b41ede0f"
}
]
},
{
"_id": "557a72af7276d341b41ede48",
"pkdx_id": 51,
"national_id": 51,
"name": "Dugtrio",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/51.png",
"description": "Dugtrio are actually triplets that emerged from one body. As a result, each triplet thinks exactly like the other two triplets. They work cooperatively to burrow endlessly. Dugtrio are actually triplets that emerged from one body. As a result, each triplet thinks exactly like the other two triplets. They work cooperatively to burrow endlessly.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/051.png",
"types": [
"ground"
],
"evolutions": []
},
{
"_id": "557a72ae7276d341b41ede31",
"pkdx_id": 52,
"national_id": 52,
"name": "Meowth",
"__v": 3,
"image_url": "http://pokeapi.co/media/img/52.png",
"description": "Meowth withdraws its sharp claws into its paws to slinkily sneak about without making any incriminating footsteps. For some reason, this Pokémon loves shiny coins that glitter with light. Meowth withdraws its sharp claws into its paws to slinkily sneak about without making any incriminating footsteps. For some reason, this Pokémon loves shiny coins that glitter with light.",
"art_url": "http://assets22.pokemon.com/assets/cms2/img/pokedex/full/052.png",
"types": [
"normal"
],
"evolutions": [
{
"level": 28,
"method": "level_up",
"to": "Persian",
"_id": "557a72ae7276d341b41ede32"
}
]
},
{