FoundryVTT MCP Server Documentation - v1.5.3
    Preparing search index...

    Interface ActorAttributeUpdateResult

    Result structure for an actor attribute update (#143).

    Returned by FoundryClient.updateActorAttribute. The updatedAttributes map echoes back the post-update value for every patched dot-path so callers can confirm what changed.

    const result: ActorAttributeUpdateResult = {
    success: true,
    updatedAttributes: { 'attributes.hp.value': 30, 'currency.gp': 12 },
    };
    interface ActorAttributeUpdateResult {
        success: boolean;
        updatedAttributes: Record<string, unknown>;
    }
    Index

    Properties

    success: boolean
    updatedAttributes: Record<string, unknown>