Pathfinder 1e for Foundry VTT
    Preparing search index...

    Interface D20RollOptions

    interface D20RollOptions {
        action?: string;
        bonus?: string | number;
        check?: boolean;
        critical?: number;
        dc?: number;
        flavor?: string;
        misfire?: number;
        rollMode?: string;
        staticRoll?: number;
        subject?: object;
    }

    Hierarchy (View Summary)

    Index

    Properties

    action?: string

    The selected sub-action depending on the context.

    bonus?: string | number

    An additional bonus to be added to the roll.

    • Include the bonus in the formula instead.
    check?: boolean

    Is this actually a check.

    true

    critical?: number

    The number on the d20 that is considered a critical success.

    20

    dc?: number

    Record DC for this roll.

    flavor?: string

    The flavor of the roll

    misfire?: number

    The number and below on the d20 that is considered a misfire.

    undefined

    rollMode?: string

    The rollMode with which the chat message is created.

    game.settings.get("core", "rollMode")

    staticRoll?: number

    A number used as a static roll result of the d20. If null, the d20 is rolled normally and the result is used.

    undefined

    subject?: object

    Data stored in the chat message's flags to allow for easier identification of the message's subject.