warframe-public-export-plus 0.2.3 → 0.2.5
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/ExportArcanes.json +36 -0
- package/ExportBundles.json +9286 -4484
- package/ExportCustoms.json +385 -15
- package/ExportDojoRecipes.json +158 -0
- package/ExportFlavour.json +2662 -0
- package/ExportImages.json +312 -3
- package/ExportKeys.json +3240 -73
- package/ExportRecipes.json +241 -14
- package/ExportRegions.json +829 -227
- package/ExportResources.json +346 -48
- package/ExportSortieRewards.json +9 -9
- package/ExportUpgrades.json +426 -178
- package/ExportWarframes.json +53 -3
- package/ExportWeapons.json +687 -10
- package/README.md +17 -14
- package/dict.de.json +752 -340
- package/dict.en.json +710 -298
- package/dict.es.json +713 -301
- package/dict.fr.json +718 -306
- package/dict.it.json +728 -316
- package/dict.ja.json +672 -260
- package/dict.ko.json +679 -267
- package/dict.pl.json +742 -330
- package/dict.pt.json +730 -318
- package/dict.ru.json +713 -301
- package/dict.tc.json +740 -328
- package/dict.th.json +756 -344
- package/dict.tr.json +696 -284
- package/dict.uk.json +739 -327
- package/dict.zh.json +701 -289
- package/index.d.ts +46 -19
- package/index.js +1 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -43,6 +43,8 @@ export declare const ExportUpgrades: Record<string, IUpgrade>;
|
|
|
43
43
|
export declare const ExportWarframes: Record<string, IPowersuit>;
|
|
44
44
|
export declare const ExportWeapons: Record<string, IWeapon>;
|
|
45
45
|
|
|
46
|
+
export type TRarity = "COMMON" | "UNCOMMON" | "RARE" | "LEGENDARY";
|
|
47
|
+
|
|
46
48
|
export interface IAbility {
|
|
47
49
|
name: string;
|
|
48
50
|
description: string;
|
|
@@ -56,13 +58,13 @@ export interface IArcane {
|
|
|
56
58
|
icon: string;
|
|
57
59
|
codexSecret: boolean;
|
|
58
60
|
excludeFromCodex?: boolean;
|
|
59
|
-
rarity?:
|
|
61
|
+
rarity?: TRarity;
|
|
60
62
|
}
|
|
61
63
|
|
|
62
64
|
export interface IAvionic {
|
|
63
65
|
name: string;
|
|
64
66
|
polarity: "AP_UNIVERSAL" | "AP_TACTIC" | "AP_DEFENSE" | "AP_ATTACK";
|
|
65
|
-
rarity:
|
|
67
|
+
rarity: TRarity;
|
|
66
68
|
codexSecret: boolean;
|
|
67
69
|
baseDrain: number;
|
|
68
70
|
fusionLimit: number;
|
|
@@ -76,6 +78,7 @@ export interface IBundle {
|
|
|
76
78
|
components: {
|
|
77
79
|
typeName: string;
|
|
78
80
|
purchaseQuantity: number;
|
|
81
|
+
durability: TRarity;
|
|
79
82
|
giveMaxRank?: boolean;
|
|
80
83
|
}[];
|
|
81
84
|
premiumPrice?: number;
|
|
@@ -117,6 +120,7 @@ export interface IFlavourItem {
|
|
|
117
120
|
name: string;
|
|
118
121
|
description: string;
|
|
119
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";
|
|
120
124
|
codexSecret: boolean;
|
|
121
125
|
excludeFromCodex?: boolean;
|
|
122
126
|
hexColours?: { value: string }[];
|
|
@@ -126,7 +130,7 @@ export interface IFocusUpgrade {
|
|
|
126
130
|
name: string;
|
|
127
131
|
icon: string;
|
|
128
132
|
polarity: "AP_ATTACK" | "AP_DEFENSE" | "AP_POWER" | "AP_TACTIC" | "AP_WARD";
|
|
129
|
-
rarity:
|
|
133
|
+
rarity: TRarity;
|
|
130
134
|
codexSecret: boolean;
|
|
131
135
|
baseDrain: number;
|
|
132
136
|
fusionLimit: number;
|
|
@@ -170,11 +174,22 @@ export interface IIntrinsicRank {
|
|
|
170
174
|
|
|
171
175
|
export interface IKey {
|
|
172
176
|
name: string;
|
|
173
|
-
description
|
|
174
|
-
icon
|
|
177
|
+
description?: string;
|
|
178
|
+
icon?: string;
|
|
175
179
|
parentName: string;
|
|
176
180
|
codexSecret: boolean;
|
|
177
181
|
excludeFromCodex?: boolean;
|
|
182
|
+
chainStages?: {
|
|
183
|
+
key?: string;
|
|
184
|
+
itemsToGiveWhenTriggered: string[];
|
|
185
|
+
}[];
|
|
186
|
+
rewards?: ({
|
|
187
|
+
rewardType: "RT_STORE_ITEM" | "RT_RECIPE" | "RT_RESOURCE";
|
|
188
|
+
itemType: string;
|
|
189
|
+
} | {
|
|
190
|
+
rewardType: "RT_CREDITS";
|
|
191
|
+
amount: number;
|
|
192
|
+
})[];
|
|
178
193
|
}
|
|
179
194
|
|
|
180
195
|
export interface IModSet {
|
|
@@ -193,8 +208,8 @@ export interface IExportNightwave {
|
|
|
193
208
|
standing: number;
|
|
194
209
|
required: number;
|
|
195
210
|
icon: string;
|
|
196
|
-
tip?:
|
|
197
|
-
tipIcon?:
|
|
211
|
+
tip?: string;
|
|
212
|
+
tipIcon?: string;
|
|
198
213
|
}>;
|
|
199
214
|
rewards: {
|
|
200
215
|
uniqueName: string;
|
|
@@ -267,16 +282,26 @@ export interface IRecipe {
|
|
|
267
282
|
}
|
|
268
283
|
|
|
269
284
|
export interface IRegion {
|
|
270
|
-
name:
|
|
271
|
-
systemIndex:
|
|
272
|
-
systemName:
|
|
273
|
-
nodeType:
|
|
274
|
-
masteryReq:
|
|
275
|
-
missionIndex:
|
|
276
|
-
missionName:
|
|
277
|
-
factionIndex:
|
|
278
|
-
|
|
279
|
-
|
|
285
|
+
name: string;
|
|
286
|
+
systemIndex: number;
|
|
287
|
+
systemName: string;
|
|
288
|
+
nodeType: number;
|
|
289
|
+
masteryReq: number;
|
|
290
|
+
missionIndex: number;
|
|
291
|
+
missionName: string;
|
|
292
|
+
factionIndex: number;
|
|
293
|
+
factionName: string;
|
|
294
|
+
secondaryFactionIndex?: number;
|
|
295
|
+
secondaryFactionName?: string;
|
|
296
|
+
minEnemyLevel: number;
|
|
297
|
+
maxEnemyLevel: number;
|
|
298
|
+
masteryExp?: number;
|
|
299
|
+
darkSectorData?: {
|
|
300
|
+
resourceBonus: number;
|
|
301
|
+
xpBonus: number;
|
|
302
|
+
weaponXpBonusFor: "Rifles" | "Melee" | "Shotguns" | "Pistols";
|
|
303
|
+
weaponXpBonusVal: number;
|
|
304
|
+
};
|
|
280
305
|
}
|
|
281
306
|
|
|
282
307
|
export interface IRelic {
|
|
@@ -287,7 +312,7 @@ export interface IRelic {
|
|
|
287
312
|
description: "/Lotus/Language/Relics/ImmortalProjectionBaseDesc" | "/Lotus/Language/Items/ProjectionDescription";
|
|
288
313
|
relicRewards: {
|
|
289
314
|
rewardName: string;
|
|
290
|
-
rarity:
|
|
315
|
+
rarity: TRarity;
|
|
291
316
|
tier: number;
|
|
292
317
|
itemCount: number;
|
|
293
318
|
}[];
|
|
@@ -335,7 +360,7 @@ export interface IUpgrade {
|
|
|
335
360
|
name: string;
|
|
336
361
|
icon: string;
|
|
337
362
|
polarity: "AP_POWER" | "AP_DEFENSE" | "AP_TACTIC" | "AP_ATTACK" | "AP_WARD" | "AP_UNIVERSAL" | "AP_UMBRA" | "AP_PRECEPT" | "AP_ANY";
|
|
338
|
-
rarity:
|
|
363
|
+
rarity: TRarity;
|
|
339
364
|
codexSecret: boolean;
|
|
340
365
|
baseDrain: number;
|
|
341
366
|
fusionLimit: number;
|
|
@@ -348,6 +373,7 @@ export interface IUpgrade {
|
|
|
348
373
|
subtype?: string;
|
|
349
374
|
excludeFromCodex?: boolean;
|
|
350
375
|
isStarter?: boolean;
|
|
376
|
+
isFrivolous?: boolean;
|
|
351
377
|
upgradeEntries?: {
|
|
352
378
|
tag: string;
|
|
353
379
|
prefixTag: string;
|
|
@@ -403,6 +429,7 @@ export interface IWeapon {
|
|
|
403
429
|
fireRate: number;
|
|
404
430
|
masteryReq: number;
|
|
405
431
|
productCategory: "Pistols" | "Melee" | "LongGuns" | "SpaceGuns" | "SpaceMelee" | "OperatorAmps" | "SentinelWeapons" | "SpecialItems";
|
|
432
|
+
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";
|
|
406
433
|
slot?: number;
|
|
407
434
|
accuracy?: number;
|
|
408
435
|
omegaAttenuation: number;
|
package/index.js
CHANGED
|
@@ -31,6 +31,7 @@ PublicExportPlus.ExportImages = require("./ExportImages.json");
|
|
|
31
31
|
PublicExportPlus.ExportIntrinsics = require("./ExportIntrinsics.json");
|
|
32
32
|
PublicExportPlus.ExportKeys = require("./ExportKeys.json");
|
|
33
33
|
PublicExportPlus.ExportModSet = require("./ExportModSet.json");
|
|
34
|
+
PublicExportPlus.ExportNightwave = require("./ExportNightwave.json");
|
|
34
35
|
PublicExportPlus.ExportOther = require("./ExportOther.json");
|
|
35
36
|
PublicExportPlus.ExportRailjack = require("./ExportRailjack.json");
|
|
36
37
|
PublicExportPlus.ExportRailjackWeapons = require("./ExportRailjackWeapons.json");
|
package/package.json
CHANGED