|
|
|
@@ -208,6 +208,37 @@ speciesMakers["Sel'Var"] = () => makeCharacter( |
|
|
|
] |
|
|
|
) |
|
|
|
|
|
|
|
speciesMakers["Werewolf"] = () => makeCharacter( |
|
|
|
{ name: "Werewolf", species: ["werewolf"], tags: ["anthro"] }, |
|
|
|
{ |
|
|
|
front: { |
|
|
|
height: math.unit(6, "feet"), |
|
|
|
weight: math.unit(225, "lb"), |
|
|
|
name: "Front", |
|
|
|
image: { |
|
|
|
source: "./media/species/werewolf/front.svg", |
|
|
|
extra: 660/632, |
|
|
|
bottom: 20/680 |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
[ |
|
|
|
{ |
|
|
|
name: "Human-Sized", |
|
|
|
height: math.unit(6, "feet") |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Big", |
|
|
|
height: math.unit(9, "feet"), |
|
|
|
default: true |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Huge", |
|
|
|
height: math.unit(12, "feet") |
|
|
|
}, |
|
|
|
] |
|
|
|
) |
|
|
|
|
|
|
|
function makeSpecies() { |
|
|
|
const results = []; |
|
|
|
|
|
|
|
|