Pool success counts
At the table
Pool games often ask: how many dice succeeded, or did any die show a particular face? Indie designs like The Pool use “any natural 1”; other rules want “at least two 8+ on 5d10.”
Try it
Copy the script into the playground editor and click Run.
The script
↗output("how_many_high", 3d6.count(5..))
output("any_one", dice_pool(2, 6).p_any(1))
how_many_high · DieRoll · mean 1.000
| outcome | % | frac | X/27 |
|---|---|---|---|
| 0 | 29.6 | 8/27 | 8 |
| 1 | 44.4 | 4/9 | 12 |
| 2 | 22.2 | 2/9 | 6 |
| 3 | 3.70 | 1/27 | 1 |
any_one · Prob
| outcome | % | frac | X/27 |
|---|---|---|---|
| any_one | 30.6 | 11/36 | 8 |