-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
2096 lines (1987 loc) · 142 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 charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Silph Arena Assets</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css"
integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container"
style="margin:30px auto;padding: 0;border-top: 10px dashed rgba(61, 61, 61, 0.72);max-width:680px;">
<div class="row">
<div class="col-md-12 text-center" style="box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.23);padding: 0;">
<div class="" style="overflow:hidden;height: 230px;position: relative;z-index: 1;">
<img src="img/logo-transparent-white.png"
style="height: 180px;z-index: 1;position: relative;margin:23px 0 0;filter: drop-shadow(0px 4px 4px #652f2e);color: #652f2e;">
<div
style="position: absolute;top: 0;bottom: 0;left: 0;right: 0;background: url(https://images.pexels.com/photos/41949/earth-earth-at-night-night-lights-41949.jpeg?w=1260&h=750&dpr=2&auto=compress&cs=tinysrgb);background-size:cover;background-position: 50% 50%;z-index: 0;filter: invert(1);">
</div>
<div
style="position: absolute;top: 0;bottom: 0;left: 0;right: 0;background:rgba(225, 106, 1, 0.8588235294117647);z-index: 0;">
</div>
</div>
<div class="panel"
style="width: 100%;border-radius:0;margin:0;border: none;padding: 20px;background: #3d3d3d;color: #f3f2eb;font-size: 13px;line-height: 1.2em;letter-spacing: 0;text-shadow:none;">
<h2
style="margin: 0;font-size:36px;letter-spacing:.1em;line-height:.9em;font-family:'texgyreadventorregular';">
Arena Downloads <br>
<span
style="font-size:23px;letter-spacing:.3em;font-family:'texgyreadventorbold';text-indent:-0.4em;display:inline-block;">For
Community Leaders</span>
</h2>
<hr style="margin: 20px 25px 25px 25px;border-color: #555;"><img
src="https://thesilphroad.com/img/icons/badge.png"
style="height: 80px;float: left;margin: 5px 20px 10px;">
<h3
style="font-family: 'texgyreadventorbold';color: orange;margin-bottom: 14px;font-size: 16px;text-align: left;">
Graphic Assets for Your Tournaments!
</h3>
<p style="margin-bottom:10px;text-align: left;">
Are you looking to create promotional graphics or swag for your local GO community? As a
<i>Silph League</i> member, you may use
the following free graphics in your creations!
</p>
<p style="margin-bottom:10px;text-align: left;">
These resources are provided under a <a
href="https://creativecommons.org/licenses/by-nc-sa/4.0/" target="_blank">CC BY-NC-SA</a>
license; ie, for non-commercial use only, but are also subject to the restrictions and
guidelines in the <a href="https://silph.gg/asset-usage">Silph Road brand asset usage guide</a>.
We also ask that these assets be used in the spirit of the League!
</p>
<div class="filters">
<div class="filter-section">
<h3
style="font-family: 'texgyreadventorbold';color: orange;margin-bottom: 10px;font-size: 16px;text-align: left;">
Season</h3>
<div class="options">
<label>
<input type="radio" name="season" value="s5" checked>
<span>2023</span>
</label>
<label>
<input type="radio" name="season" value="s4">
<span>2021-2022</span>
</label>
<label>
<input type="radio" name="season" value="s3">
<span>2020-2021</span>
</label>
<label>
<input type="radio" name="season" value="s2">
<span>2019-2020</span>
</label>
<label>
<input type="radio" name="season" value="s1">
<span>2019</span>
</label>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<div class="asset-section show" data-season="s5">
<div class="text-left">
<h5>Arena Event: <span style="font-family:'texgyreadventorregular';">Wave 3: June 2023 Innocent
Cup</span></h5>
<p>
Create an innocent Dragon, Fairy, Flying, Psychic, and Water type Pokemon, with Arbok, Dragalge, Garbodor, and Swalot also available. Ice, Fire, Poison and Steel types aren't allowed, neither are Altaria, Articuno-G, Cresselia, Hawlucha, Lanturn, Mandibuzz, Mantine, Mew, Moltres-G, Ninetales-A, Noctowl, Pelipper, Pidgeot, Trevenant, and Zapdos-G.
</p>
<p>
Visit <a href="https://silph.gg/cup/innocent">https://silph.gg/cup/innocent</a> for a full
list of rules, stats, and resources.
<br>Click <a href="https://silph.gg/waves/5/3">here</a> More info on Wave 3
</p>
<div class="assetGroup">
<a href="./assets/2023-06-01-innocent-cup/innocent-cup-promo.png" target="_blank">
<img src="./assets/2023-06-01-innocent-cup/innocent-cup-promo.png" class="fileIcon">
<label>innocent-cup-promo.png</label>
</a>
<a href="./assets/2023-06-01-innocent-cup/innocent-cup-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>innocent-cup-promo.psd</label>
</a>
<a href="./assets/2023-06-01-innocent-cup/copa-innocent-promo.png" target="_blank">
<img src="./assets/2023-06-01-innocent-cup/copa-innocent-promo.png" class="fileIcon">
<label>copa-innocent-promo.png</label>
</a>
<a href="./assets/2023-06-01-innocent-cup/copa-innocent-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>copa-innocent-promo.psd</label>
</a>
<a href="./assets/2023-06-01-innocent-cup/innocent-cup-badge.png" target="_blank">
<img src="./assets/2023-06-01-innocent-cup/innocent-cup-badge.png">
<label>innocent-cup-badge.png</label>
</a>
<a href="./assets/2023-06-01-innocent-cup/innocent-cup-badge.svg" target="_blank">
<img src="./img/svg-icon.png">
<label>innocent-cup-badge.svg</label>
</a>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<div class="asset-section show" data-season="s5">
<div class="text-left">
<h5>Arena Event: <span style="font-family:'texgyreadventorregular';">Wave 3: May 2023 Arcana
Cup</span></h5>
<p>
Create a mysterious team using Ghost, Grass, Psychic and Rock type Pokémon, with Gyarados, Honchkrow, Pelipper, Scyther, and Vespiquen also available. Electric, Fairy, Ice, and Normal types aren't allowed, neither are Galarian Articuno, Bastiodon, Probopass, Regirock, Sableye, Trevenant, or Tropius.
</p>
<p>
Visit <a href="https://silph.gg/cup/arcana">https://silph.gg/cup/arcana</a> for a full
list of rules, stats, and resources.
<br>Click <a href="https://silph.gg/waves/5/3">here</a> More info on Wave 3
</p>
<div class="assetGroup">
<a href="./assets/2023-05-01-arcana-cup/arcana-cup-promo.png" target="_blank">
<img src="./assets/2023-05-01-arcana-cup/arcana-cup-promo.png" class="fileIcon">
<label>arcana-cup-promo.png</label>
</a>
<a href="./assets/2023-05-01-arcana-cup/arcana-cup-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>arcana-cup-promo.psd</label>
</a>
<a href="./assets/2023-05-01-arcana-cup/copa-arcana-promo.png" target="_blank">
<img src="./assets/2023-05-01-arcana-cup/copa-arcana-promo.png" class="fileIcon">
<label>copa-arcana-promo.jpg</label>
</a>
<a href="./assets/2023-05-01-arcana-cup/copa-arcana-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>copa-arcana-promo.psd</label>
</a>
<a href="./assets/2023-05-01-arcana-cup/arcana-cup-badge.png" target="_blank">
<img src="./assets/2023-05-01-arcana-cup/arcana-cup-badge.png">
<label>arcana-cup-badge.png</label>
</a>
<a href="./assets/2023-05-01-arcana-cup/arcana-cup-badge.svg" target="_blank">
<img src="./img/svg-icon.png">
<label>arcana-cup-badge.svg</label>
</a>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<div class="asset-section show" data-season="s5">
<div class="text-left">
<h5>Arena Event: <span style="font-family:'texgyreadventorregular';">Wave 2: April 2023 Polkadot
Cup</span></h5>
<p>
Spring a surprise on your fellow competitors by hatching a team from a 100-strong list of Pokémon selected to pay tribute to the classic Bug, Fairy, Field, and Flying egg groups! You’ll find no shadows in this time of positivity!
</p>
<p>
Visit <a href="https://silph.gg/cup/polkadot">https://silph.gg/cup/polkadot</a> for a full
list of rules, stats, and resources.
<br>Click <a href="https://silph.gg/waves/5/2">here</a> More info on Wave 2
</p>
<div class="assetGroup">
<a href="./assets/2023-04-01-polkadot-cup/polkadot-cup-promo.jpg" target="_blank">
<img src="./assets/2023-04-01-polkadot-cup/polkadot-cup-promo.jpg" class="fileIcon">
<label>polkadot-cup-promo.jpg</label>
</a>
<a href="./assets/2023-04-01-polkadot-cup/polkadot-cup-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>polkadot-cup-promo.psd</label>
</a>
<a href="./assets/2023-04-01-polkadot-cup/copa-polkadot-promo.jpg" target="_blank">
<img src="./assets/2023-04-01-polkadot-cup/copa-polkadot-promo.jpg" class="fileIcon">
<label>copa-polkadot-promo.jpg</label>
</a>
<a href="./assets/2023-04-01-polkadot-cup/copa-polkadot-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>copa-polkadot-promo.psd</label>
</a>
<a href="./assets/2023-04-01-polkadot-cup/polkadot-cup-badge.png" target="_blank">
<img src="./assets/2023-04-01-polkadot-cup/polkadot-cup-badge.png">
<label>polkadot-cup-badge.png</label>
</a>
<a href="./assets/2023-04-01-polkadot-cup/polkadot-cup-badge.svg" target="_blank">
<img src="./img/svg-icon.png">
<label>polkadot-cup-badge.svg</label>
</a>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<div class="asset-section show" data-season="s5">
<div class="text-left">
<h5>Arena Event: <span style="font-family:'texgyreadventorregular';">Wave 2: March 2023 Ionic
Cup</span></h5>
<p>
Create a team with magnetic chemistry by using one of the Electron Pokémon. Complete the team from the list of eligible Bug, Dark, Normal, Poison and Water Pokémon, bonding them together with optional Proton and Neutron Pokémon that have attributes you might not find elsewhere!
</p>
<p>
Visit <a href="https://silph.gg/cup/ionic">https://silph.gg/cup/ionic</a> for a full
list of rules, stats, and resources.
<br>Click <a href="https://silph.gg/waves/5/2">here</a> More info on Wave 2
</p>
<div class="assetGroup">
<a href="./assets/2023-03-01-ionic-cup/ionic-cup-promo.jpg" target="_blank">
<img src="./assets/2023-03-01-ionic-cup/ionic-cup-promo.jpg" class="fileIcon">
<label>ionic-cup-promo.jpg</label>
</a>
<a href="./assets/2023-03-01-ionic-cup/ionic-cup-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>ionic-cup-promo.psd</label>
</a>
<a href="./assets/2023-03-01-ionic-cup/copa-ionic-promo.jpg" target="_blank">
<img src="./assets/2023-03-01-ionic-cup/copa-ionic-promo.jpg" class="fileIcon">
<label>copa-ionic-promo.jpg</label>
</a>
<a href="./assets/2023-03-01-ionic-cup/copa-ionic-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>copa-ionic-promo.psd</label>
</a>
<a href="./assets/2023-03-01-ionic-cup/ionic-cup-badge.png" target="_blank">
<img src="./assets/2023-03-01-ionic-cup/ionic-cup-badge.png">
<label>ionic-cup-badge.png</label>
</a>
<a href="./assets/2023-03-01-ionic-cup/ionic-cup-badge.svg" target="_blank">
<img src="./img/svg-icon.png">
<label>ionic-cup-badge.svg</label>
</a>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<div class="asset-section show" data-season="s5">
<div class="text-left">
<h5>Arena Event: <span style="font-family:'texgyreadventorregular';">Wave 1: February 2023 Ember
Cup</span></h5>
<p>
Build a mythical team using Snorlax, Miltank and Greedent, and Pokémon with Bug, Dragon, Psychic or Water typings (including dual types), except for
Dark-Types, Fairy-Types, Rock-Types, Galarian Articuno, Lanturn, Forretress, Medicham, Cresselia, Toxapex, Araquanid and Mega Pokémon
</p>
<p>
Visit <a href="https://silph.gg/cup/naiad">https://silph.gg/cup/naiad</a> for a full
list of rules, stats, and resources.
<br>Click <a href="https://silph.gg/waves/5/1">here</a> More info on Wave 1
</p>
<div class="assetGroup">
<a href="./assets/2023-02-01-naiad-cup/naiad-cup-promo.jpg" target="_blank">
<img src="./assets/2023-02-01-naiad-cup/naiad-cup-promo.jpg" class="fileIcon">
<label>naiad-cup-promo.jpg</label>
</a>
<a href="./assets/2023-02-01-naiad-cup/naiad-cup-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>naiad-cup-promo.psd</label>
</a>
<a href="./assets/2023-02-01-naiad-cup/copa-naiad-promo.jpg" target="_blank">
<img src="./assets/2023-02-01-naiad-cup/copa-naiad-promo.jpg" class="fileIcon">
<label>copa-naiad-promo.jpg</label>
</a>
<a href="./assets/2023-02-01-naiad-cup/copa-naiad-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>copa-naiad-promo.psd</label>
</a>
<a href="./assets/2023-02-01-naiad-cup/naiad-cup-badge.png" target="_blank">
<img src="./assets/2023-02-01-naiad-cup/naiad-cup-badge.png">
<label>naiad-cup-badge.png</label>
</a>
<a href="./assets/2023-02-01-naiad-cup/naiad-cup-badge.svg" target="_blank">
<img src="./img/svg-icon.png">
<label>naiad-cup-badge.svg</label>
</a>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<div class="asset-section show" data-season="s5">
<div class="text-left">
<h5>Arena Event: <span style="font-family:'texgyreadventorregular';">Wave 1 - January 2023: Ember
Cup</span></h5>
<p>
Ignite your team team choosing between Alolan Muk, Hisuian Qwilfish, Honchkrow, Machamp, Malamar, Poliwrath, Primeape, and Sirfetch’d, and Pokémon with Fire, Electric, Grass and Ground typings (including dual types), except for
Dragon-Types, Steel-Types, Rock-Types, Water/Ground Dual Types, Abomasnow, Diggersby, Dugtrio, Lanturn, Nidoqueen, Ninetales, Pachirisu, Salazzle, Stunfisk, and Whimsicott, Shadow Pokémon, and Mega Pokémon
</p>
<p>
Visit <a href="https://silph.gg/cup/ember">https://silph.gg/cup/ember</a> for a full
list of rules, stats, and resources.
<br>Click <a href="https://silph.gg/waves/5/1">here</a> More info on Wave 1
</p>
<div class="assetGroup">
<a href="./assets/2023-01-01-ember-cup/ember-cup-promo.jpg" target="_blank">
<img src="./assets/2023-01-01-ember-cup/ember-cup-promo.jpg" class="fileIcon">
<label>ember-cup-promo.jpg</label>
</a>
<a href="./assets/2023-01-01-ember-cup/ember-cup-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>ember-cup-promo.psd</label>
</a>
<a href="./assets/2023-01-01-ember-cup/copa-abrasiva-promo.jpg" target="_blank">
<img src="./assets/2023-01-01-ember-cup/copa-abrasiva-promo.jpg" class="fileIcon">
<label>copa-abrasiva-promo.jpg</label>
</a>
<a href="./assets/2023-01-01-ember-cup/copa-abrasiva-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>copa-abrasiva-promo.psd</label>
</a>
<a href="./assets/2023-01-01-ember-cup/ember-cup-badge.png" target="_blank">
<img src="./assets/2023-01-01-ember-cup/ember-cup-badge.png">
<label>ember-cup-badge.png</label>
</a>
<a href="./assets/2023-01-01-ember-cup/ember-cup-badge.svg" target="_blank">
<img src="./img/svg-icon.png">
<label>ember-cup-badge.svg</label>
</a>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<div class="asset-section" data-season="s4">
<div class="text-left">
<h5>Arena Event: <span style="font-family:'texgyreadventorregular';">July 2022 Architect
Cup</span></h5>
<p>
Build your dream team using Pokémon from a pre-vetted list of allowed species (including Shadow variant), except for
Mega Pokémon, are not permitted in the Architect Cup
</p>
<p>
Visit <a href="https://silph.gg/cup/architect">https://silph.gg/cup/architect</a> for a full
list of rules, stats, and resources.
</p>
<div class="assetGroup">
<a href="./assets/2022-07-01-architect-cup/architect-cup-button.png" target="_blank">
<img src="./assets/2022-07-01-architect-cup/architect-cup-button.png" class="fileIcon">
<label>architect-cup-button.png</label>
</a>
<a href="./assets/2022-07-01-architect-cup/architect-cup-promo.jpg" target="_blank">
<img src="./assets/2022-07-01-architect-cup/architect-cup-promo.jpg" class="fileIcon">
<label>architect-cup-promo.jpg</label>
</a>
<a href="./assets/2022-07-01-architect-cup/architect-cup-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>architect-cup-promo.psd</label>
</a>
<a href="./assets/2022-07-01-architect-cup/copa-arquitecto-promo.jpg" target="_blank">
<img src="./assets/2022-07-01-architect-cup/copa-arquitecto-promo.jpg" class="fileIcon">
<label>copa-arquitecto-promo.jpg</label>
</a>
<a href="./assets/2022-07-01-architect-cup/copa-arquitecto-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>copa-arquitecto-promo.psd</label>
</a>
<a href="./assets/2022-07-01-architect-cup/architect-cup-badge.png" target="_blank">
<img src="./assets/2022-07-01-architect-cup/architect-cup-badge.png">
<label>architect-cup-badge.png</label>
</a>
<a href="./assets/2022-07-01-architect-cup/architect-cup-badge.svg" target="_blank">
<img src="./img/svg-icon.png">
<label>architect-cup-badge.svg</label>
</a>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<div class="asset-section" data-season="s4">
<div class="text-left">
<h5>Arena Event: <span style="font-family:'texgyreadventorregular';">June 2022 Forged
Cup</span></h5>
<p>
Flash into the Firefly meta and build a team that glows using Pokémon with Normal, Bug, Electric, Poison, and Ice type, except for
Ground-types, Walrein, Escavalier, Dragalge, Salazzle, or Pachirisu, which are not permitted in the Firefly Cup
</p>
<p>
Visit <a href="https://silph.gg/cup/forged">https://silph.gg/cup/forged</a> for a full
list of rules, stats, and resources.
</p>
<div class="assetGroup">
<a href="./assets/2022-06-01-forged-cup/forged-cup-button.png" target="_blank">
<img src="./assets/2022-06-01-forged-cup/forged-cup-button.png" class="fileIcon">
<label>forged-cup-button.png</label>
</a>
<a href="./assets/2022-06-01-forged-cup/forged-cup-promo.jpg" target="_blank">
<img src="./assets/2022-06-01-forged-cup/forged-cup-promo.jpg" class="fileIcon">
<label>forged-cup-promo.jpg</label>
</a>
<a href="./assets/2022-06-01-forged-cup/forged-cup-species.jpg" target="_blank">
<img src="./assets/2022-06-01-forged-cup/forged-cup-species.jpg" class="fileIcon">
<label>forged-cup-species.jpg</label>
</a>
<a href="./assets/2022-06-01-forged-cup/forged-cup-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>forged-cup-promo.psd</label>
</a>
<a href="./assets/2022-06-01-forged-cup/copa-forja-promo.jpg" target="_blank">
<img src="./assets/2022-06-01-forged-cup/copa-forja-promo.jpg" class="fileIcon">
<label>copa-forja-promo.jpg</label>
</a>
<a href="./assets/2022-06-01-forged-cup/copa-forja-especies.jpg" target="_blank">
<img src="./assets/2022-06-01-forged-cup/copa-forja-especies.jpg" class="fileIcon">
<label>copa-forja-especies.jpg</label>
</a>
<a href="./assets/2022-06-01-forged-cup/copa-forja-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>copa-forja-promo.psd</label>
</a>
<a href="./assets/2022-06-01-forged-cup/forged-cup-badge.png" target="_blank">
<img src="./assets/2022-06-01-forged-cup/forged-cup-badge.png">
<label>forged-cup-badge.png</label>
</a>
<a href="./assets/2022-06-01-forged-cup/forged-cup-badge.svg" target="_blank">
<img src="./img/svg-icon.png">
<label>forged-cup-badge.svg</label>
</a>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<div class="asset-section" data-season="s4">
<div class="text-left">
<h5>Arena Event: <span style="font-family:'texgyreadventorregular';">May 2022 Firefly
Cup</span></h5>
<p>
Flash into the Firefly meta and build a team that glows using Pokémon with Normal, Bug, Electric, Poison, and Ice type, except for
Ground-types, Walrein, Escavalier, Dragalge, Salazzle, or Pachirisu, which are not permitted in the Firefly Cup
</p>
<p>
Visit <a href="https://silph.gg/cup/firefly">https://silph.gg/cup/firefly</a> for a full
list of rules, stats, and resources.
</p>
<div class="assetGroup">
<a href="./assets/2022-05-01-firefly-cup/firefly-cup-button.png" target="_blank">
<img src="./assets/2022-05-01-firefly-cup/firefly-cup-button.png" class="fileIcon">
<label>firefly-cup-button.png</label>
</a>
<a href="./assets/2022-05-01-firefly-cup/firefly-cup-promo.jpg" target="_blank">
<img src="./assets/2022-05-01-firefly-cup/firefly-cup-promo.jpg" class="fileIcon">
<label>firefly-cup-promo.jpg</label>
</a>
<a href="./assets/2022-05-01-firefly-cup/firefly-cup-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>firefly-cup-promo.psd</label>
</a>
<a href="./assets/2022-05-01-firefly-cup/copa-firefly-promo.jpg" target="_blank">
<img src="./assets/2022-05-01-firefly-cup/copa-firefly-promo.jpg" class="fileIcon">
<label>copa-firefly-promo.jpg</label>
</a>
<a href="./assets/2022-05-01-firefly-cup/copa-firefly-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>copa-firefly-promo.psd</label>
</a>
<a href="./assets/2022-05-01-firefly-cup/firefly-cup-badge.png" target="_blank">
<img src="./assets/2022-05-01-firefly-cup/firefly-cup-badge.png">
<label>firefly-cup-badge.png</label>
</a>
<a href="./assets/2022-05-01-firefly-cup/firefly-cup-badge.svg" target="_blank">
<img src="./img/svg-icon.png">
<label>firefly-cup-badge.svg</label>
</a>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<div class="asset-section" data-season="s4">
<div class="text-left">
<h5>Arena Event: <span style="font-family:'texgyreadventorregular';">April 2022 Nemesis
Cup</span></h5>
<p>
Let rivalry push your limits and strengthen your skills! Build a team with one fighter
(Obstagoon, Gallade, Lucario, Poliwrath, Pangoro, Blaziken, Chesnaught, Quagsire,
Flygon, or Excadrill) and one anti-fighter (Jumpluff, Dedenne, Froslass, Gourgeist,
Noctowl, Gyarados, Charizard, Gengar, Galarian Rapidash, or Mawile), then fill out the
rest of your team by carefully balancing between the allowed and banned typings.
</p>
<p>
Visit <a href="https://silph.gg/cup/nemesis">https://silph.gg/cup/nemesis</a> for a full
list of rules, stats, and resources.
</p>
<div class="assetGroup">
<a href="./assets/2022-04-01-nemesis-cup/nemesis-cup-button.png" target="_blank">
<img src="./assets/2022-04-01-nemesis-cup/nemesis-cup-button.png" class="fileIcon">
<label>nemesis-cup-button.png</label>
</a>
<a href="./assets/2022-04-01-nemesis-cup/nemesis-cup-promo.jpg" target="_blank">
<img src="./assets/2022-04-01-nemesis-cup/nemesis-cup-promo.jpg" class="fileIcon">
<label>nemesis-cup-promo.jpg</label>
</a>
<a href="./assets/2022-04-01-nemesis-cup/nemesis-cup-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>nemesis-cup-promo.psd</label>
</a>
<a href="./assets/2022-04-01-nemesis-cup/copa-nemesis-promo.jpg" target="_blank">
<img src="./assets/2022-04-01-nemesis-cup/copa-nemesis-promo.jpg" class="fileIcon">
<label>copa-nemesis-promo.jpg</label>
</a>
<a href="./assets/2022-04-01-nemesis-cup/copa-nemesis-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>copa-nemesis-promo.psd</label>
</a>
<a href="./assets/2022-04-01-nemesis-cup/nemesis-cup-badge.png" target="_blank">
<img src="./assets/2022-04-01-nemesis-cup/nemesis-cup-badge.png">
<label>nemesis-cup-badge.png</label>
</a>
<a href="./assets/2022-04-01-nemesis-cup/nemesis-cup-badge.svg" target="_blank">
<img src="./img/svg-icon.png">
<label>nemesis-cup-badge.svg</label>
</a>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<div class="asset-section" data-season="s4">
<div class="text-left">
<h5>Arena Event: <span style="font-family:'texgyreadventorregular';">March 2022 Obsidian
Cup</span></h5>
<p>
Erupt into the next challenge of the Season! Build a team that doesn't fissure without Fairy, Fighting, Grass, Flying, or Ground typing.
Additionally Mega, Shadow, Bastiodon, Lickitung, Pachirisu, Vigoroth, or Registeel are not permitted in the Obsidian Cup
</p>
<p>
Visit <a href="https://silph.gg/cup/obsidian">https://silph.gg/cup/obsidian</a> for a full
list of rules, stats, and resources.
</p>
<div class="assetGroup">
<a href="./assets/2022-03-01-obsidian-cup/obsidian-cup-button.png" target="_blank">
<img src="./assets/2022-03-01-obsidian-cup/obsidian-cup-button.png" class="fileIcon">
<label>obsidian-cup-button.png</label>
</a>
<a href="./assets/2022-03-01-obsidian-cup/obsidian-cup-promo.jpg" target="_blank">
<img src="./assets/2022-03-01-obsidian-cup/obsidian-cup-promo.jpg" class="fileIcon">
<label>obsidian-cup-promo.jpg</label>
</a>
<a href="./assets/2022-03-01-obsidian-cup/obsidian-cup-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>obsidian-cup-promo.psd</label>
</a>
<a href="./assets/2022-03-01-obsidian-cup/copa-obsidiana-promo.jpg" target="_blank">
<img src="./assets/2022-03-01-obsidian-cup/copa-obsidiana-promo.jpg" class="fileIcon">
<label>copa-obsidiana-promo.jpg</label>
</a>
<a href="./assets/2022-03-01-obsidian-cup/copa-obsidiana-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>copa-obsidiana-promo.psd</label>
</a>
<a href="./assets/2022-03-01-obsidian-cup/obsidian-cup-badge.png" target="_blank">
<img src="./assets/2022-03-01-obsidian-cup/obsidian-cup-badge.png">
<label>obsidian-cup-badge.png</label>
</a>
<a href="./assets/2022-03-01-obsidian-cup/obsidian-cup-badge.svg" target="_blank">
<img src="./img/svg-icon.png">
<label>obsidian-cup-badge.svg</label>
</a>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<div class="asset-section" data-season="s4">
<div class="text-left">
<h5>Arena Event: <span style="font-family:'texgyreadventorregular';">February 2022 Guardian
Cup</span></h5>
<p>
Prepare to shield off the competition! Oversee a team of Pokémon who can learn or use moves of these types: Electric, Fighting, Fire, Flying, and Psychic!
Pokémon on your battle teams do not need to be equipped with moves of these types, but must learn or use them.
Fairy types, Lickitung, Medicham, Scrafty, Altaria, Pachirisu, Wobbufet, U-Stunfisk, Umbreon, Mandibuzz, Vullaby, Cofagrigus, Obstagoon, Hypno, Chansey,
Bastiodon, Diggersby, Tropius, and Lantern are not permitted in the Guardian Cup
</p>
<p>
Visit <a href="https://silph.gg/cup/guardian">https://silph.gg/cup/guardian</a> for a full
list of rules, stats, and resources.
</p>
<div class="assetGroup">
<a href="./assets/2022-02-01-guardian-cup/guardian-cup-button.png" target="_blank">
<img src="./assets/2022-02-01-guardian-cup/guardian-cup-button.png" class="fileIcon">
<label>guardian-cup-button.png</label>
</a>
<a href="./assets/2022-02-01-guardian-cup/guardian-cup-promo.jpg" target="_blank">
<img src="./assets/2022-02-01-guardian-cup/guardian-cup-promo.jpg" class="fileIcon">
<label>guardian-cup-promo.jpg</label>
</a>
<a href="./assets/2022-02-01-guardian-cup/guardian-cup-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>guardian-cup-promo.psd</label>
</a>
<a href="./assets/2022-02-01-guardian-cup/copa-guardian-promo.jpg" target="_blank">
<img src="./assets/2022-02-01-guardian-cup/copa-guardian-promo.jpg" class="fileIcon">
<label>copa-guardian-promo.jpg</label>
</a>
<a href="./assets/2022-02-01-guardian-cup/copa-guardian-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>copa-guardian-promo.psd</label>
</a>
<a href="./assets/2022-02-01-guardian-cup/guardian-cup-badge.png" target="_blank">
<img src="./assets/2022-02-01-guardian-cup/guardian-cup-badge.png">
<label>guardian-cup-badge.png</label>
</a>
<a href="./assets/2022-02-01-guardian-cup/guardian-cup-badge.svg" target="_blank">
<img src="./img/svg-icon.png">
<label>guardian-cup-badge.svg</label>
</a>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<div class="asset-section" data-season="s4">
<div class="text-left">
<h5>Arena Event: <span style="font-family:'texgyreadventorregular';">December 2021 Glacial
Cup</span></h5>
<p>
Don't melt under the pressure! In the Glacial Cup you can build your team with Dragon, Ice, Poison, Psychic, and Water type
Pokémon, except for Altaria, Azumarill, Jellicent, Swampert, Deoxys Defense, Wobbuffet, Cresselia, Medicham, Alolan Ninetails,
Alolan Sandshrew, Lanturn, Gardevoir, Toxicroack and Mega Pokémon, which are not permitted in the Glacial Cup
</p>
<p>
Visit <a href="https://silph.gg/cup/glacial">https://silph.gg/cup/glacial</a> for a full
list of rules, stats, and resources.
</p>
<div class="assetGroup">
<a href="./assets/2021-12-01-glacial-cup/glacial-cup-button.png" target="_blank">
<img src="./assets/2021-12-01-glacial-cup/glacial-cup-button.png" class="fileIcon">
<label>glacial-cup-button.png</label>
</a>
<a href="./assets/2021-12-01-glacial-cup/glacial-cup-promo.jpg" target="_blank">
<img src="./assets/2021-12-01-glacial-cup/glacial-cup-promo.jpg" class="fileIcon">
<label>glacial-cup-promo.jpg</label>
</a>
<a href="./assets/2021-12-01-glacial-cup/glacial-cup-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>glacial-cup-promo.psd</label>
</a>
<a href="./assets/2021-12-01-glacial-cup/copa-glaciar-promo.jpg" target="_blank">
<img src="./assets/2021-12-01-glacial-cup/copa-glaciar-promo.jpg" class="fileIcon">
<label>copa-glaciar-promo.jpg</label>
</a>
<a href="./assets/2021-12-01-glacial-cup/copa-glaciar-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>copa-glaciar-promo.psd</label>
</a>
<a href="./assets/2021-12-01-glacial-cup/glacial-cup-badge.png" target="_blank">
<img src="./assets/2021-12-01-glacial-cup/glacial-cup-badge.png">
<label>glacial-cup-badge.png</label>
</a>
<a href="./assets/2021-12-01-glacial-cup/glacial-cup-badge.svg" target="_blank">
<img src="./img/svg-icon.png">
<label>glacial-cup-badge.svg</label>
</a>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<div class="asset-section" data-season="s4">
<div class="text-left">
<h5>Arena Event: <span style="font-family:'texgyreadventorregular';">November 2021 Brawler
Cup</span></h5>
<p>
How do your skills measure up in the Brawler Cup? Choose one Pokémon from each weight
class list to build your team. Megas are not permitted.
</p>
<p>
Visit <a href="https://silph.gg/cup/brawler">https://silph.gg/cup/brawer</a> for a full
list of rules, stats, and resources.
</p>
<div class="assetGroup">
<a href="./assets/2021-11-01-brawler-cup/brawler-cup-button.png" target="_blank">
<img src="./assets/2021-11-01-brawler-cup/brawler-cup-button.png" class="fileIcon">
<label>brawler-cup-button.png</label>
</a>
<a href="./assets/2021-11-01-brawler-cup/brawler-cup-species.jpg" target="_blank">
<img src="./assets/2021-11-01-brawler-cup/brawler-cup-species.jpg" class="fileIcon">
<label>brawler-cup-species.jpg</label>
</a>
<a href="./assets/2021-11-01-brawler-cup/brawler-cup-promo.jpg" target="_blank">
<img src="./assets/2021-11-01-brawler-cup/brawler-cup-promo.jpg" class="fileIcon">
<label>brawler-cup-promo.jpg</label>
</a>
<a href="./assets/2021-11-01-brawler-cup/brawler-cup-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>brawler-cup-promo.psd</label>
</a>
<a href="./assets/2021-11-01-brawler-cup/copa-luchador-species.jpg" target="_blank">
<img src="./assets/2021-11-01-brawler-cup/copa-luchador-species.jpg" class="fileIcon">
<label>copa-luchador-species.jpg</label>
</a>
<a href="./assets/2021-11-01-brawler-cup/copa-luchador-promo.jpg" target="_blank">
<img src="./assets/2021-11-01-brawler-cup/copa-luchador-promo.jpg" class="fileIcon">
<label>copa-luchador-promo.jpg</label>
</a>
<a href="./assets/2021-11-01-brawler-cup/copa-luchador-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>copa-luchador-promo.psd</label>
</a>
<a href="./assets/2021-11-01-brawler-cup/brawler-cup-badge.png" target="_blank">
<img src="./assets/2021-11-01-brawler-cup/brawler-cup-badge.png">
<label>brawler-cup-badge.png</label>
</a>
<a href="./assets/2021-11-01-brawler-cup/brawler-cup-badge.svg" target="_blank">
<img src="./img/svg-icon.png">
<label>brawler-cup-badge.svg</label>
</a>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<div class="asset-section" data-season="s4">
<div class="text-left">
<h5>Arena Event: <span style="font-family:'texgyreadventorregular';">October 2021 Lunar
Cup</span></h5>
<p>
New season, new phase of challenges! In the Lunar Cup, build your team using Bug, Dark,
Electric, Ghost, and Grass type Pokémon to face the dangers that lie ahead! Megas,
Shadows, Scrafty, Pachirisu, Stunfisk, Alolan Marowak, Whimsicott, and Vullaby are not
permitted in the Lunar Cup.
</p>
<p>
Visit <a href="https://silph.gg/cup/lunar">https://silph.gg/cup/lunar</a> for a full
list of rules, stats, and resources.
</p>
<div class="assetGroup">
<a href="./assets/2021-10-01-lunar-cup/lunar-cup-button.png" target="_blank">
<img src="./assets/2021-10-01-lunar-cup/lunar-cup-button.png" class="fileIcon">
<label>lunar-cup-button.png</label>
</a>
<a href="./assets/2021-10-01-lunar-cup/lunar-cup-promo.jpg" target="_blank">
<img src="./assets/2021-10-01-lunar-cup/lunar-cup-promo.jpg" class="fileIcon">
<label>lunar-cup-promo.jpg</label>
</a>
<a href="./assets/2021-10-01-lunar-cup/lunar-cup-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>lunar-cup-promo.psd</label>
</a>
<a href="./assets/2021-10-01-lunar-cup/copa-lunar-promo.jpg" target="_blank">
<img src="./assets/2021-10-01-lunar-cup/copa-lunar-promo.jpg" class="fileIcon">
<label>copa-lunar-promo.jpg</label>
</a>
<a href="./assets/2021-10-01-lunar-cup/copa-lunar-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>copa-lunar-promo.psd</label>
</a>
<a href="./assets/2021-10-01-lunar-cup/lunar-cup-badge.png" target="_blank">
<img src="./assets/2021-10-01-lunar-cup/lunar-cup-badge.png">
<label>lunar-cup-badge.png</label>
</a>
<a href="./assets/2021-10-01-lunar-cup/lunar-cup-badge.svg" target="_blank">
<img src="./img/svg-icon.png">
<label>lunar-cup-badge.svg</label>
</a>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<div class="asset-section show" data-season="s3">
<div class="text-left">
<h5>Arena Event: <span style="font-family:'texgyreadventorregular';">June 2021 Venture
Cup</span></h5>
<p>
June's Global Cup brings another team building challenge never before seen in the Arena! In the Venture Cup,
you'll have a certain number of points to "spend" in order to build your roster.
Some Pokémon will cost more points than others,
so choose wisely! For a full list of rules, resources, and stats, visit
<a href="https://silph.gg/cup/venture">https://silph.gg/cup/venture</a>.
</p>
<div class="assetGroup">
<a href="./assets/2021-06-01-venture-cup/venture-cup-points.jpg" target="_blank">
<img src="./assets/2021-06-01-venture-cup/venture-cup-points.jpg" class="fileIcon">
<label>venture-cup-points.png</label>
</a>
<a href="./assets/2021-06-01-venture-cup/venture-cup-promo.jpg" target="_blank">
<img src="./assets/2021-06-01-venture-cup/venture-cup-promo.jpg" class="fileIcon">
<label>venture-cup-promo.png</label>
</a>
<a href="./assets/2021-06-01-venture-cup/venture-cup-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>venture-cup-promo.psd</label>
</a>
<a href="./assets/2021-06-01-venture-cup/copa-hazana-puntos.jpg" target="_blank">
<img src="./assets/2021-06-01-venture-cup/copa-hazana-puntos.jpg" class="fileIcon">
<label>copa-hazana-puntos.png</label>
</a>
<a href="./assets/2021-06-01-venture-cup/copa-hazana-promo.jpg" target="_blank">
<img src="./assets/2021-06-01-venture-cup/copa-hazana-promo.jpg" class="fileIcon">
<label>copa-hazana-promo.png</label>
</a>
<a href="./assets/2021-06-01-venture-cup/copa-hazana-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>copa-hazana-promo.psd</label>
</a>
<a href="./assets/2021-06-01-venture-cup/venture-cup-badge.png" target="_blank">
<img src="./assets/2021-06-01-venture-cup/venture-cup-badge.png">
<label>venture-cup-badge.png</label>
</a>
<a href="./assets/2021-06-01-venture-cup/venture-cup-badge.svg" target="_blank">
<img src="./img/svg-icon.png">
<label>venture-cup-badge.svg</label>
</a>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<div class="asset-section show" data-season="s3">
<div class="text-left">
<h5>Arena Event: <span style="font-family:'texgyreadventorregular';">May 2021 Commander
Cup</span></h5>
<p>
Pick a commander and prepare for battle in May's
Arena challenge! In the Commander Cup, build
your team by selecting one "Commander" from the
10 eligible Pokémon, then filling out the
remaining 5 spots on your roster using Pokémon
with Rock, Ice, Electric, Poison, or Psychic
typing (including dual types). For a full list
of rules, resources, and stats, visit
<a href="https://silph.gg/cup/commander">https://silph.gg/cup/commander</a>.
</p>
<div class="assetGroup">
<a href="./assets/2021-05-01-commander-cup/commander-cup-promo.jpg" target="_blank">
<img src="./assets/2021-05-01-commander-cup/commander-cup-promo.jpg" class="fileIcon">
<label>commander-cup-promo.png</label>
</a>
<a href="./assets/2021-05-01-commander-cup/commander-cup-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>commander-cup-promo.psd</label>
</a>
<a href="./assets/2021-05-01-commander-cup/copa-commander-promo.jpg" target="_blank">
<img src="./assets/2021-05-01-commander-cup/copa-commander-promo.jpg" class="fileIcon">
<label>copa-commander-promo.png</label>
</a>
<a href="./assets/2021-05-01-commander-cup/copa-commander-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>copa-commander-promo.psd</label>
</a>
<a href="./assets/2021-05-01-commander-cup/commander-cup-badge.png" target="_blank">
<img src="./assets/2021-05-01-commander-cup/commander-cup-badge.png">
<label>commander-cup-badge.png</label>
</a>
<a href="./assets/2021-05-01-commander-cup/commander-cup-badge.svg" target="_blank">
<img src="./img/svg-icon.png">
<label>commander-cup-badge.svg</label>
</a>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<div class="asset-section show" data-season="s3">
<div class="text-left">
<h5>Arena Event: <span style="font-family:'texgyreadventorregular';">April 2021 Prismatic
Cup</span></h5>
<p>
Dazzle your opponents with your mastery of the
full spectrum of Pokémon! In the Prismatic Cup,
build your team of 6 selecting one Pokémon from
each color category using the pre-approved
lists. Pokémon color is based on the Pokédex
classification on Bulbapedia. Shadows are not
allowed in the Prismatic Cup. For a full list of
allowed species, resources, and stats, visit
<a href="https://silph.gg/cup/prismatic">https://silph.gg/cup/prismatic</a>.
</p>
<div class="assetGroup">
<a href="./assets/2021-04-01-prismatic-cup/prismatic-cup-promo.jpg" target="_blank">
<img src="./assets/2021-04-01-prismatic-cup/prismatic-cup-promo.jpg" class="fileIcon">
<label>prismatic-cup-promo.png</label>
</a>
<a href="./assets/2021-04-01-prismatic-cup/prismatic-cup-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>prismatic-cup-promo.psd</label>
</a>
<a href="./assets/2021-04-01-prismatic-cup/copa-prisma-promo.jpg" target="_blank">
<img src="./assets/2021-04-01-prismatic-cup/copa-prisma-promo.jpg" class="fileIcon">
<label>copa-prisma-promo.png</label>
</a>
<a href="./assets/2021-04-01-prismatic-cup/copa-prisma-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>copa-prisma-promo.psd</label>
</a>
<a href="./assets/2021-04-01-prismatic-cup/prismatic-cup-badge.png" target="_blank">
<img src="./assets/2021-04-01-prismatic-cup/prismatic-cup-badge.png">
<label>prismatic-cup-badge.png</label>
</a>
<a href="./assets/2021-04-01-prismatic-cup/prismatic-cup-badge.svg" target="_blank">
<img src="./img/svg-icon.png">
<label>prismatic-cup-badge.svg</label>
</a>
<a href="./assets/2021-04-01-prismatic-cup/prismatic-cup-allowed.jpg" target="_blank">
<img src="./assets/2021-04-01-prismatic-cup/prismatic-cup-allowed.jpg">
<label>prismatic-cup-allowed.jpg</label>
</a>
<a href="./assets/2021-04-01-prismatic-cup/copa-prisma-permitidos.jpg" target="_blank">
<img src="./assets/2021-04-01-prismatic-cup/copa-prisma-permitidos.jpg">
<label>copa-prisma-permitidos.jpg</label>
</a>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<div class="asset-section show" data-season="s3">
<div class="text-left">
<h5>Arena Event: <span style="font-family:'texgyreadventorregular';">March 2021 Vortex
Cup</span></h5>
<p>
A new storm is descending on the Arena! In the
Vortex Cup, build your team using your strongest
6 Pokémon with a max CP of 1500! ALL Pokémon are
allowed except for Fairy Types, Legendaries, and
a ban list of 20 species. For a full list of
rules, resources, and stats, visit
<a href="https://silph.gg/cup/vortex">https://silph.gg/cup/vortex</a>.
</p>
<div class="assetGroup">
<a href="./assets/2021-03-01-vortex-cup/vortex-cup-promo.jpg" target="_blank">
<img src="./assets/2021-03-01-vortex-cup/vortex-cup-promo.jpg" class="fileIcon">
<label>vortex-cup-promo.png</label>
</a>
<a href="./assets/2021-03-01-vortex-cup/vortex-cup-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>vortex-cup-promo.psd</label>
</a>
<a href="./assets/2021-03-01-vortex-cup/copa-vortex-promo.jpg" target="_blank">
<img src="./assets/2021-03-01-vortex-cup/copa-vortex-promo.jpg" class="fileIcon">
<label>copa-vortex-promo.png</label>
</a>
<a href="./assets/2021-03-01-vortex-cup/copa-vortex-promo.psd" target="_blank">
<img src="img/photoshop-icon.png" class="fileIcon">
<label>copa-vortex-promo.psd</label>
</a>
<a href="./assets/2021-03-01-vortex-cup/vortex-cup-badge.png" target="_blank">
<img src="./assets/2021-03-01-vortex-cup/vortex-cup-badge.png">
<label>vortex-cup-badge.png</label>
</a>
<a href="./assets/2021-03-01-vortex-cup/vortex-cup-badge.svg" target="_blank">
<img src="./img/svg-icon.png">
<label>vortex-cup-badge.svg</label>