npc-aspect
Version:
Library for NPC aspect modelling.
68 lines • 1.51 kB
TypeScript
export declare enum AgeKind {
Kid = 0,
Teenager = 1,
Young = 2,
Midage = 3,
Old = 4
}
export declare enum ComplexionKind {
Skinny = 0,
Thin = 1,
Fat = 2,
Athletic = 3,
Strongman = 4
}
export declare enum EyeColor {
Black = 0,
Brown = 1,
Blue = 2,
Green = 3
}
export declare enum HairColor {
White = 0,
Black = 1,
Brown = 2,
Red = 3,
Blond = 4,
Blue = 5
}
export declare enum HaircutStyle {
Shaved = 0,
Short = 1,
StraightLong = 2,
CurvyLong = 3,
Bald = 4
}
export declare enum OriginKind {
European = 0,
African = 1,
Asian = 2,
American = 3,
Arabic = 4,
Oceanic = 5
}
export declare enum SexKind {
Male = 0,
Female = 1,
Androgynous = 2
}
export declare enum SpecieKind {
Human = 0,
Dwarf = 1,
Elf = 2,
Goblin = 3,
Orc = 4,
Troll = 5
}
export declare const Complexions: ComplexionKind[];
export declare const Eyes: EyeColor[];
export declare const HairColors: HairColor[];
export declare const HairCuts: HaircutStyle[];
export declare const Origins: OriginKind[];
export declare const Sexes: SexKind[];
export declare const Species: SpecieKind[];
export declare const GoodSpecies: SpecieKind[];
export declare const BadSpecies: SpecieKind[];
export declare const Ages: AgeKind[];
export declare function getAgeKind(age: number): AgeKind;
//# sourceMappingURL=enumerations.d.ts.map