@alpaca-software/40kdc-data
    Preparing search index...

    Interface DiceGatedEffect

    This interface was referenced by 0KdcBundledSchemas's JSON-Schema via the definition "dice-gated-effect".

    interface DiceGatedEffect {
        type: "dice-gated";
        dice: string;
        threshold: number | "leadership" | "toughness" | "save";
        comparison?: "gte" | "lte" | "gt" | "lt" | "eq";
        on_success?: EffectNode | null;
        on_fail?: EffectNode | null;
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown
    Index

    Properties

    type: "dice-gated"
    dice: string

    Dice expression, e.g. 'D6', '2D6'

    threshold: number | "leadership" | "toughness" | "save"

    Fixed threshold or model characteristic to compare against

    comparison?: "gte" | "lte" | "gt" | "lt" | "eq"
    on_success?: EffectNode | null
    on_fail?: EffectNode | null