roll-parser - v3.4.0
    Preparing search index...

    Type Alias ComparePoint

    A comparison threshold used by exploding dice, reroll, success counting, and crit-threshold overrides.

    The value is an ASTNode to support computed thresholds (1d6!>(1d2+3)), matching the pattern used by DiceNode.count and DiceNode.sides. The evaluated counterpart is ResolvedComparePoint.

    type ComparePoint = {
        operator: CompareOp;
        value: ASTNode;
    }
    Index
    operator: CompareOp
    value: ASTNode