Browse Source

Finish adding species data

master
Fen Dweller 5 years ago
parent
commit
6ba86d45bc
2 changed files with 959 additions and 379 deletions
  1. +2
    -2
      macrovision.js
  2. +957
    -377
      presets/characters.js

+ 2
- 2
macrovision.js View File

@@ -37,7 +37,8 @@ const tagDefs = {
"anthro": "Anthro", "anthro": "Anthro",
"feral": "Feral", "feral": "Feral",
"taur": "Taur", "taur": "Taur",
"naga": "Naga"
"naga": "Naga",
"goo": "Goo"
} }


math.createUnit("humans", { math.createUnit("humans", {
@@ -2458,7 +2459,6 @@ function prepareEntities() {
makers.map(element => { makers.map(element => {
const category = document.querySelector("#category-picker").value; const category = document.querySelector("#category-picker").value;
const maker = availableEntities[category][element.value]; const maker = availableEntities[category][element.value];
console.log(maker)
const entity = maker.constructor() const entity = maker.constructor()
displayEntity(entity, entity.view, 0.1 + 0.8 * index / (count - 1), 1); displayEntity(entity, entity.view, 0.1 + 0.8 * index / (count - 1), 1);
updateSizes(true); updateSizes(true);


+ 957
- 377
presets/characters.js
File diff suppressed because it is too large
View File


Loading…
Cancel
Save