Similar to
xdice.Pattern(pattern_string).compile()
Returns a compiled Pattern object.
Pattern object can then be rolled to obtain a PatternScore object.
Similar to
xdice.Pattern(pattern_string).roll()
Similar to
xdice.Dice(faces, amount).roll()
Dice objectSet of dice.
Instantiate a set of dice.
Role the dice and return a Score object
####[classmethod] Dice.parse(cls, pattern)
Parse a pattern of the form 'AdX', where A and X are positive integers. Returns the corresponding Dice object.
Score objectScore is a subclass of integer, you can then manipulate it as you would do with an integer.
It also provides an access to the detailed score with the property 'detail'. 'detail' is the list of the scores obtained by each dice.
Score class can also be used as an iterable, to walk trough the individual scores.
eg:
>>> s = Score([1,2,3])
>>> print(s)
6
>>> s + 1
7
>>> list(s)
[1,2,3]
iterableshould only contain integers
Score value will be the sum of the list's values.
Pattern objectDice notation pattern.
Instantiate a Pattern object.
Parse the pattern. Two properties are updated at this time:
The ready-to-be-formatted string built from the instr argument.
Eg: "1d6+4+1d4" => "{0}+4-{1}"
The list of parsed dice.
Eg: "1d6+4+1d4" => [, ]
pattern.roll()
Compile the pattern if it has not been yet, then roll the dice.
Return a PatternScore object.
PatternScoreobjectPatternScore is a subclass of integer, you can then manipulate it as you would do with an integer.
Moreover, you can get the list of the scores with the score(i) or scores() methods, and retrieve a formatted result with the format() method.
pattern_score.scores()
Returns the list of Score objects extracted from the pattern and rolled.
pattern_score.score(i)
Returns the Score object at index i.
pattern_score.format()
Return a formatted string detailing the result of the roll.
Eg: '3d6+4' => '[1,5,6]+4'