Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
orion3dgames committed Jun 2, 2024
1 parent a013e19 commit ea940a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/server/data/RacesDB.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ let RacesDB: raceDataMap = {
{ title: "Color 3", material: "knight_texture_alt_B.png" },
{ title: "Color 4", material: "knight_texture_alt_C.png" },
],
vat: 'humanoid',
},
male_mage: {
key: "male_mage",
Expand Down Expand Up @@ -71,6 +72,7 @@ let RacesDB: raceDataMap = {
{ title: "Color 2", material: "mage_texture_alt_A.png" },
{ title: "Color 3", material: "mage_texture_alt_B.png" },
],
vat: 'humanoid',
},
male_rogue: {
key: "male_rogue",
Expand Down Expand Up @@ -107,6 +109,7 @@ let RacesDB: raceDataMap = {
],
default_abilities: ["base_attack"],
materials: [{ title: "Color 1", material: "rogue_texture.png" }],
vat: 'humanoid',
},
rat_01: {
key: "rat_01",
Expand All @@ -133,6 +136,7 @@ let RacesDB: raceDataMap = {
},
bones: {},
materials: [],
vat: 'rat',
},
};

Expand Down
1 change: 1 addition & 0 deletions src/shared/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,7 @@ export type Race = {
drops?: ILootTableEntry[];
default_abilities?: string[];
materials?;
vat?;
};

export interface raceDataMap {
Expand Down

0 comments on commit ea940a6

Please sign in to comment.