warframe-worldstate-data 2.5.1 → 2.5.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/package.json +1 -1
- package/tools/translation.js +3 -2
package/package.json
CHANGED
package/tools/translation.js
CHANGED
@@ -280,7 +280,7 @@ const valMapping = (key, map) => {
|
|
280
280
|
|
281
281
|
const focusMap = {
|
282
282
|
'Focus/Attack': 'Madurai',
|
283
|
-
'Focus/Defense': '
|
283
|
+
'Focus/Defense': 'Vazarin',
|
284
284
|
'Focus/Tactic': 'Naramon',
|
285
285
|
'Focus/Power': 'Zenurik',
|
286
286
|
'Focus/Ward': 'Unairu',
|
@@ -294,11 +294,12 @@ export const translateFocus = (focus = '') => valMapping(focus, focusMap);
|
|
294
294
|
|
295
295
|
const polarityMap = {
|
296
296
|
AP_ATTACK: 'Madurai',
|
297
|
-
AP_DEFENSE: '
|
297
|
+
AP_DEFENSE: 'Vazarin',
|
298
298
|
AP_TACTIC: 'Naramon',
|
299
299
|
AP_POWER: 'Zenurik',
|
300
300
|
AP_WARD: 'Unairu',
|
301
301
|
AP_UMBRA: 'Umbra',
|
302
|
+
AP_ANY: 'Aura',
|
302
303
|
};
|
303
304
|
|
304
305
|
/**
|