warframe-worldstate-data 2.11.7 → 2.12.0
Sign up to get free protection for your applications and to get access to all the features.
- package/data/languages.json +53 -1
- package/package.json +3 -3
- package/tools/translation.js +6 -0
package/data/languages.json
CHANGED
@@ -18774,5 +18774,57 @@
|
|
18774
18774
|
},
|
18775
18775
|
"/Lotus/Language/JadeShadows/JadeShadowsEventScore": {
|
18776
18776
|
"value": "Volatile Motes Collection Progress"
|
18777
|
+
},
|
18778
|
+
"OperatorLockout": {
|
18779
|
+
"value": "Transference Distortion",
|
18780
|
+
"description": "Transference into Operator and Drifter is blocked."
|
18781
|
+
},
|
18782
|
+
"AbilityLockout": {
|
18783
|
+
"value": "Powerless",
|
18784
|
+
"description": "All Abilities are disabled until the squad kills 50 enemies."
|
18785
|
+
},
|
18786
|
+
"TimeDilation": {
|
18787
|
+
"value": "Abbreviated Abilities",
|
18788
|
+
"description": "Ability durations reduced by 50%."
|
18789
|
+
},
|
18790
|
+
"Framecurse": {
|
18791
|
+
"value": "Framecurse syndrome",
|
18792
|
+
"description": "Activating an Ability inflicts 50 damage upon you."
|
18793
|
+
},
|
18794
|
+
"FragileNodes": {
|
18795
|
+
"value": "Unified Purpose",
|
18796
|
+
"description": "Enemies can target and destry Conduits."
|
18797
|
+
},
|
18798
|
+
"LostInTranslation": {
|
18799
|
+
"value": "Glyph Inflation",
|
18800
|
+
"description": "The security system requires twice as many Vosphene Glyphs to activate."
|
18801
|
+
},
|
18802
|
+
"InfiniteTide": {
|
18803
|
+
"value": "Relentless Tide",
|
18804
|
+
"description": "The Fragmented Tide never stops attacking."
|
18805
|
+
},
|
18806
|
+
"AntiMaterialWeapons": {
|
18807
|
+
"value": "Commanding Culverins",
|
18808
|
+
"description": "Rogue Culverins equip weapons that deal 5x Damage to Overguard and Necramechs."
|
18809
|
+
},
|
18810
|
+
"AcceleratedEnemies": {
|
18811
|
+
"value": "Bold Venture",
|
18812
|
+
"description": "Enemies deal -15% Damage and take +15% Damage but gain +15% Movement Speed, Attack Speed, and Fire Rate."
|
18813
|
+
},
|
18814
|
+
"Deflectors": {
|
18815
|
+
"value": "Fortified Foes",
|
18816
|
+
"description": "Guardian Eximus units may be encountered, including Guardian Eximus Necramechs."
|
18817
|
+
},
|
18818
|
+
"PointBlank": {
|
18819
|
+
"value": "Myopic Munitions",
|
18820
|
+
"description": "Enemies will only take damage if a player is within 15m of them."
|
18821
|
+
},
|
18822
|
+
"ShieldedFoes": {
|
18823
|
+
"value": "Bolstered Belligerents",
|
18824
|
+
"description": "All enemies have Overguard equal to 50% of their max health."
|
18825
|
+
},
|
18826
|
+
"Voidburst": {
|
18827
|
+
"value": "Postmortal Surges",
|
18828
|
+
"description": "Slain enemies burts with Void enerhy."
|
18777
18829
|
}
|
18778
|
-
}
|
18830
|
+
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "warframe-worldstate-data",
|
3
|
-
"version": "2.
|
3
|
+
"version": "2.12.0",
|
4
4
|
"description": "Warframe data for use with warframe-worldstate-parser",
|
5
5
|
"keywords": [
|
6
6
|
"warframe-worldstate",
|
@@ -123,7 +123,7 @@
|
|
123
123
|
"devDependencies": {
|
124
124
|
"@commitlint/cli": "^19.2.1",
|
125
125
|
"@commitlint/config-conventional": "^19.1.0",
|
126
|
-
"@types/chai": "^
|
126
|
+
"@types/chai": "^5.0.0",
|
127
127
|
"@types/chai-json-schema": "^1.4.9",
|
128
128
|
"c8": "^10.1.2",
|
129
129
|
"chai": "^5.0.3",
|
@@ -134,7 +134,7 @@
|
|
134
134
|
"lint-staged": "^15.2.2",
|
135
135
|
"mocha": "^10.3.0",
|
136
136
|
"prettier": "^3.2.5",
|
137
|
-
"sinon": "^
|
137
|
+
"sinon": "^19.0.2",
|
138
138
|
"sinon-chai": "^4.0.0"
|
139
139
|
},
|
140
140
|
"engines": {
|
package/tools/translation.js
CHANGED
@@ -335,6 +335,9 @@ export const translatePolarity = (pol = '') => valMapping(pol, polarityMap);
|
|
335
335
|
* @property {function} toTitleCase - Format provided string as titlecase
|
336
336
|
* @property {function} translateFocus - Translate focus schools
|
337
337
|
* @property {function} translatePolarity - Translate polarities
|
338
|
+
* @property {function} archonShard - Converts archon shard names
|
339
|
+
* @property {function} archonShardColor - Converts archon shard names to in-game color values
|
340
|
+
* @property {function} archonShardUpgradeType - Convert archon shard upgrade type
|
338
341
|
*/
|
339
342
|
export default {
|
340
343
|
faction,
|
@@ -362,4 +365,7 @@ export default {
|
|
362
365
|
toTitleCase,
|
363
366
|
translateFocus,
|
364
367
|
translatePolarity,
|
368
|
+
archonShard,
|
369
|
+
archonShardColor,
|
370
|
+
archonShardUpgradeType,
|
365
371
|
};
|