-
Notifications
You must be signed in to change notification settings - Fork 1
/
source-info.ts
2292 lines (2291 loc) · 86.7 KB
/
source-info.ts
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[]; searchString: string[] };
} = {
'30th': {
itemHashes: [],
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
],
searchString: [],
},
ada: {
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.
],
searchString: [],
},
adventure: {
itemHashes: [],
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
],
searchString: [],
},
avalon: {
itemHashes: [],
sourceHashes: [
709680645, // Source: "Truly Satisfactory" Triumph
1476475066, // Source: "Firmware Update" Triumph
1730197643, // Source: //node.ovrd.AVALON// Exotic Quest
],
searchString: [],
},
banshee: {
itemHashes: [],
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
],
searchString: [],
},
battlegrounds: {
itemHashes: [
2121785039, // Brass Attacks
3075224551, // Threaded Needle
],
sourceHashes: [
3391325445, // Source: Battlegrounds
],
searchString: [],
},
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.
],
searchString: [],
},
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
],
searchString: [],
},
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
],
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.
],
searchString: [],
},
campaign: {
itemHashes: [],
sourceHashes: [
13912404, // Source: Unlock Your Arc Subclass
100617404, // Requires Titan Class
286427063, // Source: Fallen Empire Campaign
409652252, // Source: The Witch Queen Campaign
460742691, // Requires Guardian Rank 6: Masterwork Weapons
569214265, // Source: Red War Campaign
677167936, // Source: Complete the campaign as a Warlock.
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 5
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
4288102251, // Requires 1,000 Titan Kills
4290499613, // Source: Complete the campaign as a Hunter.
],
searchString: [],
},
cayde6: {
itemHashes: [],
sourceHashes: [
2206233229, // Source: Follow treasure maps.
],
searchString: [],
},
coil: {
itemHashes: [
2563668388, // Scalar Potential
4153087276, // Appetence
],
sourceHashes: [
561126969, // Source: "Starcrossed" Mission
1664308183, // Source: Season of the Wish Activities
4278841194, // Source: Season of the Wish Triumphs
],
searchString: [],
},
compass: {
itemHashes: [],
sourceHashes: [
164083100, // Source: Display of Supremacy, Weekly Challenge
3100439379, // Source: Mission "Exorcism"
],
searchString: [],
},
contact: {
itemHashes: [],
sourceHashes: [
2039343154, // Source: Contact Public Event
],
searchString: [],
},
cos: {
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."
],
searchString: [],
},
crota: {
itemHashes: [],
sourceHashes: [
1897187034, // Source: "Crota's End" Raid
],
searchString: [],
},
crotasend: {
itemHashes: [],
sourceHashes: [
1897187034, // Source: "Crota's End" Raid
],
searchString: [],
},
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."
],
searchString: [],
},
crucible: {
itemHashes: [
2307365, // The Inquisitor (Adept)
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)
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
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)
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)
3444632029, // Unwavering Duty (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: [
454115234, // Source: Associated Crucible Quest
598662729, // Source: Reach Glory Rank "Legend" in the Crucible.
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
],
searchString: [],
},
dcv: {
itemHashes: [
197764097, // Wild Hunt Boots
238284968, // Wild Hunt Strides
251310542, // Wild Hunt Hood
317220729, // Wild Hunt Vestment
351285766, // Substitutional Alloy Greaves
377757362, // Substitutional Alloy Hood
417164956, // Jötunn
509561140, // Substitutional Alloy Gloves
509561142, // Substitutional Alloy Gloves
509561143, // Substitutional Alloy Gloves
695795213, // Substitutional Alloy Helm
820890091, // Planck's Stride
844110491, // Substitutional Alloy Gloves
947448544, // Shadow of Earth Shell
1137424312, // Substitutional Alloy Cloak
1137424314, // Substitutional Alloy Cloak
1137424315, // Substitutional Alloy Cloak
1148770067, // Wild Hunt Cloak
1226584228, // Tangled Rust
1226584229, // Tangled Bronze
1276513983, // Wild Hunt Gloves
1298815317, // Brigand's Law
1348357884, // Substitutional Alloy Gauntlets
1458739906, // Wild Hunt Vest
1478986057, // Without Remorse
1584183805, // Substitutional Alloy Cloak
1661191192, // The Tribute Hall
1661191193, // Crown of Sorrow
1661191194, // A Hall of Delights
1661191195, // The Imperial Menagerie
1721943440, // Substitutional Alloy Boots
1721943441, // Substitutional Alloy Boots
1721943442, // Substitutional Alloy Boots
1855720513, // Substitutional Alloy Vest
1855720514, // Substitutional Alloy Vest
1855720515, // Substitutional Alloy Vest
2025716654, // Wild Hunt Grasps
2027598066, // Imperial Opulence
2027598067, // Imperial Dress
2055947316, // Wild Hunt Bond
2096778461, // Substitutional Alloy Strides
2096778462, // Substitutional Alloy Strides
2096778463, // Substitutional Alloy Strides
2279193565, // Wild Hunt Mark
2453357042, // Blast Battue
2468603405, // Substitutional Alloy Plate
2468603406, // Substitutional Alloy Plate
2468603407, // Substitutional Alloy Plate
2545401128, // Wild Hunt Gauntlets
2557722678, // Midnight Smith
2657028416, // Substitutional Alloy Vest
2687273800, // Substitutional Alloy Grips
2690973101, // Substitutional Alloy Hood
2690973102, // Substitutional Alloy Hood
2690973103, // Substitutional Alloy Hood
2742760292, // Substitutional Alloy Plate
2761292744, // Substitutional Alloy Bond
2776503072, // Royal Chase
2778013407, // Firefright
2815379657, // Substitutional Alloy Bond
2815379658, // Substitutional Alloy Bond
2815379659, // Substitutional Alloy Bond
2816212794, // Bad Juju
2868525740, // The Collector
2868525741, // The Invader
2868525742, // The Reaper
2868525743, // The Sentry
2903026872, // Substitutional Alloy Helm
2903026873, // Substitutional Alloy Helm
2903026874, // Substitutional Alloy Helm
2942269704, // Substitutional Alloy Gauntlets
2942269705, // Substitutional Alloy Gauntlets
2942269707, // Substitutional Alloy Gauntlets
3166926328, // Substitutional Alloy Robes
3166926330, // Substitutional Alloy Robes
3166926331, // Substitutional Alloy Robes
3176509806, // Árma Mákhēs
3180809346, // Wild Hunt Greaves
3192738009, // Substitutional Alloy Greaves
3192738010, // Substitutional Alloy Greaves
3192738011, // Substitutional Alloy Greaves
3211806999, // Izanagi's Burden
3351935136, // Wild Hunt Plate
3364258850, // Substitutional Alloy Strides
3580904580, // Legend of Acrius
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
3680920565, // Substitutional Alloy Robes
3757338780, // Substitutional Alloy Mark
3757338782, // Substitutional Alloy Mark
3757338783, // Substitutional Alloy Mark
3808901541, // Viper Strike
3841416152, // Golden Empire
3841416153, // Goldleaf
3841416154, // Shadow Gilt
3841416155, // Cinderchar
3875444086, // The Emperor's Chosen
3887272785, // Wild Hunt Helm
3911047865, // Substitutional Alloy Mark
4013678605, // Substitutional Alloy Boots
4026120124, // Substitutional Alloy Grips
4026120125, // Substitutional Alloy Grips
4026120127, // Substitutional Alloy Grips
4070722289, // Substitutional Alloy Mask
4078925540, // Substitutional Alloy Mask
4078925541, // Substitutional Alloy Mask
4078925542, // Substitutional Alloy Mask
4079117607, // Wild Hunt Mask
4085986809, // Secret Treasure
],
sourceHashes: [
96303009, // Source: Purchased from Amanda Holliday.
110159004, // Source: Complete Nightfall strike "Warden of Nothing."
146504277, // Source: Earn rank-up packages from Arach Jalaal.
148542898, // Source: Equip the full Mercury destination set on a Warlock.
164083100, // Source: Display of Supremacy, Weekly Challenge
194661944, // Source: Adventure "Siren Song" on Saturn's Moon, Titan
266896577, // Source: Solve the Norse glyph puzzle.
315474873, // Source: Complete activities and earn rank-up packages on Io.
354493557, // Source: Complete Nightfall strike "Savathûn's Song."
439994003, // Source: Complete the "Master Smith" Triumph.
482012099, // Source: Adventure "Thief of Thieves" on Saturn's Moon, Titan
620369433, // Source: Season of the Haunted Triumph
636474187, // Source: Adventure "Deathless" on Saturn's Moon, Titan
783399508, // Source: Adventure "Supply and Demand" in the European Dead Zone
790152021, // Source: Season of Plunder Triumph
790433146, // Source: Adventure "Dark Alliance" in the European Dead Zone
798957490, // Source: Complete wanted escapee bounties for the Spider.
841568343, // Source: "Hunt for the Wrathborn" Quest
925197669, // Source: Complete a Bergusia Forge ignition.
948753311, // Source: Found by completing Volundr Forge ignitions.
976328308, // Source: The Derelict Leviathan
1036506031, // Source: Complete activities and earn rank-up packages on Mars.
1067250718, // Source: Adventure "Arecibo" on Io
1175566043, // Source: Complete Nightfall strike "A Garden World."
1186140085, // Source: Adventure "Unbreakable" on Nessus
1283862526, // Source: Season of the Haunted Nightfall Grandmaster
1286332045, // Source: Found by completing Izanami Forge ignitions.
1289998337, // Source: Adventure "Hack the Planet" on Nessus
1299614150, // Source: [REDACTED] on Mars.
1400219831, // Source: Equip the full Mercury destination set on a Hunter.
1411886787, // Source: Equip the full Mercury destination set on a Titan.
1457456824, // Source: Complete the "Reunited Siblings" Triumph.
1464399708, // Source: Earn rank-up packages from Executor Hideo.
1465990789, // Source: Solve the Japanese glyph puzzle.
1483048674, // Source: Complete the "Scourge of the Past" raid.
1527887247, // Source: Adventure "Red Legion, Black Oil" in the European Dead Zone
1581680964, // Source: Complete Nightfall strike "Tree of Probabilities."
1596507419, // Source: Complete a Gofannon Forge ignition.
1618754228, // Source: Sundial Activity on Mercury
1654120320, // Source: Complete activities and earn rank-up packages on Mercury.
1675483099, // Source: Leviathan, Spire of Stars raid lair.
1736997121, // Source: Adventure "Stop and Go" in the European Dead Zone
1771326504, // Source: Complete activities and earn rank-up packages on the Tangled Shore.
1832642406, // Source: World Quest "Dynasty" on Io.
1861838843, // Source: Adventure "A Frame Job" in the European Dead Zone
1924238751, // Source: Complete Nightfall strike "Will of the Thousands."
1952675042, // Source: Complete Gambit Prime matches and increase your rank.
2039343154, // Source: Contact Public Event
2040548068, // Source: Adventure "Release" on Nessus
2062058385, // Source: Crafted in a Black Armory forge.
2085016678, // Source: Complete the "Scourge of the Past" raid within the first 24 hours after its launch.
2096915131, // Source: Adventure "Poor Reception" in the European Dead Zone
2206233229, // Source: Follow treasure maps.
2273761598, // Source: Season of the Haunted Activities
2310754348, // Source: World Quest "Data Recovery" on Mars.
2345202459, // Source: Adventure "Invitation from the Emperor" on Nessus
2384327872, // Source: Solve the French glyph puzzle.
2392127416, // Source: Adventure "Cliffhanger" on Io
2399751101, // Acquired from the raid "Crown of Sorrow."
2487203690, // Source: Complete Nightfall strike "Tree of Probabilities."
2511152325, // Acquired from the Menagerie aboard the Leviathan.
2541753910, // Source: Complete the "Master Blaster" Triumph.
2553369674, // Source: Adventure "Exodus Siege" on Nessus
2627087475, // Source: Obelisk Bounties and Resonance Rank Increases Across the System
2653618435, // Source: Leviathan raid.
2676881949, // Source: Season of the Haunted
2717017239, // Source: Complete Nightfall strike "The Pyramidion."
2765304727, // Source: Leviathan raid on Prestige difficulty.
2805208672, // Source: Complete Nightfall strike "The Hollowed Lair."
2812190367, // Source: Leviathan, Spire of Stars raid lair on Prestige difficulty.
2926805810, // Source: Complete Nightfall strike "Strange Terrain."
2937902448, // Source: Leviathan, Eater of Worlds raid lair.
2966694626, // Source: Found by solving the mysteries behind the Black Armory's founding families.
2982642634, // Source: Season of Plunder Grandmaster Nightfall
3047033583, // Source: Returned the Obsidian Accelerator.
3079246067, // Source: Complete Osiris' Lost Prophecies for Brother Vance on Mercury.
3094114967, // Source: Season of the Lost Ritual Playlists
3107094548, // Source: "Coup de Grâce" Mission
3147603678, // Acquired from the raid "Crown of Sorrow."
3257722699, // Source: Complete the "Clean Up on Aisle Five" Triumph.
3265560237, // Source: Cryptic Quatrains III
3308438907, // Source: Season of Plunder
3390164851, // Source: Found by turning in Black Armory bounties.
3427537854, // Source: Adventure "Road Rage" on Io
3534706087, // Source: Complete activities and earn rank-up packages on Saturn's Moon, Titan.
3569603185, // Source: Earn rank-up packages from Lakshmi-2.
3740731576, // Source: "A Rising Tide" Mission
3754173885, // Source: Adventure "Getting Your Hands Dirty" in the European Dead Zone
3764925750, // Source: Complete an Izanami Forge ignition.
3964663093, // Source: Rare drop from high-scoring Nightfall strikes on Mercury.
4009509410, // Source: Complete challenges in the Leviathan raid.
4066007318, // Source: Leviathan, Eater of Worlds raid lair on Prestige difficulty.
4101102010, // Source: Found by completing Bergusia Forge ignitions.
4122810030, // Source: Complete seasonal activities during Season of the Undying.
4137108180, // Source: Escalation Protocol on Mars.
4140654910, // Source: Eliminate all Barons on the Tangled Shore.
4199401779, // Source: Season of Plunder Activities
4214471686, // Source: Adventure "Unsafe at Any Speed" in the European Dead Zone
4246883461, // Source: Found in the "Scourge of the Past" raid.
4247521481, // Source: Complete the "Beautiful but Deadly" Triumph.
4263201695, // Source: Complete Nightfall strike "A Garden World."
4290227252, // Source: Complete a Volundr Forge ignition.
],
searchString: [
'mercury',
'mars',
'titan',
'io',
'leviathan',
'ep',
'blackarmory',
'menagerie',
'eow',
'sos',
'scourge',
'crownofsorrow',
],
},
deepstonecrypt: {
itemHashes: [],
sourceHashes: [
866530798, // Source: "Not a Scratch" Triumph
1405897559, // Source: "Deep Stone Crypt" Raid
1692165595, // Source: "Rock Bottom" Triumph
],
searchString: [],
},
deluxe: {
itemHashes: [],
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.
],
searchString: [],
},
do: {
itemHashes: [],
sourceHashes: [
146504277, // Source: Earn rank-up packages from Arach Jalaal.
],
searchString: [],
},
dreaming: {
itemHashes: [
185321779, // Ennead
3352019292, // Secret Victories
],
sourceHashes: [
2559145507, // Source: Complete activities in the Dreaming City.
3874934421, // Source: Complete Nightfall strike "The Corrupted."
],
searchString: [],
},
drifter: {
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
],
searchString: [],
},
dsc: {
itemHashes: [],
sourceHashes: [
866530798, // Source: "Not a Scratch" Triumph
1405897559, // Source: "Deep Stone Crypt" Raid
1692165595, // Source: "Rock Bottom" Triumph
],
searchString: [],
},
duality: {
itemHashes: [],
sourceHashes: [
1282207663, // Source: Dungeon "Duality"
],
searchString: [],
},
dungeon: {
itemHashes: [
185321778, // The Eternal Return
814876684, // Wish-Ender
2844014413, // Pallas Galliot
],
sourceHashes: [
506073192, // Source: "Prophecy" Dungeon
613435025, // Source: "Warlord's Ruin" Dungeon
675740011, // Source: "Grasp of Avarice" Dungeon
1282207663, // Source: Dungeon "Duality"
1597738585, // Source: "Spire of the Watcher" Dungeon
1745960977, // Source: "Pit of Heresy" Dungeon
3288974535, // Source: "Ghosts of the Deep" Dungeon
],
searchString: [],
},
echoes: {
itemHashes: [],
sourceHashes: [
536806855, // Source: Episode: Echoes
2306801178, // Source: Episode: Echoes Activities
2514060836, // Source: Episode: Echoes Enigma Protocol Activity
2631398023, // Source: Radiolite Bay Deposits
],
searchString: [],
},
edz: {
itemHashes: [],
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.
],
searchString: [],
},
enclave: {
itemHashes: [],
sourceHashes: [
1309588429, // Source: "Chief Investigator" Triumph
2055289873, // Source: "The Evidence Board" Exotic Quest
],
searchString: [],
},
eow: {
itemHashes: [],
sourceHashes: [
2937902448, // Source: Leviathan, Eater of Worlds raid lair.
4066007318, // Source: Leviathan, Eater of Worlds raid lair on Prestige difficulty.
],
searchString: [],
},
ep: {
itemHashes: [],
sourceHashes: [
4137108180, // Source: Escalation Protocol on Mars.
],
searchString: [],
},
europa: {
itemHashes: [],
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
],
searchString: [],
},
events: {
itemHashes: [
425681240, // Acosmic
495940989, // Avalanche
601948197, // Zephyr
689294985, // Jurassic Green
1123433952, // Stay Frosty
1183116657, // Glacioclasm
1280894514, // Mechabre
1845372864, // Albedo Wing
1845978721, // Avalanche
2477980485, // Mechabre
2603335652, // Jurassic Green
2812100428, // Stay Frosty
2814093983, // Cold Front
2869466318, // BrayTech Werewolf
3240434620, // Something New
3400256755, // Zephyr
3558681245, // BrayTech Werewolf
3559361670, // The Title
3573686365, // Glacioclasm
],
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.
923678151, // Source: Upgraded Event Card Reward
1054169368, // Source: Festival of the Lost 2021
1225476079, // Source: Moments of Triumph 2022
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.
1568732528, // Source: Guardian Games 2024
1666677522, // Source: Solstice
1677921161, // Source: Festival of the Lost 2018.
1919933822, // Source: Festival of the Lost 2020
2006303146, // Source: Guardian Games 2022
2011810450, // Source: Season 13 Guardian Games
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
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.
],
searchString: ['dawning', 'crimsondays', 'solstice', 'fotl', 'revelry', 'games'],
},
eververse: {
itemHashes: [],
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
],
searchString: [],
},
evidenceboard: {
itemHashes: [],
sourceHashes: [
1309588429, // Source: "Chief Investigator" Triumph
2055289873, // Source: "The Evidence Board" Exotic Quest
],
searchString: [],
},
exoticquest: {
itemHashes: [],
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
3597879858, // Source: "Presage" Exotic Quest
],
searchString: [],
},
fwc: {
itemHashes: [],
sourceHashes: [
3569603185, // Source: Earn rank-up packages from Lakshmi-2.
],
searchString: [],
},
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
],
searchString: [],
},
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.
],
searchString: [],
},
garden: {
itemHashes: [
4103414242, // Divinity
],
sourceHashes: [
1491707941, // Source: "Garden of Salvation" Raid
],
searchString: [],
},
gardenofsalvation: {
itemHashes: [
4103414242, // Divinity
],
sourceHashes: [
1491707941, // Source: "Garden of Salvation" Raid
],
searchString: [],
},
ghostsofthedeep: {
itemHashes: [],
sourceHashes: [
3288974535, // Source: "Ghosts of the Deep" Dungeon
],
searchString: [],
},