W3Booster SDK 2.0.0
    Preparing search index...

    Interface Hero

    interface Hero {
        abilities?: readonly HeroAbility[];
        experience?: number;
        hitpoints?: ValuePool;
        id: string;
        inventory?: readonly string[];
        level: number;
        mana?: ValuePool;
        name: string;
    }
    Index
    abilities?: readonly HeroAbility[]
    experience?: number
    hitpoints?: ValuePool
    id: string

    Standard-game hero rawcode used for metadata and artwork lookup.

    inventory?: readonly string[]
    level: number
    mana?: ValuePool
    name: string

    Human-readable hero name.