warframe-public-export-plus 0.2.4 → 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 +393 -9
- package/ExportCustoms.json +385 -15
- package/ExportDojoRecipes.json +158 -0
- package/ExportFlavour.json +700 -0
- package/ExportImages.json +312 -3
- package/ExportKeys.json +3203 -36
- package/ExportRecipes.json +241 -14
- package/ExportRegions.json +18 -4
- package/ExportResources.json +346 -48
- package/ExportSortieRewards.json +9 -9
- package/ExportUpgrades.json +162 -47
- package/ExportWarframes.json +53 -3
- package/ExportWeapons.json +192 -10
- package/dict.de.json +742 -338
- package/dict.en.json +700 -296
- package/dict.es.json +703 -299
- package/dict.fr.json +708 -304
- package/dict.it.json +718 -314
- package/dict.ja.json +662 -258
- package/dict.ko.json +669 -265
- package/dict.pl.json +732 -328
- package/dict.pt.json +720 -316
- package/dict.ru.json +703 -299
- package/dict.tc.json +730 -326
- package/dict.th.json +746 -342
- package/dict.tr.json +686 -282
- package/dict.uk.json +729 -325
- package/dict.zh.json +691 -287
- package/index.d.ts +13 -2
- 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 {
|
package/package.json
CHANGED