deepsight.gg 1.0.1321 → 1.0.1322
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/DeepsightAdeptDefinition.json +60 -0
- package/DeepsightBreakerSourceDefinition.json +5 -16
- package/DeepsightBreakerTypeDefinition.d.ts +0 -1
- package/DeepsightBreakerTypeDefinition.json +159 -19
- package/DeepsightBreakerTypeDefinition.ts +0 -1
- package/DeepsightCatalystDefinition.json +24 -0
- package/DeepsightCollectionsDefinition.json +503 -307
- package/DeepsightDropTableDefinition.json +216 -344
- package/DeepsightEmblemDefinition.json +523 -145
- package/DeepsightMomentDefinition.json +115 -68
- package/DeepsightPlugCategorisation.d.ts +7 -1
- package/DeepsightPlugCategorisation.json +8158 -3455
- package/DeepsightPlugCategorisation.ts +7 -1
- package/DeepsightSocketCategorisation.json +74886 -22047
- package/DeepsightStats.json +1 -1
- package/DeepsightWallpaperDefinition.json +15 -0
- package/Enums.d.ts +7530 -5657
- package/package.json +1 -1
- package/versions.json +16 -16
|
@@ -33,6 +33,8 @@ export enum DeepsightPlugTypeIntrinsic {
|
|
|
33
33
|
ArmorLegacy,
|
|
34
34
|
Shaped,
|
|
35
35
|
EmptyCraftingSocket,
|
|
36
|
+
ArmorStat,
|
|
37
|
+
ArmorArchetype,
|
|
36
38
|
}
|
|
37
39
|
|
|
38
40
|
export enum DeepsightPlugTypePerk {
|
|
@@ -63,6 +65,8 @@ export enum DeepsightPlugTypePerk {
|
|
|
63
65
|
EmptyCraftingSocket,
|
|
64
66
|
EmblemAura,
|
|
65
67
|
Random,
|
|
68
|
+
Rail,
|
|
69
|
+
Bolt,
|
|
66
70
|
}
|
|
67
71
|
|
|
68
72
|
export enum DeepsightPlugTypeMod {
|
|
@@ -80,6 +84,9 @@ export enum DeepsightPlugTypeMod {
|
|
|
80
84
|
Fallback,
|
|
81
85
|
ArmorLocked,
|
|
82
86
|
ArmorExotic,
|
|
87
|
+
ArmorStatTuning,
|
|
88
|
+
GhostDeprecated,
|
|
89
|
+
WeaponEnhanced,
|
|
83
90
|
}
|
|
84
91
|
|
|
85
92
|
export enum DeepsightPlugTypeSubclass {
|
|
@@ -251,7 +258,6 @@ export interface DeepsightPlugCategorisationMod extends DeepsightPlugCategorisat
|
|
|
251
258
|
export interface DeepsightPlugCategorisationSubclass extends DeepsightPlugCategorisationGeneric<DeepsightPlugCategory.Subclass> {
|
|
252
259
|
damageType?: DamageTypeHashes;
|
|
253
260
|
subclasses?: InventoryItemHashes[];
|
|
254
|
-
affectsClassStat?: true;
|
|
255
261
|
}
|
|
256
262
|
|
|
257
263
|
interface DeepsightPlugCategorisationMap {
|