-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathindex.html
7264 lines (7257 loc) · 487 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>List of Pokémon (sprites gallery) | Pokémon Database</title>
<link rel="preconnect" href="https://fonts.gstatic.com/">
<link rel="preconnect" href="https://img.pokemondb.net/">
<link rel="stylesheet"
href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:description" name="description"
content="A simple list of all 890 Pokémon by National Dex number, with images.">
<link rel="canonical" href="https://pokemondb.net/pokedex/national">
<meta property="og:url" content="https://pokemondb.net/pokedex/national">
<meta property="og:title" content="List of Pokémon (sprites gallery)">
<meta name="twitter:card" content="summary">
<link rel="shortcut icon" type="image/x-icon" href="https://pokemondb.net/favicon.ico">
<link rel="apple-touch-icon-precomposed" href="https://pokemondb.net/apple-touch-icon-precomposed.png">
<link rel="alternate" type="application/rss+xml" href="https://pokemondb.net/news/feed"
title="The Pokémon Database newsfeed">
<script defer src="scripts.js"></script>
</head>
<body>
<header class="main-header">
<div class="grid-container">
<a class="header-logo" href="https://pokemondb.net/">Pokémon Database</a>
</div>
</header>
<main class="main-content grid-container">
<h1>List of Pokémon</h1>
<ul class="list-nav panel panel-nav">
<li class="list-nav-title">Jump to</li>
<li><a href="#gen-1">Generation 1</a></li>
<li><a href="#gen-2">Generation 2</a></li>
<li><a href="#gen-3">Generation 3</a></li>
<li><a href="#gen-4">Generation 4</a></li>
<li><a href="#gen-5">Generation 5</a></li>
<li><a href="#gen-6">Generation 6</a></li>
<li><a href="#gen-7">Generation 7</a></li>
<li><a href="#gen-8">Generation 8</a></li>
</ul>
<div class="panel panel-intro">
<p>This is the complete <strong>National Pokédex</strong> for Generation 8,
which lists every one of the 890 Pokémon discovered so far.</p>
<p>Click a Pokémon's name to see its detailed Pokédex page, or click a type to see other pokemon of the same
type. See also:
<a href="https://pokemondb.net/pokedex/all">Pokédex with stats</a>.</p>
</div>
<hr>
<h2 id="gen-1">Generation 1 Pokémon</h2>
<div class="infocard-list infocard-list-pkmn-lg">
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/bulbasaur"><img
class="img-fixed img-sprite"
src="assets/bulbasaur.png"
alt="Bulbasaur sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#001</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/bulbasaur">Bulbasaur</a><br> <small><a
href="https://pokemondb.net/type/grass" class="itype grass">Grass</a> · <a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/ivysaur"><img
class="img-fixed img-sprite"
src="assets/ivysaur.png"
alt="Ivysaur sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#002</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/ivysaur">Ivysaur</a><br> <small><a
href="https://pokemondb.net/type/grass" class="itype grass">Grass</a> · <a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/venusaur"><img
class="img-fixed img-sprite"
src="assets/venusaur.png"
alt="Venusaur sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#003</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/venusaur">Venusaur</a><br> <small><a
href="https://pokemondb.net/type/grass" class="itype grass">Grass</a> · <a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/charmander"><img
class="img-fixed img-sprite"
src="assets/charmander.png"
alt="Charmander sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#004</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/charmander">Charmander</a><br> <small><a
href="https://pokemondb.net/type/fire" class="itype fire">Fire</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/charmeleon"><img
class="img-fixed img-sprite"
src="assets/charmeleon.png"
alt="Charmeleon sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#005</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/charmeleon">Charmeleon</a><br> <small><a
href="https://pokemondb.net/type/fire" class="itype fire">Fire</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/charizard"><img
class="img-fixed img-sprite"
src="assets/charizard.png"
alt="Charizard sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#006</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/charizard">Charizard</a><br> <small><a
href="https://pokemondb.net/type/fire" class="itype fire">Fire</a> · <a
href="https://pokemondb.net/type/flying" class="itype flying">Flying</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/squirtle"><img
class="img-fixed img-sprite"
src="assets/squirtle.png"
alt="Squirtle sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#007</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/squirtle">Squirtle</a><br> <small><a
href="https://pokemondb.net/type/water" class="itype water">Water</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/wartortle"><img
class="img-fixed img-sprite"
src="assets/wartortle.png"
alt="Wartortle sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#008</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/wartortle">Wartortle</a><br> <small><a
href="https://pokemondb.net/type/water" class="itype water">Water</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/blastoise"><img
class="img-fixed img-sprite"
src="assets/blastoise.png"
alt="Blastoise sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#009</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/blastoise">Blastoise</a><br> <small><a
href="https://pokemondb.net/type/water" class="itype water">Water</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/caterpie"><img
class="img-fixed img-sprite"
src="assets/caterpie.png"
alt="Caterpie sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#010</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/caterpie">Caterpie</a><br> <small><a
href="https://pokemondb.net/type/bug" class="itype bug">Bug</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/metapod"><img
class="img-fixed img-sprite"
src="assets/metapod.png"
alt="Metapod sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#011</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/metapod">Metapod</a><br> <small><a
href="https://pokemondb.net/type/bug" class="itype bug">Bug</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/butterfree"><img
class="img-fixed img-sprite"
src="assets/butterfree.png"
alt="Butterfree sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#012</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/butterfree">Butterfree</a><br> <small><a
href="https://pokemondb.net/type/bug" class="itype bug">Bug</a> · <a
href="https://pokemondb.net/type/flying" class="itype flying">Flying</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/weedle"><img
class="img-fixed img-sprite"
src="assets/weedle.png"
alt="Weedle sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#013</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/weedle">Weedle</a><br> <small><a
href="https://pokemondb.net/type/bug" class="itype bug">Bug</a> · <a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/kakuna"><img
class="img-fixed img-sprite"
src="assets/kakuna.png"
alt="Kakuna sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#014</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/kakuna">Kakuna</a><br> <small><a
href="https://pokemondb.net/type/bug" class="itype bug">Bug</a> · <a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/beedrill"><img
class="img-fixed img-sprite"
src="assets/beedrill.png"
alt="Beedrill sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#015</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/beedrill">Beedrill</a><br> <small><a
href="https://pokemondb.net/type/bug" class="itype bug">Bug</a> · <a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/pidgey"><img
class="img-fixed img-sprite"
src="assets/pidgey.png"
alt="Pidgey sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#016</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/pidgey">Pidgey</a><br> <small><a
href="https://pokemondb.net/type/normal" class="itype normal">Normal</a> · <a
href="https://pokemondb.net/type/flying" class="itype flying">Flying</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/pidgeotto"><img
class="img-fixed img-sprite"
src="assets/pidgeotto.png"
alt="Pidgeotto sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#017</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/pidgeotto">Pidgeotto</a><br> <small><a
href="https://pokemondb.net/type/normal" class="itype normal">Normal</a> · <a
href="https://pokemondb.net/type/flying" class="itype flying">Flying</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/pidgeot"><img
class="img-fixed img-sprite"
src="assets/pidgeot.png"
alt="Pidgeot sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#018</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/pidgeot">Pidgeot</a><br> <small><a
href="https://pokemondb.net/type/normal" class="itype normal">Normal</a> · <a
href="https://pokemondb.net/type/flying" class="itype flying">Flying</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/rattata"><img
class="img-fixed img-sprite"
src="assets/rattata.png"
alt="Rattata sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#019</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/rattata">Rattata</a><br> <small><a
href="https://pokemondb.net/type/normal" class="itype normal">Normal</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/raticate"><img
class="img-fixed img-sprite"
src="assets/raticate.png"
alt="Raticate sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#020</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/raticate">Raticate</a><br> <small><a
href="https://pokemondb.net/type/normal" class="itype normal">Normal</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/spearow"><img
class="img-fixed img-sprite"
src="assets/spearow.png"
alt="Spearow sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#021</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/spearow">Spearow</a><br> <small><a
href="https://pokemondb.net/type/normal" class="itype normal">Normal</a> · <a
href="https://pokemondb.net/type/flying" class="itype flying">Flying</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/fearow"><img
class="img-fixed img-sprite"
src="assets/fearow.png"
alt="Fearow sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#022</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/fearow">Fearow</a><br> <small><a
href="https://pokemondb.net/type/normal" class="itype normal">Normal</a> · <a
href="https://pokemondb.net/type/flying" class="itype flying">Flying</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/ekans"><img
class="img-fixed img-sprite"
src="assets/ekans.png"
alt="Ekans sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#023</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/ekans">Ekans</a><br> <small><a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/arbok"><img
class="img-fixed img-sprite"
src="assets/arbok.png"
alt="Arbok sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#024</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/arbok">Arbok</a><br> <small><a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/pikachu"><img
class="img-fixed img-sprite"
src="assets/pikachu.png"
alt="Pikachu sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#025</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/pikachu">Pikachu</a><br> <small><a
href="https://pokemondb.net/type/electric"
class="itype electric">Electric</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/raichu"><img
class="img-fixed img-sprite"
src="assets/raichu.png"
alt="Raichu sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#026</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/raichu">Raichu</a><br> <small><a
href="https://pokemondb.net/type/electric"
class="itype electric">Electric</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/sandshrew"><img
class="img-fixed img-sprite"
src="assets/sandshrew.png"
alt="Sandshrew sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#027</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/sandshrew">Sandshrew</a><br> <small><a
href="https://pokemondb.net/type/ground" class="itype ground">Ground</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/sandslash"><img
class="img-fixed img-sprite"
src="assets/sandslash.png"
alt="Sandslash sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#028</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/sandslash">Sandslash</a><br> <small><a
href="https://pokemondb.net/type/ground" class="itype ground">Ground</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/nidoran-f"><img
class="img-fixed img-sprite"
src="assets/nidoran-f.png"
alt="Nidoran♀ sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#029</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/nidoran-f">Nidoran♀</a><br> <small><a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/nidorina"><img
class="img-fixed img-sprite"
src="assets/nidorina.png"
alt="Nidorina sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#030</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/nidorina">Nidorina</a><br> <small><a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/nidoqueen"><img
class="img-fixed img-sprite"
src="assets/nidoqueen.png"
alt="Nidoqueen sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#031</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/nidoqueen">Nidoqueen</a><br> <small><a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a> · <a
href="https://pokemondb.net/type/ground" class="itype ground">Ground</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/nidoran-m"><img
class="img-fixed img-sprite"
src="assets/nidoran-m.png"
alt="Nidoran♂ sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#032</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/nidoran-m">Nidoran♂</a><br> <small><a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/nidorino"><img
class="img-fixed img-sprite"
src="assets/nidorino.png"
alt="Nidorino sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#033</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/nidorino">Nidorino</a><br> <small><a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/nidoking"><img
class="img-fixed img-sprite"
src="assets/nidoking.png"
alt="Nidoking sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#034</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/nidoking">Nidoking</a><br> <small><a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a> · <a
href="https://pokemondb.net/type/ground" class="itype ground">Ground</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/clefairy"><img
class="img-fixed img-sprite"
src="assets/clefairy.png"
alt="Clefairy sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#035</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/clefairy">Clefairy</a><br> <small><a
href="https://pokemondb.net/type/fairy" class="itype fairy">Fairy</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/clefable"><img
class="img-fixed img-sprite"
src="assets/clefable.png"
alt="Clefable sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#036</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/clefable">Clefable</a><br> <small><a
href="https://pokemondb.net/type/fairy" class="itype fairy">Fairy</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/vulpix"><img
class="img-fixed img-sprite"
src="assets/vulpix.png"
alt="Vulpix sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#037</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/vulpix">Vulpix</a><br> <small><a
href="https://pokemondb.net/type/fire" class="itype fire">Fire</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/ninetales"><img
class="img-fixed img-sprite"
src="assets/ninetales.png"
alt="Ninetales sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#038</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/ninetales">Ninetales</a><br> <small><a
href="https://pokemondb.net/type/fire" class="itype fire">Fire</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/jigglypuff"><img
class="img-fixed img-sprite"
src="assets/jigglypuff.png"
alt="Jigglypuff sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#039</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/jigglypuff">Jigglypuff</a><br> <small><a
href="https://pokemondb.net/type/normal" class="itype normal">Normal</a> · <a
href="https://pokemondb.net/type/fairy" class="itype fairy">Fairy</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/wigglytuff"><img
class="img-fixed img-sprite"
src="assets/wigglytuff.png"
alt="Wigglytuff sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#040</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/wigglytuff">Wigglytuff</a><br> <small><a
href="https://pokemondb.net/type/normal" class="itype normal">Normal</a> · <a
href="https://pokemondb.net/type/fairy" class="itype fairy">Fairy</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/zubat"><img
class="img-fixed img-sprite"
src="assets/zubat.png"
alt="Zubat sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#041</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/zubat">Zubat</a><br> <small><a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a> · <a
href="https://pokemondb.net/type/flying" class="itype flying">Flying</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/golbat"><img
class="img-fixed img-sprite"
src="assets/golbat.png"
alt="Golbat sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#042</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/golbat">Golbat</a><br> <small><a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a> · <a
href="https://pokemondb.net/type/flying" class="itype flying">Flying</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/oddish"><img
class="img-fixed img-sprite"
src="assets/oddish.png"
alt="Oddish sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#043</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/oddish">Oddish</a><br> <small><a
href="https://pokemondb.net/type/grass" class="itype grass">Grass</a> · <a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/gloom"><img
class="img-fixed img-sprite"
src="assets/gloom.png"
alt="Gloom sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#044</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/gloom">Gloom</a><br> <small><a
href="https://pokemondb.net/type/grass" class="itype grass">Grass</a> · <a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/vileplume"><img
class="img-fixed img-sprite"
src="assets/vileplume.png"
alt="Vileplume sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#045</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/vileplume">Vileplume</a><br> <small><a
href="https://pokemondb.net/type/grass" class="itype grass">Grass</a> · <a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/paras"><img
class="img-fixed img-sprite"
src="assets/paras.png"
alt="Paras sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#046</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/paras">Paras</a><br> <small><a
href="https://pokemondb.net/type/bug" class="itype bug">Bug</a> · <a
href="https://pokemondb.net/type/grass" class="itype grass">Grass</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/parasect"><img
class="img-fixed img-sprite"
src="assets/parasect.png"
alt="Parasect sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#047</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/parasect">Parasect</a><br> <small><a
href="https://pokemondb.net/type/bug" class="itype bug">Bug</a> · <a
href="https://pokemondb.net/type/grass" class="itype grass">Grass</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/venonat"><img
class="img-fixed img-sprite"
src="assets/venonat.png"
alt="Venonat sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#048</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/venonat">Venonat</a><br> <small><a
href="https://pokemondb.net/type/bug" class="itype bug">Bug</a> · <a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/venomoth"><img
class="img-fixed img-sprite"
src="assets/venomoth.png"
alt="Venomoth sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#049</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/venomoth">Venomoth</a><br> <small><a
href="https://pokemondb.net/type/bug" class="itype bug">Bug</a> · <a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/diglett"><img
class="img-fixed img-sprite"
src="assets/diglett.png"
alt="Diglett sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#050</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/diglett">Diglett</a><br> <small><a
href="https://pokemondb.net/type/ground" class="itype ground">Ground</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/dugtrio"><img
class="img-fixed img-sprite"
src="assets/dugtrio.png"
alt="Dugtrio sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#051</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/dugtrio">Dugtrio</a><br> <small><a
href="https://pokemondb.net/type/ground" class="itype ground">Ground</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/meowth"><img
class="img-fixed img-sprite"
src="assets/meowth.png"
alt="Meowth sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#052</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/meowth">Meowth</a><br> <small><a
href="https://pokemondb.net/type/normal" class="itype normal">Normal</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/persian"><img
class="img-fixed img-sprite"
src="assets/persian.png"
alt="Persian sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#053</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/persian">Persian</a><br> <small><a
href="https://pokemondb.net/type/normal" class="itype normal">Normal</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/psyduck"><img
class="img-fixed img-sprite"
src="assets/psyduck.png"
alt="Psyduck sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#054</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/psyduck">Psyduck</a><br> <small><a
href="https://pokemondb.net/type/water" class="itype water">Water</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/golduck"><img
class="img-fixed img-sprite"
src="assets/golduck.png"
alt="Golduck sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#055</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/golduck">Golduck</a><br> <small><a
href="https://pokemondb.net/type/water" class="itype water">Water</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/mankey"><img
class="img-fixed img-sprite"
src="assets/mankey.png"
alt="Mankey sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#056</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/mankey">Mankey</a><br> <small><a
href="https://pokemondb.net/type/fighting"
class="itype fighting">Fighting</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/primeape"><img
class="img-fixed img-sprite"
src="assets/primeape.png"
alt="Primeape sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#057</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/primeape">Primeape</a><br> <small><a
href="https://pokemondb.net/type/fighting"
class="itype fighting">Fighting</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/growlithe"><img
class="img-fixed img-sprite"
src="assets/growlithe.png"
alt="Growlithe sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#058</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/growlithe">Growlithe</a><br> <small><a
href="https://pokemondb.net/type/fire" class="itype fire">Fire</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/arcanine"><img
class="img-fixed img-sprite"
src="assets/arcanine.png"
alt="Arcanine sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#059</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/arcanine">Arcanine</a><br> <small><a
href="https://pokemondb.net/type/fire" class="itype fire">Fire</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/poliwag"><img
class="img-fixed img-sprite"
src="assets/poliwag.png"
alt="Poliwag sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#060</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/poliwag">Poliwag</a><br> <small><a
href="https://pokemondb.net/type/water" class="itype water">Water</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/poliwhirl"><img
class="img-fixed img-sprite"
src="assets/poliwhirl.png"
alt="Poliwhirl sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#061</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/poliwhirl">Poliwhirl</a><br> <small><a
href="https://pokemondb.net/type/water" class="itype water">Water</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/poliwrath"><img
class="img-fixed img-sprite"
src="assets/poliwrath.png"
alt="Poliwrath sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#062</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/poliwrath">Poliwrath</a><br> <small><a
href="https://pokemondb.net/type/water" class="itype water">Water</a> · <a
href="https://pokemondb.net/type/fighting"
class="itype fighting">Fighting</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/abra"><img
class="img-fixed img-sprite"
src="assets/abra.png"
alt="Abra sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#063</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/abra">Abra</a><br> <small><a
href="https://pokemondb.net/type/psychic" class="itype psychic">Psychic</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/kadabra"><img
class="img-fixed img-sprite"
src="assets/kadabra.png"
alt="Kadabra sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#064</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/kadabra">Kadabra</a><br> <small><a
href="https://pokemondb.net/type/psychic" class="itype psychic">Psychic</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/alakazam"><img
class="img-fixed img-sprite"
src="assets/alakazam.png"
alt="Alakazam sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#065</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/alakazam">Alakazam</a><br> <small><a
href="https://pokemondb.net/type/psychic" class="itype psychic">Psychic</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/machop"><img
class="img-fixed img-sprite"
src="assets/machop.png"
alt="Machop sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#066</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/machop">Machop</a><br> <small><a
href="https://pokemondb.net/type/fighting"
class="itype fighting">Fighting</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/machoke"><img
class="img-fixed img-sprite"
src="assets/machoke.png"
alt="Machoke sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#067</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/machoke">Machoke</a><br> <small><a
href="https://pokemondb.net/type/fighting"
class="itype fighting">Fighting</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/machamp"><img
class="img-fixed img-sprite"
src="assets/machamp.png"
alt="Machamp sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#068</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/machamp">Machamp</a><br> <small><a
href="https://pokemondb.net/type/fighting"
class="itype fighting">Fighting</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/bellsprout"><img
class="img-fixed img-sprite"
src="assets/bellsprout.png"
alt="Bellsprout sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#069</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/bellsprout">Bellsprout</a><br> <small><a
href="https://pokemondb.net/type/grass" class="itype grass">Grass</a> · <a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/weepinbell"><img
class="img-fixed img-sprite"
src="assets/weepinbell.png"
alt="Weepinbell sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#070</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/weepinbell">Weepinbell</a><br> <small><a
href="https://pokemondb.net/type/grass" class="itype grass">Grass</a> · <a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/victreebel"><img
class="img-fixed img-sprite"
src="assets/victreebel.png"
alt="Victreebel sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#071</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/victreebel">Victreebel</a><br> <small><a
href="https://pokemondb.net/type/grass" class="itype grass">Grass</a> · <a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/tentacool"><img
class="img-fixed img-sprite"
src="assets/tentacool.png"
alt="Tentacool sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#072</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/tentacool">Tentacool</a><br> <small><a
href="https://pokemondb.net/type/water" class="itype water">Water</a> · <a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/tentacruel"><img
class="img-fixed img-sprite"
src="assets/tentacruel.png"
alt="Tentacruel sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#073</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/tentacruel">Tentacruel</a><br> <small><a
href="https://pokemondb.net/type/water" class="itype water">Water</a> · <a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/geodude"><img
class="img-fixed img-sprite"
src="assets/geodude.png"
alt="Geodude sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#074</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/geodude">Geodude</a><br> <small><a
href="https://pokemondb.net/type/rock" class="itype rock">Rock</a> · <a
href="https://pokemondb.net/type/ground" class="itype ground">Ground</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/graveler"><img
class="img-fixed img-sprite"
src="assets/graveler.png"
alt="Graveler sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#075</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/graveler">Graveler</a><br> <small><a
href="https://pokemondb.net/type/rock" class="itype rock">Rock</a> · <a
href="https://pokemondb.net/type/ground" class="itype ground">Ground</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/golem"><img
class="img-fixed img-sprite"
src="assets/golem.png"
alt="Golem sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#076</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/golem">Golem</a><br> <small><a
href="https://pokemondb.net/type/rock" class="itype rock">Rock</a> · <a
href="https://pokemondb.net/type/ground" class="itype ground">Ground</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/ponyta"><img
class="img-fixed img-sprite"
src="assets/ponyta.png"
alt="Ponyta sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#077</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/ponyta">Ponyta</a><br> <small><a
href="https://pokemondb.net/type/fire" class="itype fire">Fire</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/rapidash"><img
class="img-fixed img-sprite"
src="assets/rapidash.png"
alt="Rapidash sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#078</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/rapidash">Rapidash</a><br> <small><a
href="https://pokemondb.net/type/fire" class="itype fire">Fire</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/slowpoke"><img
class="img-fixed img-sprite"
src="assets/slowpoke.png"
alt="Slowpoke sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#079</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/slowpoke">Slowpoke</a><br> <small><a
href="https://pokemondb.net/type/water" class="itype water">Water</a> · <a
href="https://pokemondb.net/type/psychic" class="itype psychic">Psychic</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/slowbro"><img
class="img-fixed img-sprite"
src="assets/slowbro.png"
alt="Slowbro sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#080</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/slowbro">Slowbro</a><br> <small><a
href="https://pokemondb.net/type/water" class="itype water">Water</a> · <a
href="https://pokemondb.net/type/psychic" class="itype psychic">Psychic</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/magnemite"><img
class="img-fixed img-sprite"
src="assets/magnemite.png"
alt="Magnemite sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#081</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/magnemite">Magnemite</a><br> <small><a
href="https://pokemondb.net/type/electric" class="itype electric">Electric</a> · <a
href="https://pokemondb.net/type/steel" class="itype steel">Steel</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/magneton"><img
class="img-fixed img-sprite"
src="assets/magneton.png"
alt="Magneton sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#082</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/magneton">Magneton</a><br> <small><a
href="https://pokemondb.net/type/electric" class="itype electric">Electric</a> · <a
href="https://pokemondb.net/type/steel" class="itype steel">Steel</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/farfetchd"><img
class="img-fixed img-sprite"
src="assets/farfetchd.png"
alt="Farfetch'd sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#083</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/farfetchd">Farfetch'd</a><br> <small><a
href="https://pokemondb.net/type/normal" class="itype normal">Normal</a> · <a
href="https://pokemondb.net/type/flying" class="itype flying">Flying</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/doduo"><img
class="img-fixed img-sprite"
src="assets/doduo.png"
alt="Doduo sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#084</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/doduo">Doduo</a><br> <small><a
href="https://pokemondb.net/type/normal" class="itype normal">Normal</a> · <a
href="https://pokemondb.net/type/flying" class="itype flying">Flying</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/dodrio"><img
class="img-fixed img-sprite"
src="assets/dodrio.png"
alt="Dodrio sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#085</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/dodrio">Dodrio</a><br> <small><a
href="https://pokemondb.net/type/normal" class="itype normal">Normal</a> · <a
href="https://pokemondb.net/type/flying" class="itype flying">Flying</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/seel"><img
class="img-fixed img-sprite"
src="assets/seel.png"
alt="Seel sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#086</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/seel">Seel</a><br> <small><a
href="https://pokemondb.net/type/water" class="itype water">Water</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/dewgong"><img
class="img-fixed img-sprite"
src="assets/dewgong.png"
alt="Dewgong sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#087</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/dewgong">Dewgong</a><br> <small><a
href="https://pokemondb.net/type/water" class="itype water">Water</a> · <a
href="https://pokemondb.net/type/ice" class="itype ice">Ice</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/grimer"><img
class="img-fixed img-sprite"
src="assets/grimer.png"
alt="Grimer sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#088</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/grimer">Grimer</a><br> <small><a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/muk"><img
class="img-fixed img-sprite"
src="assets/muk.png"
alt="Muk sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#089</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/muk">Muk</a><br> <small><a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/shellder"><img
class="img-fixed img-sprite"
src="assets/shellder.png"
alt="Shellder sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#090</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/shellder">Shellder</a><br> <small><a
href="https://pokemondb.net/type/water" class="itype water">Water</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/cloyster"><img
class="img-fixed img-sprite"
src="assets/cloyster.png"
alt="Cloyster sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#091</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/cloyster">Cloyster</a><br> <small><a
href="https://pokemondb.net/type/water" class="itype water">Water</a> · <a
href="https://pokemondb.net/type/ice" class="itype ice">Ice</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/gastly"><img
class="img-fixed img-sprite"
src="assets/gastly.png"
alt="Gastly sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#092</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/gastly">Gastly</a><br> <small><a
href="https://pokemondb.net/type/ghost" class="itype ghost">Ghost</a> · <a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/haunter"><img
class="img-fixed img-sprite"
src="assets/haunter.png"
alt="Haunter sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#093</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/haunter">Haunter</a><br> <small><a
href="https://pokemondb.net/type/ghost" class="itype ghost">Ghost</a> · <a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/gengar"><img
class="img-fixed img-sprite"
src="assets/gengar.png"
alt="Gengar sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#094</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/gengar">Gengar</a><br> <small><a
href="https://pokemondb.net/type/ghost" class="itype ghost">Ghost</a> · <a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/onix"><img
class="img-fixed img-sprite"
src="assets/onix.png"
alt="Onix sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#095</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/onix">Onix</a><br> <small><a
href="https://pokemondb.net/type/rock" class="itype rock">Rock</a> · <a
href="https://pokemondb.net/type/ground" class="itype ground">Ground</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/drowzee"><img
class="img-fixed img-sprite"
src="assets/drowzee.png"
alt="Drowzee sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#096</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/drowzee">Drowzee</a><br> <small><a
href="https://pokemondb.net/type/psychic" class="itype psychic">Psychic</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/hypno"><img
class="img-fixed img-sprite"
src="assets/hypno.png"
alt="Hypno sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#097</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/hypno">Hypno</a><br> <small><a
href="https://pokemondb.net/type/psychic" class="itype psychic">Psychic</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/krabby"><img
class="img-fixed img-sprite"
src="assets/krabby.png"
alt="Krabby sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#098</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/krabby">Krabby</a><br> <small><a
href="https://pokemondb.net/type/water" class="itype water">Water</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/kingler"><img
class="img-fixed img-sprite"
src="assets/kingler.png"
alt="Kingler sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#099</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/kingler">Kingler</a><br> <small><a
href="https://pokemondb.net/type/water" class="itype water">Water</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/voltorb"><img
class="img-fixed img-sprite"
src="assets/voltorb.png"
alt="Voltorb sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#100</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/voltorb">Voltorb</a><br> <small><a
href="https://pokemondb.net/type/electric"
class="itype electric">Electric</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/electrode"><img
class="img-fixed img-sprite"
src="assets/electrode.png"
alt="Electrode sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#101</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/electrode">Electrode</a><br> <small><a
href="https://pokemondb.net/type/electric"
class="itype electric">Electric</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/exeggcute"><img
class="img-fixed img-sprite"
src="assets/exeggcute.png"
alt="Exeggcute sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#102</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/exeggcute">Exeggcute</a><br> <small><a
href="https://pokemondb.net/type/grass" class="itype grass">Grass</a> · <a
href="https://pokemondb.net/type/psychic" class="itype psychic">Psychic</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/exeggutor"><img
class="img-fixed img-sprite"
src="assets/exeggutor.png"
alt="Exeggutor sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#103</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/exeggutor">Exeggutor</a><br> <small><a
href="https://pokemondb.net/type/grass" class="itype grass">Grass</a> · <a
href="https://pokemondb.net/type/psychic" class="itype psychic">Psychic</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/cubone"><img
class="img-fixed img-sprite"
src="assets/cubone.png"
alt="Cubone sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#104</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/cubone">Cubone</a><br> <small><a
href="https://pokemondb.net/type/ground" class="itype ground">Ground</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/marowak"><img
class="img-fixed img-sprite"
src="assets/marowak.png"
alt="Marowak sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#105</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/marowak">Marowak</a><br> <small><a
href="https://pokemondb.net/type/ground" class="itype ground">Ground</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/hitmonlee"><img
class="img-fixed img-sprite"
src="assets/hitmonlee.png"
alt="Hitmonlee sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#106</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/hitmonlee">Hitmonlee</a><br> <small><a
href="https://pokemondb.net/type/fighting"
class="itype fighting">Fighting</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/hitmonchan"><img
class="img-fixed img-sprite"
src="assets/hitmonchan.png"
alt="Hitmonchan sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#107</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/hitmonchan">Hitmonchan</a><br> <small><a
href="https://pokemondb.net/type/fighting"
class="itype fighting">Fighting</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/lickitung"><img
class="img-fixed img-sprite"
src="assets/lickitung.png"
alt="Lickitung sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#108</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/lickitung">Lickitung</a><br> <small><a
href="https://pokemondb.net/type/normal" class="itype normal">Normal</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/koffing"><img
class="img-fixed img-sprite"
src="assets/koffing.png"
alt="Koffing sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#109</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/koffing">Koffing</a><br> <small><a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/weezing"><img
class="img-fixed img-sprite"
src="assets/weezing.png"
alt="Weezing sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#110</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/weezing">Weezing</a><br> <small><a
href="https://pokemondb.net/type/poison" class="itype poison">Poison</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/rhyhorn"><img
class="img-fixed img-sprite"
src="assets/rhyhorn.png"
alt="Rhyhorn sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#111</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/rhyhorn">Rhyhorn</a><br> <small><a
href="https://pokemondb.net/type/ground" class="itype ground">Ground</a> · <a
href="https://pokemondb.net/type/rock" class="itype rock">Rock</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/rhydon"><img
class="img-fixed img-sprite"
src="assets/rhydon.png"
alt="Rhydon sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#112</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/rhydon">Rhydon</a><br> <small><a
href="https://pokemondb.net/type/ground" class="itype ground">Ground</a> · <a
href="https://pokemondb.net/type/rock" class="itype rock">Rock</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/chansey"><img
class="img-fixed img-sprite"
src="assets/chansey.png"
alt="Chansey sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#113</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/chansey">Chansey</a><br> <small><a
href="https://pokemondb.net/type/normal" class="itype normal">Normal</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/tangela"><img
class="img-fixed img-sprite"
src="assets/tangela.png"
alt="Tangela sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#114</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/tangela">Tangela</a><br> <small><a
href="https://pokemondb.net/type/grass" class="itype grass">Grass</a></small></span></div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/kangaskhan"><img
class="img-fixed img-sprite"
src="assets/kangaskhan.png"
alt="Kangaskhan sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#115</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/kangaskhan">Kangaskhan</a><br> <small><a
href="https://pokemondb.net/type/normal" class="itype normal">Normal</a></small></span>
</div>
<div class="infocard "><span class="infocard-lg-img"><a href="https://pokemondb.net/pokedex/horsea"><img
class="img-fixed img-sprite"
src="assets/horsea.png"
alt="Horsea sprite"></a></span><span
class="infocard-lg-data text-muted"><small>#116</small><br> <a class="ent-name"
href="https://pokemondb.net/pokedex/horsea">Horsea</a><br> <small><a
href="https://pokemondb.net/type/water" class="itype water">Water</a></small></span></div>