skill.ts 96 B

12345
  1. export interface Skill {
  2. name: string;
  3. proficiency: boolean;
  4. bardicExpertise?: boolean;
  5. }