warframe-public-export-plus 0.2.2 → 0.2.3

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/index.d.ts CHANGED
@@ -16,6 +16,8 @@ export declare const dict_zh: Record<string, string>;
16
16
 
17
17
  export declare const ExportAbilities: Record<string, IAbility>;
18
18
  export declare const ExportArcanes: Record<string, IArcane>;
19
+ export declare const ExportAvionics: Record<string, IArcane>;
20
+ export declare const ExportBundles: Record<string, IBundle>;
19
21
  export declare const ExportCustoms: Record<string, ICustom>;
20
22
  export declare const ExportDojoRecipes: Record<string, IDojoRecipe>;
21
23
  export declare const ExportDrones: Record<string, IDrone>;
@@ -26,7 +28,10 @@ export declare const ExportGear: Record<string, IGear>;
26
28
  export declare const ExportImages: Record<string, IImage>;
27
29
  export declare const ExportIntrinsics: Record<string, IIntrinsic>;
28
30
  export declare const ExportKeys: Record<string, IKey>;
31
+ export declare const ExportModSet: Record<string, IModSet>;
32
+ export declare const ExportNightwave: IExportNightwave;
29
33
  export declare const ExportOther: Record<string, IOther>;
34
+ export declare const ExportRailjack: IExportRailjack;
30
35
  export declare const ExportRailjackWeapons: Record<string, IRailjackWeapon>;
31
36
  export declare const ExportRecipes: Record<string, IRecipe>;
32
37
  export declare const ExportRegions: Record<string, IRegion>;
@@ -54,6 +59,28 @@ export interface IArcane {
54
59
  rarity?: "UNCOMMON" | "RARE" | "LEGENDARY";
55
60
  }
56
61
 
62
+ export interface IAvionic {
63
+ name: string;
64
+ polarity: "AP_UNIVERSAL" | "AP_TACTIC" | "AP_DEFENSE" | "AP_ATTACK";
65
+ rarity: "UNCOMMON" | "RARE" | "COMMON";
66
+ codexSecret: boolean;
67
+ baseDrain: number;
68
+ fusionLimit: number;
69
+ excludeFromCodex?: boolean;
70
+ }
71
+
72
+ export interface IBundle {
73
+ name?: string;
74
+ description?: string;
75
+ icon?: string;
76
+ components: {
77
+ typeName: string;
78
+ purchaseQuantity: number;
79
+ giveMaxRank?: boolean;
80
+ }[];
81
+ premiumPrice?: number;
82
+ }
83
+
57
84
  export interface ICustom {
58
85
  name: string;
59
86
  codexSecret: boolean;
@@ -150,6 +177,34 @@ export interface IKey {
150
177
  excludeFromCodex?: boolean;
151
178
  }
152
179
 
180
+ export interface IModSet {
181
+ description: string;
182
+ icon: string;
183
+ numUpgradesInSet: number;
184
+ levelStats: object[];
185
+ buffSet?: boolean;
186
+ }
187
+
188
+ export interface IExportNightwave {
189
+ affiliationTag: string;
190
+ challenges: Record<string, {
191
+ name: string;
192
+ description: string;
193
+ standing: number;
194
+ required: number;
195
+ icon: string;
196
+ tip?: string;
197
+ tipIcon?: string;
198
+ }>;
199
+ rewards: {
200
+ uniqueName: string;
201
+ name: string;
202
+ description: string;
203
+ icon: string;
204
+ itemCount?: number;
205
+ }[];
206
+ }
207
+
153
208
  export interface IOther {
154
209
  name: string;
155
210
  description: string;
@@ -157,6 +212,14 @@ export interface IOther {
157
212
  excludeFromCodex?: boolean;
158
213
  }
159
214
 
215
+ export interface IExportRailjack {
216
+ nodes: Record<string, IRailjackNode>;
217
+ }
218
+
219
+ export interface IRailjackNode {
220
+ name: string;
221
+ }
222
+
160
223
  export interface IRailjackWeapon {
161
224
  name: string;
162
225
  icon: string;
@@ -236,6 +299,7 @@ export interface IResource {
236
299
  icon: string;
237
300
  codexSecret: boolean;
238
301
  parentName: string;
302
+ productCategory: "ShipDecorations" | "MiscItems" | "CrewShips" | "KubrowPetEggs" | "FusionTreasures" | "SupplyDrop" | "Ships";
239
303
  excludeFromCodex?: boolean;
240
304
  showInInventory?: boolean;
241
305
  longDescription?: string;
@@ -297,6 +361,7 @@ export interface IUpgrade {
297
361
  availableChallenges?: {
298
362
  fullName: string;
299
363
  description: string;
364
+ countRange: number[];
300
365
  complications: {
301
366
  fullName: string;
302
367
  description: string;
package/index.js CHANGED
@@ -18,6 +18,8 @@ PublicExportPlus.dict_zh = require("./dict.zh.json");
18
18
 
19
19
  PublicExportPlus.ExportAbilities = require("./ExportAbilities.json");
20
20
  PublicExportPlus.ExportArcanes = require("./ExportArcanes.json");
21
+ PublicExportPlus.ExportAvionics = require("./ExportAvionics.json");
22
+ PublicExportPlus.ExportBundles = require("./ExportBundles.json");
21
23
  PublicExportPlus.ExportCustoms = require("./ExportCustoms.json");
22
24
  PublicExportPlus.ExportDojoRecipes = require("./ExportDojoRecipes.json");
23
25
  PublicExportPlus.ExportDrones = require("./ExportDrones.json");
@@ -28,7 +30,9 @@ PublicExportPlus.ExportGear = require("./ExportGear.json");
28
30
  PublicExportPlus.ExportImages = require("./ExportImages.json");
29
31
  PublicExportPlus.ExportIntrinsics = require("./ExportIntrinsics.json");
30
32
  PublicExportPlus.ExportKeys = require("./ExportKeys.json");
33
+ PublicExportPlus.ExportModSet = require("./ExportModSet.json");
31
34
  PublicExportPlus.ExportOther = require("./ExportOther.json");
35
+ PublicExportPlus.ExportRailjack = require("./ExportRailjack.json");
32
36
  PublicExportPlus.ExportRailjackWeapons = require("./ExportRailjackWeapons.json");
33
37
  PublicExportPlus.ExportRecipes = require("./ExportRecipes.json");
34
38
  PublicExportPlus.ExportRegions = require("./ExportRegions.json");
package/package.json CHANGED
@@ -1,4 +1,5 @@
1
1
  {
2
2
  "name": "warframe-public-export-plus",
3
- "version": "0.2.2"
3
+ "version": "0.2.3",
4
+ "repository": "github:calamity-inc/warframe-public-export-plus"
4
5
  }