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.
@@ -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> =