File

src/app/types/character.ts

Properties

abilities
abilities: Ability[]
agility
agility: number
background
background: string
class
class: string
fellowship
fellowship: number
hitPoints
hitPoints: number
id
id: string
name
name: string
portrait
portrait: string
portraitURL
portraitURL: string
strength
strength: number
uuid
uuid: string
wisdom
wisdom: number
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[]
}

results matching ""

    No results matching ""