https://github.com/wfcd/warframe-worldstate-data
:package: A repository of Warframe data for use with warframe-worldstate-parser
https://github.com/wfcd/warframe-worldstate-data
warframe-data warframe-worldstate-parser
Last synced: 2 months ago
JSON representation
:package: A repository of Warframe data for use with warframe-worldstate-parser
- Host: GitHub
- URL: https://github.com/wfcd/warframe-worldstate-data
- Owner: WFCD
- License: mit
- Created: 2016-07-25T16:14:26.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2025-04-12T01:36:15.000Z (about 1 year ago)
- Last Synced: 2025-04-12T02:44:36.588Z (about 1 year ago)
- Topics: warframe-data, warframe-worldstate-parser
- Language: JavaScript
- Homepage:
- Size: 22.7 MB
- Stars: 55
- Watchers: 7
- Forks: 30
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Warframe Worldstate Data
[](https://github.com/WFCD/banner/blob/master/PROJECTS.md)
A repository of Warframe data for use with warframe-worldstate-parser
[](https://www.npmjs.com/package/warframe-worldstate-data)
[](https://crowdin.com/project/genesis-parser)
[](https://discord.gg/jGZxH9f)
[](https://github.com/semantic-release/semantic-release)
## Installation
**Published version:**
```bash
npm i -S warframe-worldstate-data@latest
```
**Recommended version:**
```bash
npm i -S git://github.com/wfcd/warframe-worldstate-data.git
```
## Usage
```javascript
import worldstateData from 'warframe-worldstate-data';
const nodes = worldstateData.solNodes;
const erpo = nodes['SolNode903'];
const { enemy, value, type } = erpo;
```
### Utilities
```javascript
import utilities from 'warframe-worldstate-data/utilities';
const { getLanguage } = utilities;
```
## Available data and formatting
| JSON | Data Accessor | Description |
| :------------------------- | :----------------: | :----------------------------------------------------------------------------------------------------------- |
| `conclaveData.json` | `conclave` | Stores conclave data for modes and categories |
| `eventsData.json` | `events` | Stores event strings. May be deprecated when languages.json is more complete. |
| `factionsData.json` | `factions` | Stores faction strings for identifying each faction |
| `fissureModifiers.json` | `fissureModifiers` | Fissure tier assignments corresponding to era names |
| `languages.json` | `languages` | General string storage for converting worldstate strings to display strings |
| `missionTypes.json` | `missionTypes` | Types of missions, ex.: `MT_EXCAVATE` corresponds to `Excavation` |
| `operationTypes.json` | `operationTypes` | Operation string conversions for global modifiers |
| `persistentEnemyData.json` | `persistentEnemy` | Persistent enemy data mappings. Currently only acolytes. |
| `solNodes.json` | `solNodes` | Data for each node in the solar system. Currently includes node name, base enemy type, and base mission type |
| `syndicateData.json` | `syndicates` | Mappings for worldstate syndicate names to displayable syndicate names. |
| `upgradeTypes.json` | `upgradeTypes` | Upgrade types for global modifiers. |