|
|
|
@@ -2445,6 +2445,10 @@ const speciesData = { |
|
|
|
name: "Sea Dragon", |
|
|
|
parents: ["dragon", "aquatic"] |
|
|
|
}, |
|
|
|
"brown-bear": { |
|
|
|
name: "Brown Bear", |
|
|
|
parents: ["bear"] |
|
|
|
}, |
|
|
|
} |
|
|
|
|
|
|
|
//species |
|
|
|
@@ -66776,6 +66780,41 @@ characterMakers.push(() => makeCharacter( |
|
|
|
} |
|
|
|
)) |
|
|
|
|
|
|
|
characterMakers.push(() => makeCharacter( |
|
|
|
{ name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] }, |
|
|
|
{ |
|
|
|
front: { |
|
|
|
height: math.unit(7 + 10/12, "feet"), |
|
|
|
weight: math.unit(300, "lb"), |
|
|
|
name: "Front", |
|
|
|
image: { |
|
|
|
source: "./media/characters/elisa-mitchell/front.svg", |
|
|
|
extra: 2562/2355, |
|
|
|
bottom: 62/2624 |
|
|
|
} |
|
|
|
}, |
|
|
|
maw: { |
|
|
|
height: math.unit(2.37, "feet"), |
|
|
|
name: "Maw", |
|
|
|
image: { |
|
|
|
source: "./media/characters/elisa-mitchell/maw.svg" |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
[ |
|
|
|
{ |
|
|
|
name: "Normal", |
|
|
|
height: math.unit(7 + 10/12, "feet"), |
|
|
|
default: true |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Macro", |
|
|
|
height: math.unit(1490, "feet"), |
|
|
|
default: true |
|
|
|
}, |
|
|
|
] |
|
|
|
)) |
|
|
|
|
|
|
|
//characters |
|
|
|
|
|
|
|
function makeCharacters() { |
|
|
|
|