warframe-public-export-plus 0.4.2 → 0.4.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/ExportArcanes.json +72 -79
- package/ExportBoosterPacks.json +51 -51
- package/ExportBundles.json +28 -0
- package/ExportCustoms.json +142 -0
- package/ExportDojoRecipes.json +25 -0
- package/ExportEnemies.json +13750 -0
- package/ExportFlavour.json +30 -0
- package/ExportGear.json +8 -0
- package/ExportImages.json +145 -1
- package/ExportKeys.json +22 -3
- package/ExportRailjackWeapons.json +116 -116
- package/ExportRecipes.json +244 -2
- package/ExportRelics.json +648 -0
- package/ExportResources.json +107 -37
- package/ExportRewards.json +868 -256
- package/ExportSentinels.json +31 -0
- package/ExportSyndicates.json +756 -0
- package/ExportTextIcons.json +3 -0
- package/ExportVendors.json +1750 -0
- package/ExportWarframes.json +94 -0
- package/ExportWeapons.json +1076 -626
- package/README.md +2 -2
- package/dict.de.json +143 -23
- package/dict.en.json +134 -14
- package/dict.es.json +141 -21
- package/dict.fr.json +144 -24
- package/dict.it.json +171 -51
- package/dict.ja.json +140 -20
- package/dict.ko.json +134 -14
- package/dict.pl.json +147 -27
- package/dict.pt.json +155 -35
- package/dict.ru.json +148 -28
- package/dict.tc.json +136 -16
- package/dict.th.json +337 -217
- package/dict.tr.json +146 -26
- package/dict.uk.json +236 -116
- package/dict.zh.json +187 -67
- package/index.d.ts +12 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,13 +4,13 @@ The most complete data source for all your Warframe needs and interests. Contain
|
|
|
4
4
|
|
|
5
5
|
## Localisations
|
|
6
6
|
|
|
7
|
-
Data and localisations are entirely split here (into Export\*.json and dict.\*.json, respectively). This should make it trivial to handle localizations in your projects without tons of duplicated data. Unfortunately, this may make it difficult to manually browse the data; however, you can type whatever you're looking for into [
|
|
7
|
+
Data and localisations are entirely split here (into Export\*.json and dict.\*.json, respectively). This should make it trivial to handle localizations in your projects without tons of duplicated data. Unfortunately, this may make it difficult to manually browse the data; however, you can type whatever you're looking for into [wfdata.io](https://wfdata.io/), which is uses this data and [is open-source](https://github.com/calamity-inc/wfdata.io).
|
|
8
8
|
|
|
9
9
|
## Images
|
|
10
10
|
|
|
11
11
|
Most exports here have an `icon` field, which contains a path, e.g. `/Lotus/Interface/Icons/Player/LotusSymbol.png`. There are a few ways to obtain an image from such a path:
|
|
12
12
|
- [Puxtril's Warframe Exporter](https://github.com/Puxtril/Warframe-Exporter) can be used entirely offline to export textures from your game files.
|
|
13
|
-
-
|
|
13
|
+
- raw.wfdata.io hosts all images and can be queried like this: <https://raw.wfdata.io/Lotus/Interface/Icons/Player/LotusSymbol.png>
|
|
14
14
|
- ExportImages can be used to find out if an image is hosted on `content.warframe.com/PublicExport`, in which case it can be obtained using by adding an exclamation mark followed by the `contentHash`, like so: <https://content.warframe.com/PublicExport/Lotus/Interface/Icons/Player/LotusSymbol.png!00_WC8orfy4NOtWelndlH7qmQ>
|
|
15
15
|
|
|
16
16
|
## Notes
|