|
|
|
@@ -2129,6 +2129,10 @@ const speciesData = { |
|
|
|
name: "Monkey", |
|
|
|
parents: ["mammal"] |
|
|
|
}, |
|
|
|
"serval": { |
|
|
|
name: "Serval", |
|
|
|
parents: ["cat"] |
|
|
|
}, |
|
|
|
} |
|
|
|
|
|
|
|
//species |
|
|
|
@@ -56407,6 +56411,71 @@ characterMakers.push(() => makeCharacter( |
|
|
|
] |
|
|
|
)) |
|
|
|
|
|
|
|
characterMakers.push(() => makeCharacter( |
|
|
|
{ name: "Brook", species: ["serval"], tags: ["anthro"] }, |
|
|
|
{ |
|
|
|
front: { |
|
|
|
height: math.unit(11, "feet"), |
|
|
|
weight: math.unit(3000, "lb"), |
|
|
|
preyCapacity: math.unit(10, "people"), |
|
|
|
name: "Front", |
|
|
|
image: { |
|
|
|
source: "./media/characters/brook/front.svg", |
|
|
|
extra: 909/835, |
|
|
|
bottom: 108/1017 |
|
|
|
} |
|
|
|
}, |
|
|
|
back: { |
|
|
|
height: math.unit(11, "feet"), |
|
|
|
weight: math.unit(3000, "lb"), |
|
|
|
preyCapacity: math.unit(10, "people"), |
|
|
|
name: "Back", |
|
|
|
image: { |
|
|
|
source: "./media/characters/brook/back.svg", |
|
|
|
extra: 976/916, |
|
|
|
bottom: 34/1010 |
|
|
|
} |
|
|
|
}, |
|
|
|
backAlt: { |
|
|
|
height: math.unit(11, "feet"), |
|
|
|
weight: math.unit(3000, "lb"), |
|
|
|
preyCapacity: math.unit(10, "people"), |
|
|
|
name: "Back (Alt)", |
|
|
|
image: { |
|
|
|
source: "./media/characters/brook/back-alt.svg", |
|
|
|
extra: 1283/1213, |
|
|
|
bottom: 35/1318 |
|
|
|
} |
|
|
|
}, |
|
|
|
bust: { |
|
|
|
height: math.unit(9.0859030837, "feet"), |
|
|
|
weight: math.unit(3000, "lb"), |
|
|
|
preyCapacity: math.unit(10, "people"), |
|
|
|
name: "Bust", |
|
|
|
image: { |
|
|
|
source: "./media/characters/brook/bust.svg", |
|
|
|
extra: 2043/1923, |
|
|
|
bottom: 0/2043 |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
[ |
|
|
|
{ |
|
|
|
name: "Small", |
|
|
|
height: math.unit(11, "feet"), |
|
|
|
default: true |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Towering", |
|
|
|
height: math.unit(5, "km") |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Enormous", |
|
|
|
height: math.unit(25, "earths") |
|
|
|
}, |
|
|
|
] |
|
|
|
)) |
|
|
|
|
|
|
|
//characters |
|
|
|
|
|
|
|
function makeCharacters() { |
|
|
|
|