| @@ -31748,8 +31748,8 @@ characterMakers.push(() => makeCharacter( | |||
| { name: "Tarn", species: ["wolf"], tags: ["anthro"] }, | |||
| { | |||
| front: { | |||
| height: math.unit(5 + 7/12, "feet"), | |||
| weight: math.unit(68, "kg"), | |||
| height: math.unit(6 + 7/12, "feet"), | |||
| weight: math.unit(210, "lb"), | |||
| name: "Front", | |||
| image: { | |||
| source: "./media/characters/tarn/front.svg", | |||
| @@ -31758,8 +31758,8 @@ characterMakers.push(() => makeCharacter( | |||
| } | |||
| }, | |||
| back: { | |||
| height: math.unit(5 + 7/12, "feet"), | |||
| weight: math.unit(68, "kg"), | |||
| height: math.unit(6 + 7/12, "feet"), | |||
| weight: math.unit(210, "lb"), | |||
| name: "Back", | |||
| image: { | |||
| source: "./media/characters/tarn/back.svg", | |||
| @@ -31768,21 +31768,21 @@ characterMakers.push(() => makeCharacter( | |||
| } | |||
| }, | |||
| dick: { | |||
| height: math.unit(1.4, "feet"), | |||
| height: math.unit(1.65, "feet"), | |||
| name: "Dick", | |||
| image: { | |||
| source: "./media/characters/tarn/dick.svg" | |||
| } | |||
| }, | |||
| paw: { | |||
| height: math.unit(1.53, "feet"), | |||
| height: math.unit(1.80, "feet"), | |||
| name: "Paw", | |||
| image: { | |||
| source: "./media/characters/tarn/paw.svg" | |||
| } | |||
| }, | |||
| tongue: { | |||
| height: math.unit(0.82, "feet"), | |||
| height: math.unit(0.97, "feet"), | |||
| name: "Tongue", | |||
| image: { | |||
| source: "./media/characters/tarn/tongue.svg" | |||
| @@ -31790,26 +31790,18 @@ characterMakers.push(() => makeCharacter( | |||
| }, | |||
| }, | |||
| [ | |||
| { | |||
| name: "Really Small", | |||
| height: math.unit(2, "inches") | |||
| }, | |||
| { | |||
| name: "Micro", | |||
| height: math.unit(5.583, "inches") | |||
| height: math.unit(4, "inches") | |||
| }, | |||
| { | |||
| name: "Normal", | |||
| height: math.unit(5 + 7/12, "feet"), | |||
| height: math.unit(6 + 7/12, "feet"), | |||
| default: true | |||
| }, | |||
| { | |||
| name: "Maro", | |||
| height: math.unit(67, "feet") | |||
| }, | |||
| { | |||
| name: "Megamacro", | |||
| height: math.unit(134, "feet") | |||
| name: "Macro", | |||
| height: math.unit(300, "feet") | |||
| }, | |||
| ] | |||
| )) | |||