-
Notifications
You must be signed in to change notification settings - Fork 32
/
decorations.json
2204 lines (2204 loc) · 53.3 KB
/
decorations.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "Discord",
"description": "Miscellaneous decorations and quest rewards.",
"banner": {
"image": [
{
"url": "/banners/lootbox.svg",
"align": "left"
},
{
"url": "/banners/sakura.svg",
"align": "right",
"height": "100%",
"opacity": "0.8"
}
],
"background": "linear-gradient(90deg, rgba(52,65,217,1) 0%, rgba(154,68,247,1) 100%)"
},
"items": [
{
"name": "I'm a Clown",
"description": "I opened a bunch of Loot Boxes and all I got was this stupid clown decoration. Exclusive to April Fools 2024 for a limited time.",
"file": "im_a_clown.png"
},
{
"name": "Mokoko",
"description": "An affectionate Mokoko wants to give you plenty of hugs! Exclusive to Mokoko Quest 2024 for a limited time.",
"file": "mokoko.png"
},
{
"name": "Gyoiko Sakura",
"description": "A rare blossom only seen by a fortunate few. Given to new nitro subscribers between April 24, 2024 and May 1, 2024.",
"file": "sakura_gyoiko.png"
},
{
"name": "Warp Helmet",
"description": "Traveling at the speed of light. Available to use until September 9, 2024.",
"file": "warp_helmet.png"
},
{
"name": "Fortnite Victory Crown",
"description": "A sparkly crown! Available to use until September 3, 2024.",
"file": "victory_crown.png"
},
{
"name": "Freezer Bunny Lovebug",
"description": "A Sim's coolest companion! Available to use until September 30, 2024.",
"file": "freezer_bunny_lovebug.png"
},
{
"name": "Wingman Boba",
"description": "Your trusty VALORANT buddy, with a refreshing bubbly twist. Available to use until October 6, 2024.",
"file": "wingman_boba.png"
},
{
"name": "Los Santos",
"description": "Get to the chopper! Los Santos sky-high pursuit! Available to use until October 14, 2024.",
"file": "los_santos.png"
},
{
"name": "Hailey",
"description": "Worn by the legendary sniper in The First Descendant. Available until to use November 6, 2024.",
"file": "hailey.png"
},
{
"name": "Bunny",
"description": "Worn by Albion's speedster, Bunny, in The First Descendant. Available until to use November 12, 2024.",
"file": "bunny.png"
},
{
"name": "Torgal Puppy",
"description": "Torgal the puppy is here to keep you company! This reward is exclusive to the FFXVI Quest. Available until to use November 23, 2024.",
"file": "torgal_puppy.png"
},
{
"name": "Street Fighter 6 Battle Field",
"description": "Avatar Decoration for the Award winning Street Fighter 6. Exclusive to Street Fighter 6 Quest for a limited time. Available until to use November 29, 2024.",
"file": "street_fighter_6_battle_field.png"
},
{
"name": "Wolf Morph",
"description": "Your Morph can take on many unique forms and help you move throughout the world in THRONE AND LIBERTY. Available until to use November 30, 2024.",
"file": "wolf_morph.png"
},
{
"name": "Wallach IX Spaceport",
"description": "The Wallach IX Spaceport is a dynamic port for space travel on the planet Wallach IX. This reward is exclusive to the Dune: Prophecy Quest. Available until to use January 25, 2025.",
"file": "wallach_spaceport.png"
},
{
"name": "Batarang",
"description": "The Batarang is Batman’s legendary throwing weapon, blending precision and versatility to instill fear in his enemies. This reward is exclusive to the Become the Knight Quest. Available until to use February 8, 2025.",
"file": "batarang.png"
},
{
"name": "Rift Butterfly",
"description": "The Rift Butterfly is a type of sentient Rift that is shaped like a butterfly. This reward is exclusive to the Fortnite Quest. Available until to use February 5, 2025.",
"file": "rift_butterfly.png"
},
{
"name": "Bush Camper",
"description": "Exclusive to the Fortnite OG Quest for a limited time. Available until to use February 11, 2025.",
"file": "bush_camper.png"
},
{
"name": "Shield Potion",
"description": "Exclusive to the Fortnite Ballistic Quest for a limited time. Available until to use February 16, 2025.",
"file": "shield_potion.png"
},
{
"name": "TGA Controller",
"description": "Exclusive to The Game Awards Quest for a limited time. Available until to use February 14, 2025.",
"file": "tga_controller.png"
},
{
"name": "Shadow",
"description": "Exclusive to The Sonic 3 Quest for a limited time. Available until to use February 21, 2025.",
"file": "shadow.png"
}
]
},
{
"name": "Winter Wonderland",
"description": "Tis the season.",
"banner": {
"image": "/banners/winter_wonderland_2024.png",
"text": "/bannertext/winter_wonderland_2024.png",
"height": 64
},
"badge": "WINTER 2024",
"items": [
{
"name": "Aurora",
"description": "Even the stars can't help but admire the view.",
"file": "aurora.png"
},
{
"name": "Polar Bear Hat",
"description": "Soft, cuddly, and a little bit snuffly.",
"file": "polar_bear_hat.png"
},
{
"name": "String Lights",
"description": "String up some holiday cheer.",
"file": "string_lights.png"
},
{
"name": "String Lights (Aurora)",
"description": "String up some holiday cheer.",
"file": "string_lights_aurora.png"
},
{
"name": "String Lights (Ember)",
"description": "String up some holiday cheer.",
"file": "string_lights_ember.png"
},
{
"name": "String Lights (Dusk)",
"description": "String up some holiday cheer.",
"file": "string_lights_dusk.png"
},
{
"name": "String Lights (Mix)",
"description": "String up some holiday cheer.",
"file": "string_lights_mix.png"
},
{
"name": "Snowglobe",
"description": "Try not to shake too hard.",
"file": "snowglobe.png"
},
{
"name": "Snowglobe (Wood)",
"description": "Try not to shake too hard.",
"file": "snowglobe_wood.png"
},
{
"name": "Snowglobe (Pink)",
"description": "Try not to shake too hard.",
"file": "snowglobe_pink.png"
},
{
"name": "Snowglobe (Blue)",
"description": "Try not to shake too hard.",
"file": "snowglobe_blue.png"
},
{
"name": "Snowglobe (Green)",
"description": "Try not to shake too hard.",
"file": "snowglobe_green.png"
},
{
"name": "Fresh Pine",
"description": "Ah...the smell of Winter.",
"file": "fresh_pine.png"
},
{
"name": "Fresh Pine (Cinnamon)",
"description": "Ah...the smell of Winter.",
"file": "fresh_pine_cinnamon.png"
},
{
"name": "Fresh Pine (Ribbon)",
"description": "Ah...the smell of Winter.",
"file": "fresh_pine_ribbon.png"
},
{
"name": "New Year 2025",
"description": "This decoration has not been officially released yet.",
"file": "new_year_2025.png"
},
{
"name": "Santa Cat Ears",
"description": "This decoration has not been officially released yet.",
"file": "santa_cat_ears.png"
},
{
"name": "Snowfall",
"description": "This decoration has not been officially released yet.",
"file": "snowfall.png"
}
]
},
{
"name": "Lofi Girl",
"description": "Cozy vibes with Lofi Girl.",
"banner": {
"image": "/banners/lofi_girl.png",
"text": "/bannertext/lofi_girl.png",
"height": 56
},
"items": [
{
"name": "Lofi Girl Outfit",
"description": "Embrace your inner Lofi Girl.",
"file": "lofi_girl_outfit.png"
},
{
"name": "Playful Lofi Cat",
"description": "Goofy, fluffy, chunky...",
"file": "playful_lofi_cat.png"
},
{
"name": "Sleepy ChilledCow",
"description": "Zzzzzzzzzzzzzzzzzzzz",
"file": "sleepy_chilledcow.png"
},
{
"name": "Study Session",
"description": "The student starter pack.",
"file": "study_session.png"
},
{
"name": "Group Hug",
"description": "Warm hugs from Mochi, Froggy and Birdie!",
"file": "group_hug.png"
},
{
"name": "Cozy Post-It",
"description": "Light up your day.",
"file": "cozy_post_it.png"
},
{
"name": "Cozy Post-It (Festive)",
"description": "Light up your day.",
"file": "cozy_post_it_festive.png"
}
]
},
{
"name": "Kawaii Mode",
"description": "When :3 is your game face.",
"descriptionTopMargin": "-4px",
"darkText": true,
"banner": {
"image": "/banners/kawaii_mode.png",
"text": "/bannertext/kawaii_mode.png",
"height": 64
},
"items": [
{
"name": "Cat Ear Headset",
"description": "(O)≽^ ᴖ ω ᴖ ^≼ (O)",
"file": "cat_ear_headset.png"
},
{
"name": "Bubble Tea",
"description": "Of course I need bubble tea every day. It's called self-care.",
"file": "bubble_tea.png"
},
{
"name": "Bunny Zzzs",
"description": "Can the snoozers hop in voice already?!",
"file": "bunny_zzzs.png"
},
{
"name": "Sproutling",
"description": "Your very own bud who'll always root for you!",
"file": "sproutling.png"
},
{
"name": "Bloomling",
"description": "Your very own bloom who wants to see you flourish!",
"file": "bloomling.png"
},
{
"name": "Neon Nibbles",
"description": "One does not simply turn off munchie mode.",
"file": "neon_nibbles.png"
},
{
"name": "UwU XP",
"description": "Being pixel perfect isn't a phase, it's a lifestyle.",
"file": "uwu_xp.png"
},
{
"name": "Hex Lights",
"description": "When you want glow up the room but the parents say \"NoOo, they're too expensive!!\" so you buy these to glow up anyway.",
"file": "hex_lights.png"
}
]
},
{
"name": "Arcane",
"description": "The hunt is on.",
"descriptionTopMargin": "-4px",
"banner": {
"image": [
{
"url": "/banners/arcane.png",
"align": "center",
"height": "100%",
"width": "100%"
},
{
"url": "/banners/arcane1.png",
"align": "center",
"height": "100%",
"width": "100%"
}
],
"text": "/bannertext/arcane.png",
"height": 84
},
"items": [
{
"name": "The Anomaly",
"description": "Beautiful. Impossible. Inevitable.",
"file": "the_anomaly.png"
},
{
"name": "The Mark",
"description": "An act of desperation. This changes nothing.",
"file": "the_mark.png"
},
{
"name": "The Monster You Created",
"description": "“Powder fell down a well.”",
"file": "the_monster_you_created.png"
},
{
"name": "The Atlas Gauntlets",
"description": "Meant for mining, better for punching.",
"file": "the_atlas_gauntlets.png"
},
{
"name": "Flame Chompers",
"description": "Jinx names each and every one.",
"file": "flame_chompers.png"
},
{
"name": "FISHBONES!",
"description": "And now: the grand finale.",
"file": "fishbones.png"
},
{
"name": "The Hexcore",
"description": "It’s changing, adapting… but to what end?",
"file": "the_hexcore.png"
},
{
"name": "Powered by Shimmer",
"description": "Breathe it in. That’s power.",
"file": "powered_by_shimmer.png"
}
]
},
{
"name": "Mythical Creatures",
"description": "Wonders lost to time, found again.",
"descriptionTopMargin": "-8px",
"banner": {
"image": "/banners/mythical_creatures.png",
"text": "/bannertext/mythical_creatures.png",
"height": 84
},
"items": [
{
"name": "Kitsune",
"description": "Legends say playful chaos is their specialty.",
"file": "kitsune.png"
},
{
"name": "Unicorn",
"description": "Unicorns love two things: magic and your vibe.",
"file": "unicorn.png"
},
{
"name": "Phoenix",
"description": "The symbol of running it back.",
"file": "phoenix.png"
},
{
"name": "Dancing Fairies",
"description": "Catch us if you can!",
"file": "dancing_fairies.png"
},
{
"name": "Crystal Elk",
"description": "Its antlers shimmer with the magic of ancient snowstorms.",
"file": "crystal_elk.png"
},
{
"name": "Mermaid Serenade",
"description": "They seem to like you... but is that a good thing?",
"file": "mermaid_serenade.png"
}
]
},
{
"name": "Dungeons & Dragons",
"description": "The ultimate adventurer's pack.",
"banner": {
"image": [
{
"url": "/banners/dungeons_and_dragons.png",
"align": "center",
"height": "100%",
"width": "100%"
},
{
"url": "/banners/dungeons_and_dragons1.png",
"align": "center"
}
],
"text": "/bannertext/dungeons_and_dragons.png",
"height": 64
},
"items": [
{
"name": "Violet Dice",
"description": "Let’s roll!",
"file": "dice_violet.png"
},
{
"name": "Azure Dice",
"description": "Let’s roll!",
"file": "dice_azure.png"
},
{
"name": "Green Gelatinous Cube",
"description": "It’s not edible, but YOU are.",
"file": "gelatinous_cube_green.png"
},
{
"name": "Blue Gelatinous Cube",
"description": "It’s not edible, but YOU are.",
"file": "gelatinous_cube_blue.png"
},
{
"name": "Owlbear Cub",
"description": "Your very own feathery friend!",
"file": "owlbear_cub.png"
},
{
"name": "Snowy Owlbear Cub",
"description": "Your very own feathery friend!",
"file": "owlbear_cub_snowy.png"
},
{
"name": "Baby Displacer Beast",
"description": "Here, kitty, kitty…",
"file": "baby_displacer_beast.png"
}
]
},
{
"name": "Spooky Night",
"description": "Beware what lurks in the dark...",
"descriptionTopMargin": "-12px",
"banner": {
"image": "/banners/spooky_night.png",
"text": "/bannertext/spooky_night.png",
"height": 70
},
"badge": "FALL 2024",
"items": [
{
"name": "Spooky Cat Ears",
"description": "≽ ^ ʘ⩊ʘ ^ ≼",
"file": "spooky_cat_ears.png"
},
{
"name": "Spooky Cat Ears (Midnight)",
"description": "≽ ^ ʘ⩊ʘ ^ ≼",
"file": "spooky_cat_ears_midnight.png"
},
{
"name": "Candlelight",
"description": "Now you can see in the dark. But so can they...",
"file": "candlelight.png"
},
{
"name": "Crimson Candlelight",
"description": "Now you can see in the dark. But so can they...",
"file": "candlelight_crimson.png"
},
{
"name": "Dark Candlelight",
"description": "Now you can see in the dark. But so can they...",
"file": "candlelight_dark.png"
},
{
"name": "Dark Hood",
"description": "You definitely don't look suspicious at all.",
"file": "hood_dark.png"
},
{
"name": "Crimson Hood",
"description": "You definitely don't look suspicious at all.",
"file": "hood_crimson.png"
},
{
"name": "Plum Witch Hat",
"description": "Mischief looks good on you.",
"file": "witch_hat_plum.png"
},
{
"name": "Midnight Witch Hat",
"description": "Mischief looks good on you.",
"file": "witch_hat_midnight.png"
},
{
"name": "Zombie Food",
"description": "Looks like you weren't fast enough. Unlucky.",
"file": "zombie_food.png"
},
{
"name": "Zombie Food (Purple)",
"description": "Looks like you weren't fast enough. Unlucky.",
"file": "zombie_food_purple.png"
},
{
"name": "Bloodthirsty",
"description": "Just a bite...",
"file": "bloodthirsty.png"
},
{
"name": "Bloodthirsty (Green)",
"description": "Just a bite...",
"file": "bloodthirsty_green.png"
},
{
"name": "Bloodthirsty (Gold)",
"description": "Just a bite...",
"file": "bloodthirsty_gold.png"
}
]
},
{
"name": "Street Fighter",
"description": "Hit the streets with Street Fighter.",
"banner": {
"image": [
{
"url": "/banners/street_fighter.png",
"align": "center",
"height": "100%",
"width": "100%"
},
{
"url": "/banners/street_fighter1.png",
"align": "center",
"height": "100%"
}
],
"text": "/bannertext/street_fighter.png",
"height": 50
},
"items": [
{
"name": "Ryu",
"description": "Ever training, Ryu seeks true strength… just keep spiders away from him.",
"file": "ryu.png"
},
{
"name": "Chun-Li",
"description": "A former high-kicking ICPO agent Chun-Li. Never skips leg day.",
"file": "chun_li.png"
},
{
"name": "Ken",
"description": "Former US National Fighting Champ. Keeps his hair salon quality.",
"file": "ken.png"
},
{
"name": "Akuma",
"description": "A demon of combat (the raging kind!) that has welcomed the Satsui no Hado into his being.",
"file": "akuma.png"
},
{
"name": "Cammy",
"description": "Member of British special forces unit Delta Red. Hates everything. Likes cats.",
"file": "cammy.png"
},
{
"name": "Guile",
"description": "A US Air Force pilot fantastic at comeback wins when listening to his own theme.",
"file": "guile.png"
},
{
"name": "Juri",
"description": "A sadistic thrill seeker. Never misses a manicure.",
"file": "juri.png"
},
{
"name": "M. Bison",
"description": "The leader of Shadaloo, who was believed to be dead. Very fond of power... the Psycho kind.",
"file": "m_bison.png"
}
]
},
{
"name": "Autumn Equinox",
"description": "Beauty in balance.",
"descriptionTopMargin": "-4px",
"banner": {
"image": "/banners/autumn_equinox.png",
"text": "/bannertext/autumn_equinox.png",
"height": 42
},
"badge": "FALL 2024",
"items": [
{
"name": "Twilight Chrysanthemums",
"description": "Transformation is a dance where your inner beauty finds its rhythm.",
"file": "chrysanthemums_twilight.png"
},
{
"name": "Morning Chrysanthemums",
"description": "Transformation is a dance where your inner beauty finds its rhythm.",
"file": "chrysanthemums_morning.png"
},
{
"name": "Dusk and Dawn",
"description": "Illuminate yourself with the light of the moon and sun.",
"file": "dusk_and_dawn.png"
},
{
"name": "Floral Harmony",
"description": "A touch of day and night woven into every petal.",
"file": "floral_harmony.png"
},
{
"name": "Floral Harmony (Sunburst)",
"description": "A touch of day and night woven into every petal.",
"file": "floral_harmony_sunburst.png"
},
{
"name": "Autumn's Arbor",
"description": "Where day and night share equal ground.",
"file": "autumns_arbor.png"
},
{
"name": "Autumn's Arbor (Aurora)",
"description": "Where day and night share equal ground.",
"file": "autumns_arbor_aurora.png"
},
{
"name": "Autumn Crown",
"description": "A crown of nature's finest, with autumn's special touch.",
"file": "autumn_crown.png"
},
{
"name": "Faces of the Moon",
"description": "The moon tells its tale in shadows and light... listen....",
"file": "faces_of_the_moon.png"
}
]
},
{
"name": "Fall 2",
"description": "There's a calm and cozy vibe in the air.",
"banner": {
"image": "/banners/fall2.png",
"text": "/bannertext/fall2.png"
},
"badge": "FALL 2024",
"items": [
{
"name": "Fox Hat",
"description": "Charming, cozy, and a little bit nosy.",
"file": "fox_hat.png"
},
{
"name": "Chestnut Fox Hat",
"description": "Charming, cozy, and a little bit nosy.",
"file": "fox_hat_chestnut.png"
},
{
"name": "Snow Fox Hat",
"description": "Charming, cozy, and a little bit nosy.",
"file": "fox_hat_snow.png"
},
{
"name": "Fall Leaves",
"description": "Behold nature's dance.",
"file": "fall_leaves.png"
},
{
"name": "Scarlet Leaves",
"description": "Behold nature's dance.",
"file": "fall_leaves_scarlet.png"
},
{
"name": "Woodland Leaves",
"description": "Behold nature's dance.",
"file": "fall_leaves_woodland.png"
}
]
},
{
"name": "The Vault",
"description": "Long-awaited treasures from times past have made their return…",
"darkText": false,
"banner": {
"image": "/banners/the_vault.png",
"text": "/bannertext/the_vault.png",
"height": 72
},
"badge": "SEPTEMBER 2024",
"items": [
{
"name": "Sakura",
"description": "A beautiful cherry blossom.",
"file": "sakura.png"
},
{
"name": "Pink Sakura",
"description": "A promise of new beginnings.",
"file": "sakura_pink.png"
},
{
"name": "Ukon Sakura",
"description": "A symbol of standing out with quiet elegance.",
"file": "sakura_ukon.png"
},
{
"name": "Gyoiko Sakura",
"description": "A rare blossom only seen by a fortunate few.",
"file": "sakura_gyoiko.png"
},
{
"name": "Angry Frog",
"description": "*ribbits angrily*",
"file": "frog_angry.png"
},
{
"name": "Derpy Frog",
"description": "*ribbits derpily*",
"file": "frog_derpy.png"
},
{
"name": "Fried Egg",
"description": "I like mine sunny side-up.",
"file": "fried_egg.png"
},
{
"name": "Green Fried Egg",
"description": "Wish there was some ham to go with this.",
"file": "green_fried_egg.png"
},
{
"name": "Morning Coffee",
"description": "Don't talk to me until I finish this.",
"file": "morning_coffee.png"
},
{
"name": "Toast",
"description": "It is toast.",
"file": "toast.png"
},
{
"name": "Burnt Toast",
"description": "Why did you burn the toast.",
"file": "burnt_toast.png"
},
{
"name": "Stinkums",
"description": "Questionably dealt. Definitely smelt.",
"file": "stinkums.png"
},
{
"name": "Goblin Stinkums",
"description": "Green goblin mode unlocks many abilities... some consider to be unnaturally stinky.",
"file": "goblin_stinkums.png"
}
]
},
{
"name": "Dojo",
"description": "Where discipline meets destiny.",
"darkText": true,
"descriptionTopMargin": "2px",
"banner": {
"image": "/banners/dojo.png",
"text": "/bannertext/dojo.png",
"height": 48
},
"items": [
{
"name": "Kabuto",
"description": "Donned only by true warriors.",
"file": "kabuto.png"
},
{
"name": "Oni Mask",
"description": "Unleash your inner demon.",
"file": "oni_mask.png"
},
{
"name": "Straw Hat",
"description": "A must-have for the traveling wanderer.",
"file": "straw_hat.png"
},
{
"name": "Sakura Ink",
"description": "Fleeting beauty... forever etched in ink.",
"file": "sakura_ink.png"
},
{
"name": "Sakura Warrior",
"description": "Blossom and blade, united in purpose.",
"file": "sakura_warrior.png"
},
{
"name": "Shuriken's Mask",
"description": "Aim with purpose.",
"file": "shurikens_mask.png"
}
]
},
{
"name": "VALORANT CHAMPIONS",
"description": "All Paths End Here.",
"darkText": false,
"descriptionTopMargin": "4px",
"banner": {
"image": "/banners/valorant_champions.png",
"text": "/bannertext/valorant_champions.png",
"height": 40
},
"items": [
{
"name": "VALORANT Champions 2024",
"description": "All paths end here.",
"file": "valorant_champions_2024.png"
},
{
"name": "Yoru Dimensional Drift",
"description": "Looking for me?",
"file": "yoru_dimensional_drift.png"
},
{
"name": "Viper Poison Cloud",
"description": "No one can hold their breath forever.",
"file": "viper_poison_cloud.png"
},
{
"name": "Cypher Neural Theft",
"description": "Nothing stays hidden from me.",
"file": "cypher_neural_theft.png"
},
{
"name": "A Hint of Clove",
"description": "Back again from the great beyond.",
"file": "a_hint_of_clove.png"
},
{
"name": "Omen's Cowl",
"description": "Embrace the shadows.",
"file": "omens_cowl.png"
},
{
"name": "Reyna's Leer",
"description": "The last thing they'll ever see. Lucky them.",
"file": "reynas_leer.png"
},
{
"name": "FRAG OUT",
"description": "Five down. None to go.",
"file": "frag_out.png"
},
{
"name": "Blade Storm",
"description": "Watch this.",
"file": "blade_storm.png"
}
]
},
{
"name": "Spongebob",
"description": "Celebrate 25 years of nautical nonsense!",
"darkText": true,
"hideTitle": true,
"descriptionTopMargin": "72px",
"banner": {
"image": [
{
"url": "/banners/spongebob.png",
"align": "center",
"height": "115%",
"width": "100%"
}
],
"height": 40
},
"items": [
{
"name": "SpongeBob",
"description": "Order up!",
"file": "spongebob.png"
},
{
"name": "Imagination",
"description": "With imagination, I can be anything I want.",
"file": "imagination.png"
},
{
"name": "Patrick Star",
"description": "He, she, me wumbo.",
"file": "patrick_star.png"
},
{
"name": "Flower Clouds",
"description": "Immerse yourself in Bikini Bottom.",
"file": "flower_clouds.png"
},
{
"name": "Gary the Snail",
"description": "Meow.",
"file": "gary_the_snail.png"
},
{
"name": "Sandy Cheeks",
"description": "Underwater breathing apparatus.",
"file": "sandy_cheeks.png"
},
{
"name": "MuscleBob",
"description": "How tough are ya?",
"file": "musclebob.png"
}
]
},
{
"name": "Dark Fantasy",
"description": "Approach, wanderer... dangerously charming relics await.",
"darkText": false,
"banner": {
"image": "/banners/dark_fantasy.png",
"text": "/bannertext/dark_fantasy.png",
"height": 48
},
"items": [
{
"name": "Midnight Sorceress",
"description": "Wear the beauty of midnight.",
"file": "midnight_sorceress.png"
},
{
"name": "Malefic Crown",
"description": "Fit for those who rule with an iron fist.",
"file": "malefic_crown.png"
},
{
"name": "Death's Edge",
"description": "A great conversation starter... and ender.",
"file": "deaths_edge.png"
},
{
"name": "Spirit Embers",
"description": "For protection against dark nights and unseen terrors.",
"file": "spirit_embers.png"
},
{
"name": "Eldritch Ring",
"description": "For those days when you want to feel extra cursed.",
"file": "eldritch_ring.png"