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

    Interface D20RollDialogOptions

    interface D20RollDialogOptions {
        action?: string;
        actions?: SubAction[];
        bonus?: string | number;
        dialogOptions?: object;
        rollMode?: string;
        speaker?: any;
        template?: string;
        title?: string;
    }

    Hierarchy

    Index

    Properties

    action?: string

    The selected sub-action depending on the context.

    actions?: SubAction[]

    The sub-actions to show in the dialog (dependant on the context)

    bonus?: string | number

    An additional bonus to be added to the roll.

    • Include the bonus in the formula instead.
    dialogOptions?: object

    Additional options passed to the dialog's creation.

    rollMode?: string

    The rollMode that is preselected in the dialog

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

    speaker?: any

    Speaker data

    template?: string

    The template used to render the dialog's content.

    D20RollPF.DIALOG_TEMPLATE

    title?: string

    The title of the dialog window.