warframe-public-export-plus 0.4.2 → 0.4.3

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;
@@ -342,7 +350,7 @@ export interface IRailjackWeapon {
342
350
  reloadTime: number;
343
351
  multishot: number;
344
352
  compatibilityTags?: string[];
345
- behaviors?: IWeaponBehavior[];
353
+ behaviours?: IWeaponBehaviour[];
346
354
  }
347
355
 
348
356
  export interface IRecipe {
@@ -579,7 +587,7 @@ export interface IWeapon {
579
587
  reloadTime?: number;
580
588
  multishot?: number;
581
589
  compatibilityTags?: string[];
582
- behaviors?: IWeaponBehavior[];
590
+ behaviours?: IWeaponBehaviour[];
583
591
  blockingAngle?: number;
584
592
  comboDuration?: number;
585
593
  followThrough?: number;
@@ -599,11 +607,11 @@ export interface IWeapon {
599
607
  primeOmegaAttenuation?: number;
600
608
  }
601
609
 
602
- export interface IWeaponBehavior {
610
+ export interface IWeaponBehaviour {
603
611
  stateName?: string;
604
612
  projectile?: IProjectile;
605
- impact?: IDamageTable;
606
613
  chargedProjectile?: IProjectile;
614
+ impact?: IDamageTable;
607
615
  }
608
616
 
609
617
  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.3",
4
+ "repository": "github:calamity-inc/warframe-public-export-plus"
5
5
  }