| @@ -27592,11 +27592,27 @@ characterMakers.push(() => makeCharacter( | |||||
| }, | }, | ||||
| }, | }, | ||||
| [ | [ | ||||
| { | |||||
| name: "Micro", | |||||
| height: math.unit((6 + 7 / 12) * 0.1, "feet") | |||||
| }, | |||||
| { | { | ||||
| name: "Normal", | name: "Normal", | ||||
| height: math.unit(6 + 7 / 12, "feet"), | height: math.unit(6 + 7 / 12, "feet"), | ||||
| default: true | default: true | ||||
| }, | }, | ||||
| { | |||||
| name: "Macro", | |||||
| height: math.unit((6 + 7 / 12) * 150, "feet") | |||||
| }, | |||||
| { | |||||
| name: "Macro+", | |||||
| height: math.unit((6 + 7 / 12) * 500, "feet") | |||||
| }, | |||||
| { | |||||
| name: "Megamacro", | |||||
| height: math.unit((6 + 7 / 12) * 100000, "feet") | |||||
| }, | |||||
| ] | ] | ||||
| )) | )) | ||||