mwg API
    Preparing search index...

    Interface RareEntry<T>

    an extra entry that may or may not join the roster this roll, beyond the regular ones

    interface RareEntry<T> {
        chance: number;
        enabled?: boolean;
        value: T;
    }

    Type Parameters

    • T
    Index
    chance: number
    enabled?: boolean

    false skips this entry's roll entirely without consuming RNG - an explicit deferred roll, distinct from one that rolled and lost ('skipped'), so a parity trace can tell "this depth never asks" from "this depth asked and the roll failed"

    value: T