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/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
- behaviors?: IWeaponBehavior[];
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
- behaviors?: IWeaponBehavior[];
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 IWeaponBehavior {
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
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "warframe-public-export-plus",
3
- "version": "0.4.2",
4
- "repository": "github:omni-wf/warframe-public-export-plus"
3
+ "version": "0.4.4",
4
+ "repository": "github:calamity-inc/warframe-public-export-plus"
5
5
  }