|
|
|
@@ -1394,7 +1394,10 @@ const speciesData = { |
|
|
|
name: "Amphibian", |
|
|
|
parents: ["animal"] |
|
|
|
}, |
|
|
|
|
|
|
|
"pangolin": { |
|
|
|
name: "Pangolin", |
|
|
|
parents: ["mammal"] |
|
|
|
}, |
|
|
|
} |
|
|
|
|
|
|
|
//species |
|
|
|
@@ -29649,6 +29652,102 @@ characterMakers.push(() => makeCharacter( |
|
|
|
] |
|
|
|
)) |
|
|
|
|
|
|
|
characterMakers.push(() => makeCharacter( |
|
|
|
{ name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] }, |
|
|
|
{ |
|
|
|
front: { |
|
|
|
height: math.unit(6, "feet"), |
|
|
|
weight: math.unit(235, "lb"), |
|
|
|
name: "Front", |
|
|
|
image: { |
|
|
|
source: "./media/characters/theo-pangolin/front.svg", |
|
|
|
extra: 1996/1969, |
|
|
|
bottom: 115/2111 |
|
|
|
} |
|
|
|
}, |
|
|
|
back: { |
|
|
|
height: math.unit(6, "feet"), |
|
|
|
weight: math.unit(235, "lb"), |
|
|
|
name: "Back", |
|
|
|
image: { |
|
|
|
source: "./media/characters/theo-pangolin/back.svg", |
|
|
|
extra: 1979/1979, |
|
|
|
bottom: 40/2019 |
|
|
|
} |
|
|
|
}, |
|
|
|
feral: { |
|
|
|
height: math.unit(2, "feet"), |
|
|
|
weight: math.unit(30, "lb"), |
|
|
|
name: "Feral", |
|
|
|
image: { |
|
|
|
source: "./media/characters/theo-pangolin/feral.svg", |
|
|
|
extra: 803/791, |
|
|
|
bottom: 181/984 |
|
|
|
} |
|
|
|
}, |
|
|
|
footFive: { |
|
|
|
height: math.unit(1.43, "feet"), |
|
|
|
name: "Foot (Five Toes)", |
|
|
|
image: { |
|
|
|
source: "./media/characters/theo-pangolin/foot-five.svg" |
|
|
|
} |
|
|
|
}, |
|
|
|
footFour: { |
|
|
|
height: math.unit(1.43, "feet"), |
|
|
|
name: "Foot (Four Toes)", |
|
|
|
image: { |
|
|
|
source: "./media/characters/theo-pangolin/foot-four.svg" |
|
|
|
} |
|
|
|
}, |
|
|
|
handFour: { |
|
|
|
height: math.unit(0.81, "feet"), |
|
|
|
name: "Hand (Four Fingers)", |
|
|
|
image: { |
|
|
|
source: "./media/characters/theo-pangolin/hand-four.svg" |
|
|
|
} |
|
|
|
}, |
|
|
|
handThree: { |
|
|
|
height: math.unit(0.81, "feet"), |
|
|
|
name: "Hand (Three Fingers)", |
|
|
|
image: { |
|
|
|
source: "./media/characters/theo-pangolin/hand-three.svg" |
|
|
|
} |
|
|
|
}, |
|
|
|
headFront: { |
|
|
|
height: math.unit(1.37, "feet"), |
|
|
|
name: "Head (Front)", |
|
|
|
image: { |
|
|
|
source: "./media/characters/theo-pangolin/head-front.svg" |
|
|
|
} |
|
|
|
}, |
|
|
|
headSide: { |
|
|
|
height: math.unit(1.43, "feet"), |
|
|
|
name: "Head (Side)", |
|
|
|
image: { |
|
|
|
source: "./media/characters/theo-pangolin/head-side.svg" |
|
|
|
} |
|
|
|
}, |
|
|
|
tongue: { |
|
|
|
height: math.unit(2.29, "feet"), |
|
|
|
name: "Tongue", |
|
|
|
image: { |
|
|
|
source: "./media/characters/theo-pangolin/tongue.svg" |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
[ |
|
|
|
{ |
|
|
|
name: "Normal", |
|
|
|
height: math.unit(6, "feet") |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Macro", |
|
|
|
height: math.unit(400, "feet"), |
|
|
|
default: true |
|
|
|
}, |
|
|
|
] |
|
|
|
)) |
|
|
|
|
|
|
|
//characters |
|
|
|
|
|
|
|
function makeCharacters() { |
|
|
|
|