A simple library for parsing and evaluating dice strings for use in tabletop gaming.
Roll some dice using destiny::parsedicestring: ```rust use destiny::parsedicestring;
println!("{}", parsedicestring("1d4"));
println!("{}", parsedicestring("1d6"));
println!("{}", parsedicestring("2d6"));
println!("{}", parsedicestring("1d8 + 3"));
println!("{}", parsedicestring("1d6 + 2d8"));
Calculate distributions using destiny::DiceDistribution:
rust
use destiny::DiceDistribution;
let dd = DiceDistribution::new("2d6"); dd.ptable();
/* this will output: +------+--------+--------+ | Roll | #Rolls | Roll% | +======+========+========+ | 2 | 1 | 2.78% | +------+--------+--------+ | 3 | 2 | 5.56% | +------+--------+--------+ | 4 | 3 | 8.33% | +------+--------+--------+ | 5 | 4 | 11.11% | +------+--------+--------+ | 6 | 5 | 13.89% | +------+--------+--------+ | 7 | 6 | 16.67% | +------+--------+--------+ | 8 | 5 | 13.89% | +------+--------+--------+ | 9 | 4 | 11.11% | +------+--------+--------+ | 10 | 3 | 8.33% | +------+--------+--------+ | 11 | 2 | 5.56% | +------+--------+--------+ | 12 | 1 | 2.78% | +------+--------+--------+ */ ```