|
|
|
@@ -1828,6 +1828,14 @@ const speciesData = { |
|
|
|
name: "Sauropod", |
|
|
|
parents: ["dinosaur"] |
|
|
|
}, |
|
|
|
"black-sable-antelope": { |
|
|
|
name: "Black Sable Antelope", |
|
|
|
parents: ["antelope"] |
|
|
|
}, |
|
|
|
"slime": { |
|
|
|
name: "Slime", |
|
|
|
parents: ["goo"] |
|
|
|
}, |
|
|
|
} |
|
|
|
|
|
|
|
//species |
|
|
|
@@ -40896,24 +40904,32 @@ characterMakers.push(() => makeCharacter( |
|
|
|
)) |
|
|
|
|
|
|
|
characterMakers.push(() => makeCharacter( |
|
|
|
{ name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] }, |
|
|
|
{ name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] }, |
|
|
|
{ |
|
|
|
front: { |
|
|
|
height: math.unit(9, "inches"), |
|
|
|
height: math.unit(6 + 3/12, "feet"), |
|
|
|
name: "Front", |
|
|
|
image: { |
|
|
|
source: "./media/characters/saelria/front.svg", |
|
|
|
extra: 662/621, |
|
|
|
bottom: 12/674 |
|
|
|
extra: 1243/1138, |
|
|
|
bottom: 46/1289 |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
[ |
|
|
|
{ |
|
|
|
name: "Tiny", |
|
|
|
height: math.unit(9, "inches"), |
|
|
|
name: "Micro", |
|
|
|
height: math.unit(6, "inches"), |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Normal", |
|
|
|
height: math.unit(6 + 3/12, "feet"), |
|
|
|
default: true |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Macro", |
|
|
|
height: math.unit(25, "feet") |
|
|
|
}, |
|
|
|
] |
|
|
|
)) |
|
|
|
|
|
|
|
@@ -46669,6 +46685,39 @@ characterMakers.push(() => makeCharacter( |
|
|
|
] |
|
|
|
)) |
|
|
|
|
|
|
|
characterMakers.push(() => makeCharacter( |
|
|
|
{ name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] }, |
|
|
|
{ |
|
|
|
nude: { |
|
|
|
height: math.unit(6, "feet"), |
|
|
|
weight: math.unit(150, "lb"), |
|
|
|
name: "Nude", |
|
|
|
image: { |
|
|
|
source: "./media/characters/shavon/nude.svg", |
|
|
|
extra: 1242/1096, |
|
|
|
bottom: 98/1340 |
|
|
|
} |
|
|
|
}, |
|
|
|
dressed: { |
|
|
|
height: math.unit(6, "feet"), |
|
|
|
weight: math.unit(150, "lb"), |
|
|
|
name: "Dressed", |
|
|
|
image: { |
|
|
|
source: "./media/characters/shavon/dressed.svg", |
|
|
|
extra: 1242/1096, |
|
|
|
bottom: 98/1340 |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
[ |
|
|
|
{ |
|
|
|
name: "Macro", |
|
|
|
height: math.unit(255, "feet"), |
|
|
|
default: true |
|
|
|
}, |
|
|
|
] |
|
|
|
)) |
|
|
|
|
|
|
|
//characters |
|
|
|
|
|
|
|
function makeCharacters() { |
|
|
|
|