| @@ -732,7 +732,7 @@ const speciesData = { | |||||
| }, | }, | ||||
| "xenomorph": { | "xenomorph": { | ||||
| name: "Xenomorph", | name: "Xenomorph", | ||||
| parents: ["monster"] | |||||
| parents: ["monster", "alien"] | |||||
| }, | }, | ||||
| "charr": { | "charr": { | ||||
| name: "Charr", | name: "Charr", | ||||
| @@ -896,7 +896,7 @@ const speciesData = { | |||||
| }, | }, | ||||
| "wolxi": { | "wolxi": { | ||||
| name: "Wolxi", | name: "Wolxi", | ||||
| parents: ["mammal"] | |||||
| parents: ["mammal", "alien"] | |||||
| }, | }, | ||||
| "dratini": { | "dratini": { | ||||
| name: "Dratini", | name: "Dratini", | ||||
| @@ -1222,80 +1222,25 @@ const speciesData = { | |||||
| name: "Plant", | name: "Plant", | ||||
| parents: [] | parents: [] | ||||
| }, | }, | ||||
| "raskatox": { | |||||
| name: "Raskatox", | |||||
| parents: ["raccoon", "skunk", "cat", "fox"] | |||||
| }, | |||||
| "mikromare": { | |||||
| name: "mikromare", | |||||
| parents: ["alien"] | |||||
| }, | |||||
| "alien": { | |||||
| name: "Alien", | |||||
| parents: ["animal"] | |||||
| }, | |||||
| } | } | ||||
| // species | |||||
| function getSpeciesInfo(speciesList) { | function getSpeciesInfo(speciesList) { | ||||
| let result = new Set(); | let result = new Set(); | ||||
| speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => { | speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => { | ||||
| @@ -8264,7 +8209,7 @@ characterMakers.push(() => makeCharacter( | |||||
| )) | )) | ||||
| characterMakers.push(() => makeCharacter( | characterMakers.push(() => makeCharacter( | ||||
| { name: "Rook Kitara", species: ["mammal"], tags: ["anthro"] }, | |||||
| { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] }, | |||||
| { | { | ||||
| front: { | front: { | ||||
| height: math.unit(5 + 11 / 12, "feet"), | height: math.unit(5 + 11 / 12, "feet"), | ||||
| @@ -9226,7 +9171,7 @@ characterMakers.push(() => makeCharacter( | |||||
| )) | )) | ||||
| characterMakers.push(() => makeCharacter( | characterMakers.push(() => makeCharacter( | ||||
| { name: "Dafydd Tomos", species: ["unknown"], tags: ["anthro"] }, | |||||
| { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] }, | |||||
| { | { | ||||
| front: { | front: { | ||||
| height: math.unit(6.5, "inches"), | height: math.unit(6.5, "inches"), | ||||