-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpokedata.json
9011 lines (9011 loc) · 283 KB
/
pokedata.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
[
{
"name": "Charmander",
"price": 48.0,
"descript": "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.",
"tags": "Blaze, Charmander, Lizard",
"categories": "Lizard, Pokemon",
"sku": 206,
"weight": 18.7,
"length": 2,
"width": 2,
"height": 2
},
{
"name": "Bulbasaur",
"price": 63.0,
"descript": "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.",
"tags": "Bulbasaur, Overgrow, Seed",
"categories": "Pokemon, Seed",
"sku": 45,
"weight": 15.2,
"length": 2,
"width": 2,
"height": 2
},
{
"name": "Venusaur",
"price": 105.0,
"descript": "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.",
"tags": "Overgrow, Seed, Venusaur",
"categories": "Pokemon, Seed",
"sku": 30,
"weight": 220.5,
"length": 6,
"width": 6,
"height": 6
},
{
"name": "Charmeleon",
"price": 165.0,
"descript": "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.",
"tags": "Blaze, Charmeleon, Flame",
"categories": "Flame, Pokemon",
"sku": 284,
"weight": 41.9,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Wartortle",
"price": 123.0,
"descript": "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.",
"tags": "Torrent, Turtle, Wartortle",
"categories": "Pokemon, Turtle",
"sku": 24,
"weight": 49.6,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Squirtle",
"price": 130.0,
"descript": "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.",
"tags": "Squirtle, Tiny Turtle, Torrent",
"categories": "Pokemon, Tiny Turtle",
"sku": 178,
"weight": 19.8,
"length": 1,
"width": 1,
"height": 1
},
{
"name": "Ivysaur",
"price": 87.0,
"descript": "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.",
"tags": "Ivysaur, Overgrow, Seed",
"categories": "Pokemon, Seed",
"sku": 142,
"weight": 28.7,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Charizard",
"price": 156.0,
"descript": "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.",
"tags": "Blaze, Charizard, Flame",
"categories": "Flame, Pokemon",
"sku": 31,
"weight": 199.5,
"length": 5,
"width": 5,
"height": 5
},
{
"name": "Caterpie",
"price": 73.0,
"descript": "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.",
"tags": "Caterpie, Shield Dust, Worm",
"categories": "Pokemon, Worm",
"sku": 40,
"weight": 6.4,
"length": 1,
"width": 1,
"height": 1
},
{
"name": "Blastoise",
"price": 76.0,
"descript": "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.",
"tags": "Blastoise, Shellfish, Torrent",
"categories": "Pokemon, Shellfish",
"sku": 88,
"weight": 188.5,
"length": 5,
"width": 5,
"height": 5
},
{
"name": "Metapod",
"price": 148.0,
"descript": "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.",
"tags": "Cocoon, Metapod, Shed Skin",
"categories": "Cocoon, Pokemon",
"sku": 285,
"weight": 21.8,
"length": 2,
"width": 2,
"height": 2
},
{
"name": "Butterfree",
"price": 162.0,
"descript": "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.",
"tags": "Butterfly, Butterfree, Compound Eyes",
"categories": "Butterfly, Pokemon",
"sku": 242,
"weight": 70.5,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Weedle",
"price": 25.0,
"descript": "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).",
"tags": "Hairy Bug, Shield Dust, Weedle",
"categories": "Hairy Bug, Pokemon",
"sku": 65,
"weight": 7.1,
"length": 1,
"width": 1,
"height": 1
},
{
"name": "Kakuna",
"price": 148.0,
"descript": "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.",
"tags": "Cocoon, Kakuna, Shed Skin",
"categories": "Cocoon, Pokemon",
"sku": 260,
"weight": 22.0,
"length": 2,
"width": 2,
"height": 2
},
{
"name": "Beedrill",
"price": 168.0,
"descript": "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.",
"tags": "Beedrill, Poison Bee, Swarm",
"categories": "Poison Bee, Pokemon",
"sku": 125,
"weight": 65.0,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Pidgey",
"price": 159.0,
"descript": "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.",
"tags": "Keen Eye, Pidgey, Tiny Bird",
"categories": "Pokemon, Tiny Bird",
"sku": 175,
"weight": 4.0,
"length": 1,
"width": 1,
"height": 1
},
{
"name": "Pidgeotto",
"price": 84.0,
"descript": "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.",
"tags": "Bird, Keen Eye, Pidgeotto",
"categories": "Bird, Pokemon",
"sku": 120,
"weight": 66.1,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Ekans",
"price": 55.0,
"descript": "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.",
"tags": "Ekans, Shed Skin, Snake",
"categories": "Pokemon, Snake",
"sku": 120,
"weight": 15.2,
"length": 6,
"width": 6,
"height": 6
},
{
"name": "Pidgeot",
"price": 185.0,
"descript": "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.",
"tags": "Bird, Keen Eye, Pidgeot",
"categories": "Bird, Pokemon",
"sku": 90,
"weight": 87.1,
"length": 4,
"width": 4,
"height": 4
},
{
"name": "Fearow",
"price": 95.0,
"descript": "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.",
"tags": "Beak, Fearow, Keen Eye",
"categories": "Beak, Pokemon",
"sku": 276,
"weight": 83.8,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Raticate",
"price": 60.0,
"descript": "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.",
"tags": "Mouse, Raticate, Run Away",
"categories": "Mouse, Pokemon",
"sku": 204,
"weight": 40.8,
"length": 2,
"width": 2,
"height": 2
},
{
"name": "Arbok",
"price": 182.0,
"descript": "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.",
"tags": "Arbok, Cobra, Shed Skin",
"categories": "Cobra, Pokemon",
"sku": 248,
"weight": 143.3,
"length": 11,
"width": 11,
"height": 11
},
{
"name": "Pikachu",
"price": 37.0,
"descript": "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.",
"tags": "Mouse, Pikachu, Static",
"categories": "Mouse, Pokemon",
"sku": 254,
"weight": 13.2,
"length": 1,
"width": 1,
"height": 1
},
{
"name": "Rattata",
"price": 128.0,
"descript": "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.",
"tags": "Mouse, Rattata, Run Away",
"categories": "Mouse, Pokemon",
"sku": 16,
"weight": 7.7,
"length": 1,
"width": 1,
"height": 1
},
{
"name": "Spearow",
"price": 133.0,
"descript": "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.",
"tags": "Keen Eye, Spearow, Tiny Bird",
"categories": "Pokemon, Tiny Bird",
"sku": 46,
"weight": 4.4,
"length": 1,
"width": 1,
"height": 1
},
{
"name": "Raichu",
"price": 140.0,
"descript": "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.",
"tags": "Mouse, Raichu, Static",
"categories": "Mouse, Pokemon",
"sku": 215,
"weight": 66.1,
"length": 2,
"width": 2,
"height": 2
},
{
"name": "Sandshrew",
"price": 82.0,
"descript": "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.",
"tags": "Mouse, Sand Veil, Sandshrew",
"categories": "Mouse, Pokemon",
"sku": 100,
"weight": 26.5,
"length": 2,
"width": 2,
"height": 2
},
{
"name": "Sandslash",
"price": 155.0,
"descript": "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.",
"tags": "Mouse, Sand Veil, Sandslash",
"categories": "Mouse, Pokemon",
"sku": 236,
"weight": 65.0,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Nidorina",
"price": 28.0,
"descript": "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.",
"tags": "Nidorina, Poison Pin, Poison Point",
"categories": "Poison Pin, Pokemon",
"sku": 58,
"weight": 44.1,
"length": 2,
"width": 2,
"height": 2
},
{
"name": "Nidoqueen",
"price": 106.0,
"descript": "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.",
"tags": "Drill, Nidoqueen, Poison Point",
"categories": "Drill, Pokemon",
"sku": 153,
"weight": 132.3,
"length": 4,
"width": 4,
"height": 4
},
{
"name": "Nidorino",
"price": 179.0,
"descript": "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.",
"tags": "Nidorino, Poison Pin, Poison Point",
"categories": "Poison Pin, Pokemon",
"sku": 279,
"weight": 43.0,
"length": 2,
"width": 2,
"height": 2
},
{
"name": "Nidoking",
"price": 31.0,
"descript": "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.",
"tags": "Drill, Nidoking, Poison Point",
"categories": "Drill, Pokemon",
"sku": 178,
"weight": 136.7,
"length": 4,
"width": 4,
"height": 4
},
{
"name": "Wigglytuff",
"price": 130.0,
"descript": "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.",
"tags": "Balloon, Cute Charm, Wigglytuff",
"categories": "Balloon, Pokemon",
"sku": 260,
"weight": 26.5,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Ninetales",
"price": 52.0,
"descript": "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.",
"tags": "Flash Fire, Fox, Ninetales",
"categories": "Fox, Pokemon",
"sku": 215,
"weight": 43.9,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Clefable",
"price": 188.0,
"descript": "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.",
"tags": "Clefable, Cute Charm, Fairy",
"categories": "Fairy, Pokemon",
"sku": 23,
"weight": 88.2,
"length": 4,
"width": 4,
"height": 4
},
{
"name": "Jigglypuff",
"price": 61.0,
"descript": "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.",
"tags": "Balloon, Cute Charm, Jigglypuff",
"categories": "Balloon, Pokemon",
"sku": 136,
"weight": 12.1,
"length": 1,
"width": 1,
"height": 1
},
{
"name": "Vulpix",
"price": 85.0,
"descript": "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.",
"tags": "Flash Fire, Fox, Vulpix",
"categories": "Fox, Pokemon",
"sku": 268,
"weight": 21.8,
"length": 2,
"width": 2,
"height": 2
},
{
"name": "Zubat",
"price": 125.0,
"descript": "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.",
"tags": "Bat, Inner Focus, Zubat",
"categories": "Bat, Pokemon",
"sku": 154,
"weight": 16.5,
"length": 2,
"width": 2,
"height": 2
},
{
"name": "Golbat",
"price": 136.0,
"descript": "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.",
"tags": "Bat, Golbat, Inner Focus",
"categories": "Bat, Pokemon",
"sku": 52,
"weight": 121.3,
"length": 5,
"width": 5,
"height": 5
},
{
"name": "Clefairy",
"price": 160.0,
"descript": "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.",
"tags": "Clefairy, Cute Charm, Fairy",
"categories": "Fairy, Pokemon",
"sku": 86,
"weight": 16.5,
"length": 2,
"width": 2,
"height": 2
},
{
"name": "Oddish",
"price": 45.0,
"descript": "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.",
"tags": "Chlorophyll, Oddish, Weed",
"categories": "Pokemon, Weed",
"sku": 296,
"weight": 11.9,
"length": 1,
"width": 1,
"height": 1
},
{
"name": "Gloom",
"price": 178.0,
"descript": "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.",
"tags": "Chlorophyll, Gloom, Weed",
"categories": "Pokemon, Weed",
"sku": 74,
"weight": 19.0,
"length": 2,
"width": 2,
"height": 2
},
{
"name": "Vileplume",
"price": 170.0,
"descript": "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.",
"tags": "Chlorophyll, Flower, Vileplume",
"categories": "Flower, Pokemon",
"sku": 283,
"weight": 41.0,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Paras",
"price": 168.0,
"descript": "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.",
"tags": "Effect Spore, Mushroom, Paras",
"categories": "Mushroom, Pokemon",
"sku": 192,
"weight": 11.9,
"length": 1,
"width": 1,
"height": 1
},
{
"name": "Parasect",
"price": 27.0,
"descript": "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.",
"tags": "Effect Spore, Mushroom, Parasect",
"categories": "Mushroom, Pokemon",
"sku": 17,
"weight": 65.0,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Venonat",
"price": 158.0,
"descript": "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.",
"tags": "Compound Eyes, Insect, Venonat",
"categories": "Insect, Pokemon",
"sku": 177,
"weight": 66.1,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Venomoth",
"price": 53.0,
"descript": "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.",
"tags": "Poison Moth, Shield Dust, Venomoth",
"categories": "Poison Moth, Pokemon",
"sku": 22,
"weight": 27.6,
"length": 4,
"width": 4,
"height": 4
},
{
"name": "Diglett",
"price": 122.0,
"descript": "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.",
"tags": "Diglett, Mole, Sand Veil",
"categories": "Mole, Pokemon",
"sku": 227,
"weight": 1.8
},
{
"name": "Persian",
"price": 200.0,
"descript": "Persian has six bold whiskers that give it a look of toughness. The whiskers sense air movements to determine what is in the Pokémon’s surrounding vicinity. It becomes docile if grabbed by the whiskers.",
"tags": "Classy Cat, Persian, Technician",
"categories": "Classy Cat, Pokemon",
"sku": 108,
"weight": 70.5,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Mankey",
"price": 125.0,
"descript": "When Mankey starts shaking and its nasal breathing turns rough, it’s a sure sign that it is becoming angry. However, because it goes into a towering rage almost instantly, it is impossible for anyone to flee its wrath.",
"tags": "Mankey, Pig Monkey, Vital Spirit",
"categories": "Pig Monkey, Pokemon",
"sku": 209,
"weight": 61.7,
"length": 1,
"width": 1,
"height": 1
},
{
"name": "Growlithe",
"price": 30.0,
"descript": "Growlithe has a superb sense of smell. Once it smells anything, this Pokémon won’t forget the scent, no matter what. It uses its advanced olfactory sense to determine the emotions of other living things.",
"tags": "Growlithe, Intimidate, Puppy",
"categories": "Pokemon, Puppy",
"sku": 243,
"weight": 41.9,
"length": 2,
"width": 2,
"height": 2
},
{
"name": "Meowth",
"price": 131.0,
"descript": "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.",
"tags": "Meowth, Pickup, Scratch Cat",
"categories": "Pokemon, Scratch Cat",
"sku": 203,
"weight": 9.3,
"length": 1,
"width": 1,
"height": 1
},
{
"name": "Dugtrio",
"price": 111.0,
"descript": "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.",
"tags": "Dugtrio, Mole, Sand Veil",
"categories": "Mole, Pokemon",
"sku": 290,
"weight": 73.4,
"length": 2,
"width": 2,
"height": 2
},
{
"name": "Psyduck",
"price": 182.0,
"descript": "If it uses its mysterious power, Psyduck can’t remember having done so. It apparently can’t form a memory of such an event because it goes into an altered state that is much like deep sleep.",
"tags": "Damp, Duck, Psyduck",
"categories": "Duck, Pokemon",
"sku": 214,
"weight": 43.2,
"length": 2,
"width": 2,
"height": 2
},
{
"name": "Golduck",
"price": 31.0,
"descript": "Golduck is the fastest swimmer among all Pokémon. It swims effortlessly, even in a rough, stormy sea. It sometimes rescues people from wrecked ships floundering in high seas.",
"tags": "Damp, Duck, Golduck",
"categories": "Duck, Pokemon",
"sku": 278,
"weight": 168.9,
"length": 5,
"width": 5,
"height": 5
},
{
"name": "Primeape",
"price": 86.0,
"descript": "When Primeape becomes furious, its blood circulation is boosted. In turn, its muscles are made even stronger. However, it also becomes much less intelligent at the same time.",
"tags": "Pig Monkey, Primeape, Vital Spirit",
"categories": "Pig Monkey, Pokemon",
"sku": 68,
"weight": 70.5,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Arcanine",
"price": 69.0,
"descript": "Arcanine is known for its high speed. It is said to be capable of running over 6,200 miles in a single day and night. The fire that blazes wildly within this Pokémon’s body is its source of power.",
"tags": "Arcanine, Intimidate, Legendary",
"categories": "Legendary, Pokemon",
"sku": 14,
"weight": 341.7,
"length": 6,
"width": 6,
"height": 6
},
{
"name": "Poliwag",
"price": 174.0,
"descript": "Poliwag has a very thin skin. It is possible to see the Pokémon’s spiral innards right through the skin. Despite its thinness, however, the skin is also very flexible. Even sharp fangs bounce right off it.",
"tags": "Damp, Poliwag, Tadpole",
"categories": "Pokemon, Tadpole",
"sku": 217,
"weight": 27.3,
"length": 2,
"width": 2,
"height": 2
},
{
"name": "Poliwhirl",
"price": 121.0,
"descript": "The surface of Poliwhirl’s body is always wet and slick with a slimy fluid. Because of this slippery covering, it can easily slip and slide out of the clutches of any enemy in battle.",
"tags": "Damp, Poliwhirl, Tadpole",
"categories": "Pokemon, Tadpole",
"sku": 139,
"weight": 44.1,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Poliwrath",
"price": 152.0,
"descript": "Poliwrath’s highly developed, brawny muscles never grow fatigued, however much it exercises. It is so tirelessly strong, this Pokémon can swim back and forth across the ocean without effort.",
"tags": "Damp, Poliwrath, Tadpole",
"categories": "Pokemon, Tadpole",
"sku": 216,
"weight": 119.0,
"length": 4,
"width": 4,
"height": 4
},
{
"name": "Abra",
"price": 141.0,
"descript": "Abra needs to sleep for eighteen hours a day. If it doesn’t, this Pokémon loses its ability to use telekinetic powers. If it is attacked, Abra escapes using Teleport while it is still sleeping.",
"tags": "Abra, Inner Focus, Psi",
"categories": "Pokemon, Psi",
"sku": 116,
"weight": 43.0,
"length": 2,
"width": 2,
"height": 2
},
{
"name": "Kadabra",
"price": 129.0,
"descript": "Kadabra holds a silver spoon in its hand. The spoon is used to amplify the alpha waves in its brain. Without the spoon, the Pokémon is said to be limited to half the usual amount of its telekinetic powers.",
"tags": "Inner Focus, Kadabra, Psi",
"categories": "Pokemon, Psi",
"sku": 195,
"weight": 124.6,
"length": 4,
"width": 4,
"height": 4
},
{
"name": "Alakazam",
"price": 40.0,
"descript": "Alakazam’s brain continually grows, infinitely multiplying brain cells. This amazing brain gives this Pokémon an astoundingly high IQ of 5,000. It has a thorough memory of everything that has occurred in the world.",
"tags": "Alakazam, Inner Focus, Psi",
"categories": "Pokemon, Psi",
"sku": 142,
"weight": 105.8,
"length": 4,
"width": 4,
"height": 4
},
{
"name": "Machop",
"price": 166.0,
"descript": "Machop exercises by hefting around a Graveler as if it were a barbell. There are some Machop that travel the world in a quest to master all kinds of martial arts.",
"tags": "Guts, Machop, Superpower",
"categories": "Pokemon, Superpower",
"sku": 173,
"weight": 43.0,
"length": 2,
"width": 2,
"height": 2
},
{
"name": "Machoke",
"price": 27.0,
"descript": "Machoke undertakes bodybuilding every day even as it helps people with tough, physically demanding labor. On its days off, this Pokémon heads to the fields and mountains to exercise and train.",
"tags": "Guts, Machoke, Superpower",
"categories": "Pokemon, Superpower",
"sku": 10,
"weight": 155.4,
"length": 4,
"width": 4,
"height": 4
},
{
"name": "Tentacool",
"price": 186.0,
"descript": "Tentacool absorbs sunlight and refracts it using water inside its body to convert it into beam energy. This Pokémon shoots beams from the small round organ above its eyes.",
"tags": "Clear Body, Jellyfish, Tentacool",
"categories": "Jellyfish, Pokemon",
"sku": 66,
"weight": 100.3,
"length": 2,
"width": 2,
"height": 2
},
{
"name": "Bellsprout",
"price": 74.0,
"descript": "Bellsprout’s thin and flexible body lets it bend and sway to avoid any attack, however strong it may be. From its mouth, this Pokémon spits a corrosive fluid that melts even iron.",
"tags": "Bellsprout, Chlorophyll, Flower",
"categories": "Flower, Pokemon",
"sku": 257,
"weight": 8.8,
"length": 2,
"width": 2,
"height": 2
},
{
"name": "Weepinbell",
"price": 26.0,
"descript": "Weepinbell has a large hook on its rear end. At night, the Pokémon hooks on to a tree branch and goes to sleep. If it moves around in its sleep, it may wake up to find itself on the ground.",
"tags": "Chlorophyll, Flycatcher, Weepinbell",
"categories": "Flycatcher, Pokemon",
"sku": 46,
"weight": 14.1,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Victreebel",
"price": 68.0,
"descript": "Victreebel has a long vine that extends from its head. This vine is waved and flicked about as if it were an animal to attract prey. When an unsuspecting prey draws near, this Pokémon swallows it whole.",
"tags": "Chlorophyll, Flycatcher, Victreebel",
"categories": "Flycatcher, Pokemon",
"sku": 119,
"weight": 34.2,
"length": 5,
"width": 5,
"height": 5
},
{
"name": "Geodude",
"price": 32.0,
"descript": "When Geodude sleeps deeply, it buries itself halfway into the ground. It will not awaken even if hikers step on it unwittingly. In the morning, this Pokémon rolls downhill in search of food.",
"tags": "Geodude, Rock, Rock Head",
"categories": "Pokemon, Rock",
"sku": 77,
"weight": 44.1,
"length": 1,
"width": 1,
"height": 1
},
{
"name": "Machamp",
"price": 121.0,
"descript": "Machamp is known as the Pokémon that has mastered every kind of martial arts. If it grabs hold of the foe with its four arms, the battle is all but over. The hapless foe is thrown far over the horizon.",
"tags": "Guts, Machamp, Superpower",
"categories": "Pokemon, Superpower",
"sku": 242,
"weight": 286.6,
"length": 5,
"width": 5,
"height": 5
},
{
"name": "Tentacruel",
"price": 65.0,
"descript": "Tentacruel has tentacles that can be freely elongated and shortened at will. It ensnares prey with its tentacles and weakens the prey by dosing it with a harsh toxin. It can catch up to 80 prey at the same time.",
"tags": "Clear Body, Jellyfish, Tentacruel",
"categories": "Jellyfish, Pokemon",
"sku": 175,
"weight": 121.3,
"length": 5,
"width": 5,
"height": 5
},
{
"name": "Golem",
"price": 103.0,
"descript": "Golem is known for rolling down from mountains. To prevent them from rolling into the homes of people downhill, grooves have been dug into the sides of mountains to serve as guideways for diverting this Pokémon’s course.",
"tags": "Golem, Megaton, Rock Head",
"categories": "Megaton, Pokemon",
"sku": 151,
"weight": 661.4,
"length": 4,
"width": 4,
"height": 4
},
{
"name": "Graveler",
"price": 182.0,
"descript": "Rocks are Graveler’s favorite food. This Pokémon will climb a mountain from the base to the summit, crunchingly feasting on rocks all the while. Upon reaching the peak, it rolls back down to the bottom.",
"tags": "Graveler, Rock, Rock Head",
"categories": "Pokemon, Rock",
"sku": 86,
"weight": 231.5,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Ponyta",
"price": 53.0,
"descript": "Ponyta is very weak at birth. It can barely stand up. This Pokémon becomes stronger by stumbling and falling to keep up with its parent.",
"tags": "Fire Horse, Ponyta, Run Away",
"categories": "Fire Horse, Pokemon",
"sku": 41,
"weight": 66.1,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Rapidash",
"price": 98.0,
"descript": "Rapidash usually can be seen casually cantering in the fields and plains. However, when this Pokémon turns serious, its fiery manes flare and blaze as it gallops its way up to 150 mph.",
"tags": "Fire Horse, Rapidash, Run Away",
"categories": "Fire Horse, Pokemon",
"sku": 194,
"weight": 209.4,
"length": 5,
"width": 5,
"height": 5
},
{
"name": "Slowpoke",
"price": 109.0,
"descript": "Slowpoke uses its tail to catch prey by dipping it in water at the side of a river. However, this Pokémon often forgets what it’s doing and often spends entire days just loafing at water’s edge.",
"tags": "Dopey, Oblivious, Slowpoke",
"categories": "Dopey, Pokemon",
"sku": 57,
"weight": 79.4,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Slowbro",
"price": 179.0,
"descript": "Slowbro’s tail has a Shellder firmly attached with a bite. As a result, the tail can’t be used for fishing anymore. This causes Slowbro to grudgingly swim and catch prey instead.",
"tags": "Hermit Crab, Oblivious, Slowbro",
"categories": "Hermit Crab, Pokemon",
"sku": 289,
"weight": 173.1,
"length": 5,
"width": 5,
"height": 5
},
{
"name": "Magnemite",
"price": 100.0,
"descript": "Magnemite floats in the air by emitting electromagnetic waves from the units at its sides. These waves block gravity. This Pokémon becomes incapable of flight if its internal electrical supply is depleted.",
"tags": "Magnemite, Magnet, Sturdy",
"categories": "Magnet, Pokemon",
"sku": 16,
"weight": 13.2,
"length": 1,
"width": 1,
"height": 1
},
{
"name": "Magneton",
"price": 191.0,
"descript": "Magneton emits a powerful magnetic force that is fatal to electronics and precision instruments. Because of this, it is said that some towns warn people to keep this Pokémon inside a Poké Ball.",
"tags": "Magnet, Magneton, Sturdy",
"categories": "Magnet, Pokemon",
"sku": 152,
"weight": 132.3,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Dewgong",
"price": 70.0,
"descript": "Dewgong loves to snooze on bitterly cold ice. The sight of this Pokémon sleeping on a glacier was mistakenly thought to be a mermaid by a mariner long ago.",
"tags": "Dewgong, Sea Lion, Thick Fat",
"categories": "Pokemon, Sea Lion",
"sku": 62,
"weight": 264.6,
"length": 5,
"width": 5,
"height": 5
},
{
"name": "Seel",
"price": 164.0,
"descript": "Seel hunts for prey in the frigid sea underneath sheets of ice. When it needs to breathe, it punches a hole through the ice with the sharply protruding section of its head.",
"tags": "Sea Lion, Seel, Thick Fat",
"categories": "Pokemon, Sea Lion",
"sku": 250,
"weight": 198.4,
"length": 3,
"width": 3,
"height": 3
},
{
"name": "Shellder",
"price": 138.0,
"descript": "At night, this Pokémon uses its broad tongue to burrow a hole in the seafloor sand and then sleep in it. While it is sleeping, Shellder closes its shell, but leaves its tongue hanging out.",
"tags": "Bivalve, Shell Armor, Shellder",
"categories": "Bivalve, Pokemon",
"sku": 23,
"weight": 8.8,
"length": 1,
"width": 1,
"height": 1
},
{
"name": "Farfetchd",
"price": 185.0,
"descript": "Farfetch’d is always seen with a stalk from a plant of some sort. Apparently, there are good stalks and bad stalks. This Pokémon has been known to fight with others over stalks.",
"tags": "Farfetchd, Keen Eye, Wild Duck",
"categories": "Pokemon, Wild Duck",