genesys_dice_command_parser/
dice.rs

1
2/// Represents the type of dice that can be rolled
3#[derive(Clone, Debug, PartialEq, Eq, Hash, Copy)]
4pub enum Dice {
5    /// The Boost Dice is a blue d6.
6    Boost,
7    /// The Ability Dice is a green d8.
8    Ability,
9    /// The Proficiency Dice is a yellow d12.
10    Proficiency,
11    /// The Setback Dice is a black d6.
12    Setback,
13     /// The Difficulty Dice is a purple d8.
14    Difficulty,
15    /// The Challenge Dice is a red d12.
16    Challenge,
17    /// The Force is a white d12.
18    Force
19}