warframe-public-export-plus 0.3.2 → 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/ExportEnemies.json +12 -4
- package/ExportGear.json +34 -17
- package/ExportRailjackWeapons.json +1926 -116
- package/ExportResources.json +440 -12
- package/ExportRewards.json +386 -0
- package/ExportSyndicates.json +20630 -0
- package/ExportTextIcons.json +2087 -0
- package/ExportVendors.json +18156 -0
- package/ExportWeapons.json +11346 -588
- package/README.md +10 -9
- package/dict.de.json +459 -13
- package/dict.en.json +457 -11
- package/dict.es.json +458 -12
- package/dict.fr.json +458 -12
- package/dict.it.json +459 -13
- package/dict.ja.json +457 -11
- package/dict.ko.json +457 -11
- package/dict.pl.json +460 -14
- package/dict.pt.json +460 -14
- package/dict.ru.json +463 -17
- package/dict.tc.json +458 -12
- package/dict.th.json +455 -9
- package/dict.tr.json +458 -12
- package/dict.uk.json +465 -19
- package/dict.zh.json +458 -12
- package/index.d.ts +96 -6
- package/index.js +3 -0
- package/package.json +1 -1
- package/supplementals/languages.csv +16 -0
- /package/{samples → supplementals}/relic-chances.pluto +0 -0
package/index.d.ts
CHANGED
|
@@ -40,7 +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>;
|
|
44
|
+
export declare const ExportTextIcons: Record<string, ITextIcon>;
|
|
43
45
|
export declare const ExportUpgrades: Record<string, IUpgrade>;
|
|
46
|
+
export declare const ExportVendors: Record<string, IVendor>;
|
|
44
47
|
export declare const ExportWarframes: Record<string, IPowersuit>;
|
|
45
48
|
export declare const ExportWeapons: Record<string, IWeapon>;
|
|
46
49
|
|
|
@@ -151,7 +154,11 @@ export interface IFlavourItem {
|
|
|
151
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";
|
|
152
155
|
codexSecret: boolean;
|
|
153
156
|
excludeFromCodex?: boolean;
|
|
154
|
-
hexColours?:
|
|
157
|
+
hexColours?: IColour[];
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
export interface IColour {
|
|
161
|
+
value: string;
|
|
155
162
|
}
|
|
156
163
|
|
|
157
164
|
export interface IFocusUpgrade {
|
|
@@ -177,11 +184,12 @@ export interface IFusionBundle {
|
|
|
177
184
|
}
|
|
178
185
|
|
|
179
186
|
export interface IGear {
|
|
180
|
-
name:
|
|
181
|
-
description:
|
|
182
|
-
icon:
|
|
183
|
-
codexSecret:
|
|
184
|
-
parentName:
|
|
187
|
+
name: string;
|
|
188
|
+
description: string;
|
|
189
|
+
icon: string;
|
|
190
|
+
codexSecret: boolean;
|
|
191
|
+
parentName: string;
|
|
192
|
+
purchaseQuantity?: number;
|
|
185
193
|
}
|
|
186
194
|
|
|
187
195
|
export interface IImage {
|
|
@@ -285,6 +293,8 @@ export interface IRailjackWeapon {
|
|
|
285
293
|
magazineSize: number;
|
|
286
294
|
reloadTime: number;
|
|
287
295
|
multishot: number;
|
|
296
|
+
compatibilityTags?: string[];
|
|
297
|
+
behaviors?: IWeaponBehavior[];
|
|
288
298
|
}
|
|
289
299
|
|
|
290
300
|
export interface IRecipe {
|
|
@@ -383,6 +393,43 @@ export interface ISentinel {
|
|
|
383
393
|
defaultWeapon?: string;
|
|
384
394
|
}
|
|
385
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
|
+
|
|
421
|
+
export interface ITextIcon {
|
|
422
|
+
DIT_PS4?: string;
|
|
423
|
+
DIT_XBONE?: string;
|
|
424
|
+
DIT_STEAM?: string;
|
|
425
|
+
DIT_AGNOSTIC?: string;
|
|
426
|
+
DIT_SWITCH?: string;
|
|
427
|
+
DIT_PC?: string;
|
|
428
|
+
DIT_PS5?: string;
|
|
429
|
+
DIT_IOS?: string;
|
|
430
|
+
DIT_AUTO?: string;
|
|
431
|
+
}
|
|
432
|
+
|
|
386
433
|
export interface IUpgrade {
|
|
387
434
|
name: string;
|
|
388
435
|
icon: string;
|
|
@@ -423,6 +470,16 @@ export interface IUpgrade {
|
|
|
423
470
|
}[];
|
|
424
471
|
}
|
|
425
472
|
|
|
473
|
+
export interface IVendor {
|
|
474
|
+
items: {
|
|
475
|
+
storeItem: string;
|
|
476
|
+
itemPrices: {
|
|
477
|
+
ItemCount: number;
|
|
478
|
+
ItemType: string;
|
|
479
|
+
}[];
|
|
480
|
+
}[];
|
|
481
|
+
}
|
|
482
|
+
|
|
426
483
|
export interface IPowersuit {
|
|
427
484
|
name: string;
|
|
428
485
|
parentName: string;
|
|
@@ -465,6 +522,8 @@ export interface IWeapon {
|
|
|
465
522
|
magazineSize?: number;
|
|
466
523
|
reloadTime?: number;
|
|
467
524
|
multishot?: number;
|
|
525
|
+
compatibilityTags?: string[];
|
|
526
|
+
behaviors?: IWeaponBehavior[];
|
|
468
527
|
blockingAngle?: number;
|
|
469
528
|
comboDuration?: number;
|
|
470
529
|
followThrough?: number;
|
|
@@ -483,3 +542,34 @@ export interface IWeapon {
|
|
|
483
542
|
excludeFromCodex?: boolean;
|
|
484
543
|
primeOmegaAttenuation?: number;
|
|
485
544
|
}
|
|
545
|
+
|
|
546
|
+
export interface IWeaponBehavior {
|
|
547
|
+
stateName?: string;
|
|
548
|
+
projectile?: IProjectile;
|
|
549
|
+
chargedProjectile?: IProjectile;
|
|
550
|
+
impact: IDamageTable;
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
export interface IProjectile {
|
|
554
|
+
attack?: IDamageTable;
|
|
555
|
+
embedDeathAttack?: IDamageTable;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
export interface IDamageTable {
|
|
559
|
+
DT_IMPACT?: number;
|
|
560
|
+
DT_PUNCTURE?: number;
|
|
561
|
+
DT_SLASH?: number;
|
|
562
|
+
DT_FIRE?: number;
|
|
563
|
+
DT_FREEZE?: number;
|
|
564
|
+
DT_ELECTRICITY?: number;
|
|
565
|
+
DT_POISON?: number;
|
|
566
|
+
DT_EXPLOSION?: number;
|
|
567
|
+
DT_RADIATION?: number;
|
|
568
|
+
DT_GAS?: number;
|
|
569
|
+
DT_MAGNETIC?: number;
|
|
570
|
+
DT_VIRAL?: number;
|
|
571
|
+
DT_CORROSIVE?: number;
|
|
572
|
+
DT_RADIANT?: number;
|
|
573
|
+
DT_SENTIENT?: number;
|
|
574
|
+
DT_FINISHER?: number;
|
|
575
|
+
}
|
package/index.js
CHANGED
|
@@ -42,7 +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");
|
|
46
|
+
PublicExportPlus.ExportTextIcons = require("./ExportTextIcons.json");
|
|
45
47
|
PublicExportPlus.ExportUpgrades = require("./ExportUpgrades.json");
|
|
48
|
+
PublicExportPlus.ExportVendors = require("./ExportVendors.json");
|
|
46
49
|
PublicExportPlus.ExportWarframes = require("./ExportWarframes.json");
|
|
47
50
|
PublicExportPlus.ExportWeapons = require("./ExportWeapons.json");
|
|
48
51
|
|
package/package.json
CHANGED
|
@@ -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
|