|
|
|
@@ -2413,6 +2413,10 @@ const speciesData = { |
|
|
|
name: "Uragi", |
|
|
|
parents: ["avian", "bear"] |
|
|
|
}, |
|
|
|
"driger": { |
|
|
|
name: "Driger", |
|
|
|
parents: ["dragon", "tiger"] |
|
|
|
}, |
|
|
|
} |
|
|
|
|
|
|
|
//species |
|
|
|
@@ -65465,6 +65469,51 @@ characterMakers.push(() => makeCharacter( |
|
|
|
] |
|
|
|
)) |
|
|
|
|
|
|
|
characterMakers.push(() => makeCharacter( |
|
|
|
{ name: "Rain", species: ["driger"], tags: ["anthro"] }, |
|
|
|
{ |
|
|
|
front: { |
|
|
|
height: math.unit(7 + 6/12, "feet"), |
|
|
|
weight: math.unit(300, "lb"), |
|
|
|
name: "Front", |
|
|
|
image: { |
|
|
|
source: "./media/characters/rain/front.svg", |
|
|
|
extra: 2955/2698, |
|
|
|
bottom: 235/3190 |
|
|
|
} |
|
|
|
}, |
|
|
|
dressed: { |
|
|
|
height: math.unit(7 + 6/12, "feet"), |
|
|
|
weight: math.unit(300, "lb"), |
|
|
|
name: "Dressed", |
|
|
|
image: { |
|
|
|
source: "./media/characters/rain/dressed.svg", |
|
|
|
extra: 2783/2572, |
|
|
|
bottom: 430/3213 |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
[ |
|
|
|
{ |
|
|
|
name: "Normal", |
|
|
|
height: math.unit(7 + 6/12, "feet"), |
|
|
|
default: true |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Macro", |
|
|
|
height: math.unit(200, "feet") |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Macro+", |
|
|
|
height: math.unit(500, "feet") |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Megamacro", |
|
|
|
height: math.unit(5, "miles") |
|
|
|
}, |
|
|
|
] |
|
|
|
)) |
|
|
|
|
|
|
|
//characters |
|
|
|
|
|
|
|
function makeCharacters() { |
|
|
|
|