User guide All recipes Tutorial Function reference Open playground

Brindlewood Bay — Theorize

At the table

In Brindlewood Bay, the Theorize move is how the Mavens nail down whodunit. Once they have talked through a theory (and hold enough Clues—at least half the mystery’s Complexity, rounded up), they roll:

2d6 + Clues in the theory − Complexity

Read the total:

TotalResult
6−The theory is wrong; the Keeper responds.
7–9The theory is right, but the Keeper adds a snag to the answer or makes acting on it risky.
10–11The theory is right; the Keeper offers a clear chance to stop the culprit or avert disaster.
12+As 10+, and someone tied to Brindlewood’s conspiracy outs themselves to the Mavens.

“Clues in the theory” means clues you folded into the explanation or accounted for—not every Clue the table might hold.

Try it

In the playground, open this recipe in the playground and click Run. Defaults use Complexity 6 and 5 clues in the roll; tweak COMPLEXITY and CLUES in the editor to match your mystery.

The script

Scale = (
    scale()
    .step("INCORRECT", ..6)
    .step("CORRECT_COMPLICATION", 7..9)
    .step("CORRECT", 10..11)
    .step("CONSPIRACY_REVEAL", 12..)
)

COMPLEXITY = 6
CLUES = 5

roll = 2d6 + CLUES - COMPLEXITY
out = roll.bucket(Scale)
output("theorize", out)
output("p_not_wrong", out.p_at_least("CORRECT_COMPLICATION"))
output("p_clean_correct", out.p_at_least("CORRECT"))
output("p_conspiracy_reveal", out.p_at_least("CONSPIRACY_REVEAL"))

rows = [
    ("{} clues in theory".format(c), (2d6 + c - COMPLEXITY).bucket(Scale).p_at_least("CORRECT_COMPLICATION"))
    for c in range(3, 9)
]
output("p_clean_by_clues", prob_table(rows))

theorize · Outcomes

outcome%fracX/36
INCORRECT58.37/1221
CORRECT_COMPLICATION33.31/312
CORRECT8.331/123
CONSPIRACY_REVEAL0.0000

p_not_wrong · Prob

outcome%fracX/36
p_not_wrong41.75/1215

p_clean_correct · Prob

outcome%fracX/36
p_clean_correct8.331/123

p_conspiracy_reveal · Prob

outcome%fracX/36
p_conspiracy_reveal0.0000

p_clean_by_clues · Table

outcome%fracX/36
3 clues in theory16.71/66
4 clues in theory27.85/1810
5 clues in theory41.75/1215
6 clues in theory58.37/1221
7 clues in theory72.213/1826
8 clues in theory83.35/630