Browse Source

Fix Goddess Elizabeth's height being measured incorrectly

tags/v0.1.0
Fen Dweller 5 years ago
parent
commit
e4c4f9bc55
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      presets/characters.js

+ 4
- 2
presets/characters.js View File

@@ -6730,11 +6730,13 @@ characterMakers["Goddess Elizabeth"] = () => {
weight: math.unit(150, "lb"),
name: "Front",
image: {
source: "./media/characters/goddess-elizabeth/front.svg"
source: "./media/characters/goddess-elizabeth/front.svg",
extra: 1800/1525,
bottom: 0.005
}
},
foot: {
height: math.unit(6 * 0.25436 / 2, "feet"),
height: math.unit(6 * 0.25436 * 1800/1525 / 2, "feet"),
name: "Foot",
image: {
source: "./media/characters/goddess-elizabeth/foot.svg"


Loading…
Cancel
Save