Dungeons and Dragons helper functions


License
MIT
Install
pip install familiar==0.1.3

Documentation

Familiar

A list of tools to help create D&D applications.

Installation

Run the following to install:

pip install familiar

Usage

from familiar import dice_roll

# dice_roll takes a number of dice to roll, number of sides on dice, and a modifier and returns a random result.

roll = dice_roll(2,6, 1)
print(roll)