SkillData: {
    ability: "str" | "dex" | "con" | "wis" | "int" | "cha";
    acp: boolean;
    background?: boolean;
    cs: boolean;
    custom?: boolean;
    journal?: string;
    mod: number;
    name?: string;
    rank: number;
    rt: boolean;
    subSkills?: { [key: string]: SkillData };
}

Raw skill data saved in actor.system.skills

Type declaration

  • ability: "str" | "dex" | "con" | "wis" | "int" | "cha"
  • acp: boolean

    Whether or not Armor Check Penalty applies to this skill

  • Optionalbackground?: boolean

    Whether or not this a background skill for the option Background Skills rule

  • cs: boolean

    Whether or not this is a class skill

  • Optionalcustom?: boolean

    Whether or not this is a custom skill

  • Optionaljournal?: string

    Compendium UID for this skill

  • mod: number

    The modifier for this skill

  • Optionalname?: string

    Name for custom and child skills. Otherwise look up via pf1.config.skills[id].name

  • rank: number
  • rt: boolean

    Requires training

  • OptionalsubSkills?: { [key: string]: SkillData }