warframe-public-export-plus 0.6.4 → 0.6.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/ExportAvionics.json +82 -0
- package/ExportBundles.json +106 -53
- package/ExportRecipes.json +2 -1
- package/ExportRelics.json +9110 -3089
- package/ExportResources.json +154 -77
- package/ExportWeapons.json +1 -0
- package/index.d.ts +7 -0
- package/package.json +1 -1
package/ExportWeapons.json
CHANGED
package/index.d.ts
CHANGED
|
@@ -125,6 +125,7 @@ export interface IArcane {
|
|
|
125
125
|
|
|
126
126
|
export interface IAvionic {
|
|
127
127
|
name: string;
|
|
128
|
+
icon: string;
|
|
128
129
|
polarity: "AP_UNIVERSAL" | "AP_TACTIC" | "AP_DEFENSE" | "AP_ATTACK";
|
|
129
130
|
rarity: TRarity;
|
|
130
131
|
codexSecret: boolean;
|
|
@@ -193,6 +194,7 @@ export interface IBundle {
|
|
|
193
194
|
creditsCost?: number;
|
|
194
195
|
platinumCost?: number;
|
|
195
196
|
excludeFromMarket?: true;
|
|
197
|
+
oneTimePurchasable?: true;
|
|
196
198
|
bundledPlatinum?: number;
|
|
197
199
|
platinumBundlePair?: string;
|
|
198
200
|
excludedPlatforms?: TPlatform[];
|
|
@@ -710,6 +712,7 @@ export interface IRecipe {
|
|
|
710
712
|
creditsCost?: number;
|
|
711
713
|
platinumCost?: number;
|
|
712
714
|
excludeFromMarket?: true;
|
|
715
|
+
oneTimePurchasable?: true;
|
|
713
716
|
}
|
|
714
717
|
|
|
715
718
|
export interface IRegion {
|
|
@@ -758,6 +761,8 @@ export interface IRelic {
|
|
|
758
761
|
description: string;
|
|
759
762
|
quality: TRelicQuality;
|
|
760
763
|
rewardManifest: string;
|
|
764
|
+
introducedAt?: number;
|
|
765
|
+
vaultedAt?: number;
|
|
761
766
|
}
|
|
762
767
|
|
|
763
768
|
export interface IResource {
|
|
@@ -781,6 +786,7 @@ export interface IResource {
|
|
|
781
786
|
dissectionParts?: ICountedItem[]; // for fish
|
|
782
787
|
platinumCost?: number;
|
|
783
788
|
excludeFromMarket?: true;
|
|
789
|
+
oneTimePurchasable?: true;
|
|
784
790
|
purchaseQuantity?: number;
|
|
785
791
|
pickupQuantity?: IRange;
|
|
786
792
|
helminthSnack?: IHelminthSnack;
|
|
@@ -1104,6 +1110,7 @@ export interface IWeapon {
|
|
|
1104
1110
|
creditsCost?: number;
|
|
1105
1111
|
platinumCost?: number;
|
|
1106
1112
|
excludeFromMarket?: true;
|
|
1113
|
+
oneTimePurchasable?: true;
|
|
1107
1114
|
variantType: "VT_NORMAL" | "VT_STARTER" | "VT_VARIANT" | "VT_SYNDICATE" | "VT_PRIME" | "VT_KUVA";
|
|
1108
1115
|
partType?: string;
|
|
1109
1116
|
gunType?: "GT_RIFLE" | "GT_SHOTGUN" | "GT_BEAM";
|