less copy protection, more size visualization
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

19570 řádky
464 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. },
  48. info: {
  49. description: {
  50. mode: "append",
  51. text: "\n\nHe is not currently looking at you."
  52. }
  53. }
  54. },
  55. full: {
  56. height: math.unit(1.34, "meter"),
  57. weight: math.unit(225, "kg"),
  58. name: "Full",
  59. image: {
  60. source: "./media/characters/fen/full.svg"
  61. },
  62. info: {
  63. description: {
  64. mode: "append",
  65. text: "\n\nMunch."
  66. }
  67. }
  68. },
  69. kneeling: {
  70. height: math.unit(5.4, "feet"),
  71. weight: math.unit(124.738, "kg"),
  72. name: "Kneeling",
  73. image: {
  74. source: "./media/characters/fen/kneeling.svg",
  75. extra: 563 / 507
  76. }
  77. },
  78. },
  79. [
  80. {
  81. name: "Normal",
  82. height: math.unit(2.2428, "meter")
  83. },
  84. {
  85. name: "Big",
  86. height: math.unit(12, "feet")
  87. },
  88. {
  89. name: "Minimacro",
  90. height: math.unit(30, "meter"),
  91. default: true,
  92. info: {
  93. description: {
  94. mode: "append",
  95. text: "\n\nTOO DAMN BIG"
  96. }
  97. }
  98. },
  99. {
  100. name: "Macro",
  101. height: math.unit(100, "meter"),
  102. info: {
  103. description: {
  104. mode: "append",
  105. text: "\n\nTOO DAMN BIG"
  106. }
  107. }
  108. },
  109. {
  110. name: "Macro+",
  111. height: math.unit(1000, "meter")
  112. },
  113. {
  114. name: "Megamacro",
  115. height: math.unit(10, "miles")
  116. }
  117. ]
  118. ))
  119. characterMakers.push(() => makeCharacter(
  120. { name: "Sofia Fluttertail" },
  121. {
  122. front: {
  123. height: math.unit(183, "cm"),
  124. weight: math.unit(80, "kg"),
  125. name: "Front",
  126. image: {
  127. source: "./media/characters/sofia-fluttertail/front.svg",
  128. bottom: 0.01,
  129. extra: 2154 / 2081
  130. }
  131. },
  132. frontAlt: {
  133. height: math.unit(183, "cm"),
  134. weight: math.unit(80, "kg"),
  135. name: "Front (alt)",
  136. image: {
  137. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  138. }
  139. },
  140. back: {
  141. height: math.unit(183, "cm"),
  142. weight: math.unit(80, "kg"),
  143. name: "Back",
  144. image: {
  145. source: "./media/characters/sofia-fluttertail/back.svg"
  146. }
  147. },
  148. maw: {
  149. height: math.unit(183 / 5, "cm"),
  150. name: "Maw",
  151. image: {
  152. source: "./media/characters/sofia-fluttertail/maw.svg"
  153. }
  154. },
  155. },
  156. [
  157. {
  158. name: "Normal",
  159. height: math.unit(1.83, "meter")
  160. },
  161. {
  162. name: "Macro",
  163. height: math.unit(96, "feet"),
  164. default: true
  165. },
  166. {
  167. name: "Megamerger",
  168. height: math.unit(650, "feet")
  169. },
  170. ]
  171. ))
  172. characterMakers.push(() => makeCharacter(
  173. { name: "March" },
  174. {
  175. front: {
  176. height: math.unit(7, "feet"),
  177. weight: math.unit(100, "kg"),
  178. name: "Front",
  179. image: {
  180. source: "./media/characters/march/front.svg",
  181. extra: 1,
  182. bottom: 0.015
  183. }
  184. },
  185. foot: {
  186. height: math.unit(0.9, "feet"),
  187. name: "Foot",
  188. image: {
  189. source: "./media/characters/march/foot.svg"
  190. }
  191. },
  192. },
  193. [
  194. {
  195. name: "Normal",
  196. height: math.unit(7.9, "feet")
  197. },
  198. {
  199. name: "Macro",
  200. height: math.unit(220, "meters")
  201. },
  202. {
  203. name: "Megamacro",
  204. height: math.unit(2.98, "km"),
  205. default: true
  206. },
  207. {
  208. name: "Gigamacro",
  209. height: math.unit(15963, "km")
  210. },
  211. {
  212. name: "Teramacro",
  213. height: math.unit(2980000000, "km")
  214. },
  215. {
  216. name: "Examacro",
  217. height: math.unit(250, "parsecs")
  218. },
  219. ]
  220. ))
  221. characterMakers.push(() => makeCharacter(
  222. { name: "Noir" },
  223. {
  224. front: {
  225. height: math.unit(6, "feet"),
  226. weight: math.unit(60, "kg"),
  227. name: "Front",
  228. image: {
  229. source: "./media/characters/noir/front.svg",
  230. extra: 1,
  231. bottom: 0.032
  232. }
  233. },
  234. },
  235. [
  236. {
  237. name: "Normal",
  238. height: math.unit(6.6, "feet")
  239. },
  240. {
  241. name: "Macro",
  242. height: math.unit(500, "feet")
  243. },
  244. {
  245. name: "Megamacro",
  246. height: math.unit(2.5, "km"),
  247. default: true
  248. },
  249. {
  250. name: "Gigamacro",
  251. height: math.unit(22500, "km")
  252. },
  253. {
  254. name: "Teramacro",
  255. height: math.unit(2500000000, "km")
  256. },
  257. {
  258. name: "Examacro",
  259. height: math.unit(200, "parsecs")
  260. },
  261. ]
  262. ))
  263. characterMakers.push(() => makeCharacter(
  264. { name: "Okuri" },
  265. {
  266. front: {
  267. height: math.unit(7, "feet"),
  268. weight: math.unit(100, "kg"),
  269. name: "Front",
  270. image: {
  271. source: "./media/characters/okuri/front.svg",
  272. extra: 1,
  273. bottom: 0.037
  274. }
  275. },
  276. back: {
  277. height: math.unit(7, "feet"),
  278. weight: math.unit(100, "kg"),
  279. name: "Back",
  280. image: {
  281. source: "./media/characters/okuri/back.svg",
  282. extra: 1,
  283. bottom: 0.007
  284. }
  285. },
  286. },
  287. [
  288. {
  289. name: "Megamacro",
  290. height: math.unit(100, "miles"),
  291. default: true
  292. },
  293. ]
  294. ))
  295. characterMakers.push(() => makeCharacter(
  296. { name: "Manny" },
  297. {
  298. front: {
  299. height: math.unit(7, "feet"),
  300. weight: math.unit(100, "kg"),
  301. name: "Front",
  302. image: {
  303. source: "./media/characters/manny/front.svg",
  304. extra: 1,
  305. bottom: 0.06
  306. }
  307. },
  308. back: {
  309. height: math.unit(7, "feet"),
  310. weight: math.unit(100, "kg"),
  311. name: "Back",
  312. image: {
  313. source: "./media/characters/manny/back.svg",
  314. extra: 1,
  315. bottom: 0.014
  316. }
  317. },
  318. },
  319. [
  320. {
  321. name: "Normal",
  322. height: math.unit(7, "feet"),
  323. },
  324. {
  325. name: "Macro",
  326. height: math.unit(78, "feet"),
  327. default: true
  328. },
  329. {
  330. name: "Macro+",
  331. height: math.unit(300, "meters")
  332. },
  333. {
  334. name: "Macro++",
  335. height: math.unit(2400, "meters")
  336. },
  337. {
  338. name: "Megamacro",
  339. height: math.unit(5167, "meters")
  340. },
  341. {
  342. name: "Gigamacro",
  343. height: math.unit(41769, "miles")
  344. },
  345. ]
  346. ))
  347. characterMakers.push(() => makeCharacter(
  348. { name: "Adake" },
  349. {
  350. front: {
  351. height: math.unit(7, "feet"),
  352. weight: math.unit(100, "kg"),
  353. name: "Front",
  354. image: {
  355. source: "./media/characters/adake/front-1.svg"
  356. }
  357. },
  358. frontAlt: {
  359. height: math.unit(7, "feet"),
  360. weight: math.unit(100, "kg"),
  361. name: "Front (Alt)",
  362. image: {
  363. source: "./media/characters/adake/front-2.svg",
  364. extra: 1,
  365. bottom: 0.01
  366. }
  367. },
  368. back: {
  369. height: math.unit(7, "feet"),
  370. weight: math.unit(100, "kg"),
  371. name: "Back",
  372. image: {
  373. source: "./media/characters/adake/back.svg",
  374. }
  375. },
  376. kneel: {
  377. height: math.unit(5.385, "feet"),
  378. weight: math.unit(100, "kg"),
  379. name: "Kneeling",
  380. image: {
  381. source: "./media/characters/adake/kneel.svg",
  382. bottom: 0.052
  383. }
  384. },
  385. },
  386. [
  387. {
  388. name: "Normal",
  389. height: math.unit(7, "feet"),
  390. },
  391. {
  392. name: "Macro",
  393. height: math.unit(78, "feet"),
  394. default: true
  395. },
  396. {
  397. name: "Macro+",
  398. height: math.unit(300, "meters")
  399. },
  400. {
  401. name: "Macro++",
  402. height: math.unit(2400, "meters")
  403. },
  404. {
  405. name: "Megamacro",
  406. height: math.unit(5167, "meters")
  407. },
  408. {
  409. name: "Gigamacro",
  410. height: math.unit(41769, "miles")
  411. },
  412. ]
  413. ))
  414. characterMakers.push(() => makeCharacter(
  415. { name: "Elijah" },
  416. {
  417. side: {
  418. height: math.unit(7, "feet"),
  419. weight: math.unit(50, "kg"),
  420. name: "Side",
  421. image: {
  422. source: "./media/characters/elijah/side.svg",
  423. extra: 1,
  424. bottom: 0.065
  425. }
  426. },
  427. foot: {
  428. height: math.unit(2.05, "feet"),
  429. name: "Foot",
  430. image: {
  431. source: "./media/characters/elijah/foot.svg"
  432. }
  433. },
  434. },
  435. [
  436. {
  437. name: "Normal",
  438. height: math.unit(1.65, "meters")
  439. },
  440. {
  441. name: "Macro",
  442. height: math.unit(55, "meters"),
  443. default: true
  444. },
  445. {
  446. name: "Macro+",
  447. height: math.unit(105, "meters")
  448. },
  449. ]
  450. ))
  451. characterMakers.push(() => makeCharacter(
  452. { name: "Rai" },
  453. {
  454. front: {
  455. height: math.unit(11, "feet"),
  456. weight: math.unit(80, "kg"),
  457. name: "Front",
  458. image: {
  459. source: "./media/characters/rai/front.svg",
  460. extra: 1,
  461. bottom: 0.03
  462. }
  463. },
  464. side: {
  465. height: math.unit(11, "feet"),
  466. weight: math.unit(80, "kg"),
  467. name: "Side",
  468. image: {
  469. source: "./media/characters/rai/side.svg"
  470. }
  471. },
  472. back: {
  473. height: math.unit(11, "feet"),
  474. weight: math.unit(80, "lb"),
  475. name: "Back",
  476. image: {
  477. source: "./media/characters/rai/back.svg",
  478. extra: 1,
  479. bottom: 0.01
  480. }
  481. },
  482. feral: {
  483. height: math.unit(11, "feet"),
  484. weight: math.unit(800, "lb"),
  485. name: "Feral",
  486. image: {
  487. source: "./media/characters/rai/feral.svg",
  488. extra: 1050 / 659,
  489. bottom: 0.07
  490. }
  491. },
  492. maw: {
  493. height: math.unit(6 / 3.81416, "feet"),
  494. name: "Maw",
  495. image: {
  496. source: "./media/characters/rai/maw.svg"
  497. }
  498. },
  499. },
  500. [
  501. {
  502. name: "Normal",
  503. height: math.unit(11, "feet")
  504. },
  505. {
  506. name: "Macro",
  507. height: math.unit(302, "feet"),
  508. default: true
  509. },
  510. ]
  511. ))
  512. characterMakers.push(() => makeCharacter(
  513. { name: "Jazzy" },
  514. {
  515. front: {
  516. height: math.unit(7, "feet"),
  517. weight: math.unit(80, "kg"),
  518. name: "Front",
  519. image: {
  520. source: "./media/characters/jazzy/front.svg",
  521. extra: 1,
  522. bottom: 0.01
  523. }
  524. },
  525. back: {
  526. height: math.unit(7, "feet"),
  527. weight: math.unit(80, "kg"),
  528. name: "Back",
  529. image: {
  530. source: "./media/characters/jazzy/back.svg",
  531. extra: 1,
  532. bottom: 0.01
  533. }
  534. },
  535. },
  536. [
  537. {
  538. name: "Macro",
  539. height: math.unit(216, "feet"),
  540. default: true
  541. },
  542. ]
  543. ))
  544. characterMakers.push(() => makeCharacter(
  545. { name: "Flamm" },
  546. {
  547. front: {
  548. height: math.unit(7, "feet"),
  549. weight: math.unit(80, "kg"),
  550. name: "Front",
  551. image: {
  552. source: "./media/characters/flamm/front.svg",
  553. extra: 1,
  554. bottom: 0.02
  555. }
  556. },
  557. },
  558. [
  559. {
  560. name: "Normal",
  561. height: math.unit(9.5, "feet")
  562. },
  563. {
  564. name: "Macro",
  565. height: math.unit(200, "feet"),
  566. default: true
  567. },
  568. ]
  569. ))
  570. characterMakers.push(() => makeCharacter(
  571. { name: "Zephiro" },
  572. {
  573. front: {
  574. height: math.unit(7, "feet"),
  575. weight: math.unit(80, "kg"),
  576. name: "Front",
  577. image: {
  578. source: "./media/characters/zephiro/front.svg",
  579. extra: 2309 / 2162,
  580. bottom: 0.069
  581. }
  582. },
  583. side: {
  584. height: math.unit(7, "feet"),
  585. weight: math.unit(80, "kg"),
  586. name: "Side",
  587. image: {
  588. source: "./media/characters/zephiro/side.svg",
  589. extra: 2403 / 2279,
  590. bottom: 0.015
  591. }
  592. },
  593. back: {
  594. height: math.unit(7, "feet"),
  595. weight: math.unit(80, "kg"),
  596. name: "Back",
  597. image: {
  598. source: "./media/characters/zephiro/back.svg",
  599. extra: 2373 / 2244,
  600. bottom: 0.013
  601. }
  602. },
  603. },
  604. [
  605. {
  606. name: "Micro",
  607. height: math.unit(3, "inches")
  608. },
  609. {
  610. name: "Normal",
  611. height: math.unit(5 + 3 / 12, "feet"),
  612. default: true
  613. },
  614. {
  615. name: "Macro",
  616. height: math.unit(118, "feet")
  617. },
  618. ]
  619. ))
  620. characterMakers.push(() => makeCharacter(
  621. { name: "Fory" },
  622. {
  623. front: {
  624. height: math.unit(7, "feet"),
  625. weight: math.unit(90, "kg"),
  626. name: "Front",
  627. image: {
  628. source: "./media/characters/fory/front.svg",
  629. extra: 1,
  630. bottom: 0.03
  631. }
  632. },
  633. },
  634. [
  635. {
  636. name: "Normal",
  637. height: math.unit(5, "feet")
  638. },
  639. {
  640. name: "Macro",
  641. height: math.unit(50, "feet"),
  642. default: true
  643. },
  644. ]
  645. ))
  646. characterMakers.push(() => makeCharacter(
  647. { name: "Kurrikage" },
  648. {
  649. front: {
  650. height: math.unit(7, "feet"),
  651. weight: math.unit(90, "kg"),
  652. name: "Front",
  653. image: {
  654. source: "./media/characters/kurrikage/front.svg",
  655. extra: 1,
  656. bottom: 0.035
  657. }
  658. },
  659. back: {
  660. height: math.unit(7, "feet"),
  661. weight: math.unit(90, "lb"),
  662. name: "Back",
  663. image: {
  664. source: "./media/characters/kurrikage/back.svg"
  665. }
  666. },
  667. paw: {
  668. height: math.unit(1.5, "feet"),
  669. name: "Paw",
  670. image: {
  671. source: "./media/characters/kurrikage/paw.svg"
  672. }
  673. },
  674. staff: {
  675. height: math.unit(6.7, "feet"),
  676. name: "Staff",
  677. image: {
  678. source: "./media/characters/kurrikage/staff.svg"
  679. }
  680. },
  681. peek: {
  682. height: math.unit(1.05, "feet"),
  683. name: "Peeking",
  684. image: {
  685. source: "./media/characters/kurrikage/peek.svg",
  686. bottom: 0.08
  687. }
  688. },
  689. },
  690. [
  691. {
  692. name: "Normal",
  693. height: math.unit(12, "feet"),
  694. default: true
  695. },
  696. {
  697. name: "Big",
  698. height: math.unit(20, "feet")
  699. },
  700. {
  701. name: "Macro",
  702. height: math.unit(500, "feet")
  703. },
  704. {
  705. name: "Megamacro",
  706. height: math.unit(20, "miles")
  707. },
  708. ]
  709. ))
  710. characterMakers.push(() => makeCharacter(
  711. { name: "Shingo" },
  712. {
  713. front: {
  714. height: math.unit(6, "feet"),
  715. weight: math.unit(75, "kg"),
  716. name: "Front",
  717. image: {
  718. source: "./media/characters/shingo/front.svg",
  719. extra: 3511 / 3338,
  720. bottom: 0.005
  721. }
  722. },
  723. },
  724. [
  725. {
  726. name: "Micro",
  727. height: math.unit(4, "inches")
  728. },
  729. {
  730. name: "Normal",
  731. height: math.unit(6, "feet"),
  732. default: true
  733. },
  734. {
  735. name: "Macro",
  736. height: math.unit(108, "feet")
  737. }
  738. ]
  739. ))
  740. characterMakers.push(() => makeCharacter(
  741. { name: "Aigey" },
  742. {
  743. side: {
  744. height: math.unit(6, "feet"),
  745. weight: math.unit(75, "kg"),
  746. name: "Side",
  747. image: {
  748. source: "./media/characters/aigey/side.svg"
  749. }
  750. },
  751. },
  752. [
  753. {
  754. name: "Macro",
  755. height: math.unit(200, "feet"),
  756. default: true
  757. },
  758. {
  759. name: "Megamacro",
  760. height: math.unit(100, "miles")
  761. },
  762. ]
  763. )
  764. )
  765. characterMakers.push(() => makeCharacter(
  766. { name: "Natasha" },
  767. {
  768. front: {
  769. height: math.unit(5 + 5 / 12, "feet"),
  770. weight: math.unit(75, "kg"),
  771. name: "Front",
  772. image: {
  773. source: "./media/characters/natasha/front.svg",
  774. extra: 875 / 846,
  775. bottom: 0.01
  776. }
  777. },
  778. },
  779. [
  780. {
  781. name: "Normal",
  782. height: math.unit(5 + 5 / 12, "feet")
  783. },
  784. {
  785. name: "Large",
  786. height: math.unit(12, "feet")
  787. },
  788. {
  789. name: "Macro",
  790. height: math.unit(100, "feet"),
  791. default: true
  792. },
  793. {
  794. name: "Macro+",
  795. height: math.unit(260, "feet")
  796. },
  797. {
  798. name: "Macro++",
  799. height: math.unit(1, "mile")
  800. },
  801. ]
  802. ))
  803. characterMakers.push(() => makeCharacter(
  804. { name: "Malik" },
  805. {
  806. front: {
  807. height: math.unit(6, "feet"),
  808. weight: math.unit(75, "kg"),
  809. name: "Front",
  810. image: {
  811. source: "./media/characters/malik/front.svg"
  812. }
  813. },
  814. side: {
  815. height: math.unit(6, "feet"),
  816. weight: math.unit(75, "kg"),
  817. name: "Side",
  818. image: {
  819. source: "./media/characters/malik/side.svg",
  820. extra: 1.1539
  821. }
  822. },
  823. back: {
  824. height: math.unit(6, "feet"),
  825. weight: math.unit(75, "kg"),
  826. name: "Back",
  827. image: {
  828. source: "./media/characters/malik/back.svg"
  829. }
  830. },
  831. },
  832. [
  833. {
  834. name: "Macro",
  835. height: math.unit(156, "feet"),
  836. default: true
  837. },
  838. {
  839. name: "Macro+",
  840. height: math.unit(1188, "feet")
  841. },
  842. ]
  843. ))
  844. characterMakers.push(() => makeCharacter(
  845. { name: "Sefer" },
  846. {
  847. front: {
  848. height: math.unit(6, "feet"),
  849. weight: math.unit(75, "kg"),
  850. name: "Front",
  851. image: {
  852. source: "./media/characters/sefer/front.svg"
  853. }
  854. },
  855. back: {
  856. height: math.unit(6, "feet"),
  857. weight: math.unit(75, "kg"),
  858. name: "Back",
  859. image: {
  860. source: "./media/characters/sefer/back.svg"
  861. }
  862. },
  863. },
  864. [
  865. {
  866. name: "Normal",
  867. height: math.unit(6, "feet"),
  868. default: true
  869. },
  870. ]
  871. ))
  872. characterMakers.push(() => makeCharacter(
  873. { name: "North" },
  874. {
  875. body: {
  876. height: math.unit(2.2428, "meter"),
  877. weight: math.unit(124.738, "kg"),
  878. name: "Body",
  879. image: {
  880. extra: 1225 / 1050,
  881. source: "./media/characters/north/front.svg"
  882. }
  883. }
  884. },
  885. [
  886. {
  887. name: "Micro",
  888. height: math.unit(4, "inches")
  889. },
  890. {
  891. name: "Macro",
  892. height: math.unit(63, "meters")
  893. },
  894. {
  895. name: "Megamacro",
  896. height: math.unit(101, "miles"),
  897. default: true
  898. }
  899. ]
  900. ))
  901. characterMakers.push(() => makeCharacter(
  902. { name: "Talan" },
  903. {
  904. body: {
  905. height: math.unit(2, "meter"),
  906. weight: math.unit(70, "kg"),
  907. name: "Body",
  908. image: {
  909. bottom: 0.02,
  910. source: "./media/characters/talan/front.svg"
  911. }
  912. }
  913. },
  914. [
  915. {
  916. name: "Normal",
  917. height: math.unit(4, "meters")
  918. },
  919. {
  920. name: "Macro",
  921. height: math.unit(100, "meters")
  922. },
  923. {
  924. name: "Megamacro",
  925. height: math.unit(2, "miles"),
  926. default: true
  927. },
  928. {
  929. name: "Gigamacro",
  930. height: math.unit(5000, "miles")
  931. },
  932. {
  933. name: "Teramacro",
  934. height: math.unit(100, "parsecs")
  935. }
  936. ]
  937. ))
  938. characterMakers.push(() => makeCharacter(
  939. { name: "Gael'Rathus" },
  940. {
  941. front: {
  942. height: math.unit(2, "meter"),
  943. weight: math.unit(90, "kg"),
  944. name: "Front",
  945. image: {
  946. source: "./media/characters/gael'rathus/front.svg"
  947. }
  948. },
  949. frontAlt: {
  950. height: math.unit(2, "meter"),
  951. weight: math.unit(90, "kg"),
  952. name: "Front (alt)",
  953. image: {
  954. source: "./media/characters/gael'rathus/front-alt.svg"
  955. }
  956. },
  957. frontAlt2: {
  958. height: math.unit(2, "meter"),
  959. weight: math.unit(90, "kg"),
  960. name: "Front (alt 2)",
  961. image: {
  962. source: "./media/characters/gael'rathus/front-alt-2.svg"
  963. }
  964. }
  965. },
  966. [
  967. {
  968. name: "Normal",
  969. height: math.unit(9, "feet"),
  970. default: true
  971. },
  972. {
  973. name: "Large",
  974. height: math.unit(25, "feet")
  975. },
  976. {
  977. name: "Macro",
  978. height: math.unit(0.25, "miles")
  979. },
  980. {
  981. name: "Megamacro",
  982. height: math.unit(10, "miles")
  983. }
  984. ]
  985. ))
  986. characterMakers.push(() => makeCharacter(
  987. { name: "Sosha" },
  988. {
  989. side: {
  990. height: math.unit(2, "meter"),
  991. weight: math.unit(140, "kg"),
  992. name: "Side",
  993. image: {
  994. source: "./media/characters/sosha/side.svg",
  995. bottom: 0.042
  996. }
  997. },
  998. },
  999. [
  1000. {
  1001. name: "Normal",
  1002. height: math.unit(12, "feet"),
  1003. default: true
  1004. }
  1005. ]
  1006. ))
  1007. characterMakers.push(() => makeCharacter(
  1008. { name: "RuNNoLa" },
  1009. {
  1010. side: {
  1011. height: math.unit(5 + 5 / 12, "feet"),
  1012. weight: math.unit(170, "kg"),
  1013. name: "Side",
  1014. image: {
  1015. source: "./media/characters/runnola/side.svg",
  1016. extra: 741 / 448,
  1017. bottom: 0.05
  1018. }
  1019. },
  1020. },
  1021. [
  1022. {
  1023. name: "Small",
  1024. height: math.unit(3, "feet")
  1025. },
  1026. {
  1027. name: "Normal",
  1028. height: math.unit(5 + 5 / 12, "feet"),
  1029. default: true
  1030. },
  1031. {
  1032. name: "Big",
  1033. height: math.unit(10, "feet")
  1034. },
  1035. ]
  1036. ))
  1037. characterMakers.push(() => makeCharacter(
  1038. { name: "Kurribird" },
  1039. {
  1040. front: {
  1041. height: math.unit(2, "meter"),
  1042. weight: math.unit(50, "kg"),
  1043. name: "Front",
  1044. image: {
  1045. source: "./media/characters/kurribird/front.svg",
  1046. bottom: 0.015
  1047. }
  1048. },
  1049. frontAlt: {
  1050. height: math.unit(1.5, "meter"),
  1051. weight: math.unit(50, "kg"),
  1052. name: "Front (Alt)",
  1053. image: {
  1054. source: "./media/characters/kurribird/front-alt.svg",
  1055. extra: 1.45
  1056. }
  1057. },
  1058. },
  1059. [
  1060. {
  1061. name: "Normal",
  1062. height: math.unit(7, "feet")
  1063. },
  1064. {
  1065. name: "Big",
  1066. height: math.unit(12, "feet"),
  1067. default: true
  1068. },
  1069. {
  1070. name: "Macro",
  1071. height: math.unit(1500, "feet")
  1072. },
  1073. {
  1074. name: "Megamacro",
  1075. height: math.unit(2, "miles")
  1076. }
  1077. ]
  1078. ))
  1079. characterMakers.push(() => makeCharacter(
  1080. { name: "Elbial" },
  1081. {
  1082. front: {
  1083. height: math.unit(2, "meter"),
  1084. weight: math.unit(80, "kg"),
  1085. name: "Front",
  1086. image: {
  1087. source: "./media/characters/elbial/front.svg",
  1088. extra: 1643/1556,
  1089. bottom: 60.2/1696
  1090. }
  1091. },
  1092. side: {
  1093. height: math.unit(2, "meter"),
  1094. weight: math.unit(80, "kg"),
  1095. name: "Side",
  1096. image: {
  1097. source: "./media/characters/elbial/side.svg",
  1098. extra: 1630/1565,
  1099. bottom: 71.5/1697
  1100. }
  1101. },
  1102. back: {
  1103. height: math.unit(2, "meter"),
  1104. weight: math.unit(80, "kg"),
  1105. name: "Back",
  1106. image: {
  1107. source: "./media/characters/elbial/back.svg",
  1108. extra: 1668/1595,
  1109. bottom: 5.6/1672
  1110. }
  1111. },
  1112. frontDressed: {
  1113. height: math.unit(2, "meter"),
  1114. weight: math.unit(80, "kg"),
  1115. name: "Front (Dressed)",
  1116. image: {
  1117. source: "./media/characters/elbial/front-dressed.svg",
  1118. extra: 1653/1584,
  1119. bottom: 57/1708
  1120. }
  1121. },
  1122. genitals: {
  1123. height: math.unit(2/3.367, "meter"),
  1124. name: "Genitals",
  1125. image: {
  1126. source: "./media/characters/elbial/genitals.svg"
  1127. }
  1128. },
  1129. },
  1130. [
  1131. {
  1132. name: "Large",
  1133. height: math.unit(100, "feet")
  1134. },
  1135. {
  1136. name: "Macro",
  1137. height: math.unit(500, "feet"),
  1138. default: true
  1139. },
  1140. {
  1141. name: "Megamacro",
  1142. height: math.unit(10, "miles")
  1143. },
  1144. {
  1145. name: "Gigamacro",
  1146. height: math.unit(25000, "miles")
  1147. },
  1148. {
  1149. name: "Full-Size",
  1150. height: math.unit(8000000, "gigaparsecs")
  1151. }
  1152. ]
  1153. ))
  1154. characterMakers.push(() => makeCharacter(
  1155. { name: "Noah" },
  1156. {
  1157. front: {
  1158. height: math.unit(2, "meter"),
  1159. weight: math.unit(60, "kg"),
  1160. name: "Front",
  1161. image: {
  1162. source: "./media/characters/noah/front.svg"
  1163. }
  1164. },
  1165. talons: {
  1166. height: math.unit(0.315, "meter"),
  1167. name: "Talons",
  1168. image: {
  1169. source: "./media/characters/noah/talons.svg"
  1170. }
  1171. }
  1172. },
  1173. [
  1174. {
  1175. name: "Large",
  1176. height: math.unit(50, "feet")
  1177. },
  1178. {
  1179. name: "Macro",
  1180. height: math.unit(750, "feet"),
  1181. default: true
  1182. },
  1183. {
  1184. name: "Megamacro",
  1185. height: math.unit(50, "miles")
  1186. },
  1187. {
  1188. name: "Gigamacro",
  1189. height: math.unit(100000, "miles")
  1190. },
  1191. {
  1192. name: "Full-Size",
  1193. height: math.unit(3000000000, "miles")
  1194. }
  1195. ]
  1196. ))
  1197. characterMakers.push(() => makeCharacter(
  1198. { name: "Natalya" },
  1199. {
  1200. front: {
  1201. height: math.unit(2, "meter"),
  1202. weight: math.unit(80, "kg"),
  1203. name: "Front",
  1204. image: {
  1205. source: "./media/characters/natalya/front.svg"
  1206. }
  1207. },
  1208. back: {
  1209. height: math.unit(2, "meter"),
  1210. weight: math.unit(80, "kg"),
  1211. name: "Back",
  1212. image: {
  1213. source: "./media/characters/natalya/back.svg"
  1214. }
  1215. }
  1216. },
  1217. [
  1218. {
  1219. name: "Normal",
  1220. height: math.unit(150, "feet"),
  1221. default: true
  1222. },
  1223. {
  1224. name: "Megamacro",
  1225. height: math.unit(5, "miles")
  1226. },
  1227. {
  1228. name: "Full-Size",
  1229. height: math.unit(600, "kiloparsecs")
  1230. }
  1231. ]
  1232. ))
  1233. characterMakers.push(() => makeCharacter(
  1234. { name: "Erestrebah" },
  1235. {
  1236. front: {
  1237. height: math.unit(2, "meter"),
  1238. weight: math.unit(50, "kg"),
  1239. name: "Front",
  1240. image: {
  1241. source: "./media/characters/erestrebah/front.svg",
  1242. extra: 208 / 193,
  1243. bottom: 0.055
  1244. }
  1245. },
  1246. back: {
  1247. height: math.unit(2, "meter"),
  1248. weight: math.unit(50, "kg"),
  1249. name: "Back",
  1250. image: {
  1251. source: "./media/characters/erestrebah/back.svg",
  1252. extra: 1.3
  1253. }
  1254. }
  1255. },
  1256. [
  1257. {
  1258. name: "Normal",
  1259. height: math.unit(10, "feet")
  1260. },
  1261. {
  1262. name: "Large",
  1263. height: math.unit(50, "feet"),
  1264. default: true
  1265. },
  1266. {
  1267. name: "Macro",
  1268. height: math.unit(300, "feet")
  1269. },
  1270. {
  1271. name: "Macro+",
  1272. height: math.unit(750, "feet")
  1273. },
  1274. {
  1275. name: "Megamacro",
  1276. height: math.unit(3, "miles")
  1277. }
  1278. ]
  1279. ))
  1280. characterMakers.push(() => makeCharacter(
  1281. { name: "Jennifer" },
  1282. {
  1283. front: {
  1284. height: math.unit(2, "meter"),
  1285. weight: math.unit(80, "kg"),
  1286. name: "Front",
  1287. image: {
  1288. source: "./media/characters/jennifer/front.svg",
  1289. bottom: 0.11,
  1290. extra: 1.16
  1291. }
  1292. },
  1293. frontAlt: {
  1294. height: math.unit(2, "meter"),
  1295. weight: math.unit(80, "kg"),
  1296. name: "Front (Alt)",
  1297. image: {
  1298. source: "./media/characters/jennifer/front-alt.svg"
  1299. }
  1300. }
  1301. },
  1302. [
  1303. {
  1304. name: "Canon Height",
  1305. height: math.unit(120, "feet"),
  1306. default: true
  1307. },
  1308. {
  1309. name: "Macro+",
  1310. height: math.unit(300, "feet")
  1311. },
  1312. {
  1313. name: "Megamacro",
  1314. height: math.unit(20000, "feet")
  1315. }
  1316. ]
  1317. ))
  1318. characterMakers.push(() => makeCharacter(
  1319. { name: "Kalista" },
  1320. {
  1321. front: {
  1322. height: math.unit(2, "meter"),
  1323. weight: math.unit(50, "kg"),
  1324. name: "Front",
  1325. image: {
  1326. source: "./media/characters/kalista/front.svg",
  1327. extra: 1947 / 1700
  1328. }
  1329. },
  1330. back: {
  1331. height: math.unit(2, "meter"),
  1332. weight: math.unit(50, "kg"),
  1333. name: "Back",
  1334. image: {
  1335. source: "./media/characters/kalista/back.svg",
  1336. extra: 1366 / 1156
  1337. }
  1338. }
  1339. },
  1340. [
  1341. {
  1342. name: "Uncomfortably Small",
  1343. height: math.unit(10, "feet")
  1344. },
  1345. {
  1346. name: "Small",
  1347. height: math.unit(30, "feet")
  1348. },
  1349. {
  1350. name: "Macro",
  1351. height: math.unit(100, "feet"),
  1352. default: true
  1353. },
  1354. {
  1355. name: "Macro+",
  1356. height: math.unit(2000, "feet")
  1357. },
  1358. {
  1359. name: "True Form",
  1360. height: math.unit(8924, "miles")
  1361. }
  1362. ]
  1363. ))
  1364. characterMakers.push(() => makeCharacter(
  1365. { name: "GiantGrowingVixen" },
  1366. {
  1367. front: {
  1368. height: math.unit(2, "meter"),
  1369. weight: math.unit(120, "kg"),
  1370. name: "Front",
  1371. image: {
  1372. source: "./media/characters/ggv/front.svg"
  1373. }
  1374. },
  1375. side: {
  1376. height: math.unit(2, "meter"),
  1377. weight: math.unit(120, "kg"),
  1378. name: "Side",
  1379. image: {
  1380. source: "./media/characters/ggv/side.svg"
  1381. }
  1382. }
  1383. },
  1384. [
  1385. {
  1386. name: "Extremely Puny",
  1387. height: math.unit(9 + 5 / 12, "feet")
  1388. },
  1389. {
  1390. name: "Horribly Small",
  1391. height: math.unit(47.7, "miles"),
  1392. default: true
  1393. },
  1394. {
  1395. name: "Reasonably Sized",
  1396. height: math.unit(25000, "parsecs")
  1397. },
  1398. {
  1399. name: "Slightly Uncompressed",
  1400. height: math.unit(7.77e31, "parsecs")
  1401. },
  1402. {
  1403. name: "Omniversal",
  1404. height: math.unit(1e300, "meters")
  1405. },
  1406. ]
  1407. ))
  1408. characterMakers.push(() => makeCharacter(
  1409. { name: "Napalm" },
  1410. {
  1411. front: {
  1412. height: math.unit(2, "meter"),
  1413. weight: math.unit(75, "lb"),
  1414. name: "Front",
  1415. image: {
  1416. source: "./media/characters/napalm/front.svg"
  1417. }
  1418. },
  1419. back: {
  1420. height: math.unit(2, "meter"),
  1421. weight: math.unit(75, "lb"),
  1422. name: "Back",
  1423. image: {
  1424. source: "./media/characters/napalm/back.svg"
  1425. }
  1426. }
  1427. },
  1428. [
  1429. {
  1430. name: "Standard",
  1431. height: math.unit(55, "feet"),
  1432. default: true
  1433. }
  1434. ]
  1435. ))
  1436. characterMakers.push(() => makeCharacter(
  1437. { name: "Asana" },
  1438. {
  1439. front: {
  1440. height: math.unit(7 + 5 / 6, "feet"),
  1441. weight: math.unit(325, "lb"),
  1442. name: "Front",
  1443. image: {
  1444. source: "./media/characters/asana/front.svg",
  1445. extra: 1128 / 1068
  1446. }
  1447. },
  1448. back: {
  1449. height: math.unit(7 + 5 / 6, "feet"),
  1450. weight: math.unit(325, "lb"),
  1451. name: "Back",
  1452. image: {
  1453. source: "./media/characters/asana/back.svg",
  1454. extra: 1128 / 1068
  1455. }
  1456. },
  1457. },
  1458. [
  1459. {
  1460. name: "Standard",
  1461. height: math.unit(7 + 5 / 6, "feet"),
  1462. default: true
  1463. },
  1464. {
  1465. name: "Large",
  1466. height: math.unit(10, "meters")
  1467. },
  1468. {
  1469. name: "Macro",
  1470. height: math.unit(2500, "meters")
  1471. },
  1472. {
  1473. name: "Megamacro",
  1474. height: math.unit(5e6, "meters")
  1475. },
  1476. {
  1477. name: "Examacro",
  1478. height: math.unit(5e12, "lightyears")
  1479. },
  1480. {
  1481. name: "Max Size",
  1482. height: math.unit(1e31, "lightyears")
  1483. }
  1484. ]
  1485. ))
  1486. characterMakers.push(() => makeCharacter(
  1487. { name: "Ebony" },
  1488. {
  1489. front: {
  1490. height: math.unit(2, "meter"),
  1491. weight: math.unit(60, "kg"),
  1492. name: "Front",
  1493. image: {
  1494. source: "./media/characters/ebony/front.svg",
  1495. bottom: 0.03,
  1496. extra: 1045 / 810 + 0.03
  1497. }
  1498. },
  1499. side: {
  1500. height: math.unit(2, "meter"),
  1501. weight: math.unit(60, "kg"),
  1502. name: "Side",
  1503. image: {
  1504. source: "./media/characters/ebony/side.svg",
  1505. bottom: 0.03,
  1506. extra: 1045 / 810 + 0.03
  1507. }
  1508. },
  1509. back: {
  1510. height: math.unit(2, "meter"),
  1511. weight: math.unit(60, "kg"),
  1512. name: "Back",
  1513. image: {
  1514. source: "./media/characters/ebony/back.svg",
  1515. bottom: 0.01,
  1516. extra: 1045 / 810 + 0.01
  1517. }
  1518. },
  1519. },
  1520. [
  1521. // TODO check why I did this lol
  1522. {
  1523. name: "Standard",
  1524. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1525. default: true
  1526. },
  1527. {
  1528. name: "Macro",
  1529. height: math.unit(200, "feet")
  1530. },
  1531. {
  1532. name: "Gigamacro",
  1533. height: math.unit(13000, "km")
  1534. }
  1535. ]
  1536. ))
  1537. characterMakers.push(() => makeCharacter(
  1538. { name: "Mountain" },
  1539. {
  1540. front: {
  1541. height: math.unit(6, "feet"),
  1542. weight: math.unit(175, "lb"),
  1543. name: "Front",
  1544. image: {
  1545. source: "./media/characters/mountain/front.svg"
  1546. }
  1547. },
  1548. back: {
  1549. height: math.unit(6, "feet"),
  1550. weight: math.unit(175, "lb"),
  1551. name: "Back",
  1552. image: {
  1553. source: "./media/characters/mountain/back.svg"
  1554. }
  1555. },
  1556. },
  1557. [
  1558. {
  1559. name: "Large",
  1560. height: math.unit(20, "meters")
  1561. },
  1562. {
  1563. name: "Macro",
  1564. height: math.unit(300, "meters")
  1565. },
  1566. {
  1567. name: "Gigamacro",
  1568. height: math.unit(10000, "km"),
  1569. default: true
  1570. },
  1571. {
  1572. name: "Examacro",
  1573. height: math.unit(10e9, "lightyears")
  1574. }
  1575. ]
  1576. ))
  1577. characterMakers.push(() => makeCharacter(
  1578. { name: "Rick" },
  1579. {
  1580. front: {
  1581. height: math.unit(8, "feet"),
  1582. weight: math.unit(500, "lb"),
  1583. name: "Front",
  1584. image: {
  1585. source: "./media/characters/rick/front.svg"
  1586. }
  1587. }
  1588. },
  1589. [
  1590. {
  1591. name: "Normal",
  1592. height: math.unit(8, "feet"),
  1593. default: true
  1594. },
  1595. {
  1596. name: "Macro",
  1597. height: math.unit(5, "km")
  1598. }
  1599. ]
  1600. ))
  1601. characterMakers.push(() => makeCharacter(
  1602. { name: "Ona" },
  1603. {
  1604. front: {
  1605. height: math.unit(8, "feet"),
  1606. weight: math.unit(120, "lb"),
  1607. name: "Front",
  1608. image: {
  1609. source: "./media/characters/ona/front.svg"
  1610. }
  1611. },
  1612. frontAlt: {
  1613. height: math.unit(8, "feet"),
  1614. weight: math.unit(120, "lb"),
  1615. name: "Front (Alt)",
  1616. image: {
  1617. source: "./media/characters/ona/front-alt.svg"
  1618. }
  1619. },
  1620. back: {
  1621. height: math.unit(8, "feet"),
  1622. weight: math.unit(120, "lb"),
  1623. name: "Back",
  1624. image: {
  1625. source: "./media/characters/ona/back.svg"
  1626. }
  1627. },
  1628. foot: {
  1629. height: math.unit(1.1, "feet"),
  1630. name: "Foot",
  1631. image: {
  1632. source: "./media/characters/ona/foot.svg"
  1633. }
  1634. }
  1635. },
  1636. [
  1637. {
  1638. name: "Megamacro",
  1639. height: math.unit(70, "km"),
  1640. default: true
  1641. },
  1642. {
  1643. name: "Gigamacro",
  1644. height: math.unit(681818, "miles")
  1645. },
  1646. {
  1647. name: "Examacro",
  1648. height: math.unit(3800000, "lightyears")
  1649. },
  1650. ]
  1651. ))
  1652. characterMakers.push(() => makeCharacter(
  1653. { name: "Mech" },
  1654. {
  1655. front: {
  1656. height: math.unit(12, "feet"),
  1657. weight: math.unit(3000, "lb"),
  1658. name: "Front",
  1659. image: {
  1660. source: "./media/characters/mech/front.svg",
  1661. bottom: 0.025,
  1662. }
  1663. },
  1664. back: {
  1665. height: math.unit(12, "feet"),
  1666. weight: math.unit(3000, "lb"),
  1667. name: "Back",
  1668. image: {
  1669. source: "./media/characters/mech/back.svg",
  1670. bottom: 0.03,
  1671. }
  1672. }
  1673. },
  1674. [
  1675. {
  1676. name: "Normal",
  1677. height: math.unit(12, "feet")
  1678. },
  1679. {
  1680. name: "Macro",
  1681. height: math.unit(300, "feet"),
  1682. default: true
  1683. },
  1684. {
  1685. name: "Macro+",
  1686. height: math.unit(1500, "feet")
  1687. },
  1688. ]
  1689. ))
  1690. characterMakers.push(() => makeCharacter(
  1691. { name: "Gregory" },
  1692. {
  1693. front: {
  1694. height: math.unit(1.3, "meter"),
  1695. weight: math.unit(30, "kg"),
  1696. name: "Front",
  1697. image: {
  1698. source: "./media/characters/gregory/front.svg",
  1699. }
  1700. }
  1701. },
  1702. [
  1703. {
  1704. name: "Normal",
  1705. height: math.unit(1.3, "meter"),
  1706. default: true
  1707. },
  1708. {
  1709. name: "Macro",
  1710. height: math.unit(20, "meter")
  1711. }
  1712. ]
  1713. ))
  1714. characterMakers.push(() => makeCharacter(
  1715. { name: "Elory" },
  1716. {
  1717. front: {
  1718. height: math.unit(2.8, "meter"),
  1719. weight: math.unit(200, "kg"),
  1720. name: "Front",
  1721. image: {
  1722. source: "./media/characters/elory/front.svg",
  1723. }
  1724. }
  1725. },
  1726. [
  1727. {
  1728. name: "Normal",
  1729. height: math.unit(2.8, "meter"),
  1730. default: true
  1731. },
  1732. {
  1733. name: "Macro",
  1734. height: math.unit(38, "meter")
  1735. }
  1736. ]
  1737. ))
  1738. characterMakers.push(() => makeCharacter(
  1739. { name: "Angelpatamon" },
  1740. {
  1741. front: {
  1742. height: math.unit(470, "feet"),
  1743. weight: math.unit(924, "tons"),
  1744. name: "Front",
  1745. image: {
  1746. source: "./media/characters/angelpatamon/front.svg",
  1747. }
  1748. }
  1749. },
  1750. [
  1751. {
  1752. name: "Normal",
  1753. height: math.unit(470, "feet"),
  1754. default: true
  1755. },
  1756. {
  1757. name: "Deity Size I",
  1758. height: math.unit(28651.2, "km")
  1759. },
  1760. {
  1761. name: "Deity Size II",
  1762. height: math.unit(171907.2, "km")
  1763. }
  1764. ]
  1765. ))
  1766. characterMakers.push(() => makeCharacter(
  1767. { name: "Cryae" },
  1768. {
  1769. side: {
  1770. height: math.unit(7.2, "meter"),
  1771. weight: math.unit(8.2, "tons"),
  1772. name: "Side",
  1773. image: {
  1774. source: "./media/characters/cryae/side.svg",
  1775. extra: 3500 / 1500
  1776. }
  1777. }
  1778. },
  1779. [
  1780. {
  1781. name: "Normal",
  1782. height: math.unit(7.2, "meter"),
  1783. default: true
  1784. }
  1785. ]
  1786. ))
  1787. characterMakers.push(() => makeCharacter(
  1788. { name: "Xera" },
  1789. {
  1790. front: {
  1791. height: math.unit(6, "feet"),
  1792. weight: math.unit(175, "lb"),
  1793. name: "Front",
  1794. image: {
  1795. source: "./media/characters/xera/front.svg",
  1796. extra: 2300 / 2061
  1797. }
  1798. },
  1799. side: {
  1800. height: math.unit(6, "feet"),
  1801. weight: math.unit(175, "lb"),
  1802. name: "Side",
  1803. image: {
  1804. source: "./media/characters/xera/side.svg",
  1805. extra: 2300 / 2061
  1806. }
  1807. },
  1808. back: {
  1809. height: math.unit(6, "feet"),
  1810. weight: math.unit(175, "lb"),
  1811. name: "Back",
  1812. image: {
  1813. source: "./media/characters/xera/back.svg"
  1814. }
  1815. },
  1816. },
  1817. [
  1818. {
  1819. name: "Small",
  1820. height: math.unit(10, "feet")
  1821. },
  1822. {
  1823. name: "Macro",
  1824. height: math.unit(500, "meters"),
  1825. default: true
  1826. },
  1827. {
  1828. name: "Macro+",
  1829. height: math.unit(10, "km")
  1830. },
  1831. {
  1832. name: "Gigamacro",
  1833. height: math.unit(25000, "km")
  1834. },
  1835. {
  1836. name: "Teramacro",
  1837. height: math.unit(3e6, "km")
  1838. }
  1839. ]
  1840. ))
  1841. characterMakers.push(() => makeCharacter(
  1842. { name: "Nebula" },
  1843. {
  1844. front: {
  1845. height: math.unit(6, "feet"),
  1846. weight: math.unit(175, "lb"),
  1847. name: "Front",
  1848. image: {
  1849. source: "./media/characters/nebula/front.svg",
  1850. extra: 2600 / 2450
  1851. }
  1852. }
  1853. },
  1854. [
  1855. {
  1856. name: "Small",
  1857. height: math.unit(4.5, "meters")
  1858. },
  1859. {
  1860. name: "Macro",
  1861. height: math.unit(1500, "meters"),
  1862. default: true
  1863. },
  1864. {
  1865. name: "Megamacro",
  1866. height: math.unit(150, "km")
  1867. },
  1868. {
  1869. name: "Gigamacro",
  1870. height: math.unit(27000, "km")
  1871. }
  1872. ]
  1873. ))
  1874. characterMakers.push(() => makeCharacter(
  1875. { name: "Abysgar" },
  1876. {
  1877. front: {
  1878. height: math.unit(6, "feet"),
  1879. weight: math.unit(225, "lb"),
  1880. name: "Front",
  1881. image: {
  1882. source: "./media/characters/abysgar/front.svg"
  1883. }
  1884. }
  1885. },
  1886. [
  1887. {
  1888. name: "Small",
  1889. height: math.unit(4.5, "meters")
  1890. },
  1891. {
  1892. name: "Macro",
  1893. height: math.unit(1250, "meters"),
  1894. default: true
  1895. },
  1896. {
  1897. name: "Megamacro",
  1898. height: math.unit(125, "km")
  1899. },
  1900. {
  1901. name: "Gigamacro",
  1902. height: math.unit(26000, "km")
  1903. }
  1904. ]
  1905. ))
  1906. characterMakers.push(() => makeCharacter(
  1907. { name: "Yakuz" },
  1908. {
  1909. front: {
  1910. height: math.unit(6, "feet"),
  1911. weight: math.unit(180, "lb"),
  1912. name: "Front",
  1913. image: {
  1914. source: "./media/characters/yakuz/front.svg"
  1915. }
  1916. }
  1917. },
  1918. [
  1919. {
  1920. name: "Small",
  1921. height: math.unit(5, "meters")
  1922. },
  1923. {
  1924. name: "Macro",
  1925. height: math.unit(1500, "meters"),
  1926. default: true
  1927. },
  1928. {
  1929. name: "Megamacro",
  1930. height: math.unit(200, "km")
  1931. },
  1932. {
  1933. name: "Gigamacro",
  1934. height: math.unit(100000, "km")
  1935. }
  1936. ]
  1937. ))
  1938. characterMakers.push(() => makeCharacter(
  1939. { name: "Mirova" },
  1940. {
  1941. front: {
  1942. height: math.unit(6, "feet"),
  1943. weight: math.unit(175, "lb"),
  1944. name: "Front",
  1945. image: {
  1946. source: "./media/characters/mirova/front.svg"
  1947. }
  1948. }
  1949. },
  1950. [
  1951. {
  1952. name: "Small",
  1953. height: math.unit(5, "meters")
  1954. },
  1955. {
  1956. name: "Macro",
  1957. height: math.unit(900, "meters"),
  1958. default: true
  1959. },
  1960. {
  1961. name: "Megamacro",
  1962. height: math.unit(135, "km")
  1963. },
  1964. {
  1965. name: "Gigamacro",
  1966. height: math.unit(20000, "km")
  1967. }
  1968. ]
  1969. ))
  1970. characterMakers.push(() => makeCharacter(
  1971. { name: "Asana (Mech)" },
  1972. {
  1973. side: {
  1974. height: math.unit(28.35, "feet"),
  1975. weight: math.unit(99.75, "tons"),
  1976. name: "Side",
  1977. image: {
  1978. source: "./media/characters/asana-mech/side.svg"
  1979. }
  1980. }
  1981. },
  1982. [
  1983. {
  1984. name: "Normal",
  1985. height: math.unit(28.35, "feet"),
  1986. default: true
  1987. },
  1988. {
  1989. name: "Macro",
  1990. height: math.unit(2500, "feet")
  1991. },
  1992. {
  1993. name: "Megamacro",
  1994. height: math.unit(25, "miles")
  1995. },
  1996. {
  1997. name: "Examacro",
  1998. height: math.unit(6e8, "lightyears")
  1999. },
  2000. ]
  2001. ))
  2002. characterMakers.push(() => makeCharacter(
  2003. { name: "Ashtrek" },
  2004. {
  2005. front: {
  2006. height: math.unit(2, "meters"),
  2007. weight: math.unit(70, "kg"),
  2008. name: "Front",
  2009. image: {
  2010. source: "./media/characters/ashtrek/front.svg",
  2011. extra: 560 / 524,
  2012. bottom: 0.01
  2013. }
  2014. },
  2015. frontArmor: {
  2016. height: math.unit(2, "meters"),
  2017. weight: math.unit(76, "kg"),
  2018. name: "Front (Armor)",
  2019. image: {
  2020. source: "./media/characters/ashtrek/front-armor.svg",
  2021. extra: 561 / 527,
  2022. bottom: 0.01
  2023. }
  2024. },
  2025. side: {
  2026. height: math.unit(2, "meters"),
  2027. weight: math.unit(70, "kg"),
  2028. name: "Side",
  2029. image: {
  2030. source: "./media/characters/ashtrek/side.svg",
  2031. extra: 1717 / 1609,
  2032. bottom: 0.005
  2033. }
  2034. },
  2035. back: {
  2036. height: math.unit(2, "meters"),
  2037. weight: math.unit(70, "kg"),
  2038. name: "Back",
  2039. image: {
  2040. source: "./media/characters/ashtrek/back.svg",
  2041. extra: 1570 / 1501
  2042. }
  2043. },
  2044. },
  2045. [
  2046. {
  2047. name: "DEFCON 5",
  2048. height: math.unit(5, "meters")
  2049. },
  2050. {
  2051. name: "DEFCON 4",
  2052. height: math.unit(500, "meters"),
  2053. default: true
  2054. },
  2055. {
  2056. name: "DEFCON 3",
  2057. height: math.unit(5, "km")
  2058. },
  2059. {
  2060. name: "DEFCON 2",
  2061. height: math.unit(500, "km")
  2062. },
  2063. {
  2064. name: "DEFCON 1",
  2065. height: math.unit(500000, "km")
  2066. },
  2067. {
  2068. name: "DEFCON 0",
  2069. height: math.unit(3, "gigaparsecs")
  2070. },
  2071. ]
  2072. ))
  2073. characterMakers.push(() => makeCharacter(
  2074. { name: "Gale" },
  2075. {
  2076. front: {
  2077. height: math.unit(2, "meters"),
  2078. weight: math.unit(76, "kg"),
  2079. name: "Front",
  2080. image: {
  2081. source: "./media/characters/gale/front.svg"
  2082. }
  2083. },
  2084. frontAlt1: {
  2085. height: math.unit(2, "meters"),
  2086. weight: math.unit(76, "kg"),
  2087. name: "Front (Alt 1)",
  2088. image: {
  2089. source: "./media/characters/gale/front-alt-1.svg"
  2090. }
  2091. },
  2092. frontAlt2: {
  2093. height: math.unit(2, "meters"),
  2094. weight: math.unit(76, "kg"),
  2095. name: "Front (Alt 2)",
  2096. image: {
  2097. source: "./media/characters/gale/front-alt-2.svg"
  2098. }
  2099. },
  2100. },
  2101. [
  2102. {
  2103. name: "Normal",
  2104. height: math.unit(7, "feet")
  2105. },
  2106. {
  2107. name: "Macro",
  2108. height: math.unit(150, "feet"),
  2109. default: true
  2110. },
  2111. {
  2112. name: "Macro+",
  2113. height: math.unit(300, "feet")
  2114. },
  2115. ]
  2116. ))
  2117. characterMakers.push(() => makeCharacter(
  2118. { name: "Draylen" },
  2119. {
  2120. front: {
  2121. height: math.unit(2, "meters"),
  2122. weight: math.unit(76, "kg"),
  2123. name: "Front",
  2124. image: {
  2125. source: "./media/characters/draylen/front.svg"
  2126. }
  2127. }
  2128. },
  2129. [
  2130. {
  2131. name: "Macro",
  2132. height: math.unit(150, "feet"),
  2133. default: true
  2134. }
  2135. ]
  2136. ))
  2137. characterMakers.push(() => makeCharacter(
  2138. { name: "Chez" },
  2139. {
  2140. front: {
  2141. height: math.unit(7 + 9 / 12, "feet"),
  2142. weight: math.unit(379, "lbs"),
  2143. name: "Front",
  2144. image: {
  2145. source: "./media/characters/chez/front.svg"
  2146. }
  2147. },
  2148. side: {
  2149. height: math.unit(7 + 9 / 12, "feet"),
  2150. weight: math.unit(379, "lbs"),
  2151. name: "Side",
  2152. image: {
  2153. source: "./media/characters/chez/side.svg"
  2154. }
  2155. }
  2156. },
  2157. [
  2158. {
  2159. name: "Normal",
  2160. height: math.unit(7 + 9 / 12, "feet"),
  2161. default: true
  2162. },
  2163. {
  2164. name: "God King",
  2165. height: math.unit(9750000, "meters")
  2166. }
  2167. ]
  2168. ))
  2169. characterMakers.push(() => makeCharacter(
  2170. { name: "Kaylum" },
  2171. {
  2172. front: {
  2173. height: math.unit(6, "feet"),
  2174. weight: math.unit(275, "lbs"),
  2175. name: "Front",
  2176. image: {
  2177. source: "./media/characters/kaylum/front.svg",
  2178. bottom: 0.01,
  2179. extra: 1166 / 1031
  2180. }
  2181. },
  2182. frontWingless: {
  2183. height: math.unit(6, "feet"),
  2184. weight: math.unit(275, "lbs"),
  2185. name: "Front (Wingless)",
  2186. image: {
  2187. source: "./media/characters/kaylum/front-wingless.svg",
  2188. bottom: 0.01,
  2189. extra: 1117 / 1031
  2190. }
  2191. }
  2192. },
  2193. [
  2194. {
  2195. name: "Normal",
  2196. height: math.unit(3.05, "meters")
  2197. },
  2198. {
  2199. name: "Master",
  2200. height: math.unit(5.5, "meters")
  2201. },
  2202. {
  2203. name: "Rampage",
  2204. height: math.unit(19, "meters")
  2205. },
  2206. {
  2207. name: "Macro Lite",
  2208. height: math.unit(37, "meters")
  2209. },
  2210. {
  2211. name: "Hyper Predator",
  2212. height: math.unit(61, "meters")
  2213. },
  2214. {
  2215. name: "Macro",
  2216. height: math.unit(138, "meters"),
  2217. default: true
  2218. }
  2219. ]
  2220. ))
  2221. characterMakers.push(() => makeCharacter(
  2222. { name: "Geta" },
  2223. {
  2224. front: {
  2225. height: math.unit(6, "feet"),
  2226. weight: math.unit(150, "lbs"),
  2227. name: "Front",
  2228. image: {
  2229. source: "./media/characters/geta/front.svg"
  2230. }
  2231. }
  2232. },
  2233. [
  2234. {
  2235. name: "Micro",
  2236. height: math.unit(3, "inches"),
  2237. default: true
  2238. },
  2239. {
  2240. name: "Normal",
  2241. height: math.unit(5 + 5 / 12, "feet")
  2242. }
  2243. ]
  2244. ))
  2245. characterMakers.push(() => makeCharacter(
  2246. { name: "Tyrnn" },
  2247. {
  2248. front: {
  2249. height: math.unit(6, "feet"),
  2250. weight: math.unit(300, "lbs"),
  2251. name: "Front",
  2252. image: {
  2253. source: "./media/characters/tyrnn/front.svg"
  2254. }
  2255. }
  2256. },
  2257. [
  2258. {
  2259. name: "Main Height",
  2260. height: math.unit(355, "feet"),
  2261. default: true
  2262. },
  2263. {
  2264. name: "Fave. Height",
  2265. height: math.unit(2400, "feet")
  2266. }
  2267. ]
  2268. ))
  2269. characterMakers.push(() => makeCharacter(
  2270. { name: "Apple" },
  2271. {
  2272. front: {
  2273. height: math.unit(6, "feet"),
  2274. weight: math.unit(300, "lbs"),
  2275. name: "Front",
  2276. image: {
  2277. source: "./media/characters/appledectomy/front.svg"
  2278. }
  2279. }
  2280. },
  2281. [
  2282. {
  2283. name: "Macro",
  2284. height: math.unit(2500, "feet")
  2285. },
  2286. {
  2287. name: "Megamacro",
  2288. height: math.unit(50, "miles"),
  2289. default: true
  2290. },
  2291. {
  2292. name: "Gigamacro",
  2293. height: math.unit(5000, "miles")
  2294. },
  2295. {
  2296. name: "Teramacro",
  2297. height: math.unit(250000, "miles")
  2298. },
  2299. ]
  2300. ))
  2301. characterMakers.push(() => makeCharacter(
  2302. { name: "Vulpes" },
  2303. {
  2304. front: {
  2305. height: math.unit(6, "feet"),
  2306. weight: math.unit(200, "lbs"),
  2307. name: "Front",
  2308. image: {
  2309. source: "./media/characters/vulpes/front.svg",
  2310. extra: 573 / 543,
  2311. bottom: 0.033
  2312. }
  2313. },
  2314. side: {
  2315. height: math.unit(6, "feet"),
  2316. weight: math.unit(200, "lbs"),
  2317. name: "Side",
  2318. image: {
  2319. source: "./media/characters/vulpes/side.svg",
  2320. extra: 573 / 543,
  2321. bottom: 0.01
  2322. }
  2323. },
  2324. back: {
  2325. height: math.unit(6, "feet"),
  2326. weight: math.unit(200, "lbs"),
  2327. name: "Back",
  2328. image: {
  2329. source: "./media/characters/vulpes/back.svg",
  2330. extra: 573 / 543,
  2331. }
  2332. },
  2333. feet: {
  2334. height: math.unit(1.276, "feet"),
  2335. name: "Feet",
  2336. image: {
  2337. source: "./media/characters/vulpes/feet.svg"
  2338. }
  2339. },
  2340. maw: {
  2341. height: math.unit(1.18, "feet"),
  2342. name: "Maw",
  2343. image: {
  2344. source: "./media/characters/vulpes/maw.svg"
  2345. }
  2346. },
  2347. },
  2348. [
  2349. {
  2350. name: "Micro",
  2351. height: math.unit(2, "inches")
  2352. },
  2353. {
  2354. name: "Normal",
  2355. height: math.unit(6.3, "feet")
  2356. },
  2357. {
  2358. name: "Macro",
  2359. height: math.unit(850, "feet")
  2360. },
  2361. {
  2362. name: "Megamacro",
  2363. height: math.unit(7500, "feet"),
  2364. default: true
  2365. },
  2366. {
  2367. name: "Gigamacro",
  2368. height: math.unit(570000, "miles")
  2369. }
  2370. ]
  2371. ))
  2372. characterMakers.push(() => makeCharacter(
  2373. { name: "Rain Fallen" },
  2374. {
  2375. front: {
  2376. height: math.unit(6, "feet"),
  2377. weight: math.unit(210, "lbs"),
  2378. name: "Front",
  2379. image: {
  2380. source: "./media/characters/rain-fallen/front.svg"
  2381. }
  2382. },
  2383. side: {
  2384. height: math.unit(6, "feet"),
  2385. weight: math.unit(210, "lbs"),
  2386. name: "Side",
  2387. image: {
  2388. source: "./media/characters/rain-fallen/side.svg"
  2389. }
  2390. },
  2391. back: {
  2392. height: math.unit(6, "feet"),
  2393. weight: math.unit(210, "lbs"),
  2394. name: "Back",
  2395. image: {
  2396. source: "./media/characters/rain-fallen/back.svg"
  2397. }
  2398. },
  2399. feral: {
  2400. height: math.unit(9, "feet"),
  2401. weight: math.unit(700, "lbs"),
  2402. name: "Feral",
  2403. image: {
  2404. source: "./media/characters/rain-fallen/feral.svg"
  2405. }
  2406. },
  2407. },
  2408. [
  2409. {
  2410. name: "Normal",
  2411. height: math.unit(5, "meter")
  2412. },
  2413. {
  2414. name: "Macro",
  2415. height: math.unit(150, "meter"),
  2416. default: true
  2417. },
  2418. {
  2419. name: "Megamacro",
  2420. height: math.unit(278e6, "meter")
  2421. },
  2422. {
  2423. name: "Gigamacro",
  2424. height: math.unit(2e9, "meter")
  2425. },
  2426. {
  2427. name: "Teramacro",
  2428. height: math.unit(8e12, "meter")
  2429. },
  2430. {
  2431. name: "Devourer",
  2432. height: math.unit(14, "zettameters")
  2433. },
  2434. {
  2435. name: "Scarlet King",
  2436. height: math.unit(18, "yottameters")
  2437. },
  2438. {
  2439. name: "Void",
  2440. height: math.unit(6.66e66, "yottameters")
  2441. }
  2442. ]
  2443. ))
  2444. characterMakers.push(() => makeCharacter(
  2445. { name: "Zaakira" },
  2446. {
  2447. standing: {
  2448. height: math.unit(6, "feet"),
  2449. weight: math.unit(180, "lbs"),
  2450. name: "Standing",
  2451. image: {
  2452. source: "./media/characters/zaakira/standing.svg"
  2453. }
  2454. },
  2455. laying: {
  2456. height: math.unit(3, "feet"),
  2457. weight: math.unit(180, "lbs"),
  2458. name: "Laying",
  2459. image: {
  2460. source: "./media/characters/zaakira/laying.svg"
  2461. }
  2462. },
  2463. },
  2464. [
  2465. {
  2466. name: "Normal",
  2467. height: math.unit(12, "feet")
  2468. },
  2469. {
  2470. name: "Macro",
  2471. height: math.unit(279, "feet"),
  2472. default: true
  2473. }
  2474. ]
  2475. ))
  2476. characterMakers.push(() => makeCharacter(
  2477. { name: "Sigvald" },
  2478. {
  2479. front: {
  2480. height: math.unit(6, "feet"),
  2481. weight: math.unit(250, "lbs"),
  2482. name: "Front",
  2483. image: {
  2484. source: "./media/characters/sigvald/front.svg",
  2485. extra: 1000 / 850
  2486. }
  2487. },
  2488. back: {
  2489. height: math.unit(6, "feet"),
  2490. weight: math.unit(250, "lbs"),
  2491. name: "Back",
  2492. image: {
  2493. source: "./media/characters/sigvald/back.svg"
  2494. }
  2495. },
  2496. },
  2497. [
  2498. {
  2499. name: "Normal",
  2500. height: math.unit(8, "feet")
  2501. },
  2502. {
  2503. name: "Large",
  2504. height: math.unit(12, "feet")
  2505. },
  2506. {
  2507. name: "Larger",
  2508. height: math.unit(20, "feet")
  2509. },
  2510. {
  2511. name: "Macro",
  2512. height: math.unit(150, "feet")
  2513. },
  2514. {
  2515. name: "Macro+",
  2516. height: math.unit(200, "feet"),
  2517. default: true
  2518. },
  2519. ]
  2520. ))
  2521. characterMakers.push(() => makeCharacter(
  2522. { name: "Scott" },
  2523. {
  2524. side: {
  2525. height: math.unit(12, "feet"),
  2526. weight: math.unit(3000, "lbs"),
  2527. name: "Side",
  2528. image: {
  2529. source: "./media/characters/scott/side.svg",
  2530. extra: 1,
  2531. bottom: 0.069
  2532. }
  2533. },
  2534. upright: {
  2535. height: math.unit(12, "feet"),
  2536. weight: math.unit(3000, "lbs"),
  2537. name: "Upright",
  2538. image: {
  2539. source: "./media/characters/scott/upright.svg",
  2540. extra: 1,
  2541. bottom: 0.05
  2542. }
  2543. },
  2544. },
  2545. [
  2546. {
  2547. name: "Normal",
  2548. height: math.unit(12, "feet"),
  2549. default: true
  2550. },
  2551. ]
  2552. ))
  2553. characterMakers.push(() => makeCharacter(
  2554. { name: "Tobias" },
  2555. {
  2556. side: {
  2557. height: math.unit(8, "meters"),
  2558. weight: math.unit(84755, "lbs"),
  2559. name: "Side",
  2560. image: {
  2561. source: "./media/characters/tobias/side.svg",
  2562. extra: 1474 / 1096,
  2563. bottom: 38.9/1513.1235
  2564. }
  2565. },
  2566. },
  2567. [
  2568. {
  2569. name: "Normal",
  2570. height: math.unit(8, "meters"),
  2571. default: true
  2572. },
  2573. ]
  2574. ))
  2575. characterMakers.push(() => makeCharacter(
  2576. { name: "Kieran" },
  2577. {
  2578. front: {
  2579. height: math.unit(5.5, "feet"),
  2580. weight: math.unit(400, "lbs"),
  2581. name: "Front",
  2582. image: {
  2583. source: "./media/characters/kieran/front.svg",
  2584. extra: 1.05
  2585. }
  2586. },
  2587. side: {
  2588. height: math.unit(5.5, "feet"),
  2589. weight: math.unit(400, "lbs"),
  2590. name: "Side",
  2591. image: {
  2592. source: "./media/characters/kieran/side.svg",
  2593. extra: 950 / 850
  2594. }
  2595. },
  2596. },
  2597. [
  2598. {
  2599. name: "Normal",
  2600. height: math.unit(5.5, "feet"),
  2601. default: true
  2602. },
  2603. ]
  2604. ))
  2605. characterMakers.push(() => makeCharacter(
  2606. { name: "Sanya" },
  2607. {
  2608. side: {
  2609. height: math.unit(2, "meters"),
  2610. weight: math.unit(70, "kg"),
  2611. name: "Side",
  2612. image: {
  2613. source: "./media/characters/sanya/side.svg",
  2614. bottom: 0.02,
  2615. extra: 1.02
  2616. }
  2617. },
  2618. },
  2619. [
  2620. {
  2621. name: "Small",
  2622. height: math.unit(2, "meters")
  2623. },
  2624. {
  2625. name: "Normal",
  2626. height: math.unit(3, "meters")
  2627. },
  2628. {
  2629. name: "Macro",
  2630. height: math.unit(16, "meters"),
  2631. default: true
  2632. },
  2633. ]
  2634. ))
  2635. characterMakers.push(() => makeCharacter(
  2636. { name: "Miranda" },
  2637. {
  2638. side: {
  2639. height: math.unit(2, "meters"),
  2640. weight: math.unit(120, "kg"),
  2641. name: "Front",
  2642. image: {
  2643. source: "./media/characters/miranda/front.svg",
  2644. extra: 10.6 / 10
  2645. }
  2646. },
  2647. },
  2648. [
  2649. {
  2650. name: "Normal",
  2651. height: math.unit(10, "feet"),
  2652. default: true
  2653. }
  2654. ]
  2655. ))
  2656. characterMakers.push(() => makeCharacter(
  2657. { name: "James" },
  2658. {
  2659. side: {
  2660. height: math.unit(2, "meters"),
  2661. weight: math.unit(100, "kg"),
  2662. name: "Front",
  2663. image: {
  2664. source: "./media/characters/james/front.svg",
  2665. extra: 10 / 8.5
  2666. }
  2667. },
  2668. },
  2669. [
  2670. {
  2671. name: "Normal",
  2672. height: math.unit(8.5, "feet"),
  2673. default: true
  2674. }
  2675. ]
  2676. ))
  2677. characterMakers.push(() => makeCharacter(
  2678. { name: "Heather" },
  2679. {
  2680. side: {
  2681. height: math.unit(9.5, "feet"),
  2682. weight: math.unit(2500, "lbs"),
  2683. name: "Side",
  2684. image: {
  2685. source: "./media/characters/heather/side.svg"
  2686. }
  2687. },
  2688. },
  2689. [
  2690. {
  2691. name: "Normal",
  2692. height: math.unit(9.5, "feet"),
  2693. default: true
  2694. }
  2695. ]
  2696. ))
  2697. characterMakers.push(() => makeCharacter(
  2698. { name: "Lukas" },
  2699. {
  2700. side: {
  2701. height: math.unit(6.5, "feet"),
  2702. weight: math.unit(400, "lbs"),
  2703. name: "Side",
  2704. image: {
  2705. source: "./media/characters/lukas/side.svg",
  2706. extra: 7.25 / 6.5
  2707. }
  2708. },
  2709. },
  2710. [
  2711. {
  2712. name: "Normal",
  2713. height: math.unit(6.5, "feet"),
  2714. default: true
  2715. }
  2716. ]
  2717. ))
  2718. characterMakers.push(() => makeCharacter(
  2719. { name: "Louise" },
  2720. {
  2721. side: {
  2722. height: math.unit(5, "feet"),
  2723. weight: math.unit(3000, "lbs"),
  2724. name: "Side",
  2725. image: {
  2726. source: "./media/characters/louise/side.svg"
  2727. }
  2728. },
  2729. },
  2730. [
  2731. {
  2732. name: "Normal",
  2733. height: math.unit(5, "feet"),
  2734. default: true
  2735. }
  2736. ]
  2737. ))
  2738. characterMakers.push(() => makeCharacter(
  2739. { name: "Ramona" },
  2740. {
  2741. side: {
  2742. height: math.unit(6, "feet"),
  2743. weight: math.unit(150, "lbs"),
  2744. name: "Side",
  2745. image: {
  2746. source: "./media/characters/ramona/side.svg"
  2747. }
  2748. },
  2749. },
  2750. [
  2751. {
  2752. name: "Normal",
  2753. height: math.unit(5.3, "meters"),
  2754. default: true
  2755. },
  2756. {
  2757. name: "Macro",
  2758. height: math.unit(20, "stories")
  2759. },
  2760. {
  2761. name: "Macro+",
  2762. height: math.unit(50, "stories")
  2763. },
  2764. ]
  2765. ))
  2766. characterMakers.push(() => makeCharacter(
  2767. { name: "Deerpuff" },
  2768. {
  2769. standing: {
  2770. height: math.unit(5.75, "feet"),
  2771. weight: math.unit(160, "lbs"),
  2772. name: "Standing",
  2773. image: {
  2774. source: "./media/characters/deerpuff/standing.svg",
  2775. extra: 682 / 624
  2776. }
  2777. },
  2778. sitting: {
  2779. height: math.unit(5.75 / 1.79, "feet"),
  2780. weight: math.unit(160, "lbs"),
  2781. name: "Sitting",
  2782. image: {
  2783. source: "./media/characters/deerpuff/sitting.svg",
  2784. bottom: 44 / 400,
  2785. extra: 1
  2786. }
  2787. },
  2788. taurLaying: {
  2789. height: math.unit(6, "feet"),
  2790. weight: math.unit(400, "lbs"),
  2791. name: "Taur (Laying)",
  2792. image: {
  2793. source: "./media/characters/deerpuff/taur-laying.svg"
  2794. }
  2795. },
  2796. },
  2797. [
  2798. {
  2799. name: "Puffball",
  2800. height: math.unit(6, "inches")
  2801. },
  2802. {
  2803. name: "Normalpuff",
  2804. height: math.unit(5.75, "feet")
  2805. },
  2806. {
  2807. name: "Macropuff",
  2808. height: math.unit(1500, "feet"),
  2809. default: true
  2810. },
  2811. {
  2812. name: "Megapuff",
  2813. height: math.unit(500, "miles")
  2814. },
  2815. {
  2816. name: "Gigapuff",
  2817. height: math.unit(250000, "miles")
  2818. },
  2819. {
  2820. name: "Omegapuff",
  2821. height: math.unit(1000, "lightyears")
  2822. },
  2823. ]
  2824. ))
  2825. characterMakers.push(() => makeCharacter(
  2826. { name: "Vivian" },
  2827. {
  2828. stomping: {
  2829. height: math.unit(6, "feet"),
  2830. weight: math.unit(170, "lbs"),
  2831. name: "Stomping",
  2832. image: {
  2833. source: "./media/characters/vivian/stomping.svg"
  2834. }
  2835. },
  2836. sitting: {
  2837. height: math.unit(6 / 1.75, "feet"),
  2838. weight: math.unit(170, "lbs"),
  2839. name: "Sitting",
  2840. image: {
  2841. source: "./media/characters/vivian/sitting.svg",
  2842. bottom: 1 / 6.4,
  2843. extra: 1,
  2844. }
  2845. },
  2846. },
  2847. [
  2848. {
  2849. name: "Normal",
  2850. height: math.unit(7, "feet"),
  2851. default: true
  2852. },
  2853. {
  2854. name: "Macro",
  2855. height: math.unit(10, "stories")
  2856. },
  2857. {
  2858. name: "Macro+",
  2859. height: math.unit(30, "stories")
  2860. },
  2861. {
  2862. name: "Megamacro",
  2863. height: math.unit(10, "miles")
  2864. },
  2865. {
  2866. name: "Megamacro+",
  2867. height: math.unit(2750000, "meters")
  2868. },
  2869. ]
  2870. ))
  2871. characterMakers.push(() => makeCharacter(
  2872. { name: "Prince" },
  2873. {
  2874. front: {
  2875. height: math.unit(6, "feet"),
  2876. weight: math.unit(160, "lbs"),
  2877. name: "Front",
  2878. image: {
  2879. source: "./media/characters/prince/front.svg",
  2880. extra: 3400 / 3000
  2881. }
  2882. },
  2883. jumping: {
  2884. height: math.unit(6, "feet"),
  2885. weight: math.unit(160, "lbs"),
  2886. name: "Jumping",
  2887. image: {
  2888. source: "./media/characters/prince/jump.svg",
  2889. extra: 2555 / 2134
  2890. }
  2891. },
  2892. },
  2893. [
  2894. {
  2895. name: "Normal",
  2896. height: math.unit(7.75, "feet"),
  2897. default: true
  2898. },
  2899. {
  2900. name: "Not cute",
  2901. height: math.unit(17, "feet")
  2902. },
  2903. {
  2904. name: "I said NOT",
  2905. height: math.unit(91, "feet")
  2906. },
  2907. {
  2908. name: "Please stop",
  2909. height: math.unit(560, "feet")
  2910. },
  2911. {
  2912. name: "What have you done",
  2913. height: math.unit(2200, "feet")
  2914. },
  2915. {
  2916. name: "Deer God",
  2917. height: math.unit(3.6, "miles")
  2918. },
  2919. ]
  2920. ))
  2921. characterMakers.push(() => makeCharacter(
  2922. { name: "Psymon" },
  2923. {
  2924. standing: {
  2925. height: math.unit(6, "feet"),
  2926. weight: math.unit(300, "lbs"),
  2927. name: "Standing",
  2928. image: {
  2929. source: "./media/characters/psymon/standing.svg",
  2930. extra: 1888 / 1810,
  2931. bottom: 0.05
  2932. }
  2933. },
  2934. slithering: {
  2935. height: math.unit(6, "feet"),
  2936. weight: math.unit(300, "lbs"),
  2937. name: "Slithering",
  2938. image: {
  2939. source: "./media/characters/psymon/slithering.svg",
  2940. extra: 1330 / 1224
  2941. }
  2942. },
  2943. slitheringAlt: {
  2944. height: math.unit(6, "feet"),
  2945. weight: math.unit(300, "lbs"),
  2946. name: "Slithering (Alt)",
  2947. image: {
  2948. source: "./media/characters/psymon/slithering-alt.svg",
  2949. extra: 1330 / 1224
  2950. }
  2951. },
  2952. },
  2953. [
  2954. {
  2955. name: "Normal",
  2956. height: math.unit(11.25, "feet"),
  2957. default: true
  2958. },
  2959. {
  2960. name: "Large",
  2961. height: math.unit(27, "feet")
  2962. },
  2963. {
  2964. name: "Giant",
  2965. height: math.unit(87, "feet")
  2966. },
  2967. {
  2968. name: "Macro",
  2969. height: math.unit(365, "feet")
  2970. },
  2971. {
  2972. name: "Megamacro",
  2973. height: math.unit(3, "miles")
  2974. },
  2975. {
  2976. name: "World Serpent",
  2977. height: math.unit(8000, "miles")
  2978. },
  2979. ]
  2980. ))
  2981. characterMakers.push(() => makeCharacter(
  2982. { name: "Daimos" },
  2983. {
  2984. front: {
  2985. height: math.unit(6, "feet"),
  2986. weight: math.unit(180, "lbs"),
  2987. name: "Front",
  2988. image: {
  2989. source: "./media/characters/daimos/front.svg",
  2990. extra: 4160 / 3897,
  2991. bottom: 0.021
  2992. }
  2993. }
  2994. },
  2995. [
  2996. {
  2997. name: "Normal",
  2998. height: math.unit(8, "feet"),
  2999. default: true
  3000. },
  3001. {
  3002. name: "Big Dog",
  3003. height: math.unit(22, "feet")
  3004. },
  3005. {
  3006. name: "Macro",
  3007. height: math.unit(127, "feet")
  3008. },
  3009. {
  3010. name: "Megamacro",
  3011. height: math.unit(3600, "feet")
  3012. },
  3013. ]
  3014. ))
  3015. characterMakers.push(() => makeCharacter(
  3016. { name: "Blake" },
  3017. {
  3018. side: {
  3019. height: math.unit(6, "feet"),
  3020. weight: math.unit(180, "lbs"),
  3021. name: "Side",
  3022. image: {
  3023. source: "./media/characters/blake/side.svg",
  3024. extra: 1212 / 1120,
  3025. bottom: 0.05
  3026. }
  3027. },
  3028. crouched: {
  3029. height: math.unit(6 * 0.57, "feet"),
  3030. weight: math.unit(180, "lbs"),
  3031. name: "Crouched",
  3032. image: {
  3033. source: "./media/characters/blake/crouched.svg",
  3034. extra: 840 / 587,
  3035. bottom: 0.04
  3036. }
  3037. },
  3038. bent: {
  3039. height: math.unit(6 * 0.75, "feet"),
  3040. weight: math.unit(180, "lbs"),
  3041. name: "Bent",
  3042. image: {
  3043. source: "./media/characters/blake/bent.svg",
  3044. extra: 592 / 544,
  3045. bottom: 0.035
  3046. }
  3047. },
  3048. },
  3049. [
  3050. {
  3051. name: "Normal",
  3052. height: math.unit(8 + 1 / 6, "feet"),
  3053. default: true
  3054. },
  3055. {
  3056. name: "Big Backside",
  3057. height: math.unit(37, "feet")
  3058. },
  3059. {
  3060. name: "Subway Shredder",
  3061. height: math.unit(72, "feet")
  3062. },
  3063. {
  3064. name: "City Carver",
  3065. height: math.unit(1675, "feet")
  3066. },
  3067. {
  3068. name: "Tectonic Tweaker",
  3069. height: math.unit(2300, "miles")
  3070. },
  3071. ]
  3072. ))
  3073. characterMakers.push(() => makeCharacter(
  3074. { name: "Guisetto" },
  3075. {
  3076. front: {
  3077. height: math.unit(6, "feet"),
  3078. weight: math.unit(180, "lbs"),
  3079. name: "Front",
  3080. image: {
  3081. source: "./media/characters/guisetto/front.svg",
  3082. extra: 856 / 817,
  3083. bottom: 0.06
  3084. }
  3085. },
  3086. airborne: {
  3087. height: math.unit(6, "feet"),
  3088. weight: math.unit(180, "lbs"),
  3089. name: "Airborne",
  3090. image: {
  3091. source: "./media/characters/guisetto/airborne.svg",
  3092. extra: 584 / 525
  3093. }
  3094. },
  3095. },
  3096. [
  3097. {
  3098. name: "Normal",
  3099. height: math.unit(10 + 11 / 12, "feet"),
  3100. default: true
  3101. },
  3102. {
  3103. name: "Large",
  3104. height: math.unit(35, "feet")
  3105. },
  3106. {
  3107. name: "Macro",
  3108. height: math.unit(475, "feet")
  3109. },
  3110. ]
  3111. ))
  3112. characterMakers.push(() => makeCharacter(
  3113. { name: "Luxor" },
  3114. {
  3115. front: {
  3116. height: math.unit(6, "feet"),
  3117. weight: math.unit(180, "lbs"),
  3118. name: "Front",
  3119. image: {
  3120. source: "./media/characters/luxor/front.svg",
  3121. extra: 2940 / 2152
  3122. }
  3123. },
  3124. back: {
  3125. height: math.unit(6, "feet"),
  3126. weight: math.unit(180, "lbs"),
  3127. name: "Back",
  3128. image: {
  3129. source: "./media/characters/luxor/back.svg",
  3130. extra: 1083 / 960
  3131. }
  3132. },
  3133. },
  3134. [
  3135. {
  3136. name: "Normal",
  3137. height: math.unit(5 + 5 / 6, "feet"),
  3138. default: true
  3139. },
  3140. {
  3141. name: "Lamp",
  3142. height: math.unit(50, "feet")
  3143. },
  3144. {
  3145. name: "Lämp",
  3146. height: math.unit(300, "feet")
  3147. },
  3148. {
  3149. name: "The sun is a lamp",
  3150. height: math.unit(250000, "miles")
  3151. },
  3152. ]
  3153. ))
  3154. characterMakers.push(() => makeCharacter(
  3155. { name: "Huoyan" },
  3156. {
  3157. front: {
  3158. height: math.unit(6, "feet"),
  3159. weight: math.unit(50, "lbs"),
  3160. name: "Front",
  3161. image: {
  3162. source: "./media/characters/huoyan/front.svg"
  3163. }
  3164. },
  3165. side: {
  3166. height: math.unit(6, "feet"),
  3167. weight: math.unit(180, "lbs"),
  3168. name: "Side",
  3169. image: {
  3170. source: "./media/characters/huoyan/side.svg"
  3171. }
  3172. },
  3173. },
  3174. [
  3175. {
  3176. name: "Chef",
  3177. height: math.unit(9, "feet")
  3178. },
  3179. {
  3180. name: "Normal",
  3181. height: math.unit(65, "feet"),
  3182. default: true
  3183. },
  3184. {
  3185. name: "Macro",
  3186. height: math.unit(780, "feet")
  3187. },
  3188. {
  3189. name: "Flaming Mountain",
  3190. height: math.unit(4.8, "miles")
  3191. },
  3192. {
  3193. name: "Celestial",
  3194. height: math.unit(765000, "miles")
  3195. },
  3196. ]
  3197. ))
  3198. characterMakers.push(() => makeCharacter(
  3199. { name: "Tails" },
  3200. {
  3201. front: {
  3202. height: math.unit(5 + 3 / 4, "feet"),
  3203. weight: math.unit(120, "lbs"),
  3204. name: "Front",
  3205. image: {
  3206. source: "./media/characters/tails/front.svg"
  3207. }
  3208. }
  3209. },
  3210. [
  3211. {
  3212. name: "Normal",
  3213. height: math.unit(5 + 3 / 4, "feet"),
  3214. default: true
  3215. }
  3216. ]
  3217. ))
  3218. characterMakers.push(() => makeCharacter(
  3219. { name: "Rainy" },
  3220. {
  3221. front: {
  3222. height: math.unit(4, "feet"),
  3223. weight: math.unit(50, "lbs"),
  3224. name: "Front",
  3225. image: {
  3226. source: "./media/characters/rainy/front.svg"
  3227. }
  3228. }
  3229. },
  3230. [
  3231. {
  3232. name: "Macro",
  3233. height: math.unit(800, "feet"),
  3234. default: true
  3235. }
  3236. ]
  3237. ))
  3238. characterMakers.push(() => makeCharacter(
  3239. { name: "Rainier" },
  3240. {
  3241. front: {
  3242. height: math.unit(6, "feet"),
  3243. weight: math.unit(150, "lbs"),
  3244. name: "Front",
  3245. image: {
  3246. source: "./media/characters/rainier/front.svg"
  3247. }
  3248. }
  3249. },
  3250. [
  3251. {
  3252. name: "Micro",
  3253. height: math.unit(2, "mm"),
  3254. default: true
  3255. }
  3256. ]
  3257. ))
  3258. characterMakers.push(() => makeCharacter(
  3259. { name: "Andy" },
  3260. {
  3261. front: {
  3262. height: math.unit(6, "feet"),
  3263. weight: math.unit(180, "lbs"),
  3264. name: "Front",
  3265. image: {
  3266. source: "./media/characters/andy/front.svg"
  3267. }
  3268. }
  3269. },
  3270. [
  3271. {
  3272. name: "Normal",
  3273. height: math.unit(8, "feet"),
  3274. default: true
  3275. },
  3276. {
  3277. name: "Macro",
  3278. height: math.unit(1000, "feet")
  3279. },
  3280. {
  3281. name: "Megamacro",
  3282. height: math.unit(5, "miles")
  3283. },
  3284. {
  3285. name: "Gigamacro",
  3286. height: math.unit(5000, "miles")
  3287. },
  3288. ]
  3289. ))
  3290. characterMakers.push(() => makeCharacter(
  3291. { name: "Cimmaron" },
  3292. {
  3293. frontClothed: {
  3294. height: math.unit(6, "feet"),
  3295. weight: math.unit(210, "lbs"),
  3296. name: "Front (Clothed)",
  3297. image: {
  3298. source: "./media/characters/cimmaron/front-clothed.svg",
  3299. extra: 701 / 676,
  3300. bottom: 0.046
  3301. }
  3302. },
  3303. backClothed: {
  3304. height: math.unit(6, "feet"),
  3305. weight: math.unit(210, "lbs"),
  3306. name: "Back (Clothed)",
  3307. image: {
  3308. source: "./media/characters/cimmaron/back-clothed.svg",
  3309. extra: 701 / 676,
  3310. bottom: 0.046
  3311. }
  3312. },
  3313. frontNude: {
  3314. height: math.unit(6, "feet"),
  3315. weight: math.unit(210, "lbs"),
  3316. name: "Front (Nude)",
  3317. image: {
  3318. source: "./media/characters/cimmaron/front-nude.svg",
  3319. extra: 701 / 676,
  3320. bottom: 0.046
  3321. }
  3322. },
  3323. backNude: {
  3324. height: math.unit(6, "feet"),
  3325. weight: math.unit(210, "lbs"),
  3326. name: "Back (Nude)",
  3327. image: {
  3328. source: "./media/characters/cimmaron/back-nude.svg",
  3329. extra: 701 / 676,
  3330. bottom: 0.046
  3331. }
  3332. }
  3333. },
  3334. [
  3335. {
  3336. name: "Normal",
  3337. height: math.unit(6, "feet"),
  3338. default: true
  3339. },
  3340. {
  3341. name: "Macro Mayor",
  3342. height: math.unit(350, "meters")
  3343. },
  3344. ]
  3345. ))
  3346. characterMakers.push(() => makeCharacter(
  3347. { name: "Akari Kaen" },
  3348. {
  3349. front: {
  3350. height: math.unit(6, "feet"),
  3351. weight: math.unit(200, "lbs"),
  3352. name: "Front",
  3353. image: {
  3354. source: "./media/characters/akari/front.svg",
  3355. extra: 962 / 901,
  3356. bottom: 0.04
  3357. }
  3358. }
  3359. },
  3360. [
  3361. {
  3362. name: "Micro",
  3363. height: math.unit(5, "inches"),
  3364. default: true
  3365. },
  3366. {
  3367. name: "Normal",
  3368. height: math.unit(7, "feet")
  3369. },
  3370. ]
  3371. ))
  3372. characterMakers.push(() => makeCharacter(
  3373. { name: "Cynosura" },
  3374. {
  3375. front: {
  3376. height: math.unit(6, "feet"),
  3377. weight: math.unit(140, "lbs"),
  3378. name: "Front",
  3379. image: {
  3380. source: "./media/characters/cynosura/front.svg",
  3381. extra: 896 / 847
  3382. }
  3383. },
  3384. back: {
  3385. height: math.unit(6, "feet"),
  3386. weight: math.unit(140, "lbs"),
  3387. name: "Back",
  3388. image: {
  3389. source: "./media/characters/cynosura/back.svg",
  3390. extra: 1365 / 1250
  3391. }
  3392. },
  3393. },
  3394. [
  3395. {
  3396. name: "Micro",
  3397. height: math.unit(4, "inches")
  3398. },
  3399. {
  3400. name: "Normal",
  3401. height: math.unit(5.75, "feet"),
  3402. default: true
  3403. },
  3404. {
  3405. name: "Tall",
  3406. height: math.unit(10, "feet")
  3407. },
  3408. {
  3409. name: "Big",
  3410. height: math.unit(20, "feet")
  3411. },
  3412. {
  3413. name: "Macro",
  3414. height: math.unit(50, "feet")
  3415. },
  3416. ]
  3417. ))
  3418. characterMakers.push(() => makeCharacter(
  3419. { name: "Gin" },
  3420. {
  3421. front: {
  3422. height: math.unit(6, "feet"),
  3423. weight: math.unit(170, "lbs"),
  3424. name: "Front",
  3425. image: {
  3426. source: "./media/characters/gin/front.svg",
  3427. extra: 1.053,
  3428. bottom: 0.025
  3429. }
  3430. },
  3431. foot: {
  3432. height: math.unit(6 / 4.25, "feet"),
  3433. name: "Foot",
  3434. image: {
  3435. source: "./media/characters/gin/foot.svg"
  3436. }
  3437. },
  3438. sole: {
  3439. height: math.unit(6 / 4.40, "feet"),
  3440. name: "Sole",
  3441. image: {
  3442. source: "./media/characters/gin/sole.svg"
  3443. }
  3444. },
  3445. },
  3446. [
  3447. {
  3448. name: "Normal",
  3449. height: math.unit(9 + 4 / 12, "feet")
  3450. },
  3451. {
  3452. name: "Macro",
  3453. height: math.unit(1500, "feet")
  3454. },
  3455. {
  3456. name: "Megamacro",
  3457. height: math.unit(200, "miles"),
  3458. default: true
  3459. },
  3460. {
  3461. name: "Gigamacro",
  3462. height: math.unit(500, "megameters")
  3463. },
  3464. {
  3465. name: "Teramacro",
  3466. height: math.unit(15, "lightyears")
  3467. }
  3468. ]
  3469. ))
  3470. characterMakers.push(() => makeCharacter(
  3471. { name: "Guy" },
  3472. {
  3473. front: {
  3474. height: math.unit(6 + 1 / 6, "feet"),
  3475. weight: math.unit(178, "lbs"),
  3476. name: "Front",
  3477. image: {
  3478. source: "./media/characters/guy/front.svg"
  3479. }
  3480. }
  3481. },
  3482. [
  3483. {
  3484. name: "Normal",
  3485. height: math.unit(6 + 1 / 6, "feet"),
  3486. default: true
  3487. },
  3488. {
  3489. name: "Large",
  3490. height: math.unit(25 + 7 / 12, "feet")
  3491. },
  3492. {
  3493. name: "Macro",
  3494. height: math.unit(60 + 9 / 12, "feet")
  3495. },
  3496. {
  3497. name: "Macro+",
  3498. height: math.unit(246, "feet")
  3499. },
  3500. {
  3501. name: "Macro++",
  3502. height: math.unit(878, "feet")
  3503. }
  3504. ]
  3505. ))
  3506. characterMakers.push(() => makeCharacter(
  3507. { name: "Tiberius" },
  3508. {
  3509. front: {
  3510. height: math.unit(9, "feet"),
  3511. weight: math.unit(800, "lbs"),
  3512. name: "Front",
  3513. image: {
  3514. source: "./media/characters/tiberius/front.svg",
  3515. extra: 2295 / 2071
  3516. }
  3517. },
  3518. back: {
  3519. height: math.unit(9, "feet"),
  3520. weight: math.unit(800, "lbs"),
  3521. name: "Back",
  3522. image: {
  3523. source: "./media/characters/tiberius/back.svg",
  3524. extra: 2373 / 2160
  3525. }
  3526. },
  3527. },
  3528. [
  3529. {
  3530. name: "Normal",
  3531. height: math.unit(9, "feet"),
  3532. default: true
  3533. }
  3534. ]
  3535. ))
  3536. characterMakers.push(() => makeCharacter(
  3537. { name: "Surgo" },
  3538. {
  3539. front: {
  3540. height: math.unit(6, "feet"),
  3541. weight: math.unit(600, "lbs"),
  3542. name: "Front",
  3543. image: {
  3544. source: "./media/characters/surgo/front.svg",
  3545. extra: 3591 / 2227
  3546. }
  3547. },
  3548. back: {
  3549. height: math.unit(6, "feet"),
  3550. weight: math.unit(600, "lbs"),
  3551. name: "Back",
  3552. image: {
  3553. source: "./media/characters/surgo/back.svg",
  3554. extra: 3557 / 2228
  3555. }
  3556. },
  3557. laying: {
  3558. height: math.unit(6 * 0.85, "feet"),
  3559. weight: math.unit(600, "lbs"),
  3560. name: "Laying",
  3561. image: {
  3562. source: "./media/characters/surgo/laying.svg"
  3563. }
  3564. },
  3565. },
  3566. [
  3567. {
  3568. name: "Normal",
  3569. height: math.unit(6, "feet"),
  3570. default: true
  3571. }
  3572. ]
  3573. ))
  3574. characterMakers.push(() => makeCharacter(
  3575. { name: "Cibus" },
  3576. {
  3577. side: {
  3578. height: math.unit(6, "feet"),
  3579. weight: math.unit(150, "lbs"),
  3580. name: "Side",
  3581. image: {
  3582. source: "./media/characters/cibus/side.svg",
  3583. extra: 800 / 400
  3584. }
  3585. },
  3586. },
  3587. [
  3588. {
  3589. name: "Normal",
  3590. height: math.unit(6, "feet"),
  3591. default: true
  3592. }
  3593. ]
  3594. ))
  3595. characterMakers.push(() => makeCharacter(
  3596. { name: "Nibbles" },
  3597. {
  3598. front: {
  3599. height: math.unit(6, "feet"),
  3600. weight: math.unit(240, "lbs"),
  3601. name: "Front",
  3602. image: {
  3603. source: "./media/characters/nibbles/front.svg"
  3604. }
  3605. },
  3606. side: {
  3607. height: math.unit(6, "feet"),
  3608. weight: math.unit(240, "lbs"),
  3609. name: "Side",
  3610. image: {
  3611. source: "./media/characters/nibbles/side.svg"
  3612. }
  3613. },
  3614. },
  3615. [
  3616. {
  3617. name: "Normal",
  3618. height: math.unit(9, "feet"),
  3619. default: true
  3620. }
  3621. ]
  3622. ))
  3623. characterMakers.push(() => makeCharacter(
  3624. { name: "Rikky" },
  3625. {
  3626. side: {
  3627. height: math.unit(5 + 1 / 6, "feet"),
  3628. weight: math.unit(130, "lbs"),
  3629. name: "Side",
  3630. image: {
  3631. source: "./media/characters/rikky/side.svg"
  3632. }
  3633. },
  3634. },
  3635. [
  3636. {
  3637. name: "Normal",
  3638. height: math.unit(5 + 1 / 6, "feet")
  3639. },
  3640. {
  3641. name: "Macro",
  3642. height: math.unit(152, "feet"),
  3643. default: true
  3644. },
  3645. {
  3646. name: "Megamacro",
  3647. height: math.unit(7, "miles")
  3648. }
  3649. ]
  3650. ))
  3651. characterMakers.push(() => makeCharacter(
  3652. { name: "Malfressa" },
  3653. {
  3654. side: {
  3655. height: math.unit(370, "cm"),
  3656. weight: math.unit(350, "lbs"),
  3657. name: "Side",
  3658. image: {
  3659. source: "./media/characters/malfressa/side.svg"
  3660. }
  3661. },
  3662. walking: {
  3663. height: math.unit(370, "cm"),
  3664. weight: math.unit(350, "lbs"),
  3665. name: "Walking",
  3666. image: {
  3667. source: "./media/characters/malfressa/walking.svg"
  3668. }
  3669. },
  3670. feral: {
  3671. height: math.unit(2500, "cm"),
  3672. weight: math.unit(100000, "lbs"),
  3673. name: "Feral",
  3674. image: {
  3675. source: "./media/characters/malfressa/feral.svg",
  3676. extra: 2108 / 837,
  3677. bottom: 0.02
  3678. }
  3679. },
  3680. },
  3681. [
  3682. {
  3683. name: "Normal",
  3684. height: math.unit(370, "cm")
  3685. },
  3686. {
  3687. name: "Macro",
  3688. height: math.unit(300, "meters"),
  3689. default: true
  3690. }
  3691. ]
  3692. ))
  3693. characterMakers.push(() => makeCharacter(
  3694. { name: "Jaro" },
  3695. {
  3696. front: {
  3697. height: math.unit(6, "feet"),
  3698. weight: math.unit(60, "kg"),
  3699. name: "Front",
  3700. image: {
  3701. source: "./media/characters/jaro/front.svg"
  3702. }
  3703. },
  3704. back: {
  3705. height: math.unit(6, "feet"),
  3706. weight: math.unit(60, "kg"),
  3707. name: "Back",
  3708. image: {
  3709. source: "./media/characters/jaro/back.svg"
  3710. }
  3711. },
  3712. },
  3713. [
  3714. {
  3715. name: "Micro",
  3716. height: math.unit(7, "inches")
  3717. },
  3718. {
  3719. name: "Normal",
  3720. height: math.unit(5.5, "feet"),
  3721. default: true
  3722. },
  3723. {
  3724. name: "Minimacro",
  3725. height: math.unit(20, "feet")
  3726. },
  3727. {
  3728. name: "Macro",
  3729. height: math.unit(200, "meters")
  3730. }
  3731. ]
  3732. ))
  3733. characterMakers.push(() => makeCharacter(
  3734. { name: "Rogue" },
  3735. {
  3736. front: {
  3737. height: math.unit(6, "feet"),
  3738. weight: math.unit(195, "lb"),
  3739. name: "Front",
  3740. image: {
  3741. source: "./media/characters/rogue/front.svg"
  3742. }
  3743. },
  3744. },
  3745. [
  3746. {
  3747. name: "Macro",
  3748. height: math.unit(90, "feet"),
  3749. default: true
  3750. },
  3751. ]
  3752. ))
  3753. characterMakers.push(() => makeCharacter(
  3754. { name: "Piper" },
  3755. {
  3756. front: {
  3757. height: math.unit(5 + 8 / 12, "feet"),
  3758. weight: math.unit(140, "lb"),
  3759. name: "Front",
  3760. image: {
  3761. source: "./media/characters/piper/front.svg",
  3762. extra: 3928 / 3681
  3763. }
  3764. },
  3765. },
  3766. [
  3767. {
  3768. name: "Micro",
  3769. height: math.unit(2, "inches")
  3770. },
  3771. {
  3772. name: "Normal",
  3773. height: math.unit(5 + 8 / 12, "feet")
  3774. },
  3775. {
  3776. name: "Macro",
  3777. height: math.unit(250, "feet"),
  3778. default: true
  3779. },
  3780. {
  3781. name: "Megamacro",
  3782. height: math.unit(7, "miles")
  3783. },
  3784. ]
  3785. ))
  3786. characterMakers.push(() => makeCharacter(
  3787. { name: "Gemini" },
  3788. {
  3789. front: {
  3790. height: math.unit(6, "feet"),
  3791. weight: math.unit(220, "lb"),
  3792. name: "Front",
  3793. image: {
  3794. source: "./media/characters/gemini/front.svg"
  3795. }
  3796. },
  3797. back: {
  3798. height: math.unit(6, "feet"),
  3799. weight: math.unit(220, "lb"),
  3800. name: "Back",
  3801. image: {
  3802. source: "./media/characters/gemini/back.svg"
  3803. }
  3804. },
  3805. kneeling: {
  3806. height: math.unit(6 / 1.5, "feet"),
  3807. weight: math.unit(220, "lb"),
  3808. name: "Kneeling",
  3809. image: {
  3810. source: "./media/characters/gemini/kneeling.svg",
  3811. bottom: 0.02
  3812. }
  3813. },
  3814. },
  3815. [
  3816. {
  3817. name: "Macro",
  3818. height: math.unit(300, "meters"),
  3819. default: true
  3820. },
  3821. {
  3822. name: "Megamacro",
  3823. height: math.unit(6900, "meters")
  3824. },
  3825. ]
  3826. ))
  3827. characterMakers.push(() => makeCharacter(
  3828. { name: "Alicia" },
  3829. {
  3830. anthro: {
  3831. height: math.unit(2.35, "meters"),
  3832. weight: math.unit(73, "kg"),
  3833. name: "Anthro",
  3834. image: {
  3835. source: "./media/characters/alicia/anthro.svg"
  3836. }
  3837. },
  3838. feral: {
  3839. height: math.unit(1.69, "meters"),
  3840. weight: math.unit(73, "kg"),
  3841. name: "Feral",
  3842. image: {
  3843. source: "./media/characters/alicia/feral.svg"
  3844. }
  3845. },
  3846. },
  3847. [
  3848. {
  3849. name: "Normal",
  3850. height: math.unit(2.35, "meters")
  3851. },
  3852. {
  3853. name: "Macro",
  3854. height: math.unit(60, "meters"),
  3855. default: true
  3856. },
  3857. {
  3858. name: "Megamacro",
  3859. height: math.unit(10000, "kilometers")
  3860. },
  3861. ]
  3862. ))
  3863. characterMakers.push(() => makeCharacter(
  3864. { name: "Archy" },
  3865. {
  3866. front: {
  3867. height: math.unit(7, "feet"),
  3868. weight: math.unit(250, "lbs"),
  3869. name: "Front",
  3870. image: {
  3871. source: "./media/characters/archy/front.svg"
  3872. }
  3873. }
  3874. },
  3875. [
  3876. {
  3877. name: "Micro",
  3878. height: math.unit(1, "inch")
  3879. },
  3880. {
  3881. name: "Shorty",
  3882. height: math.unit(5, "feet")
  3883. },
  3884. {
  3885. name: "Normal",
  3886. height: math.unit(7, "feet")
  3887. },
  3888. {
  3889. name: "Macro",
  3890. height: math.unit(600, "meters"),
  3891. default: true
  3892. },
  3893. {
  3894. name: "Megamacro",
  3895. height: math.unit(1, "mile")
  3896. },
  3897. ]
  3898. ))
  3899. characterMakers.push(() => makeCharacter(
  3900. { name: "Berri" },
  3901. {
  3902. front: {
  3903. height: math.unit(1.65, "meters"),
  3904. weight: math.unit(74, "kg"),
  3905. name: "Front",
  3906. image: {
  3907. source: "./media/characters/berri/front.svg"
  3908. }
  3909. }
  3910. },
  3911. [
  3912. {
  3913. name: "Normal",
  3914. height: math.unit(1.65, "meters")
  3915. },
  3916. {
  3917. name: "Macro",
  3918. height: math.unit(60, "m"),
  3919. default: true
  3920. },
  3921. {
  3922. name: "Megamacro",
  3923. height: math.unit(9.213, "km")
  3924. },
  3925. {
  3926. name: "Planet Eater",
  3927. height: math.unit(489, "megameters")
  3928. },
  3929. {
  3930. name: "Teramacro",
  3931. height: math.unit(2471635000000, "meters")
  3932. },
  3933. {
  3934. name: "Examacro",
  3935. height: math.unit(8.0624e+26, "meters")
  3936. }
  3937. ]
  3938. ))
  3939. characterMakers.push(() => makeCharacter(
  3940. { name: "Lexi" },
  3941. {
  3942. front: {
  3943. height: math.unit(1.72, "meters"),
  3944. weight: math.unit(68, "kg"),
  3945. name: "Front",
  3946. image: {
  3947. source: "./media/characters/lexi/front.svg"
  3948. }
  3949. }
  3950. },
  3951. [
  3952. {
  3953. name: "Very Smol",
  3954. height: math.unit(10, "mm")
  3955. },
  3956. {
  3957. name: "Micro",
  3958. height: math.unit(6.8, "cm"),
  3959. default: true
  3960. },
  3961. {
  3962. name: "Normal",
  3963. height: math.unit(1.72, "m")
  3964. }
  3965. ]
  3966. ))
  3967. characterMakers.push(() => makeCharacter(
  3968. { name: "Martin" },
  3969. {
  3970. front: {
  3971. height: math.unit(1.69, "meters"),
  3972. weight: math.unit(68, "kg"),
  3973. name: "Front",
  3974. image: {
  3975. source: "./media/characters/martin/front.svg",
  3976. extra: 596 / 581
  3977. }
  3978. }
  3979. },
  3980. [
  3981. {
  3982. name: "Micro",
  3983. height: math.unit(6.85, "cm"),
  3984. default: true
  3985. },
  3986. {
  3987. name: "Normal",
  3988. height: math.unit(1.69, "m")
  3989. }
  3990. ]
  3991. ))
  3992. characterMakers.push(() => makeCharacter(
  3993. { name: "Juno" },
  3994. {
  3995. front: {
  3996. height: math.unit(1.69, "meters"),
  3997. weight: math.unit(68, "kg"),
  3998. name: "Front",
  3999. image: {
  4000. source: "./media/characters/juno/front.svg"
  4001. }
  4002. }
  4003. },
  4004. [
  4005. {
  4006. name: "Micro",
  4007. height: math.unit(7, "cm")
  4008. },
  4009. {
  4010. name: "Normal",
  4011. height: math.unit(1.89, "m")
  4012. },
  4013. {
  4014. name: "Macro",
  4015. height: math.unit(353, "meters"),
  4016. default: true
  4017. }
  4018. ]
  4019. ))
  4020. characterMakers.push(() => makeCharacter(
  4021. { name: "Samantha" },
  4022. {
  4023. front: {
  4024. height: math.unit(1.93, "meters"),
  4025. weight: math.unit(83, "kg"),
  4026. name: "Front",
  4027. image: {
  4028. source: "./media/characters/samantha/front.svg"
  4029. }
  4030. },
  4031. frontClothed: {
  4032. height: math.unit(1.93, "meters"),
  4033. weight: math.unit(83, "kg"),
  4034. name: "Front (Clothed)",
  4035. image: {
  4036. source: "./media/characters/samantha/front-clothed.svg"
  4037. }
  4038. },
  4039. back: {
  4040. height: math.unit(1.93, "meters"),
  4041. weight: math.unit(83, "kg"),
  4042. name: "Back",
  4043. image: {
  4044. source: "./media/characters/samantha/back.svg"
  4045. }
  4046. },
  4047. },
  4048. [
  4049. {
  4050. name: "Normal",
  4051. height: math.unit(1.93, "m")
  4052. },
  4053. {
  4054. name: "Macro",
  4055. height: math.unit(74, "meters"),
  4056. default: true
  4057. },
  4058. {
  4059. name: "Macro+",
  4060. height: math.unit(223, "meters"),
  4061. },
  4062. {
  4063. name: "Megamacro",
  4064. height: math.unit(8381, "meters"),
  4065. },
  4066. {
  4067. name: "Megamacro+",
  4068. height: math.unit(12000, "kilometers")
  4069. },
  4070. ]
  4071. ))
  4072. characterMakers.push(() => makeCharacter(
  4073. { name: "Dr. Clay" },
  4074. {
  4075. front: {
  4076. height: math.unit(1.92, "meters"),
  4077. weight: math.unit(80, "kg"),
  4078. name: "Front",
  4079. image: {
  4080. source: "./media/characters/dr-clay/front.svg"
  4081. }
  4082. },
  4083. frontClothed: {
  4084. height: math.unit(1.92, "meters"),
  4085. weight: math.unit(80, "kg"),
  4086. name: "Front (Clothed)",
  4087. image: {
  4088. source: "./media/characters/dr-clay/front-clothed.svg"
  4089. }
  4090. }
  4091. },
  4092. [
  4093. {
  4094. name: "Normal",
  4095. height: math.unit(1.92, "m")
  4096. },
  4097. {
  4098. name: "Macro",
  4099. height: math.unit(214, "meters"),
  4100. default: true
  4101. },
  4102. {
  4103. name: "Macro+",
  4104. height: math.unit(12.237, "meters"),
  4105. },
  4106. {
  4107. name: "Megamacro",
  4108. height: math.unit(557, "megameters"),
  4109. },
  4110. {
  4111. name: "Unimaginable",
  4112. height: math.unit(120e9, "lightyears")
  4113. },
  4114. ]
  4115. ))
  4116. characterMakers.push(() => makeCharacter(
  4117. { name: "Wyvrn Ripsnarl" },
  4118. {
  4119. front: {
  4120. height: math.unit(2, "meters"),
  4121. weight: math.unit(80, "kg"),
  4122. name: "Front",
  4123. image: {
  4124. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4125. }
  4126. }
  4127. },
  4128. [
  4129. {
  4130. name: "Teramacro",
  4131. height: math.unit(500000, "lightyears"),
  4132. default: true
  4133. },
  4134. ]
  4135. ))
  4136. characterMakers.push(() => makeCharacter(
  4137. { name: "Vemus" },
  4138. {
  4139. front: {
  4140. height: math.unit(2, "meters"),
  4141. weight: math.unit(150, "kg"),
  4142. name: "Front",
  4143. image: {
  4144. source: "./media/characters/vemus/front.svg",
  4145. extra: 2384 / 2084,
  4146. bottom: 0.0123
  4147. }
  4148. }
  4149. },
  4150. [
  4151. {
  4152. name: "Normal",
  4153. height: math.unit(3.75, "meters"),
  4154. default: true
  4155. },
  4156. {
  4157. name: "Big",
  4158. height: math.unit(8, "meters")
  4159. },
  4160. {
  4161. name: "Macro",
  4162. height: math.unit(100, "meters")
  4163. },
  4164. {
  4165. name: "Macro+",
  4166. height: math.unit(1500, "meters")
  4167. },
  4168. {
  4169. name: "Stellar",
  4170. height: math.unit(14e8, "meters")
  4171. },
  4172. ]
  4173. ))
  4174. characterMakers.push(() => makeCharacter(
  4175. { name: "Beherit" },
  4176. {
  4177. front: {
  4178. height: math.unit(2, "meters"),
  4179. weight: math.unit(70, "kg"),
  4180. name: "Front",
  4181. image: {
  4182. source: "./media/characters/beherit/front.svg",
  4183. extra: 1408 / 1242
  4184. }
  4185. }
  4186. },
  4187. [
  4188. {
  4189. name: "Normal",
  4190. height: math.unit(6, "feet")
  4191. },
  4192. {
  4193. name: "Lorg",
  4194. height: math.unit(25, "feet"),
  4195. default: true
  4196. },
  4197. {
  4198. name: "Lorger",
  4199. height: math.unit(75, "feet")
  4200. },
  4201. {
  4202. name: "Macro",
  4203. height: math.unit(200, "meters")
  4204. },
  4205. ]
  4206. ))
  4207. characterMakers.push(() => makeCharacter(
  4208. { name: "Everett" },
  4209. {
  4210. front: {
  4211. height: math.unit(2, "meters"),
  4212. weight: math.unit(150, "kg"),
  4213. name: "Front",
  4214. image: {
  4215. source: "./media/characters/everett/front.svg",
  4216. extra: 2038 / 1737,
  4217. bottom: 0.03
  4218. }
  4219. },
  4220. paw: {
  4221. height: math.unit(2 / 3.6, "meters"),
  4222. name: "Paw",
  4223. image: {
  4224. source: "./media/characters/everett/paw.svg"
  4225. }
  4226. },
  4227. },
  4228. [
  4229. {
  4230. name: "Normal",
  4231. height: math.unit(15, "feet"),
  4232. default: true
  4233. },
  4234. {
  4235. name: "Lorg",
  4236. height: math.unit(70, "feet"),
  4237. default: true
  4238. },
  4239. {
  4240. name: "Lorger",
  4241. height: math.unit(250, "feet")
  4242. },
  4243. {
  4244. name: "Macro",
  4245. height: math.unit(500, "meters")
  4246. },
  4247. ]
  4248. ))
  4249. characterMakers.push(() => makeCharacter(
  4250. { name: "Rose Lion" },
  4251. {
  4252. front: {
  4253. height: math.unit(2, "meters"),
  4254. weight: math.unit(86, "kg"),
  4255. name: "Front",
  4256. image: {
  4257. source: "./media/characters/rose-lion/front.svg"
  4258. }
  4259. },
  4260. bent: {
  4261. height: math.unit(2 / 1.4288, "meters"),
  4262. weight: math.unit(86, "kg"),
  4263. name: "Bent",
  4264. image: {
  4265. source: "./media/characters/rose-lion/bent.svg"
  4266. }
  4267. }
  4268. },
  4269. [
  4270. {
  4271. name: "Mini-Micro",
  4272. height: math.unit(1, "cm")
  4273. },
  4274. {
  4275. name: "Micro",
  4276. height: math.unit(3.5, "inches"),
  4277. default: true
  4278. },
  4279. {
  4280. name: "Normal",
  4281. height: math.unit(6 + 1 / 6, "feet")
  4282. },
  4283. {
  4284. name: "Mini-Macro",
  4285. height: math.unit(9 + 10 / 12, "feet")
  4286. },
  4287. ]
  4288. ))
  4289. characterMakers.push(() => makeCharacter(
  4290. { name: "Regal" },
  4291. {
  4292. front: {
  4293. height: math.unit(2, "meters"),
  4294. weight: math.unit(350, "lbs"),
  4295. name: "Front",
  4296. image: {
  4297. source: "./media/characters/regal/front.svg"
  4298. }
  4299. },
  4300. back: {
  4301. height: math.unit(2, "meters"),
  4302. weight: math.unit(350, "lbs"),
  4303. name: "Back",
  4304. image: {
  4305. source: "./media/characters/regal/back.svg"
  4306. }
  4307. },
  4308. },
  4309. [
  4310. {
  4311. name: "Macro",
  4312. height: math.unit(350, "feet"),
  4313. default: true
  4314. }
  4315. ]
  4316. ))
  4317. characterMakers.push(() => makeCharacter(
  4318. { name: "Opal" },
  4319. {
  4320. front: {
  4321. height: math.unit(4 + 11 / 12, "feet"),
  4322. weight: math.unit(100, "lbs"),
  4323. name: "Front",
  4324. image: {
  4325. source: "./media/characters/opal/front.svg"
  4326. }
  4327. },
  4328. frontAlt: {
  4329. height: math.unit(4 + 11 / 12, "feet"),
  4330. weight: math.unit(100, "lbs"),
  4331. name: "Front (Alt)",
  4332. image: {
  4333. source: "./media/characters/opal/front-alt.svg"
  4334. }
  4335. },
  4336. },
  4337. [
  4338. {
  4339. name: "Small",
  4340. height: math.unit(4 + 11 / 12, "feet")
  4341. },
  4342. {
  4343. name: "Normal",
  4344. height: math.unit(20, "feet"),
  4345. default: true
  4346. },
  4347. {
  4348. name: "Macro",
  4349. height: math.unit(120, "feet")
  4350. },
  4351. {
  4352. name: "Megamacro",
  4353. height: math.unit(80, "miles")
  4354. },
  4355. {
  4356. name: "True Size",
  4357. height: math.unit(100000, "lightyears")
  4358. },
  4359. ]
  4360. ))
  4361. characterMakers.push(() => makeCharacter(
  4362. { name: "Vector Wuff" },
  4363. {
  4364. front: {
  4365. height: math.unit(6, "feet"),
  4366. weight: math.unit(200, "lbs"),
  4367. name: "Front",
  4368. image: {
  4369. source: "./media/characters/vector-wuff/front.svg"
  4370. }
  4371. }
  4372. },
  4373. [
  4374. {
  4375. name: "Normal",
  4376. height: math.unit(2.8, "meters")
  4377. },
  4378. {
  4379. name: "Macro",
  4380. height: math.unit(450, "meters"),
  4381. default: true
  4382. },
  4383. {
  4384. name: "Megamacro",
  4385. height: math.unit(15, "kilometers")
  4386. }
  4387. ]
  4388. ))
  4389. characterMakers.push(() => makeCharacter(
  4390. { name: "Dannik" },
  4391. {
  4392. front: {
  4393. height: math.unit(6, "feet"),
  4394. weight: math.unit(256, "lbs"),
  4395. name: "Front",
  4396. image: {
  4397. source: "./media/characters/dannik/front.svg"
  4398. }
  4399. }
  4400. },
  4401. [
  4402. {
  4403. name: "Macro",
  4404. height: math.unit(69.57, "meters"),
  4405. default: true
  4406. },
  4407. ]
  4408. ))
  4409. characterMakers.push(() => makeCharacter(
  4410. { name: "Azura Saharah" },
  4411. {
  4412. front: {
  4413. height: math.unit(6, "feet"),
  4414. weight: math.unit(120, "lbs"),
  4415. name: "Front",
  4416. image: {
  4417. source: "./media/characters/azura-saharah/front.svg"
  4418. }
  4419. },
  4420. back: {
  4421. height: math.unit(6, "feet"),
  4422. weight: math.unit(120, "lbs"),
  4423. name: "Back",
  4424. image: {
  4425. source: "./media/characters/azura-saharah/back.svg"
  4426. }
  4427. },
  4428. },
  4429. [
  4430. {
  4431. name: "Macro",
  4432. height: math.unit(100, "feet"),
  4433. default: true
  4434. },
  4435. ]
  4436. ))
  4437. characterMakers.push(() => makeCharacter(
  4438. { name: "Kennedy" },
  4439. {
  4440. side: {
  4441. height: math.unit(5 + 4 / 12, "feet"),
  4442. weight: math.unit(163, "lbs"),
  4443. name: "Side",
  4444. image: {
  4445. source: "./media/characters/kennedy/side.svg"
  4446. }
  4447. }
  4448. },
  4449. [
  4450. {
  4451. name: "Standard Doggo",
  4452. height: math.unit(5 + 4 / 12, "feet")
  4453. },
  4454. {
  4455. name: "Big Doggo",
  4456. height: math.unit(25 + 3 / 12, "feet"),
  4457. default: true
  4458. },
  4459. ]
  4460. ))
  4461. characterMakers.push(() => makeCharacter(
  4462. { name: "Odi Lunar" },
  4463. {
  4464. front: {
  4465. height: math.unit(6, "feet"),
  4466. weight: math.unit(90, "lbs"),
  4467. name: "Front",
  4468. image: {
  4469. source: "./media/characters/odi-lunar/front.svg"
  4470. }
  4471. }
  4472. },
  4473. [
  4474. {
  4475. name: "Micro",
  4476. height: math.unit(3, "inches"),
  4477. default: true
  4478. },
  4479. {
  4480. name: "Normal",
  4481. height: math.unit(5.5, "feet")
  4482. }
  4483. ]
  4484. ))
  4485. characterMakers.push(() => makeCharacter(
  4486. { name: "Mandake" },
  4487. {
  4488. back: {
  4489. height: math.unit(6, "feet"),
  4490. weight: math.unit(220, "lbs"),
  4491. name: "Back",
  4492. image: {
  4493. source: "./media/characters/mandake/back.svg"
  4494. }
  4495. }
  4496. },
  4497. [
  4498. {
  4499. name: "Normal",
  4500. height: math.unit(7, "feet"),
  4501. default: true
  4502. },
  4503. {
  4504. name: "Macro",
  4505. height: math.unit(78, "feet")
  4506. },
  4507. {
  4508. name: "Macro+",
  4509. height: math.unit(300, "meters")
  4510. },
  4511. {
  4512. name: "Macro++",
  4513. height: math.unit(2400, "feet")
  4514. },
  4515. {
  4516. name: "Megamacro",
  4517. height: math.unit(5167, "meters")
  4518. },
  4519. {
  4520. name: "Gigamacro",
  4521. height: math.unit(41769, "miles")
  4522. },
  4523. ]
  4524. ))
  4525. characterMakers.push(() => makeCharacter(
  4526. { name: "Yozey" },
  4527. {
  4528. front: {
  4529. height: math.unit(6, "feet"),
  4530. weight: math.unit(120, "lbs"),
  4531. name: "Front",
  4532. image: {
  4533. source: "./media/characters/yozey/front.svg"
  4534. }
  4535. },
  4536. frontAlt: {
  4537. height: math.unit(6, "feet"),
  4538. weight: math.unit(120, "lbs"),
  4539. name: "Front (Alt)",
  4540. image: {
  4541. source: "./media/characters/yozey/front-alt.svg"
  4542. }
  4543. },
  4544. side: {
  4545. height: math.unit(6, "feet"),
  4546. weight: math.unit(120, "lbs"),
  4547. name: "Side",
  4548. image: {
  4549. source: "./media/characters/yozey/side.svg"
  4550. }
  4551. },
  4552. },
  4553. [
  4554. {
  4555. name: "Micro",
  4556. height: math.unit(3, "inches"),
  4557. default: true
  4558. },
  4559. {
  4560. name: "Normal",
  4561. height: math.unit(6, "feet")
  4562. }
  4563. ]
  4564. ))
  4565. characterMakers.push(() => makeCharacter(
  4566. { name: "Valeska Voss" },
  4567. {
  4568. front: {
  4569. height: math.unit(6, "feet"),
  4570. weight: math.unit(103, "lbs"),
  4571. name: "Front",
  4572. image: {
  4573. source: "./media/characters/valeska-voss/front.svg"
  4574. }
  4575. }
  4576. },
  4577. [
  4578. {
  4579. name: "Mini-Sized Sub",
  4580. height: math.unit(3.1, "inches")
  4581. },
  4582. {
  4583. name: "Mid-Sized Sub",
  4584. height: math.unit(6.2, "inches")
  4585. },
  4586. {
  4587. name: "Full-Sized Sub",
  4588. height: math.unit(9.3, "inches")
  4589. },
  4590. {
  4591. name: "Normal",
  4592. height: math.unit(5 + 2 / 12, "foot"),
  4593. default: true
  4594. },
  4595. ]
  4596. ))
  4597. characterMakers.push(() => makeCharacter(
  4598. { name: "Gene Zeta" },
  4599. {
  4600. front: {
  4601. height: math.unit(6, "feet"),
  4602. weight: math.unit(160, "lbs"),
  4603. name: "Front",
  4604. image: {
  4605. source: "./media/characters/gene-zeta/front.svg",
  4606. bottom: 0.03,
  4607. extra: 1
  4608. }
  4609. }
  4610. },
  4611. [
  4612. {
  4613. name: "Normal",
  4614. height: math.unit(6.25, "foot"),
  4615. default: true
  4616. },
  4617. ]
  4618. ))
  4619. characterMakers.push(() => makeCharacter(
  4620. { name: "Razinox" },
  4621. {
  4622. front: {
  4623. height: math.unit(6, "feet"),
  4624. weight: math.unit(350, "lbs"),
  4625. name: "Front",
  4626. image: {
  4627. source: "./media/characters/razinox/front.svg",
  4628. extra: 1686 / 1548
  4629. }
  4630. },
  4631. back: {
  4632. height: math.unit(6, "feet"),
  4633. weight: math.unit(350, "lbs"),
  4634. name: "Back",
  4635. image: {
  4636. source: "./media/characters/razinox/back.svg",
  4637. extra: 1660 / 1590
  4638. }
  4639. },
  4640. },
  4641. [
  4642. {
  4643. name: "Normal",
  4644. height: math.unit(10 + 8 / 12, "foot")
  4645. },
  4646. {
  4647. name: "Minimacro",
  4648. height: math.unit(15, "foot")
  4649. },
  4650. {
  4651. name: "Macro",
  4652. height: math.unit(60, "foot"),
  4653. default: true
  4654. },
  4655. {
  4656. name: "Megamacro",
  4657. height: math.unit(5, "miles")
  4658. },
  4659. {
  4660. name: "Gigamacro",
  4661. height: math.unit(6000, "miles")
  4662. },
  4663. ]
  4664. ))
  4665. characterMakers.push(() => makeCharacter(
  4666. { name: "Cobalt" },
  4667. {
  4668. front: {
  4669. height: math.unit(6, "feet"),
  4670. weight: math.unit(150, "lbs"),
  4671. name: "Front",
  4672. image: {
  4673. source: "./media/characters/cobalt/front.svg"
  4674. }
  4675. }
  4676. },
  4677. [
  4678. {
  4679. name: "Normal",
  4680. height: math.unit(8 + 1 / 12, "foot")
  4681. },
  4682. {
  4683. name: "Macro",
  4684. height: math.unit(111, "foot"),
  4685. default: true
  4686. },
  4687. {
  4688. name: "Supracosmic",
  4689. height: math.unit(1e42, "feet")
  4690. },
  4691. ]
  4692. ))
  4693. characterMakers.push(() => makeCharacter(
  4694. { name: "Amanda" },
  4695. {
  4696. front: {
  4697. height: math.unit(6, "feet"),
  4698. weight: math.unit(140, "lbs"),
  4699. name: "Front",
  4700. image: {
  4701. source: "./media/characters/amanda/front.svg"
  4702. }
  4703. }
  4704. },
  4705. [
  4706. {
  4707. name: "Micro",
  4708. height: math.unit(5, "inches"),
  4709. default: true
  4710. },
  4711. ]
  4712. ))
  4713. characterMakers.push(() => makeCharacter(
  4714. { name: "Teal" },
  4715. {
  4716. front: {
  4717. height: math.unit(5.59, "feet"),
  4718. weight: math.unit(250, "lbs"),
  4719. name: "Front",
  4720. image: {
  4721. source: "./media/characters/teal/front.svg"
  4722. }
  4723. },
  4724. frontAlt: {
  4725. height: math.unit(6, "feet"),
  4726. weight: math.unit(250, "lbs"),
  4727. name: "Front (Alt)",
  4728. image: {
  4729. source: "./media/characters/teal/front-alt.svg",
  4730. bottom: 0.04,
  4731. extra: 1
  4732. }
  4733. },
  4734. },
  4735. [
  4736. {
  4737. name: "Normal",
  4738. height: math.unit(12, "feet"),
  4739. default: true
  4740. },
  4741. {
  4742. name: "Macro",
  4743. height: math.unit(300, "feet")
  4744. },
  4745. ]
  4746. ))
  4747. characterMakers.push(() => makeCharacter(
  4748. { name: "Ravin Amulet" },
  4749. {
  4750. frontCat: {
  4751. height: math.unit(6, "feet"),
  4752. weight: math.unit(180, "lbs"),
  4753. name: "Front (Cat)",
  4754. image: {
  4755. source: "./media/characters/ravin-amulet/front-cat.svg"
  4756. }
  4757. },
  4758. frontCatAlt: {
  4759. height: math.unit(6, "feet"),
  4760. weight: math.unit(180, "lbs"),
  4761. name: "Front (Alt, Cat)",
  4762. image: {
  4763. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  4764. }
  4765. },
  4766. frontWerewolf: {
  4767. height: math.unit(6 * 1.2, "feet"),
  4768. weight: math.unit(225, "lbs"),
  4769. name: "Front (Werewolf)",
  4770. image: {
  4771. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  4772. }
  4773. },
  4774. backWerewolf: {
  4775. height: math.unit(6 * 1.2, "feet"),
  4776. weight: math.unit(225, "lbs"),
  4777. name: "Back (Werewolf)",
  4778. image: {
  4779. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  4780. }
  4781. },
  4782. },
  4783. [
  4784. {
  4785. name: "Nano",
  4786. height: math.unit(1, "micrometer")
  4787. },
  4788. {
  4789. name: "Micro",
  4790. height: math.unit(1, "inch")
  4791. },
  4792. {
  4793. name: "Normal",
  4794. height: math.unit(6, "feet"),
  4795. default: true
  4796. },
  4797. {
  4798. name: "Macro",
  4799. height: math.unit(60, "feet")
  4800. }
  4801. ]
  4802. ))
  4803. characterMakers.push(() => makeCharacter(
  4804. { name: "Fluoresce" },
  4805. {
  4806. front: {
  4807. height: math.unit(6, "feet"),
  4808. weight: math.unit(165, "lbs"),
  4809. name: "Front",
  4810. image: {
  4811. source: "./media/characters/fluoresce/front.svg"
  4812. }
  4813. }
  4814. },
  4815. [
  4816. {
  4817. name: "Micro",
  4818. height: math.unit(6, "cm")
  4819. },
  4820. {
  4821. name: "Normal",
  4822. height: math.unit(5 + 7 / 12, "feet"),
  4823. default: true
  4824. },
  4825. {
  4826. name: "Macro",
  4827. height: math.unit(56, "feet")
  4828. },
  4829. {
  4830. name: "Megamacro",
  4831. height: math.unit(1.9, "miles")
  4832. },
  4833. ]
  4834. ))
  4835. characterMakers.push(() => makeCharacter(
  4836. { name: "Aurora" },
  4837. {
  4838. front: {
  4839. height: math.unit(9 + 6 / 12, "feet"),
  4840. weight: math.unit(523, "lbs"),
  4841. name: "Side",
  4842. image: {
  4843. source: "./media/characters/aurora/side.svg"
  4844. }
  4845. }
  4846. },
  4847. [
  4848. {
  4849. name: "Normal",
  4850. height: math.unit(9 + 6 / 12, "feet")
  4851. },
  4852. {
  4853. name: "Macro",
  4854. height: math.unit(96, "feet"),
  4855. default: true
  4856. },
  4857. {
  4858. name: "Macro+",
  4859. height: math.unit(243, "feet")
  4860. },
  4861. ]
  4862. ))
  4863. characterMakers.push(() => makeCharacter(
  4864. { name: "Ranek" },
  4865. {
  4866. front: {
  4867. height: math.unit(194, "cm"),
  4868. weight: math.unit(90, "kg"),
  4869. name: "Front",
  4870. image: {
  4871. source: "./media/characters/ranek/front.svg"
  4872. }
  4873. },
  4874. side: {
  4875. height: math.unit(194, "cm"),
  4876. weight: math.unit(90, "kg"),
  4877. name: "Side",
  4878. image: {
  4879. source: "./media/characters/ranek/side.svg"
  4880. }
  4881. },
  4882. back: {
  4883. height: math.unit(194, "cm"),
  4884. weight: math.unit(90, "kg"),
  4885. name: "Back",
  4886. image: {
  4887. source: "./media/characters/ranek/back.svg"
  4888. }
  4889. },
  4890. feral: {
  4891. height: math.unit(30, "cm"),
  4892. weight: math.unit(1.6, "lbs"),
  4893. name: "Feral",
  4894. image: {
  4895. source: "./media/characters/ranek/feral.svg"
  4896. }
  4897. },
  4898. },
  4899. [
  4900. {
  4901. name: "Normal",
  4902. height: math.unit(194, "cm"),
  4903. default: true
  4904. },
  4905. {
  4906. name: "Macro",
  4907. height: math.unit(100, "meters")
  4908. },
  4909. ]
  4910. ))
  4911. characterMakers.push(() => makeCharacter(
  4912. { name: "Andrew Cooper" },
  4913. {
  4914. front: {
  4915. height: math.unit(5 + 6 / 12, "feet"),
  4916. weight: math.unit(153, "lbs"),
  4917. name: "Front",
  4918. image: {
  4919. source: "./media/characters/andrew-cooper/front.svg"
  4920. }
  4921. },
  4922. },
  4923. [
  4924. {
  4925. name: "Nano",
  4926. height: math.unit(1, "mm")
  4927. },
  4928. {
  4929. name: "Micro",
  4930. height: math.unit(2, "inches")
  4931. },
  4932. {
  4933. name: "Normal",
  4934. height: math.unit(5 + 6 / 12, "feet"),
  4935. default: true
  4936. }
  4937. ]
  4938. ))
  4939. characterMakers.push(() => makeCharacter(
  4940. { name: "Akane Sato" },
  4941. {
  4942. front: {
  4943. height: math.unit(6, "feet"),
  4944. weight: math.unit(180, "lbs"),
  4945. name: "Front",
  4946. image: {
  4947. source: "./media/characters/akane-sato/front.svg",
  4948. extra: 1219 / 1140
  4949. }
  4950. },
  4951. back: {
  4952. height: math.unit(6, "feet"),
  4953. weight: math.unit(180, "lbs"),
  4954. name: "Back",
  4955. image: {
  4956. source: "./media/characters/akane-sato/back.svg",
  4957. extra: 1219 / 1170
  4958. }
  4959. },
  4960. },
  4961. [
  4962. {
  4963. name: "Normal",
  4964. height: math.unit(2.5, "meters")
  4965. },
  4966. {
  4967. name: "Macro",
  4968. height: math.unit(250, "meters"),
  4969. default: true
  4970. },
  4971. {
  4972. name: "Megamacro",
  4973. height: math.unit(25, "km")
  4974. },
  4975. ]
  4976. ))
  4977. characterMakers.push(() => makeCharacter(
  4978. { name: "Rook" },
  4979. {
  4980. front: {
  4981. height: math.unit(6, "feet"),
  4982. weight: math.unit(65, "kg"),
  4983. name: "Front",
  4984. image: {
  4985. source: "./media/characters/rook/front.svg"
  4986. }
  4987. }
  4988. },
  4989. [
  4990. {
  4991. name: "Normal",
  4992. height: math.unit(8.8, "feet")
  4993. },
  4994. {
  4995. name: "Macro",
  4996. height: math.unit(88, "feet"),
  4997. default: true
  4998. },
  4999. {
  5000. name: "Megamacro",
  5001. height: math.unit(8, "miles")
  5002. },
  5003. ]
  5004. ))
  5005. characterMakers.push(() => makeCharacter(
  5006. { name: "Prodigy" },
  5007. {
  5008. front: {
  5009. height: math.unit(12 + 2 / 12, "feet"),
  5010. weight: math.unit(808, "lbs"),
  5011. name: "Front",
  5012. image: {
  5013. source: "./media/characters/prodigy/front.svg"
  5014. }
  5015. }
  5016. },
  5017. [
  5018. {
  5019. name: "Normal",
  5020. height: math.unit(12 + 2 / 12, "feet"),
  5021. default: true
  5022. },
  5023. {
  5024. name: "Macro",
  5025. height: math.unit(143, "feet")
  5026. },
  5027. {
  5028. name: "Macro+",
  5029. height: math.unit(400, "feet")
  5030. },
  5031. ]
  5032. ))
  5033. characterMakers.push(() => makeCharacter(
  5034. { name: "Daniel" },
  5035. {
  5036. front: {
  5037. height: math.unit(6, "feet"),
  5038. weight: math.unit(225, "lbs"),
  5039. name: "Front",
  5040. image: {
  5041. source: "./media/characters/daniel/front.svg"
  5042. }
  5043. },
  5044. leaning: {
  5045. height: math.unit(6, "feet"),
  5046. weight: math.unit(225, "lbs"),
  5047. name: "Leaning",
  5048. image: {
  5049. source: "./media/characters/daniel/leaning.svg"
  5050. }
  5051. },
  5052. },
  5053. [
  5054. {
  5055. name: "Macro",
  5056. height: math.unit(1000, "feet"),
  5057. default: true
  5058. },
  5059. ]
  5060. ))
  5061. characterMakers.push(() => makeCharacter(
  5062. { name: "Chiros" },
  5063. {
  5064. front: {
  5065. height: math.unit(6, "feet"),
  5066. weight: math.unit(88, "lbs"),
  5067. name: "Front",
  5068. image: {
  5069. source: "./media/characters/chiros/front.svg",
  5070. extra: 306 / 226
  5071. }
  5072. },
  5073. side: {
  5074. height: math.unit(6, "feet"),
  5075. weight: math.unit(88, "lbs"),
  5076. name: "Side",
  5077. image: {
  5078. source: "./media/characters/chiros/side.svg",
  5079. extra: 306 / 226
  5080. }
  5081. },
  5082. },
  5083. [
  5084. {
  5085. name: "Normal",
  5086. height: math.unit(6, "cm"),
  5087. default: true
  5088. },
  5089. ]
  5090. ))
  5091. characterMakers.push(() => makeCharacter(
  5092. { name: "Selka" },
  5093. {
  5094. front: {
  5095. height: math.unit(6, "feet"),
  5096. weight: math.unit(100, "lbs"),
  5097. name: "Front",
  5098. image: {
  5099. source: "./media/characters/selka/front.svg",
  5100. extra: 947 / 887
  5101. }
  5102. }
  5103. },
  5104. [
  5105. {
  5106. name: "Normal",
  5107. height: math.unit(5, "cm"),
  5108. default: true
  5109. },
  5110. ]
  5111. ))
  5112. characterMakers.push(() => makeCharacter(
  5113. { name: "Verin" },
  5114. {
  5115. front: {
  5116. height: math.unit(8 + 3 / 12, "feet"),
  5117. weight: math.unit(424, "lbs"),
  5118. name: "Front",
  5119. image: {
  5120. source: "./media/characters/verin/front.svg",
  5121. extra: 1845 / 1550
  5122. }
  5123. },
  5124. frontArmored: {
  5125. height: math.unit(8 + 3 / 12, "feet"),
  5126. weight: math.unit(424, "lbs"),
  5127. name: "Front (Armored)",
  5128. image: {
  5129. source: "./media/characters/verin/front-armor.svg",
  5130. extra: 1845 / 1550,
  5131. bottom: 0.01
  5132. }
  5133. },
  5134. back: {
  5135. height: math.unit(8 + 3 / 12, "feet"),
  5136. weight: math.unit(424, "lbs"),
  5137. name: "Back",
  5138. image: {
  5139. source: "./media/characters/verin/back.svg",
  5140. bottom: 0.1,
  5141. extra: 1
  5142. }
  5143. },
  5144. foot: {
  5145. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5146. name: "Foot",
  5147. image: {
  5148. source: "./media/characters/verin/foot.svg"
  5149. }
  5150. },
  5151. },
  5152. [
  5153. {
  5154. name: "Normal",
  5155. height: math.unit(8 + 3 / 12, "feet")
  5156. },
  5157. {
  5158. name: "Minimacro",
  5159. height: math.unit(21, "feet"),
  5160. default: true
  5161. },
  5162. {
  5163. name: "Macro",
  5164. height: math.unit(626, "feet")
  5165. },
  5166. ]
  5167. ))
  5168. characterMakers.push(() => makeCharacter(
  5169. { name: "Sovrim Terraquian" },
  5170. {
  5171. front: {
  5172. height: math.unit(2.718, "meters"),
  5173. weight: math.unit(150, "lbs"),
  5174. name: "Front",
  5175. image: {
  5176. source: "./media/characters/sovrim-terraquian/front.svg"
  5177. }
  5178. },
  5179. back: {
  5180. height: math.unit(2.718, "meters"),
  5181. weight: math.unit(150, "lbs"),
  5182. name: "Back",
  5183. image: {
  5184. source: "./media/characters/sovrim-terraquian/back.svg"
  5185. }
  5186. }
  5187. },
  5188. [
  5189. {
  5190. name: "Micro",
  5191. height: math.unit(2, "inches")
  5192. },
  5193. {
  5194. name: "Small",
  5195. height: math.unit(1, "meter")
  5196. },
  5197. {
  5198. name: "Normal",
  5199. height: math.unit(Math.E, "meters"),
  5200. default: true
  5201. },
  5202. {
  5203. name: "Macro",
  5204. height: math.unit(20, "meters")
  5205. },
  5206. {
  5207. name: "Macro+",
  5208. height: math.unit(400, "meters")
  5209. },
  5210. ]
  5211. ))
  5212. characterMakers.push(() => makeCharacter(
  5213. { name: "Reece Silvermane" },
  5214. {
  5215. front: {
  5216. height: math.unit(7, "feet"),
  5217. weight: math.unit(489, "lbs"),
  5218. name: "Front",
  5219. image: {
  5220. source: "./media/characters/reece-silvermane/front.svg",
  5221. bottom: 0.02,
  5222. extra: 1
  5223. }
  5224. },
  5225. },
  5226. [
  5227. {
  5228. name: "Macro",
  5229. height: math.unit(1.5, "miles"),
  5230. default: true
  5231. },
  5232. ]
  5233. ))
  5234. characterMakers.push(() => makeCharacter(
  5235. { name: "Kane" },
  5236. {
  5237. front: {
  5238. height: math.unit(6, "feet"),
  5239. weight: math.unit(78, "kg"),
  5240. name: "Front",
  5241. image: {
  5242. source: "./media/characters/kane/front.svg",
  5243. extra: 978 / 899
  5244. }
  5245. },
  5246. },
  5247. [
  5248. {
  5249. name: "Normal",
  5250. height: math.unit(2.1, "m"),
  5251. },
  5252. {
  5253. name: "Macro",
  5254. height: math.unit(1, "km"),
  5255. default: true
  5256. },
  5257. ]
  5258. ))
  5259. characterMakers.push(() => makeCharacter(
  5260. { name: "Tegon" },
  5261. {
  5262. front: {
  5263. height: math.unit(6, "feet"),
  5264. weight: math.unit(200, "kg"),
  5265. name: "Front",
  5266. image: {
  5267. source: "./media/characters/tegon/front.svg",
  5268. bottom: 0.01,
  5269. extra: 1
  5270. }
  5271. },
  5272. },
  5273. [
  5274. {
  5275. name: "Micro",
  5276. height: math.unit(1, "inch")
  5277. },
  5278. {
  5279. name: "Normal",
  5280. height: math.unit(6 + 3 / 12, "feet"),
  5281. default: true
  5282. },
  5283. {
  5284. name: "Macro",
  5285. height: math.unit(300, "feet")
  5286. },
  5287. {
  5288. name: "Megamacro",
  5289. height: math.unit(69, "miles")
  5290. },
  5291. ]
  5292. ))
  5293. characterMakers.push(() => makeCharacter(
  5294. { name: "Arcturax" },
  5295. {
  5296. side: {
  5297. height: math.unit(6, "feet"),
  5298. weight: math.unit(2304, "lbs"),
  5299. name: "Side",
  5300. image: {
  5301. source: "./media/characters/arcturax/side.svg",
  5302. extra: 790 / 376,
  5303. bottom: 0.01
  5304. }
  5305. },
  5306. },
  5307. [
  5308. {
  5309. name: "Micro",
  5310. height: math.unit(2, "inch")
  5311. },
  5312. {
  5313. name: "Normal",
  5314. height: math.unit(6, "feet")
  5315. },
  5316. {
  5317. name: "Macro",
  5318. height: math.unit(39, "feet"),
  5319. default: true
  5320. },
  5321. {
  5322. name: "Megamacro",
  5323. height: math.unit(7, "miles")
  5324. },
  5325. ]
  5326. ))
  5327. characterMakers.push(() => makeCharacter(
  5328. { name: "Sentri" },
  5329. {
  5330. front: {
  5331. height: math.unit(6, "feet"),
  5332. weight: math.unit(50, "lbs"),
  5333. name: "Front",
  5334. image: {
  5335. source: "./media/characters/sentri/front.svg",
  5336. extra: 1750 / 1570,
  5337. bottom: 0.025
  5338. }
  5339. },
  5340. frontAlt: {
  5341. height: math.unit(6, "feet"),
  5342. weight: math.unit(50, "lbs"),
  5343. name: "Front (Alt)",
  5344. image: {
  5345. source: "./media/characters/sentri/front-alt.svg",
  5346. extra: 1750 / 1570,
  5347. bottom: 0.025
  5348. }
  5349. },
  5350. },
  5351. [
  5352. {
  5353. name: "Normal",
  5354. height: math.unit(15, "feet"),
  5355. default: true
  5356. },
  5357. {
  5358. name: "Macro",
  5359. height: math.unit(2500, "feet")
  5360. }
  5361. ]
  5362. ))
  5363. characterMakers.push(() => makeCharacter(
  5364. { name: "Corvin" },
  5365. {
  5366. front: {
  5367. height: math.unit(5 + 8 / 12, "feet"),
  5368. weight: math.unit(130, "lbs"),
  5369. name: "Front",
  5370. image: {
  5371. source: "./media/characters/corvin/front.svg",
  5372. extra: 1803 / 1629
  5373. }
  5374. },
  5375. frontShirt: {
  5376. height: math.unit(5 + 8 / 12, "feet"),
  5377. weight: math.unit(130, "lbs"),
  5378. name: "Front (Shirt)",
  5379. image: {
  5380. source: "./media/characters/corvin/front-shirt.svg",
  5381. extra: 1803 / 1629
  5382. }
  5383. },
  5384. frontPoncho: {
  5385. height: math.unit(5 + 8 / 12, "feet"),
  5386. weight: math.unit(130, "lbs"),
  5387. name: "Front (Poncho)",
  5388. image: {
  5389. source: "./media/characters/corvin/front-poncho.svg",
  5390. extra: 1803 / 1629
  5391. }
  5392. },
  5393. side: {
  5394. height: math.unit(5 + 8 / 12, "feet"),
  5395. weight: math.unit(130, "lbs"),
  5396. name: "Side",
  5397. image: {
  5398. source: "./media/characters/corvin/side.svg",
  5399. extra: 1012 / 945
  5400. }
  5401. },
  5402. back: {
  5403. height: math.unit(5 + 8 / 12, "feet"),
  5404. weight: math.unit(130, "lbs"),
  5405. name: "Back",
  5406. image: {
  5407. source: "./media/characters/corvin/back.svg",
  5408. extra: 1803 / 1629
  5409. }
  5410. },
  5411. },
  5412. [
  5413. {
  5414. name: "Micro",
  5415. height: math.unit(3, "inches")
  5416. },
  5417. {
  5418. name: "Normal",
  5419. height: math.unit(5 + 8 / 12, "feet")
  5420. },
  5421. {
  5422. name: "Macro",
  5423. height: math.unit(300, "feet"),
  5424. default: true
  5425. },
  5426. {
  5427. name: "Megamacro",
  5428. height: math.unit(500, "miles")
  5429. }
  5430. ]
  5431. ))
  5432. characterMakers.push(() => makeCharacter(
  5433. { name: "Q" },
  5434. {
  5435. front: {
  5436. height: math.unit(6, "feet"),
  5437. weight: math.unit(135, "lbs"),
  5438. name: "Front",
  5439. image: {
  5440. source: "./media/characters/q/front.svg",
  5441. extra: 854 / 752,
  5442. bottom: 0.005
  5443. }
  5444. },
  5445. back: {
  5446. height: math.unit(6, "feet"),
  5447. weight: math.unit(130, "lbs"),
  5448. name: "Back",
  5449. image: {
  5450. source: "./media/characters/q/back.svg",
  5451. extra: 854 / 752
  5452. }
  5453. },
  5454. },
  5455. [
  5456. {
  5457. name: "Macro",
  5458. height: math.unit(90, "feet"),
  5459. default: true
  5460. },
  5461. {
  5462. name: "Extra Macro",
  5463. height: math.unit(300, "feet"),
  5464. },
  5465. {
  5466. name: "BIG WALF",
  5467. height: math.unit(750, "feet"),
  5468. },
  5469. ]
  5470. ))
  5471. characterMakers.push(() => makeCharacter(
  5472. { name: "Carley" },
  5473. {
  5474. front: {
  5475. height: math.unit(6, "feet"),
  5476. weight: math.unit(150, "lbs"),
  5477. name: "Front",
  5478. image: {
  5479. source: "./media/characters/carley/front.svg",
  5480. extra: 3927 / 3540,
  5481. bottom: 0.03
  5482. }
  5483. }
  5484. },
  5485. [
  5486. {
  5487. name: "Normal",
  5488. height: math.unit(6 + 3 / 12, "feet")
  5489. },
  5490. {
  5491. name: "Macro",
  5492. height: math.unit(185, "feet"),
  5493. default: true
  5494. },
  5495. {
  5496. name: "Megamacro",
  5497. height: math.unit(8, "miles"),
  5498. },
  5499. ]
  5500. ))
  5501. characterMakers.push(() => makeCharacter(
  5502. { name: "Citrine" },
  5503. {
  5504. front: {
  5505. height: math.unit(3, "feet"),
  5506. weight: math.unit(28, "lbs"),
  5507. name: "Front",
  5508. image: {
  5509. source: "./media/characters/citrine/front.svg"
  5510. }
  5511. }
  5512. },
  5513. [
  5514. {
  5515. name: "Normal",
  5516. height: math.unit(3, "feet"),
  5517. default: true
  5518. }
  5519. ]
  5520. ))
  5521. characterMakers.push(() => makeCharacter(
  5522. { name: "Aura Starwind" },
  5523. {
  5524. front: {
  5525. height: math.unit(14, "feet"),
  5526. weight: math.unit(1450, "kg"),
  5527. name: "Front",
  5528. image: {
  5529. source: "./media/characters/aura-starwind/front.svg",
  5530. extra: 1455 / 1335
  5531. }
  5532. },
  5533. side: {
  5534. height: math.unit(14, "feet"),
  5535. weight: math.unit(1450, "kg"),
  5536. name: "Side",
  5537. image: {
  5538. source: "./media/characters/aura-starwind/side.svg",
  5539. extra: 1654 / 1497
  5540. }
  5541. },
  5542. taur: {
  5543. height: math.unit(18, "feet"),
  5544. weight: math.unit(5500, "kg"),
  5545. name: "Taur",
  5546. image: {
  5547. source: "./media/characters/aura-starwind/taur.svg",
  5548. extra: 1760 / 1650
  5549. }
  5550. },
  5551. feral: {
  5552. height: math.unit(46, "feet"),
  5553. weight: math.unit(25000, "kg"),
  5554. name: "Feral",
  5555. image: {
  5556. source: "./media/characters/aura-starwind/feral.svg"
  5557. }
  5558. },
  5559. },
  5560. [
  5561. {
  5562. name: "Normal",
  5563. height: math.unit(14, "feet"),
  5564. default: true
  5565. },
  5566. {
  5567. name: "Macro",
  5568. height: math.unit(50, "meters")
  5569. },
  5570. {
  5571. name: "Megamacro",
  5572. height: math.unit(5000, "meters")
  5573. },
  5574. {
  5575. name: "Gigamacro",
  5576. height: math.unit(100000, "kilometers")
  5577. },
  5578. ]
  5579. ))
  5580. characterMakers.push(() => makeCharacter(
  5581. { name: "Rivet" },
  5582. {
  5583. front: {
  5584. height: math.unit(2 + 7 / 12, "feet"),
  5585. weight: math.unit(32, "lbs"),
  5586. name: "Front",
  5587. image: {
  5588. source: "./media/characters/rivet/front.svg",
  5589. extra: 1716 / 1658,
  5590. bottom: 0.03
  5591. }
  5592. },
  5593. foot: {
  5594. height: math.unit(0.551, "feet"),
  5595. name: "Rivet's Foot",
  5596. image: {
  5597. source: "./media/characters/rivet/foot.svg"
  5598. },
  5599. rename: true
  5600. }
  5601. },
  5602. [
  5603. {
  5604. name: "Micro",
  5605. height: math.unit(1.5, "inches"),
  5606. },
  5607. {
  5608. name: "Normal",
  5609. height: math.unit(2 + 7 / 12, "feet"),
  5610. default: true
  5611. },
  5612. {
  5613. name: "Macro",
  5614. height: math.unit(85, "feet")
  5615. },
  5616. {
  5617. name: "Megamacro",
  5618. height: math.unit(2.2, "km")
  5619. }
  5620. ]
  5621. ))
  5622. characterMakers.push(() => makeCharacter(
  5623. { name: "Coffee" },
  5624. {
  5625. front: {
  5626. height: math.unit(5 + 9 / 12, "feet"),
  5627. weight: math.unit(150, "lbs"),
  5628. name: "Front",
  5629. image: {
  5630. source: "./media/characters/coffee/front.svg",
  5631. extra: 3666 / 3032,
  5632. bottom: 0.04
  5633. }
  5634. },
  5635. foot: {
  5636. height: math.unit(1.29, "feet"),
  5637. name: "Foot",
  5638. image: {
  5639. source: "./media/characters/coffee/foot.svg"
  5640. }
  5641. },
  5642. },
  5643. [
  5644. {
  5645. name: "Micro",
  5646. height: math.unit(2, "inches"),
  5647. },
  5648. {
  5649. name: "Normal",
  5650. height: math.unit(5 + 9 / 12, "feet"),
  5651. default: true
  5652. },
  5653. {
  5654. name: "Macro",
  5655. height: math.unit(800, "feet")
  5656. },
  5657. {
  5658. name: "Megamacro",
  5659. height: math.unit(25, "miles")
  5660. }
  5661. ]
  5662. ))
  5663. characterMakers.push(() => makeCharacter(
  5664. { name: "Chari-Gal" },
  5665. {
  5666. front: {
  5667. height: math.unit(6, "feet"),
  5668. weight: math.unit(200, "lbs"),
  5669. name: "Front",
  5670. image: {
  5671. source: "./media/characters/chari-gal/front.svg",
  5672. extra: 1568 / 1385,
  5673. bottom: 0.047
  5674. }
  5675. },
  5676. gigantamax: {
  5677. height: math.unit(6 * 16, "feet"),
  5678. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  5679. name: "Gigantamax",
  5680. image: {
  5681. source: "./media/characters/chari-gal/gigantamax.svg",
  5682. extra: 1124 / 888,
  5683. bottom: 0.03
  5684. }
  5685. },
  5686. },
  5687. [
  5688. {
  5689. name: "Normal",
  5690. height: math.unit(5 + 7 / 12, "feet")
  5691. },
  5692. {
  5693. name: "Macro",
  5694. height: math.unit(200, "feet"),
  5695. default: true
  5696. }
  5697. ]
  5698. ))
  5699. characterMakers.push(() => makeCharacter(
  5700. { name: "Nova" },
  5701. {
  5702. front: {
  5703. height: math.unit(6, "feet"),
  5704. weight: math.unit(150, "lbs"),
  5705. name: "Front",
  5706. image: {
  5707. source: "./media/characters/nova/front.svg",
  5708. extra: 5000 / 4722,
  5709. bottom: 0.02
  5710. }
  5711. }
  5712. },
  5713. [
  5714. {
  5715. name: "Micro-",
  5716. height: math.unit(0.8, "inches")
  5717. },
  5718. {
  5719. name: "Micro",
  5720. height: math.unit(2, "inches"),
  5721. default: true
  5722. },
  5723. ]
  5724. ))
  5725. characterMakers.push(() => makeCharacter(
  5726. { name: "Argent" },
  5727. {
  5728. front: {
  5729. height: math.unit(3 + 1 / 12, "feet"),
  5730. weight: math.unit(21.7, "lbs"),
  5731. name: "Front",
  5732. image: {
  5733. source: "./media/characters/argent/front.svg",
  5734. extra: 1565 / 1416,
  5735. bottom: 0.01
  5736. }
  5737. }
  5738. },
  5739. [
  5740. {
  5741. name: "Micro",
  5742. height: math.unit(2, "inches")
  5743. },
  5744. {
  5745. name: "Normal",
  5746. height: math.unit(3 + 1 / 12, "feet"),
  5747. default: true
  5748. },
  5749. {
  5750. name: "Macro",
  5751. height: math.unit(120, "feet")
  5752. },
  5753. ]
  5754. ))
  5755. characterMakers.push(() => makeCharacter(
  5756. { name: "Mira al-Cul" },
  5757. {
  5758. lamp: {
  5759. height: math.unit(7 * 1559 / 989, "feet"),
  5760. name: "Magic Lamp",
  5761. image: {
  5762. source: "./media/characters/mira-al-cul/lamp.svg",
  5763. extra: 1617 / 1559
  5764. }
  5765. },
  5766. front: {
  5767. height: math.unit(7, "feet"),
  5768. name: "Front",
  5769. image: {
  5770. source: "./media/characters/mira-al-cul/front.svg",
  5771. extra: 1044 / 990
  5772. }
  5773. },
  5774. },
  5775. [
  5776. {
  5777. name: "Heavily Restricted",
  5778. height: math.unit(7 * 1559 / 989, "feet")
  5779. },
  5780. {
  5781. name: "Freshly Freed",
  5782. height: math.unit(50 * 1559 / 989, "feet")
  5783. },
  5784. {
  5785. name: "World Encompassing",
  5786. height: math.unit(10000 * 1559 / 989, "miles")
  5787. },
  5788. {
  5789. name: "Galactic",
  5790. height: math.unit(1.433 * 1559 / 989, "zettameters")
  5791. },
  5792. {
  5793. name: "Palmed Universe",
  5794. height: math.unit(6000 * 1559 / 989, "yottameters"),
  5795. default: true
  5796. },
  5797. {
  5798. name: "Multiversal Matriarch",
  5799. height: math.unit(8.87e10, "yottameters")
  5800. },
  5801. {
  5802. name: "Void Mother",
  5803. height: math.unit(3.14e110, "yottaparsecs")
  5804. },
  5805. ]
  5806. ))
  5807. characterMakers.push(() => makeCharacter(
  5808. { name: "Kuro-shi Uchū" },
  5809. {
  5810. front: {
  5811. height: math.unit(17 + 1 / 12, "feet"),
  5812. weight: math.unit(476.2 * 5, "lbs"),
  5813. name: "Front",
  5814. image: {
  5815. source: "./media/characters/kuro-shi-uchū/front.svg",
  5816. extra: 2329 / 1835,
  5817. bottom: 0.02
  5818. }
  5819. },
  5820. },
  5821. [
  5822. {
  5823. name: "Micro",
  5824. height: math.unit(2, "inches")
  5825. },
  5826. {
  5827. name: "Normal",
  5828. height: math.unit(12, "meters")
  5829. },
  5830. {
  5831. name: "Planetary",
  5832. height: math.unit(0.00929, "AU"),
  5833. default: true
  5834. },
  5835. {
  5836. name: "Universal",
  5837. height: math.unit(20, "gigaparsecs")
  5838. },
  5839. ]
  5840. ))
  5841. characterMakers.push(() => makeCharacter(
  5842. { name: "Katherine" },
  5843. {
  5844. front: {
  5845. height: math.unit(5 + 2 / 12, "feet"),
  5846. weight: math.unit(120, "lbs"),
  5847. name: "Front",
  5848. image: {
  5849. source: "./media/characters/katherine/front.svg",
  5850. extra: 2075 / 1969
  5851. }
  5852. },
  5853. dress: {
  5854. height: math.unit(5 + 2 / 12, "feet"),
  5855. weight: math.unit(120, "lbs"),
  5856. name: "Dress",
  5857. image: {
  5858. source: "./media/characters/katherine/dress.svg",
  5859. extra: 2258 / 2064
  5860. }
  5861. },
  5862. },
  5863. [
  5864. {
  5865. name: "Micro",
  5866. height: math.unit(1, "inches"),
  5867. default: true
  5868. },
  5869. {
  5870. name: "Normal",
  5871. height: math.unit(5 + 2 / 12, "feet")
  5872. },
  5873. {
  5874. name: "Macro",
  5875. height: math.unit(100, "meters")
  5876. },
  5877. {
  5878. name: "Megamacro",
  5879. height: math.unit(80, "miles")
  5880. },
  5881. ]
  5882. ))
  5883. characterMakers.push(() => makeCharacter(
  5884. { name: "Yevis" },
  5885. {
  5886. front: {
  5887. height: math.unit(7 + 8 / 12, "feet"),
  5888. weight: math.unit(250, "lbs"),
  5889. name: "Front",
  5890. image: {
  5891. source: "./media/characters/yevis/front.svg",
  5892. extra: 1938 / 1755
  5893. }
  5894. }
  5895. },
  5896. [
  5897. {
  5898. name: "Mortal",
  5899. height: math.unit(7 + 8 / 12, "feet")
  5900. },
  5901. {
  5902. name: "Battle",
  5903. height: math.unit(25 + 11 / 12, "feet")
  5904. },
  5905. {
  5906. name: "Wrath",
  5907. height: math.unit(1654 + 11 / 12, "feet")
  5908. },
  5909. {
  5910. name: "Planet Destroyer",
  5911. height: math.unit(12000, "miles")
  5912. },
  5913. {
  5914. name: "Galaxy Conqueror",
  5915. height: math.unit(1.45, "zettameters"),
  5916. default: true
  5917. },
  5918. {
  5919. name: "Universal War",
  5920. height: math.unit(184, "gigaparsecs")
  5921. },
  5922. {
  5923. name: "Eternity War",
  5924. height: math.unit(1.98e55, "yottaparsecs")
  5925. },
  5926. ]
  5927. ))
  5928. characterMakers.push(() => makeCharacter(
  5929. { name: "Xavier" },
  5930. {
  5931. front: {
  5932. height: math.unit(5 + 8 / 12, "feet"),
  5933. weight: math.unit(63, "kg"),
  5934. name: "Front",
  5935. image: {
  5936. source: "./media/characters/xavier/front.svg",
  5937. extra: 944 / 883
  5938. }
  5939. },
  5940. frontStretch: {
  5941. height: math.unit(5 + 8 / 12, "feet"),
  5942. weight: math.unit(63, "kg"),
  5943. name: "Stretching",
  5944. image: {
  5945. source: "./media/characters/xavier/front-stretch.svg",
  5946. extra: 962 / 820
  5947. }
  5948. },
  5949. },
  5950. [
  5951. {
  5952. name: "Normal",
  5953. height: math.unit(5 + 8 / 12, "feet")
  5954. },
  5955. {
  5956. name: "Macro",
  5957. height: math.unit(100, "meters"),
  5958. default: true
  5959. },
  5960. {
  5961. name: "McLargeHuge",
  5962. height: math.unit(10, "miles")
  5963. },
  5964. ]
  5965. ))
  5966. characterMakers.push(() => makeCharacter(
  5967. { name: "Joshii" },
  5968. {
  5969. front: {
  5970. height: math.unit(5 + 5 / 12, "feet"),
  5971. weight: math.unit(150, "lb"),
  5972. name: "Front",
  5973. image: {
  5974. source: "./media/characters/joshii/front.svg"
  5975. }
  5976. },
  5977. foot: {
  5978. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  5979. name: "Foot",
  5980. image: {
  5981. source: "./media/characters/joshii/foot.svg"
  5982. }
  5983. },
  5984. },
  5985. [
  5986. {
  5987. name: "Micro",
  5988. height: math.unit(2, "inches")
  5989. },
  5990. {
  5991. name: "Normal",
  5992. height: math.unit(5 + 5 / 12, "feet"),
  5993. default: true
  5994. },
  5995. {
  5996. name: "Macro",
  5997. height: math.unit(785, "feet")
  5998. },
  5999. {
  6000. name: "Megamacro",
  6001. height: math.unit(24.5, "miles")
  6002. },
  6003. ]
  6004. ))
  6005. characterMakers.push(() => makeCharacter(
  6006. { name: "Goddess Elizabeth" },
  6007. {
  6008. front: {
  6009. height: math.unit(6, "feet"),
  6010. weight: math.unit(150, "lb"),
  6011. name: "Front",
  6012. image: {
  6013. source: "./media/characters/goddess-elizabeth/front.svg",
  6014. extra: 1800 / 1525,
  6015. bottom: 0.005
  6016. }
  6017. },
  6018. foot: {
  6019. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6020. name: "Foot",
  6021. image: {
  6022. source: "./media/characters/goddess-elizabeth/foot.svg"
  6023. }
  6024. },
  6025. },
  6026. [
  6027. {
  6028. name: "Micro",
  6029. height: math.unit(12, "feet")
  6030. },
  6031. {
  6032. name: "Normal",
  6033. height: math.unit(80, "miles"),
  6034. default: true
  6035. },
  6036. {
  6037. name: "Macro",
  6038. height: math.unit(15000, "parsecs")
  6039. },
  6040. ]
  6041. ))
  6042. characterMakers.push(() => makeCharacter(
  6043. { name: "Kara" },
  6044. {
  6045. front: {
  6046. height: math.unit(5 + 9 / 12, "feet"),
  6047. weight: math.unit(144, "lb"),
  6048. name: "Front",
  6049. image: {
  6050. source: "./media/characters/kara/front.svg"
  6051. }
  6052. },
  6053. feet: {
  6054. height: math.unit(6 / 6.765, "feet"),
  6055. name: "Kara's Feet",
  6056. rename: true,
  6057. image: {
  6058. source: "./media/characters/kara/feet.svg"
  6059. }
  6060. },
  6061. },
  6062. [
  6063. {
  6064. name: "Normal",
  6065. height: math.unit(5 + 9 / 12, "feet")
  6066. },
  6067. {
  6068. name: "Macro",
  6069. height: math.unit(174, "feet"),
  6070. default: true
  6071. },
  6072. ]
  6073. ))
  6074. characterMakers.push(() => makeCharacter(
  6075. { name: "Tyrone" },
  6076. {
  6077. front: {
  6078. height: math.unit(18, "feet"),
  6079. weight: math.unit(4050, "lb"),
  6080. name: "Front",
  6081. image: {
  6082. source: "./media/characters/tyrone/front.svg",
  6083. extra: 2520 / 2402,
  6084. bottom: 0.025
  6085. }
  6086. },
  6087. },
  6088. [
  6089. {
  6090. name: "Normal",
  6091. height: math.unit(18, "feet"),
  6092. default: true
  6093. },
  6094. {
  6095. name: "Macro",
  6096. height: math.unit(300, "feet")
  6097. },
  6098. ]
  6099. ))
  6100. characterMakers.push(() => makeCharacter(
  6101. { name: "Danny" },
  6102. {
  6103. front: {
  6104. height: math.unit(7 + 8 / 12, "feet"),
  6105. weight: math.unit(120, "lb"),
  6106. name: "Front",
  6107. image: {
  6108. source: "./media/characters/danny/front.svg",
  6109. extra: 1490 / 1350
  6110. }
  6111. },
  6112. back: {
  6113. height: math.unit(7 + 8 / 12, "feet"),
  6114. weight: math.unit(120, "lb"),
  6115. name: "Back",
  6116. image: {
  6117. source: "./media/characters/danny/back.svg",
  6118. extra: 1490 / 1350
  6119. }
  6120. },
  6121. },
  6122. [
  6123. {
  6124. name: "Normal",
  6125. height: math.unit(7 + 8 / 12, "feet"),
  6126. default: true
  6127. },
  6128. ]
  6129. ))
  6130. characterMakers.push(() => makeCharacter(
  6131. { name: "Mallow" },
  6132. {
  6133. front: {
  6134. height: math.unit(3.5, "inches"),
  6135. weight: math.unit(19, "grams"),
  6136. name: "Front",
  6137. image: {
  6138. source: "./media/characters/mallow/front.svg",
  6139. extra: 471 / 431
  6140. }
  6141. },
  6142. back: {
  6143. height: math.unit(3.5, "inches"),
  6144. weight: math.unit(19, "grams"),
  6145. name: "Back",
  6146. image: {
  6147. source: "./media/characters/mallow/back.svg",
  6148. extra: 471 / 431
  6149. }
  6150. },
  6151. },
  6152. [
  6153. {
  6154. name: "Normal",
  6155. height: math.unit(3.5, "inches"),
  6156. default: true
  6157. },
  6158. ]
  6159. ))
  6160. characterMakers.push(() => makeCharacter(
  6161. { name: "Starry Aqua" },
  6162. {
  6163. front: {
  6164. height: math.unit(9, "feet"),
  6165. weight: math.unit(230, "kg"),
  6166. name: "Front",
  6167. image: {
  6168. source: "./media/characters/starry-aqua/front.svg"
  6169. }
  6170. },
  6171. back: {
  6172. height: math.unit(9, "feet"),
  6173. weight: math.unit(230, "kg"),
  6174. name: "Back",
  6175. image: {
  6176. source: "./media/characters/starry-aqua/back.svg"
  6177. }
  6178. },
  6179. hand: {
  6180. height: math.unit(9 * 0.1168, "feet"),
  6181. name: "Hand",
  6182. image: {
  6183. source: "./media/characters/starry-aqua/hand.svg"
  6184. }
  6185. },
  6186. foot: {
  6187. height: math.unit(9 * 0.18, "feet"),
  6188. name: "Foot",
  6189. image: {
  6190. source: "./media/characters/starry-aqua/foot.svg"
  6191. }
  6192. }
  6193. },
  6194. [
  6195. {
  6196. name: "Micro",
  6197. height: math.unit(3, "inches")
  6198. },
  6199. {
  6200. name: "Normal",
  6201. height: math.unit(9, "feet")
  6202. },
  6203. {
  6204. name: "Macro",
  6205. height: math.unit(300, "feet"),
  6206. default: true
  6207. },
  6208. {
  6209. name: "Megamacro",
  6210. height: math.unit(3200, "feet")
  6211. }
  6212. ]
  6213. ))
  6214. characterMakers.push(() => makeCharacter(
  6215. { name: "Luka" },
  6216. {
  6217. front: {
  6218. height: math.unit(6, "feet"),
  6219. weight: math.unit(230, "lb"),
  6220. name: "Front",
  6221. image: {
  6222. source: "./media/characters/luka/front.svg",
  6223. extra: 1,
  6224. bottom: 0.025
  6225. }
  6226. },
  6227. },
  6228. [
  6229. {
  6230. name: "Normal",
  6231. height: math.unit(12 + 8 / 12, "feet"),
  6232. default: true
  6233. },
  6234. {
  6235. name: "Minimacro",
  6236. height: math.unit(20, "feet")
  6237. },
  6238. {
  6239. name: "Macro",
  6240. height: math.unit(250, "feet")
  6241. },
  6242. {
  6243. name: "Megamacro",
  6244. height: math.unit(5, "miles")
  6245. },
  6246. {
  6247. name: "Gigamacro",
  6248. height: math.unit(8000, "miles")
  6249. },
  6250. ]
  6251. ))
  6252. characterMakers.push(() => makeCharacter(
  6253. { name: "Natalie Nightring" },
  6254. {
  6255. front: {
  6256. height: math.unit(6, "feet"),
  6257. weight: math.unit(150, "lb"),
  6258. name: "Front",
  6259. image: {
  6260. source: "./media/characters/natalie-nightring/front.svg",
  6261. extra: 1,
  6262. bottom: 0.06
  6263. }
  6264. },
  6265. },
  6266. [
  6267. {
  6268. name: "Uh Oh",
  6269. height: math.unit(0.1, "mm")
  6270. },
  6271. {
  6272. name: "Small",
  6273. height: math.unit(3, "inches")
  6274. },
  6275. {
  6276. name: "Human Scale",
  6277. height: math.unit(6, "feet")
  6278. },
  6279. {
  6280. name: "Librarian",
  6281. height: math.unit(50, "feet"),
  6282. default: true
  6283. },
  6284. {
  6285. name: "Immense",
  6286. height: math.unit(200, "miles")
  6287. },
  6288. ]
  6289. ))
  6290. characterMakers.push(() => makeCharacter(
  6291. { name: "Danni Rosie" },
  6292. {
  6293. front: {
  6294. height: math.unit(6, "feet"),
  6295. weight: math.unit(180, "lbs"),
  6296. name: "Front",
  6297. image: {
  6298. source: "./media/characters/danni-rosie/front.svg",
  6299. extra: 1260 / 1128,
  6300. bottom: 0.022
  6301. }
  6302. },
  6303. },
  6304. [
  6305. {
  6306. name: "Micro",
  6307. height: math.unit(2, "inches"),
  6308. default: true
  6309. },
  6310. ]
  6311. ))
  6312. characterMakers.push(() => makeCharacter(
  6313. { name: "Samantha Kruse" },
  6314. {
  6315. front: {
  6316. height: math.unit(5 + 9 / 12, "feet"),
  6317. weight: math.unit(220, "lb"),
  6318. name: "Front",
  6319. image: {
  6320. source: "./media/characters/samantha-kruse/front.svg",
  6321. extra: (985 / 935),
  6322. bottom: 0.03
  6323. }
  6324. },
  6325. frontUndressed: {
  6326. height: math.unit(5 + 9 / 12, "feet"),
  6327. weight: math.unit(220, "lb"),
  6328. name: "Front (Undressed)",
  6329. image: {
  6330. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6331. extra: (973 / 923),
  6332. bottom: 0.025
  6333. }
  6334. },
  6335. fat: {
  6336. height: math.unit(5 + 9 / 12, "feet"),
  6337. weight: math.unit(900, "lb"),
  6338. name: "Front (Fat)",
  6339. image: {
  6340. source: "./media/characters/samantha-kruse/fat.svg",
  6341. extra: 2688 / 2561
  6342. }
  6343. },
  6344. },
  6345. [
  6346. {
  6347. name: "Normal",
  6348. height: math.unit(5 + 9 / 12, "feet"),
  6349. default: true
  6350. }
  6351. ]
  6352. ))
  6353. characterMakers.push(() => makeCharacter(
  6354. { name: "Amelia Rosie" },
  6355. {
  6356. back: {
  6357. height: math.unit(5 + 4 / 12, "feet"),
  6358. weight: math.unit(4963, "lb"),
  6359. name: "Back",
  6360. image: {
  6361. source: "./media/characters/amelia-rosie/back.svg",
  6362. extra: 1113 / 963,
  6363. bottom: 0.01
  6364. }
  6365. },
  6366. },
  6367. [
  6368. {
  6369. name: "Level 0",
  6370. height: math.unit(5 + 4 / 12, "feet")
  6371. },
  6372. {
  6373. name: "Level 1",
  6374. height: math.unit(164597, "feet"),
  6375. default: true
  6376. },
  6377. {
  6378. name: "Level 2",
  6379. height: math.unit(956243, "miles")
  6380. },
  6381. {
  6382. name: "Level 3",
  6383. height: math.unit(29421709423, "miles")
  6384. },
  6385. {
  6386. name: "Level 4",
  6387. height: math.unit(154, "lightyears")
  6388. },
  6389. {
  6390. name: "Level 5",
  6391. height: math.unit(4738272, "lightyears")
  6392. },
  6393. {
  6394. name: "Level 6",
  6395. height: math.unit(145787152896, "lightyears")
  6396. },
  6397. ]
  6398. ))
  6399. characterMakers.push(() => makeCharacter(
  6400. { name: "Rook Kitara" },
  6401. {
  6402. front: {
  6403. height: math.unit(5 + 11 / 12, "feet"),
  6404. weight: math.unit(65, "kg"),
  6405. name: "Front",
  6406. image: {
  6407. source: "./media/characters/rook-kitara/front.svg",
  6408. extra: 1347 / 1274,
  6409. bottom: 0.005
  6410. }
  6411. },
  6412. },
  6413. [
  6414. {
  6415. name: "Totally Unfair",
  6416. height: math.unit(1.8, "mm")
  6417. },
  6418. {
  6419. name: "Lap Rookie",
  6420. height: math.unit(1.4, "feet")
  6421. },
  6422. {
  6423. name: "Normal",
  6424. height: math.unit(5 + 11 / 12, "feet"),
  6425. default: true
  6426. },
  6427. {
  6428. name: "How Did This Happen",
  6429. height: math.unit(80, "miles")
  6430. }
  6431. ]
  6432. ))
  6433. characterMakers.push(() => makeCharacter(
  6434. { name: "Pisces" },
  6435. {
  6436. front: {
  6437. height: math.unit(7, "feet"),
  6438. weight: math.unit(300, "lb"),
  6439. name: "Front",
  6440. image: {
  6441. source: "./media/characters/pisces/front.svg",
  6442. extra: 2255 / 2115,
  6443. bottom: 0.03
  6444. }
  6445. },
  6446. back: {
  6447. height: math.unit(7, "feet"),
  6448. weight: math.unit(300, "lb"),
  6449. name: "Back",
  6450. image: {
  6451. source: "./media/characters/pisces/back.svg",
  6452. extra: 2146 / 2055,
  6453. bottom: 0.04
  6454. }
  6455. },
  6456. },
  6457. [
  6458. {
  6459. name: "Normal",
  6460. height: math.unit(7, "feet"),
  6461. default: true
  6462. },
  6463. {
  6464. name: "Swimming Pool",
  6465. height: math.unit(12.2, "meters")
  6466. },
  6467. {
  6468. name: "Olympic Swimming Pool",
  6469. height: math.unit(56.3, "meters")
  6470. },
  6471. {
  6472. name: "Lake Superior",
  6473. height: math.unit(93900, "meters")
  6474. },
  6475. {
  6476. name: "Mediterranean Sea",
  6477. height: math.unit(644457, "meters")
  6478. },
  6479. {
  6480. name: "World's Oceans",
  6481. height: math.unit(4567491, "meters")
  6482. },
  6483. ]
  6484. ))
  6485. characterMakers.push(() => makeCharacter(
  6486. { name: "Zelas" },
  6487. {
  6488. front: {
  6489. height: math.unit(2.3, "meters"),
  6490. weight: math.unit(120, "kg"),
  6491. name: "Front",
  6492. image: {
  6493. source: "./media/characters/zelas/front.svg"
  6494. }
  6495. },
  6496. side: {
  6497. height: math.unit(2.3, "meters"),
  6498. weight: math.unit(120, "kg"),
  6499. name: "Side",
  6500. image: {
  6501. source: "./media/characters/zelas/side.svg"
  6502. }
  6503. },
  6504. back: {
  6505. height: math.unit(2.3, "meters"),
  6506. weight: math.unit(120, "kg"),
  6507. name: "Back",
  6508. image: {
  6509. source: "./media/characters/zelas/back.svg"
  6510. }
  6511. },
  6512. foot: {
  6513. height: math.unit(1.116, "feet"),
  6514. name: "Foot",
  6515. image: {
  6516. source: "./media/characters/zelas/foot.svg"
  6517. }
  6518. },
  6519. },
  6520. [
  6521. {
  6522. name: "Normal",
  6523. height: math.unit(2.3, "meters")
  6524. },
  6525. {
  6526. name: "Macro",
  6527. height: math.unit(30, "meters"),
  6528. default: true
  6529. },
  6530. ]
  6531. ))
  6532. characterMakers.push(() => makeCharacter(
  6533. { name: "Talbot" },
  6534. {
  6535. front: {
  6536. height: math.unit(1, "inch"),
  6537. weight: math.unit(0.21, "grams"),
  6538. name: "Front",
  6539. image: {
  6540. source: "./media/characters/talbot/front.svg",
  6541. extra: 594 / 544
  6542. }
  6543. },
  6544. },
  6545. [
  6546. {
  6547. name: "Micro",
  6548. height: math.unit(1, "inch"),
  6549. default: true
  6550. },
  6551. ]
  6552. ))
  6553. characterMakers.push(() => makeCharacter(
  6554. { name: "Fliss" },
  6555. {
  6556. front: {
  6557. height: math.unit(3 + 3 / 12, "feet"),
  6558. weight: math.unit(51.8, "lb"),
  6559. name: "Front",
  6560. image: {
  6561. source: "./media/characters/fliss/front.svg",
  6562. extra: 840 / 640
  6563. }
  6564. },
  6565. },
  6566. [
  6567. {
  6568. name: "Teeny Tiny",
  6569. height: math.unit(1, "mm")
  6570. },
  6571. {
  6572. name: "Small",
  6573. height: math.unit(1, "inch"),
  6574. default: true
  6575. },
  6576. {
  6577. name: "Standard Sylveon",
  6578. height: math.unit(3 + 3 / 12, "feet")
  6579. },
  6580. {
  6581. name: "Large Nuisance",
  6582. height: math.unit(33, "feet")
  6583. },
  6584. {
  6585. name: "City Filler",
  6586. height: math.unit(3000, "feet")
  6587. },
  6588. {
  6589. name: "New Horizon",
  6590. height: math.unit(6000, "miles")
  6591. },
  6592. ]
  6593. ))
  6594. characterMakers.push(() => makeCharacter(
  6595. { name: "Fleta" },
  6596. {
  6597. front: {
  6598. height: math.unit(5, "cm"),
  6599. weight: math.unit(1.94, "g"),
  6600. name: "Front",
  6601. image: {
  6602. source: "./media/characters/fleta/front.svg",
  6603. extra: 835 / 803
  6604. }
  6605. },
  6606. back: {
  6607. height: math.unit(5, "cm"),
  6608. weight: math.unit(1.94, "g"),
  6609. name: "Back",
  6610. image: {
  6611. source: "./media/characters/fleta/back.svg",
  6612. extra: 835 / 803
  6613. }
  6614. },
  6615. },
  6616. [
  6617. {
  6618. name: "Micro",
  6619. height: math.unit(5, "cm"),
  6620. default: true
  6621. },
  6622. ]
  6623. ))
  6624. characterMakers.push(() => makeCharacter(
  6625. { name: "Dominic" },
  6626. {
  6627. front: {
  6628. height: math.unit(6, "feet"),
  6629. weight: math.unit(225, "lb"),
  6630. name: "Front",
  6631. image: {
  6632. source: "./media/characters/dominic/front.svg",
  6633. extra: 1770 / 1620,
  6634. bottom: 0.025
  6635. }
  6636. },
  6637. back: {
  6638. height: math.unit(6, "feet"),
  6639. weight: math.unit(225, "lb"),
  6640. name: "Back",
  6641. image: {
  6642. source: "./media/characters/dominic/back.svg",
  6643. extra: 1745 / 1620,
  6644. bottom: 0.065
  6645. }
  6646. },
  6647. },
  6648. [
  6649. {
  6650. name: "Nano",
  6651. height: math.unit(0.1, "mm")
  6652. },
  6653. {
  6654. name: "Micro-",
  6655. height: math.unit(1, "mm")
  6656. },
  6657. {
  6658. name: "Micro",
  6659. height: math.unit(4, "inches")
  6660. },
  6661. {
  6662. name: "Normal",
  6663. height: math.unit(6 + 4 / 12, "feet"),
  6664. default: true
  6665. },
  6666. {
  6667. name: "Macro",
  6668. height: math.unit(115, "feet")
  6669. },
  6670. {
  6671. name: "Macro+",
  6672. height: math.unit(955, "feet")
  6673. },
  6674. {
  6675. name: "Megamacro",
  6676. height: math.unit(8990, "feet")
  6677. },
  6678. {
  6679. name: "Gigmacro",
  6680. height: math.unit(9310, "miles")
  6681. },
  6682. {
  6683. name: "Teramacro",
  6684. height: math.unit(1567005010, "miles")
  6685. },
  6686. {
  6687. name: "Examacro",
  6688. height: math.unit(1425, "parsecs")
  6689. },
  6690. ]
  6691. ))
  6692. characterMakers.push(() => makeCharacter(
  6693. { name: "Major Colonel" },
  6694. {
  6695. front: {
  6696. height: math.unit(400, "feet"),
  6697. weight: math.unit(44444444, "lb"),
  6698. name: "Front",
  6699. image: {
  6700. source: "./media/characters/major-colonel/front.svg"
  6701. }
  6702. },
  6703. back: {
  6704. height: math.unit(400, "feet"),
  6705. weight: math.unit(44444444, "lb"),
  6706. name: "Back",
  6707. image: {
  6708. source: "./media/characters/major-colonel/back.svg"
  6709. }
  6710. },
  6711. },
  6712. [
  6713. {
  6714. name: "Macro",
  6715. height: math.unit(400, "feet"),
  6716. default: true
  6717. },
  6718. ]
  6719. ))
  6720. characterMakers.push(() => makeCharacter(
  6721. { name: "Axel Lycan" },
  6722. {
  6723. front: {
  6724. height: math.unit(6, "feet"),
  6725. weight: math.unit(120, "lb"),
  6726. name: "Front",
  6727. image: {
  6728. source: "./media/characters/axel-lycan/front.svg",
  6729. extra: 1,
  6730. bottom: 0.08
  6731. }
  6732. },
  6733. },
  6734. [
  6735. {
  6736. name: "Macro",
  6737. height: math.unit(1, "km"),
  6738. default: true
  6739. },
  6740. ]
  6741. ))
  6742. characterMakers.push(() => makeCharacter(
  6743. { name: "Vanrel (Hyena)" },
  6744. {
  6745. front: {
  6746. height: math.unit(5 + 9 / 12, "feet"),
  6747. weight: math.unit(175, "lb"),
  6748. name: "Front",
  6749. image: {
  6750. source: "./media/characters/vanrel-hyena/front.svg",
  6751. extra: 1086 / 1010,
  6752. bottom: 0.04
  6753. }
  6754. },
  6755. },
  6756. [
  6757. {
  6758. name: "Normal",
  6759. height: math.unit(5 + 9 / 12, "feet"),
  6760. default: true
  6761. },
  6762. ]
  6763. ))
  6764. characterMakers.push(() => makeCharacter(
  6765. { name: "Abbott Absol" },
  6766. {
  6767. front: {
  6768. height: math.unit(6, "feet"),
  6769. weight: math.unit(103, "lb"),
  6770. name: "Front",
  6771. image: {
  6772. source: "./media/characters/abbott-absol/front.svg",
  6773. extra: 2010 / 1842
  6774. }
  6775. },
  6776. },
  6777. [
  6778. {
  6779. name: "Megamicro",
  6780. height: math.unit(0.1, "mm")
  6781. },
  6782. {
  6783. name: "Micro",
  6784. height: math.unit(1, "inch")
  6785. },
  6786. {
  6787. name: "Normal",
  6788. height: math.unit(6, "feet"),
  6789. default: true
  6790. },
  6791. ]
  6792. ))
  6793. characterMakers.push(() => makeCharacter(
  6794. { name: "Hector" },
  6795. {
  6796. front: {
  6797. height: math.unit(6, "feet"),
  6798. weight: math.unit(264, "lb"),
  6799. name: "Front",
  6800. image: {
  6801. source: "./media/characters/hector/front.svg",
  6802. extra: 2280 / 2130,
  6803. bottom: 0.07
  6804. }
  6805. },
  6806. },
  6807. [
  6808. {
  6809. name: "Normal",
  6810. height: math.unit(12.25, "foot"),
  6811. default: true
  6812. },
  6813. {
  6814. name: "Macro",
  6815. height: math.unit(160, "feet")
  6816. },
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Sal" },
  6821. {
  6822. front: {
  6823. height: math.unit(6, "feet"),
  6824. weight: math.unit(150, "lb"),
  6825. name: "Front",
  6826. image: {
  6827. source: "./media/characters/sal/front.svg",
  6828. extra: 1846 / 1699,
  6829. bottom: 0.04
  6830. }
  6831. },
  6832. },
  6833. [
  6834. {
  6835. name: "Megamacro",
  6836. height: math.unit(10, "miles"),
  6837. default: true
  6838. },
  6839. ]
  6840. ))
  6841. characterMakers.push(() => makeCharacter(
  6842. { name: "Ranger" },
  6843. {
  6844. front: {
  6845. height: math.unit(3, "meters"),
  6846. weight: math.unit(450, "kg"),
  6847. name: "front",
  6848. image: {
  6849. source: "./media/characters/ranger/front.svg",
  6850. extra: 2401 / 2243,
  6851. bottom: 0.05
  6852. }
  6853. },
  6854. },
  6855. [
  6856. {
  6857. name: "Normal",
  6858. height: math.unit(3, "meters"),
  6859. default: true
  6860. },
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Theresa" },
  6865. {
  6866. front: {
  6867. height: math.unit(14, "feet"),
  6868. weight: math.unit(800, "kg"),
  6869. name: "Front",
  6870. image: {
  6871. source: "./media/characters/theresa/front.svg",
  6872. extra: 3575 / 3346,
  6873. bottom: 0.03
  6874. }
  6875. },
  6876. },
  6877. [
  6878. {
  6879. name: "Normal",
  6880. height: math.unit(14, "feet"),
  6881. default: true
  6882. },
  6883. ]
  6884. ))
  6885. characterMakers.push(() => makeCharacter(
  6886. { name: "Ine" },
  6887. {
  6888. front: {
  6889. height: math.unit(6, "feet"),
  6890. weight: math.unit(3, "kg"),
  6891. name: "Front",
  6892. image: {
  6893. source: "./media/characters/ine/front.svg",
  6894. extra: 678 / 539,
  6895. bottom: 0.023
  6896. }
  6897. },
  6898. },
  6899. [
  6900. {
  6901. name: "Normal",
  6902. height: math.unit(2.265, "feet"),
  6903. default: true
  6904. },
  6905. ]
  6906. ))
  6907. characterMakers.push(() => makeCharacter(
  6908. { name: "Vial" },
  6909. {
  6910. front: {
  6911. height: math.unit(5, "feet"),
  6912. weight: math.unit(30, "kg"),
  6913. name: "Front",
  6914. image: {
  6915. source: "./media/characters/vial/front.svg",
  6916. extra: 1365 / 1277,
  6917. bottom: 0.04
  6918. }
  6919. },
  6920. },
  6921. [
  6922. {
  6923. name: "Normal",
  6924. height: math.unit(5, "feet"),
  6925. default: true
  6926. },
  6927. ]
  6928. ))
  6929. characterMakers.push(() => makeCharacter(
  6930. { name: "Rovoska" },
  6931. {
  6932. side: {
  6933. height: math.unit(3.4, "meters"),
  6934. weight: math.unit(1000, "lb"),
  6935. name: "Side",
  6936. image: {
  6937. source: "./media/characters/rovoska/side.svg",
  6938. extra: 4403 / 1515
  6939. }
  6940. },
  6941. },
  6942. [
  6943. {
  6944. name: "Normal",
  6945. height: math.unit(3.4, "meters"),
  6946. default: true
  6947. },
  6948. ]
  6949. ))
  6950. characterMakers.push(() => makeCharacter(
  6951. { name: "Gunner Rotthbauer" },
  6952. {
  6953. front: {
  6954. height: math.unit(8, "feet"),
  6955. weight: math.unit(315, "lb"),
  6956. name: "Front",
  6957. image: {
  6958. source: "./media/characters/gunner-rotthbauer/front.svg"
  6959. }
  6960. },
  6961. back: {
  6962. height: math.unit(8, "feet"),
  6963. weight: math.unit(315, "lb"),
  6964. name: "Back",
  6965. image: {
  6966. source: "./media/characters/gunner-rotthbauer/back.svg"
  6967. }
  6968. },
  6969. },
  6970. [
  6971. {
  6972. name: "Micro",
  6973. height: math.unit(3.5, "inches")
  6974. },
  6975. {
  6976. name: "Normal",
  6977. height: math.unit(8, "feet"),
  6978. default: true
  6979. },
  6980. {
  6981. name: "Macro",
  6982. height: math.unit(250, "feet")
  6983. },
  6984. {
  6985. name: "Megamacro",
  6986. height: math.unit(1, "AU")
  6987. },
  6988. ]
  6989. ))
  6990. characterMakers.push(() => makeCharacter(
  6991. { name: "Allatia" },
  6992. {
  6993. front: {
  6994. height: math.unit(5 + 5 / 12, "feet"),
  6995. weight: math.unit(140, "lb"),
  6996. name: "Front",
  6997. image: {
  6998. source: "./media/characters/allatia/front.svg",
  6999. extra: 1227 / 1180,
  7000. bottom: 0.027
  7001. }
  7002. },
  7003. },
  7004. [
  7005. {
  7006. name: "Normal",
  7007. height: math.unit(5 + 5 / 12, "feet")
  7008. },
  7009. {
  7010. name: "Macro",
  7011. height: math.unit(250, "feet"),
  7012. default: true
  7013. },
  7014. {
  7015. name: "Megamacro",
  7016. height: math.unit(8, "miles")
  7017. }
  7018. ]
  7019. ))
  7020. characterMakers.push(() => makeCharacter(
  7021. { name: "Tene" },
  7022. {
  7023. front: {
  7024. height: math.unit(6, "feet"),
  7025. weight: math.unit(120, "lb"),
  7026. name: "Front",
  7027. image: {
  7028. source: "./media/characters/tene/front.svg",
  7029. extra: 1728 / 1578,
  7030. bottom: 0.022
  7031. }
  7032. },
  7033. stomping: {
  7034. height: math.unit(2.025, "meters"),
  7035. weight: math.unit(120, "lb"),
  7036. name: "Stomping",
  7037. image: {
  7038. source: "./media/characters/tene/stomping.svg",
  7039. extra: 938 / 873,
  7040. bottom: 0.01
  7041. }
  7042. },
  7043. sitting: {
  7044. height: math.unit(1, "meter"),
  7045. weight: math.unit(120, "lb"),
  7046. name: "Sitting",
  7047. image: {
  7048. source: "./media/characters/tene/sitting.svg",
  7049. extra: 437 / 415,
  7050. bottom: 0.1
  7051. }
  7052. },
  7053. feral: {
  7054. height: math.unit(3.9, "feet"),
  7055. weight: math.unit(250, "lb"),
  7056. name: "Feral",
  7057. image: {
  7058. source: "./media/characters/tene/feral.svg",
  7059. extra: 717 / 458,
  7060. bottom: 0.179
  7061. }
  7062. },
  7063. },
  7064. [
  7065. {
  7066. name: "Normal",
  7067. height: math.unit(6, "feet")
  7068. },
  7069. {
  7070. name: "Macro",
  7071. height: math.unit(300, "feet"),
  7072. default: true
  7073. },
  7074. {
  7075. name: "Megamacro",
  7076. height: math.unit(5, "miles")
  7077. },
  7078. ]
  7079. ))
  7080. characterMakers.push(() => makeCharacter(
  7081. { name: "Evander" },
  7082. {
  7083. side: {
  7084. height: math.unit(6, "feet"),
  7085. name: "Side",
  7086. image: {
  7087. source: "./media/characters/evander/side.svg",
  7088. extra: 877 / 477
  7089. }
  7090. },
  7091. },
  7092. [
  7093. {
  7094. name: "Normal",
  7095. height: math.unit(0.83, "meters"),
  7096. default: true
  7097. },
  7098. ]
  7099. ))
  7100. characterMakers.push(() => makeCharacter(
  7101. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7102. {
  7103. front: {
  7104. height: math.unit(12, "feet"),
  7105. weight: math.unit(1000, "lb"),
  7106. name: "Front",
  7107. image: {
  7108. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7109. extra: 1762 / 1611
  7110. }
  7111. },
  7112. back: {
  7113. height: math.unit(12, "feet"),
  7114. weight: math.unit(1000, "lb"),
  7115. name: "Back",
  7116. image: {
  7117. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7118. extra: 1762 / 1611
  7119. }
  7120. },
  7121. },
  7122. [
  7123. {
  7124. name: "Normal",
  7125. height: math.unit(12, "feet"),
  7126. default: true
  7127. },
  7128. {
  7129. name: "Kaiju",
  7130. height: math.unit(150, "feet")
  7131. },
  7132. ]
  7133. ))
  7134. characterMakers.push(() => makeCharacter(
  7135. { name: "Zero Alurus" },
  7136. {
  7137. front: {
  7138. height: math.unit(6, "feet"),
  7139. weight: math.unit(150, "lb"),
  7140. name: "Front",
  7141. image: {
  7142. source: "./media/characters/zero-alurus/front.svg"
  7143. }
  7144. },
  7145. back: {
  7146. height: math.unit(6, "feet"),
  7147. weight: math.unit(150, "lb"),
  7148. name: "Back",
  7149. image: {
  7150. source: "./media/characters/zero-alurus/back.svg"
  7151. }
  7152. },
  7153. },
  7154. [
  7155. {
  7156. name: "Normal",
  7157. height: math.unit(5 + 10 / 12, "feet")
  7158. },
  7159. {
  7160. name: "Macro",
  7161. height: math.unit(60, "feet"),
  7162. default: true
  7163. },
  7164. {
  7165. name: "Macro+",
  7166. height: math.unit(450, "feet")
  7167. },
  7168. ]
  7169. ))
  7170. characterMakers.push(() => makeCharacter(
  7171. { name: "Mega Shi" },
  7172. {
  7173. front: {
  7174. height: math.unit(6, "feet"),
  7175. weight: math.unit(200, "lb"),
  7176. name: "Front",
  7177. image: {
  7178. source: "./media/characters/mega-shi/front.svg",
  7179. extra: 1279 / 1250,
  7180. bottom: 0.02
  7181. }
  7182. },
  7183. back: {
  7184. height: math.unit(6, "feet"),
  7185. weight: math.unit(200, "lb"),
  7186. name: "Back",
  7187. image: {
  7188. source: "./media/characters/mega-shi/back.svg",
  7189. extra: 1279 / 1250,
  7190. bottom: 0.02
  7191. }
  7192. },
  7193. },
  7194. [
  7195. {
  7196. name: "Micro",
  7197. height: math.unit(16 + 6 / 12, "feet")
  7198. },
  7199. {
  7200. name: "Normal",
  7201. height: math.unit(660, "feet"),
  7202. default: true
  7203. },
  7204. {
  7205. name: "Megamacro",
  7206. height: math.unit(10, "miles")
  7207. },
  7208. {
  7209. name: "Planetary Launch",
  7210. height: math.unit(500, "miles")
  7211. },
  7212. {
  7213. name: "Interstellar",
  7214. height: math.unit(1e9, "miles")
  7215. },
  7216. {
  7217. name: "Leaving the Universe",
  7218. height: math.unit(1, "gigaparsec")
  7219. },
  7220. {
  7221. name: "Travelling Universes",
  7222. height: math.unit(30e15, "parsecs")
  7223. },
  7224. ]
  7225. ))
  7226. characterMakers.push(() => makeCharacter(
  7227. { name: "Odyssey" },
  7228. {
  7229. front: {
  7230. height: math.unit(6, "feet"),
  7231. weight: math.unit(150, "lb"),
  7232. name: "Front",
  7233. image: {
  7234. source: "./media/characters/odyssey/front.svg",
  7235. extra: 1782 / 1582,
  7236. bottom: 0.01
  7237. }
  7238. },
  7239. side: {
  7240. height: math.unit(5.6, "feet"),
  7241. weight: math.unit(140, "lb"),
  7242. name: "Side",
  7243. image: {
  7244. source: "./media/characters/odyssey/side.svg",
  7245. extra: 6462 / 5700
  7246. }
  7247. },
  7248. },
  7249. [
  7250. {
  7251. name: "Normal",
  7252. height: math.unit(5 + 4 / 12, "feet")
  7253. },
  7254. {
  7255. name: "Macro",
  7256. height: math.unit(1, "km")
  7257. },
  7258. {
  7259. name: "Megamacro",
  7260. height: math.unit(3000, "km")
  7261. },
  7262. {
  7263. name: "Gigamacro",
  7264. height: math.unit(1, "AU"),
  7265. default: true
  7266. },
  7267. {
  7268. name: "Omniversal",
  7269. height: math.unit(100e14, "lightyears")
  7270. },
  7271. ]
  7272. ))
  7273. characterMakers.push(() => makeCharacter(
  7274. { name: "Mekuto" },
  7275. {
  7276. front: {
  7277. height: math.unit(6, "feet"),
  7278. weight: math.unit(300, "lb"),
  7279. name: "Front",
  7280. image: {
  7281. source: "./media/characters/mekuto/front.svg",
  7282. extra: 921 / 832,
  7283. bottom: 0.03
  7284. }
  7285. },
  7286. hand: {
  7287. height: math.unit(6 / 10.24, "feet"),
  7288. name: "Hand",
  7289. image: {
  7290. source: "./media/characters/mekuto/hand.svg"
  7291. }
  7292. },
  7293. foot: {
  7294. height: math.unit(6 / 5.05, "feet"),
  7295. name: "Foot",
  7296. image: {
  7297. source: "./media/characters/mekuto/foot.svg"
  7298. }
  7299. },
  7300. },
  7301. [
  7302. {
  7303. name: "Minimicro",
  7304. height: math.unit(0.2, "inches")
  7305. },
  7306. {
  7307. name: "Micro",
  7308. height: math.unit(1.5, "inches")
  7309. },
  7310. {
  7311. name: "Normal",
  7312. height: math.unit(5 + 11 / 12, "feet"),
  7313. default: true
  7314. },
  7315. {
  7316. name: "Minimacro",
  7317. height: math.unit(17 + 9 / 12, "feet")
  7318. },
  7319. {
  7320. name: "Macro",
  7321. height: math.unit(177.5, "feet")
  7322. },
  7323. {
  7324. name: "Megamacro",
  7325. height: math.unit(152, "miles")
  7326. },
  7327. ]
  7328. ))
  7329. characterMakers.push(() => makeCharacter(
  7330. { name: "Dafydd Tomos" },
  7331. {
  7332. front: {
  7333. height: math.unit(6.5, "inches"),
  7334. weight: math.unit(13, "oz"),
  7335. name: "Front",
  7336. image: {
  7337. source: "./media/characters/dafydd-tomos/front.svg",
  7338. extra: 2990 / 2603,
  7339. bottom: 0.03
  7340. }
  7341. },
  7342. },
  7343. [
  7344. {
  7345. name: "Micro",
  7346. height: math.unit(6.5, "inches"),
  7347. default: true
  7348. },
  7349. ]
  7350. ))
  7351. characterMakers.push(() => makeCharacter(
  7352. { name: "Splinter" },
  7353. {
  7354. front: {
  7355. height: math.unit(6, "feet"),
  7356. weight: math.unit(150, "lb"),
  7357. name: "Front",
  7358. image: {
  7359. source: "./media/characters/splinter/front.svg",
  7360. extra: 2990 / 2882,
  7361. bottom: 0.04
  7362. }
  7363. },
  7364. back: {
  7365. height: math.unit(6, "feet"),
  7366. weight: math.unit(150, "lb"),
  7367. name: "Back",
  7368. image: {
  7369. source: "./media/characters/splinter/back.svg",
  7370. extra: 2990 / 2882,
  7371. bottom: 0.04
  7372. }
  7373. },
  7374. },
  7375. [
  7376. {
  7377. name: "Normal",
  7378. height: math.unit(6, "feet")
  7379. },
  7380. {
  7381. name: "Macro",
  7382. height: math.unit(230, "meters"),
  7383. default: true
  7384. },
  7385. ]
  7386. ))
  7387. characterMakers.push(() => makeCharacter(
  7388. { name: "SnowGabumon" },
  7389. {
  7390. front: {
  7391. height: math.unit(4 + 10 / 12, "feet"),
  7392. weight: math.unit(480, "lb"),
  7393. name: "Front",
  7394. image: {
  7395. source: "./media/characters/snow-gabumon/front.svg",
  7396. extra: 1140 / 963,
  7397. bottom: 0.058
  7398. }
  7399. },
  7400. back: {
  7401. height: math.unit(4 + 10 / 12, "feet"),
  7402. weight: math.unit(480, "lb"),
  7403. name: "Back",
  7404. image: {
  7405. source: "./media/characters/snow-gabumon/back.svg",
  7406. extra: 1115 / 962,
  7407. bottom: 0.041
  7408. }
  7409. },
  7410. frontUndresed: {
  7411. height: math.unit(4 + 10 / 12, "feet"),
  7412. weight: math.unit(480, "lb"),
  7413. name: "Front (Undressed)",
  7414. image: {
  7415. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7416. extra: 1061 / 960,
  7417. bottom: 0.045
  7418. }
  7419. },
  7420. },
  7421. [
  7422. {
  7423. name: "Micro",
  7424. height: math.unit(1, "inch")
  7425. },
  7426. {
  7427. name: "Normal",
  7428. height: math.unit(4 + 10 / 12, "feet"),
  7429. default: true
  7430. },
  7431. {
  7432. name: "Macro",
  7433. height: math.unit(200, "feet")
  7434. },
  7435. {
  7436. name: "Megamacro",
  7437. height: math.unit(120, "miles")
  7438. },
  7439. {
  7440. name: "Gigamacro",
  7441. height: math.unit(9800, "miles")
  7442. },
  7443. ]
  7444. ))
  7445. characterMakers.push(() => makeCharacter(
  7446. { name: "Moody" },
  7447. {
  7448. front: {
  7449. height: math.unit(1.7, "meters"),
  7450. weight: math.unit(140, "lb"),
  7451. name: "Front",
  7452. image: {
  7453. source: "./media/characters/moody/front.svg",
  7454. extra: 3226 / 3007,
  7455. bottom: 0.087
  7456. }
  7457. },
  7458. },
  7459. [
  7460. {
  7461. name: "Micro",
  7462. height: math.unit(1, "mm")
  7463. },
  7464. {
  7465. name: "Normal",
  7466. height: math.unit(1.7, "meters"),
  7467. default: true
  7468. },
  7469. {
  7470. name: "Macro",
  7471. height: math.unit(80, "meters")
  7472. },
  7473. {
  7474. name: "Macro+",
  7475. height: math.unit(500, "meters")
  7476. },
  7477. ]
  7478. ))
  7479. characterMakers.push(() => makeCharacter(
  7480. { name: "Zyas" },
  7481. {
  7482. front: {
  7483. height: math.unit(6, "feet"),
  7484. weight: math.unit(150, "lb"),
  7485. name: "Front",
  7486. image: {
  7487. source: "./media/characters/zyas/front.svg",
  7488. extra: 1180 / 1120,
  7489. bottom: 0.045
  7490. }
  7491. },
  7492. },
  7493. [
  7494. {
  7495. name: "Normal",
  7496. height: math.unit(10, "feet"),
  7497. default: true
  7498. },
  7499. {
  7500. name: "Macro",
  7501. height: math.unit(500, "feet")
  7502. },
  7503. {
  7504. name: "Megamacro",
  7505. height: math.unit(5, "miles")
  7506. },
  7507. {
  7508. name: "Teramacro",
  7509. height: math.unit(150000, "miles")
  7510. },
  7511. ]
  7512. ))
  7513. characterMakers.push(() => makeCharacter(
  7514. { name: "Cuon" },
  7515. {
  7516. front: {
  7517. height: math.unit(6, "feet"),
  7518. weight: math.unit(150, "lb"),
  7519. name: "Front",
  7520. image: {
  7521. source: "./media/characters/cuon/front.svg",
  7522. extra: 1390 / 1320,
  7523. bottom: 0.008
  7524. }
  7525. },
  7526. },
  7527. [
  7528. {
  7529. name: "Micro",
  7530. height: math.unit(3, "inches")
  7531. },
  7532. {
  7533. name: "Normal",
  7534. height: math.unit(18 + 9 / 12, "feet"),
  7535. default: true
  7536. },
  7537. {
  7538. name: "Macro",
  7539. height: math.unit(360, "feet")
  7540. },
  7541. {
  7542. name: "Megamacro",
  7543. height: math.unit(360, "miles")
  7544. },
  7545. ]
  7546. ))
  7547. characterMakers.push(() => makeCharacter(
  7548. { name: "Nyanuxk" },
  7549. {
  7550. front: {
  7551. height: math.unit(2.4, "meters"),
  7552. weight: math.unit(70, "kg"),
  7553. name: "Front",
  7554. image: {
  7555. source: "./media/characters/nyanuxk/front.svg",
  7556. extra: 1172 / 1084,
  7557. bottom: 0.065
  7558. }
  7559. },
  7560. side: {
  7561. height: math.unit(2.4, "meters"),
  7562. weight: math.unit(70, "kg"),
  7563. name: "Side",
  7564. image: {
  7565. source: "./media/characters/nyanuxk/side.svg",
  7566. extra: 1190 / 1132,
  7567. bottom: 0.007
  7568. }
  7569. },
  7570. back: {
  7571. height: math.unit(2.4, "meters"),
  7572. weight: math.unit(70, "kg"),
  7573. name: "Back",
  7574. image: {
  7575. source: "./media/characters/nyanuxk/back.svg",
  7576. extra: 1200 / 1141,
  7577. bottom: 0.015
  7578. }
  7579. },
  7580. foot: {
  7581. height: math.unit(0.52, "meters"),
  7582. name: "Foot",
  7583. image: {
  7584. source: "./media/characters/nyanuxk/foot.svg"
  7585. }
  7586. },
  7587. },
  7588. [
  7589. {
  7590. name: "Micro",
  7591. height: math.unit(2, "cm")
  7592. },
  7593. {
  7594. name: "Normal",
  7595. height: math.unit(2.4, "meters"),
  7596. default: true
  7597. },
  7598. {
  7599. name: "Smaller Macro",
  7600. height: math.unit(120, "meters")
  7601. },
  7602. {
  7603. name: "Bigger Macro",
  7604. height: math.unit(1.2, "km")
  7605. },
  7606. {
  7607. name: "Megamacro",
  7608. height: math.unit(15, "kilometers")
  7609. },
  7610. {
  7611. name: "Gigamacro",
  7612. height: math.unit(2000, "km")
  7613. },
  7614. {
  7615. name: "Teramacro",
  7616. height: math.unit(500000, "km")
  7617. },
  7618. ]
  7619. ))
  7620. characterMakers.push(() => makeCharacter(
  7621. { name: "Ailbhe" },
  7622. {
  7623. side: {
  7624. height: math.unit(6, "feet"),
  7625. name: "Side",
  7626. image: {
  7627. source: "./media/characters/ailbhe/side.svg",
  7628. extra: 757 / 464,
  7629. bottom: 0.041
  7630. }
  7631. },
  7632. },
  7633. [
  7634. {
  7635. name: "Normal",
  7636. height: math.unit(1.07, "meters"),
  7637. default: true
  7638. },
  7639. ]
  7640. ))
  7641. characterMakers.push(() => makeCharacter(
  7642. { name: "Zevulfius" },
  7643. {
  7644. front: {
  7645. height: math.unit(6, "feet"),
  7646. weight: math.unit(120, "kg"),
  7647. name: "Front",
  7648. image: {
  7649. source: "./media/characters/zevulfius/front.svg",
  7650. extra: 965 / 903
  7651. }
  7652. },
  7653. side: {
  7654. height: math.unit(6, "feet"),
  7655. weight: math.unit(120, "kg"),
  7656. name: "Side",
  7657. image: {
  7658. source: "./media/characters/zevulfius/side.svg",
  7659. extra: 939 / 900
  7660. }
  7661. },
  7662. back: {
  7663. height: math.unit(6, "feet"),
  7664. weight: math.unit(120, "kg"),
  7665. name: "Back",
  7666. image: {
  7667. source: "./media/characters/zevulfius/back.svg",
  7668. extra: 918 / 854,
  7669. bottom: 0.005
  7670. }
  7671. },
  7672. foot: {
  7673. height: math.unit(6 / 3.72, "feet"),
  7674. name: "Foot",
  7675. image: {
  7676. source: "./media/characters/zevulfius/foot.svg"
  7677. }
  7678. },
  7679. },
  7680. [
  7681. {
  7682. name: "Macro",
  7683. height: math.unit(750, "meters")
  7684. },
  7685. {
  7686. name: "Megamacro",
  7687. height: math.unit(20, "km"),
  7688. default: true
  7689. },
  7690. {
  7691. name: "Gigamacro",
  7692. height: math.unit(2000, "km")
  7693. },
  7694. {
  7695. name: "Teramacro",
  7696. height: math.unit(250000, "km")
  7697. },
  7698. ]
  7699. ))
  7700. characterMakers.push(() => makeCharacter(
  7701. { name: "Rikes" },
  7702. {
  7703. front: {
  7704. height: math.unit(100, "feet"),
  7705. weight: math.unit(350, "kg"),
  7706. name: "Front",
  7707. image: {
  7708. source: "./media/characters/rikes/front.svg",
  7709. extra: 1565 / 1483,
  7710. bottom: 0.017
  7711. }
  7712. },
  7713. },
  7714. [
  7715. {
  7716. name: "Macro",
  7717. height: math.unit(100, "feet"),
  7718. default: true
  7719. },
  7720. ]
  7721. ))
  7722. characterMakers.push(() => makeCharacter(
  7723. { name: "Adam Silver-Mane" },
  7724. {
  7725. anthro: {
  7726. height: math.unit(8, "feet"),
  7727. weight: math.unit(120, "kg"),
  7728. name: "Anthro",
  7729. image: {
  7730. source: "./media/characters/adam-silver-mane/anthro.svg",
  7731. extra: 5743 / 5339,
  7732. bottom: 0.07
  7733. }
  7734. },
  7735. taur: {
  7736. height: math.unit(16, "feet"),
  7737. weight: math.unit(1500, "kg"),
  7738. name: "Taur",
  7739. image: {
  7740. source: "./media/characters/adam-silver-mane/taur.svg",
  7741. extra: 1713 / 1571,
  7742. bottom: 0.01
  7743. }
  7744. },
  7745. },
  7746. [
  7747. {
  7748. name: "Normal",
  7749. height: math.unit(8, "feet")
  7750. },
  7751. {
  7752. name: "Minimacro",
  7753. height: math.unit(80, "feet")
  7754. },
  7755. {
  7756. name: "Macro",
  7757. height: math.unit(800, "feet"),
  7758. default: true
  7759. },
  7760. {
  7761. name: "Megamacro",
  7762. height: math.unit(8000, "feet")
  7763. },
  7764. {
  7765. name: "Gigamacro",
  7766. height: math.unit(800, "miles")
  7767. },
  7768. {
  7769. name: "Teramacro",
  7770. height: math.unit(80000, "miles")
  7771. },
  7772. {
  7773. name: "Celestial",
  7774. height: math.unit(8e6, "miles")
  7775. },
  7776. {
  7777. name: "Star Dragon",
  7778. height: math.unit(800000, "parsecs")
  7779. },
  7780. {
  7781. name: "Godly",
  7782. height: math.unit(800, "teraparsecs")
  7783. },
  7784. ]
  7785. ))
  7786. characterMakers.push(() => makeCharacter(
  7787. { name: "Ky'owin" },
  7788. {
  7789. front: {
  7790. height: math.unit(6, "feet"),
  7791. weight: math.unit(150, "lb"),
  7792. name: "Front",
  7793. image: {
  7794. source: "./media/characters/ky'owin/front.svg",
  7795. extra: 3888 / 3068,
  7796. bottom: 0.015
  7797. }
  7798. },
  7799. },
  7800. [
  7801. {
  7802. name: "Normal",
  7803. height: math.unit(6 + 8 / 12, "feet")
  7804. },
  7805. {
  7806. name: "Large",
  7807. height: math.unit(68, "feet")
  7808. },
  7809. {
  7810. name: "Macro",
  7811. height: math.unit(132, "feet")
  7812. },
  7813. {
  7814. name: "Macro+",
  7815. height: math.unit(340, "feet")
  7816. },
  7817. {
  7818. name: "Macro++",
  7819. height: math.unit(680, "feet"),
  7820. default: true
  7821. },
  7822. {
  7823. name: "Megamacro",
  7824. height: math.unit(1, "mile")
  7825. },
  7826. {
  7827. name: "Megamacro+",
  7828. height: math.unit(10, "miles")
  7829. },
  7830. ]
  7831. ))
  7832. characterMakers.push(() => makeCharacter(
  7833. { name: "Mal" },
  7834. {
  7835. front: {
  7836. height: math.unit(4, "feet"),
  7837. weight: math.unit(50, "lb"),
  7838. name: "Front",
  7839. image: {
  7840. source: "./media/characters/mal/front.svg",
  7841. extra: 785 / 724,
  7842. bottom: 0.07
  7843. }
  7844. },
  7845. },
  7846. [
  7847. {
  7848. name: "Micro",
  7849. height: math.unit(4, "inches")
  7850. },
  7851. {
  7852. name: "Normal",
  7853. height: math.unit(4, "feet"),
  7854. default: true
  7855. },
  7856. {
  7857. name: "Macro",
  7858. height: math.unit(200, "feet")
  7859. },
  7860. ]
  7861. ))
  7862. characterMakers.push(() => makeCharacter(
  7863. { name: "Jordan Deware" },
  7864. {
  7865. front: {
  7866. height: math.unit(6, "feet"),
  7867. weight: math.unit(150, "lb"),
  7868. name: "Front",
  7869. image: {
  7870. source: "./media/characters/jordan-deware/front.svg",
  7871. extra: 1191 / 1012
  7872. }
  7873. },
  7874. },
  7875. [
  7876. {
  7877. name: "Nano",
  7878. height: math.unit(0.01, "mm")
  7879. },
  7880. {
  7881. name: "Minimicro",
  7882. height: math.unit(1, "mm")
  7883. },
  7884. {
  7885. name: "Micro",
  7886. height: math.unit(0.5, "inches")
  7887. },
  7888. {
  7889. name: "Normal",
  7890. height: math.unit(4, "feet"),
  7891. default: true
  7892. },
  7893. {
  7894. name: "Minimacro",
  7895. height: math.unit(40, "meters")
  7896. },
  7897. {
  7898. name: "Small Macro",
  7899. height: math.unit(400, "meters")
  7900. },
  7901. {
  7902. name: "Macro",
  7903. height: math.unit(4, "miles")
  7904. },
  7905. {
  7906. name: "Megamacro",
  7907. height: math.unit(40, "miles")
  7908. },
  7909. {
  7910. name: "Megamacro+",
  7911. height: math.unit(400, "miles")
  7912. },
  7913. {
  7914. name: "Gigamacro",
  7915. height: math.unit(400000, "miles")
  7916. },
  7917. ]
  7918. ))
  7919. characterMakers.push(() => makeCharacter(
  7920. { name: "Kimiko" },
  7921. {
  7922. side: {
  7923. height: math.unit(6, "feet"),
  7924. weight: math.unit(150, "lb"),
  7925. name: "Side",
  7926. image: {
  7927. source: "./media/characters/kimiko/side.svg",
  7928. extra: 600 / 358
  7929. }
  7930. },
  7931. },
  7932. [
  7933. {
  7934. name: "Normal",
  7935. height: math.unit(15, "feet"),
  7936. default: true
  7937. },
  7938. {
  7939. name: "Macro",
  7940. height: math.unit(220, "feet")
  7941. },
  7942. {
  7943. name: "Macro+",
  7944. height: math.unit(1450, "feet")
  7945. },
  7946. {
  7947. name: "Megamacro",
  7948. height: math.unit(11500, "feet")
  7949. },
  7950. {
  7951. name: "Gigamacro",
  7952. height: math.unit(9500, "miles")
  7953. },
  7954. {
  7955. name: "Teramacro",
  7956. height: math.unit(2208005005, "miles")
  7957. },
  7958. {
  7959. name: "Examacro",
  7960. height: math.unit(2750, "parsecs")
  7961. },
  7962. {
  7963. name: "Zettamacro",
  7964. height: math.unit(101500, "parsecs")
  7965. },
  7966. ]
  7967. ))
  7968. characterMakers.push(() => makeCharacter(
  7969. { name: "Andrew Sleepy" },
  7970. {
  7971. front: {
  7972. height: math.unit(6, "feet"),
  7973. weight: math.unit(70, "kg"),
  7974. name: "Front",
  7975. image: {
  7976. source: "./media/characters/andrew-sleepy/front.svg"
  7977. }
  7978. },
  7979. side: {
  7980. height: math.unit(6, "feet"),
  7981. weight: math.unit(70, "kg"),
  7982. name: "Side",
  7983. image: {
  7984. source: "./media/characters/andrew-sleepy/side.svg"
  7985. }
  7986. },
  7987. },
  7988. [
  7989. {
  7990. name: "Micro",
  7991. height: math.unit(1, "mm"),
  7992. default: true
  7993. },
  7994. ]
  7995. ))
  7996. characterMakers.push(() => makeCharacter(
  7997. { name: "Judio" },
  7998. {
  7999. front: {
  8000. height: math.unit(6, "feet"),
  8001. weight: math.unit(150, "lb"),
  8002. name: "Front",
  8003. image: {
  8004. source: "./media/characters/judio/front.svg",
  8005. extra: 1258 / 1110
  8006. }
  8007. },
  8008. },
  8009. [
  8010. {
  8011. name: "Normal",
  8012. height: math.unit(5 + 6 / 12, "feet")
  8013. },
  8014. {
  8015. name: "Macro",
  8016. height: math.unit(1000, "feet"),
  8017. default: true
  8018. },
  8019. {
  8020. name: "Megamacro",
  8021. height: math.unit(10, "miles")
  8022. },
  8023. ]
  8024. ))
  8025. characterMakers.push(() => makeCharacter(
  8026. { name: "Nomaxice" },
  8027. {
  8028. front: {
  8029. height: math.unit(6, "feet"),
  8030. weight: math.unit(68, "kg"),
  8031. name: "Front",
  8032. image: {
  8033. source: "./media/characters/nomaxice/front.svg",
  8034. extra: 1498 / 1073,
  8035. bottom: 0.075
  8036. }
  8037. },
  8038. foot: {
  8039. height: math.unit(1.1, "feet"),
  8040. name: "Foot",
  8041. image: {
  8042. source: "./media/characters/nomaxice/foot.svg"
  8043. }
  8044. },
  8045. },
  8046. [
  8047. {
  8048. name: "Micro",
  8049. height: math.unit(8, "cm")
  8050. },
  8051. {
  8052. name: "Norm",
  8053. height: math.unit(1.82, "m")
  8054. },
  8055. {
  8056. name: "Norm+",
  8057. height: math.unit(8.8, "feet")
  8058. },
  8059. {
  8060. name: "Big",
  8061. height: math.unit(8, "meters"),
  8062. default: true
  8063. },
  8064. {
  8065. name: "Macro",
  8066. height: math.unit(18, "meters")
  8067. },
  8068. {
  8069. name: "Macro+",
  8070. height: math.unit(88, "meters")
  8071. },
  8072. ]
  8073. ))
  8074. characterMakers.push(() => makeCharacter(
  8075. { name: "Dydros" },
  8076. {
  8077. front: {
  8078. height: math.unit(12, "feet"),
  8079. weight: math.unit(1.5, "tons"),
  8080. name: "Front",
  8081. image: {
  8082. source: "./media/characters/dydros/front.svg",
  8083. extra: 863 / 800,
  8084. bottom: 0.015
  8085. }
  8086. },
  8087. back: {
  8088. height: math.unit(12, "feet"),
  8089. weight: math.unit(1.5, "tons"),
  8090. name: "Back",
  8091. image: {
  8092. source: "./media/characters/dydros/back.svg",
  8093. extra: 900 / 843,
  8094. bottom: 0.005
  8095. }
  8096. },
  8097. },
  8098. [
  8099. {
  8100. name: "Normal",
  8101. height: math.unit(12, "feet"),
  8102. default: true
  8103. },
  8104. ]
  8105. ))
  8106. characterMakers.push(() => makeCharacter(
  8107. { name: "Riggi" },
  8108. {
  8109. front: {
  8110. height: math.unit(6, "feet"),
  8111. weight: math.unit(100, "kg"),
  8112. name: "Front",
  8113. image: {
  8114. source: "./media/characters/riggi/front.svg",
  8115. extra: 5787 / 5303
  8116. }
  8117. },
  8118. hyper: {
  8119. height: math.unit(6 * 5 / 3, "feet"),
  8120. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8121. name: "Hyper",
  8122. image: {
  8123. source: "./media/characters/riggi/hyper.svg",
  8124. extra: 3595 / 3485
  8125. }
  8126. },
  8127. },
  8128. [
  8129. {
  8130. name: "Small Macro",
  8131. height: math.unit(50, "feet")
  8132. },
  8133. {
  8134. name: "Default",
  8135. height: math.unit(200, "feet"),
  8136. default: true
  8137. },
  8138. {
  8139. name: "Loom",
  8140. height: math.unit(10000, "feet")
  8141. },
  8142. {
  8143. name: "Cruising Altitude",
  8144. height: math.unit(30000, "feet")
  8145. },
  8146. {
  8147. name: "Megamacro",
  8148. height: math.unit(100, "miles")
  8149. },
  8150. {
  8151. name: "Continent Sized",
  8152. height: math.unit(2800, "miles")
  8153. },
  8154. {
  8155. name: "Earth Sized",
  8156. height: math.unit(8000, "miles")
  8157. },
  8158. ]
  8159. ))
  8160. characterMakers.push(() => makeCharacter(
  8161. { name: "Alexi" },
  8162. {
  8163. front: {
  8164. height: math.unit(6, "feet"),
  8165. weight: math.unit(250, "lb"),
  8166. name: "Front",
  8167. image: {
  8168. source: "./media/characters/alexi/front.svg",
  8169. extra: 3483 / 3291,
  8170. bottom: 0.04
  8171. }
  8172. },
  8173. back: {
  8174. height: math.unit(6, "feet"),
  8175. weight: math.unit(250, "lb"),
  8176. name: "Back",
  8177. image: {
  8178. source: "./media/characters/alexi/back.svg",
  8179. extra: 3533 / 3356,
  8180. bottom: 0.021
  8181. }
  8182. },
  8183. frontTransformed: {
  8184. height: math.unit(12.5, "feet"),
  8185. weight: math.unit(4000, "lb"),
  8186. name: "Front (Transformed)",
  8187. image: {
  8188. source: "./media/characters/alexi/front-transformed.svg",
  8189. extra: 5345 / 5100,
  8190. bottom: 0.03
  8191. }
  8192. },
  8193. },
  8194. [
  8195. {
  8196. name: "Normal",
  8197. height: math.unit(3, "meters"),
  8198. default: true
  8199. },
  8200. {
  8201. name: "Minimacro",
  8202. height: math.unit(30, "meters")
  8203. },
  8204. {
  8205. name: "Macro",
  8206. height: math.unit(500, "meters")
  8207. },
  8208. {
  8209. name: "Megamacro",
  8210. height: math.unit(9000, "km")
  8211. },
  8212. {
  8213. name: "Teramacro",
  8214. height: math.unit(384000, "km")
  8215. },
  8216. ]
  8217. ))
  8218. characterMakers.push(() => makeCharacter(
  8219. { name: "Kayroo" },
  8220. {
  8221. front: {
  8222. height: math.unit(6, "feet"),
  8223. weight: math.unit(150, "lb"),
  8224. name: "Front",
  8225. image: {
  8226. source: "./media/characters/kayroo/front.svg",
  8227. extra: 1153 / 1038,
  8228. bottom: 0.06
  8229. }
  8230. },
  8231. foot: {
  8232. height: math.unit(6, "feet"),
  8233. weight: math.unit(150, "lb"),
  8234. name: "Foot",
  8235. image: {
  8236. source: "./media/characters/kayroo/foot.svg"
  8237. }
  8238. },
  8239. },
  8240. [
  8241. {
  8242. name: "Normal",
  8243. height: math.unit(8, "feet"),
  8244. default: true
  8245. },
  8246. {
  8247. name: "Minimacro",
  8248. height: math.unit(250, "feet")
  8249. },
  8250. {
  8251. name: "Macro",
  8252. height: math.unit(2800, "feet")
  8253. },
  8254. {
  8255. name: "Megamacro",
  8256. height: math.unit(5200, "feet")
  8257. },
  8258. {
  8259. name: "Gigamacro",
  8260. height: math.unit(27000, "feet")
  8261. },
  8262. {
  8263. name: "Omega",
  8264. height: math.unit(45000, "feet")
  8265. },
  8266. ]
  8267. ))
  8268. characterMakers.push(() => makeCharacter(
  8269. { name: "Rhys" },
  8270. {
  8271. front: {
  8272. height: math.unit(18, "feet"),
  8273. weight: math.unit(5800, "lb"),
  8274. name: "Front",
  8275. image: {
  8276. source: "./media/characters/rhys/front.svg",
  8277. extra: 3386 / 3090,
  8278. bottom: 0.07
  8279. }
  8280. },
  8281. },
  8282. [
  8283. {
  8284. name: "Normal",
  8285. height: math.unit(18, "feet"),
  8286. default: true
  8287. },
  8288. {
  8289. name: "Working Size",
  8290. height: math.unit(200, "feet")
  8291. },
  8292. {
  8293. name: "Demolition Size",
  8294. height: math.unit(2000, "feet")
  8295. },
  8296. {
  8297. name: "Maximum Licensed Size",
  8298. height: math.unit(5, "miles")
  8299. },
  8300. {
  8301. name: "Maximum Observed Size",
  8302. height: math.unit(10, "yottameters")
  8303. },
  8304. ]
  8305. ))
  8306. characterMakers.push(() => makeCharacter(
  8307. { name: "Toto" },
  8308. {
  8309. front: {
  8310. height: math.unit(6, "feet"),
  8311. weight: math.unit(250, "lb"),
  8312. name: "Front",
  8313. image: {
  8314. source: "./media/characters/toto/front.svg",
  8315. extra: 527 / 479,
  8316. bottom: 0.05
  8317. }
  8318. },
  8319. },
  8320. [
  8321. {
  8322. name: "Micro",
  8323. height: math.unit(3, "feet")
  8324. },
  8325. {
  8326. name: "Normal",
  8327. height: math.unit(10, "feet")
  8328. },
  8329. {
  8330. name: "Macro",
  8331. height: math.unit(150, "feet"),
  8332. default: true
  8333. },
  8334. {
  8335. name: "Megamacro",
  8336. height: math.unit(1200, "feet")
  8337. },
  8338. ]
  8339. ))
  8340. characterMakers.push(() => makeCharacter(
  8341. { name: "King" },
  8342. {
  8343. back: {
  8344. height: math.unit(6, "feet"),
  8345. weight: math.unit(150, "lb"),
  8346. name: "Back",
  8347. image: {
  8348. source: "./media/characters/king/back.svg"
  8349. }
  8350. },
  8351. },
  8352. [
  8353. {
  8354. name: "Micro",
  8355. height: math.unit(2, "inches")
  8356. },
  8357. {
  8358. name: "Normal",
  8359. height: math.unit(8, "feet")
  8360. },
  8361. {
  8362. name: "Macro",
  8363. height: math.unit(200, "feet"),
  8364. default: true
  8365. },
  8366. {
  8367. name: "Megamacro",
  8368. height: math.unit(50, "miles")
  8369. },
  8370. ]
  8371. ))
  8372. characterMakers.push(() => makeCharacter(
  8373. { name: "Cordite" },
  8374. {
  8375. anthro: {
  8376. height: math.unit(6 + 5 / 12, "feet"),
  8377. weight: math.unit(280, "lb"),
  8378. name: "Anthro",
  8379. image: {
  8380. source: "./media/characters/cordite/anthro.svg",
  8381. extra: 1986 / 1905,
  8382. bottom: 0.025
  8383. }
  8384. },
  8385. feral: {
  8386. height: math.unit(2, "feet"),
  8387. weight: math.unit(90, "lb"),
  8388. name: "Feral",
  8389. image: {
  8390. source: "./media/characters/cordite/feral.svg",
  8391. extra: 1260 / 755,
  8392. bottom: 0.05
  8393. }
  8394. },
  8395. },
  8396. [
  8397. {
  8398. name: "Normal",
  8399. height: math.unit(6 + 5 / 12, "feet"),
  8400. default: true
  8401. },
  8402. ]
  8403. ))
  8404. characterMakers.push(() => makeCharacter(
  8405. { name: "Pianostrong" },
  8406. {
  8407. front: {
  8408. height: math.unit(6, "feet"),
  8409. weight: math.unit(150, "lb"),
  8410. name: "Front",
  8411. image: {
  8412. source: "./media/characters/pianostrong/front.svg",
  8413. extra: 6577 / 6254,
  8414. bottom: 0.02
  8415. }
  8416. },
  8417. side: {
  8418. height: math.unit(6, "feet"),
  8419. weight: math.unit(150, "lb"),
  8420. name: "Side",
  8421. image: {
  8422. source: "./media/characters/pianostrong/side.svg",
  8423. extra: 6106 / 5730
  8424. }
  8425. },
  8426. back: {
  8427. height: math.unit(6, "feet"),
  8428. weight: math.unit(150, "lb"),
  8429. name: "Back",
  8430. image: {
  8431. source: "./media/characters/pianostrong/back.svg",
  8432. extra: 6085 / 5733,
  8433. bottom: 0.01
  8434. }
  8435. },
  8436. },
  8437. [
  8438. {
  8439. name: "Macro",
  8440. height: math.unit(100, "feet")
  8441. },
  8442. {
  8443. name: "Macro+",
  8444. height: math.unit(300, "feet"),
  8445. default: true
  8446. },
  8447. {
  8448. name: "Macro++",
  8449. height: math.unit(1000, "feet")
  8450. },
  8451. ]
  8452. ))
  8453. characterMakers.push(() => makeCharacter(
  8454. { name: "Kona" },
  8455. {
  8456. front: {
  8457. height: math.unit(6, "feet"),
  8458. weight: math.unit(150, "lb"),
  8459. name: "Front",
  8460. image: {
  8461. source: "./media/characters/kona/front.svg",
  8462. extra: 2960 / 2629,
  8463. bottom: 0.005
  8464. }
  8465. },
  8466. },
  8467. [
  8468. {
  8469. name: "Normal",
  8470. height: math.unit(11 + 8 / 12, "feet")
  8471. },
  8472. {
  8473. name: "Macro",
  8474. height: math.unit(850, "feet"),
  8475. default: true
  8476. },
  8477. {
  8478. name: "Macro+",
  8479. height: math.unit(1.5, "km"),
  8480. default: true
  8481. },
  8482. {
  8483. name: "Megamacro",
  8484. height: math.unit(80, "miles")
  8485. },
  8486. {
  8487. name: "Gigamacro",
  8488. height: math.unit(3500, "miles")
  8489. },
  8490. ]
  8491. ))
  8492. characterMakers.push(() => makeCharacter(
  8493. { name: "Levi" },
  8494. {
  8495. side: {
  8496. height: math.unit(1.9, "meters"),
  8497. weight: math.unit(326, "kg"),
  8498. name: "Side",
  8499. image: {
  8500. source: "./media/characters/levi/side.svg",
  8501. extra: 1704 / 1334,
  8502. bottom: 0.02
  8503. }
  8504. },
  8505. },
  8506. [
  8507. {
  8508. name: "Normal",
  8509. height: math.unit(1.9, "meters"),
  8510. default: true
  8511. },
  8512. {
  8513. name: "Macro",
  8514. height: math.unit(20, "meters")
  8515. },
  8516. {
  8517. name: "Macro+",
  8518. height: math.unit(200, "meters")
  8519. },
  8520. {
  8521. name: "Megamacro",
  8522. height: math.unit(2, "km")
  8523. },
  8524. {
  8525. name: "Megamacro+",
  8526. height: math.unit(20, "km")
  8527. },
  8528. {
  8529. name: "Gigamacro",
  8530. height: math.unit(2500, "km")
  8531. },
  8532. {
  8533. name: "Gigamacro+",
  8534. height: math.unit(120000, "km")
  8535. },
  8536. {
  8537. name: "Teramacro",
  8538. height: math.unit(7.77e6, "km")
  8539. },
  8540. ]
  8541. ))
  8542. characterMakers.push(() => makeCharacter(
  8543. { name: "BMC" },
  8544. {
  8545. front: {
  8546. height: math.unit(6 + 4 / 12, "feet"),
  8547. weight: math.unit(188, "lb"),
  8548. name: "Front",
  8549. image: {
  8550. source: "./media/characters/bmc/front.svg",
  8551. extra: 1067 / 1022,
  8552. bottom: 0.047
  8553. }
  8554. },
  8555. },
  8556. [
  8557. {
  8558. name: "Human-sized",
  8559. height: math.unit(6 + 4 / 12, "feet")
  8560. },
  8561. {
  8562. name: "Small",
  8563. height: math.unit(250, "feet")
  8564. },
  8565. {
  8566. name: "Normal",
  8567. height: math.unit(1250, "feet"),
  8568. default: true
  8569. },
  8570. {
  8571. name: "Good Day",
  8572. height: math.unit(88, "miles")
  8573. },
  8574. {
  8575. name: "Largest Measured Size",
  8576. height: math.unit(11.2e6, "lightyears")
  8577. },
  8578. ]
  8579. ))
  8580. characterMakers.push(() => makeCharacter(
  8581. { name: "Sven the Kaiju" },
  8582. {
  8583. front: {
  8584. height: math.unit(20, "feet"),
  8585. weight: math.unit(2016, "kg"),
  8586. name: "Front",
  8587. image: {
  8588. source: "./media/characters/sven-the-kaiju/front.svg",
  8589. extra: 1479 / 1449,
  8590. bottom: 0.05
  8591. }
  8592. },
  8593. },
  8594. [
  8595. {
  8596. name: "Fairy",
  8597. height: math.unit(6, "inches")
  8598. },
  8599. {
  8600. name: "Normal",
  8601. height: math.unit(20, "feet"),
  8602. default: true
  8603. },
  8604. {
  8605. name: "Rampage",
  8606. height: math.unit(200, "feet")
  8607. },
  8608. {
  8609. name: "Archfey Forest Guardian",
  8610. height: math.unit(1, "mile")
  8611. },
  8612. ]
  8613. ))
  8614. characterMakers.push(() => makeCharacter(
  8615. { name: "Marik" },
  8616. {
  8617. front: {
  8618. height: math.unit(4, "meters"),
  8619. weight: math.unit(2, "tons"),
  8620. name: "Front",
  8621. image: {
  8622. source: "./media/characters/marik/front.svg",
  8623. extra: 1057 / 1003,
  8624. bottom: 0.08
  8625. }
  8626. },
  8627. },
  8628. [
  8629. {
  8630. name: "Normal",
  8631. height: math.unit(4, "meters"),
  8632. default: true
  8633. },
  8634. {
  8635. name: "Macro",
  8636. height: math.unit(20, "meters")
  8637. },
  8638. {
  8639. name: "Megamacro",
  8640. height: math.unit(50, "km")
  8641. },
  8642. {
  8643. name: "Gigamacro",
  8644. height: math.unit(100, "km")
  8645. },
  8646. {
  8647. name: "Alpha Macro",
  8648. height: math.unit(7.88e7, "yottameters")
  8649. },
  8650. ]
  8651. ))
  8652. characterMakers.push(() => makeCharacter(
  8653. { name: "Mel" },
  8654. {
  8655. front: {
  8656. height: math.unit(6, "feet"),
  8657. weight: math.unit(110, "lb"),
  8658. name: "Front",
  8659. image: {
  8660. source: "./media/characters/mel/front.svg",
  8661. extra: 736 / 617,
  8662. bottom: 0.017
  8663. }
  8664. },
  8665. },
  8666. [
  8667. {
  8668. name: "Pico",
  8669. height: math.unit(3, "pm")
  8670. },
  8671. {
  8672. name: "Nano",
  8673. height: math.unit(3, "nm")
  8674. },
  8675. {
  8676. name: "Micro",
  8677. height: math.unit(0.3, "mm"),
  8678. default: true
  8679. },
  8680. {
  8681. name: "Micro+",
  8682. height: math.unit(3, "mm")
  8683. },
  8684. {
  8685. name: "Normal",
  8686. height: math.unit(5 + 10.5 / 12, "feet")
  8687. },
  8688. ]
  8689. ))
  8690. characterMakers.push(() => makeCharacter(
  8691. { name: "Lykonous" },
  8692. {
  8693. kaiju: {
  8694. height: math.unit(1.75, "meters"),
  8695. weight: math.unit(55, "kg"),
  8696. name: "Kaiju",
  8697. image: {
  8698. source: "./media/characters/lykonous/kaiju.svg",
  8699. extra: 1055 / 946,
  8700. bottom: 0.135
  8701. }
  8702. },
  8703. },
  8704. [
  8705. {
  8706. name: "Normal",
  8707. height: math.unit(2.5, "meters"),
  8708. default: true
  8709. },
  8710. {
  8711. name: "Kaiju Dragon",
  8712. height: math.unit(60, "meters")
  8713. },
  8714. {
  8715. name: "Mega Kaiju",
  8716. height: math.unit(120, "km")
  8717. },
  8718. {
  8719. name: "Giga Kaiju",
  8720. height: math.unit(200, "megameters")
  8721. },
  8722. {
  8723. name: "Terra Kaiju",
  8724. height: math.unit(400, "gigameters")
  8725. },
  8726. {
  8727. name: "Kaiju Dragon God",
  8728. height: math.unit(13000, "exaparsecs")
  8729. },
  8730. ]
  8731. ))
  8732. characterMakers.push(() => makeCharacter(
  8733. { name: "Blü" },
  8734. {
  8735. front: {
  8736. height: math.unit(6, "feet"),
  8737. weight: math.unit(150, "lb"),
  8738. name: "Front",
  8739. image: {
  8740. source: "./media/characters/blü/front.svg",
  8741. extra: 1883 / 1564,
  8742. bottom: 0.031
  8743. }
  8744. },
  8745. },
  8746. [
  8747. {
  8748. name: "Normal",
  8749. height: math.unit(13, "feet"),
  8750. default: true
  8751. },
  8752. {
  8753. name: "Big Boi",
  8754. height: math.unit(150, "meters")
  8755. },
  8756. {
  8757. name: "Mini Stomper",
  8758. height: math.unit(300, "meters")
  8759. },
  8760. {
  8761. name: "Macro",
  8762. height: math.unit(1000, "meters")
  8763. },
  8764. {
  8765. name: "Megamacro",
  8766. height: math.unit(11000, "meters")
  8767. },
  8768. {
  8769. name: "Gigamacro",
  8770. height: math.unit(11000, "km")
  8771. },
  8772. {
  8773. name: "Teramacro",
  8774. height: math.unit(420000, "km")
  8775. },
  8776. {
  8777. name: "Examacro",
  8778. height: math.unit(120, "parsecs")
  8779. },
  8780. {
  8781. name: "God Tho",
  8782. height: math.unit(98000000000, "parsecs")
  8783. },
  8784. ]
  8785. ))
  8786. characterMakers.push(() => makeCharacter(
  8787. { name: "Scales" },
  8788. {
  8789. taurFront: {
  8790. height: math.unit(6, "feet"),
  8791. weight: math.unit(200, "lb"),
  8792. name: "Taur (Front)",
  8793. image: {
  8794. source: "./media/characters/scales/taur-front.svg",
  8795. extra: 1,
  8796. bottom: 0.05
  8797. }
  8798. },
  8799. taurBack: {
  8800. height: math.unit(6, "feet"),
  8801. weight: math.unit(200, "lb"),
  8802. name: "Taur (Back)",
  8803. image: {
  8804. source: "./media/characters/scales/taur-back.svg",
  8805. extra: 1,
  8806. bottom: 0.08
  8807. }
  8808. },
  8809. anthro: {
  8810. height: math.unit(6 * 7 / 12, "feet"),
  8811. weight: math.unit(100, "lb"),
  8812. name: "Anthro",
  8813. image: {
  8814. source: "./media/characters/scales/anthro.svg",
  8815. extra: 1,
  8816. bottom: 0.06
  8817. }
  8818. },
  8819. },
  8820. [
  8821. {
  8822. name: "Normal",
  8823. height: math.unit(12, "feet"),
  8824. default: true
  8825. },
  8826. ]
  8827. ))
  8828. characterMakers.push(() => makeCharacter(
  8829. { name: "Koragos" },
  8830. {
  8831. front: {
  8832. height: math.unit(6, "feet"),
  8833. weight: math.unit(150, "lb"),
  8834. name: "Front",
  8835. image: {
  8836. source: "./media/characters/koragos/front.svg",
  8837. extra: 841 / 794,
  8838. bottom: 0.035
  8839. }
  8840. },
  8841. back: {
  8842. height: math.unit(6, "feet"),
  8843. weight: math.unit(150, "lb"),
  8844. name: "Back",
  8845. image: {
  8846. source: "./media/characters/koragos/back.svg",
  8847. extra: 841 / 810,
  8848. bottom: 0.022
  8849. }
  8850. },
  8851. },
  8852. [
  8853. {
  8854. name: "Normal",
  8855. height: math.unit(6 + 11 / 12, "feet"),
  8856. default: true
  8857. },
  8858. {
  8859. name: "Macro",
  8860. height: math.unit(490, "feet")
  8861. },
  8862. {
  8863. name: "Megamacro",
  8864. height: math.unit(10, "miles")
  8865. },
  8866. {
  8867. name: "Gigamacro",
  8868. height: math.unit(50, "miles")
  8869. },
  8870. ]
  8871. ))
  8872. characterMakers.push(() => makeCharacter(
  8873. { name: "Xylrem" },
  8874. {
  8875. front: {
  8876. height: math.unit(6, "feet"),
  8877. weight: math.unit(250, "lb"),
  8878. name: "Front",
  8879. image: {
  8880. source: "./media/characters/xylrem/front.svg",
  8881. extra: 3323 / 3050,
  8882. bottom: 0.065
  8883. }
  8884. },
  8885. },
  8886. [
  8887. {
  8888. name: "Micro",
  8889. height: math.unit(4, "feet")
  8890. },
  8891. {
  8892. name: "Normal",
  8893. height: math.unit(16, "feet"),
  8894. default: true
  8895. },
  8896. {
  8897. name: "Macro",
  8898. height: math.unit(2720, "feet")
  8899. },
  8900. {
  8901. name: "Megamacro",
  8902. height: math.unit(25000, "miles")
  8903. },
  8904. ]
  8905. ))
  8906. characterMakers.push(() => makeCharacter(
  8907. { name: "Ikideru" },
  8908. {
  8909. front: {
  8910. height: math.unit(8, "feet"),
  8911. weight: math.unit(250, "kg"),
  8912. name: "Front",
  8913. image: {
  8914. source: "./media/characters/ikideru/front.svg",
  8915. extra: 930 / 870,
  8916. bottom: 0.087
  8917. }
  8918. },
  8919. back: {
  8920. height: math.unit(8, "feet"),
  8921. weight: math.unit(250, "kg"),
  8922. name: "Back",
  8923. image: {
  8924. source: "./media/characters/ikideru/back.svg",
  8925. extra: 919 / 852,
  8926. bottom: 0.055
  8927. }
  8928. },
  8929. },
  8930. [
  8931. {
  8932. name: "Rare",
  8933. height: math.unit(8, "feet"),
  8934. default: true
  8935. },
  8936. {
  8937. name: "Playful Loom",
  8938. height: math.unit(80, "feet")
  8939. },
  8940. {
  8941. name: "City Leaner",
  8942. height: math.unit(230, "feet")
  8943. },
  8944. {
  8945. name: "Megamacro",
  8946. height: math.unit(2500, "feet")
  8947. },
  8948. {
  8949. name: "Gigamacro",
  8950. height: math.unit(26400, "feet")
  8951. },
  8952. {
  8953. name: "Tectonic Shifter",
  8954. height: math.unit(1.7, "megameters")
  8955. },
  8956. {
  8957. name: "Planet Carer",
  8958. height: math.unit(21, "megameters")
  8959. },
  8960. {
  8961. name: "God",
  8962. height: math.unit(11157.22, "parsecs")
  8963. },
  8964. ]
  8965. ))
  8966. characterMakers.push(() => makeCharacter(
  8967. { name: "Neo" },
  8968. {
  8969. front: {
  8970. height: math.unit(6, "feet"),
  8971. weight: math.unit(120, "lb"),
  8972. name: "Front",
  8973. image: {
  8974. source: "./media/characters/neo/front.svg"
  8975. }
  8976. },
  8977. },
  8978. [
  8979. {
  8980. name: "Micro",
  8981. height: math.unit(2, "inches"),
  8982. default: true
  8983. },
  8984. {
  8985. name: "Human Size",
  8986. height: math.unit(5 + 8 / 12, "feet")
  8987. },
  8988. ]
  8989. ))
  8990. characterMakers.push(() => makeCharacter(
  8991. { name: "Chauncey (Chantz)" },
  8992. {
  8993. front: {
  8994. height: math.unit(13 + 10 / 12, "feet"),
  8995. weight: math.unit(5320, "lb"),
  8996. name: "Front",
  8997. image: {
  8998. source: "./media/characters/chauncey-chantz/front.svg",
  8999. extra: 1587 / 1435,
  9000. bottom: 0.02
  9001. }
  9002. },
  9003. },
  9004. [
  9005. {
  9006. name: "Normal",
  9007. height: math.unit(13 + 10 / 12, "feet"),
  9008. default: true
  9009. },
  9010. {
  9011. name: "Macro",
  9012. height: math.unit(45, "feet")
  9013. },
  9014. {
  9015. name: "Megamacro",
  9016. height: math.unit(250, "miles")
  9017. },
  9018. {
  9019. name: "Planetary",
  9020. height: math.unit(10000, "miles")
  9021. },
  9022. {
  9023. name: "Galactic",
  9024. height: math.unit(40000, "parsecs")
  9025. },
  9026. {
  9027. name: "Universal",
  9028. height: math.unit(1, "yottameter")
  9029. },
  9030. ]
  9031. ))
  9032. characterMakers.push(() => makeCharacter(
  9033. { name: "Epifox" },
  9034. {
  9035. front: {
  9036. height: math.unit(6, "feet"),
  9037. weight: math.unit(150, "lb"),
  9038. name: "Front",
  9039. image: {
  9040. source: "./media/characters/epifox/front.svg",
  9041. extra: 1,
  9042. bottom: 0.075
  9043. }
  9044. },
  9045. },
  9046. [
  9047. {
  9048. name: "Micro",
  9049. height: math.unit(6, "inches")
  9050. },
  9051. {
  9052. name: "Normal",
  9053. height: math.unit(12, "feet"),
  9054. default: true
  9055. },
  9056. {
  9057. name: "Macro",
  9058. height: math.unit(3810, "feet")
  9059. },
  9060. {
  9061. name: "Megamacro",
  9062. height: math.unit(500, "miles")
  9063. },
  9064. ]
  9065. ))
  9066. characterMakers.push(() => makeCharacter(
  9067. { name: "Colin T." },
  9068. {
  9069. front: {
  9070. height: math.unit(1.8796, "m"),
  9071. weight: math.unit(230, "lb"),
  9072. name: "Front",
  9073. image: {
  9074. source: "./media/characters/colin-t/front.svg",
  9075. extra: 1272 / 1193,
  9076. bottom: 0.07
  9077. }
  9078. },
  9079. },
  9080. [
  9081. {
  9082. name: "Micro",
  9083. height: math.unit(0.571, "meters")
  9084. },
  9085. {
  9086. name: "Normal",
  9087. height: math.unit(1.8796, "meters"),
  9088. default: true
  9089. },
  9090. {
  9091. name: "Tall",
  9092. height: math.unit(4, "meters")
  9093. },
  9094. {
  9095. name: "Macro",
  9096. height: math.unit(67.241, "meters")
  9097. },
  9098. {
  9099. name: "Megamacro",
  9100. height: math.unit(371.856, "meters")
  9101. },
  9102. {
  9103. name: "Planetary",
  9104. height: math.unit(12631.5689, "km")
  9105. },
  9106. ]
  9107. ))
  9108. characterMakers.push(() => makeCharacter(
  9109. { name: "Matvei" },
  9110. {
  9111. front: {
  9112. height: math.unit(1.85, "meters"),
  9113. weight: math.unit(80, "kg"),
  9114. name: "Front",
  9115. image: {
  9116. source: "./media/characters/matvei/front.svg",
  9117. extra: 614 / 594,
  9118. bottom: 0.01
  9119. }
  9120. },
  9121. },
  9122. [
  9123. {
  9124. name: "Normal",
  9125. height: math.unit(1.85, "meters"),
  9126. default: true
  9127. },
  9128. ]
  9129. ))
  9130. characterMakers.push(() => makeCharacter(
  9131. { name: "Quincy" },
  9132. {
  9133. front: {
  9134. height: math.unit(5 + 9 / 12, "feet"),
  9135. weight: math.unit(70, "lb"),
  9136. name: "Front",
  9137. image: {
  9138. source: "./media/characters/quincy/front.svg",
  9139. extra: 3041 / 2751
  9140. }
  9141. },
  9142. back: {
  9143. height: math.unit(5 + 9 / 12, "feet"),
  9144. weight: math.unit(70, "lb"),
  9145. name: "Back",
  9146. image: {
  9147. source: "./media/characters/quincy/back.svg",
  9148. extra: 3041 / 2751
  9149. }
  9150. },
  9151. flying: {
  9152. height: math.unit(5 + 4 / 12, "feet"),
  9153. weight: math.unit(70, "lb"),
  9154. name: "Flying",
  9155. image: {
  9156. source: "./media/characters/quincy/flying.svg",
  9157. extra: 1044 / 930
  9158. }
  9159. },
  9160. },
  9161. [
  9162. {
  9163. name: "Micro",
  9164. height: math.unit(3, "cm")
  9165. },
  9166. {
  9167. name: "Normal",
  9168. height: math.unit(5 + 9 / 12, "feet")
  9169. },
  9170. {
  9171. name: "Macro",
  9172. height: math.unit(200, "meters"),
  9173. default: true
  9174. },
  9175. {
  9176. name: "Megamacro",
  9177. height: math.unit(1000, "meters")
  9178. },
  9179. ]
  9180. ))
  9181. characterMakers.push(() => makeCharacter(
  9182. { name: "Vanrel" },
  9183. {
  9184. front: {
  9185. height: math.unit(4 + 7 / 12, "feet"),
  9186. weight: math.unit(150, "lb"),
  9187. name: "Front",
  9188. image: {
  9189. source: "./media/characters/vanrel/front.svg",
  9190. extra: 1,
  9191. bottom: 0.02
  9192. }
  9193. },
  9194. elemental: {
  9195. height: math.unit(4 + 2/12, "feet"),
  9196. weight: math.unit(150, "lb"),
  9197. name: "Elemental",
  9198. image: {
  9199. source: "./media/characters/vanrel/elemental.svg"
  9200. }
  9201. },
  9202. side: {
  9203. height: math.unit(4 + 7 / 12, "feet"),
  9204. weight: math.unit(150, "lb"),
  9205. name: "Side",
  9206. image: {
  9207. source: "./media/characters/vanrel/side.svg",
  9208. extra: 1,
  9209. bottom: 0.025
  9210. }
  9211. },
  9212. tome: {
  9213. height: math.unit(1.35, "feet"),
  9214. weight: math.unit(10, "lb"),
  9215. name: "Vanrel's Tome",
  9216. rename: true,
  9217. image: {
  9218. source: "./media/characters/vanrel/tome.svg"
  9219. }
  9220. },
  9221. beans: {
  9222. height: math.unit(0.89, "feet"),
  9223. name: "Beans",
  9224. image: {
  9225. source: "./media/characters/vanrel/beans.svg"
  9226. }
  9227. },
  9228. },
  9229. [
  9230. {
  9231. name: "Normal",
  9232. height: math.unit(4 + 7 / 12, "feet"),
  9233. default: true
  9234. },
  9235. ]
  9236. ))
  9237. characterMakers.push(() => makeCharacter(
  9238. { name: "Kuiper Vanrel" },
  9239. {
  9240. front: {
  9241. height: math.unit(7 + 5 / 12, "feet"),
  9242. weight: math.unit(150, "lb"),
  9243. name: "Front",
  9244. image: {
  9245. source: "./media/characters/kuiper-vanrel/front.svg",
  9246. extra: 1118 / 1068,
  9247. bottom: 0.09
  9248. }
  9249. },
  9250. foot: {
  9251. height: math.unit(0.55, "meters"),
  9252. name: "Foot",
  9253. image: {
  9254. source: "./media/characters/kuiper-vanrel/foot.svg",
  9255. }
  9256. },
  9257. },
  9258. [
  9259. {
  9260. name: "Normal",
  9261. height: math.unit(7 + 5 / 12, "feet"),
  9262. default: true
  9263. },
  9264. ]
  9265. ))
  9266. characterMakers.push(() => makeCharacter(
  9267. { name: "Keset Vanrel" },
  9268. {
  9269. front: {
  9270. height: math.unit(8 + 5 / 12, "feet"),
  9271. weight: math.unit(150, "lb"),
  9272. name: "Front",
  9273. image: {
  9274. source: "./media/characters/keset-vanrel/front.svg",
  9275. extra: 1150 / 1084,
  9276. bottom: 0.05
  9277. }
  9278. },
  9279. hand: {
  9280. height: math.unit(0.6, "meters"),
  9281. name: "Hand",
  9282. image: {
  9283. source: "./media/characters/keset-vanrel/hand.svg"
  9284. }
  9285. },
  9286. foot: {
  9287. height: math.unit(0.94978, "meters"),
  9288. name: "Foot",
  9289. image: {
  9290. source: "./media/characters/keset-vanrel/foot.svg"
  9291. }
  9292. },
  9293. },
  9294. [
  9295. {
  9296. name: "Normal",
  9297. height: math.unit(8 + 5 / 12, "feet"),
  9298. default: true
  9299. },
  9300. ]
  9301. ))
  9302. characterMakers.push(() => makeCharacter(
  9303. { name: "Neos" },
  9304. {
  9305. front: {
  9306. height: math.unit(6, "feet"),
  9307. weight: math.unit(150, "lb"),
  9308. name: "Front",
  9309. image: {
  9310. source: "./media/characters/neos/front.svg",
  9311. extra: 1696 / 992,
  9312. bottom: 0.14
  9313. }
  9314. },
  9315. },
  9316. [
  9317. {
  9318. name: "Normal",
  9319. height: math.unit(54, "cm"),
  9320. default: true
  9321. },
  9322. {
  9323. name: "Macro",
  9324. height: math.unit(100, "m")
  9325. },
  9326. {
  9327. name: "Megamacro",
  9328. height: math.unit(10, "km")
  9329. },
  9330. {
  9331. name: "Megamacro+",
  9332. height: math.unit(100, "km")
  9333. },
  9334. {
  9335. name: "Gigamacro",
  9336. height: math.unit(100, "Mm")
  9337. },
  9338. {
  9339. name: "Teramacro",
  9340. height: math.unit(100, "Gm")
  9341. },
  9342. {
  9343. name: "Examacro",
  9344. height: math.unit(100, "Em")
  9345. },
  9346. {
  9347. name: "Godly",
  9348. height: math.unit(10000, "Ym")
  9349. },
  9350. {
  9351. name: "Beyond Godly",
  9352. height: math.unit(10000000, "Ym")
  9353. },
  9354. ]
  9355. ))
  9356. characterMakers.push(() => makeCharacter(
  9357. { name: "Sammy Mouse" },
  9358. {
  9359. feminine: {
  9360. height: math.unit(5, "feet"),
  9361. weight: math.unit(100, "lb"),
  9362. name: "Feminine",
  9363. image: {
  9364. source: "./media/characters/sammy-mouse/feminine.svg",
  9365. extra: 2526 / 2425,
  9366. bottom: 0.123
  9367. }
  9368. },
  9369. masculine: {
  9370. height: math.unit(5, "feet"),
  9371. weight: math.unit(100, "lb"),
  9372. name: "Masculine",
  9373. image: {
  9374. source: "./media/characters/sammy-mouse/masculine.svg",
  9375. extra: 2526 / 2425,
  9376. bottom: 0.123
  9377. }
  9378. },
  9379. },
  9380. [
  9381. {
  9382. name: "Micro",
  9383. height: math.unit(5, "inches")
  9384. },
  9385. {
  9386. name: "Normal",
  9387. height: math.unit(5, "feet"),
  9388. default: true
  9389. },
  9390. {
  9391. name: "Macro",
  9392. height: math.unit(60, "feet")
  9393. },
  9394. ]
  9395. ))
  9396. characterMakers.push(() => makeCharacter(
  9397. { name: "Kole" },
  9398. {
  9399. front: {
  9400. height: math.unit(4, "feet"),
  9401. weight: math.unit(50, "lb"),
  9402. name: "Front",
  9403. image: {
  9404. source: "./media/characters/kole/front.svg",
  9405. extra: 1423 / 1303,
  9406. bottom: 0.025
  9407. }
  9408. },
  9409. back: {
  9410. height: math.unit(4, "feet"),
  9411. weight: math.unit(50, "lb"),
  9412. name: "Back",
  9413. image: {
  9414. source: "./media/characters/kole/back.svg",
  9415. extra: 1426 / 1280,
  9416. bottom: 0.02
  9417. }
  9418. },
  9419. },
  9420. [
  9421. {
  9422. name: "Normal",
  9423. height: math.unit(4, "feet"),
  9424. default: true
  9425. },
  9426. ]
  9427. ))
  9428. characterMakers.push(() => makeCharacter(
  9429. { name: "Rufran" },
  9430. {
  9431. front: {
  9432. height: math.unit(2 + 6 / 12, "feet"),
  9433. weight: math.unit(20, "lb"),
  9434. name: "Front",
  9435. image: {
  9436. source: "./media/characters/rufran/front.svg",
  9437. extra: 2041 / 1839,
  9438. bottom: 0.055
  9439. }
  9440. },
  9441. back: {
  9442. height: math.unit(2 + 6 / 12, "feet"),
  9443. weight: math.unit(20, "lb"),
  9444. name: "Back",
  9445. image: {
  9446. source: "./media/characters/rufran/back.svg",
  9447. extra: 2054 / 1839,
  9448. bottom: 0.01
  9449. }
  9450. },
  9451. hand: {
  9452. height: math.unit(0.2166, "meters"),
  9453. name: "Hand",
  9454. image: {
  9455. source: "./media/characters/rufran/hand.svg"
  9456. }
  9457. },
  9458. foot: {
  9459. height: math.unit(0.185, "meters"),
  9460. name: "Foot",
  9461. image: {
  9462. source: "./media/characters/rufran/foot.svg"
  9463. }
  9464. },
  9465. },
  9466. [
  9467. {
  9468. name: "Micro",
  9469. height: math.unit(1, "inch")
  9470. },
  9471. {
  9472. name: "Normal",
  9473. height: math.unit(2 + 6 / 12, "feet"),
  9474. default: true
  9475. },
  9476. {
  9477. name: "Big",
  9478. height: math.unit(60, "feet")
  9479. },
  9480. {
  9481. name: "Macro",
  9482. height: math.unit(325, "feet")
  9483. },
  9484. ]
  9485. ))
  9486. characterMakers.push(() => makeCharacter(
  9487. { name: "Chip" },
  9488. {
  9489. front: {
  9490. height: math.unit(0.3, "meters"),
  9491. weight: math.unit(3.5, "kg"),
  9492. name: "Front",
  9493. image: {
  9494. source: "./media/characters/chip/front.svg",
  9495. extra: 748 / 674
  9496. }
  9497. },
  9498. },
  9499. [
  9500. {
  9501. name: "Micro",
  9502. height: math.unit(1, "inch"),
  9503. default: true
  9504. },
  9505. ]
  9506. ))
  9507. characterMakers.push(() => makeCharacter(
  9508. { name: "Torvid" },
  9509. {
  9510. side: {
  9511. height: math.unit(2.3, "meters"),
  9512. weight: math.unit(3500, "lb"),
  9513. name: "Side",
  9514. image: {
  9515. source: "./media/characters/torvid/side.svg",
  9516. extra: 1972 / 722,
  9517. bottom: 0.035
  9518. }
  9519. },
  9520. },
  9521. [
  9522. {
  9523. name: "Normal",
  9524. height: math.unit(2.3, "meters"),
  9525. default: true
  9526. },
  9527. ]
  9528. ))
  9529. characterMakers.push(() => makeCharacter(
  9530. { name: "Susan" },
  9531. {
  9532. front: {
  9533. height: math.unit(2, "meters"),
  9534. weight: math.unit(150.5, "kg"),
  9535. name: "Front",
  9536. image: {
  9537. source: "./media/characters/susan/front.svg",
  9538. extra: 693 / 635,
  9539. bottom: 0.05
  9540. }
  9541. },
  9542. },
  9543. [
  9544. {
  9545. name: "Megamacro",
  9546. height: math.unit(505, "miles"),
  9547. default: true
  9548. },
  9549. ]
  9550. ))
  9551. characterMakers.push(() => makeCharacter(
  9552. { name: "Raindrops" },
  9553. {
  9554. front: {
  9555. height: math.unit(6, "feet"),
  9556. weight: math.unit(150, "lb"),
  9557. name: "Front",
  9558. image: {
  9559. source: "./media/characters/raindrops/front.svg",
  9560. extra: 2655 / 2461,
  9561. bottom: 0.02
  9562. }
  9563. },
  9564. back: {
  9565. height: math.unit(6, "feet"),
  9566. weight: math.unit(150, "lb"),
  9567. name: "Back",
  9568. image: {
  9569. source: "./media/characters/raindrops/back.svg",
  9570. extra: 2574 / 2400,
  9571. bottom: 0.03
  9572. }
  9573. },
  9574. },
  9575. [
  9576. {
  9577. name: "Micro",
  9578. height: math.unit(6, "inches")
  9579. },
  9580. {
  9581. name: "Normal",
  9582. height: math.unit(6 + 2 / 12, "feet")
  9583. },
  9584. {
  9585. name: "Macro",
  9586. height: math.unit(131, "feet"),
  9587. default: true
  9588. },
  9589. {
  9590. name: "Megamacro",
  9591. height: math.unit(15, "miles")
  9592. },
  9593. {
  9594. name: "Gigamacro",
  9595. height: math.unit(4000, "miles")
  9596. },
  9597. {
  9598. name: "Teramacro",
  9599. height: math.unit(315000, "miles")
  9600. },
  9601. ]
  9602. ))
  9603. characterMakers.push(() => makeCharacter(
  9604. { name: "Tezwa" },
  9605. {
  9606. front: {
  9607. height: math.unit(2.794, "meters"),
  9608. weight: math.unit(325, "kg"),
  9609. name: "Front",
  9610. image: {
  9611. source: "./media/characters/tezwa/front.svg",
  9612. extra: 2083 / 1906,
  9613. bottom: 0.031
  9614. }
  9615. },
  9616. foot: {
  9617. height: math.unit(0.687, "meters"),
  9618. name: "Foot",
  9619. image: {
  9620. source: "./media/characters/tezwa/foot.svg"
  9621. }
  9622. },
  9623. },
  9624. [
  9625. {
  9626. name: "Normal",
  9627. height: math.unit(9 + 2 / 12, "feet"),
  9628. default: true
  9629. },
  9630. ]
  9631. ))
  9632. characterMakers.push(() => makeCharacter(
  9633. { name: "Typhus" },
  9634. {
  9635. front: {
  9636. height: math.unit(58, "feet"),
  9637. weight: math.unit(89000, "lb"),
  9638. name: "Front",
  9639. image: {
  9640. source: "./media/characters/typhus/front.svg",
  9641. extra: 816 / 800,
  9642. bottom: 0.065
  9643. }
  9644. },
  9645. },
  9646. [
  9647. {
  9648. name: "Macro",
  9649. height: math.unit(58, "feet"),
  9650. default: true
  9651. },
  9652. ]
  9653. ))
  9654. characterMakers.push(() => makeCharacter(
  9655. { name: "Lyra Von Wulf" },
  9656. {
  9657. front: {
  9658. height: math.unit(12, "feet"),
  9659. weight: math.unit(6, "tonnes"),
  9660. name: "Front",
  9661. image: {
  9662. source: "./media/characters/lyra-von-wulf/front.svg",
  9663. extra: 1,
  9664. bottom: 0.10
  9665. }
  9666. },
  9667. frontMecha: {
  9668. height: math.unit(12, "feet"),
  9669. weight: math.unit(12, "tonnes"),
  9670. name: "Front (Mecha)",
  9671. image: {
  9672. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  9673. extra: 1,
  9674. bottom: 0.042
  9675. }
  9676. },
  9677. maw: {
  9678. height: math.unit(2.2, "feet"),
  9679. name: "Maw",
  9680. image: {
  9681. source: "./media/characters/lyra-von-wulf/maw.svg"
  9682. }
  9683. },
  9684. },
  9685. [
  9686. {
  9687. name: "Normal",
  9688. height: math.unit(12, "feet"),
  9689. default: true
  9690. },
  9691. {
  9692. name: "Classic",
  9693. height: math.unit(50, "feet")
  9694. },
  9695. {
  9696. name: "Macro",
  9697. height: math.unit(500, "feet")
  9698. },
  9699. {
  9700. name: "Megamacro",
  9701. height: math.unit(1, "mile")
  9702. },
  9703. {
  9704. name: "Gigamacro",
  9705. height: math.unit(400, "miles")
  9706. },
  9707. {
  9708. name: "Teramacro",
  9709. height: math.unit(22000, "miles")
  9710. },
  9711. {
  9712. name: "Solarmacro",
  9713. height: math.unit(8600000, "miles")
  9714. },
  9715. {
  9716. name: "Galactic",
  9717. height: math.unit(1057000, "lightyears")
  9718. },
  9719. ]
  9720. ))
  9721. characterMakers.push(() => makeCharacter(
  9722. { name: "Dixon" },
  9723. {
  9724. front: {
  9725. height: math.unit(6 + 10 / 12, "feet"),
  9726. weight: math.unit(150, "lb"),
  9727. name: "Front",
  9728. image: {
  9729. source: "./media/characters/dixon/front.svg",
  9730. extra: 3361 / 3209,
  9731. bottom: 0.01
  9732. }
  9733. },
  9734. },
  9735. [
  9736. {
  9737. name: "Normal",
  9738. height: math.unit(6 + 10 / 12, "feet"),
  9739. default: true
  9740. },
  9741. {
  9742. name: "Big",
  9743. height: math.unit(12, "meters")
  9744. },
  9745. {
  9746. name: "Macro",
  9747. height: math.unit(500, "meters")
  9748. },
  9749. {
  9750. name: "Megamacro",
  9751. height: math.unit(2, "km")
  9752. },
  9753. ]
  9754. ))
  9755. characterMakers.push(() => makeCharacter(
  9756. { name: "Kauko" },
  9757. {
  9758. front: {
  9759. height: math.unit(185, "cm"),
  9760. weight: math.unit(68, "kg"),
  9761. name: "Front",
  9762. image: {
  9763. source: "./media/characters/kauko/front.svg",
  9764. extra: 1455 / 1421,
  9765. bottom: 0.03
  9766. }
  9767. },
  9768. back: {
  9769. height: math.unit(185, "cm"),
  9770. weight: math.unit(68, "kg"),
  9771. name: "Back",
  9772. image: {
  9773. source: "./media/characters/kauko/back.svg",
  9774. extra: 1455 / 1421,
  9775. bottom: 0.004
  9776. }
  9777. },
  9778. },
  9779. [
  9780. {
  9781. name: "Normal",
  9782. height: math.unit(185, "cm"),
  9783. default: true
  9784. },
  9785. ]
  9786. ))
  9787. characterMakers.push(() => makeCharacter(
  9788. { name: "Varg" },
  9789. {
  9790. front: {
  9791. height: math.unit(6, "feet"),
  9792. weight: math.unit(150, "kg"),
  9793. name: "Front",
  9794. image: {
  9795. source: "./media/characters/varg/front.svg",
  9796. extra: 1108 / 1018,
  9797. bottom: 0.0375
  9798. }
  9799. },
  9800. },
  9801. [
  9802. {
  9803. name: "Normal",
  9804. height: math.unit(5, "meters")
  9805. },
  9806. {
  9807. name: "Macro",
  9808. height: math.unit(200, "meters")
  9809. },
  9810. {
  9811. name: "Megamacro",
  9812. height: math.unit(20, "kilometers")
  9813. },
  9814. {
  9815. name: "True Size",
  9816. height: math.unit(211, "km"),
  9817. default: true
  9818. },
  9819. {
  9820. name: "Gigamacro",
  9821. height: math.unit(1000, "km")
  9822. },
  9823. {
  9824. name: "Gigamacro+",
  9825. height: math.unit(8000, "km")
  9826. },
  9827. {
  9828. name: "Teramacro",
  9829. height: math.unit(1000000, "km")
  9830. },
  9831. ]
  9832. ))
  9833. characterMakers.push(() => makeCharacter(
  9834. { name: "Dayza" },
  9835. {
  9836. front: {
  9837. height: math.unit(7 + 7 / 12, "feet"),
  9838. weight: math.unit(267, "lb"),
  9839. name: "Front",
  9840. image: {
  9841. source: "./media/characters/dayza/front.svg",
  9842. extra: 1262 / 1200,
  9843. bottom: 0.035
  9844. }
  9845. },
  9846. side: {
  9847. height: math.unit(7 + 7 / 12, "feet"),
  9848. weight: math.unit(267, "lb"),
  9849. name: "Side",
  9850. image: {
  9851. source: "./media/characters/dayza/side.svg",
  9852. extra: 1295 / 1245,
  9853. bottom: 0.05
  9854. }
  9855. },
  9856. back: {
  9857. height: math.unit(7 + 7 / 12, "feet"),
  9858. weight: math.unit(267, "lb"),
  9859. name: "Back",
  9860. image: {
  9861. source: "./media/characters/dayza/back.svg",
  9862. extra: 1241 / 1170
  9863. }
  9864. },
  9865. },
  9866. [
  9867. {
  9868. name: "Normal",
  9869. height: math.unit(7 + 7 / 12, "feet"),
  9870. default: true
  9871. },
  9872. {
  9873. name: "Macro",
  9874. height: math.unit(155, "feet")
  9875. },
  9876. ]
  9877. ))
  9878. characterMakers.push(() => makeCharacter(
  9879. { name: "Xanthos" },
  9880. {
  9881. front: {
  9882. height: math.unit(6 + 5 / 12, "feet"),
  9883. weight: math.unit(160, "lb"),
  9884. name: "Front",
  9885. image: {
  9886. source: "./media/characters/xanthos/front.svg",
  9887. extra: 1,
  9888. bottom: 0.04
  9889. }
  9890. },
  9891. back: {
  9892. height: math.unit(6 + 5 / 12, "feet"),
  9893. weight: math.unit(160, "lb"),
  9894. name: "Back",
  9895. image: {
  9896. source: "./media/characters/xanthos/back.svg",
  9897. extra: 1,
  9898. bottom: 0.03
  9899. }
  9900. },
  9901. hand: {
  9902. height: math.unit(0.928, "feet"),
  9903. name: "Hand",
  9904. image: {
  9905. source: "./media/characters/xanthos/hand.svg"
  9906. }
  9907. },
  9908. foot: {
  9909. height: math.unit(1.286, "feet"),
  9910. name: "Foot",
  9911. image: {
  9912. source: "./media/characters/xanthos/foot.svg"
  9913. }
  9914. },
  9915. },
  9916. [
  9917. {
  9918. name: "Normal",
  9919. height: math.unit(6 + 5 / 12, "feet"),
  9920. default: true
  9921. },
  9922. {
  9923. name: "Normal+",
  9924. height: math.unit(6, "meters")
  9925. },
  9926. {
  9927. name: "Macro",
  9928. height: math.unit(40, "feet")
  9929. },
  9930. {
  9931. name: "Macro+",
  9932. height: math.unit(200, "meters")
  9933. },
  9934. {
  9935. name: "Megamacro",
  9936. height: math.unit(20, "km")
  9937. },
  9938. {
  9939. name: "Megamacro+",
  9940. height: math.unit(100, "km")
  9941. },
  9942. ]
  9943. ))
  9944. characterMakers.push(() => makeCharacter(
  9945. { name: "Grynn" },
  9946. {
  9947. front: {
  9948. height: math.unit(6 + 3 / 12, "feet"),
  9949. weight: math.unit(215, "lb"),
  9950. name: "Front",
  9951. image: {
  9952. source: "./media/characters/grynn/front.svg",
  9953. extra: 4627 / 4209,
  9954. bottom: 0.047
  9955. }
  9956. },
  9957. },
  9958. [
  9959. {
  9960. name: "Micro",
  9961. height: math.unit(6, "inches")
  9962. },
  9963. {
  9964. name: "Normal",
  9965. height: math.unit(6 + 3 / 12, "feet"),
  9966. default: true
  9967. },
  9968. {
  9969. name: "Big",
  9970. height: math.unit(104, "feet")
  9971. },
  9972. {
  9973. name: "Macro",
  9974. height: math.unit(944, "feet")
  9975. },
  9976. {
  9977. name: "Macro+",
  9978. height: math.unit(9480, "feet")
  9979. },
  9980. {
  9981. name: "Megamacro",
  9982. height: math.unit(78752, "feet")
  9983. },
  9984. {
  9985. name: "Megamacro+",
  9986. height: math.unit(630128, "feet")
  9987. },
  9988. {
  9989. name: "Megamacro++",
  9990. height: math.unit(3150695, "feet")
  9991. },
  9992. ]
  9993. ))
  9994. characterMakers.push(() => makeCharacter(
  9995. { name: "Mocha Aura" },
  9996. {
  9997. front: {
  9998. height: math.unit(7 + 5 / 12, "feet"),
  9999. weight: math.unit(450, "lb"),
  10000. name: "Front",
  10001. image: {
  10002. source: "./media/characters/mocha-aura/front.svg",
  10003. extra: 1907 / 1817,
  10004. bottom: 0.04
  10005. }
  10006. },
  10007. back: {
  10008. height: math.unit(7 + 5 / 12, "feet"),
  10009. weight: math.unit(450, "lb"),
  10010. name: "Back",
  10011. image: {
  10012. source: "./media/characters/mocha-aura/back.svg",
  10013. extra: 1900 / 1825,
  10014. bottom: 0.045
  10015. }
  10016. },
  10017. },
  10018. [
  10019. {
  10020. name: "Nano",
  10021. height: math.unit(1, "nm")
  10022. },
  10023. {
  10024. name: "Megamicro",
  10025. height: math.unit(1, "mm")
  10026. },
  10027. {
  10028. name: "Micro",
  10029. height: math.unit(3, "inches")
  10030. },
  10031. {
  10032. name: "Normal",
  10033. height: math.unit(7 + 5 / 12, "feet"),
  10034. default: true
  10035. },
  10036. {
  10037. name: "Macro",
  10038. height: math.unit(30, "feet")
  10039. },
  10040. {
  10041. name: "Megamacro",
  10042. height: math.unit(3500, "feet")
  10043. },
  10044. {
  10045. name: "Teramacro",
  10046. height: math.unit(500000, "miles")
  10047. },
  10048. {
  10049. name: "Petamacro",
  10050. height: math.unit(50000000000000000, "parsecs")
  10051. },
  10052. ]
  10053. ))
  10054. characterMakers.push(() => makeCharacter(
  10055. { name: "Ilisha Devya" },
  10056. {
  10057. front: {
  10058. height: math.unit(6, "feet"),
  10059. weight: math.unit(150, "lb"),
  10060. name: "Front",
  10061. image: {
  10062. source: "./media/characters/ilisha-devya/front.svg",
  10063. extra: 1,
  10064. bottom: 0.175
  10065. }
  10066. },
  10067. back: {
  10068. height: math.unit(6, "feet"),
  10069. weight: math.unit(150, "lb"),
  10070. name: "Back",
  10071. image: {
  10072. source: "./media/characters/ilisha-devya/back.svg",
  10073. extra: 1,
  10074. bottom: 0.015
  10075. }
  10076. },
  10077. },
  10078. [
  10079. {
  10080. name: "Macro",
  10081. height: math.unit(500, "feet"),
  10082. default: true
  10083. },
  10084. {
  10085. name: "Megamacro",
  10086. height: math.unit(10, "miles")
  10087. },
  10088. {
  10089. name: "Gigamacro",
  10090. height: math.unit(100000, "miles")
  10091. },
  10092. {
  10093. name: "Examacro",
  10094. height: math.unit(1e9, "lightyears")
  10095. },
  10096. {
  10097. name: "Omniversal",
  10098. height: math.unit(1e33, "lightyears")
  10099. },
  10100. {
  10101. name: "Beyond Infinite",
  10102. height: math.unit(1e100, "lightyears")
  10103. },
  10104. ]
  10105. ))
  10106. characterMakers.push(() => makeCharacter(
  10107. { name: "Mira" },
  10108. {
  10109. Side: {
  10110. height: math.unit(6, "feet"),
  10111. weight: math.unit(150, "lb"),
  10112. name: "Side",
  10113. image: {
  10114. source: "./media/characters/mira/side.svg",
  10115. extra: 900 / 799,
  10116. bottom: 0.02
  10117. }
  10118. },
  10119. },
  10120. [
  10121. {
  10122. name: "Human Size",
  10123. height: math.unit(6, "feet")
  10124. },
  10125. {
  10126. name: "Macro",
  10127. height: math.unit(100, "feet"),
  10128. default: true
  10129. },
  10130. {
  10131. name: "Megamacro",
  10132. height: math.unit(10, "miles")
  10133. },
  10134. {
  10135. name: "Gigamacro",
  10136. height: math.unit(25000, "miles")
  10137. },
  10138. {
  10139. name: "Teramacro",
  10140. height: math.unit(300, "AU")
  10141. },
  10142. {
  10143. name: "Full Size",
  10144. height: math.unit(4.5e10, "lightyears")
  10145. },
  10146. ]
  10147. ))
  10148. characterMakers.push(() => makeCharacter(
  10149. { name: "Holly" },
  10150. {
  10151. front: {
  10152. height: math.unit(6, "feet"),
  10153. weight: math.unit(150, "lb"),
  10154. name: "Front",
  10155. image: {
  10156. source: "./media/characters/holly/front.svg",
  10157. extra: 639 / 606
  10158. }
  10159. },
  10160. back: {
  10161. height: math.unit(6, "feet"),
  10162. weight: math.unit(150, "lb"),
  10163. name: "Back",
  10164. image: {
  10165. source: "./media/characters/holly/back.svg",
  10166. extra: 623 / 598
  10167. }
  10168. },
  10169. frontWorking: {
  10170. height: math.unit(6, "feet"),
  10171. weight: math.unit(150, "lb"),
  10172. name: "Front (Working)",
  10173. image: {
  10174. source: "./media/characters/holly/front-working.svg",
  10175. extra: 607 / 577,
  10176. bottom: 0.048
  10177. }
  10178. },
  10179. },
  10180. [
  10181. {
  10182. name: "Normal",
  10183. height: math.unit(12 + 3 / 12, "feet"),
  10184. default: true
  10185. },
  10186. ]
  10187. ))
  10188. characterMakers.push(() => makeCharacter(
  10189. { name: "Porter" },
  10190. {
  10191. front: {
  10192. height: math.unit(6, "feet"),
  10193. weight: math.unit(150, "lb"),
  10194. name: "Front",
  10195. image: {
  10196. source: "./media/characters/porter/front.svg",
  10197. extra: 1,
  10198. bottom: 0.01
  10199. }
  10200. },
  10201. frontRobes: {
  10202. height: math.unit(6, "feet"),
  10203. weight: math.unit(150, "lb"),
  10204. name: "Front (Robes)",
  10205. image: {
  10206. source: "./media/characters/porter/front-robes.svg",
  10207. extra: 1.01,
  10208. bottom: 0.01
  10209. }
  10210. },
  10211. },
  10212. [
  10213. {
  10214. name: "Normal",
  10215. height: math.unit(11 + 9 / 12, "feet"),
  10216. default: true
  10217. },
  10218. ]
  10219. ))
  10220. characterMakers.push(() => makeCharacter(
  10221. { name: "Lucy" },
  10222. {
  10223. legendary: {
  10224. height: math.unit(6, "feet"),
  10225. weight: math.unit(150, "lb"),
  10226. name: "Legendary",
  10227. image: {
  10228. source: "./media/characters/lucy/legendary.svg",
  10229. extra: 1355 / 1100,
  10230. bottom: 0.045
  10231. }
  10232. },
  10233. },
  10234. [
  10235. {
  10236. name: "Legendary",
  10237. height: math.unit(86882 * 2, "miles"),
  10238. default: true
  10239. },
  10240. ]
  10241. ))
  10242. characterMakers.push(() => makeCharacter(
  10243. { name: "Drusilla" },
  10244. {
  10245. front: {
  10246. height: math.unit(6, "feet"),
  10247. weight: math.unit(150, "lb"),
  10248. name: "Front",
  10249. image: {
  10250. source: "./media/characters/drusilla/front.svg",
  10251. extra: 678 / 635,
  10252. bottom: 0.03
  10253. }
  10254. },
  10255. back: {
  10256. height: math.unit(6, "feet"),
  10257. weight: math.unit(150, "lb"),
  10258. name: "Back",
  10259. image: {
  10260. source: "./media/characters/drusilla/back.svg",
  10261. extra: 678 / 635,
  10262. bottom: 0.005
  10263. }
  10264. },
  10265. },
  10266. [
  10267. {
  10268. name: "Macro",
  10269. height: math.unit(100, "feet")
  10270. },
  10271. {
  10272. name: "Canon Height",
  10273. height: math.unit(2000, "feet"),
  10274. default: true
  10275. },
  10276. ]
  10277. ))
  10278. characterMakers.push(() => makeCharacter(
  10279. { name: "Renard Thatch" },
  10280. {
  10281. front: {
  10282. height: math.unit(6, "feet"),
  10283. weight: math.unit(180, "lb"),
  10284. name: "Front",
  10285. image: {
  10286. source: "./media/characters/renard-thatch/front.svg",
  10287. extra: 2411 / 2275,
  10288. bottom: 0.01
  10289. }
  10290. },
  10291. frontPosing: {
  10292. height: math.unit(6, "feet"),
  10293. weight: math.unit(180, "lb"),
  10294. name: "Front (Posing)",
  10295. image: {
  10296. source: "./media/characters/renard-thatch/front-posing.svg",
  10297. extra: 2381 / 2261,
  10298. bottom: 0.01
  10299. }
  10300. },
  10301. back: {
  10302. height: math.unit(6, "feet"),
  10303. weight: math.unit(180, "lb"),
  10304. name: "Back",
  10305. image: {
  10306. source: "./media/characters/renard-thatch/back.svg",
  10307. extra: 2428 / 2288
  10308. }
  10309. },
  10310. },
  10311. [
  10312. {
  10313. name: "Micro",
  10314. height: math.unit(3, "inches")
  10315. },
  10316. {
  10317. name: "Default",
  10318. height: math.unit(6, "feet"),
  10319. default: true
  10320. },
  10321. {
  10322. name: "Macro",
  10323. height: math.unit(75, "feet")
  10324. },
  10325. ]
  10326. ))
  10327. characterMakers.push(() => makeCharacter(
  10328. { name: "Sekvra" },
  10329. {
  10330. front: {
  10331. height: math.unit(1450, "feet"),
  10332. weight: math.unit(1.21e6, "tons"),
  10333. name: "Front",
  10334. image: {
  10335. source: "./media/characters/sekvra/front.svg",
  10336. extra: 1,
  10337. bottom: 0.03
  10338. }
  10339. },
  10340. frontClothed: {
  10341. height: math.unit(1450, "feet"),
  10342. weight: math.unit(1.21e6, "tons"),
  10343. name: "Front (Clothed)",
  10344. image: {
  10345. source: "./media/characters/sekvra/front-clothed.svg",
  10346. extra: 1,
  10347. bottom: 0.03
  10348. }
  10349. },
  10350. side: {
  10351. height: math.unit(1450, "feet"),
  10352. weight: math.unit(1.21e6, "tons"),
  10353. name: "Side",
  10354. image: {
  10355. source: "./media/characters/sekvra/side.svg",
  10356. extra: 1,
  10357. bottom: 0.025
  10358. }
  10359. },
  10360. back: {
  10361. height: math.unit(1450, "feet"),
  10362. weight: math.unit(1.21e6, "tons"),
  10363. name: "Back",
  10364. image: {
  10365. source: "./media/characters/sekvra/back.svg",
  10366. extra: 1,
  10367. bottom: 0.005
  10368. }
  10369. },
  10370. },
  10371. [
  10372. {
  10373. name: "Macro",
  10374. height: math.unit(1450, "feet"),
  10375. default: true
  10376. },
  10377. {
  10378. name: "Megamacro",
  10379. height: math.unit(15000, "feet")
  10380. },
  10381. ]
  10382. ))
  10383. characterMakers.push(() => makeCharacter(
  10384. { name: "Carmine" },
  10385. {
  10386. front: {
  10387. height: math.unit(6, "feet"),
  10388. weight: math.unit(150, "lb"),
  10389. name: "Front",
  10390. image: {
  10391. source: "./media/characters/carmine/front.svg",
  10392. extra: 1,
  10393. bottom: 0.035
  10394. }
  10395. },
  10396. frontArmor: {
  10397. height: math.unit(6, "feet"),
  10398. weight: math.unit(150, "lb"),
  10399. name: "Front (Armor)",
  10400. image: {
  10401. source: "./media/characters/carmine/front-armor.svg",
  10402. extra: 1,
  10403. bottom: 0.035
  10404. }
  10405. },
  10406. },
  10407. [
  10408. {
  10409. name: "Large",
  10410. height: math.unit(1, "mile")
  10411. },
  10412. {
  10413. name: "Huge",
  10414. height: math.unit(40, "miles"),
  10415. default: true
  10416. },
  10417. {
  10418. name: "Colossal",
  10419. height: math.unit(2500, "miles")
  10420. },
  10421. ]
  10422. ))
  10423. characterMakers.push(() => makeCharacter(
  10424. { name: "Elyssia" },
  10425. {
  10426. front: {
  10427. height: math.unit(6, "feet"),
  10428. weight: math.unit(150, "lb"),
  10429. name: "Front",
  10430. image: {
  10431. source: "./media/characters/elyssia/front.svg",
  10432. extra: 2201 / 2035,
  10433. bottom: 0.05
  10434. }
  10435. },
  10436. frontClothed: {
  10437. height: math.unit(6, "feet"),
  10438. weight: math.unit(150, "lb"),
  10439. name: "Front (Clothed)",
  10440. image: {
  10441. source: "./media/characters/elyssia/front-clothed.svg",
  10442. extra: 2201 / 2035,
  10443. bottom: 0.05
  10444. }
  10445. },
  10446. back: {
  10447. height: math.unit(6, "feet"),
  10448. weight: math.unit(150, "lb"),
  10449. name: "Back",
  10450. image: {
  10451. source: "./media/characters/elyssia/back.svg",
  10452. extra: 2201 / 2035,
  10453. bottom: 0.013
  10454. }
  10455. },
  10456. },
  10457. [
  10458. {
  10459. name: "Smaller",
  10460. height: math.unit(150, "feet")
  10461. },
  10462. {
  10463. name: "Standard",
  10464. height: math.unit(1400, "feet"),
  10465. default: true
  10466. },
  10467. {
  10468. name: "Distracted",
  10469. height: math.unit(15000, "feet")
  10470. },
  10471. ]
  10472. ))
  10473. characterMakers.push(() => makeCharacter(
  10474. { name: "Geno Maxwell" },
  10475. {
  10476. front: {
  10477. height: math.unit(7 + 4 / 12, "feet"),
  10478. weight: math.unit(500, "lb"),
  10479. name: "Front",
  10480. image: {
  10481. source: "./media/characters/geno-maxwell/front.svg",
  10482. extra: 2207 / 2040,
  10483. bottom: 0.015
  10484. }
  10485. },
  10486. },
  10487. [
  10488. {
  10489. name: "Micro",
  10490. height: math.unit(3, "inches")
  10491. },
  10492. {
  10493. name: "Normal",
  10494. height: math.unit(7 + 4 / 12, "feet"),
  10495. default: true
  10496. },
  10497. {
  10498. name: "Macro",
  10499. height: math.unit(220, "feet")
  10500. },
  10501. {
  10502. name: "Megamacro",
  10503. height: math.unit(11, "miles")
  10504. },
  10505. ]
  10506. ))
  10507. characterMakers.push(() => makeCharacter(
  10508. { name: "Regena Maxwell" },
  10509. {
  10510. front: {
  10511. height: math.unit(7 + 4 / 12, "feet"),
  10512. weight: math.unit(500, "lb"),
  10513. name: "Front",
  10514. image: {
  10515. source: "./media/characters/regena-maxwell/front.svg",
  10516. extra: 3115 / 2770,
  10517. bottom: 0.02
  10518. }
  10519. },
  10520. },
  10521. [
  10522. {
  10523. name: "Normal",
  10524. height: math.unit(7 + 4 / 12, "feet"),
  10525. default: true
  10526. },
  10527. {
  10528. name: "Macro",
  10529. height: math.unit(220, "feet")
  10530. },
  10531. {
  10532. name: "Megamacro",
  10533. height: math.unit(11, "miles")
  10534. },
  10535. ]
  10536. ))
  10537. characterMakers.push(() => makeCharacter(
  10538. { name: "XGlidingDragonX" },
  10539. {
  10540. front: {
  10541. height: math.unit(6, "feet"),
  10542. weight: math.unit(150, "lb"),
  10543. name: "Front",
  10544. image: {
  10545. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10546. extra: 860 / 690,
  10547. bottom: 0.03
  10548. }
  10549. },
  10550. },
  10551. [
  10552. {
  10553. name: "Normal",
  10554. height: math.unit(1.7, "meters"),
  10555. default: true
  10556. },
  10557. ]
  10558. ))
  10559. characterMakers.push(() => makeCharacter(
  10560. { name: "Quilly" },
  10561. {
  10562. front: {
  10563. height: math.unit(6, "feet"),
  10564. weight: math.unit(150, "lb"),
  10565. name: "Front",
  10566. image: {
  10567. source: "./media/characters/quilly/front.svg",
  10568. extra: 890 / 776
  10569. }
  10570. },
  10571. },
  10572. [
  10573. {
  10574. name: "Gigamacro",
  10575. height: math.unit(404090, "miles"),
  10576. default: true
  10577. },
  10578. ]
  10579. ))
  10580. characterMakers.push(() => makeCharacter(
  10581. { name: "Tempest" },
  10582. {
  10583. front: {
  10584. height: math.unit(7 + 8 / 12, "feet"),
  10585. weight: math.unit(350, "lb"),
  10586. name: "Front",
  10587. image: {
  10588. source: "./media/characters/tempest/front.svg",
  10589. extra: 1175 / 1086,
  10590. bottom: 0.02
  10591. }
  10592. },
  10593. },
  10594. [
  10595. {
  10596. name: "Normal",
  10597. height: math.unit(7 + 8 / 12, "feet"),
  10598. default: true
  10599. },
  10600. ]
  10601. ))
  10602. characterMakers.push(() => makeCharacter(
  10603. { name: "Rodger" },
  10604. {
  10605. side: {
  10606. height: math.unit(4 + 5 / 12, "feet"),
  10607. weight: math.unit(80, "lb"),
  10608. name: "Side",
  10609. image: {
  10610. source: "./media/characters/rodger/side.svg",
  10611. extra: 1235 / 1118
  10612. }
  10613. },
  10614. },
  10615. [
  10616. {
  10617. name: "Micro",
  10618. height: math.unit(1, "inch")
  10619. },
  10620. {
  10621. name: "Normal",
  10622. height: math.unit(4 + 5 / 12, "feet"),
  10623. default: true
  10624. },
  10625. {
  10626. name: "Macro",
  10627. height: math.unit(120, "feet")
  10628. },
  10629. ]
  10630. ))
  10631. characterMakers.push(() => makeCharacter(
  10632. { name: "Danyel" },
  10633. {
  10634. front: {
  10635. height: math.unit(6, "feet"),
  10636. weight: math.unit(150, "lb"),
  10637. name: "Front",
  10638. image: {
  10639. source: "./media/characters/danyel/front.svg",
  10640. extra: 1185 / 1123,
  10641. bottom: 0.05
  10642. }
  10643. },
  10644. },
  10645. [
  10646. {
  10647. name: "Shrunken",
  10648. height: math.unit(0.5, "mm")
  10649. },
  10650. {
  10651. name: "Micro",
  10652. height: math.unit(1, "mm"),
  10653. default: true
  10654. },
  10655. {
  10656. name: "Upsized",
  10657. height: math.unit(5 + 5 / 12, "feet")
  10658. },
  10659. ]
  10660. ))
  10661. characterMakers.push(() => makeCharacter(
  10662. { name: "Vivian Bijoux" },
  10663. {
  10664. front: {
  10665. height: math.unit(5 + 6 / 12, "feet"),
  10666. weight: math.unit(200, "lb"),
  10667. name: "Front",
  10668. image: {
  10669. source: "./media/characters/vivian-bijoux/front.svg",
  10670. extra: 1,
  10671. bottom: 0.072
  10672. }
  10673. },
  10674. },
  10675. [
  10676. {
  10677. name: "Normal",
  10678. height: math.unit(5 + 6 / 12, "feet"),
  10679. default: true
  10680. },
  10681. {
  10682. name: "Bad Dream",
  10683. height: math.unit(500, "feet")
  10684. },
  10685. {
  10686. name: "Nightmare",
  10687. height: math.unit(500, "miles")
  10688. },
  10689. ]
  10690. ))
  10691. characterMakers.push(() => makeCharacter(
  10692. { name: "Zeta" },
  10693. {
  10694. front: {
  10695. height: math.unit(6 + 1 / 12, "feet"),
  10696. weight: math.unit(260, "lb"),
  10697. name: "Front",
  10698. image: {
  10699. source: "./media/characters/zeta/front.svg",
  10700. extra: 1968 / 1889,
  10701. bottom: 0.06
  10702. }
  10703. },
  10704. back: {
  10705. height: math.unit(6 + 1 / 12, "feet"),
  10706. weight: math.unit(260, "lb"),
  10707. name: "Back",
  10708. image: {
  10709. source: "./media/characters/zeta/back.svg",
  10710. extra: 1944 / 1858,
  10711. bottom: 0.03
  10712. }
  10713. },
  10714. hand: {
  10715. height: math.unit(1.112, "feet"),
  10716. name: "Hand",
  10717. image: {
  10718. source: "./media/characters/zeta/hand.svg"
  10719. }
  10720. },
  10721. foot: {
  10722. height: math.unit(1.48, "feet"),
  10723. name: "Foot",
  10724. image: {
  10725. source: "./media/characters/zeta/foot.svg"
  10726. }
  10727. },
  10728. },
  10729. [
  10730. {
  10731. name: "Micro",
  10732. height: math.unit(6, "inches")
  10733. },
  10734. {
  10735. name: "Normal",
  10736. height: math.unit(6 + 1 / 12, "feet"),
  10737. default: true
  10738. },
  10739. {
  10740. name: "Macro",
  10741. height: math.unit(20, "feet")
  10742. },
  10743. ]
  10744. ))
  10745. characterMakers.push(() => makeCharacter(
  10746. { name: "Jamie Larsen" },
  10747. {
  10748. front: {
  10749. height: math.unit(6, "feet"),
  10750. weight: math.unit(150, "lb"),
  10751. name: "Front",
  10752. image: {
  10753. source: "./media/characters/jamie-larsen/front.svg",
  10754. extra: 962 / 933,
  10755. bottom: 0.02
  10756. }
  10757. },
  10758. back: {
  10759. height: math.unit(6, "feet"),
  10760. weight: math.unit(150, "lb"),
  10761. name: "Back",
  10762. image: {
  10763. source: "./media/characters/jamie-larsen/back.svg",
  10764. extra: 997 / 946
  10765. }
  10766. },
  10767. },
  10768. [
  10769. {
  10770. name: "Macro",
  10771. height: math.unit(28 + 7 / 12, "feet"),
  10772. default: true
  10773. },
  10774. {
  10775. name: "Macro+",
  10776. height: math.unit(180, "feet")
  10777. },
  10778. {
  10779. name: "Megamacro",
  10780. height: math.unit(10, "miles")
  10781. },
  10782. {
  10783. name: "Gigamacro",
  10784. height: math.unit(200000, "miles")
  10785. },
  10786. ]
  10787. ))
  10788. characterMakers.push(() => makeCharacter(
  10789. { name: "Vance" },
  10790. {
  10791. front: {
  10792. height: math.unit(6, "feet"),
  10793. weight: math.unit(120, "lb"),
  10794. name: "Front",
  10795. image: {
  10796. source: "./media/characters/vance/front.svg",
  10797. extra: 1980 / 1890,
  10798. bottom: 0.09
  10799. }
  10800. },
  10801. back: {
  10802. height: math.unit(6, "feet"),
  10803. weight: math.unit(120, "lb"),
  10804. name: "Back",
  10805. image: {
  10806. source: "./media/characters/vance/back.svg",
  10807. extra: 2081 / 1994,
  10808. bottom: 0.014
  10809. }
  10810. },
  10811. hand: {
  10812. height: math.unit(0.88, "feet"),
  10813. name: "Hand",
  10814. image: {
  10815. source: "./media/characters/vance/hand.svg"
  10816. }
  10817. },
  10818. foot: {
  10819. height: math.unit(0.64, "feet"),
  10820. name: "Foot",
  10821. image: {
  10822. source: "./media/characters/vance/foot.svg"
  10823. }
  10824. },
  10825. },
  10826. [
  10827. {
  10828. name: "Small",
  10829. height: math.unit(90, "feet"),
  10830. default: true
  10831. },
  10832. {
  10833. name: "Macro",
  10834. height: math.unit(100, "meters")
  10835. },
  10836. {
  10837. name: "Megamacro",
  10838. height: math.unit(15, "miles")
  10839. },
  10840. ]
  10841. ))
  10842. characterMakers.push(() => makeCharacter(
  10843. { name: "Xochitl" },
  10844. {
  10845. front: {
  10846. height: math.unit(6, "feet"),
  10847. weight: math.unit(180, "lb"),
  10848. name: "Front",
  10849. image: {
  10850. source: "./media/characters/xochitl/front.svg",
  10851. extra: 2297 / 2261,
  10852. bottom: 0.065
  10853. }
  10854. },
  10855. back: {
  10856. height: math.unit(6, "feet"),
  10857. weight: math.unit(180, "lb"),
  10858. name: "Back",
  10859. image: {
  10860. source: "./media/characters/xochitl/back.svg",
  10861. extra: 2386 / 2354,
  10862. bottom: 0.01
  10863. }
  10864. },
  10865. foot: {
  10866. height: math.unit(6 / 5 * 1.15, "feet"),
  10867. weight: math.unit(150, "lb"),
  10868. name: "Foot",
  10869. image: {
  10870. source: "./media/characters/xochitl/foot.svg"
  10871. }
  10872. },
  10873. },
  10874. [
  10875. {
  10876. name: "Macro",
  10877. height: math.unit(80, "feet")
  10878. },
  10879. {
  10880. name: "Macro+",
  10881. height: math.unit(400, "feet"),
  10882. default: true
  10883. },
  10884. {
  10885. name: "Gigamacro",
  10886. height: math.unit(80000, "miles")
  10887. },
  10888. {
  10889. name: "Gigamacro+",
  10890. height: math.unit(400000, "miles")
  10891. },
  10892. {
  10893. name: "Teramacro",
  10894. height: math.unit(300, "AU")
  10895. },
  10896. ]
  10897. ))
  10898. characterMakers.push(() => makeCharacter(
  10899. { name: "Vincent" },
  10900. {
  10901. front: {
  10902. height: math.unit(6, "feet"),
  10903. weight: math.unit(150, "lb"),
  10904. name: "Front",
  10905. image: {
  10906. source: "./media/characters/vincent/front.svg",
  10907. extra: 1130 / 1080,
  10908. bottom: 0.055
  10909. }
  10910. },
  10911. beak: {
  10912. height: math.unit(6 * 0.1, "feet"),
  10913. name: "Beak",
  10914. image: {
  10915. source: "./media/characters/vincent/beak.svg"
  10916. }
  10917. },
  10918. hand: {
  10919. height: math.unit(6 * 0.85, "feet"),
  10920. weight: math.unit(150, "lb"),
  10921. name: "Hand",
  10922. image: {
  10923. source: "./media/characters/vincent/hand.svg"
  10924. }
  10925. },
  10926. foot: {
  10927. height: math.unit(6 * 0.19, "feet"),
  10928. weight: math.unit(150, "lb"),
  10929. name: "Foot",
  10930. image: {
  10931. source: "./media/characters/vincent/foot.svg"
  10932. }
  10933. },
  10934. },
  10935. [
  10936. {
  10937. name: "Base",
  10938. height: math.unit(6 + 5 / 12, "feet"),
  10939. default: true
  10940. },
  10941. {
  10942. name: "Macro",
  10943. height: math.unit(300, "feet")
  10944. },
  10945. {
  10946. name: "Megamacro",
  10947. height: math.unit(2, "miles")
  10948. },
  10949. {
  10950. name: "Gigamacro",
  10951. height: math.unit(1000, "miles")
  10952. },
  10953. ]
  10954. ))
  10955. characterMakers.push(() => makeCharacter(
  10956. { name: "Jay" },
  10957. {
  10958. front: {
  10959. height: math.unit(6 + 2 / 12, "feet"),
  10960. weight: math.unit(65, "lb"),
  10961. name: "Front",
  10962. image: {
  10963. source: "./media/characters/jay/front.svg",
  10964. extra: 1510 / 1430,
  10965. bottom: 0.042
  10966. }
  10967. },
  10968. back: {
  10969. height: math.unit(6 + 2 / 12, "feet"),
  10970. weight: math.unit(65, "lb"),
  10971. name: "Back",
  10972. image: {
  10973. source: "./media/characters/jay/back.svg",
  10974. extra: 1510 / 1430,
  10975. bottom: 0.025
  10976. }
  10977. },
  10978. clothed: {
  10979. height: math.unit(6 + 2 / 12, "feet"),
  10980. weight: math.unit(65, "lb"),
  10981. name: "Front (Clothed)",
  10982. image: {
  10983. source: "./media/characters/jay/clothed.svg",
  10984. extra: 744 / 699,
  10985. bottom: 0.043
  10986. }
  10987. },
  10988. },
  10989. [
  10990. {
  10991. name: "Micro",
  10992. height: math.unit(1, "inch")
  10993. },
  10994. {
  10995. name: "Normal",
  10996. height: math.unit(6 + 2 / 12, "feet"),
  10997. default: true
  10998. },
  10999. {
  11000. name: "Macro",
  11001. height: math.unit(1, "mile")
  11002. },
  11003. {
  11004. name: "Megamacro",
  11005. height: math.unit(100, "miles")
  11006. },
  11007. ]
  11008. ))
  11009. characterMakers.push(() => makeCharacter(
  11010. { name: "Coatl" },
  11011. {
  11012. front: {
  11013. height: math.unit(2, "meters"),
  11014. weight: math.unit(500, "kg"),
  11015. name: "Front",
  11016. image: {
  11017. source: "./media/characters/coatl/front.svg",
  11018. extra: 3948 / 3500,
  11019. bottom: 0.082
  11020. }
  11021. },
  11022. },
  11023. [
  11024. {
  11025. name: "Normal",
  11026. height: math.unit(4, "meters")
  11027. },
  11028. {
  11029. name: "Macro",
  11030. height: math.unit(100, "meters"),
  11031. default: true
  11032. },
  11033. {
  11034. name: "Macro+",
  11035. height: math.unit(300, "meters")
  11036. },
  11037. {
  11038. name: "Megamacro",
  11039. height: math.unit(3, "gigameters")
  11040. },
  11041. {
  11042. name: "Megamacro+",
  11043. height: math.unit(300, "terameters")
  11044. },
  11045. {
  11046. name: "Megamacro++",
  11047. height: math.unit(3, "lightyears")
  11048. },
  11049. ]
  11050. ))
  11051. characterMakers.push(() => makeCharacter(
  11052. { name: "Shiroryu" },
  11053. {
  11054. front: {
  11055. height: math.unit(6, "feet"),
  11056. weight: math.unit(50, "kg"),
  11057. name: "front",
  11058. image: {
  11059. source: "./media/characters/shiroryu/front.svg",
  11060. extra: 1990 / 1935
  11061. }
  11062. },
  11063. },
  11064. [
  11065. {
  11066. name: "Mortal Mingling",
  11067. height: math.unit(3, "meters")
  11068. },
  11069. {
  11070. name: "Kaiju-ish",
  11071. height: math.unit(250, "meters")
  11072. },
  11073. {
  11074. name: "Somewhat Godly",
  11075. height: math.unit(400, "km"),
  11076. default: true
  11077. },
  11078. {
  11079. name: "Planetary",
  11080. height: math.unit(300, "megameters")
  11081. },
  11082. {
  11083. name: "Galaxy-dwarfing",
  11084. height: math.unit(450, "kiloparsecs")
  11085. },
  11086. {
  11087. name: "Universe Eater",
  11088. height: math.unit(150, "gigaparsecs")
  11089. },
  11090. {
  11091. name: "Almost Immeasurable",
  11092. height: math.unit(1.3e266, "yottaparsecs")
  11093. },
  11094. ]
  11095. ))
  11096. characterMakers.push(() => makeCharacter(
  11097. { name: "Umeko" },
  11098. {
  11099. front: {
  11100. height: math.unit(6, "feet"),
  11101. weight: math.unit(150, "lb"),
  11102. name: "Front",
  11103. image: {
  11104. source: "./media/characters/umeko/front.svg",
  11105. extra: 1,
  11106. bottom: 0.019
  11107. }
  11108. },
  11109. frontArmored: {
  11110. height: math.unit(6, "feet"),
  11111. weight: math.unit(150, "lb"),
  11112. name: "Front (Armored)",
  11113. image: {
  11114. source: "./media/characters/umeko/front-armored.svg",
  11115. extra: 1,
  11116. bottom: 0.021
  11117. }
  11118. },
  11119. },
  11120. [
  11121. {
  11122. name: "Macro",
  11123. height: math.unit(220, "feet"),
  11124. default: true
  11125. },
  11126. {
  11127. name: "Guardian Dragon",
  11128. height: math.unit(50, "miles")
  11129. },
  11130. {
  11131. name: "Cosmic",
  11132. height: math.unit(800000, "miles")
  11133. },
  11134. ]
  11135. ))
  11136. characterMakers.push(() => makeCharacter(
  11137. { name: "Cassidy" },
  11138. {
  11139. front: {
  11140. height: math.unit(6, "feet"),
  11141. weight: math.unit(150, "lb"),
  11142. name: "Front",
  11143. image: {
  11144. source: "./media/characters/cassidy/front.svg",
  11145. extra: 1,
  11146. bottom: 0.043
  11147. }
  11148. },
  11149. },
  11150. [
  11151. {
  11152. name: "Canon Height",
  11153. height: math.unit(120, "feet"),
  11154. default: true
  11155. },
  11156. {
  11157. name: "Macro+",
  11158. height: math.unit(400, "feet")
  11159. },
  11160. {
  11161. name: "Macro++",
  11162. height: math.unit(4000, "feet")
  11163. },
  11164. {
  11165. name: "Megamacro",
  11166. height: math.unit(3, "miles")
  11167. },
  11168. ]
  11169. ))
  11170. characterMakers.push(() => makeCharacter(
  11171. { name: "Isaac" },
  11172. {
  11173. front: {
  11174. height: math.unit(6, "feet"),
  11175. weight: math.unit(150, "lb"),
  11176. name: "Front",
  11177. image: {
  11178. source: "./media/characters/isaac/front.svg",
  11179. extra: 896 / 815,
  11180. bottom: 0.11
  11181. }
  11182. },
  11183. },
  11184. [
  11185. {
  11186. name: "Human Size",
  11187. height: math.unit(8, "feet"),
  11188. default: true
  11189. },
  11190. {
  11191. name: "Macro",
  11192. height: math.unit(400, "feet")
  11193. },
  11194. {
  11195. name: "Megamacro",
  11196. height: math.unit(50, "miles")
  11197. },
  11198. {
  11199. name: "Canon Height",
  11200. height: math.unit(200, "AU")
  11201. },
  11202. ]
  11203. ))
  11204. characterMakers.push(() => makeCharacter(
  11205. { name: "Sleekit" },
  11206. {
  11207. front: {
  11208. height: math.unit(6, "feet"),
  11209. weight: math.unit(72, "kg"),
  11210. name: "Front",
  11211. image: {
  11212. source: "./media/characters/sleekit/front.svg",
  11213. extra: 4693 / 4487,
  11214. bottom: 0.012
  11215. }
  11216. },
  11217. },
  11218. [
  11219. {
  11220. name: "Minimum Height",
  11221. height: math.unit(10, "meters")
  11222. },
  11223. {
  11224. name: "Smaller",
  11225. height: math.unit(25, "meters")
  11226. },
  11227. {
  11228. name: "Larger",
  11229. height: math.unit(38, "meters"),
  11230. default: true
  11231. },
  11232. {
  11233. name: "Maximum height",
  11234. height: math.unit(100, "meters")
  11235. },
  11236. ]
  11237. ))
  11238. characterMakers.push(() => makeCharacter(
  11239. { name: "Nillia" },
  11240. {
  11241. front: {
  11242. height: math.unit(6, "feet"),
  11243. weight: math.unit(150, "lb"),
  11244. name: "Front",
  11245. image: {
  11246. source: "./media/characters/nillia/front.svg",
  11247. extra: 2195 / 2037,
  11248. bottom: 0.005
  11249. }
  11250. },
  11251. back: {
  11252. height: math.unit(6, "feet"),
  11253. weight: math.unit(150, "lb"),
  11254. name: "Back",
  11255. image: {
  11256. source: "./media/characters/nillia/back.svg",
  11257. extra: 2195 / 2037,
  11258. bottom: 0.005
  11259. }
  11260. },
  11261. },
  11262. [
  11263. {
  11264. name: "Canon Height",
  11265. height: math.unit(489, "feet"),
  11266. default: true
  11267. }
  11268. ]
  11269. ))
  11270. characterMakers.push(() => makeCharacter(
  11271. { name: "Mesmyriza" },
  11272. {
  11273. front: {
  11274. height: math.unit(6, "feet"),
  11275. weight: math.unit(150, "lb"),
  11276. name: "Front",
  11277. image: {
  11278. source: "./media/characters/mesmyriza/front.svg",
  11279. extra: 2067 / 1784,
  11280. bottom: 0.035
  11281. }
  11282. },
  11283. foot: {
  11284. height: math.unit(6 / (250 / 35), "feet"),
  11285. name: "Foot",
  11286. image: {
  11287. source: "./media/characters/mesmyriza/foot.svg"
  11288. }
  11289. },
  11290. },
  11291. [
  11292. {
  11293. name: "Macro",
  11294. height: math.unit(457, "meters"),
  11295. default: true
  11296. },
  11297. {
  11298. name: "Megamacro",
  11299. height: math.unit(8, "megameters")
  11300. },
  11301. ]
  11302. ))
  11303. characterMakers.push(() => makeCharacter(
  11304. { name: "Saudade" },
  11305. {
  11306. front: {
  11307. height: math.unit(6, "feet"),
  11308. weight: math.unit(250, "lb"),
  11309. name: "Front",
  11310. image: {
  11311. source: "./media/characters/saudade/front.svg",
  11312. extra: 1172 / 1139,
  11313. bottom: 0.035
  11314. }
  11315. },
  11316. },
  11317. [
  11318. {
  11319. name: "Micro",
  11320. height: math.unit(3, "inches")
  11321. },
  11322. {
  11323. name: "Normal",
  11324. height: math.unit(6, "feet"),
  11325. default: true
  11326. },
  11327. {
  11328. name: "Macro",
  11329. height: math.unit(50, "feet")
  11330. },
  11331. {
  11332. name: "Megamacro",
  11333. height: math.unit(2800, "feet")
  11334. },
  11335. ]
  11336. ))
  11337. characterMakers.push(() => makeCharacter(
  11338. { name: "Keireer" },
  11339. {
  11340. front: {
  11341. height: math.unit(5 + 4 / 12, "feet"),
  11342. weight: math.unit(100, "lb"),
  11343. name: "Front",
  11344. image: {
  11345. source: "./media/characters/keireer/front.svg",
  11346. extra: 716 / 666,
  11347. bottom: 0.05
  11348. }
  11349. },
  11350. },
  11351. [
  11352. {
  11353. name: "Normal",
  11354. height: math.unit(5 + 4 / 12, "feet"),
  11355. default: true
  11356. },
  11357. ]
  11358. ))
  11359. characterMakers.push(() => makeCharacter(
  11360. { name: "Mirja" },
  11361. {
  11362. front: {
  11363. height: math.unit(6, "feet"),
  11364. weight: math.unit(90, "kg"),
  11365. name: "Front",
  11366. image: {
  11367. source: "./media/characters/mirja/front.svg",
  11368. extra: 1789 / 1683,
  11369. bottom: 0.05
  11370. }
  11371. },
  11372. frontDressed: {
  11373. height: math.unit(6, "feet"),
  11374. weight: math.unit(90, "lb"),
  11375. name: "Front (Dressed)",
  11376. image: {
  11377. source: "./media/characters/mirja/front-dressed.svg",
  11378. extra: 1789 / 1683,
  11379. bottom: 0.05
  11380. }
  11381. },
  11382. back: {
  11383. height: math.unit(6, "feet"),
  11384. weight: math.unit(90, "lb"),
  11385. name: "Back",
  11386. image: {
  11387. source: "./media/characters/mirja/back.svg",
  11388. extra: 953 / 917,
  11389. bottom: 0.017
  11390. }
  11391. },
  11392. },
  11393. [
  11394. {
  11395. name: "\"Incognito\"",
  11396. height: math.unit(3, "meters")
  11397. },
  11398. {
  11399. name: "Strolling Size",
  11400. height: math.unit(15, "km")
  11401. },
  11402. {
  11403. name: "Larger Strolling Size",
  11404. height: math.unit(400, "km")
  11405. },
  11406. {
  11407. name: "Preferred Size",
  11408. height: math.unit(5000, "km")
  11409. },
  11410. {
  11411. name: "True Size",
  11412. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11413. default: true
  11414. },
  11415. ]
  11416. ))
  11417. characterMakers.push(() => makeCharacter(
  11418. { name: "Nightraver" },
  11419. {
  11420. front: {
  11421. height: math.unit(15, "feet"),
  11422. weight: math.unit(880, "kg"),
  11423. name: "Front",
  11424. image: {
  11425. source: "./media/characters/nightraver/front.svg",
  11426. extra: 2444 / 2160,
  11427. bottom: 0.027
  11428. }
  11429. },
  11430. back: {
  11431. height: math.unit(15, "feet"),
  11432. weight: math.unit(880, "kg"),
  11433. name: "Back",
  11434. image: {
  11435. source: "./media/characters/nightraver/back.svg",
  11436. extra: 2309 / 2180,
  11437. bottom: 0.005
  11438. }
  11439. },
  11440. sole: {
  11441. height: math.unit(2.878, "feet"),
  11442. name: "Sole",
  11443. image: {
  11444. source: "./media/characters/nightraver/sole.svg"
  11445. }
  11446. },
  11447. foot: {
  11448. height: math.unit(2.285, "feet"),
  11449. name: "Foot",
  11450. image: {
  11451. source: "./media/characters/nightraver/foot.svg"
  11452. }
  11453. },
  11454. maw: {
  11455. height: math.unit(2.67, "feet"),
  11456. name: "Maw",
  11457. image: {
  11458. source: "./media/characters/nightraver/maw.svg"
  11459. }
  11460. },
  11461. },
  11462. [
  11463. {
  11464. name: "Micro",
  11465. height: math.unit(1, "cm")
  11466. },
  11467. {
  11468. name: "Normal",
  11469. height: math.unit(15, "feet"),
  11470. default: true
  11471. },
  11472. {
  11473. name: "Macro",
  11474. height: math.unit(300, "feet")
  11475. },
  11476. {
  11477. name: "Megamacro",
  11478. height: math.unit(300, "miles")
  11479. },
  11480. {
  11481. name: "Gigamacro",
  11482. height: math.unit(10000, "miles")
  11483. },
  11484. ]
  11485. ))
  11486. characterMakers.push(() => makeCharacter(
  11487. { name: "Arc" },
  11488. {
  11489. side: {
  11490. height: math.unit(2, "inches"),
  11491. weight: math.unit(5, "grams"),
  11492. name: "Side",
  11493. image: {
  11494. source: "./media/characters/arc/side.svg"
  11495. }
  11496. },
  11497. },
  11498. [
  11499. {
  11500. name: "Micro",
  11501. height: math.unit(2, "inches"),
  11502. default: true
  11503. },
  11504. ]
  11505. ))
  11506. characterMakers.push(() => makeCharacter(
  11507. { name: "Nebula Shahar" },
  11508. {
  11509. front: {
  11510. height: math.unit(1.1938, "meters"),
  11511. weight: math.unit(54, "kg"),
  11512. name: "Front",
  11513. image: {
  11514. source: "./media/characters/nebula-shahar/front.svg",
  11515. extra: 1642 / 1436,
  11516. bottom: 0.06
  11517. }
  11518. },
  11519. },
  11520. [
  11521. {
  11522. name: "Megamicro",
  11523. height: math.unit(0.3, "mm")
  11524. },
  11525. {
  11526. name: "Micro",
  11527. height: math.unit(3, "cm")
  11528. },
  11529. {
  11530. name: "Normal",
  11531. height: math.unit(138, "cm"),
  11532. default: true
  11533. },
  11534. {
  11535. name: "Macro",
  11536. height: math.unit(30, "m")
  11537. },
  11538. ]
  11539. ))
  11540. characterMakers.push(() => makeCharacter(
  11541. { name: "Shayla" },
  11542. {
  11543. front: {
  11544. height: math.unit(5.24, "feet"),
  11545. weight: math.unit(150, "lb"),
  11546. name: "Front",
  11547. image: {
  11548. source: "./media/characters/shayla/front.svg",
  11549. extra: 1512 / 1414,
  11550. bottom: 0.01
  11551. }
  11552. },
  11553. back: {
  11554. height: math.unit(5.24, "feet"),
  11555. weight: math.unit(150, "lb"),
  11556. name: "Back",
  11557. image: {
  11558. source: "./media/characters/shayla/back.svg",
  11559. extra: 1512 / 1414
  11560. }
  11561. },
  11562. hand: {
  11563. height: math.unit(0.7781496062992126, "feet"),
  11564. name: "Hand",
  11565. image: {
  11566. source: "./media/characters/shayla/hand.svg"
  11567. }
  11568. },
  11569. foot: {
  11570. height: math.unit(1.4206036745406823, "feet"),
  11571. name: "Foot",
  11572. image: {
  11573. source: "./media/characters/shayla/foot.svg"
  11574. }
  11575. },
  11576. },
  11577. [
  11578. {
  11579. name: "Micro",
  11580. height: math.unit(0.32, "feet")
  11581. },
  11582. {
  11583. name: "Normal",
  11584. height: math.unit(5.24, "feet"),
  11585. default: true
  11586. },
  11587. {
  11588. name: "Macro",
  11589. height: math.unit(492.12, "feet")
  11590. },
  11591. {
  11592. name: "Megamacro",
  11593. height: math.unit(186.41, "miles")
  11594. },
  11595. ]
  11596. ))
  11597. characterMakers.push(() => makeCharacter(
  11598. { name: "Pia Jr." },
  11599. {
  11600. front: {
  11601. height: math.unit(2.2, "m"),
  11602. weight: math.unit(120, "kg"),
  11603. name: "Front",
  11604. image: {
  11605. source: "./media/characters/pia-jr/front.svg",
  11606. extra: 1000 / 970,
  11607. bottom: 0.035
  11608. }
  11609. },
  11610. hand: {
  11611. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11612. name: "Hand",
  11613. image: {
  11614. source: "./media/characters/pia-jr/hand.svg"
  11615. }
  11616. },
  11617. paw: {
  11618. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11619. name: "Paw",
  11620. image: {
  11621. source: "./media/characters/pia-jr/paw.svg"
  11622. }
  11623. },
  11624. },
  11625. [
  11626. {
  11627. name: "Micro",
  11628. height: math.unit(1.2, "cm")
  11629. },
  11630. {
  11631. name: "Normal",
  11632. height: math.unit(2.2, "m"),
  11633. default: true
  11634. },
  11635. {
  11636. name: "Macro",
  11637. height: math.unit(180, "m")
  11638. },
  11639. {
  11640. name: "Megamacro",
  11641. height: math.unit(420, "km")
  11642. },
  11643. ]
  11644. ))
  11645. characterMakers.push(() => makeCharacter(
  11646. { name: "Pia Sr." },
  11647. {
  11648. front: {
  11649. height: math.unit(2, "m"),
  11650. weight: math.unit(115, "kg"),
  11651. name: "Front",
  11652. image: {
  11653. source: "./media/characters/pia-sr/front.svg",
  11654. extra: 760 / 730,
  11655. bottom: 0.015
  11656. }
  11657. },
  11658. back: {
  11659. height: math.unit(2, "m"),
  11660. weight: math.unit(115, "kg"),
  11661. name: "Back",
  11662. image: {
  11663. source: "./media/characters/pia-sr/back.svg",
  11664. extra: 760 / 730,
  11665. bottom: 0.01
  11666. }
  11667. },
  11668. hand: {
  11669. height: math.unit(0.89 * 6.56 / 6, "feet"),
  11670. name: "Hand",
  11671. image: {
  11672. source: "./media/characters/pia-sr/hand.svg"
  11673. }
  11674. },
  11675. foot: {
  11676. height: math.unit(1.83, "feet"),
  11677. name: "Foot",
  11678. image: {
  11679. source: "./media/characters/pia-sr/foot.svg"
  11680. }
  11681. },
  11682. },
  11683. [
  11684. {
  11685. name: "Micro",
  11686. height: math.unit(88, "mm")
  11687. },
  11688. {
  11689. name: "Normal",
  11690. height: math.unit(2, "m"),
  11691. default: true
  11692. },
  11693. {
  11694. name: "Macro",
  11695. height: math.unit(200, "m")
  11696. },
  11697. {
  11698. name: "Megamacro",
  11699. height: math.unit(420, "km")
  11700. },
  11701. ]
  11702. ))
  11703. characterMakers.push(() => makeCharacter(
  11704. { name: "KIBIBYTE" },
  11705. {
  11706. front: {
  11707. height: math.unit(8 + 2 / 12, "feet"),
  11708. weight: math.unit(300, "lb"),
  11709. name: "Front",
  11710. image: {
  11711. source: "./media/characters/kibibyte/front.svg",
  11712. extra: 2221 / 2098,
  11713. bottom: 0.04
  11714. }
  11715. },
  11716. },
  11717. [
  11718. {
  11719. name: "Normal",
  11720. height: math.unit(8 + 2 / 12, "feet"),
  11721. default: true
  11722. },
  11723. {
  11724. name: "Socialable Macro",
  11725. height: math.unit(50, "feet")
  11726. },
  11727. {
  11728. name: "Macro",
  11729. height: math.unit(300, "feet")
  11730. },
  11731. {
  11732. name: "Megamacro",
  11733. height: math.unit(500, "miles")
  11734. },
  11735. ]
  11736. ))
  11737. characterMakers.push(() => makeCharacter(
  11738. { name: "Felix" },
  11739. {
  11740. front: {
  11741. height: math.unit(6, "feet"),
  11742. weight: math.unit(150, "lb"),
  11743. name: "Front",
  11744. image: {
  11745. source: "./media/characters/felix/front.svg",
  11746. extra: 762 / 722,
  11747. bottom: 0.02
  11748. }
  11749. },
  11750. frontClothed: {
  11751. height: math.unit(6, "feet"),
  11752. weight: math.unit(150, "lb"),
  11753. name: "Front (Clothed)",
  11754. image: {
  11755. source: "./media/characters/felix/front-clothed.svg",
  11756. extra: 762 / 722,
  11757. bottom: 0.02
  11758. }
  11759. },
  11760. },
  11761. [
  11762. {
  11763. name: "Normal",
  11764. height: math.unit(6 + 8 / 12, "feet"),
  11765. default: true
  11766. },
  11767. {
  11768. name: "Macro",
  11769. height: math.unit(2600, "feet")
  11770. },
  11771. {
  11772. name: "Megamacro",
  11773. height: math.unit(450, "miles")
  11774. },
  11775. ]
  11776. ))
  11777. characterMakers.push(() => makeCharacter(
  11778. { name: "Tobo" },
  11779. {
  11780. front: {
  11781. height: math.unit(6 + 1 / 12, "feet"),
  11782. weight: math.unit(250, "lb"),
  11783. name: "Front",
  11784. image: {
  11785. source: "./media/characters/tobo/front.svg",
  11786. extra: 608 / 586,
  11787. bottom: 0.023
  11788. }
  11789. },
  11790. back: {
  11791. height: math.unit(6 + 1 / 12, "feet"),
  11792. weight: math.unit(250, "lb"),
  11793. name: "Back",
  11794. image: {
  11795. source: "./media/characters/tobo/back.svg",
  11796. extra: 608 / 586
  11797. }
  11798. },
  11799. },
  11800. [
  11801. {
  11802. name: "Nano",
  11803. height: math.unit(2, "nm")
  11804. },
  11805. {
  11806. name: "Megamicro",
  11807. height: math.unit(0.1, "mm")
  11808. },
  11809. {
  11810. name: "Micro",
  11811. height: math.unit(1, "inch"),
  11812. default: true
  11813. },
  11814. {
  11815. name: "Human-sized",
  11816. height: math.unit(6 + 1 / 12, "feet")
  11817. },
  11818. {
  11819. name: "Macro",
  11820. height: math.unit(250, "feet")
  11821. },
  11822. {
  11823. name: "Megamacro",
  11824. height: math.unit(75, "miles")
  11825. },
  11826. {
  11827. name: "Texas-sized",
  11828. height: math.unit(750, "miles")
  11829. },
  11830. {
  11831. name: "Teramacro",
  11832. height: math.unit(50000, "miles")
  11833. },
  11834. ]
  11835. ))
  11836. characterMakers.push(() => makeCharacter(
  11837. { name: "Danny Kapowsky" },
  11838. {
  11839. front: {
  11840. height: math.unit(6, "feet"),
  11841. weight: math.unit(269, "lb"),
  11842. name: "Front",
  11843. image: {
  11844. source: "./media/characters/danny-kapowsky/front.svg",
  11845. extra: 766 / 736,
  11846. bottom: 0.044
  11847. }
  11848. },
  11849. back: {
  11850. height: math.unit(6, "feet"),
  11851. weight: math.unit(269, "lb"),
  11852. name: "Back",
  11853. image: {
  11854. source: "./media/characters/danny-kapowsky/back.svg",
  11855. extra: 797 / 760,
  11856. bottom: 0.025
  11857. }
  11858. },
  11859. },
  11860. [
  11861. {
  11862. name: "Macro",
  11863. height: math.unit(150, "feet"),
  11864. default: true
  11865. },
  11866. {
  11867. name: "Macro+",
  11868. height: math.unit(200, "feet")
  11869. },
  11870. {
  11871. name: "Macro++",
  11872. height: math.unit(300, "feet")
  11873. },
  11874. {
  11875. name: "Macro+++",
  11876. height: math.unit(400, "feet")
  11877. },
  11878. ]
  11879. ))
  11880. characterMakers.push(() => makeCharacter(
  11881. { name: "Finn" },
  11882. {
  11883. side: {
  11884. height: math.unit(6, "feet"),
  11885. weight: math.unit(170, "lb"),
  11886. name: "Side",
  11887. image: {
  11888. source: "./media/characters/finn/side.svg",
  11889. extra: 1953 / 1807,
  11890. bottom: 0.057
  11891. }
  11892. },
  11893. },
  11894. [
  11895. {
  11896. name: "Megamacro",
  11897. height: math.unit(14445, "feet"),
  11898. default: true
  11899. },
  11900. ]
  11901. ))
  11902. characterMakers.push(() => makeCharacter(
  11903. { name: "Roy" },
  11904. {
  11905. front: {
  11906. height: math.unit(5 + 6 / 12, "feet"),
  11907. weight: math.unit(125, "lb"),
  11908. name: "Front",
  11909. image: {
  11910. source: "./media/characters/roy/front.svg",
  11911. extra: 1,
  11912. bottom: 0.11
  11913. }
  11914. },
  11915. },
  11916. [
  11917. {
  11918. name: "Micro",
  11919. height: math.unit(3, "inches"),
  11920. default: true
  11921. },
  11922. {
  11923. name: "Normal",
  11924. height: math.unit(5 + 6 / 12, "feet")
  11925. },
  11926. {
  11927. name: "Lesser Macro",
  11928. height: math.unit(60, "feet")
  11929. },
  11930. {
  11931. name: "Greater Macro",
  11932. height: math.unit(120, "feet")
  11933. },
  11934. ]
  11935. ))
  11936. characterMakers.push(() => makeCharacter(
  11937. { name: "Aevsivs" },
  11938. {
  11939. front: {
  11940. height: math.unit(6, "feet"),
  11941. weight: math.unit(100, "lb"),
  11942. name: "Front",
  11943. image: {
  11944. source: "./media/characters/aevsivs/front.svg",
  11945. extra: 1,
  11946. bottom: 0.03
  11947. }
  11948. },
  11949. back: {
  11950. height: math.unit(6, "feet"),
  11951. weight: math.unit(100, "lb"),
  11952. name: "Back",
  11953. image: {
  11954. source: "./media/characters/aevsivs/back.svg"
  11955. }
  11956. },
  11957. },
  11958. [
  11959. {
  11960. name: "Micro",
  11961. height: math.unit(2, "inches"),
  11962. default: true
  11963. },
  11964. {
  11965. name: "Normal",
  11966. height: math.unit(5, "feet")
  11967. },
  11968. ]
  11969. ))
  11970. characterMakers.push(() => makeCharacter(
  11971. { name: "Hildegard" },
  11972. {
  11973. front: {
  11974. height: math.unit(5 + 7 / 12, "feet"),
  11975. weight: math.unit(159, "lb"),
  11976. name: "Front",
  11977. image: {
  11978. source: "./media/characters/hildegard/front.svg",
  11979. extra: 312 / 286,
  11980. bottom: 0.005
  11981. }
  11982. },
  11983. },
  11984. [
  11985. {
  11986. name: "Normal",
  11987. height: math.unit(5 + 7 / 12, "feet"),
  11988. default: true
  11989. },
  11990. ]
  11991. ))
  11992. characterMakers.push(() => makeCharacter(
  11993. { name: "Bernard & Wilder" },
  11994. {
  11995. bernard: {
  11996. height: math.unit(2 + 7 / 12, "feet"),
  11997. weight: math.unit(66, "lb"),
  11998. name: "Bernard",
  11999. rename: true,
  12000. image: {
  12001. source: "./media/characters/bernard-wilder/bernard.svg",
  12002. extra: 192 / 128,
  12003. bottom: 0.05
  12004. }
  12005. },
  12006. wilder: {
  12007. height: math.unit(5 + 8 / 12, "feet"),
  12008. weight: math.unit(143, "lb"),
  12009. name: "Wilder",
  12010. rename: true,
  12011. image: {
  12012. source: "./media/characters/bernard-wilder/wilder.svg",
  12013. extra: 361 / 312,
  12014. bottom: 0.02
  12015. }
  12016. },
  12017. },
  12018. [
  12019. {
  12020. name: "Normal",
  12021. height: math.unit(2 + 7 / 12, "feet"),
  12022. default: true
  12023. },
  12024. ]
  12025. ))
  12026. characterMakers.push(() => makeCharacter(
  12027. { name: "Hearth" },
  12028. {
  12029. anthro: {
  12030. height: math.unit(6 + 1 / 12, "feet"),
  12031. weight: math.unit(155, "lb"),
  12032. name: "Anthro",
  12033. image: {
  12034. source: "./media/characters/hearth/anthro.svg",
  12035. extra: 260 / 250,
  12036. bottom: 0.02
  12037. }
  12038. },
  12039. feral: {
  12040. height: math.unit(3.78, "feet"),
  12041. weight: math.unit(35, "kg"),
  12042. name: "Feral",
  12043. image: {
  12044. source: "./media/characters/hearth/feral.svg",
  12045. extra: 153 / 135,
  12046. bottom: 0.03
  12047. }
  12048. },
  12049. },
  12050. [
  12051. {
  12052. name: "Normal",
  12053. height: math.unit(6 + 1 / 12, "feet"),
  12054. default: true
  12055. },
  12056. ]
  12057. ))
  12058. characterMakers.push(() => makeCharacter(
  12059. { name: "Ingrid" },
  12060. {
  12061. front: {
  12062. height: math.unit(6, "feet"),
  12063. weight: math.unit(182, "lb"),
  12064. name: "Front",
  12065. image: {
  12066. source: "./media/characters/ingrid/front.svg",
  12067. extra: 294 / 268,
  12068. bottom: 0.027
  12069. }
  12070. },
  12071. },
  12072. [
  12073. {
  12074. name: "Normal",
  12075. height: math.unit(6, "feet"),
  12076. default: true
  12077. },
  12078. ]
  12079. ))
  12080. characterMakers.push(() => makeCharacter(
  12081. { name: "Malgam" },
  12082. {
  12083. eevee: {
  12084. height: math.unit(2 + 10 / 12, "feet"),
  12085. weight: math.unit(86, "lb"),
  12086. name: "Malgam",
  12087. image: {
  12088. source: "./media/characters/malgam/eevee.svg",
  12089. extra: 218 / 180,
  12090. bottom: 0.2
  12091. }
  12092. },
  12093. sylveon: {
  12094. height: math.unit(4, "feet"),
  12095. weight: math.unit(101, "lb"),
  12096. name: "Future Malgam",
  12097. rename: true,
  12098. image: {
  12099. source: "./media/characters/malgam/sylveon.svg",
  12100. extra: 371 / 325,
  12101. bottom: 0.015
  12102. }
  12103. },
  12104. gigantamax: {
  12105. height: math.unit(50, "feet"),
  12106. name: "Gigantamax Malgam",
  12107. rename: true,
  12108. image: {
  12109. source: "./media/characters/malgam/gigantamax.svg"
  12110. }
  12111. },
  12112. },
  12113. [
  12114. {
  12115. name: "Normal",
  12116. height: math.unit(2 + 10 / 12, "feet"),
  12117. default: true
  12118. },
  12119. ]
  12120. ))
  12121. characterMakers.push(() => makeCharacter(
  12122. { name: "Fleur" },
  12123. {
  12124. front: {
  12125. height: math.unit(5 + 11 / 12, "feet"),
  12126. weight: math.unit(188, "lb"),
  12127. name: "Front",
  12128. image: {
  12129. source: "./media/characters/fleur/front.svg",
  12130. extra: 309 / 283,
  12131. bottom: 0.007
  12132. }
  12133. },
  12134. },
  12135. [
  12136. {
  12137. name: "Normal",
  12138. height: math.unit(5 + 11 / 12, "feet"),
  12139. default: true
  12140. },
  12141. ]
  12142. ))
  12143. characterMakers.push(() => makeCharacter(
  12144. { name: "Jude" },
  12145. {
  12146. front: {
  12147. height: math.unit(5 + 4 / 12, "feet"),
  12148. weight: math.unit(122, "lb"),
  12149. name: "Front",
  12150. image: {
  12151. source: "./media/characters/jude/front.svg",
  12152. extra: 288 / 273,
  12153. bottom: 0.03
  12154. }
  12155. },
  12156. },
  12157. [
  12158. {
  12159. name: "Normal",
  12160. height: math.unit(5 + 4 / 12, "feet"),
  12161. default: true
  12162. },
  12163. ]
  12164. ))
  12165. characterMakers.push(() => makeCharacter(
  12166. { name: "Seara" },
  12167. {
  12168. front: {
  12169. height: math.unit(5 + 11 / 12, "feet"),
  12170. weight: math.unit(190, "lb"),
  12171. name: "Front",
  12172. image: {
  12173. source: "./media/characters/seara/front.svg",
  12174. extra: 1,
  12175. bottom: 0.05
  12176. }
  12177. },
  12178. },
  12179. [
  12180. {
  12181. name: "Normal",
  12182. height: math.unit(5 + 11 / 12, "feet"),
  12183. default: true
  12184. },
  12185. ]
  12186. ))
  12187. characterMakers.push(() => makeCharacter(
  12188. { name: "Caspian" },
  12189. {
  12190. front: {
  12191. height: math.unit(16 + 5 / 12, "feet"),
  12192. weight: math.unit(524, "lb"),
  12193. name: "Front",
  12194. image: {
  12195. source: "./media/characters/caspian/front.svg",
  12196. extra: 1,
  12197. bottom: 0.04
  12198. }
  12199. },
  12200. },
  12201. [
  12202. {
  12203. name: "Normal",
  12204. height: math.unit(16 + 5 / 12, "feet"),
  12205. default: true
  12206. },
  12207. ]
  12208. ))
  12209. characterMakers.push(() => makeCharacter(
  12210. { name: "Mika" },
  12211. {
  12212. front: {
  12213. height: math.unit(5 + 7 / 12, "feet"),
  12214. weight: math.unit(170, "lb"),
  12215. name: "Front",
  12216. image: {
  12217. source: "./media/characters/mika/front.svg",
  12218. extra: 1,
  12219. bottom: 0.016
  12220. }
  12221. },
  12222. },
  12223. [
  12224. {
  12225. name: "Normal",
  12226. height: math.unit(5 + 7 / 12, "feet"),
  12227. default: true
  12228. },
  12229. ]
  12230. ))
  12231. characterMakers.push(() => makeCharacter(
  12232. { name: "Sol" },
  12233. {
  12234. front: {
  12235. height: math.unit(6 + 2 / 12, "feet"),
  12236. weight: math.unit(268, "lb"),
  12237. name: "Front",
  12238. image: {
  12239. source: "./media/characters/sol/front.svg",
  12240. extra: 247 / 231,
  12241. bottom: 0.05
  12242. }
  12243. },
  12244. },
  12245. [
  12246. {
  12247. name: "Normal",
  12248. height: math.unit(6 + 2 / 12, "feet"),
  12249. default: true
  12250. },
  12251. ]
  12252. ))
  12253. characterMakers.push(() => makeCharacter(
  12254. { name: "Umiko" },
  12255. {
  12256. buizel: {
  12257. height: math.unit(2 + 5 / 12, "feet"),
  12258. weight: math.unit(87, "lb"),
  12259. name: "Buizel",
  12260. image: {
  12261. source: "./media/characters/umiko/buizel.svg",
  12262. extra: 172 / 157,
  12263. bottom: 0.01
  12264. }
  12265. },
  12266. floatzel: {
  12267. height: math.unit(5 + 9 / 12, "feet"),
  12268. weight: math.unit(250, "lb"),
  12269. name: "Floatzel",
  12270. image: {
  12271. source: "./media/characters/umiko/floatzel.svg",
  12272. extra: 262 / 248
  12273. }
  12274. },
  12275. },
  12276. [
  12277. {
  12278. name: "Normal",
  12279. height: math.unit(2 + 5 / 12, "feet"),
  12280. default: true
  12281. },
  12282. ]
  12283. ))
  12284. characterMakers.push(() => makeCharacter(
  12285. { name: "Iliac" },
  12286. {
  12287. front: {
  12288. height: math.unit(6 + 2 / 12, "feet"),
  12289. weight: math.unit(146, "lb"),
  12290. name: "Front",
  12291. image: {
  12292. source: "./media/characters/iliac/front.svg",
  12293. extra: 389 / 365,
  12294. bottom: 0.035
  12295. }
  12296. },
  12297. },
  12298. [
  12299. {
  12300. name: "Normal",
  12301. height: math.unit(6 + 2 / 12, "feet"),
  12302. default: true
  12303. },
  12304. ]
  12305. ))
  12306. characterMakers.push(() => makeCharacter(
  12307. { name: "Topaz" },
  12308. {
  12309. front: {
  12310. height: math.unit(6, "feet"),
  12311. weight: math.unit(170, "lb"),
  12312. name: "Front",
  12313. image: {
  12314. source: "./media/characters/topaz/front.svg",
  12315. extra: 317 / 303,
  12316. bottom: 0.055
  12317. }
  12318. },
  12319. },
  12320. [
  12321. {
  12322. name: "Normal",
  12323. height: math.unit(6, "feet"),
  12324. default: true
  12325. },
  12326. ]
  12327. ))
  12328. characterMakers.push(() => makeCharacter(
  12329. { name: "Gabriel" },
  12330. {
  12331. front: {
  12332. height: math.unit(5 + 11 / 12, "feet"),
  12333. weight: math.unit(144, "lb"),
  12334. name: "Front",
  12335. image: {
  12336. source: "./media/characters/gabriel/front.svg",
  12337. extra: 285 / 262,
  12338. bottom: 0.004
  12339. }
  12340. },
  12341. },
  12342. [
  12343. {
  12344. name: "Normal",
  12345. height: math.unit(5 + 11 / 12, "feet"),
  12346. default: true
  12347. },
  12348. ]
  12349. ))
  12350. characterMakers.push(() => makeCharacter(
  12351. { name: "Tempest (Suicune)" },
  12352. {
  12353. side: {
  12354. height: math.unit(6 + 5 / 12, "feet"),
  12355. weight: math.unit(300, "lb"),
  12356. name: "Side",
  12357. image: {
  12358. source: "./media/characters/tempest-suicune/side.svg",
  12359. extra: 195 / 154,
  12360. bottom: 0.04
  12361. }
  12362. },
  12363. },
  12364. [
  12365. {
  12366. name: "Normal",
  12367. height: math.unit(6 + 5 / 12, "feet"),
  12368. default: true
  12369. },
  12370. ]
  12371. ))
  12372. characterMakers.push(() => makeCharacter(
  12373. { name: "Vulcan" },
  12374. {
  12375. front: {
  12376. height: math.unit(7 + 2 / 12, "feet"),
  12377. weight: math.unit(322, "lb"),
  12378. name: "Front",
  12379. image: {
  12380. source: "./media/characters/vulcan/front.svg",
  12381. extra: 154 / 147,
  12382. bottom: 0.04
  12383. }
  12384. },
  12385. },
  12386. [
  12387. {
  12388. name: "Normal",
  12389. height: math.unit(7 + 2 / 12, "feet"),
  12390. default: true
  12391. },
  12392. ]
  12393. ))
  12394. characterMakers.push(() => makeCharacter(
  12395. { name: "Gault" },
  12396. {
  12397. front: {
  12398. height: math.unit(5 + 10 / 12, "feet"),
  12399. weight: math.unit(264, "lb"),
  12400. name: "Front",
  12401. image: {
  12402. source: "./media/characters/gault/front.svg",
  12403. extra: 161 / 140,
  12404. bottom: 0.028
  12405. }
  12406. },
  12407. },
  12408. [
  12409. {
  12410. name: "Normal",
  12411. height: math.unit(5 + 10 / 12, "feet"),
  12412. default: true
  12413. },
  12414. ]
  12415. ))
  12416. characterMakers.push(() => makeCharacter(
  12417. { name: "Shard" },
  12418. {
  12419. front: {
  12420. height: math.unit(6, "feet"),
  12421. weight: math.unit(150, "lb"),
  12422. name: "Front",
  12423. image: {
  12424. source: "./media/characters/shard/front.svg",
  12425. extra: 273 / 238,
  12426. bottom: 0.02
  12427. }
  12428. },
  12429. },
  12430. [
  12431. {
  12432. name: "Normal",
  12433. height: math.unit(3 + 6 / 12, "feet"),
  12434. default: true
  12435. },
  12436. ]
  12437. ))
  12438. characterMakers.push(() => makeCharacter(
  12439. { name: "Ashe" },
  12440. {
  12441. front: {
  12442. height: math.unit(5 + 11 / 12, "feet"),
  12443. weight: math.unit(146, "lb"),
  12444. name: "Front",
  12445. image: {
  12446. source: "./media/characters/ashe/front.svg",
  12447. extra: 400 / 373,
  12448. bottom: 0.01
  12449. }
  12450. },
  12451. },
  12452. [
  12453. {
  12454. name: "Normal",
  12455. height: math.unit(5 + 11 / 12, "feet"),
  12456. default: true
  12457. },
  12458. ]
  12459. ))
  12460. characterMakers.push(() => makeCharacter(
  12461. { name: "Beatrix" },
  12462. {
  12463. front: {
  12464. height: math.unit(5 + 5 / 12, "feet"),
  12465. weight: math.unit(135, "lb"),
  12466. name: "Front",
  12467. image: {
  12468. source: "./media/characters/beatrix/front.svg",
  12469. extra: 392 / 379,
  12470. bottom: 0.01
  12471. }
  12472. },
  12473. },
  12474. [
  12475. {
  12476. name: "Normal",
  12477. height: math.unit(6, "feet"),
  12478. default: true
  12479. },
  12480. ]
  12481. ))
  12482. characterMakers.push(() => makeCharacter(
  12483. { name: "Ignatius" },
  12484. {
  12485. front: {
  12486. height: math.unit(6, "feet"),
  12487. weight: math.unit(150, "lb"),
  12488. name: "Front",
  12489. image: {
  12490. source: "./media/characters/ignatius/front.svg",
  12491. extra: 245 / 222,
  12492. bottom: 0.01
  12493. }
  12494. },
  12495. },
  12496. [
  12497. {
  12498. name: "Normal",
  12499. height: math.unit(5 + 5 / 12, "feet"),
  12500. default: true
  12501. },
  12502. ]
  12503. ))
  12504. characterMakers.push(() => makeCharacter(
  12505. { name: "Mei Li" },
  12506. {
  12507. front: {
  12508. height: math.unit(6 + 2 / 12, "feet"),
  12509. weight: math.unit(138, "lb"),
  12510. name: "Front",
  12511. image: {
  12512. source: "./media/characters/mei-li/front.svg",
  12513. extra: 237 / 229,
  12514. bottom: 0.03
  12515. }
  12516. },
  12517. },
  12518. [
  12519. {
  12520. name: "Normal",
  12521. height: math.unit(6 + 2 / 12, "feet"),
  12522. default: true
  12523. },
  12524. ]
  12525. ))
  12526. characterMakers.push(() => makeCharacter(
  12527. { name: "Puru" },
  12528. {
  12529. front: {
  12530. height: math.unit(2 + 4 / 12, "feet"),
  12531. weight: math.unit(62, "lb"),
  12532. name: "Front",
  12533. image: {
  12534. source: "./media/characters/puru/front.svg",
  12535. extra: 206 / 149,
  12536. bottom: 0.06
  12537. }
  12538. },
  12539. },
  12540. [
  12541. {
  12542. name: "Normal",
  12543. height: math.unit(2 + 4 / 12, "feet"),
  12544. default: true
  12545. },
  12546. ]
  12547. ))
  12548. characterMakers.push(() => makeCharacter(
  12549. { name: "Kee" },
  12550. {
  12551. taur: {
  12552. height: math.unit(11, "feet"),
  12553. weight: math.unit(500, "lb"),
  12554. name: "Taur",
  12555. image: {
  12556. source: "./media/characters/kee/taur.svg",
  12557. extra: 1,
  12558. bottom: 0.04
  12559. }
  12560. },
  12561. },
  12562. [
  12563. {
  12564. name: "Normal",
  12565. height: math.unit(11, "feet"),
  12566. default: true
  12567. },
  12568. ]
  12569. ))
  12570. characterMakers.push(() => makeCharacter(
  12571. { name: "Cobalt (Dracha)" },
  12572. {
  12573. anthro: {
  12574. height: math.unit(7, "feet"),
  12575. weight: math.unit(190, "lb"),
  12576. name: "Anthro",
  12577. image: {
  12578. source: "./media/characters/cobalt-dracha/anthro.svg",
  12579. extra: 231 / 225,
  12580. bottom: 0.04
  12581. }
  12582. },
  12583. feral: {
  12584. height: math.unit(9 + 7 / 12, "feet"),
  12585. weight: math.unit(294, "lb"),
  12586. name: "Feral",
  12587. image: {
  12588. source: "./media/characters/cobalt-dracha/feral.svg",
  12589. extra: 692 / 633,
  12590. bottom: 0.05
  12591. }
  12592. },
  12593. },
  12594. [
  12595. {
  12596. name: "Normal",
  12597. height: math.unit(7, "feet"),
  12598. default: true
  12599. },
  12600. ]
  12601. ))
  12602. characterMakers.push(() => makeCharacter(
  12603. { name: "Java" },
  12604. {
  12605. fallen: {
  12606. height: math.unit(11 + 8 / 12, "feet"),
  12607. weight: math.unit(485, "lb"),
  12608. name: "Java (Fallen)",
  12609. rename: true,
  12610. image: {
  12611. source: "./media/characters/java/fallen.svg",
  12612. extra: 226 / 208,
  12613. bottom: 0.005
  12614. }
  12615. },
  12616. godkin: {
  12617. height: math.unit(10 + 6 / 12, "feet"),
  12618. weight: math.unit(328, "lb"),
  12619. name: "Java (Godkin)",
  12620. rename: true,
  12621. image: {
  12622. source: "./media/characters/java/godkin.svg",
  12623. extra: 270 / 262,
  12624. bottom: 0.02
  12625. }
  12626. },
  12627. },
  12628. [
  12629. {
  12630. name: "Normal",
  12631. height: math.unit(11 + 8 / 12, "feet"),
  12632. default: true
  12633. },
  12634. ]
  12635. ))
  12636. characterMakers.push(() => makeCharacter(
  12637. { name: "Skoll" },
  12638. {
  12639. front: {
  12640. height: math.unit(7 + 8 / 12, "feet"),
  12641. weight: math.unit(320, "lb"),
  12642. name: "Front",
  12643. image: {
  12644. source: "./media/characters/skoll/front.svg",
  12645. extra: 232 / 220,
  12646. bottom: 0.02
  12647. }
  12648. },
  12649. },
  12650. [
  12651. {
  12652. name: "Normal",
  12653. height: math.unit(7 + 8 / 12, "feet"),
  12654. default: true
  12655. },
  12656. ]
  12657. ))
  12658. characterMakers.push(() => makeCharacter(
  12659. { name: "Purna" },
  12660. {
  12661. front: {
  12662. height: math.unit(5 + 9 / 12, "feet"),
  12663. weight: math.unit(170, "lb"),
  12664. name: "Front",
  12665. image: {
  12666. source: "./media/characters/purna/front.svg",
  12667. extra: 239 / 229,
  12668. bottom: 0.01
  12669. }
  12670. },
  12671. },
  12672. [
  12673. {
  12674. name: "Normal",
  12675. height: math.unit(5 + 9 / 12, "feet"),
  12676. default: true
  12677. },
  12678. ]
  12679. ))
  12680. characterMakers.push(() => makeCharacter(
  12681. { name: "Kuva" },
  12682. {
  12683. front: {
  12684. height: math.unit(5 + 9 / 12, "feet"),
  12685. weight: math.unit(142, "lb"),
  12686. name: "Front",
  12687. image: {
  12688. source: "./media/characters/kuva/front.svg",
  12689. extra: 281 / 271,
  12690. bottom: 0.006
  12691. }
  12692. },
  12693. },
  12694. [
  12695. {
  12696. name: "Normal",
  12697. height: math.unit(5 + 9 / 12, "feet"),
  12698. default: true
  12699. },
  12700. ]
  12701. ))
  12702. characterMakers.push(() => makeCharacter(
  12703. { name: "Embra" },
  12704. {
  12705. anthro: {
  12706. height: math.unit(9 + 2 / 12, "feet"),
  12707. weight: math.unit(270, "lb"),
  12708. name: "Anthro",
  12709. image: {
  12710. source: "./media/characters/embra/anthro.svg",
  12711. extra: 200 / 187,
  12712. bottom: 0.02
  12713. }
  12714. },
  12715. feral: {
  12716. height: math.unit(18 + 8 / 12, "feet"),
  12717. weight: math.unit(576, "lb"),
  12718. name: "Feral",
  12719. image: {
  12720. source: "./media/characters/embra/feral.svg",
  12721. extra: 152 / 137,
  12722. bottom: 0.037
  12723. }
  12724. },
  12725. },
  12726. [
  12727. {
  12728. name: "Normal",
  12729. height: math.unit(9 + 2 / 12, "feet"),
  12730. default: true
  12731. },
  12732. ]
  12733. ))
  12734. characterMakers.push(() => makeCharacter(
  12735. { name: "Grottos" },
  12736. {
  12737. anthro: {
  12738. height: math.unit(10 + 9 / 12, "feet"),
  12739. weight: math.unit(224, "lb"),
  12740. name: "Anthro",
  12741. image: {
  12742. source: "./media/characters/grottos/anthro.svg",
  12743. extra: 350 / 332,
  12744. bottom: 0.045
  12745. }
  12746. },
  12747. feral: {
  12748. height: math.unit(20 + 7 / 12, "feet"),
  12749. weight: math.unit(629, "lb"),
  12750. name: "Feral",
  12751. image: {
  12752. source: "./media/characters/grottos/feral.svg",
  12753. extra: 207 / 190,
  12754. bottom: 0.05
  12755. }
  12756. },
  12757. },
  12758. [
  12759. {
  12760. name: "Normal",
  12761. height: math.unit(10 + 9 / 12, "feet"),
  12762. default: true
  12763. },
  12764. ]
  12765. ))
  12766. characterMakers.push(() => makeCharacter(
  12767. { name: "Frifna" },
  12768. {
  12769. anthro: {
  12770. height: math.unit(9 + 6 / 12, "feet"),
  12771. weight: math.unit(298, "lb"),
  12772. name: "Anthro",
  12773. image: {
  12774. source: "./media/characters/frifna/anthro.svg",
  12775. extra: 282 / 269,
  12776. bottom: 0.015
  12777. }
  12778. },
  12779. feral: {
  12780. height: math.unit(16 + 2 / 12, "feet"),
  12781. weight: math.unit(624, "lb"),
  12782. name: "Feral",
  12783. image: {
  12784. source: "./media/characters/frifna/feral.svg"
  12785. }
  12786. },
  12787. },
  12788. [
  12789. {
  12790. name: "Normal",
  12791. height: math.unit(9 + 6 / 12, "feet"),
  12792. default: true
  12793. },
  12794. ]
  12795. ))
  12796. characterMakers.push(() => makeCharacter(
  12797. { name: "Elise" },
  12798. {
  12799. front: {
  12800. height: math.unit(6 + 2 / 12, "feet"),
  12801. weight: math.unit(168, "lb"),
  12802. name: "Front",
  12803. image: {
  12804. source: "./media/characters/elise/front.svg",
  12805. extra: 276 / 271
  12806. }
  12807. },
  12808. },
  12809. [
  12810. {
  12811. name: "Normal",
  12812. height: math.unit(6 + 2 / 12, "feet"),
  12813. default: true
  12814. },
  12815. ]
  12816. ))
  12817. characterMakers.push(() => makeCharacter(
  12818. { name: "Glade" },
  12819. {
  12820. front: {
  12821. height: math.unit(5 + 10 / 12, "feet"),
  12822. weight: math.unit(210, "lb"),
  12823. name: "Front",
  12824. image: {
  12825. source: "./media/characters/glade/front.svg",
  12826. extra: 258 / 247,
  12827. bottom: 0.008
  12828. }
  12829. },
  12830. },
  12831. [
  12832. {
  12833. name: "Normal",
  12834. height: math.unit(5 + 10 / 12, "feet"),
  12835. default: true
  12836. },
  12837. ]
  12838. ))
  12839. characterMakers.push(() => makeCharacter(
  12840. { name: "Rina" },
  12841. {
  12842. front: {
  12843. height: math.unit(5 + 10 / 12, "feet"),
  12844. weight: math.unit(129, "lb"),
  12845. name: "Front",
  12846. image: {
  12847. source: "./media/characters/rina/front.svg",
  12848. extra: 266 / 255,
  12849. bottom: 0.005
  12850. }
  12851. },
  12852. },
  12853. [
  12854. {
  12855. name: "Normal",
  12856. height: math.unit(5 + 10 / 12, "feet"),
  12857. default: true
  12858. },
  12859. ]
  12860. ))
  12861. characterMakers.push(() => makeCharacter(
  12862. { name: "Veronica" },
  12863. {
  12864. front: {
  12865. height: math.unit(6 + 1 / 12, "feet"),
  12866. weight: math.unit(192, "lb"),
  12867. name: "Front",
  12868. image: {
  12869. source: "./media/characters/veronica/front.svg",
  12870. extra: 319 / 309,
  12871. bottom: 0.005
  12872. }
  12873. },
  12874. },
  12875. [
  12876. {
  12877. name: "Normal",
  12878. height: math.unit(6 + 1 / 12, "feet"),
  12879. default: true
  12880. },
  12881. ]
  12882. ))
  12883. characterMakers.push(() => makeCharacter(
  12884. { name: "Braxton" },
  12885. {
  12886. front: {
  12887. height: math.unit(9 + 3 / 12, "feet"),
  12888. weight: math.unit(1100, "lb"),
  12889. name: "Front",
  12890. image: {
  12891. source: "./media/characters/braxton/front.svg",
  12892. extra: 1057 / 984,
  12893. bottom: 0.05
  12894. }
  12895. },
  12896. },
  12897. [
  12898. {
  12899. name: "Normal",
  12900. height: math.unit(9 + 3 / 12, "feet")
  12901. },
  12902. {
  12903. name: "Giant",
  12904. height: math.unit(300, "feet"),
  12905. default: true
  12906. },
  12907. {
  12908. name: "Macro",
  12909. height: math.unit(700, "feet")
  12910. },
  12911. {
  12912. name: "Megamacro",
  12913. height: math.unit(6000, "feet")
  12914. },
  12915. ]
  12916. ))
  12917. characterMakers.push(() => makeCharacter(
  12918. { name: "Blue Feyonics" },
  12919. {
  12920. front: {
  12921. height: math.unit(6 + 7 / 12, "feet"),
  12922. weight: math.unit(150, "lb"),
  12923. name: "Front",
  12924. image: {
  12925. source: "./media/characters/blue-feyonics/front.svg",
  12926. extra: 1403 / 1306,
  12927. bottom: 0.047
  12928. }
  12929. },
  12930. },
  12931. [
  12932. {
  12933. name: "Normal",
  12934. height: math.unit(6 + 7 / 12, "feet"),
  12935. default: true
  12936. },
  12937. ]
  12938. ))
  12939. characterMakers.push(() => makeCharacter(
  12940. { name: "Maxwell" },
  12941. {
  12942. front: {
  12943. height: math.unit(1.8, "meters"),
  12944. weight: math.unit(60, "kg"),
  12945. name: "Front",
  12946. image: {
  12947. source: "./media/characters/maxwell/front.svg",
  12948. extra: 2060 / 1873
  12949. }
  12950. },
  12951. },
  12952. [
  12953. {
  12954. name: "Micro",
  12955. height: math.unit(1, "mm")
  12956. },
  12957. {
  12958. name: "Normal",
  12959. height: math.unit(1.8, "meter"),
  12960. default: true
  12961. },
  12962. {
  12963. name: "Macro",
  12964. height: math.unit(30, "meters")
  12965. },
  12966. {
  12967. name: "Megamacro",
  12968. height: math.unit(10, "km")
  12969. },
  12970. ]
  12971. ))
  12972. characterMakers.push(() => makeCharacter(
  12973. { name: "Jack" },
  12974. {
  12975. front: {
  12976. height: math.unit(6, "feet"),
  12977. weight: math.unit(150, "lb"),
  12978. name: "Front",
  12979. image: {
  12980. source: "./media/characters/jack/front.svg",
  12981. extra: 1754 / 1640,
  12982. bottom: 0.01
  12983. }
  12984. },
  12985. },
  12986. [
  12987. {
  12988. name: "Normal",
  12989. height: math.unit(80000, "feet"),
  12990. default: true
  12991. },
  12992. {
  12993. name: "Max size",
  12994. height: math.unit(10, "lightyears")
  12995. },
  12996. ]
  12997. ))
  12998. characterMakers.push(() => makeCharacter(
  12999. { name: "Cafat" },
  13000. {
  13001. upright: {
  13002. height: math.unit(7, "feet"),
  13003. weight: math.unit(170, "lb"),
  13004. name: "Upright",
  13005. image: {
  13006. source: "./media/characters/cafat/upright.svg",
  13007. bottom: 0.01
  13008. }
  13009. },
  13010. uprightFull: {
  13011. height: math.unit(7, "feet"),
  13012. weight: math.unit(170, "lb"),
  13013. name: "Upright (Full)",
  13014. image: {
  13015. source: "./media/characters/cafat/upright-full.svg",
  13016. bottom: 0.01
  13017. }
  13018. },
  13019. side: {
  13020. height: math.unit(5, "feet"),
  13021. weight: math.unit(150, "lb"),
  13022. name: "Side",
  13023. image: {
  13024. source: "./media/characters/cafat/side.svg"
  13025. }
  13026. },
  13027. },
  13028. [
  13029. {
  13030. name: "Small",
  13031. height: math.unit(7, "feet"),
  13032. default: true
  13033. },
  13034. {
  13035. name: "Large",
  13036. height: math.unit(15.5, "feet")
  13037. },
  13038. ]
  13039. ))
  13040. characterMakers.push(() => makeCharacter(
  13041. { name: "Verin Raharra" },
  13042. {
  13043. front: {
  13044. height: math.unit(6, "feet"),
  13045. weight: math.unit(150, "lb"),
  13046. name: "Front",
  13047. image: {
  13048. source: "./media/characters/verin-raharra/front.svg",
  13049. extra: 5019 / 4835,
  13050. bottom: 0.023
  13051. }
  13052. },
  13053. },
  13054. [
  13055. {
  13056. name: "Normal",
  13057. height: math.unit(7 + 5 / 12, "feet"),
  13058. default: true
  13059. },
  13060. {
  13061. name: "Upsized",
  13062. height: math.unit(20, "feet")
  13063. },
  13064. ]
  13065. ))
  13066. characterMakers.push(() => makeCharacter(
  13067. { name: "Nakata" },
  13068. {
  13069. front: {
  13070. height: math.unit(7, "feet"),
  13071. weight: math.unit(230, "lb"),
  13072. name: "Front",
  13073. image: {
  13074. source: "./media/characters/nakata/front.svg",
  13075. extra: 1.005,
  13076. bottom: 0.01
  13077. }
  13078. },
  13079. },
  13080. [
  13081. {
  13082. name: "Normal",
  13083. height: math.unit(7, "feet"),
  13084. default: true
  13085. },
  13086. {
  13087. name: "Big",
  13088. height: math.unit(14, "feet")
  13089. },
  13090. {
  13091. name: "Macro",
  13092. height: math.unit(400, "feet")
  13093. },
  13094. ]
  13095. ))
  13096. characterMakers.push(() => makeCharacter(
  13097. { name: "Lily" },
  13098. {
  13099. front: {
  13100. height: math.unit(4.91, "feet"),
  13101. weight: math.unit(100, "lb"),
  13102. name: "Front",
  13103. image: {
  13104. source: "./media/characters/lily/front.svg",
  13105. extra: 1585 / 1415,
  13106. bottom: 0.02
  13107. }
  13108. },
  13109. },
  13110. [
  13111. {
  13112. name: "Normal",
  13113. height: math.unit(4.91, "feet"),
  13114. default: true
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "Sheila" },
  13120. {
  13121. laying: {
  13122. height: math.unit(4 + 4 / 12, "feet"),
  13123. weight: math.unit(600, "lb"),
  13124. name: "Laying",
  13125. image: {
  13126. source: "./media/characters/sheila/laying.svg",
  13127. extra: 1333 / 1265,
  13128. bottom: 0.16
  13129. }
  13130. },
  13131. },
  13132. [
  13133. {
  13134. name: "Normal",
  13135. height: math.unit(4 + 4 / 12, "feet"),
  13136. default: true
  13137. },
  13138. ]
  13139. ))
  13140. characterMakers.push(() => makeCharacter(
  13141. { name: "Sax" },
  13142. {
  13143. front: {
  13144. height: math.unit(6, "feet"),
  13145. weight: math.unit(190, "lb"),
  13146. name: "Front",
  13147. image: {
  13148. source: "./media/characters/sax/front.svg",
  13149. extra: 1187 / 973,
  13150. bottom: 0.042
  13151. }
  13152. },
  13153. },
  13154. [
  13155. {
  13156. name: "Micro",
  13157. height: math.unit(4, "inches"),
  13158. default: true
  13159. },
  13160. ]
  13161. ))
  13162. characterMakers.push(() => makeCharacter(
  13163. { name: "Pandora" },
  13164. {
  13165. front: {
  13166. height: math.unit(6, "feet"),
  13167. weight: math.unit(150, "lb"),
  13168. name: "Front",
  13169. image: {
  13170. source: "./media/characters/pandora/front.svg",
  13171. extra: 2720 / 2556,
  13172. bottom: 0.015
  13173. }
  13174. },
  13175. back: {
  13176. height: math.unit(6, "feet"),
  13177. weight: math.unit(150, "lb"),
  13178. name: "Back",
  13179. image: {
  13180. source: "./media/characters/pandora/back.svg",
  13181. extra: 2720 / 2556,
  13182. bottom: 0.01
  13183. }
  13184. },
  13185. beans: {
  13186. height: math.unit(6 / 8, "feet"),
  13187. name: "Beans",
  13188. image: {
  13189. source: "./media/characters/pandora/beans.svg"
  13190. }
  13191. },
  13192. skirt: {
  13193. height: math.unit(6, "feet"),
  13194. weight: math.unit(150, "lb"),
  13195. name: "Skirt",
  13196. image: {
  13197. source: "./media/characters/pandora/skirt.svg",
  13198. extra: 1622 / 1525,
  13199. bottom: 0.015
  13200. }
  13201. },
  13202. hoodie: {
  13203. height: math.unit(6, "feet"),
  13204. weight: math.unit(150, "lb"),
  13205. name: "Hoodie",
  13206. image: {
  13207. source: "./media/characters/pandora/hoodie.svg",
  13208. extra: 1622 / 1525,
  13209. bottom: 0.015
  13210. }
  13211. },
  13212. casual: {
  13213. height: math.unit(6, "feet"),
  13214. weight: math.unit(150, "lb"),
  13215. name: "Casual",
  13216. image: {
  13217. source: "./media/characters/pandora/casual.svg",
  13218. extra: 1622 / 1525,
  13219. bottom: 0.015
  13220. }
  13221. },
  13222. },
  13223. [
  13224. {
  13225. name: "Normal",
  13226. height: math.unit(6, "feet")
  13227. },
  13228. {
  13229. name: "Big Steppy",
  13230. height: math.unit(1, "km"),
  13231. default: true
  13232. },
  13233. ]
  13234. ))
  13235. characterMakers.push(() => makeCharacter(
  13236. { name: "Venio Darcony" },
  13237. {
  13238. side: {
  13239. height: math.unit(10, "feet"),
  13240. weight: math.unit(800, "kg"),
  13241. name: "Side",
  13242. image: {
  13243. source: "./media/characters/venio-darcony/side.svg",
  13244. extra: 1373 / 1003,
  13245. bottom: 0.037
  13246. }
  13247. },
  13248. front: {
  13249. height: math.unit(19, "feet"),
  13250. weight: math.unit(800, "kg"),
  13251. name: "Front",
  13252. image: {
  13253. source: "./media/characters/venio-darcony/front.svg"
  13254. }
  13255. },
  13256. back: {
  13257. height: math.unit(19, "feet"),
  13258. weight: math.unit(800, "kg"),
  13259. name: "Back",
  13260. image: {
  13261. source: "./media/characters/venio-darcony/back.svg"
  13262. }
  13263. },
  13264. },
  13265. [
  13266. {
  13267. name: "Normal",
  13268. height: math.unit(10, "feet")
  13269. },
  13270. {
  13271. name: "Macro",
  13272. height: math.unit(130, "feet"),
  13273. default: true
  13274. },
  13275. {
  13276. name: "Macro+",
  13277. height: math.unit(240, "feet")
  13278. },
  13279. ]
  13280. ))
  13281. characterMakers.push(() => makeCharacter(
  13282. { name: "Veski" },
  13283. {
  13284. front: {
  13285. height: math.unit(6, "feet"),
  13286. weight: math.unit(150, "lb"),
  13287. name: "Front",
  13288. image: {
  13289. source: "./media/characters/veski/front.svg",
  13290. extra: 1299 / 1225,
  13291. bottom: 0.04
  13292. }
  13293. },
  13294. back: {
  13295. height: math.unit(6, "feet"),
  13296. weight: math.unit(150, "lb"),
  13297. name: "Back",
  13298. image: {
  13299. source: "./media/characters/veski/back.svg",
  13300. extra: 1299 / 1225,
  13301. bottom: 0.008
  13302. }
  13303. },
  13304. maw: {
  13305. height: math.unit(1.5 * 1.21, "feet"),
  13306. name: "Maw",
  13307. image: {
  13308. source: "./media/characters/veski/maw.svg"
  13309. }
  13310. },
  13311. },
  13312. [
  13313. {
  13314. name: "Macro",
  13315. height: math.unit(2, "km"),
  13316. default: true
  13317. },
  13318. ]
  13319. ))
  13320. characterMakers.push(() => makeCharacter(
  13321. { name: "Isabelle" },
  13322. {
  13323. front: {
  13324. height: math.unit(5 + 7 / 12, "feet"),
  13325. name: "Front",
  13326. image: {
  13327. source: "./media/characters/isabelle/front.svg",
  13328. extra: 2130 / 1976,
  13329. bottom: 0.05
  13330. }
  13331. },
  13332. },
  13333. [
  13334. {
  13335. name: "Supermicro",
  13336. height: math.unit(10, "micrometers")
  13337. },
  13338. {
  13339. name: "Micro",
  13340. height: math.unit(1, "inch")
  13341. },
  13342. {
  13343. name: "Tiny",
  13344. height: math.unit(5, "inches")
  13345. },
  13346. {
  13347. name: "Standard",
  13348. height: math.unit(5 + 7 / 12, "inches")
  13349. },
  13350. {
  13351. name: "Macro",
  13352. height: math.unit(80, "meters"),
  13353. default: true
  13354. },
  13355. {
  13356. name: "Megamacro",
  13357. height: math.unit(250, "meters")
  13358. },
  13359. {
  13360. name: "Gigamacro",
  13361. height: math.unit(5, "km")
  13362. },
  13363. {
  13364. name: "Cosmic",
  13365. height: math.unit(2.5e6, "miles")
  13366. },
  13367. ]
  13368. ))
  13369. characterMakers.push(() => makeCharacter(
  13370. { name: "Hanzo" },
  13371. {
  13372. front: {
  13373. height: math.unit(6, "feet"),
  13374. weight: math.unit(150, "lb"),
  13375. name: "Front",
  13376. image: {
  13377. source: "./media/characters/hanzo/front.svg",
  13378. extra: 374 / 344,
  13379. bottom: 0.02
  13380. }
  13381. },
  13382. },
  13383. [
  13384. {
  13385. name: "Normal",
  13386. height: math.unit(8, "feet"),
  13387. default: true
  13388. },
  13389. ]
  13390. ))
  13391. characterMakers.push(() => makeCharacter(
  13392. { name: "Anna" },
  13393. {
  13394. front: {
  13395. height: math.unit(7, "feet"),
  13396. weight: math.unit(130, "lb"),
  13397. name: "Front",
  13398. image: {
  13399. source: "./media/characters/anna/front.svg",
  13400. extra: 169 / 145,
  13401. bottom: 0.06
  13402. }
  13403. },
  13404. full: {
  13405. height: math.unit(4.96, "feet"),
  13406. weight: math.unit(220, "lb"),
  13407. name: "Full",
  13408. image: {
  13409. source: "./media/characters/anna/full.svg",
  13410. extra: 138 / 114,
  13411. bottom: 0.15
  13412. }
  13413. },
  13414. tongue: {
  13415. height: math.unit(2.53, "feet"),
  13416. name: "Tongue",
  13417. image: {
  13418. source: "./media/characters/anna/tongue.svg"
  13419. }
  13420. },
  13421. },
  13422. [
  13423. {
  13424. name: "Normal",
  13425. height: math.unit(7, "feet"),
  13426. default: true
  13427. },
  13428. ]
  13429. ))
  13430. characterMakers.push(() => makeCharacter(
  13431. { name: "Ian Corvid" },
  13432. {
  13433. front: {
  13434. height: math.unit(7, "feet"),
  13435. weight: math.unit(150, "lb"),
  13436. name: "Front",
  13437. image: {
  13438. source: "./media/characters/ian-corvid/front.svg",
  13439. extra: 150 / 142,
  13440. bottom: 0.02
  13441. }
  13442. },
  13443. back: {
  13444. height: math.unit(7, "feet"),
  13445. weight: math.unit(150, "lb"),
  13446. name: "Back",
  13447. image: {
  13448. source: "./media/characters/ian-corvid/back.svg",
  13449. extra: 150 / 143,
  13450. bottom: 0.01
  13451. }
  13452. },
  13453. stomping: {
  13454. height: math.unit(7, "feet"),
  13455. weight: math.unit(150, "lb"),
  13456. name: "Stomping",
  13457. image: {
  13458. source: "./media/characters/ian-corvid/stomping.svg",
  13459. extra: 76 / 72
  13460. }
  13461. },
  13462. sitting: {
  13463. height: math.unit(7 / 1.8, "feet"),
  13464. weight: math.unit(150, "lb"),
  13465. name: "Sitting",
  13466. image: {
  13467. source: "./media/characters/ian-corvid/sitting.svg",
  13468. extra: 1400 / 1269,
  13469. bottom: 0.15
  13470. }
  13471. },
  13472. },
  13473. [
  13474. {
  13475. name: "Tiny Microw",
  13476. height: math.unit(1, "inch")
  13477. },
  13478. {
  13479. name: "Microw",
  13480. height: math.unit(6, "inches")
  13481. },
  13482. {
  13483. name: "Crow",
  13484. height: math.unit(7 + 1 / 12, "feet"),
  13485. default: true
  13486. },
  13487. {
  13488. name: "Macrow",
  13489. height: math.unit(176, "feet")
  13490. },
  13491. ]
  13492. ))
  13493. characterMakers.push(() => makeCharacter(
  13494. { name: "Natalie Kellon" },
  13495. {
  13496. front: {
  13497. height: math.unit(5 + 7 / 12, "feet"),
  13498. weight: math.unit(147, "lb"),
  13499. name: "Front",
  13500. image: {
  13501. source: "./media/characters/natalie-kellon/front.svg",
  13502. extra: 1214 / 1141,
  13503. bottom: 0.02
  13504. }
  13505. },
  13506. },
  13507. [
  13508. {
  13509. name: "Micro",
  13510. height: math.unit(1 / 16, "inch")
  13511. },
  13512. {
  13513. name: "Tiny",
  13514. height: math.unit(4, "inches")
  13515. },
  13516. {
  13517. name: "Normal",
  13518. height: math.unit(5 + 7 / 12, "feet"),
  13519. default: true
  13520. },
  13521. {
  13522. name: "Amazon",
  13523. height: math.unit(12, "feet")
  13524. },
  13525. {
  13526. name: "Giantess",
  13527. height: math.unit(160, "meters")
  13528. },
  13529. {
  13530. name: "Titaness",
  13531. height: math.unit(800, "meters")
  13532. },
  13533. ]
  13534. ))
  13535. characterMakers.push(() => makeCharacter(
  13536. { name: "Alluria" },
  13537. {
  13538. front: {
  13539. height: math.unit(6, "feet"),
  13540. weight: math.unit(150, "lb"),
  13541. name: "Front",
  13542. image: {
  13543. source: "./media/characters/alluria/front.svg",
  13544. extra: 806 / 738,
  13545. bottom: 0.01
  13546. }
  13547. },
  13548. side: {
  13549. height: math.unit(6, "feet"),
  13550. weight: math.unit(150, "lb"),
  13551. name: "Side",
  13552. image: {
  13553. source: "./media/characters/alluria/side.svg",
  13554. extra: 800 / 750,
  13555. }
  13556. },
  13557. back: {
  13558. height: math.unit(6, "feet"),
  13559. weight: math.unit(150, "lb"),
  13560. name: "Back",
  13561. image: {
  13562. source: "./media/characters/alluria/back.svg",
  13563. extra: 806 / 738,
  13564. }
  13565. },
  13566. frontMaid: {
  13567. height: math.unit(6, "feet"),
  13568. weight: math.unit(150, "lb"),
  13569. name: "Front (Maid)",
  13570. image: {
  13571. source: "./media/characters/alluria/front-maid.svg",
  13572. extra: 806 / 738,
  13573. bottom: 0.01
  13574. }
  13575. },
  13576. sideMaid: {
  13577. height: math.unit(6, "feet"),
  13578. weight: math.unit(150, "lb"),
  13579. name: "Side (Maid)",
  13580. image: {
  13581. source: "./media/characters/alluria/side-maid.svg",
  13582. extra: 800 / 750,
  13583. bottom: 0.005
  13584. }
  13585. },
  13586. backMaid: {
  13587. height: math.unit(6, "feet"),
  13588. weight: math.unit(150, "lb"),
  13589. name: "Back (Maid)",
  13590. image: {
  13591. source: "./media/characters/alluria/back-maid.svg",
  13592. extra: 806 / 738,
  13593. }
  13594. },
  13595. },
  13596. [
  13597. {
  13598. name: "Micro",
  13599. height: math.unit(6, "inches"),
  13600. default: true
  13601. },
  13602. ]
  13603. ))
  13604. characterMakers.push(() => makeCharacter(
  13605. { name: "Kyle" },
  13606. {
  13607. front: {
  13608. height: math.unit(6, "feet"),
  13609. weight: math.unit(150, "lb"),
  13610. name: "Front",
  13611. image: {
  13612. source: "./media/characters/kyle/front.svg",
  13613. extra: 1069 / 962,
  13614. bottom: 77.228 / 1727.45
  13615. }
  13616. },
  13617. },
  13618. [
  13619. {
  13620. name: "Macro",
  13621. height: math.unit(150, "feet"),
  13622. default: true
  13623. },
  13624. ]
  13625. ))
  13626. characterMakers.push(() => makeCharacter(
  13627. { name: "Duncan" },
  13628. {
  13629. front: {
  13630. height: math.unit(6, "feet"),
  13631. weight: math.unit(300, "lb"),
  13632. name: "Front",
  13633. image: {
  13634. source: "./media/characters/duncan/front.svg",
  13635. extra: 1650 / 1482,
  13636. bottom: 0.05
  13637. }
  13638. },
  13639. },
  13640. [
  13641. {
  13642. name: "Macro",
  13643. height: math.unit(100, "feet"),
  13644. default: true
  13645. },
  13646. ]
  13647. ))
  13648. characterMakers.push(() => makeCharacter(
  13649. { name: "Memory" },
  13650. {
  13651. front: {
  13652. height: math.unit(5 + 4 / 12, "feet"),
  13653. weight: math.unit(220, "lb"),
  13654. name: "Front",
  13655. image: {
  13656. source: "./media/characters/memory/front.svg",
  13657. extra: 3641 / 3545,
  13658. bottom: 0.03
  13659. }
  13660. },
  13661. back: {
  13662. height: math.unit(5 + 4 / 12, "feet"),
  13663. weight: math.unit(220, "lb"),
  13664. name: "Back",
  13665. image: {
  13666. source: "./media/characters/memory/back.svg",
  13667. extra: 3641 / 3545,
  13668. bottom: 0.025
  13669. }
  13670. },
  13671. frontSkirt: {
  13672. height: math.unit(5 + 4 / 12, "feet"),
  13673. weight: math.unit(220, "lb"),
  13674. name: "Front (Skirt)",
  13675. image: {
  13676. source: "./media/characters/memory/front-skirt.svg",
  13677. extra: 3641 / 3545,
  13678. bottom: 0.03
  13679. }
  13680. },
  13681. frontDress: {
  13682. height: math.unit(5 + 4 / 12, "feet"),
  13683. weight: math.unit(220, "lb"),
  13684. name: "Front (Dress)",
  13685. image: {
  13686. source: "./media/characters/memory/front-dress.svg",
  13687. extra: 3641 / 3545,
  13688. bottom: 0.03
  13689. }
  13690. },
  13691. },
  13692. [
  13693. {
  13694. name: "Micro",
  13695. height: math.unit(6, "inches"),
  13696. default: true
  13697. },
  13698. {
  13699. name: "Normal",
  13700. height: math.unit(5 + 4 / 12, "feet")
  13701. },
  13702. ]
  13703. ))
  13704. characterMakers.push(() => makeCharacter(
  13705. { name: "Luno" },
  13706. {
  13707. front: {
  13708. height: math.unit(4 + 11 / 12, "feet"),
  13709. weight: math.unit(100, "lb"),
  13710. name: "Front",
  13711. image: {
  13712. source: "./media/characters/luno/front.svg",
  13713. extra: 1535 / 1487,
  13714. bottom: 0.03
  13715. }
  13716. },
  13717. },
  13718. [
  13719. {
  13720. name: "Micro",
  13721. height: math.unit(3, "inches")
  13722. },
  13723. {
  13724. name: "Normal",
  13725. height: math.unit(4 + 11 / 12, "feet"),
  13726. default: true
  13727. },
  13728. {
  13729. name: "Macro",
  13730. height: math.unit(300, "feet")
  13731. },
  13732. {
  13733. name: "Megamacro",
  13734. height: math.unit(700, "miles")
  13735. },
  13736. ]
  13737. ))
  13738. characterMakers.push(() => makeCharacter(
  13739. { name: "Jamesy" },
  13740. {
  13741. front: {
  13742. height: math.unit(6 + 2 / 12, "feet"),
  13743. weight: math.unit(170, "lb"),
  13744. name: "Front",
  13745. image: {
  13746. source: "./media/characters/jamesy/front.svg",
  13747. extra: 440 / 382,
  13748. bottom: 0.005
  13749. }
  13750. },
  13751. },
  13752. [
  13753. {
  13754. name: "Micro",
  13755. height: math.unit(3, "inches")
  13756. },
  13757. {
  13758. name: "Normal",
  13759. height: math.unit(6 + 2 / 12, "feet"),
  13760. default: true
  13761. },
  13762. {
  13763. name: "Macro",
  13764. height: math.unit(300, "feet")
  13765. },
  13766. {
  13767. name: "Megamacro",
  13768. height: math.unit(700, "miles")
  13769. },
  13770. ]
  13771. ))
  13772. characterMakers.push(() => makeCharacter(
  13773. { name: "Mark" },
  13774. {
  13775. front: {
  13776. height: math.unit(6, "feet"),
  13777. weight: math.unit(160, "lb"),
  13778. name: "Front",
  13779. image: {
  13780. source: "./media/characters/mark/front.svg",
  13781. extra: 3300 / 3100,
  13782. bottom: 136.42 / 3440.47
  13783. }
  13784. },
  13785. },
  13786. [
  13787. {
  13788. name: "Macro",
  13789. height: math.unit(120, "meters")
  13790. },
  13791. {
  13792. name: "Bigger Macro",
  13793. height: math.unit(350, "meters")
  13794. },
  13795. {
  13796. name: "Megamacro",
  13797. height: math.unit(8, "km"),
  13798. default: true
  13799. },
  13800. {
  13801. name: "Continental",
  13802. height: math.unit(4550, "km")
  13803. },
  13804. {
  13805. name: "Planetary",
  13806. height: math.unit(65000, "km")
  13807. },
  13808. ]
  13809. ))
  13810. characterMakers.push(() => makeCharacter(
  13811. { name: "Mac" },
  13812. {
  13813. front: {
  13814. height: math.unit(6, "feet"),
  13815. weight: math.unit(400, "lb"),
  13816. name: "Front",
  13817. image: {
  13818. source: "./media/characters/mac/front.svg",
  13819. extra: 1048 / 987.7,
  13820. bottom: 60 / 1107.6,
  13821. }
  13822. },
  13823. },
  13824. [
  13825. {
  13826. name: "Macro",
  13827. height: math.unit(500, "feet"),
  13828. default: true
  13829. },
  13830. ]
  13831. ))
  13832. characterMakers.push(() => makeCharacter(
  13833. { name: "Bari" },
  13834. {
  13835. front: {
  13836. height: math.unit(5 + 2 / 12, "feet"),
  13837. weight: math.unit(190, "lb"),
  13838. name: "Front",
  13839. image: {
  13840. source: "./media/characters/bari/front.svg",
  13841. extra: 3156 / 2880,
  13842. bottom: 0.03
  13843. }
  13844. },
  13845. back: {
  13846. height: math.unit(5 + 2 / 12, "feet"),
  13847. weight: math.unit(190, "lb"),
  13848. name: "Back",
  13849. image: {
  13850. source: "./media/characters/bari/back.svg",
  13851. extra: 3260 / 2834,
  13852. bottom: 0.025
  13853. }
  13854. },
  13855. frontPlush: {
  13856. height: math.unit(5 + 2 / 12, "feet"),
  13857. weight: math.unit(190, "lb"),
  13858. name: "Front (Plush)",
  13859. image: {
  13860. source: "./media/characters/bari/front-plush.svg",
  13861. extra: 1112 / 1061,
  13862. bottom: 0.002
  13863. }
  13864. },
  13865. },
  13866. [
  13867. {
  13868. name: "Micro",
  13869. height: math.unit(3, "inches")
  13870. },
  13871. {
  13872. name: "Normal",
  13873. height: math.unit(5 + 2 / 12, "feet"),
  13874. default: true
  13875. },
  13876. {
  13877. name: "Macro",
  13878. height: math.unit(20, "feet")
  13879. },
  13880. ]
  13881. ))
  13882. characterMakers.push(() => makeCharacter(
  13883. { name: "Hunter Misha Raven" },
  13884. {
  13885. front: {
  13886. height: math.unit(6 + 1 / 12, "feet"),
  13887. weight: math.unit(275, "lb"),
  13888. name: "Front",
  13889. image: {
  13890. source: "./media/characters/hunter-misha-raven/front.svg"
  13891. }
  13892. },
  13893. },
  13894. [
  13895. {
  13896. name: "Mortal",
  13897. height: math.unit(6 + 1 / 12, "feet")
  13898. },
  13899. {
  13900. name: "Divine",
  13901. height: math.unit(1.12134e34, "parsecs"),
  13902. default: true
  13903. },
  13904. ]
  13905. ))
  13906. characterMakers.push(() => makeCharacter(
  13907. { name: "Max Calore" },
  13908. {
  13909. front: {
  13910. height: math.unit(6 + 3 / 12, "feet"),
  13911. weight: math.unit(220, "lb"),
  13912. name: "Front",
  13913. image: {
  13914. source: "./media/characters/max-calore/front.svg",
  13915. extra: 1700 / 1648,
  13916. bottom: 0.01
  13917. }
  13918. },
  13919. back: {
  13920. height: math.unit(6 + 3 / 12, "feet"),
  13921. weight: math.unit(220, "lb"),
  13922. name: "Back",
  13923. image: {
  13924. source: "./media/characters/max-calore/back.svg",
  13925. extra: 1700 / 1648,
  13926. bottom: 0.01
  13927. }
  13928. },
  13929. },
  13930. [
  13931. {
  13932. name: "Normal",
  13933. height: math.unit(6 + 3 / 12, "feet"),
  13934. default: true
  13935. },
  13936. ]
  13937. ))
  13938. characterMakers.push(() => makeCharacter(
  13939. { name: "Aspen" },
  13940. {
  13941. side: {
  13942. height: math.unit(2 + 8 / 12, "feet"),
  13943. weight: math.unit(99, "lb"),
  13944. name: "Side",
  13945. image: {
  13946. source: "./media/characters/aspen/side.svg",
  13947. extra: 152 / 138,
  13948. bottom: 0.032
  13949. }
  13950. },
  13951. },
  13952. [
  13953. {
  13954. name: "Normal",
  13955. height: math.unit(2 + 8 / 12, "feet"),
  13956. default: true
  13957. },
  13958. ]
  13959. ))
  13960. characterMakers.push(() => makeCharacter(
  13961. { name: "Sheila (Wolf)" },
  13962. {
  13963. side: {
  13964. height: math.unit(3 + 2 / 12, "feet"),
  13965. weight: math.unit(224, "lb"),
  13966. name: "Side",
  13967. image: {
  13968. source: "./media/characters/sheila-wolf/side.svg",
  13969. extra: 179 / 166,
  13970. bottom: 0.03
  13971. }
  13972. },
  13973. },
  13974. [
  13975. {
  13976. name: "Normal",
  13977. height: math.unit(3 + 2 / 12, "feet"),
  13978. default: true
  13979. },
  13980. ]
  13981. ))
  13982. characterMakers.push(() => makeCharacter(
  13983. { name: "Michelle" },
  13984. {
  13985. side: {
  13986. height: math.unit(1 + 9 / 12, "feet"),
  13987. weight: math.unit(38, "lb"),
  13988. name: "Side",
  13989. image: {
  13990. source: "./media/characters/michelle/side.svg",
  13991. extra: 147 / 136.7,
  13992. bottom: 0.03
  13993. }
  13994. },
  13995. },
  13996. [
  13997. {
  13998. name: "Normal",
  13999. height: math.unit(1 + 9 / 12, "feet"),
  14000. default: true
  14001. },
  14002. ]
  14003. ))
  14004. characterMakers.push(() => makeCharacter(
  14005. { name: "Nino" },
  14006. {
  14007. front: {
  14008. height: math.unit(1 + 1 / 12, "feet"),
  14009. weight: math.unit(18, "lb"),
  14010. name: "Front",
  14011. image: {
  14012. source: "./media/characters/nino/front.svg"
  14013. }
  14014. },
  14015. },
  14016. [
  14017. {
  14018. name: "Normal",
  14019. height: math.unit(1 + 1 / 12, "feet"),
  14020. default: true
  14021. },
  14022. ]
  14023. ))
  14024. characterMakers.push(() => makeCharacter(
  14025. { name: "Viola" },
  14026. {
  14027. front: {
  14028. height: math.unit(1, "feet"),
  14029. weight: math.unit(16, "lb"),
  14030. name: "Front",
  14031. image: {
  14032. source: "./media/characters/viola/front.svg"
  14033. }
  14034. },
  14035. },
  14036. [
  14037. {
  14038. name: "Normal",
  14039. height: math.unit(1, "feet"),
  14040. default: true
  14041. },
  14042. ]
  14043. ))
  14044. characterMakers.push(() => makeCharacter(
  14045. { name: "Atlas" },
  14046. {
  14047. front: {
  14048. height: math.unit(6 + 5 / 12, "feet"),
  14049. weight: math.unit(580, "lb"),
  14050. name: "Front",
  14051. image: {
  14052. source: "./media/characters/atlas/front.svg",
  14053. extra: 298.5 / 290,
  14054. bottom: 0.015
  14055. }
  14056. },
  14057. },
  14058. [
  14059. {
  14060. name: "Normal",
  14061. height: math.unit(6 + 5 / 12, "feet"),
  14062. default: true
  14063. },
  14064. ]
  14065. ))
  14066. characterMakers.push(() => makeCharacter(
  14067. { name: "Davy" },
  14068. {
  14069. side: {
  14070. height: math.unit(1 + 10 / 12, "feet"),
  14071. weight: math.unit(25, "lb"),
  14072. name: "Side",
  14073. image: {
  14074. source: "./media/characters/davy/side.svg",
  14075. extra: 200 / 170,
  14076. bottom: 0.01
  14077. }
  14078. },
  14079. },
  14080. [
  14081. {
  14082. name: "Normal",
  14083. height: math.unit(1 + 10 / 12, "feet"),
  14084. default: true
  14085. },
  14086. ]
  14087. ))
  14088. characterMakers.push(() => makeCharacter(
  14089. { name: "Fiona" },
  14090. {
  14091. side: {
  14092. height: math.unit(4 + 8 / 12, "feet"),
  14093. weight: math.unit(166, "lb"),
  14094. name: "Side",
  14095. image: {
  14096. source: "./media/characters/fiona/side.svg",
  14097. extra: 232 / 220,
  14098. bottom: 0.03
  14099. }
  14100. },
  14101. },
  14102. [
  14103. {
  14104. name: "Normal",
  14105. height: math.unit(4 + 8 / 12, "feet"),
  14106. default: true
  14107. },
  14108. ]
  14109. ))
  14110. characterMakers.push(() => makeCharacter(
  14111. { name: "Lyla" },
  14112. {
  14113. front: {
  14114. height: math.unit(2, "feet"),
  14115. weight: math.unit(62, "lb"),
  14116. name: "Front",
  14117. image: {
  14118. source: "./media/characters/lyla/front.svg",
  14119. bottom: 0.1
  14120. }
  14121. },
  14122. },
  14123. [
  14124. {
  14125. name: "Normal",
  14126. height: math.unit(2, "feet"),
  14127. default: true
  14128. },
  14129. ]
  14130. ))
  14131. characterMakers.push(() => makeCharacter(
  14132. { name: "Perseus" },
  14133. {
  14134. side: {
  14135. height: math.unit(1.8, "feet"),
  14136. weight: math.unit(44, "lb"),
  14137. name: "Side",
  14138. image: {
  14139. source: "./media/characters/perseus/side.svg",
  14140. bottom: 0.21
  14141. }
  14142. },
  14143. },
  14144. [
  14145. {
  14146. name: "Normal",
  14147. height: math.unit(1.8, "feet"),
  14148. default: true
  14149. },
  14150. ]
  14151. ))
  14152. characterMakers.push(() => makeCharacter(
  14153. { name: "Remus" },
  14154. {
  14155. side: {
  14156. height: math.unit(4 + 2 / 12, "feet"),
  14157. weight: math.unit(20, "lb"),
  14158. name: "Side",
  14159. image: {
  14160. source: "./media/characters/remus/side.svg"
  14161. }
  14162. },
  14163. },
  14164. [
  14165. {
  14166. name: "Normal",
  14167. height: math.unit(4 + 2 / 12, "feet"),
  14168. default: true
  14169. },
  14170. ]
  14171. ))
  14172. characterMakers.push(() => makeCharacter(
  14173. { name: "Raf" },
  14174. {
  14175. front: {
  14176. height: math.unit(4 + 11 / 12, "feet"),
  14177. weight: math.unit(114, "lb"),
  14178. name: "Front",
  14179. image: {
  14180. source: "./media/characters/raf/front.svg",
  14181. bottom: 0.01
  14182. }
  14183. },
  14184. side: {
  14185. height: math.unit(4 + 11 / 12, "feet"),
  14186. weight: math.unit(114, "lb"),
  14187. name: "Side",
  14188. image: {
  14189. source: "./media/characters/raf/side.svg",
  14190. bottom: 0.005
  14191. }
  14192. },
  14193. },
  14194. [
  14195. {
  14196. name: "Micro",
  14197. height: math.unit(2, "inches")
  14198. },
  14199. {
  14200. name: "Normal",
  14201. height: math.unit(4 + 11 / 12, "feet"),
  14202. default: true
  14203. },
  14204. {
  14205. name: "Macro",
  14206. height: math.unit(70, "feet")
  14207. },
  14208. ]
  14209. ))
  14210. characterMakers.push(() => makeCharacter(
  14211. { name: "Liam Einarr" },
  14212. {
  14213. front: {
  14214. height: math.unit(1.5, "meters"),
  14215. weight: math.unit(68, "kg"),
  14216. name: "Front",
  14217. image: {
  14218. source: "./media/characters/liam-einarr/front.svg",
  14219. extra: 2822 / 2666
  14220. }
  14221. },
  14222. back: {
  14223. height: math.unit(1.5, "meters"),
  14224. weight: math.unit(68, "kg"),
  14225. name: "Back",
  14226. image: {
  14227. source: "./media/characters/liam-einarr/back.svg",
  14228. extra: 2822 / 2666,
  14229. bottom: 0.015
  14230. }
  14231. },
  14232. },
  14233. [
  14234. {
  14235. name: "Normal",
  14236. height: math.unit(1.5, "meters"),
  14237. default: true
  14238. },
  14239. {
  14240. name: "Macro",
  14241. height: math.unit(150, "meters")
  14242. },
  14243. {
  14244. name: "Megamacro",
  14245. height: math.unit(35, "km")
  14246. },
  14247. ]
  14248. ))
  14249. characterMakers.push(() => makeCharacter(
  14250. { name: "Linda" },
  14251. {
  14252. front: {
  14253. height: math.unit(6, "feet"),
  14254. weight: math.unit(75, "kg"),
  14255. name: "Front",
  14256. image: {
  14257. source: "./media/characters/linda/front.svg",
  14258. extra: 930 / 874,
  14259. bottom: 0.004
  14260. }
  14261. },
  14262. },
  14263. [
  14264. {
  14265. name: "Normal",
  14266. height: math.unit(6, "feet"),
  14267. default: true
  14268. },
  14269. ]
  14270. ))
  14271. characterMakers.push(() => makeCharacter(
  14272. { name: "Caylex" },
  14273. {
  14274. front: {
  14275. height: math.unit(6 + 8 / 12, "feet"),
  14276. weight: math.unit(220, "lb"),
  14277. name: "Front",
  14278. image: {
  14279. source: "./media/characters/caylex/front.svg",
  14280. extra: 821 / 772,
  14281. bottom: 0.07
  14282. }
  14283. },
  14284. back: {
  14285. height: math.unit(6 + 8 / 12, "feet"),
  14286. weight: math.unit(220, "lb"),
  14287. name: "Back",
  14288. image: {
  14289. source: "./media/characters/caylex/back.svg",
  14290. extra: 821 / 772,
  14291. bottom: 0.022
  14292. }
  14293. },
  14294. hand: {
  14295. height: math.unit(1.25, "feet"),
  14296. name: "Hand",
  14297. image: {
  14298. source: "./media/characters/caylex/hand.svg"
  14299. }
  14300. },
  14301. foot: {
  14302. height: math.unit(1.6, "feet"),
  14303. name: "Foot",
  14304. image: {
  14305. source: "./media/characters/caylex/foot.svg"
  14306. }
  14307. },
  14308. armored: {
  14309. height: math.unit(6 + 8 / 12, "feet"),
  14310. weight: math.unit(250, "lb"),
  14311. name: "Armored",
  14312. image: {
  14313. source: "./media/characters/caylex/armored.svg",
  14314. extra: 1420 / 1310,
  14315. bottom: 0.045
  14316. }
  14317. },
  14318. },
  14319. [
  14320. {
  14321. name: "Normal",
  14322. height: math.unit(6 + 8 / 12, "feet"),
  14323. default: true
  14324. },
  14325. {
  14326. name: "Normal+",
  14327. height: math.unit(12, "feet")
  14328. },
  14329. ]
  14330. ))
  14331. characterMakers.push(() => makeCharacter(
  14332. { name: "Alana" },
  14333. {
  14334. front: {
  14335. height: math.unit(7 + 6 / 12, "feet"),
  14336. weight: math.unit(288, "lb"),
  14337. name: "Front",
  14338. image: {
  14339. source: "./media/characters/alana/front.svg",
  14340. extra: 679 / 653,
  14341. bottom: 22.5 / 701
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Normal",
  14348. height: math.unit(7 + 6 / 12, "feet")
  14349. },
  14350. {
  14351. name: "Large",
  14352. height: math.unit(50, "feet")
  14353. },
  14354. {
  14355. name: "Macro",
  14356. height: math.unit(100, "feet"),
  14357. default: true
  14358. },
  14359. {
  14360. name: "Macro+",
  14361. height: math.unit(200, "feet")
  14362. },
  14363. ]
  14364. ))
  14365. characterMakers.push(() => makeCharacter(
  14366. { name: "Hasani" },
  14367. {
  14368. front: {
  14369. height: math.unit(6 + 1 / 12, "feet"),
  14370. weight: math.unit(210, "lb"),
  14371. name: "Front",
  14372. image: {
  14373. source: "./media/characters/hasani/front.svg",
  14374. extra: 244 / 232,
  14375. bottom: 0.01
  14376. }
  14377. },
  14378. back: {
  14379. height: math.unit(6 + 1 / 12, "feet"),
  14380. weight: math.unit(210, "lb"),
  14381. name: "Back",
  14382. image: {
  14383. source: "./media/characters/hasani/back.svg",
  14384. extra: 244 / 232,
  14385. bottom: 0.01
  14386. }
  14387. },
  14388. },
  14389. [
  14390. {
  14391. name: "Normal",
  14392. height: math.unit(6 + 1 / 12, "feet")
  14393. },
  14394. {
  14395. name: "Macro",
  14396. height: math.unit(175, "feet"),
  14397. default: true
  14398. },
  14399. ]
  14400. ))
  14401. characterMakers.push(() => makeCharacter(
  14402. { name: "Nita" },
  14403. {
  14404. front: {
  14405. height: math.unit(1.82, "meters"),
  14406. weight: math.unit(140, "lb"),
  14407. name: "Front",
  14408. image: {
  14409. source: "./media/characters/nita/front.svg",
  14410. extra: 2473 / 2363,
  14411. bottom: 0.01
  14412. }
  14413. },
  14414. },
  14415. [
  14416. {
  14417. name: "Normal",
  14418. height: math.unit(1.82, "m")
  14419. },
  14420. {
  14421. name: "Macro",
  14422. height: math.unit(300, "m")
  14423. },
  14424. {
  14425. name: "Mistake Canon",
  14426. height: math.unit(0.5, "miles"),
  14427. default: true
  14428. },
  14429. {
  14430. name: "Big Mistake",
  14431. height: math.unit(13, "miles")
  14432. },
  14433. {
  14434. name: "Playing God",
  14435. height: math.unit(2450, "miles")
  14436. },
  14437. ]
  14438. ))
  14439. characterMakers.push(() => makeCharacter(
  14440. { name: "Shiriko" },
  14441. {
  14442. front: {
  14443. height: math.unit(4, "feet"),
  14444. weight: math.unit(120, "lb"),
  14445. name: "Front",
  14446. image: {
  14447. source: "./media/characters/shiriko/front.svg",
  14448. extra: 195 / 188
  14449. }
  14450. },
  14451. },
  14452. [
  14453. {
  14454. name: "Normal",
  14455. height: math.unit(4, "feet"),
  14456. default: true
  14457. },
  14458. ]
  14459. ))
  14460. characterMakers.push(() => makeCharacter(
  14461. { name: "Deja" },
  14462. {
  14463. front: {
  14464. height: math.unit(6, "feet"),
  14465. name: "front",
  14466. image: {
  14467. source: "./media/characters/deja/front.svg",
  14468. extra: 926 / 840,
  14469. bottom: 0.07
  14470. }
  14471. },
  14472. },
  14473. [
  14474. {
  14475. name: "Planck Length",
  14476. height: math.unit(1.6e-35, "meters")
  14477. },
  14478. {
  14479. name: "Normal",
  14480. height: math.unit(30.48, "meters"),
  14481. default: true
  14482. },
  14483. {
  14484. name: "Universal",
  14485. height: math.unit(8.8e26, "meters")
  14486. },
  14487. ]
  14488. ))
  14489. characterMakers.push(() => makeCharacter(
  14490. { name: "Anima" },
  14491. {
  14492. side: {
  14493. height: math.unit(8, "feet"),
  14494. weight: math.unit(6300, "lb"),
  14495. name: "Side",
  14496. image: {
  14497. source: "./media/characters/anima/side.svg",
  14498. bottom: 0.035
  14499. }
  14500. },
  14501. },
  14502. [
  14503. {
  14504. name: "Normal",
  14505. height: math.unit(8, "feet"),
  14506. default: true
  14507. },
  14508. ]
  14509. ))
  14510. characterMakers.push(() => makeCharacter(
  14511. { name: "Bianca" },
  14512. {
  14513. front: {
  14514. height: math.unit(8, "feet"),
  14515. weight: math.unit(350, "lb"),
  14516. name: "Front",
  14517. image: {
  14518. source: "./media/characters/bianca/front.svg",
  14519. extra: 234 / 225,
  14520. bottom: 0.03
  14521. }
  14522. },
  14523. },
  14524. [
  14525. {
  14526. name: "Normal",
  14527. height: math.unit(8, "feet"),
  14528. default: true
  14529. },
  14530. ]
  14531. ))
  14532. characterMakers.push(() => makeCharacter(
  14533. { name: "Adinia" },
  14534. {
  14535. front: {
  14536. height: math.unit(6, "feet"),
  14537. weight: math.unit(150, "lb"),
  14538. name: "Front",
  14539. image: {
  14540. source: "./media/characters/adinia/front.svg",
  14541. extra: 1845 / 1672,
  14542. bottom: 0.02
  14543. }
  14544. },
  14545. back: {
  14546. height: math.unit(6, "feet"),
  14547. weight: math.unit(150, "lb"),
  14548. name: "Back",
  14549. image: {
  14550. source: "./media/characters/adinia/back.svg",
  14551. extra: 1845 / 1672,
  14552. bottom: 0.002
  14553. }
  14554. },
  14555. },
  14556. [
  14557. {
  14558. name: "Normal",
  14559. height: math.unit(11 + 5 / 12, "feet"),
  14560. default: true
  14561. },
  14562. ]
  14563. ))
  14564. characterMakers.push(() => makeCharacter(
  14565. { name: "Lykasa" },
  14566. {
  14567. front: {
  14568. height: math.unit(3, "meters"),
  14569. weight: math.unit(200, "kg"),
  14570. name: "Front",
  14571. image: {
  14572. source: "./media/characters/lykasa/front.svg",
  14573. extra: 1076 / 976,
  14574. bottom: 0.06
  14575. }
  14576. },
  14577. },
  14578. [
  14579. {
  14580. name: "Normal",
  14581. height: math.unit(3, "meters")
  14582. },
  14583. {
  14584. name: "Kaiku",
  14585. height: math.unit(120, "meters"),
  14586. default: true
  14587. },
  14588. {
  14589. name: "Mega Kaiju",
  14590. height: math.unit(240, "km")
  14591. },
  14592. {
  14593. name: "Giga Kaiju",
  14594. height: math.unit(400, "megameters")
  14595. },
  14596. {
  14597. name: "Tera Kaiju",
  14598. height: math.unit(800, "gigameters")
  14599. },
  14600. {
  14601. name: "Kaiju Dragon Goddess",
  14602. height: math.unit(26, "zettaparsecs")
  14603. },
  14604. ]
  14605. ))
  14606. characterMakers.push(() => makeCharacter(
  14607. { name: "Malfaren" },
  14608. {
  14609. side: {
  14610. height: math.unit(283 / 124 * 6, "feet"),
  14611. weight: math.unit(35000, "lb"),
  14612. name: "Side",
  14613. image: {
  14614. source: "./media/characters/malfaren/side.svg",
  14615. extra: 2500 / 1010,
  14616. bottom: 0.01
  14617. }
  14618. },
  14619. front: {
  14620. height: math.unit(22.36, "feet"),
  14621. weight: math.unit(35000, "lb"),
  14622. name: "Front",
  14623. image: {
  14624. source: "./media/characters/malfaren/front.svg",
  14625. extra: 1631 / 1476,
  14626. bottom: 0.01
  14627. }
  14628. },
  14629. maw: {
  14630. height: math.unit(6.9, "feet"),
  14631. name: "Maw",
  14632. image: {
  14633. source: "./media/characters/malfaren/maw.svg"
  14634. }
  14635. },
  14636. },
  14637. [
  14638. {
  14639. name: "Big",
  14640. height: math.unit(283 / 162 * 6, "feet"),
  14641. },
  14642. {
  14643. name: "Bigger",
  14644. height: math.unit(283 / 124 * 6, "feet")
  14645. },
  14646. {
  14647. name: "Massive",
  14648. height: math.unit(283 / 92 * 6, "feet"),
  14649. default: true
  14650. },
  14651. {
  14652. name: "👀💦",
  14653. height: math.unit(283 / 73 * 6, "feet"),
  14654. },
  14655. ]
  14656. ))
  14657. characterMakers.push(() => makeCharacter(
  14658. { name: "Kernel" },
  14659. {
  14660. front: {
  14661. height: math.unit(1.7, "m"),
  14662. weight: math.unit(70, "kg"),
  14663. name: "Front",
  14664. image: {
  14665. source: "./media/characters/kernel/front.svg",
  14666. extra: 222 / 210,
  14667. bottom: 0.007
  14668. }
  14669. },
  14670. },
  14671. [
  14672. {
  14673. name: "Nano",
  14674. height: math.unit(17, "micrometers")
  14675. },
  14676. {
  14677. name: "Micro",
  14678. height: math.unit(1.7, "mm")
  14679. },
  14680. {
  14681. name: "Small",
  14682. height: math.unit(1.7, "cm")
  14683. },
  14684. {
  14685. name: "Normal",
  14686. height: math.unit(1.7, "m"),
  14687. default: true
  14688. },
  14689. ]
  14690. ))
  14691. characterMakers.push(() => makeCharacter(
  14692. { name: "Jayne Folest" },
  14693. {
  14694. front: {
  14695. height: math.unit(1.75, "meters"),
  14696. weight: math.unit(65, "kg"),
  14697. name: "Front",
  14698. image: {
  14699. source: "./media/characters/jayne-folest/front.svg",
  14700. extra: 2115 / 2007,
  14701. bottom: 0.02
  14702. }
  14703. },
  14704. back: {
  14705. height: math.unit(1.75, "meters"),
  14706. weight: math.unit(65, "kg"),
  14707. name: "Back",
  14708. image: {
  14709. source: "./media/characters/jayne-folest/back.svg",
  14710. extra: 2115 / 2007,
  14711. bottom: 0.005
  14712. }
  14713. },
  14714. frontClothed: {
  14715. height: math.unit(1.75, "meters"),
  14716. weight: math.unit(65, "kg"),
  14717. name: "Front (Clothed)",
  14718. image: {
  14719. source: "./media/characters/jayne-folest/front-clothed.svg",
  14720. extra: 2115 / 2007,
  14721. bottom: 0.035
  14722. }
  14723. },
  14724. hand: {
  14725. height: math.unit(1 / 1.260, "feet"),
  14726. name: "Hand",
  14727. image: {
  14728. source: "./media/characters/jayne-folest/hand.svg"
  14729. }
  14730. },
  14731. foot: {
  14732. height: math.unit(1 / 0.918, "feet"),
  14733. name: "Foot",
  14734. image: {
  14735. source: "./media/characters/jayne-folest/foot.svg"
  14736. }
  14737. },
  14738. },
  14739. [
  14740. {
  14741. name: "Micro",
  14742. height: math.unit(4, "cm")
  14743. },
  14744. {
  14745. name: "Normal",
  14746. height: math.unit(1.75, "meters")
  14747. },
  14748. {
  14749. name: "Macro",
  14750. height: math.unit(47.5, "meters"),
  14751. default: true
  14752. },
  14753. ]
  14754. ))
  14755. characterMakers.push(() => makeCharacter(
  14756. { name: "Algier" },
  14757. {
  14758. front: {
  14759. height: math.unit(180, "cm"),
  14760. weight: math.unit(70, "kg"),
  14761. name: "Front",
  14762. image: {
  14763. source: "./media/characters/algier/front.svg",
  14764. extra: 596 / 572,
  14765. bottom: 0.04
  14766. }
  14767. },
  14768. back: {
  14769. height: math.unit(180, "cm"),
  14770. weight: math.unit(70, "kg"),
  14771. name: "Back",
  14772. image: {
  14773. source: "./media/characters/algier/back.svg",
  14774. extra: 596 / 572,
  14775. bottom: 0.025
  14776. }
  14777. },
  14778. frontdressed: {
  14779. height: math.unit(180, "cm"),
  14780. weight: math.unit(150, "kg"),
  14781. name: "Front-dressed",
  14782. image: {
  14783. source: "./media/characters/algier/front-dressed.svg",
  14784. extra: 596 / 572,
  14785. bottom: 0.038
  14786. }
  14787. },
  14788. },
  14789. [
  14790. {
  14791. name: "Micro",
  14792. height: math.unit(5, "cm")
  14793. },
  14794. {
  14795. name: "Normal",
  14796. height: math.unit(180, "cm"),
  14797. default: true
  14798. },
  14799. {
  14800. name: "Macro",
  14801. height: math.unit(64, "m")
  14802. },
  14803. ]
  14804. ))
  14805. characterMakers.push(() => makeCharacter(
  14806. { name: "Pretzel" },
  14807. {
  14808. upright: {
  14809. height: math.unit(7, "feet"),
  14810. weight: math.unit(300, "lb"),
  14811. name: "Upright",
  14812. image: {
  14813. source: "./media/characters/pretzel/upright.svg",
  14814. extra: 534 / 522,
  14815. bottom: 0.065
  14816. }
  14817. },
  14818. sprawling: {
  14819. height: math.unit(3.75, "feet"),
  14820. weight: math.unit(300, "lb"),
  14821. name: "Sprawling",
  14822. image: {
  14823. source: "./media/characters/pretzel/sprawling.svg",
  14824. extra: 314 / 281,
  14825. bottom: 0.1
  14826. }
  14827. },
  14828. tongue: {
  14829. height: math.unit(2, "feet"),
  14830. name: "Tongue",
  14831. image: {
  14832. source: "./media/characters/pretzel/tongue.svg"
  14833. }
  14834. },
  14835. },
  14836. [
  14837. {
  14838. name: "Normal",
  14839. height: math.unit(7, "feet"),
  14840. default: true
  14841. },
  14842. {
  14843. name: "Oversized",
  14844. height: math.unit(15, "feet")
  14845. },
  14846. {
  14847. name: "Huge",
  14848. height: math.unit(30, "feet")
  14849. },
  14850. {
  14851. name: "Macro",
  14852. height: math.unit(250, "feet")
  14853. },
  14854. ]
  14855. ))
  14856. characterMakers.push(() => makeCharacter(
  14857. { name: "Roxi" },
  14858. {
  14859. sideFront: {
  14860. height: math.unit(5 + 2 / 12, "feet"),
  14861. weight: math.unit(120, "lb"),
  14862. name: "Front Side",
  14863. image: {
  14864. source: "./media/characters/roxi/side-front.svg",
  14865. extra: 2924 / 2717,
  14866. bottom: 0.08
  14867. }
  14868. },
  14869. sideBack: {
  14870. height: math.unit(5 + 2 / 12, "feet"),
  14871. weight: math.unit(120, "lb"),
  14872. name: "Back Side",
  14873. image: {
  14874. source: "./media/characters/roxi/side-back.svg",
  14875. extra: 2904 / 2693,
  14876. bottom: 0.06
  14877. }
  14878. },
  14879. front: {
  14880. height: math.unit(5 + 2 / 12, "feet"),
  14881. weight: math.unit(120, "lb"),
  14882. name: "Front",
  14883. image: {
  14884. source: "./media/characters/roxi/front.svg",
  14885. extra: 2028 / 1907,
  14886. bottom: 0.01
  14887. }
  14888. },
  14889. frontAlt: {
  14890. height: math.unit(5 + 2 / 12, "feet"),
  14891. weight: math.unit(120, "lb"),
  14892. name: "Front (Alt)",
  14893. image: {
  14894. source: "./media/characters/roxi/front-alt.svg",
  14895. extra: 1828 / 1798,
  14896. bottom: 0.01
  14897. }
  14898. },
  14899. sitting: {
  14900. height: math.unit(2.8, "feet"),
  14901. weight: math.unit(120, "lb"),
  14902. name: "Sitting",
  14903. image: {
  14904. source: "./media/characters/roxi/sitting.svg",
  14905. extra: 2660 / 2462,
  14906. bottom: 0.1
  14907. }
  14908. },
  14909. },
  14910. [
  14911. {
  14912. name: "Normal",
  14913. height: math.unit(5 + 2 / 12, "feet"),
  14914. default: true
  14915. },
  14916. ]
  14917. ))
  14918. characterMakers.push(() => makeCharacter(
  14919. { name: "Shadow" },
  14920. {
  14921. side: {
  14922. height: math.unit(55, "feet"),
  14923. weight: math.unit(153, "tons"),
  14924. name: "Side",
  14925. image: {
  14926. source: "./media/characters/shadow/side.svg",
  14927. extra: 701 / 628,
  14928. bottom: 0.02
  14929. }
  14930. },
  14931. flying: {
  14932. height: math.unit(145, "feet"),
  14933. weight: math.unit(153, "tons"),
  14934. name: "Flying",
  14935. image: {
  14936. source: "./media/characters/shadow/flying.svg"
  14937. }
  14938. },
  14939. },
  14940. [
  14941. {
  14942. name: "Normal",
  14943. height: math.unit(55, "feet"),
  14944. default: true
  14945. },
  14946. ]
  14947. ))
  14948. characterMakers.push(() => makeCharacter(
  14949. { name: "Marcie" },
  14950. {
  14951. front: {
  14952. height: math.unit(6, "feet"),
  14953. weight: math.unit(200, "lb"),
  14954. name: "Front",
  14955. image: {
  14956. source: "./media/characters/marcie/front.svg",
  14957. extra: 960 / 876,
  14958. bottom: 58 / 1017.87
  14959. }
  14960. },
  14961. },
  14962. [
  14963. {
  14964. name: "Macro",
  14965. height: math.unit(1, "mile"),
  14966. default: true
  14967. },
  14968. ]
  14969. ))
  14970. characterMakers.push(() => makeCharacter(
  14971. { name: "Kachina" },
  14972. {
  14973. front: {
  14974. height: math.unit(7, "feet"),
  14975. weight: math.unit(200, "lb"),
  14976. name: "Front",
  14977. image: {
  14978. source: "./media/characters/kachina/front.svg",
  14979. extra: 1290.68 / 1119,
  14980. bottom: 36.5 / 1327.18
  14981. }
  14982. },
  14983. },
  14984. [
  14985. {
  14986. name: "Normal",
  14987. height: math.unit(7, "feet"),
  14988. default: true
  14989. },
  14990. ]
  14991. ))
  14992. characterMakers.push(() => makeCharacter(
  14993. { name: "Kash" },
  14994. {
  14995. looking: {
  14996. height: math.unit(2, "meters"),
  14997. weight: math.unit(300, "kg"),
  14998. name: "Looking",
  14999. image: {
  15000. source: "./media/characters/kash/looking.svg",
  15001. extra: 474 / 344,
  15002. bottom: 0.03
  15003. }
  15004. },
  15005. side: {
  15006. height: math.unit(2, "meters"),
  15007. weight: math.unit(300, "kg"),
  15008. name: "Side",
  15009. image: {
  15010. source: "./media/characters/kash/side.svg",
  15011. extra: 302 / 251,
  15012. bottom: 0.03
  15013. }
  15014. },
  15015. front: {
  15016. height: math.unit(2, "meters"),
  15017. weight: math.unit(300, "kg"),
  15018. name: "Front",
  15019. image: {
  15020. source: "./media/characters/kash/front.svg",
  15021. extra: 495 / 360,
  15022. bottom: 0.015
  15023. }
  15024. },
  15025. },
  15026. [
  15027. {
  15028. name: "Normal",
  15029. height: math.unit(2, "meters"),
  15030. default: true
  15031. },
  15032. {
  15033. name: "Big",
  15034. height: math.unit(3, "meters")
  15035. },
  15036. {
  15037. name: "Large",
  15038. height: math.unit(5, "meters")
  15039. },
  15040. ]
  15041. ))
  15042. characterMakers.push(() => makeCharacter(
  15043. { name: "Lalim" },
  15044. {
  15045. feeding: {
  15046. height: math.unit(6.7, "feet"),
  15047. weight: math.unit(350, "lb"),
  15048. name: "Feeding",
  15049. image: {
  15050. source: "./media/characters/lalim/feeding.svg",
  15051. }
  15052. },
  15053. },
  15054. [
  15055. {
  15056. name: "Normal",
  15057. height: math.unit(6.7, "feet"),
  15058. default: true
  15059. },
  15060. ]
  15061. ))
  15062. characterMakers.push(() => makeCharacter(
  15063. { name: "De'Vout" },
  15064. {
  15065. front: {
  15066. height: math.unit(9.5, "feet"),
  15067. weight: math.unit(600, "lb"),
  15068. name: "Front",
  15069. image: {
  15070. source: "./media/characters/de'vout/front.svg",
  15071. extra: 1443 / 1328,
  15072. bottom: 0.025
  15073. }
  15074. },
  15075. back: {
  15076. height: math.unit(9.5, "feet"),
  15077. weight: math.unit(600, "lb"),
  15078. name: "Back",
  15079. image: {
  15080. source: "./media/characters/de'vout/back.svg",
  15081. extra: 1443 / 1328
  15082. }
  15083. },
  15084. frontDressed: {
  15085. height: math.unit(9.5, "feet"),
  15086. weight: math.unit(600, "lb"),
  15087. name: "Front (Dressed",
  15088. image: {
  15089. source: "./media/characters/de'vout/front-dressed.svg",
  15090. extra: 1443 / 1328,
  15091. bottom: 0.025
  15092. }
  15093. },
  15094. backDressed: {
  15095. height: math.unit(9.5, "feet"),
  15096. weight: math.unit(600, "lb"),
  15097. name: "Back (Dressed",
  15098. image: {
  15099. source: "./media/characters/de'vout/back-dressed.svg",
  15100. extra: 1443 / 1328
  15101. }
  15102. },
  15103. },
  15104. [
  15105. {
  15106. name: "Normal",
  15107. height: math.unit(9.5, "feet"),
  15108. default: true
  15109. },
  15110. ]
  15111. ))
  15112. characterMakers.push(() => makeCharacter(
  15113. { name: "Talana" },
  15114. {
  15115. front: {
  15116. height: math.unit(8, "feet"),
  15117. weight: math.unit(225, "lb"),
  15118. name: "Front",
  15119. image: {
  15120. source: "./media/characters/talana/front.svg",
  15121. extra: 1410 / 1300,
  15122. bottom: 0.015
  15123. }
  15124. },
  15125. frontDressed: {
  15126. height: math.unit(8, "feet"),
  15127. weight: math.unit(225, "lb"),
  15128. name: "Front (Dressed",
  15129. image: {
  15130. source: "./media/characters/talana/front-dressed.svg",
  15131. extra: 1410 / 1300,
  15132. bottom: 0.015
  15133. }
  15134. },
  15135. },
  15136. [
  15137. {
  15138. name: "Normal",
  15139. height: math.unit(8, "feet"),
  15140. default: true
  15141. },
  15142. ]
  15143. ))
  15144. characterMakers.push(() => makeCharacter(
  15145. { name: "Xeauvok" },
  15146. {
  15147. side: {
  15148. height: math.unit(7.2, "feet"),
  15149. weight: math.unit(150, "lb"),
  15150. name: "Side",
  15151. image: {
  15152. source: "./media/characters/xeauvok/side.svg",
  15153. extra: 1975 / 1523,
  15154. bottom: 0.07
  15155. }
  15156. },
  15157. },
  15158. [
  15159. {
  15160. name: "Normal",
  15161. height: math.unit(7.2, "feet"),
  15162. default: true
  15163. },
  15164. ]
  15165. ))
  15166. characterMakers.push(() => makeCharacter(
  15167. { name: "Zara" },
  15168. {
  15169. side: {
  15170. height: math.unit(10, "feet"),
  15171. weight: math.unit(900, "kg"),
  15172. name: "Side",
  15173. image: {
  15174. source: "./media/characters/zara/side.svg",
  15175. extra: 504 / 498
  15176. }
  15177. },
  15178. },
  15179. [
  15180. {
  15181. name: "Normal",
  15182. height: math.unit(10, "feet"),
  15183. default: true
  15184. },
  15185. ]
  15186. ))
  15187. characterMakers.push(() => makeCharacter(
  15188. { name: "Richard (Dragon)" },
  15189. {
  15190. side: {
  15191. height: math.unit(6, "feet"),
  15192. weight: math.unit(150, "lb"),
  15193. name: "Side",
  15194. image: {
  15195. source: "./media/characters/richard-dragon/side.svg",
  15196. extra: 845 / 340,
  15197. bottom: 0.017
  15198. }
  15199. },
  15200. maw: {
  15201. height: math.unit(2.97, "feet"),
  15202. name: "Maw",
  15203. image: {
  15204. source: "./media/characters/richard-dragon/maw.svg"
  15205. }
  15206. },
  15207. },
  15208. [
  15209. ]
  15210. ))
  15211. characterMakers.push(() => makeCharacter(
  15212. { name: "Richard (Smeargle)" },
  15213. {
  15214. front: {
  15215. height: math.unit(4, "feet"),
  15216. weight: math.unit(100, "lb"),
  15217. name: "Front",
  15218. image: {
  15219. source: "./media/characters/richard-smeargle/front.svg",
  15220. extra: 2952 / 2820,
  15221. bottom: 0.028
  15222. }
  15223. },
  15224. },
  15225. [
  15226. {
  15227. name: "Normal",
  15228. height: math.unit(4, "feet"),
  15229. default: true
  15230. },
  15231. {
  15232. name: "Dynamax",
  15233. height: math.unit(20, "meters")
  15234. },
  15235. ]
  15236. ))
  15237. characterMakers.push(() => makeCharacter(
  15238. { name: "Klay" },
  15239. {
  15240. front: {
  15241. height: math.unit(6, "feet"),
  15242. weight: math.unit(110, "lb"),
  15243. name: "Front",
  15244. image: {
  15245. source: "./media/characters/klay/front.svg",
  15246. extra: 962 / 883,
  15247. bottom: 0.04
  15248. }
  15249. },
  15250. back: {
  15251. height: math.unit(6, "feet"),
  15252. weight: math.unit(110, "lb"),
  15253. name: "Back",
  15254. image: {
  15255. source: "./media/characters/klay/back.svg",
  15256. extra: 962 / 883
  15257. }
  15258. },
  15259. beans: {
  15260. height: math.unit(1.15, "feet"),
  15261. name: "Beans",
  15262. image: {
  15263. source: "./media/characters/klay/beans.svg"
  15264. }
  15265. },
  15266. },
  15267. [
  15268. {
  15269. name: "Micro",
  15270. height: math.unit(6, "inches")
  15271. },
  15272. {
  15273. name: "Mini",
  15274. height: math.unit(3, "feet")
  15275. },
  15276. {
  15277. name: "Normal",
  15278. height: math.unit(6, "feet"),
  15279. default: true
  15280. },
  15281. {
  15282. name: "Big",
  15283. height: math.unit(25, "feet")
  15284. },
  15285. {
  15286. name: "Macro",
  15287. height: math.unit(100, "feet")
  15288. },
  15289. {
  15290. name: "Megamacro",
  15291. height: math.unit(400, "feet")
  15292. },
  15293. ]
  15294. ))
  15295. characterMakers.push(() => makeCharacter(
  15296. { name: "Marcus" },
  15297. {
  15298. front: {
  15299. height: math.unit(6, "feet"),
  15300. weight: math.unit(160, "lb"),
  15301. name: "Front",
  15302. image: {
  15303. source: "./media/characters/marcus/front.svg",
  15304. extra: 734 / 676,
  15305. bottom: 0.03
  15306. }
  15307. },
  15308. },
  15309. [
  15310. {
  15311. name: "Little",
  15312. height: math.unit(6, "feet")
  15313. },
  15314. {
  15315. name: "Normal",
  15316. height: math.unit(110, "feet"),
  15317. default: true
  15318. },
  15319. {
  15320. name: "Macro",
  15321. height: math.unit(250, "feet")
  15322. },
  15323. {
  15324. name: "Megamacro",
  15325. height: math.unit(1000, "feet")
  15326. },
  15327. ]
  15328. ))
  15329. characterMakers.push(() => makeCharacter(
  15330. { name: "Claude DelRoute" },
  15331. {
  15332. front: {
  15333. height: math.unit(7, "feet"),
  15334. weight: math.unit(275, "lb"),
  15335. name: "Front",
  15336. image: {
  15337. source: "./media/characters/claude-delroute/front.svg",
  15338. extra: 230 / 214,
  15339. bottom: 0.007
  15340. }
  15341. },
  15342. side: {
  15343. height: math.unit(7, "feet"),
  15344. weight: math.unit(275, "lb"),
  15345. name: "Side",
  15346. image: {
  15347. source: "./media/characters/claude-delroute/side.svg",
  15348. extra: 222 / 214,
  15349. bottom: 0.01
  15350. }
  15351. },
  15352. back: {
  15353. height: math.unit(7, "feet"),
  15354. weight: math.unit(275, "lb"),
  15355. name: "Back",
  15356. image: {
  15357. source: "./media/characters/claude-delroute/back.svg",
  15358. extra: 230 / 214,
  15359. bottom: 0.015
  15360. }
  15361. },
  15362. maw: {
  15363. height: math.unit(0.6407, "meters"),
  15364. name: "Maw",
  15365. image: {
  15366. source: "./media/characters/claude-delroute/maw.svg"
  15367. }
  15368. },
  15369. },
  15370. [
  15371. {
  15372. name: "Normal",
  15373. height: math.unit(7, "feet"),
  15374. default: true
  15375. },
  15376. {
  15377. name: "Lorge",
  15378. height: math.unit(20, "feet")
  15379. },
  15380. ]
  15381. ))
  15382. characterMakers.push(() => makeCharacter(
  15383. { name: "Dragonien" },
  15384. {
  15385. front: {
  15386. height: math.unit(8 + 4 / 12, "feet"),
  15387. weight: math.unit(600, "lb"),
  15388. name: "Front",
  15389. image: {
  15390. source: "./media/characters/dragonien/front.svg",
  15391. extra: 100 / 94,
  15392. bottom: 3.3 / 103.3445
  15393. }
  15394. },
  15395. back: {
  15396. height: math.unit(8 + 4 / 12, "feet"),
  15397. weight: math.unit(600, "lb"),
  15398. name: "Back",
  15399. image: {
  15400. source: "./media/characters/dragonien/back.svg",
  15401. extra: 776 / 746,
  15402. bottom: 6.4 / 782.0616
  15403. }
  15404. },
  15405. foot: {
  15406. height: math.unit(1.54, "feet"),
  15407. name: "Foot",
  15408. image: {
  15409. source: "./media/characters/dragonien/foot.svg",
  15410. }
  15411. },
  15412. },
  15413. [
  15414. {
  15415. name: "Normal",
  15416. height: math.unit(8 + 4 / 12, "feet"),
  15417. default: true
  15418. },
  15419. {
  15420. name: "Macro",
  15421. height: math.unit(200, "feet")
  15422. },
  15423. {
  15424. name: "Megamacro",
  15425. height: math.unit(1, "mile")
  15426. },
  15427. {
  15428. name: "Gigamacro",
  15429. height: math.unit(1000, "miles")
  15430. },
  15431. ]
  15432. ))
  15433. characterMakers.push(() => makeCharacter(
  15434. { name: "Desta" },
  15435. {
  15436. front: {
  15437. height: math.unit(5 + 2 / 12, "feet"),
  15438. weight: math.unit(110, "lb"),
  15439. name: "Front",
  15440. image: {
  15441. source: "./media/characters/desta/front.svg",
  15442. extra: 1482 / 1417
  15443. }
  15444. },
  15445. side: {
  15446. height: math.unit(5 + 2 / 12, "feet"),
  15447. weight: math.unit(110, "lb"),
  15448. name: "Side",
  15449. image: {
  15450. source: "./media/characters/desta/side.svg",
  15451. extra: 2579 / 2491,
  15452. bottom: 0.053
  15453. }
  15454. },
  15455. },
  15456. [
  15457. {
  15458. name: "Micro",
  15459. height: math.unit(6, "inches")
  15460. },
  15461. {
  15462. name: "Normal",
  15463. height: math.unit(5 + 2 / 12, "feet"),
  15464. default: true
  15465. },
  15466. {
  15467. name: "Macro",
  15468. height: math.unit(62, "feet")
  15469. },
  15470. {
  15471. name: "Megamacro",
  15472. height: math.unit(1800, "feet")
  15473. },
  15474. ]
  15475. ))
  15476. characterMakers.push(() => makeCharacter(
  15477. { name: "Storm Alystar" },
  15478. {
  15479. front: {
  15480. height: math.unit(10, "feet"),
  15481. weight: math.unit(700, "lb"),
  15482. name: "Front",
  15483. image: {
  15484. source: "./media/characters/storm-alystar/front.svg",
  15485. extra: 2112 / 1898,
  15486. bottom: 0.034
  15487. }
  15488. },
  15489. },
  15490. [
  15491. {
  15492. name: "Micro",
  15493. height: math.unit(3.5, "inches")
  15494. },
  15495. {
  15496. name: "Normal",
  15497. height: math.unit(10, "feet"),
  15498. default: true
  15499. },
  15500. {
  15501. name: "Macro",
  15502. height: math.unit(400, "feet")
  15503. },
  15504. {
  15505. name: "Deific",
  15506. height: math.unit(60, "miles")
  15507. },
  15508. ]
  15509. ))
  15510. characterMakers.push(() => makeCharacter(
  15511. { name: "Ilia" },
  15512. {
  15513. front: {
  15514. height: math.unit(2.35, "meters"),
  15515. weight: math.unit(119, "kg"),
  15516. name: "Front",
  15517. image: {
  15518. source: "./media/characters/ilia/front.svg",
  15519. extra: 1285 / 1255,
  15520. bottom: 0.06
  15521. }
  15522. },
  15523. },
  15524. [
  15525. {
  15526. name: "Normal",
  15527. height: math.unit(2.35, "meters")
  15528. },
  15529. {
  15530. name: "Macro",
  15531. height: math.unit(140, "meters"),
  15532. default: true
  15533. },
  15534. {
  15535. name: "Megamacro",
  15536. height: math.unit(100, "miles")
  15537. },
  15538. ]
  15539. ))
  15540. characterMakers.push(() => makeCharacter(
  15541. { name: "KingDead" },
  15542. {
  15543. front: {
  15544. height: math.unit(6 + 5 / 12, "feet"),
  15545. weight: math.unit(190, "lb"),
  15546. name: "Front",
  15547. image: {
  15548. source: "./media/characters/kingdead/front.svg",
  15549. extra: 1228 / 1177
  15550. }
  15551. },
  15552. },
  15553. [
  15554. {
  15555. name: "Micro",
  15556. height: math.unit(7, "inches")
  15557. },
  15558. {
  15559. name: "Normal",
  15560. height: math.unit(6 + 5 / 12, "feet")
  15561. },
  15562. {
  15563. name: "Macro",
  15564. height: math.unit(150, "feet"),
  15565. default: true
  15566. },
  15567. {
  15568. name: "Megamacro",
  15569. height: math.unit(200, "miles")
  15570. },
  15571. ]
  15572. ))
  15573. characterMakers.push(() => makeCharacter(
  15574. { name: "Kyrehx" },
  15575. {
  15576. front: {
  15577. height: math.unit(8, "feet"),
  15578. weight: math.unit(600, "lb"),
  15579. name: "Front",
  15580. image: {
  15581. source: "./media/characters/kyrehx/front.svg",
  15582. extra: 1195 / 1095,
  15583. bottom: 0.034
  15584. }
  15585. },
  15586. },
  15587. [
  15588. {
  15589. name: "Micro",
  15590. height: math.unit(2, "inches")
  15591. },
  15592. {
  15593. name: "Normal",
  15594. height: math.unit(8, "feet"),
  15595. default: true
  15596. },
  15597. {
  15598. name: "Macro",
  15599. height: math.unit(255, "feet")
  15600. },
  15601. ]
  15602. ))
  15603. characterMakers.push(() => makeCharacter(
  15604. { name: "Xang" },
  15605. {
  15606. front: {
  15607. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15608. weight: math.unit(184, "lb"),
  15609. name: "Front",
  15610. image: {
  15611. source: "./media/characters/xang/front.svg",
  15612. extra: 845 / 755
  15613. }
  15614. },
  15615. },
  15616. [
  15617. {
  15618. name: "Normal",
  15619. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15620. default: true
  15621. },
  15622. {
  15623. name: "Macro",
  15624. height: math.unit(0.935 * 146, "feet")
  15625. },
  15626. {
  15627. name: "Megamacro",
  15628. height: math.unit(0.935 * 3, "miles")
  15629. },
  15630. ]
  15631. ))
  15632. characterMakers.push(() => makeCharacter(
  15633. { name: "Doc Weardno" },
  15634. {
  15635. frontDressed: {
  15636. height: math.unit(5 + 7 / 12, "feet"),
  15637. weight: math.unit(140, "lb"),
  15638. name: "Front (Dressed)",
  15639. image: {
  15640. source: "./media/characters/doc-weardno/front-dressed.svg",
  15641. extra: 263 / 234
  15642. }
  15643. },
  15644. backDressed: {
  15645. height: math.unit(5 + 7 / 12, "feet"),
  15646. weight: math.unit(140, "lb"),
  15647. name: "Back (Dressed)",
  15648. image: {
  15649. source: "./media/characters/doc-weardno/back-dressed.svg",
  15650. extra: 266 / 238
  15651. }
  15652. },
  15653. front: {
  15654. height: math.unit(5 + 7 / 12, "feet"),
  15655. weight: math.unit(140, "lb"),
  15656. name: "Front",
  15657. image: {
  15658. source: "./media/characters/doc-weardno/front.svg",
  15659. extra: 254 / 233
  15660. }
  15661. },
  15662. },
  15663. [
  15664. {
  15665. name: "Micro",
  15666. height: math.unit(3, "inches")
  15667. },
  15668. {
  15669. name: "Normal",
  15670. height: math.unit(5 + 7 / 12, "feet"),
  15671. default: true
  15672. },
  15673. {
  15674. name: "Macro",
  15675. height: math.unit(25, "feet")
  15676. },
  15677. {
  15678. name: "Megamacro",
  15679. height: math.unit(2, "miles")
  15680. },
  15681. ]
  15682. ))
  15683. characterMakers.push(() => makeCharacter(
  15684. { name: "Seth Whilst" },
  15685. {
  15686. front: {
  15687. height: math.unit(6 + 2 / 12, "feet"),
  15688. weight: math.unit(153, "lb"),
  15689. name: "Front",
  15690. image: {
  15691. source: "./media/characters/seth-whilst/front.svg",
  15692. bottom: 0.07
  15693. }
  15694. },
  15695. },
  15696. [
  15697. {
  15698. name: "Micro",
  15699. height: math.unit(5, "inches")
  15700. },
  15701. {
  15702. name: "Normal",
  15703. height: math.unit(6 + 2 / 12, "feet"),
  15704. default: true
  15705. },
  15706. ]
  15707. ))
  15708. characterMakers.push(() => makeCharacter(
  15709. { name: "Pocket Jabari" },
  15710. {
  15711. front: {
  15712. height: math.unit(3, "inches"),
  15713. weight: math.unit(8, "grams"),
  15714. name: "Front",
  15715. image: {
  15716. source: "./media/characters/pocket-jabari/front.svg",
  15717. extra: 1024 / 974,
  15718. bottom: 0.039
  15719. }
  15720. },
  15721. },
  15722. [
  15723. {
  15724. name: "Minimicro",
  15725. height: math.unit(8, "mm")
  15726. },
  15727. {
  15728. name: "Micro",
  15729. height: math.unit(3, "inches"),
  15730. default: true
  15731. },
  15732. {
  15733. name: "Normal",
  15734. height: math.unit(3, "feet")
  15735. },
  15736. ]
  15737. ))
  15738. characterMakers.push(() => makeCharacter(
  15739. { name: "Sapphy" },
  15740. {
  15741. front: {
  15742. height: math.unit(15, "feet"),
  15743. weight: math.unit(3280, "lb"),
  15744. name: "Front",
  15745. image: {
  15746. source: "./media/characters/sapphy/front.svg",
  15747. extra: 671 / 577,
  15748. bottom: 0.085
  15749. }
  15750. },
  15751. back: {
  15752. height: math.unit(15, "feet"),
  15753. weight: math.unit(3280, "lb"),
  15754. name: "Back",
  15755. image: {
  15756. source: "./media/characters/sapphy/back.svg",
  15757. extra: 631 / 607,
  15758. bottom: 0.045
  15759. }
  15760. },
  15761. },
  15762. [
  15763. {
  15764. name: "Normal",
  15765. height: math.unit(15, "feet")
  15766. },
  15767. {
  15768. name: "Casual Macro",
  15769. height: math.unit(120, "feet")
  15770. },
  15771. {
  15772. name: "Macro",
  15773. height: math.unit(2150, "feet"),
  15774. default: true
  15775. },
  15776. {
  15777. name: "Megamacro",
  15778. height: math.unit(8, "miles")
  15779. },
  15780. {
  15781. name: "Galaxy Mom",
  15782. height: math.unit(6, "megalightyears")
  15783. },
  15784. ]
  15785. ))
  15786. characterMakers.push(() => makeCharacter(
  15787. { name: "Kiro" },
  15788. {
  15789. front: {
  15790. height: math.unit(6, "feet"),
  15791. weight: math.unit(170, "lb"),
  15792. name: "Front",
  15793. image: {
  15794. source: "./media/characters/kiro/front.svg",
  15795. extra: 1064 / 1012,
  15796. bottom: 0.052
  15797. }
  15798. },
  15799. },
  15800. [
  15801. {
  15802. name: "Micro",
  15803. height: math.unit(6, "inches")
  15804. },
  15805. {
  15806. name: "Normal",
  15807. height: math.unit(6, "feet"),
  15808. default: true
  15809. },
  15810. {
  15811. name: "Macro",
  15812. height: math.unit(72, "feet")
  15813. },
  15814. ]
  15815. ))
  15816. characterMakers.push(() => makeCharacter(
  15817. { name: "Irishfox" },
  15818. {
  15819. front: {
  15820. height: math.unit(5 + 9 / 12, "feet"),
  15821. weight: math.unit(175, "lb"),
  15822. name: "Front",
  15823. image: {
  15824. source: "./media/characters/irishfox/front.svg",
  15825. extra: 1912 / 1680,
  15826. bottom: 0.02
  15827. }
  15828. },
  15829. },
  15830. [
  15831. {
  15832. name: "Nano",
  15833. height: math.unit(1, "mm")
  15834. },
  15835. {
  15836. name: "Micro",
  15837. height: math.unit(2, "inches")
  15838. },
  15839. {
  15840. name: "Normal",
  15841. height: math.unit(5 + 9 / 12, "feet"),
  15842. default: true
  15843. },
  15844. {
  15845. name: "Macro",
  15846. height: math.unit(45, "feet")
  15847. },
  15848. ]
  15849. ))
  15850. characterMakers.push(() => makeCharacter(
  15851. { name: "Aronai Sieyes" },
  15852. {
  15853. front: {
  15854. height: math.unit(6 + 1 / 12, "feet"),
  15855. weight: math.unit(150, "lb"),
  15856. name: "Front",
  15857. image: {
  15858. source: "./media/characters/aronai-sieyes/front.svg",
  15859. extra: 1556 / 1480,
  15860. bottom: 0.015
  15861. }
  15862. },
  15863. side: {
  15864. height: math.unit(6 + 1 / 12, "feet"),
  15865. weight: math.unit(150, "lb"),
  15866. name: "Side",
  15867. image: {
  15868. source: "./media/characters/aronai-sieyes/side.svg",
  15869. extra: 1433 / 1390,
  15870. bottom: 0.0393
  15871. }
  15872. },
  15873. back: {
  15874. height: math.unit(6 + 1 / 12, "feet"),
  15875. weight: math.unit(150, "lb"),
  15876. name: "Back",
  15877. image: {
  15878. source: "./media/characters/aronai-sieyes/back.svg",
  15879. extra: 1544 / 1494,
  15880. bottom: 0.02
  15881. }
  15882. },
  15883. frontClothed: {
  15884. height: math.unit(6 + 1 / 12, "feet"),
  15885. weight: math.unit(150, "lb"),
  15886. name: "Front (Clothed)",
  15887. image: {
  15888. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  15889. extra: 1582 / 1527
  15890. }
  15891. },
  15892. feral: {
  15893. height: math.unit(18, "feet"),
  15894. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  15895. name: "Feral",
  15896. image: {
  15897. source: "./media/characters/aronai-sieyes/feral.svg",
  15898. extra: 1530 / 1240,
  15899. bottom: 0.035
  15900. }
  15901. },
  15902. },
  15903. [
  15904. {
  15905. name: "Micro",
  15906. height: math.unit(2, "inches")
  15907. },
  15908. {
  15909. name: "Normal",
  15910. height: math.unit(6 + 1 / 12, "feet"),
  15911. default: true
  15912. }
  15913. ]
  15914. ))
  15915. characterMakers.push(() => makeCharacter(
  15916. { name: "Xuna" },
  15917. {
  15918. front: {
  15919. height: math.unit(12, "feet"),
  15920. weight: math.unit(410, "kg"),
  15921. name: "Front",
  15922. image: {
  15923. source: "./media/characters/xuna/front.svg",
  15924. extra: 2184 / 1980
  15925. }
  15926. },
  15927. side: {
  15928. height: math.unit(12, "feet"),
  15929. weight: math.unit(410, "kg"),
  15930. name: "Side",
  15931. image: {
  15932. source: "./media/characters/xuna/side.svg",
  15933. extra: 2184 / 1980
  15934. }
  15935. },
  15936. back: {
  15937. height: math.unit(12, "feet"),
  15938. weight: math.unit(410, "kg"),
  15939. name: "Back",
  15940. image: {
  15941. source: "./media/characters/xuna/back.svg",
  15942. extra: 2184 / 1980
  15943. }
  15944. },
  15945. },
  15946. [
  15947. {
  15948. name: "Nano glow",
  15949. height: math.unit(10, "nm")
  15950. },
  15951. {
  15952. name: "Micro floof",
  15953. height: math.unit(0.3, "m")
  15954. },
  15955. {
  15956. name: "Huggable softy boi",
  15957. height: math.unit(3.6576, "m"),
  15958. default: true
  15959. },
  15960. {
  15961. name: "Admirable floof",
  15962. height: math.unit(80, "meters")
  15963. },
  15964. {
  15965. name: "Gentle macro",
  15966. height: math.unit(300, "meters")
  15967. },
  15968. {
  15969. name: "Very careful floof",
  15970. height: math.unit(3200, "meters")
  15971. },
  15972. {
  15973. name: "The mega floof",
  15974. height: math.unit(36000, "meters")
  15975. },
  15976. {
  15977. name: "Giga-fur-Wicker",
  15978. height: math.unit(4800000, "meters")
  15979. },
  15980. {
  15981. name: "Licky world",
  15982. height: math.unit(20000000, "meters")
  15983. },
  15984. {
  15985. name: "Floofy cyan sun",
  15986. height: math.unit(1500000000, "meters")
  15987. },
  15988. {
  15989. name: "Milky Wicker",
  15990. height: math.unit(1000000000000000000000, "meters")
  15991. },
  15992. {
  15993. name: "The observing Wicker",
  15994. height: math.unit(999999999999999999999999999, "meters")
  15995. },
  15996. ]
  15997. ))
  15998. characterMakers.push(() => makeCharacter(
  15999. { name: "Arokha Sieyes" },
  16000. {
  16001. front: {
  16002. height: math.unit(5 + 9 / 12, "feet"),
  16003. weight: math.unit(150, "lb"),
  16004. name: "Front",
  16005. image: {
  16006. source: "./media/characters/arokha-sieyes/front.svg",
  16007. extra: 1425 / 1284,
  16008. bottom: 0.05
  16009. }
  16010. },
  16011. },
  16012. [
  16013. {
  16014. name: "Normal",
  16015. height: math.unit(5 + 9 / 12, "feet")
  16016. },
  16017. {
  16018. name: "Macro",
  16019. height: math.unit(30, "meters"),
  16020. default: true
  16021. },
  16022. ]
  16023. ))
  16024. characterMakers.push(() => makeCharacter(
  16025. { name: "Arokh Sieyes" },
  16026. {
  16027. front: {
  16028. height: math.unit(6, "feet"),
  16029. weight: math.unit(180, "lb"),
  16030. name: "Front",
  16031. image: {
  16032. source: "./media/characters/arokh-sieyes/front.svg",
  16033. extra: 1830 / 1769,
  16034. bottom: 0.01
  16035. }
  16036. },
  16037. },
  16038. [
  16039. {
  16040. name: "Normal",
  16041. height: math.unit(6, "feet")
  16042. },
  16043. {
  16044. name: "Macro",
  16045. height: math.unit(30, "meters"),
  16046. default: true
  16047. },
  16048. ]
  16049. ))
  16050. characterMakers.push(() => makeCharacter(
  16051. { name: "Goldeneye" },
  16052. {
  16053. side: {
  16054. height: math.unit(13 + 1 / 12, "feet"),
  16055. weight: math.unit(8.5, "tonnes"),
  16056. name: "Side",
  16057. image: {
  16058. source: "./media/characters/goldeneye/side.svg",
  16059. extra: 1182 / 778,
  16060. bottom: 0.067
  16061. }
  16062. },
  16063. paw: {
  16064. height: math.unit(3.4, "feet"),
  16065. name: "Paw",
  16066. image: {
  16067. source: "./media/characters/goldeneye/paw.svg"
  16068. }
  16069. },
  16070. },
  16071. [
  16072. {
  16073. name: "Normal",
  16074. height: math.unit(13 + 1 / 12, "feet"),
  16075. default: true
  16076. },
  16077. ]
  16078. ))
  16079. characterMakers.push(() => makeCharacter(
  16080. { name: "Leonardo Lycheborne" },
  16081. {
  16082. front: {
  16083. height: math.unit(6 + 1 / 12, "feet"),
  16084. weight: math.unit(210, "lb"),
  16085. name: "Front",
  16086. image: {
  16087. source: "./media/characters/leonardo-lycheborne/front.svg",
  16088. extra: 390 / 365,
  16089. bottom: 0.032
  16090. }
  16091. },
  16092. side: {
  16093. height: math.unit(6 + 1 / 12, "feet"),
  16094. weight: math.unit(210, "lb"),
  16095. name: "Side",
  16096. image: {
  16097. source: "./media/characters/leonardo-lycheborne/side.svg",
  16098. extra: 390 / 365,
  16099. bottom: 0.005
  16100. }
  16101. },
  16102. back: {
  16103. height: math.unit(6 + 1 / 12, "feet"),
  16104. weight: math.unit(210, "lb"),
  16105. name: "Back",
  16106. image: {
  16107. source: "./media/characters/leonardo-lycheborne/back.svg",
  16108. extra: 392 / 366,
  16109. bottom: 0.01
  16110. }
  16111. },
  16112. hand: {
  16113. height: math.unit(1.08, "feet"),
  16114. name: "Hand",
  16115. image: {
  16116. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16117. }
  16118. },
  16119. foot: {
  16120. height: math.unit(1.32, "feet"),
  16121. name: "Foot",
  16122. image: {
  16123. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16124. }
  16125. },
  16126. were: {
  16127. height: math.unit(20, "feet"),
  16128. weight: math.unit(7800, "lb"),
  16129. name: "Were",
  16130. image: {
  16131. source: "./media/characters/leonardo-lycheborne/were.svg",
  16132. extra: 308 / 294,
  16133. bottom: 0.048
  16134. }
  16135. },
  16136. feral: {
  16137. height: math.unit(7.5, "feet"),
  16138. weight: math.unit(600, "lb"),
  16139. name: "Feral",
  16140. image: {
  16141. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16142. extra: 210 / 186,
  16143. bottom: 0.108
  16144. }
  16145. },
  16146. taur: {
  16147. height: math.unit(11, "feet"),
  16148. weight: math.unit(3300, "lb"),
  16149. name: "Taur",
  16150. image: {
  16151. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16152. extra: 320 / 303,
  16153. bottom: 0.025
  16154. }
  16155. },
  16156. barghest: {
  16157. height: math.unit(11, "feet"),
  16158. weight: math.unit(1300, "lb"),
  16159. name: "Barghest",
  16160. image: {
  16161. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16162. extra: 323 / 302,
  16163. bottom: 0.027
  16164. }
  16165. },
  16166. dick: {
  16167. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16168. name: "Dick",
  16169. image: {
  16170. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16171. }
  16172. },
  16173. dickWere: {
  16174. height: math.unit((20) / 3.8, "feet"),
  16175. name: "Dick (Were)",
  16176. image: {
  16177. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16178. }
  16179. },
  16180. },
  16181. [
  16182. {
  16183. name: "Normal",
  16184. height: math.unit(6 + 1 / 12, "feet"),
  16185. default: true
  16186. },
  16187. ]
  16188. ))
  16189. characterMakers.push(() => makeCharacter(
  16190. { name: "Jet" },
  16191. {
  16192. front: {
  16193. height: math.unit(10, "feet"),
  16194. weight: math.unit(350, "lb"),
  16195. name: "Front",
  16196. image: {
  16197. source: "./media/characters/jet/front.svg",
  16198. extra: 2050 / 1980,
  16199. bottom: 0.013
  16200. }
  16201. },
  16202. back: {
  16203. height: math.unit(10, "feet"),
  16204. weight: math.unit(350, "lb"),
  16205. name: "Back",
  16206. image: {
  16207. source: "./media/characters/jet/back.svg",
  16208. extra: 2050 / 1980,
  16209. bottom: 0.013
  16210. }
  16211. },
  16212. },
  16213. [
  16214. {
  16215. name: "Micro",
  16216. height: math.unit(6, "inches")
  16217. },
  16218. {
  16219. name: "Normal",
  16220. height: math.unit(10, "feet"),
  16221. default: true
  16222. },
  16223. {
  16224. name: "Macro",
  16225. height: math.unit(100, "feet")
  16226. },
  16227. ]
  16228. ))
  16229. characterMakers.push(() => makeCharacter(
  16230. { name: "Tanarath" },
  16231. {
  16232. front: {
  16233. height: math.unit(15, "feet"),
  16234. weight: math.unit(2800, "lb"),
  16235. name: "Front",
  16236. image: {
  16237. source: "./media/characters/tanarath/front.svg",
  16238. extra: 2392 / 2220,
  16239. bottom: 0.03
  16240. }
  16241. },
  16242. back: {
  16243. height: math.unit(15, "feet"),
  16244. weight: math.unit(2800, "lb"),
  16245. name: "Back",
  16246. image: {
  16247. source: "./media/characters/tanarath/back.svg",
  16248. extra: 2392 / 2220,
  16249. bottom: 0.03
  16250. }
  16251. },
  16252. },
  16253. [
  16254. {
  16255. name: "Normal",
  16256. height: math.unit(15, "feet"),
  16257. default: true
  16258. },
  16259. ]
  16260. ))
  16261. characterMakers.push(() => makeCharacter(
  16262. { name: "Patty CattyBatty" },
  16263. {
  16264. front: {
  16265. height: math.unit(7 + 1 / 12, "feet"),
  16266. weight: math.unit(175, "lb"),
  16267. name: "Front",
  16268. image: {
  16269. source: "./media/characters/patty-cattybatty/front.svg",
  16270. extra: 908 / 874,
  16271. bottom: 0.025
  16272. }
  16273. },
  16274. },
  16275. [
  16276. {
  16277. name: "Micro",
  16278. height: math.unit(1, "inch")
  16279. },
  16280. {
  16281. name: "Normal",
  16282. height: math.unit(7 + 1 / 12, "feet")
  16283. },
  16284. {
  16285. name: "Mini Macro",
  16286. height: math.unit(155, "feet")
  16287. },
  16288. {
  16289. name: "Macro",
  16290. height: math.unit(1077, "feet")
  16291. },
  16292. {
  16293. name: "Mega Macro",
  16294. height: math.unit(47650, "feet"),
  16295. default: true
  16296. },
  16297. {
  16298. name: "Giga Macro",
  16299. height: math.unit(440, "miles")
  16300. },
  16301. {
  16302. name: "Tera Macro",
  16303. height: math.unit(8700, "miles")
  16304. },
  16305. {
  16306. name: "Planetary Macro",
  16307. height: math.unit(32700, "miles")
  16308. },
  16309. {
  16310. name: "Solar Macro",
  16311. height: math.unit(550000, "miles")
  16312. },
  16313. {
  16314. name: "Celestial Macro",
  16315. height: math.unit(2.5, "AU")
  16316. },
  16317. ]
  16318. ))
  16319. characterMakers.push(() => makeCharacter(
  16320. { name: "Cappu" },
  16321. {
  16322. front: {
  16323. height: math.unit(4 + 5 / 12, "feet"),
  16324. weight: math.unit(90, "lb"),
  16325. name: "Front",
  16326. image: {
  16327. source: "./media/characters/cappu/front.svg",
  16328. extra: 1247 / 1152,
  16329. bottom: 0.012
  16330. }
  16331. },
  16332. },
  16333. [
  16334. {
  16335. name: "Normal",
  16336. height: math.unit(4 + 5 / 12, "feet"),
  16337. default: true
  16338. },
  16339. ]
  16340. ))
  16341. characterMakers.push(() => makeCharacter(
  16342. { name: "Sebi" },
  16343. {
  16344. frontDressed: {
  16345. height: math.unit(70, "cm"),
  16346. weight: math.unit(6, "kg"),
  16347. name: "Front (Dressed)",
  16348. image: {
  16349. source: "./media/characters/sebi/front-dressed.svg",
  16350. extra: 713.5 / 686.5,
  16351. bottom: 0.003
  16352. }
  16353. },
  16354. front: {
  16355. height: math.unit(70, "cm"),
  16356. weight: math.unit(5, "kg"),
  16357. name: "Front",
  16358. image: {
  16359. source: "./media/characters/sebi/front.svg",
  16360. extra: 713.5 / 686.5,
  16361. bottom: 0.003
  16362. }
  16363. }
  16364. },
  16365. [
  16366. {
  16367. name: "Normal",
  16368. height: math.unit(70, "cm"),
  16369. default: true
  16370. },
  16371. {
  16372. name: "Macro",
  16373. height: math.unit(8, "meters")
  16374. },
  16375. ]
  16376. ))
  16377. characterMakers.push(() => makeCharacter(
  16378. { name: "Typhek" },
  16379. {
  16380. front: {
  16381. height: math.unit(6, "feet"),
  16382. weight: math.unit(150, "lb"),
  16383. name: "Front",
  16384. image: {
  16385. source: "./media/characters/typhek/front.svg",
  16386. extra: 1948 / 1929,
  16387. bottom: 0.025
  16388. }
  16389. },
  16390. side: {
  16391. height: math.unit(6, "feet"),
  16392. weight: math.unit(150, "lb"),
  16393. name: "Side",
  16394. image: {
  16395. source: "./media/characters/typhek/side.svg",
  16396. extra: 2034 / 2010,
  16397. bottom: 0.003
  16398. }
  16399. },
  16400. back: {
  16401. height: math.unit(6, "feet"),
  16402. weight: math.unit(150, "lb"),
  16403. name: "Back",
  16404. image: {
  16405. source: "./media/characters/typhek/back.svg",
  16406. extra: 2005 / 1978,
  16407. bottom: 0.004
  16408. }
  16409. },
  16410. palm: {
  16411. height: math.unit(1.2, "feet"),
  16412. name: "Palm",
  16413. image: {
  16414. source: "./media/characters/typhek/palm.svg"
  16415. }
  16416. },
  16417. fist: {
  16418. height: math.unit(1.1, "feet"),
  16419. name: "Fist",
  16420. image: {
  16421. source: "./media/characters/typhek/fist.svg"
  16422. }
  16423. },
  16424. foot: {
  16425. height: math.unit(1.57, "feet"),
  16426. name: "Foot",
  16427. image: {
  16428. source: "./media/characters/typhek/foot.svg"
  16429. }
  16430. },
  16431. sole: {
  16432. height: math.unit(2.05, "feet"),
  16433. name: "Sole",
  16434. image: {
  16435. source: "./media/characters/typhek/sole.svg"
  16436. }
  16437. },
  16438. },
  16439. [
  16440. {
  16441. name: "Macro",
  16442. height: math.unit(40, "stories"),
  16443. default: true
  16444. },
  16445. {
  16446. name: "Megamacro",
  16447. height: math.unit(1, "mile")
  16448. },
  16449. {
  16450. name: "Gigamacro",
  16451. height: math.unit(4000, "solarradii")
  16452. },
  16453. {
  16454. name: "Universal",
  16455. height: math.unit(1.1, "universes")
  16456. }
  16457. ]
  16458. ))
  16459. characterMakers.push(() => makeCharacter(
  16460. { name: "Kassy" },
  16461. {
  16462. side: {
  16463. height: math.unit(5 + 7 / 12, "feet"),
  16464. weight: math.unit(150, "lb"),
  16465. name: "Side",
  16466. image: {
  16467. source: "./media/characters/kassy/side.svg",
  16468. extra: 1280 / 1225,
  16469. bottom: 0.002
  16470. }
  16471. },
  16472. front: {
  16473. height: math.unit(5 + 7 / 12, "feet"),
  16474. weight: math.unit(150, "lb"),
  16475. name: "Front",
  16476. image: {
  16477. source: "./media/characters/kassy/front.svg",
  16478. extra: 1280 / 1225,
  16479. bottom: 0.025
  16480. }
  16481. },
  16482. back: {
  16483. height: math.unit(5 + 7 / 12, "feet"),
  16484. weight: math.unit(150, "lb"),
  16485. name: "Back",
  16486. image: {
  16487. source: "./media/characters/kassy/back.svg",
  16488. extra: 1280 / 1225,
  16489. bottom: 0.002
  16490. }
  16491. },
  16492. foot: {
  16493. height: math.unit(1.266, "feet"),
  16494. name: "Foot",
  16495. image: {
  16496. source: "./media/characters/kassy/foot.svg"
  16497. }
  16498. },
  16499. },
  16500. [
  16501. {
  16502. name: "Normal",
  16503. height: math.unit(5 + 7 / 12, "feet")
  16504. },
  16505. {
  16506. name: "Macro",
  16507. height: math.unit(137, "feet"),
  16508. default: true
  16509. },
  16510. {
  16511. name: "Megamacro",
  16512. height: math.unit(1, "mile")
  16513. },
  16514. ]
  16515. ))
  16516. characterMakers.push(() => makeCharacter(
  16517. { name: "Neil" },
  16518. {
  16519. front: {
  16520. height: math.unit(6 + 1 / 12, "feet"),
  16521. weight: math.unit(200, "lb"),
  16522. name: "Front",
  16523. image: {
  16524. source: "./media/characters/neil/front.svg",
  16525. extra: 1326 / 1250,
  16526. bottom: 0.023
  16527. }
  16528. },
  16529. },
  16530. [
  16531. {
  16532. name: "Normal",
  16533. height: math.unit(6 + 1 / 12, "feet"),
  16534. default: true
  16535. },
  16536. {
  16537. name: "Macro",
  16538. height: math.unit(200, "feet")
  16539. },
  16540. ]
  16541. ))
  16542. characterMakers.push(() => makeCharacter(
  16543. { name: "Atticus" },
  16544. {
  16545. front: {
  16546. height: math.unit(5 + 9 / 12, "feet"),
  16547. weight: math.unit(190, "lb"),
  16548. name: "Front",
  16549. image: {
  16550. source: "./media/characters/atticus/front.svg",
  16551. extra: 2934 / 2785,
  16552. bottom: 0.025
  16553. }
  16554. },
  16555. },
  16556. [
  16557. {
  16558. name: "Normal",
  16559. height: math.unit(5 + 9 / 12, "feet"),
  16560. default: true
  16561. },
  16562. {
  16563. name: "Macro",
  16564. height: math.unit(180, "feet")
  16565. },
  16566. ]
  16567. ))
  16568. characterMakers.push(() => makeCharacter(
  16569. { name: "Milo" },
  16570. {
  16571. side: {
  16572. height: math.unit(9, "feet"),
  16573. weight: math.unit(650, "lb"),
  16574. name: "Side",
  16575. image: {
  16576. source: "./media/characters/milo/side.svg",
  16577. extra: 2644 / 2310,
  16578. bottom: 0.032
  16579. }
  16580. },
  16581. },
  16582. [
  16583. {
  16584. name: "Normal",
  16585. height: math.unit(9, "feet"),
  16586. default: true
  16587. },
  16588. {
  16589. name: "Macro",
  16590. height: math.unit(300, "feet")
  16591. },
  16592. ]
  16593. ))
  16594. characterMakers.push(() => makeCharacter(
  16595. { name: "Ijzer" },
  16596. {
  16597. side: {
  16598. height: math.unit(8, "meters"),
  16599. weight: math.unit(90000, "kg"),
  16600. name: "Side",
  16601. image: {
  16602. source: "./media/characters/ijzer/side.svg",
  16603. extra: 2756 / 1600,
  16604. bottom: 0.01
  16605. }
  16606. },
  16607. },
  16608. [
  16609. {
  16610. name: "Small",
  16611. height: math.unit(3, "meters")
  16612. },
  16613. {
  16614. name: "Normal",
  16615. height: math.unit(8, "meters"),
  16616. default: true
  16617. },
  16618. {
  16619. name: "Normal+",
  16620. height: math.unit(10, "meters")
  16621. },
  16622. {
  16623. name: "Bigger",
  16624. height: math.unit(24, "meters")
  16625. },
  16626. {
  16627. name: "Huge",
  16628. height: math.unit(80, "meters")
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Luca Cervicum" },
  16634. {
  16635. front: {
  16636. height: math.unit(6 + 2 / 12, "feet"),
  16637. weight: math.unit(153, "lb"),
  16638. name: "Front",
  16639. image: {
  16640. source: "./media/characters/luca-cervicum/front.svg",
  16641. extra: 370 / 327,
  16642. bottom: 0.015
  16643. }
  16644. },
  16645. back: {
  16646. height: math.unit(6 + 2 / 12, "feet"),
  16647. weight: math.unit(153, "lb"),
  16648. name: "Back",
  16649. image: {
  16650. source: "./media/characters/luca-cervicum/back.svg",
  16651. extra: 367 / 333,
  16652. bottom: 0.005
  16653. }
  16654. },
  16655. frontGear: {
  16656. height: math.unit(6 + 2 / 12, "feet"),
  16657. weight: math.unit(173, "lb"),
  16658. name: "Front (Gear)",
  16659. image: {
  16660. source: "./media/characters/luca-cervicum/front-gear.svg",
  16661. extra: 377 / 333,
  16662. bottom: 0.006
  16663. }
  16664. },
  16665. },
  16666. [
  16667. {
  16668. name: "Normal",
  16669. height: math.unit(6 + 2 / 12, "feet"),
  16670. default: true
  16671. },
  16672. ]
  16673. ))
  16674. characterMakers.push(() => makeCharacter(
  16675. { name: "Oliver" },
  16676. {
  16677. front: {
  16678. height: math.unit(6 + 1 / 12, "feet"),
  16679. weight: math.unit(304, "lb"),
  16680. name: "Front",
  16681. image: {
  16682. source: "./media/characters/oliver/front.svg",
  16683. extra: 157 / 143,
  16684. bottom: 0.08
  16685. }
  16686. },
  16687. },
  16688. [
  16689. {
  16690. name: "Normal",
  16691. height: math.unit(6 + 1 / 12, "feet"),
  16692. default: true
  16693. },
  16694. ]
  16695. ))
  16696. characterMakers.push(() => makeCharacter(
  16697. { name: "Shane" },
  16698. {
  16699. front: {
  16700. height: math.unit(5 + 7 / 12, "feet"),
  16701. weight: math.unit(140, "lb"),
  16702. name: "Front",
  16703. image: {
  16704. source: "./media/characters/shane/front.svg",
  16705. extra: 304 / 289,
  16706. bottom: 0.005
  16707. }
  16708. },
  16709. },
  16710. [
  16711. {
  16712. name: "Normal",
  16713. height: math.unit(5 + 7 / 12, "feet"),
  16714. default: true
  16715. },
  16716. ]
  16717. ))
  16718. characterMakers.push(() => makeCharacter(
  16719. { name: "Shin" },
  16720. {
  16721. front: {
  16722. height: math.unit(5 + 9 / 12, "feet"),
  16723. weight: math.unit(178, "lb"),
  16724. name: "Front",
  16725. image: {
  16726. source: "./media/characters/shin/front.svg",
  16727. extra: 159 / 151,
  16728. bottom: 0.015
  16729. }
  16730. },
  16731. },
  16732. [
  16733. {
  16734. name: "Normal",
  16735. height: math.unit(5 + 9 / 12, "feet"),
  16736. default: true
  16737. },
  16738. ]
  16739. ))
  16740. characterMakers.push(() => makeCharacter(
  16741. { name: "Xerxes" },
  16742. {
  16743. front: {
  16744. height: math.unit(5 + 10 / 12, "feet"),
  16745. weight: math.unit(168, "lb"),
  16746. name: "Front",
  16747. image: {
  16748. source: "./media/characters/xerxes/front.svg",
  16749. extra: 282 / 260,
  16750. bottom: 0.045
  16751. }
  16752. },
  16753. },
  16754. [
  16755. {
  16756. name: "Normal",
  16757. height: math.unit(5 + 10 / 12, "feet"),
  16758. default: true
  16759. },
  16760. ]
  16761. ))
  16762. characterMakers.push(() => makeCharacter(
  16763. { name: "Chaska" },
  16764. {
  16765. front: {
  16766. height: math.unit(6 + 7 / 12, "feet"),
  16767. weight: math.unit(208, "lb"),
  16768. name: "Front",
  16769. image: {
  16770. source: "./media/characters/chaska/front.svg",
  16771. extra: 332 / 319,
  16772. bottom: 0.015
  16773. }
  16774. },
  16775. },
  16776. [
  16777. {
  16778. name: "Normal",
  16779. height: math.unit(6 + 7 / 12, "feet"),
  16780. default: true
  16781. },
  16782. ]
  16783. ))
  16784. characterMakers.push(() => makeCharacter(
  16785. { name: "Enuk" },
  16786. {
  16787. front: {
  16788. height: math.unit(5 + 8 / 12, "feet"),
  16789. weight: math.unit(208, "lb"),
  16790. name: "Front",
  16791. image: {
  16792. source: "./media/characters/enuk/front.svg",
  16793. extra: 437 / 406,
  16794. bottom: 0.02
  16795. }
  16796. },
  16797. },
  16798. [
  16799. {
  16800. name: "Normal",
  16801. height: math.unit(5 + 8 / 12, "feet"),
  16802. default: true
  16803. },
  16804. ]
  16805. ))
  16806. characterMakers.push(() => makeCharacter(
  16807. { name: "Bruun" },
  16808. {
  16809. front: {
  16810. height: math.unit(5 + 10 / 12, "feet"),
  16811. weight: math.unit(252, "lb"),
  16812. name: "Front",
  16813. image: {
  16814. source: "./media/characters/bruun/front.svg",
  16815. extra: 197 / 187,
  16816. bottom: 0.012
  16817. }
  16818. },
  16819. },
  16820. [
  16821. {
  16822. name: "Normal",
  16823. height: math.unit(5 + 10 / 12, "feet"),
  16824. default: true
  16825. },
  16826. ]
  16827. ))
  16828. characterMakers.push(() => makeCharacter(
  16829. { name: "Alexeev" },
  16830. {
  16831. front: {
  16832. height: math.unit(6 + 10 / 12, "feet"),
  16833. weight: math.unit(255, "lb"),
  16834. name: "Front",
  16835. image: {
  16836. source: "./media/characters/alexeev/front.svg",
  16837. extra: 213 / 200,
  16838. bottom: 0.05
  16839. }
  16840. },
  16841. },
  16842. [
  16843. {
  16844. name: "Normal",
  16845. height: math.unit(6 + 10 / 12, "feet"),
  16846. default: true
  16847. },
  16848. ]
  16849. ))
  16850. characterMakers.push(() => makeCharacter(
  16851. { name: "Evelyn" },
  16852. {
  16853. front: {
  16854. height: math.unit(2 + 8 / 12, "feet"),
  16855. weight: math.unit(22, "lb"),
  16856. name: "Front",
  16857. image: {
  16858. source: "./media/characters/evelyn/front.svg",
  16859. extra: 208 / 180
  16860. }
  16861. },
  16862. },
  16863. [
  16864. {
  16865. name: "Normal",
  16866. height: math.unit(2 + 8 / 12, "feet"),
  16867. default: true
  16868. },
  16869. ]
  16870. ))
  16871. characterMakers.push(() => makeCharacter(
  16872. { name: "Inca" },
  16873. {
  16874. front: {
  16875. height: math.unit(5 + 9 / 12, "feet"),
  16876. weight: math.unit(139, "lb"),
  16877. name: "Front",
  16878. image: {
  16879. source: "./media/characters/inca/front.svg",
  16880. extra: 294 / 291,
  16881. bottom: 0.03
  16882. }
  16883. },
  16884. },
  16885. [
  16886. {
  16887. name: "Normal",
  16888. height: math.unit(5 + 9 / 12, "feet"),
  16889. default: true
  16890. },
  16891. ]
  16892. ))
  16893. characterMakers.push(() => makeCharacter(
  16894. { name: "Magdalene" },
  16895. {
  16896. front: {
  16897. height: math.unit(5 + 1 / 12, "feet"),
  16898. weight: math.unit(84, "lb"),
  16899. name: "Front",
  16900. image: {
  16901. source: "./media/characters/magdalene/front.svg",
  16902. extra: 293 / 273
  16903. }
  16904. },
  16905. },
  16906. [
  16907. {
  16908. name: "Normal",
  16909. height: math.unit(5 + 1 / 12, "feet"),
  16910. default: true
  16911. },
  16912. ]
  16913. ))
  16914. characterMakers.push(() => makeCharacter(
  16915. { name: "Mera" },
  16916. {
  16917. front: {
  16918. height: math.unit(6 + 3 / 12, "feet"),
  16919. weight: math.unit(185, "lb"),
  16920. name: "Front",
  16921. image: {
  16922. source: "./media/characters/mera/front.svg",
  16923. extra: 291 / 277,
  16924. bottom: 0.03
  16925. }
  16926. },
  16927. },
  16928. [
  16929. {
  16930. name: "Normal",
  16931. height: math.unit(6 + 3 / 12, "feet"),
  16932. default: true
  16933. },
  16934. ]
  16935. ))
  16936. characterMakers.push(() => makeCharacter(
  16937. { name: "Ceres" },
  16938. {
  16939. front: {
  16940. height: math.unit(6 + 7 / 12, "feet"),
  16941. weight: math.unit(160, "lb"),
  16942. name: "Front",
  16943. image: {
  16944. source: "./media/characters/ceres/front.svg",
  16945. extra: 1023 / 950,
  16946. bottom: 0.027
  16947. }
  16948. },
  16949. back: {
  16950. height: math.unit(6 + 7 / 12, "feet"),
  16951. weight: math.unit(160, "lb"),
  16952. name: "Back",
  16953. image: {
  16954. source: "./media/characters/ceres/back.svg",
  16955. extra: 1023 / 950
  16956. }
  16957. },
  16958. },
  16959. [
  16960. {
  16961. name: "Normal",
  16962. height: math.unit(6 + 7 / 12, "feet"),
  16963. default: true
  16964. },
  16965. ]
  16966. ))
  16967. characterMakers.push(() => makeCharacter(
  16968. { name: "Kris" },
  16969. {
  16970. front: {
  16971. height: math.unit(5 + 10 / 12, "feet"),
  16972. weight: math.unit(150, "lb"),
  16973. name: "Front",
  16974. image: {
  16975. source: "./media/characters/kris/front.svg",
  16976. extra: 885 / 803,
  16977. bottom: 0.03
  16978. }
  16979. },
  16980. },
  16981. [
  16982. {
  16983. name: "Normal",
  16984. height: math.unit(5 + 10 / 12, "feet"),
  16985. default: true
  16986. },
  16987. ]
  16988. ))
  16989. characterMakers.push(() => makeCharacter(
  16990. { name: "Taluthus" },
  16991. {
  16992. front: {
  16993. height: math.unit(7, "feet"),
  16994. weight: math.unit(120, "kg"),
  16995. name: "Front",
  16996. image: {
  16997. source: "./media/characters/taluthus/front.svg",
  16998. extra: 903 / 833,
  16999. bottom: 0.015
  17000. }
  17001. },
  17002. },
  17003. [
  17004. {
  17005. name: "Normal",
  17006. height: math.unit(7, "feet"),
  17007. default: true
  17008. },
  17009. {
  17010. name: "Macro",
  17011. height: math.unit(300, "feet")
  17012. },
  17013. ]
  17014. ))
  17015. characterMakers.push(() => makeCharacter(
  17016. { name: "Dawn" },
  17017. {
  17018. front: {
  17019. height: math.unit(5 + 9 / 12, "feet"),
  17020. weight: math.unit(145, "lb"),
  17021. name: "Front",
  17022. image: {
  17023. source: "./media/characters/dawn/front.svg",
  17024. extra: 2094 / 2016,
  17025. bottom: 0.025
  17026. }
  17027. },
  17028. back: {
  17029. height: math.unit(5 + 9 / 12, "feet"),
  17030. weight: math.unit(160, "lb"),
  17031. name: "Back",
  17032. image: {
  17033. source: "./media/characters/dawn/back.svg",
  17034. extra: 2112 / 2080,
  17035. bottom: 0.005
  17036. }
  17037. },
  17038. },
  17039. [
  17040. {
  17041. name: "Normal",
  17042. height: math.unit(6 + 7 / 12, "feet"),
  17043. default: true
  17044. },
  17045. ]
  17046. ))
  17047. characterMakers.push(() => makeCharacter(
  17048. { name: "Arador" },
  17049. {
  17050. anthro: {
  17051. height: math.unit(8 + 3 / 12, "feet"),
  17052. weight: math.unit(450, "lb"),
  17053. name: "Anthro",
  17054. image: {
  17055. source: "./media/characters/arador/anthro.svg",
  17056. extra: 1835 / 1718,
  17057. bottom: 0.025
  17058. }
  17059. },
  17060. feral: {
  17061. height: math.unit(4, "feet"),
  17062. weight: math.unit(200, "lb"),
  17063. name: "Feral",
  17064. image: {
  17065. source: "./media/characters/arador/feral.svg",
  17066. extra: 1683 / 1514,
  17067. bottom: 0.07
  17068. }
  17069. },
  17070. },
  17071. [
  17072. {
  17073. name: "Normal",
  17074. height: math.unit(8 + 3 / 12, "feet")
  17075. },
  17076. {
  17077. name: "Macro",
  17078. height: math.unit(82.5, "feet"),
  17079. default: true
  17080. },
  17081. ]
  17082. ))
  17083. characterMakers.push(() => makeCharacter(
  17084. { name: "Dharsi" },
  17085. {
  17086. front: {
  17087. height: math.unit(5 + 10 / 12, "feet"),
  17088. weight: math.unit(125, "lb"),
  17089. name: "Front",
  17090. image: {
  17091. source: "./media/characters/dharsi/front.svg",
  17092. extra: 716 / 630,
  17093. bottom: 0.035
  17094. }
  17095. },
  17096. },
  17097. [
  17098. {
  17099. name: "Nano",
  17100. height: math.unit(100, "nm")
  17101. },
  17102. {
  17103. name: "Micro",
  17104. height: math.unit(2, "inches")
  17105. },
  17106. {
  17107. name: "Normal",
  17108. height: math.unit(5 + 10 / 12, "feet"),
  17109. default: true
  17110. },
  17111. {
  17112. name: "Macro",
  17113. height: math.unit(1000, "feet")
  17114. },
  17115. {
  17116. name: "Megamacro",
  17117. height: math.unit(10, "miles")
  17118. },
  17119. {
  17120. name: "Gigamacro",
  17121. height: math.unit(3000, "miles")
  17122. },
  17123. {
  17124. name: "Teramacro",
  17125. height: math.unit(500000, "miles")
  17126. },
  17127. {
  17128. name: "Teramacro+",
  17129. height: math.unit(30, "galaxies")
  17130. },
  17131. ]
  17132. ))
  17133. characterMakers.push(() => makeCharacter(
  17134. { name: "Deathy" },
  17135. {
  17136. front: {
  17137. height: math.unit(6, "feet"),
  17138. weight: math.unit(150, "lb"),
  17139. name: "Front",
  17140. image: {
  17141. source: "./media/characters/deathy/front.svg",
  17142. extra: 1552 / 1463,
  17143. bottom: 0.025
  17144. }
  17145. },
  17146. side: {
  17147. height: math.unit(6, "feet"),
  17148. weight: math.unit(150, "lb"),
  17149. name: "Side",
  17150. image: {
  17151. source: "./media/characters/deathy/side.svg",
  17152. extra: 1604 / 1455,
  17153. bottom: 0.025
  17154. }
  17155. },
  17156. back: {
  17157. height: math.unit(6, "feet"),
  17158. weight: math.unit(150, "lb"),
  17159. name: "Back",
  17160. image: {
  17161. source: "./media/characters/deathy/back.svg",
  17162. extra: 1580 / 1463,
  17163. bottom: 0.005
  17164. }
  17165. },
  17166. },
  17167. [
  17168. {
  17169. name: "Micro",
  17170. height: math.unit(5, "millimeters")
  17171. },
  17172. {
  17173. name: "Normal",
  17174. height: math.unit(6 + 5 / 12, "feet"),
  17175. default: true
  17176. },
  17177. ]
  17178. ))
  17179. characterMakers.push(() => makeCharacter(
  17180. { name: "Juniper" },
  17181. {
  17182. front: {
  17183. height: math.unit(16, "feet"),
  17184. weight: math.unit(4000, "lb"),
  17185. name: "Front",
  17186. image: {
  17187. source: "./media/characters/juniper/front.svg",
  17188. bottom: 0.04
  17189. }
  17190. },
  17191. },
  17192. [
  17193. {
  17194. name: "Normal",
  17195. height: math.unit(16, "feet"),
  17196. default: true
  17197. },
  17198. ]
  17199. ))
  17200. characterMakers.push(() => makeCharacter(
  17201. { name: "Hipster" },
  17202. {
  17203. front: {
  17204. height: math.unit(6, "feet"),
  17205. weight: math.unit(150, "lb"),
  17206. name: "Front",
  17207. image: {
  17208. source: "./media/characters/hipster/front.svg",
  17209. extra: 1312 / 1209,
  17210. bottom: 0.025
  17211. }
  17212. },
  17213. back: {
  17214. height: math.unit(6, "feet"),
  17215. weight: math.unit(150, "lb"),
  17216. name: "Back",
  17217. image: {
  17218. source: "./media/characters/hipster/back.svg",
  17219. extra: 1281 / 1196,
  17220. bottom: 0.01
  17221. }
  17222. },
  17223. },
  17224. [
  17225. {
  17226. name: "Micro",
  17227. height: math.unit(1, "mm")
  17228. },
  17229. {
  17230. name: "Normal",
  17231. height: math.unit(4, "inches"),
  17232. default: true
  17233. },
  17234. {
  17235. name: "Macro",
  17236. height: math.unit(500, "feet")
  17237. },
  17238. {
  17239. name: "Megamacro",
  17240. height: math.unit(1000, "miles")
  17241. },
  17242. ]
  17243. ))
  17244. characterMakers.push(() => makeCharacter(
  17245. { name: "Tendirmuldr" },
  17246. {
  17247. front: {
  17248. height: math.unit(6, "feet"),
  17249. weight: math.unit(150, "lb"),
  17250. name: "Front",
  17251. image: {
  17252. source: "./media/characters/tendirmuldr/front.svg",
  17253. extra: 1878 / 1772,
  17254. bottom: 0.015
  17255. }
  17256. },
  17257. },
  17258. [
  17259. {
  17260. name: "Megamacro",
  17261. height: math.unit(1500, "miles"),
  17262. default: true
  17263. },
  17264. ]
  17265. ))
  17266. characterMakers.push(() => makeCharacter(
  17267. { name: "Mort" },
  17268. {
  17269. front: {
  17270. height: math.unit(14, "feet"),
  17271. weight: math.unit(12000, "lb"),
  17272. name: "Front",
  17273. image: {
  17274. source: "./media/characters/mort/front.svg",
  17275. extra: 365 / 318,
  17276. bottom: 0.01
  17277. }
  17278. },
  17279. side: {
  17280. height: math.unit(14, "feet"),
  17281. weight: math.unit(12000, "lb"),
  17282. name: "Side",
  17283. image: {
  17284. source: "./media/characters/mort/side.svg",
  17285. extra: 365 / 318,
  17286. bottom: 0.052
  17287. },
  17288. default: true
  17289. },
  17290. back: {
  17291. height: math.unit(14, "feet"),
  17292. weight: math.unit(12000, "lb"),
  17293. name: "Back",
  17294. image: {
  17295. source: "./media/characters/mort/back.svg",
  17296. extra: 371 / 332,
  17297. bottom: 0.18
  17298. }
  17299. },
  17300. },
  17301. [
  17302. {
  17303. name: "Normal",
  17304. height: math.unit(14, "feet"),
  17305. default: true
  17306. },
  17307. ]
  17308. ))
  17309. characterMakers.push(() => makeCharacter(
  17310. { name: "Lycoa" },
  17311. {
  17312. front: {
  17313. height: math.unit(8, "feet"),
  17314. weight: math.unit(1, "ton"),
  17315. name: "Front",
  17316. image: {
  17317. source: "./media/characters/lycoa/front.svg",
  17318. extra: 1875 / 1789,
  17319. bottom: 0.022
  17320. }
  17321. },
  17322. back: {
  17323. height: math.unit(8, "feet"),
  17324. weight: math.unit(1, "ton"),
  17325. name: "Back",
  17326. image: {
  17327. source: "./media/characters/lycoa/back.svg",
  17328. extra: 1835 / 1781,
  17329. bottom: 0.03
  17330. }
  17331. },
  17332. },
  17333. [
  17334. {
  17335. name: "Normal",
  17336. height: math.unit(8, "feet"),
  17337. default: true
  17338. },
  17339. {
  17340. name: "Macro",
  17341. height: math.unit(30, "feet")
  17342. },
  17343. ]
  17344. ))
  17345. characterMakers.push(() => makeCharacter(
  17346. { name: "Naldara" },
  17347. {
  17348. front: {
  17349. height: math.unit(4 + 2 / 12, "feet"),
  17350. weight: math.unit(70, "lb"),
  17351. name: "Front",
  17352. image: {
  17353. source: "./media/characters/naldara/front.svg",
  17354. extra: 841 / 720,
  17355. bottom: 0.04
  17356. }
  17357. },
  17358. },
  17359. [
  17360. {
  17361. name: "Normal",
  17362. height: math.unit(4 + 2 / 12, "feet"),
  17363. default: true
  17364. },
  17365. ]
  17366. ))
  17367. characterMakers.push(() => makeCharacter(
  17368. { name: "Briar" },
  17369. {
  17370. front: {
  17371. height: math.unit(13 + 7 / 12, "feet"),
  17372. weight: math.unit(1500, "lb"),
  17373. name: "Front",
  17374. image: {
  17375. source: "./media/characters/briar/front.svg",
  17376. extra: 626 / 596,
  17377. bottom: 0.08
  17378. }
  17379. },
  17380. },
  17381. [
  17382. {
  17383. name: "Normal",
  17384. height: math.unit(13 + 7 / 12, "feet"),
  17385. default: true
  17386. },
  17387. ]
  17388. ))
  17389. characterMakers.push(() => makeCharacter(
  17390. { name: "Vanguard" },
  17391. {
  17392. side: {
  17393. height: math.unit(10, "feet"),
  17394. weight: math.unit(500, "lb"),
  17395. name: "Side",
  17396. image: {
  17397. source: "./media/characters/vanguard/side.svg",
  17398. extra: 502 / 425,
  17399. bottom: 0.087
  17400. }
  17401. },
  17402. },
  17403. [
  17404. {
  17405. name: "Normal",
  17406. height: math.unit(10, "feet"),
  17407. default: true
  17408. },
  17409. ]
  17410. ))
  17411. characterMakers.push(() => makeCharacter(
  17412. { name: "Artemis" },
  17413. {
  17414. front: {
  17415. height: math.unit(7.5, "feet"),
  17416. weight: math.unit(2, "lb"),
  17417. name: "Front",
  17418. image: {
  17419. source: "./media/characters/artemis/front.svg",
  17420. extra: 1192 / 1075,
  17421. bottom: 0.07
  17422. }
  17423. },
  17424. },
  17425. [
  17426. {
  17427. name: "Normal",
  17428. height: math.unit(7.5, "feet"),
  17429. default: true
  17430. },
  17431. {
  17432. name: "Enlarged",
  17433. height: math.unit(12, "feet")
  17434. },
  17435. ]
  17436. ))
  17437. characterMakers.push(() => makeCharacter(
  17438. { name: "Kira" },
  17439. {
  17440. front: {
  17441. height: math.unit(5 + 3 / 12, "feet"),
  17442. weight: math.unit(160, "lb"),
  17443. name: "Front",
  17444. image: {
  17445. source: "./media/characters/kira/front.svg",
  17446. extra: 906 / 786,
  17447. bottom: 0.01
  17448. }
  17449. },
  17450. back: {
  17451. height: math.unit(5 + 3 / 12, "feet"),
  17452. weight: math.unit(160, "lb"),
  17453. name: "Back",
  17454. image: {
  17455. source: "./media/characters/kira/back.svg",
  17456. extra: 882 / 757,
  17457. bottom: 0.005
  17458. }
  17459. },
  17460. frontDressed: {
  17461. height: math.unit(5 + 3 / 12, "feet"),
  17462. weight: math.unit(160, "lb"),
  17463. name: "Front (Dressed)",
  17464. image: {
  17465. source: "./media/characters/kira/front-dressed.svg",
  17466. extra: 906 / 786,
  17467. bottom: 0.01
  17468. }
  17469. },
  17470. beans: {
  17471. height: math.unit(0.92, "feet"),
  17472. name: "Beans",
  17473. image: {
  17474. source: "./media/characters/kira/beans.svg"
  17475. }
  17476. },
  17477. },
  17478. [
  17479. {
  17480. name: "Normal",
  17481. height: math.unit(5 + 3 / 12, "feet"),
  17482. default: true
  17483. },
  17484. ]
  17485. ))
  17486. characterMakers.push(() => makeCharacter(
  17487. { name: "Scramble" },
  17488. {
  17489. front: {
  17490. height: math.unit(5 + 4 / 12, "feet"),
  17491. weight: math.unit(145, "lb"),
  17492. name: "Front",
  17493. image: {
  17494. source: "./media/characters/scramble/front.svg",
  17495. extra: 763 / 727,
  17496. bottom: 0.05
  17497. }
  17498. },
  17499. back: {
  17500. height: math.unit(5 + 4 / 12, "feet"),
  17501. weight: math.unit(145, "lb"),
  17502. name: "Back",
  17503. image: {
  17504. source: "./media/characters/scramble/back.svg",
  17505. extra: 826 / 737,
  17506. bottom: 0.002
  17507. }
  17508. },
  17509. },
  17510. [
  17511. {
  17512. name: "Normal",
  17513. height: math.unit(5 + 4 / 12, "feet"),
  17514. default: true
  17515. },
  17516. ]
  17517. ))
  17518. characterMakers.push(() => makeCharacter(
  17519. { name: "Biscuit" },
  17520. {
  17521. side: {
  17522. height: math.unit(6 + 2 / 12, "feet"),
  17523. weight: math.unit(190, "lb"),
  17524. name: "Side",
  17525. image: {
  17526. source: "./media/characters/biscuit/side.svg",
  17527. extra: 858 / 791,
  17528. bottom: 0.044
  17529. }
  17530. },
  17531. },
  17532. [
  17533. {
  17534. name: "Normal",
  17535. height: math.unit(6 + 2 / 12, "feet"),
  17536. default: true
  17537. },
  17538. ]
  17539. ))
  17540. characterMakers.push(() => makeCharacter(
  17541. { name: "Poffin" },
  17542. {
  17543. front: {
  17544. height: math.unit(5 + 2 / 12, "feet"),
  17545. weight: math.unit(120, "lb"),
  17546. name: "Front",
  17547. image: {
  17548. source: "./media/characters/poffin/front.svg",
  17549. extra: 786 / 680,
  17550. bottom: 0.005
  17551. }
  17552. },
  17553. },
  17554. [
  17555. {
  17556. name: "Normal",
  17557. height: math.unit(5 + 2 / 12, "feet"),
  17558. default: true
  17559. },
  17560. ]
  17561. ))
  17562. characterMakers.push(() => makeCharacter(
  17563. { name: "Dhari" },
  17564. {
  17565. front: {
  17566. height: math.unit(6 + 3 / 12, "feet"),
  17567. weight: math.unit(519, "lb"),
  17568. name: "Front",
  17569. image: {
  17570. source: "./media/characters/dhari/front.svg",
  17571. extra: 1048 / 946,
  17572. bottom: 0.015
  17573. }
  17574. },
  17575. back: {
  17576. height: math.unit(6 + 3 / 12, "feet"),
  17577. weight: math.unit(519, "lb"),
  17578. name: "Back",
  17579. image: {
  17580. source: "./media/characters/dhari/back.svg",
  17581. extra: 1048 / 931,
  17582. bottom: 0.005
  17583. }
  17584. },
  17585. frontDressed: {
  17586. height: math.unit(6 + 3 / 12, "feet"),
  17587. weight: math.unit(519, "lb"),
  17588. name: "Front (Dressed)",
  17589. image: {
  17590. source: "./media/characters/dhari/front-dressed.svg",
  17591. extra: 1713 / 1546,
  17592. bottom: 0.02
  17593. }
  17594. },
  17595. backDressed: {
  17596. height: math.unit(6 + 3 / 12, "feet"),
  17597. weight: math.unit(519, "lb"),
  17598. name: "Back (Dressed)",
  17599. image: {
  17600. source: "./media/characters/dhari/back-dressed.svg",
  17601. extra: 1699 / 1537,
  17602. bottom: 0.01
  17603. }
  17604. },
  17605. maw: {
  17606. height: math.unit(0.95, "feet"),
  17607. name: "Maw",
  17608. image: {
  17609. source: "./media/characters/dhari/maw.svg"
  17610. }
  17611. },
  17612. wereFront: {
  17613. height: math.unit(12 + 8 / 12, "feet"),
  17614. weight: math.unit(4000, "lb"),
  17615. name: "Front (Were)",
  17616. image: {
  17617. source: "./media/characters/dhari/were-front.svg",
  17618. extra: 1065 / 969,
  17619. bottom: 0.015
  17620. }
  17621. },
  17622. wereBack: {
  17623. height: math.unit(12 + 8 / 12, "feet"),
  17624. weight: math.unit(4000, "lb"),
  17625. name: "Back (Were)",
  17626. image: {
  17627. source: "./media/characters/dhari/were-back.svg",
  17628. extra: 1065 / 969,
  17629. bottom: 0.012
  17630. }
  17631. },
  17632. wereMaw: {
  17633. height: math.unit(0.625, "meters"),
  17634. name: "Maw (Were)",
  17635. image: {
  17636. source: "./media/characters/dhari/were-maw.svg"
  17637. }
  17638. },
  17639. },
  17640. [
  17641. {
  17642. name: "Normal",
  17643. height: math.unit(6 + 3 / 12, "feet"),
  17644. default: true
  17645. },
  17646. ]
  17647. ))
  17648. characterMakers.push(() => makeCharacter(
  17649. { name: "Rena Dyne" },
  17650. {
  17651. anthro: {
  17652. height: math.unit(5 + 7 / 12, "feet"),
  17653. weight: math.unit(175, "lb"),
  17654. name: "Anthro",
  17655. image: {
  17656. source: "./media/characters/rena-dyne/anthro.svg",
  17657. extra: 1849 / 1785,
  17658. bottom: 0.005
  17659. }
  17660. },
  17661. taur: {
  17662. height: math.unit(15 + 6 / 12, "feet"),
  17663. weight: math.unit(8000, "lb"),
  17664. name: "Taur",
  17665. image: {
  17666. source: "./media/characters/rena-dyne/taur.svg",
  17667. extra: 2315 / 2234,
  17668. bottom: 0.033
  17669. }
  17670. },
  17671. },
  17672. [
  17673. {
  17674. name: "Normal",
  17675. height: math.unit(5 + 7 / 12, "feet"),
  17676. default: true
  17677. },
  17678. ]
  17679. ))
  17680. characterMakers.push(() => makeCharacter(
  17681. { name: "Weremeep" },
  17682. {
  17683. front: {
  17684. height: math.unit(8, "feet"),
  17685. weight: math.unit(600, "lb"),
  17686. name: "Front",
  17687. image: {
  17688. source: "./media/characters/weremeep/front.svg",
  17689. extra: 967 / 862,
  17690. bottom: 0.01
  17691. }
  17692. },
  17693. },
  17694. [
  17695. {
  17696. name: "Normal",
  17697. height: math.unit(8, "feet"),
  17698. default: true
  17699. },
  17700. {
  17701. name: "Lorg",
  17702. height: math.unit(12, "feet")
  17703. },
  17704. {
  17705. name: "Oh Lawd She Comin'",
  17706. height: math.unit(20, "feet")
  17707. },
  17708. ]
  17709. ))
  17710. characterMakers.push(() => makeCharacter(
  17711. { name: "Reza" },
  17712. {
  17713. front: {
  17714. height: math.unit(4, "feet"),
  17715. weight: math.unit(90, "lb"),
  17716. name: "Front",
  17717. image: {
  17718. source: "./media/characters/reza/front.svg",
  17719. extra: 1183 / 1111,
  17720. bottom: 0.017
  17721. }
  17722. },
  17723. back: {
  17724. height: math.unit(4, "feet"),
  17725. weight: math.unit(90, "lb"),
  17726. name: "Back",
  17727. image: {
  17728. source: "./media/characters/reza/back.svg",
  17729. extra: 1183 / 1111,
  17730. bottom: 0.01
  17731. }
  17732. },
  17733. },
  17734. [
  17735. {
  17736. name: "Normal",
  17737. height: math.unit(4, "feet"),
  17738. default: true
  17739. },
  17740. ]
  17741. ))
  17742. characterMakers.push(() => makeCharacter(
  17743. { name: "Athea" },
  17744. {
  17745. side: {
  17746. height: math.unit(15, "feet"),
  17747. weight: math.unit(14, "tons"),
  17748. name: "Side",
  17749. image: {
  17750. source: "./media/characters/athea/side.svg",
  17751. extra: 960 / 540,
  17752. bottom: 0.003
  17753. }
  17754. },
  17755. sitting: {
  17756. height: math.unit(6 * 2.85, "feet"),
  17757. weight: math.unit(14, "tons"),
  17758. name: "Sitting",
  17759. image: {
  17760. source: "./media/characters/athea/sitting.svg",
  17761. extra: 621 / 581,
  17762. bottom: 0.075
  17763. }
  17764. },
  17765. maw: {
  17766. height: math.unit(7.59498031496063, "feet"),
  17767. name: "Maw",
  17768. image: {
  17769. source: "./media/characters/athea/maw.svg"
  17770. }
  17771. },
  17772. },
  17773. [
  17774. {
  17775. name: "Lap Cat",
  17776. height: math.unit(2.5, "feet")
  17777. },
  17778. {
  17779. name: "Minimacro",
  17780. height: math.unit(15, "feet"),
  17781. default: true
  17782. },
  17783. {
  17784. name: "Macro",
  17785. height: math.unit(120, "feet")
  17786. },
  17787. {
  17788. name: "Macro+",
  17789. height: math.unit(640, "feet")
  17790. },
  17791. {
  17792. name: "Colossus",
  17793. height: math.unit(2.2, "miles")
  17794. },
  17795. ]
  17796. ))
  17797. characterMakers.push(() => makeCharacter(
  17798. { name: "Seroko" },
  17799. {
  17800. front: {
  17801. height: math.unit(8 + 8 / 12, "feet"),
  17802. weight: math.unit(130, "kg"),
  17803. name: "Front",
  17804. image: {
  17805. source: "./media/characters/seroko/front.svg",
  17806. extra: 1385 / 1280,
  17807. bottom: 0.025
  17808. }
  17809. },
  17810. back: {
  17811. height: math.unit(8 + 8 / 12, "feet"),
  17812. weight: math.unit(130, "kg"),
  17813. name: "Back",
  17814. image: {
  17815. source: "./media/characters/seroko/back.svg",
  17816. extra: 1369 / 1238,
  17817. bottom: 0.018
  17818. }
  17819. },
  17820. frontDressed: {
  17821. height: math.unit(8 + 8 / 12, "feet"),
  17822. weight: math.unit(130, "kg"),
  17823. name: "Front (Dressed)",
  17824. image: {
  17825. source: "./media/characters/seroko/front-dressed.svg",
  17826. extra: 1366 / 1275,
  17827. bottom: 0.03
  17828. }
  17829. },
  17830. },
  17831. [
  17832. {
  17833. name: "Normal",
  17834. height: math.unit(8 + 8 / 12, "feet"),
  17835. default: true
  17836. },
  17837. ]
  17838. ))
  17839. characterMakers.push(() => makeCharacter(
  17840. { name: "Quatzi" },
  17841. {
  17842. front: {
  17843. height: math.unit(5.5, "feet"),
  17844. weight: math.unit(160, "lb"),
  17845. name: "Front",
  17846. image: {
  17847. source: "./media/characters/quatzi/front.svg",
  17848. extra: 2346 / 2242,
  17849. bottom: 0.015
  17850. }
  17851. },
  17852. },
  17853. [
  17854. {
  17855. name: "Normal",
  17856. height: math.unit(5.5, "feet"),
  17857. default: true
  17858. },
  17859. {
  17860. name: "Big",
  17861. height: math.unit(7.7, "feet")
  17862. },
  17863. ]
  17864. ))
  17865. characterMakers.push(() => makeCharacter(
  17866. { name: "Sen" },
  17867. {
  17868. front: {
  17869. height: math.unit(5 + 11 / 12, "feet"),
  17870. weight: math.unit(180, "lb"),
  17871. name: "Front",
  17872. image: {
  17873. source: "./media/characters/sen/front.svg",
  17874. extra: 1321 / 1254,
  17875. bottom: 0.015
  17876. }
  17877. },
  17878. side: {
  17879. height: math.unit(5 + 11 / 12, "feet"),
  17880. weight: math.unit(180, "lb"),
  17881. name: "Side",
  17882. image: {
  17883. source: "./media/characters/sen/side.svg",
  17884. extra: 1321 / 1254,
  17885. bottom: 0.007
  17886. }
  17887. },
  17888. back: {
  17889. height: math.unit(5 + 11 / 12, "feet"),
  17890. weight: math.unit(180, "lb"),
  17891. name: "Back",
  17892. image: {
  17893. source: "./media/characters/sen/back.svg",
  17894. extra: 1321 / 1254
  17895. }
  17896. },
  17897. },
  17898. [
  17899. {
  17900. name: "Normal",
  17901. height: math.unit(5 + 11 / 12, "feet"),
  17902. default: true
  17903. },
  17904. ]
  17905. ))
  17906. characterMakers.push(() => makeCharacter(
  17907. { name: "Fruity" },
  17908. {
  17909. front: {
  17910. height: math.unit(166.6, "cm"),
  17911. weight: math.unit(66.6, "kg"),
  17912. name: "Front",
  17913. image: {
  17914. source: "./media/characters/fruity/front.svg",
  17915. extra: 1510 / 1386,
  17916. bottom: 0.04
  17917. }
  17918. },
  17919. back: {
  17920. height: math.unit(166.6, "cm"),
  17921. weight: math.unit(66.6, "lb"),
  17922. name: "Back",
  17923. image: {
  17924. source: "./media/characters/fruity/back.svg",
  17925. extra: 1563 / 1435,
  17926. bottom: 0.005
  17927. }
  17928. },
  17929. },
  17930. [
  17931. {
  17932. name: "Normal",
  17933. height: math.unit(166.6, "cm"),
  17934. default: true
  17935. },
  17936. {
  17937. name: "Demonic",
  17938. height: math.unit(166.6, "feet")
  17939. },
  17940. ]
  17941. ))
  17942. characterMakers.push(() => makeCharacter(
  17943. { name: "Zost" },
  17944. {
  17945. side: {
  17946. height: math.unit(10, "feet"),
  17947. weight: math.unit(500, "lb"),
  17948. name: "Side",
  17949. image: {
  17950. source: "./media/characters/zost/side.svg",
  17951. extra: 966 / 880,
  17952. bottom: 0.075
  17953. }
  17954. },
  17955. mawFront: {
  17956. height: math.unit(1.08, "meters"),
  17957. name: "Maw (Front)",
  17958. image: {
  17959. source: "./media/characters/zost/maw-front.svg"
  17960. }
  17961. },
  17962. mawSide: {
  17963. height: math.unit(2.66, "feet"),
  17964. name: "Maw (Side)",
  17965. image: {
  17966. source: "./media/characters/zost/maw-side.svg"
  17967. }
  17968. },
  17969. },
  17970. [
  17971. {
  17972. name: "Normal",
  17973. height: math.unit(10, "feet"),
  17974. default: true
  17975. },
  17976. ]
  17977. ))
  17978. characterMakers.push(() => makeCharacter(
  17979. { name: "Luci" },
  17980. {
  17981. front: {
  17982. height: math.unit(5 + 4 / 12, "feet"),
  17983. weight: math.unit(120, "lb"),
  17984. name: "Front",
  17985. image: {
  17986. source: "./media/characters/luci/front.svg",
  17987. extra: 1985 / 1884,
  17988. bottom: 0.04
  17989. }
  17990. },
  17991. back: {
  17992. height: math.unit(5 + 4 / 12, "feet"),
  17993. weight: math.unit(120, "lb"),
  17994. name: "Back",
  17995. image: {
  17996. source: "./media/characters/luci/back.svg",
  17997. extra: 1892 / 1791,
  17998. bottom: 0.002
  17999. }
  18000. },
  18001. },
  18002. [
  18003. {
  18004. name: "Normal",
  18005. height: math.unit(5 + 4 / 12, "feet"),
  18006. default: true
  18007. },
  18008. ]
  18009. ))
  18010. characterMakers.push(() => makeCharacter(
  18011. { name: "2th" },
  18012. {
  18013. front: {
  18014. height: math.unit(1500, "feet"),
  18015. weight: math.unit(3.8e6, "tons"),
  18016. name: "Front",
  18017. image: {
  18018. source: "./media/characters/2th/front.svg",
  18019. extra: 3489 / 3350,
  18020. bottom: 0.1
  18021. }
  18022. },
  18023. foot: {
  18024. height: math.unit(461, "feet"),
  18025. name: "Foot",
  18026. image: {
  18027. source: "./media/characters/2th/foot.svg"
  18028. }
  18029. },
  18030. },
  18031. [
  18032. {
  18033. name: "\"Micro\"",
  18034. height: math.unit(15 + 7 / 12, "feet")
  18035. },
  18036. {
  18037. name: "Normal",
  18038. height: math.unit(1500, "feet"),
  18039. default: true
  18040. },
  18041. {
  18042. name: "Macro",
  18043. height: math.unit(5000, "feet")
  18044. },
  18045. {
  18046. name: "Megamacro",
  18047. height: math.unit(15, "miles")
  18048. },
  18049. {
  18050. name: "Gigamacro",
  18051. height: math.unit(4000, "miles")
  18052. },
  18053. {
  18054. name: "Galactic",
  18055. height: math.unit(50, "AU")
  18056. },
  18057. ]
  18058. ))
  18059. characterMakers.push(() => makeCharacter(
  18060. { name: "Amethyst" },
  18061. {
  18062. front: {
  18063. height: math.unit(5 + 6 / 12, "feet"),
  18064. weight: math.unit(220, "lb"),
  18065. name: "Front",
  18066. image: {
  18067. source: "./media/characters/amethyst/front.svg",
  18068. extra: 2078 / 2040,
  18069. bottom: 0.045
  18070. }
  18071. },
  18072. back: {
  18073. height: math.unit(5 + 6 / 12, "feet"),
  18074. weight: math.unit(220, "lb"),
  18075. name: "Back",
  18076. image: {
  18077. source: "./media/characters/amethyst/back.svg",
  18078. extra: 2021 / 1989,
  18079. bottom: 0.02
  18080. }
  18081. },
  18082. },
  18083. [
  18084. {
  18085. name: "Normal",
  18086. height: math.unit(5 + 6 / 12, "feet"),
  18087. default: true
  18088. },
  18089. ]
  18090. ))
  18091. characterMakers.push(() => makeCharacter(
  18092. { name: "Yumi Akiyama" },
  18093. {
  18094. front: {
  18095. height: math.unit(4 + 11 / 12, "feet"),
  18096. weight: math.unit(120, "lb"),
  18097. name: "Front",
  18098. image: {
  18099. source: "./media/characters/yumi-akiyama/front.svg",
  18100. extra: 1327 / 1235,
  18101. bottom: 0.02
  18102. }
  18103. },
  18104. back: {
  18105. height: math.unit(4 + 11 / 12, "feet"),
  18106. weight: math.unit(120, "lb"),
  18107. name: "Back",
  18108. image: {
  18109. source: "./media/characters/yumi-akiyama/back.svg",
  18110. extra: 1287 / 1245,
  18111. bottom: 0.002
  18112. }
  18113. },
  18114. },
  18115. [
  18116. {
  18117. name: "Galactic",
  18118. height: math.unit(50, "galaxies"),
  18119. default: true
  18120. },
  18121. {
  18122. name: "Universal",
  18123. height: math.unit(100, "universes")
  18124. },
  18125. ]
  18126. ))
  18127. characterMakers.push(() => makeCharacter(
  18128. { name: "Rifter Yrmori" },
  18129. {
  18130. front: {
  18131. height: math.unit(8, "feet"),
  18132. weight: math.unit(500, "lb"),
  18133. name: "Front",
  18134. image: {
  18135. source: "./media/characters/rifter-yrmori/front.svg",
  18136. extra: 1180 / 1125,
  18137. bottom: 0.02
  18138. }
  18139. },
  18140. back: {
  18141. height: math.unit(8, "feet"),
  18142. weight: math.unit(500, "lb"),
  18143. name: "Back",
  18144. image: {
  18145. source: "./media/characters/rifter-yrmori/back.svg",
  18146. extra: 1190 / 1145,
  18147. bottom: 0.001
  18148. }
  18149. },
  18150. wings: {
  18151. height: math.unit(7.75, "feet"),
  18152. weight: math.unit(500, "lb"),
  18153. name: "Wings",
  18154. image: {
  18155. source: "./media/characters/rifter-yrmori/wings.svg",
  18156. extra: 1357 / 1285
  18157. }
  18158. },
  18159. maw: {
  18160. height: math.unit(0.8, "feet"),
  18161. name: "Maw",
  18162. image: {
  18163. source: "./media/characters/rifter-yrmori/maw.svg"
  18164. }
  18165. },
  18166. },
  18167. [
  18168. {
  18169. name: "Normal",
  18170. height: math.unit(8, "feet"),
  18171. default: true
  18172. },
  18173. {
  18174. name: "Macro",
  18175. height: math.unit(42, "meters")
  18176. },
  18177. ]
  18178. ))
  18179. characterMakers.push(() => makeCharacter(
  18180. { name: "Tahajin" },
  18181. {
  18182. were: {
  18183. height: math.unit(25 + 6 / 12, "feet"),
  18184. weight: math.unit(10000, "lb"),
  18185. name: "Were",
  18186. image: {
  18187. source: "./media/characters/tahajin/were.svg",
  18188. extra: 801 / 770,
  18189. bottom: 0.042
  18190. }
  18191. },
  18192. aquatic: {
  18193. height: math.unit(6 + 4 / 12, "feet"),
  18194. weight: math.unit(160, "lb"),
  18195. name: "Aquatic",
  18196. image: {
  18197. source: "./media/characters/tahajin/aquatic.svg",
  18198. extra: 572 / 542,
  18199. bottom: 0.04
  18200. }
  18201. },
  18202. chow: {
  18203. height: math.unit(8 + 11 / 12, "feet"),
  18204. weight: math.unit(450, "lb"),
  18205. name: "Chow",
  18206. image: {
  18207. source: "./media/characters/tahajin/chow.svg",
  18208. extra: 660 / 640,
  18209. bottom: 0.015
  18210. }
  18211. },
  18212. demiNaga: {
  18213. height: math.unit(6 + 8 / 12, "feet"),
  18214. weight: math.unit(300, "lb"),
  18215. name: "Demi Naga",
  18216. image: {
  18217. source: "./media/characters/tahajin/demi-naga.svg",
  18218. extra: 643 / 615,
  18219. bottom: 0.1
  18220. }
  18221. },
  18222. data: {
  18223. height: math.unit(5, "inches"),
  18224. weight: math.unit(0.1, "lb"),
  18225. name: "Data",
  18226. image: {
  18227. source: "./media/characters/tahajin/data.svg"
  18228. }
  18229. },
  18230. fluu: {
  18231. height: math.unit(5 + 7 / 12, "feet"),
  18232. weight: math.unit(140, "lb"),
  18233. name: "Fluu",
  18234. image: {
  18235. source: "./media/characters/tahajin/fluu.svg",
  18236. extra: 628 / 592,
  18237. bottom: 0.02
  18238. }
  18239. },
  18240. starWarrior: {
  18241. height: math.unit(4 + 5 / 12, "feet"),
  18242. weight: math.unit(50, "lb"),
  18243. name: "Star Warrior",
  18244. image: {
  18245. source: "./media/characters/tahajin/star-warrior.svg"
  18246. }
  18247. },
  18248. },
  18249. [
  18250. {
  18251. name: "Normal",
  18252. height: math.unit(25 + 6 / 12, "feet"),
  18253. default: true
  18254. },
  18255. ]
  18256. ))
  18257. characterMakers.push(() => makeCharacter(
  18258. { name: "Gabira" },
  18259. {
  18260. front: {
  18261. height: math.unit(8, "feet"),
  18262. weight: math.unit(350, "lb"),
  18263. name: "Front",
  18264. image: {
  18265. source: "./media/characters/gabira/front.svg",
  18266. extra: 608 / 580,
  18267. bottom: 0.03
  18268. }
  18269. },
  18270. back: {
  18271. height: math.unit(8, "feet"),
  18272. weight: math.unit(350, "lb"),
  18273. name: "Back",
  18274. image: {
  18275. source: "./media/characters/gabira/back.svg",
  18276. extra: 608 / 580,
  18277. bottom: 0.03
  18278. }
  18279. },
  18280. },
  18281. [
  18282. {
  18283. name: "Normal",
  18284. height: math.unit(8, "feet"),
  18285. default: true
  18286. },
  18287. ]
  18288. ))
  18289. characterMakers.push(() => makeCharacter(
  18290. { name: "Sasha Katraine" },
  18291. {
  18292. front: {
  18293. height: math.unit(5 + 3 / 12, "feet"),
  18294. weight: math.unit(137, "lb"),
  18295. name: "Front",
  18296. image: {
  18297. source: "./media/characters/sasha-katraine/front.svg",
  18298. bottom: 0.045
  18299. }
  18300. },
  18301. },
  18302. [
  18303. {
  18304. name: "Micro",
  18305. height: math.unit(5, "inches")
  18306. },
  18307. {
  18308. name: "Normal",
  18309. height: math.unit(5 + 3 / 12, "feet"),
  18310. default: true
  18311. },
  18312. ]
  18313. ))
  18314. characterMakers.push(() => makeCharacter(
  18315. { name: "Der" },
  18316. {
  18317. side: {
  18318. height: math.unit(4, "inches"),
  18319. weight: math.unit(200, "grams"),
  18320. name: "Side",
  18321. image: {
  18322. source: "./media/characters/der/side.svg",
  18323. extra: 719 / 400,
  18324. bottom: 30.6 / 749.9187
  18325. }
  18326. },
  18327. },
  18328. [
  18329. {
  18330. name: "Micro",
  18331. height: math.unit(4, "inches"),
  18332. default: true
  18333. },
  18334. ]
  18335. ))
  18336. characterMakers.push(() => makeCharacter(
  18337. { name: "Fixerdragon" },
  18338. {
  18339. side: {
  18340. height: math.unit(30, "meters"),
  18341. weight: math.unit(700, "tonnes"),
  18342. name: "Side",
  18343. image: {
  18344. source: "./media/characters/fixerdragon/side.svg",
  18345. extra: (1293.0514-116.03)/1106.86,
  18346. bottom: 116.03/1293.0514
  18347. }
  18348. },
  18349. },
  18350. [
  18351. {
  18352. name: "Planck",
  18353. height: math.unit(1.6e-35, "meters")
  18354. },
  18355. {
  18356. name: "Micro",
  18357. height: math.unit(0.4, "meters")
  18358. },
  18359. {
  18360. name: "Normal",
  18361. height: math.unit(30, "meters"),
  18362. default: true
  18363. },
  18364. {
  18365. name: "Megamacro",
  18366. height: math.unit(1.2, "megameters")
  18367. },
  18368. {
  18369. name: "Teramacro",
  18370. height: math.unit(130, "terameters")
  18371. },
  18372. {
  18373. name: "Yottamacro",
  18374. height: math.unit(6200, "yottameters")
  18375. },
  18376. ]
  18377. ));
  18378. characterMakers.push(() => makeCharacter(
  18379. { name: "Kite" },
  18380. {
  18381. front: {
  18382. height: math.unit(8, "feet"),
  18383. weight: math.unit(250, "lb"),
  18384. name: "Front",
  18385. image: {
  18386. source: "./media/characters/kite/front.svg",
  18387. extra: 2796/2659,
  18388. bottom: 0.002
  18389. }
  18390. },
  18391. },
  18392. [
  18393. {
  18394. name: "Normal",
  18395. height: math.unit(8, "feet"),
  18396. default: true
  18397. },
  18398. {
  18399. name: "Macro",
  18400. height: math.unit(360, "feet")
  18401. },
  18402. {
  18403. name: "Megamacro",
  18404. height: math.unit(1500, "feet")
  18405. },
  18406. ]
  18407. ))
  18408. characterMakers.push(() => makeCharacter(
  18409. { name: "Poojawa Vynar" },
  18410. {
  18411. front: {
  18412. height: math.unit(5 + 10/12, "feet"),
  18413. weight: math.unit(150, "lb"),
  18414. name: "Front",
  18415. image: {
  18416. source: "./media/characters/poojawa-vynar/front.svg",
  18417. extra: (1506.1547-55) / 1356.6,
  18418. bottom: 55/1506.1547
  18419. }
  18420. },
  18421. frontTailless: {
  18422. height: math.unit(5 + 10/12, "feet"),
  18423. weight: math.unit(150, "lb"),
  18424. name: "Front (Tailless)",
  18425. image: {
  18426. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18427. extra: (1506.1547-55) / 1356.6,
  18428. bottom: 55/1506.1547
  18429. }
  18430. },
  18431. },
  18432. [
  18433. {
  18434. name: "Normal",
  18435. height: math.unit(5 + 10/12, "feet"),
  18436. default: true
  18437. },
  18438. ]
  18439. ))
  18440. characterMakers.push(() => makeCharacter(
  18441. { name: "Violette" },
  18442. {
  18443. front: {
  18444. height: math.unit(293, "meters"),
  18445. weight: math.unit(70400, "tons"),
  18446. name: "Front",
  18447. image: {
  18448. source: "./media/characters/violette/front.svg",
  18449. extra: 1227/1180,
  18450. bottom: 0.005
  18451. }
  18452. },
  18453. back: {
  18454. height: math.unit(293, "meters"),
  18455. weight: math.unit(70400, "tons"),
  18456. name: "Back",
  18457. image: {
  18458. source: "./media/characters/violette/back.svg",
  18459. extra: 1227/1180,
  18460. bottom: 0.005
  18461. }
  18462. },
  18463. },
  18464. [
  18465. {
  18466. name: "Macro",
  18467. height: math.unit(293, "meters"),
  18468. default: true
  18469. },
  18470. ]
  18471. ))
  18472. characterMakers.push(() => makeCharacter(
  18473. { name: "Alessandra" },
  18474. {
  18475. front: {
  18476. height: math.unit(1050, "feet"),
  18477. weight: math.unit(200000, "tons"),
  18478. name: "Front",
  18479. image: {
  18480. source: "./media/characters/alessandra/front.svg",
  18481. extra: 960/912,
  18482. bottom: 0.06
  18483. }
  18484. },
  18485. },
  18486. [
  18487. {
  18488. name: "Macro",
  18489. height: math.unit(1050, "feet")
  18490. },
  18491. {
  18492. name: "Macro+",
  18493. height: math.unit(900, "meters"),
  18494. default: true
  18495. },
  18496. ]
  18497. ))
  18498. characterMakers.push(() => makeCharacter(
  18499. { name: "Person", species: "Catdragon" },
  18500. {
  18501. front: {
  18502. height: math.unit(5, "feet"),
  18503. weight: math.unit(187, "lb"),
  18504. name: "Front",
  18505. image: {
  18506. source: "./media/characters/person/front.svg",
  18507. extra: 3087/2945,
  18508. bottom: 91/3181
  18509. }
  18510. },
  18511. },
  18512. [
  18513. {
  18514. name: "Micro",
  18515. height: math.unit(3, "inches")
  18516. },
  18517. {
  18518. name: "Normal",
  18519. height: math.unit(5, "feet"),
  18520. default: true
  18521. },
  18522. {
  18523. name: "Macro",
  18524. height: math.unit(90, "feet")
  18525. },
  18526. {
  18527. name: "Max Size",
  18528. height: math.unit(280, "feet")
  18529. },
  18530. ]
  18531. ))
  18532. characterMakers.push(() => makeCharacter(
  18533. { name: "Ty" },
  18534. {
  18535. front: {
  18536. height: math.unit(4.5, "meters"),
  18537. weight: math.unit(3200, "lb"),
  18538. name: "Front",
  18539. image: {
  18540. source: "./media/characters/ty/front.svg",
  18541. extra: 1038/960,
  18542. bottom: 31.156/1068
  18543. }
  18544. },
  18545. back: {
  18546. height: math.unit(4.5, "meters"),
  18547. weight: math.unit(3200, "lb"),
  18548. name: "Back",
  18549. image: {
  18550. source: "./media/characters/ty/back.svg",
  18551. extra: 1044/966,
  18552. bottom: 7.48/1049
  18553. }
  18554. },
  18555. },
  18556. [
  18557. {
  18558. name: "Normal",
  18559. height: math.unit(4.5, "meters"),
  18560. default: true
  18561. },
  18562. ]
  18563. ))
  18564. characterMakers.push(() => makeCharacter(
  18565. { name: "Rocky" },
  18566. {
  18567. front: {
  18568. height: math.unit(5 + 4/12, "feet"),
  18569. weight: math.unit(115, "lb"),
  18570. name: "Front",
  18571. image: {
  18572. source: "./media/characters/rocky/front.svg",
  18573. extra: 1012/975,
  18574. bottom: 54/1066
  18575. }
  18576. },
  18577. },
  18578. [
  18579. {
  18580. name: "Normal",
  18581. height: math.unit(5 + 4/12, "feet"),
  18582. default: true
  18583. },
  18584. ]
  18585. ))
  18586. characterMakers.push(() => makeCharacter(
  18587. { name: "Ruin" },
  18588. {
  18589. upright: {
  18590. height: math.unit(6, "meters"),
  18591. weight: math.unit(4000, "kg"),
  18592. name: "Upright",
  18593. image: {
  18594. source: "./media/characters/ruin/upright.svg",
  18595. extra: 668/661,
  18596. bottom: 42/799.8396
  18597. }
  18598. },
  18599. },
  18600. [
  18601. {
  18602. name: "Normal",
  18603. height: math.unit(6, "meters")
  18604. },
  18605. ]
  18606. ))
  18607. characterMakers.push(() => makeCharacter(
  18608. { name: "Robin" },
  18609. {
  18610. front: {
  18611. height: math.unit(5, "feet"),
  18612. weight: math.unit(106, "lb"),
  18613. name: "Front",
  18614. image: {
  18615. source: "./media/characters/robin/front.svg",
  18616. extra: 862/799,
  18617. bottom: 42.4/914.8856
  18618. }
  18619. },
  18620. },
  18621. [
  18622. {
  18623. name: "Normal",
  18624. height: math.unit(5, "feet"),
  18625. default: true
  18626. },
  18627. ]
  18628. ))
  18629. characterMakers.push(() => makeCharacter(
  18630. { name: "Saian" },
  18631. {
  18632. side: {
  18633. height: math.unit(3, "feet"),
  18634. weight: math.unit(225, "lb"),
  18635. name: "Side",
  18636. image: {
  18637. source: "./media/characters/saian/side.svg",
  18638. extra: 566/356,
  18639. bottom: 79.7/643
  18640. }
  18641. },
  18642. maw: {
  18643. height: math.unit(2.85, "feet"),
  18644. name: "Maw",
  18645. image: {
  18646. source: "./media/characters/saian/maw.svg"
  18647. }
  18648. },
  18649. },
  18650. [
  18651. {
  18652. name: "Normal",
  18653. height: math.unit(3, "feet"),
  18654. default: true
  18655. },
  18656. ]
  18657. ))
  18658. characterMakers.push(() => makeCharacter(
  18659. { name: "Equus Silvermane" },
  18660. {
  18661. side: {
  18662. height: math.unit(8, "feet"),
  18663. weight: math.unit(300, "lb"),
  18664. name: "Side",
  18665. image: {
  18666. source: "./media/characters/equus-silvermane/side.svg",
  18667. extra: 2176/2050,
  18668. bottom: 65.7/2245
  18669. }
  18670. },
  18671. front: {
  18672. height: math.unit(8, "feet"),
  18673. weight: math.unit(300, "lb"),
  18674. name: "Front",
  18675. image: {
  18676. source: "./media/characters/equus-silvermane/front.svg",
  18677. extra: 4633/4400,
  18678. bottom: 71.3/4706.915
  18679. }
  18680. },
  18681. sideStepping: {
  18682. height: math.unit(8, "feet"),
  18683. weight: math.unit(300, "lb"),
  18684. name: "Side (Stepping)",
  18685. image: {
  18686. source: "./media/characters/equus-silvermane/side-stepping.svg",
  18687. extra: 1968/1860,
  18688. bottom: 16.4/1989
  18689. }
  18690. },
  18691. },
  18692. [
  18693. {
  18694. name: "Normal",
  18695. height: math.unit(8, "feet")
  18696. },
  18697. {
  18698. name: "Minimacro",
  18699. height: math.unit(75, "feet"),
  18700. default: true
  18701. },
  18702. {
  18703. name: "Macro",
  18704. height: math.unit(150, "feet")
  18705. },
  18706. {
  18707. name: "Macro+",
  18708. height: math.unit(1000, "feet")
  18709. },
  18710. {
  18711. name: "Megamacro",
  18712. height: math.unit(1, "mile")
  18713. },
  18714. ]
  18715. ))
  18716. characterMakers.push(() => makeCharacter(
  18717. { name: "Windar" },
  18718. {
  18719. side: {
  18720. height: math.unit(20, "feet"),
  18721. weight: math.unit(30000, "kg"),
  18722. name: "Side",
  18723. image: {
  18724. source: "./media/characters/windar/side.svg",
  18725. extra: 1491/1248,
  18726. bottom: 82.56/1568
  18727. }
  18728. },
  18729. },
  18730. [
  18731. {
  18732. name: "Normal",
  18733. height: math.unit(20, "feet"),
  18734. default: true
  18735. },
  18736. ]
  18737. ))
  18738. characterMakers.push(() => makeCharacter(
  18739. { name: "Melody" },
  18740. {
  18741. side: {
  18742. height: math.unit(15.66, "feet"),
  18743. weight: math.unit(150, "lb"),
  18744. name: "Side",
  18745. image: {
  18746. source: "./media/characters/melody/side.svg",
  18747. extra: 1097/944,
  18748. bottom: 11.8/1109
  18749. }
  18750. },
  18751. sideOutfit: {
  18752. height: math.unit(15.66, "feet"),
  18753. weight: math.unit(150, "lb"),
  18754. name: "Side (Outfit)",
  18755. image: {
  18756. source: "./media/characters/melody/side-outfit.svg",
  18757. extra: 1097/944,
  18758. bottom: 11.8/1109
  18759. }
  18760. },
  18761. },
  18762. [
  18763. {
  18764. name: "Normal",
  18765. height: math.unit(15.66, "feet"),
  18766. default: true
  18767. },
  18768. ]
  18769. ))
  18770. characterMakers.push(() => makeCharacter(
  18771. { name: "Windera" },
  18772. {
  18773. front: {
  18774. height: math.unit(8, "feet"),
  18775. weight: math.unit(325, "lb"),
  18776. name: "Front",
  18777. image: {
  18778. source: "./media/characters/windera/front.svg",
  18779. extra: 3180/2845,
  18780. bottom: 178/3365
  18781. }
  18782. },
  18783. },
  18784. [
  18785. {
  18786. name: "Normal",
  18787. height: math.unit(8, "feet"),
  18788. default: true
  18789. },
  18790. ]
  18791. ))
  18792. characterMakers.push(() => makeCharacter(
  18793. { name: "Sonear" },
  18794. {
  18795. front: {
  18796. height: math.unit(28.75, "feet"),
  18797. weight: math.unit(2000, "kg"),
  18798. name: "Front",
  18799. image: {
  18800. source: "./media/characters/sonear/front.svg",
  18801. extra: 1041.1/964.9,
  18802. bottom: 53.7/1096.6
  18803. }
  18804. },
  18805. },
  18806. [
  18807. {
  18808. name: "Normal",
  18809. height: math.unit(28.75, "feet"),
  18810. default: true
  18811. },
  18812. ]
  18813. ))
  18814. characterMakers.push(() => makeCharacter(
  18815. { name: "Kanara" },
  18816. {
  18817. side: {
  18818. height: math.unit(25.5, "feet"),
  18819. weight: math.unit(23000, "kg"),
  18820. name: "Side",
  18821. image: {
  18822. source: "./media/characters/kanara/side.svg"
  18823. }
  18824. },
  18825. },
  18826. [
  18827. {
  18828. name: "Normal",
  18829. height: math.unit(25.5, "feet"),
  18830. default: true
  18831. },
  18832. ]
  18833. ))
  18834. characterMakers.push(() => makeCharacter(
  18835. { name: "Ereus" },
  18836. {
  18837. side: {
  18838. height: math.unit(10, "feet"),
  18839. weight: math.unit(1000, "kg"),
  18840. name: "Side",
  18841. image: {
  18842. source: "./media/characters/ereus/side.svg",
  18843. extra: 1157/959,
  18844. bottom: 153/1312.5
  18845. }
  18846. },
  18847. },
  18848. [
  18849. {
  18850. name: "Normal",
  18851. height: math.unit(10, "feet"),
  18852. default: true
  18853. },
  18854. ]
  18855. ))
  18856. characterMakers.push(() => makeCharacter(
  18857. { name: "E-ter" },
  18858. {
  18859. side: {
  18860. height: math.unit(4.5, "feet"),
  18861. weight: math.unit(500, "lb"),
  18862. name: "Side",
  18863. image: {
  18864. source: "./media/characters/e-ter/side.svg",
  18865. extra: 1550/1248,
  18866. bottom: 146/1694
  18867. }
  18868. },
  18869. },
  18870. [
  18871. {
  18872. name: "Normal",
  18873. height: math.unit(4.5, "feet"),
  18874. default: true
  18875. },
  18876. ]
  18877. ))
  18878. characterMakers.push(() => makeCharacter(
  18879. { name: "Yamie" },
  18880. {
  18881. side: {
  18882. height: math.unit(9.7, "feet"),
  18883. weight: math.unit(4000, "kg"),
  18884. name: "Side",
  18885. image: {
  18886. source: "./media/characters/yamie/side.svg"
  18887. }
  18888. },
  18889. },
  18890. [
  18891. {
  18892. name: "Normal",
  18893. height: math.unit(9.7, "feet"),
  18894. default: true
  18895. },
  18896. ]
  18897. ))
  18898. characterMakers.push(() => makeCharacter(
  18899. { name: "Anders" },
  18900. {
  18901. front: {
  18902. height: math.unit(50, "feet"),
  18903. weight: math.unit(50000, "kg"),
  18904. name: "Front",
  18905. image: {
  18906. source: "./media/characters/anders/front.svg",
  18907. extra: 570/539,
  18908. bottom: 14.7/586.7
  18909. }
  18910. },
  18911. },
  18912. [
  18913. {
  18914. name: "Large",
  18915. height: math.unit(50, "feet")
  18916. },
  18917. {
  18918. name: "Macro",
  18919. height: math.unit(2000, "feet"),
  18920. default: true
  18921. },
  18922. {
  18923. name: "Megamacro",
  18924. height: math.unit(12, "miles")
  18925. },
  18926. ]
  18927. ))
  18928. characterMakers.push(() => makeCharacter(
  18929. { name: "Reban" },
  18930. {
  18931. front: {
  18932. height: math.unit(7 + 2/12, "feet"),
  18933. weight: math.unit(300, "lb"),
  18934. name: "Front",
  18935. image: {
  18936. source: "./media/characters/reban/front.svg",
  18937. extra: 516/487,
  18938. bottom: 42.82/558.356
  18939. }
  18940. },
  18941. dick: {
  18942. height: math.unit(7/5, "feet"),
  18943. name: "Dick",
  18944. image: {
  18945. source: "./media/characters/reban/dick.svg"
  18946. }
  18947. },
  18948. },
  18949. [
  18950. {
  18951. name: "Natural Height",
  18952. height: math.unit(7 + 2/12, "feet")
  18953. },
  18954. {
  18955. name: "Macro",
  18956. height: math.unit(500, "feet"),
  18957. default: true
  18958. },
  18959. {
  18960. name: "Canon Height",
  18961. height: math.unit(50, "AU")
  18962. },
  18963. ]
  18964. ))
  18965. characterMakers.push(() => makeCharacter(
  18966. { name: "Terrance Keayes" },
  18967. {
  18968. front: {
  18969. height: math.unit(6, "feet"),
  18970. weight: math.unit(150, "lb"),
  18971. name: "Front",
  18972. image: {
  18973. source: "./media/characters/terrance-keayes/front.svg",
  18974. extra: 1.005,
  18975. bottom: 151/1615
  18976. }
  18977. },
  18978. side: {
  18979. height: math.unit(6, "feet"),
  18980. weight: math.unit(150, "lb"),
  18981. name: "Side",
  18982. image: {
  18983. source: "./media/characters/terrance-keayes/side.svg",
  18984. extra: 1.005,
  18985. bottom: 129.4/1544
  18986. }
  18987. },
  18988. back: {
  18989. height: math.unit(6, "feet"),
  18990. weight: math.unit(150, "lb"),
  18991. name: "Back",
  18992. image: {
  18993. source: "./media/characters/terrance-keayes/back.svg",
  18994. extra: 1.005,
  18995. bottom: 58.4/1557.3
  18996. }
  18997. },
  18998. dick: {
  18999. height: math.unit(6*0.208, "feet"),
  19000. name: "Dick",
  19001. image: {
  19002. source: "./media/characters/terrance-keayes/dick.svg"
  19003. }
  19004. },
  19005. },
  19006. [
  19007. {
  19008. name: "Canon Height",
  19009. height: math.unit(35, "miles"),
  19010. default: true
  19011. },
  19012. ]
  19013. ))
  19014. //characters
  19015. function makeCharacters() {
  19016. const results = [];
  19017. characterMakers.forEach(character => {
  19018. results.push(character());
  19019. });
  19020. return results;
  19021. }