warframe-public-export-plus 0.3.0 → 0.3.2
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 +252 -126
- package/ExportEnemies.json +27838 -0
- package/ExportRegions.json +42 -21
- package/ExportRewards.json +19650 -18806
- package/ExportUpgrades.json +1 -2
- package/README.md +0 -4
- package/dict.de.json +937 -0
- package/dict.en.json +937 -0
- package/dict.es.json +937 -0
- package/dict.fr.json +937 -0
- package/dict.it.json +937 -0
- package/dict.ja.json +937 -0
- package/dict.ko.json +937 -0
- package/dict.pl.json +937 -0
- package/dict.pt.json +937 -0
- package/dict.ru.json +937 -0
- package/dict.tc.json +937 -0
- package/dict.th.json +937 -0
- package/dict.tr.json +937 -0
- package/dict.uk.json +937 -0
- package/dict.zh.json +937 -0
- package/index.d.ts +30 -1
- package/index.js +1 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -16,11 +16,12 @@ export declare const dict_zh: Record<string, string>;
|
|
|
16
16
|
|
|
17
17
|
export declare const ExportAbilities: Record<string, IAbility>;
|
|
18
18
|
export declare const ExportArcanes: Record<string, IArcane>;
|
|
19
|
-
export declare const ExportAvionics: Record<string,
|
|
19
|
+
export declare const ExportAvionics: Record<string, IAvionic>;
|
|
20
20
|
export declare const ExportBundles: Record<string, IBundle>;
|
|
21
21
|
export declare const ExportCustoms: Record<string, ICustom>;
|
|
22
22
|
export declare const ExportDojoRecipes: Record<string, IDojoRecipe>;
|
|
23
23
|
export declare const ExportDrones: Record<string, IDrone>;
|
|
24
|
+
export declare const ExportEnemies: IExportEnemies;
|
|
24
25
|
export declare const ExportFlavour: Record<string, IFlavourItem>;
|
|
25
26
|
export declare const ExportFocusUpgrades: Record<string, IFocusUpgrade>;
|
|
26
27
|
export declare const ExportFusionBundles: Record<string, IFusionBundle>;
|
|
@@ -59,6 +60,7 @@ export interface IArcane {
|
|
|
59
60
|
codexSecret: boolean;
|
|
60
61
|
excludeFromCodex?: boolean;
|
|
61
62
|
rarity?: TRarity;
|
|
63
|
+
distillPointValue?: number;
|
|
62
64
|
}
|
|
63
65
|
|
|
64
66
|
export interface IAvionic {
|
|
@@ -116,6 +118,32 @@ export interface IDrone {
|
|
|
116
118
|
capacityMultiplier: number[];
|
|
117
119
|
}
|
|
118
120
|
|
|
121
|
+
export interface IExportEnemies {
|
|
122
|
+
avatars: Record<string, IEnemyAvatar>;
|
|
123
|
+
droptables: Record<string, TDroptable>;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export interface IEnemyAvatar {
|
|
127
|
+
name: string;
|
|
128
|
+
icon?: string;
|
|
129
|
+
faction: "Stalker" | "None" | "Corpus" | "Grineer" | "Dummy" | "TENNO" | "Neutral" | "Narmer" | "Infestation" | "Orokin" | "Duviri" | "ENEMY" | "MITW" | "Prey" | "Sentient" | "NarmerVeil" | "Tenno" | "Red Veil";
|
|
130
|
+
baseLevel: number;
|
|
131
|
+
health: number;
|
|
132
|
+
armor: number;
|
|
133
|
+
shield: number;
|
|
134
|
+
droptable?: string;
|
|
135
|
+
isFrivolous?: boolean;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
export type TDroptable = IRewardPool[];
|
|
139
|
+
export interface IRewardPool {
|
|
140
|
+
chance: number;
|
|
141
|
+
items: {
|
|
142
|
+
type: string;
|
|
143
|
+
probability: number;
|
|
144
|
+
}[];
|
|
145
|
+
}
|
|
146
|
+
|
|
119
147
|
export interface IFlavourItem {
|
|
120
148
|
name: string;
|
|
121
149
|
description: string;
|
|
@@ -298,6 +326,7 @@ export interface IRegion {
|
|
|
298
326
|
maxEnemyLevel: number;
|
|
299
327
|
masteryExp: number;
|
|
300
328
|
rewardManifests: string[];
|
|
329
|
+
cacheRewardManifest?: string;
|
|
301
330
|
darkSectorData?: {
|
|
302
331
|
resourceBonus: number;
|
|
303
332
|
xpBonus: number;
|
package/index.js
CHANGED
|
@@ -23,6 +23,7 @@ PublicExportPlus.ExportBundles = require("./ExportBundles.json");
|
|
|
23
23
|
PublicExportPlus.ExportCustoms = require("./ExportCustoms.json");
|
|
24
24
|
PublicExportPlus.ExportDojoRecipes = require("./ExportDojoRecipes.json");
|
|
25
25
|
PublicExportPlus.ExportDrones = require("./ExportDrones.json");
|
|
26
|
+
PublicExportPlus.ExportEnemies = require("./ExportEnemies.json");
|
|
26
27
|
PublicExportPlus.ExportFlavour = require("./ExportFlavour.json");
|
|
27
28
|
PublicExportPlus.ExportFocusUpgrades = require("./ExportFocusUpgrades.json");
|
|
28
29
|
PublicExportPlus.ExportFusionBundles = require("./ExportFusionBundles.json");
|
package/package.json
CHANGED