warframe-public-export-plus 0.2.2 → 0.2.4

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>;
@@ -38,6 +43,8 @@ export declare const ExportUpgrades: Record<string, IUpgrade>;
38
43
  export declare const ExportWarframes: Record<string, IPowersuit>;
39
44
  export declare const ExportWeapons: Record<string, IWeapon>;
40
45
 
46
+ export type TRarity = "COMMON" | "UNCOMMON" | "RARE" | "LEGENDARY";
47
+
41
48
  export interface IAbility {
42
49
  name: string;
43
50
  description: string;
@@ -51,7 +58,30 @@ export interface IArcane {
51
58
  icon: string;
52
59
  codexSecret: boolean;
53
60
  excludeFromCodex?: boolean;
54
- rarity?: "UNCOMMON" | "RARE" | "LEGENDARY";
61
+ rarity?: TRarity;
62
+ }
63
+
64
+ export interface IAvionic {
65
+ name: string;
66
+ polarity: "AP_UNIVERSAL" | "AP_TACTIC" | "AP_DEFENSE" | "AP_ATTACK";
67
+ rarity: TRarity;
68
+ codexSecret: boolean;
69
+ baseDrain: number;
70
+ fusionLimit: number;
71
+ excludeFromCodex?: boolean;
72
+ }
73
+
74
+ export interface IBundle {
75
+ name?: string;
76
+ description?: string;
77
+ icon?: string;
78
+ components: {
79
+ typeName: string;
80
+ purchaseQuantity: number;
81
+ durability: TRarity;
82
+ giveMaxRank?: boolean;
83
+ }[];
84
+ premiumPrice?: number;
55
85
  }
56
86
 
57
87
  export interface ICustom {
@@ -90,6 +120,7 @@ export interface IFlavourItem {
90
120
  name: string;
91
121
  description: string;
92
122
  icon: string;
123
+ base: "/EE/Types/Engine/UIBackground" | "/EE/Types/Engine/UICursor" | "/EE/Types/Engine/UISounds" | "/Lotus/Types/Game/UIStyle" | "/Lotus/Types/Game/ActionFigureDiorama" | "/Lotus/Types/Game/KubrowPet/Colors/KubrowPetColor" | "/Lotus/Types/Game/NotePack" | "/Lotus/Types/Game/PoseSet" | "/Lotus/Types/Game/QuartersWallTattoo" | "/EE/Types/Engine/UIFlavourItem" | "/Lotus/Types/Items/Emotes/Emote" | "/Lotus/Types/Items/VideoWallBackdropItem" | "/Lotus/Types/Items/VideoWallSoundscapeItem" | "/Lotus/Types/Items/AvatarImageItem" | "/Lotus/Types/Items/ColorPickerItem" | "/Lotus/Types/Items/ShipExteriorSkinItem" | "/Lotus/Types/Items/ShipAttachmentItem";
93
124
  codexSecret: boolean;
94
125
  excludeFromCodex?: boolean;
95
126
  hexColours?: { value: string }[];
@@ -99,7 +130,7 @@ export interface IFocusUpgrade {
99
130
  name: string;
100
131
  icon: string;
101
132
  polarity: "AP_ATTACK" | "AP_DEFENSE" | "AP_POWER" | "AP_TACTIC" | "AP_WARD";
102
- rarity: "UNCOMMON" | "RARE" | "COMMON";
133
+ rarity: TRarity;
103
134
  codexSecret: boolean;
104
135
  baseDrain: number;
105
136
  fusionLimit: number;
@@ -150,6 +181,34 @@ export interface IKey {
150
181
  excludeFromCodex?: boolean;
151
182
  }
152
183
 
184
+ export interface IModSet {
185
+ description: string;
186
+ icon: string;
187
+ numUpgradesInSet: number;
188
+ levelStats: object[];
189
+ buffSet?: boolean;
190
+ }
191
+
192
+ export interface IExportNightwave {
193
+ affiliationTag: string;
194
+ challenges: Record<string, {
195
+ name: string;
196
+ description: string;
197
+ standing: number;
198
+ required: number;
199
+ icon: string;
200
+ tip?: string;
201
+ tipIcon?: string;
202
+ }>;
203
+ rewards: {
204
+ uniqueName: string;
205
+ name: string;
206
+ description: string;
207
+ icon: string;
208
+ itemCount?: number;
209
+ }[];
210
+ }
211
+
153
212
  export interface IOther {
154
213
  name: string;
155
214
  description: string;
@@ -157,6 +216,14 @@ export interface IOther {
157
216
  excludeFromCodex?: boolean;
158
217
  }
159
218
 
219
+ export interface IExportRailjack {
220
+ nodes: Record<string, IRailjackNode>;
221
+ }
222
+
223
+ export interface IRailjackNode {
224
+ name: string;
225
+ }
226
+
160
227
  export interface IRailjackWeapon {
161
228
  name: string;
162
229
  icon: string;
@@ -204,16 +271,26 @@ export interface IRecipe {
204
271
  }
205
272
 
206
273
  export interface IRegion {
207
- name: string;
208
- systemIndex: number;
209
- systemName: string;
210
- nodeType: number;
211
- masteryReq: number;
212
- missionIndex: number;
213
- missionName: string;
214
- factionIndex: number;
215
- minEnemyLevel: number;
216
- maxEnemyLevel: number;
274
+ name: string;
275
+ systemIndex: number;
276
+ systemName: string;
277
+ nodeType: number;
278
+ masteryReq: number;
279
+ missionIndex: number;
280
+ missionName: string;
281
+ factionIndex: number;
282
+ factionName: string;
283
+ secondaryFactionIndex?: number;
284
+ secondaryFactionName?: string;
285
+ minEnemyLevel: number;
286
+ maxEnemyLevel: number;
287
+ masteryExp?: number;
288
+ darkSectorData?: {
289
+ resourceBonus: number;
290
+ xpBonus: number;
291
+ weaponXpBonusFor: "Rifles" | "Melee" | "Shotguns" | "Pistols";
292
+ weaponXpBonusVal: number;
293
+ };
217
294
  }
218
295
 
219
296
  export interface IRelic {
@@ -224,7 +301,7 @@ export interface IRelic {
224
301
  description: "/Lotus/Language/Relics/ImmortalProjectionBaseDesc" | "/Lotus/Language/Items/ProjectionDescription";
225
302
  relicRewards: {
226
303
  rewardName: string;
227
- rarity: "RARE" | "UNCOMMON" | "COMMON";
304
+ rarity: TRarity;
228
305
  tier: number;
229
306
  itemCount: number;
230
307
  }[];
@@ -236,6 +313,7 @@ export interface IResource {
236
313
  icon: string;
237
314
  codexSecret: boolean;
238
315
  parentName: string;
316
+ productCategory: "ShipDecorations" | "MiscItems" | "CrewShips" | "KubrowPetEggs" | "FusionTreasures" | "SupplyDrop" | "Ships";
239
317
  excludeFromCodex?: boolean;
240
318
  showInInventory?: boolean;
241
319
  longDescription?: string;
@@ -271,7 +349,7 @@ export interface IUpgrade {
271
349
  name: string;
272
350
  icon: string;
273
351
  polarity: "AP_POWER" | "AP_DEFENSE" | "AP_TACTIC" | "AP_ATTACK" | "AP_WARD" | "AP_UNIVERSAL" | "AP_UMBRA" | "AP_PRECEPT" | "AP_ANY";
274
- rarity: "RARE" | "UNCOMMON" | "COMMON" | "LEGENDARY";
352
+ rarity: TRarity;
275
353
  codexSecret: boolean;
276
354
  baseDrain: number;
277
355
  fusionLimit: number;
@@ -284,6 +362,7 @@ export interface IUpgrade {
284
362
  subtype?: string;
285
363
  excludeFromCodex?: boolean;
286
364
  isStarter?: boolean;
365
+ isFrivolous?: boolean;
287
366
  upgradeEntries?: {
288
367
  tag: string;
289
368
  prefixTag: string;
@@ -297,6 +376,7 @@ export interface IUpgrade {
297
376
  availableChallenges?: {
298
377
  fullName: string;
299
378
  description: string;
379
+ countRange: number[];
300
380
  complications: {
301
381
  fullName: string;
302
382
  description: string;
@@ -338,6 +418,7 @@ export interface IWeapon {
338
418
  fireRate: number;
339
419
  masteryReq: number;
340
420
  productCategory: "Pistols" | "Melee" | "LongGuns" | "SpaceGuns" | "SpaceMelee" | "OperatorAmps" | "SentinelWeapons" | "SpecialItems";
421
+ holsterCategory?: "MELEE" | "RIFLE" | "ARM_MOUNTED" | "STAFF" | "FIST" | "TONFA" | "SHORT_MELEE" | "SHOTGUN" | "SMG" | "SNIPER" | "DUAL_SHORT_MELEE" | "LEFT_FOREARM_MOUNTED" | "HIP_MELEE" | "DUAL_MELEE" | "CLAWS" | "PUNCH_SLASH_KICK" | "WIDE_RIFLE" | "BOW" | "PISTOL" | "DUAL_HIP_MELEE";
341
422
  slot?: number;
342
423
  accuracy?: number;
343
424
  omegaAttenuation: number;
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,10 @@ 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");
34
+ PublicExportPlus.ExportNightwave = require("./ExportNightwave.json");
31
35
  PublicExportPlus.ExportOther = require("./ExportOther.json");
36
+ PublicExportPlus.ExportRailjack = require("./ExportRailjack.json");
32
37
  PublicExportPlus.ExportRailjackWeapons = require("./ExportRailjackWeapons.json");
33
38
  PublicExportPlus.ExportRecipes = require("./ExportRecipes.json");
34
39
  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.4",
4
+ "repository": "github:calamity-inc/warframe-public-export-plus"
4
5
  }