Sfoglia il codice sorgente

Fix some missing defaults; add gremlin species

master
Fen Dweller 5 anni fa
parent
commit
094beb7d47
2 ha cambiato i file con 16 aggiunte e 7 eliminazioni
  1. +16
    -6
      presets/characters.js
  2. +0
    -1
      presets/naturals.js

+ 16
- 6
presets/characters.js Vedi File

@@ -1430,6 +1430,10 @@ const speciesData = {
name: "Enderman", name: "Enderman",
parents: ["monster"] parents: ["monster"]
}, },
"gremlin": {
name: "Gremlin",
parents: ["monster"]
},
} }


//species //species
@@ -26516,7 +26520,8 @@ characterMakers.push(() => makeCharacter(
[ [
{ {
name: "Normal", name: "Normal",
height: math.unit(7 + 7 / 12, "feet")
height: math.unit(7 + 7 / 12, "feet"),
default: true
}, },
] ]
)) ))
@@ -27789,7 +27794,8 @@ characterMakers.push(() => makeCharacter(
[ [
{ {
name: "Normal", name: "Normal",
height: math.unit(10, "feet")
height: math.unit(10, "feet"),
default: true
}, },
] ]
)) ))
@@ -28282,7 +28288,8 @@ characterMakers.push(() => makeCharacter(
[ [
{ {
name: "Normal", name: "Normal",
height: math.unit(11, "feet")
height: math.unit(11, "feet"),
default: true
}, },
] ]
)) ))
@@ -28574,7 +28581,8 @@ characterMakers.push(() => makeCharacter(
[ [
{ {
name: "Normal", name: "Normal",
height: math.unit(4.2, "meters")
height: math.unit(4.2, "meters"),
default: true
}, },
] ]
)) ))
@@ -29292,7 +29300,8 @@ characterMakers.push(() => makeCharacter(
[ [
{ {
name: "Macro", name: "Macro",
height: math.unit(190, "feet")
height: math.unit(190, "feet"),
default: true
}, },
] ]
)) ))
@@ -29334,7 +29343,8 @@ characterMakers.push(() => makeCharacter(
[ [
{ {
name: "Macro", name: "Macro",
height: math.unit(150, "feet")
height: math.unit(150, "feet"),
default: true
}, },
] ]
)) ))


+ 0
- 1
presets/naturals.js Vedi File

@@ -1006,7 +1006,6 @@ function makeSkylines(cities) {
} }
}); });


console.log(views)
return { return {
name: "Skylines", name: "Skylines",
constructor: () => makeEntity({ name: "Skylines" }, views) constructor: () => makeEntity({ name: "Skylines" }, views)


Loading…
Annulla
Salva