-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsource-info-v2.ts
More file actions
1677 lines (1676 loc) · 62.1 KB
/
source-info-v2.ts
File metadata and controls
1677 lines (1676 loc) · 62.1 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
const D2Sources: {
[key: string]: {
itemHashes?: number[];
sourceHashes?: number[];
aliases?: string[];
enteredDCV?: number;
};
} = {
'30th': {
sourceHashes: [
443340273, // Source: Xûr's Treasure Hoard in Eternity
675740011, // Source: "Grasp of Avarice" Dungeon
1102533392, // Source: Xûr (Eternity)
1394793197, // Source: "Magnum Opus" Quest
2763252588, // Source: "And Out Fly the Wolves" Quest
],
},
adventure: {
sourceHashes: [
194661944, // Source: Adventure "Siren Song" on Saturn's Moon, Titan
482012099, // Source: Adventure "Thief of Thieves" on Saturn's Moon, Titan
636474187, // Source: Adventure "Deathless" on Saturn's Moon, Titan
783399508, // Source: Adventure "Supply and Demand" in the European Dead Zone
790433146, // Source: Adventure "Dark Alliance" in the European Dead Zone
1067250718, // Source: Adventure "Arecibo" on Io
1186140085, // Source: Adventure "Unbreakable" on Nessus
1289998337, // Source: Adventure "Hack the Planet" on Nessus
1527887247, // Source: Adventure "Red Legion, Black Oil" in the European Dead Zone
1736997121, // Source: Adventure "Stop and Go" in the European Dead Zone
1861838843, // Source: Adventure "A Frame Job" in the European Dead Zone
2040548068, // Source: Adventure "Release" on Nessus
2096915131, // Source: Adventure "Poor Reception" in the European Dead Zone
2345202459, // Source: Adventure "Invitation from the Emperor" on Nessus
2392127416, // Source: Adventure "Cliffhanger" on Io
2553369674, // Source: Adventure "Exodus Siege" on Nessus
3427537854, // Source: Adventure "Road Rage" on Io
3754173885, // Source: Adventure "Getting Your Hands Dirty" in the European Dead Zone
4214471686, // Source: Adventure "Unsafe at Any Speed" in the European Dead Zone
],
enteredDCV: 20,
},
avalon: {
sourceHashes: [
709680645, // Source: "Truly Satisfactory" Triumph
1476475066, // Source: "Firmware Update" Triumph
1730197643, // Source: //node.ovrd.AVALON// Exotic Quest
],
enteredDCV: 24,
},
battlegrounds: {
itemHashes: [
2121785039, // Brass Attacks
3075224551, // Threaded Needle
],
sourceHashes: [
3391325445, // Source: Battlegrounds
],
enteredDCV: 24,
},
blackarmory: {
itemHashes: [
417164956, // Jötunn
3211806999, // Izanagi's Burden
3588934839, // Le Monarque
3650581584, // New Age Black Armory
3650581585, // Refurbished Black Armory
3650581586, // Rasmussen Clan
3650581587, // House of Meyrin
3650581588, // Satou Tribe
3650581589, // Bergusian Night
],
sourceHashes: [
266896577, // Source: Solve the Norse glyph puzzle.
439994003, // Source: Complete the "Master Smith" Triumph.
925197669, // Source: Complete a Bergusia Forge ignition.
948753311, // Source: Found by completing Volundr Forge ignitions.
1286332045, // Source: Found by completing Izanami Forge ignitions.
1457456824, // Source: Complete the "Reunited Siblings" Triumph.
1465990789, // Source: Solve the Japanese glyph puzzle.
1596507419, // Source: Complete a Gofannon Forge ignition.
2062058385, // Source: Crafted in a Black Armory forge.
2384327872, // Source: Solve the French glyph puzzle.
2541753910, // Source: Complete the "Master Blaster" Triumph.
2966694626, // Source: Found by solving the mysteries behind the Black Armory's founding families.
3047033583, // Source: Returned the Obsidian Accelerator.
3257722699, // Source: Complete the "Clean Up on Aisle Five" Triumph.
3390164851, // Source: Found by turning in Black Armory bounties.
3764925750, // Source: Complete an Izanami Forge ignition.
4101102010, // Source: Found by completing Bergusia Forge ignitions.
4247521481, // Source: Complete the "Beautiful but Deadly" Triumph.
4290227252, // Source: Complete a Volundr Forge ignition.
],
aliases: ['ada'],
enteredDCV: 20,
},
brave: {
itemHashes: [
205225492, // Hung Jury SR4
211732170, // Hammerhead
243425374, // Falling Guillotine
570866107, // Succession
2228325504, // Edge Transit
2480074702, // Forbearance
2499720827, // Midnight Coup
2533990645, // Blast Furnace
3098328572, // The Recluse
3757612024, // Luna's Howl
3851176026, // Elsie's Rifle
4043921923, // The Mountaintop
],
sourceHashes: [
2952071500, // Source: Into the Light
],
},
calus: {
itemHashes: [
947448544, // Shadow of Earth Shell
1661191192, // The Tribute Hall
1661191193, // Crown of Sorrow
1661191194, // A Hall of Delights
1661191195, // The Imperial Menagerie
2027598066, // Imperial Opulence
2027598067, // Imperial Dress
2816212794, // Bad Juju
3176509806, // Árma Mákhēs
3580904580, // Legend of Acrius
3841416152, // Golden Empire
3841416153, // Goldleaf
3841416154, // Shadow Gilt
3841416155, // Cinderchar
3875444086, // The Emperor's Chosen
],
enteredDCV: 20,
sourceHashes: [
1675483099, // Source: Leviathan, Spire of Stars raid lair.
2399751101, // Acquired from the raid "Crown of Sorrow."
2511152325, // Acquired from the Menagerie aboard the Leviathan.
2653618435, // Source: Leviathan raid.
2765304727, // Source: Leviathan raid on Prestige difficulty.
2812190367, // Source: Leviathan, Spire of Stars raid lair on Prestige difficulty.
2937902448, // Source: Leviathan, Eater of Worlds raid lair.
3147603678, // Acquired from the raid "Crown of Sorrow."
4009509410, // Source: Complete challenges in the Leviathan raid.
4066007318, // Source: Leviathan, Eater of Worlds raid lair on Prestige difficulty.
],
},
campaign: {
sourceHashes: [
13912404, // Source: Unlock Your Arc Subclass
100617404, // Requires Titan Class
286427063, // Source: Fallen Empire Campaign
409652252, // Source: The Witch Queen Campaign
431243768, // Source: The Edge of Fate Campaign
460742691, // Requires Guardian Rank 6: Masterwork Weapons
569214265, // Source: Red War Campaign
633667627, // Requires Tier 4 or 5 Weapon
677167936, // Source: Complete the campaign as a Warlock.
712662541, // Requires Season 27 Tier 5 Weapon
736336644, // Source: "A Spark of Hope" Quest
901482731, // Source: Lightfall Campaign
918840100, // Source: Shadowkeep Campaign
923708784, // Requires Guardian Rank 7: Threats and Surges
958460845, // Source: The Final Shape Campaign
1076222895, // Source: Defeat bosses in Flashpoints.
1103518848, // Source: Earned over the course of the Warmind campaign.
1118966764, // Source: Dismantle an item with this shader applied to it.
1281387702, // Source: Unlock Your Void Subclass
1701477406, // Source: Flashpoint milestones; Legendary engrams.
2242939082, // Requires Hunter Class
2278847330, // Requires Guardian Rank 3
2308290458, // Requires 1,000 Warlock Kills
2552784968, // Requires Guardian Rank 2
2744321951, // Source: Complete a heroic Public Event.
2892963218, // Source: Earned while leveling.
2895784523, // Source: Pledge to all factions on a single character.
2929562373, // Source: Unlock Your Solar Subclass
2988465950, // Source: Planetary faction chests.
3099553329, // Source: Complete the campaign as a Titan.
3126774631, // Requires 1,000 Hunter Kills
3174947771, // Requires Guardian Rank 6: Vendor Challenges
3431853656, // Achieved a Grimoire score of over 5000 in Destiny.
3532642391, // Source: Forsaken Campaign
3704442923, // Source: Curse of Osiris Campaign
3936473457, // Requires Warlock Class
4008954452, // Requires Shaped or Enhanced Weapon
4288102251, // Requires 1,000 Titan Kills
4290499613, // Source: Complete the campaign as a Hunter.
],
},
cayde6: {
sourceHashes: [
2206233229, // Source: Follow treasure maps.
],
enteredDCV: 20,
},
compass: {
sourceHashes: [
164083100, // Source: Display of Supremacy, Weekly Challenge
3100439379, // Source: Mission "Exorcism"
],
enteredDCV: 20,
},
conquest: {
sourceHashes: [
1331532890, // Source: Seasonal Conquest Triumph "Ultimate Victory"
],
},
contact: {
sourceHashes: [
2039343154, // Source: Contact Public Event
],
enteredDCV: 20,
},
crotasend: {
sourceHashes: [
1897187034, // Source: "Crota's End" Raid
],
aliases: ['crota'],
},
crownofsorrow: {
itemHashes: [
947448544, // Shadow of Earth Shell
1661191193, // Crown of Sorrow
2027598066, // Imperial Opulence
2027598067, // Imperial Dress
],
sourceHashes: [
2399751101, // Acquired from the raid "Crown of Sorrow."
3147603678, // Acquired from the raid "Crown of Sorrow."
],
aliases: ['cos'],
enteredDCV: 20,
},
crucible: {
itemHashes: [
2307365, // The Inquisitor (Adept)
51129316, // The Inquisitor
161675590, // Whistler's Whim (Adept)
303107619, // Tomorrow's Answer (Adept)
501345268, // Shayura's Wrath (Adept)
548809020, // Exalted Truth
627188188, // Eye of Sol
711889599, // Whistler's Whim (Adept)
769099721, // Devil in the Details
825554997, // The Inquisitor (Adept)
854379020, // Astral Horizon (Adept)
874623537, // Cataphract GL3 (Adept)
906840740, // Unwavering Duty
1141586039, // Unexpected Resurgence (Adept)
1201528146, // Exalted Truth (Adept)
1230660649, // Victory's Wreath
1292594730, // The Summoner (Adept)
1321626661, // Eye of Sol (Adept)
1401300690, // Eye of Sol
1574601402, // Whistler's Whim
1661191197, // Disdain for Glitter
1705843397, // Exalted Truth (Adept)
1711056134, // Incisor
1820994983, // The Summoner
1893967086, // Keen Thistle
1968410628, // The Prophet
1973107014, // Igneous Hammer
2022294213, // Shayura's Wrath
2059255495, // Eye of Sol (Adept)
2185327324, // The Inquisitor
2300143112, // Yesterday's Question
2314610827, // Igneous Hammer (Adept)
2330860573, // The Inquisitor (Adept)
2378785953, // Yesterday's Question (Adept)
2414564781, // Punctuation Marks
2420153991, // Made Shaxx Proud
2421180981, // Incisor (Adept)
2588739576, // Crucible Solemnity
2588739578, // Crucible Legacy
2588739579, // Crucible Metallic
2632846356, // Rain of Ashes
2653171212, // The Inquisitor
2653171213, // Astral Horizon
2738601016, // Cataphract GL3
2759251821, // Unwavering Duty (Adept)
2839600459, // Incisor (Adept)
3001205424, // Ecliptic Distaff
3009199534, // Tomorrow's Answer
3019024381, // The Prophet (Adept)
3102421004, // Exalted Truth
3165143747, // Whistler's Whim
3193598749, // The Immortal (Adept)
3332125295, // Aisha's Care (Adept)
3436626079, // Exalted Truth
3444632029, // Unwavering Duty (Adept)
3503560035, // Keen Thistle (Adept)
3624844116, // Unwavering Duty
3920882229, // Exalted Truth (Adept)
3928440584, // Crucible Carmine
3928440585, // Crucible Redjack
3969379530, // Aisha's Care
4005780578, // Unexpected Resurgence
4039572196, // The Immortal
4060882456, // Rubicund Wrap (Ornament)
4248997900, // Incisor
],
sourceHashes: [
164083100, // Source: Display of Supremacy, Weekly Challenge
454115234, // Source: Associated Crucible Quest
598662729, // Source: Reach Glory Rank "Legend" in the Crucible.
705363737, // Source: Heavy Metal: Supremacy
745186842, // Source: Associated Crucible Quest
897576623, // Source: Complete Crucible matches and earn rank-up packages from Lord Shaxx.
929025440, // Acquired by competing in the Crucible during the Prismatic Inferno.
1217831333, // Source: Associated Crucible Quest
1223492644, // Source: Complete the "Reconnaissance by Fire" quest.
1465057711, // Source: Standard Ritual Playlist. (Vanguard Ops, Crucible, Gambit)
1494513645, // Source: Glory Matches in Crucible
2055470113, // Source: Chance to acquire when completing Crucible Survival matches after reaching Glory Rank "Mythic."
2537301256, // Source: Glory Rank of "Fabled" in Crucible
2558941813, // Source: Place Silver III Division or Higher in Ranked Crucible Playlists
2622122683, // Source: Lord Shaxx Rank Up Reputation
2641169841, // Source: Purchase from Lord Shaxx
2658055900, // Source: Complete the "Season 8: Battle Drills" quest.
2669524419, // Source: Crucible
2821852478, // Source: Complete this weapon's associated Crucible quest.
2915991372, // Source: Crucible
3020288414, // Source: Crucible
3226099405, // Source: Crucible Seasonal Ritual Rank Reward
3299964501, // Source: Earn Ranks in Vanguard, Crucible, or Gambit Playlists
3348906688, // Source: Ranks in Vanguard Strikes, Crucible, or Gambit
3466789677, // Source: Place Ascendant III Division or Higher in Ranked Crucible Playlists
3656787928, // Source: Crucible Salvager's Salvo Armament
],
aliases: ['shaxx'],
},
deepstonecrypt: {
sourceHashes: [
866530798, // Source: "Not a Scratch" Triumph
1405897559, // Source: "Deep Stone Crypt" Raid
1692165595, // Source: "Rock Bottom" Triumph
],
aliases: ['dsc'],
},
deluxe: {
sourceHashes: [
639650067, // Source: Limited Edition of Destiny 2.
1358645302, // Source: Unlocked by a special offer.
1412777465, // Source: Forsaken Refer-a-Friend
1743434737, // Source: Destiny 2 "Forsaken" preorder bonus gift.
1866448829, // Source: Deluxe Edition Bonus
2968206374, // Source: Earned as a Deluxe Edition bonus.
2985242208, // Source: Earned from a charity promotion.
3173463761, // Source: Pre-order Bonus
3212282221, // Source: Forsaken Annual Pass
3672287903, // Source: The Witch Queen Digital Deluxe Edition
4069355515, // Source: Handed out at US events in 2019.
4166998204, // Source: Earned as a pre-order bonus.
],
aliases: ['limited'],
},
desertperpetual: {
sourceHashes: [
596084342, // Source: "The Desert Perpetual" Raid
2127551856, // Source: "The Desert Perpetual" Epic Raid
],
},
do: {
sourceHashes: [
146504277, // Source: Earn rank-up packages from Arach Jalaal.
],
enteredDCV: 20,
},
dreaming: {
itemHashes: [
185321779, // Ennead
3352019292, // Secret Victories
],
sourceHashes: [
2559145507, // Source: Complete activities in the Dreaming City.
3874934421, // Source: Complete Nightfall strike "The Corrupted."
],
},
duality: {
sourceHashes: [
1282207663, // Source: Dungeon "Duality"
],
},
dungeon: {
sourceHashes: [
506073192, // Source: "Prophecy" Dungeon
613435025, // Source: "Warlord's Ruin" Dungeon
675740011, // Source: "Grasp of Avarice" Dungeon
877404349, // Source: Rite of the Nine
1282207663, // Source: Dungeon "Duality"
1597738585, // Source: "Spire of the Watcher" Dungeon
1745960977, // Source: "Pit of Heresy" Dungeon
2463956052, // Source: Vesper's Host
2607970476, // Source: Sundered Doctrine
3247513834, // Source: Equilibrium
3288974535, // Source: "Ghosts of the Deep" Dungeon
],
itemHashes: [
14929251, // Long Arm
185321778, // The Eternal Return
189194532, // No Survivors (Adept)
233402416, // New Pacific Epitaph (Adept)
291447487, // Cold Comfort
492673102, // New Pacific Epitaph
749483159, // Prosecutor (Adept)
814876684, // Wish-Ender
1050582210, // Greasy Luck (Adept)
1066598837, // Relentless (Adept)
1157220231, // No Survivors (Adept)
1303313141, // Unsworn
1460079227, // Liminal Vigil
1685406703, // Greasy Luck
1773934241, // Judgment
1817605554, // Cold Comfort (Adept)
1904170910, // A Sudden Death
1987644603, // Judgment (Adept)
2059741649, // New Pacific Epitaph
2126543269, // Cold Comfort (Adept)
2129814338, // Prosecutor
2477408004, // Wilderflight (Adept)
2730671571, // Terminus Horizon
2760833884, // Cold Comfort
2764074355, // A Sudden Death (Adept)
2844014413, // Pallas Galliot
2934305134, // Greasy Luck
2982006965, // Wilderflight
3185151619, // New Pacific Epitaph (Adept)
3210739171, // Greasy Luck (Adept)
3329218848, // Judgment (Adept)
3421639790, // Liminal Vigil (Adept)
3681280908, // Relentless
3692140710, // Long Arm (Adept)
4193602194, // No Survivors
4228149269, // No Survivors
4267192886, // Terminus Horizon (Adept)
],
},
echoes: {
sourceHashes: [
536806855, // Source: Episode: Echoes
2306801178, // Source: Episode: Echoes Activities
2514060836, // Source: Episode: Echoes Enigma Protocol Activity
2631398023, // Source: Radiolite Bay Deposits
],
},
edgeoffate: {
sourceHashes: [
431243768, // Source: The Edge of Fate Campaign
4034415948, // Source: The Edge of Fate Activities
],
},
edz: {
sourceHashes: [
783399508, // Source: Adventure "Supply and Demand" in the European Dead Zone
790433146, // Source: Adventure "Dark Alliance" in the European Dead Zone
1373723300, // Source: Complete activities and earn rank-up packages in the EDZ.
1527887247, // Source: Adventure "Red Legion, Black Oil" in the European Dead Zone
1736997121, // Source: Adventure "Stop and Go" in the European Dead Zone
1861838843, // Source: Adventure "A Frame Job" in the European Dead Zone
2096915131, // Source: Adventure "Poor Reception" in the European Dead Zone
3754173885, // Source: Adventure "Getting Your Hands Dirty" in the European Dead Zone
4214471686, // Source: Adventure "Unsafe at Any Speed" in the European Dead Zone
4292996207, // Source: World Quest "Enhance!" in the European Dead Zone.
],
},
eow: {
sourceHashes: [
2937902448, // Source: Leviathan, Eater of Worlds raid lair.
4066007318, // Source: Leviathan, Eater of Worlds raid lair on Prestige difficulty.
],
enteredDCV: 20,
},
ep: {
sourceHashes: [
4137108180, // Source: Escalation Protocol on Mars.
],
enteredDCV: 20,
},
equilibrium: {
sourceHashes: [
3247513834, // Source: Equilibrium
],
},
europa: {
sourceHashes: [
286427063, // Source: Fallen Empire Campaign
1148859274, // Source: Exploring Europa
1492981395, // Source: "The Stasis Prototype" Quest
2171520631, // Source: "Lost Lament" Exotic Quest
3125456997, // Source: Europan Tour
3965815470, // Source: Higher Difficulty Empire Hunts
],
},
events: {
itemHashes: [
425681240, // Acosmic
601948197, // Zephyr
689294985, // Jurassic Green
1280894514, // Mechabre
2477980485, // Mechabre
2603335652, // Jurassic Green
2869466318, // BrayTech Werewolf
3400256755, // Zephyr
3558681245, // BrayTech Werewolf
3559361670, // The Title
],
sourceHashes: [
32323943, // Source: Moments of Triumph
151416041, // Source: Solstice
464727567, // Source: Dawning 2021
547767158, // Source: Dawning 2018
611838069, // Source: Guardian Games
629617846, // Source: Dawning 2020
641018908, // Source: Solstice 2018
772619302, // Completed all 8 Moments of Triumph in Destiny's second year.
894030814, // Source: Heavy Metal Event
923678151, // Source: Upgraded Event Card Reward
1054169368, // Source: Festival of the Lost 2021
1225476079, // Source: Moments of Triumph 2022
1232863328, // Source: Moments of Triumph 2024
1360005982, // Completed a Moment of Triumph in Destiny's second year.
1397119901, // Completed a Moment of Triumph in Destiny's first year.
1416471099, // Source: Moments of Triumph 2023
1462687159, // Reached level 5 in the Ages of Triumph record book.
1505938361, // Source: Call to Arms Event
1568732528, // Source: Guardian Games 2024
1666677522, // Source: Solstice
1677921161, // Source: Festival of the Lost 2018.
1919933822, // Source: Festival of the Lost 2020
1953779156, // Source: Events
2006303146, // Source: Guardian Games 2022
2011810450, // Source: Season 13 Guardian Games
2045032171, // Source: Arms Week Event
2050870152, // Source: Solstice
2187511136, // Source: Earned during the seasonal Revelry event.
2364515524, // Source: Dawning 2022
2473294025, // Source: Guardian Games 2023
2502262376, // Source: Earned during the seasonal Crimson Days event.
2797674516, // Source: Moments of Triumph 2021
3092212681, // Source: Dawning 2019
3095773956, // Source: Guardian Games 2025
3112857249, // Completed all 10 Moments of Triumph in Destiny's first year.
3190938946, // Source: Festival of the Lost 2019
3388021959, // Source: Guardian Games
3482766024, // Source: Festival of the Lost 2024
3693722471, // Source: Festival of the Lost 2020
3724111213, // Source: Solstice 2019
3736521079, // Reached level 1 in the Ages of Triumph record book.
3952847349, // Source: The Dawning.
4041583267, // Source: Festival of the Lost
4054646289, // Source: Earned during the seasonal Dawning event.
],
},
eververse: {
sourceHashes: [
269962496, // Source: Eververse
860688654, // Source: Eververse
2882367429, // Source: Eververse\nComplete the "Vault of Glass" raid to unlock this in Eververse.
4036739795, // Source: Bright Engrams
],
},
evidenceboard: {
sourceHashes: [
1309588429, // Source: "Chief Investigator" Triumph
2055289873, // Source: "The Evidence Board" Exotic Quest
],
aliases: ['enclave'],
},
exoticquest: {
sourceHashes: [
210885364, // Source: Flawless "Presage" Exotic Quest on Master Difficulty
281362298, // Source: Strider Exotic Quest
454251931, // Source: "What Remains" Exotic Quest
483798855, // Source: "The Final Strand" Exotic Quest
709680645, // Source: "Truly Satisfactory" Triumph
1141831282, // Source: "Of Queens and Worms" Exotic Quest
1302157812, // Source: Wild Card Exotic Quest
1388323447, // Source: Exotic Mission "The Whisper"
1476475066, // Source: "Firmware Update" Triumph
1730197643, // Source: //node.ovrd.AVALON// Exotic Quest
1823766625, // Source: "Vox Obscura" Exotic Quest
1957611613, // Source: An Exotic quest or challenge.
2055289873, // Source: "The Evidence Board" Exotic Quest
2068312112, // Source: Exotic Mission "Zero Hour"
2171520631, // Source: "Lost Lament" Exotic Quest
2296534980, // Source: Exotic Mission Encore
2745272818, // Source: "Presage" Exotic Quest
2856954949, // Source: "Let Loose Thy Talons" Exotic Quest
3237053501, // Source: Heliostat
3597879858, // Source: "Presage" Exotic Quest
],
},
fwc: {
sourceHashes: [
3569603185, // Source: Earn rank-up packages from Lakshmi-2.
],
enteredDCV: 20,
},
gambit: {
itemHashes: [
180108390, // Kit and Kaboodle
180108391, // Dance the Demons Away
1335424933, // Gambit Suede
1335424934, // Gambit Chrome
1335424935, // Gambit Leather
1661191187, // Mistrust of Gifts
2026755633, // Breakneck
2224920148, // Gambit Blackguard
2224920149, // Gambit Steel
2394866220, // Keep on Drifting
2588647363, // Live for the Hustle
3001205424, // Ecliptic Distaff
3217477988, // Gambit Duds
4060882457, // Snakeskin Wrap (Ornament)
],
sourceHashes: [
186854335, // Source: Gambit
571102497, // Source: Associated Gambit Quest
594786771, // Source: Complete this weapon's associated Gambit quest.
887452441, // Source: Gambit Salvager's Salvo Armament
1127923611, // Source: 3 Gambit Rank Resets in a Season
1162859311, // Source: Complete the "Clean Getaway" quest.
1465057711, // Source: Standard Ritual Playlist. (Vanguard Ops, Crucible, Gambit)
2170269026, // Source: Complete Gambit matches and earn rank-up packages from the Drifter.
2364933290, // Source: Gambit Seasonal Ritual Rank Reward
2601524261, // Source: Associated Gambit Quest
2843045413, // Source: Gambit
2883838366, // Source: Complete the "Breakneck" quest from the Drifter.
3299964501, // Source: Earn Ranks in Vanguard, Crucible, or Gambit Playlists
3348906688, // Source: Ranks in Vanguard Strikes, Crucible, or Gambit
3422985544, // Source: Associated Gambit Quest
3494247523, // Source: Complete the "Season 8: Keepin' On" quest.
3522070610, // Source: Gambit
3942778906, // Source: Drifter Rank Up Reputation
],
aliases: ['drifter'],
},
gambitprime: {
itemHashes: [
2868525740, // The Collector
2868525741, // The Invader
2868525742, // The Reaper
2868525743, // The Sentry
3808901541, // Viper Strike
],
sourceHashes: [
1952675042, // Source: Complete Gambit Prime matches and increase your rank.
],
enteredDCV: 20,
},
gardenofsalvation: {
itemHashes: [
4103414242, // Divinity
],
sourceHashes: [
1491707941, // Source: "Garden of Salvation" Raid
],
aliases: ['gos', 'garden'],
},
ghostsofthedeep: {
itemHashes: [
189194532, // No Survivors (Adept)
233402416, // New Pacific Epitaph (Adept)
291447487, // Cold Comfort
492673102, // New Pacific Epitaph
1050582210, // Greasy Luck (Adept)
1157220231, // No Survivors (Adept)
1685406703, // Greasy Luck
1817605554, // Cold Comfort (Adept)
2059741649, // New Pacific Epitaph
2126543269, // Cold Comfort (Adept)
2760833884, // Cold Comfort
2934305134, // Greasy Luck
3185151619, // New Pacific Epitaph (Adept)
3210739171, // Greasy Luck (Adept)
4193602194, // No Survivors
4228149269, // No Survivors
],
sourceHashes: [
3288974535, // Source: "Ghosts of the Deep" Dungeon
],
aliases: ['gotd'],
},
grasp: {
sourceHashes: [
675740011, // Source: "Grasp of Avarice" Dungeon
],
},
gunsmith: {
sourceHashes: [
1459595344, // Source: Purchase from Banshee-44 or Ada-1
1788267693, // Source: Earn rank-up packages from Banshee-44.
2986841134, // Source: Salvager's Salvo Armament Quest
3512613235, // Source: "A Sacred Fusion" Quest
],
aliases: ['banshee'],
},
harbinger: {
sourceHashes: [
2856954949, // Source: "Let Loose Thy Talons" Exotic Quest
],
},
haunted: {
itemHashes: [
1478986057, // Without Remorse
2778013407, // Firefright
],
sourceHashes: [
620369433, // Source: Season of the Haunted Triumph
976328308, // Source: The Derelict Leviathan
1283862526, // Source: Season of the Haunted Nightfall Grandmaster
2273761598, // Source: Season of the Haunted Activities
2676881949, // Source: Season of the Haunted
],
enteredDCV: 20,
},
heliostat: {
sourceHashes: [
3237053501, // Source: Heliostat
],
},
heresy: {
sourceHashes: [
21494224, // Source: Offer the correct final answer in an uncharted space.
745481267, // Source: Intrinsic Iteration Triumph
1341921330, // Source: Episode: Heresy Activities
1792957897, // Source: "Efficient Challenger" Triumph
2607970476, // Source: Sundered Doctrine
2869564842, // Source: "Vengeful Knife" Triumph
3310034131, // Source: "Crossed Blades" Triumph
3358334503, // Source: "Boon Ghost Mod Collector" Triumph
3507911332, // Source: Episode: Heresy
],
},
ikora: {
sourceHashes: [
3075817319, // Source: Earn rank-up packages from Ikora Rey.
],
},
intothelight: {
itemHashes: [
205225492, // Hung Jury SR4
211732170, // Hammerhead
243425374, // Falling Guillotine
570866107, // Succession
2228325504, // Edge Transit
2480074702, // Forbearance
2499720827, // Midnight Coup
2533990645, // Blast Furnace
3098328572, // The Recluse
3757612024, // Luna's Howl
3851176026, // Elsie's Rifle
4043921923, // The Mountaintop
],
sourceHashes: [
1388323447, // Source: Exotic Mission "The Whisper"
1902517582, // Source: Where's Archie?
2068312112, // Source: Exotic Mission "Zero Hour"
2952071500, // Source: Into the Light
],
aliases: ['itl'],
},
io: {
sourceHashes: [
315474873, // Source: Complete activities and earn rank-up packages on Io.
1067250718, // Source: Adventure "Arecibo" on Io
1832642406, // Source: World Quest "Dynasty" on Io.
2392127416, // Source: Adventure "Cliffhanger" on Io
2717017239, // Source: Complete Nightfall strike "The Pyramidion."
3427537854, // Source: Adventure "Road Rage" on Io
],
enteredDCV: 20,
},
ironbanner: {
itemHashes: [
231533811, // Iron Strength
1162929425, // The Golden Standard
1448664466, // Iron Bone
1448664467, // Iron Gold
1661191199, // Grizzled Wolf
1987234560, // Iron Ruby
2448092902, // Rusted Iron
],
sourceHashes: [
561111210, // Source: Iron Banner Salvager's Salvo Armament
1027607603, // Source: Associated Iron Banner Quest
1312894505, // Source: Iron Banner
1828622510, // Source: Chance to acquire when you win Iron Banner matches.
1926923633, // Source: Lord Saladin Rank Up Reputation
2520862847, // Source: Iron Banner Iron-Handed Diplomacy
2648408612, // Acquired by competing in the Iron Banner when the wolves were loud.
3072862693, // Source: Complete Iron Banner matches and earn rank-up packages from Lord Saladin.
],
},
kepler: {
sourceHashes: [
4284811963, // Source: Exploring Kepler
],
},
kingsfall: {
sourceHashes: [
160129377, // Source: "King's Fall" Raid
],
aliases: ['kf'],
},
lastwish: {
itemHashes: [
70083888, // Nation of Beasts
424291879, // Age-Old Bond
501329015, // Chattering Bone
1851777734, // Apex Predator
2884596447, // The Supremacy
3388655311, // Tyranny of Heaven
3591141932, // Techeun Force
3668669364, // Dreaming Spectrum
3885259140, // Transfiguration
],
sourceHashes: [
2455011338, // Source: Last Wish raid.
],
aliases: ['lw'],
},
legendaryengram: {
sourceHashes: [
3334812276, // Source: Open Legendary engrams and earn faction rank-up packages.
],
},
leviathan: {
itemHashes: [
3580904580, // Legend of Acrius
],
sourceHashes: [
2653618435, // Source: Leviathan raid.
2765304727, // Source: Leviathan raid on Prestige difficulty.
4009509410, // Source: Complete challenges in the Leviathan raid.
],
enteredDCV: 20,
},
lost: {
sourceHashes: [
164083100, // Source: Display of Supremacy, Weekly Challenge
3094114967, // Source: Season of the Lost Ritual Playlists
],
enteredDCV: 20,
},
lostsectors: {
sourceHashes: [
2203185162, // Source: Solo Expert and Master Lost Sectors
],
},
mars: {
sourceHashes: [
1036506031, // Source: Complete activities and earn rank-up packages on Mars.
1299614150, // Source: [REDACTED] on Mars.
1924238751, // Source: Complete Nightfall strike "Will of the Thousands."
2310754348, // Source: World Quest "Data Recovery" on Mars.
2926805810, // Source: Complete Nightfall strike "Strange Terrain."
4137108180, // Source: Escalation Protocol on Mars.
],
enteredDCV: 20,
},
menagerie: {
itemHashes: [
1661191194, // A Hall of Delights
1661191195, // The Imperial Menagerie
3176509806, // Árma Mákhēs
3841416152, // Golden Empire
3841416153, // Goldleaf
3841416154, // Shadow Gilt
3841416155, // Cinderchar
3875444086, // The Emperor's Chosen
],
sourceHashes: [
2511152325, // Acquired from the Menagerie aboard the Leviathan.
],
enteredDCV: 20,
},
mercury: {
sourceHashes: [
148542898, // Source: Equip the full Mercury destination set on a Warlock.
1175566043, // Source: Complete Nightfall strike "A Garden World."
1400219831, // Source: Equip the full Mercury destination set on a Hunter.
1411886787, // Source: Equip the full Mercury destination set on a Titan.
1581680964, // Source: Complete Nightfall strike "Tree of Probabilities."
1618754228, // Source: Sundial Activity on Mercury
1654120320, // Source: Complete activities and earn rank-up packages on Mercury.
2487203690, // Source: Complete Nightfall strike "Tree of Probabilities."
3079246067, // Source: Complete Osiris' Lost Prophecies for Brother Vance on Mercury.
3964663093, // Source: Rare drop from high-scoring Nightfall strikes on Mercury.
4263201695, // Source: Complete Nightfall strike "A Garden World."
],
enteredDCV: 20,
},
moon: {
sourceHashes: [
1253026984, // Source: Among the lost Ghosts of the Moon.
1999000205, // Source: Exploring the Moon
3589340943, // Source: Altars of Sorrow
],
},
neomuna: {
itemHashes: [
1123421440, // Epochal Integration
1311684613, // Dimensional Hypotrochoid
3635821806, // Phyllotactic Spiral
3920310144, // Volta Bracket
],
sourceHashes: [
281362298, // Source: Strider Exotic Quest
454251931, // Source: "What Remains" Exotic Quest
483798855, // Source: "The Final Strand" Exotic Quest
1750523507, // Source: Terminal Overload (Ahimsa Park)
2697389955, // Source: "Neomuna Sightseeing" Triumph
3041847664, // Source: Exploring Neomuna
3773376290, // Source: Terminal Overload (Zephyr Concourse)
4006434081, // Source: Terminal Overload
4110186790, // Source: Terminal Overload (Límíng Harbor)
],
},
nessus: {
sourceHashes: [
164571094, // Source: World Quest "Exodus Black" on Nessus.
817015032, // Source: Complete Nightfall strike "The Inverted Spire."
1186140085, // Source: Adventure "Unbreakable" on Nessus
1289998337, // Source: Adventure "Hack the Planet" on Nessus
1906492169, // Source: Complete activities and earn rank-up packages on Nessus.
2040548068, // Source: Adventure "Release" on Nessus
2345202459, // Source: Adventure "Invitation from the Emperor" on Nessus
2553369674, // Source: Adventure "Exodus Siege" on Nessus
3022766747, // Source: Complete Nightfall strike "The Insight Terminus."
3067146211, // Source: Complete Nightfall strike "Exodus Crash."
],
},
nightfall: {
itemHashes: [
42874240, // Uzume RR4
192784503, // Pre Astyanax IV
213264394, // Buzzard
233635202, // Cruel Mercy
267089201, // Warden's Law (Adept)
496556698, // Pre Astyanax IV (Adept)
555148853, // Wendigo GL3 (Adept)
566740455, // THE SWARM (Adept)
672957262, // Undercurrent (Adept)
772231794, // Hung Jury SR4
817909300, // Undercurrent (Adept)
912222548, // Soldier On
927835311, // Buzzard (Adept)
959037361, // Wild Style (Adept)
1056103557, // Shadow Price (Adept)
1064132738, // BrayTech Osprey (Adept)
1151688091, // Undercurrent
1332123064, // Wild Style
1354727549, // The Slammer (Adept)
1492522228, // Scintillation (Adept)
1586231351, // Mindbender's Ambition
1821529912, // Warden's Law
1854753404, // Wendigo GL3
1854753405, // The Militia's Birthright
1891996599, // Uzume RR4 (Adept)
1987790789, // After the Nightfall
2063217087, // Pre Astyanax IV (Adept)
2074041946, // Mindbender's Ambition (Adept)
2152484073, // Warden's Law
2298039571, // Rake Angle
2322926844, // Shadow Price
2347178967, // Cruel Mercy (Adept)
2450917538, // Uzume RR4
2591257541, // Scintillation
2697143634, // Lotus-Eater (Adept)
2759590322, // THE SWARM
2876244791, // The Palindrome
2883684343, // Hung Jury SR4 (Adept)
2889501828, // The Slammer
2914913838, // Loaded Question (Adept)
2932922810, // Pre Astyanax IV
3106557243, // PLUG ONE.1 (Adept)
3125454907, // Loaded Question
3183283212, // Wendigo GL3
3250744600, // Warden's Law (Adept)
3293524502, // PLUG ONE.1
3610521673, // Uzume RR4 (Adept)
3667553455, // BrayTech Osprey
3686538757, // Undercurrent
3832743906, // Hung Jury SR4
3915197957, // Wendigo GL3 (Adept)
3922217119, // Lotus-Eater
3997086838, // Rake Angle (Adept)
4074251943, // Hung Jury SR4 (Adept)
4077588826, // The Palindrome (Adept)
4162642204, // The Militia's Birthright (Adept)
],
sourceHashes: [
110159004, // Source: Complete Nightfall strike "Warden of Nothing."
277706045, // Source: Season of the Splicer Nightfall Grandmaster
354493557, // Source: Complete Nightfall strike "Savathûn's Song."
817015032, // Source: Complete Nightfall strike "The Inverted Spire."
827839814, // Source: Flawless Chest in Trials of Osiris or Grandmaster Nightfalls
860666126, // Source: Nightfall
1175566043, // Source: Complete Nightfall strike "A Garden World."