See an interface for this running here
A TypeScript library for generating characters based on the tables presented in the This Is Your Life chapter of Xanathar's Guide To Everything for 5th edition Dungeons & Dragons.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
npm install --save tiyl
At its simplest, the dice roller is very simple to use. Take the following example:
import { Generator } from "tiyl";
const generator = new Generator();
const character = generator.generate();
console.log(character); // Outputs the randomly generated character.
Installing the dependencies is done using a standard npm i
.
npm run test
npm run build
We use SemVer for versioning. For the versions available, see the tags on this repository.
- Tom Wolfe - Initial work - trwolfe13
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details