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

    An Actor sheet for Vehicle type characters in the game system. Extends the base ActorSheetPF class.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    _activeEdits: Record<string, string> = {}
    _filters: Record<string, Record<string, Set<string>>> = ...

    Track the set of item filters which are applied

    _skillsLocked: any
    _warnedAppV1: boolean = true
    ACTIONS: {
        editDriver: Object;
        removeDriver: Object;
        rollDriverSkill: Object;
        rollSave: Object;
        selectDriver: Object;
    } = ...

    Temporary action mapping until AppV2 conversion.

    BASE_APPLICATION: typeof ActorSheetPF = ...

    Remove with AppV2 conversion

    EDIT_TRACKING: string[] = ...
    WHEEL_UPDATE_SCOPES: string[] = ...

    Accessors

    Methods

    • Parameters

      • driverId: any
      • skillId: any

      Returns
          | {
              img?: undefined;
              name?: undefined;
              skillBonus?: undefined;
              skills?: undefined;
              uuid?: undefined;
          }
          | {
              img: InitializedType<{}>;
              name: string;
              skillBonus: any;
              skills: {};
              uuid: string;
          }

    • Nameless Change Event

      Handler for any change event that did not target an element with name.

      Parameters

      • event: Event
      • target: HTMLElement

      Returns boolean

      • True if the change was handled, false otherwise.
    • Parameters

      • event: DragEvent

        Drag start event

      • type:
            | "initiative"
            | "attack"
            | "cl"
            | "bab"
            | "cmb"
            | "concentration"
            | "abilityScore"
            | "defenses"
      • OptionalsubType: string

        Type specific subtype

      • Optionaldataset: object

        Whole dataset

      Returns void

    • Internal

      Insert a spell into the spellbook object when rendering the character sheet

      Parameters

      • data: object

        The Actor data being prepared

      • spells: any[]

        The spell data being prepared

      • bookKey: string

        The key of the spellbook being prepared

      Returns object

      • Spellbook data
    • Protected

      Toggle inline display of an item's summary/description by expanding or hiding info div

      Parameters

      • elem: HTMLElement

        The element to open. Likely will have the item class in CSS.

      • Optionalanimation: boolean = {}

        Whether to animate expansion and collapse or not.

      Returns Promise<void>