deepsight.gg 1.0.355 → 1.0.358
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DeepsightDropTableDefinition.json +52 -0
- package/DeepsightPlugCategorisation.d.ts +14 -0
- package/DeepsightPlugCategorisation.json +35 -23
- package/DeepsightPlugCategorisation.ts +14 -0
- package/DeepsightSocketCategorisation.json +629266 -0
- package/DeepsightVendorDefinition.json +1211 -1073
- package/Enums.d.ts +199 -0
- package/package.json +1 -1
- package/versions.json +11 -10
|
@@ -2380,6 +2380,58 @@
|
|
|
2380
2380
|
"icon": "/common/destiny2_content/icons/DestinyMilestoneDefinition_fbba06b79fd1752af47e133cce7a3f45.png"
|
|
2381
2381
|
}
|
|
2382
2382
|
},
|
|
2383
|
+
"lostSector": {
|
|
2384
|
+
"hash": 628527324,
|
|
2385
|
+
"displayProperties": {
|
|
2386
|
+
"name": "Bay of Drowned Wishes",
|
|
2387
|
+
"description": "Legend Difficulty: Locked Equipment, Extra Shields\n\nChampions: [Disruption] Overload, [Stagger] Unstoppable\n\nThreat: [Arc] Arc\n\nShields: [Void] Void\n\nModifiers: Stalker Shield",
|
|
2388
|
+
"icon": "/common/destiny2_content/icons/DestinyActivityModeDefinition_7d11acd7d5a3daebc0a0c906452932d6.png"
|
|
2389
|
+
},
|
|
2390
|
+
"rotations": {
|
|
2391
|
+
"anchor": "2023-11-28T17:00:00Z",
|
|
2392
|
+
"interval": "daily",
|
|
2393
|
+
"drops": [
|
|
2394
|
+
{
|
|
2395
|
+
"5159537": {},
|
|
2396
|
+
"176055472": {},
|
|
2397
|
+
"867154247": {},
|
|
2398
|
+
"2767393525": {},
|
|
2399
|
+
"3678653083": {}
|
|
2400
|
+
},
|
|
2401
|
+
{
|
|
2402
|
+
"222606050": {},
|
|
2403
|
+
"358788212": {},
|
|
2404
|
+
"1387420892": {},
|
|
2405
|
+
"1456017061": {},
|
|
2406
|
+
"2673925403": {}
|
|
2407
|
+
},
|
|
2408
|
+
{
|
|
2409
|
+
"664109750": {},
|
|
2410
|
+
"1106635211": {},
|
|
2411
|
+
"2099894368": {},
|
|
2412
|
+
"2850782006": {},
|
|
2413
|
+
"3998080529": {}
|
|
2414
|
+
},
|
|
2415
|
+
{
|
|
2416
|
+
"355382946": {},
|
|
2417
|
+
"1331824604": {},
|
|
2418
|
+
"1572351682": {},
|
|
2419
|
+
"1606497639": {},
|
|
2420
|
+
"3637669759": {}
|
|
2421
|
+
}
|
|
2422
|
+
],
|
|
2423
|
+
"current": 166,
|
|
2424
|
+
"next": "2024-05-13T17:00:00Z"
|
|
2425
|
+
},
|
|
2426
|
+
"availability": "rotator",
|
|
2427
|
+
"endTime": "2024-05-13T17:00:00Z",
|
|
2428
|
+
"type": "lost-sector",
|
|
2429
|
+
"typeDisplayProperties": {
|
|
2430
|
+
"name": "Lost Sector",
|
|
2431
|
+
"description": "The Darkness grows stronger. Form a fireteam of three and face our enemies with new challenges.",
|
|
2432
|
+
"icon": "/common/destiny2_content/icons/DestinyActivityModeDefinition_7d11acd7d5a3daebc0a0c906452932d6.png"
|
|
2433
|
+
}
|
|
2434
|
+
},
|
|
2383
2435
|
"nightfall": {
|
|
2384
2436
|
"hash": 1278918650,
|
|
2385
2437
|
"displayProperties": {
|
|
@@ -28,6 +28,7 @@ export declare const enum DeepsightPlugTypeIntrinsic {
|
|
|
28
28
|
Armor,
|
|
29
29
|
ArmorArtifice,
|
|
30
30
|
ArmorLegacy,
|
|
31
|
+
Shaped,
|
|
31
32
|
}
|
|
32
33
|
|
|
33
34
|
export declare const enum DeepsightPlugTypePerk {
|
|
@@ -241,3 +242,16 @@ export declare type DeepsightPlugFullName<CATEGORY extends DeepsightPlugCategory
|
|
|
241
242
|
DeepsightPlugCategory extends CATEGORY ? ({ [CATEGORY in DeepsightPlugCategory]: DeepsightPlugFullName<CATEGORY> } extends infer ALL_CATEGORIES ? ALL_CATEGORIES[keyof ALL_CATEGORIES] : never)
|
|
242
243
|
: (DeepsightPlugTypeMap)[CATEGORY] extends infer TYPE_ENUM ? TYPE_ENUM extends null ? `${ReverseCategoryMap[CATEGORY]}`
|
|
243
244
|
: `${ReverseCategoryMap[CATEGORY]}/${Extract<keyof TYPE_ENUM, string>}` : never;
|
|
245
|
+
|
|
246
|
+
export declare declare interface DeepsightSocketCategorisationDefinition {
|
|
247
|
+
hash: number;
|
|
248
|
+
categorisation: DeepsightSocketCategorisation[];
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
export declare declare interface DeepsightSocketCategorisation<CATEGORY extends DeepsightPlugCategory = DeepsightPlugCategory> {
|
|
252
|
+
category: CATEGORY;
|
|
253
|
+
categoryName: string;
|
|
254
|
+
type?: DeepsightPlugType<CATEGORY>;
|
|
255
|
+
typeName?: string;
|
|
256
|
+
fullName: DeepsightPlugFullName<CATEGORY>;
|
|
257
|
+
}
|
|
@@ -921,9 +921,11 @@
|
|
|
921
921
|
},
|
|
922
922
|
"41589556": {
|
|
923
923
|
"hash": 41589556,
|
|
924
|
-
"category":
|
|
925
|
-
"
|
|
926
|
-
"
|
|
924
|
+
"category": 1,
|
|
925
|
+
"type": 10,
|
|
926
|
+
"categoryName": "Intrinsic",
|
|
927
|
+
"typeName": "Shaped",
|
|
928
|
+
"fullName": "Intrinsic/Shaped"
|
|
927
929
|
},
|
|
928
930
|
"41792165": {
|
|
929
931
|
"hash": 41792165,
|
|
@@ -13402,9 +13404,11 @@
|
|
|
13402
13404
|
},
|
|
13403
13405
|
"659359923": {
|
|
13404
13406
|
"hash": 659359923,
|
|
13405
|
-
"category":
|
|
13406
|
-
"
|
|
13407
|
-
"
|
|
13407
|
+
"category": 1,
|
|
13408
|
+
"type": 10,
|
|
13409
|
+
"categoryName": "Intrinsic",
|
|
13410
|
+
"typeName": "Shaped",
|
|
13411
|
+
"fullName": "Intrinsic/Shaped"
|
|
13408
13412
|
},
|
|
13409
13413
|
"659497546": {
|
|
13410
13414
|
"hash": 659497546,
|
|
@@ -25074,11 +25078,11 @@
|
|
|
25074
25078
|
},
|
|
25075
25079
|
"1219897208": {
|
|
25076
25080
|
"hash": 1219897208,
|
|
25077
|
-
"category":
|
|
25078
|
-
"type":
|
|
25079
|
-
"categoryName": "
|
|
25080
|
-
"typeName": "
|
|
25081
|
-
"fullName": "
|
|
25081
|
+
"category": 1,
|
|
25082
|
+
"type": 1,
|
|
25083
|
+
"categoryName": "Intrinsic",
|
|
25084
|
+
"typeName": "Frame",
|
|
25085
|
+
"fullName": "Intrinsic/Frame"
|
|
25082
25086
|
},
|
|
25083
25087
|
"1220310607": {
|
|
25084
25088
|
"hash": 1220310607,
|
|
@@ -39746,9 +39750,11 @@
|
|
|
39746
39750
|
},
|
|
39747
39751
|
"1922808508": {
|
|
39748
39752
|
"hash": 1922808508,
|
|
39749
|
-
"category":
|
|
39750
|
-
"
|
|
39751
|
-
"
|
|
39753
|
+
"category": 1,
|
|
39754
|
+
"type": 10,
|
|
39755
|
+
"categoryName": "Intrinsic",
|
|
39756
|
+
"typeName": "Shaped",
|
|
39757
|
+
"fullName": "Intrinsic/Shaped"
|
|
39752
39758
|
},
|
|
39753
39759
|
"1923654025": {
|
|
39754
39760
|
"hash": 1923654025,
|
|
@@ -45893,9 +45899,11 @@
|
|
|
45893
45899
|
},
|
|
45894
45900
|
"2215619028": {
|
|
45895
45901
|
"hash": 2215619028,
|
|
45896
|
-
"category":
|
|
45897
|
-
"
|
|
45898
|
-
"
|
|
45902
|
+
"category": 1,
|
|
45903
|
+
"type": 10,
|
|
45904
|
+
"categoryName": "Intrinsic",
|
|
45905
|
+
"typeName": "Shaped",
|
|
45906
|
+
"fullName": "Intrinsic/Shaped"
|
|
45899
45907
|
},
|
|
45900
45908
|
"2216321519": {
|
|
45901
45909
|
"hash": 2216321519,
|
|
@@ -83176,9 +83184,11 @@
|
|
|
83176
83184
|
},
|
|
83177
83185
|
"4025934129": {
|
|
83178
83186
|
"hash": 4025934129,
|
|
83179
|
-
"category":
|
|
83180
|
-
"
|
|
83181
|
-
"
|
|
83187
|
+
"category": 1,
|
|
83188
|
+
"type": 10,
|
|
83189
|
+
"categoryName": "Intrinsic",
|
|
83190
|
+
"typeName": "Shaped",
|
|
83191
|
+
"fullName": "Intrinsic/Shaped"
|
|
83182
83192
|
},
|
|
83183
83193
|
"4026120125": {
|
|
83184
83194
|
"hash": 4026120125,
|
|
@@ -83254,9 +83264,11 @@
|
|
|
83254
83264
|
},
|
|
83255
83265
|
"4029346515": {
|
|
83256
83266
|
"hash": 4029346515,
|
|
83257
|
-
"category":
|
|
83258
|
-
"
|
|
83259
|
-
"
|
|
83267
|
+
"category": 1,
|
|
83268
|
+
"type": 10,
|
|
83269
|
+
"categoryName": "Intrinsic",
|
|
83270
|
+
"typeName": "Shaped",
|
|
83271
|
+
"fullName": "Intrinsic/Shaped"
|
|
83260
83272
|
},
|
|
83261
83273
|
"4029360764": {
|
|
83262
83274
|
"hash": 4029360764,
|
|
@@ -28,6 +28,7 @@ export enum DeepsightPlugTypeIntrinsic {
|
|
|
28
28
|
Armor,
|
|
29
29
|
ArmorArtifice,
|
|
30
30
|
ArmorLegacy,
|
|
31
|
+
Shaped,
|
|
31
32
|
}
|
|
32
33
|
|
|
33
34
|
export enum DeepsightPlugTypePerk {
|
|
@@ -241,3 +242,16 @@ export type DeepsightPlugFullName<CATEGORY extends DeepsightPlugCategory = Deeps
|
|
|
241
242
|
DeepsightPlugCategory extends CATEGORY ? ({ [CATEGORY in DeepsightPlugCategory]: DeepsightPlugFullName<CATEGORY> } extends infer ALL_CATEGORIES ? ALL_CATEGORIES[keyof ALL_CATEGORIES] : never)
|
|
242
243
|
: (/*<*/typeof /*>*/DeepsightPlugTypeMap)[CATEGORY] extends infer TYPE_ENUM ? TYPE_ENUM extends null ? `${ReverseCategoryMap[CATEGORY]}`
|
|
243
244
|
: `${ReverseCategoryMap[CATEGORY]}/${Extract<keyof TYPE_ENUM, string>}` : never;
|
|
245
|
+
|
|
246
|
+
export declare interface DeepsightSocketCategorisationDefinition {
|
|
247
|
+
hash: number;
|
|
248
|
+
categorisation: DeepsightSocketCategorisation[];
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
export declare interface DeepsightSocketCategorisation<CATEGORY extends DeepsightPlugCategory = DeepsightPlugCategory> {
|
|
252
|
+
category: CATEGORY;
|
|
253
|
+
categoryName: string;
|
|
254
|
+
type?: DeepsightPlugType<CATEGORY>;
|
|
255
|
+
typeName?: string;
|
|
256
|
+
fullName: DeepsightPlugFullName<CATEGORY>;
|
|
257
|
+
}
|