|
|
|
@@ -2485,6 +2485,18 @@ const speciesData = { |
|
|
|
name: "House Mouse", |
|
|
|
parents: ["mouse"] |
|
|
|
}, |
|
|
|
"servine": { |
|
|
|
name: "Servine", |
|
|
|
parents: ["pokemon", "snake", "plant"] |
|
|
|
}, |
|
|
|
"dragonite": { |
|
|
|
name: "Dragonite", |
|
|
|
parents: ["pokemon", "dragon"] |
|
|
|
}, |
|
|
|
"virginia-opossum": { |
|
|
|
name: "Virginia Opossum", |
|
|
|
parents: ["opossum"] |
|
|
|
}, |
|
|
|
} |
|
|
|
|
|
|
|
//species |
|
|
|
@@ -69164,6 +69176,89 @@ characterMakers.push(() => makeCharacter( |
|
|
|
} |
|
|
|
)) |
|
|
|
|
|
|
|
characterMakers.push(() => makeCharacter( |
|
|
|
{ name: "Petcha", species: ["servine", "plush"], tags: ["feral"] }, |
|
|
|
{ |
|
|
|
front: { |
|
|
|
height: math.unit(2, "feet"), |
|
|
|
weight: math.unit(7.5, "kg"), |
|
|
|
name: "Front", |
|
|
|
image: { |
|
|
|
source: "./media/characters/petcha/front.svg", |
|
|
|
extra: 283/224, |
|
|
|
bottom: 148/425 |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
[ |
|
|
|
{ |
|
|
|
name: "Normal", |
|
|
|
height: math.unit(2, "feet"), |
|
|
|
default: true |
|
|
|
}, |
|
|
|
] |
|
|
|
)) |
|
|
|
|
|
|
|
characterMakers.push(() => makeCharacter( |
|
|
|
{ name: "Clementine", species: ["dragonite"], tags: ["anthro"] }, |
|
|
|
{ |
|
|
|
front: { |
|
|
|
height: math.unit(14 + 2/12, "feet"), |
|
|
|
weight: math.unit(1851.67, "kg"), |
|
|
|
name: "Front", |
|
|
|
image: { |
|
|
|
source: "./media/characters/clementine/front.svg", |
|
|
|
extra: 547/498, |
|
|
|
bottom: 49/596 |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
[ |
|
|
|
{ |
|
|
|
name: "Normal", |
|
|
|
height: math.unit(14 + 2/12, "feet"), |
|
|
|
default: true |
|
|
|
}, |
|
|
|
] |
|
|
|
)) |
|
|
|
|
|
|
|
characterMakers.push(() => makeCharacter( |
|
|
|
{ name: "Xar", species: ["virginia-opossum"], tags: ["anthro"] }, |
|
|
|
{ |
|
|
|
front: { |
|
|
|
height: math.unit(185, "cm"), |
|
|
|
weight: math.unit(200, "lb"), |
|
|
|
name: "Front", |
|
|
|
image: { |
|
|
|
source: "./media/characters/xar/front.svg", |
|
|
|
extra: 609/574, |
|
|
|
bottom: 22/631 |
|
|
|
} |
|
|
|
}, |
|
|
|
back: { |
|
|
|
height: math.unit(185, "cm"), |
|
|
|
weight: math.unit(200, "lb"), |
|
|
|
name: "Back", |
|
|
|
image: { |
|
|
|
source: "./media/characters/xar/back.svg", |
|
|
|
extra: 755/716, |
|
|
|
bottom: 17/772 |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
[ |
|
|
|
{ |
|
|
|
name: "Smol", |
|
|
|
height: math.unit(15.24, "cm") |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Normal", |
|
|
|
height: math.unit(185, "cm"), |
|
|
|
default: true |
|
|
|
}, |
|
|
|
] |
|
|
|
)) |
|
|
|
|
|
|
|
//characters |
|
|
|
|
|
|
|
function makeCharacters() { |
|
|
|
|