deepsight.gg 1.0.721 → 1.0.724
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 +16 -0
- package/DeepsightCatalystDefinition.json +16 -0
- package/DeepsightCollectionsDefinition.json +108 -5
- package/DeepsightDropTableDefinition.json +39 -123
- package/DeepsightEmblemDefinition.json +729 -196
- package/DeepsightMomentDefinition.json +13 -0
- package/DeepsightPlugCategorisation.d.ts +11 -0
- package/DeepsightPlugCategorisation.json +3811 -4833
- package/DeepsightPlugCategorisation.ts +11 -0
- package/DeepsightSocketCategorisation.json +82537 -62685
- package/DeepsightVendorDefinition.json +11825 -25248
- package/DeepsightWallpaperDefinition.json +18 -2
- package/Enums.d.ts +7381 -4256
- package/package.json +1 -1
- package/versions.json +17 -17
|
@@ -17,6 +17,7 @@ export enum DeepsightPlugCategory {
|
|
|
17
17
|
Infusion,
|
|
18
18
|
Destination,
|
|
19
19
|
Information,
|
|
20
|
+
Tonic,
|
|
20
21
|
}
|
|
21
22
|
|
|
22
23
|
export enum DeepsightPlugTypeIntrinsic {
|
|
@@ -175,6 +176,15 @@ export enum DeepsightPlugTypeDestination {
|
|
|
175
176
|
TravelersBlessingsPlaystyle,
|
|
176
177
|
}
|
|
177
178
|
|
|
179
|
+
export enum DeepsightPlugTypeTonic {
|
|
180
|
+
None,
|
|
181
|
+
Placeholder,
|
|
182
|
+
Reagent,
|
|
183
|
+
Combat,
|
|
184
|
+
Loot,
|
|
185
|
+
Formula,
|
|
186
|
+
}
|
|
187
|
+
|
|
178
188
|
export const DeepsightPlugTypeMap = {
|
|
179
189
|
[DeepsightPlugCategory.None]: null,
|
|
180
190
|
[DeepsightPlugCategory.Classified]: null,
|
|
@@ -192,6 +202,7 @@ export const DeepsightPlugTypeMap = {
|
|
|
192
202
|
[DeepsightPlugCategory.Extractable]: /*%typeof*/ DeepsightPlugTypeExtractable,
|
|
193
203
|
[DeepsightPlugCategory.Destination]: /*%typeof*/ DeepsightPlugTypeDestination,
|
|
194
204
|
[DeepsightPlugCategory.Information]: null,
|
|
205
|
+
[DeepsightPlugCategory.Tonic]: /*%typeof*/ DeepsightPlugTypeTonic,
|
|
195
206
|
};
|
|
196
207
|
|
|
197
208
|
export type DeepsightPlugType<CATEGORY extends DeepsightPlugCategory = DeepsightPlugCategory> =
|