|
|
|
@@ -2477,6 +2477,10 @@ const speciesData = { |
|
|
|
name: "Sea Serpent", |
|
|
|
parents: ["aquatic", "monster"] |
|
|
|
}, |
|
|
|
"dutch-angel-dragon": { |
|
|
|
name: "Dutch Angel Dragon", |
|
|
|
parents: ["dragon", "avian"] |
|
|
|
}, |
|
|
|
} |
|
|
|
|
|
|
|
//species |
|
|
|
@@ -68193,6 +68197,85 @@ characterMakers.push(() => makeCharacter( |
|
|
|
] |
|
|
|
)) |
|
|
|
|
|
|
|
characterMakers.push(() => makeCharacter( |
|
|
|
{ name: "Thomas Bakes", species: ["dutch-angel-dragon"], tags: ["anthro"] }, |
|
|
|
{ |
|
|
|
front: { |
|
|
|
height: math.unit(2.16, "meters"), |
|
|
|
weight: math.unit(105, "kg"), |
|
|
|
name: "Front", |
|
|
|
image: { |
|
|
|
source: "./media/characters/thomas-bakes/front.svg", |
|
|
|
extra: 333/283, |
|
|
|
bottom: 46/379 |
|
|
|
}, |
|
|
|
extraAttributes: { |
|
|
|
"pawLength": { |
|
|
|
name: "Paw Length", |
|
|
|
power: 1, |
|
|
|
type: "length", |
|
|
|
base: math.unit(35, "cm") |
|
|
|
}, |
|
|
|
"pawWidth": { |
|
|
|
name: "Paw Width", |
|
|
|
power: 1, |
|
|
|
type: "length", |
|
|
|
base: math.unit(30, "cm") |
|
|
|
}, |
|
|
|
"handLength": { |
|
|
|
name: "Hand Length", |
|
|
|
power: 1, |
|
|
|
type: "length", |
|
|
|
base: math.unit(30, "cm") |
|
|
|
}, |
|
|
|
"handWidth": { |
|
|
|
name: "Hand Width", |
|
|
|
power: 1, |
|
|
|
type: "length", |
|
|
|
base: math.unit(25, "cm") |
|
|
|
}, |
|
|
|
"preyCapacity": { |
|
|
|
name: "Prey Capacity", |
|
|
|
power: 3, |
|
|
|
type: "volume", |
|
|
|
base: math.unit(40*20*20, "cm^3") |
|
|
|
}, |
|
|
|
"swallowSize": { |
|
|
|
name: "Swallow Size", |
|
|
|
power: 1, |
|
|
|
type: "length", |
|
|
|
base: math.unit(13, "cm") |
|
|
|
}, |
|
|
|
"energyIntake": { |
|
|
|
name: "Food Intake", |
|
|
|
power: 3, |
|
|
|
type: "energy", |
|
|
|
base: math.unit(3250, "kcal") |
|
|
|
}, |
|
|
|
"wingspan": { |
|
|
|
name: "Wingspan", |
|
|
|
power: 1, |
|
|
|
type: "length", |
|
|
|
base: math.unit(3.7, "meters") |
|
|
|
}, |
|
|
|
"wingWidth": { |
|
|
|
name: "Wing Width", |
|
|
|
power: 1, |
|
|
|
type: "length", |
|
|
|
base: math.unit(1.7, "meters") |
|
|
|
}, |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
[ |
|
|
|
{ |
|
|
|
name: "Normal", |
|
|
|
height: math.unit(2.16, "meters"), |
|
|
|
default: true |
|
|
|
}, |
|
|
|
] |
|
|
|
)) |
|
|
|
|
|
|
|
//characters |
|
|
|
|
|
|
|
function makeCharacters() { |
|
|
|
|