warframe-public-export-plus 0.2.2 → 0.2.4

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/README.md CHANGED
@@ -14,24 +14,28 @@ Instead of ExportManifest, this project adds an `icon` field to most exports, wh
14
14
 
15
15
  ## Notes
16
16
 
17
- ### ExportWeapons
18
-
19
- - Non-weapon items such as modular parts are in here as well. These can be filtered by checking if `totalDamage` is 0.
20
- - The `damagePerShot` array is documented [here](https://warframe.fandom.com/wiki/Public_Export#Guns).
21
-
22
- ### ExportUpgrades
23
-
24
- - Several mods share the same name, e.g. there's 3 mods called Vitality. These can be avoided by checking that `codexSecret` and `isStarter` are false/absent.
17
+ ### ExportBundles
18
+ - This export is specific to this project, as there is no such data in the official Public Export.
25
19
 
26
- ### ExportWarframes
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.
27
23
 
28
- - 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)
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.
29
27
 
30
28
  ### ExportRelics
31
-
32
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.
33
30
 
34
- ### ExportDojoRecipes
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.
33
+ - Challenge complications are combined using `/Lotus/Language/Challenges/Challenge_Complication_Combiner`.
35
34
 
36
- - 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.
37
- - This export is specific to this project, as there is no such data in the official Public Export.
35
+ ### ExportWarframes
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)
37
+
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).