| @@ -32086,30 +32086,78 @@ characterMakers.push(() => makeCharacter( | |||
| [ | |||
| { | |||
| name: "Really small", | |||
| height: math.unit(1, "nm") | |||
| height: math.unit(1, "nm"), | |||
| allForms: true | |||
| }, | |||
| { | |||
| name: "Micro", | |||
| height: math.unit(5, "inches") | |||
| height: math.unit(5, "inches"), | |||
| allForms: true | |||
| }, | |||
| { | |||
| name: "Normal", | |||
| height: math.unit(5 + 6 / 12, "feet"), | |||
| default: true | |||
| default: true, | |||
| form: "cat" | |||
| }, | |||
| { | |||
| name: "Normal", | |||
| height: math.unit(7, "feet"), | |||
| default: true, | |||
| form: "taur" | |||
| }, | |||
| { | |||
| name: "Normal", | |||
| height: math.unit(4, "feet"), | |||
| default: true, | |||
| form: "lucario" | |||
| }, | |||
| { | |||
| name: "Normal", | |||
| height: math.unit(2, "feet"), | |||
| default: true, | |||
| form: "nickit" | |||
| }, | |||
| { | |||
| name: "Normal", | |||
| height: math.unit(5, "feet"), | |||
| default: true, | |||
| form: "lopunny" | |||
| }, | |||
| { | |||
| name: "Macro", | |||
| height: math.unit(50, "feet") | |||
| height: math.unit(50, "feet"), | |||
| allForms: true | |||
| }, | |||
| { | |||
| name: "Macro+", | |||
| height: math.unit(150, "feet") | |||
| height: math.unit(150, "feet"), | |||
| allForms: true | |||
| }, | |||
| { | |||
| name: "Megamacro", | |||
| height: math.unit(100, "miles") | |||
| height: math.unit(100, "miles"), | |||
| allForms: true | |||
| }, | |||
| ] | |||
| ], | |||
| { | |||
| "cat": { | |||
| name: "Cat", | |||
| default: true | |||
| }, | |||
| "taur": { | |||
| name: "Taur", | |||
| }, | |||
| "lucario": { | |||
| name: "Lucario", | |||
| }, | |||
| "nickit": { | |||
| name: "Nickit", | |||
| }, | |||
| "lopunny": { | |||
| name: "Lopunny", | |||
| } | |||
| } | |||
| )) | |||
| characterMakers.push(() => makeCharacter( | |||