less copy protection, more size visualization
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

21363 行
510 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename
  18. }
  19. if (value.weight) {
  20. views[key].attributes.weight = {
  21. name: "Mass",
  22. power: 3,
  23. type: "mass",
  24. base: value.weight
  25. };
  26. }
  27. });
  28. return createEntityMaker(info, views, defaultSizes);
  29. }
  30. characterMakers.push(() => makeCharacter(
  31. {
  32. name: "Fen",
  33. species: "Crux",
  34. description: {
  35. title: "Bio",
  36. text: "Very furry. Sheds on everything."
  37. }
  38. },
  39. {
  40. back: {
  41. height: math.unit(2.2428, "meter"),
  42. weight: math.unit(124.738, "kg"),
  43. name: "Back",
  44. image: {
  45. source: "./media/characters/fen/back.svg",
  46. extra: 1025 / 935,
  47. bottom: 0.01
  48. },
  49. info: {
  50. description: {
  51. mode: "append",
  52. text: "\n\nHe is not currently looking at you."
  53. }
  54. }
  55. },
  56. full: {
  57. height: math.unit(1.34, "meter"),
  58. weight: math.unit(225, "kg"),
  59. name: "Full",
  60. image: {
  61. source: "./media/characters/fen/full.svg"
  62. },
  63. info: {
  64. description: {
  65. mode: "append",
  66. text: "\n\nMunch."
  67. }
  68. }
  69. },
  70. kneeling: {
  71. height: math.unit(5.4, "feet"),
  72. weight: math.unit(124.738, "kg"),
  73. name: "Kneeling",
  74. image: {
  75. source: "./media/characters/fen/kneeling.svg",
  76. extra: 563 / 507
  77. }
  78. },
  79. },
  80. [
  81. {
  82. name: "Normal",
  83. height: math.unit(2.2428, "meter")
  84. },
  85. {
  86. name: "Big",
  87. height: math.unit(12, "feet")
  88. },
  89. {
  90. name: "Minimacro",
  91. height: math.unit(30, "meter"),
  92. default: true,
  93. info: {
  94. description: {
  95. mode: "append",
  96. text: "\n\nTOO DAMN BIG"
  97. }
  98. }
  99. },
  100. {
  101. name: "Macro",
  102. height: math.unit(100, "meter"),
  103. info: {
  104. description: {
  105. mode: "append",
  106. text: "\n\nTOO DAMN BIG"
  107. }
  108. }
  109. },
  110. {
  111. name: "Macro+",
  112. height: math.unit(1000, "meter")
  113. },
  114. {
  115. name: "Megamacro",
  116. height: math.unit(10, "miles")
  117. }
  118. ]
  119. ))
  120. characterMakers.push(() => makeCharacter(
  121. { name: "Sofia Fluttertail" },
  122. {
  123. front: {
  124. height: math.unit(183, "cm"),
  125. weight: math.unit(80, "kg"),
  126. name: "Front",
  127. image: {
  128. source: "./media/characters/sofia-fluttertail/front.svg",
  129. bottom: 0.01,
  130. extra: 2154 / 2081
  131. }
  132. },
  133. frontAlt: {
  134. height: math.unit(183, "cm"),
  135. weight: math.unit(80, "kg"),
  136. name: "Front (alt)",
  137. image: {
  138. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  139. }
  140. },
  141. back: {
  142. height: math.unit(183, "cm"),
  143. weight: math.unit(80, "kg"),
  144. name: "Back",
  145. image: {
  146. source: "./media/characters/sofia-fluttertail/back.svg"
  147. }
  148. },
  149. kneeling: {
  150. height: math.unit(125, "cm"),
  151. weight: math.unit(80, "kg"),
  152. name: "Kneeling",
  153. image: {
  154. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  155. extra: 1033/977,
  156. bottom: 23.7/1057
  157. }
  158. },
  159. maw: {
  160. height: math.unit(183 / 5, "cm"),
  161. name: "Maw",
  162. image: {
  163. source: "./media/characters/sofia-fluttertail/maw.svg"
  164. }
  165. },
  166. mawcloseup: {
  167. height: math.unit(183 / 5 * 0.41, "cm"),
  168. name: "Maw (Closeup)",
  169. image: {
  170. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  171. }
  172. },
  173. },
  174. [
  175. {
  176. name: "Normal",
  177. height: math.unit(1.83, "meter")
  178. },
  179. {
  180. name: "Size Thief",
  181. height: math.unit(18, "feet")
  182. },
  183. {
  184. name: "50 Foot Collie",
  185. height: math.unit(50, "feet")
  186. },
  187. {
  188. name: "Macro",
  189. height: math.unit(96, "feet"),
  190. default: true
  191. },
  192. {
  193. name: "Megamerger",
  194. height: math.unit(650, "feet")
  195. },
  196. ]
  197. ))
  198. characterMakers.push(() => makeCharacter(
  199. { name: "March" },
  200. {
  201. front: {
  202. height: math.unit(7, "feet"),
  203. weight: math.unit(100, "kg"),
  204. name: "Front",
  205. image: {
  206. source: "./media/characters/march/front.svg",
  207. extra: 1,
  208. bottom: 0.015
  209. }
  210. },
  211. foot: {
  212. height: math.unit(0.9, "feet"),
  213. name: "Foot",
  214. image: {
  215. source: "./media/characters/march/foot.svg"
  216. }
  217. },
  218. },
  219. [
  220. {
  221. name: "Normal",
  222. height: math.unit(7.9, "feet")
  223. },
  224. {
  225. name: "Macro",
  226. height: math.unit(220, "meters")
  227. },
  228. {
  229. name: "Megamacro",
  230. height: math.unit(2.98, "km"),
  231. default: true
  232. },
  233. {
  234. name: "Gigamacro",
  235. height: math.unit(15963, "km")
  236. },
  237. {
  238. name: "Teramacro",
  239. height: math.unit(2980000000, "km")
  240. },
  241. {
  242. name: "Examacro",
  243. height: math.unit(250, "parsecs")
  244. },
  245. ]
  246. ))
  247. characterMakers.push(() => makeCharacter(
  248. { name: "Noir" },
  249. {
  250. front: {
  251. height: math.unit(6, "feet"),
  252. weight: math.unit(60, "kg"),
  253. name: "Front",
  254. image: {
  255. source: "./media/characters/noir/front.svg",
  256. extra: 1,
  257. bottom: 0.032
  258. }
  259. },
  260. },
  261. [
  262. {
  263. name: "Normal",
  264. height: math.unit(6.6, "feet")
  265. },
  266. {
  267. name: "Macro",
  268. height: math.unit(500, "feet")
  269. },
  270. {
  271. name: "Megamacro",
  272. height: math.unit(2.5, "km"),
  273. default: true
  274. },
  275. {
  276. name: "Gigamacro",
  277. height: math.unit(22500, "km")
  278. },
  279. {
  280. name: "Teramacro",
  281. height: math.unit(2500000000, "km")
  282. },
  283. {
  284. name: "Examacro",
  285. height: math.unit(200, "parsecs")
  286. },
  287. ]
  288. ))
  289. characterMakers.push(() => makeCharacter(
  290. { name: "Okuri" },
  291. {
  292. front: {
  293. height: math.unit(7, "feet"),
  294. weight: math.unit(100, "kg"),
  295. name: "Front",
  296. image: {
  297. source: "./media/characters/okuri/front.svg",
  298. extra: 1,
  299. bottom: 0.037
  300. }
  301. },
  302. back: {
  303. height: math.unit(7, "feet"),
  304. weight: math.unit(100, "kg"),
  305. name: "Back",
  306. image: {
  307. source: "./media/characters/okuri/back.svg",
  308. extra: 1,
  309. bottom: 0.007
  310. }
  311. },
  312. },
  313. [
  314. {
  315. name: "Megamacro",
  316. height: math.unit(100, "miles"),
  317. default: true
  318. },
  319. ]
  320. ))
  321. characterMakers.push(() => makeCharacter(
  322. { name: "Manny" },
  323. {
  324. front: {
  325. height: math.unit(7, "feet"),
  326. weight: math.unit(100, "kg"),
  327. name: "Front",
  328. image: {
  329. source: "./media/characters/manny/front.svg",
  330. extra: 1,
  331. bottom: 0.06
  332. }
  333. },
  334. back: {
  335. height: math.unit(7, "feet"),
  336. weight: math.unit(100, "kg"),
  337. name: "Back",
  338. image: {
  339. source: "./media/characters/manny/back.svg",
  340. extra: 1,
  341. bottom: 0.014
  342. }
  343. },
  344. },
  345. [
  346. {
  347. name: "Normal",
  348. height: math.unit(7, "feet"),
  349. },
  350. {
  351. name: "Macro",
  352. height: math.unit(78, "feet"),
  353. default: true
  354. },
  355. {
  356. name: "Macro+",
  357. height: math.unit(300, "meters")
  358. },
  359. {
  360. name: "Macro++",
  361. height: math.unit(2400, "meters")
  362. },
  363. {
  364. name: "Megamacro",
  365. height: math.unit(5167, "meters")
  366. },
  367. {
  368. name: "Gigamacro",
  369. height: math.unit(41769, "miles")
  370. },
  371. ]
  372. ))
  373. characterMakers.push(() => makeCharacter(
  374. { name: "Adake" },
  375. {
  376. front: {
  377. height: math.unit(7, "feet"),
  378. weight: math.unit(100, "kg"),
  379. name: "Front",
  380. image: {
  381. source: "./media/characters/adake/front-1.svg"
  382. }
  383. },
  384. frontAlt: {
  385. height: math.unit(7, "feet"),
  386. weight: math.unit(100, "kg"),
  387. name: "Front (Alt)",
  388. image: {
  389. source: "./media/characters/adake/front-2.svg",
  390. extra: 1,
  391. bottom: 0.01
  392. }
  393. },
  394. back: {
  395. height: math.unit(7, "feet"),
  396. weight: math.unit(100, "kg"),
  397. name: "Back",
  398. image: {
  399. source: "./media/characters/adake/back.svg",
  400. }
  401. },
  402. kneel: {
  403. height: math.unit(5.385, "feet"),
  404. weight: math.unit(100, "kg"),
  405. name: "Kneeling",
  406. image: {
  407. source: "./media/characters/adake/kneel.svg",
  408. bottom: 0.052
  409. }
  410. },
  411. },
  412. [
  413. {
  414. name: "Normal",
  415. height: math.unit(7, "feet"),
  416. },
  417. {
  418. name: "Macro",
  419. height: math.unit(78, "feet"),
  420. default: true
  421. },
  422. {
  423. name: "Macro+",
  424. height: math.unit(300, "meters")
  425. },
  426. {
  427. name: "Macro++",
  428. height: math.unit(2400, "meters")
  429. },
  430. {
  431. name: "Megamacro",
  432. height: math.unit(5167, "meters")
  433. },
  434. {
  435. name: "Gigamacro",
  436. height: math.unit(41769, "miles")
  437. },
  438. ]
  439. ))
  440. characterMakers.push(() => makeCharacter(
  441. { name: "Elijah" },
  442. {
  443. front: {
  444. height: math.unit(1.65, "meters"),
  445. weight: math.unit(50, "kg"),
  446. name: "Front",
  447. image: {
  448. source: "./media/characters/elijah/front.svg",
  449. extra: 858/830,
  450. bottom: 95.5/953.8559
  451. }
  452. },
  453. back: {
  454. height: math.unit(1.65, "meters"),
  455. weight: math.unit(50, "kg"),
  456. name: "Back",
  457. image: {
  458. source: "./media/characters/elijah/back.svg",
  459. extra: 895/850,
  460. bottom: 5.3/897.956
  461. }
  462. },
  463. frontNsfw: {
  464. height: math.unit(1.65, "meters"),
  465. weight: math.unit(50, "kg"),
  466. name: "Front (NSFW)",
  467. image: {
  468. source: "./media/characters/elijah/front-nsfw.svg",
  469. extra: 858/830,
  470. bottom: 95.5/953.8559
  471. }
  472. },
  473. backNsfw: {
  474. height: math.unit(1.65, "meters"),
  475. weight: math.unit(50, "kg"),
  476. name: "Back (NSFW)",
  477. image: {
  478. source: "./media/characters/elijah/back-nsfw.svg",
  479. extra: 895/850,
  480. bottom: 5.3/897.956
  481. }
  482. },
  483. dick: {
  484. height: math.unit(1, "feet"),
  485. name: "Dick",
  486. image: {
  487. source: "./media/characters/elijah/dick.svg"
  488. }
  489. },
  490. beakOpen: {
  491. height: math.unit(1.25, "feet"),
  492. name: "Beak (Open)",
  493. image: {
  494. source: "./media/characters/elijah/beak-open.svg"
  495. }
  496. },
  497. beakShut: {
  498. height: math.unit(1.25, "feet"),
  499. name: "Beak (Shut)",
  500. image: {
  501. source: "./media/characters/elijah/beak-shut.svg"
  502. }
  503. },
  504. footFlexing: {
  505. height: math.unit(1.61, "feet"),
  506. name: "Foot (Flexing)",
  507. image: {
  508. source: "./media/characters/elijah/foot-flexing.svg"
  509. }
  510. },
  511. footStepping: {
  512. height: math.unit(1.44, "feet"),
  513. name: "Foot (Stepping)",
  514. image: {
  515. source: "./media/characters/elijah/foot-stepping.svg"
  516. }
  517. },
  518. plantigradeLeg: {
  519. height: math.unit(2.34, "feet"),
  520. name: "Plantigrade Leg",
  521. image: {
  522. source: "./media/characters/elijah/plantigrade-leg.svg"
  523. }
  524. },
  525. plantigradeFootLeft: {
  526. height: math.unit(0.9, "feet"),
  527. name: "Plantigrade Foot (Left)",
  528. image: {
  529. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  530. }
  531. },
  532. plantigradeFootRight: {
  533. height: math.unit(0.9, "feet"),
  534. name: "Plantigrade Foot (Right)",
  535. image: {
  536. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  537. }
  538. },
  539. },
  540. [
  541. {
  542. name: "Normal",
  543. height: math.unit(1.65, "meters")
  544. },
  545. {
  546. name: "Macro",
  547. height: math.unit(55, "meters"),
  548. default: true
  549. },
  550. {
  551. name: "Macro+",
  552. height: math.unit(105, "meters")
  553. },
  554. ]
  555. ))
  556. characterMakers.push(() => makeCharacter(
  557. { name: "Rai" },
  558. {
  559. front: {
  560. height: math.unit(11, "feet"),
  561. weight: math.unit(80, "kg"),
  562. name: "Front",
  563. image: {
  564. source: "./media/characters/rai/front.svg",
  565. extra: 1,
  566. bottom: 0.03
  567. }
  568. },
  569. side: {
  570. height: math.unit(11, "feet"),
  571. weight: math.unit(80, "kg"),
  572. name: "Side",
  573. image: {
  574. source: "./media/characters/rai/side.svg"
  575. }
  576. },
  577. back: {
  578. height: math.unit(11, "feet"),
  579. weight: math.unit(80, "lb"),
  580. name: "Back",
  581. image: {
  582. source: "./media/characters/rai/back.svg",
  583. extra: 1,
  584. bottom: 0.01
  585. }
  586. },
  587. feral: {
  588. height: math.unit(11, "feet"),
  589. weight: math.unit(800, "lb"),
  590. name: "Feral",
  591. image: {
  592. source: "./media/characters/rai/feral.svg",
  593. extra: 1050 / 659,
  594. bottom: 0.07
  595. }
  596. },
  597. maw: {
  598. height: math.unit(6 / 3.81416, "feet"),
  599. name: "Maw",
  600. image: {
  601. source: "./media/characters/rai/maw.svg"
  602. }
  603. },
  604. },
  605. [
  606. {
  607. name: "Normal",
  608. height: math.unit(11, "feet")
  609. },
  610. {
  611. name: "Macro",
  612. height: math.unit(302, "feet"),
  613. default: true
  614. },
  615. ]
  616. ))
  617. characterMakers.push(() => makeCharacter(
  618. { name: "Jazzy" },
  619. {
  620. front: {
  621. height: math.unit(7, "feet"),
  622. weight: math.unit(80, "kg"),
  623. name: "Front",
  624. image: {
  625. source: "./media/characters/jazzy/front.svg",
  626. extra: 1,
  627. bottom: 0.01
  628. }
  629. },
  630. back: {
  631. height: math.unit(7, "feet"),
  632. weight: math.unit(80, "kg"),
  633. name: "Back",
  634. image: {
  635. source: "./media/characters/jazzy/back.svg",
  636. extra: 1,
  637. bottom: 0.01
  638. }
  639. },
  640. },
  641. [
  642. {
  643. name: "Macro",
  644. height: math.unit(216, "feet"),
  645. default: true
  646. },
  647. ]
  648. ))
  649. characterMakers.push(() => makeCharacter(
  650. { name: "Flamm" },
  651. {
  652. front: {
  653. height: math.unit(7, "feet"),
  654. weight: math.unit(80, "kg"),
  655. name: "Front",
  656. image: {
  657. source: "./media/characters/flamm/front.svg",
  658. extra: 1794 / 1677,
  659. bottom: 31.7 / 1828.5
  660. }
  661. },
  662. },
  663. [
  664. {
  665. name: "Normal",
  666. height: math.unit(9.5, "feet")
  667. },
  668. {
  669. name: "Macro",
  670. height: math.unit(200, "feet"),
  671. default: true
  672. },
  673. ]
  674. ))
  675. characterMakers.push(() => makeCharacter(
  676. { name: "Zephiro" },
  677. {
  678. front: {
  679. height: math.unit(7, "feet"),
  680. weight: math.unit(80, "kg"),
  681. name: "Front",
  682. image: {
  683. source: "./media/characters/zephiro/front.svg",
  684. extra: 2309 / 2162,
  685. bottom: 0.069
  686. }
  687. },
  688. side: {
  689. height: math.unit(7, "feet"),
  690. weight: math.unit(80, "kg"),
  691. name: "Side",
  692. image: {
  693. source: "./media/characters/zephiro/side.svg",
  694. extra: 2403 / 2279,
  695. bottom: 0.015
  696. }
  697. },
  698. back: {
  699. height: math.unit(7, "feet"),
  700. weight: math.unit(80, "kg"),
  701. name: "Back",
  702. image: {
  703. source: "./media/characters/zephiro/back.svg",
  704. extra: 2373 / 2244,
  705. bottom: 0.013
  706. }
  707. },
  708. },
  709. [
  710. {
  711. name: "Micro",
  712. height: math.unit(3, "inches")
  713. },
  714. {
  715. name: "Normal",
  716. height: math.unit(5 + 3 / 12, "feet"),
  717. default: true
  718. },
  719. {
  720. name: "Macro",
  721. height: math.unit(118, "feet")
  722. },
  723. ]
  724. ))
  725. characterMakers.push(() => makeCharacter(
  726. { name: "Fory" },
  727. {
  728. front: {
  729. height: math.unit(5, "feet"),
  730. weight: math.unit(90, "kg"),
  731. name: "Front",
  732. image: {
  733. source: "./media/characters/fory/front.svg",
  734. extra: 2862 / 2674,
  735. bottom: 180 / 3043.8
  736. }
  737. },
  738. back: {
  739. height: math.unit(5, "feet"),
  740. weight: math.unit(90, "kg"),
  741. name: "Back",
  742. image: {
  743. source: "./media/characters/fory/back.svg",
  744. extra: 2962 / 2791,
  745. bottom: 106 / 3071.8
  746. }
  747. },
  748. foot: {
  749. height: math.unit(2.14, "feet"),
  750. name: "Foot",
  751. image: {
  752. source: "./media/characters/fory/foot.svg"
  753. }
  754. },
  755. },
  756. [
  757. {
  758. name: "Normal",
  759. height: math.unit(5, "feet")
  760. },
  761. {
  762. name: "Macro",
  763. height: math.unit(50, "feet"),
  764. default: true
  765. },
  766. {
  767. name: "Megamacro",
  768. height: math.unit(10, "miles")
  769. },
  770. {
  771. name: "Gigamacro",
  772. height: math.unit(5, "earths")
  773. },
  774. ]
  775. ))
  776. characterMakers.push(() => makeCharacter(
  777. { name: "Kurrikage" },
  778. {
  779. front: {
  780. height: math.unit(7, "feet"),
  781. weight: math.unit(90, "kg"),
  782. name: "Front",
  783. image: {
  784. source: "./media/characters/kurrikage/front.svg",
  785. extra: 1,
  786. bottom: 0.035
  787. }
  788. },
  789. back: {
  790. height: math.unit(7, "feet"),
  791. weight: math.unit(90, "lb"),
  792. name: "Back",
  793. image: {
  794. source: "./media/characters/kurrikage/back.svg"
  795. }
  796. },
  797. paw: {
  798. height: math.unit(1.5, "feet"),
  799. name: "Paw",
  800. image: {
  801. source: "./media/characters/kurrikage/paw.svg"
  802. }
  803. },
  804. staff: {
  805. height: math.unit(6.7, "feet"),
  806. name: "Staff",
  807. image: {
  808. source: "./media/characters/kurrikage/staff.svg"
  809. }
  810. },
  811. peek: {
  812. height: math.unit(1.05, "feet"),
  813. name: "Peeking",
  814. image: {
  815. source: "./media/characters/kurrikage/peek.svg",
  816. bottom: 0.08
  817. }
  818. },
  819. },
  820. [
  821. {
  822. name: "Normal",
  823. height: math.unit(12, "feet"),
  824. default: true
  825. },
  826. {
  827. name: "Big",
  828. height: math.unit(20, "feet")
  829. },
  830. {
  831. name: "Macro",
  832. height: math.unit(500, "feet")
  833. },
  834. {
  835. name: "Megamacro",
  836. height: math.unit(20, "miles")
  837. },
  838. ]
  839. ))
  840. characterMakers.push(() => makeCharacter(
  841. { name: "Shingo" },
  842. {
  843. front: {
  844. height: math.unit(6, "feet"),
  845. weight: math.unit(75, "kg"),
  846. name: "Front",
  847. image: {
  848. source: "./media/characters/shingo/front.svg",
  849. extra: 3511 / 3338,
  850. bottom: 0.005
  851. }
  852. },
  853. },
  854. [
  855. {
  856. name: "Micro",
  857. height: math.unit(4, "inches")
  858. },
  859. {
  860. name: "Normal",
  861. height: math.unit(6, "feet"),
  862. default: true
  863. },
  864. {
  865. name: "Macro",
  866. height: math.unit(108, "feet")
  867. }
  868. ]
  869. ))
  870. characterMakers.push(() => makeCharacter(
  871. { name: "Aigey" },
  872. {
  873. side: {
  874. height: math.unit(6, "feet"),
  875. weight: math.unit(75, "kg"),
  876. name: "Side",
  877. image: {
  878. source: "./media/characters/aigey/side.svg"
  879. }
  880. },
  881. },
  882. [
  883. {
  884. name: "Macro",
  885. height: math.unit(200, "feet"),
  886. default: true
  887. },
  888. {
  889. name: "Megamacro",
  890. height: math.unit(100, "miles")
  891. },
  892. ]
  893. )
  894. )
  895. characterMakers.push(() => makeCharacter(
  896. { name: "Natasha" },
  897. {
  898. front: {
  899. height: math.unit(5 + 5 / 12, "feet"),
  900. weight: math.unit(75, "kg"),
  901. name: "Front",
  902. image: {
  903. source: "./media/characters/natasha/front.svg",
  904. extra: 859/824,
  905. bottom: 23/879.6
  906. }
  907. },
  908. frontNsfw: {
  909. height: math.unit(5 + 5 / 12, "feet"),
  910. weight: math.unit(75, "kg"),
  911. name: "Front (NSFW)",
  912. image: {
  913. source: "./media/characters/natasha/front-nsfw.svg",
  914. extra: 859/824,
  915. bottom: 23/879.6
  916. }
  917. },
  918. frontErect: {
  919. height: math.unit(5 + 5 / 12, "feet"),
  920. weight: math.unit(75, "kg"),
  921. name: "Front (Erect)",
  922. image: {
  923. source: "./media/characters/natasha/front-erect.svg",
  924. extra: 859/824,
  925. bottom: 23/879.6
  926. }
  927. },
  928. back: {
  929. height: math.unit(5 + 5 / 12, "feet"),
  930. weight: math.unit(75, "kg"),
  931. name: "Back",
  932. image: {
  933. source: "./media/characters/natasha/back.svg",
  934. extra: 887.9/852.6,
  935. bottom: 9.7/896.4
  936. }
  937. },
  938. backAlt: {
  939. height: math.unit(5 + 5 / 12, "feet"),
  940. weight: math.unit(75, "kg"),
  941. name: "Back (Alt)",
  942. image: {
  943. source: "./media/characters/natasha/back-alt.svg",
  944. extra: 1236.7/1192,
  945. bottom: 22.3/1258.2
  946. }
  947. },
  948. dick: {
  949. height: math.unit(1.772, "feet"),
  950. name: "Dick",
  951. image: {
  952. source: "./media/characters/natasha/dick.svg"
  953. }
  954. },
  955. },
  956. [
  957. {
  958. name: "Normal",
  959. height: math.unit(5 + 5 / 12, "feet")
  960. },
  961. {
  962. name: "Large",
  963. height: math.unit(12, "feet")
  964. },
  965. {
  966. name: "Macro",
  967. height: math.unit(100, "feet"),
  968. default: true
  969. },
  970. {
  971. name: "Macro+",
  972. height: math.unit(260, "feet")
  973. },
  974. {
  975. name: "Macro++",
  976. height: math.unit(1, "mile")
  977. },
  978. ]
  979. ))
  980. characterMakers.push(() => makeCharacter(
  981. { name: "Malik" },
  982. {
  983. front: {
  984. height: math.unit(6, "feet"),
  985. weight: math.unit(75, "kg"),
  986. name: "Front",
  987. image: {
  988. source: "./media/characters/malik/front.svg"
  989. }
  990. },
  991. side: {
  992. height: math.unit(6, "feet"),
  993. weight: math.unit(75, "kg"),
  994. name: "Side",
  995. image: {
  996. source: "./media/characters/malik/side.svg",
  997. extra: 1.1539
  998. }
  999. },
  1000. back: {
  1001. height: math.unit(6, "feet"),
  1002. weight: math.unit(75, "kg"),
  1003. name: "Back",
  1004. image: {
  1005. source: "./media/characters/malik/back.svg"
  1006. }
  1007. },
  1008. },
  1009. [
  1010. {
  1011. name: "Macro",
  1012. height: math.unit(156, "feet"),
  1013. default: true
  1014. },
  1015. {
  1016. name: "Macro+",
  1017. height: math.unit(1188, "feet")
  1018. },
  1019. ]
  1020. ))
  1021. characterMakers.push(() => makeCharacter(
  1022. { name: "Sefer" },
  1023. {
  1024. front: {
  1025. height: math.unit(6, "feet"),
  1026. weight: math.unit(75, "kg"),
  1027. name: "Front",
  1028. image: {
  1029. source: "./media/characters/sefer/front.svg"
  1030. }
  1031. },
  1032. back: {
  1033. height: math.unit(6, "feet"),
  1034. weight: math.unit(75, "kg"),
  1035. name: "Back",
  1036. image: {
  1037. source: "./media/characters/sefer/back.svg"
  1038. }
  1039. },
  1040. },
  1041. [
  1042. {
  1043. name: "Normal",
  1044. height: math.unit(6, "feet"),
  1045. default: true
  1046. },
  1047. ]
  1048. ))
  1049. characterMakers.push(() => makeCharacter(
  1050. { name: "North" },
  1051. {
  1052. body: {
  1053. height: math.unit(2.2428, "meter"),
  1054. weight: math.unit(124.738, "kg"),
  1055. name: "Body",
  1056. image: {
  1057. extra: 1225 / 1050,
  1058. source: "./media/characters/north/front.svg"
  1059. }
  1060. }
  1061. },
  1062. [
  1063. {
  1064. name: "Micro",
  1065. height: math.unit(4, "inches")
  1066. },
  1067. {
  1068. name: "Macro",
  1069. height: math.unit(63, "meters")
  1070. },
  1071. {
  1072. name: "Megamacro",
  1073. height: math.unit(101, "miles"),
  1074. default: true
  1075. }
  1076. ]
  1077. ))
  1078. characterMakers.push(() => makeCharacter(
  1079. { name: "Talan" },
  1080. {
  1081. angled: {
  1082. height: math.unit(4, "meter"),
  1083. weight: math.unit(150, "kg"),
  1084. name: "Angled",
  1085. image: {
  1086. source: "./media/characters/talan/angled-sfw.svg",
  1087. bottom: 29 / 3734
  1088. }
  1089. },
  1090. angledNsfw: {
  1091. height: math.unit(4, "meter"),
  1092. weight: math.unit(150, "kg"),
  1093. name: "Angled (NSFW)",
  1094. image: {
  1095. source: "./media/characters/talan/angled-nsfw.svg",
  1096. bottom: 29 / 3734
  1097. }
  1098. },
  1099. frontNsfw: {
  1100. height: math.unit(4, "meter"),
  1101. weight: math.unit(150, "kg"),
  1102. name: "Front (NSFW)",
  1103. image: {
  1104. source: "./media/characters/talan/front-nsfw.svg",
  1105. bottom: 29 / 3734
  1106. }
  1107. },
  1108. sideNsfw: {
  1109. height: math.unit(4, "meter"),
  1110. weight: math.unit(150, "kg"),
  1111. name: "Side (NSFW)",
  1112. image: {
  1113. source: "./media/characters/talan/side-nsfw.svg",
  1114. bottom: 29 / 3734
  1115. }
  1116. },
  1117. back: {
  1118. height: math.unit(4, "meter"),
  1119. weight: math.unit(150, "kg"),
  1120. name: "Back",
  1121. image: {
  1122. source: "./media/characters/talan/back.svg"
  1123. }
  1124. },
  1125. dickBottom: {
  1126. height: math.unit(0.621, "meter"),
  1127. name: "Dick (Bottom)",
  1128. image: {
  1129. source: "./media/characters/talan/dick-bottom.svg"
  1130. }
  1131. },
  1132. dickTop: {
  1133. height: math.unit(0.621, "meter"),
  1134. name: "Dick (Top)",
  1135. image: {
  1136. source: "./media/characters/talan/dick-top.svg"
  1137. }
  1138. },
  1139. dickSide: {
  1140. height: math.unit(0.305, "meter"),
  1141. name: "Dick (Side)",
  1142. image: {
  1143. source: "./media/characters/talan/dick-side.svg"
  1144. }
  1145. },
  1146. dickFront: {
  1147. height: math.unit(0.305, "meter"),
  1148. name: "Dick (Front)",
  1149. image: {
  1150. source: "./media/characters/talan/dick-front.svg"
  1151. }
  1152. },
  1153. },
  1154. [
  1155. {
  1156. name: "Normal",
  1157. height: math.unit(4, "meters")
  1158. },
  1159. {
  1160. name: "Macro",
  1161. height: math.unit(100, "meters")
  1162. },
  1163. {
  1164. name: "Megamacro",
  1165. height: math.unit(2, "miles"),
  1166. default: true
  1167. },
  1168. {
  1169. name: "Gigamacro",
  1170. height: math.unit(5000, "miles")
  1171. },
  1172. {
  1173. name: "Teramacro",
  1174. height: math.unit(100, "parsecs")
  1175. }
  1176. ]
  1177. ))
  1178. characterMakers.push(() => makeCharacter(
  1179. { name: "Gael'Rathus" },
  1180. {
  1181. front: {
  1182. height: math.unit(2, "meter"),
  1183. weight: math.unit(90, "kg"),
  1184. name: "Front",
  1185. image: {
  1186. source: "./media/characters/gael'rathus/front.svg"
  1187. }
  1188. },
  1189. frontAlt: {
  1190. height: math.unit(2, "meter"),
  1191. weight: math.unit(90, "kg"),
  1192. name: "Front (alt)",
  1193. image: {
  1194. source: "./media/characters/gael'rathus/front-alt.svg"
  1195. }
  1196. },
  1197. frontAlt2: {
  1198. height: math.unit(2, "meter"),
  1199. weight: math.unit(90, "kg"),
  1200. name: "Front (alt 2)",
  1201. image: {
  1202. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1203. }
  1204. }
  1205. },
  1206. [
  1207. {
  1208. name: "Normal",
  1209. height: math.unit(9, "feet"),
  1210. default: true
  1211. },
  1212. {
  1213. name: "Large",
  1214. height: math.unit(25, "feet")
  1215. },
  1216. {
  1217. name: "Macro",
  1218. height: math.unit(0.25, "miles")
  1219. },
  1220. {
  1221. name: "Megamacro",
  1222. height: math.unit(10, "miles")
  1223. }
  1224. ]
  1225. ))
  1226. characterMakers.push(() => makeCharacter(
  1227. { name: "Sosha" },
  1228. {
  1229. side: {
  1230. height: math.unit(2, "meter"),
  1231. weight: math.unit(140, "kg"),
  1232. name: "Side",
  1233. image: {
  1234. source: "./media/characters/sosha/side.svg",
  1235. bottom: 0.042
  1236. }
  1237. },
  1238. },
  1239. [
  1240. {
  1241. name: "Normal",
  1242. height: math.unit(12, "feet"),
  1243. default: true
  1244. }
  1245. ]
  1246. ))
  1247. characterMakers.push(() => makeCharacter(
  1248. { name: "RuNNoLa" },
  1249. {
  1250. side: {
  1251. height: math.unit(5 + 5 / 12, "feet"),
  1252. weight: math.unit(170, "kg"),
  1253. name: "Side",
  1254. image: {
  1255. source: "./media/characters/runnola/side.svg",
  1256. extra: 741 / 448,
  1257. bottom: 0.05
  1258. }
  1259. },
  1260. },
  1261. [
  1262. {
  1263. name: "Small",
  1264. height: math.unit(3, "feet")
  1265. },
  1266. {
  1267. name: "Normal",
  1268. height: math.unit(5 + 5 / 12, "feet"),
  1269. default: true
  1270. },
  1271. {
  1272. name: "Big",
  1273. height: math.unit(10, "feet")
  1274. },
  1275. ]
  1276. ))
  1277. characterMakers.push(() => makeCharacter(
  1278. { name: "Kurribird" },
  1279. {
  1280. front: {
  1281. height: math.unit(2, "meter"),
  1282. weight: math.unit(50, "kg"),
  1283. name: "Front",
  1284. image: {
  1285. source: "./media/characters/kurribird/front.svg",
  1286. bottom: 0.015
  1287. }
  1288. },
  1289. frontAlt: {
  1290. height: math.unit(1.5, "meter"),
  1291. weight: math.unit(50, "kg"),
  1292. name: "Front (Alt)",
  1293. image: {
  1294. source: "./media/characters/kurribird/front-alt.svg",
  1295. extra: 1.45
  1296. }
  1297. },
  1298. },
  1299. [
  1300. {
  1301. name: "Normal",
  1302. height: math.unit(7, "feet")
  1303. },
  1304. {
  1305. name: "Big",
  1306. height: math.unit(12, "feet"),
  1307. default: true
  1308. },
  1309. {
  1310. name: "Macro",
  1311. height: math.unit(1500, "feet")
  1312. },
  1313. {
  1314. name: "Megamacro",
  1315. height: math.unit(2, "miles")
  1316. }
  1317. ]
  1318. ))
  1319. characterMakers.push(() => makeCharacter(
  1320. { name: "Elbial" },
  1321. {
  1322. front: {
  1323. height: math.unit(2, "meter"),
  1324. weight: math.unit(80, "kg"),
  1325. name: "Front",
  1326. image: {
  1327. source: "./media/characters/elbial/front.svg",
  1328. extra: 1643 / 1556,
  1329. bottom: 60.2 / 1696
  1330. }
  1331. },
  1332. side: {
  1333. height: math.unit(2, "meter"),
  1334. weight: math.unit(80, "kg"),
  1335. name: "Side",
  1336. image: {
  1337. source: "./media/characters/elbial/side.svg",
  1338. extra: 1630 / 1565,
  1339. bottom: 71.5 / 1697
  1340. }
  1341. },
  1342. back: {
  1343. height: math.unit(2, "meter"),
  1344. weight: math.unit(80, "kg"),
  1345. name: "Back",
  1346. image: {
  1347. source: "./media/characters/elbial/back.svg",
  1348. extra: 1668 / 1595,
  1349. bottom: 5.6 / 1672
  1350. }
  1351. },
  1352. frontDressed: {
  1353. height: math.unit(2, "meter"),
  1354. weight: math.unit(80, "kg"),
  1355. name: "Front (Dressed)",
  1356. image: {
  1357. source: "./media/characters/elbial/front-dressed.svg",
  1358. extra: 1653 / 1584,
  1359. bottom: 57 / 1708
  1360. }
  1361. },
  1362. genitals: {
  1363. height: math.unit(2 / 3.367, "meter"),
  1364. name: "Genitals",
  1365. image: {
  1366. source: "./media/characters/elbial/genitals.svg"
  1367. }
  1368. },
  1369. },
  1370. [
  1371. {
  1372. name: "Large",
  1373. height: math.unit(100, "feet")
  1374. },
  1375. {
  1376. name: "Macro",
  1377. height: math.unit(500, "feet"),
  1378. default: true
  1379. },
  1380. {
  1381. name: "Megamacro",
  1382. height: math.unit(10, "miles")
  1383. },
  1384. {
  1385. name: "Gigamacro",
  1386. height: math.unit(25000, "miles")
  1387. },
  1388. {
  1389. name: "Full-Size",
  1390. height: math.unit(8000000, "gigaparsecs")
  1391. }
  1392. ]
  1393. ))
  1394. characterMakers.push(() => makeCharacter(
  1395. { name: "Noah" },
  1396. {
  1397. front: {
  1398. height: math.unit(2, "meter"),
  1399. weight: math.unit(60, "kg"),
  1400. name: "Front",
  1401. image: {
  1402. source: "./media/characters/noah/front.svg"
  1403. }
  1404. },
  1405. talons: {
  1406. height: math.unit(0.315, "meter"),
  1407. name: "Talons",
  1408. image: {
  1409. source: "./media/characters/noah/talons.svg"
  1410. }
  1411. }
  1412. },
  1413. [
  1414. {
  1415. name: "Large",
  1416. height: math.unit(50, "feet")
  1417. },
  1418. {
  1419. name: "Macro",
  1420. height: math.unit(750, "feet"),
  1421. default: true
  1422. },
  1423. {
  1424. name: "Megamacro",
  1425. height: math.unit(50, "miles")
  1426. },
  1427. {
  1428. name: "Gigamacro",
  1429. height: math.unit(100000, "miles")
  1430. },
  1431. {
  1432. name: "Full-Size",
  1433. height: math.unit(3000000000, "miles")
  1434. }
  1435. ]
  1436. ))
  1437. characterMakers.push(() => makeCharacter(
  1438. { name: "Natalya" },
  1439. {
  1440. front: {
  1441. height: math.unit(2, "meter"),
  1442. weight: math.unit(80, "kg"),
  1443. name: "Front",
  1444. image: {
  1445. source: "./media/characters/natalya/front.svg"
  1446. }
  1447. },
  1448. back: {
  1449. height: math.unit(2, "meter"),
  1450. weight: math.unit(80, "kg"),
  1451. name: "Back",
  1452. image: {
  1453. source: "./media/characters/natalya/back.svg"
  1454. }
  1455. }
  1456. },
  1457. [
  1458. {
  1459. name: "Normal",
  1460. height: math.unit(150, "feet"),
  1461. default: true
  1462. },
  1463. {
  1464. name: "Megamacro",
  1465. height: math.unit(5, "miles")
  1466. },
  1467. {
  1468. name: "Full-Size",
  1469. height: math.unit(600, "kiloparsecs")
  1470. }
  1471. ]
  1472. ))
  1473. characterMakers.push(() => makeCharacter(
  1474. { name: "Erestrebah" },
  1475. {
  1476. front: {
  1477. height: math.unit(2, "meter"),
  1478. weight: math.unit(50, "kg"),
  1479. name: "Front",
  1480. image: {
  1481. source: "./media/characters/erestrebah/front.svg",
  1482. extra: 208 / 193,
  1483. bottom: 0.055
  1484. }
  1485. },
  1486. back: {
  1487. height: math.unit(2, "meter"),
  1488. weight: math.unit(50, "kg"),
  1489. name: "Back",
  1490. image: {
  1491. source: "./media/characters/erestrebah/back.svg",
  1492. extra: 1.3
  1493. }
  1494. }
  1495. },
  1496. [
  1497. {
  1498. name: "Normal",
  1499. height: math.unit(10, "feet")
  1500. },
  1501. {
  1502. name: "Large",
  1503. height: math.unit(50, "feet"),
  1504. default: true
  1505. },
  1506. {
  1507. name: "Macro",
  1508. height: math.unit(300, "feet")
  1509. },
  1510. {
  1511. name: "Macro+",
  1512. height: math.unit(750, "feet")
  1513. },
  1514. {
  1515. name: "Megamacro",
  1516. height: math.unit(3, "miles")
  1517. }
  1518. ]
  1519. ))
  1520. characterMakers.push(() => makeCharacter(
  1521. { name: "Jennifer" },
  1522. {
  1523. front: {
  1524. height: math.unit(2, "meter"),
  1525. weight: math.unit(80, "kg"),
  1526. name: "Front",
  1527. image: {
  1528. source: "./media/characters/jennifer/front.svg",
  1529. bottom: 0.11,
  1530. extra: 1.16
  1531. }
  1532. },
  1533. frontAlt: {
  1534. height: math.unit(2, "meter"),
  1535. weight: math.unit(80, "kg"),
  1536. name: "Front (Alt)",
  1537. image: {
  1538. source: "./media/characters/jennifer/front-alt.svg"
  1539. }
  1540. }
  1541. },
  1542. [
  1543. {
  1544. name: "Canon Height",
  1545. height: math.unit(120, "feet"),
  1546. default: true
  1547. },
  1548. {
  1549. name: "Macro+",
  1550. height: math.unit(300, "feet")
  1551. },
  1552. {
  1553. name: "Megamacro",
  1554. height: math.unit(20000, "feet")
  1555. }
  1556. ]
  1557. ))
  1558. characterMakers.push(() => makeCharacter(
  1559. { name: "Kalista" },
  1560. {
  1561. front: {
  1562. height: math.unit(2, "meter"),
  1563. weight: math.unit(50, "kg"),
  1564. name: "Front",
  1565. image: {
  1566. source: "./media/characters/kalista/front.svg",
  1567. extra: 1947 / 1700,
  1568. bottom: 76.6/1412.98
  1569. }
  1570. },
  1571. back: {
  1572. height: math.unit(2, "meter"),
  1573. weight: math.unit(50, "kg"),
  1574. name: "Back",
  1575. image: {
  1576. source: "./media/characters/kalista/back.svg",
  1577. extra: 1366 / 1156,
  1578. bottom: 33.9/1362.78
  1579. }
  1580. }
  1581. },
  1582. [
  1583. {
  1584. name: "Uncomfortably Small",
  1585. height: math.unit(10, "feet")
  1586. },
  1587. {
  1588. name: "Small",
  1589. height: math.unit(30, "feet")
  1590. },
  1591. {
  1592. name: "Macro",
  1593. height: math.unit(100, "feet"),
  1594. default: true
  1595. },
  1596. {
  1597. name: "Macro+",
  1598. height: math.unit(2000, "feet")
  1599. },
  1600. {
  1601. name: "True Form",
  1602. height: math.unit(8924, "miles")
  1603. }
  1604. ]
  1605. ))
  1606. characterMakers.push(() => makeCharacter(
  1607. { name: "GiantGrowingVixen" },
  1608. {
  1609. front: {
  1610. height: math.unit(2, "meter"),
  1611. weight: math.unit(120, "kg"),
  1612. name: "Front",
  1613. image: {
  1614. source: "./media/characters/ggv/front.svg"
  1615. }
  1616. },
  1617. side: {
  1618. height: math.unit(2, "meter"),
  1619. weight: math.unit(120, "kg"),
  1620. name: "Side",
  1621. image: {
  1622. source: "./media/characters/ggv/side.svg"
  1623. }
  1624. }
  1625. },
  1626. [
  1627. {
  1628. name: "Extremely Puny",
  1629. height: math.unit(9 + 5 / 12, "feet")
  1630. },
  1631. {
  1632. name: "Horribly Small",
  1633. height: math.unit(47.7, "miles"),
  1634. default: true
  1635. },
  1636. {
  1637. name: "Reasonably Sized",
  1638. height: math.unit(25000, "parsecs")
  1639. },
  1640. {
  1641. name: "Slightly Uncompressed",
  1642. height: math.unit(7.77e31, "parsecs")
  1643. },
  1644. {
  1645. name: "Omniversal",
  1646. height: math.unit(1e300, "meters")
  1647. },
  1648. ]
  1649. ))
  1650. characterMakers.push(() => makeCharacter(
  1651. { name: "Napalm" },
  1652. {
  1653. front: {
  1654. height: math.unit(2, "meter"),
  1655. weight: math.unit(75, "lb"),
  1656. name: "Front",
  1657. image: {
  1658. source: "./media/characters/napalm/front.svg"
  1659. }
  1660. },
  1661. back: {
  1662. height: math.unit(2, "meter"),
  1663. weight: math.unit(75, "lb"),
  1664. name: "Back",
  1665. image: {
  1666. source: "./media/characters/napalm/back.svg"
  1667. }
  1668. }
  1669. },
  1670. [
  1671. {
  1672. name: "Standard",
  1673. height: math.unit(55, "feet"),
  1674. default: true
  1675. }
  1676. ]
  1677. ))
  1678. characterMakers.push(() => makeCharacter(
  1679. { name: "Asana" },
  1680. {
  1681. front: {
  1682. height: math.unit(7 + 5 / 6, "feet"),
  1683. weight: math.unit(325, "lb"),
  1684. name: "Front",
  1685. image: {
  1686. source: "./media/characters/asana/front.svg",
  1687. extra: 1128 / 1068
  1688. }
  1689. },
  1690. back: {
  1691. height: math.unit(7 + 5 / 6, "feet"),
  1692. weight: math.unit(325, "lb"),
  1693. name: "Back",
  1694. image: {
  1695. source: "./media/characters/asana/back.svg",
  1696. extra: 1128 / 1068
  1697. }
  1698. },
  1699. },
  1700. [
  1701. {
  1702. name: "Standard",
  1703. height: math.unit(7 + 5 / 6, "feet"),
  1704. default: true
  1705. },
  1706. {
  1707. name: "Large",
  1708. height: math.unit(10, "meters")
  1709. },
  1710. {
  1711. name: "Macro",
  1712. height: math.unit(2500, "meters")
  1713. },
  1714. {
  1715. name: "Megamacro",
  1716. height: math.unit(5e6, "meters")
  1717. },
  1718. {
  1719. name: "Examacro",
  1720. height: math.unit(5e12, "lightyears")
  1721. },
  1722. {
  1723. name: "Max Size",
  1724. height: math.unit(1e31, "lightyears")
  1725. }
  1726. ]
  1727. ))
  1728. characterMakers.push(() => makeCharacter(
  1729. { name: "Ebony" },
  1730. {
  1731. front: {
  1732. height: math.unit(2, "meter"),
  1733. weight: math.unit(60, "kg"),
  1734. name: "Front",
  1735. image: {
  1736. source: "./media/characters/ebony/front.svg",
  1737. bottom: 0.03,
  1738. extra: 1045 / 810 + 0.03
  1739. }
  1740. },
  1741. side: {
  1742. height: math.unit(2, "meter"),
  1743. weight: math.unit(60, "kg"),
  1744. name: "Side",
  1745. image: {
  1746. source: "./media/characters/ebony/side.svg",
  1747. bottom: 0.03,
  1748. extra: 1045 / 810 + 0.03
  1749. }
  1750. },
  1751. back: {
  1752. height: math.unit(2, "meter"),
  1753. weight: math.unit(60, "kg"),
  1754. name: "Back",
  1755. image: {
  1756. source: "./media/characters/ebony/back.svg",
  1757. bottom: 0.01,
  1758. extra: 1045 / 810 + 0.01
  1759. }
  1760. },
  1761. },
  1762. [
  1763. // TODO check why I did this lol
  1764. {
  1765. name: "Standard",
  1766. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1767. default: true
  1768. },
  1769. {
  1770. name: "Macro",
  1771. height: math.unit(200, "feet")
  1772. },
  1773. {
  1774. name: "Gigamacro",
  1775. height: math.unit(13000, "km")
  1776. }
  1777. ]
  1778. ))
  1779. characterMakers.push(() => makeCharacter(
  1780. { name: "Mountain" },
  1781. {
  1782. front: {
  1783. height: math.unit(6, "feet"),
  1784. weight: math.unit(175, "lb"),
  1785. name: "Front",
  1786. image: {
  1787. source: "./media/characters/mountain/front.svg"
  1788. }
  1789. },
  1790. back: {
  1791. height: math.unit(6, "feet"),
  1792. weight: math.unit(175, "lb"),
  1793. name: "Back",
  1794. image: {
  1795. source: "./media/characters/mountain/back.svg"
  1796. }
  1797. },
  1798. },
  1799. [
  1800. {
  1801. name: "Large",
  1802. height: math.unit(20, "meters")
  1803. },
  1804. {
  1805. name: "Macro",
  1806. height: math.unit(300, "meters")
  1807. },
  1808. {
  1809. name: "Gigamacro",
  1810. height: math.unit(10000, "km"),
  1811. default: true
  1812. },
  1813. {
  1814. name: "Examacro",
  1815. height: math.unit(10e9, "lightyears")
  1816. }
  1817. ]
  1818. ))
  1819. characterMakers.push(() => makeCharacter(
  1820. { name: "Rick" },
  1821. {
  1822. front: {
  1823. height: math.unit(8, "feet"),
  1824. weight: math.unit(500, "lb"),
  1825. name: "Front",
  1826. image: {
  1827. source: "./media/characters/rick/front.svg"
  1828. }
  1829. }
  1830. },
  1831. [
  1832. {
  1833. name: "Normal",
  1834. height: math.unit(8, "feet"),
  1835. default: true
  1836. },
  1837. {
  1838. name: "Macro",
  1839. height: math.unit(5, "km")
  1840. }
  1841. ]
  1842. ))
  1843. characterMakers.push(() => makeCharacter(
  1844. { name: "Ona" },
  1845. {
  1846. front: {
  1847. height: math.unit(8, "feet"),
  1848. weight: math.unit(120, "lb"),
  1849. name: "Front",
  1850. image: {
  1851. source: "./media/characters/ona/front.svg"
  1852. }
  1853. },
  1854. frontAlt: {
  1855. height: math.unit(8, "feet"),
  1856. weight: math.unit(120, "lb"),
  1857. name: "Front (Alt)",
  1858. image: {
  1859. source: "./media/characters/ona/front-alt.svg"
  1860. }
  1861. },
  1862. back: {
  1863. height: math.unit(8, "feet"),
  1864. weight: math.unit(120, "lb"),
  1865. name: "Back",
  1866. image: {
  1867. source: "./media/characters/ona/back.svg"
  1868. }
  1869. },
  1870. foot: {
  1871. height: math.unit(1.1, "feet"),
  1872. name: "Foot",
  1873. image: {
  1874. source: "./media/characters/ona/foot.svg"
  1875. }
  1876. }
  1877. },
  1878. [
  1879. {
  1880. name: "Megamacro",
  1881. height: math.unit(70, "km"),
  1882. default: true
  1883. },
  1884. {
  1885. name: "Gigamacro",
  1886. height: math.unit(681818, "miles")
  1887. },
  1888. {
  1889. name: "Examacro",
  1890. height: math.unit(3800000, "lightyears")
  1891. },
  1892. ]
  1893. ))
  1894. characterMakers.push(() => makeCharacter(
  1895. { name: "Mech" },
  1896. {
  1897. front: {
  1898. height: math.unit(12, "feet"),
  1899. weight: math.unit(3000, "lb"),
  1900. name: "Front",
  1901. image: {
  1902. source: "./media/characters/mech/front.svg",
  1903. bottom: 0.025,
  1904. }
  1905. },
  1906. back: {
  1907. height: math.unit(12, "feet"),
  1908. weight: math.unit(3000, "lb"),
  1909. name: "Back",
  1910. image: {
  1911. source: "./media/characters/mech/back.svg",
  1912. bottom: 0.03,
  1913. }
  1914. }
  1915. },
  1916. [
  1917. {
  1918. name: "Normal",
  1919. height: math.unit(12, "feet")
  1920. },
  1921. {
  1922. name: "Macro",
  1923. height: math.unit(300, "feet"),
  1924. default: true
  1925. },
  1926. {
  1927. name: "Macro+",
  1928. height: math.unit(1500, "feet")
  1929. },
  1930. ]
  1931. ))
  1932. characterMakers.push(() => makeCharacter(
  1933. { name: "Gregory" },
  1934. {
  1935. front: {
  1936. height: math.unit(1.3, "meter"),
  1937. weight: math.unit(30, "kg"),
  1938. name: "Front",
  1939. image: {
  1940. source: "./media/characters/gregory/front.svg",
  1941. }
  1942. }
  1943. },
  1944. [
  1945. {
  1946. name: "Normal",
  1947. height: math.unit(1.3, "meter"),
  1948. default: true
  1949. },
  1950. {
  1951. name: "Macro",
  1952. height: math.unit(20, "meter")
  1953. }
  1954. ]
  1955. ))
  1956. characterMakers.push(() => makeCharacter(
  1957. { name: "Elory" },
  1958. {
  1959. front: {
  1960. height: math.unit(2.8, "meter"),
  1961. weight: math.unit(200, "kg"),
  1962. name: "Front",
  1963. image: {
  1964. source: "./media/characters/elory/front.svg",
  1965. }
  1966. }
  1967. },
  1968. [
  1969. {
  1970. name: "Normal",
  1971. height: math.unit(2.8, "meter"),
  1972. default: true
  1973. },
  1974. {
  1975. name: "Macro",
  1976. height: math.unit(38, "meter")
  1977. }
  1978. ]
  1979. ))
  1980. characterMakers.push(() => makeCharacter(
  1981. { name: "Angelpatamon" },
  1982. {
  1983. front: {
  1984. height: math.unit(470, "feet"),
  1985. weight: math.unit(924, "tons"),
  1986. name: "Front",
  1987. image: {
  1988. source: "./media/characters/angelpatamon/front.svg",
  1989. }
  1990. }
  1991. },
  1992. [
  1993. {
  1994. name: "Normal",
  1995. height: math.unit(470, "feet"),
  1996. default: true
  1997. },
  1998. {
  1999. name: "Deity Size I",
  2000. height: math.unit(28651.2, "km")
  2001. },
  2002. {
  2003. name: "Deity Size II",
  2004. height: math.unit(171907.2, "km")
  2005. }
  2006. ]
  2007. ))
  2008. characterMakers.push(() => makeCharacter(
  2009. { name: "Cryae" },
  2010. {
  2011. side: {
  2012. height: math.unit(7.2, "meter"),
  2013. weight: math.unit(8.2, "tons"),
  2014. name: "Side",
  2015. image: {
  2016. source: "./media/characters/cryae/side.svg",
  2017. extra: 3500 / 1500
  2018. }
  2019. }
  2020. },
  2021. [
  2022. {
  2023. name: "Normal",
  2024. height: math.unit(7.2, "meter"),
  2025. default: true
  2026. }
  2027. ]
  2028. ))
  2029. characterMakers.push(() => makeCharacter(
  2030. { name: "Xera" },
  2031. {
  2032. front: {
  2033. height: math.unit(6, "feet"),
  2034. weight: math.unit(175, "lb"),
  2035. name: "Front",
  2036. image: {
  2037. source: "./media/characters/xera/front.svg",
  2038. extra: 2300 / 2061
  2039. }
  2040. },
  2041. side: {
  2042. height: math.unit(6, "feet"),
  2043. weight: math.unit(175, "lb"),
  2044. name: "Side",
  2045. image: {
  2046. source: "./media/characters/xera/side.svg",
  2047. extra: 2300 / 2061
  2048. }
  2049. },
  2050. back: {
  2051. height: math.unit(6, "feet"),
  2052. weight: math.unit(175, "lb"),
  2053. name: "Back",
  2054. image: {
  2055. source: "./media/characters/xera/back.svg"
  2056. }
  2057. },
  2058. },
  2059. [
  2060. {
  2061. name: "Small",
  2062. height: math.unit(10, "feet")
  2063. },
  2064. {
  2065. name: "Macro",
  2066. height: math.unit(500, "meters"),
  2067. default: true
  2068. },
  2069. {
  2070. name: "Macro+",
  2071. height: math.unit(10, "km")
  2072. },
  2073. {
  2074. name: "Gigamacro",
  2075. height: math.unit(25000, "km")
  2076. },
  2077. {
  2078. name: "Teramacro",
  2079. height: math.unit(3e6, "km")
  2080. }
  2081. ]
  2082. ))
  2083. characterMakers.push(() => makeCharacter(
  2084. { name: "Nebula" },
  2085. {
  2086. front: {
  2087. height: math.unit(6, "feet"),
  2088. weight: math.unit(175, "lb"),
  2089. name: "Front",
  2090. image: {
  2091. source: "./media/characters/nebula/front.svg",
  2092. extra: 2600 / 2450
  2093. }
  2094. }
  2095. },
  2096. [
  2097. {
  2098. name: "Small",
  2099. height: math.unit(4.5, "meters")
  2100. },
  2101. {
  2102. name: "Macro",
  2103. height: math.unit(1500, "meters"),
  2104. default: true
  2105. },
  2106. {
  2107. name: "Megamacro",
  2108. height: math.unit(150, "km")
  2109. },
  2110. {
  2111. name: "Gigamacro",
  2112. height: math.unit(27000, "km")
  2113. }
  2114. ]
  2115. ))
  2116. characterMakers.push(() => makeCharacter(
  2117. { name: "Abysgar" },
  2118. {
  2119. front: {
  2120. height: math.unit(6, "feet"),
  2121. weight: math.unit(225, "lb"),
  2122. name: "Front",
  2123. image: {
  2124. source: "./media/characters/abysgar/front.svg"
  2125. }
  2126. }
  2127. },
  2128. [
  2129. {
  2130. name: "Small",
  2131. height: math.unit(4.5, "meters")
  2132. },
  2133. {
  2134. name: "Macro",
  2135. height: math.unit(1250, "meters"),
  2136. default: true
  2137. },
  2138. {
  2139. name: "Megamacro",
  2140. height: math.unit(125, "km")
  2141. },
  2142. {
  2143. name: "Gigamacro",
  2144. height: math.unit(26000, "km")
  2145. }
  2146. ]
  2147. ))
  2148. characterMakers.push(() => makeCharacter(
  2149. { name: "Yakuz" },
  2150. {
  2151. front: {
  2152. height: math.unit(6, "feet"),
  2153. weight: math.unit(180, "lb"),
  2154. name: "Front",
  2155. image: {
  2156. source: "./media/characters/yakuz/front.svg"
  2157. }
  2158. }
  2159. },
  2160. [
  2161. {
  2162. name: "Small",
  2163. height: math.unit(5, "meters")
  2164. },
  2165. {
  2166. name: "Macro",
  2167. height: math.unit(1500, "meters"),
  2168. default: true
  2169. },
  2170. {
  2171. name: "Megamacro",
  2172. height: math.unit(200, "km")
  2173. },
  2174. {
  2175. name: "Gigamacro",
  2176. height: math.unit(100000, "km")
  2177. }
  2178. ]
  2179. ))
  2180. characterMakers.push(() => makeCharacter(
  2181. { name: "Mirova" },
  2182. {
  2183. front: {
  2184. height: math.unit(6, "feet"),
  2185. weight: math.unit(175, "lb"),
  2186. name: "Front",
  2187. image: {
  2188. source: "./media/characters/mirova/front.svg"
  2189. }
  2190. }
  2191. },
  2192. [
  2193. {
  2194. name: "Small",
  2195. height: math.unit(5, "meters")
  2196. },
  2197. {
  2198. name: "Macro",
  2199. height: math.unit(900, "meters"),
  2200. default: true
  2201. },
  2202. {
  2203. name: "Megamacro",
  2204. height: math.unit(135, "km")
  2205. },
  2206. {
  2207. name: "Gigamacro",
  2208. height: math.unit(20000, "km")
  2209. }
  2210. ]
  2211. ))
  2212. characterMakers.push(() => makeCharacter(
  2213. { name: "Asana (Mech)" },
  2214. {
  2215. side: {
  2216. height: math.unit(28.35, "feet"),
  2217. weight: math.unit(99.75, "tons"),
  2218. name: "Side",
  2219. image: {
  2220. source: "./media/characters/asana-mech/side.svg"
  2221. }
  2222. }
  2223. },
  2224. [
  2225. {
  2226. name: "Normal",
  2227. height: math.unit(28.35, "feet"),
  2228. default: true
  2229. },
  2230. {
  2231. name: "Macro",
  2232. height: math.unit(2500, "feet")
  2233. },
  2234. {
  2235. name: "Megamacro",
  2236. height: math.unit(25, "miles")
  2237. },
  2238. {
  2239. name: "Examacro",
  2240. height: math.unit(6e8, "lightyears")
  2241. },
  2242. ]
  2243. ))
  2244. characterMakers.push(() => makeCharacter(
  2245. { name: "Ashtrek" },
  2246. {
  2247. front: {
  2248. height: math.unit(2, "meters"),
  2249. weight: math.unit(70, "kg"),
  2250. name: "Front",
  2251. image: {
  2252. source: "./media/characters/ashtrek/front.svg",
  2253. extra: 560 / 524,
  2254. bottom: 0.01
  2255. }
  2256. },
  2257. frontArmor: {
  2258. height: math.unit(2, "meters"),
  2259. weight: math.unit(76, "kg"),
  2260. name: "Front (Armor)",
  2261. image: {
  2262. source: "./media/characters/ashtrek/front-armor.svg",
  2263. extra: 561 / 527,
  2264. bottom: 0.01
  2265. }
  2266. },
  2267. side: {
  2268. height: math.unit(2, "meters"),
  2269. weight: math.unit(70, "kg"),
  2270. name: "Side",
  2271. image: {
  2272. source: "./media/characters/ashtrek/side.svg",
  2273. extra: 1717 / 1609,
  2274. bottom: 0.005
  2275. }
  2276. },
  2277. back: {
  2278. height: math.unit(2, "meters"),
  2279. weight: math.unit(70, "kg"),
  2280. name: "Back",
  2281. image: {
  2282. source: "./media/characters/ashtrek/back.svg",
  2283. extra: 1570 / 1501
  2284. }
  2285. },
  2286. },
  2287. [
  2288. {
  2289. name: "DEFCON 5",
  2290. height: math.unit(5, "meters")
  2291. },
  2292. {
  2293. name: "DEFCON 4",
  2294. height: math.unit(500, "meters"),
  2295. default: true
  2296. },
  2297. {
  2298. name: "DEFCON 3",
  2299. height: math.unit(5, "km")
  2300. },
  2301. {
  2302. name: "DEFCON 2",
  2303. height: math.unit(500, "km")
  2304. },
  2305. {
  2306. name: "DEFCON 1",
  2307. height: math.unit(500000, "km")
  2308. },
  2309. {
  2310. name: "DEFCON 0",
  2311. height: math.unit(3, "gigaparsecs")
  2312. },
  2313. ]
  2314. ))
  2315. characterMakers.push(() => makeCharacter(
  2316. { name: "Gale" },
  2317. {
  2318. front: {
  2319. height: math.unit(2, "meters"),
  2320. weight: math.unit(76, "kg"),
  2321. name: "Front",
  2322. image: {
  2323. source: "./media/characters/gale/front.svg"
  2324. }
  2325. },
  2326. frontAlt1: {
  2327. height: math.unit(2, "meters"),
  2328. weight: math.unit(76, "kg"),
  2329. name: "Front (Alt 1)",
  2330. image: {
  2331. source: "./media/characters/gale/front-alt-1.svg"
  2332. }
  2333. },
  2334. frontAlt2: {
  2335. height: math.unit(2, "meters"),
  2336. weight: math.unit(76, "kg"),
  2337. name: "Front (Alt 2)",
  2338. image: {
  2339. source: "./media/characters/gale/front-alt-2.svg"
  2340. }
  2341. },
  2342. },
  2343. [
  2344. {
  2345. name: "Normal",
  2346. height: math.unit(7, "feet")
  2347. },
  2348. {
  2349. name: "Macro",
  2350. height: math.unit(150, "feet"),
  2351. default: true
  2352. },
  2353. {
  2354. name: "Macro+",
  2355. height: math.unit(300, "feet")
  2356. },
  2357. ]
  2358. ))
  2359. characterMakers.push(() => makeCharacter(
  2360. { name: "Draylen" },
  2361. {
  2362. front: {
  2363. height: math.unit(2, "meters"),
  2364. weight: math.unit(76, "kg"),
  2365. name: "Front",
  2366. image: {
  2367. source: "./media/characters/draylen/front.svg"
  2368. }
  2369. }
  2370. },
  2371. [
  2372. {
  2373. name: "Macro",
  2374. height: math.unit(150, "feet"),
  2375. default: true
  2376. }
  2377. ]
  2378. ))
  2379. characterMakers.push(() => makeCharacter(
  2380. { name: "Chez" },
  2381. {
  2382. front: {
  2383. height: math.unit(7 + 9 / 12, "feet"),
  2384. weight: math.unit(379, "lbs"),
  2385. name: "Front",
  2386. image: {
  2387. source: "./media/characters/chez/front.svg"
  2388. }
  2389. },
  2390. side: {
  2391. height: math.unit(7 + 9 / 12, "feet"),
  2392. weight: math.unit(379, "lbs"),
  2393. name: "Side",
  2394. image: {
  2395. source: "./media/characters/chez/side.svg"
  2396. }
  2397. }
  2398. },
  2399. [
  2400. {
  2401. name: "Normal",
  2402. height: math.unit(7 + 9 / 12, "feet"),
  2403. default: true
  2404. },
  2405. {
  2406. name: "God King",
  2407. height: math.unit(9750000, "meters")
  2408. }
  2409. ]
  2410. ))
  2411. characterMakers.push(() => makeCharacter(
  2412. { name: "Kaylum" },
  2413. {
  2414. front: {
  2415. height: math.unit(6, "feet"),
  2416. weight: math.unit(275, "lbs"),
  2417. name: "Front",
  2418. image: {
  2419. source: "./media/characters/kaylum/front.svg",
  2420. bottom: 0.01,
  2421. extra: 1166 / 1031
  2422. }
  2423. },
  2424. frontWingless: {
  2425. height: math.unit(6, "feet"),
  2426. weight: math.unit(275, "lbs"),
  2427. name: "Front (Wingless)",
  2428. image: {
  2429. source: "./media/characters/kaylum/front-wingless.svg",
  2430. bottom: 0.01,
  2431. extra: 1117 / 1031
  2432. }
  2433. }
  2434. },
  2435. [
  2436. {
  2437. name: "Normal",
  2438. height: math.unit(3.05, "meters")
  2439. },
  2440. {
  2441. name: "Master",
  2442. height: math.unit(5.5, "meters")
  2443. },
  2444. {
  2445. name: "Rampage",
  2446. height: math.unit(19, "meters")
  2447. },
  2448. {
  2449. name: "Macro Lite",
  2450. height: math.unit(37, "meters")
  2451. },
  2452. {
  2453. name: "Hyper Predator",
  2454. height: math.unit(61, "meters")
  2455. },
  2456. {
  2457. name: "Macro",
  2458. height: math.unit(138, "meters"),
  2459. default: true
  2460. }
  2461. ]
  2462. ))
  2463. characterMakers.push(() => makeCharacter(
  2464. { name: "Geta" },
  2465. {
  2466. front: {
  2467. height: math.unit(6, "feet"),
  2468. weight: math.unit(150, "lbs"),
  2469. name: "Front",
  2470. image: {
  2471. source: "./media/characters/geta/front.svg"
  2472. }
  2473. }
  2474. },
  2475. [
  2476. {
  2477. name: "Micro",
  2478. height: math.unit(3, "inches"),
  2479. default: true
  2480. },
  2481. {
  2482. name: "Normal",
  2483. height: math.unit(5 + 5 / 12, "feet")
  2484. }
  2485. ]
  2486. ))
  2487. characterMakers.push(() => makeCharacter(
  2488. { name: "Tyrnn" },
  2489. {
  2490. front: {
  2491. height: math.unit(6, "feet"),
  2492. weight: math.unit(300, "lbs"),
  2493. name: "Front",
  2494. image: {
  2495. source: "./media/characters/tyrnn/front.svg"
  2496. }
  2497. }
  2498. },
  2499. [
  2500. {
  2501. name: "Main Height",
  2502. height: math.unit(355, "feet"),
  2503. default: true
  2504. },
  2505. {
  2506. name: "Fave. Height",
  2507. height: math.unit(2400, "feet")
  2508. }
  2509. ]
  2510. ))
  2511. characterMakers.push(() => makeCharacter(
  2512. { name: "Apple" },
  2513. {
  2514. front: {
  2515. height: math.unit(6, "feet"),
  2516. weight: math.unit(300, "lbs"),
  2517. name: "Front",
  2518. image: {
  2519. source: "./media/characters/appledectomy/front.svg"
  2520. }
  2521. }
  2522. },
  2523. [
  2524. {
  2525. name: "Macro",
  2526. height: math.unit(2500, "feet")
  2527. },
  2528. {
  2529. name: "Megamacro",
  2530. height: math.unit(50, "miles"),
  2531. default: true
  2532. },
  2533. {
  2534. name: "Gigamacro",
  2535. height: math.unit(5000, "miles")
  2536. },
  2537. {
  2538. name: "Teramacro",
  2539. height: math.unit(250000, "miles")
  2540. },
  2541. ]
  2542. ))
  2543. characterMakers.push(() => makeCharacter(
  2544. { name: "Vulpes" },
  2545. {
  2546. front: {
  2547. height: math.unit(6, "feet"),
  2548. weight: math.unit(200, "lbs"),
  2549. name: "Front",
  2550. image: {
  2551. source: "./media/characters/vulpes/front.svg",
  2552. extra: 573 / 543,
  2553. bottom: 0.033
  2554. }
  2555. },
  2556. side: {
  2557. height: math.unit(6, "feet"),
  2558. weight: math.unit(200, "lbs"),
  2559. name: "Side",
  2560. image: {
  2561. source: "./media/characters/vulpes/side.svg",
  2562. extra: 573 / 543,
  2563. bottom: 0.01
  2564. }
  2565. },
  2566. back: {
  2567. height: math.unit(6, "feet"),
  2568. weight: math.unit(200, "lbs"),
  2569. name: "Back",
  2570. image: {
  2571. source: "./media/characters/vulpes/back.svg",
  2572. extra: 573 / 543,
  2573. }
  2574. },
  2575. feet: {
  2576. height: math.unit(1.276, "feet"),
  2577. name: "Feet",
  2578. image: {
  2579. source: "./media/characters/vulpes/feet.svg"
  2580. }
  2581. },
  2582. maw: {
  2583. height: math.unit(1.18, "feet"),
  2584. name: "Maw",
  2585. image: {
  2586. source: "./media/characters/vulpes/maw.svg"
  2587. }
  2588. },
  2589. },
  2590. [
  2591. {
  2592. name: "Micro",
  2593. height: math.unit(2, "inches")
  2594. },
  2595. {
  2596. name: "Normal",
  2597. height: math.unit(6.3, "feet")
  2598. },
  2599. {
  2600. name: "Macro",
  2601. height: math.unit(850, "feet")
  2602. },
  2603. {
  2604. name: "Megamacro",
  2605. height: math.unit(7500, "feet"),
  2606. default: true
  2607. },
  2608. {
  2609. name: "Gigamacro",
  2610. height: math.unit(570000, "miles")
  2611. }
  2612. ]
  2613. ))
  2614. characterMakers.push(() => makeCharacter(
  2615. { name: "Rain Fallen" },
  2616. {
  2617. front: {
  2618. height: math.unit(6, "feet"),
  2619. weight: math.unit(210, "lbs"),
  2620. name: "Front",
  2621. image: {
  2622. source: "./media/characters/rain-fallen/front.svg"
  2623. }
  2624. },
  2625. side: {
  2626. height: math.unit(6, "feet"),
  2627. weight: math.unit(210, "lbs"),
  2628. name: "Side",
  2629. image: {
  2630. source: "./media/characters/rain-fallen/side.svg"
  2631. }
  2632. },
  2633. back: {
  2634. height: math.unit(6, "feet"),
  2635. weight: math.unit(210, "lbs"),
  2636. name: "Back",
  2637. image: {
  2638. source: "./media/characters/rain-fallen/back.svg"
  2639. }
  2640. },
  2641. feral: {
  2642. height: math.unit(9, "feet"),
  2643. weight: math.unit(700, "lbs"),
  2644. name: "Feral",
  2645. image: {
  2646. source: "./media/characters/rain-fallen/feral.svg"
  2647. }
  2648. },
  2649. },
  2650. [
  2651. {
  2652. name: "Normal",
  2653. height: math.unit(5, "meter")
  2654. },
  2655. {
  2656. name: "Macro",
  2657. height: math.unit(150, "meter"),
  2658. default: true
  2659. },
  2660. {
  2661. name: "Megamacro",
  2662. height: math.unit(278e6, "meter")
  2663. },
  2664. {
  2665. name: "Gigamacro",
  2666. height: math.unit(2e9, "meter")
  2667. },
  2668. {
  2669. name: "Teramacro",
  2670. height: math.unit(8e12, "meter")
  2671. },
  2672. {
  2673. name: "Devourer",
  2674. height: math.unit(14, "zettameters")
  2675. },
  2676. {
  2677. name: "Scarlet King",
  2678. height: math.unit(18, "yottameters")
  2679. },
  2680. {
  2681. name: "Void",
  2682. height: math.unit(6.66e66, "yottameters")
  2683. }
  2684. ]
  2685. ))
  2686. characterMakers.push(() => makeCharacter(
  2687. { name: "Zaakira" },
  2688. {
  2689. standing: {
  2690. height: math.unit(6, "feet"),
  2691. weight: math.unit(180, "lbs"),
  2692. name: "Standing",
  2693. image: {
  2694. source: "./media/characters/zaakira/standing.svg"
  2695. }
  2696. },
  2697. laying: {
  2698. height: math.unit(3, "feet"),
  2699. weight: math.unit(180, "lbs"),
  2700. name: "Laying",
  2701. image: {
  2702. source: "./media/characters/zaakira/laying.svg"
  2703. }
  2704. },
  2705. },
  2706. [
  2707. {
  2708. name: "Normal",
  2709. height: math.unit(12, "feet")
  2710. },
  2711. {
  2712. name: "Macro",
  2713. height: math.unit(279, "feet"),
  2714. default: true
  2715. }
  2716. ]
  2717. ))
  2718. characterMakers.push(() => makeCharacter(
  2719. { name: "Sigvald" },
  2720. {
  2721. front: {
  2722. height: math.unit(6, "feet"),
  2723. weight: math.unit(250, "lbs"),
  2724. name: "Front",
  2725. image: {
  2726. source: "./media/characters/sigvald/front.svg",
  2727. extra: 1000 / 850
  2728. }
  2729. },
  2730. back: {
  2731. height: math.unit(6, "feet"),
  2732. weight: math.unit(250, "lbs"),
  2733. name: "Back",
  2734. image: {
  2735. source: "./media/characters/sigvald/back.svg"
  2736. }
  2737. },
  2738. },
  2739. [
  2740. {
  2741. name: "Normal",
  2742. height: math.unit(8, "feet")
  2743. },
  2744. {
  2745. name: "Large",
  2746. height: math.unit(12, "feet")
  2747. },
  2748. {
  2749. name: "Larger",
  2750. height: math.unit(20, "feet")
  2751. },
  2752. {
  2753. name: "Macro",
  2754. height: math.unit(150, "feet")
  2755. },
  2756. {
  2757. name: "Macro+",
  2758. height: math.unit(200, "feet"),
  2759. default: true
  2760. },
  2761. ]
  2762. ))
  2763. characterMakers.push(() => makeCharacter(
  2764. { name: "Scott" },
  2765. {
  2766. side: {
  2767. height: math.unit(12, "feet"),
  2768. weight: math.unit(2000, "kg"),
  2769. name: "Side",
  2770. image: {
  2771. source: "./media/characters/scott/side.svg",
  2772. extra: 754/724,
  2773. bottom: 0.069
  2774. }
  2775. },
  2776. upright: {
  2777. height: math.unit(12, "feet"),
  2778. weight: math.unit(2000, "kg"),
  2779. name: "Upright",
  2780. image: {
  2781. source: "./media/characters/scott/upright.svg",
  2782. extra: 3881/3722,
  2783. bottom: 0.05
  2784. }
  2785. },
  2786. },
  2787. [
  2788. {
  2789. name: "Normal",
  2790. height: math.unit(12, "feet"),
  2791. default: true
  2792. },
  2793. ]
  2794. ))
  2795. characterMakers.push(() => makeCharacter(
  2796. { name: "Tobias" },
  2797. {
  2798. side: {
  2799. height: math.unit(8, "meters"),
  2800. weight: math.unit(84755, "lbs"),
  2801. name: "Side",
  2802. image: {
  2803. source: "./media/characters/tobias/side.svg",
  2804. extra: 1474 / 1096,
  2805. bottom: 38.9 / 1513.1235
  2806. }
  2807. },
  2808. },
  2809. [
  2810. {
  2811. name: "Normal",
  2812. height: math.unit(8, "meters"),
  2813. default: true
  2814. },
  2815. ]
  2816. ))
  2817. characterMakers.push(() => makeCharacter(
  2818. { name: "Kieran" },
  2819. {
  2820. front: {
  2821. height: math.unit(5.5, "feet"),
  2822. weight: math.unit(400, "lbs"),
  2823. name: "Front",
  2824. image: {
  2825. source: "./media/characters/kieran/front.svg",
  2826. extra: 2694/2364,
  2827. bottom: 217/2908
  2828. }
  2829. },
  2830. side: {
  2831. height: math.unit(5.5, "feet"),
  2832. weight: math.unit(400, "lbs"),
  2833. name: "Side",
  2834. image: {
  2835. source: "./media/characters/kieran/side.svg",
  2836. extra: 875/777,
  2837. bottom: 84.6/959
  2838. }
  2839. },
  2840. },
  2841. [
  2842. {
  2843. name: "Normal",
  2844. height: math.unit(5.5, "feet"),
  2845. default: true
  2846. },
  2847. ]
  2848. ))
  2849. characterMakers.push(() => makeCharacter(
  2850. { name: "Sanya" },
  2851. {
  2852. side: {
  2853. height: math.unit(2, "meters"),
  2854. weight: math.unit(70, "kg"),
  2855. name: "Side",
  2856. image: {
  2857. source: "./media/characters/sanya/side.svg",
  2858. bottom: 0.02,
  2859. extra: 1.02
  2860. }
  2861. },
  2862. },
  2863. [
  2864. {
  2865. name: "Small",
  2866. height: math.unit(2, "meters")
  2867. },
  2868. {
  2869. name: "Normal",
  2870. height: math.unit(3, "meters")
  2871. },
  2872. {
  2873. name: "Macro",
  2874. height: math.unit(16, "meters"),
  2875. default: true
  2876. },
  2877. ]
  2878. ))
  2879. characterMakers.push(() => makeCharacter(
  2880. { name: "Miranda" },
  2881. {
  2882. side: {
  2883. height: math.unit(2, "meters"),
  2884. weight: math.unit(120, "kg"),
  2885. name: "Front",
  2886. image: {
  2887. source: "./media/characters/miranda/front.svg",
  2888. extra: 10.6 / 10
  2889. }
  2890. },
  2891. },
  2892. [
  2893. {
  2894. name: "Normal",
  2895. height: math.unit(10, "feet"),
  2896. default: true
  2897. }
  2898. ]
  2899. ))
  2900. characterMakers.push(() => makeCharacter(
  2901. { name: "James" },
  2902. {
  2903. side: {
  2904. height: math.unit(2, "meters"),
  2905. weight: math.unit(100, "kg"),
  2906. name: "Front",
  2907. image: {
  2908. source: "./media/characters/james/front.svg",
  2909. extra: 10 / 8.5
  2910. }
  2911. },
  2912. },
  2913. [
  2914. {
  2915. name: "Normal",
  2916. height: math.unit(8.5, "feet"),
  2917. default: true
  2918. }
  2919. ]
  2920. ))
  2921. characterMakers.push(() => makeCharacter(
  2922. { name: "Heather" },
  2923. {
  2924. side: {
  2925. height: math.unit(9.5, "feet"),
  2926. weight: math.unit(2500, "lbs"),
  2927. name: "Side",
  2928. image: {
  2929. source: "./media/characters/heather/side.svg"
  2930. }
  2931. },
  2932. },
  2933. [
  2934. {
  2935. name: "Normal",
  2936. height: math.unit(9.5, "feet"),
  2937. default: true
  2938. }
  2939. ]
  2940. ))
  2941. characterMakers.push(() => makeCharacter(
  2942. { name: "Lukas" },
  2943. {
  2944. side: {
  2945. height: math.unit(6.5, "feet"),
  2946. weight: math.unit(400, "lbs"),
  2947. name: "Side",
  2948. image: {
  2949. source: "./media/characters/lukas/side.svg",
  2950. extra: 7.25 / 6.5
  2951. }
  2952. },
  2953. },
  2954. [
  2955. {
  2956. name: "Normal",
  2957. height: math.unit(6.5, "feet"),
  2958. default: true
  2959. }
  2960. ]
  2961. ))
  2962. characterMakers.push(() => makeCharacter(
  2963. { name: "Louise" },
  2964. {
  2965. side: {
  2966. height: math.unit(5, "feet"),
  2967. weight: math.unit(3000, "lbs"),
  2968. name: "Side",
  2969. image: {
  2970. source: "./media/characters/louise/side.svg"
  2971. }
  2972. },
  2973. },
  2974. [
  2975. {
  2976. name: "Normal",
  2977. height: math.unit(5, "feet"),
  2978. default: true
  2979. }
  2980. ]
  2981. ))
  2982. characterMakers.push(() => makeCharacter(
  2983. { name: "Ramona" },
  2984. {
  2985. side: {
  2986. height: math.unit(6, "feet"),
  2987. weight: math.unit(150, "lbs"),
  2988. name: "Side",
  2989. image: {
  2990. source: "./media/characters/ramona/side.svg"
  2991. }
  2992. },
  2993. },
  2994. [
  2995. {
  2996. name: "Normal",
  2997. height: math.unit(5.3, "meters"),
  2998. default: true
  2999. },
  3000. {
  3001. name: "Macro",
  3002. height: math.unit(20, "stories")
  3003. },
  3004. {
  3005. name: "Macro+",
  3006. height: math.unit(50, "stories")
  3007. },
  3008. ]
  3009. ))
  3010. characterMakers.push(() => makeCharacter(
  3011. { name: "Deerpuff" },
  3012. {
  3013. standing: {
  3014. height: math.unit(5.75, "feet"),
  3015. weight: math.unit(160, "lbs"),
  3016. name: "Standing",
  3017. image: {
  3018. source: "./media/characters/deerpuff/standing.svg",
  3019. extra: 682 / 624
  3020. }
  3021. },
  3022. sitting: {
  3023. height: math.unit(5.75 / 1.79, "feet"),
  3024. weight: math.unit(160, "lbs"),
  3025. name: "Sitting",
  3026. image: {
  3027. source: "./media/characters/deerpuff/sitting.svg",
  3028. bottom: 44 / 400,
  3029. extra: 1
  3030. }
  3031. },
  3032. taurLaying: {
  3033. height: math.unit(6, "feet"),
  3034. weight: math.unit(400, "lbs"),
  3035. name: "Taur (Laying)",
  3036. image: {
  3037. source: "./media/characters/deerpuff/taur-laying.svg"
  3038. }
  3039. },
  3040. },
  3041. [
  3042. {
  3043. name: "Puffball",
  3044. height: math.unit(6, "inches")
  3045. },
  3046. {
  3047. name: "Normalpuff",
  3048. height: math.unit(5.75, "feet")
  3049. },
  3050. {
  3051. name: "Macropuff",
  3052. height: math.unit(1500, "feet"),
  3053. default: true
  3054. },
  3055. {
  3056. name: "Megapuff",
  3057. height: math.unit(500, "miles")
  3058. },
  3059. {
  3060. name: "Gigapuff",
  3061. height: math.unit(250000, "miles")
  3062. },
  3063. {
  3064. name: "Omegapuff",
  3065. height: math.unit(1000, "lightyears")
  3066. },
  3067. ]
  3068. ))
  3069. characterMakers.push(() => makeCharacter(
  3070. { name: "Vivian" },
  3071. {
  3072. stomping: {
  3073. height: math.unit(6, "feet"),
  3074. weight: math.unit(170, "lbs"),
  3075. name: "Stomping",
  3076. image: {
  3077. source: "./media/characters/vivian/stomping.svg"
  3078. }
  3079. },
  3080. sitting: {
  3081. height: math.unit(6 / 1.75, "feet"),
  3082. weight: math.unit(170, "lbs"),
  3083. name: "Sitting",
  3084. image: {
  3085. source: "./media/characters/vivian/sitting.svg",
  3086. bottom: 1 / 6.4,
  3087. extra: 1,
  3088. }
  3089. },
  3090. },
  3091. [
  3092. {
  3093. name: "Normal",
  3094. height: math.unit(7, "feet"),
  3095. default: true
  3096. },
  3097. {
  3098. name: "Macro",
  3099. height: math.unit(10, "stories")
  3100. },
  3101. {
  3102. name: "Macro+",
  3103. height: math.unit(30, "stories")
  3104. },
  3105. {
  3106. name: "Megamacro",
  3107. height: math.unit(10, "miles")
  3108. },
  3109. {
  3110. name: "Megamacro+",
  3111. height: math.unit(2750000, "meters")
  3112. },
  3113. ]
  3114. ))
  3115. characterMakers.push(() => makeCharacter(
  3116. { name: "Prince" },
  3117. {
  3118. front: {
  3119. height: math.unit(6, "feet"),
  3120. weight: math.unit(160, "lbs"),
  3121. name: "Front",
  3122. image: {
  3123. source: "./media/characters/prince/front.svg",
  3124. extra: 3400 / 3000
  3125. }
  3126. },
  3127. jumping: {
  3128. height: math.unit(6, "feet"),
  3129. weight: math.unit(160, "lbs"),
  3130. name: "Jumping",
  3131. image: {
  3132. source: "./media/characters/prince/jump.svg",
  3133. extra: 2555 / 2134
  3134. }
  3135. },
  3136. },
  3137. [
  3138. {
  3139. name: "Normal",
  3140. height: math.unit(7.75, "feet"),
  3141. default: true
  3142. },
  3143. {
  3144. name: "Not cute",
  3145. height: math.unit(17, "feet")
  3146. },
  3147. {
  3148. name: "I said NOT",
  3149. height: math.unit(91, "feet")
  3150. },
  3151. {
  3152. name: "Please stop",
  3153. height: math.unit(560, "feet")
  3154. },
  3155. {
  3156. name: "What have you done",
  3157. height: math.unit(2200, "feet")
  3158. },
  3159. {
  3160. name: "Deer God",
  3161. height: math.unit(3.6, "miles")
  3162. },
  3163. ]
  3164. ))
  3165. characterMakers.push(() => makeCharacter(
  3166. { name: "Psymon" },
  3167. {
  3168. standing: {
  3169. height: math.unit(6, "feet"),
  3170. weight: math.unit(300, "lbs"),
  3171. name: "Standing",
  3172. image: {
  3173. source: "./media/characters/psymon/standing.svg",
  3174. extra: 1888 / 1810,
  3175. bottom: 0.05
  3176. }
  3177. },
  3178. slithering: {
  3179. height: math.unit(6, "feet"),
  3180. weight: math.unit(300, "lbs"),
  3181. name: "Slithering",
  3182. image: {
  3183. source: "./media/characters/psymon/slithering.svg",
  3184. extra: 1330 / 1224
  3185. }
  3186. },
  3187. slitheringAlt: {
  3188. height: math.unit(6, "feet"),
  3189. weight: math.unit(300, "lbs"),
  3190. name: "Slithering (Alt)",
  3191. image: {
  3192. source: "./media/characters/psymon/slithering-alt.svg",
  3193. extra: 1330 / 1224
  3194. }
  3195. },
  3196. },
  3197. [
  3198. {
  3199. name: "Normal",
  3200. height: math.unit(11.25, "feet"),
  3201. default: true
  3202. },
  3203. {
  3204. name: "Large",
  3205. height: math.unit(27, "feet")
  3206. },
  3207. {
  3208. name: "Giant",
  3209. height: math.unit(87, "feet")
  3210. },
  3211. {
  3212. name: "Macro",
  3213. height: math.unit(365, "feet")
  3214. },
  3215. {
  3216. name: "Megamacro",
  3217. height: math.unit(3, "miles")
  3218. },
  3219. {
  3220. name: "World Serpent",
  3221. height: math.unit(8000, "miles")
  3222. },
  3223. ]
  3224. ))
  3225. characterMakers.push(() => makeCharacter(
  3226. { name: "Daimos" },
  3227. {
  3228. front: {
  3229. height: math.unit(6, "feet"),
  3230. weight: math.unit(180, "lbs"),
  3231. name: "Front",
  3232. image: {
  3233. source: "./media/characters/daimos/front.svg",
  3234. extra: 4160 / 3897,
  3235. bottom: 0.021
  3236. }
  3237. }
  3238. },
  3239. [
  3240. {
  3241. name: "Normal",
  3242. height: math.unit(8, "feet"),
  3243. default: true
  3244. },
  3245. {
  3246. name: "Big Dog",
  3247. height: math.unit(22, "feet")
  3248. },
  3249. {
  3250. name: "Macro",
  3251. height: math.unit(127, "feet")
  3252. },
  3253. {
  3254. name: "Megamacro",
  3255. height: math.unit(3600, "feet")
  3256. },
  3257. ]
  3258. ))
  3259. characterMakers.push(() => makeCharacter(
  3260. { name: "Blake" },
  3261. {
  3262. side: {
  3263. height: math.unit(6, "feet"),
  3264. weight: math.unit(180, "lbs"),
  3265. name: "Side",
  3266. image: {
  3267. source: "./media/characters/blake/side.svg",
  3268. extra: 1212 / 1120,
  3269. bottom: 0.05
  3270. }
  3271. },
  3272. crouched: {
  3273. height: math.unit(6 * 0.57, "feet"),
  3274. weight: math.unit(180, "lbs"),
  3275. name: "Crouched",
  3276. image: {
  3277. source: "./media/characters/blake/crouched.svg",
  3278. extra: 840 / 587,
  3279. bottom: 0.04
  3280. }
  3281. },
  3282. bent: {
  3283. height: math.unit(6 * 0.75, "feet"),
  3284. weight: math.unit(180, "lbs"),
  3285. name: "Bent",
  3286. image: {
  3287. source: "./media/characters/blake/bent.svg",
  3288. extra: 592 / 544,
  3289. bottom: 0.035
  3290. }
  3291. },
  3292. },
  3293. [
  3294. {
  3295. name: "Normal",
  3296. height: math.unit(8 + 1 / 6, "feet"),
  3297. default: true
  3298. },
  3299. {
  3300. name: "Big Backside",
  3301. height: math.unit(37, "feet")
  3302. },
  3303. {
  3304. name: "Subway Shredder",
  3305. height: math.unit(72, "feet")
  3306. },
  3307. {
  3308. name: "City Carver",
  3309. height: math.unit(1675, "feet")
  3310. },
  3311. {
  3312. name: "Tectonic Tweaker",
  3313. height: math.unit(2300, "miles")
  3314. },
  3315. ]
  3316. ))
  3317. characterMakers.push(() => makeCharacter(
  3318. { name: "Guisetto" },
  3319. {
  3320. front: {
  3321. height: math.unit(6, "feet"),
  3322. weight: math.unit(180, "lbs"),
  3323. name: "Front",
  3324. image: {
  3325. source: "./media/characters/guisetto/front.svg",
  3326. extra: 856 / 817,
  3327. bottom: 0.06
  3328. }
  3329. },
  3330. airborne: {
  3331. height: math.unit(6, "feet"),
  3332. weight: math.unit(180, "lbs"),
  3333. name: "Airborne",
  3334. image: {
  3335. source: "./media/characters/guisetto/airborne.svg",
  3336. extra: 584 / 525
  3337. }
  3338. },
  3339. },
  3340. [
  3341. {
  3342. name: "Normal",
  3343. height: math.unit(10 + 11 / 12, "feet"),
  3344. default: true
  3345. },
  3346. {
  3347. name: "Large",
  3348. height: math.unit(35, "feet")
  3349. },
  3350. {
  3351. name: "Macro",
  3352. height: math.unit(475, "feet")
  3353. },
  3354. ]
  3355. ))
  3356. characterMakers.push(() => makeCharacter(
  3357. { name: "Luxor" },
  3358. {
  3359. front: {
  3360. height: math.unit(6, "feet"),
  3361. weight: math.unit(180, "lbs"),
  3362. name: "Front",
  3363. image: {
  3364. source: "./media/characters/luxor/front.svg",
  3365. extra: 2940 / 2152
  3366. }
  3367. },
  3368. back: {
  3369. height: math.unit(6, "feet"),
  3370. weight: math.unit(180, "lbs"),
  3371. name: "Back",
  3372. image: {
  3373. source: "./media/characters/luxor/back.svg",
  3374. extra: 1083 / 960
  3375. }
  3376. },
  3377. },
  3378. [
  3379. {
  3380. name: "Normal",
  3381. height: math.unit(5 + 5 / 6, "feet"),
  3382. default: true
  3383. },
  3384. {
  3385. name: "Lamp",
  3386. height: math.unit(50, "feet")
  3387. },
  3388. {
  3389. name: "Lämp",
  3390. height: math.unit(300, "feet")
  3391. },
  3392. {
  3393. name: "The sun is a lamp",
  3394. height: math.unit(250000, "miles")
  3395. },
  3396. ]
  3397. ))
  3398. characterMakers.push(() => makeCharacter(
  3399. { name: "Huoyan" },
  3400. {
  3401. front: {
  3402. height: math.unit(6, "feet"),
  3403. weight: math.unit(50, "lbs"),
  3404. name: "Front",
  3405. image: {
  3406. source: "./media/characters/huoyan/front.svg"
  3407. }
  3408. },
  3409. side: {
  3410. height: math.unit(6, "feet"),
  3411. weight: math.unit(180, "lbs"),
  3412. name: "Side",
  3413. image: {
  3414. source: "./media/characters/huoyan/side.svg"
  3415. }
  3416. },
  3417. },
  3418. [
  3419. {
  3420. name: "Chef",
  3421. height: math.unit(9, "feet")
  3422. },
  3423. {
  3424. name: "Normal",
  3425. height: math.unit(65, "feet"),
  3426. default: true
  3427. },
  3428. {
  3429. name: "Macro",
  3430. height: math.unit(780, "feet")
  3431. },
  3432. {
  3433. name: "Flaming Mountain",
  3434. height: math.unit(4.8, "miles")
  3435. },
  3436. {
  3437. name: "Celestial",
  3438. height: math.unit(765000, "miles")
  3439. },
  3440. ]
  3441. ))
  3442. characterMakers.push(() => makeCharacter(
  3443. { name: "Tails" },
  3444. {
  3445. front: {
  3446. height: math.unit(5 + 3 / 4, "feet"),
  3447. weight: math.unit(120, "lbs"),
  3448. name: "Front",
  3449. image: {
  3450. source: "./media/characters/tails/front.svg"
  3451. }
  3452. }
  3453. },
  3454. [
  3455. {
  3456. name: "Normal",
  3457. height: math.unit(5 + 3 / 4, "feet"),
  3458. default: true
  3459. }
  3460. ]
  3461. ))
  3462. characterMakers.push(() => makeCharacter(
  3463. { name: "Rainy" },
  3464. {
  3465. front: {
  3466. height: math.unit(4, "feet"),
  3467. weight: math.unit(50, "lbs"),
  3468. name: "Front",
  3469. image: {
  3470. source: "./media/characters/rainy/front.svg"
  3471. }
  3472. }
  3473. },
  3474. [
  3475. {
  3476. name: "Macro",
  3477. height: math.unit(800, "feet"),
  3478. default: true
  3479. }
  3480. ]
  3481. ))
  3482. characterMakers.push(() => makeCharacter(
  3483. { name: "Rainier" },
  3484. {
  3485. front: {
  3486. height: math.unit(6, "feet"),
  3487. weight: math.unit(150, "lbs"),
  3488. name: "Front",
  3489. image: {
  3490. source: "./media/characters/rainier/front.svg"
  3491. }
  3492. }
  3493. },
  3494. [
  3495. {
  3496. name: "Micro",
  3497. height: math.unit(2, "mm"),
  3498. default: true
  3499. }
  3500. ]
  3501. ))
  3502. characterMakers.push(() => makeCharacter(
  3503. { name: "Andy" },
  3504. {
  3505. front: {
  3506. height: math.unit(6, "feet"),
  3507. weight: math.unit(180, "lbs"),
  3508. name: "Front",
  3509. image: {
  3510. source: "./media/characters/andy/front.svg"
  3511. }
  3512. }
  3513. },
  3514. [
  3515. {
  3516. name: "Normal",
  3517. height: math.unit(8, "feet"),
  3518. default: true
  3519. },
  3520. {
  3521. name: "Macro",
  3522. height: math.unit(1000, "feet")
  3523. },
  3524. {
  3525. name: "Megamacro",
  3526. height: math.unit(5, "miles")
  3527. },
  3528. {
  3529. name: "Gigamacro",
  3530. height: math.unit(5000, "miles")
  3531. },
  3532. ]
  3533. ))
  3534. characterMakers.push(() => makeCharacter(
  3535. { name: "Cimmaron" },
  3536. {
  3537. front: {
  3538. height: math.unit(6, "feet"),
  3539. weight: math.unit(210, "lbs"),
  3540. name: "Front",
  3541. image: {
  3542. source: "./media/characters/cimmaron/front-sfw.svg",
  3543. extra: 701 / 676,
  3544. bottom: 0.046
  3545. }
  3546. },
  3547. back: {
  3548. height: math.unit(6, "feet"),
  3549. weight: math.unit(210, "lbs"),
  3550. name: "Back",
  3551. image: {
  3552. source: "./media/characters/cimmaron/back-sfw.svg",
  3553. extra: 701 / 676,
  3554. bottom: 0.046
  3555. }
  3556. },
  3557. frontNsfw: {
  3558. height: math.unit(6, "feet"),
  3559. weight: math.unit(210, "lbs"),
  3560. name: "Front (NSFW)",
  3561. image: {
  3562. source: "./media/characters/cimmaron/front-nsfw.svg",
  3563. extra: 701 / 676,
  3564. bottom: 0.046
  3565. }
  3566. },
  3567. backNsfw: {
  3568. height: math.unit(6, "feet"),
  3569. weight: math.unit(210, "lbs"),
  3570. name: "Back (NSFW)",
  3571. image: {
  3572. source: "./media/characters/cimmaron/back-nsfw.svg",
  3573. extra: 701 / 676,
  3574. bottom: 0.046
  3575. }
  3576. },
  3577. dick: {
  3578. height: math.unit(1.714, "feet"),
  3579. name: "Dick",
  3580. image: {
  3581. source: "./media/characters/cimmaron/dick.svg"
  3582. }
  3583. },
  3584. },
  3585. [
  3586. {
  3587. name: "Normal",
  3588. height: math.unit(6, "feet"),
  3589. default: true
  3590. },
  3591. {
  3592. name: "Macro Mayor",
  3593. height: math.unit(350, "meters")
  3594. },
  3595. ]
  3596. ))
  3597. characterMakers.push(() => makeCharacter(
  3598. { name: "Akari Kaen" },
  3599. {
  3600. front: {
  3601. height: math.unit(6, "feet"),
  3602. weight: math.unit(200, "lbs"),
  3603. name: "Front",
  3604. image: {
  3605. source: "./media/characters/akari/front.svg",
  3606. extra: 962 / 901,
  3607. bottom: 0.04
  3608. }
  3609. }
  3610. },
  3611. [
  3612. {
  3613. name: "Micro",
  3614. height: math.unit(5, "inches"),
  3615. default: true
  3616. },
  3617. {
  3618. name: "Normal",
  3619. height: math.unit(7, "feet")
  3620. },
  3621. ]
  3622. ))
  3623. characterMakers.push(() => makeCharacter(
  3624. { name: "Cynosura" },
  3625. {
  3626. front: {
  3627. height: math.unit(6, "feet"),
  3628. weight: math.unit(140, "lbs"),
  3629. name: "Front",
  3630. image: {
  3631. source: "./media/characters/cynosura/front.svg",
  3632. extra: 896 / 847
  3633. }
  3634. },
  3635. back: {
  3636. height: math.unit(6, "feet"),
  3637. weight: math.unit(140, "lbs"),
  3638. name: "Back",
  3639. image: {
  3640. source: "./media/characters/cynosura/back.svg",
  3641. extra: 1365 / 1250
  3642. }
  3643. },
  3644. },
  3645. [
  3646. {
  3647. name: "Micro",
  3648. height: math.unit(4, "inches")
  3649. },
  3650. {
  3651. name: "Normal",
  3652. height: math.unit(5.75, "feet"),
  3653. default: true
  3654. },
  3655. {
  3656. name: "Tall",
  3657. height: math.unit(10, "feet")
  3658. },
  3659. {
  3660. name: "Big",
  3661. height: math.unit(20, "feet")
  3662. },
  3663. {
  3664. name: "Macro",
  3665. height: math.unit(50, "feet")
  3666. },
  3667. ]
  3668. ))
  3669. characterMakers.push(() => makeCharacter(
  3670. { name: "Gin" },
  3671. {
  3672. front: {
  3673. height: math.unit(6, "feet"),
  3674. weight: math.unit(170, "lbs"),
  3675. name: "Front",
  3676. image: {
  3677. source: "./media/characters/gin/front.svg",
  3678. extra: 1.053,
  3679. bottom: 0.025
  3680. }
  3681. },
  3682. foot: {
  3683. height: math.unit(6 / 4.25, "feet"),
  3684. name: "Foot",
  3685. image: {
  3686. source: "./media/characters/gin/foot.svg"
  3687. }
  3688. },
  3689. sole: {
  3690. height: math.unit(6 / 4.40, "feet"),
  3691. name: "Sole",
  3692. image: {
  3693. source: "./media/characters/gin/sole.svg"
  3694. }
  3695. },
  3696. },
  3697. [
  3698. {
  3699. name: "Normal",
  3700. height: math.unit(9 + 4 / 12, "feet")
  3701. },
  3702. {
  3703. name: "Macro",
  3704. height: math.unit(1500, "feet")
  3705. },
  3706. {
  3707. name: "Megamacro",
  3708. height: math.unit(200, "miles"),
  3709. default: true
  3710. },
  3711. {
  3712. name: "Gigamacro",
  3713. height: math.unit(500, "megameters")
  3714. },
  3715. {
  3716. name: "Teramacro",
  3717. height: math.unit(15, "lightyears")
  3718. }
  3719. ]
  3720. ))
  3721. characterMakers.push(() => makeCharacter(
  3722. { name: "Guy" },
  3723. {
  3724. front: {
  3725. height: math.unit(6 + 1 / 6, "feet"),
  3726. weight: math.unit(178, "lbs"),
  3727. name: "Front",
  3728. image: {
  3729. source: "./media/characters/guy/front.svg"
  3730. }
  3731. }
  3732. },
  3733. [
  3734. {
  3735. name: "Normal",
  3736. height: math.unit(6 + 1 / 6, "feet"),
  3737. default: true
  3738. },
  3739. {
  3740. name: "Large",
  3741. height: math.unit(25 + 7 / 12, "feet")
  3742. },
  3743. {
  3744. name: "Macro",
  3745. height: math.unit(60 + 9 / 12, "feet")
  3746. },
  3747. {
  3748. name: "Macro+",
  3749. height: math.unit(246, "feet")
  3750. },
  3751. {
  3752. name: "Macro++",
  3753. height: math.unit(878, "feet")
  3754. }
  3755. ]
  3756. ))
  3757. characterMakers.push(() => makeCharacter(
  3758. { name: "Tiberius" },
  3759. {
  3760. front: {
  3761. height: math.unit(9, "feet"),
  3762. weight: math.unit(800, "lbs"),
  3763. name: "Front",
  3764. image: {
  3765. source: "./media/characters/tiberius/front.svg",
  3766. extra: 2295 / 2071
  3767. }
  3768. },
  3769. back: {
  3770. height: math.unit(9, "feet"),
  3771. weight: math.unit(800, "lbs"),
  3772. name: "Back",
  3773. image: {
  3774. source: "./media/characters/tiberius/back.svg",
  3775. extra: 2373 / 2160
  3776. }
  3777. },
  3778. },
  3779. [
  3780. {
  3781. name: "Normal",
  3782. height: math.unit(9, "feet"),
  3783. default: true
  3784. }
  3785. ]
  3786. ))
  3787. characterMakers.push(() => makeCharacter(
  3788. { name: "Surgo" },
  3789. {
  3790. front: {
  3791. height: math.unit(6, "feet"),
  3792. weight: math.unit(600, "lbs"),
  3793. name: "Front",
  3794. image: {
  3795. source: "./media/characters/surgo/front.svg",
  3796. extra: 3591 / 2227
  3797. }
  3798. },
  3799. back: {
  3800. height: math.unit(6, "feet"),
  3801. weight: math.unit(600, "lbs"),
  3802. name: "Back",
  3803. image: {
  3804. source: "./media/characters/surgo/back.svg",
  3805. extra: 3557 / 2228
  3806. }
  3807. },
  3808. laying: {
  3809. height: math.unit(6 * 0.85, "feet"),
  3810. weight: math.unit(600, "lbs"),
  3811. name: "Laying",
  3812. image: {
  3813. source: "./media/characters/surgo/laying.svg"
  3814. }
  3815. },
  3816. },
  3817. [
  3818. {
  3819. name: "Normal",
  3820. height: math.unit(6, "feet"),
  3821. default: true
  3822. }
  3823. ]
  3824. ))
  3825. characterMakers.push(() => makeCharacter(
  3826. { name: "Cibus" },
  3827. {
  3828. side: {
  3829. height: math.unit(6, "feet"),
  3830. weight: math.unit(150, "lbs"),
  3831. name: "Side",
  3832. image: {
  3833. source: "./media/characters/cibus/side.svg",
  3834. extra: 800 / 400
  3835. }
  3836. },
  3837. },
  3838. [
  3839. {
  3840. name: "Normal",
  3841. height: math.unit(6, "feet"),
  3842. default: true
  3843. }
  3844. ]
  3845. ))
  3846. characterMakers.push(() => makeCharacter(
  3847. { name: "Nibbles" },
  3848. {
  3849. front: {
  3850. height: math.unit(6, "feet"),
  3851. weight: math.unit(240, "lbs"),
  3852. name: "Front",
  3853. image: {
  3854. source: "./media/characters/nibbles/front.svg"
  3855. }
  3856. },
  3857. side: {
  3858. height: math.unit(6, "feet"),
  3859. weight: math.unit(240, "lbs"),
  3860. name: "Side",
  3861. image: {
  3862. source: "./media/characters/nibbles/side.svg"
  3863. }
  3864. },
  3865. },
  3866. [
  3867. {
  3868. name: "Normal",
  3869. height: math.unit(9, "feet"),
  3870. default: true
  3871. }
  3872. ]
  3873. ))
  3874. characterMakers.push(() => makeCharacter(
  3875. { name: "Rikky" },
  3876. {
  3877. side: {
  3878. height: math.unit(5 + 1 / 6, "feet"),
  3879. weight: math.unit(130, "lbs"),
  3880. name: "Side",
  3881. image: {
  3882. source: "./media/characters/rikky/side.svg"
  3883. }
  3884. },
  3885. },
  3886. [
  3887. {
  3888. name: "Normal",
  3889. height: math.unit(5 + 1 / 6, "feet")
  3890. },
  3891. {
  3892. name: "Macro",
  3893. height: math.unit(152, "feet"),
  3894. default: true
  3895. },
  3896. {
  3897. name: "Megamacro",
  3898. height: math.unit(7, "miles")
  3899. }
  3900. ]
  3901. ))
  3902. characterMakers.push(() => makeCharacter(
  3903. { name: "Malfressa" },
  3904. {
  3905. side: {
  3906. height: math.unit(370, "cm"),
  3907. weight: math.unit(350, "lbs"),
  3908. name: "Side",
  3909. image: {
  3910. source: "./media/characters/malfressa/side.svg"
  3911. }
  3912. },
  3913. walking: {
  3914. height: math.unit(370, "cm"),
  3915. weight: math.unit(350, "lbs"),
  3916. name: "Walking",
  3917. image: {
  3918. source: "./media/characters/malfressa/walking.svg"
  3919. }
  3920. },
  3921. feral: {
  3922. height: math.unit(2500, "cm"),
  3923. weight: math.unit(100000, "lbs"),
  3924. name: "Feral",
  3925. image: {
  3926. source: "./media/characters/malfressa/feral.svg",
  3927. extra: 2108 / 837,
  3928. bottom: 0.02
  3929. }
  3930. },
  3931. },
  3932. [
  3933. {
  3934. name: "Normal",
  3935. height: math.unit(370, "cm")
  3936. },
  3937. {
  3938. name: "Macro",
  3939. height: math.unit(300, "meters"),
  3940. default: true
  3941. }
  3942. ]
  3943. ))
  3944. characterMakers.push(() => makeCharacter(
  3945. { name: "Jaro" },
  3946. {
  3947. front: {
  3948. height: math.unit(6, "feet"),
  3949. weight: math.unit(60, "kg"),
  3950. name: "Front",
  3951. image: {
  3952. source: "./media/characters/jaro/front.svg"
  3953. }
  3954. },
  3955. back: {
  3956. height: math.unit(6, "feet"),
  3957. weight: math.unit(60, "kg"),
  3958. name: "Back",
  3959. image: {
  3960. source: "./media/characters/jaro/back.svg"
  3961. }
  3962. },
  3963. },
  3964. [
  3965. {
  3966. name: "Micro",
  3967. height: math.unit(7, "inches")
  3968. },
  3969. {
  3970. name: "Normal",
  3971. height: math.unit(5.5, "feet"),
  3972. default: true
  3973. },
  3974. {
  3975. name: "Minimacro",
  3976. height: math.unit(20, "feet")
  3977. },
  3978. {
  3979. name: "Macro",
  3980. height: math.unit(200, "meters")
  3981. }
  3982. ]
  3983. ))
  3984. characterMakers.push(() => makeCharacter(
  3985. { name: "Rogue" },
  3986. {
  3987. front: {
  3988. height: math.unit(6, "feet"),
  3989. weight: math.unit(195, "lb"),
  3990. name: "Front",
  3991. image: {
  3992. source: "./media/characters/rogue/front.svg"
  3993. }
  3994. },
  3995. },
  3996. [
  3997. {
  3998. name: "Macro",
  3999. height: math.unit(90, "feet"),
  4000. default: true
  4001. },
  4002. ]
  4003. ))
  4004. characterMakers.push(() => makeCharacter(
  4005. { name: "Piper" },
  4006. {
  4007. front: {
  4008. height: math.unit(5 + 8 / 12, "feet"),
  4009. weight: math.unit(140, "lb"),
  4010. name: "Front",
  4011. image: {
  4012. source: "./media/characters/piper/front.svg",
  4013. extra: 3928 / 3681
  4014. }
  4015. },
  4016. },
  4017. [
  4018. {
  4019. name: "Micro",
  4020. height: math.unit(2, "inches")
  4021. },
  4022. {
  4023. name: "Normal",
  4024. height: math.unit(5 + 8 / 12, "feet")
  4025. },
  4026. {
  4027. name: "Macro",
  4028. height: math.unit(250, "feet"),
  4029. default: true
  4030. },
  4031. {
  4032. name: "Megamacro",
  4033. height: math.unit(7, "miles")
  4034. },
  4035. ]
  4036. ))
  4037. characterMakers.push(() => makeCharacter(
  4038. { name: "Gemini" },
  4039. {
  4040. front: {
  4041. height: math.unit(6, "feet"),
  4042. weight: math.unit(220, "lb"),
  4043. name: "Front",
  4044. image: {
  4045. source: "./media/characters/gemini/front.svg"
  4046. }
  4047. },
  4048. back: {
  4049. height: math.unit(6, "feet"),
  4050. weight: math.unit(220, "lb"),
  4051. name: "Back",
  4052. image: {
  4053. source: "./media/characters/gemini/back.svg"
  4054. }
  4055. },
  4056. kneeling: {
  4057. height: math.unit(6 / 1.5, "feet"),
  4058. weight: math.unit(220, "lb"),
  4059. name: "Kneeling",
  4060. image: {
  4061. source: "./media/characters/gemini/kneeling.svg",
  4062. bottom: 0.02
  4063. }
  4064. },
  4065. },
  4066. [
  4067. {
  4068. name: "Macro",
  4069. height: math.unit(300, "meters"),
  4070. default: true
  4071. },
  4072. {
  4073. name: "Megamacro",
  4074. height: math.unit(6900, "meters")
  4075. },
  4076. ]
  4077. ))
  4078. characterMakers.push(() => makeCharacter(
  4079. { name: "Alicia" },
  4080. {
  4081. anthro: {
  4082. height: math.unit(2.35, "meters"),
  4083. weight: math.unit(73, "kg"),
  4084. name: "Anthro",
  4085. image: {
  4086. source: "./media/characters/alicia/anthro.svg"
  4087. }
  4088. },
  4089. feral: {
  4090. height: math.unit(1.69, "meters"),
  4091. weight: math.unit(73, "kg"),
  4092. name: "Feral",
  4093. image: {
  4094. source: "./media/characters/alicia/feral.svg"
  4095. }
  4096. },
  4097. },
  4098. [
  4099. {
  4100. name: "Normal",
  4101. height: math.unit(2.35, "meters")
  4102. },
  4103. {
  4104. name: "Macro",
  4105. height: math.unit(60, "meters"),
  4106. default: true
  4107. },
  4108. {
  4109. name: "Megamacro",
  4110. height: math.unit(10000, "kilometers")
  4111. },
  4112. ]
  4113. ))
  4114. characterMakers.push(() => makeCharacter(
  4115. { name: "Archy" },
  4116. {
  4117. front: {
  4118. height: math.unit(7, "feet"),
  4119. weight: math.unit(250, "lbs"),
  4120. name: "Front",
  4121. image: {
  4122. source: "./media/characters/archy/front.svg"
  4123. }
  4124. }
  4125. },
  4126. [
  4127. {
  4128. name: "Micro",
  4129. height: math.unit(1, "inch")
  4130. },
  4131. {
  4132. name: "Shorty",
  4133. height: math.unit(5, "feet")
  4134. },
  4135. {
  4136. name: "Normal",
  4137. height: math.unit(7, "feet")
  4138. },
  4139. {
  4140. name: "Macro",
  4141. height: math.unit(600, "meters"),
  4142. default: true
  4143. },
  4144. {
  4145. name: "Megamacro",
  4146. height: math.unit(1, "mile")
  4147. },
  4148. ]
  4149. ))
  4150. characterMakers.push(() => makeCharacter(
  4151. { name: "Berri" },
  4152. {
  4153. front: {
  4154. height: math.unit(1.65, "meters"),
  4155. weight: math.unit(74, "kg"),
  4156. name: "Front",
  4157. image: {
  4158. source: "./media/characters/berri/front.svg"
  4159. }
  4160. }
  4161. },
  4162. [
  4163. {
  4164. name: "Normal",
  4165. height: math.unit(1.65, "meters")
  4166. },
  4167. {
  4168. name: "Macro",
  4169. height: math.unit(60, "m"),
  4170. default: true
  4171. },
  4172. {
  4173. name: "Megamacro",
  4174. height: math.unit(9.213, "km")
  4175. },
  4176. {
  4177. name: "Planet Eater",
  4178. height: math.unit(489, "megameters")
  4179. },
  4180. {
  4181. name: "Teramacro",
  4182. height: math.unit(2471635000000, "meters")
  4183. },
  4184. {
  4185. name: "Examacro",
  4186. height: math.unit(8.0624e+26, "meters")
  4187. }
  4188. ]
  4189. ))
  4190. characterMakers.push(() => makeCharacter(
  4191. { name: "Lexi" },
  4192. {
  4193. front: {
  4194. height: math.unit(1.72, "meters"),
  4195. weight: math.unit(68, "kg"),
  4196. name: "Front",
  4197. image: {
  4198. source: "./media/characters/lexi/front.svg"
  4199. }
  4200. }
  4201. },
  4202. [
  4203. {
  4204. name: "Very Smol",
  4205. height: math.unit(10, "mm")
  4206. },
  4207. {
  4208. name: "Micro",
  4209. height: math.unit(6.8, "cm"),
  4210. default: true
  4211. },
  4212. {
  4213. name: "Normal",
  4214. height: math.unit(1.72, "m")
  4215. }
  4216. ]
  4217. ))
  4218. characterMakers.push(() => makeCharacter(
  4219. { name: "Martin" },
  4220. {
  4221. front: {
  4222. height: math.unit(1.69, "meters"),
  4223. weight: math.unit(68, "kg"),
  4224. name: "Front",
  4225. image: {
  4226. source: "./media/characters/martin/front.svg",
  4227. extra: 596 / 581
  4228. }
  4229. }
  4230. },
  4231. [
  4232. {
  4233. name: "Micro",
  4234. height: math.unit(6.85, "cm"),
  4235. default: true
  4236. },
  4237. {
  4238. name: "Normal",
  4239. height: math.unit(1.69, "m")
  4240. }
  4241. ]
  4242. ))
  4243. characterMakers.push(() => makeCharacter(
  4244. { name: "Juno" },
  4245. {
  4246. front: {
  4247. height: math.unit(1.69, "meters"),
  4248. weight: math.unit(68, "kg"),
  4249. name: "Front",
  4250. image: {
  4251. source: "./media/characters/juno/front.svg"
  4252. }
  4253. }
  4254. },
  4255. [
  4256. {
  4257. name: "Micro",
  4258. height: math.unit(7, "cm")
  4259. },
  4260. {
  4261. name: "Normal",
  4262. height: math.unit(1.89, "m")
  4263. },
  4264. {
  4265. name: "Macro",
  4266. height: math.unit(353, "meters"),
  4267. default: true
  4268. }
  4269. ]
  4270. ))
  4271. characterMakers.push(() => makeCharacter(
  4272. { name: "Samantha" },
  4273. {
  4274. front: {
  4275. height: math.unit(1.93, "meters"),
  4276. weight: math.unit(83, "kg"),
  4277. name: "Front",
  4278. image: {
  4279. source: "./media/characters/samantha/front.svg"
  4280. }
  4281. },
  4282. frontClothed: {
  4283. height: math.unit(1.93, "meters"),
  4284. weight: math.unit(83, "kg"),
  4285. name: "Front (Clothed)",
  4286. image: {
  4287. source: "./media/characters/samantha/front-clothed.svg"
  4288. }
  4289. },
  4290. back: {
  4291. height: math.unit(1.93, "meters"),
  4292. weight: math.unit(83, "kg"),
  4293. name: "Back",
  4294. image: {
  4295. source: "./media/characters/samantha/back.svg"
  4296. }
  4297. },
  4298. },
  4299. [
  4300. {
  4301. name: "Normal",
  4302. height: math.unit(1.93, "m")
  4303. },
  4304. {
  4305. name: "Macro",
  4306. height: math.unit(74, "meters"),
  4307. default: true
  4308. },
  4309. {
  4310. name: "Macro+",
  4311. height: math.unit(223, "meters"),
  4312. },
  4313. {
  4314. name: "Megamacro",
  4315. height: math.unit(8381, "meters"),
  4316. },
  4317. {
  4318. name: "Megamacro+",
  4319. height: math.unit(12000, "kilometers")
  4320. },
  4321. ]
  4322. ))
  4323. characterMakers.push(() => makeCharacter(
  4324. { name: "Dr. Clay" },
  4325. {
  4326. front: {
  4327. height: math.unit(1.92, "meters"),
  4328. weight: math.unit(80, "kg"),
  4329. name: "Front",
  4330. image: {
  4331. source: "./media/characters/dr-clay/front.svg"
  4332. }
  4333. },
  4334. frontClothed: {
  4335. height: math.unit(1.92, "meters"),
  4336. weight: math.unit(80, "kg"),
  4337. name: "Front (Clothed)",
  4338. image: {
  4339. source: "./media/characters/dr-clay/front-clothed.svg"
  4340. }
  4341. }
  4342. },
  4343. [
  4344. {
  4345. name: "Normal",
  4346. height: math.unit(1.92, "m")
  4347. },
  4348. {
  4349. name: "Macro",
  4350. height: math.unit(214, "meters"),
  4351. default: true
  4352. },
  4353. {
  4354. name: "Macro+",
  4355. height: math.unit(12.237, "meters"),
  4356. },
  4357. {
  4358. name: "Megamacro",
  4359. height: math.unit(557, "megameters"),
  4360. },
  4361. {
  4362. name: "Unimaginable",
  4363. height: math.unit(120e9, "lightyears")
  4364. },
  4365. ]
  4366. ))
  4367. characterMakers.push(() => makeCharacter(
  4368. { name: "Wyvrn Ripsnarl" },
  4369. {
  4370. front: {
  4371. height: math.unit(2, "meters"),
  4372. weight: math.unit(80, "kg"),
  4373. name: "Front",
  4374. image: {
  4375. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4376. }
  4377. }
  4378. },
  4379. [
  4380. {
  4381. name: "Teramacro",
  4382. height: math.unit(500000, "lightyears"),
  4383. default: true
  4384. },
  4385. ]
  4386. ))
  4387. characterMakers.push(() => makeCharacter(
  4388. { name: "Vemus" },
  4389. {
  4390. front: {
  4391. height: math.unit(2, "meters"),
  4392. weight: math.unit(150, "kg"),
  4393. name: "Front",
  4394. image: {
  4395. source: "./media/characters/vemus/front.svg",
  4396. extra: 2384 / 2084,
  4397. bottom: 0.0123
  4398. }
  4399. }
  4400. },
  4401. [
  4402. {
  4403. name: "Normal",
  4404. height: math.unit(3.75, "meters"),
  4405. default: true
  4406. },
  4407. {
  4408. name: "Big",
  4409. height: math.unit(8, "meters")
  4410. },
  4411. {
  4412. name: "Macro",
  4413. height: math.unit(100, "meters")
  4414. },
  4415. {
  4416. name: "Macro+",
  4417. height: math.unit(1500, "meters")
  4418. },
  4419. {
  4420. name: "Stellar",
  4421. height: math.unit(14e8, "meters")
  4422. },
  4423. ]
  4424. ))
  4425. characterMakers.push(() => makeCharacter(
  4426. { name: "Beherit" },
  4427. {
  4428. front: {
  4429. height: math.unit(2, "meters"),
  4430. weight: math.unit(70, "kg"),
  4431. name: "Front",
  4432. image: {
  4433. source: "./media/characters/beherit/front.svg",
  4434. extra: 1408 / 1242
  4435. }
  4436. }
  4437. },
  4438. [
  4439. {
  4440. name: "Normal",
  4441. height: math.unit(6, "feet")
  4442. },
  4443. {
  4444. name: "Lorg",
  4445. height: math.unit(25, "feet"),
  4446. default: true
  4447. },
  4448. {
  4449. name: "Lorger",
  4450. height: math.unit(75, "feet")
  4451. },
  4452. {
  4453. name: "Macro",
  4454. height: math.unit(200, "meters")
  4455. },
  4456. ]
  4457. ))
  4458. characterMakers.push(() => makeCharacter(
  4459. { name: "Everett" },
  4460. {
  4461. front: {
  4462. height: math.unit(2, "meters"),
  4463. weight: math.unit(150, "kg"),
  4464. name: "Front",
  4465. image: {
  4466. source: "./media/characters/everett/front.svg",
  4467. extra: 2038 / 1737,
  4468. bottom: 0.03
  4469. }
  4470. },
  4471. paw: {
  4472. height: math.unit(2 / 3.6, "meters"),
  4473. name: "Paw",
  4474. image: {
  4475. source: "./media/characters/everett/paw.svg"
  4476. }
  4477. },
  4478. },
  4479. [
  4480. {
  4481. name: "Normal",
  4482. height: math.unit(15, "feet"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Lorg",
  4487. height: math.unit(70, "feet"),
  4488. default: true
  4489. },
  4490. {
  4491. name: "Lorger",
  4492. height: math.unit(250, "feet")
  4493. },
  4494. {
  4495. name: "Macro",
  4496. height: math.unit(500, "meters")
  4497. },
  4498. ]
  4499. ))
  4500. characterMakers.push(() => makeCharacter(
  4501. { name: "Rose Lion" },
  4502. {
  4503. front: {
  4504. height: math.unit(2, "meters"),
  4505. weight: math.unit(86, "kg"),
  4506. name: "Front",
  4507. image: {
  4508. source: "./media/characters/rose-lion/front.svg"
  4509. }
  4510. },
  4511. bent: {
  4512. height: math.unit(2 / 1.4288, "meters"),
  4513. weight: math.unit(86, "kg"),
  4514. name: "Bent",
  4515. image: {
  4516. source: "./media/characters/rose-lion/bent.svg"
  4517. }
  4518. }
  4519. },
  4520. [
  4521. {
  4522. name: "Mini-Micro",
  4523. height: math.unit(1, "cm")
  4524. },
  4525. {
  4526. name: "Micro",
  4527. height: math.unit(3.5, "inches"),
  4528. default: true
  4529. },
  4530. {
  4531. name: "Normal",
  4532. height: math.unit(6 + 1 / 6, "feet")
  4533. },
  4534. {
  4535. name: "Mini-Macro",
  4536. height: math.unit(9 + 10 / 12, "feet")
  4537. },
  4538. ]
  4539. ))
  4540. characterMakers.push(() => makeCharacter(
  4541. { name: "Regal" },
  4542. {
  4543. front: {
  4544. height: math.unit(2, "meters"),
  4545. weight: math.unit(350, "lbs"),
  4546. name: "Front",
  4547. image: {
  4548. source: "./media/characters/regal/front.svg"
  4549. }
  4550. },
  4551. back: {
  4552. height: math.unit(2, "meters"),
  4553. weight: math.unit(350, "lbs"),
  4554. name: "Back",
  4555. image: {
  4556. source: "./media/characters/regal/back.svg"
  4557. }
  4558. },
  4559. },
  4560. [
  4561. {
  4562. name: "Macro",
  4563. height: math.unit(350, "feet"),
  4564. default: true
  4565. }
  4566. ]
  4567. ))
  4568. characterMakers.push(() => makeCharacter(
  4569. { name: "Opal" },
  4570. {
  4571. front: {
  4572. height: math.unit(4 + 11 / 12, "feet"),
  4573. weight: math.unit(100, "lbs"),
  4574. name: "Front",
  4575. image: {
  4576. source: "./media/characters/opal/front.svg"
  4577. }
  4578. },
  4579. frontAlt: {
  4580. height: math.unit(4 + 11 / 12, "feet"),
  4581. weight: math.unit(100, "lbs"),
  4582. name: "Front (Alt)",
  4583. image: {
  4584. source: "./media/characters/opal/front-alt.svg"
  4585. }
  4586. },
  4587. },
  4588. [
  4589. {
  4590. name: "Small",
  4591. height: math.unit(4 + 11 / 12, "feet")
  4592. },
  4593. {
  4594. name: "Normal",
  4595. height: math.unit(20, "feet"),
  4596. default: true
  4597. },
  4598. {
  4599. name: "Macro",
  4600. height: math.unit(120, "feet")
  4601. },
  4602. {
  4603. name: "Megamacro",
  4604. height: math.unit(80, "miles")
  4605. },
  4606. {
  4607. name: "True Size",
  4608. height: math.unit(100000, "lightyears")
  4609. },
  4610. ]
  4611. ))
  4612. characterMakers.push(() => makeCharacter(
  4613. { name: "Vector Wuff" },
  4614. {
  4615. front: {
  4616. height: math.unit(6, "feet"),
  4617. weight: math.unit(200, "lbs"),
  4618. name: "Front",
  4619. image: {
  4620. source: "./media/characters/vector-wuff/front.svg"
  4621. }
  4622. }
  4623. },
  4624. [
  4625. {
  4626. name: "Normal",
  4627. height: math.unit(2.8, "meters")
  4628. },
  4629. {
  4630. name: "Macro",
  4631. height: math.unit(450, "meters"),
  4632. default: true
  4633. },
  4634. {
  4635. name: "Megamacro",
  4636. height: math.unit(15, "kilometers")
  4637. }
  4638. ]
  4639. ))
  4640. characterMakers.push(() => makeCharacter(
  4641. { name: "Dannik" },
  4642. {
  4643. front: {
  4644. height: math.unit(6, "feet"),
  4645. weight: math.unit(256, "lbs"),
  4646. name: "Front",
  4647. image: {
  4648. source: "./media/characters/dannik/front.svg"
  4649. }
  4650. }
  4651. },
  4652. [
  4653. {
  4654. name: "Macro",
  4655. height: math.unit(69.57, "meters"),
  4656. default: true
  4657. },
  4658. ]
  4659. ))
  4660. characterMakers.push(() => makeCharacter(
  4661. { name: "Azura Saharah" },
  4662. {
  4663. front: {
  4664. height: math.unit(6, "feet"),
  4665. weight: math.unit(120, "lbs"),
  4666. name: "Front",
  4667. image: {
  4668. source: "./media/characters/azura-saharah/front.svg"
  4669. }
  4670. },
  4671. back: {
  4672. height: math.unit(6, "feet"),
  4673. weight: math.unit(120, "lbs"),
  4674. name: "Back",
  4675. image: {
  4676. source: "./media/characters/azura-saharah/back.svg"
  4677. }
  4678. },
  4679. },
  4680. [
  4681. {
  4682. name: "Macro",
  4683. height: math.unit(100, "feet"),
  4684. default: true
  4685. },
  4686. ]
  4687. ))
  4688. characterMakers.push(() => makeCharacter(
  4689. { name: "Kennedy" },
  4690. {
  4691. side: {
  4692. height: math.unit(5 + 4 / 12, "feet"),
  4693. weight: math.unit(163, "lbs"),
  4694. name: "Side",
  4695. image: {
  4696. source: "./media/characters/kennedy/side.svg"
  4697. }
  4698. }
  4699. },
  4700. [
  4701. {
  4702. name: "Standard Doggo",
  4703. height: math.unit(5 + 4 / 12, "feet")
  4704. },
  4705. {
  4706. name: "Big Doggo",
  4707. height: math.unit(25 + 3 / 12, "feet"),
  4708. default: true
  4709. },
  4710. ]
  4711. ))
  4712. characterMakers.push(() => makeCharacter(
  4713. { name: "Odi Lunar" },
  4714. {
  4715. front: {
  4716. height: math.unit(6, "feet"),
  4717. weight: math.unit(90, "lbs"),
  4718. name: "Front",
  4719. image: {
  4720. source: "./media/characters/odi-lunar/front.svg"
  4721. }
  4722. }
  4723. },
  4724. [
  4725. {
  4726. name: "Micro",
  4727. height: math.unit(3, "inches"),
  4728. default: true
  4729. },
  4730. {
  4731. name: "Normal",
  4732. height: math.unit(5.5, "feet")
  4733. }
  4734. ]
  4735. ))
  4736. characterMakers.push(() => makeCharacter(
  4737. { name: "Mandake" },
  4738. {
  4739. back: {
  4740. height: math.unit(6, "feet"),
  4741. weight: math.unit(220, "lbs"),
  4742. name: "Back",
  4743. image: {
  4744. source: "./media/characters/mandake/back.svg"
  4745. }
  4746. }
  4747. },
  4748. [
  4749. {
  4750. name: "Normal",
  4751. height: math.unit(7, "feet"),
  4752. default: true
  4753. },
  4754. {
  4755. name: "Macro",
  4756. height: math.unit(78, "feet")
  4757. },
  4758. {
  4759. name: "Macro+",
  4760. height: math.unit(300, "meters")
  4761. },
  4762. {
  4763. name: "Macro++",
  4764. height: math.unit(2400, "feet")
  4765. },
  4766. {
  4767. name: "Megamacro",
  4768. height: math.unit(5167, "meters")
  4769. },
  4770. {
  4771. name: "Gigamacro",
  4772. height: math.unit(41769, "miles")
  4773. },
  4774. ]
  4775. ))
  4776. characterMakers.push(() => makeCharacter(
  4777. { name: "Yozey" },
  4778. {
  4779. front: {
  4780. height: math.unit(6, "feet"),
  4781. weight: math.unit(120, "lbs"),
  4782. name: "Front",
  4783. image: {
  4784. source: "./media/characters/yozey/front.svg"
  4785. }
  4786. },
  4787. frontAlt: {
  4788. height: math.unit(6, "feet"),
  4789. weight: math.unit(120, "lbs"),
  4790. name: "Front (Alt)",
  4791. image: {
  4792. source: "./media/characters/yozey/front-alt.svg"
  4793. }
  4794. },
  4795. side: {
  4796. height: math.unit(6, "feet"),
  4797. weight: math.unit(120, "lbs"),
  4798. name: "Side",
  4799. image: {
  4800. source: "./media/characters/yozey/side.svg"
  4801. }
  4802. },
  4803. },
  4804. [
  4805. {
  4806. name: "Micro",
  4807. height: math.unit(3, "inches"),
  4808. default: true
  4809. },
  4810. {
  4811. name: "Normal",
  4812. height: math.unit(6, "feet")
  4813. }
  4814. ]
  4815. ))
  4816. characterMakers.push(() => makeCharacter(
  4817. { name: "Valeska Voss" },
  4818. {
  4819. front: {
  4820. height: math.unit(6, "feet"),
  4821. weight: math.unit(103, "lbs"),
  4822. name: "Front",
  4823. image: {
  4824. source: "./media/characters/valeska-voss/front.svg"
  4825. }
  4826. }
  4827. },
  4828. [
  4829. {
  4830. name: "Mini-Sized Sub",
  4831. height: math.unit(3.1, "inches")
  4832. },
  4833. {
  4834. name: "Mid-Sized Sub",
  4835. height: math.unit(6.2, "inches")
  4836. },
  4837. {
  4838. name: "Full-Sized Sub",
  4839. height: math.unit(9.3, "inches")
  4840. },
  4841. {
  4842. name: "Normal",
  4843. height: math.unit(5 + 2 / 12, "foot"),
  4844. default: true
  4845. },
  4846. ]
  4847. ))
  4848. characterMakers.push(() => makeCharacter(
  4849. { name: "Gene Zeta" },
  4850. {
  4851. front: {
  4852. height: math.unit(6, "feet"),
  4853. weight: math.unit(160, "lbs"),
  4854. name: "Front",
  4855. image: {
  4856. source: "./media/characters/gene-zeta/front.svg",
  4857. bottom: 0.03,
  4858. extra: 1
  4859. }
  4860. }
  4861. },
  4862. [
  4863. {
  4864. name: "Normal",
  4865. height: math.unit(6.25, "foot"),
  4866. default: true
  4867. },
  4868. ]
  4869. ))
  4870. characterMakers.push(() => makeCharacter(
  4871. { name: "Razinox" },
  4872. {
  4873. front: {
  4874. height: math.unit(6, "feet"),
  4875. weight: math.unit(350, "lbs"),
  4876. name: "Front",
  4877. image: {
  4878. source: "./media/characters/razinox/front.svg",
  4879. extra: 1686 / 1548
  4880. }
  4881. },
  4882. back: {
  4883. height: math.unit(6, "feet"),
  4884. weight: math.unit(350, "lbs"),
  4885. name: "Back",
  4886. image: {
  4887. source: "./media/characters/razinox/back.svg",
  4888. extra: 1660 / 1590
  4889. }
  4890. },
  4891. },
  4892. [
  4893. {
  4894. name: "Normal",
  4895. height: math.unit(10 + 8 / 12, "foot")
  4896. },
  4897. {
  4898. name: "Minimacro",
  4899. height: math.unit(15, "foot")
  4900. },
  4901. {
  4902. name: "Macro",
  4903. height: math.unit(60, "foot"),
  4904. default: true
  4905. },
  4906. {
  4907. name: "Megamacro",
  4908. height: math.unit(5, "miles")
  4909. },
  4910. {
  4911. name: "Gigamacro",
  4912. height: math.unit(6000, "miles")
  4913. },
  4914. ]
  4915. ))
  4916. characterMakers.push(() => makeCharacter(
  4917. { name: "Cobalt" },
  4918. {
  4919. front: {
  4920. height: math.unit(6, "feet"),
  4921. weight: math.unit(150, "lbs"),
  4922. name: "Front",
  4923. image: {
  4924. source: "./media/characters/cobalt/front.svg"
  4925. }
  4926. }
  4927. },
  4928. [
  4929. {
  4930. name: "Normal",
  4931. height: math.unit(8 + 1 / 12, "foot")
  4932. },
  4933. {
  4934. name: "Macro",
  4935. height: math.unit(111, "foot"),
  4936. default: true
  4937. },
  4938. {
  4939. name: "Supracosmic",
  4940. height: math.unit(1e42, "feet")
  4941. },
  4942. ]
  4943. ))
  4944. characterMakers.push(() => makeCharacter(
  4945. { name: "Amanda" },
  4946. {
  4947. front: {
  4948. height: math.unit(6, "feet"),
  4949. weight: math.unit(140, "lbs"),
  4950. name: "Front",
  4951. image: {
  4952. source: "./media/characters/amanda/front.svg"
  4953. }
  4954. }
  4955. },
  4956. [
  4957. {
  4958. name: "Micro",
  4959. height: math.unit(5, "inches"),
  4960. default: true
  4961. },
  4962. ]
  4963. ))
  4964. characterMakers.push(() => makeCharacter(
  4965. { name: "Teal" },
  4966. {
  4967. front: {
  4968. height: math.unit(5.59, "feet"),
  4969. weight: math.unit(250, "lbs"),
  4970. name: "Front",
  4971. image: {
  4972. source: "./media/characters/teal/front.svg"
  4973. }
  4974. },
  4975. frontAlt: {
  4976. height: math.unit(6, "feet"),
  4977. weight: math.unit(250, "lbs"),
  4978. name: "Front (Alt)",
  4979. image: {
  4980. source: "./media/characters/teal/front-alt.svg",
  4981. bottom: 0.04,
  4982. extra: 1
  4983. }
  4984. },
  4985. },
  4986. [
  4987. {
  4988. name: "Normal",
  4989. height: math.unit(12, "feet"),
  4990. default: true
  4991. },
  4992. {
  4993. name: "Macro",
  4994. height: math.unit(300, "feet")
  4995. },
  4996. ]
  4997. ))
  4998. characterMakers.push(() => makeCharacter(
  4999. { name: "Ravin Amulet" },
  5000. {
  5001. frontCat: {
  5002. height: math.unit(6, "feet"),
  5003. weight: math.unit(180, "lbs"),
  5004. name: "Front (Cat)",
  5005. image: {
  5006. source: "./media/characters/ravin-amulet/front-cat.svg"
  5007. }
  5008. },
  5009. frontCatAlt: {
  5010. height: math.unit(6, "feet"),
  5011. weight: math.unit(180, "lbs"),
  5012. name: "Front (Alt, Cat)",
  5013. image: {
  5014. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5015. }
  5016. },
  5017. frontWerewolf: {
  5018. height: math.unit(6 * 1.2, "feet"),
  5019. weight: math.unit(225, "lbs"),
  5020. name: "Front (Werewolf)",
  5021. image: {
  5022. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5023. }
  5024. },
  5025. backWerewolf: {
  5026. height: math.unit(6 * 1.2, "feet"),
  5027. weight: math.unit(225, "lbs"),
  5028. name: "Back (Werewolf)",
  5029. image: {
  5030. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5031. }
  5032. },
  5033. },
  5034. [
  5035. {
  5036. name: "Nano",
  5037. height: math.unit(1, "micrometer")
  5038. },
  5039. {
  5040. name: "Micro",
  5041. height: math.unit(1, "inch")
  5042. },
  5043. {
  5044. name: "Normal",
  5045. height: math.unit(6, "feet"),
  5046. default: true
  5047. },
  5048. {
  5049. name: "Macro",
  5050. height: math.unit(60, "feet")
  5051. }
  5052. ]
  5053. ))
  5054. characterMakers.push(() => makeCharacter(
  5055. { name: "Fluoresce" },
  5056. {
  5057. front: {
  5058. height: math.unit(6, "feet"),
  5059. weight: math.unit(165, "lbs"),
  5060. name: "Front",
  5061. image: {
  5062. source: "./media/characters/fluoresce/front.svg"
  5063. }
  5064. }
  5065. },
  5066. [
  5067. {
  5068. name: "Micro",
  5069. height: math.unit(6, "cm")
  5070. },
  5071. {
  5072. name: "Normal",
  5073. height: math.unit(5 + 7 / 12, "feet"),
  5074. default: true
  5075. },
  5076. {
  5077. name: "Macro",
  5078. height: math.unit(56, "feet")
  5079. },
  5080. {
  5081. name: "Megamacro",
  5082. height: math.unit(1.9, "miles")
  5083. },
  5084. ]
  5085. ))
  5086. characterMakers.push(() => makeCharacter(
  5087. { name: "Aurora" },
  5088. {
  5089. front: {
  5090. height: math.unit(9 + 6 / 12, "feet"),
  5091. weight: math.unit(523, "lbs"),
  5092. name: "Side",
  5093. image: {
  5094. source: "./media/characters/aurora/side.svg"
  5095. }
  5096. }
  5097. },
  5098. [
  5099. {
  5100. name: "Normal",
  5101. height: math.unit(9 + 6 / 12, "feet")
  5102. },
  5103. {
  5104. name: "Macro",
  5105. height: math.unit(96, "feet"),
  5106. default: true
  5107. },
  5108. {
  5109. name: "Macro+",
  5110. height: math.unit(243, "feet")
  5111. },
  5112. ]
  5113. ))
  5114. characterMakers.push(() => makeCharacter(
  5115. { name: "Ranek" },
  5116. {
  5117. front: {
  5118. height: math.unit(194, "cm"),
  5119. weight: math.unit(90, "kg"),
  5120. name: "Front",
  5121. image: {
  5122. source: "./media/characters/ranek/front.svg"
  5123. }
  5124. },
  5125. side: {
  5126. height: math.unit(194, "cm"),
  5127. weight: math.unit(90, "kg"),
  5128. name: "Side",
  5129. image: {
  5130. source: "./media/characters/ranek/side.svg"
  5131. }
  5132. },
  5133. back: {
  5134. height: math.unit(194, "cm"),
  5135. weight: math.unit(90, "kg"),
  5136. name: "Back",
  5137. image: {
  5138. source: "./media/characters/ranek/back.svg"
  5139. }
  5140. },
  5141. feral: {
  5142. height: math.unit(30, "cm"),
  5143. weight: math.unit(1.6, "lbs"),
  5144. name: "Feral",
  5145. image: {
  5146. source: "./media/characters/ranek/feral.svg"
  5147. }
  5148. },
  5149. },
  5150. [
  5151. {
  5152. name: "Normal",
  5153. height: math.unit(194, "cm"),
  5154. default: true
  5155. },
  5156. {
  5157. name: "Macro",
  5158. height: math.unit(100, "meters")
  5159. },
  5160. ]
  5161. ))
  5162. characterMakers.push(() => makeCharacter(
  5163. { name: "Andrew Cooper" },
  5164. {
  5165. front: {
  5166. height: math.unit(5 + 6 / 12, "feet"),
  5167. weight: math.unit(153, "lbs"),
  5168. name: "Front",
  5169. image: {
  5170. source: "./media/characters/andrew-cooper/front.svg"
  5171. }
  5172. },
  5173. },
  5174. [
  5175. {
  5176. name: "Nano",
  5177. height: math.unit(1, "mm")
  5178. },
  5179. {
  5180. name: "Micro",
  5181. height: math.unit(2, "inches")
  5182. },
  5183. {
  5184. name: "Normal",
  5185. height: math.unit(5 + 6 / 12, "feet"),
  5186. default: true
  5187. }
  5188. ]
  5189. ))
  5190. characterMakers.push(() => makeCharacter(
  5191. { name: "Akane Sato" },
  5192. {
  5193. front: {
  5194. height: math.unit(6, "feet"),
  5195. weight: math.unit(180, "lbs"),
  5196. name: "Front",
  5197. image: {
  5198. source: "./media/characters/akane-sato/front.svg",
  5199. extra: 1219 / 1140
  5200. }
  5201. },
  5202. back: {
  5203. height: math.unit(6, "feet"),
  5204. weight: math.unit(180, "lbs"),
  5205. name: "Back",
  5206. image: {
  5207. source: "./media/characters/akane-sato/back.svg",
  5208. extra: 1219 / 1170
  5209. }
  5210. },
  5211. },
  5212. [
  5213. {
  5214. name: "Normal",
  5215. height: math.unit(2.5, "meters")
  5216. },
  5217. {
  5218. name: "Macro",
  5219. height: math.unit(250, "meters"),
  5220. default: true
  5221. },
  5222. {
  5223. name: "Megamacro",
  5224. height: math.unit(25, "km")
  5225. },
  5226. ]
  5227. ))
  5228. characterMakers.push(() => makeCharacter(
  5229. { name: "Rook" },
  5230. {
  5231. front: {
  5232. height: math.unit(6, "feet"),
  5233. weight: math.unit(65, "kg"),
  5234. name: "Front",
  5235. image: {
  5236. source: "./media/characters/rook/front.svg",
  5237. extra: 960/950
  5238. }
  5239. }
  5240. },
  5241. [
  5242. {
  5243. name: "Normal",
  5244. height: math.unit(8.8, "feet")
  5245. },
  5246. {
  5247. name: "Macro",
  5248. height: math.unit(88, "feet"),
  5249. default: true
  5250. },
  5251. {
  5252. name: "Megamacro",
  5253. height: math.unit(8, "miles")
  5254. },
  5255. ]
  5256. ))
  5257. characterMakers.push(() => makeCharacter(
  5258. { name: "Prodigy" },
  5259. {
  5260. front: {
  5261. height: math.unit(12 + 2 / 12, "feet"),
  5262. weight: math.unit(808, "lbs"),
  5263. name: "Front",
  5264. image: {
  5265. source: "./media/characters/prodigy/front.svg"
  5266. }
  5267. }
  5268. },
  5269. [
  5270. {
  5271. name: "Normal",
  5272. height: math.unit(12 + 2 / 12, "feet"),
  5273. default: true
  5274. },
  5275. {
  5276. name: "Macro",
  5277. height: math.unit(143, "feet")
  5278. },
  5279. {
  5280. name: "Macro+",
  5281. height: math.unit(400, "feet")
  5282. },
  5283. ]
  5284. ))
  5285. characterMakers.push(() => makeCharacter(
  5286. { name: "Daniel" },
  5287. {
  5288. front: {
  5289. height: math.unit(6, "feet"),
  5290. weight: math.unit(225, "lbs"),
  5291. name: "Front",
  5292. image: {
  5293. source: "./media/characters/daniel/front.svg"
  5294. }
  5295. },
  5296. leaning: {
  5297. height: math.unit(6, "feet"),
  5298. weight: math.unit(225, "lbs"),
  5299. name: "Leaning",
  5300. image: {
  5301. source: "./media/characters/daniel/leaning.svg"
  5302. }
  5303. },
  5304. },
  5305. [
  5306. {
  5307. name: "Macro",
  5308. height: math.unit(1000, "feet"),
  5309. default: true
  5310. },
  5311. ]
  5312. ))
  5313. characterMakers.push(() => makeCharacter(
  5314. { name: "Chiros" },
  5315. {
  5316. front: {
  5317. height: math.unit(6, "feet"),
  5318. weight: math.unit(88, "lbs"),
  5319. name: "Front",
  5320. image: {
  5321. source: "./media/characters/chiros/front.svg",
  5322. extra: 306 / 226
  5323. }
  5324. },
  5325. side: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(88, "lbs"),
  5328. name: "Side",
  5329. image: {
  5330. source: "./media/characters/chiros/side.svg",
  5331. extra: 306 / 226
  5332. }
  5333. },
  5334. },
  5335. [
  5336. {
  5337. name: "Normal",
  5338. height: math.unit(6, "cm"),
  5339. default: true
  5340. },
  5341. ]
  5342. ))
  5343. characterMakers.push(() => makeCharacter(
  5344. { name: "Selka" },
  5345. {
  5346. front: {
  5347. height: math.unit(6, "feet"),
  5348. weight: math.unit(100, "lbs"),
  5349. name: "Front",
  5350. image: {
  5351. source: "./media/characters/selka/front.svg",
  5352. extra: 947 / 887
  5353. }
  5354. }
  5355. },
  5356. [
  5357. {
  5358. name: "Normal",
  5359. height: math.unit(5, "cm"),
  5360. default: true
  5361. },
  5362. ]
  5363. ))
  5364. characterMakers.push(() => makeCharacter(
  5365. { name: "Verin" },
  5366. {
  5367. front: {
  5368. height: math.unit(8 + 3 / 12, "feet"),
  5369. weight: math.unit(424, "lbs"),
  5370. name: "Front",
  5371. image: {
  5372. source: "./media/characters/verin/front.svg",
  5373. extra: 1845 / 1550
  5374. }
  5375. },
  5376. frontArmored: {
  5377. height: math.unit(8 + 3 / 12, "feet"),
  5378. weight: math.unit(424, "lbs"),
  5379. name: "Front (Armored)",
  5380. image: {
  5381. source: "./media/characters/verin/front-armor.svg",
  5382. extra: 1845 / 1550,
  5383. bottom: 0.01
  5384. }
  5385. },
  5386. back: {
  5387. height: math.unit(8 + 3 / 12, "feet"),
  5388. weight: math.unit(424, "lbs"),
  5389. name: "Back",
  5390. image: {
  5391. source: "./media/characters/verin/back.svg",
  5392. bottom: 0.1,
  5393. extra: 1
  5394. }
  5395. },
  5396. foot: {
  5397. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5398. name: "Foot",
  5399. image: {
  5400. source: "./media/characters/verin/foot.svg"
  5401. }
  5402. },
  5403. },
  5404. [
  5405. {
  5406. name: "Normal",
  5407. height: math.unit(8 + 3 / 12, "feet")
  5408. },
  5409. {
  5410. name: "Minimacro",
  5411. height: math.unit(21, "feet"),
  5412. default: true
  5413. },
  5414. {
  5415. name: "Macro",
  5416. height: math.unit(626, "feet")
  5417. },
  5418. ]
  5419. ))
  5420. characterMakers.push(() => makeCharacter(
  5421. { name: "Sovrim Terraquian" },
  5422. {
  5423. front: {
  5424. height: math.unit(2.718, "meters"),
  5425. weight: math.unit(150, "lbs"),
  5426. name: "Front",
  5427. image: {
  5428. source: "./media/characters/sovrim-terraquian/front.svg"
  5429. }
  5430. },
  5431. back: {
  5432. height: math.unit(2.718, "meters"),
  5433. weight: math.unit(150, "lbs"),
  5434. name: "Back",
  5435. image: {
  5436. source: "./media/characters/sovrim-terraquian/back.svg"
  5437. }
  5438. }
  5439. },
  5440. [
  5441. {
  5442. name: "Micro",
  5443. height: math.unit(2, "inches")
  5444. },
  5445. {
  5446. name: "Small",
  5447. height: math.unit(1, "meter")
  5448. },
  5449. {
  5450. name: "Normal",
  5451. height: math.unit(Math.E, "meters"),
  5452. default: true
  5453. },
  5454. {
  5455. name: "Macro",
  5456. height: math.unit(20, "meters")
  5457. },
  5458. {
  5459. name: "Macro+",
  5460. height: math.unit(400, "meters")
  5461. },
  5462. ]
  5463. ))
  5464. characterMakers.push(() => makeCharacter(
  5465. { name: "Reece Silvermane" },
  5466. {
  5467. front: {
  5468. height: math.unit(7, "feet"),
  5469. weight: math.unit(489, "lbs"),
  5470. name: "Front",
  5471. image: {
  5472. source: "./media/characters/reece-silvermane/front.svg",
  5473. bottom: 0.02,
  5474. extra: 1
  5475. }
  5476. },
  5477. },
  5478. [
  5479. {
  5480. name: "Macro",
  5481. height: math.unit(1.5, "miles"),
  5482. default: true
  5483. },
  5484. ]
  5485. ))
  5486. characterMakers.push(() => makeCharacter(
  5487. { name: "Kane" },
  5488. {
  5489. front: {
  5490. height: math.unit(6, "feet"),
  5491. weight: math.unit(78, "kg"),
  5492. name: "Front",
  5493. image: {
  5494. source: "./media/characters/kane/front.svg",
  5495. extra: 978 / 899
  5496. }
  5497. },
  5498. },
  5499. [
  5500. {
  5501. name: "Normal",
  5502. height: math.unit(2.1, "m"),
  5503. },
  5504. {
  5505. name: "Macro",
  5506. height: math.unit(1, "km"),
  5507. default: true
  5508. },
  5509. ]
  5510. ))
  5511. characterMakers.push(() => makeCharacter(
  5512. { name: "Tegon" },
  5513. {
  5514. front: {
  5515. height: math.unit(6, "feet"),
  5516. weight: math.unit(200, "kg"),
  5517. name: "Front",
  5518. image: {
  5519. source: "./media/characters/tegon/front.svg",
  5520. bottom: 0.01,
  5521. extra: 1
  5522. }
  5523. },
  5524. },
  5525. [
  5526. {
  5527. name: "Micro",
  5528. height: math.unit(1, "inch")
  5529. },
  5530. {
  5531. name: "Normal",
  5532. height: math.unit(6 + 3 / 12, "feet"),
  5533. default: true
  5534. },
  5535. {
  5536. name: "Macro",
  5537. height: math.unit(300, "feet")
  5538. },
  5539. {
  5540. name: "Megamacro",
  5541. height: math.unit(69, "miles")
  5542. },
  5543. ]
  5544. ))
  5545. characterMakers.push(() => makeCharacter(
  5546. { name: "Arcturax" },
  5547. {
  5548. side: {
  5549. height: math.unit(6, "feet"),
  5550. weight: math.unit(2304, "lbs"),
  5551. name: "Side",
  5552. image: {
  5553. source: "./media/characters/arcturax/side.svg",
  5554. extra: 790 / 376,
  5555. bottom: 0.01
  5556. }
  5557. },
  5558. },
  5559. [
  5560. {
  5561. name: "Micro",
  5562. height: math.unit(2, "inch")
  5563. },
  5564. {
  5565. name: "Normal",
  5566. height: math.unit(6, "feet")
  5567. },
  5568. {
  5569. name: "Macro",
  5570. height: math.unit(39, "feet"),
  5571. default: true
  5572. },
  5573. {
  5574. name: "Megamacro",
  5575. height: math.unit(7, "miles")
  5576. },
  5577. ]
  5578. ))
  5579. characterMakers.push(() => makeCharacter(
  5580. { name: "Sentri" },
  5581. {
  5582. front: {
  5583. height: math.unit(6, "feet"),
  5584. weight: math.unit(50, "lbs"),
  5585. name: "Front",
  5586. image: {
  5587. source: "./media/characters/sentri/front.svg",
  5588. extra: 1750 / 1570,
  5589. bottom: 0.025
  5590. }
  5591. },
  5592. frontAlt: {
  5593. height: math.unit(6, "feet"),
  5594. weight: math.unit(50, "lbs"),
  5595. name: "Front (Alt)",
  5596. image: {
  5597. source: "./media/characters/sentri/front-alt.svg",
  5598. extra: 1750 / 1570,
  5599. bottom: 0.025
  5600. }
  5601. },
  5602. },
  5603. [
  5604. {
  5605. name: "Normal",
  5606. height: math.unit(15, "feet"),
  5607. default: true
  5608. },
  5609. {
  5610. name: "Macro",
  5611. height: math.unit(2500, "feet")
  5612. }
  5613. ]
  5614. ))
  5615. characterMakers.push(() => makeCharacter(
  5616. { name: "Corvin" },
  5617. {
  5618. front: {
  5619. height: math.unit(5 + 8 / 12, "feet"),
  5620. weight: math.unit(130, "lbs"),
  5621. name: "Front",
  5622. image: {
  5623. source: "./media/characters/corvin/front.svg",
  5624. extra: 1803 / 1629
  5625. }
  5626. },
  5627. frontShirt: {
  5628. height: math.unit(5 + 8 / 12, "feet"),
  5629. weight: math.unit(130, "lbs"),
  5630. name: "Front (Shirt)",
  5631. image: {
  5632. source: "./media/characters/corvin/front-shirt.svg",
  5633. extra: 1803 / 1629
  5634. }
  5635. },
  5636. frontPoncho: {
  5637. height: math.unit(5 + 8 / 12, "feet"),
  5638. weight: math.unit(130, "lbs"),
  5639. name: "Front (Poncho)",
  5640. image: {
  5641. source: "./media/characters/corvin/front-poncho.svg",
  5642. extra: 1803 / 1629
  5643. }
  5644. },
  5645. side: {
  5646. height: math.unit(5 + 8 / 12, "feet"),
  5647. weight: math.unit(130, "lbs"),
  5648. name: "Side",
  5649. image: {
  5650. source: "./media/characters/corvin/side.svg",
  5651. extra: 1012 / 945
  5652. }
  5653. },
  5654. back: {
  5655. height: math.unit(5 + 8 / 12, "feet"),
  5656. weight: math.unit(130, "lbs"),
  5657. name: "Back",
  5658. image: {
  5659. source: "./media/characters/corvin/back.svg",
  5660. extra: 1803 / 1629
  5661. }
  5662. },
  5663. },
  5664. [
  5665. {
  5666. name: "Micro",
  5667. height: math.unit(3, "inches")
  5668. },
  5669. {
  5670. name: "Normal",
  5671. height: math.unit(5 + 8 / 12, "feet")
  5672. },
  5673. {
  5674. name: "Macro",
  5675. height: math.unit(300, "feet"),
  5676. default: true
  5677. },
  5678. {
  5679. name: "Megamacro",
  5680. height: math.unit(500, "miles")
  5681. }
  5682. ]
  5683. ))
  5684. characterMakers.push(() => makeCharacter(
  5685. { name: "Q" },
  5686. {
  5687. front: {
  5688. height: math.unit(6, "feet"),
  5689. weight: math.unit(135, "lbs"),
  5690. name: "Front",
  5691. image: {
  5692. source: "./media/characters/q/front.svg",
  5693. extra: 854 / 752,
  5694. bottom: 0.005
  5695. }
  5696. },
  5697. back: {
  5698. height: math.unit(6, "feet"),
  5699. weight: math.unit(130, "lbs"),
  5700. name: "Back",
  5701. image: {
  5702. source: "./media/characters/q/back.svg",
  5703. extra: 854 / 752
  5704. }
  5705. },
  5706. },
  5707. [
  5708. {
  5709. name: "Macro",
  5710. height: math.unit(90, "feet"),
  5711. default: true
  5712. },
  5713. {
  5714. name: "Extra Macro",
  5715. height: math.unit(300, "feet"),
  5716. },
  5717. {
  5718. name: "BIG WALF",
  5719. height: math.unit(750, "feet"),
  5720. },
  5721. ]
  5722. ))
  5723. characterMakers.push(() => makeCharacter(
  5724. { name: "Carley" },
  5725. {
  5726. front: {
  5727. height: math.unit(6, "feet"),
  5728. weight: math.unit(150, "lbs"),
  5729. name: "Front",
  5730. image: {
  5731. source: "./media/characters/carley/front.svg",
  5732. extra: 3927 / 3540,
  5733. bottom: 0.03
  5734. }
  5735. }
  5736. },
  5737. [
  5738. {
  5739. name: "Normal",
  5740. height: math.unit(6 + 3 / 12, "feet")
  5741. },
  5742. {
  5743. name: "Macro",
  5744. height: math.unit(185, "feet"),
  5745. default: true
  5746. },
  5747. {
  5748. name: "Megamacro",
  5749. height: math.unit(8, "miles"),
  5750. },
  5751. ]
  5752. ))
  5753. characterMakers.push(() => makeCharacter(
  5754. { name: "Citrine" },
  5755. {
  5756. front: {
  5757. height: math.unit(3, "feet"),
  5758. weight: math.unit(28, "lbs"),
  5759. name: "Front",
  5760. image: {
  5761. source: "./media/characters/citrine/front.svg"
  5762. }
  5763. }
  5764. },
  5765. [
  5766. {
  5767. name: "Normal",
  5768. height: math.unit(3, "feet"),
  5769. default: true
  5770. }
  5771. ]
  5772. ))
  5773. characterMakers.push(() => makeCharacter(
  5774. { name: "Aura Starwind" },
  5775. {
  5776. front: {
  5777. height: math.unit(14, "feet"),
  5778. weight: math.unit(1450, "kg"),
  5779. name: "Front",
  5780. image: {
  5781. source: "./media/characters/aura-starwind/front.svg",
  5782. extra: 1455 / 1335
  5783. }
  5784. },
  5785. side: {
  5786. height: math.unit(14, "feet"),
  5787. weight: math.unit(1450, "kg"),
  5788. name: "Side",
  5789. image: {
  5790. source: "./media/characters/aura-starwind/side.svg",
  5791. extra: 1654 / 1497
  5792. }
  5793. },
  5794. taur: {
  5795. height: math.unit(18, "feet"),
  5796. weight: math.unit(5500, "kg"),
  5797. name: "Taur",
  5798. image: {
  5799. source: "./media/characters/aura-starwind/taur.svg",
  5800. extra: 1760 / 1650
  5801. }
  5802. },
  5803. feral: {
  5804. height: math.unit(46, "feet"),
  5805. weight: math.unit(25000, "kg"),
  5806. name: "Feral",
  5807. image: {
  5808. source: "./media/characters/aura-starwind/feral.svg"
  5809. }
  5810. },
  5811. },
  5812. [
  5813. {
  5814. name: "Normal",
  5815. height: math.unit(14, "feet"),
  5816. default: true
  5817. },
  5818. {
  5819. name: "Macro",
  5820. height: math.unit(50, "meters")
  5821. },
  5822. {
  5823. name: "Megamacro",
  5824. height: math.unit(5000, "meters")
  5825. },
  5826. {
  5827. name: "Gigamacro",
  5828. height: math.unit(100000, "kilometers")
  5829. },
  5830. ]
  5831. ))
  5832. characterMakers.push(() => makeCharacter(
  5833. { name: "Rivet" },
  5834. {
  5835. front: {
  5836. height: math.unit(2 + 7 / 12, "feet"),
  5837. weight: math.unit(32, "lbs"),
  5838. name: "Front",
  5839. image: {
  5840. source: "./media/characters/rivet/front.svg",
  5841. extra: 1716 / 1658,
  5842. bottom: 0.03
  5843. }
  5844. },
  5845. foot: {
  5846. height: math.unit(0.551, "feet"),
  5847. name: "Rivet's Foot",
  5848. image: {
  5849. source: "./media/characters/rivet/foot.svg"
  5850. },
  5851. rename: true
  5852. }
  5853. },
  5854. [
  5855. {
  5856. name: "Micro",
  5857. height: math.unit(1.5, "inches"),
  5858. },
  5859. {
  5860. name: "Normal",
  5861. height: math.unit(2 + 7 / 12, "feet"),
  5862. default: true
  5863. },
  5864. {
  5865. name: "Macro",
  5866. height: math.unit(85, "feet")
  5867. },
  5868. {
  5869. name: "Megamacro",
  5870. height: math.unit(2.2, "km")
  5871. }
  5872. ]
  5873. ))
  5874. characterMakers.push(() => makeCharacter(
  5875. { name: "Coffee" },
  5876. {
  5877. front: {
  5878. height: math.unit(5 + 9 / 12, "feet"),
  5879. weight: math.unit(150, "lbs"),
  5880. name: "Front",
  5881. image: {
  5882. source: "./media/characters/coffee/front.svg",
  5883. extra: 3666 / 3032,
  5884. bottom: 0.04
  5885. }
  5886. },
  5887. foot: {
  5888. height: math.unit(1.29, "feet"),
  5889. name: "Foot",
  5890. image: {
  5891. source: "./media/characters/coffee/foot.svg"
  5892. }
  5893. },
  5894. },
  5895. [
  5896. {
  5897. name: "Micro",
  5898. height: math.unit(2, "inches"),
  5899. },
  5900. {
  5901. name: "Normal",
  5902. height: math.unit(5 + 9 / 12, "feet"),
  5903. default: true
  5904. },
  5905. {
  5906. name: "Macro",
  5907. height: math.unit(800, "feet")
  5908. },
  5909. {
  5910. name: "Megamacro",
  5911. height: math.unit(25, "miles")
  5912. }
  5913. ]
  5914. ))
  5915. characterMakers.push(() => makeCharacter(
  5916. { name: "Chari-Gal" },
  5917. {
  5918. front: {
  5919. height: math.unit(6, "feet"),
  5920. weight: math.unit(200, "lbs"),
  5921. name: "Front",
  5922. image: {
  5923. source: "./media/characters/chari-gal/front.svg",
  5924. extra: 1568 / 1385,
  5925. bottom: 0.047
  5926. }
  5927. },
  5928. gigantamax: {
  5929. height: math.unit(6 * 16, "feet"),
  5930. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  5931. name: "Gigantamax",
  5932. image: {
  5933. source: "./media/characters/chari-gal/gigantamax.svg",
  5934. extra: 1124 / 888,
  5935. bottom: 0.03
  5936. }
  5937. },
  5938. },
  5939. [
  5940. {
  5941. name: "Normal",
  5942. height: math.unit(5 + 7 / 12, "feet")
  5943. },
  5944. {
  5945. name: "Macro",
  5946. height: math.unit(200, "feet"),
  5947. default: true
  5948. }
  5949. ]
  5950. ))
  5951. characterMakers.push(() => makeCharacter(
  5952. { name: "Nova" },
  5953. {
  5954. front: {
  5955. height: math.unit(6, "feet"),
  5956. weight: math.unit(150, "lbs"),
  5957. name: "Front",
  5958. image: {
  5959. source: "./media/characters/nova/front.svg",
  5960. extra: 5000 / 4722,
  5961. bottom: 0.02
  5962. }
  5963. }
  5964. },
  5965. [
  5966. {
  5967. name: "Micro-",
  5968. height: math.unit(0.8, "inches")
  5969. },
  5970. {
  5971. name: "Micro",
  5972. height: math.unit(2, "inches"),
  5973. default: true
  5974. },
  5975. ]
  5976. ))
  5977. characterMakers.push(() => makeCharacter(
  5978. { name: "Argent" },
  5979. {
  5980. front: {
  5981. height: math.unit(3 + 1 / 12, "feet"),
  5982. weight: math.unit(21.7, "lbs"),
  5983. name: "Front",
  5984. image: {
  5985. source: "./media/characters/argent/front.svg",
  5986. extra: 1565 / 1416,
  5987. bottom: 0.01
  5988. }
  5989. }
  5990. },
  5991. [
  5992. {
  5993. name: "Micro",
  5994. height: math.unit(2, "inches")
  5995. },
  5996. {
  5997. name: "Normal",
  5998. height: math.unit(3 + 1 / 12, "feet"),
  5999. default: true
  6000. },
  6001. {
  6002. name: "Macro",
  6003. height: math.unit(120, "feet")
  6004. },
  6005. ]
  6006. ))
  6007. characterMakers.push(() => makeCharacter(
  6008. { name: "Mira al-Cul" },
  6009. {
  6010. lamp: {
  6011. height: math.unit(7 * 1559 / 989, "feet"),
  6012. name: "Magic Lamp",
  6013. image: {
  6014. source: "./media/characters/mira-al-cul/lamp.svg",
  6015. extra: 1617 / 1559
  6016. }
  6017. },
  6018. front: {
  6019. height: math.unit(7, "feet"),
  6020. name: "Front",
  6021. image: {
  6022. source: "./media/characters/mira-al-cul/front.svg",
  6023. extra: 1044 / 990
  6024. }
  6025. },
  6026. },
  6027. [
  6028. {
  6029. name: "Heavily Restricted",
  6030. height: math.unit(7 * 1559 / 989, "feet")
  6031. },
  6032. {
  6033. name: "Freshly Freed",
  6034. height: math.unit(50 * 1559 / 989, "feet")
  6035. },
  6036. {
  6037. name: "World Encompassing",
  6038. height: math.unit(10000 * 1559 / 989, "miles")
  6039. },
  6040. {
  6041. name: "Galactic",
  6042. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6043. },
  6044. {
  6045. name: "Palmed Universe",
  6046. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6047. default: true
  6048. },
  6049. {
  6050. name: "Multiversal Matriarch",
  6051. height: math.unit(8.87e10, "yottameters")
  6052. },
  6053. {
  6054. name: "Void Mother",
  6055. height: math.unit(3.14e110, "yottaparsecs")
  6056. },
  6057. ]
  6058. ))
  6059. characterMakers.push(() => makeCharacter(
  6060. { name: "Kuro-shi Uchū" },
  6061. {
  6062. front: {
  6063. height: math.unit(17 + 1 / 12, "feet"),
  6064. weight: math.unit(476.2 * 5, "lbs"),
  6065. name: "Front",
  6066. image: {
  6067. source: "./media/characters/kuro-shi-uchū/front.svg",
  6068. extra: 2329 / 1835,
  6069. bottom: 0.02
  6070. }
  6071. },
  6072. },
  6073. [
  6074. {
  6075. name: "Micro",
  6076. height: math.unit(2, "inches")
  6077. },
  6078. {
  6079. name: "Normal",
  6080. height: math.unit(12, "meters")
  6081. },
  6082. {
  6083. name: "Planetary",
  6084. height: math.unit(0.00929, "AU"),
  6085. default: true
  6086. },
  6087. {
  6088. name: "Universal",
  6089. height: math.unit(20, "gigaparsecs")
  6090. },
  6091. ]
  6092. ))
  6093. characterMakers.push(() => makeCharacter(
  6094. { name: "Katherine" },
  6095. {
  6096. front: {
  6097. height: math.unit(5 + 2 / 12, "feet"),
  6098. weight: math.unit(120, "lbs"),
  6099. name: "Front",
  6100. image: {
  6101. source: "./media/characters/katherine/front.svg",
  6102. extra: 2075 / 1969
  6103. }
  6104. },
  6105. dress: {
  6106. height: math.unit(5 + 2 / 12, "feet"),
  6107. weight: math.unit(120, "lbs"),
  6108. name: "Dress",
  6109. image: {
  6110. source: "./media/characters/katherine/dress.svg",
  6111. extra: 2258 / 2064
  6112. }
  6113. },
  6114. },
  6115. [
  6116. {
  6117. name: "Micro",
  6118. height: math.unit(1, "inches"),
  6119. default: true
  6120. },
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(5 + 2 / 12, "feet")
  6124. },
  6125. {
  6126. name: "Macro",
  6127. height: math.unit(100, "meters")
  6128. },
  6129. {
  6130. name: "Megamacro",
  6131. height: math.unit(80, "miles")
  6132. },
  6133. ]
  6134. ))
  6135. characterMakers.push(() => makeCharacter(
  6136. { name: "Yevis" },
  6137. {
  6138. front: {
  6139. height: math.unit(7 + 8 / 12, "feet"),
  6140. weight: math.unit(250, "lbs"),
  6141. name: "Front",
  6142. image: {
  6143. source: "./media/characters/yevis/front.svg",
  6144. extra: 1938 / 1755
  6145. }
  6146. }
  6147. },
  6148. [
  6149. {
  6150. name: "Mortal",
  6151. height: math.unit(7 + 8 / 12, "feet")
  6152. },
  6153. {
  6154. name: "Battle",
  6155. height: math.unit(25 + 11 / 12, "feet")
  6156. },
  6157. {
  6158. name: "Wrath",
  6159. height: math.unit(1654 + 11 / 12, "feet")
  6160. },
  6161. {
  6162. name: "Planet Destroyer",
  6163. height: math.unit(12000, "miles")
  6164. },
  6165. {
  6166. name: "Galaxy Conqueror",
  6167. height: math.unit(1.45, "zettameters"),
  6168. default: true
  6169. },
  6170. {
  6171. name: "Universal War",
  6172. height: math.unit(184, "gigaparsecs")
  6173. },
  6174. {
  6175. name: "Eternity War",
  6176. height: math.unit(1.98e55, "yottaparsecs")
  6177. },
  6178. ]
  6179. ))
  6180. characterMakers.push(() => makeCharacter(
  6181. { name: "Xavier" },
  6182. {
  6183. front: {
  6184. height: math.unit(5 + 8 / 12, "feet"),
  6185. weight: math.unit(63, "kg"),
  6186. name: "Front",
  6187. image: {
  6188. source: "./media/characters/xavier/front.svg",
  6189. extra: 944 / 883
  6190. }
  6191. },
  6192. frontStretch: {
  6193. height: math.unit(5 + 8 / 12, "feet"),
  6194. weight: math.unit(63, "kg"),
  6195. name: "Stretching",
  6196. image: {
  6197. source: "./media/characters/xavier/front-stretch.svg",
  6198. extra: 962 / 820
  6199. }
  6200. },
  6201. },
  6202. [
  6203. {
  6204. name: "Normal",
  6205. height: math.unit(5 + 8 / 12, "feet")
  6206. },
  6207. {
  6208. name: "Macro",
  6209. height: math.unit(100, "meters"),
  6210. default: true
  6211. },
  6212. {
  6213. name: "McLargeHuge",
  6214. height: math.unit(10, "miles")
  6215. },
  6216. ]
  6217. ))
  6218. characterMakers.push(() => makeCharacter(
  6219. { name: "Joshii" },
  6220. {
  6221. front: {
  6222. height: math.unit(5 + 5 / 12, "feet"),
  6223. weight: math.unit(150, "lb"),
  6224. name: "Front",
  6225. image: {
  6226. source: "./media/characters/joshii/front.svg"
  6227. }
  6228. },
  6229. foot: {
  6230. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6231. name: "Foot",
  6232. image: {
  6233. source: "./media/characters/joshii/foot.svg"
  6234. }
  6235. },
  6236. },
  6237. [
  6238. {
  6239. name: "Micro",
  6240. height: math.unit(2, "inches")
  6241. },
  6242. {
  6243. name: "Normal",
  6244. height: math.unit(5 + 5 / 12, "feet"),
  6245. default: true
  6246. },
  6247. {
  6248. name: "Macro",
  6249. height: math.unit(785, "feet")
  6250. },
  6251. {
  6252. name: "Megamacro",
  6253. height: math.unit(24.5, "miles")
  6254. },
  6255. ]
  6256. ))
  6257. characterMakers.push(() => makeCharacter(
  6258. { name: "Goddess Elizabeth" },
  6259. {
  6260. front: {
  6261. height: math.unit(6, "feet"),
  6262. weight: math.unit(150, "lb"),
  6263. name: "Front",
  6264. image: {
  6265. source: "./media/characters/goddess-elizabeth/front.svg",
  6266. extra: 1800 / 1525,
  6267. bottom: 0.005
  6268. }
  6269. },
  6270. foot: {
  6271. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6272. name: "Foot",
  6273. image: {
  6274. source: "./media/characters/goddess-elizabeth/foot.svg"
  6275. }
  6276. },
  6277. mouth: {
  6278. height: math.unit(6, "feet"),
  6279. name: "Mouth",
  6280. image: {
  6281. source: "./media/characters/goddess-elizabeth/mouth.svg"
  6282. }
  6283. },
  6284. },
  6285. [
  6286. {
  6287. name: "Micro",
  6288. height: math.unit(12, "feet")
  6289. },
  6290. {
  6291. name: "Normal",
  6292. height: math.unit(80, "miles"),
  6293. default: true
  6294. },
  6295. {
  6296. name: "Macro",
  6297. height: math.unit(15000, "parsecs")
  6298. },
  6299. ]
  6300. ))
  6301. characterMakers.push(() => makeCharacter(
  6302. { name: "Kara" },
  6303. {
  6304. front: {
  6305. height: math.unit(5 + 9 / 12, "feet"),
  6306. weight: math.unit(144, "lb"),
  6307. name: "Front",
  6308. image: {
  6309. source: "./media/characters/kara/front.svg"
  6310. }
  6311. },
  6312. feet: {
  6313. height: math.unit(6 / 6.765, "feet"),
  6314. name: "Kara's Feet",
  6315. rename: true,
  6316. image: {
  6317. source: "./media/characters/kara/feet.svg"
  6318. }
  6319. },
  6320. },
  6321. [
  6322. {
  6323. name: "Normal",
  6324. height: math.unit(5 + 9 / 12, "feet")
  6325. },
  6326. {
  6327. name: "Macro",
  6328. height: math.unit(174, "feet"),
  6329. default: true
  6330. },
  6331. ]
  6332. ))
  6333. characterMakers.push(() => makeCharacter(
  6334. { name: "Tyrone" },
  6335. {
  6336. front: {
  6337. height: math.unit(18, "feet"),
  6338. weight: math.unit(4050, "lb"),
  6339. name: "Front",
  6340. image: {
  6341. source: "./media/characters/tyrone/front.svg",
  6342. extra: 2520 / 2402,
  6343. bottom: 0.025
  6344. }
  6345. },
  6346. },
  6347. [
  6348. {
  6349. name: "Normal",
  6350. height: math.unit(18, "feet"),
  6351. default: true
  6352. },
  6353. {
  6354. name: "Macro",
  6355. height: math.unit(300, "feet")
  6356. },
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Danny" },
  6361. {
  6362. front: {
  6363. height: math.unit(7 + 8 / 12, "feet"),
  6364. weight: math.unit(120, "lb"),
  6365. name: "Front",
  6366. image: {
  6367. source: "./media/characters/danny/front.svg",
  6368. extra: 1490 / 1350
  6369. }
  6370. },
  6371. back: {
  6372. height: math.unit(7 + 8 / 12, "feet"),
  6373. weight: math.unit(120, "lb"),
  6374. name: "Back",
  6375. image: {
  6376. source: "./media/characters/danny/back.svg",
  6377. extra: 1490 / 1350
  6378. }
  6379. },
  6380. },
  6381. [
  6382. {
  6383. name: "Normal",
  6384. height: math.unit(7 + 8 / 12, "feet"),
  6385. default: true
  6386. },
  6387. ]
  6388. ))
  6389. characterMakers.push(() => makeCharacter(
  6390. { name: "Mallow" },
  6391. {
  6392. front: {
  6393. height: math.unit(3.5, "inches"),
  6394. weight: math.unit(19, "grams"),
  6395. name: "Front",
  6396. image: {
  6397. source: "./media/characters/mallow/front.svg",
  6398. extra: 471 / 431
  6399. }
  6400. },
  6401. back: {
  6402. height: math.unit(3.5, "inches"),
  6403. weight: math.unit(19, "grams"),
  6404. name: "Back",
  6405. image: {
  6406. source: "./media/characters/mallow/back.svg",
  6407. extra: 471 / 431
  6408. }
  6409. },
  6410. },
  6411. [
  6412. {
  6413. name: "Normal",
  6414. height: math.unit(3.5, "inches"),
  6415. default: true
  6416. },
  6417. ]
  6418. ))
  6419. characterMakers.push(() => makeCharacter(
  6420. { name: "Starry Aqua" },
  6421. {
  6422. front: {
  6423. height: math.unit(9, "feet"),
  6424. weight: math.unit(230, "kg"),
  6425. name: "Front",
  6426. image: {
  6427. source: "./media/characters/starry-aqua/front.svg"
  6428. }
  6429. },
  6430. back: {
  6431. height: math.unit(9, "feet"),
  6432. weight: math.unit(230, "kg"),
  6433. name: "Back",
  6434. image: {
  6435. source: "./media/characters/starry-aqua/back.svg"
  6436. }
  6437. },
  6438. hand: {
  6439. height: math.unit(9 * 0.1168, "feet"),
  6440. name: "Hand",
  6441. image: {
  6442. source: "./media/characters/starry-aqua/hand.svg"
  6443. }
  6444. },
  6445. foot: {
  6446. height: math.unit(9 * 0.18, "feet"),
  6447. name: "Foot",
  6448. image: {
  6449. source: "./media/characters/starry-aqua/foot.svg"
  6450. }
  6451. }
  6452. },
  6453. [
  6454. {
  6455. name: "Micro",
  6456. height: math.unit(3, "inches")
  6457. },
  6458. {
  6459. name: "Normal",
  6460. height: math.unit(9, "feet")
  6461. },
  6462. {
  6463. name: "Macro",
  6464. height: math.unit(300, "feet"),
  6465. default: true
  6466. },
  6467. {
  6468. name: "Megamacro",
  6469. height: math.unit(3200, "feet")
  6470. }
  6471. ]
  6472. ))
  6473. characterMakers.push(() => makeCharacter(
  6474. { name: "Luka" },
  6475. {
  6476. front: {
  6477. height: math.unit(6, "feet"),
  6478. weight: math.unit(230, "lb"),
  6479. name: "Front",
  6480. image: {
  6481. source: "./media/characters/luka/front.svg",
  6482. extra: 1,
  6483. bottom: 0.025
  6484. }
  6485. },
  6486. },
  6487. [
  6488. {
  6489. name: "Normal",
  6490. height: math.unit(12 + 8 / 12, "feet"),
  6491. default: true
  6492. },
  6493. {
  6494. name: "Minimacro",
  6495. height: math.unit(20, "feet")
  6496. },
  6497. {
  6498. name: "Macro",
  6499. height: math.unit(250, "feet")
  6500. },
  6501. {
  6502. name: "Megamacro",
  6503. height: math.unit(5, "miles")
  6504. },
  6505. {
  6506. name: "Gigamacro",
  6507. height: math.unit(8000, "miles")
  6508. },
  6509. ]
  6510. ))
  6511. characterMakers.push(() => makeCharacter(
  6512. { name: "Natalie Nightring" },
  6513. {
  6514. front: {
  6515. height: math.unit(6, "feet"),
  6516. weight: math.unit(150, "lb"),
  6517. name: "Front",
  6518. image: {
  6519. source: "./media/characters/natalie-nightring/front.svg",
  6520. extra: 1,
  6521. bottom: 0.06
  6522. }
  6523. },
  6524. },
  6525. [
  6526. {
  6527. name: "Uh Oh",
  6528. height: math.unit(0.1, "mm")
  6529. },
  6530. {
  6531. name: "Small",
  6532. height: math.unit(3, "inches")
  6533. },
  6534. {
  6535. name: "Human Scale",
  6536. height: math.unit(6, "feet")
  6537. },
  6538. {
  6539. name: "Librarian",
  6540. height: math.unit(50, "feet"),
  6541. default: true
  6542. },
  6543. {
  6544. name: "Immense",
  6545. height: math.unit(200, "miles")
  6546. },
  6547. ]
  6548. ))
  6549. characterMakers.push(() => makeCharacter(
  6550. { name: "Danni Rosie" },
  6551. {
  6552. front: {
  6553. height: math.unit(6, "feet"),
  6554. weight: math.unit(180, "lbs"),
  6555. name: "Front",
  6556. image: {
  6557. source: "./media/characters/danni-rosie/front.svg",
  6558. extra: 1260 / 1128,
  6559. bottom: 0.022
  6560. }
  6561. },
  6562. },
  6563. [
  6564. {
  6565. name: "Micro",
  6566. height: math.unit(2, "inches"),
  6567. default: true
  6568. },
  6569. ]
  6570. ))
  6571. characterMakers.push(() => makeCharacter(
  6572. { name: "Samantha Kruse" },
  6573. {
  6574. front: {
  6575. height: math.unit(5 + 9 / 12, "feet"),
  6576. weight: math.unit(220, "lb"),
  6577. name: "Front",
  6578. image: {
  6579. source: "./media/characters/samantha-kruse/front.svg",
  6580. extra: (985 / 935),
  6581. bottom: 0.03
  6582. }
  6583. },
  6584. frontUndressed: {
  6585. height: math.unit(5 + 9 / 12, "feet"),
  6586. weight: math.unit(220, "lb"),
  6587. name: "Front (Undressed)",
  6588. image: {
  6589. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6590. extra: (973 / 923),
  6591. bottom: 0.025
  6592. }
  6593. },
  6594. fat: {
  6595. height: math.unit(5 + 9 / 12, "feet"),
  6596. weight: math.unit(900, "lb"),
  6597. name: "Front (Fat)",
  6598. image: {
  6599. source: "./media/characters/samantha-kruse/fat.svg",
  6600. extra: 2688 / 2561
  6601. }
  6602. },
  6603. },
  6604. [
  6605. {
  6606. name: "Normal",
  6607. height: math.unit(5 + 9 / 12, "feet"),
  6608. default: true
  6609. }
  6610. ]
  6611. ))
  6612. characterMakers.push(() => makeCharacter(
  6613. { name: "Amelia Rosie" },
  6614. {
  6615. back: {
  6616. height: math.unit(5 + 4 / 12, "feet"),
  6617. weight: math.unit(4963, "lb"),
  6618. name: "Back",
  6619. image: {
  6620. source: "./media/characters/amelia-rosie/back.svg",
  6621. extra: 1113 / 963,
  6622. bottom: 0.01
  6623. }
  6624. },
  6625. },
  6626. [
  6627. {
  6628. name: "Level 0",
  6629. height: math.unit(5 + 4 / 12, "feet")
  6630. },
  6631. {
  6632. name: "Level 1",
  6633. height: math.unit(164597, "feet"),
  6634. default: true
  6635. },
  6636. {
  6637. name: "Level 2",
  6638. height: math.unit(956243, "miles")
  6639. },
  6640. {
  6641. name: "Level 3",
  6642. height: math.unit(29421709423, "miles")
  6643. },
  6644. {
  6645. name: "Level 4",
  6646. height: math.unit(154, "lightyears")
  6647. },
  6648. {
  6649. name: "Level 5",
  6650. height: math.unit(4738272, "lightyears")
  6651. },
  6652. {
  6653. name: "Level 6",
  6654. height: math.unit(145787152896, "lightyears")
  6655. },
  6656. ]
  6657. ))
  6658. characterMakers.push(() => makeCharacter(
  6659. { name: "Rook Kitara" },
  6660. {
  6661. front: {
  6662. height: math.unit(5 + 11 / 12, "feet"),
  6663. weight: math.unit(65, "kg"),
  6664. name: "Front",
  6665. image: {
  6666. source: "./media/characters/rook-kitara/front.svg",
  6667. extra: 1347 / 1274,
  6668. bottom: 0.005
  6669. }
  6670. },
  6671. },
  6672. [
  6673. {
  6674. name: "Totally Unfair",
  6675. height: math.unit(1.8, "mm")
  6676. },
  6677. {
  6678. name: "Lap Rookie",
  6679. height: math.unit(1.4, "feet")
  6680. },
  6681. {
  6682. name: "Normal",
  6683. height: math.unit(5 + 11 / 12, "feet"),
  6684. default: true
  6685. },
  6686. {
  6687. name: "How Did This Happen",
  6688. height: math.unit(80, "miles")
  6689. }
  6690. ]
  6691. ))
  6692. characterMakers.push(() => makeCharacter(
  6693. { name: "Pisces" },
  6694. {
  6695. front: {
  6696. height: math.unit(7, "feet"),
  6697. weight: math.unit(300, "lb"),
  6698. name: "Front",
  6699. image: {
  6700. source: "./media/characters/pisces/front.svg",
  6701. extra: 2255 / 2115,
  6702. bottom: 0.03
  6703. }
  6704. },
  6705. back: {
  6706. height: math.unit(7, "feet"),
  6707. weight: math.unit(300, "lb"),
  6708. name: "Back",
  6709. image: {
  6710. source: "./media/characters/pisces/back.svg",
  6711. extra: 2146 / 2055,
  6712. bottom: 0.04
  6713. }
  6714. },
  6715. },
  6716. [
  6717. {
  6718. name: "Normal",
  6719. height: math.unit(7, "feet"),
  6720. default: true
  6721. },
  6722. {
  6723. name: "Swimming Pool",
  6724. height: math.unit(12.2, "meters")
  6725. },
  6726. {
  6727. name: "Olympic Swimming Pool",
  6728. height: math.unit(56.3, "meters")
  6729. },
  6730. {
  6731. name: "Lake Superior",
  6732. height: math.unit(93900, "meters")
  6733. },
  6734. {
  6735. name: "Mediterranean Sea",
  6736. height: math.unit(644457, "meters")
  6737. },
  6738. {
  6739. name: "World's Oceans",
  6740. height: math.unit(4567491, "meters")
  6741. },
  6742. ]
  6743. ))
  6744. characterMakers.push(() => makeCharacter(
  6745. { name: "Zelas" },
  6746. {
  6747. front: {
  6748. height: math.unit(2.3, "meters"),
  6749. weight: math.unit(120, "kg"),
  6750. name: "Front",
  6751. image: {
  6752. source: "./media/characters/zelas/front.svg"
  6753. }
  6754. },
  6755. side: {
  6756. height: math.unit(2.3, "meters"),
  6757. weight: math.unit(120, "kg"),
  6758. name: "Side",
  6759. image: {
  6760. source: "./media/characters/zelas/side.svg"
  6761. }
  6762. },
  6763. back: {
  6764. height: math.unit(2.3, "meters"),
  6765. weight: math.unit(120, "kg"),
  6766. name: "Back",
  6767. image: {
  6768. source: "./media/characters/zelas/back.svg"
  6769. }
  6770. },
  6771. foot: {
  6772. height: math.unit(1.116, "feet"),
  6773. name: "Foot",
  6774. image: {
  6775. source: "./media/characters/zelas/foot.svg"
  6776. }
  6777. },
  6778. },
  6779. [
  6780. {
  6781. name: "Normal",
  6782. height: math.unit(2.3, "meters")
  6783. },
  6784. {
  6785. name: "Macro",
  6786. height: math.unit(30, "meters"),
  6787. default: true
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Talbot" },
  6793. {
  6794. front: {
  6795. height: math.unit(1, "inch"),
  6796. weight: math.unit(0.21, "grams"),
  6797. name: "Front",
  6798. image: {
  6799. source: "./media/characters/talbot/front.svg",
  6800. extra: 594 / 544
  6801. }
  6802. },
  6803. },
  6804. [
  6805. {
  6806. name: "Micro",
  6807. height: math.unit(1, "inch"),
  6808. default: true
  6809. },
  6810. ]
  6811. ))
  6812. characterMakers.push(() => makeCharacter(
  6813. { name: "Fliss" },
  6814. {
  6815. front: {
  6816. height: math.unit(3 + 3 / 12, "feet"),
  6817. weight: math.unit(51.8, "lb"),
  6818. name: "Front",
  6819. image: {
  6820. source: "./media/characters/fliss/front.svg",
  6821. extra: 840 / 640
  6822. }
  6823. },
  6824. },
  6825. [
  6826. {
  6827. name: "Teeny Tiny",
  6828. height: math.unit(1, "mm")
  6829. },
  6830. {
  6831. name: "Small",
  6832. height: math.unit(1, "inch"),
  6833. default: true
  6834. },
  6835. {
  6836. name: "Standard Sylveon",
  6837. height: math.unit(3 + 3 / 12, "feet")
  6838. },
  6839. {
  6840. name: "Large Nuisance",
  6841. height: math.unit(33, "feet")
  6842. },
  6843. {
  6844. name: "City Filler",
  6845. height: math.unit(3000, "feet")
  6846. },
  6847. {
  6848. name: "New Horizon",
  6849. height: math.unit(6000, "miles")
  6850. },
  6851. ]
  6852. ))
  6853. characterMakers.push(() => makeCharacter(
  6854. { name: "Fleta" },
  6855. {
  6856. front: {
  6857. height: math.unit(5, "cm"),
  6858. weight: math.unit(1.94, "g"),
  6859. name: "Front",
  6860. image: {
  6861. source: "./media/characters/fleta/front.svg",
  6862. extra: 835 / 803
  6863. }
  6864. },
  6865. back: {
  6866. height: math.unit(5, "cm"),
  6867. weight: math.unit(1.94, "g"),
  6868. name: "Back",
  6869. image: {
  6870. source: "./media/characters/fleta/back.svg",
  6871. extra: 835 / 803
  6872. }
  6873. },
  6874. },
  6875. [
  6876. {
  6877. name: "Micro",
  6878. height: math.unit(5, "cm"),
  6879. default: true
  6880. },
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Dominic" },
  6885. {
  6886. front: {
  6887. height: math.unit(6, "feet"),
  6888. weight: math.unit(225, "lb"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/dominic/front.svg",
  6892. extra: 1770 / 1620,
  6893. bottom: 0.025
  6894. }
  6895. },
  6896. back: {
  6897. height: math.unit(6, "feet"),
  6898. weight: math.unit(225, "lb"),
  6899. name: "Back",
  6900. image: {
  6901. source: "./media/characters/dominic/back.svg",
  6902. extra: 1745 / 1620,
  6903. bottom: 0.065
  6904. }
  6905. },
  6906. },
  6907. [
  6908. {
  6909. name: "Nano",
  6910. height: math.unit(0.1, "mm")
  6911. },
  6912. {
  6913. name: "Micro-",
  6914. height: math.unit(1, "mm")
  6915. },
  6916. {
  6917. name: "Micro",
  6918. height: math.unit(4, "inches")
  6919. },
  6920. {
  6921. name: "Normal",
  6922. height: math.unit(6 + 4 / 12, "feet"),
  6923. default: true
  6924. },
  6925. {
  6926. name: "Macro",
  6927. height: math.unit(115, "feet")
  6928. },
  6929. {
  6930. name: "Macro+",
  6931. height: math.unit(955, "feet")
  6932. },
  6933. {
  6934. name: "Megamacro",
  6935. height: math.unit(8990, "feet")
  6936. },
  6937. {
  6938. name: "Gigmacro",
  6939. height: math.unit(9310, "miles")
  6940. },
  6941. {
  6942. name: "Teramacro",
  6943. height: math.unit(1567005010, "miles")
  6944. },
  6945. {
  6946. name: "Examacro",
  6947. height: math.unit(1425, "parsecs")
  6948. },
  6949. ]
  6950. ))
  6951. characterMakers.push(() => makeCharacter(
  6952. { name: "Major Colonel" },
  6953. {
  6954. front: {
  6955. height: math.unit(400, "feet"),
  6956. weight: math.unit(44444444, "lb"),
  6957. name: "Front",
  6958. image: {
  6959. source: "./media/characters/major-colonel/front.svg"
  6960. }
  6961. },
  6962. back: {
  6963. height: math.unit(400, "feet"),
  6964. weight: math.unit(44444444, "lb"),
  6965. name: "Back",
  6966. image: {
  6967. source: "./media/characters/major-colonel/back.svg"
  6968. }
  6969. },
  6970. },
  6971. [
  6972. {
  6973. name: "Macro",
  6974. height: math.unit(400, "feet"),
  6975. default: true
  6976. },
  6977. ]
  6978. ))
  6979. characterMakers.push(() => makeCharacter(
  6980. { name: "Axel Lycan" },
  6981. {
  6982. front: {
  6983. height: math.unit(6, "feet"),
  6984. weight: math.unit(120, "lb"),
  6985. name: "Front",
  6986. image: {
  6987. source: "./media/characters/axel-lycan/front.svg",
  6988. extra: 1,
  6989. bottom: 0.08
  6990. }
  6991. },
  6992. },
  6993. [
  6994. {
  6995. name: "Macro",
  6996. height: math.unit(1, "km"),
  6997. default: true
  6998. },
  6999. ]
  7000. ))
  7001. characterMakers.push(() => makeCharacter(
  7002. { name: "Vanrel (Hyena)" },
  7003. {
  7004. front: {
  7005. height: math.unit(5 + 9 / 12, "feet"),
  7006. weight: math.unit(175, "lb"),
  7007. name: "Front",
  7008. image: {
  7009. source: "./media/characters/vanrel-hyena/front.svg",
  7010. extra: 1086 / 1010,
  7011. bottom: 0.04
  7012. }
  7013. },
  7014. },
  7015. [
  7016. {
  7017. name: "Normal",
  7018. height: math.unit(5 + 9 / 12, "feet"),
  7019. default: true
  7020. },
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Abbott Absol" },
  7025. {
  7026. front: {
  7027. height: math.unit(6, "feet"),
  7028. weight: math.unit(103, "lb"),
  7029. name: "Front",
  7030. image: {
  7031. source: "./media/characters/abbott-absol/front.svg",
  7032. extra: 2010 / 1842
  7033. }
  7034. },
  7035. },
  7036. [
  7037. {
  7038. name: "Megamicro",
  7039. height: math.unit(0.1, "mm")
  7040. },
  7041. {
  7042. name: "Micro",
  7043. height: math.unit(1, "inch")
  7044. },
  7045. {
  7046. name: "Normal",
  7047. height: math.unit(6, "feet"),
  7048. default: true
  7049. },
  7050. ]
  7051. ))
  7052. characterMakers.push(() => makeCharacter(
  7053. { name: "Hector" },
  7054. {
  7055. front: {
  7056. height: math.unit(6, "feet"),
  7057. weight: math.unit(264, "lb"),
  7058. name: "Front",
  7059. image: {
  7060. source: "./media/characters/hector/front.svg",
  7061. extra: 2280 / 2130,
  7062. bottom: 0.07
  7063. }
  7064. },
  7065. },
  7066. [
  7067. {
  7068. name: "Normal",
  7069. height: math.unit(12.25, "foot"),
  7070. default: true
  7071. },
  7072. {
  7073. name: "Macro",
  7074. height: math.unit(160, "feet")
  7075. },
  7076. ]
  7077. ))
  7078. characterMakers.push(() => makeCharacter(
  7079. { name: "Sal" },
  7080. {
  7081. front: {
  7082. height: math.unit(6, "feet"),
  7083. weight: math.unit(150, "lb"),
  7084. name: "Front",
  7085. image: {
  7086. source: "./media/characters/sal/front.svg",
  7087. extra: 1846 / 1699,
  7088. bottom: 0.04
  7089. }
  7090. },
  7091. },
  7092. [
  7093. {
  7094. name: "Megamacro",
  7095. height: math.unit(10, "miles"),
  7096. default: true
  7097. },
  7098. ]
  7099. ))
  7100. characterMakers.push(() => makeCharacter(
  7101. { name: "Ranger" },
  7102. {
  7103. front: {
  7104. height: math.unit(3, "meters"),
  7105. weight: math.unit(450, "kg"),
  7106. name: "front",
  7107. image: {
  7108. source: "./media/characters/ranger/front.svg",
  7109. extra: 2401 / 2243,
  7110. bottom: 0.05
  7111. }
  7112. },
  7113. },
  7114. [
  7115. {
  7116. name: "Normal",
  7117. height: math.unit(3, "meters"),
  7118. default: true
  7119. },
  7120. ]
  7121. ))
  7122. characterMakers.push(() => makeCharacter(
  7123. { name: "Theresa" },
  7124. {
  7125. front: {
  7126. height: math.unit(14, "feet"),
  7127. weight: math.unit(800, "kg"),
  7128. name: "Front",
  7129. image: {
  7130. source: "./media/characters/theresa/front.svg",
  7131. extra: 3575 / 3346,
  7132. bottom: 0.03
  7133. }
  7134. },
  7135. },
  7136. [
  7137. {
  7138. name: "Normal",
  7139. height: math.unit(14, "feet"),
  7140. default: true
  7141. },
  7142. ]
  7143. ))
  7144. characterMakers.push(() => makeCharacter(
  7145. { name: "Ine" },
  7146. {
  7147. front: {
  7148. height: math.unit(6, "feet"),
  7149. weight: math.unit(3, "kg"),
  7150. name: "Front",
  7151. image: {
  7152. source: "./media/characters/ine/front.svg",
  7153. extra: 678 / 539,
  7154. bottom: 0.023
  7155. }
  7156. },
  7157. },
  7158. [
  7159. {
  7160. name: "Normal",
  7161. height: math.unit(2.265, "feet"),
  7162. default: true
  7163. },
  7164. ]
  7165. ))
  7166. characterMakers.push(() => makeCharacter(
  7167. { name: "Vial" },
  7168. {
  7169. front: {
  7170. height: math.unit(5, "feet"),
  7171. weight: math.unit(30, "kg"),
  7172. name: "Front",
  7173. image: {
  7174. source: "./media/characters/vial/front.svg",
  7175. extra: 1365 / 1277,
  7176. bottom: 0.04
  7177. }
  7178. },
  7179. },
  7180. [
  7181. {
  7182. name: "Normal",
  7183. height: math.unit(5, "feet"),
  7184. default: true
  7185. },
  7186. ]
  7187. ))
  7188. characterMakers.push(() => makeCharacter(
  7189. { name: "Rovoska" },
  7190. {
  7191. side: {
  7192. height: math.unit(3.4, "meters"),
  7193. weight: math.unit(1000, "lb"),
  7194. name: "Side",
  7195. image: {
  7196. source: "./media/characters/rovoska/side.svg",
  7197. extra: 4403 / 1515
  7198. }
  7199. },
  7200. },
  7201. [
  7202. {
  7203. name: "Normal",
  7204. height: math.unit(3.4, "meters"),
  7205. default: true
  7206. },
  7207. ]
  7208. ))
  7209. characterMakers.push(() => makeCharacter(
  7210. { name: "Gunner Rotthbauer" },
  7211. {
  7212. front: {
  7213. height: math.unit(8, "feet"),
  7214. weight: math.unit(315, "lb"),
  7215. name: "Front",
  7216. image: {
  7217. source: "./media/characters/gunner-rotthbauer/front.svg"
  7218. }
  7219. },
  7220. back: {
  7221. height: math.unit(8, "feet"),
  7222. weight: math.unit(315, "lb"),
  7223. name: "Back",
  7224. image: {
  7225. source: "./media/characters/gunner-rotthbauer/back.svg"
  7226. }
  7227. },
  7228. },
  7229. [
  7230. {
  7231. name: "Micro",
  7232. height: math.unit(3.5, "inches")
  7233. },
  7234. {
  7235. name: "Normal",
  7236. height: math.unit(8, "feet"),
  7237. default: true
  7238. },
  7239. {
  7240. name: "Macro",
  7241. height: math.unit(250, "feet")
  7242. },
  7243. {
  7244. name: "Megamacro",
  7245. height: math.unit(1, "AU")
  7246. },
  7247. ]
  7248. ))
  7249. characterMakers.push(() => makeCharacter(
  7250. { name: "Allatia" },
  7251. {
  7252. front: {
  7253. height: math.unit(5 + 5 / 12, "feet"),
  7254. weight: math.unit(140, "lb"),
  7255. name: "Front",
  7256. image: {
  7257. source: "./media/characters/allatia/front.svg",
  7258. extra: 1227 / 1180,
  7259. bottom: 0.027
  7260. }
  7261. },
  7262. },
  7263. [
  7264. {
  7265. name: "Normal",
  7266. height: math.unit(5 + 5 / 12, "feet")
  7267. },
  7268. {
  7269. name: "Macro",
  7270. height: math.unit(250, "feet"),
  7271. default: true
  7272. },
  7273. {
  7274. name: "Megamacro",
  7275. height: math.unit(8, "miles")
  7276. }
  7277. ]
  7278. ))
  7279. characterMakers.push(() => makeCharacter(
  7280. { name: "Tene" },
  7281. {
  7282. front: {
  7283. height: math.unit(6, "feet"),
  7284. weight: math.unit(120, "lb"),
  7285. name: "Front",
  7286. image: {
  7287. source: "./media/characters/tene/front.svg",
  7288. extra: 1728 / 1578,
  7289. bottom: 0.022
  7290. }
  7291. },
  7292. stomping: {
  7293. height: math.unit(2.025, "meters"),
  7294. weight: math.unit(120, "lb"),
  7295. name: "Stomping",
  7296. image: {
  7297. source: "./media/characters/tene/stomping.svg",
  7298. extra: 938 / 873,
  7299. bottom: 0.01
  7300. }
  7301. },
  7302. sitting: {
  7303. height: math.unit(1, "meter"),
  7304. weight: math.unit(120, "lb"),
  7305. name: "Sitting",
  7306. image: {
  7307. source: "./media/characters/tene/sitting.svg",
  7308. extra: 437 / 415,
  7309. bottom: 0.1
  7310. }
  7311. },
  7312. feral: {
  7313. height: math.unit(3.9, "feet"),
  7314. weight: math.unit(250, "lb"),
  7315. name: "Feral",
  7316. image: {
  7317. source: "./media/characters/tene/feral.svg",
  7318. extra: 717 / 458,
  7319. bottom: 0.179
  7320. }
  7321. },
  7322. },
  7323. [
  7324. {
  7325. name: "Normal",
  7326. height: math.unit(6, "feet")
  7327. },
  7328. {
  7329. name: "Macro",
  7330. height: math.unit(300, "feet"),
  7331. default: true
  7332. },
  7333. {
  7334. name: "Megamacro",
  7335. height: math.unit(5, "miles")
  7336. },
  7337. ]
  7338. ))
  7339. characterMakers.push(() => makeCharacter(
  7340. { name: "Evander" },
  7341. {
  7342. side: {
  7343. height: math.unit(6, "feet"),
  7344. name: "Side",
  7345. image: {
  7346. source: "./media/characters/evander/side.svg",
  7347. extra: 877 / 477
  7348. }
  7349. },
  7350. },
  7351. [
  7352. {
  7353. name: "Normal",
  7354. height: math.unit(0.83, "meters"),
  7355. default: true
  7356. },
  7357. ]
  7358. ))
  7359. characterMakers.push(() => makeCharacter(
  7360. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7361. {
  7362. front: {
  7363. height: math.unit(12, "feet"),
  7364. weight: math.unit(1000, "lb"),
  7365. name: "Front",
  7366. image: {
  7367. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7368. extra: 1762 / 1611
  7369. }
  7370. },
  7371. back: {
  7372. height: math.unit(12, "feet"),
  7373. weight: math.unit(1000, "lb"),
  7374. name: "Back",
  7375. image: {
  7376. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7377. extra: 1762 / 1611
  7378. }
  7379. },
  7380. },
  7381. [
  7382. {
  7383. name: "Normal",
  7384. height: math.unit(12, "feet"),
  7385. default: true
  7386. },
  7387. {
  7388. name: "Kaiju",
  7389. height: math.unit(150, "feet")
  7390. },
  7391. ]
  7392. ))
  7393. characterMakers.push(() => makeCharacter(
  7394. { name: "Zero Alurus" },
  7395. {
  7396. front: {
  7397. height: math.unit(6, "feet"),
  7398. weight: math.unit(150, "lb"),
  7399. name: "Front",
  7400. image: {
  7401. source: "./media/characters/zero-alurus/front.svg"
  7402. }
  7403. },
  7404. back: {
  7405. height: math.unit(6, "feet"),
  7406. weight: math.unit(150, "lb"),
  7407. name: "Back",
  7408. image: {
  7409. source: "./media/characters/zero-alurus/back.svg"
  7410. }
  7411. },
  7412. },
  7413. [
  7414. {
  7415. name: "Normal",
  7416. height: math.unit(5 + 10 / 12, "feet")
  7417. },
  7418. {
  7419. name: "Macro",
  7420. height: math.unit(60, "feet"),
  7421. default: true
  7422. },
  7423. {
  7424. name: "Macro+",
  7425. height: math.unit(450, "feet")
  7426. },
  7427. ]
  7428. ))
  7429. characterMakers.push(() => makeCharacter(
  7430. { name: "Mega Shi" },
  7431. {
  7432. front: {
  7433. height: math.unit(6, "feet"),
  7434. weight: math.unit(200, "lb"),
  7435. name: "Front",
  7436. image: {
  7437. source: "./media/characters/mega-shi/front.svg",
  7438. extra: 1279 / 1250,
  7439. bottom: 0.02
  7440. }
  7441. },
  7442. back: {
  7443. height: math.unit(6, "feet"),
  7444. weight: math.unit(200, "lb"),
  7445. name: "Back",
  7446. image: {
  7447. source: "./media/characters/mega-shi/back.svg",
  7448. extra: 1279 / 1250,
  7449. bottom: 0.02
  7450. }
  7451. },
  7452. },
  7453. [
  7454. {
  7455. name: "Micro",
  7456. height: math.unit(16 + 6 / 12, "feet")
  7457. },
  7458. {
  7459. name: "Third Dimension",
  7460. height: math.unit(40, "meters")
  7461. },
  7462. {
  7463. name: "Normal",
  7464. height: math.unit(660, "feet"),
  7465. default: true
  7466. },
  7467. {
  7468. name: "Megamacro",
  7469. height: math.unit(10, "miles")
  7470. },
  7471. {
  7472. name: "Planetary Launch",
  7473. height: math.unit(500, "miles")
  7474. },
  7475. {
  7476. name: "Interstellar",
  7477. height: math.unit(1e9, "miles")
  7478. },
  7479. {
  7480. name: "Leaving the Universe",
  7481. height: math.unit(1, "gigaparsec")
  7482. },
  7483. {
  7484. name: "Travelling Universes",
  7485. height: math.unit(30e15, "parsecs")
  7486. },
  7487. ]
  7488. ))
  7489. characterMakers.push(() => makeCharacter(
  7490. { name: "Odyssey" },
  7491. {
  7492. front: {
  7493. height: math.unit(6, "feet"),
  7494. weight: math.unit(150, "lb"),
  7495. name: "Front",
  7496. image: {
  7497. source: "./media/characters/odyssey/front.svg",
  7498. extra: 1782 / 1582,
  7499. bottom: 0.01
  7500. }
  7501. },
  7502. side: {
  7503. height: math.unit(5.7, "feet"),
  7504. weight: math.unit(140, "lb"),
  7505. name: "Side",
  7506. image: {
  7507. source: "./media/characters/odyssey/side.svg",
  7508. extra: 6462 / 5700
  7509. }
  7510. },
  7511. },
  7512. [
  7513. {
  7514. name: "Normal",
  7515. height: math.unit(5 + 4 / 12, "feet")
  7516. },
  7517. {
  7518. name: "Macro",
  7519. height: math.unit(1, "km")
  7520. },
  7521. {
  7522. name: "Megamacro",
  7523. height: math.unit(3000, "km")
  7524. },
  7525. {
  7526. name: "Gigamacro",
  7527. height: math.unit(1, "AU"),
  7528. default: true
  7529. },
  7530. {
  7531. name: "Omniversal",
  7532. height: math.unit(100e14, "lightyears")
  7533. },
  7534. ]
  7535. ))
  7536. characterMakers.push(() => makeCharacter(
  7537. { name: "Mekuto" },
  7538. {
  7539. front: {
  7540. height: math.unit(6, "feet"),
  7541. weight: math.unit(300, "lb"),
  7542. name: "Front",
  7543. image: {
  7544. source: "./media/characters/mekuto/front.svg",
  7545. extra: 921 / 832,
  7546. bottom: 0.03
  7547. }
  7548. },
  7549. hand: {
  7550. height: math.unit(6 / 10.24, "feet"),
  7551. name: "Hand",
  7552. image: {
  7553. source: "./media/characters/mekuto/hand.svg"
  7554. }
  7555. },
  7556. foot: {
  7557. height: math.unit(6 / 5.05, "feet"),
  7558. name: "Foot",
  7559. image: {
  7560. source: "./media/characters/mekuto/foot.svg"
  7561. }
  7562. },
  7563. },
  7564. [
  7565. {
  7566. name: "Minimicro",
  7567. height: math.unit(0.2, "inches")
  7568. },
  7569. {
  7570. name: "Micro",
  7571. height: math.unit(1.5, "inches")
  7572. },
  7573. {
  7574. name: "Normal",
  7575. height: math.unit(5 + 11 / 12, "feet"),
  7576. default: true
  7577. },
  7578. {
  7579. name: "Minimacro",
  7580. height: math.unit(17 + 9 / 12, "feet")
  7581. },
  7582. {
  7583. name: "Macro",
  7584. height: math.unit(177.5, "feet")
  7585. },
  7586. {
  7587. name: "Megamacro",
  7588. height: math.unit(152, "miles")
  7589. },
  7590. ]
  7591. ))
  7592. characterMakers.push(() => makeCharacter(
  7593. { name: "Dafydd Tomos" },
  7594. {
  7595. front: {
  7596. height: math.unit(6.5, "inches"),
  7597. weight: math.unit(13, "oz"),
  7598. name: "Front",
  7599. image: {
  7600. source: "./media/characters/dafydd-tomos/front.svg",
  7601. extra: 2990 / 2603,
  7602. bottom: 0.03
  7603. }
  7604. },
  7605. },
  7606. [
  7607. {
  7608. name: "Micro",
  7609. height: math.unit(6.5, "inches"),
  7610. default: true
  7611. },
  7612. ]
  7613. ))
  7614. characterMakers.push(() => makeCharacter(
  7615. { name: "Splinter" },
  7616. {
  7617. front: {
  7618. height: math.unit(6, "feet"),
  7619. weight: math.unit(150, "lb"),
  7620. name: "Front",
  7621. image: {
  7622. source: "./media/characters/splinter/front.svg",
  7623. extra: 2990 / 2882,
  7624. bottom: 0.04
  7625. }
  7626. },
  7627. back: {
  7628. height: math.unit(6, "feet"),
  7629. weight: math.unit(150, "lb"),
  7630. name: "Back",
  7631. image: {
  7632. source: "./media/characters/splinter/back.svg",
  7633. extra: 2990 / 2882,
  7634. bottom: 0.04
  7635. }
  7636. },
  7637. },
  7638. [
  7639. {
  7640. name: "Normal",
  7641. height: math.unit(6, "feet")
  7642. },
  7643. {
  7644. name: "Macro",
  7645. height: math.unit(230, "meters"),
  7646. default: true
  7647. },
  7648. ]
  7649. ))
  7650. characterMakers.push(() => makeCharacter(
  7651. { name: "SnowGabumon" },
  7652. {
  7653. front: {
  7654. height: math.unit(4 + 10 / 12, "feet"),
  7655. weight: math.unit(480, "lb"),
  7656. name: "Front",
  7657. image: {
  7658. source: "./media/characters/snow-gabumon/front.svg",
  7659. extra: 1140 / 963,
  7660. bottom: 0.058
  7661. }
  7662. },
  7663. back: {
  7664. height: math.unit(4 + 10 / 12, "feet"),
  7665. weight: math.unit(480, "lb"),
  7666. name: "Back",
  7667. image: {
  7668. source: "./media/characters/snow-gabumon/back.svg",
  7669. extra: 1115 / 962,
  7670. bottom: 0.041
  7671. }
  7672. },
  7673. frontUndresed: {
  7674. height: math.unit(4 + 10 / 12, "feet"),
  7675. weight: math.unit(480, "lb"),
  7676. name: "Front (Undressed)",
  7677. image: {
  7678. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7679. extra: 1061 / 960,
  7680. bottom: 0.045
  7681. }
  7682. },
  7683. },
  7684. [
  7685. {
  7686. name: "Micro",
  7687. height: math.unit(1, "inch")
  7688. },
  7689. {
  7690. name: "Normal",
  7691. height: math.unit(4 + 10 / 12, "feet"),
  7692. default: true
  7693. },
  7694. {
  7695. name: "Macro",
  7696. height: math.unit(200, "feet")
  7697. },
  7698. {
  7699. name: "Megamacro",
  7700. height: math.unit(120, "miles")
  7701. },
  7702. {
  7703. name: "Gigamacro",
  7704. height: math.unit(9800, "miles")
  7705. },
  7706. ]
  7707. ))
  7708. characterMakers.push(() => makeCharacter(
  7709. { name: "Moody" },
  7710. {
  7711. front: {
  7712. height: math.unit(1.7, "meters"),
  7713. weight: math.unit(140, "lb"),
  7714. name: "Front",
  7715. image: {
  7716. source: "./media/characters/moody/front.svg",
  7717. extra: 3226 / 3007,
  7718. bottom: 0.087
  7719. }
  7720. },
  7721. },
  7722. [
  7723. {
  7724. name: "Micro",
  7725. height: math.unit(1, "mm")
  7726. },
  7727. {
  7728. name: "Normal",
  7729. height: math.unit(1.7, "meters"),
  7730. default: true
  7731. },
  7732. {
  7733. name: "Macro",
  7734. height: math.unit(80, "meters")
  7735. },
  7736. {
  7737. name: "Macro+",
  7738. height: math.unit(500, "meters")
  7739. },
  7740. ]
  7741. ))
  7742. characterMakers.push(() => makeCharacter(
  7743. { name: "Zyas" },
  7744. {
  7745. front: {
  7746. height: math.unit(6, "feet"),
  7747. weight: math.unit(150, "lb"),
  7748. name: "Front",
  7749. image: {
  7750. source: "./media/characters/zyas/front.svg",
  7751. extra: 1180 / 1120,
  7752. bottom: 0.045
  7753. }
  7754. },
  7755. },
  7756. [
  7757. {
  7758. name: "Normal",
  7759. height: math.unit(10, "feet"),
  7760. default: true
  7761. },
  7762. {
  7763. name: "Macro",
  7764. height: math.unit(500, "feet")
  7765. },
  7766. {
  7767. name: "Megamacro",
  7768. height: math.unit(5, "miles")
  7769. },
  7770. {
  7771. name: "Teramacro",
  7772. height: math.unit(150000, "miles")
  7773. },
  7774. ]
  7775. ))
  7776. characterMakers.push(() => makeCharacter(
  7777. { name: "Cuon" },
  7778. {
  7779. front: {
  7780. height: math.unit(6, "feet"),
  7781. weight: math.unit(150, "lb"),
  7782. name: "Front",
  7783. image: {
  7784. source: "./media/characters/cuon/front.svg",
  7785. extra: 1390 / 1320,
  7786. bottom: 0.008
  7787. }
  7788. },
  7789. },
  7790. [
  7791. {
  7792. name: "Micro",
  7793. height: math.unit(3, "inches")
  7794. },
  7795. {
  7796. name: "Normal",
  7797. height: math.unit(18 + 9 / 12, "feet"),
  7798. default: true
  7799. },
  7800. {
  7801. name: "Macro",
  7802. height: math.unit(360, "feet")
  7803. },
  7804. {
  7805. name: "Megamacro",
  7806. height: math.unit(360, "miles")
  7807. },
  7808. ]
  7809. ))
  7810. characterMakers.push(() => makeCharacter(
  7811. { name: "Nyanuxk" },
  7812. {
  7813. front: {
  7814. height: math.unit(2.4, "meters"),
  7815. weight: math.unit(70, "kg"),
  7816. name: "Front",
  7817. image: {
  7818. source: "./media/characters/nyanuxk/front.svg",
  7819. extra: 1172 / 1084,
  7820. bottom: 0.065
  7821. }
  7822. },
  7823. side: {
  7824. height: math.unit(2.4, "meters"),
  7825. weight: math.unit(70, "kg"),
  7826. name: "Side",
  7827. image: {
  7828. source: "./media/characters/nyanuxk/side.svg",
  7829. extra: 1190 / 1132,
  7830. bottom: 0.007
  7831. }
  7832. },
  7833. back: {
  7834. height: math.unit(2.4, "meters"),
  7835. weight: math.unit(70, "kg"),
  7836. name: "Back",
  7837. image: {
  7838. source: "./media/characters/nyanuxk/back.svg",
  7839. extra: 1200 / 1141,
  7840. bottom: 0.015
  7841. }
  7842. },
  7843. foot: {
  7844. height: math.unit(0.52, "meters"),
  7845. name: "Foot",
  7846. image: {
  7847. source: "./media/characters/nyanuxk/foot.svg"
  7848. }
  7849. },
  7850. },
  7851. [
  7852. {
  7853. name: "Micro",
  7854. height: math.unit(2, "cm")
  7855. },
  7856. {
  7857. name: "Normal",
  7858. height: math.unit(2.4, "meters"),
  7859. default: true
  7860. },
  7861. {
  7862. name: "Smaller Macro",
  7863. height: math.unit(120, "meters")
  7864. },
  7865. {
  7866. name: "Bigger Macro",
  7867. height: math.unit(1.2, "km")
  7868. },
  7869. {
  7870. name: "Megamacro",
  7871. height: math.unit(15, "kilometers")
  7872. },
  7873. {
  7874. name: "Gigamacro",
  7875. height: math.unit(2000, "km")
  7876. },
  7877. {
  7878. name: "Teramacro",
  7879. height: math.unit(500000, "km")
  7880. },
  7881. ]
  7882. ))
  7883. characterMakers.push(() => makeCharacter(
  7884. { name: "Ailbhe" },
  7885. {
  7886. side: {
  7887. height: math.unit(6, "feet"),
  7888. name: "Side",
  7889. image: {
  7890. source: "./media/characters/ailbhe/side.svg",
  7891. extra: 757 / 464,
  7892. bottom: 0.041
  7893. }
  7894. },
  7895. },
  7896. [
  7897. {
  7898. name: "Normal",
  7899. height: math.unit(1.07, "meters"),
  7900. default: true
  7901. },
  7902. ]
  7903. ))
  7904. characterMakers.push(() => makeCharacter(
  7905. { name: "Zevulfius" },
  7906. {
  7907. front: {
  7908. height: math.unit(6, "feet"),
  7909. weight: math.unit(120, "kg"),
  7910. name: "Front",
  7911. image: {
  7912. source: "./media/characters/zevulfius/front.svg",
  7913. extra: 965 / 903
  7914. }
  7915. },
  7916. side: {
  7917. height: math.unit(6, "feet"),
  7918. weight: math.unit(120, "kg"),
  7919. name: "Side",
  7920. image: {
  7921. source: "./media/characters/zevulfius/side.svg",
  7922. extra: 939 / 900
  7923. }
  7924. },
  7925. back: {
  7926. height: math.unit(6, "feet"),
  7927. weight: math.unit(120, "kg"),
  7928. name: "Back",
  7929. image: {
  7930. source: "./media/characters/zevulfius/back.svg",
  7931. extra: 918 / 854,
  7932. bottom: 0.005
  7933. }
  7934. },
  7935. foot: {
  7936. height: math.unit(6 / 3.72, "feet"),
  7937. name: "Foot",
  7938. image: {
  7939. source: "./media/characters/zevulfius/foot.svg"
  7940. }
  7941. },
  7942. },
  7943. [
  7944. {
  7945. name: "Macro",
  7946. height: math.unit(750, "meters")
  7947. },
  7948. {
  7949. name: "Megamacro",
  7950. height: math.unit(20, "km"),
  7951. default: true
  7952. },
  7953. {
  7954. name: "Gigamacro",
  7955. height: math.unit(2000, "km")
  7956. },
  7957. {
  7958. name: "Teramacro",
  7959. height: math.unit(250000, "km")
  7960. },
  7961. ]
  7962. ))
  7963. characterMakers.push(() => makeCharacter(
  7964. { name: "Rikes" },
  7965. {
  7966. front: {
  7967. height: math.unit(100, "feet"),
  7968. weight: math.unit(350, "kg"),
  7969. name: "Front",
  7970. image: {
  7971. source: "./media/characters/rikes/front.svg",
  7972. extra: 1565 / 1483,
  7973. bottom: 0.017
  7974. }
  7975. },
  7976. },
  7977. [
  7978. {
  7979. name: "Macro",
  7980. height: math.unit(100, "feet"),
  7981. default: true
  7982. },
  7983. ]
  7984. ))
  7985. characterMakers.push(() => makeCharacter(
  7986. { name: "Adam Silver-Mane" },
  7987. {
  7988. anthro: {
  7989. height: math.unit(8, "feet"),
  7990. weight: math.unit(120, "kg"),
  7991. name: "Anthro",
  7992. image: {
  7993. source: "./media/characters/adam-silver-mane/anthro.svg",
  7994. extra: 5743 / 5339,
  7995. bottom: 0.07
  7996. }
  7997. },
  7998. taur: {
  7999. height: math.unit(16, "feet"),
  8000. weight: math.unit(1500, "kg"),
  8001. name: "Taur",
  8002. image: {
  8003. source: "./media/characters/adam-silver-mane/taur.svg",
  8004. extra: 1713 / 1571,
  8005. bottom: 0.01
  8006. }
  8007. },
  8008. },
  8009. [
  8010. {
  8011. name: "Normal",
  8012. height: math.unit(8, "feet")
  8013. },
  8014. {
  8015. name: "Minimacro",
  8016. height: math.unit(80, "feet")
  8017. },
  8018. {
  8019. name: "Macro",
  8020. height: math.unit(800, "feet"),
  8021. default: true
  8022. },
  8023. {
  8024. name: "Megamacro",
  8025. height: math.unit(8000, "feet")
  8026. },
  8027. {
  8028. name: "Gigamacro",
  8029. height: math.unit(800, "miles")
  8030. },
  8031. {
  8032. name: "Teramacro",
  8033. height: math.unit(80000, "miles")
  8034. },
  8035. {
  8036. name: "Celestial",
  8037. height: math.unit(8e6, "miles")
  8038. },
  8039. {
  8040. name: "Star Dragon",
  8041. height: math.unit(800000, "parsecs")
  8042. },
  8043. {
  8044. name: "Godly",
  8045. height: math.unit(800, "teraparsecs")
  8046. },
  8047. ]
  8048. ))
  8049. characterMakers.push(() => makeCharacter(
  8050. { name: "Ky'owin" },
  8051. {
  8052. front: {
  8053. height: math.unit(6, "feet"),
  8054. weight: math.unit(150, "lb"),
  8055. name: "Front",
  8056. image: {
  8057. source: "./media/characters/ky'owin/front.svg",
  8058. extra: 3888 / 3068,
  8059. bottom: 0.015
  8060. }
  8061. },
  8062. },
  8063. [
  8064. {
  8065. name: "Normal",
  8066. height: math.unit(6 + 8 / 12, "feet")
  8067. },
  8068. {
  8069. name: "Large",
  8070. height: math.unit(68, "feet")
  8071. },
  8072. {
  8073. name: "Macro",
  8074. height: math.unit(132, "feet")
  8075. },
  8076. {
  8077. name: "Macro+",
  8078. height: math.unit(340, "feet")
  8079. },
  8080. {
  8081. name: "Macro++",
  8082. height: math.unit(680, "feet"),
  8083. default: true
  8084. },
  8085. {
  8086. name: "Megamacro",
  8087. height: math.unit(1, "mile")
  8088. },
  8089. {
  8090. name: "Megamacro+",
  8091. height: math.unit(10, "miles")
  8092. },
  8093. ]
  8094. ))
  8095. characterMakers.push(() => makeCharacter(
  8096. { name: "Mal" },
  8097. {
  8098. front: {
  8099. height: math.unit(4, "feet"),
  8100. weight: math.unit(50, "lb"),
  8101. name: "Front",
  8102. image: {
  8103. source: "./media/characters/mal/front.svg",
  8104. extra: 785 / 724,
  8105. bottom: 0.07
  8106. }
  8107. },
  8108. },
  8109. [
  8110. {
  8111. name: "Micro",
  8112. height: math.unit(4, "inches")
  8113. },
  8114. {
  8115. name: "Normal",
  8116. height: math.unit(4, "feet"),
  8117. default: true
  8118. },
  8119. {
  8120. name: "Macro",
  8121. height: math.unit(200, "feet")
  8122. },
  8123. ]
  8124. ))
  8125. characterMakers.push(() => makeCharacter(
  8126. { name: "Jordan Deware" },
  8127. {
  8128. front: {
  8129. height: math.unit(6, "feet"),
  8130. weight: math.unit(150, "lb"),
  8131. name: "Front",
  8132. image: {
  8133. source: "./media/characters/jordan-deware/front.svg",
  8134. extra: 1191 / 1012
  8135. }
  8136. },
  8137. },
  8138. [
  8139. {
  8140. name: "Nano",
  8141. height: math.unit(0.01, "mm")
  8142. },
  8143. {
  8144. name: "Minimicro",
  8145. height: math.unit(1, "mm")
  8146. },
  8147. {
  8148. name: "Micro",
  8149. height: math.unit(0.5, "inches")
  8150. },
  8151. {
  8152. name: "Normal",
  8153. height: math.unit(4, "feet"),
  8154. default: true
  8155. },
  8156. {
  8157. name: "Minimacro",
  8158. height: math.unit(40, "meters")
  8159. },
  8160. {
  8161. name: "Small Macro",
  8162. height: math.unit(400, "meters")
  8163. },
  8164. {
  8165. name: "Macro",
  8166. height: math.unit(4, "miles")
  8167. },
  8168. {
  8169. name: "Megamacro",
  8170. height: math.unit(40, "miles")
  8171. },
  8172. {
  8173. name: "Megamacro+",
  8174. height: math.unit(400, "miles")
  8175. },
  8176. {
  8177. name: "Gigamacro",
  8178. height: math.unit(400000, "miles")
  8179. },
  8180. ]
  8181. ))
  8182. characterMakers.push(() => makeCharacter(
  8183. { name: "Kimiko" },
  8184. {
  8185. side: {
  8186. height: math.unit(6, "feet"),
  8187. weight: math.unit(150, "lb"),
  8188. name: "Side",
  8189. image: {
  8190. source: "./media/characters/kimiko/side.svg",
  8191. extra: 600 / 358
  8192. }
  8193. },
  8194. },
  8195. [
  8196. {
  8197. name: "Normal",
  8198. height: math.unit(15, "feet"),
  8199. default: true
  8200. },
  8201. {
  8202. name: "Macro",
  8203. height: math.unit(220, "feet")
  8204. },
  8205. {
  8206. name: "Macro+",
  8207. height: math.unit(1450, "feet")
  8208. },
  8209. {
  8210. name: "Megamacro",
  8211. height: math.unit(11500, "feet")
  8212. },
  8213. {
  8214. name: "Gigamacro",
  8215. height: math.unit(9500, "miles")
  8216. },
  8217. {
  8218. name: "Teramacro",
  8219. height: math.unit(2208005005, "miles")
  8220. },
  8221. {
  8222. name: "Examacro",
  8223. height: math.unit(2750, "parsecs")
  8224. },
  8225. {
  8226. name: "Zettamacro",
  8227. height: math.unit(101500, "parsecs")
  8228. },
  8229. ]
  8230. ))
  8231. characterMakers.push(() => makeCharacter(
  8232. { name: "Andrew Sleepy" },
  8233. {
  8234. front: {
  8235. height: math.unit(6, "feet"),
  8236. weight: math.unit(70, "kg"),
  8237. name: "Front",
  8238. image: {
  8239. source: "./media/characters/andrew-sleepy/front.svg"
  8240. }
  8241. },
  8242. side: {
  8243. height: math.unit(6, "feet"),
  8244. weight: math.unit(70, "kg"),
  8245. name: "Side",
  8246. image: {
  8247. source: "./media/characters/andrew-sleepy/side.svg"
  8248. }
  8249. },
  8250. },
  8251. [
  8252. {
  8253. name: "Micro",
  8254. height: math.unit(1, "mm"),
  8255. default: true
  8256. },
  8257. ]
  8258. ))
  8259. characterMakers.push(() => makeCharacter(
  8260. { name: "Judio" },
  8261. {
  8262. front: {
  8263. height: math.unit(6, "feet"),
  8264. weight: math.unit(150, "lb"),
  8265. name: "Front",
  8266. image: {
  8267. source: "./media/characters/judio/front.svg",
  8268. extra: 1258 / 1110
  8269. }
  8270. },
  8271. },
  8272. [
  8273. {
  8274. name: "Normal",
  8275. height: math.unit(5 + 6 / 12, "feet")
  8276. },
  8277. {
  8278. name: "Macro",
  8279. height: math.unit(1000, "feet"),
  8280. default: true
  8281. },
  8282. {
  8283. name: "Megamacro",
  8284. height: math.unit(10, "miles")
  8285. },
  8286. ]
  8287. ))
  8288. characterMakers.push(() => makeCharacter(
  8289. { name: "Nomaxice" },
  8290. {
  8291. front: {
  8292. height: math.unit(6, "feet"),
  8293. weight: math.unit(68, "kg"),
  8294. name: "Front",
  8295. image: {
  8296. source: "./media/characters/nomaxice/front.svg",
  8297. extra: 1498 / 1073,
  8298. bottom: 0.075
  8299. }
  8300. },
  8301. foot: {
  8302. height: math.unit(1.1, "feet"),
  8303. name: "Foot",
  8304. image: {
  8305. source: "./media/characters/nomaxice/foot.svg"
  8306. }
  8307. },
  8308. },
  8309. [
  8310. {
  8311. name: "Micro",
  8312. height: math.unit(8, "cm")
  8313. },
  8314. {
  8315. name: "Norm",
  8316. height: math.unit(1.82, "m")
  8317. },
  8318. {
  8319. name: "Norm+",
  8320. height: math.unit(8.8, "feet")
  8321. },
  8322. {
  8323. name: "Big",
  8324. height: math.unit(8, "meters"),
  8325. default: true
  8326. },
  8327. {
  8328. name: "Macro",
  8329. height: math.unit(18, "meters")
  8330. },
  8331. {
  8332. name: "Macro+",
  8333. height: math.unit(88, "meters")
  8334. },
  8335. ]
  8336. ))
  8337. characterMakers.push(() => makeCharacter(
  8338. { name: "Dydros" },
  8339. {
  8340. front: {
  8341. height: math.unit(12, "feet"),
  8342. weight: math.unit(1.5, "tons"),
  8343. name: "Front",
  8344. image: {
  8345. source: "./media/characters/dydros/front.svg",
  8346. extra: 863 / 800,
  8347. bottom: 0.015
  8348. }
  8349. },
  8350. back: {
  8351. height: math.unit(12, "feet"),
  8352. weight: math.unit(1.5, "tons"),
  8353. name: "Back",
  8354. image: {
  8355. source: "./media/characters/dydros/back.svg",
  8356. extra: 900 / 843,
  8357. bottom: 0.005
  8358. }
  8359. },
  8360. },
  8361. [
  8362. {
  8363. name: "Normal",
  8364. height: math.unit(12, "feet"),
  8365. default: true
  8366. },
  8367. ]
  8368. ))
  8369. characterMakers.push(() => makeCharacter(
  8370. { name: "Riggi" },
  8371. {
  8372. front: {
  8373. height: math.unit(6, "feet"),
  8374. weight: math.unit(100, "kg"),
  8375. name: "Front",
  8376. image: {
  8377. source: "./media/characters/riggi/front.svg",
  8378. extra: 5787 / 5303
  8379. }
  8380. },
  8381. hyper: {
  8382. height: math.unit(6 * 5 / 3, "feet"),
  8383. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8384. name: "Hyper",
  8385. image: {
  8386. source: "./media/characters/riggi/hyper.svg",
  8387. extra: 3595 / 3485
  8388. }
  8389. },
  8390. },
  8391. [
  8392. {
  8393. name: "Small Macro",
  8394. height: math.unit(50, "feet")
  8395. },
  8396. {
  8397. name: "Default",
  8398. height: math.unit(200, "feet"),
  8399. default: true
  8400. },
  8401. {
  8402. name: "Loom",
  8403. height: math.unit(10000, "feet")
  8404. },
  8405. {
  8406. name: "Cruising Altitude",
  8407. height: math.unit(30000, "feet")
  8408. },
  8409. {
  8410. name: "Megamacro",
  8411. height: math.unit(100, "miles")
  8412. },
  8413. {
  8414. name: "Continent Sized",
  8415. height: math.unit(2800, "miles")
  8416. },
  8417. {
  8418. name: "Earth Sized",
  8419. height: math.unit(8000, "miles")
  8420. },
  8421. ]
  8422. ))
  8423. characterMakers.push(() => makeCharacter(
  8424. { name: "Alexi" },
  8425. {
  8426. front: {
  8427. height: math.unit(6, "feet"),
  8428. weight: math.unit(250, "lb"),
  8429. name: "Front",
  8430. image: {
  8431. source: "./media/characters/alexi/front.svg",
  8432. extra: 3483 / 3291,
  8433. bottom: 0.04
  8434. }
  8435. },
  8436. back: {
  8437. height: math.unit(6, "feet"),
  8438. weight: math.unit(250, "lb"),
  8439. name: "Back",
  8440. image: {
  8441. source: "./media/characters/alexi/back.svg",
  8442. extra: 3533 / 3356,
  8443. bottom: 0.021
  8444. }
  8445. },
  8446. frontTransformed: {
  8447. height: math.unit(12.5, "feet"),
  8448. weight: math.unit(4000, "lb"),
  8449. name: "Front (Transformed)",
  8450. image: {
  8451. source: "./media/characters/alexi/front-transformed.svg",
  8452. extra: 5345 / 5100,
  8453. bottom: 0.03
  8454. }
  8455. },
  8456. },
  8457. [
  8458. {
  8459. name: "Normal",
  8460. height: math.unit(3, "meters"),
  8461. default: true
  8462. },
  8463. {
  8464. name: "Minimacro",
  8465. height: math.unit(30, "meters")
  8466. },
  8467. {
  8468. name: "Macro",
  8469. height: math.unit(500, "meters")
  8470. },
  8471. {
  8472. name: "Megamacro",
  8473. height: math.unit(9000, "km")
  8474. },
  8475. {
  8476. name: "Teramacro",
  8477. height: math.unit(384000, "km")
  8478. },
  8479. ]
  8480. ))
  8481. characterMakers.push(() => makeCharacter(
  8482. { name: "Kayroo" },
  8483. {
  8484. front: {
  8485. height: math.unit(6, "feet"),
  8486. weight: math.unit(150, "lb"),
  8487. name: "Front",
  8488. image: {
  8489. source: "./media/characters/kayroo/front.svg",
  8490. extra: 1153 / 1038,
  8491. bottom: 0.06
  8492. }
  8493. },
  8494. foot: {
  8495. height: math.unit(6, "feet"),
  8496. weight: math.unit(150, "lb"),
  8497. name: "Foot",
  8498. image: {
  8499. source: "./media/characters/kayroo/foot.svg"
  8500. }
  8501. },
  8502. },
  8503. [
  8504. {
  8505. name: "Normal",
  8506. height: math.unit(8, "feet"),
  8507. default: true
  8508. },
  8509. {
  8510. name: "Minimacro",
  8511. height: math.unit(250, "feet")
  8512. },
  8513. {
  8514. name: "Macro",
  8515. height: math.unit(2800, "feet")
  8516. },
  8517. {
  8518. name: "Megamacro",
  8519. height: math.unit(5200, "feet")
  8520. },
  8521. {
  8522. name: "Gigamacro",
  8523. height: math.unit(27000, "feet")
  8524. },
  8525. {
  8526. name: "Omega",
  8527. height: math.unit(45000, "feet")
  8528. },
  8529. ]
  8530. ))
  8531. characterMakers.push(() => makeCharacter(
  8532. { name: "Rhys" },
  8533. {
  8534. front: {
  8535. height: math.unit(18, "feet"),
  8536. weight: math.unit(5800, "lb"),
  8537. name: "Front",
  8538. image: {
  8539. source: "./media/characters/rhys/front.svg",
  8540. extra: 3386 / 3090,
  8541. bottom: 0.07
  8542. }
  8543. },
  8544. },
  8545. [
  8546. {
  8547. name: "Normal",
  8548. height: math.unit(18, "feet"),
  8549. default: true
  8550. },
  8551. {
  8552. name: "Working Size",
  8553. height: math.unit(200, "feet")
  8554. },
  8555. {
  8556. name: "Demolition Size",
  8557. height: math.unit(2000, "feet")
  8558. },
  8559. {
  8560. name: "Maximum Licensed Size",
  8561. height: math.unit(5, "miles")
  8562. },
  8563. {
  8564. name: "Maximum Observed Size",
  8565. height: math.unit(10, "yottameters")
  8566. },
  8567. ]
  8568. ))
  8569. characterMakers.push(() => makeCharacter(
  8570. { name: "Toto" },
  8571. {
  8572. front: {
  8573. height: math.unit(6, "feet"),
  8574. weight: math.unit(250, "lb"),
  8575. name: "Front",
  8576. image: {
  8577. source: "./media/characters/toto/front.svg",
  8578. extra: 527 / 479,
  8579. bottom: 0.05
  8580. }
  8581. },
  8582. },
  8583. [
  8584. {
  8585. name: "Micro",
  8586. height: math.unit(3, "feet")
  8587. },
  8588. {
  8589. name: "Normal",
  8590. height: math.unit(10, "feet")
  8591. },
  8592. {
  8593. name: "Macro",
  8594. height: math.unit(150, "feet"),
  8595. default: true
  8596. },
  8597. {
  8598. name: "Megamacro",
  8599. height: math.unit(1200, "feet")
  8600. },
  8601. ]
  8602. ))
  8603. characterMakers.push(() => makeCharacter(
  8604. { name: "King" },
  8605. {
  8606. back: {
  8607. height: math.unit(6, "feet"),
  8608. weight: math.unit(150, "lb"),
  8609. name: "Back",
  8610. image: {
  8611. source: "./media/characters/king/back.svg"
  8612. }
  8613. },
  8614. },
  8615. [
  8616. {
  8617. name: "Micro",
  8618. height: math.unit(2, "inches")
  8619. },
  8620. {
  8621. name: "Normal",
  8622. height: math.unit(8, "feet")
  8623. },
  8624. {
  8625. name: "Macro",
  8626. height: math.unit(200, "feet"),
  8627. default: true
  8628. },
  8629. {
  8630. name: "Megamacro",
  8631. height: math.unit(50, "miles")
  8632. },
  8633. ]
  8634. ))
  8635. characterMakers.push(() => makeCharacter(
  8636. { name: "Cordite" },
  8637. {
  8638. anthro: {
  8639. height: math.unit(6 + 5 / 12, "feet"),
  8640. weight: math.unit(280, "lb"),
  8641. name: "Anthro",
  8642. image: {
  8643. source: "./media/characters/cordite/anthro.svg",
  8644. extra: 1986 / 1905,
  8645. bottom: 0.025
  8646. }
  8647. },
  8648. feral: {
  8649. height: math.unit(2, "feet"),
  8650. weight: math.unit(90, "lb"),
  8651. name: "Feral",
  8652. image: {
  8653. source: "./media/characters/cordite/feral.svg",
  8654. extra: 1260 / 755,
  8655. bottom: 0.05
  8656. }
  8657. },
  8658. },
  8659. [
  8660. {
  8661. name: "Normal",
  8662. height: math.unit(6 + 5 / 12, "feet"),
  8663. default: true
  8664. },
  8665. ]
  8666. ))
  8667. characterMakers.push(() => makeCharacter(
  8668. { name: "Pianostrong" },
  8669. {
  8670. front: {
  8671. height: math.unit(6, "feet"),
  8672. weight: math.unit(150, "lb"),
  8673. name: "Front",
  8674. image: {
  8675. source: "./media/characters/pianostrong/front.svg",
  8676. extra: 6577 / 6254,
  8677. bottom: 0.02
  8678. }
  8679. },
  8680. side: {
  8681. height: math.unit(6, "feet"),
  8682. weight: math.unit(150, "lb"),
  8683. name: "Side",
  8684. image: {
  8685. source: "./media/characters/pianostrong/side.svg",
  8686. extra: 6106 / 5730
  8687. }
  8688. },
  8689. back: {
  8690. height: math.unit(6, "feet"),
  8691. weight: math.unit(150, "lb"),
  8692. name: "Back",
  8693. image: {
  8694. source: "./media/characters/pianostrong/back.svg",
  8695. extra: 6085 / 5733,
  8696. bottom: 0.01
  8697. }
  8698. },
  8699. },
  8700. [
  8701. {
  8702. name: "Macro",
  8703. height: math.unit(100, "feet")
  8704. },
  8705. {
  8706. name: "Macro+",
  8707. height: math.unit(300, "feet"),
  8708. default: true
  8709. },
  8710. {
  8711. name: "Macro++",
  8712. height: math.unit(1000, "feet")
  8713. },
  8714. ]
  8715. ))
  8716. characterMakers.push(() => makeCharacter(
  8717. { name: "Kona" },
  8718. {
  8719. front: {
  8720. height: math.unit(6, "feet"),
  8721. weight: math.unit(150, "lb"),
  8722. name: "Front",
  8723. image: {
  8724. source: "./media/characters/kona/front.svg",
  8725. extra: 2960 / 2629,
  8726. bottom: 0.005
  8727. }
  8728. },
  8729. },
  8730. [
  8731. {
  8732. name: "Normal",
  8733. height: math.unit(11 + 8 / 12, "feet")
  8734. },
  8735. {
  8736. name: "Macro",
  8737. height: math.unit(850, "feet"),
  8738. default: true
  8739. },
  8740. {
  8741. name: "Macro+",
  8742. height: math.unit(1.5, "km"),
  8743. default: true
  8744. },
  8745. {
  8746. name: "Megamacro",
  8747. height: math.unit(80, "miles")
  8748. },
  8749. {
  8750. name: "Gigamacro",
  8751. height: math.unit(3500, "miles")
  8752. },
  8753. ]
  8754. ))
  8755. characterMakers.push(() => makeCharacter(
  8756. { name: "Levi" },
  8757. {
  8758. side: {
  8759. height: math.unit(1.9, "meters"),
  8760. weight: math.unit(326, "kg"),
  8761. name: "Side",
  8762. image: {
  8763. source: "./media/characters/levi/side.svg",
  8764. extra: 1704 / 1334,
  8765. bottom: 0.02
  8766. }
  8767. },
  8768. },
  8769. [
  8770. {
  8771. name: "Normal",
  8772. height: math.unit(1.9, "meters"),
  8773. default: true
  8774. },
  8775. {
  8776. name: "Macro",
  8777. height: math.unit(20, "meters")
  8778. },
  8779. {
  8780. name: "Macro+",
  8781. height: math.unit(200, "meters")
  8782. },
  8783. {
  8784. name: "Megamacro",
  8785. height: math.unit(2, "km")
  8786. },
  8787. {
  8788. name: "Megamacro+",
  8789. height: math.unit(20, "km")
  8790. },
  8791. {
  8792. name: "Gigamacro",
  8793. height: math.unit(2500, "km")
  8794. },
  8795. {
  8796. name: "Gigamacro+",
  8797. height: math.unit(120000, "km")
  8798. },
  8799. {
  8800. name: "Teramacro",
  8801. height: math.unit(7.77e6, "km")
  8802. },
  8803. ]
  8804. ))
  8805. characterMakers.push(() => makeCharacter(
  8806. { name: "BMC" },
  8807. {
  8808. front: {
  8809. height: math.unit(6 + 4 / 12, "feet"),
  8810. weight: math.unit(188, "lb"),
  8811. name: "Front",
  8812. image: {
  8813. source: "./media/characters/bmc/front.svg",
  8814. extra: 1067 / 1022,
  8815. bottom: 0.047
  8816. }
  8817. },
  8818. },
  8819. [
  8820. {
  8821. name: "Human-sized",
  8822. height: math.unit(6 + 4 / 12, "feet")
  8823. },
  8824. {
  8825. name: "Small",
  8826. height: math.unit(250, "feet")
  8827. },
  8828. {
  8829. name: "Normal",
  8830. height: math.unit(1250, "feet"),
  8831. default: true
  8832. },
  8833. {
  8834. name: "Good Day",
  8835. height: math.unit(88, "miles")
  8836. },
  8837. {
  8838. name: "Largest Measured Size",
  8839. height: math.unit(11.2e6, "lightyears")
  8840. },
  8841. ]
  8842. ))
  8843. characterMakers.push(() => makeCharacter(
  8844. { name: "Sven the Kaiju" },
  8845. {
  8846. front: {
  8847. height: math.unit(20, "feet"),
  8848. weight: math.unit(2016, "kg"),
  8849. name: "Front",
  8850. image: {
  8851. source: "./media/characters/sven-the-kaiju/front.svg",
  8852. extra: 1479 / 1449,
  8853. bottom: 0.05
  8854. }
  8855. },
  8856. },
  8857. [
  8858. {
  8859. name: "Fairy",
  8860. height: math.unit(6, "inches")
  8861. },
  8862. {
  8863. name: "Normal",
  8864. height: math.unit(20, "feet"),
  8865. default: true
  8866. },
  8867. {
  8868. name: "Rampage",
  8869. height: math.unit(200, "feet")
  8870. },
  8871. {
  8872. name: "Archfey Forest Guardian",
  8873. height: math.unit(1, "mile")
  8874. },
  8875. ]
  8876. ))
  8877. characterMakers.push(() => makeCharacter(
  8878. { name: "Marik" },
  8879. {
  8880. front: {
  8881. height: math.unit(4, "meters"),
  8882. weight: math.unit(2, "tons"),
  8883. name: "Front",
  8884. image: {
  8885. source: "./media/characters/marik/front.svg",
  8886. extra: 1057 / 1003,
  8887. bottom: 0.08
  8888. }
  8889. },
  8890. },
  8891. [
  8892. {
  8893. name: "Normal",
  8894. height: math.unit(4, "meters"),
  8895. default: true
  8896. },
  8897. {
  8898. name: "Macro",
  8899. height: math.unit(20, "meters")
  8900. },
  8901. {
  8902. name: "Megamacro",
  8903. height: math.unit(50, "km")
  8904. },
  8905. {
  8906. name: "Gigamacro",
  8907. height: math.unit(100, "km")
  8908. },
  8909. {
  8910. name: "Alpha Macro",
  8911. height: math.unit(7.88e7, "yottameters")
  8912. },
  8913. ]
  8914. ))
  8915. characterMakers.push(() => makeCharacter(
  8916. { name: "Mel" },
  8917. {
  8918. front: {
  8919. height: math.unit(6, "feet"),
  8920. weight: math.unit(110, "lb"),
  8921. name: "Front",
  8922. image: {
  8923. source: "./media/characters/mel/front.svg",
  8924. extra: 736 / 617,
  8925. bottom: 0.017
  8926. }
  8927. },
  8928. },
  8929. [
  8930. {
  8931. name: "Pico",
  8932. height: math.unit(3, "pm")
  8933. },
  8934. {
  8935. name: "Nano",
  8936. height: math.unit(3, "nm")
  8937. },
  8938. {
  8939. name: "Micro",
  8940. height: math.unit(0.3, "mm"),
  8941. default: true
  8942. },
  8943. {
  8944. name: "Micro+",
  8945. height: math.unit(3, "mm")
  8946. },
  8947. {
  8948. name: "Normal",
  8949. height: math.unit(5 + 10.5 / 12, "feet")
  8950. },
  8951. ]
  8952. ))
  8953. characterMakers.push(() => makeCharacter(
  8954. { name: "Lykonous" },
  8955. {
  8956. kaiju: {
  8957. height: math.unit(1.75, "meters"),
  8958. weight: math.unit(55, "kg"),
  8959. name: "Kaiju",
  8960. image: {
  8961. source: "./media/characters/lykonous/kaiju.svg",
  8962. extra: 1055 / 946,
  8963. bottom: 0.135
  8964. }
  8965. },
  8966. },
  8967. [
  8968. {
  8969. name: "Normal",
  8970. height: math.unit(2.5, "meters"),
  8971. default: true
  8972. },
  8973. {
  8974. name: "Kaiju Dragon",
  8975. height: math.unit(60, "meters")
  8976. },
  8977. {
  8978. name: "Mega Kaiju",
  8979. height: math.unit(120, "km")
  8980. },
  8981. {
  8982. name: "Giga Kaiju",
  8983. height: math.unit(200, "megameters")
  8984. },
  8985. {
  8986. name: "Terra Kaiju",
  8987. height: math.unit(400, "gigameters")
  8988. },
  8989. {
  8990. name: "Kaiju Dragon God",
  8991. height: math.unit(13000, "exaparsecs")
  8992. },
  8993. ]
  8994. ))
  8995. characterMakers.push(() => makeCharacter(
  8996. { name: "Blü" },
  8997. {
  8998. front: {
  8999. height: math.unit(6, "feet"),
  9000. weight: math.unit(150, "lb"),
  9001. name: "Front",
  9002. image: {
  9003. source: "./media/characters/blü/front.svg",
  9004. extra: 1883 / 1564,
  9005. bottom: 0.031
  9006. }
  9007. },
  9008. },
  9009. [
  9010. {
  9011. name: "Normal",
  9012. height: math.unit(13, "feet"),
  9013. default: true
  9014. },
  9015. {
  9016. name: "Big Boi",
  9017. height: math.unit(150, "meters")
  9018. },
  9019. {
  9020. name: "Mini Stomper",
  9021. height: math.unit(300, "meters")
  9022. },
  9023. {
  9024. name: "Macro",
  9025. height: math.unit(1000, "meters")
  9026. },
  9027. {
  9028. name: "Megamacro",
  9029. height: math.unit(11000, "meters")
  9030. },
  9031. {
  9032. name: "Gigamacro",
  9033. height: math.unit(11000, "km")
  9034. },
  9035. {
  9036. name: "Teramacro",
  9037. height: math.unit(420000, "km")
  9038. },
  9039. {
  9040. name: "Examacro",
  9041. height: math.unit(120, "parsecs")
  9042. },
  9043. {
  9044. name: "God Tho",
  9045. height: math.unit(98000000000, "parsecs")
  9046. },
  9047. ]
  9048. ))
  9049. characterMakers.push(() => makeCharacter(
  9050. { name: "Scales" },
  9051. {
  9052. taurFront: {
  9053. height: math.unit(6, "feet"),
  9054. weight: math.unit(200, "lb"),
  9055. name: "Taur (Front)",
  9056. image: {
  9057. source: "./media/characters/scales/taur-front.svg",
  9058. extra: 1,
  9059. bottom: 0.05
  9060. }
  9061. },
  9062. taurBack: {
  9063. height: math.unit(6, "feet"),
  9064. weight: math.unit(200, "lb"),
  9065. name: "Taur (Back)",
  9066. image: {
  9067. source: "./media/characters/scales/taur-back.svg",
  9068. extra: 1,
  9069. bottom: 0.08
  9070. }
  9071. },
  9072. anthro: {
  9073. height: math.unit(6 * 7 / 12, "feet"),
  9074. weight: math.unit(100, "lb"),
  9075. name: "Anthro",
  9076. image: {
  9077. source: "./media/characters/scales/anthro.svg",
  9078. extra: 1,
  9079. bottom: 0.06
  9080. }
  9081. },
  9082. },
  9083. [
  9084. {
  9085. name: "Normal",
  9086. height: math.unit(12, "feet"),
  9087. default: true
  9088. },
  9089. ]
  9090. ))
  9091. characterMakers.push(() => makeCharacter(
  9092. { name: "Koragos" },
  9093. {
  9094. front: {
  9095. height: math.unit(6, "feet"),
  9096. weight: math.unit(150, "lb"),
  9097. name: "Front",
  9098. image: {
  9099. source: "./media/characters/koragos/front.svg",
  9100. extra: 841 / 794,
  9101. bottom: 0.035
  9102. }
  9103. },
  9104. back: {
  9105. height: math.unit(6, "feet"),
  9106. weight: math.unit(150, "lb"),
  9107. name: "Back",
  9108. image: {
  9109. source: "./media/characters/koragos/back.svg",
  9110. extra: 841 / 810,
  9111. bottom: 0.022
  9112. }
  9113. },
  9114. },
  9115. [
  9116. {
  9117. name: "Normal",
  9118. height: math.unit(6 + 11 / 12, "feet"),
  9119. default: true
  9120. },
  9121. {
  9122. name: "Macro",
  9123. height: math.unit(490, "feet")
  9124. },
  9125. {
  9126. name: "Megamacro",
  9127. height: math.unit(10, "miles")
  9128. },
  9129. {
  9130. name: "Gigamacro",
  9131. height: math.unit(50, "miles")
  9132. },
  9133. ]
  9134. ))
  9135. characterMakers.push(() => makeCharacter(
  9136. { name: "Xylrem" },
  9137. {
  9138. front: {
  9139. height: math.unit(6, "feet"),
  9140. weight: math.unit(250, "lb"),
  9141. name: "Front",
  9142. image: {
  9143. source: "./media/characters/xylrem/front.svg",
  9144. extra: 3323 / 3050,
  9145. bottom: 0.065
  9146. }
  9147. },
  9148. },
  9149. [
  9150. {
  9151. name: "Micro",
  9152. height: math.unit(4, "feet")
  9153. },
  9154. {
  9155. name: "Normal",
  9156. height: math.unit(16, "feet"),
  9157. default: true
  9158. },
  9159. {
  9160. name: "Macro",
  9161. height: math.unit(2720, "feet")
  9162. },
  9163. {
  9164. name: "Megamacro",
  9165. height: math.unit(25000, "miles")
  9166. },
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Ikideru" },
  9171. {
  9172. front: {
  9173. height: math.unit(8, "feet"),
  9174. weight: math.unit(250, "kg"),
  9175. name: "Front",
  9176. image: {
  9177. source: "./media/characters/ikideru/front.svg",
  9178. extra: 930 / 870,
  9179. bottom: 0.087
  9180. }
  9181. },
  9182. back: {
  9183. height: math.unit(8, "feet"),
  9184. weight: math.unit(250, "kg"),
  9185. name: "Back",
  9186. image: {
  9187. source: "./media/characters/ikideru/back.svg",
  9188. extra: 919 / 852,
  9189. bottom: 0.055
  9190. }
  9191. },
  9192. },
  9193. [
  9194. {
  9195. name: "Rare",
  9196. height: math.unit(8, "feet"),
  9197. default: true
  9198. },
  9199. {
  9200. name: "Playful Loom",
  9201. height: math.unit(80, "feet")
  9202. },
  9203. {
  9204. name: "City Leaner",
  9205. height: math.unit(230, "feet")
  9206. },
  9207. {
  9208. name: "Megamacro",
  9209. height: math.unit(2500, "feet")
  9210. },
  9211. {
  9212. name: "Gigamacro",
  9213. height: math.unit(26400, "feet")
  9214. },
  9215. {
  9216. name: "Tectonic Shifter",
  9217. height: math.unit(1.7, "megameters")
  9218. },
  9219. {
  9220. name: "Planet Carer",
  9221. height: math.unit(21, "megameters")
  9222. },
  9223. {
  9224. name: "God",
  9225. height: math.unit(11157.22, "parsecs")
  9226. },
  9227. ]
  9228. ))
  9229. characterMakers.push(() => makeCharacter(
  9230. { name: "Neo" },
  9231. {
  9232. front: {
  9233. height: math.unit(6, "feet"),
  9234. weight: math.unit(120, "lb"),
  9235. name: "Front",
  9236. image: {
  9237. source: "./media/characters/neo/front.svg"
  9238. }
  9239. },
  9240. },
  9241. [
  9242. {
  9243. name: "Micro",
  9244. height: math.unit(2, "inches"),
  9245. default: true
  9246. },
  9247. {
  9248. name: "Human Size",
  9249. height: math.unit(5 + 8 / 12, "feet")
  9250. },
  9251. ]
  9252. ))
  9253. characterMakers.push(() => makeCharacter(
  9254. { name: "Chauncey (Chantz)" },
  9255. {
  9256. front: {
  9257. height: math.unit(13 + 10 / 12, "feet"),
  9258. weight: math.unit(5320, "lb"),
  9259. name: "Front",
  9260. image: {
  9261. source: "./media/characters/chauncey-chantz/front.svg",
  9262. extra: 1587 / 1435,
  9263. bottom: 0.02
  9264. }
  9265. },
  9266. },
  9267. [
  9268. {
  9269. name: "Normal",
  9270. height: math.unit(13 + 10 / 12, "feet"),
  9271. default: true
  9272. },
  9273. {
  9274. name: "Macro",
  9275. height: math.unit(45, "feet")
  9276. },
  9277. {
  9278. name: "Megamacro",
  9279. height: math.unit(250, "miles")
  9280. },
  9281. {
  9282. name: "Planetary",
  9283. height: math.unit(10000, "miles")
  9284. },
  9285. {
  9286. name: "Galactic",
  9287. height: math.unit(40000, "parsecs")
  9288. },
  9289. {
  9290. name: "Universal",
  9291. height: math.unit(1, "yottameter")
  9292. },
  9293. ]
  9294. ))
  9295. characterMakers.push(() => makeCharacter(
  9296. { name: "Epifox" },
  9297. {
  9298. front: {
  9299. height: math.unit(6, "feet"),
  9300. weight: math.unit(150, "lb"),
  9301. name: "Front",
  9302. image: {
  9303. source: "./media/characters/epifox/front.svg",
  9304. extra: 1,
  9305. bottom: 0.075
  9306. }
  9307. },
  9308. },
  9309. [
  9310. {
  9311. name: "Micro",
  9312. height: math.unit(6, "inches")
  9313. },
  9314. {
  9315. name: "Normal",
  9316. height: math.unit(12, "feet"),
  9317. default: true
  9318. },
  9319. {
  9320. name: "Macro",
  9321. height: math.unit(3810, "feet")
  9322. },
  9323. {
  9324. name: "Megamacro",
  9325. height: math.unit(500, "miles")
  9326. },
  9327. ]
  9328. ))
  9329. characterMakers.push(() => makeCharacter(
  9330. { name: "Colin T." },
  9331. {
  9332. front: {
  9333. height: math.unit(1.8796, "m"),
  9334. weight: math.unit(230, "lb"),
  9335. name: "Front",
  9336. image: {
  9337. source: "./media/characters/colin-t/front.svg",
  9338. extra: 1272 / 1193,
  9339. bottom: 0.07
  9340. }
  9341. },
  9342. },
  9343. [
  9344. {
  9345. name: "Micro",
  9346. height: math.unit(0.571, "meters")
  9347. },
  9348. {
  9349. name: "Normal",
  9350. height: math.unit(1.8796, "meters"),
  9351. default: true
  9352. },
  9353. {
  9354. name: "Tall",
  9355. height: math.unit(4, "meters")
  9356. },
  9357. {
  9358. name: "Macro",
  9359. height: math.unit(67.241, "meters")
  9360. },
  9361. {
  9362. name: "Megamacro",
  9363. height: math.unit(371.856, "meters")
  9364. },
  9365. {
  9366. name: "Planetary",
  9367. height: math.unit(12631.5689, "km")
  9368. },
  9369. ]
  9370. ))
  9371. characterMakers.push(() => makeCharacter(
  9372. { name: "Matvei" },
  9373. {
  9374. front: {
  9375. height: math.unit(1.85, "meters"),
  9376. weight: math.unit(80, "kg"),
  9377. name: "Front",
  9378. image: {
  9379. source: "./media/characters/matvei/front.svg",
  9380. extra: 614 / 594,
  9381. bottom: 0.01
  9382. }
  9383. },
  9384. },
  9385. [
  9386. {
  9387. name: "Normal",
  9388. height: math.unit(1.85, "meters"),
  9389. default: true
  9390. },
  9391. ]
  9392. ))
  9393. characterMakers.push(() => makeCharacter(
  9394. { name: "Quincy" },
  9395. {
  9396. front: {
  9397. height: math.unit(5 + 9 / 12, "feet"),
  9398. weight: math.unit(70, "lb"),
  9399. name: "Front",
  9400. image: {
  9401. source: "./media/characters/quincy/front.svg",
  9402. extra: 3041 / 2751
  9403. }
  9404. },
  9405. back: {
  9406. height: math.unit(5 + 9 / 12, "feet"),
  9407. weight: math.unit(70, "lb"),
  9408. name: "Back",
  9409. image: {
  9410. source: "./media/characters/quincy/back.svg",
  9411. extra: 3041 / 2751
  9412. }
  9413. },
  9414. flying: {
  9415. height: math.unit(5 + 4 / 12, "feet"),
  9416. weight: math.unit(70, "lb"),
  9417. name: "Flying",
  9418. image: {
  9419. source: "./media/characters/quincy/flying.svg",
  9420. extra: 1044 / 930
  9421. }
  9422. },
  9423. },
  9424. [
  9425. {
  9426. name: "Micro",
  9427. height: math.unit(3, "cm")
  9428. },
  9429. {
  9430. name: "Normal",
  9431. height: math.unit(5 + 9 / 12, "feet")
  9432. },
  9433. {
  9434. name: "Macro",
  9435. height: math.unit(200, "meters"),
  9436. default: true
  9437. },
  9438. {
  9439. name: "Megamacro",
  9440. height: math.unit(1000, "meters")
  9441. },
  9442. ]
  9443. ))
  9444. characterMakers.push(() => makeCharacter(
  9445. { name: "Vanrel" },
  9446. {
  9447. front: {
  9448. height: math.unit(4 + 7 / 12, "feet"),
  9449. weight: math.unit(150, "lb"),
  9450. name: "Front",
  9451. image: {
  9452. source: "./media/characters/vanrel/front.svg",
  9453. extra: 1,
  9454. bottom: 0.02
  9455. }
  9456. },
  9457. elemental: {
  9458. height: math.unit(3, "feet"),
  9459. weight: math.unit(150, "lb"),
  9460. name: "Elemental",
  9461. image: {
  9462. source: "./media/characters/vanrel/elemental.svg",
  9463. extra: 192.3/162.8,
  9464. bottom: 1.79/194.17
  9465. }
  9466. },
  9467. side: {
  9468. height: math.unit(4 + 7 / 12, "feet"),
  9469. weight: math.unit(150, "lb"),
  9470. name: "Side",
  9471. image: {
  9472. source: "./media/characters/vanrel/side.svg",
  9473. extra: 1,
  9474. bottom: 0.025
  9475. }
  9476. },
  9477. tome: {
  9478. height: math.unit(1.35, "feet"),
  9479. weight: math.unit(10, "lb"),
  9480. name: "Vanrel's Tome",
  9481. rename: true,
  9482. image: {
  9483. source: "./media/characters/vanrel/tome.svg"
  9484. }
  9485. },
  9486. beans: {
  9487. height: math.unit(0.89, "feet"),
  9488. name: "Beans",
  9489. image: {
  9490. source: "./media/characters/vanrel/beans.svg"
  9491. }
  9492. },
  9493. },
  9494. [
  9495. {
  9496. name: "Normal",
  9497. height: math.unit(4 + 7 / 12, "feet"),
  9498. default: true
  9499. },
  9500. ]
  9501. ))
  9502. characterMakers.push(() => makeCharacter(
  9503. { name: "Kuiper Vanrel" },
  9504. {
  9505. front: {
  9506. height: math.unit(7 + 5 / 12, "feet"),
  9507. weight: math.unit(150, "lb"),
  9508. name: "Front",
  9509. image: {
  9510. source: "./media/characters/kuiper-vanrel/front.svg",
  9511. extra: 1118 / 1068,
  9512. bottom: 0.09
  9513. }
  9514. },
  9515. foot: {
  9516. height: math.unit(0.55, "meters"),
  9517. name: "Foot",
  9518. image: {
  9519. source: "./media/characters/kuiper-vanrel/foot.svg",
  9520. }
  9521. },
  9522. },
  9523. [
  9524. {
  9525. name: "Normal",
  9526. height: math.unit(7 + 5 / 12, "feet"),
  9527. default: true
  9528. },
  9529. ]
  9530. ))
  9531. characterMakers.push(() => makeCharacter(
  9532. { name: "Keset Vanrel" },
  9533. {
  9534. front: {
  9535. height: math.unit(8 + 5 / 12, "feet"),
  9536. weight: math.unit(150, "lb"),
  9537. name: "Front",
  9538. image: {
  9539. source: "./media/characters/keset-vanrel/front.svg",
  9540. extra: 1150 / 1084,
  9541. bottom: 0.05
  9542. }
  9543. },
  9544. hand: {
  9545. height: math.unit(0.6, "meters"),
  9546. name: "Hand",
  9547. image: {
  9548. source: "./media/characters/keset-vanrel/hand.svg"
  9549. }
  9550. },
  9551. foot: {
  9552. height: math.unit(0.94978, "meters"),
  9553. name: "Foot",
  9554. image: {
  9555. source: "./media/characters/keset-vanrel/foot.svg"
  9556. }
  9557. },
  9558. },
  9559. [
  9560. {
  9561. name: "Normal",
  9562. height: math.unit(8 + 5 / 12, "feet"),
  9563. default: true
  9564. },
  9565. ]
  9566. ))
  9567. characterMakers.push(() => makeCharacter(
  9568. { name: "Neos" },
  9569. {
  9570. front: {
  9571. height: math.unit(6, "feet"),
  9572. weight: math.unit(150, "lb"),
  9573. name: "Front",
  9574. image: {
  9575. source: "./media/characters/neos/front.svg",
  9576. extra: 1696 / 992,
  9577. bottom: 0.14
  9578. }
  9579. },
  9580. },
  9581. [
  9582. {
  9583. name: "Normal",
  9584. height: math.unit(54, "cm"),
  9585. default: true
  9586. },
  9587. {
  9588. name: "Macro",
  9589. height: math.unit(100, "m")
  9590. },
  9591. {
  9592. name: "Megamacro",
  9593. height: math.unit(10, "km")
  9594. },
  9595. {
  9596. name: "Megamacro+",
  9597. height: math.unit(100, "km")
  9598. },
  9599. {
  9600. name: "Gigamacro",
  9601. height: math.unit(100, "Mm")
  9602. },
  9603. {
  9604. name: "Teramacro",
  9605. height: math.unit(100, "Gm")
  9606. },
  9607. {
  9608. name: "Examacro",
  9609. height: math.unit(100, "Em")
  9610. },
  9611. {
  9612. name: "Godly",
  9613. height: math.unit(10000, "Ym")
  9614. },
  9615. {
  9616. name: "Beyond Godly",
  9617. height: math.unit(10000000, "Ym")
  9618. },
  9619. ]
  9620. ))
  9621. characterMakers.push(() => makeCharacter(
  9622. { name: "Sammy Mouse" },
  9623. {
  9624. feminine: {
  9625. height: math.unit(5, "feet"),
  9626. weight: math.unit(100, "lb"),
  9627. name: "Feminine",
  9628. image: {
  9629. source: "./media/characters/sammy-mouse/feminine.svg",
  9630. extra: 2526 / 2425,
  9631. bottom: 0.123
  9632. }
  9633. },
  9634. masculine: {
  9635. height: math.unit(5, "feet"),
  9636. weight: math.unit(100, "lb"),
  9637. name: "Masculine",
  9638. image: {
  9639. source: "./media/characters/sammy-mouse/masculine.svg",
  9640. extra: 2526 / 2425,
  9641. bottom: 0.123
  9642. }
  9643. },
  9644. },
  9645. [
  9646. {
  9647. name: "Micro",
  9648. height: math.unit(5, "inches")
  9649. },
  9650. {
  9651. name: "Normal",
  9652. height: math.unit(5, "feet"),
  9653. default: true
  9654. },
  9655. {
  9656. name: "Macro",
  9657. height: math.unit(60, "feet")
  9658. },
  9659. ]
  9660. ))
  9661. characterMakers.push(() => makeCharacter(
  9662. { name: "Kole" },
  9663. {
  9664. front: {
  9665. height: math.unit(4, "feet"),
  9666. weight: math.unit(50, "lb"),
  9667. name: "Front",
  9668. image: {
  9669. source: "./media/characters/kole/front.svg",
  9670. extra: 1423 / 1303,
  9671. bottom: 0.025
  9672. }
  9673. },
  9674. back: {
  9675. height: math.unit(4, "feet"),
  9676. weight: math.unit(50, "lb"),
  9677. name: "Back",
  9678. image: {
  9679. source: "./media/characters/kole/back.svg",
  9680. extra: 1426 / 1280,
  9681. bottom: 0.02
  9682. }
  9683. },
  9684. },
  9685. [
  9686. {
  9687. name: "Normal",
  9688. height: math.unit(4, "feet"),
  9689. default: true
  9690. },
  9691. ]
  9692. ))
  9693. characterMakers.push(() => makeCharacter(
  9694. { name: "Rufran" },
  9695. {
  9696. front: {
  9697. height: math.unit(2 + 6 / 12, "feet"),
  9698. weight: math.unit(20, "lb"),
  9699. name: "Front",
  9700. image: {
  9701. source: "./media/characters/rufran/front.svg",
  9702. extra: 2041 / 1839,
  9703. bottom: 0.055
  9704. }
  9705. },
  9706. back: {
  9707. height: math.unit(2 + 6 / 12, "feet"),
  9708. weight: math.unit(20, "lb"),
  9709. name: "Back",
  9710. image: {
  9711. source: "./media/characters/rufran/back.svg",
  9712. extra: 2054 / 1839,
  9713. bottom: 0.01
  9714. }
  9715. },
  9716. hand: {
  9717. height: math.unit(0.2166, "meters"),
  9718. name: "Hand",
  9719. image: {
  9720. source: "./media/characters/rufran/hand.svg"
  9721. }
  9722. },
  9723. foot: {
  9724. height: math.unit(0.185, "meters"),
  9725. name: "Foot",
  9726. image: {
  9727. source: "./media/characters/rufran/foot.svg"
  9728. }
  9729. },
  9730. },
  9731. [
  9732. {
  9733. name: "Micro",
  9734. height: math.unit(1, "inch")
  9735. },
  9736. {
  9737. name: "Normal",
  9738. height: math.unit(2 + 6 / 12, "feet"),
  9739. default: true
  9740. },
  9741. {
  9742. name: "Big",
  9743. height: math.unit(60, "feet")
  9744. },
  9745. {
  9746. name: "Macro",
  9747. height: math.unit(325, "feet")
  9748. },
  9749. ]
  9750. ))
  9751. characterMakers.push(() => makeCharacter(
  9752. { name: "Chip" },
  9753. {
  9754. front: {
  9755. height: math.unit(0.3, "meters"),
  9756. weight: math.unit(3.5, "kg"),
  9757. name: "Front",
  9758. image: {
  9759. source: "./media/characters/chip/front.svg",
  9760. extra: 748 / 674
  9761. }
  9762. },
  9763. },
  9764. [
  9765. {
  9766. name: "Micro",
  9767. height: math.unit(1, "inch"),
  9768. default: true
  9769. },
  9770. ]
  9771. ))
  9772. characterMakers.push(() => makeCharacter(
  9773. { name: "Torvid" },
  9774. {
  9775. side: {
  9776. height: math.unit(2.3, "meters"),
  9777. weight: math.unit(3500, "lb"),
  9778. name: "Side",
  9779. image: {
  9780. source: "./media/characters/torvid/side.svg",
  9781. extra: 1972 / 722,
  9782. bottom: 0.035
  9783. }
  9784. },
  9785. },
  9786. [
  9787. {
  9788. name: "Normal",
  9789. height: math.unit(2.3, "meters"),
  9790. default: true
  9791. },
  9792. ]
  9793. ))
  9794. characterMakers.push(() => makeCharacter(
  9795. { name: "Susan" },
  9796. {
  9797. front: {
  9798. height: math.unit(2, "meters"),
  9799. weight: math.unit(150.5, "kg"),
  9800. name: "Front",
  9801. image: {
  9802. source: "./media/characters/susan/front.svg",
  9803. extra: 693 / 635,
  9804. bottom: 0.05
  9805. }
  9806. },
  9807. },
  9808. [
  9809. {
  9810. name: "Megamacro",
  9811. height: math.unit(505, "miles"),
  9812. default: true
  9813. },
  9814. ]
  9815. ))
  9816. characterMakers.push(() => makeCharacter(
  9817. { name: "Raindrops" },
  9818. {
  9819. front: {
  9820. height: math.unit(6, "feet"),
  9821. weight: math.unit(150, "lb"),
  9822. name: "Front",
  9823. image: {
  9824. source: "./media/characters/raindrops/front.svg",
  9825. extra: 2655 / 2461,
  9826. bottom: 0.02
  9827. }
  9828. },
  9829. back: {
  9830. height: math.unit(6, "feet"),
  9831. weight: math.unit(150, "lb"),
  9832. name: "Back",
  9833. image: {
  9834. source: "./media/characters/raindrops/back.svg",
  9835. extra: 2574 / 2400,
  9836. bottom: 0.03
  9837. }
  9838. },
  9839. },
  9840. [
  9841. {
  9842. name: "Micro",
  9843. height: math.unit(6, "inches")
  9844. },
  9845. {
  9846. name: "Normal",
  9847. height: math.unit(6 + 2 / 12, "feet")
  9848. },
  9849. {
  9850. name: "Macro",
  9851. height: math.unit(131, "feet"),
  9852. default: true
  9853. },
  9854. {
  9855. name: "Megamacro",
  9856. height: math.unit(15, "miles")
  9857. },
  9858. {
  9859. name: "Gigamacro",
  9860. height: math.unit(4000, "miles")
  9861. },
  9862. {
  9863. name: "Teramacro",
  9864. height: math.unit(315000, "miles")
  9865. },
  9866. ]
  9867. ))
  9868. characterMakers.push(() => makeCharacter(
  9869. { name: "Tezwa" },
  9870. {
  9871. front: {
  9872. height: math.unit(2.794, "meters"),
  9873. weight: math.unit(325, "kg"),
  9874. name: "Front",
  9875. image: {
  9876. source: "./media/characters/tezwa/front.svg",
  9877. extra: 2083 / 1906,
  9878. bottom: 0.031
  9879. }
  9880. },
  9881. foot: {
  9882. height: math.unit(0.687, "meters"),
  9883. name: "Foot",
  9884. image: {
  9885. source: "./media/characters/tezwa/foot.svg"
  9886. }
  9887. },
  9888. },
  9889. [
  9890. {
  9891. name: "Normal",
  9892. height: math.unit(9 + 2 / 12, "feet"),
  9893. default: true
  9894. },
  9895. ]
  9896. ))
  9897. characterMakers.push(() => makeCharacter(
  9898. { name: "Typhus" },
  9899. {
  9900. front: {
  9901. height: math.unit(58, "feet"),
  9902. weight: math.unit(89000, "lb"),
  9903. name: "Front",
  9904. image: {
  9905. source: "./media/characters/typhus/front.svg",
  9906. extra: 816 / 800,
  9907. bottom: 0.065
  9908. }
  9909. },
  9910. },
  9911. [
  9912. {
  9913. name: "Macro",
  9914. height: math.unit(58, "feet"),
  9915. default: true
  9916. },
  9917. ]
  9918. ))
  9919. characterMakers.push(() => makeCharacter(
  9920. { name: "Lyra Von Wulf" },
  9921. {
  9922. front: {
  9923. height: math.unit(12, "feet"),
  9924. weight: math.unit(6, "tonnes"),
  9925. name: "Front",
  9926. image: {
  9927. source: "./media/characters/lyra-von-wulf/front.svg",
  9928. extra: 1,
  9929. bottom: 0.10
  9930. }
  9931. },
  9932. frontMecha: {
  9933. height: math.unit(12, "feet"),
  9934. weight: math.unit(12, "tonnes"),
  9935. name: "Front (Mecha)",
  9936. image: {
  9937. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  9938. extra: 1,
  9939. bottom: 0.042
  9940. }
  9941. },
  9942. maw: {
  9943. height: math.unit(2.2, "feet"),
  9944. name: "Maw",
  9945. image: {
  9946. source: "./media/characters/lyra-von-wulf/maw.svg"
  9947. }
  9948. },
  9949. },
  9950. [
  9951. {
  9952. name: "Normal",
  9953. height: math.unit(12, "feet"),
  9954. default: true
  9955. },
  9956. {
  9957. name: "Classic",
  9958. height: math.unit(50, "feet")
  9959. },
  9960. {
  9961. name: "Macro",
  9962. height: math.unit(500, "feet")
  9963. },
  9964. {
  9965. name: "Megamacro",
  9966. height: math.unit(1, "mile")
  9967. },
  9968. {
  9969. name: "Gigamacro",
  9970. height: math.unit(400, "miles")
  9971. },
  9972. {
  9973. name: "Teramacro",
  9974. height: math.unit(22000, "miles")
  9975. },
  9976. {
  9977. name: "Solarmacro",
  9978. height: math.unit(8600000, "miles")
  9979. },
  9980. {
  9981. name: "Galactic",
  9982. height: math.unit(1057000, "lightyears")
  9983. },
  9984. ]
  9985. ))
  9986. characterMakers.push(() => makeCharacter(
  9987. { name: "Dixon" },
  9988. {
  9989. front: {
  9990. height: math.unit(6 + 10 / 12, "feet"),
  9991. weight: math.unit(150, "lb"),
  9992. name: "Front",
  9993. image: {
  9994. source: "./media/characters/dixon/front.svg",
  9995. extra: 3361 / 3209,
  9996. bottom: 0.01
  9997. }
  9998. },
  9999. },
  10000. [
  10001. {
  10002. name: "Normal",
  10003. height: math.unit(6 + 10 / 12, "feet"),
  10004. default: true
  10005. },
  10006. {
  10007. name: "Big",
  10008. height: math.unit(12, "meters")
  10009. },
  10010. {
  10011. name: "Macro",
  10012. height: math.unit(500, "meters")
  10013. },
  10014. {
  10015. name: "Megamacro",
  10016. height: math.unit(2, "km")
  10017. },
  10018. ]
  10019. ))
  10020. characterMakers.push(() => makeCharacter(
  10021. { name: "Kauko" },
  10022. {
  10023. front: {
  10024. height: math.unit(185, "cm"),
  10025. weight: math.unit(68, "kg"),
  10026. name: "Front",
  10027. image: {
  10028. source: "./media/characters/kauko/front.svg",
  10029. extra: 1455 / 1421,
  10030. bottom: 0.03
  10031. }
  10032. },
  10033. back: {
  10034. height: math.unit(185, "cm"),
  10035. weight: math.unit(68, "kg"),
  10036. name: "Back",
  10037. image: {
  10038. source: "./media/characters/kauko/back.svg",
  10039. extra: 1455 / 1421,
  10040. bottom: 0.004
  10041. }
  10042. },
  10043. },
  10044. [
  10045. {
  10046. name: "Normal",
  10047. height: math.unit(185, "cm"),
  10048. default: true
  10049. },
  10050. ]
  10051. ))
  10052. characterMakers.push(() => makeCharacter(
  10053. { name: "Varg" },
  10054. {
  10055. front: {
  10056. height: math.unit(6, "feet"),
  10057. weight: math.unit(150, "kg"),
  10058. name: "Front",
  10059. image: {
  10060. source: "./media/characters/varg/front.svg",
  10061. extra: 1108 / 1018,
  10062. bottom: 0.0375
  10063. }
  10064. },
  10065. },
  10066. [
  10067. {
  10068. name: "Normal",
  10069. height: math.unit(5, "meters")
  10070. },
  10071. {
  10072. name: "Macro",
  10073. height: math.unit(200, "meters")
  10074. },
  10075. {
  10076. name: "Megamacro",
  10077. height: math.unit(20, "kilometers")
  10078. },
  10079. {
  10080. name: "True Size",
  10081. height: math.unit(211, "km"),
  10082. default: true
  10083. },
  10084. {
  10085. name: "Gigamacro",
  10086. height: math.unit(1000, "km")
  10087. },
  10088. {
  10089. name: "Gigamacro+",
  10090. height: math.unit(8000, "km")
  10091. },
  10092. {
  10093. name: "Teramacro",
  10094. height: math.unit(1000000, "km")
  10095. },
  10096. ]
  10097. ))
  10098. characterMakers.push(() => makeCharacter(
  10099. { name: "Dayza" },
  10100. {
  10101. front: {
  10102. height: math.unit(7 + 7 / 12, "feet"),
  10103. weight: math.unit(267, "lb"),
  10104. name: "Front",
  10105. image: {
  10106. source: "./media/characters/dayza/front.svg",
  10107. extra: 1262 / 1200,
  10108. bottom: 0.035
  10109. }
  10110. },
  10111. side: {
  10112. height: math.unit(7 + 7 / 12, "feet"),
  10113. weight: math.unit(267, "lb"),
  10114. name: "Side",
  10115. image: {
  10116. source: "./media/characters/dayza/side.svg",
  10117. extra: 1295 / 1245,
  10118. bottom: 0.05
  10119. }
  10120. },
  10121. back: {
  10122. height: math.unit(7 + 7 / 12, "feet"),
  10123. weight: math.unit(267, "lb"),
  10124. name: "Back",
  10125. image: {
  10126. source: "./media/characters/dayza/back.svg",
  10127. extra: 1241 / 1170
  10128. }
  10129. },
  10130. },
  10131. [
  10132. {
  10133. name: "Normal",
  10134. height: math.unit(7 + 7 / 12, "feet"),
  10135. default: true
  10136. },
  10137. {
  10138. name: "Macro",
  10139. height: math.unit(155, "feet")
  10140. },
  10141. ]
  10142. ))
  10143. characterMakers.push(() => makeCharacter(
  10144. { name: "Xanthos" },
  10145. {
  10146. front: {
  10147. height: math.unit(6 + 5 / 12, "feet"),
  10148. weight: math.unit(160, "lb"),
  10149. name: "Front",
  10150. image: {
  10151. source: "./media/characters/xanthos/front.svg",
  10152. extra: 1,
  10153. bottom: 0.04
  10154. }
  10155. },
  10156. back: {
  10157. height: math.unit(6 + 5 / 12, "feet"),
  10158. weight: math.unit(160, "lb"),
  10159. name: "Back",
  10160. image: {
  10161. source: "./media/characters/xanthos/back.svg",
  10162. extra: 1,
  10163. bottom: 0.03
  10164. }
  10165. },
  10166. hand: {
  10167. height: math.unit(0.928, "feet"),
  10168. name: "Hand",
  10169. image: {
  10170. source: "./media/characters/xanthos/hand.svg"
  10171. }
  10172. },
  10173. foot: {
  10174. height: math.unit(1.286, "feet"),
  10175. name: "Foot",
  10176. image: {
  10177. source: "./media/characters/xanthos/foot.svg"
  10178. }
  10179. },
  10180. },
  10181. [
  10182. {
  10183. name: "Normal",
  10184. height: math.unit(6 + 5 / 12, "feet"),
  10185. default: true
  10186. },
  10187. {
  10188. name: "Normal+",
  10189. height: math.unit(6, "meters")
  10190. },
  10191. {
  10192. name: "Macro",
  10193. height: math.unit(40, "feet")
  10194. },
  10195. {
  10196. name: "Macro+",
  10197. height: math.unit(200, "meters")
  10198. },
  10199. {
  10200. name: "Megamacro",
  10201. height: math.unit(20, "km")
  10202. },
  10203. {
  10204. name: "Megamacro+",
  10205. height: math.unit(100, "km")
  10206. },
  10207. ]
  10208. ))
  10209. characterMakers.push(() => makeCharacter(
  10210. { name: "Grynn" },
  10211. {
  10212. front: {
  10213. height: math.unit(6 + 3 / 12, "feet"),
  10214. weight: math.unit(215, "lb"),
  10215. name: "Front",
  10216. image: {
  10217. source: "./media/characters/grynn/front.svg",
  10218. extra: 4627 / 4209,
  10219. bottom: 0.047
  10220. }
  10221. },
  10222. },
  10223. [
  10224. {
  10225. name: "Micro",
  10226. height: math.unit(6, "inches")
  10227. },
  10228. {
  10229. name: "Normal",
  10230. height: math.unit(6 + 3 / 12, "feet"),
  10231. default: true
  10232. },
  10233. {
  10234. name: "Big",
  10235. height: math.unit(104, "feet")
  10236. },
  10237. {
  10238. name: "Macro",
  10239. height: math.unit(944, "feet")
  10240. },
  10241. {
  10242. name: "Macro+",
  10243. height: math.unit(9480, "feet")
  10244. },
  10245. {
  10246. name: "Megamacro",
  10247. height: math.unit(78752, "feet")
  10248. },
  10249. {
  10250. name: "Megamacro+",
  10251. height: math.unit(630128, "feet")
  10252. },
  10253. {
  10254. name: "Megamacro++",
  10255. height: math.unit(3150695, "feet")
  10256. },
  10257. ]
  10258. ))
  10259. characterMakers.push(() => makeCharacter(
  10260. { name: "Mocha Aura" },
  10261. {
  10262. front: {
  10263. height: math.unit(7 + 5 / 12, "feet"),
  10264. weight: math.unit(450, "lb"),
  10265. name: "Front",
  10266. image: {
  10267. source: "./media/characters/mocha-aura/front.svg",
  10268. extra: 1907 / 1817,
  10269. bottom: 0.04
  10270. }
  10271. },
  10272. back: {
  10273. height: math.unit(7 + 5 / 12, "feet"),
  10274. weight: math.unit(450, "lb"),
  10275. name: "Back",
  10276. image: {
  10277. source: "./media/characters/mocha-aura/back.svg",
  10278. extra: 1900 / 1825,
  10279. bottom: 0.045
  10280. }
  10281. },
  10282. },
  10283. [
  10284. {
  10285. name: "Nano",
  10286. height: math.unit(1, "nm")
  10287. },
  10288. {
  10289. name: "Megamicro",
  10290. height: math.unit(1, "mm")
  10291. },
  10292. {
  10293. name: "Micro",
  10294. height: math.unit(3, "inches")
  10295. },
  10296. {
  10297. name: "Normal",
  10298. height: math.unit(7 + 5 / 12, "feet"),
  10299. default: true
  10300. },
  10301. {
  10302. name: "Macro",
  10303. height: math.unit(30, "feet")
  10304. },
  10305. {
  10306. name: "Megamacro",
  10307. height: math.unit(3500, "feet")
  10308. },
  10309. {
  10310. name: "Teramacro",
  10311. height: math.unit(500000, "miles")
  10312. },
  10313. {
  10314. name: "Petamacro",
  10315. height: math.unit(50000000000000000, "parsecs")
  10316. },
  10317. ]
  10318. ))
  10319. characterMakers.push(() => makeCharacter(
  10320. { name: "Ilisha Devya" },
  10321. {
  10322. front: {
  10323. height: math.unit(6, "feet"),
  10324. weight: math.unit(150, "lb"),
  10325. name: "Front",
  10326. image: {
  10327. source: "./media/characters/ilisha-devya/front.svg",
  10328. extra: 1,
  10329. bottom: 0.175
  10330. }
  10331. },
  10332. back: {
  10333. height: math.unit(6, "feet"),
  10334. weight: math.unit(150, "lb"),
  10335. name: "Back",
  10336. image: {
  10337. source: "./media/characters/ilisha-devya/back.svg",
  10338. extra: 1,
  10339. bottom: 0.015
  10340. }
  10341. },
  10342. },
  10343. [
  10344. {
  10345. name: "Macro",
  10346. height: math.unit(500, "feet"),
  10347. default: true
  10348. },
  10349. {
  10350. name: "Megamacro",
  10351. height: math.unit(10, "miles")
  10352. },
  10353. {
  10354. name: "Gigamacro",
  10355. height: math.unit(100000, "miles")
  10356. },
  10357. {
  10358. name: "Examacro",
  10359. height: math.unit(1e9, "lightyears")
  10360. },
  10361. {
  10362. name: "Omniversal",
  10363. height: math.unit(1e33, "lightyears")
  10364. },
  10365. {
  10366. name: "Beyond Infinite",
  10367. height: math.unit(1e100, "lightyears")
  10368. },
  10369. ]
  10370. ))
  10371. characterMakers.push(() => makeCharacter(
  10372. { name: "Mira" },
  10373. {
  10374. Side: {
  10375. height: math.unit(6, "feet"),
  10376. weight: math.unit(150, "lb"),
  10377. name: "Side",
  10378. image: {
  10379. source: "./media/characters/mira/side.svg",
  10380. extra: 900 / 799,
  10381. bottom: 0.02
  10382. }
  10383. },
  10384. },
  10385. [
  10386. {
  10387. name: "Human Size",
  10388. height: math.unit(6, "feet")
  10389. },
  10390. {
  10391. name: "Macro",
  10392. height: math.unit(100, "feet"),
  10393. default: true
  10394. },
  10395. {
  10396. name: "Megamacro",
  10397. height: math.unit(10, "miles")
  10398. },
  10399. {
  10400. name: "Gigamacro",
  10401. height: math.unit(25000, "miles")
  10402. },
  10403. {
  10404. name: "Teramacro",
  10405. height: math.unit(300, "AU")
  10406. },
  10407. {
  10408. name: "Full Size",
  10409. height: math.unit(4.5e10, "lightyears")
  10410. },
  10411. ]
  10412. ))
  10413. characterMakers.push(() => makeCharacter(
  10414. { name: "Holly" },
  10415. {
  10416. front: {
  10417. height: math.unit(6, "feet"),
  10418. weight: math.unit(150, "lb"),
  10419. name: "Front",
  10420. image: {
  10421. source: "./media/characters/holly/front.svg",
  10422. extra: 639 / 606
  10423. }
  10424. },
  10425. back: {
  10426. height: math.unit(6, "feet"),
  10427. weight: math.unit(150, "lb"),
  10428. name: "Back",
  10429. image: {
  10430. source: "./media/characters/holly/back.svg",
  10431. extra: 623 / 598
  10432. }
  10433. },
  10434. frontWorking: {
  10435. height: math.unit(6, "feet"),
  10436. weight: math.unit(150, "lb"),
  10437. name: "Front (Working)",
  10438. image: {
  10439. source: "./media/characters/holly/front-working.svg",
  10440. extra: 607 / 577,
  10441. bottom: 0.048
  10442. }
  10443. },
  10444. },
  10445. [
  10446. {
  10447. name: "Normal",
  10448. height: math.unit(12 + 3 / 12, "feet"),
  10449. default: true
  10450. },
  10451. ]
  10452. ))
  10453. characterMakers.push(() => makeCharacter(
  10454. { name: "Porter" },
  10455. {
  10456. front: {
  10457. height: math.unit(6, "feet"),
  10458. weight: math.unit(150, "lb"),
  10459. name: "Front",
  10460. image: {
  10461. source: "./media/characters/porter/front.svg",
  10462. extra: 1,
  10463. bottom: 0.01
  10464. }
  10465. },
  10466. frontRobes: {
  10467. height: math.unit(6, "feet"),
  10468. weight: math.unit(150, "lb"),
  10469. name: "Front (Robes)",
  10470. image: {
  10471. source: "./media/characters/porter/front-robes.svg",
  10472. extra: 1.01,
  10473. bottom: 0.01
  10474. }
  10475. },
  10476. },
  10477. [
  10478. {
  10479. name: "Normal",
  10480. height: math.unit(11 + 9 / 12, "feet"),
  10481. default: true
  10482. },
  10483. ]
  10484. ))
  10485. characterMakers.push(() => makeCharacter(
  10486. { name: "Lucy" },
  10487. {
  10488. legendary: {
  10489. height: math.unit(6, "feet"),
  10490. weight: math.unit(150, "lb"),
  10491. name: "Legendary",
  10492. image: {
  10493. source: "./media/characters/lucy/legendary.svg",
  10494. extra: 1355 / 1100,
  10495. bottom: 0.045
  10496. }
  10497. },
  10498. },
  10499. [
  10500. {
  10501. name: "Legendary",
  10502. height: math.unit(86882 * 2, "miles"),
  10503. default: true
  10504. },
  10505. ]
  10506. ))
  10507. characterMakers.push(() => makeCharacter(
  10508. { name: "Drusilla" },
  10509. {
  10510. front: {
  10511. height: math.unit(6, "feet"),
  10512. weight: math.unit(150, "lb"),
  10513. name: "Front",
  10514. image: {
  10515. source: "./media/characters/drusilla/front.svg",
  10516. extra: 678 / 635,
  10517. bottom: 0.03
  10518. }
  10519. },
  10520. back: {
  10521. height: math.unit(6, "feet"),
  10522. weight: math.unit(150, "lb"),
  10523. name: "Back",
  10524. image: {
  10525. source: "./media/characters/drusilla/back.svg",
  10526. extra: 678 / 635,
  10527. bottom: 0.005
  10528. }
  10529. },
  10530. },
  10531. [
  10532. {
  10533. name: "Macro",
  10534. height: math.unit(100, "feet")
  10535. },
  10536. {
  10537. name: "Canon Height",
  10538. height: math.unit(2000, "feet"),
  10539. default: true
  10540. },
  10541. ]
  10542. ))
  10543. characterMakers.push(() => makeCharacter(
  10544. { name: "Renard Thatch" },
  10545. {
  10546. front: {
  10547. height: math.unit(6, "feet"),
  10548. weight: math.unit(180, "lb"),
  10549. name: "Front",
  10550. image: {
  10551. source: "./media/characters/renard-thatch/front.svg",
  10552. extra: 2411 / 2275,
  10553. bottom: 0.01
  10554. }
  10555. },
  10556. frontPosing: {
  10557. height: math.unit(6, "feet"),
  10558. weight: math.unit(180, "lb"),
  10559. name: "Front (Posing)",
  10560. image: {
  10561. source: "./media/characters/renard-thatch/front-posing.svg",
  10562. extra: 2381 / 2261,
  10563. bottom: 0.01
  10564. }
  10565. },
  10566. back: {
  10567. height: math.unit(6, "feet"),
  10568. weight: math.unit(180, "lb"),
  10569. name: "Back",
  10570. image: {
  10571. source: "./media/characters/renard-thatch/back.svg",
  10572. extra: 2428 / 2288
  10573. }
  10574. },
  10575. },
  10576. [
  10577. {
  10578. name: "Micro",
  10579. height: math.unit(3, "inches")
  10580. },
  10581. {
  10582. name: "Default",
  10583. height: math.unit(6, "feet"),
  10584. default: true
  10585. },
  10586. {
  10587. name: "Macro",
  10588. height: math.unit(75, "feet")
  10589. },
  10590. ]
  10591. ))
  10592. characterMakers.push(() => makeCharacter(
  10593. { name: "Sekvra" },
  10594. {
  10595. front: {
  10596. height: math.unit(1450, "feet"),
  10597. weight: math.unit(1.21e6, "tons"),
  10598. name: "Front",
  10599. image: {
  10600. source: "./media/characters/sekvra/front.svg",
  10601. extra: 1,
  10602. bottom: 0.03
  10603. }
  10604. },
  10605. frontClothed: {
  10606. height: math.unit(1450, "feet"),
  10607. weight: math.unit(1.21e6, "tons"),
  10608. name: "Front (Clothed)",
  10609. image: {
  10610. source: "./media/characters/sekvra/front-clothed.svg",
  10611. extra: 1,
  10612. bottom: 0.03
  10613. }
  10614. },
  10615. side: {
  10616. height: math.unit(1450, "feet"),
  10617. weight: math.unit(1.21e6, "tons"),
  10618. name: "Side",
  10619. image: {
  10620. source: "./media/characters/sekvra/side.svg",
  10621. extra: 1,
  10622. bottom: 0.025
  10623. }
  10624. },
  10625. back: {
  10626. height: math.unit(1450, "feet"),
  10627. weight: math.unit(1.21e6, "tons"),
  10628. name: "Back",
  10629. image: {
  10630. source: "./media/characters/sekvra/back.svg",
  10631. extra: 1,
  10632. bottom: 0.005
  10633. }
  10634. },
  10635. },
  10636. [
  10637. {
  10638. name: "Macro",
  10639. height: math.unit(1450, "feet"),
  10640. default: true
  10641. },
  10642. {
  10643. name: "Megamacro",
  10644. height: math.unit(15000, "feet")
  10645. },
  10646. ]
  10647. ))
  10648. characterMakers.push(() => makeCharacter(
  10649. { name: "Carmine" },
  10650. {
  10651. front: {
  10652. height: math.unit(6, "feet"),
  10653. weight: math.unit(150, "lb"),
  10654. name: "Front",
  10655. image: {
  10656. source: "./media/characters/carmine/front.svg",
  10657. extra: 1,
  10658. bottom: 0.035
  10659. }
  10660. },
  10661. frontArmor: {
  10662. height: math.unit(6, "feet"),
  10663. weight: math.unit(150, "lb"),
  10664. name: "Front (Armor)",
  10665. image: {
  10666. source: "./media/characters/carmine/front-armor.svg",
  10667. extra: 1,
  10668. bottom: 0.035
  10669. }
  10670. },
  10671. },
  10672. [
  10673. {
  10674. name: "Large",
  10675. height: math.unit(1, "mile")
  10676. },
  10677. {
  10678. name: "Huge",
  10679. height: math.unit(40, "miles"),
  10680. default: true
  10681. },
  10682. {
  10683. name: "Colossal",
  10684. height: math.unit(2500, "miles")
  10685. },
  10686. ]
  10687. ))
  10688. characterMakers.push(() => makeCharacter(
  10689. { name: "Elyssia" },
  10690. {
  10691. front: {
  10692. height: math.unit(6, "feet"),
  10693. weight: math.unit(150, "lb"),
  10694. name: "Front",
  10695. image: {
  10696. source: "./media/characters/elyssia/front.svg",
  10697. extra: 2201 / 2035,
  10698. bottom: 0.05
  10699. }
  10700. },
  10701. frontClothed: {
  10702. height: math.unit(6, "feet"),
  10703. weight: math.unit(150, "lb"),
  10704. name: "Front (Clothed)",
  10705. image: {
  10706. source: "./media/characters/elyssia/front-clothed.svg",
  10707. extra: 2201 / 2035,
  10708. bottom: 0.05
  10709. }
  10710. },
  10711. back: {
  10712. height: math.unit(6, "feet"),
  10713. weight: math.unit(150, "lb"),
  10714. name: "Back",
  10715. image: {
  10716. source: "./media/characters/elyssia/back.svg",
  10717. extra: 2201 / 2035,
  10718. bottom: 0.013
  10719. }
  10720. },
  10721. },
  10722. [
  10723. {
  10724. name: "Smaller",
  10725. height: math.unit(150, "feet")
  10726. },
  10727. {
  10728. name: "Standard",
  10729. height: math.unit(1400, "feet"),
  10730. default: true
  10731. },
  10732. {
  10733. name: "Distracted",
  10734. height: math.unit(15000, "feet")
  10735. },
  10736. ]
  10737. ))
  10738. characterMakers.push(() => makeCharacter(
  10739. { name: "Geno Maxwell" },
  10740. {
  10741. front: {
  10742. height: math.unit(7 + 4 / 12, "feet"),
  10743. weight: math.unit(500, "lb"),
  10744. name: "Front",
  10745. image: {
  10746. source: "./media/characters/geno-maxwell/front.svg",
  10747. extra: 2207 / 2040,
  10748. bottom: 0.015
  10749. }
  10750. },
  10751. },
  10752. [
  10753. {
  10754. name: "Micro",
  10755. height: math.unit(3, "inches")
  10756. },
  10757. {
  10758. name: "Normal",
  10759. height: math.unit(7 + 4 / 12, "feet"),
  10760. default: true
  10761. },
  10762. {
  10763. name: "Macro",
  10764. height: math.unit(220, "feet")
  10765. },
  10766. {
  10767. name: "Megamacro",
  10768. height: math.unit(11, "miles")
  10769. },
  10770. ]
  10771. ))
  10772. characterMakers.push(() => makeCharacter(
  10773. { name: "Regena Maxwell" },
  10774. {
  10775. front: {
  10776. height: math.unit(7 + 4 / 12, "feet"),
  10777. weight: math.unit(500, "lb"),
  10778. name: "Front",
  10779. image: {
  10780. source: "./media/characters/regena-maxwell/front.svg",
  10781. extra: 3115 / 2770,
  10782. bottom: 0.02
  10783. }
  10784. },
  10785. },
  10786. [
  10787. {
  10788. name: "Normal",
  10789. height: math.unit(7 + 4 / 12, "feet"),
  10790. default: true
  10791. },
  10792. {
  10793. name: "Macro",
  10794. height: math.unit(220, "feet")
  10795. },
  10796. {
  10797. name: "Megamacro",
  10798. height: math.unit(11, "miles")
  10799. },
  10800. ]
  10801. ))
  10802. characterMakers.push(() => makeCharacter(
  10803. { name: "XGlidingDragonX" },
  10804. {
  10805. front: {
  10806. height: math.unit(6, "feet"),
  10807. weight: math.unit(150, "lb"),
  10808. name: "Front",
  10809. image: {
  10810. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10811. extra: 860 / 690,
  10812. bottom: 0.03
  10813. }
  10814. },
  10815. },
  10816. [
  10817. {
  10818. name: "Normal",
  10819. height: math.unit(1.7, "meters"),
  10820. default: true
  10821. },
  10822. ]
  10823. ))
  10824. characterMakers.push(() => makeCharacter(
  10825. { name: "Quilly" },
  10826. {
  10827. front: {
  10828. height: math.unit(6, "feet"),
  10829. weight: math.unit(150, "lb"),
  10830. name: "Front",
  10831. image: {
  10832. source: "./media/characters/quilly/front.svg",
  10833. extra: 890 / 776
  10834. }
  10835. },
  10836. },
  10837. [
  10838. {
  10839. name: "Gigamacro",
  10840. height: math.unit(404090, "miles"),
  10841. default: true
  10842. },
  10843. ]
  10844. ))
  10845. characterMakers.push(() => makeCharacter(
  10846. { name: "Tempest" },
  10847. {
  10848. front: {
  10849. height: math.unit(7 + 8 / 12, "feet"),
  10850. weight: math.unit(350, "lb"),
  10851. name: "Front",
  10852. image: {
  10853. source: "./media/characters/tempest/front.svg",
  10854. extra: 1175 / 1086,
  10855. bottom: 0.02
  10856. }
  10857. },
  10858. },
  10859. [
  10860. {
  10861. name: "Normal",
  10862. height: math.unit(7 + 8 / 12, "feet"),
  10863. default: true
  10864. },
  10865. ]
  10866. ))
  10867. characterMakers.push(() => makeCharacter(
  10868. { name: "Rodger" },
  10869. {
  10870. side: {
  10871. height: math.unit(4 + 5 / 12, "feet"),
  10872. weight: math.unit(80, "lb"),
  10873. name: "Side",
  10874. image: {
  10875. source: "./media/characters/rodger/side.svg",
  10876. extra: 1235 / 1118
  10877. }
  10878. },
  10879. },
  10880. [
  10881. {
  10882. name: "Micro",
  10883. height: math.unit(1, "inch")
  10884. },
  10885. {
  10886. name: "Normal",
  10887. height: math.unit(4 + 5 / 12, "feet"),
  10888. default: true
  10889. },
  10890. {
  10891. name: "Macro",
  10892. height: math.unit(120, "feet")
  10893. },
  10894. ]
  10895. ))
  10896. characterMakers.push(() => makeCharacter(
  10897. { name: "Danyel" },
  10898. {
  10899. front: {
  10900. height: math.unit(6, "feet"),
  10901. weight: math.unit(150, "lb"),
  10902. name: "Front",
  10903. image: {
  10904. source: "./media/characters/danyel/front.svg",
  10905. extra: 1185 / 1123,
  10906. bottom: 0.05
  10907. }
  10908. },
  10909. },
  10910. [
  10911. {
  10912. name: "Shrunken",
  10913. height: math.unit(0.5, "mm")
  10914. },
  10915. {
  10916. name: "Micro",
  10917. height: math.unit(1, "mm"),
  10918. default: true
  10919. },
  10920. {
  10921. name: "Upsized",
  10922. height: math.unit(5 + 5 / 12, "feet")
  10923. },
  10924. ]
  10925. ))
  10926. characterMakers.push(() => makeCharacter(
  10927. { name: "Vivian Bijoux" },
  10928. {
  10929. front: {
  10930. height: math.unit(5 + 6 / 12, "feet"),
  10931. weight: math.unit(200, "lb"),
  10932. name: "Front",
  10933. image: {
  10934. source: "./media/characters/vivian-bijoux/front.svg",
  10935. extra: 1,
  10936. bottom: 0.072
  10937. }
  10938. },
  10939. },
  10940. [
  10941. {
  10942. name: "Normal",
  10943. height: math.unit(5 + 6 / 12, "feet"),
  10944. default: true
  10945. },
  10946. {
  10947. name: "Bad Dream",
  10948. height: math.unit(500, "feet")
  10949. },
  10950. {
  10951. name: "Nightmare",
  10952. height: math.unit(500, "miles")
  10953. },
  10954. ]
  10955. ))
  10956. characterMakers.push(() => makeCharacter(
  10957. { name: "Zeta" },
  10958. {
  10959. front: {
  10960. height: math.unit(6 + 1 / 12, "feet"),
  10961. weight: math.unit(260, "lb"),
  10962. name: "Front",
  10963. image: {
  10964. source: "./media/characters/zeta/front.svg",
  10965. extra: 1968 / 1889,
  10966. bottom: 0.06
  10967. }
  10968. },
  10969. back: {
  10970. height: math.unit(6 + 1 / 12, "feet"),
  10971. weight: math.unit(260, "lb"),
  10972. name: "Back",
  10973. image: {
  10974. source: "./media/characters/zeta/back.svg",
  10975. extra: 1944 / 1858,
  10976. bottom: 0.03
  10977. }
  10978. },
  10979. hand: {
  10980. height: math.unit(1.112, "feet"),
  10981. name: "Hand",
  10982. image: {
  10983. source: "./media/characters/zeta/hand.svg"
  10984. }
  10985. },
  10986. foot: {
  10987. height: math.unit(1.48, "feet"),
  10988. name: "Foot",
  10989. image: {
  10990. source: "./media/characters/zeta/foot.svg"
  10991. }
  10992. },
  10993. },
  10994. [
  10995. {
  10996. name: "Micro",
  10997. height: math.unit(6, "inches")
  10998. },
  10999. {
  11000. name: "Normal",
  11001. height: math.unit(6 + 1 / 12, "feet"),
  11002. default: true
  11003. },
  11004. {
  11005. name: "Macro",
  11006. height: math.unit(20, "feet")
  11007. },
  11008. ]
  11009. ))
  11010. characterMakers.push(() => makeCharacter(
  11011. { name: "Jamie Larsen" },
  11012. {
  11013. front: {
  11014. height: math.unit(6, "feet"),
  11015. weight: math.unit(150, "lb"),
  11016. name: "Front",
  11017. image: {
  11018. source: "./media/characters/jamie-larsen/front.svg",
  11019. extra: 962 / 933,
  11020. bottom: 0.02
  11021. }
  11022. },
  11023. back: {
  11024. height: math.unit(6, "feet"),
  11025. weight: math.unit(150, "lb"),
  11026. name: "Back",
  11027. image: {
  11028. source: "./media/characters/jamie-larsen/back.svg",
  11029. extra: 997 / 946
  11030. }
  11031. },
  11032. },
  11033. [
  11034. {
  11035. name: "Macro",
  11036. height: math.unit(28 + 7 / 12, "feet"),
  11037. default: true
  11038. },
  11039. {
  11040. name: "Macro+",
  11041. height: math.unit(180, "feet")
  11042. },
  11043. {
  11044. name: "Megamacro",
  11045. height: math.unit(10, "miles")
  11046. },
  11047. {
  11048. name: "Gigamacro",
  11049. height: math.unit(200000, "miles")
  11050. },
  11051. ]
  11052. ))
  11053. characterMakers.push(() => makeCharacter(
  11054. { name: "Vance" },
  11055. {
  11056. front: {
  11057. height: math.unit(6, "feet"),
  11058. weight: math.unit(120, "lb"),
  11059. name: "Front",
  11060. image: {
  11061. source: "./media/characters/vance/front.svg",
  11062. extra: 1980 / 1890,
  11063. bottom: 0.09
  11064. }
  11065. },
  11066. back: {
  11067. height: math.unit(6, "feet"),
  11068. weight: math.unit(120, "lb"),
  11069. name: "Back",
  11070. image: {
  11071. source: "./media/characters/vance/back.svg",
  11072. extra: 2081 / 1994,
  11073. bottom: 0.014
  11074. }
  11075. },
  11076. hand: {
  11077. height: math.unit(0.88, "feet"),
  11078. name: "Hand",
  11079. image: {
  11080. source: "./media/characters/vance/hand.svg"
  11081. }
  11082. },
  11083. foot: {
  11084. height: math.unit(0.64, "feet"),
  11085. name: "Foot",
  11086. image: {
  11087. source: "./media/characters/vance/foot.svg"
  11088. }
  11089. },
  11090. },
  11091. [
  11092. {
  11093. name: "Small",
  11094. height: math.unit(90, "feet"),
  11095. default: true
  11096. },
  11097. {
  11098. name: "Macro",
  11099. height: math.unit(100, "meters")
  11100. },
  11101. {
  11102. name: "Megamacro",
  11103. height: math.unit(15, "miles")
  11104. },
  11105. ]
  11106. ))
  11107. characterMakers.push(() => makeCharacter(
  11108. { name: "Xochitl" },
  11109. {
  11110. front: {
  11111. height: math.unit(6, "feet"),
  11112. weight: math.unit(180, "lb"),
  11113. name: "Front",
  11114. image: {
  11115. source: "./media/characters/xochitl/front.svg",
  11116. extra: 2297 / 2261,
  11117. bottom: 0.065
  11118. }
  11119. },
  11120. back: {
  11121. height: math.unit(6, "feet"),
  11122. weight: math.unit(180, "lb"),
  11123. name: "Back",
  11124. image: {
  11125. source: "./media/characters/xochitl/back.svg",
  11126. extra: 2386 / 2354,
  11127. bottom: 0.01
  11128. }
  11129. },
  11130. foot: {
  11131. height: math.unit(6 / 5 * 1.15, "feet"),
  11132. weight: math.unit(150, "lb"),
  11133. name: "Foot",
  11134. image: {
  11135. source: "./media/characters/xochitl/foot.svg"
  11136. }
  11137. },
  11138. },
  11139. [
  11140. {
  11141. name: "Macro",
  11142. height: math.unit(80, "feet")
  11143. },
  11144. {
  11145. name: "Macro+",
  11146. height: math.unit(400, "feet"),
  11147. default: true
  11148. },
  11149. {
  11150. name: "Gigamacro",
  11151. height: math.unit(80000, "miles")
  11152. },
  11153. {
  11154. name: "Gigamacro+",
  11155. height: math.unit(400000, "miles")
  11156. },
  11157. {
  11158. name: "Teramacro",
  11159. height: math.unit(300, "AU")
  11160. },
  11161. ]
  11162. ))
  11163. characterMakers.push(() => makeCharacter(
  11164. { name: "Vincent" },
  11165. {
  11166. front: {
  11167. height: math.unit(6, "feet"),
  11168. weight: math.unit(150, "lb"),
  11169. name: "Front",
  11170. image: {
  11171. source: "./media/characters/vincent/front.svg",
  11172. extra: 1130 / 1080,
  11173. bottom: 0.055
  11174. }
  11175. },
  11176. beak: {
  11177. height: math.unit(6 * 0.1, "feet"),
  11178. name: "Beak",
  11179. image: {
  11180. source: "./media/characters/vincent/beak.svg"
  11181. }
  11182. },
  11183. hand: {
  11184. height: math.unit(6 * 0.85, "feet"),
  11185. weight: math.unit(150, "lb"),
  11186. name: "Hand",
  11187. image: {
  11188. source: "./media/characters/vincent/hand.svg"
  11189. }
  11190. },
  11191. foot: {
  11192. height: math.unit(6 * 0.19, "feet"),
  11193. weight: math.unit(150, "lb"),
  11194. name: "Foot",
  11195. image: {
  11196. source: "./media/characters/vincent/foot.svg"
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Base",
  11203. height: math.unit(6 + 5 / 12, "feet"),
  11204. default: true
  11205. },
  11206. {
  11207. name: "Macro",
  11208. height: math.unit(300, "feet")
  11209. },
  11210. {
  11211. name: "Megamacro",
  11212. height: math.unit(2, "miles")
  11213. },
  11214. {
  11215. name: "Gigamacro",
  11216. height: math.unit(1000, "miles")
  11217. },
  11218. ]
  11219. ))
  11220. characterMakers.push(() => makeCharacter(
  11221. { name: "Jay" },
  11222. {
  11223. front: {
  11224. height: math.unit(6 + 2 / 12, "feet"),
  11225. weight: math.unit(65, "lb"),
  11226. name: "Front",
  11227. image: {
  11228. source: "./media/characters/jay/front.svg",
  11229. extra: 1510 / 1430,
  11230. bottom: 0.042
  11231. }
  11232. },
  11233. back: {
  11234. height: math.unit(6 + 2 / 12, "feet"),
  11235. weight: math.unit(65, "lb"),
  11236. name: "Back",
  11237. image: {
  11238. source: "./media/characters/jay/back.svg",
  11239. extra: 1510 / 1430,
  11240. bottom: 0.025
  11241. }
  11242. },
  11243. clothed: {
  11244. height: math.unit(6 + 2 / 12, "feet"),
  11245. weight: math.unit(65, "lb"),
  11246. name: "Front (Clothed)",
  11247. image: {
  11248. source: "./media/characters/jay/clothed.svg",
  11249. extra: 744 / 699,
  11250. bottom: 0.043
  11251. }
  11252. },
  11253. },
  11254. [
  11255. {
  11256. name: "Micro",
  11257. height: math.unit(1, "inch")
  11258. },
  11259. {
  11260. name: "Normal",
  11261. height: math.unit(6 + 2 / 12, "feet"),
  11262. default: true
  11263. },
  11264. {
  11265. name: "Macro",
  11266. height: math.unit(1, "mile")
  11267. },
  11268. {
  11269. name: "Megamacro",
  11270. height: math.unit(100, "miles")
  11271. },
  11272. ]
  11273. ))
  11274. characterMakers.push(() => makeCharacter(
  11275. { name: "Coatl" },
  11276. {
  11277. front: {
  11278. height: math.unit(2, "meters"),
  11279. weight: math.unit(500, "kg"),
  11280. name: "Front",
  11281. image: {
  11282. source: "./media/characters/coatl/front.svg",
  11283. extra: 3948 / 3500,
  11284. bottom: 0.082
  11285. }
  11286. },
  11287. },
  11288. [
  11289. {
  11290. name: "Normal",
  11291. height: math.unit(4, "meters")
  11292. },
  11293. {
  11294. name: "Macro",
  11295. height: math.unit(100, "meters"),
  11296. default: true
  11297. },
  11298. {
  11299. name: "Macro+",
  11300. height: math.unit(300, "meters")
  11301. },
  11302. {
  11303. name: "Megamacro",
  11304. height: math.unit(3, "gigameters")
  11305. },
  11306. {
  11307. name: "Megamacro+",
  11308. height: math.unit(300, "terameters")
  11309. },
  11310. {
  11311. name: "Megamacro++",
  11312. height: math.unit(3, "lightyears")
  11313. },
  11314. ]
  11315. ))
  11316. characterMakers.push(() => makeCharacter(
  11317. { name: "Shiroryu" },
  11318. {
  11319. front: {
  11320. height: math.unit(6, "feet"),
  11321. weight: math.unit(50, "kg"),
  11322. name: "front",
  11323. image: {
  11324. source: "./media/characters/shiroryu/front.svg",
  11325. extra: 1990 / 1935
  11326. }
  11327. },
  11328. },
  11329. [
  11330. {
  11331. name: "Mortal Mingling",
  11332. height: math.unit(3, "meters")
  11333. },
  11334. {
  11335. name: "Kaiju-ish",
  11336. height: math.unit(250, "meters")
  11337. },
  11338. {
  11339. name: "Somewhat Godly",
  11340. height: math.unit(400, "km"),
  11341. default: true
  11342. },
  11343. {
  11344. name: "Planetary",
  11345. height: math.unit(300, "megameters")
  11346. },
  11347. {
  11348. name: "Galaxy-dwarfing",
  11349. height: math.unit(450, "kiloparsecs")
  11350. },
  11351. {
  11352. name: "Universe Eater",
  11353. height: math.unit(150, "gigaparsecs")
  11354. },
  11355. {
  11356. name: "Almost Immeasurable",
  11357. height: math.unit(1.3e266, "yottaparsecs")
  11358. },
  11359. ]
  11360. ))
  11361. characterMakers.push(() => makeCharacter(
  11362. { name: "Umeko" },
  11363. {
  11364. front: {
  11365. height: math.unit(6, "feet"),
  11366. weight: math.unit(150, "lb"),
  11367. name: "Front",
  11368. image: {
  11369. source: "./media/characters/umeko/front.svg",
  11370. extra: 1,
  11371. bottom: 0.019
  11372. }
  11373. },
  11374. frontArmored: {
  11375. height: math.unit(6, "feet"),
  11376. weight: math.unit(150, "lb"),
  11377. name: "Front (Armored)",
  11378. image: {
  11379. source: "./media/characters/umeko/front-armored.svg",
  11380. extra: 1,
  11381. bottom: 0.021
  11382. }
  11383. },
  11384. },
  11385. [
  11386. {
  11387. name: "Macro",
  11388. height: math.unit(220, "feet"),
  11389. default: true
  11390. },
  11391. {
  11392. name: "Guardian Dragon",
  11393. height: math.unit(50, "miles")
  11394. },
  11395. {
  11396. name: "Cosmic",
  11397. height: math.unit(800000, "miles")
  11398. },
  11399. ]
  11400. ))
  11401. characterMakers.push(() => makeCharacter(
  11402. { name: "Cassidy" },
  11403. {
  11404. front: {
  11405. height: math.unit(6, "feet"),
  11406. weight: math.unit(150, "lb"),
  11407. name: "Front",
  11408. image: {
  11409. source: "./media/characters/cassidy/front.svg",
  11410. extra: 1,
  11411. bottom: 0.043
  11412. }
  11413. },
  11414. },
  11415. [
  11416. {
  11417. name: "Canon Height",
  11418. height: math.unit(120, "feet"),
  11419. default: true
  11420. },
  11421. {
  11422. name: "Macro+",
  11423. height: math.unit(400, "feet")
  11424. },
  11425. {
  11426. name: "Macro++",
  11427. height: math.unit(4000, "feet")
  11428. },
  11429. {
  11430. name: "Megamacro",
  11431. height: math.unit(3, "miles")
  11432. },
  11433. ]
  11434. ))
  11435. characterMakers.push(() => makeCharacter(
  11436. { name: "Isaac" },
  11437. {
  11438. front: {
  11439. height: math.unit(6, "feet"),
  11440. weight: math.unit(150, "lb"),
  11441. name: "Front",
  11442. image: {
  11443. source: "./media/characters/isaac/front.svg",
  11444. extra: 896 / 815,
  11445. bottom: 0.11
  11446. }
  11447. },
  11448. },
  11449. [
  11450. {
  11451. name: "Human Size",
  11452. height: math.unit(8, "feet"),
  11453. default: true
  11454. },
  11455. {
  11456. name: "Macro",
  11457. height: math.unit(400, "feet")
  11458. },
  11459. {
  11460. name: "Megamacro",
  11461. height: math.unit(50, "miles")
  11462. },
  11463. {
  11464. name: "Canon Height",
  11465. height: math.unit(200, "AU")
  11466. },
  11467. ]
  11468. ))
  11469. characterMakers.push(() => makeCharacter(
  11470. { name: "Sleekit" },
  11471. {
  11472. front: {
  11473. height: math.unit(6, "feet"),
  11474. weight: math.unit(72, "kg"),
  11475. name: "Front",
  11476. image: {
  11477. source: "./media/characters/sleekit/front.svg",
  11478. extra: 4693 / 4487,
  11479. bottom: 0.012
  11480. }
  11481. },
  11482. },
  11483. [
  11484. {
  11485. name: "Minimum Height",
  11486. height: math.unit(10, "meters")
  11487. },
  11488. {
  11489. name: "Smaller",
  11490. height: math.unit(25, "meters")
  11491. },
  11492. {
  11493. name: "Larger",
  11494. height: math.unit(38, "meters"),
  11495. default: true
  11496. },
  11497. {
  11498. name: "Maximum height",
  11499. height: math.unit(100, "meters")
  11500. },
  11501. ]
  11502. ))
  11503. characterMakers.push(() => makeCharacter(
  11504. { name: "Nillia" },
  11505. {
  11506. front: {
  11507. height: math.unit(6, "feet"),
  11508. weight: math.unit(150, "lb"),
  11509. name: "Front",
  11510. image: {
  11511. source: "./media/characters/nillia/front.svg",
  11512. extra: 2195 / 2037,
  11513. bottom: 0.005
  11514. }
  11515. },
  11516. back: {
  11517. height: math.unit(6, "feet"),
  11518. weight: math.unit(150, "lb"),
  11519. name: "Back",
  11520. image: {
  11521. source: "./media/characters/nillia/back.svg",
  11522. extra: 2195 / 2037,
  11523. bottom: 0.005
  11524. }
  11525. },
  11526. },
  11527. [
  11528. {
  11529. name: "Canon Height",
  11530. height: math.unit(489, "feet"),
  11531. default: true
  11532. }
  11533. ]
  11534. ))
  11535. characterMakers.push(() => makeCharacter(
  11536. { name: "Mesmyriza" },
  11537. {
  11538. front: {
  11539. height: math.unit(6, "feet"),
  11540. weight: math.unit(150, "lb"),
  11541. name: "Front",
  11542. image: {
  11543. source: "./media/characters/mesmyriza/front.svg",
  11544. extra: 2067 / 1784,
  11545. bottom: 0.035
  11546. }
  11547. },
  11548. foot: {
  11549. height: math.unit(6 / (250 / 35), "feet"),
  11550. name: "Foot",
  11551. image: {
  11552. source: "./media/characters/mesmyriza/foot.svg"
  11553. }
  11554. },
  11555. },
  11556. [
  11557. {
  11558. name: "Macro",
  11559. height: math.unit(457, "meters"),
  11560. default: true
  11561. },
  11562. {
  11563. name: "Megamacro",
  11564. height: math.unit(8, "megameters")
  11565. },
  11566. ]
  11567. ))
  11568. characterMakers.push(() => makeCharacter(
  11569. { name: "Saudade" },
  11570. {
  11571. front: {
  11572. height: math.unit(6, "feet"),
  11573. weight: math.unit(250, "lb"),
  11574. name: "Front",
  11575. image: {
  11576. source: "./media/characters/saudade/front.svg",
  11577. extra: 1172 / 1139,
  11578. bottom: 0.035
  11579. }
  11580. },
  11581. },
  11582. [
  11583. {
  11584. name: "Micro",
  11585. height: math.unit(3, "inches")
  11586. },
  11587. {
  11588. name: "Normal",
  11589. height: math.unit(6, "feet"),
  11590. default: true
  11591. },
  11592. {
  11593. name: "Macro",
  11594. height: math.unit(50, "feet")
  11595. },
  11596. {
  11597. name: "Megamacro",
  11598. height: math.unit(2800, "feet")
  11599. },
  11600. ]
  11601. ))
  11602. characterMakers.push(() => makeCharacter(
  11603. { name: "Keireer" },
  11604. {
  11605. front: {
  11606. height: math.unit(5 + 4 / 12, "feet"),
  11607. weight: math.unit(100, "lb"),
  11608. name: "Front",
  11609. image: {
  11610. source: "./media/characters/keireer/front.svg",
  11611. extra: 716 / 666,
  11612. bottom: 0.05
  11613. }
  11614. },
  11615. },
  11616. [
  11617. {
  11618. name: "Normal",
  11619. height: math.unit(5 + 4 / 12, "feet"),
  11620. default: true
  11621. },
  11622. ]
  11623. ))
  11624. characterMakers.push(() => makeCharacter(
  11625. { name: "Mirja" },
  11626. {
  11627. front: {
  11628. height: math.unit(6, "feet"),
  11629. weight: math.unit(90, "kg"),
  11630. name: "Front",
  11631. image: {
  11632. source: "./media/characters/mirja/front.svg",
  11633. extra: 1789 / 1683,
  11634. bottom: 0.05
  11635. }
  11636. },
  11637. frontDressed: {
  11638. height: math.unit(6, "feet"),
  11639. weight: math.unit(90, "lb"),
  11640. name: "Front (Dressed)",
  11641. image: {
  11642. source: "./media/characters/mirja/front-dressed.svg",
  11643. extra: 1789 / 1683,
  11644. bottom: 0.05
  11645. }
  11646. },
  11647. back: {
  11648. height: math.unit(6, "feet"),
  11649. weight: math.unit(90, "lb"),
  11650. name: "Back",
  11651. image: {
  11652. source: "./media/characters/mirja/back.svg",
  11653. extra: 953 / 917,
  11654. bottom: 0.017
  11655. }
  11656. },
  11657. },
  11658. [
  11659. {
  11660. name: "\"Incognito\"",
  11661. height: math.unit(3, "meters")
  11662. },
  11663. {
  11664. name: "Strolling Size",
  11665. height: math.unit(15, "km")
  11666. },
  11667. {
  11668. name: "Larger Strolling Size",
  11669. height: math.unit(400, "km")
  11670. },
  11671. {
  11672. name: "Preferred Size",
  11673. height: math.unit(5000, "km")
  11674. },
  11675. {
  11676. name: "True Size",
  11677. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11678. default: true
  11679. },
  11680. ]
  11681. ))
  11682. characterMakers.push(() => makeCharacter(
  11683. { name: "Nightraver" },
  11684. {
  11685. front: {
  11686. height: math.unit(15, "feet"),
  11687. weight: math.unit(880, "kg"),
  11688. name: "Front",
  11689. image: {
  11690. source: "./media/characters/nightraver/front.svg",
  11691. extra: 2444 / 2160,
  11692. bottom: 0.027
  11693. }
  11694. },
  11695. back: {
  11696. height: math.unit(15, "feet"),
  11697. weight: math.unit(880, "kg"),
  11698. name: "Back",
  11699. image: {
  11700. source: "./media/characters/nightraver/back.svg",
  11701. extra: 2309 / 2180,
  11702. bottom: 0.005
  11703. }
  11704. },
  11705. sole: {
  11706. height: math.unit(2.878, "feet"),
  11707. name: "Sole",
  11708. image: {
  11709. source: "./media/characters/nightraver/sole.svg"
  11710. }
  11711. },
  11712. foot: {
  11713. height: math.unit(2.285, "feet"),
  11714. name: "Foot",
  11715. image: {
  11716. source: "./media/characters/nightraver/foot.svg"
  11717. }
  11718. },
  11719. maw: {
  11720. height: math.unit(2.67, "feet"),
  11721. name: "Maw",
  11722. image: {
  11723. source: "./media/characters/nightraver/maw.svg"
  11724. }
  11725. },
  11726. },
  11727. [
  11728. {
  11729. name: "Micro",
  11730. height: math.unit(1, "cm")
  11731. },
  11732. {
  11733. name: "Normal",
  11734. height: math.unit(15, "feet"),
  11735. default: true
  11736. },
  11737. {
  11738. name: "Macro",
  11739. height: math.unit(300, "feet")
  11740. },
  11741. {
  11742. name: "Megamacro",
  11743. height: math.unit(300, "miles")
  11744. },
  11745. {
  11746. name: "Gigamacro",
  11747. height: math.unit(10000, "miles")
  11748. },
  11749. ]
  11750. ))
  11751. characterMakers.push(() => makeCharacter(
  11752. { name: "Arc" },
  11753. {
  11754. side: {
  11755. height: math.unit(2, "inches"),
  11756. weight: math.unit(5, "grams"),
  11757. name: "Side",
  11758. image: {
  11759. source: "./media/characters/arc/side.svg"
  11760. }
  11761. },
  11762. },
  11763. [
  11764. {
  11765. name: "Micro",
  11766. height: math.unit(2, "inches"),
  11767. default: true
  11768. },
  11769. ]
  11770. ))
  11771. characterMakers.push(() => makeCharacter(
  11772. { name: "Nebula Shahar" },
  11773. {
  11774. front: {
  11775. height: math.unit(1.1938, "meters"),
  11776. weight: math.unit(54, "kg"),
  11777. name: "Front",
  11778. image: {
  11779. source: "./media/characters/nebula-shahar/front.svg",
  11780. extra: 1642 / 1436,
  11781. bottom: 0.06
  11782. }
  11783. },
  11784. },
  11785. [
  11786. {
  11787. name: "Megamicro",
  11788. height: math.unit(0.3, "mm")
  11789. },
  11790. {
  11791. name: "Micro",
  11792. height: math.unit(3, "cm")
  11793. },
  11794. {
  11795. name: "Normal",
  11796. height: math.unit(138, "cm"),
  11797. default: true
  11798. },
  11799. {
  11800. name: "Macro",
  11801. height: math.unit(30, "m")
  11802. },
  11803. ]
  11804. ))
  11805. characterMakers.push(() => makeCharacter(
  11806. { name: "Shayla" },
  11807. {
  11808. front: {
  11809. height: math.unit(5.24, "feet"),
  11810. weight: math.unit(150, "lb"),
  11811. name: "Front",
  11812. image: {
  11813. source: "./media/characters/shayla/front.svg",
  11814. extra: 1512 / 1414,
  11815. bottom: 0.01
  11816. }
  11817. },
  11818. back: {
  11819. height: math.unit(5.24, "feet"),
  11820. weight: math.unit(150, "lb"),
  11821. name: "Back",
  11822. image: {
  11823. source: "./media/characters/shayla/back.svg",
  11824. extra: 1512 / 1414
  11825. }
  11826. },
  11827. hand: {
  11828. height: math.unit(0.7781496062992126, "feet"),
  11829. name: "Hand",
  11830. image: {
  11831. source: "./media/characters/shayla/hand.svg"
  11832. }
  11833. },
  11834. foot: {
  11835. height: math.unit(1.4206036745406823, "feet"),
  11836. name: "Foot",
  11837. image: {
  11838. source: "./media/characters/shayla/foot.svg"
  11839. }
  11840. },
  11841. },
  11842. [
  11843. {
  11844. name: "Micro",
  11845. height: math.unit(0.32, "feet")
  11846. },
  11847. {
  11848. name: "Normal",
  11849. height: math.unit(5.24, "feet"),
  11850. default: true
  11851. },
  11852. {
  11853. name: "Macro",
  11854. height: math.unit(492.12, "feet")
  11855. },
  11856. {
  11857. name: "Megamacro",
  11858. height: math.unit(186.41, "miles")
  11859. },
  11860. ]
  11861. ))
  11862. characterMakers.push(() => makeCharacter(
  11863. { name: "Pia Jr." },
  11864. {
  11865. front: {
  11866. height: math.unit(2.2, "m"),
  11867. weight: math.unit(120, "kg"),
  11868. name: "Front",
  11869. image: {
  11870. source: "./media/characters/pia-jr/front.svg",
  11871. extra: 1000 / 970,
  11872. bottom: 0.035
  11873. }
  11874. },
  11875. hand: {
  11876. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11877. name: "Hand",
  11878. image: {
  11879. source: "./media/characters/pia-jr/hand.svg"
  11880. }
  11881. },
  11882. paw: {
  11883. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11884. name: "Paw",
  11885. image: {
  11886. source: "./media/characters/pia-jr/paw.svg"
  11887. }
  11888. },
  11889. },
  11890. [
  11891. {
  11892. name: "Micro",
  11893. height: math.unit(1.2, "cm")
  11894. },
  11895. {
  11896. name: "Normal",
  11897. height: math.unit(2.2, "m"),
  11898. default: true
  11899. },
  11900. {
  11901. name: "Macro",
  11902. height: math.unit(180, "m")
  11903. },
  11904. {
  11905. name: "Megamacro",
  11906. height: math.unit(420, "km")
  11907. },
  11908. ]
  11909. ))
  11910. characterMakers.push(() => makeCharacter(
  11911. { name: "Pia Sr." },
  11912. {
  11913. front: {
  11914. height: math.unit(2, "m"),
  11915. weight: math.unit(115, "kg"),
  11916. name: "Front",
  11917. image: {
  11918. source: "./media/characters/pia-sr/front.svg",
  11919. extra: 760 / 730,
  11920. bottom: 0.015
  11921. }
  11922. },
  11923. back: {
  11924. height: math.unit(2, "m"),
  11925. weight: math.unit(115, "kg"),
  11926. name: "Back",
  11927. image: {
  11928. source: "./media/characters/pia-sr/back.svg",
  11929. extra: 760 / 730,
  11930. bottom: 0.01
  11931. }
  11932. },
  11933. hand: {
  11934. height: math.unit(0.89 * 6.56 / 6, "feet"),
  11935. name: "Hand",
  11936. image: {
  11937. source: "./media/characters/pia-sr/hand.svg"
  11938. }
  11939. },
  11940. foot: {
  11941. height: math.unit(1.83, "feet"),
  11942. name: "Foot",
  11943. image: {
  11944. source: "./media/characters/pia-sr/foot.svg"
  11945. }
  11946. },
  11947. },
  11948. [
  11949. {
  11950. name: "Micro",
  11951. height: math.unit(88, "mm")
  11952. },
  11953. {
  11954. name: "Normal",
  11955. height: math.unit(2, "m"),
  11956. default: true
  11957. },
  11958. {
  11959. name: "Macro",
  11960. height: math.unit(200, "m")
  11961. },
  11962. {
  11963. name: "Megamacro",
  11964. height: math.unit(420, "km")
  11965. },
  11966. ]
  11967. ))
  11968. characterMakers.push(() => makeCharacter(
  11969. { name: "KIBIBYTE" },
  11970. {
  11971. front: {
  11972. height: math.unit(8 + 2 / 12, "feet"),
  11973. weight: math.unit(300, "lb"),
  11974. name: "Front",
  11975. image: {
  11976. source: "./media/characters/kibibyte/front.svg",
  11977. extra: 2221 / 2098,
  11978. bottom: 0.04
  11979. }
  11980. },
  11981. },
  11982. [
  11983. {
  11984. name: "Normal",
  11985. height: math.unit(8 + 2 / 12, "feet"),
  11986. default: true
  11987. },
  11988. {
  11989. name: "Socialable Macro",
  11990. height: math.unit(50, "feet")
  11991. },
  11992. {
  11993. name: "Macro",
  11994. height: math.unit(300, "feet")
  11995. },
  11996. {
  11997. name: "Megamacro",
  11998. height: math.unit(500, "miles")
  11999. },
  12000. ]
  12001. ))
  12002. characterMakers.push(() => makeCharacter(
  12003. { name: "Felix" },
  12004. {
  12005. front: {
  12006. height: math.unit(6, "feet"),
  12007. weight: math.unit(150, "lb"),
  12008. name: "Front",
  12009. image: {
  12010. source: "./media/characters/felix/front.svg",
  12011. extra: 762 / 722,
  12012. bottom: 0.02
  12013. }
  12014. },
  12015. frontClothed: {
  12016. height: math.unit(6, "feet"),
  12017. weight: math.unit(150, "lb"),
  12018. name: "Front (Clothed)",
  12019. image: {
  12020. source: "./media/characters/felix/front-clothed.svg",
  12021. extra: 762 / 722,
  12022. bottom: 0.02
  12023. }
  12024. },
  12025. },
  12026. [
  12027. {
  12028. name: "Normal",
  12029. height: math.unit(6 + 8 / 12, "feet"),
  12030. default: true
  12031. },
  12032. {
  12033. name: "Macro",
  12034. height: math.unit(2600, "feet")
  12035. },
  12036. {
  12037. name: "Megamacro",
  12038. height: math.unit(450, "miles")
  12039. },
  12040. ]
  12041. ))
  12042. characterMakers.push(() => makeCharacter(
  12043. { name: "Tobo" },
  12044. {
  12045. front: {
  12046. height: math.unit(6 + 1 / 12, "feet"),
  12047. weight: math.unit(250, "lb"),
  12048. name: "Front",
  12049. image: {
  12050. source: "./media/characters/tobo/front.svg",
  12051. extra: 608 / 586,
  12052. bottom: 0.023
  12053. }
  12054. },
  12055. back: {
  12056. height: math.unit(6 + 1 / 12, "feet"),
  12057. weight: math.unit(250, "lb"),
  12058. name: "Back",
  12059. image: {
  12060. source: "./media/characters/tobo/back.svg",
  12061. extra: 608 / 586
  12062. }
  12063. },
  12064. },
  12065. [
  12066. {
  12067. name: "Nano",
  12068. height: math.unit(2, "nm")
  12069. },
  12070. {
  12071. name: "Megamicro",
  12072. height: math.unit(0.1, "mm")
  12073. },
  12074. {
  12075. name: "Micro",
  12076. height: math.unit(1, "inch"),
  12077. default: true
  12078. },
  12079. {
  12080. name: "Human-sized",
  12081. height: math.unit(6 + 1 / 12, "feet")
  12082. },
  12083. {
  12084. name: "Macro",
  12085. height: math.unit(250, "feet")
  12086. },
  12087. {
  12088. name: "Megamacro",
  12089. height: math.unit(75, "miles")
  12090. },
  12091. {
  12092. name: "Texas-sized",
  12093. height: math.unit(750, "miles")
  12094. },
  12095. {
  12096. name: "Teramacro",
  12097. height: math.unit(50000, "miles")
  12098. },
  12099. ]
  12100. ))
  12101. characterMakers.push(() => makeCharacter(
  12102. { name: "Danny Kapowsky" },
  12103. {
  12104. front: {
  12105. height: math.unit(6, "feet"),
  12106. weight: math.unit(269, "lb"),
  12107. name: "Front",
  12108. image: {
  12109. source: "./media/characters/danny-kapowsky/front.svg",
  12110. extra: 766 / 736,
  12111. bottom: 0.044
  12112. }
  12113. },
  12114. back: {
  12115. height: math.unit(6, "feet"),
  12116. weight: math.unit(269, "lb"),
  12117. name: "Back",
  12118. image: {
  12119. source: "./media/characters/danny-kapowsky/back.svg",
  12120. extra: 797 / 760,
  12121. bottom: 0.025
  12122. }
  12123. },
  12124. },
  12125. [
  12126. {
  12127. name: "Macro",
  12128. height: math.unit(150, "feet"),
  12129. default: true
  12130. },
  12131. {
  12132. name: "Macro+",
  12133. height: math.unit(200, "feet")
  12134. },
  12135. {
  12136. name: "Macro++",
  12137. height: math.unit(300, "feet")
  12138. },
  12139. {
  12140. name: "Macro+++",
  12141. height: math.unit(400, "feet")
  12142. },
  12143. ]
  12144. ))
  12145. characterMakers.push(() => makeCharacter(
  12146. { name: "Finn" },
  12147. {
  12148. side: {
  12149. height: math.unit(6, "feet"),
  12150. weight: math.unit(170, "lb"),
  12151. name: "Side",
  12152. image: {
  12153. source: "./media/characters/finn/side.svg",
  12154. extra: 1953 / 1807,
  12155. bottom: 0.057
  12156. }
  12157. },
  12158. },
  12159. [
  12160. {
  12161. name: "Megamacro",
  12162. height: math.unit(14445, "feet"),
  12163. default: true
  12164. },
  12165. ]
  12166. ))
  12167. characterMakers.push(() => makeCharacter(
  12168. { name: "Roy" },
  12169. {
  12170. front: {
  12171. height: math.unit(5 + 6 / 12, "feet"),
  12172. weight: math.unit(125, "lb"),
  12173. name: "Front",
  12174. image: {
  12175. source: "./media/characters/roy/front.svg",
  12176. extra: 1,
  12177. bottom: 0.11
  12178. }
  12179. },
  12180. },
  12181. [
  12182. {
  12183. name: "Micro",
  12184. height: math.unit(3, "inches"),
  12185. default: true
  12186. },
  12187. {
  12188. name: "Normal",
  12189. height: math.unit(5 + 6 / 12, "feet")
  12190. },
  12191. {
  12192. name: "Lesser Macro",
  12193. height: math.unit(60, "feet")
  12194. },
  12195. {
  12196. name: "Greater Macro",
  12197. height: math.unit(120, "feet")
  12198. },
  12199. ]
  12200. ))
  12201. characterMakers.push(() => makeCharacter(
  12202. { name: "Aevsivs" },
  12203. {
  12204. front: {
  12205. height: math.unit(6, "feet"),
  12206. weight: math.unit(100, "lb"),
  12207. name: "Front",
  12208. image: {
  12209. source: "./media/characters/aevsivs/front.svg",
  12210. extra: 1,
  12211. bottom: 0.03
  12212. }
  12213. },
  12214. back: {
  12215. height: math.unit(6, "feet"),
  12216. weight: math.unit(100, "lb"),
  12217. name: "Back",
  12218. image: {
  12219. source: "./media/characters/aevsivs/back.svg"
  12220. }
  12221. },
  12222. },
  12223. [
  12224. {
  12225. name: "Micro",
  12226. height: math.unit(2, "inches"),
  12227. default: true
  12228. },
  12229. {
  12230. name: "Normal",
  12231. height: math.unit(5, "feet")
  12232. },
  12233. ]
  12234. ))
  12235. characterMakers.push(() => makeCharacter(
  12236. { name: "Hildegard" },
  12237. {
  12238. front: {
  12239. height: math.unit(5 + 7 / 12, "feet"),
  12240. weight: math.unit(159, "lb"),
  12241. name: "Front",
  12242. image: {
  12243. source: "./media/characters/hildegard/front.svg",
  12244. extra: 312 / 286,
  12245. bottom: 0.005
  12246. }
  12247. },
  12248. },
  12249. [
  12250. {
  12251. name: "Normal",
  12252. height: math.unit(5 + 7 / 12, "feet"),
  12253. default: true
  12254. },
  12255. ]
  12256. ))
  12257. characterMakers.push(() => makeCharacter(
  12258. { name: "Bernard & Wilder" },
  12259. {
  12260. bernard: {
  12261. height: math.unit(2 + 7 / 12, "feet"),
  12262. weight: math.unit(66, "lb"),
  12263. name: "Bernard",
  12264. rename: true,
  12265. image: {
  12266. source: "./media/characters/bernard-wilder/bernard.svg",
  12267. extra: 192 / 128,
  12268. bottom: 0.05
  12269. }
  12270. },
  12271. wilder: {
  12272. height: math.unit(5 + 8 / 12, "feet"),
  12273. weight: math.unit(143, "lb"),
  12274. name: "Wilder",
  12275. rename: true,
  12276. image: {
  12277. source: "./media/characters/bernard-wilder/wilder.svg",
  12278. extra: 361 / 312,
  12279. bottom: 0.02
  12280. }
  12281. },
  12282. },
  12283. [
  12284. {
  12285. name: "Normal",
  12286. height: math.unit(2 + 7 / 12, "feet"),
  12287. default: true
  12288. },
  12289. ]
  12290. ))
  12291. characterMakers.push(() => makeCharacter(
  12292. { name: "Hearth" },
  12293. {
  12294. anthro: {
  12295. height: math.unit(6 + 1 / 12, "feet"),
  12296. weight: math.unit(155, "lb"),
  12297. name: "Anthro",
  12298. image: {
  12299. source: "./media/characters/hearth/anthro.svg",
  12300. extra: 260 / 250,
  12301. bottom: 0.02
  12302. }
  12303. },
  12304. feral: {
  12305. height: math.unit(3.78, "feet"),
  12306. weight: math.unit(35, "kg"),
  12307. name: "Feral",
  12308. image: {
  12309. source: "./media/characters/hearth/feral.svg",
  12310. extra: 153 / 135,
  12311. bottom: 0.03
  12312. }
  12313. },
  12314. },
  12315. [
  12316. {
  12317. name: "Normal",
  12318. height: math.unit(6 + 1 / 12, "feet"),
  12319. default: true
  12320. },
  12321. ]
  12322. ))
  12323. characterMakers.push(() => makeCharacter(
  12324. { name: "Ingrid" },
  12325. {
  12326. front: {
  12327. height: math.unit(6, "feet"),
  12328. weight: math.unit(182, "lb"),
  12329. name: "Front",
  12330. image: {
  12331. source: "./media/characters/ingrid/front.svg",
  12332. extra: 294 / 268,
  12333. bottom: 0.027
  12334. }
  12335. },
  12336. },
  12337. [
  12338. {
  12339. name: "Normal",
  12340. height: math.unit(6, "feet"),
  12341. default: true
  12342. },
  12343. ]
  12344. ))
  12345. characterMakers.push(() => makeCharacter(
  12346. { name: "Malgam" },
  12347. {
  12348. eevee: {
  12349. height: math.unit(2 + 10 / 12, "feet"),
  12350. weight: math.unit(86, "lb"),
  12351. name: "Malgam",
  12352. image: {
  12353. source: "./media/characters/malgam/eevee.svg",
  12354. extra: 218 / 180,
  12355. bottom: 0.2
  12356. }
  12357. },
  12358. sylveon: {
  12359. height: math.unit(4, "feet"),
  12360. weight: math.unit(101, "lb"),
  12361. name: "Future Malgam",
  12362. rename: true,
  12363. image: {
  12364. source: "./media/characters/malgam/sylveon.svg",
  12365. extra: 371 / 325,
  12366. bottom: 0.015
  12367. }
  12368. },
  12369. gigantamax: {
  12370. height: math.unit(50, "feet"),
  12371. name: "Gigantamax Malgam",
  12372. rename: true,
  12373. image: {
  12374. source: "./media/characters/malgam/gigantamax.svg"
  12375. }
  12376. },
  12377. },
  12378. [
  12379. {
  12380. name: "Normal",
  12381. height: math.unit(2 + 10 / 12, "feet"),
  12382. default: true
  12383. },
  12384. ]
  12385. ))
  12386. characterMakers.push(() => makeCharacter(
  12387. { name: "Fleur" },
  12388. {
  12389. front: {
  12390. height: math.unit(5 + 11 / 12, "feet"),
  12391. weight: math.unit(188, "lb"),
  12392. name: "Front",
  12393. image: {
  12394. source: "./media/characters/fleur/front.svg",
  12395. extra: 309 / 283,
  12396. bottom: 0.007
  12397. }
  12398. },
  12399. },
  12400. [
  12401. {
  12402. name: "Normal",
  12403. height: math.unit(5 + 11 / 12, "feet"),
  12404. default: true
  12405. },
  12406. ]
  12407. ))
  12408. characterMakers.push(() => makeCharacter(
  12409. { name: "Jude" },
  12410. {
  12411. front: {
  12412. height: math.unit(5 + 4 / 12, "feet"),
  12413. weight: math.unit(122, "lb"),
  12414. name: "Front",
  12415. image: {
  12416. source: "./media/characters/jude/front.svg",
  12417. extra: 288 / 273,
  12418. bottom: 0.03
  12419. }
  12420. },
  12421. },
  12422. [
  12423. {
  12424. name: "Normal",
  12425. height: math.unit(5 + 4 / 12, "feet"),
  12426. default: true
  12427. },
  12428. ]
  12429. ))
  12430. characterMakers.push(() => makeCharacter(
  12431. { name: "Seara" },
  12432. {
  12433. front: {
  12434. height: math.unit(5 + 11 / 12, "feet"),
  12435. weight: math.unit(190, "lb"),
  12436. name: "Front",
  12437. image: {
  12438. source: "./media/characters/seara/front.svg",
  12439. extra: 1,
  12440. bottom: 0.05
  12441. }
  12442. },
  12443. },
  12444. [
  12445. {
  12446. name: "Normal",
  12447. height: math.unit(5 + 11 / 12, "feet"),
  12448. default: true
  12449. },
  12450. ]
  12451. ))
  12452. characterMakers.push(() => makeCharacter(
  12453. { name: "Caspian" },
  12454. {
  12455. front: {
  12456. height: math.unit(16 + 5 / 12, "feet"),
  12457. weight: math.unit(524, "lb"),
  12458. name: "Front",
  12459. image: {
  12460. source: "./media/characters/caspian/front.svg",
  12461. extra: 1,
  12462. bottom: 0.04
  12463. }
  12464. },
  12465. },
  12466. [
  12467. {
  12468. name: "Normal",
  12469. height: math.unit(16 + 5 / 12, "feet"),
  12470. default: true
  12471. },
  12472. ]
  12473. ))
  12474. characterMakers.push(() => makeCharacter(
  12475. { name: "Mika" },
  12476. {
  12477. front: {
  12478. height: math.unit(5 + 7 / 12, "feet"),
  12479. weight: math.unit(170, "lb"),
  12480. name: "Front",
  12481. image: {
  12482. source: "./media/characters/mika/front.svg",
  12483. extra: 1,
  12484. bottom: 0.016
  12485. }
  12486. },
  12487. },
  12488. [
  12489. {
  12490. name: "Normal",
  12491. height: math.unit(5 + 7 / 12, "feet"),
  12492. default: true
  12493. },
  12494. ]
  12495. ))
  12496. characterMakers.push(() => makeCharacter(
  12497. { name: "Sol" },
  12498. {
  12499. front: {
  12500. height: math.unit(6 + 2 / 12, "feet"),
  12501. weight: math.unit(268, "lb"),
  12502. name: "Front",
  12503. image: {
  12504. source: "./media/characters/sol/front.svg",
  12505. extra: 247 / 231,
  12506. bottom: 0.05
  12507. }
  12508. },
  12509. },
  12510. [
  12511. {
  12512. name: "Normal",
  12513. height: math.unit(6 + 2 / 12, "feet"),
  12514. default: true
  12515. },
  12516. ]
  12517. ))
  12518. characterMakers.push(() => makeCharacter(
  12519. { name: "Umiko" },
  12520. {
  12521. buizel: {
  12522. height: math.unit(2 + 5 / 12, "feet"),
  12523. weight: math.unit(87, "lb"),
  12524. name: "Buizel",
  12525. image: {
  12526. source: "./media/characters/umiko/buizel.svg",
  12527. extra: 172 / 157,
  12528. bottom: 0.01
  12529. }
  12530. },
  12531. floatzel: {
  12532. height: math.unit(5 + 9 / 12, "feet"),
  12533. weight: math.unit(250, "lb"),
  12534. name: "Floatzel",
  12535. image: {
  12536. source: "./media/characters/umiko/floatzel.svg",
  12537. extra: 262 / 248
  12538. }
  12539. },
  12540. },
  12541. [
  12542. {
  12543. name: "Normal",
  12544. height: math.unit(2 + 5 / 12, "feet"),
  12545. default: true
  12546. },
  12547. ]
  12548. ))
  12549. characterMakers.push(() => makeCharacter(
  12550. { name: "Iliac" },
  12551. {
  12552. front: {
  12553. height: math.unit(6 + 2 / 12, "feet"),
  12554. weight: math.unit(146, "lb"),
  12555. name: "Front",
  12556. image: {
  12557. source: "./media/characters/iliac/front.svg",
  12558. extra: 389 / 365,
  12559. bottom: 0.035
  12560. }
  12561. },
  12562. },
  12563. [
  12564. {
  12565. name: "Normal",
  12566. height: math.unit(6 + 2 / 12, "feet"),
  12567. default: true
  12568. },
  12569. ]
  12570. ))
  12571. characterMakers.push(() => makeCharacter(
  12572. { name: "Topaz" },
  12573. {
  12574. front: {
  12575. height: math.unit(6, "feet"),
  12576. weight: math.unit(170, "lb"),
  12577. name: "Front",
  12578. image: {
  12579. source: "./media/characters/topaz/front.svg",
  12580. extra: 317 / 303,
  12581. bottom: 0.055
  12582. }
  12583. },
  12584. },
  12585. [
  12586. {
  12587. name: "Normal",
  12588. height: math.unit(6, "feet"),
  12589. default: true
  12590. },
  12591. ]
  12592. ))
  12593. characterMakers.push(() => makeCharacter(
  12594. { name: "Gabriel" },
  12595. {
  12596. front: {
  12597. height: math.unit(5 + 11 / 12, "feet"),
  12598. weight: math.unit(144, "lb"),
  12599. name: "Front",
  12600. image: {
  12601. source: "./media/characters/gabriel/front.svg",
  12602. extra: 285 / 262,
  12603. bottom: 0.004
  12604. }
  12605. },
  12606. },
  12607. [
  12608. {
  12609. name: "Normal",
  12610. height: math.unit(5 + 11 / 12, "feet"),
  12611. default: true
  12612. },
  12613. ]
  12614. ))
  12615. characterMakers.push(() => makeCharacter(
  12616. { name: "Tempest (Suicune)" },
  12617. {
  12618. side: {
  12619. height: math.unit(6 + 5 / 12, "feet"),
  12620. weight: math.unit(300, "lb"),
  12621. name: "Side",
  12622. image: {
  12623. source: "./media/characters/tempest-suicune/side.svg",
  12624. extra: 195 / 154,
  12625. bottom: 0.04
  12626. }
  12627. },
  12628. },
  12629. [
  12630. {
  12631. name: "Normal",
  12632. height: math.unit(6 + 5 / 12, "feet"),
  12633. default: true
  12634. },
  12635. ]
  12636. ))
  12637. characterMakers.push(() => makeCharacter(
  12638. { name: "Vulcan" },
  12639. {
  12640. front: {
  12641. height: math.unit(7 + 2 / 12, "feet"),
  12642. weight: math.unit(322, "lb"),
  12643. name: "Front",
  12644. image: {
  12645. source: "./media/characters/vulcan/front.svg",
  12646. extra: 154 / 147,
  12647. bottom: 0.04
  12648. }
  12649. },
  12650. },
  12651. [
  12652. {
  12653. name: "Normal",
  12654. height: math.unit(7 + 2 / 12, "feet"),
  12655. default: true
  12656. },
  12657. ]
  12658. ))
  12659. characterMakers.push(() => makeCharacter(
  12660. { name: "Gault" },
  12661. {
  12662. front: {
  12663. height: math.unit(5 + 10 / 12, "feet"),
  12664. weight: math.unit(264, "lb"),
  12665. name: "Front",
  12666. image: {
  12667. source: "./media/characters/gault/front.svg",
  12668. extra: 161 / 140,
  12669. bottom: 0.028
  12670. }
  12671. },
  12672. },
  12673. [
  12674. {
  12675. name: "Normal",
  12676. height: math.unit(5 + 10 / 12, "feet"),
  12677. default: true
  12678. },
  12679. ]
  12680. ))
  12681. characterMakers.push(() => makeCharacter(
  12682. { name: "Shard" },
  12683. {
  12684. front: {
  12685. height: math.unit(6, "feet"),
  12686. weight: math.unit(150, "lb"),
  12687. name: "Front",
  12688. image: {
  12689. source: "./media/characters/shard/front.svg",
  12690. extra: 273 / 238,
  12691. bottom: 0.02
  12692. }
  12693. },
  12694. },
  12695. [
  12696. {
  12697. name: "Normal",
  12698. height: math.unit(3 + 6 / 12, "feet"),
  12699. default: true
  12700. },
  12701. ]
  12702. ))
  12703. characterMakers.push(() => makeCharacter(
  12704. { name: "Ashe" },
  12705. {
  12706. front: {
  12707. height: math.unit(5 + 11 / 12, "feet"),
  12708. weight: math.unit(146, "lb"),
  12709. name: "Front",
  12710. image: {
  12711. source: "./media/characters/ashe/front.svg",
  12712. extra: 400 / 373,
  12713. bottom: 0.01
  12714. }
  12715. },
  12716. },
  12717. [
  12718. {
  12719. name: "Normal",
  12720. height: math.unit(5 + 11 / 12, "feet"),
  12721. default: true
  12722. },
  12723. ]
  12724. ))
  12725. characterMakers.push(() => makeCharacter(
  12726. { name: "Beatrix" },
  12727. {
  12728. front: {
  12729. height: math.unit(5 + 5 / 12, "feet"),
  12730. weight: math.unit(135, "lb"),
  12731. name: "Front",
  12732. image: {
  12733. source: "./media/characters/beatrix/front.svg",
  12734. extra: 392 / 379,
  12735. bottom: 0.01
  12736. }
  12737. },
  12738. },
  12739. [
  12740. {
  12741. name: "Normal",
  12742. height: math.unit(6, "feet"),
  12743. default: true
  12744. },
  12745. ]
  12746. ))
  12747. characterMakers.push(() => makeCharacter(
  12748. { name: "Ignatius" },
  12749. {
  12750. front: {
  12751. height: math.unit(6, "feet"),
  12752. weight: math.unit(150, "lb"),
  12753. name: "Front",
  12754. image: {
  12755. source: "./media/characters/ignatius/front.svg",
  12756. extra: 245 / 222,
  12757. bottom: 0.01
  12758. }
  12759. },
  12760. },
  12761. [
  12762. {
  12763. name: "Normal",
  12764. height: math.unit(5 + 5 / 12, "feet"),
  12765. default: true
  12766. },
  12767. ]
  12768. ))
  12769. characterMakers.push(() => makeCharacter(
  12770. { name: "Mei Li" },
  12771. {
  12772. front: {
  12773. height: math.unit(6 + 2 / 12, "feet"),
  12774. weight: math.unit(138, "lb"),
  12775. name: "Front",
  12776. image: {
  12777. source: "./media/characters/mei-li/front.svg",
  12778. extra: 237 / 229,
  12779. bottom: 0.03
  12780. }
  12781. },
  12782. },
  12783. [
  12784. {
  12785. name: "Normal",
  12786. height: math.unit(6 + 2 / 12, "feet"),
  12787. default: true
  12788. },
  12789. ]
  12790. ))
  12791. characterMakers.push(() => makeCharacter(
  12792. { name: "Puru" },
  12793. {
  12794. front: {
  12795. height: math.unit(2 + 4 / 12, "feet"),
  12796. weight: math.unit(62, "lb"),
  12797. name: "Front",
  12798. image: {
  12799. source: "./media/characters/puru/front.svg",
  12800. extra: 206 / 149,
  12801. bottom: 0.06
  12802. }
  12803. },
  12804. },
  12805. [
  12806. {
  12807. name: "Normal",
  12808. height: math.unit(2 + 4 / 12, "feet"),
  12809. default: true
  12810. },
  12811. ]
  12812. ))
  12813. characterMakers.push(() => makeCharacter(
  12814. { name: "Kee" },
  12815. {
  12816. taur: {
  12817. height: math.unit(11, "feet"),
  12818. weight: math.unit(500, "lb"),
  12819. name: "Taur",
  12820. image: {
  12821. source: "./media/characters/kee/taur.svg",
  12822. extra: 1,
  12823. bottom: 0.04
  12824. }
  12825. },
  12826. },
  12827. [
  12828. {
  12829. name: "Normal",
  12830. height: math.unit(11, "feet"),
  12831. default: true
  12832. },
  12833. ]
  12834. ))
  12835. characterMakers.push(() => makeCharacter(
  12836. { name: "Cobalt (Dracha)" },
  12837. {
  12838. anthro: {
  12839. height: math.unit(7, "feet"),
  12840. weight: math.unit(190, "lb"),
  12841. name: "Anthro",
  12842. image: {
  12843. source: "./media/characters/cobalt-dracha/anthro.svg",
  12844. extra: 231 / 225,
  12845. bottom: 0.04
  12846. }
  12847. },
  12848. feral: {
  12849. height: math.unit(9 + 7 / 12, "feet"),
  12850. weight: math.unit(294, "lb"),
  12851. name: "Feral",
  12852. image: {
  12853. source: "./media/characters/cobalt-dracha/feral.svg",
  12854. extra: 692 / 633,
  12855. bottom: 0.05
  12856. }
  12857. },
  12858. },
  12859. [
  12860. {
  12861. name: "Normal",
  12862. height: math.unit(7, "feet"),
  12863. default: true
  12864. },
  12865. ]
  12866. ))
  12867. characterMakers.push(() => makeCharacter(
  12868. { name: "Java" },
  12869. {
  12870. fallen: {
  12871. height: math.unit(11 + 8 / 12, "feet"),
  12872. weight: math.unit(485, "lb"),
  12873. name: "Java (Fallen)",
  12874. rename: true,
  12875. image: {
  12876. source: "./media/characters/java/fallen.svg",
  12877. extra: 226 / 208,
  12878. bottom: 0.005
  12879. }
  12880. },
  12881. godkin: {
  12882. height: math.unit(10 + 6 / 12, "feet"),
  12883. weight: math.unit(328, "lb"),
  12884. name: "Java (Godkin)",
  12885. rename: true,
  12886. image: {
  12887. source: "./media/characters/java/godkin.svg",
  12888. extra: 270 / 262,
  12889. bottom: 0.02
  12890. }
  12891. },
  12892. },
  12893. [
  12894. {
  12895. name: "Normal",
  12896. height: math.unit(11 + 8 / 12, "feet"),
  12897. default: true
  12898. },
  12899. ]
  12900. ))
  12901. characterMakers.push(() => makeCharacter(
  12902. { name: "Skoll" },
  12903. {
  12904. front: {
  12905. height: math.unit(7 + 8 / 12, "feet"),
  12906. weight: math.unit(320, "lb"),
  12907. name: "Front",
  12908. image: {
  12909. source: "./media/characters/skoll/front.svg",
  12910. extra: 232 / 220,
  12911. bottom: 0.02
  12912. }
  12913. },
  12914. },
  12915. [
  12916. {
  12917. name: "Normal",
  12918. height: math.unit(7 + 8 / 12, "feet"),
  12919. default: true
  12920. },
  12921. ]
  12922. ))
  12923. characterMakers.push(() => makeCharacter(
  12924. { name: "Purna" },
  12925. {
  12926. front: {
  12927. height: math.unit(5 + 9 / 12, "feet"),
  12928. weight: math.unit(170, "lb"),
  12929. name: "Front",
  12930. image: {
  12931. source: "./media/characters/purna/front.svg",
  12932. extra: 239 / 229,
  12933. bottom: 0.01
  12934. }
  12935. },
  12936. },
  12937. [
  12938. {
  12939. name: "Normal",
  12940. height: math.unit(5 + 9 / 12, "feet"),
  12941. default: true
  12942. },
  12943. ]
  12944. ))
  12945. characterMakers.push(() => makeCharacter(
  12946. { name: "Kuva" },
  12947. {
  12948. front: {
  12949. height: math.unit(5 + 9 / 12, "feet"),
  12950. weight: math.unit(142, "lb"),
  12951. name: "Front",
  12952. image: {
  12953. source: "./media/characters/kuva/front.svg",
  12954. extra: 281 / 271,
  12955. bottom: 0.006
  12956. }
  12957. },
  12958. },
  12959. [
  12960. {
  12961. name: "Normal",
  12962. height: math.unit(5 + 9 / 12, "feet"),
  12963. default: true
  12964. },
  12965. ]
  12966. ))
  12967. characterMakers.push(() => makeCharacter(
  12968. { name: "Embra" },
  12969. {
  12970. anthro: {
  12971. height: math.unit(9 + 2 / 12, "feet"),
  12972. weight: math.unit(270, "lb"),
  12973. name: "Anthro",
  12974. image: {
  12975. source: "./media/characters/embra/anthro.svg",
  12976. extra: 200 / 187,
  12977. bottom: 0.02
  12978. }
  12979. },
  12980. feral: {
  12981. height: math.unit(18 + 8 / 12, "feet"),
  12982. weight: math.unit(576, "lb"),
  12983. name: "Feral",
  12984. image: {
  12985. source: "./media/characters/embra/feral.svg",
  12986. extra: 152 / 137,
  12987. bottom: 0.037
  12988. }
  12989. },
  12990. },
  12991. [
  12992. {
  12993. name: "Normal",
  12994. height: math.unit(9 + 2 / 12, "feet"),
  12995. default: true
  12996. },
  12997. ]
  12998. ))
  12999. characterMakers.push(() => makeCharacter(
  13000. { name: "Grottos" },
  13001. {
  13002. anthro: {
  13003. height: math.unit(10 + 9 / 12, "feet"),
  13004. weight: math.unit(224, "lb"),
  13005. name: "Anthro",
  13006. image: {
  13007. source: "./media/characters/grottos/anthro.svg",
  13008. extra: 350 / 332,
  13009. bottom: 0.045
  13010. }
  13011. },
  13012. feral: {
  13013. height: math.unit(20 + 7 / 12, "feet"),
  13014. weight: math.unit(629, "lb"),
  13015. name: "Feral",
  13016. image: {
  13017. source: "./media/characters/grottos/feral.svg",
  13018. extra: 207 / 190,
  13019. bottom: 0.05
  13020. }
  13021. },
  13022. },
  13023. [
  13024. {
  13025. name: "Normal",
  13026. height: math.unit(10 + 9 / 12, "feet"),
  13027. default: true
  13028. },
  13029. ]
  13030. ))
  13031. characterMakers.push(() => makeCharacter(
  13032. { name: "Frifna" },
  13033. {
  13034. anthro: {
  13035. height: math.unit(9 + 6 / 12, "feet"),
  13036. weight: math.unit(298, "lb"),
  13037. name: "Anthro",
  13038. image: {
  13039. source: "./media/characters/frifna/anthro.svg",
  13040. extra: 282 / 269,
  13041. bottom: 0.015
  13042. }
  13043. },
  13044. feral: {
  13045. height: math.unit(16 + 2 / 12, "feet"),
  13046. weight: math.unit(624, "lb"),
  13047. name: "Feral",
  13048. image: {
  13049. source: "./media/characters/frifna/feral.svg"
  13050. }
  13051. },
  13052. },
  13053. [
  13054. {
  13055. name: "Normal",
  13056. height: math.unit(9 + 6 / 12, "feet"),
  13057. default: true
  13058. },
  13059. ]
  13060. ))
  13061. characterMakers.push(() => makeCharacter(
  13062. { name: "Elise" },
  13063. {
  13064. front: {
  13065. height: math.unit(6 + 2 / 12, "feet"),
  13066. weight: math.unit(168, "lb"),
  13067. name: "Front",
  13068. image: {
  13069. source: "./media/characters/elise/front.svg",
  13070. extra: 276 / 271
  13071. }
  13072. },
  13073. },
  13074. [
  13075. {
  13076. name: "Normal",
  13077. height: math.unit(6 + 2 / 12, "feet"),
  13078. default: true
  13079. },
  13080. ]
  13081. ))
  13082. characterMakers.push(() => makeCharacter(
  13083. { name: "Glade" },
  13084. {
  13085. front: {
  13086. height: math.unit(5 + 10 / 12, "feet"),
  13087. weight: math.unit(210, "lb"),
  13088. name: "Front",
  13089. image: {
  13090. source: "./media/characters/glade/front.svg",
  13091. extra: 258 / 247,
  13092. bottom: 0.008
  13093. }
  13094. },
  13095. },
  13096. [
  13097. {
  13098. name: "Normal",
  13099. height: math.unit(5 + 10 / 12, "feet"),
  13100. default: true
  13101. },
  13102. ]
  13103. ))
  13104. characterMakers.push(() => makeCharacter(
  13105. { name: "Rina" },
  13106. {
  13107. front: {
  13108. height: math.unit(5 + 10 / 12, "feet"),
  13109. weight: math.unit(129, "lb"),
  13110. name: "Front",
  13111. image: {
  13112. source: "./media/characters/rina/front.svg",
  13113. extra: 266 / 255,
  13114. bottom: 0.005
  13115. }
  13116. },
  13117. },
  13118. [
  13119. {
  13120. name: "Normal",
  13121. height: math.unit(5 + 10 / 12, "feet"),
  13122. default: true
  13123. },
  13124. ]
  13125. ))
  13126. characterMakers.push(() => makeCharacter(
  13127. { name: "Veronica" },
  13128. {
  13129. front: {
  13130. height: math.unit(6 + 1 / 12, "feet"),
  13131. weight: math.unit(192, "lb"),
  13132. name: "Front",
  13133. image: {
  13134. source: "./media/characters/veronica/front.svg",
  13135. extra: 319 / 309,
  13136. bottom: 0.005
  13137. }
  13138. },
  13139. },
  13140. [
  13141. {
  13142. name: "Normal",
  13143. height: math.unit(6 + 1 / 12, "feet"),
  13144. default: true
  13145. },
  13146. ]
  13147. ))
  13148. characterMakers.push(() => makeCharacter(
  13149. { name: "Braxton" },
  13150. {
  13151. front: {
  13152. height: math.unit(9 + 3 / 12, "feet"),
  13153. weight: math.unit(1100, "lb"),
  13154. name: "Front",
  13155. image: {
  13156. source: "./media/characters/braxton/front.svg",
  13157. extra: 1057 / 984,
  13158. bottom: 0.05
  13159. }
  13160. },
  13161. },
  13162. [
  13163. {
  13164. name: "Normal",
  13165. height: math.unit(9 + 3 / 12, "feet")
  13166. },
  13167. {
  13168. name: "Giant",
  13169. height: math.unit(300, "feet"),
  13170. default: true
  13171. },
  13172. {
  13173. name: "Macro",
  13174. height: math.unit(700, "feet")
  13175. },
  13176. {
  13177. name: "Megamacro",
  13178. height: math.unit(6000, "feet")
  13179. },
  13180. ]
  13181. ))
  13182. characterMakers.push(() => makeCharacter(
  13183. { name: "Blue Feyonics" },
  13184. {
  13185. front: {
  13186. height: math.unit(6 + 7 / 12, "feet"),
  13187. weight: math.unit(150, "lb"),
  13188. name: "Front",
  13189. image: {
  13190. source: "./media/characters/blue-feyonics/front.svg",
  13191. extra: 1403 / 1306,
  13192. bottom: 0.047
  13193. }
  13194. },
  13195. },
  13196. [
  13197. {
  13198. name: "Normal",
  13199. height: math.unit(6 + 7 / 12, "feet"),
  13200. default: true
  13201. },
  13202. ]
  13203. ))
  13204. characterMakers.push(() => makeCharacter(
  13205. { name: "Maxwell" },
  13206. {
  13207. front: {
  13208. height: math.unit(1.8, "meters"),
  13209. weight: math.unit(60, "kg"),
  13210. name: "Front",
  13211. image: {
  13212. source: "./media/characters/maxwell/front.svg",
  13213. extra: 2060 / 1873
  13214. }
  13215. },
  13216. },
  13217. [
  13218. {
  13219. name: "Micro",
  13220. height: math.unit(1, "mm")
  13221. },
  13222. {
  13223. name: "Normal",
  13224. height: math.unit(1.8, "meter"),
  13225. default: true
  13226. },
  13227. {
  13228. name: "Macro",
  13229. height: math.unit(30, "meters")
  13230. },
  13231. {
  13232. name: "Megamacro",
  13233. height: math.unit(10, "km")
  13234. },
  13235. ]
  13236. ))
  13237. characterMakers.push(() => makeCharacter(
  13238. { name: "Jack" },
  13239. {
  13240. front: {
  13241. height: math.unit(6, "feet"),
  13242. weight: math.unit(150, "lb"),
  13243. name: "Front",
  13244. image: {
  13245. source: "./media/characters/jack/front.svg",
  13246. extra: 1754 / 1640,
  13247. bottom: 0.01
  13248. }
  13249. },
  13250. },
  13251. [
  13252. {
  13253. name: "Normal",
  13254. height: math.unit(80000, "feet"),
  13255. default: true
  13256. },
  13257. {
  13258. name: "Max size",
  13259. height: math.unit(10, "lightyears")
  13260. },
  13261. ]
  13262. ))
  13263. characterMakers.push(() => makeCharacter(
  13264. { name: "Cafat" },
  13265. {
  13266. upright: {
  13267. height: math.unit(7, "feet"),
  13268. weight: math.unit(170, "lb"),
  13269. name: "Upright",
  13270. image: {
  13271. source: "./media/characters/cafat/upright.svg",
  13272. bottom: 0.01
  13273. }
  13274. },
  13275. uprightFull: {
  13276. height: math.unit(7, "feet"),
  13277. weight: math.unit(170, "lb"),
  13278. name: "Upright (Full)",
  13279. image: {
  13280. source: "./media/characters/cafat/upright-full.svg",
  13281. bottom: 0.01
  13282. }
  13283. },
  13284. side: {
  13285. height: math.unit(5, "feet"),
  13286. weight: math.unit(150, "lb"),
  13287. name: "Side",
  13288. image: {
  13289. source: "./media/characters/cafat/side.svg"
  13290. }
  13291. },
  13292. },
  13293. [
  13294. {
  13295. name: "Small",
  13296. height: math.unit(7, "feet"),
  13297. default: true
  13298. },
  13299. {
  13300. name: "Large",
  13301. height: math.unit(15.5, "feet")
  13302. },
  13303. ]
  13304. ))
  13305. characterMakers.push(() => makeCharacter(
  13306. { name: "Verin Raharra" },
  13307. {
  13308. front: {
  13309. height: math.unit(6, "feet"),
  13310. weight: math.unit(150, "lb"),
  13311. name: "Front",
  13312. image: {
  13313. source: "./media/characters/verin-raharra/front.svg",
  13314. extra: 5019 / 4835,
  13315. bottom: 0.023
  13316. }
  13317. },
  13318. },
  13319. [
  13320. {
  13321. name: "Normal",
  13322. height: math.unit(7 + 5 / 12, "feet"),
  13323. default: true
  13324. },
  13325. {
  13326. name: "Upsized",
  13327. height: math.unit(20, "feet")
  13328. },
  13329. ]
  13330. ))
  13331. characterMakers.push(() => makeCharacter(
  13332. { name: "Nakata" },
  13333. {
  13334. front: {
  13335. height: math.unit(7, "feet"),
  13336. weight: math.unit(230, "lb"),
  13337. name: "Front",
  13338. image: {
  13339. source: "./media/characters/nakata/front.svg",
  13340. extra: 1.005,
  13341. bottom: 0.01
  13342. }
  13343. },
  13344. },
  13345. [
  13346. {
  13347. name: "Normal",
  13348. height: math.unit(7, "feet"),
  13349. default: true
  13350. },
  13351. {
  13352. name: "Big",
  13353. height: math.unit(14, "feet")
  13354. },
  13355. {
  13356. name: "Macro",
  13357. height: math.unit(400, "feet")
  13358. },
  13359. ]
  13360. ))
  13361. characterMakers.push(() => makeCharacter(
  13362. { name: "Lily" },
  13363. {
  13364. front: {
  13365. height: math.unit(4.91, "feet"),
  13366. weight: math.unit(100, "lb"),
  13367. name: "Front",
  13368. image: {
  13369. source: "./media/characters/lily/front.svg",
  13370. extra: 1585 / 1415,
  13371. bottom: 0.02
  13372. }
  13373. },
  13374. },
  13375. [
  13376. {
  13377. name: "Normal",
  13378. height: math.unit(4.91, "feet"),
  13379. default: true
  13380. },
  13381. ]
  13382. ))
  13383. characterMakers.push(() => makeCharacter(
  13384. { name: "Sheila" },
  13385. {
  13386. laying: {
  13387. height: math.unit(4 + 4 / 12, "feet"),
  13388. weight: math.unit(600, "lb"),
  13389. name: "Laying",
  13390. image: {
  13391. source: "./media/characters/sheila/laying.svg",
  13392. extra: 1333 / 1265,
  13393. bottom: 0.16
  13394. }
  13395. },
  13396. },
  13397. [
  13398. {
  13399. name: "Normal",
  13400. height: math.unit(4 + 4 / 12, "feet"),
  13401. default: true
  13402. },
  13403. ]
  13404. ))
  13405. characterMakers.push(() => makeCharacter(
  13406. { name: "Sax" },
  13407. {
  13408. front: {
  13409. height: math.unit(6, "feet"),
  13410. weight: math.unit(190, "lb"),
  13411. name: "Front",
  13412. image: {
  13413. source: "./media/characters/sax/front.svg",
  13414. extra: 1187 / 973,
  13415. bottom: 0.042
  13416. }
  13417. },
  13418. },
  13419. [
  13420. {
  13421. name: "Micro",
  13422. height: math.unit(4, "inches"),
  13423. default: true
  13424. },
  13425. ]
  13426. ))
  13427. characterMakers.push(() => makeCharacter(
  13428. { name: "Pandora" },
  13429. {
  13430. front: {
  13431. height: math.unit(6, "feet"),
  13432. weight: math.unit(150, "lb"),
  13433. name: "Front",
  13434. image: {
  13435. source: "./media/characters/pandora/front.svg",
  13436. extra: 2720 / 2556,
  13437. bottom: 0.015
  13438. }
  13439. },
  13440. back: {
  13441. height: math.unit(6, "feet"),
  13442. weight: math.unit(150, "lb"),
  13443. name: "Back",
  13444. image: {
  13445. source: "./media/characters/pandora/back.svg",
  13446. extra: 2720 / 2556,
  13447. bottom: 0.01
  13448. }
  13449. },
  13450. beans: {
  13451. height: math.unit(6 / 8, "feet"),
  13452. name: "Beans",
  13453. image: {
  13454. source: "./media/characters/pandora/beans.svg"
  13455. }
  13456. },
  13457. skirt: {
  13458. height: math.unit(6, "feet"),
  13459. weight: math.unit(150, "lb"),
  13460. name: "Skirt",
  13461. image: {
  13462. source: "./media/characters/pandora/skirt.svg",
  13463. extra: 1622 / 1525,
  13464. bottom: 0.015
  13465. }
  13466. },
  13467. hoodie: {
  13468. height: math.unit(6, "feet"),
  13469. weight: math.unit(150, "lb"),
  13470. name: "Hoodie",
  13471. image: {
  13472. source: "./media/characters/pandora/hoodie.svg",
  13473. extra: 1622 / 1525,
  13474. bottom: 0.015
  13475. }
  13476. },
  13477. casual: {
  13478. height: math.unit(6, "feet"),
  13479. weight: math.unit(150, "lb"),
  13480. name: "Casual",
  13481. image: {
  13482. source: "./media/characters/pandora/casual.svg",
  13483. extra: 1622 / 1525,
  13484. bottom: 0.015
  13485. }
  13486. },
  13487. },
  13488. [
  13489. {
  13490. name: "Normal",
  13491. height: math.unit(6, "feet")
  13492. },
  13493. {
  13494. name: "Big Steppy",
  13495. height: math.unit(1, "km"),
  13496. default: true
  13497. },
  13498. ]
  13499. ))
  13500. characterMakers.push(() => makeCharacter(
  13501. { name: "Venio Darcony" },
  13502. {
  13503. side: {
  13504. height: math.unit(10, "feet"),
  13505. weight: math.unit(800, "kg"),
  13506. name: "Side",
  13507. image: {
  13508. source: "./media/characters/venio-darcony/side.svg",
  13509. extra: 1373 / 1003,
  13510. bottom: 0.037
  13511. }
  13512. },
  13513. front: {
  13514. height: math.unit(19, "feet"),
  13515. weight: math.unit(800, "kg"),
  13516. name: "Front",
  13517. image: {
  13518. source: "./media/characters/venio-darcony/front.svg"
  13519. }
  13520. },
  13521. back: {
  13522. height: math.unit(19, "feet"),
  13523. weight: math.unit(800, "kg"),
  13524. name: "Back",
  13525. image: {
  13526. source: "./media/characters/venio-darcony/back.svg"
  13527. }
  13528. },
  13529. },
  13530. [
  13531. {
  13532. name: "Normal",
  13533. height: math.unit(10, "feet")
  13534. },
  13535. {
  13536. name: "Macro",
  13537. height: math.unit(130, "feet"),
  13538. default: true
  13539. },
  13540. {
  13541. name: "Macro+",
  13542. height: math.unit(240, "feet")
  13543. },
  13544. ]
  13545. ))
  13546. characterMakers.push(() => makeCharacter(
  13547. { name: "Veski" },
  13548. {
  13549. front: {
  13550. height: math.unit(6, "feet"),
  13551. weight: math.unit(150, "lb"),
  13552. name: "Front",
  13553. image: {
  13554. source: "./media/characters/veski/front.svg",
  13555. extra: 1299 / 1225,
  13556. bottom: 0.04
  13557. }
  13558. },
  13559. back: {
  13560. height: math.unit(6, "feet"),
  13561. weight: math.unit(150, "lb"),
  13562. name: "Back",
  13563. image: {
  13564. source: "./media/characters/veski/back.svg",
  13565. extra: 1299 / 1225,
  13566. bottom: 0.008
  13567. }
  13568. },
  13569. maw: {
  13570. height: math.unit(1.5 * 1.21, "feet"),
  13571. name: "Maw",
  13572. image: {
  13573. source: "./media/characters/veski/maw.svg"
  13574. }
  13575. },
  13576. },
  13577. [
  13578. {
  13579. name: "Macro",
  13580. height: math.unit(2, "km"),
  13581. default: true
  13582. },
  13583. ]
  13584. ))
  13585. characterMakers.push(() => makeCharacter(
  13586. { name: "Isabelle" },
  13587. {
  13588. front: {
  13589. height: math.unit(5 + 7 / 12, "feet"),
  13590. name: "Front",
  13591. image: {
  13592. source: "./media/characters/isabelle/front.svg",
  13593. extra: 2130 / 1976,
  13594. bottom: 0.05
  13595. }
  13596. },
  13597. },
  13598. [
  13599. {
  13600. name: "Supermicro",
  13601. height: math.unit(10, "micrometers")
  13602. },
  13603. {
  13604. name: "Micro",
  13605. height: math.unit(1, "inch")
  13606. },
  13607. {
  13608. name: "Tiny",
  13609. height: math.unit(5, "inches")
  13610. },
  13611. {
  13612. name: "Standard",
  13613. height: math.unit(5 + 7 / 12, "inches")
  13614. },
  13615. {
  13616. name: "Macro",
  13617. height: math.unit(80, "meters"),
  13618. default: true
  13619. },
  13620. {
  13621. name: "Megamacro",
  13622. height: math.unit(250, "meters")
  13623. },
  13624. {
  13625. name: "Gigamacro",
  13626. height: math.unit(5, "km")
  13627. },
  13628. {
  13629. name: "Cosmic",
  13630. height: math.unit(2.5e6, "miles")
  13631. },
  13632. ]
  13633. ))
  13634. characterMakers.push(() => makeCharacter(
  13635. { name: "Hanzo" },
  13636. {
  13637. front: {
  13638. height: math.unit(6, "feet"),
  13639. weight: math.unit(150, "lb"),
  13640. name: "Front",
  13641. image: {
  13642. source: "./media/characters/hanzo/front.svg",
  13643. extra: 374 / 344,
  13644. bottom: 0.02
  13645. }
  13646. },
  13647. },
  13648. [
  13649. {
  13650. name: "Normal",
  13651. height: math.unit(8, "feet"),
  13652. default: true
  13653. },
  13654. ]
  13655. ))
  13656. characterMakers.push(() => makeCharacter(
  13657. { name: "Anna" },
  13658. {
  13659. front: {
  13660. height: math.unit(7, "feet"),
  13661. weight: math.unit(130, "lb"),
  13662. name: "Front",
  13663. image: {
  13664. source: "./media/characters/anna/front.svg",
  13665. extra: 169 / 145,
  13666. bottom: 0.06
  13667. }
  13668. },
  13669. full: {
  13670. height: math.unit(4.96, "feet"),
  13671. weight: math.unit(220, "lb"),
  13672. name: "Full",
  13673. image: {
  13674. source: "./media/characters/anna/full.svg",
  13675. extra: 138 / 114,
  13676. bottom: 0.15
  13677. }
  13678. },
  13679. tongue: {
  13680. height: math.unit(2.53, "feet"),
  13681. name: "Tongue",
  13682. image: {
  13683. source: "./media/characters/anna/tongue.svg"
  13684. }
  13685. },
  13686. },
  13687. [
  13688. {
  13689. name: "Normal",
  13690. height: math.unit(7, "feet"),
  13691. default: true
  13692. },
  13693. ]
  13694. ))
  13695. characterMakers.push(() => makeCharacter(
  13696. { name: "Ian Corvid" },
  13697. {
  13698. front: {
  13699. height: math.unit(7, "feet"),
  13700. weight: math.unit(150, "lb"),
  13701. name: "Front",
  13702. image: {
  13703. source: "./media/characters/ian-corvid/front.svg",
  13704. extra: 150 / 142,
  13705. bottom: 0.02
  13706. }
  13707. },
  13708. back: {
  13709. height: math.unit(7, "feet"),
  13710. weight: math.unit(150, "lb"),
  13711. name: "Back",
  13712. image: {
  13713. source: "./media/characters/ian-corvid/back.svg",
  13714. extra: 150 / 143,
  13715. bottom: 0.01
  13716. }
  13717. },
  13718. stomping: {
  13719. height: math.unit(7, "feet"),
  13720. weight: math.unit(150, "lb"),
  13721. name: "Stomping",
  13722. image: {
  13723. source: "./media/characters/ian-corvid/stomping.svg",
  13724. extra: 76 / 72
  13725. }
  13726. },
  13727. sitting: {
  13728. height: math.unit(7 / 1.8, "feet"),
  13729. weight: math.unit(150, "lb"),
  13730. name: "Sitting",
  13731. image: {
  13732. source: "./media/characters/ian-corvid/sitting.svg",
  13733. extra: 1400 / 1269,
  13734. bottom: 0.15
  13735. }
  13736. },
  13737. },
  13738. [
  13739. {
  13740. name: "Tiny Microw",
  13741. height: math.unit(1, "inch")
  13742. },
  13743. {
  13744. name: "Microw",
  13745. height: math.unit(6, "inches")
  13746. },
  13747. {
  13748. name: "Crow",
  13749. height: math.unit(7 + 1 / 12, "feet"),
  13750. default: true
  13751. },
  13752. {
  13753. name: "Macrow",
  13754. height: math.unit(176, "feet")
  13755. },
  13756. ]
  13757. ))
  13758. characterMakers.push(() => makeCharacter(
  13759. { name: "Natalie Kellon" },
  13760. {
  13761. front: {
  13762. height: math.unit(5 + 7 / 12, "feet"),
  13763. weight: math.unit(147, "lb"),
  13764. name: "Front",
  13765. image: {
  13766. source: "./media/characters/natalie-kellon/front.svg",
  13767. extra: 1214 / 1141,
  13768. bottom: 0.02
  13769. }
  13770. },
  13771. },
  13772. [
  13773. {
  13774. name: "Micro",
  13775. height: math.unit(1 / 16, "inch")
  13776. },
  13777. {
  13778. name: "Tiny",
  13779. height: math.unit(4, "inches")
  13780. },
  13781. {
  13782. name: "Normal",
  13783. height: math.unit(5 + 7 / 12, "feet"),
  13784. default: true
  13785. },
  13786. {
  13787. name: "Amazon",
  13788. height: math.unit(12, "feet")
  13789. },
  13790. {
  13791. name: "Giantess",
  13792. height: math.unit(160, "meters")
  13793. },
  13794. {
  13795. name: "Titaness",
  13796. height: math.unit(800, "meters")
  13797. },
  13798. ]
  13799. ))
  13800. characterMakers.push(() => makeCharacter(
  13801. { name: "Alluria" },
  13802. {
  13803. front: {
  13804. height: math.unit(6, "feet"),
  13805. weight: math.unit(150, "lb"),
  13806. name: "Front",
  13807. image: {
  13808. source: "./media/characters/alluria/front.svg",
  13809. extra: 806 / 738,
  13810. bottom: 0.01
  13811. }
  13812. },
  13813. side: {
  13814. height: math.unit(6, "feet"),
  13815. weight: math.unit(150, "lb"),
  13816. name: "Side",
  13817. image: {
  13818. source: "./media/characters/alluria/side.svg",
  13819. extra: 800 / 750,
  13820. }
  13821. },
  13822. back: {
  13823. height: math.unit(6, "feet"),
  13824. weight: math.unit(150, "lb"),
  13825. name: "Back",
  13826. image: {
  13827. source: "./media/characters/alluria/back.svg",
  13828. extra: 806 / 738,
  13829. }
  13830. },
  13831. frontMaid: {
  13832. height: math.unit(6, "feet"),
  13833. weight: math.unit(150, "lb"),
  13834. name: "Front (Maid)",
  13835. image: {
  13836. source: "./media/characters/alluria/front-maid.svg",
  13837. extra: 806 / 738,
  13838. bottom: 0.01
  13839. }
  13840. },
  13841. sideMaid: {
  13842. height: math.unit(6, "feet"),
  13843. weight: math.unit(150, "lb"),
  13844. name: "Side (Maid)",
  13845. image: {
  13846. source: "./media/characters/alluria/side-maid.svg",
  13847. extra: 800 / 750,
  13848. bottom: 0.005
  13849. }
  13850. },
  13851. backMaid: {
  13852. height: math.unit(6, "feet"),
  13853. weight: math.unit(150, "lb"),
  13854. name: "Back (Maid)",
  13855. image: {
  13856. source: "./media/characters/alluria/back-maid.svg",
  13857. extra: 806 / 738,
  13858. }
  13859. },
  13860. },
  13861. [
  13862. {
  13863. name: "Micro",
  13864. height: math.unit(6, "inches"),
  13865. default: true
  13866. },
  13867. ]
  13868. ))
  13869. characterMakers.push(() => makeCharacter(
  13870. { name: "Kyle" },
  13871. {
  13872. front: {
  13873. height: math.unit(6, "feet"),
  13874. weight: math.unit(150, "lb"),
  13875. name: "Front",
  13876. image: {
  13877. source: "./media/characters/kyle/front.svg",
  13878. extra: 1069 / 962,
  13879. bottom: 77.228 / 1727.45
  13880. }
  13881. },
  13882. },
  13883. [
  13884. {
  13885. name: "Macro",
  13886. height: math.unit(150, "feet"),
  13887. default: true
  13888. },
  13889. ]
  13890. ))
  13891. characterMakers.push(() => makeCharacter(
  13892. { name: "Duncan" },
  13893. {
  13894. front: {
  13895. height: math.unit(6, "feet"),
  13896. weight: math.unit(300, "lb"),
  13897. name: "Front",
  13898. image: {
  13899. source: "./media/characters/duncan/front.svg",
  13900. extra: 1650 / 1482,
  13901. bottom: 0.05
  13902. }
  13903. },
  13904. },
  13905. [
  13906. {
  13907. name: "Macro",
  13908. height: math.unit(100, "feet"),
  13909. default: true
  13910. },
  13911. ]
  13912. ))
  13913. characterMakers.push(() => makeCharacter(
  13914. { name: "Memory" },
  13915. {
  13916. front: {
  13917. height: math.unit(5 + 4 / 12, "feet"),
  13918. weight: math.unit(220, "lb"),
  13919. name: "Front",
  13920. image: {
  13921. source: "./media/characters/memory/front.svg",
  13922. extra: 3641 / 3545,
  13923. bottom: 0.03
  13924. }
  13925. },
  13926. back: {
  13927. height: math.unit(5 + 4 / 12, "feet"),
  13928. weight: math.unit(220, "lb"),
  13929. name: "Back",
  13930. image: {
  13931. source: "./media/characters/memory/back.svg",
  13932. extra: 3641 / 3545,
  13933. bottom: 0.025
  13934. }
  13935. },
  13936. frontSkirt: {
  13937. height: math.unit(5 + 4 / 12, "feet"),
  13938. weight: math.unit(220, "lb"),
  13939. name: "Front (Skirt)",
  13940. image: {
  13941. source: "./media/characters/memory/front-skirt.svg",
  13942. extra: 3641 / 3545,
  13943. bottom: 0.03
  13944. }
  13945. },
  13946. frontDress: {
  13947. height: math.unit(5 + 4 / 12, "feet"),
  13948. weight: math.unit(220, "lb"),
  13949. name: "Front (Dress)",
  13950. image: {
  13951. source: "./media/characters/memory/front-dress.svg",
  13952. extra: 3641 / 3545,
  13953. bottom: 0.03
  13954. }
  13955. },
  13956. },
  13957. [
  13958. {
  13959. name: "Micro",
  13960. height: math.unit(6, "inches"),
  13961. default: true
  13962. },
  13963. {
  13964. name: "Normal",
  13965. height: math.unit(5 + 4 / 12, "feet")
  13966. },
  13967. ]
  13968. ))
  13969. characterMakers.push(() => makeCharacter(
  13970. { name: "Luno" },
  13971. {
  13972. front: {
  13973. height: math.unit(4 + 11 / 12, "feet"),
  13974. weight: math.unit(100, "lb"),
  13975. name: "Front",
  13976. image: {
  13977. source: "./media/characters/luno/front.svg",
  13978. extra: 1535 / 1487,
  13979. bottom: 0.03
  13980. }
  13981. },
  13982. },
  13983. [
  13984. {
  13985. name: "Micro",
  13986. height: math.unit(3, "inches")
  13987. },
  13988. {
  13989. name: "Normal",
  13990. height: math.unit(4 + 11 / 12, "feet"),
  13991. default: true
  13992. },
  13993. {
  13994. name: "Macro",
  13995. height: math.unit(300, "feet")
  13996. },
  13997. {
  13998. name: "Megamacro",
  13999. height: math.unit(700, "miles")
  14000. },
  14001. ]
  14002. ))
  14003. characterMakers.push(() => makeCharacter(
  14004. { name: "Jamesy" },
  14005. {
  14006. front: {
  14007. height: math.unit(6 + 2 / 12, "feet"),
  14008. weight: math.unit(170, "lb"),
  14009. name: "Front",
  14010. image: {
  14011. source: "./media/characters/jamesy/front.svg",
  14012. extra: 440 / 382,
  14013. bottom: 0.005
  14014. }
  14015. },
  14016. },
  14017. [
  14018. {
  14019. name: "Micro",
  14020. height: math.unit(3, "inches")
  14021. },
  14022. {
  14023. name: "Normal",
  14024. height: math.unit(6 + 2 / 12, "feet"),
  14025. default: true
  14026. },
  14027. {
  14028. name: "Macro",
  14029. height: math.unit(300, "feet")
  14030. },
  14031. {
  14032. name: "Megamacro",
  14033. height: math.unit(700, "miles")
  14034. },
  14035. ]
  14036. ))
  14037. characterMakers.push(() => makeCharacter(
  14038. { name: "Mark" },
  14039. {
  14040. front: {
  14041. height: math.unit(6, "feet"),
  14042. weight: math.unit(160, "lb"),
  14043. name: "Front",
  14044. image: {
  14045. source: "./media/characters/mark/front.svg",
  14046. extra: 3300 / 3100,
  14047. bottom: 136.42 / 3440.47
  14048. }
  14049. },
  14050. },
  14051. [
  14052. {
  14053. name: "Macro",
  14054. height: math.unit(120, "meters")
  14055. },
  14056. {
  14057. name: "Bigger Macro",
  14058. height: math.unit(350, "meters")
  14059. },
  14060. {
  14061. name: "Megamacro",
  14062. height: math.unit(8, "km"),
  14063. default: true
  14064. },
  14065. {
  14066. name: "Continental",
  14067. height: math.unit(4550, "km")
  14068. },
  14069. {
  14070. name: "Planetary",
  14071. height: math.unit(65000, "km")
  14072. },
  14073. ]
  14074. ))
  14075. characterMakers.push(() => makeCharacter(
  14076. { name: "Mac" },
  14077. {
  14078. front: {
  14079. height: math.unit(6, "feet"),
  14080. weight: math.unit(400, "lb"),
  14081. name: "Front",
  14082. image: {
  14083. source: "./media/characters/mac/front.svg",
  14084. extra: 1048 / 987.7,
  14085. bottom: 60 / 1107.6,
  14086. }
  14087. },
  14088. },
  14089. [
  14090. {
  14091. name: "Macro",
  14092. height: math.unit(500, "feet"),
  14093. default: true
  14094. },
  14095. ]
  14096. ))
  14097. characterMakers.push(() => makeCharacter(
  14098. { name: "Bari" },
  14099. {
  14100. front: {
  14101. height: math.unit(5 + 2 / 12, "feet"),
  14102. weight: math.unit(190, "lb"),
  14103. name: "Front",
  14104. image: {
  14105. source: "./media/characters/bari/front.svg",
  14106. extra: 3156 / 2880,
  14107. bottom: 0.03
  14108. }
  14109. },
  14110. back: {
  14111. height: math.unit(5 + 2 / 12, "feet"),
  14112. weight: math.unit(190, "lb"),
  14113. name: "Back",
  14114. image: {
  14115. source: "./media/characters/bari/back.svg",
  14116. extra: 3260 / 2834,
  14117. bottom: 0.025
  14118. }
  14119. },
  14120. frontPlush: {
  14121. height: math.unit(5 + 2 / 12, "feet"),
  14122. weight: math.unit(190, "lb"),
  14123. name: "Front (Plush)",
  14124. image: {
  14125. source: "./media/characters/bari/front-plush.svg",
  14126. extra: 1112 / 1061,
  14127. bottom: 0.002
  14128. }
  14129. },
  14130. },
  14131. [
  14132. {
  14133. name: "Micro",
  14134. height: math.unit(3, "inches")
  14135. },
  14136. {
  14137. name: "Normal",
  14138. height: math.unit(5 + 2 / 12, "feet"),
  14139. default: true
  14140. },
  14141. {
  14142. name: "Macro",
  14143. height: math.unit(20, "feet")
  14144. },
  14145. ]
  14146. ))
  14147. characterMakers.push(() => makeCharacter(
  14148. { name: "Hunter Misha Raven" },
  14149. {
  14150. front: {
  14151. height: math.unit(6 + 1 / 12, "feet"),
  14152. weight: math.unit(275, "lb"),
  14153. name: "Front",
  14154. image: {
  14155. source: "./media/characters/hunter-misha-raven/front.svg"
  14156. }
  14157. },
  14158. },
  14159. [
  14160. {
  14161. name: "Mortal",
  14162. height: math.unit(6 + 1 / 12, "feet")
  14163. },
  14164. {
  14165. name: "Divine",
  14166. height: math.unit(1.12134e34, "parsecs"),
  14167. default: true
  14168. },
  14169. ]
  14170. ))
  14171. characterMakers.push(() => makeCharacter(
  14172. { name: "Max Calore" },
  14173. {
  14174. front: {
  14175. height: math.unit(6 + 3 / 12, "feet"),
  14176. weight: math.unit(220, "lb"),
  14177. name: "Front",
  14178. image: {
  14179. source: "./media/characters/max-calore/front.svg",
  14180. extra: 1700 / 1648,
  14181. bottom: 0.01
  14182. }
  14183. },
  14184. back: {
  14185. height: math.unit(6 + 3 / 12, "feet"),
  14186. weight: math.unit(220, "lb"),
  14187. name: "Back",
  14188. image: {
  14189. source: "./media/characters/max-calore/back.svg",
  14190. extra: 1700 / 1648,
  14191. bottom: 0.01
  14192. }
  14193. },
  14194. },
  14195. [
  14196. {
  14197. name: "Normal",
  14198. height: math.unit(6 + 3 / 12, "feet"),
  14199. default: true
  14200. },
  14201. ]
  14202. ))
  14203. characterMakers.push(() => makeCharacter(
  14204. { name: "Aspen" },
  14205. {
  14206. side: {
  14207. height: math.unit(2 + 8 / 12, "feet"),
  14208. weight: math.unit(99, "lb"),
  14209. name: "Side",
  14210. image: {
  14211. source: "./media/characters/aspen/side.svg",
  14212. extra: 152 / 138,
  14213. bottom: 0.032
  14214. }
  14215. },
  14216. },
  14217. [
  14218. {
  14219. name: "Normal",
  14220. height: math.unit(2 + 8 / 12, "feet"),
  14221. default: true
  14222. },
  14223. ]
  14224. ))
  14225. characterMakers.push(() => makeCharacter(
  14226. { name: "Sheila (Feral Wolf)" },
  14227. {
  14228. side: {
  14229. height: math.unit(3 + 2 / 12, "feet"),
  14230. weight: math.unit(224, "lb"),
  14231. name: "Side",
  14232. image: {
  14233. source: "./media/characters/sheila-feral-wolf/side.svg",
  14234. extra: 179 / 166,
  14235. bottom: 0.03
  14236. }
  14237. },
  14238. },
  14239. [
  14240. {
  14241. name: "Normal",
  14242. height: math.unit(3 + 2 / 12, "feet"),
  14243. default: true
  14244. },
  14245. ]
  14246. ))
  14247. characterMakers.push(() => makeCharacter(
  14248. { name: "Michelle" },
  14249. {
  14250. side: {
  14251. height: math.unit(1 + 9 / 12, "feet"),
  14252. weight: math.unit(38, "lb"),
  14253. name: "Side",
  14254. image: {
  14255. source: "./media/characters/michelle/side.svg",
  14256. extra: 147 / 136.7,
  14257. bottom: 0.03
  14258. }
  14259. },
  14260. },
  14261. [
  14262. {
  14263. name: "Normal",
  14264. height: math.unit(1 + 9 / 12, "feet"),
  14265. default: true
  14266. },
  14267. ]
  14268. ))
  14269. characterMakers.push(() => makeCharacter(
  14270. { name: "Nino" },
  14271. {
  14272. front: {
  14273. height: math.unit(1 + 1 / 12, "feet"),
  14274. weight: math.unit(18, "lb"),
  14275. name: "Front",
  14276. image: {
  14277. source: "./media/characters/nino/front.svg"
  14278. }
  14279. },
  14280. },
  14281. [
  14282. {
  14283. name: "Normal",
  14284. height: math.unit(1 + 1 / 12, "feet"),
  14285. default: true
  14286. },
  14287. ]
  14288. ))
  14289. characterMakers.push(() => makeCharacter(
  14290. { name: "Viola" },
  14291. {
  14292. front: {
  14293. height: math.unit(1, "feet"),
  14294. weight: math.unit(16, "lb"),
  14295. name: "Front",
  14296. image: {
  14297. source: "./media/characters/viola/front.svg"
  14298. }
  14299. },
  14300. },
  14301. [
  14302. {
  14303. name: "Normal",
  14304. height: math.unit(1, "feet"),
  14305. default: true
  14306. },
  14307. ]
  14308. ))
  14309. characterMakers.push(() => makeCharacter(
  14310. { name: "Atlas" },
  14311. {
  14312. front: {
  14313. height: math.unit(6 + 5 / 12, "feet"),
  14314. weight: math.unit(580, "lb"),
  14315. name: "Front",
  14316. image: {
  14317. source: "./media/characters/atlas/front.svg",
  14318. extra: 298.5 / 290,
  14319. bottom: 0.015
  14320. }
  14321. },
  14322. },
  14323. [
  14324. {
  14325. name: "Normal",
  14326. height: math.unit(6 + 5 / 12, "feet"),
  14327. default: true
  14328. },
  14329. ]
  14330. ))
  14331. characterMakers.push(() => makeCharacter(
  14332. { name: "Davy" },
  14333. {
  14334. side: {
  14335. height: math.unit(1 + 10 / 12, "feet"),
  14336. weight: math.unit(25, "lb"),
  14337. name: "Side",
  14338. image: {
  14339. source: "./media/characters/davy/side.svg",
  14340. extra: 200 / 170,
  14341. bottom: 0.01
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Normal",
  14348. height: math.unit(1 + 10 / 12, "feet"),
  14349. default: true
  14350. },
  14351. ]
  14352. ))
  14353. characterMakers.push(() => makeCharacter(
  14354. { name: "Fiona" },
  14355. {
  14356. side: {
  14357. height: math.unit(4 + 8 / 12, "feet"),
  14358. weight: math.unit(166, "lb"),
  14359. name: "Side",
  14360. image: {
  14361. source: "./media/characters/fiona/side.svg",
  14362. extra: 232 / 220,
  14363. bottom: 0.03
  14364. }
  14365. },
  14366. },
  14367. [
  14368. {
  14369. name: "Normal",
  14370. height: math.unit(4 + 8 / 12, "feet"),
  14371. default: true
  14372. },
  14373. ]
  14374. ))
  14375. characterMakers.push(() => makeCharacter(
  14376. { name: "Lyla" },
  14377. {
  14378. front: {
  14379. height: math.unit(2, "feet"),
  14380. weight: math.unit(62, "lb"),
  14381. name: "Front",
  14382. image: {
  14383. source: "./media/characters/lyla/front.svg",
  14384. bottom: 0.1
  14385. }
  14386. },
  14387. },
  14388. [
  14389. {
  14390. name: "Normal",
  14391. height: math.unit(2, "feet"),
  14392. default: true
  14393. },
  14394. ]
  14395. ))
  14396. characterMakers.push(() => makeCharacter(
  14397. { name: "Perseus" },
  14398. {
  14399. side: {
  14400. height: math.unit(1.8, "feet"),
  14401. weight: math.unit(44, "lb"),
  14402. name: "Side",
  14403. image: {
  14404. source: "./media/characters/perseus/side.svg",
  14405. bottom: 0.21
  14406. }
  14407. },
  14408. },
  14409. [
  14410. {
  14411. name: "Normal",
  14412. height: math.unit(1.8, "feet"),
  14413. default: true
  14414. },
  14415. ]
  14416. ))
  14417. characterMakers.push(() => makeCharacter(
  14418. { name: "Remus" },
  14419. {
  14420. side: {
  14421. height: math.unit(4 + 2 / 12, "feet"),
  14422. weight: math.unit(20, "lb"),
  14423. name: "Side",
  14424. image: {
  14425. source: "./media/characters/remus/side.svg"
  14426. }
  14427. },
  14428. },
  14429. [
  14430. {
  14431. name: "Normal",
  14432. height: math.unit(4 + 2 / 12, "feet"),
  14433. default: true
  14434. },
  14435. ]
  14436. ))
  14437. characterMakers.push(() => makeCharacter(
  14438. { name: "Raf" },
  14439. {
  14440. front: {
  14441. height: math.unit(4 + 11 / 12, "feet"),
  14442. weight: math.unit(114, "lb"),
  14443. name: "Front",
  14444. image: {
  14445. source: "./media/characters/raf/front.svg",
  14446. bottom: 0.01
  14447. }
  14448. },
  14449. side: {
  14450. height: math.unit(4 + 11 / 12, "feet"),
  14451. weight: math.unit(114, "lb"),
  14452. name: "Side",
  14453. image: {
  14454. source: "./media/characters/raf/side.svg",
  14455. bottom: 0.005
  14456. }
  14457. },
  14458. },
  14459. [
  14460. {
  14461. name: "Micro",
  14462. height: math.unit(2, "inches")
  14463. },
  14464. {
  14465. name: "Normal",
  14466. height: math.unit(4 + 11 / 12, "feet"),
  14467. default: true
  14468. },
  14469. {
  14470. name: "Macro",
  14471. height: math.unit(70, "feet")
  14472. },
  14473. ]
  14474. ))
  14475. characterMakers.push(() => makeCharacter(
  14476. { name: "Liam Einarr" },
  14477. {
  14478. front: {
  14479. height: math.unit(1.5, "meters"),
  14480. weight: math.unit(68, "kg"),
  14481. name: "Front",
  14482. image: {
  14483. source: "./media/characters/liam-einarr/front.svg",
  14484. extra: 2822 / 2666
  14485. }
  14486. },
  14487. back: {
  14488. height: math.unit(1.5, "meters"),
  14489. weight: math.unit(68, "kg"),
  14490. name: "Back",
  14491. image: {
  14492. source: "./media/characters/liam-einarr/back.svg",
  14493. extra: 2822 / 2666,
  14494. bottom: 0.015
  14495. }
  14496. },
  14497. },
  14498. [
  14499. {
  14500. name: "Normal",
  14501. height: math.unit(1.5, "meters"),
  14502. default: true
  14503. },
  14504. {
  14505. name: "Macro",
  14506. height: math.unit(150, "meters")
  14507. },
  14508. {
  14509. name: "Megamacro",
  14510. height: math.unit(35, "km")
  14511. },
  14512. ]
  14513. ))
  14514. characterMakers.push(() => makeCharacter(
  14515. { name: "Linda" },
  14516. {
  14517. front: {
  14518. height: math.unit(6, "feet"),
  14519. weight: math.unit(75, "kg"),
  14520. name: "Front",
  14521. image: {
  14522. source: "./media/characters/linda/front.svg",
  14523. extra: 930 / 874,
  14524. bottom: 0.004
  14525. }
  14526. },
  14527. },
  14528. [
  14529. {
  14530. name: "Normal",
  14531. height: math.unit(6, "feet"),
  14532. default: true
  14533. },
  14534. ]
  14535. ))
  14536. characterMakers.push(() => makeCharacter(
  14537. { name: "Caylex" },
  14538. {
  14539. front: {
  14540. height: math.unit(6 + 8 / 12, "feet"),
  14541. weight: math.unit(220, "lb"),
  14542. name: "Front",
  14543. image: {
  14544. source: "./media/characters/caylex/front.svg",
  14545. extra: 821 / 772,
  14546. bottom: 0.07
  14547. }
  14548. },
  14549. back: {
  14550. height: math.unit(6 + 8 / 12, "feet"),
  14551. weight: math.unit(220, "lb"),
  14552. name: "Back",
  14553. image: {
  14554. source: "./media/characters/caylex/back.svg",
  14555. extra: 821 / 772,
  14556. bottom: 0.022
  14557. }
  14558. },
  14559. hand: {
  14560. height: math.unit(1.25, "feet"),
  14561. name: "Hand",
  14562. image: {
  14563. source: "./media/characters/caylex/hand.svg"
  14564. }
  14565. },
  14566. foot: {
  14567. height: math.unit(1.6, "feet"),
  14568. name: "Foot",
  14569. image: {
  14570. source: "./media/characters/caylex/foot.svg"
  14571. }
  14572. },
  14573. armored: {
  14574. height: math.unit(6 + 8 / 12, "feet"),
  14575. weight: math.unit(250, "lb"),
  14576. name: "Armored",
  14577. image: {
  14578. source: "./media/characters/caylex/armored.svg",
  14579. extra: 1420 / 1310,
  14580. bottom: 0.045
  14581. }
  14582. },
  14583. },
  14584. [
  14585. {
  14586. name: "Normal",
  14587. height: math.unit(6 + 8 / 12, "feet"),
  14588. default: true
  14589. },
  14590. {
  14591. name: "Normal+",
  14592. height: math.unit(12, "feet")
  14593. },
  14594. ]
  14595. ))
  14596. characterMakers.push(() => makeCharacter(
  14597. { name: "Alana" },
  14598. {
  14599. front: {
  14600. height: math.unit(7 + 6 / 12, "feet"),
  14601. weight: math.unit(288, "lb"),
  14602. name: "Front",
  14603. image: {
  14604. source: "./media/characters/alana/front.svg",
  14605. extra: 679 / 653,
  14606. bottom: 22.5 / 701
  14607. }
  14608. },
  14609. },
  14610. [
  14611. {
  14612. name: "Normal",
  14613. height: math.unit(7 + 6 / 12, "feet")
  14614. },
  14615. {
  14616. name: "Large",
  14617. height: math.unit(50, "feet")
  14618. },
  14619. {
  14620. name: "Macro",
  14621. height: math.unit(100, "feet"),
  14622. default: true
  14623. },
  14624. {
  14625. name: "Macro+",
  14626. height: math.unit(200, "feet")
  14627. },
  14628. ]
  14629. ))
  14630. characterMakers.push(() => makeCharacter(
  14631. { name: "Hasani" },
  14632. {
  14633. front: {
  14634. height: math.unit(6 + 1 / 12, "feet"),
  14635. weight: math.unit(210, "lb"),
  14636. name: "Front",
  14637. image: {
  14638. source: "./media/characters/hasani/front.svg",
  14639. extra: 244 / 232,
  14640. bottom: 0.01
  14641. }
  14642. },
  14643. back: {
  14644. height: math.unit(6 + 1 / 12, "feet"),
  14645. weight: math.unit(210, "lb"),
  14646. name: "Back",
  14647. image: {
  14648. source: "./media/characters/hasani/back.svg",
  14649. extra: 244 / 232,
  14650. bottom: 0.01
  14651. }
  14652. },
  14653. },
  14654. [
  14655. {
  14656. name: "Normal",
  14657. height: math.unit(6 + 1 / 12, "feet")
  14658. },
  14659. {
  14660. name: "Macro",
  14661. height: math.unit(175, "feet"),
  14662. default: true
  14663. },
  14664. ]
  14665. ))
  14666. characterMakers.push(() => makeCharacter(
  14667. { name: "Nita" },
  14668. {
  14669. front: {
  14670. height: math.unit(1.82, "meters"),
  14671. weight: math.unit(140, "lb"),
  14672. name: "Front",
  14673. image: {
  14674. source: "./media/characters/nita/front.svg",
  14675. extra: 2473 / 2363,
  14676. bottom: 0.01
  14677. }
  14678. },
  14679. },
  14680. [
  14681. {
  14682. name: "Normal",
  14683. height: math.unit(1.82, "m")
  14684. },
  14685. {
  14686. name: "Macro",
  14687. height: math.unit(300, "m")
  14688. },
  14689. {
  14690. name: "Mistake Canon",
  14691. height: math.unit(0.5, "miles"),
  14692. default: true
  14693. },
  14694. {
  14695. name: "Big Mistake",
  14696. height: math.unit(13, "miles")
  14697. },
  14698. {
  14699. name: "Playing God",
  14700. height: math.unit(2450, "miles")
  14701. },
  14702. ]
  14703. ))
  14704. characterMakers.push(() => makeCharacter(
  14705. { name: "Shiriko" },
  14706. {
  14707. front: {
  14708. height: math.unit(4, "feet"),
  14709. weight: math.unit(120, "lb"),
  14710. name: "Front",
  14711. image: {
  14712. source: "./media/characters/shiriko/front.svg",
  14713. extra: 195 / 188
  14714. }
  14715. },
  14716. },
  14717. [
  14718. {
  14719. name: "Normal",
  14720. height: math.unit(4, "feet"),
  14721. default: true
  14722. },
  14723. ]
  14724. ))
  14725. characterMakers.push(() => makeCharacter(
  14726. { name: "Deja" },
  14727. {
  14728. front: {
  14729. height: math.unit(6, "feet"),
  14730. name: "front",
  14731. image: {
  14732. source: "./media/characters/deja/front.svg",
  14733. extra: 926 / 840,
  14734. bottom: 0.07
  14735. }
  14736. },
  14737. },
  14738. [
  14739. {
  14740. name: "Planck Length",
  14741. height: math.unit(1.6e-35, "meters")
  14742. },
  14743. {
  14744. name: "Normal",
  14745. height: math.unit(30.48, "meters"),
  14746. default: true
  14747. },
  14748. {
  14749. name: "Universal",
  14750. height: math.unit(8.8e26, "meters")
  14751. },
  14752. ]
  14753. ))
  14754. characterMakers.push(() => makeCharacter(
  14755. { name: "Anima" },
  14756. {
  14757. side: {
  14758. height: math.unit(8, "feet"),
  14759. weight: math.unit(6300, "lb"),
  14760. name: "Side",
  14761. image: {
  14762. source: "./media/characters/anima/side.svg",
  14763. bottom: 0.035
  14764. }
  14765. },
  14766. },
  14767. [
  14768. {
  14769. name: "Normal",
  14770. height: math.unit(8, "feet"),
  14771. default: true
  14772. },
  14773. ]
  14774. ))
  14775. characterMakers.push(() => makeCharacter(
  14776. { name: "Bianca" },
  14777. {
  14778. front: {
  14779. height: math.unit(8, "feet"),
  14780. weight: math.unit(350, "lb"),
  14781. name: "Front",
  14782. image: {
  14783. source: "./media/characters/bianca/front.svg",
  14784. extra: 234 / 225,
  14785. bottom: 0.03
  14786. }
  14787. },
  14788. },
  14789. [
  14790. {
  14791. name: "Normal",
  14792. height: math.unit(8, "feet"),
  14793. default: true
  14794. },
  14795. ]
  14796. ))
  14797. characterMakers.push(() => makeCharacter(
  14798. { name: "Adinia" },
  14799. {
  14800. front: {
  14801. height: math.unit(6, "feet"),
  14802. weight: math.unit(150, "lb"),
  14803. name: "Front",
  14804. image: {
  14805. source: "./media/characters/adinia/front.svg",
  14806. extra: 1845 / 1672,
  14807. bottom: 0.02
  14808. }
  14809. },
  14810. back: {
  14811. height: math.unit(6, "feet"),
  14812. weight: math.unit(150, "lb"),
  14813. name: "Back",
  14814. image: {
  14815. source: "./media/characters/adinia/back.svg",
  14816. extra: 1845 / 1672,
  14817. bottom: 0.002
  14818. }
  14819. },
  14820. },
  14821. [
  14822. {
  14823. name: "Normal",
  14824. height: math.unit(11 + 5 / 12, "feet"),
  14825. default: true
  14826. },
  14827. ]
  14828. ))
  14829. characterMakers.push(() => makeCharacter(
  14830. { name: "Lykasa" },
  14831. {
  14832. front: {
  14833. height: math.unit(3, "meters"),
  14834. weight: math.unit(200, "kg"),
  14835. name: "Front",
  14836. image: {
  14837. source: "./media/characters/lykasa/front.svg",
  14838. extra: 1076 / 976,
  14839. bottom: 0.06
  14840. }
  14841. },
  14842. },
  14843. [
  14844. {
  14845. name: "Normal",
  14846. height: math.unit(3, "meters")
  14847. },
  14848. {
  14849. name: "Kaiku",
  14850. height: math.unit(120, "meters"),
  14851. default: true
  14852. },
  14853. {
  14854. name: "Mega Kaiju",
  14855. height: math.unit(240, "km")
  14856. },
  14857. {
  14858. name: "Giga Kaiju",
  14859. height: math.unit(400, "megameters")
  14860. },
  14861. {
  14862. name: "Tera Kaiju",
  14863. height: math.unit(800, "gigameters")
  14864. },
  14865. {
  14866. name: "Kaiju Dragon Goddess",
  14867. height: math.unit(26, "zettaparsecs")
  14868. },
  14869. ]
  14870. ))
  14871. characterMakers.push(() => makeCharacter(
  14872. { name: "Malfaren" },
  14873. {
  14874. side: {
  14875. height: math.unit(283 / 124 * 6, "feet"),
  14876. weight: math.unit(35000, "lb"),
  14877. name: "Side",
  14878. image: {
  14879. source: "./media/characters/malfaren/side.svg",
  14880. extra: 2500 / 1010,
  14881. bottom: 0.01
  14882. }
  14883. },
  14884. front: {
  14885. height: math.unit(22.36, "feet"),
  14886. weight: math.unit(35000, "lb"),
  14887. name: "Front",
  14888. image: {
  14889. source: "./media/characters/malfaren/front.svg",
  14890. extra: 1631 / 1476,
  14891. bottom: 0.01
  14892. }
  14893. },
  14894. maw: {
  14895. height: math.unit(6.9, "feet"),
  14896. name: "Maw",
  14897. image: {
  14898. source: "./media/characters/malfaren/maw.svg"
  14899. }
  14900. },
  14901. },
  14902. [
  14903. {
  14904. name: "Big",
  14905. height: math.unit(283 / 162 * 6, "feet"),
  14906. },
  14907. {
  14908. name: "Bigger",
  14909. height: math.unit(283 / 124 * 6, "feet")
  14910. },
  14911. {
  14912. name: "Massive",
  14913. height: math.unit(283 / 92 * 6, "feet"),
  14914. default: true
  14915. },
  14916. {
  14917. name: "👀💦",
  14918. height: math.unit(283 / 73 * 6, "feet"),
  14919. },
  14920. ]
  14921. ))
  14922. characterMakers.push(() => makeCharacter(
  14923. { name: "Kernel" },
  14924. {
  14925. front: {
  14926. height: math.unit(1.7, "m"),
  14927. weight: math.unit(70, "kg"),
  14928. name: "Front",
  14929. image: {
  14930. source: "./media/characters/kernel/front.svg",
  14931. extra: 222 / 210,
  14932. bottom: 0.007
  14933. }
  14934. },
  14935. },
  14936. [
  14937. {
  14938. name: "Nano",
  14939. height: math.unit(17, "micrometers")
  14940. },
  14941. {
  14942. name: "Micro",
  14943. height: math.unit(1.7, "mm")
  14944. },
  14945. {
  14946. name: "Small",
  14947. height: math.unit(1.7, "cm")
  14948. },
  14949. {
  14950. name: "Normal",
  14951. height: math.unit(1.7, "m"),
  14952. default: true
  14953. },
  14954. ]
  14955. ))
  14956. characterMakers.push(() => makeCharacter(
  14957. { name: "Jayne Folest" },
  14958. {
  14959. front: {
  14960. height: math.unit(1.75, "meters"),
  14961. weight: math.unit(65, "kg"),
  14962. name: "Front",
  14963. image: {
  14964. source: "./media/characters/jayne-folest/front.svg",
  14965. extra: 2115 / 2007,
  14966. bottom: 0.02
  14967. }
  14968. },
  14969. back: {
  14970. height: math.unit(1.75, "meters"),
  14971. weight: math.unit(65, "kg"),
  14972. name: "Back",
  14973. image: {
  14974. source: "./media/characters/jayne-folest/back.svg",
  14975. extra: 2115 / 2007,
  14976. bottom: 0.005
  14977. }
  14978. },
  14979. frontClothed: {
  14980. height: math.unit(1.75, "meters"),
  14981. weight: math.unit(65, "kg"),
  14982. name: "Front (Clothed)",
  14983. image: {
  14984. source: "./media/characters/jayne-folest/front-clothed.svg",
  14985. extra: 2115 / 2007,
  14986. bottom: 0.035
  14987. }
  14988. },
  14989. hand: {
  14990. height: math.unit(1 / 1.260, "feet"),
  14991. name: "Hand",
  14992. image: {
  14993. source: "./media/characters/jayne-folest/hand.svg"
  14994. }
  14995. },
  14996. foot: {
  14997. height: math.unit(1 / 0.918, "feet"),
  14998. name: "Foot",
  14999. image: {
  15000. source: "./media/characters/jayne-folest/foot.svg"
  15001. }
  15002. },
  15003. },
  15004. [
  15005. {
  15006. name: "Micro",
  15007. height: math.unit(4, "cm")
  15008. },
  15009. {
  15010. name: "Normal",
  15011. height: math.unit(1.75, "meters")
  15012. },
  15013. {
  15014. name: "Macro",
  15015. height: math.unit(47.5, "meters"),
  15016. default: true
  15017. },
  15018. ]
  15019. ))
  15020. characterMakers.push(() => makeCharacter(
  15021. { name: "Algier" },
  15022. {
  15023. front: {
  15024. height: math.unit(180, "cm"),
  15025. weight: math.unit(70, "kg"),
  15026. name: "Front",
  15027. image: {
  15028. source: "./media/characters/algier/front.svg",
  15029. extra: 596 / 572,
  15030. bottom: 0.04
  15031. }
  15032. },
  15033. back: {
  15034. height: math.unit(180, "cm"),
  15035. weight: math.unit(70, "kg"),
  15036. name: "Back",
  15037. image: {
  15038. source: "./media/characters/algier/back.svg",
  15039. extra: 596 / 572,
  15040. bottom: 0.025
  15041. }
  15042. },
  15043. frontdressed: {
  15044. height: math.unit(180, "cm"),
  15045. weight: math.unit(150, "kg"),
  15046. name: "Front-dressed",
  15047. image: {
  15048. source: "./media/characters/algier/front-dressed.svg",
  15049. extra: 596 / 572,
  15050. bottom: 0.038
  15051. }
  15052. },
  15053. },
  15054. [
  15055. {
  15056. name: "Micro",
  15057. height: math.unit(5, "cm")
  15058. },
  15059. {
  15060. name: "Normal",
  15061. height: math.unit(180, "cm"),
  15062. default: true
  15063. },
  15064. {
  15065. name: "Macro",
  15066. height: math.unit(64, "m")
  15067. },
  15068. ]
  15069. ))
  15070. characterMakers.push(() => makeCharacter(
  15071. { name: "Pretzel" },
  15072. {
  15073. upright: {
  15074. height: math.unit(7, "feet"),
  15075. weight: math.unit(300, "lb"),
  15076. name: "Upright",
  15077. image: {
  15078. source: "./media/characters/pretzel/upright.svg",
  15079. extra: 534 / 522,
  15080. bottom: 0.065
  15081. }
  15082. },
  15083. sprawling: {
  15084. height: math.unit(3.75, "feet"),
  15085. weight: math.unit(300, "lb"),
  15086. name: "Sprawling",
  15087. image: {
  15088. source: "./media/characters/pretzel/sprawling.svg",
  15089. extra: 314 / 281,
  15090. bottom: 0.1
  15091. }
  15092. },
  15093. tongue: {
  15094. height: math.unit(2, "feet"),
  15095. name: "Tongue",
  15096. image: {
  15097. source: "./media/characters/pretzel/tongue.svg"
  15098. }
  15099. },
  15100. },
  15101. [
  15102. {
  15103. name: "Normal",
  15104. height: math.unit(7, "feet"),
  15105. default: true
  15106. },
  15107. {
  15108. name: "Oversized",
  15109. height: math.unit(15, "feet")
  15110. },
  15111. {
  15112. name: "Huge",
  15113. height: math.unit(30, "feet")
  15114. },
  15115. {
  15116. name: "Macro",
  15117. height: math.unit(250, "feet")
  15118. },
  15119. ]
  15120. ))
  15121. characterMakers.push(() => makeCharacter(
  15122. { name: "Roxi" },
  15123. {
  15124. sideFront: {
  15125. height: math.unit(5 + 2 / 12, "feet"),
  15126. weight: math.unit(120, "lb"),
  15127. name: "Front Side",
  15128. image: {
  15129. source: "./media/characters/roxi/side-front.svg",
  15130. extra: 2924 / 2717,
  15131. bottom: 0.08
  15132. }
  15133. },
  15134. sideBack: {
  15135. height: math.unit(5 + 2 / 12, "feet"),
  15136. weight: math.unit(120, "lb"),
  15137. name: "Back Side",
  15138. image: {
  15139. source: "./media/characters/roxi/side-back.svg",
  15140. extra: 2904 / 2693,
  15141. bottom: 0.06
  15142. }
  15143. },
  15144. front: {
  15145. height: math.unit(5 + 2 / 12, "feet"),
  15146. weight: math.unit(120, "lb"),
  15147. name: "Front",
  15148. image: {
  15149. source: "./media/characters/roxi/front.svg",
  15150. extra: 2028 / 1907,
  15151. bottom: 0.01
  15152. }
  15153. },
  15154. frontAlt: {
  15155. height: math.unit(5 + 2 / 12, "feet"),
  15156. weight: math.unit(120, "lb"),
  15157. name: "Front (Alt)",
  15158. image: {
  15159. source: "./media/characters/roxi/front-alt.svg",
  15160. extra: 1828 / 1798,
  15161. bottom: 0.01
  15162. }
  15163. },
  15164. sitting: {
  15165. height: math.unit(2.8, "feet"),
  15166. weight: math.unit(120, "lb"),
  15167. name: "Sitting",
  15168. image: {
  15169. source: "./media/characters/roxi/sitting.svg",
  15170. extra: 2660 / 2462,
  15171. bottom: 0.1
  15172. }
  15173. },
  15174. },
  15175. [
  15176. {
  15177. name: "Normal",
  15178. height: math.unit(5 + 2 / 12, "feet"),
  15179. default: true
  15180. },
  15181. ]
  15182. ))
  15183. characterMakers.push(() => makeCharacter(
  15184. { name: "Shadow" },
  15185. {
  15186. side: {
  15187. height: math.unit(55, "feet"),
  15188. weight: math.unit(153, "tons"),
  15189. name: "Side",
  15190. image: {
  15191. source: "./media/characters/shadow/side.svg",
  15192. extra: 701 / 628,
  15193. bottom: 0.02
  15194. }
  15195. },
  15196. flying: {
  15197. height: math.unit(145, "feet"),
  15198. weight: math.unit(153, "tons"),
  15199. name: "Flying",
  15200. image: {
  15201. source: "./media/characters/shadow/flying.svg"
  15202. }
  15203. },
  15204. },
  15205. [
  15206. {
  15207. name: "Normal",
  15208. height: math.unit(55, "feet"),
  15209. default: true
  15210. },
  15211. ]
  15212. ))
  15213. characterMakers.push(() => makeCharacter(
  15214. { name: "Marcie" },
  15215. {
  15216. front: {
  15217. height: math.unit(6, "feet"),
  15218. weight: math.unit(200, "lb"),
  15219. name: "Front",
  15220. image: {
  15221. source: "./media/characters/marcie/front.svg",
  15222. extra: 960 / 876,
  15223. bottom: 58 / 1017.87
  15224. }
  15225. },
  15226. },
  15227. [
  15228. {
  15229. name: "Macro",
  15230. height: math.unit(1, "mile"),
  15231. default: true
  15232. },
  15233. ]
  15234. ))
  15235. characterMakers.push(() => makeCharacter(
  15236. { name: "Kachina" },
  15237. {
  15238. front: {
  15239. height: math.unit(7, "feet"),
  15240. weight: math.unit(200, "lb"),
  15241. name: "Front",
  15242. image: {
  15243. source: "./media/characters/kachina/front.svg",
  15244. extra: 1290.68 / 1119,
  15245. bottom: 36.5 / 1327.18
  15246. }
  15247. },
  15248. },
  15249. [
  15250. {
  15251. name: "Normal",
  15252. height: math.unit(7, "feet"),
  15253. default: true
  15254. },
  15255. ]
  15256. ))
  15257. characterMakers.push(() => makeCharacter(
  15258. { name: "Kash" },
  15259. {
  15260. looking: {
  15261. height: math.unit(2, "meters"),
  15262. weight: math.unit(300, "kg"),
  15263. name: "Looking",
  15264. image: {
  15265. source: "./media/characters/kash/looking.svg",
  15266. extra: 474 / 344,
  15267. bottom: 0.03
  15268. }
  15269. },
  15270. side: {
  15271. height: math.unit(2, "meters"),
  15272. weight: math.unit(300, "kg"),
  15273. name: "Side",
  15274. image: {
  15275. source: "./media/characters/kash/side.svg",
  15276. extra: 302 / 251,
  15277. bottom: 0.03
  15278. }
  15279. },
  15280. front: {
  15281. height: math.unit(2, "meters"),
  15282. weight: math.unit(300, "kg"),
  15283. name: "Front",
  15284. image: {
  15285. source: "./media/characters/kash/front.svg",
  15286. extra: 495 / 360,
  15287. bottom: 0.015
  15288. }
  15289. },
  15290. },
  15291. [
  15292. {
  15293. name: "Normal",
  15294. height: math.unit(2, "meters"),
  15295. default: true
  15296. },
  15297. {
  15298. name: "Big",
  15299. height: math.unit(3, "meters")
  15300. },
  15301. {
  15302. name: "Large",
  15303. height: math.unit(5, "meters")
  15304. },
  15305. ]
  15306. ))
  15307. characterMakers.push(() => makeCharacter(
  15308. { name: "Lalim" },
  15309. {
  15310. feeding: {
  15311. height: math.unit(6.7, "feet"),
  15312. weight: math.unit(350, "lb"),
  15313. name: "Feeding",
  15314. image: {
  15315. source: "./media/characters/lalim/feeding.svg",
  15316. }
  15317. },
  15318. },
  15319. [
  15320. {
  15321. name: "Normal",
  15322. height: math.unit(6.7, "feet"),
  15323. default: true
  15324. },
  15325. ]
  15326. ))
  15327. characterMakers.push(() => makeCharacter(
  15328. { name: "De'Vout" },
  15329. {
  15330. front: {
  15331. height: math.unit(9.5, "feet"),
  15332. weight: math.unit(600, "lb"),
  15333. name: "Front",
  15334. image: {
  15335. source: "./media/characters/de'vout/front.svg",
  15336. extra: 1443 / 1328,
  15337. bottom: 0.025
  15338. }
  15339. },
  15340. back: {
  15341. height: math.unit(9.5, "feet"),
  15342. weight: math.unit(600, "lb"),
  15343. name: "Back",
  15344. image: {
  15345. source: "./media/characters/de'vout/back.svg",
  15346. extra: 1443 / 1328
  15347. }
  15348. },
  15349. frontDressed: {
  15350. height: math.unit(9.5, "feet"),
  15351. weight: math.unit(600, "lb"),
  15352. name: "Front (Dressed",
  15353. image: {
  15354. source: "./media/characters/de'vout/front-dressed.svg",
  15355. extra: 1443 / 1328,
  15356. bottom: 0.025
  15357. }
  15358. },
  15359. backDressed: {
  15360. height: math.unit(9.5, "feet"),
  15361. weight: math.unit(600, "lb"),
  15362. name: "Back (Dressed",
  15363. image: {
  15364. source: "./media/characters/de'vout/back-dressed.svg",
  15365. extra: 1443 / 1328
  15366. }
  15367. },
  15368. },
  15369. [
  15370. {
  15371. name: "Normal",
  15372. height: math.unit(9.5, "feet"),
  15373. default: true
  15374. },
  15375. ]
  15376. ))
  15377. characterMakers.push(() => makeCharacter(
  15378. { name: "Talana" },
  15379. {
  15380. front: {
  15381. height: math.unit(8, "feet"),
  15382. weight: math.unit(225, "lb"),
  15383. name: "Front",
  15384. image: {
  15385. source: "./media/characters/talana/front.svg",
  15386. extra: 1410 / 1300,
  15387. bottom: 0.015
  15388. }
  15389. },
  15390. frontDressed: {
  15391. height: math.unit(8, "feet"),
  15392. weight: math.unit(225, "lb"),
  15393. name: "Front (Dressed",
  15394. image: {
  15395. source: "./media/characters/talana/front-dressed.svg",
  15396. extra: 1410 / 1300,
  15397. bottom: 0.015
  15398. }
  15399. },
  15400. },
  15401. [
  15402. {
  15403. name: "Normal",
  15404. height: math.unit(8, "feet"),
  15405. default: true
  15406. },
  15407. ]
  15408. ))
  15409. characterMakers.push(() => makeCharacter(
  15410. { name: "Xeauvok" },
  15411. {
  15412. side: {
  15413. height: math.unit(7.2, "feet"),
  15414. weight: math.unit(150, "lb"),
  15415. name: "Side",
  15416. image: {
  15417. source: "./media/characters/xeauvok/side.svg",
  15418. extra: 1975 / 1523,
  15419. bottom: 0.07
  15420. }
  15421. },
  15422. },
  15423. [
  15424. {
  15425. name: "Normal",
  15426. height: math.unit(7.2, "feet"),
  15427. default: true
  15428. },
  15429. ]
  15430. ))
  15431. characterMakers.push(() => makeCharacter(
  15432. { name: "Zara" },
  15433. {
  15434. side: {
  15435. height: math.unit(10, "feet"),
  15436. weight: math.unit(900, "kg"),
  15437. name: "Side",
  15438. image: {
  15439. source: "./media/characters/zara/side.svg",
  15440. extra: 504 / 498
  15441. }
  15442. },
  15443. },
  15444. [
  15445. {
  15446. name: "Normal",
  15447. height: math.unit(10, "feet"),
  15448. default: true
  15449. },
  15450. ]
  15451. ))
  15452. characterMakers.push(() => makeCharacter(
  15453. { name: "Richard (Dragon)" },
  15454. {
  15455. side: {
  15456. height: math.unit(6, "feet"),
  15457. weight: math.unit(150, "lb"),
  15458. name: "Side",
  15459. image: {
  15460. source: "./media/characters/richard-dragon/side.svg",
  15461. extra: 845 / 340,
  15462. bottom: 0.017
  15463. }
  15464. },
  15465. maw: {
  15466. height: math.unit(2.97, "feet"),
  15467. name: "Maw",
  15468. image: {
  15469. source: "./media/characters/richard-dragon/maw.svg"
  15470. }
  15471. },
  15472. },
  15473. [
  15474. ]
  15475. ))
  15476. characterMakers.push(() => makeCharacter(
  15477. { name: "Richard (Smeargle)" },
  15478. {
  15479. front: {
  15480. height: math.unit(4, "feet"),
  15481. weight: math.unit(100, "lb"),
  15482. name: "Front",
  15483. image: {
  15484. source: "./media/characters/richard-smeargle/front.svg",
  15485. extra: 2952 / 2820,
  15486. bottom: 0.028
  15487. }
  15488. },
  15489. },
  15490. [
  15491. {
  15492. name: "Normal",
  15493. height: math.unit(4, "feet"),
  15494. default: true
  15495. },
  15496. {
  15497. name: "Dynamax",
  15498. height: math.unit(20, "meters")
  15499. },
  15500. ]
  15501. ))
  15502. characterMakers.push(() => makeCharacter(
  15503. { name: "Klay" },
  15504. {
  15505. front: {
  15506. height: math.unit(6, "feet"),
  15507. weight: math.unit(110, "lb"),
  15508. name: "Front",
  15509. image: {
  15510. source: "./media/characters/klay/front.svg",
  15511. extra: 962 / 883,
  15512. bottom: 0.04
  15513. }
  15514. },
  15515. back: {
  15516. height: math.unit(6, "feet"),
  15517. weight: math.unit(110, "lb"),
  15518. name: "Back",
  15519. image: {
  15520. source: "./media/characters/klay/back.svg",
  15521. extra: 962 / 883
  15522. }
  15523. },
  15524. beans: {
  15525. height: math.unit(1.15, "feet"),
  15526. name: "Beans",
  15527. image: {
  15528. source: "./media/characters/klay/beans.svg"
  15529. }
  15530. },
  15531. },
  15532. [
  15533. {
  15534. name: "Micro",
  15535. height: math.unit(6, "inches")
  15536. },
  15537. {
  15538. name: "Mini",
  15539. height: math.unit(3, "feet")
  15540. },
  15541. {
  15542. name: "Normal",
  15543. height: math.unit(6, "feet"),
  15544. default: true
  15545. },
  15546. {
  15547. name: "Big",
  15548. height: math.unit(25, "feet")
  15549. },
  15550. {
  15551. name: "Macro",
  15552. height: math.unit(100, "feet")
  15553. },
  15554. {
  15555. name: "Megamacro",
  15556. height: math.unit(400, "feet")
  15557. },
  15558. ]
  15559. ))
  15560. characterMakers.push(() => makeCharacter(
  15561. { name: "Marcus" },
  15562. {
  15563. front: {
  15564. height: math.unit(6, "feet"),
  15565. weight: math.unit(160, "lb"),
  15566. name: "Front",
  15567. image: {
  15568. source: "./media/characters/marcus/front.svg",
  15569. extra: 734 / 676,
  15570. bottom: 0.03
  15571. }
  15572. },
  15573. },
  15574. [
  15575. {
  15576. name: "Little",
  15577. height: math.unit(6, "feet")
  15578. },
  15579. {
  15580. name: "Normal",
  15581. height: math.unit(110, "feet"),
  15582. default: true
  15583. },
  15584. {
  15585. name: "Macro",
  15586. height: math.unit(250, "feet")
  15587. },
  15588. {
  15589. name: "Megamacro",
  15590. height: math.unit(1000, "feet")
  15591. },
  15592. ]
  15593. ))
  15594. characterMakers.push(() => makeCharacter(
  15595. { name: "Claude DelRoute" },
  15596. {
  15597. front: {
  15598. height: math.unit(7, "feet"),
  15599. weight: math.unit(275, "lb"),
  15600. name: "Front",
  15601. image: {
  15602. source: "./media/characters/claude-delroute/front.svg",
  15603. extra: 230 / 214,
  15604. bottom: 0.007
  15605. }
  15606. },
  15607. side: {
  15608. height: math.unit(7, "feet"),
  15609. weight: math.unit(275, "lb"),
  15610. name: "Side",
  15611. image: {
  15612. source: "./media/characters/claude-delroute/side.svg",
  15613. extra: 222 / 214,
  15614. bottom: 0.01
  15615. }
  15616. },
  15617. back: {
  15618. height: math.unit(7, "feet"),
  15619. weight: math.unit(275, "lb"),
  15620. name: "Back",
  15621. image: {
  15622. source: "./media/characters/claude-delroute/back.svg",
  15623. extra: 230 / 214,
  15624. bottom: 0.015
  15625. }
  15626. },
  15627. maw: {
  15628. height: math.unit(0.6407, "meters"),
  15629. name: "Maw",
  15630. image: {
  15631. source: "./media/characters/claude-delroute/maw.svg"
  15632. }
  15633. },
  15634. },
  15635. [
  15636. {
  15637. name: "Normal",
  15638. height: math.unit(7, "feet"),
  15639. default: true
  15640. },
  15641. {
  15642. name: "Lorge",
  15643. height: math.unit(20, "feet")
  15644. },
  15645. ]
  15646. ))
  15647. characterMakers.push(() => makeCharacter(
  15648. { name: "Dragonien" },
  15649. {
  15650. front: {
  15651. height: math.unit(8 + 4 / 12, "feet"),
  15652. weight: math.unit(600, "lb"),
  15653. name: "Front",
  15654. image: {
  15655. source: "./media/characters/dragonien/front.svg",
  15656. extra: 100 / 94,
  15657. bottom: 3.3 / 103.3445
  15658. }
  15659. },
  15660. back: {
  15661. height: math.unit(8 + 4 / 12, "feet"),
  15662. weight: math.unit(600, "lb"),
  15663. name: "Back",
  15664. image: {
  15665. source: "./media/characters/dragonien/back.svg",
  15666. extra: 776 / 746,
  15667. bottom: 6.4 / 782.0616
  15668. }
  15669. },
  15670. foot: {
  15671. height: math.unit(1.54, "feet"),
  15672. name: "Foot",
  15673. image: {
  15674. source: "./media/characters/dragonien/foot.svg",
  15675. }
  15676. },
  15677. },
  15678. [
  15679. {
  15680. name: "Normal",
  15681. height: math.unit(8 + 4 / 12, "feet"),
  15682. default: true
  15683. },
  15684. {
  15685. name: "Macro",
  15686. height: math.unit(200, "feet")
  15687. },
  15688. {
  15689. name: "Megamacro",
  15690. height: math.unit(1, "mile")
  15691. },
  15692. {
  15693. name: "Gigamacro",
  15694. height: math.unit(1000, "miles")
  15695. },
  15696. ]
  15697. ))
  15698. characterMakers.push(() => makeCharacter(
  15699. { name: "Desta" },
  15700. {
  15701. front: {
  15702. height: math.unit(5 + 2 / 12, "feet"),
  15703. weight: math.unit(110, "lb"),
  15704. name: "Front",
  15705. image: {
  15706. source: "./media/characters/desta/front.svg",
  15707. extra: 1482 / 1417
  15708. }
  15709. },
  15710. side: {
  15711. height: math.unit(5 + 2 / 12, "feet"),
  15712. weight: math.unit(110, "lb"),
  15713. name: "Side",
  15714. image: {
  15715. source: "./media/characters/desta/side.svg",
  15716. extra: 2579 / 2491,
  15717. bottom: 0.053
  15718. }
  15719. },
  15720. },
  15721. [
  15722. {
  15723. name: "Micro",
  15724. height: math.unit(6, "inches")
  15725. },
  15726. {
  15727. name: "Normal",
  15728. height: math.unit(5 + 2 / 12, "feet"),
  15729. default: true
  15730. },
  15731. {
  15732. name: "Macro",
  15733. height: math.unit(62, "feet")
  15734. },
  15735. {
  15736. name: "Megamacro",
  15737. height: math.unit(1800, "feet")
  15738. },
  15739. ]
  15740. ))
  15741. characterMakers.push(() => makeCharacter(
  15742. { name: "Storm Alystar" },
  15743. {
  15744. front: {
  15745. height: math.unit(10, "feet"),
  15746. weight: math.unit(700, "lb"),
  15747. name: "Front",
  15748. image: {
  15749. source: "./media/characters/storm-alystar/front.svg",
  15750. extra: 2112 / 1898,
  15751. bottom: 0.034
  15752. }
  15753. },
  15754. },
  15755. [
  15756. {
  15757. name: "Micro",
  15758. height: math.unit(3.5, "inches")
  15759. },
  15760. {
  15761. name: "Normal",
  15762. height: math.unit(10, "feet"),
  15763. default: true
  15764. },
  15765. {
  15766. name: "Macro",
  15767. height: math.unit(400, "feet")
  15768. },
  15769. {
  15770. name: "Deific",
  15771. height: math.unit(60, "miles")
  15772. },
  15773. ]
  15774. ))
  15775. characterMakers.push(() => makeCharacter(
  15776. { name: "Ilia" },
  15777. {
  15778. front: {
  15779. height: math.unit(2.35, "meters"),
  15780. weight: math.unit(119, "kg"),
  15781. name: "Front",
  15782. image: {
  15783. source: "./media/characters/ilia/front.svg",
  15784. extra: 1285 / 1255,
  15785. bottom: 0.06
  15786. }
  15787. },
  15788. },
  15789. [
  15790. {
  15791. name: "Normal",
  15792. height: math.unit(2.35, "meters")
  15793. },
  15794. {
  15795. name: "Macro",
  15796. height: math.unit(140, "meters"),
  15797. default: true
  15798. },
  15799. {
  15800. name: "Megamacro",
  15801. height: math.unit(100, "miles")
  15802. },
  15803. ]
  15804. ))
  15805. characterMakers.push(() => makeCharacter(
  15806. { name: "KingDead" },
  15807. {
  15808. front: {
  15809. height: math.unit(6 + 5 / 12, "feet"),
  15810. weight: math.unit(190, "lb"),
  15811. name: "Front",
  15812. image: {
  15813. source: "./media/characters/kingdead/front.svg",
  15814. extra: 1228 / 1177
  15815. }
  15816. },
  15817. },
  15818. [
  15819. {
  15820. name: "Micro",
  15821. height: math.unit(7, "inches")
  15822. },
  15823. {
  15824. name: "Normal",
  15825. height: math.unit(6 + 5 / 12, "feet")
  15826. },
  15827. {
  15828. name: "Macro",
  15829. height: math.unit(150, "feet"),
  15830. default: true
  15831. },
  15832. {
  15833. name: "Megamacro",
  15834. height: math.unit(200, "miles")
  15835. },
  15836. ]
  15837. ))
  15838. characterMakers.push(() => makeCharacter(
  15839. { name: "Kyrehx" },
  15840. {
  15841. front: {
  15842. height: math.unit(8, "feet"),
  15843. weight: math.unit(600, "lb"),
  15844. name: "Front",
  15845. image: {
  15846. source: "./media/characters/kyrehx/front.svg",
  15847. extra: 1195 / 1095,
  15848. bottom: 0.034
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Micro",
  15855. height: math.unit(2, "inches")
  15856. },
  15857. {
  15858. name: "Normal",
  15859. height: math.unit(8, "feet"),
  15860. default: true
  15861. },
  15862. {
  15863. name: "Macro",
  15864. height: math.unit(255, "feet")
  15865. },
  15866. ]
  15867. ))
  15868. characterMakers.push(() => makeCharacter(
  15869. { name: "Xang" },
  15870. {
  15871. front: {
  15872. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15873. weight: math.unit(184, "lb"),
  15874. name: "Front",
  15875. image: {
  15876. source: "./media/characters/xang/front.svg",
  15877. extra: 845 / 755
  15878. }
  15879. },
  15880. },
  15881. [
  15882. {
  15883. name: "Normal",
  15884. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15885. default: true
  15886. },
  15887. {
  15888. name: "Macro",
  15889. height: math.unit(0.935 * 146, "feet")
  15890. },
  15891. {
  15892. name: "Megamacro",
  15893. height: math.unit(0.935 * 3, "miles")
  15894. },
  15895. ]
  15896. ))
  15897. characterMakers.push(() => makeCharacter(
  15898. { name: "Doc Weardno" },
  15899. {
  15900. frontDressed: {
  15901. height: math.unit(5 + 7 / 12, "feet"),
  15902. weight: math.unit(140, "lb"),
  15903. name: "Front (Dressed)",
  15904. image: {
  15905. source: "./media/characters/doc-weardno/front-dressed.svg",
  15906. extra: 263 / 234
  15907. }
  15908. },
  15909. backDressed: {
  15910. height: math.unit(5 + 7 / 12, "feet"),
  15911. weight: math.unit(140, "lb"),
  15912. name: "Back (Dressed)",
  15913. image: {
  15914. source: "./media/characters/doc-weardno/back-dressed.svg",
  15915. extra: 266 / 238
  15916. }
  15917. },
  15918. front: {
  15919. height: math.unit(5 + 7 / 12, "feet"),
  15920. weight: math.unit(140, "lb"),
  15921. name: "Front",
  15922. image: {
  15923. source: "./media/characters/doc-weardno/front.svg",
  15924. extra: 254 / 233
  15925. }
  15926. },
  15927. },
  15928. [
  15929. {
  15930. name: "Micro",
  15931. height: math.unit(3, "inches")
  15932. },
  15933. {
  15934. name: "Normal",
  15935. height: math.unit(5 + 7 / 12, "feet"),
  15936. default: true
  15937. },
  15938. {
  15939. name: "Macro",
  15940. height: math.unit(25, "feet")
  15941. },
  15942. {
  15943. name: "Megamacro",
  15944. height: math.unit(2, "miles")
  15945. },
  15946. ]
  15947. ))
  15948. characterMakers.push(() => makeCharacter(
  15949. { name: "Seth Whilst" },
  15950. {
  15951. front: {
  15952. height: math.unit(6 + 2 / 12, "feet"),
  15953. weight: math.unit(153, "lb"),
  15954. name: "Front",
  15955. image: {
  15956. source: "./media/characters/seth-whilst/front.svg",
  15957. bottom: 0.07
  15958. }
  15959. },
  15960. },
  15961. [
  15962. {
  15963. name: "Micro",
  15964. height: math.unit(5, "inches")
  15965. },
  15966. {
  15967. name: "Normal",
  15968. height: math.unit(6 + 2 / 12, "feet"),
  15969. default: true
  15970. },
  15971. ]
  15972. ))
  15973. characterMakers.push(() => makeCharacter(
  15974. { name: "Pocket Jabari" },
  15975. {
  15976. front: {
  15977. height: math.unit(3, "inches"),
  15978. weight: math.unit(8, "grams"),
  15979. name: "Front",
  15980. image: {
  15981. source: "./media/characters/pocket-jabari/front.svg",
  15982. extra: 1024 / 974,
  15983. bottom: 0.039
  15984. }
  15985. },
  15986. },
  15987. [
  15988. {
  15989. name: "Minimicro",
  15990. height: math.unit(8, "mm")
  15991. },
  15992. {
  15993. name: "Micro",
  15994. height: math.unit(3, "inches"),
  15995. default: true
  15996. },
  15997. {
  15998. name: "Normal",
  15999. height: math.unit(3, "feet")
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Sapphy" },
  16005. {
  16006. front: {
  16007. height: math.unit(15, "feet"),
  16008. weight: math.unit(3280, "lb"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/sapphy/front.svg",
  16012. extra: 671 / 577,
  16013. bottom: 0.085
  16014. }
  16015. },
  16016. back: {
  16017. height: math.unit(15, "feet"),
  16018. weight: math.unit(3280, "lb"),
  16019. name: "Back",
  16020. image: {
  16021. source: "./media/characters/sapphy/back.svg",
  16022. extra: 631 / 607,
  16023. bottom: 0.045
  16024. }
  16025. },
  16026. },
  16027. [
  16028. {
  16029. name: "Normal",
  16030. height: math.unit(15, "feet")
  16031. },
  16032. {
  16033. name: "Casual Macro",
  16034. height: math.unit(120, "feet")
  16035. },
  16036. {
  16037. name: "Macro",
  16038. height: math.unit(2150, "feet"),
  16039. default: true
  16040. },
  16041. {
  16042. name: "Megamacro",
  16043. height: math.unit(8, "miles")
  16044. },
  16045. {
  16046. name: "Galaxy Mom",
  16047. height: math.unit(6, "megalightyears")
  16048. },
  16049. ]
  16050. ))
  16051. characterMakers.push(() => makeCharacter(
  16052. { name: "Kiro" },
  16053. {
  16054. front: {
  16055. height: math.unit(6, "feet"),
  16056. weight: math.unit(170, "lb"),
  16057. name: "Front",
  16058. image: {
  16059. source: "./media/characters/kiro/front.svg",
  16060. extra: 1064 / 1012,
  16061. bottom: 0.052
  16062. }
  16063. },
  16064. },
  16065. [
  16066. {
  16067. name: "Micro",
  16068. height: math.unit(6, "inches")
  16069. },
  16070. {
  16071. name: "Normal",
  16072. height: math.unit(6, "feet"),
  16073. default: true
  16074. },
  16075. {
  16076. name: "Macro",
  16077. height: math.unit(72, "feet")
  16078. },
  16079. ]
  16080. ))
  16081. characterMakers.push(() => makeCharacter(
  16082. { name: "Irishfox" },
  16083. {
  16084. front: {
  16085. height: math.unit(5 + 9 / 12, "feet"),
  16086. weight: math.unit(175, "lb"),
  16087. name: "Front",
  16088. image: {
  16089. source: "./media/characters/irishfox/front.svg",
  16090. extra: 1912 / 1680,
  16091. bottom: 0.02
  16092. }
  16093. },
  16094. },
  16095. [
  16096. {
  16097. name: "Nano",
  16098. height: math.unit(1, "mm")
  16099. },
  16100. {
  16101. name: "Micro",
  16102. height: math.unit(2, "inches")
  16103. },
  16104. {
  16105. name: "Normal",
  16106. height: math.unit(5 + 9 / 12, "feet"),
  16107. default: true
  16108. },
  16109. {
  16110. name: "Macro",
  16111. height: math.unit(45, "feet")
  16112. },
  16113. ]
  16114. ))
  16115. characterMakers.push(() => makeCharacter(
  16116. { name: "Aronai Sieyes" },
  16117. {
  16118. front: {
  16119. height: math.unit(6 + 1 / 12, "feet"),
  16120. weight: math.unit(150, "lb"),
  16121. name: "Front",
  16122. image: {
  16123. source: "./media/characters/aronai-sieyes/front.svg",
  16124. extra: 1556 / 1480,
  16125. bottom: 0.015
  16126. }
  16127. },
  16128. side: {
  16129. height: math.unit(6 + 1 / 12, "feet"),
  16130. weight: math.unit(150, "lb"),
  16131. name: "Side",
  16132. image: {
  16133. source: "./media/characters/aronai-sieyes/side.svg",
  16134. extra: 1433 / 1390,
  16135. bottom: 0.0393
  16136. }
  16137. },
  16138. back: {
  16139. height: math.unit(6 + 1 / 12, "feet"),
  16140. weight: math.unit(150, "lb"),
  16141. name: "Back",
  16142. image: {
  16143. source: "./media/characters/aronai-sieyes/back.svg",
  16144. extra: 1544 / 1494,
  16145. bottom: 0.02
  16146. }
  16147. },
  16148. frontClothed: {
  16149. height: math.unit(6 + 1 / 12, "feet"),
  16150. weight: math.unit(150, "lb"),
  16151. name: "Front (Clothed)",
  16152. image: {
  16153. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16154. extra: 1582 / 1527
  16155. }
  16156. },
  16157. feral: {
  16158. height: math.unit(18, "feet"),
  16159. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16160. name: "Feral",
  16161. image: {
  16162. source: "./media/characters/aronai-sieyes/feral.svg",
  16163. extra: 1530 / 1240,
  16164. bottom: 0.035
  16165. }
  16166. },
  16167. },
  16168. [
  16169. {
  16170. name: "Micro",
  16171. height: math.unit(2, "inches")
  16172. },
  16173. {
  16174. name: "Normal",
  16175. height: math.unit(6 + 1 / 12, "feet"),
  16176. default: true
  16177. }
  16178. ]
  16179. ))
  16180. characterMakers.push(() => makeCharacter(
  16181. { name: "Xuna" },
  16182. {
  16183. front: {
  16184. height: math.unit(12, "feet"),
  16185. weight: math.unit(410, "kg"),
  16186. name: "Front",
  16187. image: {
  16188. source: "./media/characters/xuna/front.svg",
  16189. extra: 2184 / 1980
  16190. }
  16191. },
  16192. side: {
  16193. height: math.unit(12, "feet"),
  16194. weight: math.unit(410, "kg"),
  16195. name: "Side",
  16196. image: {
  16197. source: "./media/characters/xuna/side.svg",
  16198. extra: 2184 / 1980
  16199. }
  16200. },
  16201. back: {
  16202. height: math.unit(12, "feet"),
  16203. weight: math.unit(410, "kg"),
  16204. name: "Back",
  16205. image: {
  16206. source: "./media/characters/xuna/back.svg",
  16207. extra: 2184 / 1980
  16208. }
  16209. },
  16210. },
  16211. [
  16212. {
  16213. name: "Nano glow",
  16214. height: math.unit(10, "nm")
  16215. },
  16216. {
  16217. name: "Micro floof",
  16218. height: math.unit(0.3, "m")
  16219. },
  16220. {
  16221. name: "Huggable softy boi",
  16222. height: math.unit(3.6576, "m"),
  16223. default: true
  16224. },
  16225. {
  16226. name: "Admirable floof",
  16227. height: math.unit(80, "meters")
  16228. },
  16229. {
  16230. name: "Gentle macro",
  16231. height: math.unit(300, "meters")
  16232. },
  16233. {
  16234. name: "Very careful floof",
  16235. height: math.unit(3200, "meters")
  16236. },
  16237. {
  16238. name: "The mega floof",
  16239. height: math.unit(36000, "meters")
  16240. },
  16241. {
  16242. name: "Giga-fur-Wicker",
  16243. height: math.unit(4800000, "meters")
  16244. },
  16245. {
  16246. name: "Licky world",
  16247. height: math.unit(20000000, "meters")
  16248. },
  16249. {
  16250. name: "Floofy cyan sun",
  16251. height: math.unit(1500000000, "meters")
  16252. },
  16253. {
  16254. name: "Milky Wicker",
  16255. height: math.unit(1000000000000000000000, "meters")
  16256. },
  16257. {
  16258. name: "The observing Wicker",
  16259. height: math.unit(999999999999999999999999999, "meters")
  16260. },
  16261. ]
  16262. ))
  16263. characterMakers.push(() => makeCharacter(
  16264. { name: "Arokha Sieyes" },
  16265. {
  16266. front: {
  16267. height: math.unit(5 + 9 / 12, "feet"),
  16268. weight: math.unit(150, "lb"),
  16269. name: "Front",
  16270. image: {
  16271. source: "./media/characters/arokha-sieyes/front.svg",
  16272. extra: 1425 / 1284,
  16273. bottom: 0.05
  16274. }
  16275. },
  16276. },
  16277. [
  16278. {
  16279. name: "Normal",
  16280. height: math.unit(5 + 9 / 12, "feet")
  16281. },
  16282. {
  16283. name: "Macro",
  16284. height: math.unit(30, "meters"),
  16285. default: true
  16286. },
  16287. ]
  16288. ))
  16289. characterMakers.push(() => makeCharacter(
  16290. { name: "Arokh Sieyes" },
  16291. {
  16292. front: {
  16293. height: math.unit(6, "feet"),
  16294. weight: math.unit(180, "lb"),
  16295. name: "Front",
  16296. image: {
  16297. source: "./media/characters/arokh-sieyes/front.svg",
  16298. extra: 1830 / 1769,
  16299. bottom: 0.01
  16300. }
  16301. },
  16302. },
  16303. [
  16304. {
  16305. name: "Normal",
  16306. height: math.unit(6, "feet")
  16307. },
  16308. {
  16309. name: "Macro",
  16310. height: math.unit(30, "meters"),
  16311. default: true
  16312. },
  16313. ]
  16314. ))
  16315. characterMakers.push(() => makeCharacter(
  16316. { name: "Goldeneye" },
  16317. {
  16318. side: {
  16319. height: math.unit(13 + 1 / 12, "feet"),
  16320. weight: math.unit(8.5, "tonnes"),
  16321. name: "Side",
  16322. image: {
  16323. source: "./media/characters/goldeneye/side.svg",
  16324. extra: 1182 / 778,
  16325. bottom: 0.067
  16326. }
  16327. },
  16328. paw: {
  16329. height: math.unit(3.4, "feet"),
  16330. name: "Paw",
  16331. image: {
  16332. source: "./media/characters/goldeneye/paw.svg"
  16333. }
  16334. },
  16335. },
  16336. [
  16337. {
  16338. name: "Normal",
  16339. height: math.unit(13 + 1 / 12, "feet"),
  16340. default: true
  16341. },
  16342. ]
  16343. ))
  16344. characterMakers.push(() => makeCharacter(
  16345. { name: "Leonardo Lycheborne" },
  16346. {
  16347. front: {
  16348. height: math.unit(6 + 1 / 12, "feet"),
  16349. weight: math.unit(210, "lb"),
  16350. name: "Front",
  16351. image: {
  16352. source: "./media/characters/leonardo-lycheborne/front.svg",
  16353. extra: 390 / 365,
  16354. bottom: 0.032
  16355. }
  16356. },
  16357. side: {
  16358. height: math.unit(6 + 1 / 12, "feet"),
  16359. weight: math.unit(210, "lb"),
  16360. name: "Side",
  16361. image: {
  16362. source: "./media/characters/leonardo-lycheborne/side.svg",
  16363. extra: 390 / 365,
  16364. bottom: 0.005
  16365. }
  16366. },
  16367. back: {
  16368. height: math.unit(6 + 1 / 12, "feet"),
  16369. weight: math.unit(210, "lb"),
  16370. name: "Back",
  16371. image: {
  16372. source: "./media/characters/leonardo-lycheborne/back.svg",
  16373. extra: 392 / 366,
  16374. bottom: 0.01
  16375. }
  16376. },
  16377. hand: {
  16378. height: math.unit(1.08, "feet"),
  16379. name: "Hand",
  16380. image: {
  16381. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16382. }
  16383. },
  16384. foot: {
  16385. height: math.unit(1.32, "feet"),
  16386. name: "Foot",
  16387. image: {
  16388. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16389. }
  16390. },
  16391. were: {
  16392. height: math.unit(20, "feet"),
  16393. weight: math.unit(7800, "lb"),
  16394. name: "Were",
  16395. image: {
  16396. source: "./media/characters/leonardo-lycheborne/were.svg",
  16397. extra: 308 / 294,
  16398. bottom: 0.048
  16399. }
  16400. },
  16401. feral: {
  16402. height: math.unit(7.5, "feet"),
  16403. weight: math.unit(600, "lb"),
  16404. name: "Feral",
  16405. image: {
  16406. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16407. extra: 210 / 186,
  16408. bottom: 0.108
  16409. }
  16410. },
  16411. taur: {
  16412. height: math.unit(11, "feet"),
  16413. weight: math.unit(3300, "lb"),
  16414. name: "Taur",
  16415. image: {
  16416. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16417. extra: 320 / 303,
  16418. bottom: 0.025
  16419. }
  16420. },
  16421. barghest: {
  16422. height: math.unit(11, "feet"),
  16423. weight: math.unit(1300, "lb"),
  16424. name: "Barghest",
  16425. image: {
  16426. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16427. extra: 323 / 302,
  16428. bottom: 0.027
  16429. }
  16430. },
  16431. dick: {
  16432. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16433. name: "Dick",
  16434. image: {
  16435. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16436. }
  16437. },
  16438. dickWere: {
  16439. height: math.unit((20) / 3.8, "feet"),
  16440. name: "Dick (Were)",
  16441. image: {
  16442. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16443. }
  16444. },
  16445. },
  16446. [
  16447. {
  16448. name: "Normal",
  16449. height: math.unit(6 + 1 / 12, "feet"),
  16450. default: true
  16451. },
  16452. ]
  16453. ))
  16454. characterMakers.push(() => makeCharacter(
  16455. { name: "Jet" },
  16456. {
  16457. front: {
  16458. height: math.unit(10, "feet"),
  16459. weight: math.unit(350, "lb"),
  16460. name: "Front",
  16461. image: {
  16462. source: "./media/characters/jet/front.svg",
  16463. extra: 2050 / 1980,
  16464. bottom: 0.013
  16465. }
  16466. },
  16467. back: {
  16468. height: math.unit(10, "feet"),
  16469. weight: math.unit(350, "lb"),
  16470. name: "Back",
  16471. image: {
  16472. source: "./media/characters/jet/back.svg",
  16473. extra: 2050 / 1980,
  16474. bottom: 0.013
  16475. }
  16476. },
  16477. },
  16478. [
  16479. {
  16480. name: "Micro",
  16481. height: math.unit(6, "inches")
  16482. },
  16483. {
  16484. name: "Normal",
  16485. height: math.unit(10, "feet"),
  16486. default: true
  16487. },
  16488. {
  16489. name: "Macro",
  16490. height: math.unit(100, "feet")
  16491. },
  16492. ]
  16493. ))
  16494. characterMakers.push(() => makeCharacter(
  16495. { name: "Tanarath" },
  16496. {
  16497. front: {
  16498. height: math.unit(15, "feet"),
  16499. weight: math.unit(2800, "lb"),
  16500. name: "Front",
  16501. image: {
  16502. source: "./media/characters/tanarath/front.svg",
  16503. extra: 2392 / 2220,
  16504. bottom: 0.03
  16505. }
  16506. },
  16507. back: {
  16508. height: math.unit(15, "feet"),
  16509. weight: math.unit(2800, "lb"),
  16510. name: "Back",
  16511. image: {
  16512. source: "./media/characters/tanarath/back.svg",
  16513. extra: 2392 / 2220,
  16514. bottom: 0.03
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Normal",
  16521. height: math.unit(15, "feet"),
  16522. default: true
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Patty CattyBatty" },
  16528. {
  16529. front: {
  16530. height: math.unit(7 + 1 / 12, "feet"),
  16531. weight: math.unit(175, "lb"),
  16532. name: "Front",
  16533. image: {
  16534. source: "./media/characters/patty-cattybatty/front.svg",
  16535. extra: 908 / 874,
  16536. bottom: 0.025
  16537. }
  16538. },
  16539. },
  16540. [
  16541. {
  16542. name: "Micro",
  16543. height: math.unit(1, "inch")
  16544. },
  16545. {
  16546. name: "Normal",
  16547. height: math.unit(7 + 1 / 12, "feet")
  16548. },
  16549. {
  16550. name: "Mini Macro",
  16551. height: math.unit(155, "feet")
  16552. },
  16553. {
  16554. name: "Macro",
  16555. height: math.unit(1077, "feet")
  16556. },
  16557. {
  16558. name: "Mega Macro",
  16559. height: math.unit(47650, "feet"),
  16560. default: true
  16561. },
  16562. {
  16563. name: "Giga Macro",
  16564. height: math.unit(440, "miles")
  16565. },
  16566. {
  16567. name: "Tera Macro",
  16568. height: math.unit(8700, "miles")
  16569. },
  16570. {
  16571. name: "Planetary Macro",
  16572. height: math.unit(32700, "miles")
  16573. },
  16574. {
  16575. name: "Solar Macro",
  16576. height: math.unit(550000, "miles")
  16577. },
  16578. {
  16579. name: "Celestial Macro",
  16580. height: math.unit(2.5, "AU")
  16581. },
  16582. ]
  16583. ))
  16584. characterMakers.push(() => makeCharacter(
  16585. { name: "Cappu" },
  16586. {
  16587. front: {
  16588. height: math.unit(4 + 5 / 12, "feet"),
  16589. weight: math.unit(90, "lb"),
  16590. name: "Front",
  16591. image: {
  16592. source: "./media/characters/cappu/front.svg",
  16593. extra: 1247 / 1152,
  16594. bottom: 0.012
  16595. }
  16596. },
  16597. },
  16598. [
  16599. {
  16600. name: "Normal",
  16601. height: math.unit(4 + 5 / 12, "feet"),
  16602. default: true
  16603. },
  16604. ]
  16605. ))
  16606. characterMakers.push(() => makeCharacter(
  16607. { name: "Sebi" },
  16608. {
  16609. frontDressed: {
  16610. height: math.unit(70, "cm"),
  16611. weight: math.unit(6, "kg"),
  16612. name: "Front (Dressed)",
  16613. image: {
  16614. source: "./media/characters/sebi/front-dressed.svg",
  16615. extra: 713.5 / 686.5,
  16616. bottom: 0.003
  16617. }
  16618. },
  16619. front: {
  16620. height: math.unit(70, "cm"),
  16621. weight: math.unit(5, "kg"),
  16622. name: "Front",
  16623. image: {
  16624. source: "./media/characters/sebi/front.svg",
  16625. extra: 713.5 / 686.5,
  16626. bottom: 0.003
  16627. }
  16628. }
  16629. },
  16630. [
  16631. {
  16632. name: "Normal",
  16633. height: math.unit(70, "cm"),
  16634. default: true
  16635. },
  16636. {
  16637. name: "Macro",
  16638. height: math.unit(8, "meters")
  16639. },
  16640. ]
  16641. ))
  16642. characterMakers.push(() => makeCharacter(
  16643. { name: "Typhek" },
  16644. {
  16645. front: {
  16646. height: math.unit(6, "feet"),
  16647. weight: math.unit(150, "lb"),
  16648. name: "Front",
  16649. image: {
  16650. source: "./media/characters/typhek/front.svg",
  16651. extra: 1948 / 1929,
  16652. bottom: 0.025
  16653. }
  16654. },
  16655. side: {
  16656. height: math.unit(6, "feet"),
  16657. weight: math.unit(150, "lb"),
  16658. name: "Side",
  16659. image: {
  16660. source: "./media/characters/typhek/side.svg",
  16661. extra: 2034 / 2010,
  16662. bottom: 0.003
  16663. }
  16664. },
  16665. back: {
  16666. height: math.unit(6, "feet"),
  16667. weight: math.unit(150, "lb"),
  16668. name: "Back",
  16669. image: {
  16670. source: "./media/characters/typhek/back.svg",
  16671. extra: 2005 / 1978,
  16672. bottom: 0.004
  16673. }
  16674. },
  16675. palm: {
  16676. height: math.unit(1.2, "feet"),
  16677. name: "Palm",
  16678. image: {
  16679. source: "./media/characters/typhek/palm.svg"
  16680. }
  16681. },
  16682. fist: {
  16683. height: math.unit(1.1, "feet"),
  16684. name: "Fist",
  16685. image: {
  16686. source: "./media/characters/typhek/fist.svg"
  16687. }
  16688. },
  16689. foot: {
  16690. height: math.unit(1.57, "feet"),
  16691. name: "Foot",
  16692. image: {
  16693. source: "./media/characters/typhek/foot.svg"
  16694. }
  16695. },
  16696. sole: {
  16697. height: math.unit(2.05, "feet"),
  16698. name: "Sole",
  16699. image: {
  16700. source: "./media/characters/typhek/sole.svg"
  16701. }
  16702. },
  16703. },
  16704. [
  16705. {
  16706. name: "Macro",
  16707. height: math.unit(40, "stories"),
  16708. default: true
  16709. },
  16710. {
  16711. name: "Megamacro",
  16712. height: math.unit(1, "mile")
  16713. },
  16714. {
  16715. name: "Gigamacro",
  16716. height: math.unit(4000, "solarradii")
  16717. },
  16718. {
  16719. name: "Universal",
  16720. height: math.unit(1.1, "universes")
  16721. }
  16722. ]
  16723. ))
  16724. characterMakers.push(() => makeCharacter(
  16725. { name: "Kassy" },
  16726. {
  16727. side: {
  16728. height: math.unit(5 + 7 / 12, "feet"),
  16729. weight: math.unit(150, "lb"),
  16730. name: "Side",
  16731. image: {
  16732. source: "./media/characters/kassy/side.svg",
  16733. extra: 1280 / 1225,
  16734. bottom: 0.002
  16735. }
  16736. },
  16737. front: {
  16738. height: math.unit(5 + 7 / 12, "feet"),
  16739. weight: math.unit(150, "lb"),
  16740. name: "Front",
  16741. image: {
  16742. source: "./media/characters/kassy/front.svg",
  16743. extra: 1280 / 1225,
  16744. bottom: 0.025
  16745. }
  16746. },
  16747. back: {
  16748. height: math.unit(5 + 7 / 12, "feet"),
  16749. weight: math.unit(150, "lb"),
  16750. name: "Back",
  16751. image: {
  16752. source: "./media/characters/kassy/back.svg",
  16753. extra: 1280 / 1225,
  16754. bottom: 0.002
  16755. }
  16756. },
  16757. foot: {
  16758. height: math.unit(1.266, "feet"),
  16759. name: "Foot",
  16760. image: {
  16761. source: "./media/characters/kassy/foot.svg"
  16762. }
  16763. },
  16764. },
  16765. [
  16766. {
  16767. name: "Normal",
  16768. height: math.unit(5 + 7 / 12, "feet")
  16769. },
  16770. {
  16771. name: "Macro",
  16772. height: math.unit(137, "feet"),
  16773. default: true
  16774. },
  16775. {
  16776. name: "Megamacro",
  16777. height: math.unit(1, "mile")
  16778. },
  16779. ]
  16780. ))
  16781. characterMakers.push(() => makeCharacter(
  16782. { name: "Neil" },
  16783. {
  16784. front: {
  16785. height: math.unit(6 + 1 / 12, "feet"),
  16786. weight: math.unit(200, "lb"),
  16787. name: "Front",
  16788. image: {
  16789. source: "./media/characters/neil/front.svg",
  16790. extra: 1326 / 1250,
  16791. bottom: 0.023
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Normal",
  16798. height: math.unit(6 + 1 / 12, "feet"),
  16799. default: true
  16800. },
  16801. {
  16802. name: "Macro",
  16803. height: math.unit(200, "feet")
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Atticus" },
  16809. {
  16810. front: {
  16811. height: math.unit(5 + 9 / 12, "feet"),
  16812. weight: math.unit(190, "lb"),
  16813. name: "Front",
  16814. image: {
  16815. source: "./media/characters/atticus/front.svg",
  16816. extra: 2934 / 2785,
  16817. bottom: 0.025
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Normal",
  16824. height: math.unit(5 + 9 / 12, "feet"),
  16825. default: true
  16826. },
  16827. {
  16828. name: "Macro",
  16829. height: math.unit(180, "feet")
  16830. },
  16831. ]
  16832. ))
  16833. characterMakers.push(() => makeCharacter(
  16834. { name: "Milo" },
  16835. {
  16836. side: {
  16837. height: math.unit(9, "feet"),
  16838. weight: math.unit(650, "lb"),
  16839. name: "Side",
  16840. image: {
  16841. source: "./media/characters/milo/side.svg",
  16842. extra: 2644 / 2310,
  16843. bottom: 0.032
  16844. }
  16845. },
  16846. },
  16847. [
  16848. {
  16849. name: "Normal",
  16850. height: math.unit(9, "feet"),
  16851. default: true
  16852. },
  16853. {
  16854. name: "Macro",
  16855. height: math.unit(300, "feet")
  16856. },
  16857. ]
  16858. ))
  16859. characterMakers.push(() => makeCharacter(
  16860. { name: "Ijzer" },
  16861. {
  16862. side: {
  16863. height: math.unit(8, "meters"),
  16864. weight: math.unit(90000, "kg"),
  16865. name: "Side",
  16866. image: {
  16867. source: "./media/characters/ijzer/side.svg",
  16868. extra: 2756 / 1600,
  16869. bottom: 0.01
  16870. }
  16871. },
  16872. },
  16873. [
  16874. {
  16875. name: "Small",
  16876. height: math.unit(3, "meters")
  16877. },
  16878. {
  16879. name: "Normal",
  16880. height: math.unit(8, "meters"),
  16881. default: true
  16882. },
  16883. {
  16884. name: "Normal+",
  16885. height: math.unit(10, "meters")
  16886. },
  16887. {
  16888. name: "Bigger",
  16889. height: math.unit(24, "meters")
  16890. },
  16891. {
  16892. name: "Huge",
  16893. height: math.unit(80, "meters")
  16894. },
  16895. ]
  16896. ))
  16897. characterMakers.push(() => makeCharacter(
  16898. { name: "Luca Cervicum" },
  16899. {
  16900. front: {
  16901. height: math.unit(6 + 2 / 12, "feet"),
  16902. weight: math.unit(153, "lb"),
  16903. name: "Front",
  16904. image: {
  16905. source: "./media/characters/luca-cervicum/front.svg",
  16906. extra: 370 / 327,
  16907. bottom: 0.015
  16908. }
  16909. },
  16910. back: {
  16911. height: math.unit(6 + 2 / 12, "feet"),
  16912. weight: math.unit(153, "lb"),
  16913. name: "Back",
  16914. image: {
  16915. source: "./media/characters/luca-cervicum/back.svg",
  16916. extra: 367 / 333,
  16917. bottom: 0.005
  16918. }
  16919. },
  16920. frontGear: {
  16921. height: math.unit(6 + 2 / 12, "feet"),
  16922. weight: math.unit(173, "lb"),
  16923. name: "Front (Gear)",
  16924. image: {
  16925. source: "./media/characters/luca-cervicum/front-gear.svg",
  16926. extra: 377 / 333,
  16927. bottom: 0.006
  16928. }
  16929. },
  16930. },
  16931. [
  16932. {
  16933. name: "Normal",
  16934. height: math.unit(6 + 2 / 12, "feet"),
  16935. default: true
  16936. },
  16937. ]
  16938. ))
  16939. characterMakers.push(() => makeCharacter(
  16940. { name: "Oliver" },
  16941. {
  16942. front: {
  16943. height: math.unit(6 + 1 / 12, "feet"),
  16944. weight: math.unit(304, "lb"),
  16945. name: "Front",
  16946. image: {
  16947. source: "./media/characters/oliver/front.svg",
  16948. extra: 157 / 143,
  16949. bottom: 0.08
  16950. }
  16951. },
  16952. },
  16953. [
  16954. {
  16955. name: "Normal",
  16956. height: math.unit(6 + 1 / 12, "feet"),
  16957. default: true
  16958. },
  16959. ]
  16960. ))
  16961. characterMakers.push(() => makeCharacter(
  16962. { name: "Shane" },
  16963. {
  16964. front: {
  16965. height: math.unit(5 + 7 / 12, "feet"),
  16966. weight: math.unit(140, "lb"),
  16967. name: "Front",
  16968. image: {
  16969. source: "./media/characters/shane/front.svg",
  16970. extra: 304 / 289,
  16971. bottom: 0.005
  16972. }
  16973. },
  16974. },
  16975. [
  16976. {
  16977. name: "Normal",
  16978. height: math.unit(5 + 7 / 12, "feet"),
  16979. default: true
  16980. },
  16981. ]
  16982. ))
  16983. characterMakers.push(() => makeCharacter(
  16984. { name: "Shin" },
  16985. {
  16986. front: {
  16987. height: math.unit(5 + 9 / 12, "feet"),
  16988. weight: math.unit(178, "lb"),
  16989. name: "Front",
  16990. image: {
  16991. source: "./media/characters/shin/front.svg",
  16992. extra: 159 / 151,
  16993. bottom: 0.015
  16994. }
  16995. },
  16996. },
  16997. [
  16998. {
  16999. name: "Normal",
  17000. height: math.unit(5 + 9 / 12, "feet"),
  17001. default: true
  17002. },
  17003. ]
  17004. ))
  17005. characterMakers.push(() => makeCharacter(
  17006. { name: "Xerxes" },
  17007. {
  17008. front: {
  17009. height: math.unit(5 + 10 / 12, "feet"),
  17010. weight: math.unit(168, "lb"),
  17011. name: "Front",
  17012. image: {
  17013. source: "./media/characters/xerxes/front.svg",
  17014. extra: 282 / 260,
  17015. bottom: 0.045
  17016. }
  17017. },
  17018. },
  17019. [
  17020. {
  17021. name: "Normal",
  17022. height: math.unit(5 + 10 / 12, "feet"),
  17023. default: true
  17024. },
  17025. ]
  17026. ))
  17027. characterMakers.push(() => makeCharacter(
  17028. { name: "Chaska" },
  17029. {
  17030. front: {
  17031. height: math.unit(6 + 7 / 12, "feet"),
  17032. weight: math.unit(208, "lb"),
  17033. name: "Front",
  17034. image: {
  17035. source: "./media/characters/chaska/front.svg",
  17036. extra: 332 / 319,
  17037. bottom: 0.015
  17038. }
  17039. },
  17040. },
  17041. [
  17042. {
  17043. name: "Normal",
  17044. height: math.unit(6 + 7 / 12, "feet"),
  17045. default: true
  17046. },
  17047. ]
  17048. ))
  17049. characterMakers.push(() => makeCharacter(
  17050. { name: "Enuk" },
  17051. {
  17052. front: {
  17053. height: math.unit(5 + 8 / 12, "feet"),
  17054. weight: math.unit(208, "lb"),
  17055. name: "Front",
  17056. image: {
  17057. source: "./media/characters/enuk/front.svg",
  17058. extra: 437 / 406,
  17059. bottom: 0.02
  17060. }
  17061. },
  17062. },
  17063. [
  17064. {
  17065. name: "Normal",
  17066. height: math.unit(5 + 8 / 12, "feet"),
  17067. default: true
  17068. },
  17069. ]
  17070. ))
  17071. characterMakers.push(() => makeCharacter(
  17072. { name: "Bruun" },
  17073. {
  17074. front: {
  17075. height: math.unit(5 + 10 / 12, "feet"),
  17076. weight: math.unit(252, "lb"),
  17077. name: "Front",
  17078. image: {
  17079. source: "./media/characters/bruun/front.svg",
  17080. extra: 197 / 187,
  17081. bottom: 0.012
  17082. }
  17083. },
  17084. },
  17085. [
  17086. {
  17087. name: "Normal",
  17088. height: math.unit(5 + 10 / 12, "feet"),
  17089. default: true
  17090. },
  17091. ]
  17092. ))
  17093. characterMakers.push(() => makeCharacter(
  17094. { name: "Alexeev" },
  17095. {
  17096. front: {
  17097. height: math.unit(6 + 10 / 12, "feet"),
  17098. weight: math.unit(255, "lb"),
  17099. name: "Front",
  17100. image: {
  17101. source: "./media/characters/alexeev/front.svg",
  17102. extra: 213 / 200,
  17103. bottom: 0.05
  17104. }
  17105. },
  17106. },
  17107. [
  17108. {
  17109. name: "Normal",
  17110. height: math.unit(6 + 10 / 12, "feet"),
  17111. default: true
  17112. },
  17113. ]
  17114. ))
  17115. characterMakers.push(() => makeCharacter(
  17116. { name: "Evelyn" },
  17117. {
  17118. front: {
  17119. height: math.unit(2 + 8 / 12, "feet"),
  17120. weight: math.unit(22, "lb"),
  17121. name: "Front",
  17122. image: {
  17123. source: "./media/characters/evelyn/front.svg",
  17124. extra: 208 / 180
  17125. }
  17126. },
  17127. },
  17128. [
  17129. {
  17130. name: "Normal",
  17131. height: math.unit(2 + 8 / 12, "feet"),
  17132. default: true
  17133. },
  17134. ]
  17135. ))
  17136. characterMakers.push(() => makeCharacter(
  17137. { name: "Inca" },
  17138. {
  17139. front: {
  17140. height: math.unit(5 + 9 / 12, "feet"),
  17141. weight: math.unit(139, "lb"),
  17142. name: "Front",
  17143. image: {
  17144. source: "./media/characters/inca/front.svg",
  17145. extra: 294 / 291,
  17146. bottom: 0.03
  17147. }
  17148. },
  17149. },
  17150. [
  17151. {
  17152. name: "Normal",
  17153. height: math.unit(5 + 9 / 12, "feet"),
  17154. default: true
  17155. },
  17156. ]
  17157. ))
  17158. characterMakers.push(() => makeCharacter(
  17159. { name: "Magdalene" },
  17160. {
  17161. front: {
  17162. height: math.unit(5 + 1 / 12, "feet"),
  17163. weight: math.unit(84, "lb"),
  17164. name: "Front",
  17165. image: {
  17166. source: "./media/characters/magdalene/front.svg",
  17167. extra: 293 / 273
  17168. }
  17169. },
  17170. },
  17171. [
  17172. {
  17173. name: "Normal",
  17174. height: math.unit(5 + 1 / 12, "feet"),
  17175. default: true
  17176. },
  17177. ]
  17178. ))
  17179. characterMakers.push(() => makeCharacter(
  17180. { name: "Mera" },
  17181. {
  17182. front: {
  17183. height: math.unit(6 + 3 / 12, "feet"),
  17184. weight: math.unit(185, "lb"),
  17185. name: "Front",
  17186. image: {
  17187. source: "./media/characters/mera/front.svg",
  17188. extra: 291 / 277,
  17189. bottom: 0.03
  17190. }
  17191. },
  17192. },
  17193. [
  17194. {
  17195. name: "Normal",
  17196. height: math.unit(6 + 3 / 12, "feet"),
  17197. default: true
  17198. },
  17199. ]
  17200. ))
  17201. characterMakers.push(() => makeCharacter(
  17202. { name: "Ceres" },
  17203. {
  17204. front: {
  17205. height: math.unit(6 + 7 / 12, "feet"),
  17206. weight: math.unit(160, "lb"),
  17207. name: "Front",
  17208. image: {
  17209. source: "./media/characters/ceres/front.svg",
  17210. extra: 1023 / 950,
  17211. bottom: 0.027
  17212. }
  17213. },
  17214. back: {
  17215. height: math.unit(6 + 7 / 12, "feet"),
  17216. weight: math.unit(160, "lb"),
  17217. name: "Back",
  17218. image: {
  17219. source: "./media/characters/ceres/back.svg",
  17220. extra: 1023 / 950
  17221. }
  17222. },
  17223. },
  17224. [
  17225. {
  17226. name: "Normal",
  17227. height: math.unit(6 + 7 / 12, "feet"),
  17228. default: true
  17229. },
  17230. ]
  17231. ))
  17232. characterMakers.push(() => makeCharacter(
  17233. { name: "Kris" },
  17234. {
  17235. front: {
  17236. height: math.unit(5 + 10 / 12, "feet"),
  17237. weight: math.unit(150, "lb"),
  17238. name: "Front",
  17239. image: {
  17240. source: "./media/characters/kris/front.svg",
  17241. extra: 885 / 803,
  17242. bottom: 0.03
  17243. }
  17244. },
  17245. },
  17246. [
  17247. {
  17248. name: "Normal",
  17249. height: math.unit(5 + 10 / 12, "feet"),
  17250. default: true
  17251. },
  17252. ]
  17253. ))
  17254. characterMakers.push(() => makeCharacter(
  17255. { name: "Taluthus" },
  17256. {
  17257. front: {
  17258. height: math.unit(7, "feet"),
  17259. weight: math.unit(120, "kg"),
  17260. name: "Front",
  17261. image: {
  17262. source: "./media/characters/taluthus/front.svg",
  17263. extra: 903 / 833,
  17264. bottom: 0.015
  17265. }
  17266. },
  17267. },
  17268. [
  17269. {
  17270. name: "Normal",
  17271. height: math.unit(7, "feet"),
  17272. default: true
  17273. },
  17274. {
  17275. name: "Macro",
  17276. height: math.unit(300, "feet")
  17277. },
  17278. ]
  17279. ))
  17280. characterMakers.push(() => makeCharacter(
  17281. { name: "Dawn" },
  17282. {
  17283. front: {
  17284. height: math.unit(5 + 9 / 12, "feet"),
  17285. weight: math.unit(145, "lb"),
  17286. name: "Front",
  17287. image: {
  17288. source: "./media/characters/dawn/front.svg",
  17289. extra: 2094 / 2016,
  17290. bottom: 0.025
  17291. }
  17292. },
  17293. back: {
  17294. height: math.unit(5 + 9 / 12, "feet"),
  17295. weight: math.unit(160, "lb"),
  17296. name: "Back",
  17297. image: {
  17298. source: "./media/characters/dawn/back.svg",
  17299. extra: 2112 / 2080,
  17300. bottom: 0.005
  17301. }
  17302. },
  17303. },
  17304. [
  17305. {
  17306. name: "Normal",
  17307. height: math.unit(6 + 7 / 12, "feet"),
  17308. default: true
  17309. },
  17310. ]
  17311. ))
  17312. characterMakers.push(() => makeCharacter(
  17313. { name: "Arador" },
  17314. {
  17315. anthro: {
  17316. height: math.unit(8 + 3 / 12, "feet"),
  17317. weight: math.unit(450, "lb"),
  17318. name: "Anthro",
  17319. image: {
  17320. source: "./media/characters/arador/anthro.svg",
  17321. extra: 1835 / 1718,
  17322. bottom: 0.025
  17323. }
  17324. },
  17325. feral: {
  17326. height: math.unit(4, "feet"),
  17327. weight: math.unit(200, "lb"),
  17328. name: "Feral",
  17329. image: {
  17330. source: "./media/characters/arador/feral.svg",
  17331. extra: 1683 / 1514,
  17332. bottom: 0.07
  17333. }
  17334. },
  17335. },
  17336. [
  17337. {
  17338. name: "Normal",
  17339. height: math.unit(8 + 3 / 12, "feet")
  17340. },
  17341. {
  17342. name: "Macro",
  17343. height: math.unit(82.5, "feet"),
  17344. default: true
  17345. },
  17346. ]
  17347. ))
  17348. characterMakers.push(() => makeCharacter(
  17349. { name: "Dharsi" },
  17350. {
  17351. front: {
  17352. height: math.unit(5 + 10 / 12, "feet"),
  17353. weight: math.unit(125, "lb"),
  17354. name: "Front",
  17355. image: {
  17356. source: "./media/characters/dharsi/front.svg",
  17357. extra: 716 / 630,
  17358. bottom: 0.035
  17359. }
  17360. },
  17361. },
  17362. [
  17363. {
  17364. name: "Nano",
  17365. height: math.unit(100, "nm")
  17366. },
  17367. {
  17368. name: "Micro",
  17369. height: math.unit(2, "inches")
  17370. },
  17371. {
  17372. name: "Normal",
  17373. height: math.unit(5 + 10 / 12, "feet"),
  17374. default: true
  17375. },
  17376. {
  17377. name: "Macro",
  17378. height: math.unit(1000, "feet")
  17379. },
  17380. {
  17381. name: "Megamacro",
  17382. height: math.unit(10, "miles")
  17383. },
  17384. {
  17385. name: "Gigamacro",
  17386. height: math.unit(3000, "miles")
  17387. },
  17388. {
  17389. name: "Teramacro",
  17390. height: math.unit(500000, "miles")
  17391. },
  17392. {
  17393. name: "Teramacro+",
  17394. height: math.unit(30, "galaxies")
  17395. },
  17396. ]
  17397. ))
  17398. characterMakers.push(() => makeCharacter(
  17399. { name: "Deathy" },
  17400. {
  17401. front: {
  17402. height: math.unit(6, "feet"),
  17403. weight: math.unit(150, "lb"),
  17404. name: "Front",
  17405. image: {
  17406. source: "./media/characters/deathy/front.svg",
  17407. extra: 1552 / 1463,
  17408. bottom: 0.025
  17409. }
  17410. },
  17411. side: {
  17412. height: math.unit(6, "feet"),
  17413. weight: math.unit(150, "lb"),
  17414. name: "Side",
  17415. image: {
  17416. source: "./media/characters/deathy/side.svg",
  17417. extra: 1604 / 1455,
  17418. bottom: 0.025
  17419. }
  17420. },
  17421. back: {
  17422. height: math.unit(6, "feet"),
  17423. weight: math.unit(150, "lb"),
  17424. name: "Back",
  17425. image: {
  17426. source: "./media/characters/deathy/back.svg",
  17427. extra: 1580 / 1463,
  17428. bottom: 0.005
  17429. }
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Micro",
  17435. height: math.unit(5, "millimeters")
  17436. },
  17437. {
  17438. name: "Normal",
  17439. height: math.unit(6 + 5 / 12, "feet"),
  17440. default: true
  17441. },
  17442. ]
  17443. ))
  17444. characterMakers.push(() => makeCharacter(
  17445. { name: "Juniper" },
  17446. {
  17447. front: {
  17448. height: math.unit(16, "feet"),
  17449. weight: math.unit(4000, "lb"),
  17450. name: "Front",
  17451. image: {
  17452. source: "./media/characters/juniper/front.svg",
  17453. bottom: 0.04
  17454. }
  17455. },
  17456. },
  17457. [
  17458. {
  17459. name: "Normal",
  17460. height: math.unit(16, "feet"),
  17461. default: true
  17462. },
  17463. ]
  17464. ))
  17465. characterMakers.push(() => makeCharacter(
  17466. { name: "Hipster" },
  17467. {
  17468. front: {
  17469. height: math.unit(6, "feet"),
  17470. weight: math.unit(150, "lb"),
  17471. name: "Front",
  17472. image: {
  17473. source: "./media/characters/hipster/front.svg",
  17474. extra: 1312 / 1209,
  17475. bottom: 0.025
  17476. }
  17477. },
  17478. back: {
  17479. height: math.unit(6, "feet"),
  17480. weight: math.unit(150, "lb"),
  17481. name: "Back",
  17482. image: {
  17483. source: "./media/characters/hipster/back.svg",
  17484. extra: 1281 / 1196,
  17485. bottom: 0.01
  17486. }
  17487. },
  17488. },
  17489. [
  17490. {
  17491. name: "Micro",
  17492. height: math.unit(1, "mm")
  17493. },
  17494. {
  17495. name: "Normal",
  17496. height: math.unit(4, "inches"),
  17497. default: true
  17498. },
  17499. {
  17500. name: "Macro",
  17501. height: math.unit(500, "feet")
  17502. },
  17503. {
  17504. name: "Megamacro",
  17505. height: math.unit(1000, "miles")
  17506. },
  17507. ]
  17508. ))
  17509. characterMakers.push(() => makeCharacter(
  17510. { name: "Tendirmuldr" },
  17511. {
  17512. front: {
  17513. height: math.unit(6, "feet"),
  17514. weight: math.unit(150, "lb"),
  17515. name: "Front",
  17516. image: {
  17517. source: "./media/characters/tendirmuldr/front.svg",
  17518. extra: 1878 / 1772,
  17519. bottom: 0.015
  17520. }
  17521. },
  17522. },
  17523. [
  17524. {
  17525. name: "Megamacro",
  17526. height: math.unit(1500, "miles"),
  17527. default: true
  17528. },
  17529. ]
  17530. ))
  17531. characterMakers.push(() => makeCharacter(
  17532. { name: "Mort" },
  17533. {
  17534. front: {
  17535. height: math.unit(14, "feet"),
  17536. weight: math.unit(12000, "lb"),
  17537. name: "Front",
  17538. image: {
  17539. source: "./media/characters/mort/front.svg",
  17540. extra: 365 / 318,
  17541. bottom: 0.01
  17542. }
  17543. },
  17544. side: {
  17545. height: math.unit(14, "feet"),
  17546. weight: math.unit(12000, "lb"),
  17547. name: "Side",
  17548. image: {
  17549. source: "./media/characters/mort/side.svg",
  17550. extra: 365 / 318,
  17551. bottom: 0.052
  17552. },
  17553. default: true
  17554. },
  17555. back: {
  17556. height: math.unit(14, "feet"),
  17557. weight: math.unit(12000, "lb"),
  17558. name: "Back",
  17559. image: {
  17560. source: "./media/characters/mort/back.svg",
  17561. extra: 371 / 332,
  17562. bottom: 0.18
  17563. }
  17564. },
  17565. },
  17566. [
  17567. {
  17568. name: "Normal",
  17569. height: math.unit(14, "feet"),
  17570. default: true
  17571. },
  17572. ]
  17573. ))
  17574. characterMakers.push(() => makeCharacter(
  17575. { name: "Lycoa" },
  17576. {
  17577. front: {
  17578. height: math.unit(8, "feet"),
  17579. weight: math.unit(1, "ton"),
  17580. name: "Front",
  17581. image: {
  17582. source: "./media/characters/lycoa/front.svg",
  17583. extra: 1875 / 1789,
  17584. bottom: 0.022
  17585. }
  17586. },
  17587. back: {
  17588. height: math.unit(8, "feet"),
  17589. weight: math.unit(1, "ton"),
  17590. name: "Back",
  17591. image: {
  17592. source: "./media/characters/lycoa/back.svg",
  17593. extra: 1835 / 1781,
  17594. bottom: 0.03
  17595. }
  17596. },
  17597. },
  17598. [
  17599. {
  17600. name: "Normal",
  17601. height: math.unit(8, "feet"),
  17602. default: true
  17603. },
  17604. {
  17605. name: "Macro",
  17606. height: math.unit(30, "feet")
  17607. },
  17608. ]
  17609. ))
  17610. characterMakers.push(() => makeCharacter(
  17611. { name: "Naldara" },
  17612. {
  17613. front: {
  17614. height: math.unit(4 + 2 / 12, "feet"),
  17615. weight: math.unit(70, "lb"),
  17616. name: "Front",
  17617. image: {
  17618. source: "./media/characters/naldara/front.svg",
  17619. extra: 841 / 720,
  17620. bottom: 0.04
  17621. }
  17622. },
  17623. },
  17624. [
  17625. {
  17626. name: "Normal",
  17627. height: math.unit(4 + 2 / 12, "feet"),
  17628. default: true
  17629. },
  17630. ]
  17631. ))
  17632. characterMakers.push(() => makeCharacter(
  17633. { name: "Briar" },
  17634. {
  17635. front: {
  17636. height: math.unit(13 + 7 / 12, "feet"),
  17637. weight: math.unit(1500, "lb"),
  17638. name: "Front",
  17639. image: {
  17640. source: "./media/characters/briar/front.svg",
  17641. extra: 626 / 596,
  17642. bottom: 0.08
  17643. }
  17644. },
  17645. },
  17646. [
  17647. {
  17648. name: "Normal",
  17649. height: math.unit(13 + 7 / 12, "feet"),
  17650. default: true
  17651. },
  17652. ]
  17653. ))
  17654. characterMakers.push(() => makeCharacter(
  17655. { name: "Vanguard" },
  17656. {
  17657. side: {
  17658. height: math.unit(10, "feet"),
  17659. weight: math.unit(500, "lb"),
  17660. name: "Side",
  17661. image: {
  17662. source: "./media/characters/vanguard/side.svg",
  17663. extra: 502 / 425,
  17664. bottom: 0.087
  17665. }
  17666. },
  17667. },
  17668. [
  17669. {
  17670. name: "Normal",
  17671. height: math.unit(10, "feet"),
  17672. default: true
  17673. },
  17674. ]
  17675. ))
  17676. characterMakers.push(() => makeCharacter(
  17677. { name: "Artemis" },
  17678. {
  17679. front: {
  17680. height: math.unit(7.5, "feet"),
  17681. weight: math.unit(2, "lb"),
  17682. name: "Front",
  17683. image: {
  17684. source: "./media/characters/artemis/front.svg",
  17685. extra: 1192 / 1075,
  17686. bottom: 0.07
  17687. }
  17688. },
  17689. },
  17690. [
  17691. {
  17692. name: "Normal",
  17693. height: math.unit(7.5, "feet"),
  17694. default: true
  17695. },
  17696. {
  17697. name: "Enlarged",
  17698. height: math.unit(12, "feet")
  17699. },
  17700. ]
  17701. ))
  17702. characterMakers.push(() => makeCharacter(
  17703. { name: "Kira" },
  17704. {
  17705. front: {
  17706. height: math.unit(5 + 3 / 12, "feet"),
  17707. weight: math.unit(160, "lb"),
  17708. name: "Front",
  17709. image: {
  17710. source: "./media/characters/kira/front.svg",
  17711. extra: 906 / 786,
  17712. bottom: 0.01
  17713. }
  17714. },
  17715. back: {
  17716. height: math.unit(5 + 3 / 12, "feet"),
  17717. weight: math.unit(160, "lb"),
  17718. name: "Back",
  17719. image: {
  17720. source: "./media/characters/kira/back.svg",
  17721. extra: 882 / 757,
  17722. bottom: 0.005
  17723. }
  17724. },
  17725. frontDressed: {
  17726. height: math.unit(5 + 3 / 12, "feet"),
  17727. weight: math.unit(160, "lb"),
  17728. name: "Front (Dressed)",
  17729. image: {
  17730. source: "./media/characters/kira/front-dressed.svg",
  17731. extra: 906 / 786,
  17732. bottom: 0.01
  17733. }
  17734. },
  17735. beans: {
  17736. height: math.unit(0.92, "feet"),
  17737. name: "Beans",
  17738. image: {
  17739. source: "./media/characters/kira/beans.svg"
  17740. }
  17741. },
  17742. },
  17743. [
  17744. {
  17745. name: "Normal",
  17746. height: math.unit(5 + 3 / 12, "feet"),
  17747. default: true
  17748. },
  17749. ]
  17750. ))
  17751. characterMakers.push(() => makeCharacter(
  17752. { name: "Scramble" },
  17753. {
  17754. front: {
  17755. height: math.unit(5 + 4 / 12, "feet"),
  17756. weight: math.unit(145, "lb"),
  17757. name: "Front",
  17758. image: {
  17759. source: "./media/characters/scramble/front.svg",
  17760. extra: 763 / 727,
  17761. bottom: 0.05
  17762. }
  17763. },
  17764. back: {
  17765. height: math.unit(5 + 4 / 12, "feet"),
  17766. weight: math.unit(145, "lb"),
  17767. name: "Back",
  17768. image: {
  17769. source: "./media/characters/scramble/back.svg",
  17770. extra: 826 / 737,
  17771. bottom: 0.002
  17772. }
  17773. },
  17774. },
  17775. [
  17776. {
  17777. name: "Normal",
  17778. height: math.unit(5 + 4 / 12, "feet"),
  17779. default: true
  17780. },
  17781. ]
  17782. ))
  17783. characterMakers.push(() => makeCharacter(
  17784. { name: "Biscuit" },
  17785. {
  17786. side: {
  17787. height: math.unit(6 + 2 / 12, "feet"),
  17788. weight: math.unit(190, "lb"),
  17789. name: "Side",
  17790. image: {
  17791. source: "./media/characters/biscuit/side.svg",
  17792. extra: 858 / 791,
  17793. bottom: 0.044
  17794. }
  17795. },
  17796. },
  17797. [
  17798. {
  17799. name: "Normal",
  17800. height: math.unit(6 + 2 / 12, "feet"),
  17801. default: true
  17802. },
  17803. ]
  17804. ))
  17805. characterMakers.push(() => makeCharacter(
  17806. { name: "Poffin" },
  17807. {
  17808. front: {
  17809. height: math.unit(5 + 2 / 12, "feet"),
  17810. weight: math.unit(120, "lb"),
  17811. name: "Front",
  17812. image: {
  17813. source: "./media/characters/poffin/front.svg",
  17814. extra: 786 / 680,
  17815. bottom: 0.005
  17816. }
  17817. },
  17818. },
  17819. [
  17820. {
  17821. name: "Normal",
  17822. height: math.unit(5 + 2 / 12, "feet"),
  17823. default: true
  17824. },
  17825. ]
  17826. ))
  17827. characterMakers.push(() => makeCharacter(
  17828. { name: "Dhari" },
  17829. {
  17830. front: {
  17831. height: math.unit(6 + 3 / 12, "feet"),
  17832. weight: math.unit(519, "lb"),
  17833. name: "Front",
  17834. image: {
  17835. source: "./media/characters/dhari/front.svg",
  17836. extra: 1048 / 946,
  17837. bottom: 0.015
  17838. }
  17839. },
  17840. back: {
  17841. height: math.unit(6 + 3 / 12, "feet"),
  17842. weight: math.unit(519, "lb"),
  17843. name: "Back",
  17844. image: {
  17845. source: "./media/characters/dhari/back.svg",
  17846. extra: 1048 / 931,
  17847. bottom: 0.005
  17848. }
  17849. },
  17850. frontDressed: {
  17851. height: math.unit(6 + 3 / 12, "feet"),
  17852. weight: math.unit(519, "lb"),
  17853. name: "Front (Dressed)",
  17854. image: {
  17855. source: "./media/characters/dhari/front-dressed.svg",
  17856. extra: 1713 / 1546,
  17857. bottom: 0.02
  17858. }
  17859. },
  17860. backDressed: {
  17861. height: math.unit(6 + 3 / 12, "feet"),
  17862. weight: math.unit(519, "lb"),
  17863. name: "Back (Dressed)",
  17864. image: {
  17865. source: "./media/characters/dhari/back-dressed.svg",
  17866. extra: 1699 / 1537,
  17867. bottom: 0.01
  17868. }
  17869. },
  17870. maw: {
  17871. height: math.unit(0.95, "feet"),
  17872. name: "Maw",
  17873. image: {
  17874. source: "./media/characters/dhari/maw.svg"
  17875. }
  17876. },
  17877. wereFront: {
  17878. height: math.unit(12 + 8 / 12, "feet"),
  17879. weight: math.unit(4000, "lb"),
  17880. name: "Front (Were)",
  17881. image: {
  17882. source: "./media/characters/dhari/were-front.svg",
  17883. extra: 1065 / 969,
  17884. bottom: 0.015
  17885. }
  17886. },
  17887. wereBack: {
  17888. height: math.unit(12 + 8 / 12, "feet"),
  17889. weight: math.unit(4000, "lb"),
  17890. name: "Back (Were)",
  17891. image: {
  17892. source: "./media/characters/dhari/were-back.svg",
  17893. extra: 1065 / 969,
  17894. bottom: 0.012
  17895. }
  17896. },
  17897. wereMaw: {
  17898. height: math.unit(0.625, "meters"),
  17899. name: "Maw (Were)",
  17900. image: {
  17901. source: "./media/characters/dhari/were-maw.svg"
  17902. }
  17903. },
  17904. },
  17905. [
  17906. {
  17907. name: "Normal",
  17908. height: math.unit(6 + 3 / 12, "feet"),
  17909. default: true
  17910. },
  17911. ]
  17912. ))
  17913. characterMakers.push(() => makeCharacter(
  17914. { name: "Rena Dyne" },
  17915. {
  17916. anthro: {
  17917. height: math.unit(5 + 7 / 12, "feet"),
  17918. weight: math.unit(175, "lb"),
  17919. name: "Anthro",
  17920. image: {
  17921. source: "./media/characters/rena-dyne/anthro.svg",
  17922. extra: 1849 / 1785,
  17923. bottom: 0.005
  17924. }
  17925. },
  17926. taur: {
  17927. height: math.unit(15 + 6 / 12, "feet"),
  17928. weight: math.unit(8000, "lb"),
  17929. name: "Taur",
  17930. image: {
  17931. source: "./media/characters/rena-dyne/taur.svg",
  17932. extra: 2315 / 2234,
  17933. bottom: 0.033
  17934. }
  17935. },
  17936. },
  17937. [
  17938. {
  17939. name: "Normal",
  17940. height: math.unit(5 + 7 / 12, "feet"),
  17941. default: true
  17942. },
  17943. ]
  17944. ))
  17945. characterMakers.push(() => makeCharacter(
  17946. { name: "Weremeep" },
  17947. {
  17948. front: {
  17949. height: math.unit(8, "feet"),
  17950. weight: math.unit(600, "lb"),
  17951. name: "Front",
  17952. image: {
  17953. source: "./media/characters/weremeep/front.svg",
  17954. extra: 967 / 862,
  17955. bottom: 0.01
  17956. }
  17957. },
  17958. },
  17959. [
  17960. {
  17961. name: "Normal",
  17962. height: math.unit(8, "feet"),
  17963. default: true
  17964. },
  17965. {
  17966. name: "Lorg",
  17967. height: math.unit(12, "feet")
  17968. },
  17969. {
  17970. name: "Oh Lawd She Comin'",
  17971. height: math.unit(20, "feet")
  17972. },
  17973. ]
  17974. ))
  17975. characterMakers.push(() => makeCharacter(
  17976. { name: "Reza" },
  17977. {
  17978. front: {
  17979. height: math.unit(4, "feet"),
  17980. weight: math.unit(90, "lb"),
  17981. name: "Front",
  17982. image: {
  17983. source: "./media/characters/reza/front.svg",
  17984. extra: 1183 / 1111,
  17985. bottom: 0.017
  17986. }
  17987. },
  17988. back: {
  17989. height: math.unit(4, "feet"),
  17990. weight: math.unit(90, "lb"),
  17991. name: "Back",
  17992. image: {
  17993. source: "./media/characters/reza/back.svg",
  17994. extra: 1183 / 1111,
  17995. bottom: 0.01
  17996. }
  17997. },
  17998. },
  17999. [
  18000. {
  18001. name: "Normal",
  18002. height: math.unit(4, "feet"),
  18003. default: true
  18004. },
  18005. ]
  18006. ))
  18007. characterMakers.push(() => makeCharacter(
  18008. { name: "Athea" },
  18009. {
  18010. side: {
  18011. height: math.unit(15, "feet"),
  18012. weight: math.unit(14, "tons"),
  18013. name: "Side",
  18014. image: {
  18015. source: "./media/characters/athea/side.svg",
  18016. extra: 960 / 540,
  18017. bottom: 0.003
  18018. }
  18019. },
  18020. sitting: {
  18021. height: math.unit(6 * 2.85, "feet"),
  18022. weight: math.unit(14, "tons"),
  18023. name: "Sitting",
  18024. image: {
  18025. source: "./media/characters/athea/sitting.svg",
  18026. extra: 621 / 581,
  18027. bottom: 0.075
  18028. }
  18029. },
  18030. maw: {
  18031. height: math.unit(7.59498031496063, "feet"),
  18032. name: "Maw",
  18033. image: {
  18034. source: "./media/characters/athea/maw.svg"
  18035. }
  18036. },
  18037. },
  18038. [
  18039. {
  18040. name: "Lap Cat",
  18041. height: math.unit(2.5, "feet")
  18042. },
  18043. {
  18044. name: "Minimacro",
  18045. height: math.unit(15, "feet"),
  18046. default: true
  18047. },
  18048. {
  18049. name: "Macro",
  18050. height: math.unit(120, "feet")
  18051. },
  18052. {
  18053. name: "Macro+",
  18054. height: math.unit(640, "feet")
  18055. },
  18056. {
  18057. name: "Colossus",
  18058. height: math.unit(2.2, "miles")
  18059. },
  18060. ]
  18061. ))
  18062. characterMakers.push(() => makeCharacter(
  18063. { name: "Seroko" },
  18064. {
  18065. front: {
  18066. height: math.unit(8 + 8 / 12, "feet"),
  18067. weight: math.unit(130, "kg"),
  18068. name: "Front",
  18069. image: {
  18070. source: "./media/characters/seroko/front.svg",
  18071. extra: 1385 / 1280,
  18072. bottom: 0.025
  18073. }
  18074. },
  18075. back: {
  18076. height: math.unit(8 + 8 / 12, "feet"),
  18077. weight: math.unit(130, "kg"),
  18078. name: "Back",
  18079. image: {
  18080. source: "./media/characters/seroko/back.svg",
  18081. extra: 1369 / 1238,
  18082. bottom: 0.018
  18083. }
  18084. },
  18085. frontDressed: {
  18086. height: math.unit(8 + 8 / 12, "feet"),
  18087. weight: math.unit(130, "kg"),
  18088. name: "Front (Dressed)",
  18089. image: {
  18090. source: "./media/characters/seroko/front-dressed.svg",
  18091. extra: 1366 / 1275,
  18092. bottom: 0.03
  18093. }
  18094. },
  18095. },
  18096. [
  18097. {
  18098. name: "Normal",
  18099. height: math.unit(8 + 8 / 12, "feet"),
  18100. default: true
  18101. },
  18102. ]
  18103. ))
  18104. characterMakers.push(() => makeCharacter(
  18105. { name: "Quatzi" },
  18106. {
  18107. front: {
  18108. height: math.unit(5.5, "feet"),
  18109. weight: math.unit(160, "lb"),
  18110. name: "Front",
  18111. image: {
  18112. source: "./media/characters/quatzi/front.svg",
  18113. extra: 2346 / 2242,
  18114. bottom: 0.015
  18115. }
  18116. },
  18117. },
  18118. [
  18119. {
  18120. name: "Normal",
  18121. height: math.unit(5.5, "feet"),
  18122. default: true
  18123. },
  18124. {
  18125. name: "Big",
  18126. height: math.unit(7.7, "feet")
  18127. },
  18128. ]
  18129. ))
  18130. characterMakers.push(() => makeCharacter(
  18131. { name: "Sen" },
  18132. {
  18133. front: {
  18134. height: math.unit(5 + 11 / 12, "feet"),
  18135. weight: math.unit(180, "lb"),
  18136. name: "Front",
  18137. image: {
  18138. source: "./media/characters/sen/front.svg",
  18139. extra: 1321 / 1254,
  18140. bottom: 0.015
  18141. }
  18142. },
  18143. side: {
  18144. height: math.unit(5 + 11 / 12, "feet"),
  18145. weight: math.unit(180, "lb"),
  18146. name: "Side",
  18147. image: {
  18148. source: "./media/characters/sen/side.svg",
  18149. extra: 1321 / 1254,
  18150. bottom: 0.007
  18151. }
  18152. },
  18153. back: {
  18154. height: math.unit(5 + 11 / 12, "feet"),
  18155. weight: math.unit(180, "lb"),
  18156. name: "Back",
  18157. image: {
  18158. source: "./media/characters/sen/back.svg",
  18159. extra: 1321 / 1254
  18160. }
  18161. },
  18162. },
  18163. [
  18164. {
  18165. name: "Normal",
  18166. height: math.unit(5 + 11 / 12, "feet"),
  18167. default: true
  18168. },
  18169. ]
  18170. ))
  18171. characterMakers.push(() => makeCharacter(
  18172. { name: "Fruity" },
  18173. {
  18174. front: {
  18175. height: math.unit(166.6, "cm"),
  18176. weight: math.unit(66.6, "kg"),
  18177. name: "Front",
  18178. image: {
  18179. source: "./media/characters/fruity/front.svg",
  18180. extra: 1510 / 1386,
  18181. bottom: 0.04
  18182. }
  18183. },
  18184. back: {
  18185. height: math.unit(166.6, "cm"),
  18186. weight: math.unit(66.6, "lb"),
  18187. name: "Back",
  18188. image: {
  18189. source: "./media/characters/fruity/back.svg",
  18190. extra: 1563 / 1435,
  18191. bottom: 0.005
  18192. }
  18193. },
  18194. },
  18195. [
  18196. {
  18197. name: "Normal",
  18198. height: math.unit(166.6, "cm"),
  18199. default: true
  18200. },
  18201. {
  18202. name: "Demonic",
  18203. height: math.unit(166.6, "feet")
  18204. },
  18205. ]
  18206. ))
  18207. characterMakers.push(() => makeCharacter(
  18208. { name: "Zost" },
  18209. {
  18210. side: {
  18211. height: math.unit(10, "feet"),
  18212. weight: math.unit(500, "lb"),
  18213. name: "Side",
  18214. image: {
  18215. source: "./media/characters/zost/side.svg",
  18216. extra: 966 / 880,
  18217. bottom: 0.075
  18218. }
  18219. },
  18220. mawFront: {
  18221. height: math.unit(1.08, "meters"),
  18222. name: "Maw (Front)",
  18223. image: {
  18224. source: "./media/characters/zost/maw-front.svg"
  18225. }
  18226. },
  18227. mawSide: {
  18228. height: math.unit(2.66, "feet"),
  18229. name: "Maw (Side)",
  18230. image: {
  18231. source: "./media/characters/zost/maw-side.svg"
  18232. }
  18233. },
  18234. },
  18235. [
  18236. {
  18237. name: "Normal",
  18238. height: math.unit(10, "feet"),
  18239. default: true
  18240. },
  18241. ]
  18242. ))
  18243. characterMakers.push(() => makeCharacter(
  18244. { name: "Luci" },
  18245. {
  18246. front: {
  18247. height: math.unit(5 + 4 / 12, "feet"),
  18248. weight: math.unit(120, "lb"),
  18249. name: "Front",
  18250. image: {
  18251. source: "./media/characters/luci/front.svg",
  18252. extra: 1985 / 1884,
  18253. bottom: 0.04
  18254. }
  18255. },
  18256. back: {
  18257. height: math.unit(5 + 4 / 12, "feet"),
  18258. weight: math.unit(120, "lb"),
  18259. name: "Back",
  18260. image: {
  18261. source: "./media/characters/luci/back.svg",
  18262. extra: 1892 / 1791,
  18263. bottom: 0.002
  18264. }
  18265. },
  18266. },
  18267. [
  18268. {
  18269. name: "Normal",
  18270. height: math.unit(5 + 4 / 12, "feet"),
  18271. default: true
  18272. },
  18273. ]
  18274. ))
  18275. characterMakers.push(() => makeCharacter(
  18276. { name: "2th" },
  18277. {
  18278. front: {
  18279. height: math.unit(1500, "feet"),
  18280. weight: math.unit(3.8e6, "tons"),
  18281. name: "Front",
  18282. image: {
  18283. source: "./media/characters/2th/front.svg",
  18284. extra: 3489 / 3350,
  18285. bottom: 0.1
  18286. }
  18287. },
  18288. foot: {
  18289. height: math.unit(461, "feet"),
  18290. name: "Foot",
  18291. image: {
  18292. source: "./media/characters/2th/foot.svg"
  18293. }
  18294. },
  18295. },
  18296. [
  18297. {
  18298. name: "\"Micro\"",
  18299. height: math.unit(15 + 7 / 12, "feet")
  18300. },
  18301. {
  18302. name: "Normal",
  18303. height: math.unit(1500, "feet"),
  18304. default: true
  18305. },
  18306. {
  18307. name: "Macro",
  18308. height: math.unit(5000, "feet")
  18309. },
  18310. {
  18311. name: "Megamacro",
  18312. height: math.unit(15, "miles")
  18313. },
  18314. {
  18315. name: "Gigamacro",
  18316. height: math.unit(4000, "miles")
  18317. },
  18318. {
  18319. name: "Galactic",
  18320. height: math.unit(50, "AU")
  18321. },
  18322. ]
  18323. ))
  18324. characterMakers.push(() => makeCharacter(
  18325. { name: "Amethyst" },
  18326. {
  18327. front: {
  18328. height: math.unit(5 + 6 / 12, "feet"),
  18329. weight: math.unit(220, "lb"),
  18330. name: "Front",
  18331. image: {
  18332. source: "./media/characters/amethyst/front.svg",
  18333. extra: 2078 / 2040,
  18334. bottom: 0.045
  18335. }
  18336. },
  18337. back: {
  18338. height: math.unit(5 + 6 / 12, "feet"),
  18339. weight: math.unit(220, "lb"),
  18340. name: "Back",
  18341. image: {
  18342. source: "./media/characters/amethyst/back.svg",
  18343. extra: 2021 / 1989,
  18344. bottom: 0.02
  18345. }
  18346. },
  18347. },
  18348. [
  18349. {
  18350. name: "Normal",
  18351. height: math.unit(5 + 6 / 12, "feet"),
  18352. default: true
  18353. },
  18354. ]
  18355. ))
  18356. characterMakers.push(() => makeCharacter(
  18357. { name: "Yumi Akiyama" },
  18358. {
  18359. front: {
  18360. height: math.unit(4 + 11 / 12, "feet"),
  18361. weight: math.unit(120, "lb"),
  18362. name: "Front",
  18363. image: {
  18364. source: "./media/characters/yumi-akiyama/front.svg",
  18365. extra: 1327 / 1235,
  18366. bottom: 0.02
  18367. }
  18368. },
  18369. back: {
  18370. height: math.unit(4 + 11 / 12, "feet"),
  18371. weight: math.unit(120, "lb"),
  18372. name: "Back",
  18373. image: {
  18374. source: "./media/characters/yumi-akiyama/back.svg",
  18375. extra: 1287 / 1245,
  18376. bottom: 0.002
  18377. }
  18378. },
  18379. },
  18380. [
  18381. {
  18382. name: "Galactic",
  18383. height: math.unit(50, "galaxies"),
  18384. default: true
  18385. },
  18386. {
  18387. name: "Universal",
  18388. height: math.unit(100, "universes")
  18389. },
  18390. ]
  18391. ))
  18392. characterMakers.push(() => makeCharacter(
  18393. { name: "Rifter Yrmori" },
  18394. {
  18395. front: {
  18396. height: math.unit(8, "feet"),
  18397. weight: math.unit(500, "lb"),
  18398. name: "Front",
  18399. image: {
  18400. source: "./media/characters/rifter-yrmori/front.svg",
  18401. extra: 1180 / 1125,
  18402. bottom: 0.02
  18403. }
  18404. },
  18405. back: {
  18406. height: math.unit(8, "feet"),
  18407. weight: math.unit(500, "lb"),
  18408. name: "Back",
  18409. image: {
  18410. source: "./media/characters/rifter-yrmori/back.svg",
  18411. extra: 1190 / 1145,
  18412. bottom: 0.001
  18413. }
  18414. },
  18415. wings: {
  18416. height: math.unit(7.75, "feet"),
  18417. weight: math.unit(500, "lb"),
  18418. name: "Wings",
  18419. image: {
  18420. source: "./media/characters/rifter-yrmori/wings.svg",
  18421. extra: 1357 / 1285
  18422. }
  18423. },
  18424. maw: {
  18425. height: math.unit(0.8, "feet"),
  18426. name: "Maw",
  18427. image: {
  18428. source: "./media/characters/rifter-yrmori/maw.svg"
  18429. }
  18430. },
  18431. },
  18432. [
  18433. {
  18434. name: "Normal",
  18435. height: math.unit(8, "feet"),
  18436. default: true
  18437. },
  18438. {
  18439. name: "Macro",
  18440. height: math.unit(42, "meters")
  18441. },
  18442. ]
  18443. ))
  18444. characterMakers.push(() => makeCharacter(
  18445. { name: "Tahajin" },
  18446. {
  18447. were: {
  18448. height: math.unit(25 + 6 / 12, "feet"),
  18449. weight: math.unit(10000, "lb"),
  18450. name: "Were",
  18451. image: {
  18452. source: "./media/characters/tahajin/were.svg",
  18453. extra: 801 / 770,
  18454. bottom: 0.042
  18455. }
  18456. },
  18457. aquatic: {
  18458. height: math.unit(6 + 4 / 12, "feet"),
  18459. weight: math.unit(160, "lb"),
  18460. name: "Aquatic",
  18461. image: {
  18462. source: "./media/characters/tahajin/aquatic.svg",
  18463. extra: 572 / 542,
  18464. bottom: 0.04
  18465. }
  18466. },
  18467. chow: {
  18468. height: math.unit(8 + 11 / 12, "feet"),
  18469. weight: math.unit(450, "lb"),
  18470. name: "Chow",
  18471. image: {
  18472. source: "./media/characters/tahajin/chow.svg",
  18473. extra: 660 / 640,
  18474. bottom: 0.015
  18475. }
  18476. },
  18477. demiNaga: {
  18478. height: math.unit(6 + 8 / 12, "feet"),
  18479. weight: math.unit(300, "lb"),
  18480. name: "Demi Naga",
  18481. image: {
  18482. source: "./media/characters/tahajin/demi-naga.svg",
  18483. extra: 643 / 615,
  18484. bottom: 0.1
  18485. }
  18486. },
  18487. data: {
  18488. height: math.unit(5, "inches"),
  18489. weight: math.unit(0.1, "lb"),
  18490. name: "Data",
  18491. image: {
  18492. source: "./media/characters/tahajin/data.svg"
  18493. }
  18494. },
  18495. fluu: {
  18496. height: math.unit(5 + 7 / 12, "feet"),
  18497. weight: math.unit(140, "lb"),
  18498. name: "Fluu",
  18499. image: {
  18500. source: "./media/characters/tahajin/fluu.svg",
  18501. extra: 628 / 592,
  18502. bottom: 0.02
  18503. }
  18504. },
  18505. starWarrior: {
  18506. height: math.unit(4 + 5 / 12, "feet"),
  18507. weight: math.unit(50, "lb"),
  18508. name: "Star Warrior",
  18509. image: {
  18510. source: "./media/characters/tahajin/star-warrior.svg"
  18511. }
  18512. },
  18513. },
  18514. [
  18515. {
  18516. name: "Normal",
  18517. height: math.unit(25 + 6 / 12, "feet"),
  18518. default: true
  18519. },
  18520. ]
  18521. ))
  18522. characterMakers.push(() => makeCharacter(
  18523. { name: "Gabira" },
  18524. {
  18525. front: {
  18526. height: math.unit(8, "feet"),
  18527. weight: math.unit(350, "lb"),
  18528. name: "Front",
  18529. image: {
  18530. source: "./media/characters/gabira/front.svg",
  18531. extra: 608 / 580,
  18532. bottom: 0.03
  18533. }
  18534. },
  18535. back: {
  18536. height: math.unit(8, "feet"),
  18537. weight: math.unit(350, "lb"),
  18538. name: "Back",
  18539. image: {
  18540. source: "./media/characters/gabira/back.svg",
  18541. extra: 608 / 580,
  18542. bottom: 0.03
  18543. }
  18544. },
  18545. },
  18546. [
  18547. {
  18548. name: "Normal",
  18549. height: math.unit(8, "feet"),
  18550. default: true
  18551. },
  18552. ]
  18553. ))
  18554. characterMakers.push(() => makeCharacter(
  18555. { name: "Sasha Katraine" },
  18556. {
  18557. front: {
  18558. height: math.unit(5 + 3 / 12, "feet"),
  18559. weight: math.unit(137, "lb"),
  18560. name: "Front",
  18561. image: {
  18562. source: "./media/characters/sasha-katraine/front.svg",
  18563. bottom: 0.045
  18564. }
  18565. },
  18566. },
  18567. [
  18568. {
  18569. name: "Micro",
  18570. height: math.unit(5, "inches")
  18571. },
  18572. {
  18573. name: "Normal",
  18574. height: math.unit(5 + 3 / 12, "feet"),
  18575. default: true
  18576. },
  18577. ]
  18578. ))
  18579. characterMakers.push(() => makeCharacter(
  18580. { name: "Der" },
  18581. {
  18582. side: {
  18583. height: math.unit(4, "inches"),
  18584. weight: math.unit(200, "grams"),
  18585. name: "Side",
  18586. image: {
  18587. source: "./media/characters/der/side.svg",
  18588. extra: 719 / 400,
  18589. bottom: 30.6 / 749.9187
  18590. }
  18591. },
  18592. },
  18593. [
  18594. {
  18595. name: "Micro",
  18596. height: math.unit(4, "inches"),
  18597. default: true
  18598. },
  18599. ]
  18600. ))
  18601. characterMakers.push(() => makeCharacter(
  18602. { name: "Fixerdragon" },
  18603. {
  18604. side: {
  18605. height: math.unit(30, "meters"),
  18606. weight: math.unit(700, "tonnes"),
  18607. name: "Side",
  18608. image: {
  18609. source: "./media/characters/fixerdragon/side.svg",
  18610. extra: (1293.0514 - 116.03) / 1106.86,
  18611. bottom: 116.03 / 1293.0514
  18612. }
  18613. },
  18614. },
  18615. [
  18616. {
  18617. name: "Planck",
  18618. height: math.unit(1.6e-35, "meters")
  18619. },
  18620. {
  18621. name: "Micro",
  18622. height: math.unit(0.4, "meters")
  18623. },
  18624. {
  18625. name: "Normal",
  18626. height: math.unit(30, "meters"),
  18627. default: true
  18628. },
  18629. {
  18630. name: "Megamacro",
  18631. height: math.unit(1.2, "megameters")
  18632. },
  18633. {
  18634. name: "Teramacro",
  18635. height: math.unit(130, "terameters")
  18636. },
  18637. {
  18638. name: "Yottamacro",
  18639. height: math.unit(6200, "yottameters")
  18640. },
  18641. ]
  18642. ));
  18643. characterMakers.push(() => makeCharacter(
  18644. { name: "Kite" },
  18645. {
  18646. front: {
  18647. height: math.unit(8, "feet"),
  18648. weight: math.unit(250, "lb"),
  18649. name: "Front",
  18650. image: {
  18651. source: "./media/characters/kite/front.svg",
  18652. extra: 2796 / 2659,
  18653. bottom: 0.002
  18654. }
  18655. },
  18656. },
  18657. [
  18658. {
  18659. name: "Normal",
  18660. height: math.unit(8, "feet"),
  18661. default: true
  18662. },
  18663. {
  18664. name: "Macro",
  18665. height: math.unit(360, "feet")
  18666. },
  18667. {
  18668. name: "Megamacro",
  18669. height: math.unit(1500, "feet")
  18670. },
  18671. ]
  18672. ))
  18673. characterMakers.push(() => makeCharacter(
  18674. { name: "Poojawa Vynar" },
  18675. {
  18676. front: {
  18677. height: math.unit(5 + 10 / 12, "feet"),
  18678. weight: math.unit(150, "lb"),
  18679. name: "Front",
  18680. image: {
  18681. source: "./media/characters/poojawa-vynar/front.svg",
  18682. extra: (1506.1547 - 55) / 1356.6,
  18683. bottom: 55 / 1506.1547
  18684. }
  18685. },
  18686. frontTailless: {
  18687. height: math.unit(5 + 10 / 12, "feet"),
  18688. weight: math.unit(150, "lb"),
  18689. name: "Front (Tailless)",
  18690. image: {
  18691. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18692. extra: (1506.1547 - 55) / 1356.6,
  18693. bottom: 55 / 1506.1547
  18694. }
  18695. },
  18696. },
  18697. [
  18698. {
  18699. name: "Normal",
  18700. height: math.unit(5 + 10 / 12, "feet"),
  18701. default: true
  18702. },
  18703. ]
  18704. ))
  18705. characterMakers.push(() => makeCharacter(
  18706. { name: "Violette" },
  18707. {
  18708. front: {
  18709. height: math.unit(293, "meters"),
  18710. weight: math.unit(70400, "tons"),
  18711. name: "Front",
  18712. image: {
  18713. source: "./media/characters/violette/front.svg",
  18714. extra: 1227 / 1180,
  18715. bottom: 0.005
  18716. }
  18717. },
  18718. back: {
  18719. height: math.unit(293, "meters"),
  18720. weight: math.unit(70400, "tons"),
  18721. name: "Back",
  18722. image: {
  18723. source: "./media/characters/violette/back.svg",
  18724. extra: 1227 / 1180,
  18725. bottom: 0.005
  18726. }
  18727. },
  18728. },
  18729. [
  18730. {
  18731. name: "Macro",
  18732. height: math.unit(293, "meters"),
  18733. default: true
  18734. },
  18735. ]
  18736. ))
  18737. characterMakers.push(() => makeCharacter(
  18738. { name: "Alessandra" },
  18739. {
  18740. front: {
  18741. height: math.unit(1050, "feet"),
  18742. weight: math.unit(200000, "tons"),
  18743. name: "Front",
  18744. image: {
  18745. source: "./media/characters/alessandra/front.svg",
  18746. extra: 960 / 912,
  18747. bottom: 0.06
  18748. }
  18749. },
  18750. },
  18751. [
  18752. {
  18753. name: "Macro",
  18754. height: math.unit(1050, "feet")
  18755. },
  18756. {
  18757. name: "Macro+",
  18758. height: math.unit(900, "meters"),
  18759. default: true
  18760. },
  18761. ]
  18762. ))
  18763. characterMakers.push(() => makeCharacter(
  18764. { name: "Person", species: "Catdragon" },
  18765. {
  18766. front: {
  18767. height: math.unit(5, "feet"),
  18768. weight: math.unit(187, "lb"),
  18769. name: "Front",
  18770. image: {
  18771. source: "./media/characters/person/front.svg",
  18772. extra: 3087 / 2945,
  18773. bottom: 91 / 3181
  18774. }
  18775. },
  18776. },
  18777. [
  18778. {
  18779. name: "Micro",
  18780. height: math.unit(3, "inches")
  18781. },
  18782. {
  18783. name: "Normal",
  18784. height: math.unit(5, "feet"),
  18785. default: true
  18786. },
  18787. {
  18788. name: "Macro",
  18789. height: math.unit(90, "feet")
  18790. },
  18791. {
  18792. name: "Max Size",
  18793. height: math.unit(280, "feet")
  18794. },
  18795. ]
  18796. ))
  18797. characterMakers.push(() => makeCharacter(
  18798. { name: "Ty" },
  18799. {
  18800. front: {
  18801. height: math.unit(4.5, "meters"),
  18802. weight: math.unit(3200, "lb"),
  18803. name: "Front",
  18804. image: {
  18805. source: "./media/characters/ty/front.svg",
  18806. extra: 1038 / 960,
  18807. bottom: 31.156 / 1068
  18808. }
  18809. },
  18810. back: {
  18811. height: math.unit(4.5, "meters"),
  18812. weight: math.unit(3200, "lb"),
  18813. name: "Back",
  18814. image: {
  18815. source: "./media/characters/ty/back.svg",
  18816. extra: 1044 / 966,
  18817. bottom: 7.48 / 1049
  18818. }
  18819. },
  18820. },
  18821. [
  18822. {
  18823. name: "Normal",
  18824. height: math.unit(4.5, "meters"),
  18825. default: true
  18826. },
  18827. ]
  18828. ))
  18829. characterMakers.push(() => makeCharacter(
  18830. { name: "Rocky" },
  18831. {
  18832. front: {
  18833. height: math.unit(5 + 4 / 12, "feet"),
  18834. weight: math.unit(115, "lb"),
  18835. name: "Front",
  18836. image: {
  18837. source: "./media/characters/rocky/front.svg",
  18838. extra: 1012 / 975,
  18839. bottom: 54 / 1066
  18840. }
  18841. },
  18842. },
  18843. [
  18844. {
  18845. name: "Normal",
  18846. height: math.unit(5 + 4 / 12, "feet"),
  18847. default: true
  18848. },
  18849. ]
  18850. ))
  18851. characterMakers.push(() => makeCharacter(
  18852. { name: "Ruin" },
  18853. {
  18854. upright: {
  18855. height: math.unit(6, "meters"),
  18856. weight: math.unit(4000, "kg"),
  18857. name: "Upright",
  18858. image: {
  18859. source: "./media/characters/ruin/upright.svg",
  18860. extra: 668 / 661,
  18861. bottom: 42 / 799.8396
  18862. }
  18863. },
  18864. },
  18865. [
  18866. {
  18867. name: "Normal",
  18868. height: math.unit(6, "meters"),
  18869. default: true
  18870. },
  18871. ]
  18872. ))
  18873. characterMakers.push(() => makeCharacter(
  18874. { name: "Robin" },
  18875. {
  18876. front: {
  18877. height: math.unit(5, "feet"),
  18878. weight: math.unit(106, "lb"),
  18879. name: "Front",
  18880. image: {
  18881. source: "./media/characters/robin/front.svg",
  18882. extra: 862 / 799,
  18883. bottom: 42.4 / 914.8856
  18884. }
  18885. },
  18886. },
  18887. [
  18888. {
  18889. name: "Normal",
  18890. height: math.unit(5, "feet"),
  18891. default: true
  18892. },
  18893. ]
  18894. ))
  18895. characterMakers.push(() => makeCharacter(
  18896. { name: "Saian" },
  18897. {
  18898. side: {
  18899. height: math.unit(3, "feet"),
  18900. weight: math.unit(225, "lb"),
  18901. name: "Side",
  18902. image: {
  18903. source: "./media/characters/saian/side.svg",
  18904. extra: 566 / 356,
  18905. bottom: 79.7 / 643
  18906. }
  18907. },
  18908. maw: {
  18909. height: math.unit(2.85, "feet"),
  18910. name: "Maw",
  18911. image: {
  18912. source: "./media/characters/saian/maw.svg"
  18913. }
  18914. },
  18915. },
  18916. [
  18917. {
  18918. name: "Normal",
  18919. height: math.unit(3, "feet"),
  18920. default: true
  18921. },
  18922. ]
  18923. ))
  18924. characterMakers.push(() => makeCharacter(
  18925. { name: "Equus Silvermane" },
  18926. {
  18927. side: {
  18928. height: math.unit(8, "feet"),
  18929. weight: math.unit(300, "lb"),
  18930. name: "Side",
  18931. image: {
  18932. source: "./media/characters/equus-silvermane/side.svg",
  18933. extra: 2176 / 2050,
  18934. bottom: 65.7 / 2245
  18935. }
  18936. },
  18937. front: {
  18938. height: math.unit(8, "feet"),
  18939. weight: math.unit(300, "lb"),
  18940. name: "Front",
  18941. image: {
  18942. source: "./media/characters/equus-silvermane/front.svg",
  18943. extra: 4633 / 4400,
  18944. bottom: 71.3 / 4706.915
  18945. }
  18946. },
  18947. sideStepping: {
  18948. height: math.unit(8, "feet"),
  18949. weight: math.unit(300, "lb"),
  18950. name: "Side (Stepping)",
  18951. image: {
  18952. source: "./media/characters/equus-silvermane/side-stepping.svg",
  18953. extra: 1968 / 1860,
  18954. bottom: 16.4 / 1989
  18955. }
  18956. },
  18957. },
  18958. [
  18959. {
  18960. name: "Normal",
  18961. height: math.unit(8, "feet")
  18962. },
  18963. {
  18964. name: "Minimacro",
  18965. height: math.unit(75, "feet"),
  18966. default: true
  18967. },
  18968. {
  18969. name: "Macro",
  18970. height: math.unit(150, "feet")
  18971. },
  18972. {
  18973. name: "Macro+",
  18974. height: math.unit(1000, "feet")
  18975. },
  18976. {
  18977. name: "Megamacro",
  18978. height: math.unit(1, "mile")
  18979. },
  18980. ]
  18981. ))
  18982. characterMakers.push(() => makeCharacter(
  18983. { name: "Windar" },
  18984. {
  18985. side: {
  18986. height: math.unit(20, "feet"),
  18987. weight: math.unit(30000, "kg"),
  18988. name: "Side",
  18989. image: {
  18990. source: "./media/characters/windar/side.svg",
  18991. extra: 1491 / 1248,
  18992. bottom: 82.56 / 1568
  18993. }
  18994. },
  18995. },
  18996. [
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(20, "feet"),
  19000. default: true
  19001. },
  19002. ]
  19003. ))
  19004. characterMakers.push(() => makeCharacter(
  19005. { name: "Melody" },
  19006. {
  19007. side: {
  19008. height: math.unit(15.66, "feet"),
  19009. weight: math.unit(150, "lb"),
  19010. name: "Side",
  19011. image: {
  19012. source: "./media/characters/melody/side.svg",
  19013. extra: 1097 / 944,
  19014. bottom: 11.8 / 1109
  19015. }
  19016. },
  19017. sideOutfit: {
  19018. height: math.unit(15.66, "feet"),
  19019. weight: math.unit(150, "lb"),
  19020. name: "Side (Outfit)",
  19021. image: {
  19022. source: "./media/characters/melody/side-outfit.svg",
  19023. extra: 1097 / 944,
  19024. bottom: 11.8 / 1109
  19025. }
  19026. },
  19027. },
  19028. [
  19029. {
  19030. name: "Normal",
  19031. height: math.unit(15.66, "feet"),
  19032. default: true
  19033. },
  19034. ]
  19035. ))
  19036. characterMakers.push(() => makeCharacter(
  19037. { name: "Windera" },
  19038. {
  19039. front: {
  19040. height: math.unit(8, "feet"),
  19041. weight: math.unit(325, "lb"),
  19042. name: "Front",
  19043. image: {
  19044. source: "./media/characters/windera/front.svg",
  19045. extra: 3180 / 2845,
  19046. bottom: 178 / 3365
  19047. }
  19048. },
  19049. },
  19050. [
  19051. {
  19052. name: "Normal",
  19053. height: math.unit(8, "feet"),
  19054. default: true
  19055. },
  19056. ]
  19057. ))
  19058. characterMakers.push(() => makeCharacter(
  19059. { name: "Sonear" },
  19060. {
  19061. front: {
  19062. height: math.unit(28.75, "feet"),
  19063. weight: math.unit(2000, "kg"),
  19064. name: "Front",
  19065. image: {
  19066. source: "./media/characters/sonear/front.svg",
  19067. extra: 1041.1 / 964.9,
  19068. bottom: 53.7 / 1096.6
  19069. }
  19070. },
  19071. },
  19072. [
  19073. {
  19074. name: "Normal",
  19075. height: math.unit(28.75, "feet"),
  19076. default: true
  19077. },
  19078. ]
  19079. ))
  19080. characterMakers.push(() => makeCharacter(
  19081. { name: "Kanara" },
  19082. {
  19083. side: {
  19084. height: math.unit(25.5, "feet"),
  19085. weight: math.unit(23000, "kg"),
  19086. name: "Side",
  19087. image: {
  19088. source: "./media/characters/kanara/side.svg"
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Normal",
  19095. height: math.unit(25.5, "feet"),
  19096. default: true
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Ereus" },
  19102. {
  19103. side: {
  19104. height: math.unit(10, "feet"),
  19105. weight: math.unit(1000, "kg"),
  19106. name: "Side",
  19107. image: {
  19108. source: "./media/characters/ereus/side.svg",
  19109. extra: 1157 / 959,
  19110. bottom: 153 / 1312.5
  19111. }
  19112. },
  19113. },
  19114. [
  19115. {
  19116. name: "Normal",
  19117. height: math.unit(10, "feet"),
  19118. default: true
  19119. },
  19120. ]
  19121. ))
  19122. characterMakers.push(() => makeCharacter(
  19123. { name: "E-ter" },
  19124. {
  19125. side: {
  19126. height: math.unit(4.5, "feet"),
  19127. weight: math.unit(500, "lb"),
  19128. name: "Side",
  19129. image: {
  19130. source: "./media/characters/e-ter/side.svg",
  19131. extra: 1550 / 1248,
  19132. bottom: 146 / 1694
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Normal",
  19139. height: math.unit(4.5, "feet"),
  19140. default: true
  19141. },
  19142. ]
  19143. ))
  19144. characterMakers.push(() => makeCharacter(
  19145. { name: "Yamie" },
  19146. {
  19147. side: {
  19148. height: math.unit(9.7, "feet"),
  19149. weight: math.unit(4000, "kg"),
  19150. name: "Side",
  19151. image: {
  19152. source: "./media/characters/yamie/side.svg"
  19153. }
  19154. },
  19155. },
  19156. [
  19157. {
  19158. name: "Normal",
  19159. height: math.unit(9.7, "feet"),
  19160. default: true
  19161. },
  19162. ]
  19163. ))
  19164. characterMakers.push(() => makeCharacter(
  19165. { name: "Anders" },
  19166. {
  19167. front: {
  19168. height: math.unit(50, "feet"),
  19169. weight: math.unit(50000, "kg"),
  19170. name: "Front",
  19171. image: {
  19172. source: "./media/characters/anders/front.svg",
  19173. extra: 570 / 539,
  19174. bottom: 14.7 / 586.7
  19175. }
  19176. },
  19177. },
  19178. [
  19179. {
  19180. name: "Large",
  19181. height: math.unit(50, "feet")
  19182. },
  19183. {
  19184. name: "Macro",
  19185. height: math.unit(2000, "feet"),
  19186. default: true
  19187. },
  19188. {
  19189. name: "Megamacro",
  19190. height: math.unit(12, "miles")
  19191. },
  19192. ]
  19193. ))
  19194. characterMakers.push(() => makeCharacter(
  19195. { name: "Reban" },
  19196. {
  19197. front: {
  19198. height: math.unit(7 + 2 / 12, "feet"),
  19199. weight: math.unit(300, "lb"),
  19200. name: "Front",
  19201. image: {
  19202. source: "./media/characters/reban/front.svg",
  19203. extra: 516 / 487,
  19204. bottom: 42.82 / 558.356
  19205. }
  19206. },
  19207. dick: {
  19208. height: math.unit(7 / 5, "feet"),
  19209. name: "Dick",
  19210. image: {
  19211. source: "./media/characters/reban/dick.svg"
  19212. }
  19213. },
  19214. },
  19215. [
  19216. {
  19217. name: "Natural Height",
  19218. height: math.unit(7 + 2 / 12, "feet")
  19219. },
  19220. {
  19221. name: "Macro",
  19222. height: math.unit(500, "feet"),
  19223. default: true
  19224. },
  19225. {
  19226. name: "Canon Height",
  19227. height: math.unit(50, "AU")
  19228. },
  19229. ]
  19230. ))
  19231. characterMakers.push(() => makeCharacter(
  19232. { name: "Terrance Keayes" },
  19233. {
  19234. front: {
  19235. height: math.unit(6, "feet"),
  19236. weight: math.unit(150, "lb"),
  19237. name: "Front",
  19238. image: {
  19239. source: "./media/characters/terrance-keayes/front.svg",
  19240. extra: 1.005,
  19241. bottom: 151 / 1615
  19242. }
  19243. },
  19244. side: {
  19245. height: math.unit(6, "feet"),
  19246. weight: math.unit(150, "lb"),
  19247. name: "Side",
  19248. image: {
  19249. source: "./media/characters/terrance-keayes/side.svg",
  19250. extra: 1.005,
  19251. bottom: 129.4 / 1544
  19252. }
  19253. },
  19254. back: {
  19255. height: math.unit(6, "feet"),
  19256. weight: math.unit(150, "lb"),
  19257. name: "Back",
  19258. image: {
  19259. source: "./media/characters/terrance-keayes/back.svg",
  19260. extra: 1.005,
  19261. bottom: 58.4 / 1557.3
  19262. }
  19263. },
  19264. dick: {
  19265. height: math.unit(6 * 0.208, "feet"),
  19266. name: "Dick",
  19267. image: {
  19268. source: "./media/characters/terrance-keayes/dick.svg"
  19269. }
  19270. },
  19271. },
  19272. [
  19273. {
  19274. name: "Canon Height",
  19275. height: math.unit(35, "miles"),
  19276. default: true
  19277. },
  19278. ]
  19279. ))
  19280. characterMakers.push(() => makeCharacter(
  19281. { name: "Ofelia" },
  19282. {
  19283. front: {
  19284. height: math.unit(6, "feet"),
  19285. weight: math.unit(150, "lb"),
  19286. name: "Front",
  19287. image: {
  19288. source: "./media/characters/ofelia/front.svg",
  19289. extra: 546 / 541,
  19290. bottom: 39 / 583
  19291. }
  19292. },
  19293. back: {
  19294. height: math.unit(6, "feet"),
  19295. weight: math.unit(150, "lb"),
  19296. name: "Back",
  19297. image: {
  19298. source: "./media/characters/ofelia/back.svg",
  19299. extra: 564 / 559.5,
  19300. bottom: 8.69 / 573.02
  19301. }
  19302. },
  19303. maw: {
  19304. height: math.unit(1, "feet"),
  19305. name: "Maw",
  19306. image: {
  19307. source: "./media/characters/ofelia/maw.svg"
  19308. }
  19309. },
  19310. foot: {
  19311. height: math.unit(1.949, "feet"),
  19312. name: "Foot",
  19313. image: {
  19314. source: "./media/characters/ofelia/foot.svg"
  19315. }
  19316. },
  19317. },
  19318. [
  19319. {
  19320. name: "Canon Height",
  19321. height: math.unit(2000, "miles"),
  19322. default: true
  19323. },
  19324. ]
  19325. ))
  19326. characterMakers.push(() => makeCharacter(
  19327. { name: "Samuel" },
  19328. {
  19329. front: {
  19330. height: math.unit(6, "feet"),
  19331. weight: math.unit(150, "lb"),
  19332. name: "Front",
  19333. image: {
  19334. source: "./media/characters/samuel/front.svg",
  19335. extra: 265 / 258,
  19336. bottom: 2 / 266.1566
  19337. }
  19338. },
  19339. },
  19340. [
  19341. {
  19342. name: "Macro",
  19343. height: math.unit(100, "feet"),
  19344. default: true
  19345. },
  19346. {
  19347. name: "Full Size",
  19348. height: math.unit(1000, "miles")
  19349. },
  19350. ]
  19351. ))
  19352. characterMakers.push(() => makeCharacter(
  19353. { name: "Beishir Kiel" },
  19354. {
  19355. front: {
  19356. height: math.unit(6, "feet"),
  19357. weight: math.unit(300, "lb"),
  19358. name: "Front",
  19359. image: {
  19360. source: "./media/characters/beishir-kiel/front.svg",
  19361. extra: 569 / 547,
  19362. bottom: 41.9 / 609
  19363. }
  19364. },
  19365. maw: {
  19366. height: math.unit(6 * 0.202, "feet"),
  19367. name: "Maw",
  19368. image: {
  19369. source: "./media/characters/beishir-kiel/maw.svg"
  19370. }
  19371. },
  19372. },
  19373. [
  19374. {
  19375. name: "Macro",
  19376. height: math.unit(300, "feet"),
  19377. default: true
  19378. },
  19379. ]
  19380. ))
  19381. characterMakers.push(() => makeCharacter(
  19382. { name: "Logan Grey" },
  19383. {
  19384. front: {
  19385. height: math.unit(5 + 8 / 12, "feet"),
  19386. weight: math.unit(120, "lb"),
  19387. name: "Front",
  19388. image: {
  19389. source: "./media/characters/logan-grey/front.svg",
  19390. extra: 2539 / 2393,
  19391. bottom: 97.6 / 2636.37
  19392. }
  19393. },
  19394. frontAlt: {
  19395. height: math.unit(5 + 8 / 12, "feet"),
  19396. weight: math.unit(120, "lb"),
  19397. name: "Front (Alt)",
  19398. image: {
  19399. source: "./media/characters/logan-grey/front-alt.svg",
  19400. extra: 958 / 893,
  19401. bottom: 15 / 970.768
  19402. }
  19403. },
  19404. back: {
  19405. height: math.unit(5 + 8 / 12, "feet"),
  19406. weight: math.unit(120, "lb"),
  19407. name: "Back",
  19408. image: {
  19409. source: "./media/characters/logan-grey/back.svg",
  19410. extra: 958 / 893,
  19411. bottom: 2.1881 / 970.9788
  19412. }
  19413. },
  19414. dick: {
  19415. height: math.unit(1.437, "feet"),
  19416. name: "Dick",
  19417. image: {
  19418. source: "./media/characters/logan-grey/dick.svg"
  19419. }
  19420. },
  19421. },
  19422. [
  19423. {
  19424. name: "Normal",
  19425. height: math.unit(5 + 8 / 12, "feet")
  19426. },
  19427. {
  19428. name: "The 500 Foot Femboy",
  19429. height: math.unit(500, "feet"),
  19430. default: true
  19431. },
  19432. {
  19433. name: "Megmacro",
  19434. height: math.unit(20, "miles")
  19435. },
  19436. ]
  19437. ))
  19438. characterMakers.push(() => makeCharacter(
  19439. { name: "Draganta" },
  19440. {
  19441. front: {
  19442. height: math.unit(8 + 2 / 12, "feet"),
  19443. weight: math.unit(275, "lb"),
  19444. name: "Front",
  19445. image: {
  19446. source: "./media/characters/draganta/front.svg",
  19447. extra: 1177 / 1135,
  19448. bottom: 33.46 / 1212.1
  19449. }
  19450. },
  19451. },
  19452. [
  19453. {
  19454. name: "Normal",
  19455. height: math.unit(8 + 6 / 12, "feet"),
  19456. default: true
  19457. },
  19458. {
  19459. name: "Macro",
  19460. height: math.unit(150, "feet")
  19461. },
  19462. {
  19463. name: "Megamacro",
  19464. height: math.unit(1000, "miles")
  19465. },
  19466. ]
  19467. ))
  19468. characterMakers.push(() => makeCharacter(
  19469. { name: "Voski", species: "Corvid" },
  19470. {
  19471. front: {
  19472. height: math.unit(1.72, "m"),
  19473. weight: math.unit(80, "lb"),
  19474. name: "Front",
  19475. image: {
  19476. source: "./media/characters/voski/front.svg",
  19477. extra: 2076.22 / 2022.4,
  19478. bottom: 102.7 / 2177.3866
  19479. }
  19480. },
  19481. frontNsfw: {
  19482. height: math.unit(1.72, "m"),
  19483. weight: math.unit(80, "lb"),
  19484. name: "Front (NSFW)",
  19485. image: {
  19486. source: "./media/characters/voski/front-nsfw.svg",
  19487. extra: 2076.22 / 2022.4,
  19488. bottom: 102.7 / 2177.3866
  19489. }
  19490. },
  19491. back: {
  19492. height: math.unit(1.72, "m"),
  19493. weight: math.unit(80, "lb"),
  19494. name: "Back",
  19495. image: {
  19496. source: "./media/characters/voski/back.svg",
  19497. extra: 2104 / 2051,
  19498. bottom: 10.45 / 2113.63
  19499. }
  19500. },
  19501. },
  19502. [
  19503. {
  19504. name: "Normal",
  19505. height: math.unit(1.72, "m")
  19506. },
  19507. {
  19508. name: "Macro",
  19509. height: math.unit(55, "m"),
  19510. default: true
  19511. },
  19512. {
  19513. name: "Macro+",
  19514. height: math.unit(300, "m")
  19515. },
  19516. {
  19517. name: "Macro++",
  19518. height: math.unit(700, "m")
  19519. },
  19520. {
  19521. name: "Macro+++",
  19522. height: math.unit(4500, "m")
  19523. },
  19524. {
  19525. name: "Macro++++",
  19526. height: math.unit(45, "km")
  19527. },
  19528. {
  19529. name: "Macro+++++",
  19530. height: math.unit(1220, "km")
  19531. },
  19532. ]
  19533. ))
  19534. characterMakers.push(() => makeCharacter(
  19535. { name: "Icowom Lee" },
  19536. {
  19537. front: {
  19538. height: math.unit(2.3, "m"),
  19539. weight: math.unit(304, "kg"),
  19540. name: "Front",
  19541. image: {
  19542. source: "./media/characters/icowom-lee/front.svg",
  19543. extra: 3076 / 2933,
  19544. bottom: 51.4 / 3125.1889
  19545. }
  19546. },
  19547. },
  19548. [
  19549. {
  19550. name: "Normal",
  19551. height: math.unit(2.3, "meters"),
  19552. default: true
  19553. },
  19554. {
  19555. name: "Macro",
  19556. height: math.unit(94, "meters"),
  19557. default: true
  19558. },
  19559. ]
  19560. ))
  19561. characterMakers.push(() => makeCharacter(
  19562. { name: "Shock Diamond", species: "Aeromorphic Synthetic Pharaoh Hound" },
  19563. {
  19564. front: {
  19565. height: math.unit(22, "meters"),
  19566. weight: math.unit(21000, "kg"),
  19567. name: "Front",
  19568. image: {
  19569. source: "./media/characters/shock-diamond/front.svg",
  19570. extra: 2204 / 2053,
  19571. bottom: 65 / 2239.47
  19572. }
  19573. },
  19574. frontNude: {
  19575. height: math.unit(22, "meters"),
  19576. weight: math.unit(21000, "kg"),
  19577. name: "Front (Nude)",
  19578. image: {
  19579. source: "./media/characters/shock-diamond/front-nude.svg",
  19580. extra: 2514 / 2285,
  19581. bottom: 13 / 2527.56
  19582. }
  19583. },
  19584. },
  19585. [
  19586. {
  19587. name: "Normal",
  19588. height: math.unit(3, "meters")
  19589. },
  19590. {
  19591. name: "Macro",
  19592. height: math.unit(22, "meters"),
  19593. default: true
  19594. },
  19595. ]
  19596. ))
  19597. characterMakers.push(() => makeCharacter(
  19598. { name: "Rory" },
  19599. {
  19600. front: {
  19601. height: math.unit(5 + 4 / 12, "feet"),
  19602. weight: math.unit(120, "lb"),
  19603. name: "Front",
  19604. image: {
  19605. source: "./media/characters/rory/front.svg",
  19606. extra: 589 / 556,
  19607. bottom: 45.7 / 635.76
  19608. }
  19609. },
  19610. frontNude: {
  19611. height: math.unit(5 + 4 / 12, "feet"),
  19612. weight: math.unit(120, "lb"),
  19613. name: "Front (Nude)",
  19614. image: {
  19615. source: "./media/characters/rory/front-nude.svg",
  19616. extra: 589 / 556,
  19617. bottom: 45.7 / 635.76
  19618. }
  19619. },
  19620. side: {
  19621. height: math.unit(5 + 4 / 12, "feet"),
  19622. weight: math.unit(120, "lb"),
  19623. name: "Side",
  19624. image: {
  19625. source: "./media/characters/rory/side.svg",
  19626. extra: 597 / 564,
  19627. bottom: 55 / 653
  19628. }
  19629. },
  19630. back: {
  19631. height: math.unit(5 + 4 / 12, "feet"),
  19632. weight: math.unit(120, "lb"),
  19633. name: "Back",
  19634. image: {
  19635. source: "./media/characters/rory/back.svg",
  19636. extra: 620 / 585,
  19637. bottom: 8.86 / 630.43
  19638. }
  19639. },
  19640. dick: {
  19641. height: math.unit(0.86, "feet"),
  19642. name: "Dick",
  19643. image: {
  19644. source: "./media/characters/rory/dick.svg"
  19645. }
  19646. },
  19647. },
  19648. [
  19649. {
  19650. name: "Normal",
  19651. height: math.unit(5 + 4 / 12, "feet"),
  19652. default: true
  19653. },
  19654. {
  19655. name: "Macro",
  19656. height: math.unit(100, "feet")
  19657. },
  19658. {
  19659. name: "Macro+",
  19660. height: math.unit(140, "feet")
  19661. },
  19662. {
  19663. name: "Macro++",
  19664. height: math.unit(300, "feet")
  19665. },
  19666. ]
  19667. ))
  19668. characterMakers.push(() => makeCharacter(
  19669. { name: "Sprisk" },
  19670. {
  19671. front: {
  19672. height: math.unit(5 + 9 / 12, "feet"),
  19673. weight: math.unit(190, "lb"),
  19674. name: "Front",
  19675. image: {
  19676. source: "./media/characters/sprisk/front.svg",
  19677. extra: 1225 / 1180,
  19678. bottom: 42.7 / 1266.4
  19679. }
  19680. },
  19681. frontNsfw: {
  19682. height: math.unit(5 + 9 / 12, "feet"),
  19683. weight: math.unit(190, "lb"),
  19684. name: "Front (NSFW)",
  19685. image: {
  19686. source: "./media/characters/sprisk/front-nsfw.svg",
  19687. extra: 1225 / 1180,
  19688. bottom: 42.7 / 1266.4
  19689. }
  19690. },
  19691. back: {
  19692. height: math.unit(5 + 9 / 12, "feet"),
  19693. weight: math.unit(190, "lb"),
  19694. name: "Back",
  19695. image: {
  19696. source: "./media/characters/sprisk/back.svg",
  19697. extra: 1247 / 1200,
  19698. bottom: 5.6 / 1253.04
  19699. }
  19700. },
  19701. },
  19702. [
  19703. {
  19704. name: "Tiny",
  19705. height: math.unit(2, "inches")
  19706. },
  19707. {
  19708. name: "Normal",
  19709. height: math.unit(5 + 9 / 12, "feet"),
  19710. default: true
  19711. },
  19712. {
  19713. name: "Mini Macro",
  19714. height: math.unit(18, "feet")
  19715. },
  19716. {
  19717. name: "Macro",
  19718. height: math.unit(100, "feet")
  19719. },
  19720. {
  19721. name: "MACRO",
  19722. height: math.unit(50, "miles")
  19723. },
  19724. {
  19725. name: "M A C R O",
  19726. height: math.unit(300, "miles")
  19727. },
  19728. ]
  19729. ))
  19730. characterMakers.push(() => makeCharacter(
  19731. { name: "Bunsen" },
  19732. {
  19733. side: {
  19734. height: math.unit(15.6, "meters"),
  19735. weight: math.unit(700000, "kg"),
  19736. name: "Side",
  19737. image: {
  19738. source: "./media/characters/bunsen/side.svg",
  19739. extra: 1644 / 358
  19740. }
  19741. },
  19742. foot: {
  19743. height: math.unit(1.611 * 1644 / 358, "meter"),
  19744. name: "Foot",
  19745. image: {
  19746. source: "./media/characters/bunsen/foot.svg"
  19747. }
  19748. },
  19749. },
  19750. [
  19751. {
  19752. name: "Small",
  19753. height: math.unit(10, "feet")
  19754. },
  19755. {
  19756. name: "Normal",
  19757. height: math.unit(15.6, "meters"),
  19758. default: true
  19759. },
  19760. ]
  19761. ))
  19762. characterMakers.push(() => makeCharacter(
  19763. { name: "Sesh" },
  19764. {
  19765. front: {
  19766. height: math.unit(4 + 11 / 12, "feet"),
  19767. weight: math.unit(140, "lb"),
  19768. name: "Front",
  19769. image: {
  19770. source: "./media/characters/sesh/front.svg",
  19771. extra: 3420 / 3231,
  19772. bottom: 72 / 3949.5
  19773. }
  19774. },
  19775. },
  19776. [
  19777. {
  19778. name: "Normal",
  19779. height: math.unit(4 + 11 / 12, "feet")
  19780. },
  19781. {
  19782. name: "Grown",
  19783. height: math.unit(15, "feet"),
  19784. default: true
  19785. },
  19786. {
  19787. name: "Macro",
  19788. height: math.unit(1500, "feet")
  19789. },
  19790. {
  19791. name: "Megamacro",
  19792. height: math.unit(30, "miles")
  19793. },
  19794. {
  19795. name: "Continental",
  19796. height: math.unit(3000, "miles")
  19797. },
  19798. {
  19799. name: "Gravity Mass",
  19800. height: math.unit(300000, "miles")
  19801. },
  19802. {
  19803. name: "Planet Buster",
  19804. height: math.unit(30000000, "miles")
  19805. },
  19806. {
  19807. name: "Big",
  19808. height: math.unit(3000000000, "miles")
  19809. },
  19810. ]
  19811. ))
  19812. characterMakers.push(() => makeCharacter(
  19813. { name: "Pepper" },
  19814. {
  19815. front: {
  19816. height: math.unit(9, "feet"),
  19817. weight: math.unit(350, "lb"),
  19818. name: "Front",
  19819. image: {
  19820. source: "./media/characters/pepper/front.svg",
  19821. extra: 1448/1312,
  19822. bottom: 9.4/1457.88
  19823. }
  19824. },
  19825. back: {
  19826. height: math.unit(9, "feet"),
  19827. weight: math.unit(350, "lb"),
  19828. name: "Back",
  19829. image: {
  19830. source: "./media/characters/pepper/back.svg",
  19831. extra: 1423/1300,
  19832. bottom: 4.6/1429
  19833. }
  19834. },
  19835. maw: {
  19836. height: math.unit(0.932, "feet"),
  19837. name: "Maw",
  19838. image: {
  19839. source: "./media/characters/pepper/maw.svg"
  19840. }
  19841. },
  19842. },
  19843. [
  19844. {
  19845. name: "Normal",
  19846. height: math.unit(9, "feet"),
  19847. default: true
  19848. },
  19849. ]
  19850. ))
  19851. characterMakers.push(() => makeCharacter(
  19852. { name: "Maelstrom" },
  19853. {
  19854. front: {
  19855. height: math.unit(6, "feet"),
  19856. weight: math.unit(150, "lb"),
  19857. name: "Front",
  19858. image: {
  19859. source: "./media/characters/maelstrom/front.svg",
  19860. extra: 2100/1883,
  19861. bottom: 94/2196.7
  19862. }
  19863. },
  19864. },
  19865. [
  19866. {
  19867. name: "Less Kaiju",
  19868. height: math.unit(200, "feet")
  19869. },
  19870. {
  19871. name: "Kaiju",
  19872. height: math.unit(400, "feet"),
  19873. default: true
  19874. },
  19875. {
  19876. name: "Kaiju-er",
  19877. height: math.unit(600, "feet")
  19878. },
  19879. ]
  19880. ))
  19881. characterMakers.push(() => makeCharacter(
  19882. { name: "Lexir" },
  19883. {
  19884. front: {
  19885. height: math.unit(6 + 5/12, "feet"),
  19886. weight: math.unit(180, "lb"),
  19887. name: "Front",
  19888. image: {
  19889. source: "./media/characters/lexir/front.svg",
  19890. extra: 180/172,
  19891. bottom: 12/192
  19892. }
  19893. },
  19894. back: {
  19895. height: math.unit(6 + 5/12, "feet"),
  19896. weight: math.unit(180, "lb"),
  19897. name: "Back",
  19898. image: {
  19899. source: "./media/characters/lexir/back.svg",
  19900. extra: 183.84/175.5,
  19901. bottom: 3.1/187
  19902. }
  19903. },
  19904. },
  19905. [
  19906. {
  19907. name: "Very Smal",
  19908. height: math.unit(1, "nm")
  19909. },
  19910. {
  19911. name: "Normal",
  19912. height: math.unit(6 + 5/12, "feet"),
  19913. default: true
  19914. },
  19915. {
  19916. name: "Macro",
  19917. height: math.unit(1, "mile")
  19918. },
  19919. {
  19920. name: "Megamacro",
  19921. height: math.unit(50, "miles")
  19922. },
  19923. ]
  19924. ))
  19925. characterMakers.push(() => makeCharacter(
  19926. { name: "Maksio" },
  19927. {
  19928. front: {
  19929. height: math.unit(1.5, "meters"),
  19930. weight: math.unit(100, "lb"),
  19931. name: "Front",
  19932. image: {
  19933. source: "./media/characters/maksio/front.svg",
  19934. extra: 1549/1531,
  19935. bottom: 123.7/1674.5429
  19936. }
  19937. },
  19938. back: {
  19939. height: math.unit(1.5, "meters"),
  19940. weight: math.unit(100, "lb"),
  19941. name: "Back",
  19942. image: {
  19943. source: "./media/characters/maksio/back.svg",
  19944. extra: 1541/1509,
  19945. bottom: 97/1639
  19946. }
  19947. },
  19948. hand: {
  19949. height: math.unit(0.621, "feet"),
  19950. name: "Hand",
  19951. image: {
  19952. source: "./media/characters/maksio/hand.svg"
  19953. }
  19954. },
  19955. foot: {
  19956. height: math.unit(1.611, "feet"),
  19957. name: "Foot",
  19958. image: {
  19959. source: "./media/characters/maksio/foot.svg"
  19960. }
  19961. },
  19962. },
  19963. [
  19964. {
  19965. name: "Shrunken",
  19966. height: math.unit(10, "cm")
  19967. },
  19968. {
  19969. name: "Normal",
  19970. height: math.unit(150, "cm"),
  19971. default: true
  19972. },
  19973. ]
  19974. ))
  19975. characterMakers.push(() => makeCharacter(
  19976. { name: "Erza Bear" },
  19977. {
  19978. front: {
  19979. height: math.unit(100, "feet"),
  19980. name: "Front",
  19981. image: {
  19982. source: "./media/characters/erza-bear/front.svg",
  19983. extra: 2449/2390,
  19984. bottom: 46/2494
  19985. }
  19986. },
  19987. back: {
  19988. height: math.unit(100, "feet"),
  19989. name: "Back",
  19990. image: {
  19991. source: "./media/characters/erza-bear/back.svg",
  19992. extra: 2489/2430,
  19993. bottom: 85.4/2480
  19994. }
  19995. },
  19996. tail: {
  19997. height: math.unit(42, "feet"),
  19998. name: "Tail",
  19999. image: {
  20000. source: "./media/characters/erza-bear/tail.svg"
  20001. }
  20002. },
  20003. tongue: {
  20004. height: math.unit(8, "feet"),
  20005. name: "Tongue",
  20006. image: {
  20007. source: "./media/characters/erza-bear/tongue.svg"
  20008. }
  20009. },
  20010. dick: {
  20011. height: math.unit(10.5, "feet"),
  20012. name: "Dick",
  20013. image: {
  20014. source: "./media/characters/erza-bear/dick.svg"
  20015. }
  20016. },
  20017. dickVertical: {
  20018. height: math.unit(16.9, "feet"),
  20019. name: "Dick (Vertical)",
  20020. image: {
  20021. source: "./media/characters/erza-bear/dick-vertical.svg"
  20022. }
  20023. },
  20024. },
  20025. [
  20026. {
  20027. name: "Macro",
  20028. height: math.unit(100, "feet"),
  20029. default: true
  20030. },
  20031. ]
  20032. ))
  20033. characterMakers.push(() => makeCharacter(
  20034. { name: "Violet Flor", species: "Skunk" },
  20035. {
  20036. front: {
  20037. height: math.unit(172, "cm"),
  20038. weight: math.unit(73, "kg"),
  20039. name: "Front",
  20040. image: {
  20041. source: "./media/characters/violet-flor/front.svg",
  20042. extra: 1530/1442,
  20043. bottom: 61.9/1588.8
  20044. }
  20045. },
  20046. back: {
  20047. height: math.unit(180, "cm"),
  20048. weight: math.unit(73, "kg"),
  20049. name: "Back",
  20050. image: {
  20051. source: "./media/characters/violet-flor/back.svg",
  20052. extra: 1692/1630,
  20053. bottom: 20/1712
  20054. }
  20055. },
  20056. },
  20057. [
  20058. {
  20059. name: "Normal",
  20060. height: math.unit(172, "cm"),
  20061. default: true
  20062. },
  20063. ]
  20064. ))
  20065. characterMakers.push(() => makeCharacter(
  20066. { name: "Lynn Rhea", species: "Shark" },
  20067. {
  20068. front: {
  20069. height: math.unit(6, "feet"),
  20070. weight: math.unit(220, "lb"),
  20071. name: "Front",
  20072. image: {
  20073. source: "./media/characters/lynn-rhea/front.svg",
  20074. extra: 310/273
  20075. }
  20076. },
  20077. back: {
  20078. height: math.unit(6, "feet"),
  20079. weight: math.unit(220, "lb"),
  20080. name: "Back",
  20081. image: {
  20082. source: "./media/characters/lynn-rhea/back.svg",
  20083. extra: 310/273
  20084. }
  20085. },
  20086. dicks: {
  20087. height: math.unit(0.9, "feet"),
  20088. name: "Dicks",
  20089. image: {
  20090. source: "./media/characters/lynn-rhea/dicks.svg"
  20091. }
  20092. },
  20093. slit: {
  20094. height: math.unit(0.4, "feet"),
  20095. name: "Slit",
  20096. image: {
  20097. source: "./media/characters/lynn-rhea/slit.svg"
  20098. }
  20099. },
  20100. },
  20101. [
  20102. {
  20103. name: "Micro",
  20104. height: math.unit(1, "inch")
  20105. },
  20106. {
  20107. name: "Macro",
  20108. height: math.unit(60, "feet"),
  20109. default: true
  20110. },
  20111. {
  20112. name: "Megamacro",
  20113. height: math.unit(2, "miles")
  20114. },
  20115. {
  20116. name: "Gigamacro",
  20117. height: math.unit(3, "earths")
  20118. },
  20119. {
  20120. name: "Galactic",
  20121. height: math.unit(0.8, "galaxies")
  20122. },
  20123. ]
  20124. ))
  20125. characterMakers.push(() => makeCharacter(
  20126. { name: "Valathos" },
  20127. {
  20128. front: {
  20129. height: math.unit(1600, "feet"),
  20130. weight: math.unit(85758785169, "kg"),
  20131. name: "Front",
  20132. image: {
  20133. source: "./media/characters/valathos/front.svg",
  20134. extra: 1451/1339
  20135. }
  20136. },
  20137. },
  20138. [
  20139. {
  20140. name: "Macro",
  20141. height: math.unit(1600, "feet"),
  20142. default: true
  20143. },
  20144. ]
  20145. ))
  20146. characterMakers.push(() => makeCharacter(
  20147. { name: "Azula" },
  20148. {
  20149. front: {
  20150. height: math.unit(7 + 5/12, "feet"),
  20151. weight: math.unit(300, "lb"),
  20152. name: "Front",
  20153. image: {
  20154. source: "./media/characters/azula/front.svg",
  20155. extra: 3208/2880,
  20156. bottom: 80.2/3277
  20157. }
  20158. },
  20159. back: {
  20160. height: math.unit(7 + 5/12, "feet"),
  20161. weight: math.unit(300, "lb"),
  20162. name: "Back",
  20163. image: {
  20164. source: "./media/characters/azula/back.svg",
  20165. extra: 3169/2822,
  20166. bottom: 150.6/3321
  20167. }
  20168. },
  20169. },
  20170. [
  20171. {
  20172. name: "Normal",
  20173. height: math.unit(7 + 5/12, "feet"),
  20174. default: true
  20175. },
  20176. {
  20177. name: "Big",
  20178. height: math.unit(20, "feet")
  20179. },
  20180. ]
  20181. ))
  20182. characterMakers.push(() => makeCharacter(
  20183. { name: "Rupert" },
  20184. {
  20185. front: {
  20186. height: math.unit(5 + 1/12, "feet"),
  20187. weight: math.unit(110, "lb"),
  20188. name: "Front",
  20189. image: {
  20190. source: "./media/characters/rupert/front.svg",
  20191. extra: 1549/1495,
  20192. bottom: 54.2/1604.4
  20193. }
  20194. },
  20195. },
  20196. [
  20197. {
  20198. name: "Normal",
  20199. height: math.unit(5 + 1/12, "feet"),
  20200. default: true
  20201. },
  20202. ]
  20203. ))
  20204. characterMakers.push(() => makeCharacter(
  20205. { name: "Sheera Castellar" },
  20206. {
  20207. front: {
  20208. height: math.unit(8 + 4/12, "feet"),
  20209. weight: math.unit(350, "lb"),
  20210. name: "Front",
  20211. image: {
  20212. source: "./media/characters/sheera-castellar/front.svg",
  20213. extra: 1957/1894,
  20214. bottom: 26.97/1975.017
  20215. }
  20216. },
  20217. side: {
  20218. height: math.unit(8 + 4/12, "feet"),
  20219. weight: math.unit(350, "lb"),
  20220. name: "Side",
  20221. image: {
  20222. source: "./media/characters/sheera-castellar/side.svg",
  20223. extra: 1957/1894
  20224. }
  20225. },
  20226. back: {
  20227. height: math.unit(8 + 4/12, "feet"),
  20228. weight: math.unit(350, "lb"),
  20229. name: "Back",
  20230. image: {
  20231. source: "./media/characters/sheera-castellar/back.svg",
  20232. extra: 1957/1894
  20233. }
  20234. },
  20235. angled: {
  20236. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  20237. weight: math.unit(350, "lb"),
  20238. name: "Angled",
  20239. image: {
  20240. source: "./media/characters/sheera-castellar/angled.svg",
  20241. extra: 1807/1707,
  20242. bottom: 68/1875
  20243. }
  20244. },
  20245. genitals: {
  20246. height: math.unit(2.2, "feet"),
  20247. name: "Genitals",
  20248. image: {
  20249. source: "./media/characters/sheera-castellar/genitals.svg"
  20250. }
  20251. },
  20252. },
  20253. [
  20254. {
  20255. name: "Normal",
  20256. height: math.unit(8 + 4/12, "feet")
  20257. },
  20258. {
  20259. name: "Macro",
  20260. height: math.unit(150, "feet"),
  20261. default: true
  20262. },
  20263. {
  20264. name: "Macro+",
  20265. height: math.unit(800, "feet")
  20266. },
  20267. ]
  20268. ))
  20269. characterMakers.push(() => makeCharacter(
  20270. { name: "Jaipur", species: "Black Panther" },
  20271. {
  20272. front: {
  20273. height: math.unit(6, "feet"),
  20274. weight: math.unit(150, "lb"),
  20275. name: "Front",
  20276. image: {
  20277. source: "./media/characters/jaipur/front.svg",
  20278. extra: 3860/3731,
  20279. bottom: 287/4140
  20280. }
  20281. },
  20282. back: {
  20283. height: math.unit(6, "feet"),
  20284. weight: math.unit(150, "lb"),
  20285. name: "Back",
  20286. image: {
  20287. source: "./media/characters/jaipur/back.svg",
  20288. extra: 4060/3930,
  20289. bottom: 151/4200
  20290. }
  20291. },
  20292. },
  20293. [
  20294. {
  20295. name: "Normal",
  20296. height: math.unit(1.85, "meters"),
  20297. default: true
  20298. },
  20299. {
  20300. name: "Macro",
  20301. height: math.unit(150, "meters")
  20302. },
  20303. {
  20304. name: "Macro+",
  20305. height: math.unit(0.5, "miles")
  20306. },
  20307. {
  20308. name: "Macro++",
  20309. height: math.unit(2.5, "miles")
  20310. },
  20311. {
  20312. name: "Macro+++",
  20313. height: math.unit(12, "miles")
  20314. },
  20315. {
  20316. name: "Macro++++",
  20317. height: math.unit(120, "miles")
  20318. },
  20319. {
  20320. name: "Macro+++++",
  20321. height: math.unit(1200, "miles")
  20322. },
  20323. ]
  20324. ))
  20325. characterMakers.push(() => makeCharacter(
  20326. { name: "Sheila (Wolf)" },
  20327. {
  20328. front: {
  20329. height: math.unit(6, "feet"),
  20330. weight: math.unit(150, "lb"),
  20331. name: "Front",
  20332. image: {
  20333. source: "./media/characters/sheila-wolf/front.svg",
  20334. extra: 1931/1808,
  20335. bottom: 29.5/1960
  20336. }
  20337. },
  20338. dick: {
  20339. height: math.unit(1.464, "feet"),
  20340. name: "Dick",
  20341. image: {
  20342. source: "./media/characters/sheila-wolf/dick.svg"
  20343. }
  20344. },
  20345. muzzle: {
  20346. height: math.unit(0.513, "feet"),
  20347. name: "Muzzle",
  20348. image: {
  20349. source: "./media/characters/sheila-wolf/muzzle.svg"
  20350. }
  20351. },
  20352. },
  20353. [
  20354. {
  20355. name: "Macro",
  20356. height: math.unit(70, "feet"),
  20357. default: true
  20358. },
  20359. ]
  20360. ))
  20361. characterMakers.push(() => makeCharacter(
  20362. { name: "Almor", species: "Dragon" },
  20363. {
  20364. front: {
  20365. height: math.unit(32, "meters"),
  20366. weight: math.unit(300000, "kg"),
  20367. name: "Front",
  20368. image: {
  20369. source: "./media/characters/almor/front.svg",
  20370. extra: 1408/1322,
  20371. bottom: 94.6/1506.5
  20372. }
  20373. },
  20374. },
  20375. [
  20376. {
  20377. name: "Macro",
  20378. height: math.unit(32, "meters"),
  20379. default: true
  20380. },
  20381. ]
  20382. ))
  20383. characterMakers.push(() => makeCharacter(
  20384. { name: "Silver" },
  20385. {
  20386. front: {
  20387. height: math.unit(7, "feet"),
  20388. weight: math.unit(200, "lb"),
  20389. name: "Front",
  20390. image: {
  20391. source: "./media/characters/silver/front.svg",
  20392. extra: 472.1/450.5,
  20393. bottom: 26.5/499.424
  20394. }
  20395. },
  20396. },
  20397. [
  20398. {
  20399. name: "Normal",
  20400. height: math.unit(7, "feet"),
  20401. default: true
  20402. },
  20403. {
  20404. name: "Macro",
  20405. height: math.unit(800, "feet")
  20406. },
  20407. {
  20408. name: "Megamacro",
  20409. height: math.unit(250, "miles")
  20410. },
  20411. ]
  20412. ))
  20413. characterMakers.push(() => makeCharacter(
  20414. { name: "Pliskin" },
  20415. {
  20416. front: {
  20417. height: math.unit(6, "feet"),
  20418. weight: math.unit(150, "lb"),
  20419. name: "Front",
  20420. image: {
  20421. source: "./media/characters/pliskin/front.svg",
  20422. extra: 1469/1359,
  20423. bottom: 70/1540
  20424. }
  20425. },
  20426. },
  20427. [
  20428. {
  20429. name: "Micro",
  20430. height: math.unit(3, "inches")
  20431. },
  20432. {
  20433. name: "Normal",
  20434. height: math.unit(5 + 11/12, "feet"),
  20435. default: true
  20436. },
  20437. {
  20438. name: "Macro",
  20439. height: math.unit(120, "feet")
  20440. },
  20441. ]
  20442. ))
  20443. characterMakers.push(() => makeCharacter(
  20444. { name: "Sammy" },
  20445. {
  20446. front: {
  20447. height: math.unit(6, "feet"),
  20448. weight: math.unit(150, "lb"),
  20449. name: "Front",
  20450. image: {
  20451. source: "./media/characters/sammy/front.svg",
  20452. extra: 1193/1089,
  20453. bottom: 30.5/1226
  20454. }
  20455. },
  20456. },
  20457. [
  20458. {
  20459. name: "Macro",
  20460. height: math.unit(1700, "feet"),
  20461. default: true
  20462. },
  20463. {
  20464. name: "Examacro",
  20465. height: math.unit(2.5e9, "lightyears")
  20466. },
  20467. ]
  20468. ))
  20469. characterMakers.push(() => makeCharacter(
  20470. { name: "Kuru", species: "Umbra" },
  20471. {
  20472. front: {
  20473. height: math.unit(21, "meters"),
  20474. weight: math.unit(12, "tonnes"),
  20475. name: "Front",
  20476. image: {
  20477. source: "./media/characters/kuru/front.svg",
  20478. extra: 4301/3785,
  20479. bottom: 371.3/4691
  20480. }
  20481. },
  20482. },
  20483. [
  20484. {
  20485. name: "Macro",
  20486. height: math.unit(21, "meters"),
  20487. default: true
  20488. },
  20489. ]
  20490. ))
  20491. characterMakers.push(() => makeCharacter(
  20492. { name: "Rakka", species: "Umbra" },
  20493. {
  20494. front: {
  20495. height: math.unit(23, "meters"),
  20496. weight: math.unit(12.2, "tonnes"),
  20497. name: "Front",
  20498. image: {
  20499. source: "./media/characters/rakka/front.svg",
  20500. extra: 4670/4169,
  20501. bottom: 301/4968.7
  20502. }
  20503. },
  20504. },
  20505. [
  20506. {
  20507. name: "Macro",
  20508. height: math.unit(23, "meters"),
  20509. default: true
  20510. },
  20511. ]
  20512. ))
  20513. characterMakers.push(() => makeCharacter(
  20514. { name: "Rhys (Feline)" },
  20515. {
  20516. front: {
  20517. height: math.unit(6, "feet"),
  20518. weight: math.unit(150, "lb"),
  20519. name: "Front",
  20520. image: {
  20521. source: "./media/characters/rhys-feline/front.svg",
  20522. extra: 2488/2308,
  20523. bottom: 35.67/2519.19
  20524. }
  20525. },
  20526. },
  20527. [
  20528. {
  20529. name: "Really Small",
  20530. height: math.unit(1, "nm")
  20531. },
  20532. {
  20533. name: "Micro",
  20534. height: math.unit(4, "inches")
  20535. },
  20536. {
  20537. name: "Normal",
  20538. height: math.unit(4 + 10/12, "feet"),
  20539. default: true
  20540. },
  20541. {
  20542. name: "Macro",
  20543. height: math.unit(100, "feet")
  20544. },
  20545. {
  20546. name: "Megamacto",
  20547. height: math.unit(50, "miles")
  20548. },
  20549. ]
  20550. ))
  20551. characterMakers.push(() => makeCharacter(
  20552. { name: "Alydar", species: "Raven/Snow Leopard" },
  20553. {
  20554. side: {
  20555. height: math.unit(30, "feet"),
  20556. weight: math.unit(35000, "kg"),
  20557. name: "Side",
  20558. image: {
  20559. source: "./media/characters/alydar/side.svg",
  20560. extra: 234/222,
  20561. bottom: 6.5/241
  20562. }
  20563. },
  20564. front: {
  20565. height: math.unit(30, "feet"),
  20566. weight: math.unit(35000, "kg"),
  20567. name: "Front",
  20568. image: {
  20569. source: "./media/characters/alydar/front.svg",
  20570. extra: 223.37/210.2,
  20571. bottom: 22.3/246.76
  20572. }
  20573. },
  20574. top: {
  20575. height: math.unit(64.54, "feet"),
  20576. weight: math.unit(35000, "kg"),
  20577. name: "Top",
  20578. image: {
  20579. source: "./media/characters/alydar/top.svg"
  20580. }
  20581. },
  20582. anthro: {
  20583. height: math.unit(30, "feet"),
  20584. weight: math.unit(9000, "kg"),
  20585. name: "Anthro",
  20586. image: {
  20587. source: "./media/characters/alydar/anthro.svg",
  20588. extra: 432/421,
  20589. bottom: 7.18/440
  20590. }
  20591. },
  20592. maw: {
  20593. height: math.unit(11.693, "feet"),
  20594. name: "Maw",
  20595. image: {
  20596. source: "./media/characters/alydar/maw.svg"
  20597. }
  20598. },
  20599. head: {
  20600. height: math.unit(11.693, "feet"),
  20601. name: "Head",
  20602. image: {
  20603. source: "./media/characters/alydar/head.svg"
  20604. }
  20605. },
  20606. headAlt: {
  20607. height: math.unit(12.861, "feet"),
  20608. name: "Head (Alt)",
  20609. image: {
  20610. source: "./media/characters/alydar/head-alt.svg"
  20611. }
  20612. },
  20613. wing: {
  20614. height: math.unit(20.712, "feet"),
  20615. name: "Wing",
  20616. image: {
  20617. source: "./media/characters/alydar/wing.svg"
  20618. }
  20619. },
  20620. wingFeather: {
  20621. height: math.unit(9.662, "feet"),
  20622. name: "Wing Feather",
  20623. image: {
  20624. source: "./media/characters/alydar/wing-feather.svg"
  20625. }
  20626. },
  20627. countourFeather: {
  20628. height: math.unit(4.154, "feet"),
  20629. name: "Contour Feather",
  20630. image: {
  20631. source: "./media/characters/alydar/contour-feather.svg"
  20632. }
  20633. },
  20634. },
  20635. [
  20636. {
  20637. name: "Diplomatic",
  20638. height: math.unit(13, "feet"),
  20639. default: true
  20640. },
  20641. {
  20642. name: "Small",
  20643. height: math.unit(30, "feet")
  20644. },
  20645. {
  20646. name: "Normal",
  20647. height: math.unit(95, "feet"),
  20648. default: true
  20649. },
  20650. {
  20651. name: "Large",
  20652. height: math.unit(285, "feet")
  20653. },
  20654. {
  20655. name: "Incomprehensible",
  20656. height: math.unit(450, "megameters")
  20657. },
  20658. ]
  20659. ))
  20660. characterMakers.push(() => makeCharacter(
  20661. { name: "Selicia" },
  20662. {
  20663. side: {
  20664. height: math.unit(11, "feet"),
  20665. weight: math.unit(1750, "kg"),
  20666. name: "Side",
  20667. image: {
  20668. source: "./media/characters/selicia/side.svg",
  20669. extra: 440/396,
  20670. bottom: 24.8/465.979
  20671. }
  20672. },
  20673. maw: {
  20674. height: math.unit(4.665, "feet"),
  20675. name: "Maw",
  20676. image: {
  20677. source: "./media/characters/selicia/maw.svg"
  20678. }
  20679. },
  20680. },
  20681. [
  20682. {
  20683. name: "Normal",
  20684. height: math.unit(11, "feet"),
  20685. default: true
  20686. },
  20687. ]
  20688. ))
  20689. characterMakers.push(() => makeCharacter(
  20690. { name: "Layla" },
  20691. {
  20692. side: {
  20693. height: math.unit(2 + 6 /12, "feet"),
  20694. weight: math.unit(30, "lb"),
  20695. name: "Side",
  20696. image: {
  20697. source: "./media/characters/layla/side.svg",
  20698. extra: 244/188,
  20699. bottom: 18.2/262.1
  20700. }
  20701. },
  20702. back: {
  20703. height: math.unit(2 + 6 /12, "feet"),
  20704. weight: math.unit(30, "lb"),
  20705. name: "Back",
  20706. image: {
  20707. source: "./media/characters/layla/back.svg",
  20708. extra: 308/241.5,
  20709. bottom: 8.9/316.8
  20710. }
  20711. },
  20712. cumming: {
  20713. height: math.unit(2 + 6 /12, "feet"),
  20714. weight: math.unit(30, "lb"),
  20715. name: "Cumming",
  20716. image: {
  20717. source: "./media/characters/layla/cumming.svg",
  20718. extra: 342/279,
  20719. bottom: 595/938
  20720. }
  20721. },
  20722. dickFlaccid: {
  20723. height: math.unit(2.595, "feet"),
  20724. name: "Flaccid Genitals",
  20725. image: {
  20726. source: "./media/characters/layla/dick-flaccid.svg"
  20727. }
  20728. },
  20729. dickErect: {
  20730. height: math.unit(2.359, "feet"),
  20731. name: "Erect Genitals",
  20732. image: {
  20733. source: "./media/characters/layla/dick-erect.svg"
  20734. }
  20735. },
  20736. },
  20737. [
  20738. {
  20739. name: "Micro",
  20740. height: math.unit(1, "inch")
  20741. },
  20742. {
  20743. name: "Small",
  20744. height: math.unit(1, "foot")
  20745. },
  20746. {
  20747. name: "Normal",
  20748. height: math.unit(2 + 6/12, "feet"),
  20749. default: true
  20750. },
  20751. {
  20752. name: "Macro",
  20753. height: math.unit(200, "feet")
  20754. },
  20755. {
  20756. name: "Megamacro",
  20757. height: math.unit(1000, "miles")
  20758. },
  20759. {
  20760. name: "Planetary",
  20761. height: math.unit(8000, "miles")
  20762. },
  20763. {
  20764. name: "True Layla",
  20765. height: math.unit(200000*7, "multiverses")
  20766. },
  20767. ]
  20768. ))
  20769. //characters
  20770. function makeCharacters() {
  20771. const results = [];
  20772. characterMakers.forEach(character => {
  20773. results.push(character());
  20774. });
  20775. return results;
  20776. }