-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
4946 lines (4945 loc) · 274 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>
<link rel="stylesheet" href="./styles/normalize.css">
<link rel="stylesheet" href="./styles/style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Yes, another Pokedex">
<link rel="shortcut icon" href="./img/favicon.ico" type="image/x-icon">
<title>Pokedex</title>
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400&display=swap" rel="stylesheet">
</head>
<body>
<div class="loader-div">
<div class="loader"></div>
</div>
<div class="modal">
<div class="modal-default-container"></div>
<div class="modal-loader-container">
<div class="modal-loader"></div>
</div>
</div>
<main class="main">
<header class="header-sticky">
<nav class="nav-bar">
<div class="burger-button">
<div class="burgerline"></div>
<div class="burgerline"></div>
<div class="burgerline"></div>
</div>
<div class="search-types">
<span>By Types</span>
<ul class="search-types-list">
<li class="allTypes">All</li>
<li class="grass">Grass</li>
<li class="water">Water</li>
<li class="fire">Fire</li>
<li class="bug">Bug</li>
<li class="steel">Steel</li>
<li class="dragon">Dragon</li>
<li class="electric">Electric</li>
<li class="ghost">Ghost</li>
<li class="fairy">Fairy</li>
<li class="ice">Ice</li>
<li class="fighting">Fighting</li>
<li class="normal">Normal</li>
<li class="psychic">Psychic</li>
<li class="rock">Rock</li>
<li class="dark">Dark</li>
<li class="ground">Ground</li>
<li class="poison">Poison</li>
<li class="flying">Flying</li>
</ul>
</div>
<div class="search-text">
<input type="text" class="search-input"
placeholder="Search for a Pokemon..." android:id="@+id/edittext_done"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="Enter some texts"
android:imeOptions="actionDone">
<button class="clear-search"></button>
</div>
</nav>
</header>
<section class="pkmn-list">
<div id="filter-container"></div>
<figure class="pokemon-missing">
<img src="img/pokeball-miss.png" alt="">
<p>I don't think that pokemon does exist, try again!</p>
</figure>
<h2 class="gen-name first" id="1">1° Gen</h2>
<article class="pkmn-card bulbasaur grass poison2">
<h3 class="pkmn-name">Bulbasaur</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/bulbasaur.png" class="sprite-bulbasaur" height="96" width="96" alt="bulbasaur" loading="lazy">
</figure>
</article>
<article class="pkmn-card ivysaur grass poison2">
<h3 class="pkmn-name">ivysaur</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/ivysaur.png" class="sprite-ivysaur" height="96" width="96" alt="ivysaur" loading="lazy">
</figure>
</article>
<article class="pkmn-card venusaur grass poison2">
<h3 class="pkmn-name">Venusaur</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/venusaur.png" class="sprite-venusaur" height="96" width="96" alt="venusaur" loading="lazy">
</figure>
</article>
<article class="pkmn-card charmander fire">
<h3 class="pkmn-name">charmander</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/charmander.png" class="sprite-charmander" height="96" width="96" alt="charmander" loading="lazy">
</figure>
</article>
<article class="pkmn-card charmeleon fire">
<h3 class="pkmn-name">Vharmeleon</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/charmeleon.png" class="sprite-charmeleon" height="96" width="96" alt="charmeleon" loading="lazy">
</figure>
</article>
<article class="pkmn-card charizard fire">
<h3 class="pkmn-name">Charizard</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/charizard.png" class="sprite-charizard" height="96" width="96" alt="charizard" loading="lazy">
</figure>
</article>
<article class="pkmn-card squirtle water">
<h3 class="pkmn-name">Squirtle</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/squirtle.png" class="sprite-squirtle" height="96" width="96" alt="squirtle" loading="lazy">
</figure>
</article>
<article class="pkmn-card wartortle water">
<h3 class="pkmn-name">wartortle</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/wartortle.png" class="sprite-wartortle" height="96" width="96" alt="wartortle" loading="lazy">
</figure>
</article>
<article class="pkmn-card blastoise water">
<h3 class="pkmn-name">Blastoise</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/blastoise.png" class="sprite-blastoise" height="96" width="96" alt="blastoise" loading="lazy">
</figure>
</article>
<article class="pkmn-card caterpie bug">
<h3 class="pkmn-name">Caterpie</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/caterpie.png" class="sprite-caterpie" height="96" width="96" alt="caterpie" loading="lazy">
</figure>
</article>
<article class="pkmn-card metapod bug">
<h3 class="pkmn-name">metapod</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/metapod.png" class="sprite-metapod" height="96" width="96" alt="metapod" loading="lazy">
</figure>
</article>
<article class="pkmn-card butterfree bug flying2">
<h3 class="pkmn-name">Butterfree</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/butterfree.png" class="sprite-butterfree" height="96" width="96" alt="butterfree" loading="lazy">
</figure>
</article>
<article class="pkmn-card weedle bug poison2">
<h3 class="pkmn-name">weedle</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/weedle.png" class="sprite-weedle" height="96" width="96" alt="weedle" loading="lazy">
</figure>
</article>
<article class="pkmn-card kakuna bug poison2">
<h3 class="pkmn-name">Kakuna</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/kakuna.png" class="sprite-kakuna" height="96" width="96" alt="kakuna" loading="lazy">
</figure>
</article>
<article class="pkmn-card beedrill bug poison2">
<h3 class="pkmn-name">beedrill</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/beedrill.png" class="sprite-beedrill" height="96" width="96" alt="beedrill" loading="lazy">
</figure>
</article>
<article class="pkmn-card pidgey normal flying2">
<h3 class="pkmn-name">pidgey</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/pidgey.png" class="sprite-pidgey" loading="lazy" height="96" width="96" alt="pidgey">
</figure>
</article>
<article class="pkmn-card pidgeotto normal flying2">
<h3 class="pkmn-name">pidgeotto</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/pidgeotto.png" class="sprite-pidgeotto" loading="lazy" height="96" width="96" alt="pidgeotto">
</figure>
</article>
<article class="pkmn-card pidgeot normal flying2">
<h3 class="pkmn-name">pidgeot</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/pidgeot.png" class="sprite-pidgeot" loading="lazy" height="96" width="96" alt="pidgeot">
</figure>
</article>
<article class="pkmn-card rattata normal">
<h3 class="pkmn-name">rattata</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/rattata.png" class="sprite-rattata" loading="lazy" height="96" width="96" alt="rattata">
</figure>
</article>
<article class="pkmn-card raticate normal">
<h3 class="pkmn-name">raticatee</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/raticate.png" class="sprite-raticate" loading="lazy" height="96" width="96" alt="raticate">
</figure>
</article>
<article class="pkmn-card spearow normal flying2">
<h3 class="pkmn-name">spearow</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/spearow.png" class="sprite-spearow" loading="lazy" height="96" width="96" alt="spearow">
</figure>
</article>
<article class="pkmn-card fearow normal flying2">
<h3 class="pkmn-name">fearow</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/fearow.png" class="sprite-fearow" loading="lazy" height="96" width="96" alt="fearow">
</figure>
</article>
<article class="pkmn-card ekans poison">
<h3 class="pkmn-name">ekans</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/ekans.png" class="sprite-ekans" loading="lazy" height="96" width="96" alt="ekans">
</figure>
</article>
<article class="pkmn-card arbok poison">
<h3 class="pkmn-name">arbokk</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/arbok.png" class="sprite-arbok" loading="lazy" height="96" width="96" alt="arbok">
</figure>
</article>
<article class="pkmn-card pikachu electric">
<h3 class="pkmn-name">pikachu</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/pikachu.png" class="sprite-pikachu" loading="lazy" height="96" width="96" alt="pikachu">
</figure>
</article>
<article class="pkmn-card raichu electric">
<h3 class="pkmn-name">Raichu</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/raichu.png" class="sprite-raichu" loading="lazy" height="96" width="96" alt="raichu">
</figure>
</article>
<article class="pkmn-card sandshrew ground">
<h3 class="pkmn-name">Sandshrew</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/sandshrew.png" class="sprite-sandshrew" loading="lazy" height="96" width="96" alt="sandshrew">
</figure>
</article>
<article class="pkmn-card sandslash ground">
<h3 class="pkmn-name">sandslash</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/sandslash.png" class="sprite-sandslash" loading="lazy" height="96" width="96" alt="sandslash">
</figure>
</article>
<article class="pkmn-card nidoran-f poison">
<h3 class="pkmn-name">Nidoran-f</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/nidoran-f.png" class="sprite-nidoran-f" loading="lazy" height="96" width="96" alt="nidoran-f">
</figure>
</article>
<article class="pkmn-card nidorina poison">
<h3 class="pkmn-name">Nidorina</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/nidorina.png" class="sprite-nidorina" loading="lazy" height="96" width="96" alt="nidorina">
</figure>
</article>
<article class="pkmn-card nidoqueen poison ground2">
<h3 class="pkmn-name">nidoqueen</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/nidoqueen.png" class="sprite-nidoqueen" loading="lazy" height="96" width="96" alt="nidoqueen">
</figure>
</article>
<article class="pkmn-card nidoran-m poison">
<h3 class="pkmn-name">nidoran-m</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/nidoran-m.png" class="sprite-nidoran-m" loading="lazy" height="96" width="96" alt="nidoran-m">
</figure>
</article>
<article class="pkmn-card nidorino poison">
<h3 class="pkmn-name">nidorino</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/nidorino.png" class="sprite-nidorino" loading="lazy" height="96" width="96" alt="nidorino">
</figure>
</article>
<article class="pkmn-card nidoking poison ground2">
<h3 class="pkmn-name">nidoking</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/nidoking.png" class="sprite-nidoking" loading="lazy" height="96" width="96" alt="nidoking">
</figure>
</article>
<article class="pkmn-card clefairy fairy">
<h3 class="pkmn-name">clefairy</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/clefairy.png" class="sprite-clefairy" loading="lazy" height="96" width="96" alt="clefairy">
</figure>
</article>
<article class="pkmn-card clefable fairy">
<h3 class="pkmn-name">clefable</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/clefable.png" class="sprite-clefable" loading="lazy" height="96" width="96" alt="clefable">
</figure>
</article>
<article class="pkmn-card vulpix fire">
<h3 class="pkmn-name">vulpix</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/vulpix.png" class="sprite-vulpix" loading="lazy" height="96" width="96" alt="vulpix">
</figure>
</article>
<article class="pkmn-card ninetales fire">
<h3 class="pkmn-name">ninetales</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/ninetales.png" class="sprite-ninetales" loading="lazy" height="96" width="96" alt="ninetales">
</figure>
</article>
<article class="pkmn-card jigglypuff normal fairy2">
<h3 class="pkmn-name">jigglypuf</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/jigglypuff.png" class="sprite-jigglypuff" loading="lazy" height="96" width="96" alt="jigglypuff">
</figure>
</article>
<article class="pkmn-card wigglytuff normal fairy2">
<h3 class="pkmn-name">wigglytuff</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/wigglytuff.png" class="sprite-wigglytuff" loading="lazy" height="96" width="96" alt="wigglytuff">
</figure>
</article>
<article class="pkmn-card zubat poison flying2">
<h3 class="pkmn-name">zubat</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/zubat.png" class="sprite-zubat" loading="lazy" height="96" width="96" alt="zubat">
</figure>
</article>
<article class="pkmn-card golbat poison flying2">
<h3 class="pkmn-name">golbat</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/golbat.png" class="sprite-golbat" loading="lazy" height="96" width="96" alt="golbat">
</figure>
</article>
<article class="pkmn-card oddish grass poison2">
<h3 class="pkmn-name">oddish</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/oddish.png" class="sprite-oddish" loading="lazy" height="96" width="96" alt="oddish">
</figure>
</article>
<article class="pkmn-card gloom grass poison2">
<h3 class="pkmn-name">gloom</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/gloom.png" class="sprite-gloom" loading="lazy" height="96" width="96" alt="gloom">
</figure>
</article>
<article class="pkmn-card vileplume grass poison2">
<h3 class="pkmn-name">vileplume</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/vileplume.png" class="sprite-vileplume" loading="lazy" height="96" width="96" alt="vileplume">
</figure>
</article>
<article class="pkmn-card paras bug grass2">
<h3 class="pkmn-name">paras</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/paras.png" class="sprite-paras" loading="lazy" height="96" width="96" alt="paras">
</figure>
</article>
<article class="pkmn-card parasect bug grass2">
<h3 class="pkmn-name">parasect</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/parasect.png" class="sprite-parasect" loading="lazy" height="96" width="96" alt="parasect">
</figure>
</article>
<article class="pkmn-card venonat bug poison2">
<h3 class="pkmn-name">Venonat</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/venonat.png" class="sprite-venonat" loading="lazy" height="96" width="96" alt="venonat">
</figure>
</article>
<article class="pkmn-card venomoth bug poison2">
<h3 class="pkmn-name">Venomoth</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/venomoth.png" class="sprite-venomoth" loading="lazy" height="96" width="96" alt="venomoth">
</figure>
</article>
<article class="pkmn-card diglett ground">
<h3 class="pkmn-name">diglett</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/diglett.png" class="sprite-diglett" loading="lazy" height="96" width="96" alt="diglett">
</figure>
</article>
<article class="pkmn-card dugtrio ground">
<h3 class="pkmn-name">Dugtrio</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/dugtrio.png" class="sprite-dugtrio" loading="lazy" height="96" width="96" alt="dugtrio">
</figure>
</article>
<article class="pkmn-card meowth normal">
<h3 class="pkmn-name">Meowth</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/meowth.png" class="sprite-meowth" loading="lazy" height="96" width="96" alt="meowth">
</figure>
</article>
<article class="pkmn-card persian normal">
<h3 class="pkmn-name">Persian</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/persian.png" class="sprite-persian" loading="lazy" height="96" width="96" alt="persian">
</figure>
</article>
<article class="pkmn-card psyduck water">
<h3 class="pkmn-name">psyduck</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/psyduck.png" class="sprite-psyduck" loading="lazy" height="96" width="96" alt="psyduck">
</figure>
</article>
<article class="pkmn-card golduck water">
<h3 class="pkmn-name">golduck</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/golduck.png" class="sprite-golduck" loading="lazy" height="96" width="96" alt="golduck">
</figure>
</article>
<article class="pkmn-card mankey fighting">
<h3 class="pkmn-name">mankey</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/mankey.png" class="sprite-mankey" loading="lazy" height="96" width="96" alt="mankey">
</figure>
</article>
<article class="pkmn-card primeape fighting">
<h3 class="pkmn-name">Primeape</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/primeape.png" class="sprite-primeape" loading="lazy" height="96" width="96" alt="primeape">
</figure>
</article>
<article class="pkmn-card growlithe fire">
<h3 class="pkmn-name">growlithe</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/growlithe.png" class="sprite-growlithe" loading="lazy" height="96" width="96" alt="growlithe">
</figure>
</article>
<article class="pkmn-card arcanine fire">
<h3 class="pkmn-name">arcanine</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/arcanine.png" class="sprite-arcanine" loading="lazy" height="96" width="96" alt="arcanine">
</figure>
</article>
<article class="pkmn-card poliwag water">
<h3 class="pkmn-name">poliwag</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/poliwag.png" class="sprite-poliwag" loading="lazy" height="96" width="96" alt="poliwag">
</figure>
</article>
<article class="pkmn-card poliwhirl water">
<h3 class="pkmn-name">poliwhirl</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/poliwhirl.png" class="sprite-poliwhirl" loading="lazy" height="96" width="96" alt="poliwhirl">
</figure>
</article>
<article class="pkmn-card poliwrath water fighting2">
<h3 class="pkmn-name">poliwrath</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/poliwrath.png" class="sprite-poliwrath" loading="lazy" height="96" width="96" alt="poliwrath">
</figure>
</article>
<article class="pkmn-card abra psychic">
<h3 class="pkmn-name">abra</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/abra.png" class="sprite-abra" loading="lazy" height="96" width="96" alt="abra">
</figure>
</article>
<article class="pkmn-card kadabra psychic">
<h3 class="pkmn-name">kadabra</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/kadabra.png" class="sprite-kadabra" loading="lazy" height="96" width="96" alt="kadabra">
</figure>
</article>
<article class="pkmn-card alakazam psychic">
<h3 class="pkmn-name">alakazam</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/alakazam.png" class="sprite-alakazam" loading="lazy" height="96" width="96" alt="alakazam">
</figure>
</article>
<article class="pkmn-card machop fighting">
<h3 class="pkmn-name">machop</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/machop.png" class="sprite-machop" loading="lazy" height="96" width="96" alt="machop">
</figure>
</article>
<article class="pkmn-card machoke fighting">
<h3 class="pkmn-name">machoke</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/machoke.png" class="sprite-machoke" loading="lazy" height="96" width="96" alt="machoke">
</figure>
</article>
<article class="pkmn-card machamp fighting">
<h3 class="pkmn-name">machamp</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/machamp.png" class="sprite-machamp" loading="lazy" height="96" width="96" alt="machamp">
</figure>
</article>
<article class="pkmn-card bellsprout grass poison2">
<h3 class="pkmn-name">bellsprout</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/bellsprout.png" class="sprite-bellsprout" loading="lazy" height="96" width="96" alt="bellsprout">
</figure>
</article>
<article class="pkmn-card weepinbell grass poison2">
<h3 class="pkmn-name">weepinbell</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/weepinbell.png" class="sprite-weepinbell" loading="lazy" height="96" width="96" alt="weepinbell">
</figure>
</article>
<article class="pkmn-card victreebel grass poison2">
<h3 class="pkmn-name">victreebel</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/victreebel.png" class="sprite-victreebel" loading="lazy" height="96" width="96" alt="victreebel">
</figure>
</article>
<article class="pkmn-card tentacool water poison2">
<h3 class="pkmn-name">tentacool</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/tentacool.png" class="sprite-tentacool" loading="lazy" height="96" width="96" alt="tentacool">
</figure>
</article>
<article class="pkmn-card tentacruel water poison2">
<h3 class="pkmn-name">tentacruel</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/tentacruel.png" class="sprite-tentacruel" loading="lazy" height="96" width="96" alt="tentacruel">
</figure>
</article>
<article class="pkmn-card geodude rock ground2">
<h3 class="pkmn-name">geodude</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/geodude.png" class="sprite-geodude" loading="lazy" height="96" width="96" alt="geodude">
</figure>
</article>
<article class="pkmn-card graveler rock ground2">
<h3 class="pkmn-name">graveler</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/graveler.png" class="sprite-graveler" loading="lazy" height="96" width="96" alt="graveler">
</figure>
</article>
<article class="pkmn-card golem rock ground2">
<h3 class="pkmn-name">golem</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/golem.png" class="sprite-golem" loading="lazy" height="96" width="96" alt="golem">
</figure>
</article>
<article class="pkmn-card ponyta fire">
<h3 class="pkmn-name">ponyta</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/ponyta.png" class="sprite-ponyta" loading="lazy" height="96" width="96" alt="ponyta">
</figure>
</article>
<article class="pkmn-card rapidash fire">
<h3 class="pkmn-name">rapidash</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/rapidash.png" class="sprite-rapidash" loading="lazy" height="96" width="96" alt="rapidash">
</figure>
</article>
<article class="pkmn-card slowpoke water psychic2">
<h3 class="pkmn-name">slowpoke</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/slowpoke.png" class="sprite-slowpoke" loading="lazy" height="96" width="96" alt="slowpoke">
</figure>
</article>
<article class="pkmn-card slowbro water psychic2">
<h3 class="pkmn-name">slowbro</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/slowbro.png" class="sprite-slowbro" loading="lazy" height="96" width="96" alt="slowbro">
</figure>
</article>
<article class="pkmn-card magnemite electric steel2">
<h3 class="pkmn-name">magnemite</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/magnemite.png" class="sprite-magnemite" loading="lazy" height="96" width="96" alt="magnemite">
</figure>
</article>
<article class="pkmn-card magneton electric steel2">
<h3 class="pkmn-name">magneton</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/magneton.png" class="sprite-magneton" loading="lazy" height="96" width="96" alt="magneton">
</figure>
</article>
<article class="pkmn-card farfetchd normal flying2">
<h3 class="pkmn-name">farfetchd</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/farfetchd.png" class="sprite-farfetchd" loading="lazy" height="96" width="96" alt="farfetchd">
</figure>
</article>
<article class="pkmn-card doduo normal flying2">
<h3 class="pkmn-name">doduo</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/doduo.png" class="sprite-doduo" loading="lazy" height="96" width="96" alt="doduo">
</figure>
</article>
<article class="pkmn-card dodrio normal flying2">
<h3 class="pkmn-name">dodrio</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/dodrio.png" class="sprite-dodrio" loading="lazy" height="96" width="96" alt="dodrio">
</figure>
</article>
<article class="pkmn-card seel water">
<h3 class="pkmn-name">seel</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/seel.png" class="sprite-seel" loading="lazy" height="96" width="96" alt="seel">
</figure>
</article>
<article class="pkmn-card dewgong water ice2">
<h3 class="pkmn-name">dewgong</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/dewgong.png" class="sprite-dewgong" loading="lazy" height="96" width="96" alt="dewgong">
</figure>
</article>
<article class="pkmn-card grimer poison">
<h3 class="pkmn-name">grimer</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/grimer.png" class="sprite-grimer" loading="lazy" height="96" width="96" alt="grimer">
</figure>
</article>
<article class="pkmn-card muk poison">
<h3 class="pkmn-name">muk</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/muk.png" class="sprite-muk" loading="lazy" height="96" width="96" alt="muk">
</figure>
</article>
<article class="pkmn-card shellder water">
<h3 class="pkmn-name">shellder</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/shellder.png" class="sprite-shellder" loading="lazy" height="96" width="96" alt="shellder">
</figure>
</article>
<article class="pkmn-card cloyster water ice2">
<h3 class="pkmn-name">cloyster</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/cloyster.png" class="sprite-cloyster" loading="lazy" height="96" width="96" alt="cloyster">
</figure>
</article>
<article class="pkmn-card gastly ghost poison2">
<h3 class="pkmn-name">gastly</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/gastly.png" class="sprite-gastly" loading="lazy" height="96" width="96" alt="gastly">
</figure>
</article>
<article class="pkmn-card haunter ghost poison2">
<h3 class="pkmn-name">haunter</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/haunter.png" class="sprite-haunter" loading="lazy" height="96" width="96" alt="haunter">
</figure>
</article>
<article class="pkmn-card gengar ghost poison2">
<h3 class="pkmn-name">gengar</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/gengar.png" class="sprite-gengar" loading="lazy" height="96" width="96" alt="gengar">
</figure>
</article>
<article class="pkmn-card onix rock ground2">
<h3 class="pkmn-name">onix</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/onix.png" class="sprite-onix" loading="lazy" height="96" width="96" alt="onix">
</figure>
</article>
<article class="pkmn-card drowzee psychic">
<h3 class="pkmn-name">drowzee</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/drowzee.png" class="sprite-drowzee" loading="lazy" height="96" width="96" alt="drowzee">
</figure>
</article>
<article class="pkmn-card hypno psychic">
<h3 class="pkmn-name">hypno</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/hypno.png" class="sprite-hypno" loading="lazy" height="96" width="96" alt="hypno">
</figure>
</article>
<article class="pkmn-card krabby water">
<h3 class="pkmn-name">krabby</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/krabby.png" class="sprite-krabby" loading="lazy" height="96" width="96" alt="krabby">
</figure>
</article>
<article class="pkmn-card kingler water">
<h3 class="pkmn-name">kingler</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/kingler.png" class="sprite-kingler" loading="lazy" height="96" width="96" alt="kingler">
</figure>
</article>
<article class="pkmn-card voltorb electric">
<h3 class="pkmn-name">voltorb</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/voltorb.png" class="sprite-voltorb" loading="lazy" height="96" width="96" alt="voltorb">
</figure>
</article>
<article class="pkmn-card electrode electric">
<h3 class="pkmn-name">electrode</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/electrode.png" class="sprite-electrode" loading="lazy" height="96" width="96" alt="electrode">
</figure>
</article>
<article class="pkmn-card exeggcute grass psychic2">
<h3 class="pkmn-name">exeggcute</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/exeggcute.png" class="sprite-exeggcute" loading="lazy" height="96" width="96" alt="exeggcute">
</figure>
</article>
<article class="pkmn-card exeggutor grass psychic2">
<h3 class="pkmn-name">exeggutor</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/exeggutor.png" class="sprite-exeggutor" loading="lazy" height="96" width="96" alt="exeggutor">
</figure>
</article>
<article class="pkmn-card cubone ground">
<h3 class="pkmn-name">cubone</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/cubone.png" class="sprite-cubone" loading="lazy" height="96" width="96" alt="cubone">
</figure>
</article>
<article class="pkmn-card marowak ground">
<h3 class="pkmn-name">marowak</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/marowak.png" class="sprite-marowak" loading="lazy" height="96" width="96" alt="marowak">
</figure>
</article>
<article class="pkmn-card hitmonlee fighting">
<h3 class="pkmn-name">hitmonlee</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/hitmonlee.png" class="sprite-hitmonlee" loading="lazy" height="96" width="96" alt="hitmonlee">
</figure>
</article>
<article class="pkmn-card hitmonchan fighting">
<h3 class="pkmn-name">hitmonchan</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/hitmonchan.png" class="sprite-hitmonchan" loading="lazy" height="96" width="96" alt="hitmonchan">
</figure>
</article>
<article class="pkmn-card lickitung normal">
<h3 class="pkmn-name">lickitung</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/lickitung.png" class="sprite-lickitung" loading="lazy" height="96" width="96" alt="lickitung">
</figure>
</article>
<article class="pkmn-card koffing poison">
<h3 class="pkmn-name">koffing</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/koffing.png" class="sprite-koffing" loading="lazy" height="96" width="96" alt="koffing">
</figure>
</article>
<article class="pkmn-card weezing poison">
<h3 class="pkmn-name">weezing</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/weezing.png" class="sprite-weezing" loading="lazy" height="96" width="96" alt="weezing">
</figure>
</article>
<article class="pkmn-card rhyhorn ground rock2">
<h3 class="pkmn-name">rhyhorn</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/rhyhorn.png" class="sprite-rhyhorn" loading="lazy" height="96" width="96" alt="rhyhorn">
</figure>
</article>
<article class="pkmn-card rhydon ground rock2">
<h3 class="pkmn-name">rhydon</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/rhydon.png" class="sprite-rhydon" loading="lazy" height="96" width="96" alt="rhydon">
</figure>
</article>
<article class="pkmn-card chansey normal">
<h3 class="pkmn-name">chansey</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/chansey.png" class="sprite-chansey" loading="lazy" height="96" width="96" alt="chansey">
</figure>
</article>
<article class="pkmn-card tangela grass">
<h3 class="pkmn-name">tangela</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/tangela.png" class="sprite-tangela" loading="lazy" height="96" width="96" alt="tangela">
</figure>
</article>
<article class="pkmn-card kangaskhan normal">
<h3 class="pkmn-name">kangaskhan</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/kangaskhan.png" class="sprite-kangaskhan" loading="lazy" height="96" width="96" alt="kangaskhan">
</figure>
</article>
<article class="pkmn-card horsea water">
<h3 class="pkmn-name">horsea</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/horsea.png" class="sprite-horsea" loading="lazy" height="96" width="96" alt="horsea">
</figure>
</article>
<article class="pkmn-card seadra water">
<h3 class="pkmn-name">seadra</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/seadra.png" class="sprite-seadra" loading="lazy" height="96" width="96" alt="seadra">
</figure>
</article>
<article class="pkmn-card goldeen water">
<h3 class="pkmn-name">goldeen</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/goldeen.png" class="sprite-goldeen" loading="lazy" height="96" width="96" alt="goldeen">
</figure>
</article>
<article class="pkmn-card seaking water">
<h3 class="pkmn-name">seaking</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/seaking.png" class="sprite-seaking" loading="lazy" height="96" width="96" alt="seaking">
</figure>
</article>
<article class="pkmn-card staryu water">
<h3 class="pkmn-name">staryu</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/staryu.png" class="sprite-staryu" loading="lazy" height="96" width="96" alt="staryu">
</figure>
</article>
<article class="pkmn-card starmie water psychic2">
<h3 class="pkmn-name">starmie</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/starmie.png" class="sprite-starmie" loading="lazy" height="96" width="96" alt="starmie">
</figure>
</article>
<article class="pkmn-card mr-mime psychic fairy2">
<h3 class="pkmn-name">mr-mime</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/mr-mime.png" class="sprite-mr-mime" loading="lazy" height="96" width="96" alt="mr-mime">
</figure>
</article>
<article class="pkmn-card scyther bug flying2">
<h3 class="pkmn-name">scyther</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/scyther.png" class="sprite-scyther" loading="lazy" height="96" width="96" alt="scyther">
</figure>
</article>
<article class="pkmn-card jynx ice psychic2">
<h3 class="pkmn-name">jynx</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/jynx.png" class="sprite-jynx" loading="lazy" height="96" width="96" alt="jynx">
</figure>
</article>
<article class="pkmn-card electabuzz electric">
<h3 class="pkmn-name">electabuzz</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/electabuzz.png" class="sprite-electabuzz" loading="lazy" height="96" width="96" alt="electabuzz">
</figure>
</article>
<article class="pkmn-card magmar fire">
<h3 class="pkmn-name">magmar</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/magmar.png" class="sprite-magmar" loading="lazy" height="96" width="96" alt="magmar">
</figure>
</article>
<article class="pkmn-card pinsir bug">
<h3 class="pkmn-name">pinsir</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/pinsir.png" class="sprite-pinsir" loading="lazy" height="96" width="96" alt="pinsir">
</figure>
</article>
<article class="pkmn-card tauros normal">
<h3 class="pkmn-name">tauros</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/tauros.png" class="sprite-tauros" loading="lazy" height="96" width="96" alt="tauros">
</figure>
</article>
<article class="pkmn-card magikarp water">
<h3 class="pkmn-name">magikarp</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/magikarp.png" class="sprite-magikarp" loading="lazy" height="96" width="96" alt="magikarp">
</figure>
</article>
<article class="pkmn-card gyarados water flying2">
<h3 class="pkmn-name">gyarados</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/gyarados.png" class="sprite-gyarados" loading="lazy" height="96" width="96" alt="gyarados">
</figure>
</article>
<article class="pkmn-card lapras water ice2">
<h3 class="pkmn-name">lapras</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/lapras.png" class="sprite-lapras" loading="lazy" height="96" width="96" alt="lapras">
</figure>
</article>
<article class="pkmn-card ditto normal">
<h3 class="pkmn-name">ditto</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/ditto.png" class="sprite-ditto" loading="lazy" height="96" width="96" alt="ditto">
</figure>
</article>
<article class="pkmn-card eevee normal">
<h3 class="pkmn-name">eevee</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/eevee.png" class="sprite-eevee" loading="lazy" height="96" width="96" alt="eevee">
</figure>
</article>
<article class="pkmn-card vaporeon water">
<h3 class="pkmn-name">vaporeon</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/vaporeon.png" class="sprite-vaporeon" loading="lazy" height="96" width="96" alt="vaporeon">
</figure>
</article>
<article class="pkmn-card jolteon electric">
<h3 class="pkmn-name">jolteon</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/jolteon.png" class="sprite-jolteon" loading="lazy" height="96" width="96" alt="jolteon">
</figure>
</article>
<article class="pkmn-card flareon fire">
<h3 class="pkmn-name">flareon</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/flareon.png" class="sprite-flareon" loading="lazy" height="96" width="96" alt="flareon">
</figure>
</article>
<article class="pkmn-card porygon normal">
<h3 class="pkmn-name">porygon</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/porygon.png" class="sprite-porygon" loading="lazy" height="96" width="96" alt="porygon">
</figure>
</article>
<article class="pkmn-card omanyte rock water2">
<h3 class="pkmn-name">omanyte</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/omanyte.png" class="sprite-omanyte" loading="lazy" height="96" width="96" alt="omanyte">
</figure>
</article>
<article class="pkmn-card omastar rock water2">
<h3 class="pkmn-name">omastar</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/omastar.png" class="sprite-omastar" loading="lazy" height="96" width="96" alt="omastar">
</figure>
</article>
<article class="pkmn-card kabuto rock water2">
<h3 class="pkmn-name">kabuto</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/kabuto.png" class="sprite-kabuto" loading="lazy" height="96" width="96" alt="kabuto">
</figure>
</article>
<article class="pkmn-card kabutops rock water2">
<h3 class="pkmn-name">kabutops</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/kabutops.png" class="sprite-kabutops" loading="lazy" height="96" width="96" alt="kabutops">
</figure>
</article>
<article class="pkmn-card aerodactyl rock flying2">
<h3 class="pkmn-name">aerodactyl</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/aerodactyl.png" class="sprite-aerodactyl" loading="lazy" height="96" width="96" alt="aerodactyl">
</figure>
</article>
<article class="pkmn-card snorlax normal">
<h3 class="pkmn-name">snorlax</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/snorlax.png" class="sprite-snorlax" loading="lazy" height="96" width="96" alt="snorlax">
</figure>
</article>
<article class="pkmn-card articuno ice flying2">
<h3 class="pkmn-name">articuno</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/articuno.png" class="sprite-articuno" loading="lazy" height="96" width="96" alt="articuno">
</figure>
</article>
<article class="pkmn-card zapdos electric flying2">
<h3 class="pkmn-name">zapdos</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/zapdos.png" class="sprite-zapdos" loading="lazy" height="96" width="96" alt="zapdos">
</figure>
</article>
<article class="pkmn-card moltres fire flying2">
<h3 class="pkmn-name">moltres</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/moltres.png" class="sprite-moltres" loading="lazy" height="96" width="96" alt="moltres">
</figure>
</article>
<article class="pkmn-card dratini dragon">
<h3 class="pkmn-name">dratini</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/dratini.png" class="sprite-dratini" loading="lazy" height="96" width="96" alt="dratini">
</figure>
</article>
<article class="pkmn-card dragonair dragon">
<h3 class="pkmn-name">dragonair</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/dragonair.png" class="sprite-dragonair" loading="lazy" height="96" width="96" alt="dragonair">
</figure>
</article>
<article class="pkmn-card dragonite dragon flying2">
<h3 class="pkmn-name">dragonite</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/dragonite.png" class="sprite-dragonite" loading="lazy" height="96" width="96" alt="dragonite">
</figure>
</article>
<article class="pkmn-card mewtwo psychic">
<h3 class="pkmn-name">mewtwo</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/mewtwo.png" class="sprite-mewtwo" loading="lazy" height="96" width="96" alt="mewtwo">
</figure>
</article>
<article class="pkmn-card mew psychic" id="mew">
<h3 class="pkmn-name">mew</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/mew.png" class="sprite-mew" loading="lazy" height="96" width="96" alt="mew">
</figure>
</article>
<h2 class="gen-name second" id="2">2° Gen</h2>
<article class="pkmn-card chikorita grass">
<h3 class="pkmn-name">chikorita</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/chikorita.png" class="sprite-chikorita" loading="lazy" height="96" width="96" alt="chikorita">
</figure>
</article>
<article class="pkmn-card bayleef grass">
<h3 class="pkmn-name">bayleef</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/bayleef.png" class="sprite-bayleef" loading="lazy" height="96" width="96" alt="bayleef">
</figure>
</article>
<article class="pkmn-card meganium grass">
<h3 class="pkmn-name">meganium</h3>
<figure class="asset">
<img src="https://img.pokemondb.net/sprites/omega-ruby-alpha-sapphire/dex/normal/meganium.png" class="sprite-meganium" loading="lazy" height="96" width="96" alt="meganium">
</figure>
</article>
<article class="pkmn-card cyndaquil fire">