-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpokemon.json
5123 lines (5123 loc) · 110 KB
/
pokemon.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
[
{
"colorHex": "#399494",
"types": [
"grass",
"poison"
],
"strengths": [
"water",
"fairy"
],
"weaknesses": [
"fire",
"flying",
"ice",
"psychic"
],
"name": "Bulbasaur",
"number": 1,
"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.",
"maxCP": 1071,
"maxHP": 82,
"attack": 126,
"defense": 126,
"stamina": 90,
"egg": 2,
"rarity": "Uncommon",
"spawnRate": 61,
"rankingHP": 114,
"rankingCP": 110,
"evolution": [
{
"number": 2,
"candies": 25
}
],
"involution": 1
},
{
"colorHex": "#399494",
"types": [
"grass",
"poison"
],
"strengths": [
"water",
"fairy"
],
"weaknesses": [
"fire",
"flying",
"ice",
"psychic"
],
"name": "Ivysaur",
"number": 2,
"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.",
"maxCP": 1632,
"maxHP": 106,
"attack": 156,
"defense": 158,
"stamina": 120,
"egg": null,
"rarity": "Rare",
"spawnRate": 421,
"rankingHP": 76,
"rankingCP": 73,
"evolution": [
{
"number": 3,
"candies": 100
}
],
"involution": 1
},
{
"colorHex": "#399494",
"types": [
"grass",
"poison"
],
"strengths": [
"water",
"fairy"
],
"weaknesses": [
"fire",
"flying",
"ice",
"psychic"
],
"name": "Venusaur",
"number": 3,
"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.",
"maxCP": 2580,
"maxHP": 138,
"attack": 198,
"defense": 200,
"stamina": 160,
"egg": null,
"rarity": "Very Rare",
"spawnRate": 641,
"rankingHP": 34,
"rankingCP": 18,
"evolution": [],
"involution": 1
},
{
"colorHex": "#FF9441",
"types": [
"fire"
],
"strengths": [
"bug",
"steel",
"grass",
"ice"
],
"weaknesses": [
"ground",
"rock",
"water"
],
"name": "Charmander",
"number": 4,
"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.",
"maxCP": 955,
"maxHP": 73,
"attack": 128,
"defense": 108,
"stamina": 78,
"egg": 2,
"rarity": "Rare",
"spawnRate": 119,
"rankingHP": 132,
"rankingCP": 116,
"evolution": [
{
"number": 5,
"candies": 25
}
],
"involution": 4
},
{
"colorHex": "#CD3939",
"types": [
"fire"
],
"strengths": [
"bug",
"steel",
"grass",
"ice"
],
"weaknesses": [
"ground",
"rock",
"water"
],
"name": "Charmeleon",
"number": 5,
"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.",
"maxCP": 1557,
"maxHP": 103,
"attack": 160,
"defense": 140,
"stamina": 116,
"egg": null,
"rarity": "Very Rare",
"spawnRate": 1025,
"rankingHP": 89,
"rankingCP": 77,
"evolution": [
{
"number": 6,
"candies": 100
}
],
"involution": 4
},
{
"colorHex": "#FF9441",
"types": [
"fire",
"flying"
],
"strengths": [
"bug",
"fighting",
"grass",
"ice"
],
"weaknesses": [
"rock",
"electric",
"water"
],
"name": "Charizard",
"number": 6,
"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.",
"maxCP": 2602,
"maxHP": 135,
"attack": 212,
"defense": 182,
"stamina": 156,
"egg": null,
"rarity": "Very Rare",
"spawnRate": 879,
"rankingHP": 41,
"rankingCP": 14,
"evolution": [],
"involution": 4
},
{
"colorHex": "#5596AF",
"types": [
"water"
],
"strengths": [
"rock",
"ground",
"fire"
],
"weaknesses": [
"electric",
"grass"
],
"name": "Squirtle",
"number": 7,
"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.",
"maxCP": 1008,
"maxHP": 81,
"attack": 112,
"defense": 142,
"stamina": 88,
"egg": 2,
"rarity": "Uncommon",
"spawnRate": 65,
"rankingHP": 117,
"rankingCP": 112,
"evolution": [
{
"number": 8,
"candies": 25
}
],
"involution": 7
},
{
"colorHex": "#627BC5",
"types": [
"water"
],
"strengths": [
"rock",
"ground",
"fire"
],
"weaknesses": [
"electric",
"grass"
],
"name": "Wartortle",
"number": 8,
"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.",
"maxCP": 1582,
"maxHP": 105,
"attack": 144,
"defense": 176,
"stamina": 118,
"egg": null,
"rarity": "Rare",
"spawnRate": 484,
"rankingHP": 88,
"rankingCP": 76,
"evolution": [
{
"number": 9,
"candies": 100
}
],
"involution": 7
},
{
"colorHex": "#2062AC",
"types": [
"water"
],
"strengths": [
"rock",
"ground",
"fire"
],
"weaknesses": [
"electric",
"grass"
],
"name": "Blastoise",
"number": 9,
"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.",
"maxCP": 2542,
"maxHP": 136,
"attack": 186,
"defense": 222,
"stamina": 158,
"egg": null,
"rarity": "Very Rare",
"spawnRate": 843,
"rankingHP": 40,
"rankingCP": 19,
"evolution": [],
"involution": 7
},
{
"colorHex": "#76A839",
"types": [
"bug"
],
"strengths": [
"grass",
"psychic",
"dark"
],
"weaknesses": [
"fire",
"flying",
"rock"
],
"name": "Caterpie",
"number": 10,
"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.",
"maxCP": 443,
"maxHP": 82,
"attack": 62,
"defense": 66,
"stamina": 90,
"egg": 2,
"rarity": "Uncommon",
"spawnRate": 51,
"rankingHP": 113,
"rankingCP": 150,
"evolution": [
{
"number": 11,
"candies": 12
}
],
"involution": 10
},
{
"colorHex": "#76A839",
"types": [
"bug"
],
"strengths": [
"grass",
"psychic",
"dark"
],
"weaknesses": [
"fire",
"flying",
"rock"
],
"name": "Metapod",
"number": 11,
"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.",
"maxCP": 477,
"maxHP": 90,
"attack": 56,
"defense": 86,
"stamina": 100,
"egg": null,
"rarity": "Rare",
"spawnRate": 433,
"rankingHP": 107,
"rankingCP": 147,
"evolution": [
{
"number": 12,
"candies": 50
}
],
"involution": 10
},
{
"colorHex": "#4B4368",
"types": [
"bug",
"flying"
],
"strengths": [
"bug",
"grass",
"psychic",
"dark"
],
"weaknesses": [
"rock",
"electric",
"fire",
"flying",
"ice"
],
"name": "Butterfree",
"number": 12,
"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.",
"maxCP": 1454,
"maxHP": 106,
"attack": 144,
"defense": 144,
"stamina": 120,
"egg": null,
"rarity": "Very Rare",
"spawnRate": 843,
"rankingHP": 78,
"rankingCP": 82,
"evolution": [],
"involution": 10
},
{
"colorHex": "#BD9452",
"types": [
"bug",
"poison"
],
"strengths": [
"grass",
"psychic",
"dark"
],
"weaknesses": [
"fire",
"flying",
"psychic",
"rock"
],
"name": "Weedle",
"number": 13,
"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).",
"maxCP": 449,
"maxHP": 75,
"attack": 68,
"defense": 64,
"stamina": 80,
"egg": 2,
"rarity": "Common",
"spawnRate": 21,
"rankingHP": 125,
"rankingCP": 149,
"evolution": [
{
"number": 14,
"candies": 12
}
],
"involution": 13
},
{
"colorHex": "#FFCD4A",
"types": [
"bug",
"poison"
],
"strengths": [
"grass",
"psychic",
"dark"
],
"weaknesses": [
"fire",
"flying",
"psychic",
"rock"
],
"name": "Kakuna",
"number": 14,
"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.",
"maxCP": 485,
"maxHP": 82,
"attack": 62,
"defense": 82,
"stamina": 90,
"egg": null,
"rarity": "Rare",
"spawnRate": 204,
"rankingHP": 111,
"rankingCP": 146,
"evolution": [
{
"number": 15,
"candies": 50
}
],
"involution": 13
},
{
"colorHex": "#FFCD4A",
"types": [
"bug",
"poison"
],
"strengths": [
"grass",
"psychic",
"dark"
],
"weaknesses": [
"fire",
"flying",
"psychic",
"rock"
],
"name": "Beedrill",
"number": 15,
"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.",
"maxCP": 1439,
"maxHP": 114,
"attack": 144,
"defense": 130,
"stamina": 130,
"egg": null,
"rarity": "Rare",
"spawnRate": 377,
"rankingHP": 63,
"rankingCP": 84,
"evolution": [],
"involution": 13
},
{
"colorHex": "#A4625A",
"types": [
"normal",
"flying"
],
"strengths": [
"fighting",
"bug",
"grass"
],
"weaknesses": [
"electric",
"ice",
"rock"
],
"name": "Pidgey",
"number": 16,
"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.",
"maxCP": 679,
"maxHP": 75,
"attack": 94,
"defense": 90,
"stamina": 80,
"egg": 2,
"rarity": "Common",
"spawnRate": 10,
"rankingHP": 127,
"rankingCP": 141,
"evolution": [
{
"number": 17,
"candies": 12
}
],
"involution": 16
},
{
"colorHex": "#C53129",
"types": [
"normal",
"flying"
],
"strengths": [
"fighting",
"bug",
"grass"
],
"weaknesses": [
"electric",
"ice",
"rock"
],
"name": "Pidgeotto",
"number": 17,
"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.",
"maxCP": 1223,
"maxHP": 111,
"attack": 126,
"defense": 122,
"stamina": 126,
"egg": null,
"rarity": "Uncommon",
"spawnRate": 75,
"rankingHP": 70,
"rankingCP": 93,
"evolution": [
{
"number": 18,
"candies": 50
}
],
"involution": 16
},
{
"colorHex": "#C53129",
"types": [
"normal",
"flying"
],
"strengths": [
"fighting",
"bug",
"grass"
],
"weaknesses": [
"electric",
"ice",
"rock"
],
"name": "Pidgeot",
"number": 18,
"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.",
"maxCP": 2091,
"maxHP": 143,
"attack": 170,
"defense": 166,
"stamina": 166,
"egg": null,
"rarity": "Rare",
"spawnRate": 203,
"rankingHP": 28,
"rankingCP": 44,
"evolution": [],
"involution": 16
},
{
"colorHex": "#9C73A4",
"types": [
"normal"
],
"strengths": [],
"weaknesses": [
"fighting"
],
"name": "Rattata",
"number": 19,
"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.",
"maxCP": 581,
"maxHP": 59,
"attack": 92,
"defense": 86,
"stamina": 60,
"egg": 2,
"rarity": "Common",
"spawnRate": 13,
"rankingHP": 141,
"rankingCP": 145,
"evolution": [
{
"number": 20,
"candies": 25
}
],
"involution": 19
},
{
"colorHex": "#947B52",
"types": [
"normal"
],
"strengths": [],
"weaknesses": [
"fighting"
],
"name": "Raticate",
"number": 20,
"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.",
"maxCP": 1444,
"maxHP": 98,
"attack": 146,
"defense": 150,
"stamina": 110,
"egg": null,
"rarity": "Rare",
"spawnRate": 159,
"rankingHP": 91,
"rankingCP": 83,
"evolution": [],
"involution": 19
},
{
"colorHex": "#A46A6A",
"types": [
"normal",
"flying"
],
"strengths": [
"fighting",
"bug",
"grass"
],
"weaknesses": [
"electric",
"ice",
"rock"
],
"name": "Spearow",
"number": 21,
"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.",
"maxCP": 686,
"maxHP": 75,
"attack": 102,
"defense": 78,
"stamina": 80,
"egg": 2,
"rarity": "Uncommon",
"spawnRate": 31,
"rankingHP": 119,
"rankingCP": 140,
"evolution": [
{
"number": 22,
"candies": 50
}
],
"involution": 21
},
{
"colorHex": "#7B6262",
"types": [
"normal",
"flying"
],
"strengths": [
"fighting",
"bug",
"grass"
],
"weaknesses": [
"electric",
"ice",
"rock"
],
"name": "Fearow",
"number": 22,
"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.",
"maxCP": 1746,
"maxHP": 114,
"attack": 168,
"defense": 146,
"stamina": 130,
"egg": null,
"rarity": "Rare",
"spawnRate": 221,
"rankingHP": 56,
"rankingCP": 64,
"evolution": [],
"involution": 21
},
{
"colorHex": "#7B527B",
"types": [
"poison"
],
"strengths": [
"grass",
"fairy"
],
"weaknesses": [
"ground",
"psychic"
],
"name": "Ekans",
"number": 23,
"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.",
"maxCP": 824,
"maxHP": 67,
"attack": 112,
"defense": 112,
"stamina": 70,
"egg": 5,
"rarity": "Uncommon",
"spawnRate": 75,
"rankingHP": 135,
"rankingCP": 132,
"evolution": [
{
"number": 24,
"candies": 50
}
],
"involution": 23
},
{
"colorHex": "#837B94",
"types": [
"poison"
],
"strengths": [
"grass",
"fairy"
],
"weaknesses": [
"ground",
"psychic"
],
"name": "Arbok",
"number": 24,
"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.",
"maxCP": 1767,
"maxHP": 106,
"attack": 166,
"defense": 166,
"stamina": 120,
"egg": null,
"rarity": "Very Rare",
"spawnRate": 544,
"rankingHP": 87,
"rankingCP": 60,
"evolution": [],
"involution": 23
},
{
"colorHex": "#F6BD20",
"types": [
"electric"
],
"strengths": [
"flying",
"water"
],
"weaknesses": [
"ground"
],
"name": "Pikachu",
"number": 25,
"description": "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.",
"maxCP": 887,
"maxHP": 67,
"attack": 124,
"defense": 108,
"stamina": 70,
"egg": 2,
"rarity": "Uncommon",
"spawnRate": 92,
"rankingHP": 136,
"rankingCP": 123,
"evolution": [
{
"number": 26,
"candies": 50
}
],
"involution": 25
},
{
"colorHex": "#F6AC29",
"types": [
"electric"
],
"strengths": [
"flying",
"water"
],
"weaknesses": [
"ground"
],
"name": "Raichu",
"number": 26,
"description": "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.",
"maxCP": 2028,
"maxHP": 106,
"attack": 200,
"defense": 154,
"stamina": 120,
"egg": null,
"rarity": "Ultra Rare",
"spawnRate": 2051,
"rankingHP": 80,
"rankingCP": 50,
"evolution": [],
"involution": 25
},
{
"colorHex": "#AC9C62",
"types": [
"ground"
],
"strengths": [
"poison",
"rock",
"steel",
"fire",
"electric"
],
"weaknesses": [
"grass",
"ice",
"water"
],
"name": "Sandshrew",
"number": 27,
"description": "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.",
"maxCP": 798,
"maxHP": 90,
"attack": 90,
"defense": 114,
"stamina": 100,
"egg": 5,
"rarity": "Rare",
"spawnRate": 163,
"rankingHP": 106,
"rankingCP": 135,
"evolution": [
{
"number": 28,
"candies": 50
}
],
"involution": 27
},
{
"colorHex": "#AC944A",
"types": [
"ground"
],
"strengths": [
"poison",
"rock",
"steel",
"fire",
"electric"
],
"weaknesses": [
"grass",
"ice",
"water"
],
"name": "Sandslash",
"number": 28,
"description": "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.",
"maxCP": 1810,
"maxHP": 130,
"attack": 150,
"defense": 172,
"stamina": 150,
"egg": null,
"rarity": "Ultra Rare",
"spawnRate": 1619,
"rankingHP": 42,
"rankingCP": 59,
"evolution": [],
"involution": 27
},
{
"colorHex": "#8383AC",
"types": [
"poison"
],
"strengths": [
"grass",
"fairy"
],
"weaknesses": [
"ground",
"psychic"
],
"name": "Nidoran♀",
"number": 29,
"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.",
"maxCP": 876,
"maxHP": 98,
"attack": 100,
"defense": 104,
"stamina": 110,
"egg": 5,
"rarity": "Uncommon",
"spawnRate": 77,
"rankingHP": 93,
"rankingCP": 125,
"evolution": [
{
"number": 30,
"candies": 25
}
],
"involution": 29
},
{
"colorHex": "#62839C",
"types": [
"poison"
],
"strengths": [
"grass",
"fairy"
],
"weaknesses": [
"ground",