|
|
|
@@ -149,6 +149,9 @@ const speciesData = { |
|
|
|
}, |
|
|
|
pokemon: { |
|
|
|
name: "Pokemon", |
|
|
|
parents: [ |
|
|
|
"video-games" |
|
|
|
] |
|
|
|
}, |
|
|
|
tiger: { |
|
|
|
name: "Tiger", |
|
|
|
@@ -409,6 +412,9 @@ const speciesData = { |
|
|
|
}, |
|
|
|
"digimon": { |
|
|
|
name: "Digimon", |
|
|
|
parents: [ |
|
|
|
"video-games" |
|
|
|
] |
|
|
|
}, |
|
|
|
"jugani": { |
|
|
|
name: "Jugani", |
|
|
|
@@ -1508,7 +1514,7 @@ const speciesData = { |
|
|
|
}, |
|
|
|
"monster-hunter": { |
|
|
|
name: "Monster Hunter", |
|
|
|
parents: ["monster"] |
|
|
|
parents: ["monster", "video-games"] |
|
|
|
}, |
|
|
|
"leviathan": { |
|
|
|
"name": "Leviathan", |
|
|
|
@@ -2150,6 +2156,18 @@ const speciesData = { |
|
|
|
name: "Sergix", |
|
|
|
parents: ["demon", "sergal", "phoenix"] |
|
|
|
}, |
|
|
|
"behemoth": { |
|
|
|
name: "Behemoth", |
|
|
|
parents: ["monster", "dragon", "final-fantasy"] |
|
|
|
}, |
|
|
|
"final-fantasy": { |
|
|
|
name: "Final Fantasy", |
|
|
|
parents: ["video-games"] |
|
|
|
}, |
|
|
|
"video-games": { |
|
|
|
name: "Video Games", |
|
|
|
parents: [] |
|
|
|
}, |
|
|
|
} |
|
|
|
|
|
|
|
//species |
|
|
|
@@ -56986,6 +57004,57 @@ characterMakers.push(() => makeCharacter( |
|
|
|
] |
|
|
|
)) |
|
|
|
|
|
|
|
characterMakers.push(() => makeCharacter( |
|
|
|
{ name: "Velikan", species: ["behemoth"], tags: ["anthro"] }, |
|
|
|
{ |
|
|
|
front: { |
|
|
|
height: math.unit(5, "meters"), |
|
|
|
weight: math.unit(3, "tonnes"), |
|
|
|
name: "Front", |
|
|
|
image: { |
|
|
|
source: "./media/characters/velikan/front.svg", |
|
|
|
extra: 867/744, |
|
|
|
bottom: 71/938 |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
[ |
|
|
|
{ |
|
|
|
name: "Normal", |
|
|
|
height: math.unit(5, "meters"), |
|
|
|
default: true |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Macro", |
|
|
|
height: math.unit(1, "km") |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Mega Macro", |
|
|
|
height: math.unit(100, "km") |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Giga Macro", |
|
|
|
height: math.unit(2, "megameters") |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Planetary", |
|
|
|
height: math.unit(22, "megameters") |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Solar", |
|
|
|
height: math.unit(8, "gigameters") |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Cosmic", |
|
|
|
height: math.unit(10, "zettameters") |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "Omni", |
|
|
|
height: math.unit(9e260, "multiverses") |
|
|
|
}, |
|
|
|
] |
|
|
|
)) |
|
|
|
|
|
|
|
//characters |
|
|
|
|
|
|
|
function makeCharacters() { |
|
|
|
|