https://github.com/Cellule/dndGenerator
Npc Generator for Dungeon and Dragon
https://github.com/Cellule/dndGenerator
dnd npc-generator
Last synced: 6 months ago
JSON representation
Npc Generator for Dungeon and Dragon
- Host: GitHub
- URL: https://github.com/Cellule/dndGenerator
- Owner: Cellule
- License: mit
- Created: 2015-03-18T02:58:55.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2025-04-09T23:54:33.000Z (6 months ago)
- Last Synced: 2025-04-10T00:30:36.424Z (6 months ago)
- Topics: dnd, npc-generator
- Language: SCSS
- Homepage: https://www.npcgenerator.com/
- Size: 10.3 MB
- Stars: 218
- Watchers: 14
- Forks: 75
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Non-Player Character generator
Website for generating randomized Non-Player Characters (NPCs) with attributes, in-depth and unique descriptions as well as a plot hookUses the [NPC Generator library](https://github.com/Cellule/npc-generator) to generate NPCs.
## Development
### SetupYou will need to install [Node](https://nodejs.org/) on your system.
```
$ git clone https://github.com/Cellule/dndGenerator.git
$ cd dndGenerator
$ npm install
```### Run locally
Start local server
```
$ npm run dev
```### Test changes from the npc-generator library
Recommended to checkout the npc-generator library on your computer and use npm link to link it to the dndGenerator project.
```
$ git clone https://github.com/Cellule/npc-generator
$ cd npc-generator
$ npm run build
$ npm link
$ cd ../dndGenerator
$ npm link npc-generator
# Start local server
```