-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquests.json
3156 lines (3156 loc) · 123 KB
/
quests.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": "1280648686736638002",
"config": {
"id": "1280648686736638002",
"config_version": 2,
"starts_at": "2024-09-17T17:00:00+00:00",
"expires_at": "2024-09-23T23:59:59+00:00",
"features": [
3
],
"experiments": {
"rollout": "2024-09_final_fantasy_xvi_quest",
"targeting": "2024-09_final_fantasy_xvi_quest_targeting",
"preview": "2024-09_final_fantasy_xvi_quest_preview"
},
"application": {
"link": "https://www.finalfantasyxvi.com/?utm_source=discord&utm_medium=quest&utm_campaign=brand",
"id": "1283180127655559310",
"name": "FINAL FANTASY XVI"
},
"assets": {
"hero": "hero.webm",
"hero_video": null,
"quest_bar_hero": "quest_bar_hero.webm",
"quest_bar_hero_video": null,
"game_tile": "game_tile.svg",
"logotype": "game_logotype_v2.svg"
},
"colors": {
"primary": "#f5c95e",
"secondary": "#000000"
},
"messages": {
"quest_name": "FFXVI",
"game_title": "FFXVI (Demo available)",
"game_publisher": "Square Enix"
},
"task_config": {
"type": 1,
"join_operator": "or",
"tasks": {
"PLAY_ON_DESKTOP": {
"event_name": "PLAY_ON_DESKTOP",
"target": 900,
"external_ids": []
}
}
},
"rewards_config": {
"assignment_method": 1,
"rewards": [
{
"type": 3,
"sku_id": "1280648686736638003",
"asset": "reward_with_background.mp4",
"asset_video": null,
"messages": {
"name": "Torgal Puppy Avatar Decoration",
"name_with_article": "a Torgal Puppy Avatar Decoration",
"redemption_instructions_by_platform": {
"0": "This collectible can be redeemed on Discord! Go to your Gift Inventory to redeem and equip."
}
},
"expires_at": "2024-11-23T23:59:59+00:00"
}
],
"rewards_expire_at": "2024-10-23T23:59:59+00:00",
"platforms": [
0
]
}
},
"user_status": null,
"targeted_content": [],
"preview": false
},
{
"id": "1280648686749352006",
"config": {
"id": "1280648686749352006",
"config_version": 2,
"starts_at": "2024-09-06T17:00:00+00:00",
"expires_at": "2024-09-12T23:59:59+00:00",
"features": [
3
],
"experiments": {
"rollout": "2024-09_quests_descendant_quest",
"targeting": "2024-09_quests_descendant_quest_targeting",
"preview": "2024-09_quests_descendant_quest_preview"
},
"application": {
"link": "https://tfd-abr.na.nexon.com/3btyg2",
"id": "1256912167685587034",
"name": "The First Descendant"
},
"assets": {
"hero": "hero.png",
"hero_video": null,
"quest_bar_hero": "quest_bar_hero.png",
"quest_bar_hero_video": null,
"game_tile": "game_tile.png",
"logotype": "game_logotype_cropped.png"
},
"colors": {
"primary": "#D53AD4",
"secondary": "#003895"
},
"messages": {
"quest_name": "Season 1 Invasion",
"game_title": "The First Descendant",
"game_publisher": "NEXON"
},
"task_config": {
"type": 1,
"join_operator": "or",
"tasks": {
"PLAY_ON_DESKTOP": {
"event_name": "PLAY_ON_DESKTOP",
"target": 900,
"external_ids": []
}
}
},
"rewards_config": {
"assignment_method": 1,
"rewards": [
{
"type": 3,
"sku_id": "1280648686749352007",
"asset": "reward.mp4",
"messages": {
"name": "Bunny Avatar Decoration",
"name_with_article": "a Bunny Avatar Decoration",
"redemption_instructions_by_platform": {
"0": "This collectible can be redeemed on Discord! Go to your Gift Inventory to redeem and equip."
}
},
"expires_at": "2024-11-12T23:59:59+00:00"
}
],
"rewards_expire_at": "2024-10-12T23:59:59+00:00",
"platforms": [
0
]
}
},
"user_status": null,
"targeted_content": [],
"preview": false
},
{
"id": "1280648686749352002",
"config": {
"id": "1280648686749352002",
"config_version": 2,
"starts_at": "2024-09-25T17:00:00+00:00",
"expires_at": "2024-09-29T23:59:59+00:00",
"features": [
3,
9,
11
],
"experiments": {
"rollout": "2024-09_quests_street_fighter_6_quest",
"targeting": "2024-09_quests_street_fighter_6_quest_targeting",
"preview": "2024-09_quests_street_fighter_6_quest_preview"
},
"application": {
"link": "https://www.streetfighter.com/6/?utm_source=discord&utm_medium=quest_game_link&utm_campaign=street_fighter_6_quest_9_25_24",
"id": "1129504307851567196",
"name": "Street Fighter™ 6"
},
"assets": {
"hero": "hero_capcom_1.jpg",
"hero_video": null,
"quest_bar_hero": "quest_bar_hero_capcom_1.jpg",
"quest_bar_hero_video": null,
"game_tile": "game_tile_capcom_1.png",
"logotype": "logotype_small.png"
},
"colors": {
"primary": "#C63A15",
"secondary": "#D56717"
},
"messages": {
"quest_name": "Street Fighter 6",
"game_title": "Street Fighter™ 6",
"game_publisher": "CAPCOM"
},
"task_config": {
"type": 1,
"join_operator": "or",
"tasks": {
"PLAY_ON_XBOX": {
"event_name": "PLAY_ON_XBOX",
"target": 900,
"external_ids": [
"1687588412"
]
},
"PLAY_ON_PLAYSTATION": {
"event_name": "PLAY_ON_PLAYSTATION",
"target": 900,
"external_ids": [
"CUSA31497_00",
"CUSA31500_00",
"PPSA02632_00",
"PPSA02635_00",
"PLJM17200_00",
"PPSA02633_00",
"ELJM30264_00",
"PPSA13615_00",
"PPSA02634_00",
"CUSA40459_00",
"CUSA31499_00",
"PPSA13469_00",
"CUSA31498_00",
"CUSA40566_00"
]
},
"PLAY_ON_DESKTOP": {
"event_name": "PLAY_ON_DESKTOP",
"target": 900,
"external_ids": []
}
}
},
"rewards_config": {
"assignment_method": 1,
"rewards": [
{
"type": 3,
"sku_id": "1280648686749352003",
"asset": "reward_with_background.mp4",
"asset_video": null,
"messages": {
"name": "Street Fighter 6 Battle Field Avatar Decoration",
"name_with_article": "the Street Fighter 6 Battle Field Avatar Decoration",
"redemption_instructions_by_platform": {
"0": "©CAPCOM STREET FIGHTER is a trademark and/or registered trademark of CAPCOM CO., LTD and/or its subsidiaries in the U.S. and/or other countries."
}
},
"expires_at": "2024-11-29T11:59:59+00:00",
"expires_at_premium": null,
"expiration_mode": 1
}
],
"rewards_expire_at": "2024-10-29T23:59:59+00:00",
"platforms": [
0
]
}
},
"user_status": null,
"targeted_content": [],
"preview": false
},
{
"id": "1286046055498252318",
"config": {
"id": "1286046055498252318",
"config_version": 2,
"starts_at": "2024-09-26T17:00:00+00:00",
"expires_at": "2024-09-30T23:59:59+00:00",
"features": [
3
],
"experiments": {
"rollout": "2024-09_quests_throne_and_liberty_quest",
"targeting": "2024-09_quests_throne_and_liberty_quest_targeting",
"preview": "2024-09_quests_throne_and_liberty_quest_preview"
},
"application": {
"link": "https://www.playthroneandliberty.com/claim-the-throne/?utm_source=discord&utm_medium=discord&utm_campaign=_TLib_GLB_Launch&utm_content=NA",
"id": "1286341455773700096",
"name": "THRONE AND LIBERTY"
},
"assets": {
"hero": "hero.jpeg",
"hero_video": null,
"quest_bar_hero": "quest_bar_hero.jpeg",
"quest_bar_hero_video": null,
"game_tile": "game_tile.jpeg",
"logotype": "game_logotype3.png"
},
"colors": {
"primary": "#47045D",
"secondary": "#211636"
},
"messages": {
"quest_name": "Wolf Morph",
"game_title": "THRONE AND LIBERTY",
"game_publisher": "Amazon Games"
},
"task_config": {
"type": 1,
"join_operator": "or",
"tasks": {
"PLAY_ON_DESKTOP": {
"event_name": "PLAY_ON_DESKTOP",
"target": 900,
"external_ids": []
}
}
},
"rewards_config": {
"assignment_method": 1,
"rewards": [
{
"type": 3,
"sku_id": "1286046055498252319",
"asset": "reward.mp4",
"asset_video": null,
"messages": {
"name": "Wolf Morph Avatar Decoration",
"name_with_article": "a Wolf Morph Avatar Decoration",
"redemption_instructions_by_platform": {
"0": "This collectible can be redeemed on Discord! Go to your Gift Inventory to redeem and equip."
}
},
"expires_at": "2024-11-30T23:59:59+00:00",
"expires_at_premium": null,
"expiration_mode": 1
}
],
"rewards_expire_at": "2024-10-30T23:59:59+00:00",
"platforms": [
0
]
}
},
"user_status": null,
"targeted_content": [],
"preview": false
},
{
"id": "1280648686749352000",
"config": {
"id": "1280648686749352000",
"config_version": 2,
"starts_at": "2024-10-01T16:00:00+00:00",
"expires_at": "2024-10-15T23:59:59+00:00",
"features": [
3
],
"experiments": {
"rollout": "2024-09_quests_throne_and_liberty_10_1_quest",
"targeting": "2024-09_quests_throne_and_liberty_10_1_quest_targeting",
"preview": "2024-09_quests_throne_and_liberty_10_1_quest_preview"
},
"application": {
"link": "https://www.playthroneandliberty.com/claim-the-throne/?utm_source=discord&utm_medium=discord&utm_campaign=_TLib_GLB_Launch&utm_content=NA",
"id": "1286341455773700096",
"name": "THRONE AND LIBERTY"
},
"assets": {
"hero": "hero.png",
"hero_video": null,
"quest_bar_hero": "quest_bar_hero.png",
"quest_bar_hero_video": null,
"game_tile": "game_tile.png",
"logotype": "game_logotype.png"
},
"colors": {
"primary": "#47045D",
"secondary": "#211636"
},
"messages": {
"quest_name": "Ornate Coin Chest",
"game_title": "THRONE AND LIBERTY",
"game_publisher": "Amazon Games"
},
"task_config": {
"type": 1,
"join_operator": "or",
"tasks": {
"PLAY_ON_DESKTOP": {
"event_name": "PLAY_ON_DESKTOP",
"target": 900,
"external_ids": []
}
}
},
"rewards_config": {
"assignment_method": 1,
"rewards": [
{
"type": 1,
"sku_id": "1280648686749352001",
"asset": "reward_tile.png",
"asset_video": null,
"messages": {
"name": "100x Ornate Coins",
"name_with_article": "100x Ornate Coins",
"redemption_instructions_by_platform": {
"0": "1. Launch Throne and Liberty and progress to the Title Screen\n\n2. Either select an existing character if you have one, or create a new character if you do not\n\n3. Complete the tutorial and progress to Kastelton to unlock the Coupon feature\n\n4. Open the Main Menu and select the Coupon button from the right-most pane\n\n5. Enter the coupon code received, then press the \"Use\" button\n\n6. The Ornate Coins received will automatically be added to your balance once the coupon is claimed\n\n\nCoupon codes from this Quest can only be used once per account. Coupon codes received are valid until 10/31. Coupon codes can only be claimed after completing the tutorial and reaching Kastelton"
}
},
"approximate_count": null
}
],
"rewards_expire_at": "2024-10-31T00:00:00+00:00",
"platforms": [
0
]
}
},
"user_status": null,
"targeted_content": [],
"preview": false
},
{
"id": "1289341631543119932",
"config": {
"id": "1289341631543119932",
"config_version": 2,
"starts_at": "2024-10-08T17:00:00+00:00",
"expires_at": "2024-10-22T23:59:59+00:00",
"features": [
9,
3
],
"experiments": {
"rollout": "2024-10_destiny_2_10_08_2024_quest",
"targeting": "2024-10_destiny_2_10_08_2024_quest_targeting",
"preview": "2024-10_destiny_2_10_08_2024_quest_preview"
},
"application": {
"link": "https://www.bungie.net/7/en/destiny?utm_medium=creator&utm_source=discord&utm_campaign=discord_redemption&utm_content=celestial_ties_shader",
"id": "372438022647578634",
"name": "Destiny 2"
},
"assets": {
"hero": "hero.jpg",
"hero_video": null,
"quest_bar_hero": "quest_bar_hero.jpg",
"quest_bar_hero_video": null,
"game_tile": "game_tile.jpg",
"logotype": "logotype_v3.png"
},
"colors": {
"primary": "#5e0f15",
"secondary": "#410b0f"
},
"messages": {
"quest_name": "Destiny 2: Revenant",
"game_title": "Destiny 2: Revenant",
"game_publisher": "Destiny 2: Revenant"
},
"task_config": {
"type": 1,
"join_operator": "or",
"tasks": {
"PLAY_ON_XBOX": {
"event_name": "PLAY_ON_XBOX",
"target": 900,
"external_ids": [
"144389848"
]
},
"PLAY_ON_PLAYSTATION": {
"event_name": "PLAY_ON_PLAYSTATION",
"target": 900,
"external_ids": [
"CUSA05963_00",
"CUSA06172_00",
"PPSA02411_00",
"PPSA02409_00",
"CUSA05042_00",
"PPSA02410_00"
]
},
"PLAY_ON_DESKTOP": {
"event_name": "PLAY_ON_DESKTOP",
"target": 900,
"external_ids": []
}
}
},
"rewards_config": {
"assignment_method": 1,
"rewards": [
{
"type": 1,
"sku_id": "1289351671155265566",
"asset": "reward_tile.jpg",
"asset_video": null,
"messages": {
"name": "Celestial Ties Shader",
"name_with_article": "the Celestial Ties Shader",
"redemption_instructions_by_platform": {
"0": "To redeem your Celestial Ties Shader, visit Bungie.net/redeem and sign into your account.\n\nYou can then enter the code you received and pick up your Celestial Ties Shader in the Tower at the Special Deliveries terminal between the Cryptarch and Gunsmith.\n\nRedemption code expires 12/31/2024 0:00:00 (UTC-8)."
}
},
"approximate_count": 500000
}
],
"rewards_expire_at": "2024-11-21T23:59:59+00:00",
"platforms": [
0
]
}
},
"user_status": null,
"targeted_content": [],
"preview": false
},
{
"id": "1289284766096687104",
"config": {
"id": "1289284766096687104",
"config_version": 2,
"starts_at": "2024-10-08T17:00:00+00:00",
"expires_at": "2024-10-15T23:59:59+00:00",
"features": [
3,
12
],
"experiments": {
"rollout": "2024-09_diablo_iv_quest",
"targeting": "2024-09_diablo_iv_quest_targeting",
"preview": "2024-09_diablo_iv_quest_preview"
},
"application": {
"link": "https://diablo4.blizzard.com",
"id": "1113966530531704943",
"name": "Diablo IV"
},
"assets": {
"hero": "hero.png",
"hero_video": null,
"quest_bar_hero": "quest_bar_hero.png",
"quest_bar_hero_video": null,
"game_tile": "game_tile.png",
"logotype": "game_logotype2.png"
},
"colors": {
"primary": "#439631",
"secondary": "#121711"
},
"messages": {
"quest_name": "Vessel of Hatred",
"game_title": "Diablo® IV: Vessel of Hatred™",
"game_publisher": "Blizzard Entertainment"
},
"task_config": {
"type": 1,
"join_operator": "or",
"tasks": {
"STREAM_ON_DESKTOP": {
"event_name": "STREAM_ON_DESKTOP",
"target": 900,
"external_ids": []
}
}
},
"rewards_config": {
"assignment_method": 1,
"rewards": [
{
"type": 1,
"sku_id": "1289284766096687105",
"asset": "reward_tile.jpeg",
"asset_video": null,
"messages": {
"name": "Sea of Voices Weapon Bundle",
"name_with_article": "a Sea of Voices Weapon Bundle",
"redemption_instructions_by_platform": {
"0": "**Claim Your Code Online**\n\n1. Log into your Account Overview: [account.blizzard.com/overview](https://account.blizzard.com/overview)\n\n2. Enter the code in the Redeem a Code box and click Redeem Code\n\n**Claim Your Code on the Battle.net Desktop App**\n\n1. Login to the Battle.net Desktop App\n\n2. Click your profile icon at the top right corner of the App\n\n3. Click Redeem Code\n\n*Note: Reward code must be redeemed on Battle.net but will be accessible on Xbox Series X|S, Xbox One, PlayStation 4, PlayStation 5, and Steam, as long as the user has a valid Diablo IV license. Ensure that your Battle.net ID is linked to your gaming platform. After redeeming the code on Battle.net, your items will be available the next time you log into your selected platform.*"
}
},
"approximate_count": null
}
],
"rewards_expire_at": "2024-11-14T23:59:59+00:00",
"platforms": [
0
]
}
},
"user_status": null,
"targeted_content": [],
"preview": false
},
{
"id": "1294082738223321129",
"config": {
"id": "1294082738223321129",
"config_version": 2,
"starts_at": "2024-10-17T17:00:00+00:00",
"expires_at": "2024-10-23T23:59:59+00:00",
"features": [
9,
3
],
"experiments": {
"rollout": "2024-10_quests_marvel_snap_quest_10_18_24",
"targeting": "2024-10_quests_marvel_snap_quest_10_18_24_targeting",
"preview": "2024-10_quests_marvel_snap_quest_10_18_24_preview"
},
"application": {
"link": "https://store.steampowered.com/app/1997040/MARVEL_SNAP?utm_source=discord&utm_medium=quest_game_link",
"id": "1067552066454695965",
"name": "MARVEL SNAP"
},
"assets": {
"hero": "hero.jpg",
"hero_video": null,
"quest_bar_hero": "quest_bar_hero.jpg",
"quest_bar_hero_video": null,
"game_tile": "game_tile.png",
"logotype": "logotype_snap.png"
},
"colors": {
"primary": "#ee6b33",
"secondary": "#f33748"
},
"messages": {
"quest_name": "MARVEL SNAP",
"game_title": "MARVEL SNAP",
"game_publisher": "MARVEL SNAP"
},
"task_config": {
"type": 1,
"join_operator": "or",
"tasks": {
"PLAY_ON_DESKTOP": {
"event_name": "PLAY_ON_DESKTOP",
"target": 900,
"external_ids": []
}
}
},
"rewards_config": {
"assignment_method": 1,
"rewards": [
{
"type": 1,
"sku_id": "1294082738223321130",
"asset": "reward.jpg",
"asset_video": null,
"messages": {
"name": "Spider-Armor Variant",
"name_with_article": "the Spider-Armor Variant",
"redemption_instructions_by_platform": {
"0": "How To Use Redeem Codes\n\n\n1. Once you have a Redeem Code, head over to https://bit.ly/SNAPredeem to redeem it!\n\n2. To proceed, you will need to verify your SNAP ID, which can be found in-game at the bottom of your settings page. Simply tap on it to reveal your ID.\n\n3. Once your code is successfully redeemed, the reward will be sent to your in-game inbox!\n\n4. Please note, the Redeem Code is valid from Pacific Time (PT): October 17, 2024, 9:00:00 AM to October 31, 2024, 8:59:59 AM."
}
},
"approximate_count": null
}
],
"rewards_expire_at": "2024-10-31T15:59:59+00:00",
"platforms": [
0
]
}
},
"user_status": null,
"targeted_content": [],
"preview": false
},
{
"id": "1298035818769940591",
"config": {
"id": "1298035818769940591",
"config_version": 2,
"starts_at": "2024-10-25T17:00:00+00:00",
"expires_at": "2024-10-31T23:59:59+00:00",
"features": [
3,
12
],
"experiments": {
"rollout": "2024-10_quests_once_human_quest",
"targeting": "2024-10_quests_once_human_quest_targeting",
"preview": "2024-10_quests_once_human_quest_preview"
},
"application": {
"link": "https://engagements.appsflyer.com/v1.0/c2s/click/app/steam/2139460?af_media_source=discord&af_campaign_id=steamus&af_campaign=steamus&af_r=https%3A%2F%2Fstore.steampowered.com%2Fapp%2F2139460%3Futm_source%3DNAOCT%26utm_campaign%3DDC%26utm_content%3Ddiscordquest",
"id": "1260340082150346932",
"name": "Once Human"
},
"assets": {
"hero": "hero.jpg",
"hero_video": null,
"quest_bar_hero": "quests_bar_hero.jpg",
"quest_bar_hero_video": null,
"game_tile": "game_tile.jpg",
"logotype": "game_logotype.png"
},
"colors": {
"primary": "#156d81",
"secondary": "#0a94b1"
},
"messages": {
"quest_name": "Winter Survival",
"game_title": "Once Human",
"game_publisher": "NetEase"
},
"task_config": {
"type": 1,
"join_operator": "or",
"tasks": {
"STREAM_ON_DESKTOP": {
"event_name": "STREAM_ON_DESKTOP",
"target": 900,
"external_ids": []
}
}
},
"rewards_config": {
"assignment_method": 1,
"rewards": [
{
"type": 1,
"sku_id": "1298035818769940592",
"asset": "reward.jpg",
"asset_video": null,
"messages": {
"name": "Winter Survival Pack",
"name_with_article": "the Winter Survival Pack",
"redemption_instructions_by_platform": {
"0": "To redeem your item, press F3 or ESC in the game to access the event interface (you must complete the tutorial first). Once there, either press X or click the “Redeem Code” button in the bottom right. Enter your code in the pop-up window and hit REDEEM to claim your reward."
}
},
"approximate_count": null
}
],
"rewards_expire_at": "2024-11-30T23:59:59+00:00",
"platforms": [
0
]
}
},
"user_status": null,
"targeted_content": [],
"preview": false
},
{
"id": "1301937819069190215",
"config": {
"id": "1301937819069190215",
"config_version": 2,
"starts_at": "2024-11-14T18:00:00+00:00",
"expires_at": "2024-11-26T00:59:59+00:00",
"features": [
3,
13
],
"experiments": {
"rollout": "2024-11_quests_dune_prophecy_quest",
"targeting": "2024-11_quests_dune_prophecy_quest_targeting",
"preview": "2024-11_quests_dune_prophecy_quest_preview"
},
"application": {
"link": "https://www.max.com/shows/dune-prophecy-2024/57660b16-a32a-476f-89da-3302ac379e91?utm_source=discord&utm_medium=quest_link",
"id": "545364944258990091",
"name": "Dune: Prophecy"
},
"assets": {
"hero": "hero.jpg",
"hero_video": null,
"quest_bar_hero": "questbar_hero.jpg",
"quest_bar_hero_video": "questbar_hero.webm",
"game_tile": "game_tile.jpg",
"logotype": "logotype.png"
},
"colors": {
"primary": "#50615D",
"secondary": "#848B7D"
},
"messages": {
"quest_name": "Dune: Prophecy",
"game_title": "Dune: Prophecy",
"game_publisher": "Max"
},
"task_config": {
"type": 1,
"join_operator": "or",
"tasks": {
"WATCH_VIDEO": {
"event_name": "WATCH_VIDEO",
"target": 158,
"external_ids": []
}
}
},
"rewards_config": {
"assignment_method": 1,
"rewards": [
{
"type": 3,
"sku_id": "1305905202578325535",
"asset": "reward3.mp4",
"asset_video": null,
"messages": {
"name": "Wallach IX Spaceport Avatar Decoration",
"name_with_article": "a Wallach IX Spaceport Avatar Decoration",
"redemption_instructions_by_platform": {
"0": "This collectible can be redeemed on Discord! Go to your Gift Inventory to redeem and equip."
}
},
"expires_at": "2025-01-25T08:00:00+00:00",
"expires_at_premium": null,
"expiration_mode": 1
}
],
"rewards_expire_at": "2024-12-26T00:59:59+00:00",
"platforms": [
0
]
},
"video_metadata": {
"messages": {
"video_title": "Dune: Prophecy Trailer",
"video_end_cta_title": "NEW EPISODES | SUNDAYS 9PM",
"video_end_cta_subtitle": "Streaming on Max. Click to find out more!"
},
"assets": {
"video_player_video": "video_high_res2.mp4",
"video_player_thumbnail": "video_thumbnail.jpg",
"video_player_video_low_res": "video_low_res2.mp4",
"video_player_caption": "caption3.vtt",
"video_player_transcript": "transcript.txt",
"quest_bar_preview_video": "questbar_preview.webm",
"quest_bar_preview_thumbnail": "questbar_preview.jpg",
"quest_home_video": "questhome.webm"
}
}
},
"user_status": null,
"targeted_content": [],
"preview": false
},
{
"id": "1308069810789285959",
"config": {
"id": "1308069810789285959",
"config_version": 2,
"starts_at": "2024-11-25T18:00:00+00:00",
"expires_at": "2024-12-09T00:59:59+00:00",
"features": [
16,
9,
3,
13
],
"experiments": {
"rollout": "2024-11_quests_batman_arkham_quest",
"targeting": "2024-11_quests_batman_arkham_quest_targeting",
"preview": "2024-11_quests_batman_arkham_quest_preview"
},
"application": {
"link": "https://www.meta.com/quest/batman-arkham-shadow/#hardware?utm_source=%esid!&utm_medium=rv&utm_campaign=%ebuy!&utm_term=%epid!&utm_content=%ecid!&utm_funnel=dgen",
"id": "545364944258990091",
"name": "Batman: Arkham Shadow"
},
"assets": {
"hero": "hero.jpg",
"hero_video": null,
"quest_bar_hero": "questbar_hero.jpg",
"quest_bar_hero_video": "questbar_hero.webm",
"game_tile": "game_tile.jpg",
"logotype": "logotype.png"
},
"colors": {
"primary": "#643431",
"secondary": "#FF0000"
},
"messages": {
"quest_name": "Batman: Arkham Shadow",
"game_title": "Only on Meta Quest 3/3S",
"game_publisher": "Meta Quest"
},
"task_config": {
"type": 1,
"join_operator": "or",
"tasks": {
"WATCH_VIDEO": {
"event_name": "WATCH_VIDEO",
"target": 29,
"external_ids": []
}
}
},
"rewards_config": {
"assignment_method": 1,
"rewards": [
{
"type": 3,
"sku_id": "1309270800099971122",
"asset": "reward3.mp4",
"asset_video": null,
"messages": {
"name": "Batarang Avatar Decoration",
"name_with_article": "a Batarang Avatar Decoration",
"redemption_instructions_by_platform": {
"0": "This collectible can be redeemed on Discord! Go to your Gift Inventory to redeem and equip."
}
},
"expires_at": "2025-02-08T08:00:00+00:00",
"expires_at_premium": null,
"expiration_mode": 1
}
],
"rewards_expire_at": "2025-01-08T00:59:59+00:00",
"platforms": [
0
]
},
"video_metadata": {
"messages": {
"video_title": "Batman: Arkham Shadow Accolades Trailer",
"video_end_cta_title": "BECOME THE KNIGHT",
"video_end_cta_subtitle": "Only on Meta Quest 3/3S"
},
"assets": {
"video_player_video": "video_high_res_f3fd484233.mp4",
"video_player_thumbnail": "video_thumbnail.jpg",
"video_player_video_low_res": "video_low_res_4f9e8369b7.mp4",
"video_player_caption": "caption.vtt",
"video_player_transcript": "transcript.txt",
"quest_bar_preview_video": "questbar_preview.webm",
"quest_bar_preview_thumbnail": "questbar_preview.jpg",
"quest_home_video": "questhome.webm"
}
}
},
"user_status": null,
"targeted_content": [],
"preview": false
},
{
"id": "1308101969486811188",
"config": {
"id": "1308101969486811188",
"config_version": 2,
"starts_at": "2024-11-29T18:00:00+00:00",
"expires_at": "2024-12-11T16:00:00+00:00",
"features": [
16,
9,
3,
13
],
"experiments": {
"rollout": "2024-11_quests_xbox_pcgamepass_quest",
"targeting": "2024-11_quests_xbox_pcgamepass_quest_targeting",
"preview": "2024-11_quests_xbox_pcgamepass_quest_preview"
},
"application": {
"link": "https://xbox.com/pcgamepass?utm_source=discord&utm_medium=quest_link",
"id": "545364944258990091",
"name": "PC Game Pass"
},
"assets": {
"hero": "hero.jpg",
"hero_video": null,
"quest_bar_hero": "questbar_hero.jpg",
"quest_bar_hero_video": "questbar_hero.webm",
"game_tile": "game_tile.png",
"logotype": "logotype.png"
},
"colors": {
"primary": "#65a153",
"secondary": "#141414"
},
"messages": {
"quest_name": "PC Player",
"game_title": "PC Game Pass",
"game_publisher": "Microsoft"
},
"task_config": {
"type": 1,
"join_operator": "or",
"tasks": {
"WATCH_VIDEO": {
"event_name": "WATCH_VIDEO",
"target": 61,
"external_ids": []
}
}
},
"rewards_config": {
"assignment_method": 1,
"rewards": [
{
"type": 1,
"sku_id": "1308109728072863865",
"asset": "reward3.jpg",
"asset_video": null,
"messages": {
"name": "14 day trial",
"name_with_article": "a 14 Day Trial",
"redemption_instructions_by_platform": {
"0": "1. To redeem your 14-day PC Game Pass trial code visit [microsoft.com/redeem](https://microsoft.com/redeem) by December 30, 2024 11:59 PM\n\n2. Valid payment method required. Subscription continues automatically at then-current regular membership rate unless cancelled through your Microsoft Account. Limit: 1 per person/account. Subject to the Microsoft Services Agreement, Game Pass terms and system requirements at: [xbox.com/subscriptionterms](https://xbox.com/subscriptionterms).\n\nAvailable in US, CA, MX, BR, UK, FR, DE, AU, JP, KR."
}
},