I failed to figure out how to replicate the following situation:
- Roll 1d6
- The result is the number of d6s that you roll next.
Related to that, I was wondering if the construct:
d6 = Dice.from_dice(6)
result = d6 * d6
Would be a good way to represent that operation.
I failed to figure out how to replicate the following situation:
Related to that, I was wondering if the construct:
Would be a good way to represent that operation.