A simple dice rolling library


Keywords
dice, rolling, games
License
MIT
Install
pip install derby==0.4

Documentation

derby

simple dice rolling library


from derby import roll

stats = ['str','int','wis','dex','con','cha']
character = { stat: roll('3d6').value for stat in stats } # roll('4d6h3') if your GM is nice enough

examples

roll('1d20+1')
roll('2d20h1+1') # rolling with advantage
roll('4d6h3+1')  # same as roll('4d6+1h3')

# also supports doing comparisons
roll('3d6=18')
roll('1d20>14')