warframe-public-export-plus 0.3.3 → 0.3.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
@@ -40,8 +40,10 @@ export declare const ExportRelics: Record<string, IRelic>;
40
40
  export declare const ExportResources: Record<string, IResource>;
41
41
  export declare const ExportRewards: Record<string, TMissionDeck>;
42
42
  export declare const ExportSentinels: Record<string, ISentinel>;
43
+ export declare const ExportSyndicates: Record<string, ISyndicate>;
43
44
  export declare const ExportTextIcons: Record<string, ITextIcon>;
44
45
  export declare const ExportUpgrades: Record<string, IUpgrade>;
46
+ export declare const ExportVendors: Record<string, IVendor>;
45
47
  export declare const ExportWarframes: Record<string, IPowersuit>;
46
48
  export declare const ExportWeapons: Record<string, IWeapon>;
47
49
 
@@ -152,7 +154,11 @@ export interface IFlavourItem {
152
154
  base: "/EE/Types/Engine/UIBackground" | "/EE/Types/Engine/UICursor" | "/EE/Types/Engine/UISounds" | "/Lotus/Types/Game/UIStyle" | "/Lotus/Types/Game/ActionFigureDiorama" | "/Lotus/Types/Game/KubrowPet/Colors/KubrowPetColor" | "/Lotus/Types/Game/NotePack" | "/Lotus/Types/Game/PoseSet" | "/Lotus/Types/Game/QuartersWallTattoo" | "/EE/Types/Engine/UIFlavourItem" | "/Lotus/Types/Items/Emotes/Emote" | "/Lotus/Types/Items/VideoWallBackdropItem" | "/Lotus/Types/Items/VideoWallSoundscapeItem" | "/Lotus/Types/Items/AvatarImageItem" | "/Lotus/Types/Items/ColorPickerItem" | "/Lotus/Types/Items/ShipExteriorSkinItem" | "/Lotus/Types/Items/ShipAttachmentItem";
153
155
  codexSecret: boolean;
154
156
  excludeFromCodex?: boolean;
155
- hexColours?: { value: string }[];
157
+ hexColours?: IColour[];
158
+ }
159
+
160
+ export interface IColour {
161
+ value: string;
156
162
  }
157
163
 
158
164
  export interface IFocusUpgrade {
@@ -387,6 +393,31 @@ export interface ISentinel {
387
393
  defaultWeapon?: string;
388
394
  }
389
395
 
396
+ export interface ISyndicate {
397
+ name: string;
398
+ icon: string;
399
+ description?: string;
400
+ colour: IColour;
401
+ titles?: {
402
+ level: number;
403
+ name: string;
404
+ icon?: string;
405
+ description?: string;
406
+ }[];
407
+ medallions?: {
408
+ itemType: string;
409
+ standing: number;
410
+ }[];
411
+ medallionsCappedByDailyLimit?: boolean;
412
+ favours: {
413
+ storeItem: string;
414
+ standingCost: number;
415
+ creditsCost: number;
416
+ requiredLevel: number;
417
+ rankUpReward: boolean;
418
+ }[];
419
+ }
420
+
390
421
  export interface ITextIcon {
391
422
  DIT_PS4?: string;
392
423
  DIT_XBONE?: string;
@@ -439,6 +470,16 @@ export interface IUpgrade {
439
470
  }[];
440
471
  }
441
472
 
473
+ export interface IVendor {
474
+ items: {
475
+ storeItem: string;
476
+ itemPrices: {
477
+ ItemCount: number;
478
+ ItemType: string;
479
+ }[];
480
+ }[];
481
+ }
482
+
442
483
  export interface IPowersuit {
443
484
  name: string;
444
485
  parentName: string;
package/index.js CHANGED
@@ -42,8 +42,10 @@ PublicExportPlus.ExportRelics = require("./ExportRelics.json");
42
42
  PublicExportPlus.ExportResources = require("./ExportResources.json");
43
43
  PublicExportPlus.ExportRewards = require("./ExportRewards.json");
44
44
  PublicExportPlus.ExportSentinels = require("./ExportSentinels.json");
45
+ PublicExportPlus.ExportSyndicates = require("./ExportSyndicates.json");
45
46
  PublicExportPlus.ExportTextIcons = require("./ExportTextIcons.json");
46
47
  PublicExportPlus.ExportUpgrades = require("./ExportUpgrades.json");
48
+ PublicExportPlus.ExportVendors = require("./ExportVendors.json");
47
49
  PublicExportPlus.ExportWarframes = require("./ExportWarframes.json");
48
50
  PublicExportPlus.ExportWeapons = require("./ExportWeapons.json");
49
51
 
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "warframe-public-export-plus",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "repository": "github:calamity-inc/warframe-public-export-plus"
5
5
  }
@@ -0,0 +1,16 @@
1
+ code,native name,english name
2
+ en,English,English
3
+ de,Deutsch,German
4
+ es,Español,Spanish
5
+ fr,Français,French
6
+ it,Italiano,Italian
7
+ ja,日本語,Japanese
8
+ ko,한국어,Korean
9
+ pl,Polski,Polish
10
+ pt,Português,Portuguese
11
+ ru,Русский,Russian
12
+ tr,Türkçe,Turkish
13
+ uk,Українська,Ukrainian
14
+ zh,简体中文,Simplified Chinese
15
+ tc,繁體中文,Traditional Chinese
16
+ th,แบบไทย,Thai
File without changes