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

    Interface FoundryCombat

    interface FoundryCombat {
        _id: string;
        scene?: string;
        active: boolean;
        round: number;
        turn: number;
        started: boolean;
        combatants: {
            _id: string;
            tokenId: string;
            actorId?: string;
            name: string;
            img?: string;
            initiative?: number;
            hidden: boolean;
            defeated: boolean;
        }[];
        settings: { resource?: string; skipDefeated: boolean };
    }
    Index

    Properties

    _id: string
    scene?: string
    active: boolean
    round: number
    turn: number
    started: boolean
    combatants: {
        _id: string;
        tokenId: string;
        actorId?: string;
        name: string;
        img?: string;
        initiative?: number;
        hidden: boolean;
        defeated: boolean;
    }[]
    settings: { resource?: string; skipDefeated: boolean }