src/app/types/character.ts
abilities |
abilities: |
agility |
agility: |
background |
background: |
class |
class: |
fellowship |
fellowship: |
hitPoints |
hitPoints: |
id |
id: |
name |
name: |
portrait |
portrait: |
portraitURL |
portraitURL: |
strength |
strength: |
uuid |
uuid: |
wisdom |
wisdom: |
import { Ability } from './ability'
import { AmplifyService } from 'aws-amplify-angular';
export abstract class Character {
id: string;
uuid: string;
name: string;
class?: string;
background?: string;
portrait?: string;
portraitURL?: string;
agility: number;
hitPoints: number;
fellowship: number;
strength: number;
wisdom: number;
abilities: Ability[]
}