Raw skill data saved in actor.system.skills

interface SkillData {
    ability: "str" | "dex" | "con" | "int" | "wis" | "cha";
    acp: boolean;
    background?: boolean;
    cs: boolean;
    custom?: boolean;
    journal?: string;
    mod: number;
    name?: string;
    rank: number;
    rt: boolean;
    subSkills?: Record<string, SkillData>;
}

Hierarchy (View Summary)

Properties

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

Whether Armor Check Penalty applies

background?: boolean

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

cs: boolean

Whether or not this is a class skill

custom?: boolean

Whether or not this is a custom skill

journal?: string

Compendium UUID

mod: number

Modifier

name?: string

Name

rank: number
rt: boolean

Requires training

subSkills?: Record<string, SkillData>