Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jaid/dead-by-daylight

Some structured Dead by Daylight data.
https://github.com/jaid/dead-by-daylight

add-ons data dataset dbd dead-by-daylight directory items json killers lib library perks survivors

Last synced: 11 days ago
JSON representation

Some structured Dead by Daylight data.

Awesome Lists containing this project

README

        

# dead-by-daylight

License Sponsor dead-by-daylight
Build status Commits since v1.30.0 Last commit Issues
Latest version on npm Dependents Downloads

**Some structured Dead by Daylight data.**

## Installation

dead-by-daylight on npm

```bash
npm install --save dead-by-daylight@^1.30.0
```

dead-by-daylight on Yarn

```bash
yarn add dead-by-daylight@^1.30.0
```

@jaid/dead-by-daylight on GitHub Packages
(if [configured properly](https://help.github.com/en/github/managing-packages-with-github-packages/configuring-npm-for-use-with-github-packages))

```bash
npm install --save @jaid/dead-by-daylight@^1.30.0
```

## Example

```javascript
import deadByDaylight from "dead-by-daylight"

const result = deadByDaylight.perks.hauntedGround
```

Variable `result` will be:

```javascript
{
id: "hauntedGround",
title: "Hex: Haunted Ground",
iconId: "hauntedGround",
owner: "spirit",
rarity: "veryRare",
for: "killer",
level: 35,
iconPath: "UI/Icons/Perks/Haiti/iconPerks_hauntedGround.png",
visible: true,
released: true,
}
```

## Legal

Contains official Dead by Daylight content copied from the [Steam release](https://store.steampowered.com/app/381210). Copyright by [Behaviour Interactive](https://bhvr.com/).

## Development

Setting up:
```bash
git clone [email protected]:jaid/dead-by-daylight.git
cd dead-by-daylight
npm install
```
Testing:
```bash
npm run test:dev
```
Testing in production environment:
```bash
npm run test
```

## License
[MIT License](https://raw.githubusercontent.com/jaid/dead-by-daylight/master/license.txt)
Copyright © 2020, Jaid \ (https://github.com/jaid)