| @@ -49744,8 +49744,8 @@ characterMakers.push(() => makeCharacter( | |||||
| { name: "Keltre", species: ["dog"], tags: ["anthro"] }, | { name: "Keltre", species: ["dog"], tags: ["anthro"] }, | ||||
| { | { | ||||
| front: { | front: { | ||||
| height: math.unit(6, "feet"), | |||||
| weight: math.unit(150, "lb"), | |||||
| height: math.unit(5 + 2/12, "feet"), | |||||
| weight: math.unit(110, "lb"), | |||||
| name: "Front", | name: "Front", | ||||
| image: { | image: { | ||||
| source: "./media/characters/keltre/front.svg", | source: "./media/characters/keltre/front.svg", | ||||
| @@ -49754,8 +49754,8 @@ characterMakers.push(() => makeCharacter( | |||||
| } | } | ||||
| }, | }, | ||||
| back: { | back: { | ||||
| height: math.unit(6, "feet"), | |||||
| weight: math.unit(150, "lb"), | |||||
| height: math.unit(5 + 2/12, "feet"), | |||||
| weight: math.unit(110, "lb"), | |||||
| name: "Back", | name: "Back", | ||||
| image: { | image: { | ||||
| source: "./media/characters/keltre/back.svg", | source: "./media/characters/keltre/back.svg", | ||||
| @@ -49764,8 +49764,8 @@ characterMakers.push(() => makeCharacter( | |||||
| } | } | ||||
| }, | }, | ||||
| dressed: { | dressed: { | ||||
| height: math.unit(6, "feet"), | |||||
| weight: math.unit(150, "lb"), | |||||
| height: math.unit(5 + 2/12, "feet"), | |||||
| weight: math.unit(110, "lb"), | |||||
| name: "Dressed", | name: "Dressed", | ||||
| image: { | image: { | ||||
| source: "./media/characters/keltre/dressed.svg", | source: "./media/characters/keltre/dressed.svg", | ||||
| @@ -49774,8 +49774,8 @@ characterMakers.push(() => makeCharacter( | |||||
| } | } | ||||
| }, | }, | ||||
| winter: { | winter: { | ||||
| height: math.unit(6, "feet"), | |||||
| weight: math.unit(150, "lb"), | |||||
| height: math.unit(5 + 2/12, "feet"), | |||||
| weight: math.unit(110, "lb"), | |||||
| name: "Winter", | name: "Winter", | ||||
| image: { | image: { | ||||
| source: "./media/characters/keltre/winter.svg", | source: "./media/characters/keltre/winter.svg", | ||||
| @@ -49784,7 +49784,7 @@ characterMakers.push(() => makeCharacter( | |||||
| } | } | ||||
| }, | }, | ||||
| head: { | head: { | ||||
| height: math.unit(1.61, "feet"), | |||||
| height: math.unit(1.61 * 0.86, "feet"), | |||||
| name: "Head", | name: "Head", | ||||
| image: { | image: { | ||||
| source: "./media/characters/keltre/head.svg", | source: "./media/characters/keltre/head.svg", | ||||
| @@ -49793,14 +49793,14 @@ characterMakers.push(() => makeCharacter( | |||||
| } | } | ||||
| }, | }, | ||||
| hand: { | hand: { | ||||
| height: math.unit(1.3, "feet"), | |||||
| height: math.unit(1.3 * 0.86, "feet"), | |||||
| name: "Hand", | name: "Hand", | ||||
| image: { | image: { | ||||
| source: "./media/characters/keltre/hand.svg" | source: "./media/characters/keltre/hand.svg" | ||||
| } | } | ||||
| }, | }, | ||||
| foot: { | foot: { | ||||
| height: math.unit(1.8, "feet"), | |||||
| height: math.unit(1.8 * 0.86, "feet"), | |||||
| name: "Foot", | name: "Foot", | ||||
| image: { | image: { | ||||
| source: "./media/characters/keltre/foot.svg" | source: "./media/characters/keltre/foot.svg" | ||||
| @@ -49808,6 +49808,22 @@ characterMakers.push(() => makeCharacter( | |||||
| }, | }, | ||||
| }, | }, | ||||
| [ | [ | ||||
| { | |||||
| name: "Fine", | |||||
| height: math.unit(1, "inch") | |||||
| }, | |||||
| { | |||||
| name: "Dimnutive", | |||||
| height: math.unit(4, "inches") | |||||
| }, | |||||
| { | |||||
| name: "Tiny", | |||||
| height: math.unit(1, "foot") | |||||
| }, | |||||
| { | |||||
| name: "Small", | |||||
| height: math.unit(3, "feet") | |||||
| }, | |||||
| { | { | ||||
| name: "Normal", | name: "Normal", | ||||
| height: math.unit(6, "feet"), | height: math.unit(6, "feet"), | ||||