|
|
|
@@ -164,7 +164,7 @@ const speciesData = { |
|
|
|
"blue-jay": { |
|
|
|
name: "Blue Jay", |
|
|
|
parents: [ |
|
|
|
"avian" |
|
|
|
"corvid" |
|
|
|
] |
|
|
|
}, |
|
|
|
wolf: { |
|
|
|
@@ -311,7 +311,7 @@ const speciesData = { |
|
|
|
"corvid": { |
|
|
|
name: "Corvid", |
|
|
|
parents: [ |
|
|
|
"avian" |
|
|
|
"passerine" |
|
|
|
] |
|
|
|
}, |
|
|
|
"pharaoh-hound": { |
|
|
|
@@ -439,7 +439,7 @@ const speciesData = { |
|
|
|
}, |
|
|
|
"eagle": { |
|
|
|
name: "Eagle", |
|
|
|
parents: ["avian"] |
|
|
|
parents: ["bird-of-prey"] |
|
|
|
}, |
|
|
|
"cow": { |
|
|
|
name: "Cow", |
|
|
|
@@ -1771,7 +1771,7 @@ const speciesData = { |
|
|
|
}, |
|
|
|
"falcon": { |
|
|
|
name: "Falcon", |
|
|
|
parents: ["avian"] |
|
|
|
parents: ["bird-of-prey"] |
|
|
|
}, |
|
|
|
"avali": { |
|
|
|
name: "Avali", |
|
|
|
@@ -2029,6 +2029,22 @@ const speciesData = { |
|
|
|
name: "Bald Eagle", |
|
|
|
parents: ["eagle"] |
|
|
|
}, |
|
|
|
"kestrel": { |
|
|
|
name: "Kestrel", |
|
|
|
parents: ["falcon"] |
|
|
|
}, |
|
|
|
"mockingbird": { |
|
|
|
name: "Mockingbird", |
|
|
|
parents: ["songbird"] |
|
|
|
}, |
|
|
|
"songbird": { |
|
|
|
name: "Songbird", |
|
|
|
parents: ["avian"] |
|
|
|
}, |
|
|
|
"bird-of-prey": { |
|
|
|
name: "Bird of Prey", |
|
|
|
parents: ["avian"] |
|
|
|
}, |
|
|
|
} |
|
|
|
|
|
|
|
//species |
|
|
|
@@ -53112,6 +53128,29 @@ characterMakers.push(() => makeCharacter( |
|
|
|
] |
|
|
|
)) |
|
|
|
|
|
|
|
characterMakers.push(() => makeCharacter( |
|
|
|
{ name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] }, |
|
|
|
{ |
|
|
|
front: { |
|
|
|
height: math.unit(6 + 3/12, "feet"), |
|
|
|
weight: math.unit(250, "lb"), |
|
|
|
name: "Front", |
|
|
|
image: { |
|
|
|
source: "./media/characters/reika/front.svg", |
|
|
|
extra: 1120/1078, |
|
|
|
bottom: 86/1206 |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
[ |
|
|
|
{ |
|
|
|
name: "Normal", |
|
|
|
height: math.unit(6 + 3/12, "feet"), |
|
|
|
default: true |
|
|
|
}, |
|
|
|
] |
|
|
|
)) |
|
|
|
|
|
|
|
//characters |
|
|
|
|
|
|
|
function makeCharacters() { |
|
|
|
|