warframe-public-export-plus 0.2.4 → 0.2.6
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 +393 -9
- package/ExportCustoms.json +392 -15
- package/ExportDojoRecipes.json +120 -0
- package/ExportFlavour.json +700 -0
- package/ExportImages.json +315 -3
- package/ExportKeys.json +3203 -36
- package/ExportRecipes.json +241 -14
- package/ExportRegions.json +954 -228
- package/ExportResources.json +356 -48
- package/ExportSentinels.json +32 -16
- package/ExportSortieRewards.json +9 -9
- package/ExportUpgrades.json +162 -47
- package/ExportWarframes.json +53 -3
- package/ExportWeapons.json +192 -10
- package/README.md +1 -1
- package/dict.de.json +749 -341
- package/dict.en.json +704 -296
- package/dict.es.json +707 -299
- package/dict.fr.json +713 -305
- package/dict.it.json +722 -314
- package/dict.ja.json +666 -258
- package/dict.ko.json +673 -265
- package/dict.pl.json +737 -329
- package/dict.pt.json +725 -317
- package/dict.ru.json +707 -299
- package/dict.tc.json +734 -326
- package/dict.th.json +2407 -1999
- package/dict.tr.json +691 -283
- package/dict.uk.json +733 -325
- package/dict.zh.json +696 -288
- package/index.d.ts +17 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -174,11 +174,22 @@ export interface IIntrinsicRank {
|
|
|
174
174
|
|
|
175
175
|
export interface IKey {
|
|
176
176
|
name: string;
|
|
177
|
-
description
|
|
178
|
-
icon
|
|
177
|
+
description?: string;
|
|
178
|
+
icon?: string;
|
|
179
179
|
parentName: string;
|
|
180
180
|
codexSecret: boolean;
|
|
181
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
|
+
})[];
|
|
182
193
|
}
|
|
183
194
|
|
|
184
195
|
export interface IModSet {
|
|
@@ -284,13 +295,15 @@ export interface IRegion {
|
|
|
284
295
|
secondaryFactionName?: string;
|
|
285
296
|
minEnemyLevel: number;
|
|
286
297
|
maxEnemyLevel: number;
|
|
287
|
-
masteryExp
|
|
298
|
+
masteryExp: number;
|
|
299
|
+
rewardManifests: string[];
|
|
288
300
|
darkSectorData?: {
|
|
289
301
|
resourceBonus: number;
|
|
290
302
|
xpBonus: number;
|
|
291
303
|
weaponXpBonusFor: "Rifles" | "Melee" | "Shotguns" | "Pistols";
|
|
292
304
|
weaponXpBonusVal: number;
|
|
293
305
|
};
|
|
306
|
+
questReq?: string;
|
|
294
307
|
}
|
|
295
308
|
|
|
296
309
|
export interface IRelic {
|
|
@@ -332,6 +345,7 @@ export interface ISentinel {
|
|
|
332
345
|
excludeFromCodex?: boolean;
|
|
333
346
|
description: string;
|
|
334
347
|
productCategory: "SpecialItems" | "KubrowPets" | "Sentinels";
|
|
348
|
+
defaultWeapon?: string;
|
|
335
349
|
}
|
|
336
350
|
|
|
337
351
|
export interface ISortieReward {
|
package/package.json
CHANGED