Add entity
This commit is contained in:
parent
f25c637d7b
commit
44510884fe
2 changed files with 33 additions and 2 deletions
|
|
@ -7,6 +7,7 @@ export interface IRace {
|
|||
export enum Race {
|
||||
HUMAN = "HUMAN",
|
||||
GIANT = "GIANT",
|
||||
TROLL = "TROLL",
|
||||
ELF = "ELF",
|
||||
}
|
||||
|
||||
|
|
@ -22,10 +23,16 @@ export const raceGiant: IRace = {
|
|||
description: "Basically a human, but of an extreme size and strength",
|
||||
};
|
||||
|
||||
export const raceTroll: IRace = {
|
||||
id: Race.TROLL,
|
||||
name: "Troll",
|
||||
description: "Tall and green creature",
|
||||
};
|
||||
|
||||
export const raceElf: IRace = {
|
||||
id: Race.ELF,
|
||||
name: "Elf",
|
||||
description: "A weird creature with pointy ears",
|
||||
};
|
||||
|
||||
export const races = [raceHuman, raceGiant, raceElf];
|
||||
export const races = [raceHuman, raceGiant, raceTroll, raceElf];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue