warframe-worldstate-data 1.27.9 → 1.28.1
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/.nvmrc +1 -0
- package/data/uk/arcanes.json +461 -0
- package/data/uk/conclaveData.json +425 -0
- package/data/uk/eventsData.json +27 -0
- package/data/uk/factionsData.json +20 -0
- package/data/uk/fissureModifiers.json +22 -0
- package/data/uk/languages.json +18262 -0
- package/data/uk/missionTypes.json +68 -0
- package/data/uk/operationTypes.json +6 -0
- package/data/uk/persistentEnemyData.json +21 -0
- package/data/uk/solNodes.json +2122 -0
- package/data/uk/sortieData.json +4253 -0
- package/data/uk/steelPath.json +114 -0
- package/data/uk/syndicatesData.json +80 -0
- package/data/uk/synthTargets.json +1262 -0
- package/data/uk/tutorials.json +17 -0
- package/data/uk/upgradeTypes.json +14 -0
- package/exports.js +1 -1
- package/package.json +1 -1
@@ -0,0 +1,17 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"regex": "focus",
|
4
|
+
"name": "Фокус",
|
5
|
+
"url": "https://youtu.be/IMltFZ97oXc"
|
6
|
+
},
|
7
|
+
{
|
8
|
+
"regex": "mods?",
|
9
|
+
"name": "Модифікатори",
|
10
|
+
"url": "https://youtu.be/ZuYfEJzpR4A"
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"regex": "dojos?",
|
14
|
+
"name": "Додзьо",
|
15
|
+
"url": "https://youtu.be/M28grdARKoQ"
|
16
|
+
}
|
17
|
+
]
|
@@ -0,0 +1,14 @@
|
|
1
|
+
{
|
2
|
+
"GAMEPLAY_KILL_XP_AMOUNT": {
|
3
|
+
"value": "Mission Kill XP"
|
4
|
+
},
|
5
|
+
"GAMEPLAY_PICKUP_AMOUNT": {
|
6
|
+
"value": "Resource Drop Amount"
|
7
|
+
},
|
8
|
+
"GAMEPLAY_MONEY_REWARD_AMOUNT": {
|
9
|
+
"value": "Credit Drop chance"
|
10
|
+
},
|
11
|
+
"GAMEPLAY_MONEY_PICKUP_AMOUNT": {
|
12
|
+
"value": "Credit Drop amount"
|
13
|
+
}
|
14
|
+
}
|
package/exports.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
const safeRequire = require('./safeRequire');
|
4
4
|
|
5
|
-
const locales = ['de', 'es', 'fr', 'it', 'ko', 'pl', 'pt', 'ru', 'zh', 'cs', 'sr'];
|
5
|
+
const locales = ['de', 'es', 'fr', 'it', 'ko', 'pl', 'pt', 'ru', 'zh', 'cs', 'sr', 'uk'];
|
6
6
|
|
7
7
|
/**
|
8
8
|
* Synthesis target information
|