warframe-public-export-plus 0.2.3 → 0.2.5
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/ExportArcanes.json +36 -0
- package/ExportBundles.json +9286 -4484
- package/ExportCustoms.json +385 -15
- package/ExportDojoRecipes.json +158 -0
- package/ExportFlavour.json +2662 -0
- package/ExportImages.json +312 -3
- package/ExportKeys.json +3240 -73
- package/ExportRecipes.json +241 -14
- package/ExportRegions.json +829 -227
- package/ExportResources.json +346 -48
- package/ExportSortieRewards.json +9 -9
- package/ExportUpgrades.json +426 -178
- package/ExportWarframes.json +53 -3
- package/ExportWeapons.json +687 -10
- package/README.md +17 -14
- package/dict.de.json +752 -340
- package/dict.en.json +710 -298
- package/dict.es.json +713 -301
- package/dict.fr.json +718 -306
- package/dict.it.json +728 -316
- package/dict.ja.json +672 -260
- package/dict.ko.json +679 -267
- package/dict.pl.json +742 -330
- package/dict.pt.json +730 -318
- package/dict.ru.json +713 -301
- package/dict.tc.json +740 -328
- package/dict.th.json +756 -344
- package/dict.tr.json +696 -284
- package/dict.uk.json +739 -327
- package/dict.zh.json +701 -289
- package/index.d.ts +46 -19
- package/index.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,25 +14,28 @@ Instead of ExportManifest, this project adds an `icon` field to most exports, wh
|
|
|
14
14
|
|
|
15
15
|
## Notes
|
|
16
16
|
|
|
17
|
-
###
|
|
17
|
+
### ExportBundles
|
|
18
|
+
- This export is specific to this project, as there is no such data in the official Public Export.
|
|
18
19
|
|
|
19
|
-
|
|
20
|
-
-
|
|
20
|
+
### ExportDojoRecipes
|
|
21
|
+
- This `price` (credits), `skipTimePrice` (platinum), and `ingredients` are for Moon clans. To convert these e.g. to Ghost clan values, simply multiply them by 0.01 (1 / 100) with a lower limit of 1.
|
|
22
|
+
- This export is specific to this project, as there is no such data in the official Public Export.
|
|
21
23
|
|
|
22
|
-
###
|
|
24
|
+
### ExportRegions
|
|
25
|
+
- Crossfire missions can be detected by the `secondaryFactionIndex` field being present. The `/Lotus/Language/Missions/MissionName_Crossfire` label may be used for their mission type.
|
|
26
|
+
- Tyana Pass (`SolNode450`) is a bit special in that it uses the `/Lotus/Language/Missions/DualDefenseCompare` label for the faction.
|
|
27
|
+
|
|
28
|
+
### ExportRelics
|
|
29
|
+
- There is no `name` field, instead the added `category` and `era` fields can be used in conjuction with `/Lotus/Language/Relics/VoidProjectionName` to construct the name.
|
|
23
30
|
|
|
24
|
-
|
|
31
|
+
### ExportUpgrades
|
|
32
|
+
- Several mods share the same name, e.g. for "Viality" and "Pressure Point" there's 3 mods each. Some of these might be [flawed variants](https://warframe.fandom.com/wiki/Flawed_Mods), but others might simply be forgotten development artefacts. These can be avoided by checking that `isStarter` and `isFrivilous` are both absent.
|
|
25
33
|
- Challenge complications are combined using `/Lotus/Language/Challenges/Challenge_Complication_Combiner`.
|
|
26
34
|
|
|
27
35
|
### ExportWarframes
|
|
28
|
-
|
|
29
36
|
- The `health`, `shield`, `armor`, and `power` values represent the state at rank 0. [See here for an approach to level-scaling these stats.](https://github.com/Sainan/warframe-build-evaluator/blob/d05257f704e688ec387c697c6768b951cf3d5389/evaluator.pluto#L438-L500)
|
|
30
37
|
|
|
31
|
-
###
|
|
32
|
-
|
|
33
|
-
-
|
|
34
|
-
|
|
35
|
-
### ExportDojoRecipes
|
|
36
|
-
|
|
37
|
-
- This `price` (credits), `skipTimePrice` (platinum), and `ingredients` are for Moon clans. To convert these e.g. to Ghost clan values, simply multiply them by 0.01 (1 / 100) with a lower limit of 1.
|
|
38
|
-
- This export is specific to this project, as there is no such data in the official Public Export.
|
|
38
|
+
### ExportWeapons
|
|
39
|
+
- Non-weapon items such as modular parts are in here as well. These can be filtered by checking if `totalDamage` is 0.
|
|
40
|
+
- Kitgun Chambers also have a `primeOmegaAttenuation` \[sic\] field, this is the Riven Disposition for when the Kitgun is a primary instead of secondary weapon.
|
|
41
|
+
- The `damagePerShot` array is documented [here](https://warframe.fandom.com/wiki/Public_Export#Guns).
|