warframe-worldstate-data 2.15.0 → 2.16.0
Sign up to get free protection for your applications and to get access to all the features.
- package/data/languages.json +10 -1
- package/package.json +1 -1
- package/safeImport.js +1 -1
package/data/languages.json
CHANGED
@@ -18845,5 +18845,14 @@
|
|
18845
18845
|
"RegeneratingEnemies": {
|
18846
18846
|
"value": "Hostile Regeneration",
|
18847
18847
|
"desc": "Enemy health slowly regenerates."
|
18848
|
+
},
|
18849
|
+
"/Lotus/Types/Gameplay/NarmerSorties/ArchonCrystalBorealMythic": {
|
18850
|
+
"value": "Tauforged Azure Archon Shard"
|
18851
|
+
},
|
18852
|
+
"/Lotus/Types/Gameplay/NarmerSorties/ArchonCrystalNiraMythic": {
|
18853
|
+
"value": "Tauforged Amber Archon Shard"
|
18854
|
+
},
|
18855
|
+
"/Lotus/Types/Gameplay/NarmerSorties/ArchonCrystalAmarMythic": {
|
18856
|
+
"value": "Tauforged Crimson Archon Shard"
|
18848
18857
|
}
|
18849
|
-
}
|
18858
|
+
}
|
package/package.json
CHANGED
package/safeImport.js
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
*/
|
7
7
|
const safeImport = async (path, fallback = {}) => {
|
8
8
|
try {
|
9
|
-
const mod = await import(path, path.includes('.json') ? {
|
9
|
+
const mod = await import(path, path.includes('.json') ? { with: { type: 'json' } } : {});
|
10
10
|
if (mod?.default) return mod.default;
|
11
11
|
return mod;
|
12
12
|
} catch (error) {
|