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: 8 months ago
JSON representation
Some structured Dead by Daylight data.
- Host: GitHub
- URL: https://github.com/jaid/dead-by-daylight
- Owner: Jaid
- License: mit
- Created: 2020-01-23T12:35:01.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2023-03-04T08:31:54.000Z (about 3 years ago)
- Last Synced: 2025-04-18T23:08:20.356Z (about 1 year ago)
- Topics: add-ons, data, dataset, dbd, dead-by-daylight, directory, items, json, killers, lib, library, perks, survivors
- Language: JavaScript
- Homepage: https://github.com/Jaid/dead-by-daylight
- Size: 6.56 MB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: readme.md
- Funding: .github/funding.yml
- License: license.txt
Awesome Lists containing this project
README
# dead-by-daylight
**Some structured Dead by Daylight data.**
## Installation
```bash
npm install --save dead-by-daylight@^1.30.0
```
```bash
yarn add dead-by-daylight@^1.30.0
```
(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 git@github.com: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)