FoundryVTT MCP Server Documentation - v0.9.2
    Preparing search index...

    Interface DiceRoll

    Represents the result of a dice roll in FoundryVTT

    Contains all information about a completed dice roll including the formula used, total result, breakdown, and metadata.

    DiceRoll

    const attackRoll: DiceRoll = {
    formula: '1d20+5',
    total: 18,
    breakdown: '13 + 5',
    reason: 'Sword attack',
    timestamp: '2024-01-15T10:30:00Z'
    };
    interface DiceRoll {
        formula: string;
        total: number;
        breakdown: string;
        reason?: string;
        timestamp: string;
    }
    Index

    Properties

    formula: string
    total: number
    breakdown: string
    reason?: string
    timestamp: string