warframe-public-export-plus 0.5.104 → 0.5.106
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/ExportBoosterPacks.json +48 -48
- package/ExportBounties.json +285 -0
- package/ExportBundles.json +1 -0
- package/ExportCodex.json +2252 -0
- package/ExportCustoms.json +74 -7
- package/ExportEnemies.json +8 -8
- package/ExportFlavour.json +38 -0
- package/ExportImages.json +74 -8
- package/ExportNightwave.json +538 -537
- package/ExportRecipes.json +239 -1
- package/ExportRegions.json +1 -1
- package/ExportRelics.json +876 -84
- package/ExportResources.json +93 -255
- package/ExportRewards.json +1948 -1018
- package/ExportSyndicates.json +2035 -0
- package/ExportVendors.json +3814 -0
- package/ExportWarframes.json +296 -121
- package/ExportWeapons.json +1363 -634
- package/dict.de.json +609 -2
- package/dict.en.json +609 -2
- package/dict.es.json +608 -1
- package/dict.fr.json +609 -2
- package/dict.it.json +609 -2
- package/dict.ja.json +608 -1
- package/dict.ko.json +608 -1
- package/dict.pl.json +610 -3
- package/dict.pt.json +608 -1
- package/dict.ru.json +608 -1
- package/dict.tc.json +609 -2
- package/dict.th.json +608 -1
- package/dict.tr.json +610 -3
- package/dict.uk.json +618 -11
- package/dict.zh.json +608 -1
- package/index.d.ts +29 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -219,6 +219,9 @@ export interface IChallenge {
|
|
|
219
219
|
|
|
220
220
|
export interface IExportCodex {
|
|
221
221
|
objects: Record<string, ICodexEntry>;
|
|
222
|
+
loreFragments: Record<string, ILoreFragment>;
|
|
223
|
+
songs: Record<string, ISongFragment>;
|
|
224
|
+
fighterFrames: Record<string, IFrameFighterFragment>;
|
|
222
225
|
}
|
|
223
226
|
|
|
224
227
|
export interface ICodexEntry {
|
|
@@ -229,6 +232,29 @@ export interface ICodexEntry {
|
|
|
229
232
|
secret: boolean;
|
|
230
233
|
}
|
|
231
234
|
|
|
235
|
+
export interface ILoreFragment {
|
|
236
|
+
name: string;
|
|
237
|
+
description?: string;
|
|
238
|
+
image?: string;
|
|
239
|
+
reqScans: number;
|
|
240
|
+
secretTransmission?: {
|
|
241
|
+
sound: string;
|
|
242
|
+
text: string;
|
|
243
|
+
};
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
export interface ISongFragment {
|
|
247
|
+
name: string;
|
|
248
|
+
song: string;
|
|
249
|
+
reqScans: number;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
export interface IFrameFighterFragment {
|
|
253
|
+
name: string;
|
|
254
|
+
suit: string;
|
|
255
|
+
reqScans: number;
|
|
256
|
+
}
|
|
257
|
+
|
|
232
258
|
export interface ICreditBundle {
|
|
233
259
|
name: string;
|
|
234
260
|
description?: string;
|
|
@@ -773,7 +799,7 @@ export interface IResource {
|
|
|
773
799
|
icon: string;
|
|
774
800
|
codexSecret: boolean;
|
|
775
801
|
parentName: string;
|
|
776
|
-
productCategory: "ShipDecorations" | "MiscItems" | "CrewShips" | "
|
|
802
|
+
productCategory: "ShipDecorations" | "MiscItems" | "CrewShips" | "FusionTreasures" | "SupplyDrop" | "Ships";
|
|
777
803
|
excludeFromCodex?: true;
|
|
778
804
|
showInInventory?: boolean;
|
|
779
805
|
longDescription?: string;
|
|
@@ -1056,6 +1082,7 @@ export interface IPowersuit {
|
|
|
1056
1082
|
maxLevelCap?: number;
|
|
1057
1083
|
platinumCost?: number;
|
|
1058
1084
|
excludeFromMarket?: true;
|
|
1085
|
+
introducedAt?: number;
|
|
1059
1086
|
}
|
|
1060
1087
|
|
|
1061
1088
|
export interface IWeapon {
|
|
@@ -1113,6 +1140,7 @@ export interface IWeapon {
|
|
|
1113
1140
|
additionalItems?: string[];
|
|
1114
1141
|
bayonetOtherWeaponType?: string;
|
|
1115
1142
|
tradable: boolean;
|
|
1143
|
+
introducedAt?: number;
|
|
1116
1144
|
}
|
|
1117
1145
|
|
|
1118
1146
|
export interface IWeaponBehaviour {
|