warframe-public-export-plus 0.4.2 → 0.4.4
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 +72 -79
- package/ExportBoosterPacks.json +51 -51
- package/ExportBundles.json +28 -0
- package/ExportCustoms.json +142 -0
- package/ExportDojoRecipes.json +25 -0
- package/ExportEnemies.json +13728 -16
- package/ExportFlavour.json +30 -0
- package/ExportGear.json +8 -0
- package/ExportImages.json +136 -1
- package/ExportKeys.json +447 -73
- package/ExportRailjackWeapons.json +116 -116
- package/ExportRecipes.json +244 -2
- package/ExportRelics.json +648 -0
- package/ExportResources.json +107 -37
- package/ExportRewards.json +868 -256
- package/ExportSentinels.json +31 -0
- package/ExportSyndicates.json +756 -0
- package/ExportTextIcons.json +3 -0
- package/ExportVendors.json +1750 -0
- package/ExportWarframes.json +49 -0
- package/ExportWeapons.json +1074 -697
- package/README.md +1 -1
- package/dict.de.json +295 -23
- package/dict.en.json +286 -14
- package/dict.es.json +293 -21
- package/dict.fr.json +296 -24
- package/dict.it.json +323 -51
- package/dict.ja.json +292 -20
- package/dict.ko.json +286 -14
- package/dict.pl.json +300 -28
- package/dict.pt.json +317 -45
- package/dict.ru.json +300 -28
- package/dict.tc.json +288 -16
- package/dict.th.json +545 -273
- package/dict.tr.json +322 -50
- package/dict.uk.json +390 -118
- package/dict.zh.json +339 -67
- package/index.d.ts +17 -4
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -152,6 +152,7 @@ export interface IExportEnemies {
|
|
|
152
152
|
damageControllers: Record<string, IDamageController>;
|
|
153
153
|
droptables: Record<string, TDroptable>;
|
|
154
154
|
hitProxies: Record<string, IHitProxy>;
|
|
155
|
+
aiWeapons: Record<string, IAiWeapon>;
|
|
155
156
|
}
|
|
156
157
|
|
|
157
158
|
export interface IEnemyAgent {
|
|
@@ -194,6 +195,13 @@ export interface IHitProxy {
|
|
|
194
195
|
criticalMultiplier?: number;
|
|
195
196
|
}
|
|
196
197
|
|
|
198
|
+
export interface IAiWeapon {
|
|
199
|
+
name?: string;
|
|
200
|
+
description?: string;
|
|
201
|
+
icon?: string;
|
|
202
|
+
behaviors?: IWeaponBehaviour[];
|
|
203
|
+
}
|
|
204
|
+
|
|
197
205
|
export type TDroptable = IRewardPool[];
|
|
198
206
|
export interface IRewardPool {
|
|
199
207
|
chance: number;
|
|
@@ -275,6 +283,11 @@ export interface IKey {
|
|
|
275
283
|
chainStages?: {
|
|
276
284
|
key?: string;
|
|
277
285
|
itemsToGiveWhenTriggered: string[];
|
|
286
|
+
messageToSendWhenTriggered?: {
|
|
287
|
+
sender: string;
|
|
288
|
+
title: string;
|
|
289
|
+
body: string;
|
|
290
|
+
};
|
|
278
291
|
}[];
|
|
279
292
|
rewards?: ({
|
|
280
293
|
rewardType: "RT_STORE_ITEM" | "RT_RECIPE" | "RT_RESOURCE";
|
|
@@ -342,7 +355,7 @@ export interface IRailjackWeapon {
|
|
|
342
355
|
reloadTime: number;
|
|
343
356
|
multishot: number;
|
|
344
357
|
compatibilityTags?: string[];
|
|
345
|
-
|
|
358
|
+
behaviours?: IWeaponBehaviour[];
|
|
346
359
|
}
|
|
347
360
|
|
|
348
361
|
export interface IRecipe {
|
|
@@ -579,7 +592,7 @@ export interface IWeapon {
|
|
|
579
592
|
reloadTime?: number;
|
|
580
593
|
multishot?: number;
|
|
581
594
|
compatibilityTags?: string[];
|
|
582
|
-
|
|
595
|
+
behaviours?: IWeaponBehaviour[];
|
|
583
596
|
blockingAngle?: number;
|
|
584
597
|
comboDuration?: number;
|
|
585
598
|
followThrough?: number;
|
|
@@ -599,11 +612,11 @@ export interface IWeapon {
|
|
|
599
612
|
primeOmegaAttenuation?: number;
|
|
600
613
|
}
|
|
601
614
|
|
|
602
|
-
export interface
|
|
615
|
+
export interface IWeaponBehaviour {
|
|
603
616
|
stateName?: string;
|
|
604
617
|
projectile?: IProjectile;
|
|
605
|
-
impact?: IDamageTable;
|
|
606
618
|
chargedProjectile?: IProjectile;
|
|
619
|
+
impact?: IDamageTable;
|
|
607
620
|
}
|
|
608
621
|
|
|
609
622
|
export interface IProjectile {
|
package/package.json
CHANGED