-
Notifications
You must be signed in to change notification settings - Fork 2
/
parsedMissions.json
6712 lines (6712 loc) · 197 KB
/
parsedMissions.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
[
{
"id": 0,
"name": "Save The Princess",
"banner": "https://dens.famousfoxes.com/banner/ZeldaBanner.png",
"lore": "Your princess is in another castle. Isn't she always? Princess Foxia has been kidnapped and it's up to you, intrepid heroes, to bring her home to Castle Vulpes. Armed with only your wits, whatever you could pick up at the local pawn shop, and some strange looking mushrooms that you're convinced don't have magical powers but might make the world look funny for a few hours; you'll battle the wilderness, the castle guards (at multiple castles), and The Boss.",
"version": 1,
"minxp": 184040,
"xp": 5100,
"reward": 1,
"total": 1,
"address": "D6kM6BuRTefgukbqJThrVX1cC2W1VJ8FykTV6Loe3Nfk",
"opentime": 0,
"expiry": 1709827200,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Sweater Red / Green",
"Outfit": [
"Sweater Green",
"Sweater Red"
]
}
],
"traitbonuses": [],
"other": {}
},
{
"id": 1,
"name": "The Sword From The Stone",
"banner": "https://dens.famousfoxes.com/banner/CrownBanner.png",
"lore": "Does a crown alone make a King? Or is there more to it? Legends say that when the genesis block was formed, Hexcalibur -- or 0xcalibur as it's known in the Ether Lands -- was formed with it, inside of a rock formation. In the mythos, whoever can pull the sword from its resting place shall be recognized as the King of foxkind, though it's just as likely he'll just have a very cool-looking sword. Still, worth a try, right?",
"version": 1,
"minxp": 2107,
"xp": 700,
"reward": 1,
"total": 1,
"address": "5QBpXkbvxCYwnt8grrRTLTf7HsybRLSv97jmMTNChVKm",
"opentime": 0,
"expiry": 1711641600,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Crown",
"Head": [
"Crown",
"Royalty"
]
}
],
"traitbonuses": [],
"other": {}
},
{
"id": 2,
"name": "The Fables of Longbeard",
"banner": "https://dens.famousfoxes.com/banner/FFF-Beard2_1.png",
"lore": "Somewhere among the highest peaks of the Foxton Range, the shack of Alton Longbeard can be found. Now, a recluse, but once, the greatest beardkeeper in Foxton's Chevron district. Little is known about why Longbeard took to the mountains, but the greatest bearded foxes seek to learn his secrets, to preserve the traditions of Foxton's barber shops. Can your band of foxes locate Longbeard and learn his secrets?",
"version": 1,
"minxp": 224466,
"xp": 5400,
"reward": 1,
"total": 1,
"address": "9WCbemY6TD1iPiehbiF12mLVoSNCTYEoKoHe2WNAzjU1",
"opentime": 0,
"expiry": 1711036800,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Beard / Stache",
"Mouth": [
"Beard",
"Beard White",
"Goatee",
"Stache"
]
}
],
"traitbonuses": [],
"other": {
"Set": "Den",
"type": "Beard"
}
},
{
"id": 3,
"name": "The Cozy Crew",
"banner": "https://dens.famousfoxes.com/banner/TurtleNexkFox.png",
"version": 1,
"minxp": 13363,
"xp": 2200,
"reward": 2,
"total": 2,
"address": "FrZXNY29xeACeeejdLZtTuup5RaHqzo6oZ4KNWX3dq5o",
"opentime": 0,
"expiry": 1717084800,
"endtime": 0,
"slots": [
{
"count": 2,
"Set": "Sweater",
"Outfit": [
"Scarf Purple",
"Scarf Red",
"Scarf Striped",
"Sweater Dark",
"Sweater Green",
"Sweater Light",
"Sweater Purple",
"Sweater Red",
"Turtleneck Blue",
"Turtleneck Dark",
"Turtleneck Green",
"Turtleneck Leaf",
"Turtleneck Orange"
]
}
],
"traitbonuses": [],
"other": {}
},
{
"id": 4,
"name": "The Treasure of Shipwreck Cove",
"banner": "https://dens.famousfoxes.com/banner/PirateBanner.png",
"lore": "Rumor has it that the ancient treasures of Captain Blacktail are buried somewhere near Shipwreck Cove, but do you have the seafaring skills to find it? Tales tell of an emerald imbued ring that confers the power to control the winds, but they're probably nothing -- either way, it's expensive. This mission isn't for the landlubbers, so what say ye?",
"version": 1,
"minxp": 184040,
"xp": 6000,
"reward": 2,
"total": 2,
"address": "Df3jjMkDYqXv5vQn57mKEtHyP3B4TpSfmkTE2tRvX1G8",
"opentime": 0,
"expiry": 1696521600,
"endtime": 0,
"slots": [
{
"count": 2,
"Set": "Pirate",
"Eyes": [
"Eye Patch"
],
"Head": [
"Pirate"
],
"Outfit": [
"Pirate"
]
}
],
"traitbonuses": [],
"other": {
"Set": "Den",
"type": "Pirate"
}
},
{
"id": 5,
"name": "Moonshot Dreams",
"banner": "https://dens.famousfoxes.com/banner/default.png",
"lore": "Deep in downtown Kitson lies the casino district: home to the deprived, degenerate, and the lucky. There are whispers of an underground ring for the best card players, where thousands of FOXY are won and lost in a single round of cards. Can you pull off a winning night at the illustrious table, or will you just be left huffing copium?",
"version": 1,
"minxp": 184040,
"xp": 5600,
"reward": 2,
"total": 2,
"address": "8N95V1Yuxioe89WyUTZwNPcMb15kVfaZLwhXV3PQXxLJ",
"opentime": 0,
"expiry": 1702569600,
"endtime": 0,
"slots": [
{
"count": 2,
"Set": "COPE",
"Outfit": [
"Assassin",
"COPE",
"Kimono"
],
"Head": [
"Assassin",
"COPE"
]
}
],
"traitbonuses": [],
"other": {
"Set": "Den",
"type": "COPE"
}
},
{
"id": 6,
"name": "The Ihsotas Otomakan",
"banner": "https://dens.famousfoxes.com/banner/default.png",
"lore": "Foxes who wish to ascend to the highest ranks of the Hallowed Skulk are tasked with a process, starting at the Elyssian Plains, which will push their mind, body and spirit to the absolute limits. Only those who achieve the higher state at the Hyperuranion will achieve ascension into the Skulk's inner circle. Is your fox ready for the ultimate challenge?",
"version": 1,
"minxp": 203254,
"xp": 5700,
"reward": 1,
"total": 1,
"address": "FBJx7ug5grzn2m44mAkD1pXBZn17PePkaTyQnPhGTYZh",
"opentime": 0,
"expiry": 1714665600,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Halo",
"Head": [
"Halo",
"Halo Firefly"
]
}
],
"traitbonuses": [],
"other": {}
},
{
"id": 7,
"name": "The Lunar Landing",
"banner": "https://dens.famousfoxes.com/banner/FasaBanner.png",
"lore": "This is it, the ultimate purpose of FASA: the conquest of the harshest realities of nature to reach the Moon. Space is an unnatural atmosphere for foxes, composed entirely of threats which could prevent the uninitiated from reaching the moon. Low oxygen, potential impacts with debris, bearish sentiment and the dreaded FUD monster won't stop FASA from reaching its target though, will it?",
"version": 1,
"minxp": 224466,
"xp": 5700,
"reward": 1,
"total": 1,
"address": "AhBCRK63TcmtPXgMRY3tGwpzx299b9bTYPygSKri7ehi",
"opentime": 0,
"expiry": 1717084800,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Astronaut",
"Head": [
"Astronaut",
"Astronaut Force"
],
"Outfit": [
"Astronaut Force",
"Astronaut Light",
"Astronaut Orange"
]
}
],
"traitbonuses": [],
"other": {}
},
{
"id": 8,
"name": "Like No One Ever Was",
"banner": "https://dens.famousfoxes.com/banner/default.png",
"lore": "Monster trainers do their thing all year around, but once a year, Fohxto hosts the Orange League Championship: an intercontinental tournament of the brightest and bravest foxes and their partners. Only the most elite will make their way to the Orange League finals in Foxter City. Will your fox be among them?",
"version": 1,
"minxp": 166636,
"xp": 5600,
"reward": 1,
"total": 1,
"address": "HYpYvqyKFF1XU5kZ2VNKbhEHnNNzkzEc1ba26x2uKGDY",
"opentime": 0,
"expiry": 1699545600,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Monster Trainer",
"Head": [
"Monster Fighter",
"Monster Trainer"
],
"Outfit": [
"Monster Fighter",
"Monster Trainer"
]
}
],
"traitbonuses": [],
"other": {
"Set": "Den",
"type": "Monster Trainer"
}
},
{
"id": 9,
"name": "A Culinary Conundrum",
"banner": "https://dens.famousfoxes.com/banner/default.png",
"lore": "Fanged foxes aren't actually vampires, but that doesn't stop them from playing into a popular rumor for fame and fortune. The infamous blood red sauce of Foxylvania has run out, and no one remembers the recipe. It's up to your fanged friend to undergo a test of palate and procurement to recreate the sauce from taste alone.",
"version": 1,
"minxp": 224466,
"xp": 5800,
"reward": 1,
"total": 1,
"address": "Hia41Udzbs8L5KRH9WYam39RATfYCU6ZNuHEZr5egANM",
"opentime": 0,
"expiry": 1716480000,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Fangs",
"Mouth": [
"Fangs"
]
}
],
"traitbonuses": [],
"other": {
"Set": "Den",
"type": "Vampire"
}
},
{
"id": 10,
"name": "Lost in the Wilderness",
"banner": "https://dens.famousfoxes.com/banner/default.png",
"lore": "The call has just come in at the Safari hut. Another fox has gone off-track looking for the perfect selfie for their influencer blog. Unfortunately, selfies with lions and tigers don't always end well for the one taking them. Armed only with his wits and experience, your fox is tasked with retrieving the guy who's about to become Famous for all the wrong reasons.",
"version": 1,
"minxp": 150872,
"xp": 5400,
"reward": 1,
"total": 1,
"address": "GmcxouYZoTiiBnb1exLDFEbCa2P5kEK24bjsvuNsWgpw",
"opentime": 0,
"expiry": 1697126400,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Safari",
"Head": [
"Backwards Cap Camo",
"Safari"
],
"Outfit": [
"Shirt Camo"
]
}
],
"traitbonuses": [],
"other": {
"Set": "Den",
"type": "Safari"
}
},
{
"id": 11,
"name": "The First Rule of [Redacted]",
"banner": "https://dens.famousfoxes.com/banner/default.png",
"lore": "Foxes don't talk about it, that's against the rules, but under various pseudonyms and wearing prominent headbands, they definitely participate in it. Tyler Furden's legacy is up for grabs in an abandoned warehouse on the outskirts of Foxton. Are your foxes capable of conquering the challenge, and winning in the ultimate tournament of that-which-cannot-be-named?",
"version": 1,
"minxp": 0,
"xp": 140,
"reward": 3,
"total": 3,
"address": "FndJruwK14Vr3ydhTKzGpi2XFuSimrJQ1CXa8A29y9V8",
"opentime": 0,
"expiry": 1650556800,
"endtime": 0,
"slots": [
{
"count": 3,
"Set": "Headband",
"Head": [
"Headband Dark",
"Headband Patterned",
"Headband White",
"Sportsband"
]
}
],
"traitbonuses": [],
"other": {}
},
{
"id": 12,
"name": "Uncharted Shores",
"banner": "https://dens.famousfoxes.com/banner/KittenFoxBnner.png",
"lore": "Little is known about Aether Island, but after your Kitten procured a map from Sun's stash, your Fox and Kitten decided to explore it in search of bounty and plunder. Will they discover the secrets of the Chromatic Cascade, or swing from the vines of the Thriving Thicket? Will they find the source of the Island's power?",
"version": 1,
"minxp": 0,
"xp": 100,
"reward": 1,
"total": 1,
"address": "3QakH5nXVm7d3RA8jRrgrM6H95aAq5HcGZymPH2iSrSF",
"opentime": 0,
"expiry": 1649433600,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Common",
"Head": [
"Backwards Cap Blue",
"Backwards Cap Camo",
"Backwards Cap Dark",
"Backwards Cap Pink",
"Bowler Dark",
"Bowler Light",
"Bucket Hat Green",
"Bucket Hat Ivory",
"Cap BTTF",
"Cap Blue",
"Cap Dark",
"Cap Fire",
"Cap Indigo",
"Cap Pink",
"Cap Puff Ball",
"Cap Purple",
"Cap Solana",
"Cap Star"
],
"Outfit": [
"Jacket BTTF",
"Jacket Blue",
"Jacket Denim",
"Jacket Green",
"Jacket Red",
"Jacket School",
"Scarf BW",
"Scarf Purple",
"Scarf Red",
"Scarf Striped",
"Shirt Blue",
"Shirt Camo",
"Shirt Flannel Blue",
"Shirt Flannel Green",
"Shirt Flannel Red",
"Shirt Flannel Yellow",
"Shirt Green",
"Shirt Pineapple",
"Shirt Red",
"Shirt School",
"T-Shirt Dark",
"T-Shirt Fire",
"T-Shirt Foxy",
"T-Shirt White",
"T-Shirt Yellow",
"Turtleneck Leaf"
]
}
],
"traitbonuses": [],
"other": {
"Set": "Kitten",
"type": "Any"
}
},
{
"id": 13,
"name": "The Thug Life",
"banner": "https://dens.famousfoxes.com/banner/FFF-Thugz_1.png",
"lore": "Nothing is more enticing to a member of the Thug Life gang than the chance to pull a hilarious prank on an unsuspecting Fox. Taking everything you’ve learned from the hit TV show Fox’d, you set out to pull off the ultimate prank for all of the bragging rights!",
"version": 1,
"minxp": 203254,
"xp": 5300,
"reward": 1,
"total": 1,
"address": "3CzugeMAknR4vPBq3QHeePpXeCgvdY7M4dXAPQFqeu4A",
"opentime": 0,
"expiry": 1717084800,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Thug Life",
"Eyes": [
"Thug"
]
}
],
"traitbonuses": [],
"other": {}
},
{
"id": 14,
"name": "Prepare for Glory",
"banner": "https://dens.famousfoxes.com/banner/DraxxTS-Banner2.png",
"lore": "In Civitas Vulpes, much ado is made about history -- historical leaders, historical romances, but most of all, historical battles. Unfortunately, much of this is based on rumor and legend, as there are few verifiable recordings of that far back in time. One rumor has it that the land upon which Trastevere now sits played host to the Battle of the Bushels, and that the evidence may lay below the city itself in a secret network of tunnels that were used in wartime to deliver messages. Will your fox be able to locate the tunnels, and recover ancient artefacts which would restore Trastevere to glory?",
"version": 1,
"minxp": 184040,
"xp": 5400,
"reward": 1,
"total": 1,
"address": "Ah18KSJZm3Xs8M8aoVYzu7rdJGjN9FN3wqMCjR4Yzm1o",
"opentime": 0,
"expiry": 1715875200,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Centurion",
"Head": [
"Centurion"
]
}
],
"traitbonuses": [],
"other": {
"Set": "Den",
"type": "Centurion"
}
},
{
"id": 15,
"name": "School of Fox",
"banner": "https://dens.famousfoxes.com/banner/default.png",
"lore": "The Games are well known among the collegiate. A series of competitions between the four great institutions of academia which confer prizes, the right to host the next Games, but most of all, bragging rights. Can your fox show the smarts, the wits, and the gusto to lead the College to victory?",
"version": 1,
"minxp": 184040,
"xp": 5300,
"reward": 1,
"total": 1,
"address": "Gq5T1wKyRkUvQjGKVoWU3UEYtm8hWzVqmyFrSAbM8ru3",
"opentime": 0,
"expiry": 1717689600,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "School",
"Outfit": [
"Jacket School",
"Shirt School"
]
}
],
"traitbonuses": [],
"other": {
"Set": "Den",
"type": "School"
}
},
{
"id": 16,
"name": "I'm not saying it was aliens...",
"banner": "https://dens.famousfoxes.com/banner/mutantsbanner.png",
"lore": "Mutant dens are not like other dens, and other foxes have noticed it for a long time. It's fuelled all kinds of rumors: are the mutants psychic? Do they come from a nuclear catastrophe? The reality, of course, is quite a bit harder to believe. The tribe themselves have long been known to keep their origins a secret, especially from those probing minds at FASA, and with new legislation pending which would allow FASA to investigate, there's not much time to hide the evidence. Can your fox lead the mutant tribe to protect the secrets of their origins?",
"version": 1,
"minxp": 7028,
"xp": 2400,
"reward": 1,
"total": 1,
"address": "3tBcJWWM2yb3QEhcWPdwkL9vEuooJiTEY2uEpznGUfQY",
"opentime": 0,
"expiry": 1715270400,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Mutated",
"Eyes": [
"Mutated",
"Runekeeper"
]
}
],
"traitbonuses": [],
"other": {
"Set": "Den",
"type": "Alien"
}
},
{
"id": 17,
"name": "The Captain Furfang Conundrum",
"banner": "https://dens.famousfoxes.com/banner/default.png",
"lore": "Captain Furfang's legacy is famous among the Captain's guild, and none of his adventures is more famous than his rivalry with Captain Jack Burrows. Now, the Guild has come upon a mysterious unsigned message, which claims to know the location of Furfang's remains, and his prized coat and hat. The problem is, they're at the bottom of the ocean. Can your foxes finally prove the existence of their Guild's legend, and return his prized possessions to the Guildhouse?",
"version": 1,
"minxp": 3523,
"xp": 900,
"reward": 2,
"total": 2,
"address": "DwdkPnkiQcaBMe61jUTTKPWKNiGSP31VSUBHaVYzdg5Q",
"opentime": 0,
"expiry": 1660838400,
"endtime": 0,
"slots": [
{
"count": 2,
"Set": "Captain",
"Outfit": [
"Captain Airship",
"Captain Dark",
"Captain Red"
],
"Head": [
"Captain",
"Captain Airship"
]
}
],
"traitbonuses": [],
"other": {}
},
{
"id": 18,
"name": "The Search for Satoshi",
"banner": "https://dens.famousfoxes.com/banner/default.png",
"lore": "With crypto dumping like a bad date, the alpha seekers have decided that the only way to save their favorite methods of investment and interaction is to find Satoshi, and get him to please do something. Will your foxes -- traditional rivals -- be able to put their differences aside and make the price go up, or will the mission just devolve into an endless discussion about usability versus security?",
"version": 1,
"minxp": 0,
"xp": 140,
"reward": 2,
"total": 2,
"address": "31Kn15gfJQoUZK2PgdT2ABDxoBKn6pQsBQYTTfWuudEg",
"opentime": 0,
"expiry": 1650556800,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Solana",
"Outfit": [
"Jacket Solana",
"Tank Top Dark"
],
"Head": [
"Cap Indigo",
"Cap Solana"
],
"Eyes": [
"Solana"
]
},
{
"count": 1,
"Set": "BTC",
"Outfit": [
"T-Shirt Foxy",
"T-Shirt Yellow"
]
}
],
"traitbonuses": [],
"other": {}
},
{
"id": 19,
"name": "A Clothing Conundrum",
"banner": "https://dens.famousfoxes.com/banner/test12-01.png",
"lore": "Due to rising instances of shoplifting, some of the stores in Foxton's upmarket district of Dali have started banning wearing hoodies and baseball caps in their shops. Hoodies have long been a fashion preference of a large number of foxes, and having to change their wardrobe just to be able to get some groceries or a pair of sneakers seems unreasonable to them. Can your fox lead a successful protest and get the store owners to change their minds?",
"version": 1,
"minxp": 203254,
"xp": 5300,
"reward": 1,
"total": 1,
"address": "G6eqP2P6DqXxgcNpPebwmyUb4urFHeDhpZank3SGcKpZ",
"opentime": 0,
"expiry": 1708012800,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Hoodie",
"Outfit": [
"COPE",
"Hoodie Blue",
"Hoodie Green",
"Hoodie Light",
"Hoodie Pink"
]
}
],
"traitbonuses": [],
"other": {}
},
{
"id": 20,
"name": "Be Prepared!",
"banner": "https://dens.famousfoxes.com/banner/default.png",
"lore": "Scarred foxes have long been subject to legends among other foxes; sometimes, these legends lionize them as great warriors, but other times, they associate them with a character from a certain movie about lions. In order to retain their more positive perception, scarred foxes often take it upon themselves to do something exceptionally brave. So when a tornado comes to town, your fox takes it upon themself to lead the others to safety! Can they find a safe route out of town?",
"version": 1,
"minxp": 184040,
"xp": 5200,
"reward": 1,
"total": 1,
"address": "5QyiP6uD2eBHwHUQobSWQRcg79JLqkwkFzzwSpJbkpEx",
"opentime": 0,
"expiry": 1714060800,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Scar",
"Eyes": [
"Scar",
"Scar Claw",
"Scar X"
]
}
],
"traitbonuses": [],
"other": {}
},
{
"id": 21,
"name": "Im-Mead-iate Solution Required",
"banner": "https://dens.famousfoxes.com/banner/FFFViking3.png",
"lore": "Hvergelmir can withstand most problems: sea monsters, blizzards, and avalanches. What it cannot withstand is a lack of alcohol, and that's exactly what's coming up. Due to a production shortage at the local brewery due to a weak harvest, someone is going to have to import mead from Asgard. There's only one problem: a typhoon out at sea. Can your fox navigate the treacherous waters and restore the town's most important resource?",
"version": 1,
"minxp": 45529,
"xp": 4200,
"reward": 1,
"total": 1,
"address": "4GGoRyV3z36VTcievDvYhTm2tu9RLZGb1KAJQumwXEAD",
"opentime": 0,
"expiry": 1678982400,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Viking",
"Head": [
"Viking Dark",
"Viking Light"
],
"Outfit": [
"Armor Dark",
"Armor Light"
]
}
],
"traitbonuses": [],
"other": {}
},
{
"id": 22,
"name": "Knitting a Tangle",
"banner": "https://dens.famousfoxes.com/banner/default.png",
"lore": "Spring is upon Foxton, and the demand for scarves is waning; however, there remains a huge demand for the knitted neckwear in the frozen northern town of Asgard. Can your fox, armed only with a cart and a pile of woolen ware, help to keep the knitted goods store open?",
"version": 1,
"minxp": 224466,
"xp": 5600,
"reward": 1,
"total": 1,
"address": "9v6DCpcwhnzodobhKJzK7NbgCvzUe2H8uxdGabkfn36G",
"opentime": 0,
"expiry": 1716480000,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Scarf",
"Outfit": [
"Scarf BW",
"Scarf Hero",
"Scarf Purple",
"Scarf Red",
"Scarf Striped"
]
}
],
"traitbonuses": [],
"other": {}
},
{
"id": 23,
"name": "Signal on 1420MHz",
"banner": "https://dens.famousfoxes.com/banner/default.png",
"lore": "Headset foxes all over the place got a surprise after receiving a strange signal through their headsets at 1420MHz all at the same time. Each of them thought nothing of it until they spoke to other foxes across a range of call centers and broadcast booths and realized they, too, had heard it. Can your fox solve the Wow! signal and work out who or what was trying to talk to them before FASA covers it up?",
"version": 1,
"minxp": 136594,
"xp": 5000,
"reward": 1,
"total": 1,
"address": "686YrQYQyQ9MFDJoYHYfuXnqCiiQXuWHvBNuwxPC2GHM",
"opentime": 0,
"expiry": 1697731200,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Headset",
"Head": [
"Communicator",
"Headset"
]
}
],
"traitbonuses": [],
"other": {}
},
{
"id": 24,
"name": "International Fox of Mystery",
"banner": "https://dens.famousfoxes.com/banner/default.png",
"lore": "The name's Fox, James Fox, and the mission is far too secret to send. If you want to know more, come to the place where the lights are dim and the drinks are shaken. This message will self-destruct in 5-4-...",
"version": 1,
"minxp": 136594,
"xp": 5200,
"reward": 1,
"total": 1,
"address": "88tQ9Rg68bt6SzxkvZYuMnoYu6s7C2p6EneyiPwqoG5i",
"opentime": 0,
"expiry": 1698336000,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Spy",
"Eyes": [
"Shades"
]
}
],
"traitbonuses": [],
"other": {
"Set": "Den",
"type": "Spy"
}
},
{
"id": 25,
"name": "Arctic Adventure",
"banner": "https://dens.famousfoxes.com/banner/NootBanner.png",
"lore": "Tales have persisted of what lies beyond Foxhalla for generations, each hearing a more exaggerated version than the last. Originally meant as a warning, these tales told of monsters made of snow and ice, so when a Penguin comes to the settlement of Bilskirnir requesting help, foxes jump at the opportunity. Will your fox brave the frigid wastelands and find what lurks there?",
"version": 1,
"minxp": 0,
"xp": 100,
"reward": 1,
"total": 1,
"address": "AHseh4T9dTjXFN7dk3z1Saff8nRvaBskw5K66d29855k",
"opentime": 0,
"expiry": 1649433600,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Common",
"Head": [
"Backwards Cap Blue",
"Backwards Cap Camo",
"Backwards Cap Dark",
"Backwards Cap Pink",
"Bowler Dark",
"Bowler Light",
"Bucket Hat Green",
"Bucket Hat Ivory",
"Cap BTTF",
"Cap Blue",
"Cap Dark",
"Cap Fire",
"Cap Indigo",
"Cap Pink",
"Cap Puff Ball",
"Cap Purple",
"Cap Solana",
"Cap Star"
],
"Outfit": [
"Jacket BTTF",
"Jacket Blue",
"Jacket Denim",
"Jacket Green",
"Jacket Red",
"Jacket School",
"Scarf BW",
"Scarf Purple",
"Scarf Red",
"Scarf Striped",
"Shirt Blue",
"Shirt Camo",
"Shirt Flannel Blue",
"Shirt Flannel Green",
"Shirt Flannel Red",
"Shirt Flannel Yellow",
"Shirt Green",
"Shirt Pineapple",
"Shirt Red",
"Shirt School",
"T-Shirt Dark",
"T-Shirt Fire",
"T-Shirt Foxy",
"T-Shirt White",
"T-Shirt Yellow",
"Turtleneck Leaf"
]
}
],
"traitbonuses": [],
"other": {
"Set": "Noot",
"type": "Any"
}
},
{
"id": 26,
"name": "The Gentlefox's Club",
"banner": "https://dens.famousfoxes.com/banner/default.png",
"lore": "There are a long list of traits which define a gentlefox: he must possess a healthy dose of masculinity, a taste for the finer things in life, a chivalrous attitude to the fairer sex, but mostly an accent which can only be honed in the hatter's district of Foxton. Your fox has the hat, but does he have the moves to cement his place in high society?",
"version": 1,
"minxp": 203254,
"xp": 5800,
"reward": 1,
"total": 1,
"address": "4UtGbUvLNZ7Ykjwqa9SpVgnhfWguc9XoA2XnXhfT3iuR",
"opentime": 0,
"expiry": 1717689600,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Bowler Hat",
"Head": [
"Bowler Dark",
"Bowler Light"
]
}
],
"traitbonuses": [],
"other": {}
},
{
"id": 27,
"name": "The Fast and The Curious",
"banner": "https://dens.famousfoxes.com/banner/default.png",
"lore": "Outside of The Hallowed Skulk, few foxes are ever invited to Hyperuranion, but recently whispers have been doing the rounds in the heavenly town speaking of a club of foxes who love to race: The Black Valets. The Valets have been asked by some of the more earthly hallowed foxes to perform in an exhibition race staged in the lands of the Skulk. Can your fox outwit and outrace all the others to take the gold in this unique competition?",
"version": 1,
"minxp": 166636,
"xp": 5000,
"reward": 1,
"total": 1,
"address": "2zSEPbPW2F14BNsjkMrWBC6aeEiCytJaiRpwqCuYhgWY",
"opentime": 0,
"expiry": 1703779200,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Valet Hat",
"Head": [
"Valet"
]
}
],
"traitbonuses": [],
"other": {}
},
{
"id": 28,
"name": "In Search of Sunrise",
"banner": "https://dens.famousfoxes.com/banner/default.png",
"lore": "In the sleepy town of Kruger lives a scarcely-known organization of hipster photographers known as The Buckets. Wearing their signature bucket hats, these foxes go out in search of great scenes to post on the 'gram, starring themselves, of course. Recently, a competition has started to capture the perfect sunrise. Can your fox scour the lands in search of the dopest gradients and the sweetest setting?",
"version": 1,
"minxp": 224466,
"xp": 5200,
"reward": 1,
"total": 1,
"address": "GpJhAKSmHvJTE6WaMTn5LZNKNUeH1dHEW3HbbS1qN47U",
"opentime": 0,
"expiry": 1715875200,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Bucket Hat",
"Head": [
"Bucket Hat Blue",
"Bucket Hat Green",
"Bucket Hat Ivory",
"COPE"
]
}
],
"traitbonuses": [],
"other": {}
},
{
"id": 29,
"name": "What Can I Say Except...",
"banner": "https://dens.famousfoxes.com/banner/default.png",
"lore": "The beach foxes love to chill for most of the year, but the college holidays are a perfect time to earn some much-needed coin for the local residents. An unexpected opening to rent one of the pop-up beach bars provides a perfect opportunity to prove your fox can mix the perfect pina colada and serve the most delicious seafood.",
"version": 1,
"minxp": 801,
"xp": 300,
"reward": 1,
"total": 1,
"address": "3gzrNzHNdXNXrLCdYW3KZiza6a28yxb35iAyXiD1KipL",
"opentime": 0,
"expiry": 1656604800,
"endtime": 0,
"slots": [
{
"count": 1,
"Set": "Pineapple",
"Outfit": [
"Shirt Pineapple"
]
}
],
"traitbonuses": [],
"other": {
"Set": "Den",
"type": "Beach"
}