| @@ -176,6 +176,59 @@ characterMakers["Sofia"] = () => { | |||||
| ) | ) | ||||
| }; | }; | ||||
| characterMakers["March"] = () => { | |||||
| return makeCharacter( | |||||
| "March", | |||||
| "March-Dragon", | |||||
| { | |||||
| front: { | |||||
| height: math.unit(7, "feet"), | |||||
| weight: math.unit(100, "kg"), | |||||
| name: "Front", | |||||
| image: { | |||||
| source: "./media/characters/march/front.svg", | |||||
| extra: (1 / (1 - 0.015)), | |||||
| bottom: 0.015 | |||||
| } | |||||
| }, | |||||
| foot: { | |||||
| height: math.unit(0.9, "feet"), | |||||
| name: "Foot", | |||||
| image: { | |||||
| source: "./media/characters/march/foot.svg" | |||||
| } | |||||
| }, | |||||
| }, | |||||
| [ | |||||
| { | |||||
| name: "Normal", | |||||
| height: math.unit(7.9, "feet") | |||||
| }, | |||||
| { | |||||
| name: "Macro", | |||||
| height: math.unit(220, "meters") | |||||
| }, | |||||
| { | |||||
| name: "Megamacro", | |||||
| height: math.unit(2.98, "km"), | |||||
| default: true | |||||
| }, | |||||
| { | |||||
| name: "Gigamacro", | |||||
| height: math.unit(15963, "km") | |||||
| }, | |||||
| { | |||||
| name: "Teramacro", | |||||
| height: math.unit(2980000000, "km") | |||||
| }, | |||||
| { | |||||
| name: "Examacro", | |||||
| height: math.unit(250, "parsecs") | |||||
| }, | |||||
| ] | |||||
| ) | |||||
| }; | |||||
| function makeMarch() { | function makeMarch() { | ||||
| const views = { | const views = { | ||||
| front: { | front: { | ||||
| @@ -8641,10 +8694,6 @@ characterMakers["Adam Silver-Mane"] = () => { | |||||
| function makeCharacters() { | function makeCharacters() { | ||||
| const results = []; | const results = []; | ||||
| results.push({ | |||||
| name: "March", | |||||
| constructor: makeMarch | |||||
| }); | |||||
| results.push({ | results.push({ | ||||
| name: "Noir", | name: "Noir", | ||||
| constructor: makeNoir | constructor: makeNoir | ||||