forked from SilphRoad/silph-league
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1621 lines (1605 loc) · 117 KB
/
index.html
File metadata and controls
1621 lines (1605 loc) · 117 KB
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>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5PL3Z2R8T5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-5PL3Z2R8T5');
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PoGo Community Checkpoint 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">
<!-- Main CSS -->
<link rel="stylesheet" href="style.css">
<meta http-equiv="refresh" content="1; URL=https://pogo.community/assets" />
</head>
<body>
<div class="container"
style="margin:30px auto;padding: 0;border-top: 10px dashed rgba(61, 61, 61, 0.72);max-width:920px;">
<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="./assets/checkpoint-assets/logo.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(19, 236, 189, 0.702);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';">
Checkpoint 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;">
<h3
style="font-family: 'texgyreadventorbold';color: #e4c049;margin-bottom: 14px;font-size: 16px;text-align: left;">
Free Graphics for Your Meetups and More!
</h3>
<p style="margin-bottom:10px;text-align: left;">
Welcome to the PoGo Community Checkpoint Assets page! This is where we maintain a comprehensive archive of the assets we share. All our assets are published under a <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/" target="_blank">CC BY-NC-SA</a> license, which means they are for non-commercial use only, unless stated otherwise on an individual asset level. In addition to our own published assets, we occasionally provide links to other valuable assets published elsewhere on the web, benefiting community leaders. We kindly request that you honor the licensing terms set by the artists who have shared their work when accessing such resources.
</p>
<p>
Notice: This project has no affailation with The Silph Road. We're fans of TSR, and were saddened by their sunset. In order to give community organizers a new home to find assets to promote their event as quickly as possible we <a href="https://github.com/SilphRoad/silph-league/blob/master/LICENSE" target="_blank">forked their assets repo</a> so we could quickly get this website up for community leaders who had come to rely on monthly assets and in the coming months we will be changing more and more to clearly diferentiate us!
</p>
<p>This resource is a volunteer project from passionate fans, if you'd like to contribute to this effort share your asset to <a href="https://discord.com/channels/356458569069101058/1107742441471234118" target="_blank">the-art-studio</a> channel in our <a href="https://discord.gg/ybmecaTYUN" target="_blank">Discord server</a>, or submit your assets using <a href="https://docs.google.com/forms/d/e/1FAIpQLSePwUaE9yfMIvE1QcSDQiipbn9ye9y99GpGhnfVyjogyU_-0Q/viewform" target="_blank">this submission form</a>. Submissions from the community keeps this project going!</p>
<div class="filters">
<div class="filter-section">
<h3 style="font-family: 'texgyreadventorbold';color: #e4c049;margin-bottom: 10px;font-size: 16px;text-align: left;">
Asset Type</h3>
<div class="options">
<label>
<input type="radio" name="type" value="all" checked>
<span>All</span>
</label>
<label>
<input type="radio" name="type" value="community-day">
<span>Community Day</span>
</label>
<label>
<input type="radio" name="type" value="raid-event">
<span>Raid Events</span>
</label>
<label>
<input type="radio" name="type" value="special-events">
<span>Special Events</span>
</label>
<label>
<input type="radio" name="type" value="general">
<span>General</span>
</label>
<label>
<input type="radio" name="type" value="external">
<span>External Asset Resources</span>
</label>
</div>
</div>
<div class="filter-section">
<h3 style="font-family: 'texgyreadventorbold';color: #e4c049;margin-bottom: 10px;font-size: 16px;text-align: left;">
Year</h3>
<div class="options">
<label>
<input type="radio" name="date" value="2024" checked>
<span>2024</span>
</label>
<label>
<input type="radio" name="date" value="2023">
<span>2023</span>
</label>
</div>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
<div class="text-left">
<!-- Start Landorus Raid Hour -->
<div class="asset-section" data-type="raid-event" data-year="2024">
<h5><a class="page-anchor" id="2024-01-24-raid-hour" href="#2024-01-24-raid-hour">Raid Hour:</a> <span style="font-family:'texgyreadventorregular';">Landorus (Therian Forme)</span></h5>
<p>
A Raid Hour featuring Therian Forme Landorus is scheduled from 6 to 7 pm Local Time. During this hour there will be an increased number of five-star Raids. Check out <a href="https://leekduck.com/events/raidhour20240124/">LeekDuck</a> for details.
</p>
<div class="assetGroup">
<div class="asset">
<a href="./assets/2024/Season13-TimelessTravels/2024-01-24-raid-hour/Christina_Landorus.jpg" target="_blank">
<img alt="Landorus in the background, text on the foreground saying LANDORUS RAID HOUR" src="./assets/2024/Season13-TimelessTravels/2024-01-24-raid-hour/Christina_Landorus.jpg">
<div class="asset-label">
<img src="./img/jpg.png" alt="JPG File Label">
</div>
<label>Christina's Landorus Raid Hour Icon</label>
</a>
<p>
Square design perfect for your Campfire Events
<div class="credits">
Icon Design: <a href="https://www.instagram.com/Christina_Joss/">Christina_Joss</a>
</div>
</p>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<!-- End Landorus Raid Hour -->
<!-- Start Porygon Community Day Classic -->
<div class="asset-section" data-type="community-day" data-year="2024">
<h5><a class="page-anchor" id="Jan2024CommunityDayClassic" href="#Jan2024CommunityDayClassic">Community Day Classic:</a> <span style="font-family:'texgyreadventorregular';">Porygon</span></h5>
<p>
You don't need to gamble at <a href="https://bulbapedia.bulbagarden.net/wiki/Celadon_Game_Corner">Rocket's Game Corner</a> for your porygon anymore! They're back for another round this January Community Day Classic.
</p>
<div class="assetGroup">
<div class="asset">
<a href="https://drive.google.com/open?id=10_dJW8oQ2I9KNxXphprPGJJm63pwVz70&usp=drive_fs" target="_blank">
<img alt="" src="./assets/2024/Season13-TimelessTravels/2024-01-20-community-day-classic/luximity_badge.png">
<div class="asset-label">
<img src="./img/gdrive-folder-icon.png" alt="Google Drive Folder Label">
</div>
<label>Hexagon Badge</label>
</a>
<p>
Designed to seamlessly fill the void left by the Former Silph Road's asset team.
<div class="credits">
Badge Design: <a href="https://www.instagram.com/lux.imity_xx/">xLuximityx</a>
</div>
</p>
</div>
<div class="asset">
<a href="https://drive.google.com/open?id=10_dJW8oQ2I9KNxXphprPGJJm63pwVz70&usp=drive_fs" target="_blank">
<img alt="" src="./assets/2024/Season13-TimelessTravels/2024-01-20-community-day-classic/luximity_badge_w_background.png">
<div class="asset-label">
<img src="./img/gdrive-folder-icon.png" alt="Google Drive Folder Label">
</div>
<label>Hexagon Badge with Background</label>
</a>
<p>
Great for use to make buttons or stickers, plenty of extra background to crop to desired size.
<div class="credits">
Badge Design: <a href="https://www.instagram.com/lux.imity_xx/">xLuximityx</a>
</div>
</p>
</div>
<div class="asset">
<a href="./assets/2024/Season13-TimelessTravels/2024-01-20-community-day-classic/Christina_Porygon.png" target="_blank">
<img alt="" src="./assets/2024/Season13-TimelessTravels/2024-01-20-community-day-classic/Christina_Porygon.png">
<div class="asset-label">
<img src="./img/png.png" alt="PNG File Label">
</div>
<label>Cristina's Badge Design</label>
</a>
<p>
<div class="credits">
Designed by <a href="https://www.instagram.com/Christina_Joss/">Christina_Joss</a> for her own community, and shared with us!
</div>
</p>
</div>
<div class="asset">
<a href="./assets/2024/Season13-TimelessTravels/2024-01-20-community-day-classic/LakeshorePOGO_porygon_1.png" target="_blank">
<img alt="" src="./assets/2024/Season13-TimelessTravels/2024-01-20-community-day-classic/LakeshorePOGO_porygon_1.png">
<div class="asset-label">
<img src="./img/png.png" alt="PNG File Label">
</div>
<label>LakeshorePOGO's Porygon Button 1</label>
</a>
<p>
<div class="credits">
Badge Design: <a href="https://x.com/LakeshorePOGO" target="_blank">LakeshorePOGO</a>
</div>
</p>
</div>
<div class="asset">
<a href="./assets/2024/Season13-TimelessTravels/2024-01-20-community-day-classic/LakeshorePOGO_porygon_2.png" target="_blank">
<img alt="" src="./assets/2024/Season13-TimelessTravels/2024-01-20-community-day-classic/LakeshorePOGO_porygon_2.png">
<div class="asset-label">
<img src="./img/png.png" alt="PNG File Label">
</div>
<label>LakeshorePOGO's Rowlet Button 2</label>
</a>
<p>
<div class="credits">
Badge Design: <a href="https://x.com/LakeshorePOGO" target="_blank">LakeshorePOGO</a>
</div>
</p>
</div>
<div class="asset">
<a href="https://www.printables.com/model/607738-low-poly-porygon-piggy-bank" target="_blank">
<img alt="" src="./assets/2024/Season13-TimelessTravels/2024-01-20-community-day-classic/low_poly_porygon_flowalistik_piggy-bank_5_hero.webp">
<div class="asset-label">
<img src="https://printables.com/favicon.ico" alt="Printables Link Label">
</div>
<label>Low-poly Porygon - Piggy Bank</label>
</a>
<p>
<div class="credits">
Paid Design by <a href="https://www.printables.com/@flowalistik" target="_blank">Agustin Arroyo</a>
</div>
</p>
</div>
<div class="asset">
<a href="https://www.printables.com/model/605944-low-poly-porygon/comments" target="_blank">
<img alt="" src="./assets/2024/Season13-TimelessTravels/2024-01-20-community-day-classic/lowpoly_porygon_flowalistik_hero.webp">
<div class="asset-label">
<img src="https://printables.com/favicon.ico" alt="Printables Link Label">
</div>
<label>Low-poly Porygon</label>
</a>
<p>
Great design for bulk production. I scaled them to 25mm tall, and printed them at .2mm layer height, 3 walls, and 5% infill. Then I just filled the bed with them and they came out great!
<div class="credits">
Paid Design by <a href="https://www.printables.com/@flowalistik" target="_blank">Agustin Arroyo</a>
</div>
</p>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<!-- End Porygon Community Day Classic -->
<!-- Start Thundurus Raid Hour -->
<div class="asset-section" data-type="raid-event" data-year="2024">
<h5><a class="page-anchor" id="hisuian-typhlosion-raid-day" href="#hisuian-typhlosion-raid-day">Raid Hour:</a> <span style="font-family:'texgyreadventorregular';">Thundurus (Therian Forme)</span></h5>
<p>
A Raid Hour featuring Therian Forme Thundurus is scheduled from 6 to 7 pm Local Time. During this hour there will be an increased number of five-star Raids. Check out <a href="https://leekduck.com/events/raidhour20240117/">LeekDuck</a> for details.
</p>
<div class="assetGroup">
<div class="asset">
<a href="./assets/2024/Season13-TimelessTravels/2024-01-17-raid-hour/Christina_Thundurus.jpg" target="_blank">
<img alt="Thundurus in the background, text on the foreground saying THUNDERUS RAID HOUR" src="./assets/2024/Season13-TimelessTravels/2024-01-17-raid-hour/Christina_Thundurus.jpg">
<div class="asset-label">
<img src="./img/jpg.png" alt="JPG File Label">
</div>
<label>Christina's Thundurus Raid Hour Icon</label>
</a>
<p>
Square design perfect for your Campfire Events
<div class="credits">
Icon Design: <a href="https://www.instagram.com/Christina_Joss/">Christina_Joss</a>
</div>
</p>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<!-- End Thunderus Raid Hour -->
<!-- Start Hisuian Typhlosion Raid Day -->
<div class="asset-section" data-type="raid-event" data-year="2024">
<h5><a class="page-anchor" id="hisuian-typhlosion-raid-day" href="#hisuian-typhlosion-raid-day">Raid Day:</a> <span style="font-family:'texgyreadventorregular';">Hisuian Typhlosion</span></h5>
<p>
Hisuian Typhlosion Raid Day will take place on January 14, 2024 from 2 pm to 5 pm. Check out <a href="https://leekduck.com/events/hisuian-typhlosion-raid-day/">LeekDuck</a> for details.
</p>
<div class="assetGroup">
<div class="asset">
<a href="./assets/2024/Season13-TimelessTravels/2024-01-14-raid-day/Christina_HisuianTyphlosion.jpg" target="_blank">
<img alt="HISUIAN TYPHLOSION in the background, text on the foreground saying HISUIAN TYPHLOSION RAID HOUR" src="./assets/2024/Season13-TimelessTravels/2024-01-14-raid-day/Christina_HisuianTyphlosion.jpg">
<div class="asset-label">
<img src="./img/jpg.png" alt="JPG File Label">
</div>
<label>Christina's Hisuian Typhlosion Raid Hour Icon</label>
</a>
<p>
Square design perfect for your Campfire Events
<div class="credits">
Icon Design: <a href="https://www.instagram.com/Christina_Joss/">Christina_Joss</a>
</div>
</p>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<!-- End Hisuian Typhlosion Raid Day -->
<!-- Start Rowlet Community Day -->
<div class="asset-section" data-type="community-day" data-year="2024">
<h5><a class="page-anchor" id="Jan2024CommunityDay" href="#Jan2024CommunityDay">Community Day:</a> <span style="font-family:'texgyreadventorregular';">Rowlet</span></h5>
<p>
Kicking off the first community day on the first saturday of 2024 we'll be seeing Rowlet community day!
</p>
<div class="assetGroup">
<div class="asset">
<a href="https://drive.google.com/open?id=1--Zx4RFwPNmkNkyXL9AP2RpQ3WtGVSmJ&usp=drive_fs" target="_blank">
<img alt="" src="./assets/2024/Season13-TimelessTravels/2024-01-06-community-day/luximity_badge.png">
<div class="asset-label">
<img src="./img/gdrive-folder-icon.png" alt="Google Drive Folder Label">
</div>
<label>Hexagon Badge</label>
</a>
<p>
Designed to seamlessly fill the void left by the Former Silph Road's asset team.
</p>
<div class="credits">
Badge Design: <a href="https://www.instagram.com/lux.imity_xx/">xLuximityx</a>
</div>
</p>
</div>
<div class="asset">
<a href="https://drive.google.com/open?id=1--Zx4RFwPNmkNkyXL9AP2RpQ3WtGVSmJ&usp=drive_fs" target="_blank">
<img alt="" src="./assets/2024/Season13-TimelessTravels/2024-01-06-community-day/luximity_badge_w_background.png">
<div class="asset-label">
<img src="./img/gdrive-folder-icon.png" alt="Google Drive Folder Label">
</div>
<label>Hexagon Badge with Background</label>
</a>
<p>
Great for use to make buttons or stickers, plenty of extra background to crop to desired size.
</p>
<div class="credits">
Badge Design: <a href="https://www.instagram.com/lux.imity_xx/">xLuximityx</a>
</div>
</div>
<div class="asset">
<a href="./assets/2024/Season13-TimelessTravels/2024-01-06-community-day/Christina_Rowlet.png" target="_blank">
<img alt="" src="./assets/2024/Season13-TimelessTravels/2024-01-06-community-day/Christina_Rowlet.png">
<div class="asset-label">
<img src="./img/png.png" alt="PNG File Label">
</div>
<label>Cristina's Badge Design</label>
</a>
<div class="credits">
Designed by <a href="https://www.instagram.com/Christina_Joss/">Christina_Joss</a> for her own community, and shared with us!
</div>
</div>
<div class="asset">
<a href="./assets/2024/Season13-TimelessTravels/2024-01-06-community-day/CDLRowletBanner.png" target="_blank">
<img alt="" src="./assets/2024/Season13-TimelessTravels/2024-01-06-community-day/CDLRowletBanner.png">
<div class="asset-label">
<img src="./img/png.png" alt="PNG File Label">
</div>
<label>CDL Rowlet Banner</label>
</a>
<p>
Published by the CDL Team for you to promote your communiy's participation in the Community Day League
<div class="credits">
<a href="https://discord.gg/dGPHjdKGZm" target="_blank">Community Day League team</a>
</div>
</p>
</div>
<div class="asset">
<a href="./assets/2024/Season13-TimelessTravels/2024-01-06-community-day/CDLRowlet.png" target="_blank">
<img alt="" src="./assets/2024/Season13-TimelessTravels/2024-01-06-community-day/CDLRowlet.png">
<div class="asset-label">
<img src="./img/png.png" alt="PNG File Label">
</div>
<label>CDL Rowlet Badge</label>
</a>
<p>
<div class="credits">
Badge Design: <a href="https://discord.gg/dGPHjdKGZm" target="_blank">Community Day League team</a>
</div>
</p>
</div>
<div class="asset">
<a href="./assets/2024/Season13-TimelessTravels/2024-01-06-community-day/CDLRowletGold.png" target="_blank">
<img alt="" src="./assets/2024/Season13-TimelessTravels/2024-01-06-community-day/CDLRowletGold.png">
<div class="asset-label">
<img src="./img/png.png" alt="PNG File Label">
</div>
<label>CDL Rowlet Gold Badge</label>
</a>
<p>
<div class="credits">
Badge Design: <a href="https://discord.gg/dGPHjdKGZm" target="_blank">Community Day League team</a>
</div>
</p>
</div>
<div class="asset">
<a href="./assets/2024/Season13-TimelessTravels/2024-01-06-community-day/LakeshorePOGO_rowlet_1.png" target="_blank">
<img alt="" src="./assets/2024/Season13-TimelessTravels/2024-01-06-community-day/LakeshorePOGO_rowlet_1.png">
<div class="asset-label">
<img src="./img/png.png" alt="PNG File Label">
</div>
<label>LakeshorePOGO's Rowlet Button 1</label>
</a>
<p>
<div class="credits">
Badge Design: <a href="https://x.com/LakeshorePOGO" target="_blank">LakeshorePOGO</a>
</div>
</p>
</div>
<div class="asset">
<a href="./assets/2024/Season13-TimelessTravels/2024-01-06-community-day/LakeshorePOGO_rowlet_2.png" target="_blank">
<img alt="" src="./assets/2024/Season13-TimelessTravels/2024-01-06-community-day/LakeshorePOGO_rowlet_2.png">
<div class="asset-label">
<img src="./img/png.png" alt="PNG File Label">
</div>
<label>LakeshorePOGO's Rowlet Button 2</label>
</a>
<p>
<div class="credits">
Badge Design: <a href="https://x.com/LakeshorePOGO" target="_blank">LakeshorePOGO</a>
</div>
</p>
</div>
<div class="asset">
<a href="https://www.printables.com/model/691996-pokemon-go-community-day-80-coin-rowlet" target="_blank">
<img alt="" src="./assets/2024/Season13-TimelessTravels/2024-01-06-community-day/rowlet_coin.webp">
<div class="asset-label">
<img src="https://printables.com/favicon.ico" alt="Printables Link Label">
</div>
<label>808Asher's Rowlet Coin</label>
</a>
<p>
<div class="credits">
Coin Design: <a href="https://www.printables.com/@808Asher" target="_blank">808Asher</a>
</div>
</p>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<!-- End Rowlet Community Day -->
<!-- Start Buzzwole, Xurkitree, and Pheromosa Raid Hour -->
<div class="asset-section" data-type="raid-event" data-year="2024">
<h5><a class="page-anchor" id="raidhour20240103" href="#raidhour20240103">Raid Hour:</a> <span style="font-family:'texgyreadventorregular';">Buzzwole, Xurkitree, and Pheromosa</span></h5>
<p>
For the first Raid Hour of the new year we get treated to an Ultra Beast! Enjoy the assets below promoting your Raid Hour meetup. Which you see in your community will depend on your region. Check out <a href="">LeekDuck</a> for details.
</p>
<div class="assetGroup">
<div class="asset">
<a href="./assets/2024/Season13-TimelessTravels/2024-01-03-raid-hour/Buzzwole.jpg" target="_blank">
<img alt="Buzzwole in the background, text on the foreground saying BUZZWOLE RAID HOUR" src="./assets/2024/Season13-TimelessTravels/2024-01-03-raid-hour/Buzzwole.jpg">
<div class="asset-label">
<img src="./img/jpg.png" alt="JPG File Label">
</div>
<label>Christina's Buzzwole Raid Hour Icon</label>
</a>
<p>
Square design perfect for your Campfire Events
<div class="credits">
Icon Design: <a href="https://www.instagram.com/Christina_Joss/">Christina_Joss</a>
</div>
</p>
</div>
<div class="asset">
<a href="./assets/2024/Season13-TimelessTravels/2024-01-03-raid-hour/Xurkitree.jpg" target="_blank">
<img alt="Buzzwole in the background, text on the foreground saying XURKITREE RAID HOUR" src="./assets/2024/Season13-TimelessTravels/2024-01-03-raid-hour/Xurkitree.jpg">
<div class="asset-label">
<img src="./img/jpg.png" alt="JPG File Label">
</div>
<label>Christina's Xurkitree Raid Hour Icon</label>
</a>
<p>
Square design perfect for your Campfire Events
<div class="credits">
Icon Design: <a href="https://www.instagram.com/Christina_Joss/">Christina_Joss</a>
</div>
</p>
</div>
<div class="asset">
<a href="./assets/2024/Season13-TimelessTravels/2024-01-03-raid-hour/Pheromosa.jpg" target="_blank">
<img alt="Buzzwole in the background, text on the foreground saying PHEROMOSA RAID HOUR" src="./assets/2024/Season13-TimelessTravels/2024-01-03-raid-hour/Pheromosa.jpg">
<div class="asset-label">
<img src="./img/jpg.png" alt="JPG File Label">
</div>
<label>Christina's Pheromosa Raid Hour Icon</label>
</a>
<p>
Square design perfect for your Campfire Events
<div class="credits">
Icon Design: <a href="https://www.instagram.com/Christina_Joss/">Christina_Joss</a>
</div>
</p>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<!-- End Buzzwole, Xurkitree, and Pheromosa Raid Hour -->
<!-- Start Dec CDay -->
<div class="asset-section" data-type="community-day" data-year="2023">
<h5><a class="page-anchor" id="FinalDec23" href="#FinalDec2023">Meetup Event:</a> <span style="font-family:'texgyreadventorregular';">December Community Day (December 16th & 17th 2023)</span></h5>
<p>
The highly anticipated Community Day Finale in December is on the horizon, This special event is set to bring together all the Pokémon featured in Community Days throughout the year, promising an action-packed and exciting experience for trainers. Stay tuned for further details once the date is officially announced.</p>
<div class="assetGroup">
<div class="asset">
<a href="https://drive.google.com/drive/folders/1-WV9xyngzvTEVLEhOYsoKJbCMuAQ2c6J?usp=share_link" target="_blank">
<img alt="December Community Day Hexagon Badge" src="./assets/2023/2023-12-00-community-day/Finale_Badge.PNG">
<div class="asset-label">
<img src="./img/gdrive-folder-icon.png" alt="Drive Folder Label">
</div>
<label>December Hex Badges</label>
</a>
<p>
Designed to seamlessly fill the void left by the Former Silph Road's asset team. Inside this folder you will also find alternate versions, as well as pre-made templates for button makers. Be sure to print them at actual size with borderless printing if your printer supports it.
<div class="credits">
Badge Design: <a href="https://www.instagram.com/lux.imity_xx/">xLuximityx</a>
</div>
</p>
</div>
<div class="asset">
<a href="https://drive.google.com/file/d/17vpBWQmbTsDdyqBq6ZRhdEeh5aCYeFYX/view?usp=drive_link" target="_blank">
<img alt="Photograph of a PokeStop Gift in Real Life" src="./assets/general/PokestopGift.png">
<div class="asset-label">
<img src="./img/pdf.png" alt="PDF File Label">
</div>
<label>PokeStop Gift Box Printable</label>
</a>
<p>
3 Page PDF Based on the Go Fest from Home Printable gift box design, this was redesigned to be easier to assemble, and a more realisic size. Pair with a breadbag and ribbon for a perfect style! Find instructions <a href="https://drive.google.com/drive/folders/1p2I8paaER3I-Q3c5PySPeRYuam4TKzCA?usp=drive_link" target="_blank">here</a>
<div class="credits">
Designed by <a href="https://social.pogo.community/@forte">Forte</a>
</div>
</p>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<!-- End Dec CDay -->
<!-- Start Nov CDay Classic -->
<div class="asset-section" data-type="community-day" data-year="2023">
<h5><a class="page-anchor" id="Nov23Classic" href="#Nov23Classic">Meetup Event:</a> <span style="font-family:'texgyreadventorregular';">Mareep Community Day Classic (November 25, 2023)</span></h5>
<p>
For the final Community Day Classic of the year, Niantic has chosen to bring Mareep back again into the spotlight. Find out more details from the <a href="https://pokemongolive.com/post/communityday-classic-mareep/" target="_blank">Blogpost</a>
</p>
<div class="assetGroup">
<div class="asset">
<a href="https://drive.google.com/drive/folders/10-WEwQGnl0Y13TYNiXV9RMlB3mN7o1ZQ?usp=drive_link" target="_blank">
<img alt="Mareep Community Day Classic Hexagon Badge" src="./assets/2023/2023-11-25-community-day-classic/Mareep_HexBadge.png">
<div class="asset-label">
<img src="./img/gdrive-folder-icon.png" alt="Drive Folder Label">
</div>
<label>Mareep Classic Hex Badges</label>
</a>
<p>
Designed to seamlessly fill the void left by the Former Silph Road's asset team. Inside this folder you will also find alternate versions, as well as pre-made templates for button makers. Be sure to print them at actual size with borderless printing if your printer supports it.
<div class="credits">
Badge Design: <a href="https://www.instagram.com/lux.imity_xx/">xLuximityx</a>
</div>
</p>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<!-- End Nov CDay Classic -->
<!-- Start Mega Garchomp Raid Day -->
<div class="asset-section" data-type="raid-event" data-year="2023">
<h5><a class="page-anchor" id="GarchompRaidDay2023" href="#GarchompRaidDay2023">Meetup Event:</a> <span style="font-family:'texgyreadventorregular';">Mega Garchomp Raid Day (Saturday, November 11th 2023)</span></h5>
<p>
Mega Garchomp will make its earthshaking Pokémon GO debut and will be featured in raids during this special <a href="https://pokemongolive.com/post/mega-garchomp-raid-day-2023">Raid Day!</a>
</p>
<div class="assetGroup">
<div class="asset">
<a href="./assets/2023/2023-11-11-raid-day/Mega-Garchomp-RAIDFEST.png" target="_blank">
<img alt="Graphical Banner with the text RAIDFEST FEAT MEGA GARCHOMP" src="./assets/2023/2023-11-11-raid-day/Mega-Garchomp-RAIDFEST.png">
<div class="asset-label">
<img src="./img/gdrive-folder-icon.png" alt="Drive Folder Label">
</div>
<label>Promotional Banner</label>
</a>
<p>
<div class="credits">
Shared by MakoMW of the <a href="https://discord.gg/dGPHjdKGZm" target="_blank">Community Day League team</a>
</div>
</p>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<!-- End Mega Garchomp Raid Day -->
<!-- Start Wooper CDay -->
<div class="asset-section" data-type="community-day" data-year="2023">
<h5><a class="page-anchor" id="WooperNov23" href="#WooperNov2023">Meetup Event:</a> <span style="font-family:'texgyreadventorregular';">Wooper Community Day (November 5th 2023)</span></h5>
<p>
Get ready for an exciting November Community Day in Pokémon GO! This time, Wooper and its Paldean form will take the spotlight, with the chance to encounter Shiny versions. Enjoy great bonuses like 1/2 hatch distance, 2x Catch Candy, 3-hour Incense, and 3-hour Lures. Check out our awesome artwork for your meetups and social media channels – just click the links below. Join us for this special event, mark your calendar, and let's make it one to remember! </p>
<div class="assetGroup">
<div class="asset">
<a href="https://drive.google.com/drive/folders/18tvXTHWPkpiK-yx3zKBAcbXBvd2UjQRs?usp=share_link" target="_blank">
<img alt="Wooper Community Day Hexagon Badge" src="./assets/2023/2023-11-05-community-day/Wooper_HexBadge.PNG">
<div class="asset-label">
<img src="./img/gdrive-folder-icon.png" alt="Drive Folder Label">
</div>
<label>Wooper Hex Badges</label>
</a>
<p>
Designed to seamlessly fill the void left by the Former Silph Road's asset team. Inside this folder you will also find alternate versions, as well as pre-made templates for button makers. Be sure to print them at actual size with borderless printing if your printer supports it.
<div class="credits">
Credit: <a href="https://www.instagram.com/lux.imity_xx/">xLuximityx</a><br>
</div>
</p>
</div>
<div class="asset">
<a href="https://drive.google.com/drive/folders/1gJt32XruvTaKjCifKb6W1ThIt8TrNPly?usp=share_link">
<img alt="Wooper CDL Badge" src="./assets/2023/2023-11-05-community-day/CDLWooper.png">
<div class="asset-label">
<img src="./img/gdrive-folder-icon.png" alt="Google Drive Folder Label">
</div>
<label>Wooper CDL Badge</label>
</a>
<p>
Wooper CDL Badge!
<div class="credits">
Badge Design: <a href="https://discord.gg/dGPHjdKGZm" target="_blank">Community Day League team</a>
</div>
</p>
</div>
<div class="asset">
<a href="https://drive.google.com/drive/folders/1PhxYI8p1HjEjwjEE_3X8LLlBX2cg2pbt?usp=drive_link">
<img alt="Wooper CDL Badge" src="./assets/2023/2023-11-05-community-day/wooper-badge-stacked.png">
<div class="asset-label">
<img src="./img/gdrive-folder-icon.png" alt="Google Drive Folder Label">
</div>
<label>Gym Badges</label>
</a>
<p>
Designed to be a Discord emoji for the purpose of being used as a PokeNav badge icon by @_kaiisen in the PGCC Discord
</p>
</div>
<div class="asset">
<a href="./assets/2023/2023-11-05-community-day/woopers_candy.png">
<img alt="Woopers Candy" src="./assets/2023/2023-11-05-community-day/woopers_candy.png">
<div class="asset-label">
<img src="./img/png.png" alt="PNG File Label">
</div>
<label>Woopers Candy!</label>
</a>
<p>
Woopers Candy Graphic!
<div class="credits">
Credit: Twobaccas
</div>
</p>
</div>
<div class="asset">
<a href="https://www.printables.com/model/625382-pokemon-go-community-day-77-coin-wooper">
<img alt="Woopers Candy" src="./assets/2023/2023-11-05-community-day/wooper-coin-model.webp">
<div class="asset-label">
<img src="https://printables.com/favicon.ico" alt="Printables Link Label">
</div>
<label>Wooper Coin</label>
</a>
<p>
"Pokemon Go Community Day #77 coin - Wooper"
<div class="credits">
Credit: <a href="https://www.printables.com/@808Asher">808Asher</a>
</div>
</p>
</div>
<div class="asset">
<a href="https://www.printables.com/model/364620-pokemon-inspired-paldean-wooper-tabletop-dnd-minia">
<img alt="Woopers Candy" src="./assets/2023/2023-11-05-community-day/paldean-wooper-model.webp">
<div class="asset-label">
<img src="https://printables.com/favicon.ico" alt="Printables Link Label">
</div>
<label>Paldean Wooper Model</label>
</a>
<p>
"Pokemon inspired, Paldean Wooper, Tabletop DnD miniature"
<div class="credits">
Credit: <a href="https://www.printables.com/@PixelChroniclesMinia">Pixel Chronicles Miniatures</a>
</div>
</p>
</div>
<div class="asset">
<a href="https://www.printables.com/model/328711-pokemon-inspired-wooper-tabletop-dnd-miniature">
<img alt="Paldean Wooper 3D Model Render" src="./assets/2023/2023-11-05-community-day/wooper-model.webp">
<div class="asset-label">
<img src="https://printables.com/favicon.ico" alt="Printables Link Label">
</div>
<label>Johtonian Wooper Model</label>
</a>
<p>
"Wooper from the Pokemon!"
<div class="credits">
Credit: <a href="https://www.printables.com/@PixelChroniclesMinia">Pixel Chronicles Miniatures</a>
</div>
</p>
</div>
<div class="asset">
<a href="https://www.printables.com/model/364615-pokemon-inspired-clodsire-tabletop-dnd-miniature">
<img alt="Clodsire Tabletop D&D miniature 3D Model Render" src="./assets/2023/2023-11-05-community-day/clodsire-model.webp">
<div class="asset-label">
<img src="https://printables.com/favicon.ico" alt="Printables Link Label">
</div>
<label>Clodsire Model</label>
</a>
<p>
"Clodsire from the Pokemon!
<div class="credits">
Credit: <a href="https://www.printables.com/@PixelChroniclesMinia">Pixel Chronicles Miniatures</a>
</div>
</p>
</div>
<div class="asset">
<a href="https://www.printables.com/model/332185-low-poly-wooper-paldean">
<img alt="Low Poly Paldean Wooper 3D Print" src="./assets/2023/2023-11-05-community-day/lowpoly-wooper-model.webp">
<div class="asset-label">
<img src="https://printables.com/favicon.ico" alt="Printables Link Label">
</div>
<label>Low Poly Paldean Wooper Model</label>
</a>
<p>
"low poly wooper (Paldean)"
<div class="credits">
Credit: <a href="https://www.printables.com/@luckyboi_380639">lucky boi</a>
</div>
</p>
</div>
<div class="asset">
<a href="https://www.printables.com/model/606815-low-poly-clodsire">
<img alt="Low Poly Clodsire 3D Print" src="./assets/2023/2023-11-05-community-day/lowpoly-clodsire-model.webp">
<div class="asset-label">
<img src="https://printables.com/favicon.ico" alt="Printables Link Label">
</div>
<label>Low Poly Clodsire Model</label>
</a>
<p>
"Ive made the pre evolution of this guy and had him sitting in my files, so I decided to publish him"
<div class="credits">
Credit: <a href="https://www.printables.com/@luckyboi_380639">lucky boi</a>
</div>
</p>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<!-- End Wooper CDay -->
<!-- Start Timburr CDay -->
<div class="asset-section" data-type="community-day" data-year="2023">
<h5><a class="page-anchor" id="timburrOct23" href="#timburrOct2023">Meetup Event:</a> <span style="font-family:'texgyreadventorregular';">Timburr Community Day (October 15th 2023)</span></h5>
<p>
The muscular Pokémon Timburr will be flexing its muscles during October Community Day! Timburr will be popping up in the wild more frequently, and if you’re lucky you might just stumble upon a Shiny one! As always you can enjoy bonuses such as 3x Stardust, 3-hour Incense, 3-hour Lures, and 2x Catch Candy. Below, you'll find some artwork to create some “muscle-memories” for your meetups and communication channels. Simply click on the provided links to snag the artwork and be sure to share it across your social media and tag us!
</p>
<div class="assetGroup">
<div class="asset">
<a href="https://drive.google.com/drive/folders/1-Q2LjHZmXfQQdVY4Esiio7BLLsylGfZ5?usp=drive_link" target="_blank">
<img alt="Timburr Community Day Hexagon Badge" src="./assets/2023/2023-10-15-community-day/Conkeldurr_Badge.png">
<div class="asset-label">
<img src="./img/gdrive-folder-icon.png" alt="Drive Folder Label">
</div>
<label>Timburr Hex Badges</label>
</a>
<p>
Designed to seamlessly fill the void left by the Former Silph Road's asset team. Inside this folder you will also find alternate versions, as well as pre-made templates for button makers. Be sure to print them at actual size with borderless printing if your printer supports it.
<div class="credits">
Badge Design: <a href="https://www.instagram.com/lux.imity_xx/">xLuximityx</a> <br>
Base Template: Former Silph Road<br>
Pokemon Sprite: Pokémon Company
</div>
</p>
</div>
<div class="asset">
<a href="https://drive.google.com/drive/folders/1YVs-pzFyhPXLP8zIMQxt2p1W_NbGz5qt?usp=sharing">
<img alt="Timburr CDL Badge" src="./assets/2023/2023-10-15-community-day/CDLTimburr.png">
<div class="asset-label">
<img src="./img/gdrive-folder-icon.png" alt="Google Drive Folder Label">
</div>
<label>Timburr CDL Badge</label>
</a>
<p>
Timburr CDL Badge!
<div class="credits">
Badge Design: <a href="https://discord.gg/dGPHjdKGZm" target="_blank">Community Day League team</a>
</div>
</p>
</div>
<div class="asset">
<a href="https://drive.google.com/drive/folders/1onbvOjsm4Iwy7noICKxDl0z5lm1XhwBs?usp=share_link">
<img src="./assets/2023/2023-10-15-community-day/Onyx.png">
<div class="asset-label">
<img src="./img/gdrive-folder-icon.png" alt="Drive Folder Label">
</div>
<label>Gym Badges</label>
</a>
<p>
Designed to be a Discord emoji for the purpose of being used as a PokeNav badge icon by @_kaiisen in the PGCC Discord
</p>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<!-- End Timburr CDay -->
<!-- Start Grubbin CDay -->
<div class="asset-section" data-type="community-day" data-year="2023">
<h5><a class="page-anchor" id="grubbinsept2023" href="#grubbinsept2023">Meetup Event:</a> <span style="font-family:'texgyreadventorregular';">Grubbin Community Day (September 23rd 2023)</span></h5>
<p>
The Larva Pokémon Grubbin will be featured during the community day on the 23rd of September. Grubbin will feature more in the wild and if you are lucky, you will be able to catch a shiny version, other bonuses on the day include 3x Catch XP, 3-hour Incense, 3-hour Lures, 2x Catch Candy and more. Below you can find some artwork for you to use in your community meetups and communication channels. You can download the artwork by clicking on the applicable link, as always, we would love to see the artwork in action so please feel free to share on social media and tag us!
</p>
<div class="assetGroup">
<div class="asset">
<a href="https://drive.google.com/drive/folders/1Tb7pNwjO3vEMoLw0ti6ikhP30zc3CB0E?usp=drive_link" target="_blank">
<img alt="Grubbin Community Day Hexagon Badge" src="./assets/2023/2023-09-23-community-day/Grubbin_Badge_Hex.png">
<div class="asset-label">
<img src="./img/gdrive-folder-icon.png" alt="Drive Folder Label">
</div>
<label>Grubbin Hex Badges</label>
</a>
<p>
Designed to seamlessly fill the void left by the Former Silph Road's asset team. Inside this folder you will also find alternate versions, as well as pre-made templates for button makers. Be sure to print them at actual size with borderless printing if your printer supports it.
<div class="credits">
Badge Design: <a href="https://www.instagram.com/lux.imity_xx/">xLuximityx</a> <br>
Base Template: Former Silph Road<br>
Pokemon Sprite: Pokémon Company
</div>
</p>
</div>
<div class="asset">
<a href="https://www.dropbox.com/scl/fo/rn4hrxwp4nf5cxk35pl3b/h?rlkey=pa73pyo7l5llurhgv6pkublun&dl=0" target="_blank">
<img alt="Grubbin Community Day Classic Wen-m Badges" src="./assets/2023/2023-09-23-community-day/charjabug2A.jpg">
<div class="asset-label">
<img src="https://cfl.dropboxstatic.com/static/images/favicon.ico" alt="Dropbox Folder Label">
</div>
<label>Wen-m Badge</label>
</a>
<p>
Round Badge, great for making round buttons. This links to a Dropbox folder where you can find different versions and formats.
<div class="credits">
Badge Design: Wen-m
</div>
</p>
</div>
<div class="asset">
<a href="https://www.printables.com/model/579219-pokemon-go-community-day-75-coin-grubbin" target="_blank">
<img alt="Go Fest 2023 Coin Photo" src="./assets/2023/2023-09-23-community-day/grubbincoinrender.webp">
<div class="asset-label">
<img src="https://printables.com/favicon.ico" alt="Printables Link Label">
</div>
<label>Pokemon Go Community Day Classic #74 coin - Charmander</label>
</a>
<p>
Coin designed for Pokemon Go community day classic. Coin reflects selected Pokemon for community day classic September…
<div class="credits">
Coin Design: <a href="https://www.printables.com/@808Asher" target="_blank">808Asher</a>
</div>
</p>
</div>
<div class="asset">
<a href="https://drive.google.com/drive/folders/13qdmjmlam2m4qLGF6c64yKoC74GqJLuI?usp=drive_link" target="_blank">
<img src="./assets/2023/2023-09-23-community-day/GymBadge.png">
<div class="asset-label">
<img src="./img/gdrive-folder-icon.png" alt="Drive Folder Label">
</div>
<label>Gym Badges</label>
</a>
<p>
Designed to be a Discord emoji for the purpose of being used as a PokeNav badge icon by @_kaiisen in the PGCC Discord
</p>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<!-- End Grubbin CDay -->
<!-- Start Charmander CCDay -->
<div class="asset-section" data-type="community-day" data-year="2023">
<h5><a class="page-anchor" id="charmandersept2023" href="#charmandersept2023">Meetup Event:</a> <span style="font-family:'texgyreadventorregular';">Charmander Community Day Classic (September 2nd 2023)</span></h5>
<p>
It’s about to get hot in here with Charmander featuring in the Community Day Classic event on the 2nd of September 2023. More Charmander will feature in the wild and if you’re lucky you will be able to catch a shiny version! We’ve put together some lit artwork for you to use in your community meetups and communication channels. You can download the artwork by clicking on the applicable link, as always, we would love to see the artwork in action so please feel free to share on social media and tag us!
</p>
<div class="assetGroup">
<div class="asset">
<a href="https://drive.google.com/drive/folders/1-DVQrjZclDwfU-5ra8FB1Uw453TrDtgY?usp=drive_link" target="_blank">
<img alt="Charmander Community Day Hexagon Badge" src="./assets/2023/2023-09-02-community-day-classic/CharmanderCCDBadge.png">
<div class="asset-label">
<img src="./img/gdrive-folder-icon.png" alt="Drive Folder Label">
</div>
<label>Charmander Hex Badges</label>
</a>
<p>
Designed to seamlessly fill the void left by the Former Silph Road's asset team. Inside this folder you will also find alternate versions, as well as pre-made templates for button makers. Be sure to print them at actual size with borderless printing if your printer supports it.
<div class="credits">
Badge Design: <a href="https://www.instagram.com/lux.imity_xx/">xLuximityx</a> <br>
Base Template: Former Silph Road<br>
Pokemon Sprite: Pokémon Company
</div>
</p>
</div>
<div class="asset">
<a href="https://www.dropbox.com/scl/fo/n0a6i4juqyrvnv15tyehd/h?rlkey=c8hvdpvfx3rdop0k7p8ahee6l&dl=0" target="_blank">
<img alt="Charmander Community Day Classic Wenmdis Badges" src="./assets/2023/2023-09-02-community-day-classic/CharmanderCCD2A.png">
<div class="asset-label">
<img src="https://cfl.dropboxstatic.com/static/images/favicon.ico" alt="Dropbox Folder Label">
</div>
<label>Wen-m Badge</label>
</a>
<p>
Round Badge, great for making round buttons. This links to a Dropbox folder where you can find different versions and formats.
<div class="credits">
Badge Design: Wen-m
</div>
</p>
</div>
<div class="asset">
<a href="https://www.printables.com/model/568562-pokemon-go-community-day-classic-74-coin-charmande" target="_blank">
<img alt="Go Fest 2023 Coin Photo" src="./assets/2023/2023-09-02-community-day-classic/charmandercoinrender.webp">
<div class="asset-label">
<img src="https://printables.com/favicon.ico" alt="Printables Link Label">
</div>
<label>Pokemon Go Community Day Classic #74 coin - Charmander</label>
</a>
<p>
Coin designed for Pokemon Go community day classic. Coin reflects selected Pokemon for community day classic September…
<div class="credits">
Coin Design: <a href="https://www.printables.com/@808Asher" target="_blank">808Asher</a>
</div>
</p>
</div>
<div class="asset">
<a href="https://drive.google.com/drive/folders/1SsmceeJoG57kg1jLj1tHBUPFsW7OpOKG" target="_blank">
<img src="./assets/2023/2023-09-02-community-day-classic/Gold.png">
<div class="asset-label">
<img src="./img/gdrive-folder-icon.png" alt="Drive Folder Label">
</div>
<label>Gym Badges</label>
</a>
<p>
Designed to be a Discord emoji for the purpose of being used as a PokeNav badge icon by @_kaiisen in the PGCC Discord
</p>
</div>
</div>
<hr style="margin:25px;border-color: #555;">
</div>
<!-- End Charmander CCDay -->
<!-- Start Go Fest 2023 -->
<div class="asset-section" data-type="special-events" data-year="2023">
<h5><a class="page-anchor" id="gofest2023" href="#gofest2023">Meetup Event:</a> <span style="font-family:'texgyreadventorregular';">Go Fest 2023</span></h5>
<p>
Pokémon GO Fest 2023 is a month-long celebration of Pokémon GO that features both in-person and digital events. Trainers can join the fun in London, Osaka, or New York City, or play from anywhere in the world during the global event. There will be over 70 Pokémon to encounter, including Shiny Pokémon and the Mythical Pokémon Diancie. Trainers can also experience the debut of Mega Rayquaza and Mega Diancie, as well as a new attack called Dragon Ascent. If you are planning to host or attend a local event for Pokémon GO Fest 2023, we have some awesome art assets for you to use. You can download them from our website and use them to create posters, flyers, banners, stickers, or anything else you can think of. We would love to see how you use our assets, so please tag us on social media with #PokemonGOFest2023 and show us your creativity!
</p>
<div class="assetGroup">
<div class="asset">
<a href="https://drive.google.com/open?id=1HUSXa34cofEu8gG3ElwmfnWUZikpehOM&usp=drive_fs" target="_blank">
<img alt="Hexagon Style Go Fest 2023 Badge" src="./assets/2023/2023-gofest/hexwithBackground.png">
<div class="asset-label">
<img src="./img/gdrive-folder-icon.png" alt="Google Drive Folder Label">
</div>
<label>Hex Badge</label>
</a>
<p>
Designed to seamlessly fill the void left by the Former Silph Road's asset team. Inside this folder you will also find alternate versions.
<div class="credits">
Badge Design: <a href="https://www.instagram.com/lux.imity_xx/">xLuximityx</a> <br>
Base Template: Former Silph Road<br>
Pokemon Sprite: Pokémon Company
</div>
</p>
</div>
<div class="asset">
<a href="https://www.printables.com/model/546304-pokemon-go-fest-2023-coin" target="_blank">
<img alt="Go Fest 2023 Coin Photo" src="./assets/2023/2023-gofest/coin-thumbnail.webp">
<div class="asset-label">
<img src="https://printables.com/favicon.ico" alt="Printables Link Label">
</div>
<label>Go Fest 2023 Coin</label>
</a>
<p>
3D Print Coins for your community!
<div class="credits">
Coin Design: <a href="https://www.printables.com/@808Asher" target="_blank">808Asher</a>
</div>
</p>
</div>
<div class="asset">
<a href="https://drive.google.com/open?id=1-C8iK4tFdcZbvv2Xa1cK6rHSGVrRAKps&usp=drive_fs" target="_blank">
<img src="./img/gdrive-folder-icon.png">
<div class="asset-label">
<img src="./img/gdrive-folder-icon.png" alt="Drive Folder Label">
</div>
<label>Drive Folder</label>
</a>
<p>
Contains additional assets in differnt formats, check it for more details
</p>
</div>
<div class="asset">
<a href="https://www.printables.com/model/400488-pokemon-go-fest-2023-keyring-model-included" target="_blank">
<img alt="Go Fest 2023 Keyring Photo" src="./assets/2023/2023-gofest/pogo_fest_2023_keyring_preview.webp">
<div class="asset-label">
<img src="https://printables.com/favicon.ico" alt="Printables Link Label">
</div>
<label>Go Fest 2023 Keyring</label>
</a>
<p>
3D print keyrings to commemorate Go Fest 2023 for your community!
<div class="credits">