|
|
|
@@ -1888,6 +1888,10 @@ const speciesData = { |
|
|
|
name: "Noivern", |
|
|
|
parents: ["bat", "dragon", "pokemon"] |
|
|
|
}, |
|
|
|
"hedgehog": { |
|
|
|
name: "Hedgehog", |
|
|
|
parents: ["mammal"] |
|
|
|
}, |
|
|
|
} |
|
|
|
|
|
|
|
//species |
|
|
|
@@ -47941,6 +47945,49 @@ characterMakers.push(() => makeCharacter( |
|
|
|
] |
|
|
|
)) |
|
|
|
|
|
|
|
characterMakers.push(() => makeCharacter( |
|
|
|
{ name: "Rachel", species: ["hedgehog"], tags: ["anthro"] }, |
|
|
|
{ |
|
|
|
front: { |
|
|
|
height: math.unit(5 + 8/12, "feet"), |
|
|
|
weight: math.unit(150, "lb"), |
|
|
|
name: "Front", |
|
|
|
image: { |
|
|
|
source: "./media/characters/rachel/front.svg", |
|
|
|
extra: 1902/1787, |
|
|
|
bottom: 46/1948 |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
[ |
|
|
|
{ |
|
|
|
name: "Base Height", |
|
|
|
height: math.unit(5 + 8/12, "feet"), |
|
|
|
default: true |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Macro", |
|
|
|
height: math.unit(200, "feet") |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Mega Macro", |
|
|
|
height: math.unit(1, "mile") |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Giga Macro", |
|
|
|
height: math.unit(1500, "miles") |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Tera Macro", |
|
|
|
height: math.unit(8000, "miles") |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Tera Macro+", |
|
|
|
height: math.unit(2e5, "miles") |
|
|
|
}, |
|
|
|
] |
|
|
|
)) |
|
|
|
|
|
|
|
//characters |
|
|
|
|
|
|
|
function makeCharacters() { |
|
|
|
|