less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

19806 строки
470 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. front: {
  418. height: math.unit(1.65, "meters"),
  419. weight: math.unit(50, "kg"),
  420. name: "Front",
  421. image: {
  422. source: "./media/characters/elijah/front.svg",
  423. extra: 639/626,
  424. bottom: 58.7/697.8
  425. }
  426. },
  427. side: {
  428. height: math.unit(1.65, "meters"),
  429. weight: math.unit(50, "kg"),
  430. name: "Side",
  431. image: {
  432. source: "./media/characters/elijah/side.svg",
  433. extra: 1840/1795,
  434. bottom: 106/1943
  435. }
  436. },
  437. back: {
  438. height: math.unit(1.65, "meters"),
  439. weight: math.unit(50, "kg"),
  440. name: "Back",
  441. image: {
  442. source: "./media/characters/elijah/back.svg",
  443. extra: 661.2/639.5,
  444. bottom: 21.2/682.5
  445. }
  446. },
  447. foot: {
  448. height: math.unit(1.4, "feet"),
  449. name: "Foot",
  450. image: {
  451. source: "./media/characters/elijah/foot.svg"
  452. }
  453. },
  454. footFlexing: {
  455. height: math.unit(1.243, "feet"),
  456. name: "Foot (Flexing)",
  457. image: {
  458. source: "./media/characters/elijah/foot-flexing.svg"
  459. }
  460. },
  461. footStepping: {
  462. height: math.unit(1.3, "feet"),
  463. name: "Foot (Stepping)",
  464. image: {
  465. source: "./media/characters/elijah/foot-stepping.svg"
  466. }
  467. },
  468. beak: {
  469. height: math.unit(0.666, "feet"),
  470. name: "Beak",
  471. image: {
  472. source: "./media/characters/elijah/beak.svg"
  473. }
  474. },
  475. dick: {
  476. height: math.unit(0.85, "feet"),
  477. name: "Dick",
  478. image: {
  479. source: "./media/characters/elijah/dick.svg"
  480. }
  481. },
  482. },
  483. [
  484. {
  485. name: "Normal",
  486. height: math.unit(1.65, "meters")
  487. },
  488. {
  489. name: "Macro",
  490. height: math.unit(55, "meters"),
  491. default: true
  492. },
  493. {
  494. name: "Macro+",
  495. height: math.unit(105, "meters")
  496. },
  497. ]
  498. ))
  499. characterMakers.push(() => makeCharacter(
  500. { name: "Rai" },
  501. {
  502. front: {
  503. height: math.unit(11, "feet"),
  504. weight: math.unit(80, "kg"),
  505. name: "Front",
  506. image: {
  507. source: "./media/characters/rai/front.svg",
  508. extra: 1,
  509. bottom: 0.03
  510. }
  511. },
  512. side: {
  513. height: math.unit(11, "feet"),
  514. weight: math.unit(80, "kg"),
  515. name: "Side",
  516. image: {
  517. source: "./media/characters/rai/side.svg"
  518. }
  519. },
  520. back: {
  521. height: math.unit(11, "feet"),
  522. weight: math.unit(80, "lb"),
  523. name: "Back",
  524. image: {
  525. source: "./media/characters/rai/back.svg",
  526. extra: 1,
  527. bottom: 0.01
  528. }
  529. },
  530. feral: {
  531. height: math.unit(11, "feet"),
  532. weight: math.unit(800, "lb"),
  533. name: "Feral",
  534. image: {
  535. source: "./media/characters/rai/feral.svg",
  536. extra: 1050 / 659,
  537. bottom: 0.07
  538. }
  539. },
  540. maw: {
  541. height: math.unit(6 / 3.81416, "feet"),
  542. name: "Maw",
  543. image: {
  544. source: "./media/characters/rai/maw.svg"
  545. }
  546. },
  547. },
  548. [
  549. {
  550. name: "Normal",
  551. height: math.unit(11, "feet")
  552. },
  553. {
  554. name: "Macro",
  555. height: math.unit(302, "feet"),
  556. default: true
  557. },
  558. ]
  559. ))
  560. characterMakers.push(() => makeCharacter(
  561. { name: "Jazzy" },
  562. {
  563. front: {
  564. height: math.unit(7, "feet"),
  565. weight: math.unit(80, "kg"),
  566. name: "Front",
  567. image: {
  568. source: "./media/characters/jazzy/front.svg",
  569. extra: 1,
  570. bottom: 0.01
  571. }
  572. },
  573. back: {
  574. height: math.unit(7, "feet"),
  575. weight: math.unit(80, "kg"),
  576. name: "Back",
  577. image: {
  578. source: "./media/characters/jazzy/back.svg",
  579. extra: 1,
  580. bottom: 0.01
  581. }
  582. },
  583. },
  584. [
  585. {
  586. name: "Macro",
  587. height: math.unit(216, "feet"),
  588. default: true
  589. },
  590. ]
  591. ))
  592. characterMakers.push(() => makeCharacter(
  593. { name: "Flamm" },
  594. {
  595. front: {
  596. height: math.unit(7, "feet"),
  597. weight: math.unit(80, "kg"),
  598. name: "Front",
  599. image: {
  600. source: "./media/characters/flamm/front.svg",
  601. extra: 1,
  602. bottom: 0.02
  603. }
  604. },
  605. },
  606. [
  607. {
  608. name: "Normal",
  609. height: math.unit(9.5, "feet")
  610. },
  611. {
  612. name: "Macro",
  613. height: math.unit(200, "feet"),
  614. default: true
  615. },
  616. ]
  617. ))
  618. characterMakers.push(() => makeCharacter(
  619. { name: "Zephiro" },
  620. {
  621. front: {
  622. height: math.unit(7, "feet"),
  623. weight: math.unit(80, "kg"),
  624. name: "Front",
  625. image: {
  626. source: "./media/characters/zephiro/front.svg",
  627. extra: 2309 / 2162,
  628. bottom: 0.069
  629. }
  630. },
  631. side: {
  632. height: math.unit(7, "feet"),
  633. weight: math.unit(80, "kg"),
  634. name: "Side",
  635. image: {
  636. source: "./media/characters/zephiro/side.svg",
  637. extra: 2403 / 2279,
  638. bottom: 0.015
  639. }
  640. },
  641. back: {
  642. height: math.unit(7, "feet"),
  643. weight: math.unit(80, "kg"),
  644. name: "Back",
  645. image: {
  646. source: "./media/characters/zephiro/back.svg",
  647. extra: 2373 / 2244,
  648. bottom: 0.013
  649. }
  650. },
  651. },
  652. [
  653. {
  654. name: "Micro",
  655. height: math.unit(3, "inches")
  656. },
  657. {
  658. name: "Normal",
  659. height: math.unit(5 + 3 / 12, "feet"),
  660. default: true
  661. },
  662. {
  663. name: "Macro",
  664. height: math.unit(118, "feet")
  665. },
  666. ]
  667. ))
  668. characterMakers.push(() => makeCharacter(
  669. { name: "Fory" },
  670. {
  671. front: {
  672. height: math.unit(5, "feet"),
  673. weight: math.unit(90, "kg"),
  674. name: "Front",
  675. image: {
  676. source: "./media/characters/fory/front.svg",
  677. extra: 2862/2674,
  678. bottom: 180/3043.8
  679. }
  680. },
  681. back: {
  682. height: math.unit(5, "feet"),
  683. weight: math.unit(90, "kg"),
  684. name: "Back",
  685. image: {
  686. source: "./media/characters/fory/back.svg",
  687. extra: 2962/2791,
  688. bottom: 106/3071.8
  689. }
  690. },
  691. foot: {
  692. height: math.unit(2.14, "feet"),
  693. name: "Foot",
  694. image: {
  695. source: "./media/characters/fory/foot.svg"
  696. }
  697. },
  698. },
  699. [
  700. {
  701. name: "Normal",
  702. height: math.unit(5, "feet")
  703. },
  704. {
  705. name: "Macro",
  706. height: math.unit(50, "feet"),
  707. default: true
  708. },
  709. {
  710. name: "Megamacro",
  711. height: math.unit(10, "miles")
  712. },
  713. {
  714. name: "Gigamacro",
  715. height: math.unit(5, "earths")
  716. },
  717. ]
  718. ))
  719. characterMakers.push(() => makeCharacter(
  720. { name: "Kurrikage" },
  721. {
  722. front: {
  723. height: math.unit(7, "feet"),
  724. weight: math.unit(90, "kg"),
  725. name: "Front",
  726. image: {
  727. source: "./media/characters/kurrikage/front.svg",
  728. extra: 1,
  729. bottom: 0.035
  730. }
  731. },
  732. back: {
  733. height: math.unit(7, "feet"),
  734. weight: math.unit(90, "lb"),
  735. name: "Back",
  736. image: {
  737. source: "./media/characters/kurrikage/back.svg"
  738. }
  739. },
  740. paw: {
  741. height: math.unit(1.5, "feet"),
  742. name: "Paw",
  743. image: {
  744. source: "./media/characters/kurrikage/paw.svg"
  745. }
  746. },
  747. staff: {
  748. height: math.unit(6.7, "feet"),
  749. name: "Staff",
  750. image: {
  751. source: "./media/characters/kurrikage/staff.svg"
  752. }
  753. },
  754. peek: {
  755. height: math.unit(1.05, "feet"),
  756. name: "Peeking",
  757. image: {
  758. source: "./media/characters/kurrikage/peek.svg",
  759. bottom: 0.08
  760. }
  761. },
  762. },
  763. [
  764. {
  765. name: "Normal",
  766. height: math.unit(12, "feet"),
  767. default: true
  768. },
  769. {
  770. name: "Big",
  771. height: math.unit(20, "feet")
  772. },
  773. {
  774. name: "Macro",
  775. height: math.unit(500, "feet")
  776. },
  777. {
  778. name: "Megamacro",
  779. height: math.unit(20, "miles")
  780. },
  781. ]
  782. ))
  783. characterMakers.push(() => makeCharacter(
  784. { name: "Shingo" },
  785. {
  786. front: {
  787. height: math.unit(6, "feet"),
  788. weight: math.unit(75, "kg"),
  789. name: "Front",
  790. image: {
  791. source: "./media/characters/shingo/front.svg",
  792. extra: 3511 / 3338,
  793. bottom: 0.005
  794. }
  795. },
  796. },
  797. [
  798. {
  799. name: "Micro",
  800. height: math.unit(4, "inches")
  801. },
  802. {
  803. name: "Normal",
  804. height: math.unit(6, "feet"),
  805. default: true
  806. },
  807. {
  808. name: "Macro",
  809. height: math.unit(108, "feet")
  810. }
  811. ]
  812. ))
  813. characterMakers.push(() => makeCharacter(
  814. { name: "Aigey" },
  815. {
  816. side: {
  817. height: math.unit(6, "feet"),
  818. weight: math.unit(75, "kg"),
  819. name: "Side",
  820. image: {
  821. source: "./media/characters/aigey/side.svg"
  822. }
  823. },
  824. },
  825. [
  826. {
  827. name: "Macro",
  828. height: math.unit(200, "feet"),
  829. default: true
  830. },
  831. {
  832. name: "Megamacro",
  833. height: math.unit(100, "miles")
  834. },
  835. ]
  836. )
  837. )
  838. characterMakers.push(() => makeCharacter(
  839. { name: "Natasha" },
  840. {
  841. front: {
  842. height: math.unit(5 + 5 / 12, "feet"),
  843. weight: math.unit(75, "kg"),
  844. name: "Front",
  845. image: {
  846. source: "./media/characters/natasha/front.svg",
  847. extra: 875 / 846,
  848. bottom: 0.01
  849. }
  850. },
  851. },
  852. [
  853. {
  854. name: "Normal",
  855. height: math.unit(5 + 5 / 12, "feet")
  856. },
  857. {
  858. name: "Large",
  859. height: math.unit(12, "feet")
  860. },
  861. {
  862. name: "Macro",
  863. height: math.unit(100, "feet"),
  864. default: true
  865. },
  866. {
  867. name: "Macro+",
  868. height: math.unit(260, "feet")
  869. },
  870. {
  871. name: "Macro++",
  872. height: math.unit(1, "mile")
  873. },
  874. ]
  875. ))
  876. characterMakers.push(() => makeCharacter(
  877. { name: "Malik" },
  878. {
  879. front: {
  880. height: math.unit(6, "feet"),
  881. weight: math.unit(75, "kg"),
  882. name: "Front",
  883. image: {
  884. source: "./media/characters/malik/front.svg"
  885. }
  886. },
  887. side: {
  888. height: math.unit(6, "feet"),
  889. weight: math.unit(75, "kg"),
  890. name: "Side",
  891. image: {
  892. source: "./media/characters/malik/side.svg",
  893. extra: 1.1539
  894. }
  895. },
  896. back: {
  897. height: math.unit(6, "feet"),
  898. weight: math.unit(75, "kg"),
  899. name: "Back",
  900. image: {
  901. source: "./media/characters/malik/back.svg"
  902. }
  903. },
  904. },
  905. [
  906. {
  907. name: "Macro",
  908. height: math.unit(156, "feet"),
  909. default: true
  910. },
  911. {
  912. name: "Macro+",
  913. height: math.unit(1188, "feet")
  914. },
  915. ]
  916. ))
  917. characterMakers.push(() => makeCharacter(
  918. { name: "Sefer" },
  919. {
  920. front: {
  921. height: math.unit(6, "feet"),
  922. weight: math.unit(75, "kg"),
  923. name: "Front",
  924. image: {
  925. source: "./media/characters/sefer/front.svg"
  926. }
  927. },
  928. back: {
  929. height: math.unit(6, "feet"),
  930. weight: math.unit(75, "kg"),
  931. name: "Back",
  932. image: {
  933. source: "./media/characters/sefer/back.svg"
  934. }
  935. },
  936. },
  937. [
  938. {
  939. name: "Normal",
  940. height: math.unit(6, "feet"),
  941. default: true
  942. },
  943. ]
  944. ))
  945. characterMakers.push(() => makeCharacter(
  946. { name: "North" },
  947. {
  948. body: {
  949. height: math.unit(2.2428, "meter"),
  950. weight: math.unit(124.738, "kg"),
  951. name: "Body",
  952. image: {
  953. extra: 1225 / 1050,
  954. source: "./media/characters/north/front.svg"
  955. }
  956. }
  957. },
  958. [
  959. {
  960. name: "Micro",
  961. height: math.unit(4, "inches")
  962. },
  963. {
  964. name: "Macro",
  965. height: math.unit(63, "meters")
  966. },
  967. {
  968. name: "Megamacro",
  969. height: math.unit(101, "miles"),
  970. default: true
  971. }
  972. ]
  973. ))
  974. characterMakers.push(() => makeCharacter(
  975. { name: "Talan" },
  976. {
  977. body: {
  978. height: math.unit(2, "meter"),
  979. weight: math.unit(70, "kg"),
  980. name: "Body",
  981. image: {
  982. bottom: 0.02,
  983. source: "./media/characters/talan/front.svg"
  984. }
  985. }
  986. },
  987. [
  988. {
  989. name: "Normal",
  990. height: math.unit(4, "meters")
  991. },
  992. {
  993. name: "Macro",
  994. height: math.unit(100, "meters")
  995. },
  996. {
  997. name: "Megamacro",
  998. height: math.unit(2, "miles"),
  999. default: true
  1000. },
  1001. {
  1002. name: "Gigamacro",
  1003. height: math.unit(5000, "miles")
  1004. },
  1005. {
  1006. name: "Teramacro",
  1007. height: math.unit(100, "parsecs")
  1008. }
  1009. ]
  1010. ))
  1011. characterMakers.push(() => makeCharacter(
  1012. { name: "Gael'Rathus" },
  1013. {
  1014. front: {
  1015. height: math.unit(2, "meter"),
  1016. weight: math.unit(90, "kg"),
  1017. name: "Front",
  1018. image: {
  1019. source: "./media/characters/gael'rathus/front.svg"
  1020. }
  1021. },
  1022. frontAlt: {
  1023. height: math.unit(2, "meter"),
  1024. weight: math.unit(90, "kg"),
  1025. name: "Front (alt)",
  1026. image: {
  1027. source: "./media/characters/gael'rathus/front-alt.svg"
  1028. }
  1029. },
  1030. frontAlt2: {
  1031. height: math.unit(2, "meter"),
  1032. weight: math.unit(90, "kg"),
  1033. name: "Front (alt 2)",
  1034. image: {
  1035. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1036. }
  1037. }
  1038. },
  1039. [
  1040. {
  1041. name: "Normal",
  1042. height: math.unit(9, "feet"),
  1043. default: true
  1044. },
  1045. {
  1046. name: "Large",
  1047. height: math.unit(25, "feet")
  1048. },
  1049. {
  1050. name: "Macro",
  1051. height: math.unit(0.25, "miles")
  1052. },
  1053. {
  1054. name: "Megamacro",
  1055. height: math.unit(10, "miles")
  1056. }
  1057. ]
  1058. ))
  1059. characterMakers.push(() => makeCharacter(
  1060. { name: "Sosha" },
  1061. {
  1062. side: {
  1063. height: math.unit(2, "meter"),
  1064. weight: math.unit(140, "kg"),
  1065. name: "Side",
  1066. image: {
  1067. source: "./media/characters/sosha/side.svg",
  1068. bottom: 0.042
  1069. }
  1070. },
  1071. },
  1072. [
  1073. {
  1074. name: "Normal",
  1075. height: math.unit(12, "feet"),
  1076. default: true
  1077. }
  1078. ]
  1079. ))
  1080. characterMakers.push(() => makeCharacter(
  1081. { name: "RuNNoLa" },
  1082. {
  1083. side: {
  1084. height: math.unit(5 + 5 / 12, "feet"),
  1085. weight: math.unit(170, "kg"),
  1086. name: "Side",
  1087. image: {
  1088. source: "./media/characters/runnola/side.svg",
  1089. extra: 741 / 448,
  1090. bottom: 0.05
  1091. }
  1092. },
  1093. },
  1094. [
  1095. {
  1096. name: "Small",
  1097. height: math.unit(3, "feet")
  1098. },
  1099. {
  1100. name: "Normal",
  1101. height: math.unit(5 + 5 / 12, "feet"),
  1102. default: true
  1103. },
  1104. {
  1105. name: "Big",
  1106. height: math.unit(10, "feet")
  1107. },
  1108. ]
  1109. ))
  1110. characterMakers.push(() => makeCharacter(
  1111. { name: "Kurribird" },
  1112. {
  1113. front: {
  1114. height: math.unit(2, "meter"),
  1115. weight: math.unit(50, "kg"),
  1116. name: "Front",
  1117. image: {
  1118. source: "./media/characters/kurribird/front.svg",
  1119. bottom: 0.015
  1120. }
  1121. },
  1122. frontAlt: {
  1123. height: math.unit(1.5, "meter"),
  1124. weight: math.unit(50, "kg"),
  1125. name: "Front (Alt)",
  1126. image: {
  1127. source: "./media/characters/kurribird/front-alt.svg",
  1128. extra: 1.45
  1129. }
  1130. },
  1131. },
  1132. [
  1133. {
  1134. name: "Normal",
  1135. height: math.unit(7, "feet")
  1136. },
  1137. {
  1138. name: "Big",
  1139. height: math.unit(12, "feet"),
  1140. default: true
  1141. },
  1142. {
  1143. name: "Macro",
  1144. height: math.unit(1500, "feet")
  1145. },
  1146. {
  1147. name: "Megamacro",
  1148. height: math.unit(2, "miles")
  1149. }
  1150. ]
  1151. ))
  1152. characterMakers.push(() => makeCharacter(
  1153. { name: "Elbial" },
  1154. {
  1155. front: {
  1156. height: math.unit(2, "meter"),
  1157. weight: math.unit(80, "kg"),
  1158. name: "Front",
  1159. image: {
  1160. source: "./media/characters/elbial/front.svg",
  1161. extra: 1643/1556,
  1162. bottom: 60.2/1696
  1163. }
  1164. },
  1165. side: {
  1166. height: math.unit(2, "meter"),
  1167. weight: math.unit(80, "kg"),
  1168. name: "Side",
  1169. image: {
  1170. source: "./media/characters/elbial/side.svg",
  1171. extra: 1630/1565,
  1172. bottom: 71.5/1697
  1173. }
  1174. },
  1175. back: {
  1176. height: math.unit(2, "meter"),
  1177. weight: math.unit(80, "kg"),
  1178. name: "Back",
  1179. image: {
  1180. source: "./media/characters/elbial/back.svg",
  1181. extra: 1668/1595,
  1182. bottom: 5.6/1672
  1183. }
  1184. },
  1185. frontDressed: {
  1186. height: math.unit(2, "meter"),
  1187. weight: math.unit(80, "kg"),
  1188. name: "Front (Dressed)",
  1189. image: {
  1190. source: "./media/characters/elbial/front-dressed.svg",
  1191. extra: 1653/1584,
  1192. bottom: 57/1708
  1193. }
  1194. },
  1195. genitals: {
  1196. height: math.unit(2/3.367, "meter"),
  1197. name: "Genitals",
  1198. image: {
  1199. source: "./media/characters/elbial/genitals.svg"
  1200. }
  1201. },
  1202. },
  1203. [
  1204. {
  1205. name: "Large",
  1206. height: math.unit(100, "feet")
  1207. },
  1208. {
  1209. name: "Macro",
  1210. height: math.unit(500, "feet"),
  1211. default: true
  1212. },
  1213. {
  1214. name: "Megamacro",
  1215. height: math.unit(10, "miles")
  1216. },
  1217. {
  1218. name: "Gigamacro",
  1219. height: math.unit(25000, "miles")
  1220. },
  1221. {
  1222. name: "Full-Size",
  1223. height: math.unit(8000000, "gigaparsecs")
  1224. }
  1225. ]
  1226. ))
  1227. characterMakers.push(() => makeCharacter(
  1228. { name: "Noah" },
  1229. {
  1230. front: {
  1231. height: math.unit(2, "meter"),
  1232. weight: math.unit(60, "kg"),
  1233. name: "Front",
  1234. image: {
  1235. source: "./media/characters/noah/front.svg"
  1236. }
  1237. },
  1238. talons: {
  1239. height: math.unit(0.315, "meter"),
  1240. name: "Talons",
  1241. image: {
  1242. source: "./media/characters/noah/talons.svg"
  1243. }
  1244. }
  1245. },
  1246. [
  1247. {
  1248. name: "Large",
  1249. height: math.unit(50, "feet")
  1250. },
  1251. {
  1252. name: "Macro",
  1253. height: math.unit(750, "feet"),
  1254. default: true
  1255. },
  1256. {
  1257. name: "Megamacro",
  1258. height: math.unit(50, "miles")
  1259. },
  1260. {
  1261. name: "Gigamacro",
  1262. height: math.unit(100000, "miles")
  1263. },
  1264. {
  1265. name: "Full-Size",
  1266. height: math.unit(3000000000, "miles")
  1267. }
  1268. ]
  1269. ))
  1270. characterMakers.push(() => makeCharacter(
  1271. { name: "Natalya" },
  1272. {
  1273. front: {
  1274. height: math.unit(2, "meter"),
  1275. weight: math.unit(80, "kg"),
  1276. name: "Front",
  1277. image: {
  1278. source: "./media/characters/natalya/front.svg"
  1279. }
  1280. },
  1281. back: {
  1282. height: math.unit(2, "meter"),
  1283. weight: math.unit(80, "kg"),
  1284. name: "Back",
  1285. image: {
  1286. source: "./media/characters/natalya/back.svg"
  1287. }
  1288. }
  1289. },
  1290. [
  1291. {
  1292. name: "Normal",
  1293. height: math.unit(150, "feet"),
  1294. default: true
  1295. },
  1296. {
  1297. name: "Megamacro",
  1298. height: math.unit(5, "miles")
  1299. },
  1300. {
  1301. name: "Full-Size",
  1302. height: math.unit(600, "kiloparsecs")
  1303. }
  1304. ]
  1305. ))
  1306. characterMakers.push(() => makeCharacter(
  1307. { name: "Erestrebah" },
  1308. {
  1309. front: {
  1310. height: math.unit(2, "meter"),
  1311. weight: math.unit(50, "kg"),
  1312. name: "Front",
  1313. image: {
  1314. source: "./media/characters/erestrebah/front.svg",
  1315. extra: 208 / 193,
  1316. bottom: 0.055
  1317. }
  1318. },
  1319. back: {
  1320. height: math.unit(2, "meter"),
  1321. weight: math.unit(50, "kg"),
  1322. name: "Back",
  1323. image: {
  1324. source: "./media/characters/erestrebah/back.svg",
  1325. extra: 1.3
  1326. }
  1327. }
  1328. },
  1329. [
  1330. {
  1331. name: "Normal",
  1332. height: math.unit(10, "feet")
  1333. },
  1334. {
  1335. name: "Large",
  1336. height: math.unit(50, "feet"),
  1337. default: true
  1338. },
  1339. {
  1340. name: "Macro",
  1341. height: math.unit(300, "feet")
  1342. },
  1343. {
  1344. name: "Macro+",
  1345. height: math.unit(750, "feet")
  1346. },
  1347. {
  1348. name: "Megamacro",
  1349. height: math.unit(3, "miles")
  1350. }
  1351. ]
  1352. ))
  1353. characterMakers.push(() => makeCharacter(
  1354. { name: "Jennifer" },
  1355. {
  1356. front: {
  1357. height: math.unit(2, "meter"),
  1358. weight: math.unit(80, "kg"),
  1359. name: "Front",
  1360. image: {
  1361. source: "./media/characters/jennifer/front.svg",
  1362. bottom: 0.11,
  1363. extra: 1.16
  1364. }
  1365. },
  1366. frontAlt: {
  1367. height: math.unit(2, "meter"),
  1368. weight: math.unit(80, "kg"),
  1369. name: "Front (Alt)",
  1370. image: {
  1371. source: "./media/characters/jennifer/front-alt.svg"
  1372. }
  1373. }
  1374. },
  1375. [
  1376. {
  1377. name: "Canon Height",
  1378. height: math.unit(120, "feet"),
  1379. default: true
  1380. },
  1381. {
  1382. name: "Macro+",
  1383. height: math.unit(300, "feet")
  1384. },
  1385. {
  1386. name: "Megamacro",
  1387. height: math.unit(20000, "feet")
  1388. }
  1389. ]
  1390. ))
  1391. characterMakers.push(() => makeCharacter(
  1392. { name: "Kalista" },
  1393. {
  1394. front: {
  1395. height: math.unit(2, "meter"),
  1396. weight: math.unit(50, "kg"),
  1397. name: "Front",
  1398. image: {
  1399. source: "./media/characters/kalista/front.svg",
  1400. extra: 1947 / 1700
  1401. }
  1402. },
  1403. back: {
  1404. height: math.unit(2, "meter"),
  1405. weight: math.unit(50, "kg"),
  1406. name: "Back",
  1407. image: {
  1408. source: "./media/characters/kalista/back.svg",
  1409. extra: 1366 / 1156
  1410. }
  1411. }
  1412. },
  1413. [
  1414. {
  1415. name: "Uncomfortably Small",
  1416. height: math.unit(10, "feet")
  1417. },
  1418. {
  1419. name: "Small",
  1420. height: math.unit(30, "feet")
  1421. },
  1422. {
  1423. name: "Macro",
  1424. height: math.unit(100, "feet"),
  1425. default: true
  1426. },
  1427. {
  1428. name: "Macro+",
  1429. height: math.unit(2000, "feet")
  1430. },
  1431. {
  1432. name: "True Form",
  1433. height: math.unit(8924, "miles")
  1434. }
  1435. ]
  1436. ))
  1437. characterMakers.push(() => makeCharacter(
  1438. { name: "GiantGrowingVixen" },
  1439. {
  1440. front: {
  1441. height: math.unit(2, "meter"),
  1442. weight: math.unit(120, "kg"),
  1443. name: "Front",
  1444. image: {
  1445. source: "./media/characters/ggv/front.svg"
  1446. }
  1447. },
  1448. side: {
  1449. height: math.unit(2, "meter"),
  1450. weight: math.unit(120, "kg"),
  1451. name: "Side",
  1452. image: {
  1453. source: "./media/characters/ggv/side.svg"
  1454. }
  1455. }
  1456. },
  1457. [
  1458. {
  1459. name: "Extremely Puny",
  1460. height: math.unit(9 + 5 / 12, "feet")
  1461. },
  1462. {
  1463. name: "Horribly Small",
  1464. height: math.unit(47.7, "miles"),
  1465. default: true
  1466. },
  1467. {
  1468. name: "Reasonably Sized",
  1469. height: math.unit(25000, "parsecs")
  1470. },
  1471. {
  1472. name: "Slightly Uncompressed",
  1473. height: math.unit(7.77e31, "parsecs")
  1474. },
  1475. {
  1476. name: "Omniversal",
  1477. height: math.unit(1e300, "meters")
  1478. },
  1479. ]
  1480. ))
  1481. characterMakers.push(() => makeCharacter(
  1482. { name: "Napalm" },
  1483. {
  1484. front: {
  1485. height: math.unit(2, "meter"),
  1486. weight: math.unit(75, "lb"),
  1487. name: "Front",
  1488. image: {
  1489. source: "./media/characters/napalm/front.svg"
  1490. }
  1491. },
  1492. back: {
  1493. height: math.unit(2, "meter"),
  1494. weight: math.unit(75, "lb"),
  1495. name: "Back",
  1496. image: {
  1497. source: "./media/characters/napalm/back.svg"
  1498. }
  1499. }
  1500. },
  1501. [
  1502. {
  1503. name: "Standard",
  1504. height: math.unit(55, "feet"),
  1505. default: true
  1506. }
  1507. ]
  1508. ))
  1509. characterMakers.push(() => makeCharacter(
  1510. { name: "Asana" },
  1511. {
  1512. front: {
  1513. height: math.unit(7 + 5 / 6, "feet"),
  1514. weight: math.unit(325, "lb"),
  1515. name: "Front",
  1516. image: {
  1517. source: "./media/characters/asana/front.svg",
  1518. extra: 1128 / 1068
  1519. }
  1520. },
  1521. back: {
  1522. height: math.unit(7 + 5 / 6, "feet"),
  1523. weight: math.unit(325, "lb"),
  1524. name: "Back",
  1525. image: {
  1526. source: "./media/characters/asana/back.svg",
  1527. extra: 1128 / 1068
  1528. }
  1529. },
  1530. },
  1531. [
  1532. {
  1533. name: "Standard",
  1534. height: math.unit(7 + 5 / 6, "feet"),
  1535. default: true
  1536. },
  1537. {
  1538. name: "Large",
  1539. height: math.unit(10, "meters")
  1540. },
  1541. {
  1542. name: "Macro",
  1543. height: math.unit(2500, "meters")
  1544. },
  1545. {
  1546. name: "Megamacro",
  1547. height: math.unit(5e6, "meters")
  1548. },
  1549. {
  1550. name: "Examacro",
  1551. height: math.unit(5e12, "lightyears")
  1552. },
  1553. {
  1554. name: "Max Size",
  1555. height: math.unit(1e31, "lightyears")
  1556. }
  1557. ]
  1558. ))
  1559. characterMakers.push(() => makeCharacter(
  1560. { name: "Ebony" },
  1561. {
  1562. front: {
  1563. height: math.unit(2, "meter"),
  1564. weight: math.unit(60, "kg"),
  1565. name: "Front",
  1566. image: {
  1567. source: "./media/characters/ebony/front.svg",
  1568. bottom: 0.03,
  1569. extra: 1045 / 810 + 0.03
  1570. }
  1571. },
  1572. side: {
  1573. height: math.unit(2, "meter"),
  1574. weight: math.unit(60, "kg"),
  1575. name: "Side",
  1576. image: {
  1577. source: "./media/characters/ebony/side.svg",
  1578. bottom: 0.03,
  1579. extra: 1045 / 810 + 0.03
  1580. }
  1581. },
  1582. back: {
  1583. height: math.unit(2, "meter"),
  1584. weight: math.unit(60, "kg"),
  1585. name: "Back",
  1586. image: {
  1587. source: "./media/characters/ebony/back.svg",
  1588. bottom: 0.01,
  1589. extra: 1045 / 810 + 0.01
  1590. }
  1591. },
  1592. },
  1593. [
  1594. // TODO check why I did this lol
  1595. {
  1596. name: "Standard",
  1597. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1598. default: true
  1599. },
  1600. {
  1601. name: "Macro",
  1602. height: math.unit(200, "feet")
  1603. },
  1604. {
  1605. name: "Gigamacro",
  1606. height: math.unit(13000, "km")
  1607. }
  1608. ]
  1609. ))
  1610. characterMakers.push(() => makeCharacter(
  1611. { name: "Mountain" },
  1612. {
  1613. front: {
  1614. height: math.unit(6, "feet"),
  1615. weight: math.unit(175, "lb"),
  1616. name: "Front",
  1617. image: {
  1618. source: "./media/characters/mountain/front.svg"
  1619. }
  1620. },
  1621. back: {
  1622. height: math.unit(6, "feet"),
  1623. weight: math.unit(175, "lb"),
  1624. name: "Back",
  1625. image: {
  1626. source: "./media/characters/mountain/back.svg"
  1627. }
  1628. },
  1629. },
  1630. [
  1631. {
  1632. name: "Large",
  1633. height: math.unit(20, "meters")
  1634. },
  1635. {
  1636. name: "Macro",
  1637. height: math.unit(300, "meters")
  1638. },
  1639. {
  1640. name: "Gigamacro",
  1641. height: math.unit(10000, "km"),
  1642. default: true
  1643. },
  1644. {
  1645. name: "Examacro",
  1646. height: math.unit(10e9, "lightyears")
  1647. }
  1648. ]
  1649. ))
  1650. characterMakers.push(() => makeCharacter(
  1651. { name: "Rick" },
  1652. {
  1653. front: {
  1654. height: math.unit(8, "feet"),
  1655. weight: math.unit(500, "lb"),
  1656. name: "Front",
  1657. image: {
  1658. source: "./media/characters/rick/front.svg"
  1659. }
  1660. }
  1661. },
  1662. [
  1663. {
  1664. name: "Normal",
  1665. height: math.unit(8, "feet"),
  1666. default: true
  1667. },
  1668. {
  1669. name: "Macro",
  1670. height: math.unit(5, "km")
  1671. }
  1672. ]
  1673. ))
  1674. characterMakers.push(() => makeCharacter(
  1675. { name: "Ona" },
  1676. {
  1677. front: {
  1678. height: math.unit(8, "feet"),
  1679. weight: math.unit(120, "lb"),
  1680. name: "Front",
  1681. image: {
  1682. source: "./media/characters/ona/front.svg"
  1683. }
  1684. },
  1685. frontAlt: {
  1686. height: math.unit(8, "feet"),
  1687. weight: math.unit(120, "lb"),
  1688. name: "Front (Alt)",
  1689. image: {
  1690. source: "./media/characters/ona/front-alt.svg"
  1691. }
  1692. },
  1693. back: {
  1694. height: math.unit(8, "feet"),
  1695. weight: math.unit(120, "lb"),
  1696. name: "Back",
  1697. image: {
  1698. source: "./media/characters/ona/back.svg"
  1699. }
  1700. },
  1701. foot: {
  1702. height: math.unit(1.1, "feet"),
  1703. name: "Foot",
  1704. image: {
  1705. source: "./media/characters/ona/foot.svg"
  1706. }
  1707. }
  1708. },
  1709. [
  1710. {
  1711. name: "Megamacro",
  1712. height: math.unit(70, "km"),
  1713. default: true
  1714. },
  1715. {
  1716. name: "Gigamacro",
  1717. height: math.unit(681818, "miles")
  1718. },
  1719. {
  1720. name: "Examacro",
  1721. height: math.unit(3800000, "lightyears")
  1722. },
  1723. ]
  1724. ))
  1725. characterMakers.push(() => makeCharacter(
  1726. { name: "Mech" },
  1727. {
  1728. front: {
  1729. height: math.unit(12, "feet"),
  1730. weight: math.unit(3000, "lb"),
  1731. name: "Front",
  1732. image: {
  1733. source: "./media/characters/mech/front.svg",
  1734. bottom: 0.025,
  1735. }
  1736. },
  1737. back: {
  1738. height: math.unit(12, "feet"),
  1739. weight: math.unit(3000, "lb"),
  1740. name: "Back",
  1741. image: {
  1742. source: "./media/characters/mech/back.svg",
  1743. bottom: 0.03,
  1744. }
  1745. }
  1746. },
  1747. [
  1748. {
  1749. name: "Normal",
  1750. height: math.unit(12, "feet")
  1751. },
  1752. {
  1753. name: "Macro",
  1754. height: math.unit(300, "feet"),
  1755. default: true
  1756. },
  1757. {
  1758. name: "Macro+",
  1759. height: math.unit(1500, "feet")
  1760. },
  1761. ]
  1762. ))
  1763. characterMakers.push(() => makeCharacter(
  1764. { name: "Gregory" },
  1765. {
  1766. front: {
  1767. height: math.unit(1.3, "meter"),
  1768. weight: math.unit(30, "kg"),
  1769. name: "Front",
  1770. image: {
  1771. source: "./media/characters/gregory/front.svg",
  1772. }
  1773. }
  1774. },
  1775. [
  1776. {
  1777. name: "Normal",
  1778. height: math.unit(1.3, "meter"),
  1779. default: true
  1780. },
  1781. {
  1782. name: "Macro",
  1783. height: math.unit(20, "meter")
  1784. }
  1785. ]
  1786. ))
  1787. characterMakers.push(() => makeCharacter(
  1788. { name: "Elory" },
  1789. {
  1790. front: {
  1791. height: math.unit(2.8, "meter"),
  1792. weight: math.unit(200, "kg"),
  1793. name: "Front",
  1794. image: {
  1795. source: "./media/characters/elory/front.svg",
  1796. }
  1797. }
  1798. },
  1799. [
  1800. {
  1801. name: "Normal",
  1802. height: math.unit(2.8, "meter"),
  1803. default: true
  1804. },
  1805. {
  1806. name: "Macro",
  1807. height: math.unit(38, "meter")
  1808. }
  1809. ]
  1810. ))
  1811. characterMakers.push(() => makeCharacter(
  1812. { name: "Angelpatamon" },
  1813. {
  1814. front: {
  1815. height: math.unit(470, "feet"),
  1816. weight: math.unit(924, "tons"),
  1817. name: "Front",
  1818. image: {
  1819. source: "./media/characters/angelpatamon/front.svg",
  1820. }
  1821. }
  1822. },
  1823. [
  1824. {
  1825. name: "Normal",
  1826. height: math.unit(470, "feet"),
  1827. default: true
  1828. },
  1829. {
  1830. name: "Deity Size I",
  1831. height: math.unit(28651.2, "km")
  1832. },
  1833. {
  1834. name: "Deity Size II",
  1835. height: math.unit(171907.2, "km")
  1836. }
  1837. ]
  1838. ))
  1839. characterMakers.push(() => makeCharacter(
  1840. { name: "Cryae" },
  1841. {
  1842. side: {
  1843. height: math.unit(7.2, "meter"),
  1844. weight: math.unit(8.2, "tons"),
  1845. name: "Side",
  1846. image: {
  1847. source: "./media/characters/cryae/side.svg",
  1848. extra: 3500 / 1500
  1849. }
  1850. }
  1851. },
  1852. [
  1853. {
  1854. name: "Normal",
  1855. height: math.unit(7.2, "meter"),
  1856. default: true
  1857. }
  1858. ]
  1859. ))
  1860. characterMakers.push(() => makeCharacter(
  1861. { name: "Xera" },
  1862. {
  1863. front: {
  1864. height: math.unit(6, "feet"),
  1865. weight: math.unit(175, "lb"),
  1866. name: "Front",
  1867. image: {
  1868. source: "./media/characters/xera/front.svg",
  1869. extra: 2300 / 2061
  1870. }
  1871. },
  1872. side: {
  1873. height: math.unit(6, "feet"),
  1874. weight: math.unit(175, "lb"),
  1875. name: "Side",
  1876. image: {
  1877. source: "./media/characters/xera/side.svg",
  1878. extra: 2300 / 2061
  1879. }
  1880. },
  1881. back: {
  1882. height: math.unit(6, "feet"),
  1883. weight: math.unit(175, "lb"),
  1884. name: "Back",
  1885. image: {
  1886. source: "./media/characters/xera/back.svg"
  1887. }
  1888. },
  1889. },
  1890. [
  1891. {
  1892. name: "Small",
  1893. height: math.unit(10, "feet")
  1894. },
  1895. {
  1896. name: "Macro",
  1897. height: math.unit(500, "meters"),
  1898. default: true
  1899. },
  1900. {
  1901. name: "Macro+",
  1902. height: math.unit(10, "km")
  1903. },
  1904. {
  1905. name: "Gigamacro",
  1906. height: math.unit(25000, "km")
  1907. },
  1908. {
  1909. name: "Teramacro",
  1910. height: math.unit(3e6, "km")
  1911. }
  1912. ]
  1913. ))
  1914. characterMakers.push(() => makeCharacter(
  1915. { name: "Nebula" },
  1916. {
  1917. front: {
  1918. height: math.unit(6, "feet"),
  1919. weight: math.unit(175, "lb"),
  1920. name: "Front",
  1921. image: {
  1922. source: "./media/characters/nebula/front.svg",
  1923. extra: 2600 / 2450
  1924. }
  1925. }
  1926. },
  1927. [
  1928. {
  1929. name: "Small",
  1930. height: math.unit(4.5, "meters")
  1931. },
  1932. {
  1933. name: "Macro",
  1934. height: math.unit(1500, "meters"),
  1935. default: true
  1936. },
  1937. {
  1938. name: "Megamacro",
  1939. height: math.unit(150, "km")
  1940. },
  1941. {
  1942. name: "Gigamacro",
  1943. height: math.unit(27000, "km")
  1944. }
  1945. ]
  1946. ))
  1947. characterMakers.push(() => makeCharacter(
  1948. { name: "Abysgar" },
  1949. {
  1950. front: {
  1951. height: math.unit(6, "feet"),
  1952. weight: math.unit(225, "lb"),
  1953. name: "Front",
  1954. image: {
  1955. source: "./media/characters/abysgar/front.svg"
  1956. }
  1957. }
  1958. },
  1959. [
  1960. {
  1961. name: "Small",
  1962. height: math.unit(4.5, "meters")
  1963. },
  1964. {
  1965. name: "Macro",
  1966. height: math.unit(1250, "meters"),
  1967. default: true
  1968. },
  1969. {
  1970. name: "Megamacro",
  1971. height: math.unit(125, "km")
  1972. },
  1973. {
  1974. name: "Gigamacro",
  1975. height: math.unit(26000, "km")
  1976. }
  1977. ]
  1978. ))
  1979. characterMakers.push(() => makeCharacter(
  1980. { name: "Yakuz" },
  1981. {
  1982. front: {
  1983. height: math.unit(6, "feet"),
  1984. weight: math.unit(180, "lb"),
  1985. name: "Front",
  1986. image: {
  1987. source: "./media/characters/yakuz/front.svg"
  1988. }
  1989. }
  1990. },
  1991. [
  1992. {
  1993. name: "Small",
  1994. height: math.unit(5, "meters")
  1995. },
  1996. {
  1997. name: "Macro",
  1998. height: math.unit(1500, "meters"),
  1999. default: true
  2000. },
  2001. {
  2002. name: "Megamacro",
  2003. height: math.unit(200, "km")
  2004. },
  2005. {
  2006. name: "Gigamacro",
  2007. height: math.unit(100000, "km")
  2008. }
  2009. ]
  2010. ))
  2011. characterMakers.push(() => makeCharacter(
  2012. { name: "Mirova" },
  2013. {
  2014. front: {
  2015. height: math.unit(6, "feet"),
  2016. weight: math.unit(175, "lb"),
  2017. name: "Front",
  2018. image: {
  2019. source: "./media/characters/mirova/front.svg"
  2020. }
  2021. }
  2022. },
  2023. [
  2024. {
  2025. name: "Small",
  2026. height: math.unit(5, "meters")
  2027. },
  2028. {
  2029. name: "Macro",
  2030. height: math.unit(900, "meters"),
  2031. default: true
  2032. },
  2033. {
  2034. name: "Megamacro",
  2035. height: math.unit(135, "km")
  2036. },
  2037. {
  2038. name: "Gigamacro",
  2039. height: math.unit(20000, "km")
  2040. }
  2041. ]
  2042. ))
  2043. characterMakers.push(() => makeCharacter(
  2044. { name: "Asana (Mech)" },
  2045. {
  2046. side: {
  2047. height: math.unit(28.35, "feet"),
  2048. weight: math.unit(99.75, "tons"),
  2049. name: "Side",
  2050. image: {
  2051. source: "./media/characters/asana-mech/side.svg"
  2052. }
  2053. }
  2054. },
  2055. [
  2056. {
  2057. name: "Normal",
  2058. height: math.unit(28.35, "feet"),
  2059. default: true
  2060. },
  2061. {
  2062. name: "Macro",
  2063. height: math.unit(2500, "feet")
  2064. },
  2065. {
  2066. name: "Megamacro",
  2067. height: math.unit(25, "miles")
  2068. },
  2069. {
  2070. name: "Examacro",
  2071. height: math.unit(6e8, "lightyears")
  2072. },
  2073. ]
  2074. ))
  2075. characterMakers.push(() => makeCharacter(
  2076. { name: "Ashtrek" },
  2077. {
  2078. front: {
  2079. height: math.unit(2, "meters"),
  2080. weight: math.unit(70, "kg"),
  2081. name: "Front",
  2082. image: {
  2083. source: "./media/characters/ashtrek/front.svg",
  2084. extra: 560 / 524,
  2085. bottom: 0.01
  2086. }
  2087. },
  2088. frontArmor: {
  2089. height: math.unit(2, "meters"),
  2090. weight: math.unit(76, "kg"),
  2091. name: "Front (Armor)",
  2092. image: {
  2093. source: "./media/characters/ashtrek/front-armor.svg",
  2094. extra: 561 / 527,
  2095. bottom: 0.01
  2096. }
  2097. },
  2098. side: {
  2099. height: math.unit(2, "meters"),
  2100. weight: math.unit(70, "kg"),
  2101. name: "Side",
  2102. image: {
  2103. source: "./media/characters/ashtrek/side.svg",
  2104. extra: 1717 / 1609,
  2105. bottom: 0.005
  2106. }
  2107. },
  2108. back: {
  2109. height: math.unit(2, "meters"),
  2110. weight: math.unit(70, "kg"),
  2111. name: "Back",
  2112. image: {
  2113. source: "./media/characters/ashtrek/back.svg",
  2114. extra: 1570 / 1501
  2115. }
  2116. },
  2117. },
  2118. [
  2119. {
  2120. name: "DEFCON 5",
  2121. height: math.unit(5, "meters")
  2122. },
  2123. {
  2124. name: "DEFCON 4",
  2125. height: math.unit(500, "meters"),
  2126. default: true
  2127. },
  2128. {
  2129. name: "DEFCON 3",
  2130. height: math.unit(5, "km")
  2131. },
  2132. {
  2133. name: "DEFCON 2",
  2134. height: math.unit(500, "km")
  2135. },
  2136. {
  2137. name: "DEFCON 1",
  2138. height: math.unit(500000, "km")
  2139. },
  2140. {
  2141. name: "DEFCON 0",
  2142. height: math.unit(3, "gigaparsecs")
  2143. },
  2144. ]
  2145. ))
  2146. characterMakers.push(() => makeCharacter(
  2147. { name: "Gale" },
  2148. {
  2149. front: {
  2150. height: math.unit(2, "meters"),
  2151. weight: math.unit(76, "kg"),
  2152. name: "Front",
  2153. image: {
  2154. source: "./media/characters/gale/front.svg"
  2155. }
  2156. },
  2157. frontAlt1: {
  2158. height: math.unit(2, "meters"),
  2159. weight: math.unit(76, "kg"),
  2160. name: "Front (Alt 1)",
  2161. image: {
  2162. source: "./media/characters/gale/front-alt-1.svg"
  2163. }
  2164. },
  2165. frontAlt2: {
  2166. height: math.unit(2, "meters"),
  2167. weight: math.unit(76, "kg"),
  2168. name: "Front (Alt 2)",
  2169. image: {
  2170. source: "./media/characters/gale/front-alt-2.svg"
  2171. }
  2172. },
  2173. },
  2174. [
  2175. {
  2176. name: "Normal",
  2177. height: math.unit(7, "feet")
  2178. },
  2179. {
  2180. name: "Macro",
  2181. height: math.unit(150, "feet"),
  2182. default: true
  2183. },
  2184. {
  2185. name: "Macro+",
  2186. height: math.unit(300, "feet")
  2187. },
  2188. ]
  2189. ))
  2190. characterMakers.push(() => makeCharacter(
  2191. { name: "Draylen" },
  2192. {
  2193. front: {
  2194. height: math.unit(2, "meters"),
  2195. weight: math.unit(76, "kg"),
  2196. name: "Front",
  2197. image: {
  2198. source: "./media/characters/draylen/front.svg"
  2199. }
  2200. }
  2201. },
  2202. [
  2203. {
  2204. name: "Macro",
  2205. height: math.unit(150, "feet"),
  2206. default: true
  2207. }
  2208. ]
  2209. ))
  2210. characterMakers.push(() => makeCharacter(
  2211. { name: "Chez" },
  2212. {
  2213. front: {
  2214. height: math.unit(7 + 9 / 12, "feet"),
  2215. weight: math.unit(379, "lbs"),
  2216. name: "Front",
  2217. image: {
  2218. source: "./media/characters/chez/front.svg"
  2219. }
  2220. },
  2221. side: {
  2222. height: math.unit(7 + 9 / 12, "feet"),
  2223. weight: math.unit(379, "lbs"),
  2224. name: "Side",
  2225. image: {
  2226. source: "./media/characters/chez/side.svg"
  2227. }
  2228. }
  2229. },
  2230. [
  2231. {
  2232. name: "Normal",
  2233. height: math.unit(7 + 9 / 12, "feet"),
  2234. default: true
  2235. },
  2236. {
  2237. name: "God King",
  2238. height: math.unit(9750000, "meters")
  2239. }
  2240. ]
  2241. ))
  2242. characterMakers.push(() => makeCharacter(
  2243. { name: "Kaylum" },
  2244. {
  2245. front: {
  2246. height: math.unit(6, "feet"),
  2247. weight: math.unit(275, "lbs"),
  2248. name: "Front",
  2249. image: {
  2250. source: "./media/characters/kaylum/front.svg",
  2251. bottom: 0.01,
  2252. extra: 1166 / 1031
  2253. }
  2254. },
  2255. frontWingless: {
  2256. height: math.unit(6, "feet"),
  2257. weight: math.unit(275, "lbs"),
  2258. name: "Front (Wingless)",
  2259. image: {
  2260. source: "./media/characters/kaylum/front-wingless.svg",
  2261. bottom: 0.01,
  2262. extra: 1117 / 1031
  2263. }
  2264. }
  2265. },
  2266. [
  2267. {
  2268. name: "Normal",
  2269. height: math.unit(3.05, "meters")
  2270. },
  2271. {
  2272. name: "Master",
  2273. height: math.unit(5.5, "meters")
  2274. },
  2275. {
  2276. name: "Rampage",
  2277. height: math.unit(19, "meters")
  2278. },
  2279. {
  2280. name: "Macro Lite",
  2281. height: math.unit(37, "meters")
  2282. },
  2283. {
  2284. name: "Hyper Predator",
  2285. height: math.unit(61, "meters")
  2286. },
  2287. {
  2288. name: "Macro",
  2289. height: math.unit(138, "meters"),
  2290. default: true
  2291. }
  2292. ]
  2293. ))
  2294. characterMakers.push(() => makeCharacter(
  2295. { name: "Geta" },
  2296. {
  2297. front: {
  2298. height: math.unit(6, "feet"),
  2299. weight: math.unit(150, "lbs"),
  2300. name: "Front",
  2301. image: {
  2302. source: "./media/characters/geta/front.svg"
  2303. }
  2304. }
  2305. },
  2306. [
  2307. {
  2308. name: "Micro",
  2309. height: math.unit(3, "inches"),
  2310. default: true
  2311. },
  2312. {
  2313. name: "Normal",
  2314. height: math.unit(5 + 5 / 12, "feet")
  2315. }
  2316. ]
  2317. ))
  2318. characterMakers.push(() => makeCharacter(
  2319. { name: "Tyrnn" },
  2320. {
  2321. front: {
  2322. height: math.unit(6, "feet"),
  2323. weight: math.unit(300, "lbs"),
  2324. name: "Front",
  2325. image: {
  2326. source: "./media/characters/tyrnn/front.svg"
  2327. }
  2328. }
  2329. },
  2330. [
  2331. {
  2332. name: "Main Height",
  2333. height: math.unit(355, "feet"),
  2334. default: true
  2335. },
  2336. {
  2337. name: "Fave. Height",
  2338. height: math.unit(2400, "feet")
  2339. }
  2340. ]
  2341. ))
  2342. characterMakers.push(() => makeCharacter(
  2343. { name: "Apple" },
  2344. {
  2345. front: {
  2346. height: math.unit(6, "feet"),
  2347. weight: math.unit(300, "lbs"),
  2348. name: "Front",
  2349. image: {
  2350. source: "./media/characters/appledectomy/front.svg"
  2351. }
  2352. }
  2353. },
  2354. [
  2355. {
  2356. name: "Macro",
  2357. height: math.unit(2500, "feet")
  2358. },
  2359. {
  2360. name: "Megamacro",
  2361. height: math.unit(50, "miles"),
  2362. default: true
  2363. },
  2364. {
  2365. name: "Gigamacro",
  2366. height: math.unit(5000, "miles")
  2367. },
  2368. {
  2369. name: "Teramacro",
  2370. height: math.unit(250000, "miles")
  2371. },
  2372. ]
  2373. ))
  2374. characterMakers.push(() => makeCharacter(
  2375. { name: "Vulpes" },
  2376. {
  2377. front: {
  2378. height: math.unit(6, "feet"),
  2379. weight: math.unit(200, "lbs"),
  2380. name: "Front",
  2381. image: {
  2382. source: "./media/characters/vulpes/front.svg",
  2383. extra: 573 / 543,
  2384. bottom: 0.033
  2385. }
  2386. },
  2387. side: {
  2388. height: math.unit(6, "feet"),
  2389. weight: math.unit(200, "lbs"),
  2390. name: "Side",
  2391. image: {
  2392. source: "./media/characters/vulpes/side.svg",
  2393. extra: 573 / 543,
  2394. bottom: 0.01
  2395. }
  2396. },
  2397. back: {
  2398. height: math.unit(6, "feet"),
  2399. weight: math.unit(200, "lbs"),
  2400. name: "Back",
  2401. image: {
  2402. source: "./media/characters/vulpes/back.svg",
  2403. extra: 573 / 543,
  2404. }
  2405. },
  2406. feet: {
  2407. height: math.unit(1.276, "feet"),
  2408. name: "Feet",
  2409. image: {
  2410. source: "./media/characters/vulpes/feet.svg"
  2411. }
  2412. },
  2413. maw: {
  2414. height: math.unit(1.18, "feet"),
  2415. name: "Maw",
  2416. image: {
  2417. source: "./media/characters/vulpes/maw.svg"
  2418. }
  2419. },
  2420. },
  2421. [
  2422. {
  2423. name: "Micro",
  2424. height: math.unit(2, "inches")
  2425. },
  2426. {
  2427. name: "Normal",
  2428. height: math.unit(6.3, "feet")
  2429. },
  2430. {
  2431. name: "Macro",
  2432. height: math.unit(850, "feet")
  2433. },
  2434. {
  2435. name: "Megamacro",
  2436. height: math.unit(7500, "feet"),
  2437. default: true
  2438. },
  2439. {
  2440. name: "Gigamacro",
  2441. height: math.unit(570000, "miles")
  2442. }
  2443. ]
  2444. ))
  2445. characterMakers.push(() => makeCharacter(
  2446. { name: "Rain Fallen" },
  2447. {
  2448. front: {
  2449. height: math.unit(6, "feet"),
  2450. weight: math.unit(210, "lbs"),
  2451. name: "Front",
  2452. image: {
  2453. source: "./media/characters/rain-fallen/front.svg"
  2454. }
  2455. },
  2456. side: {
  2457. height: math.unit(6, "feet"),
  2458. weight: math.unit(210, "lbs"),
  2459. name: "Side",
  2460. image: {
  2461. source: "./media/characters/rain-fallen/side.svg"
  2462. }
  2463. },
  2464. back: {
  2465. height: math.unit(6, "feet"),
  2466. weight: math.unit(210, "lbs"),
  2467. name: "Back",
  2468. image: {
  2469. source: "./media/characters/rain-fallen/back.svg"
  2470. }
  2471. },
  2472. feral: {
  2473. height: math.unit(9, "feet"),
  2474. weight: math.unit(700, "lbs"),
  2475. name: "Feral",
  2476. image: {
  2477. source: "./media/characters/rain-fallen/feral.svg"
  2478. }
  2479. },
  2480. },
  2481. [
  2482. {
  2483. name: "Normal",
  2484. height: math.unit(5, "meter")
  2485. },
  2486. {
  2487. name: "Macro",
  2488. height: math.unit(150, "meter"),
  2489. default: true
  2490. },
  2491. {
  2492. name: "Megamacro",
  2493. height: math.unit(278e6, "meter")
  2494. },
  2495. {
  2496. name: "Gigamacro",
  2497. height: math.unit(2e9, "meter")
  2498. },
  2499. {
  2500. name: "Teramacro",
  2501. height: math.unit(8e12, "meter")
  2502. },
  2503. {
  2504. name: "Devourer",
  2505. height: math.unit(14, "zettameters")
  2506. },
  2507. {
  2508. name: "Scarlet King",
  2509. height: math.unit(18, "yottameters")
  2510. },
  2511. {
  2512. name: "Void",
  2513. height: math.unit(6.66e66, "yottameters")
  2514. }
  2515. ]
  2516. ))
  2517. characterMakers.push(() => makeCharacter(
  2518. { name: "Zaakira" },
  2519. {
  2520. standing: {
  2521. height: math.unit(6, "feet"),
  2522. weight: math.unit(180, "lbs"),
  2523. name: "Standing",
  2524. image: {
  2525. source: "./media/characters/zaakira/standing.svg"
  2526. }
  2527. },
  2528. laying: {
  2529. height: math.unit(3, "feet"),
  2530. weight: math.unit(180, "lbs"),
  2531. name: "Laying",
  2532. image: {
  2533. source: "./media/characters/zaakira/laying.svg"
  2534. }
  2535. },
  2536. },
  2537. [
  2538. {
  2539. name: "Normal",
  2540. height: math.unit(12, "feet")
  2541. },
  2542. {
  2543. name: "Macro",
  2544. height: math.unit(279, "feet"),
  2545. default: true
  2546. }
  2547. ]
  2548. ))
  2549. characterMakers.push(() => makeCharacter(
  2550. { name: "Sigvald" },
  2551. {
  2552. front: {
  2553. height: math.unit(6, "feet"),
  2554. weight: math.unit(250, "lbs"),
  2555. name: "Front",
  2556. image: {
  2557. source: "./media/characters/sigvald/front.svg",
  2558. extra: 1000 / 850
  2559. }
  2560. },
  2561. back: {
  2562. height: math.unit(6, "feet"),
  2563. weight: math.unit(250, "lbs"),
  2564. name: "Back",
  2565. image: {
  2566. source: "./media/characters/sigvald/back.svg"
  2567. }
  2568. },
  2569. },
  2570. [
  2571. {
  2572. name: "Normal",
  2573. height: math.unit(8, "feet")
  2574. },
  2575. {
  2576. name: "Large",
  2577. height: math.unit(12, "feet")
  2578. },
  2579. {
  2580. name: "Larger",
  2581. height: math.unit(20, "feet")
  2582. },
  2583. {
  2584. name: "Macro",
  2585. height: math.unit(150, "feet")
  2586. },
  2587. {
  2588. name: "Macro+",
  2589. height: math.unit(200, "feet"),
  2590. default: true
  2591. },
  2592. ]
  2593. ))
  2594. characterMakers.push(() => makeCharacter(
  2595. { name: "Scott" },
  2596. {
  2597. side: {
  2598. height: math.unit(12, "feet"),
  2599. weight: math.unit(3000, "lbs"),
  2600. name: "Side",
  2601. image: {
  2602. source: "./media/characters/scott/side.svg",
  2603. extra: 1,
  2604. bottom: 0.069
  2605. }
  2606. },
  2607. upright: {
  2608. height: math.unit(12, "feet"),
  2609. weight: math.unit(3000, "lbs"),
  2610. name: "Upright",
  2611. image: {
  2612. source: "./media/characters/scott/upright.svg",
  2613. extra: 1,
  2614. bottom: 0.05
  2615. }
  2616. },
  2617. },
  2618. [
  2619. {
  2620. name: "Normal",
  2621. height: math.unit(12, "feet"),
  2622. default: true
  2623. },
  2624. ]
  2625. ))
  2626. characterMakers.push(() => makeCharacter(
  2627. { name: "Tobias" },
  2628. {
  2629. side: {
  2630. height: math.unit(8, "meters"),
  2631. weight: math.unit(84755, "lbs"),
  2632. name: "Side",
  2633. image: {
  2634. source: "./media/characters/tobias/side.svg",
  2635. extra: 1474 / 1096,
  2636. bottom: 38.9/1513.1235
  2637. }
  2638. },
  2639. },
  2640. [
  2641. {
  2642. name: "Normal",
  2643. height: math.unit(8, "meters"),
  2644. default: true
  2645. },
  2646. ]
  2647. ))
  2648. characterMakers.push(() => makeCharacter(
  2649. { name: "Kieran" },
  2650. {
  2651. front: {
  2652. height: math.unit(5.5, "feet"),
  2653. weight: math.unit(400, "lbs"),
  2654. name: "Front",
  2655. image: {
  2656. source: "./media/characters/kieran/front.svg",
  2657. extra: 1.05
  2658. }
  2659. },
  2660. side: {
  2661. height: math.unit(5.5, "feet"),
  2662. weight: math.unit(400, "lbs"),
  2663. name: "Side",
  2664. image: {
  2665. source: "./media/characters/kieran/side.svg",
  2666. extra: 950 / 850
  2667. }
  2668. },
  2669. },
  2670. [
  2671. {
  2672. name: "Normal",
  2673. height: math.unit(5.5, "feet"),
  2674. default: true
  2675. },
  2676. ]
  2677. ))
  2678. characterMakers.push(() => makeCharacter(
  2679. { name: "Sanya" },
  2680. {
  2681. side: {
  2682. height: math.unit(2, "meters"),
  2683. weight: math.unit(70, "kg"),
  2684. name: "Side",
  2685. image: {
  2686. source: "./media/characters/sanya/side.svg",
  2687. bottom: 0.02,
  2688. extra: 1.02
  2689. }
  2690. },
  2691. },
  2692. [
  2693. {
  2694. name: "Small",
  2695. height: math.unit(2, "meters")
  2696. },
  2697. {
  2698. name: "Normal",
  2699. height: math.unit(3, "meters")
  2700. },
  2701. {
  2702. name: "Macro",
  2703. height: math.unit(16, "meters"),
  2704. default: true
  2705. },
  2706. ]
  2707. ))
  2708. characterMakers.push(() => makeCharacter(
  2709. { name: "Miranda" },
  2710. {
  2711. side: {
  2712. height: math.unit(2, "meters"),
  2713. weight: math.unit(120, "kg"),
  2714. name: "Front",
  2715. image: {
  2716. source: "./media/characters/miranda/front.svg",
  2717. extra: 10.6 / 10
  2718. }
  2719. },
  2720. },
  2721. [
  2722. {
  2723. name: "Normal",
  2724. height: math.unit(10, "feet"),
  2725. default: true
  2726. }
  2727. ]
  2728. ))
  2729. characterMakers.push(() => makeCharacter(
  2730. { name: "James" },
  2731. {
  2732. side: {
  2733. height: math.unit(2, "meters"),
  2734. weight: math.unit(100, "kg"),
  2735. name: "Front",
  2736. image: {
  2737. source: "./media/characters/james/front.svg",
  2738. extra: 10 / 8.5
  2739. }
  2740. },
  2741. },
  2742. [
  2743. {
  2744. name: "Normal",
  2745. height: math.unit(8.5, "feet"),
  2746. default: true
  2747. }
  2748. ]
  2749. ))
  2750. characterMakers.push(() => makeCharacter(
  2751. { name: "Heather" },
  2752. {
  2753. side: {
  2754. height: math.unit(9.5, "feet"),
  2755. weight: math.unit(2500, "lbs"),
  2756. name: "Side",
  2757. image: {
  2758. source: "./media/characters/heather/side.svg"
  2759. }
  2760. },
  2761. },
  2762. [
  2763. {
  2764. name: "Normal",
  2765. height: math.unit(9.5, "feet"),
  2766. default: true
  2767. }
  2768. ]
  2769. ))
  2770. characterMakers.push(() => makeCharacter(
  2771. { name: "Lukas" },
  2772. {
  2773. side: {
  2774. height: math.unit(6.5, "feet"),
  2775. weight: math.unit(400, "lbs"),
  2776. name: "Side",
  2777. image: {
  2778. source: "./media/characters/lukas/side.svg",
  2779. extra: 7.25 / 6.5
  2780. }
  2781. },
  2782. },
  2783. [
  2784. {
  2785. name: "Normal",
  2786. height: math.unit(6.5, "feet"),
  2787. default: true
  2788. }
  2789. ]
  2790. ))
  2791. characterMakers.push(() => makeCharacter(
  2792. { name: "Louise" },
  2793. {
  2794. side: {
  2795. height: math.unit(5, "feet"),
  2796. weight: math.unit(3000, "lbs"),
  2797. name: "Side",
  2798. image: {
  2799. source: "./media/characters/louise/side.svg"
  2800. }
  2801. },
  2802. },
  2803. [
  2804. {
  2805. name: "Normal",
  2806. height: math.unit(5, "feet"),
  2807. default: true
  2808. }
  2809. ]
  2810. ))
  2811. characterMakers.push(() => makeCharacter(
  2812. { name: "Ramona" },
  2813. {
  2814. side: {
  2815. height: math.unit(6, "feet"),
  2816. weight: math.unit(150, "lbs"),
  2817. name: "Side",
  2818. image: {
  2819. source: "./media/characters/ramona/side.svg"
  2820. }
  2821. },
  2822. },
  2823. [
  2824. {
  2825. name: "Normal",
  2826. height: math.unit(5.3, "meters"),
  2827. default: true
  2828. },
  2829. {
  2830. name: "Macro",
  2831. height: math.unit(20, "stories")
  2832. },
  2833. {
  2834. name: "Macro+",
  2835. height: math.unit(50, "stories")
  2836. },
  2837. ]
  2838. ))
  2839. characterMakers.push(() => makeCharacter(
  2840. { name: "Deerpuff" },
  2841. {
  2842. standing: {
  2843. height: math.unit(5.75, "feet"),
  2844. weight: math.unit(160, "lbs"),
  2845. name: "Standing",
  2846. image: {
  2847. source: "./media/characters/deerpuff/standing.svg",
  2848. extra: 682 / 624
  2849. }
  2850. },
  2851. sitting: {
  2852. height: math.unit(5.75 / 1.79, "feet"),
  2853. weight: math.unit(160, "lbs"),
  2854. name: "Sitting",
  2855. image: {
  2856. source: "./media/characters/deerpuff/sitting.svg",
  2857. bottom: 44 / 400,
  2858. extra: 1
  2859. }
  2860. },
  2861. taurLaying: {
  2862. height: math.unit(6, "feet"),
  2863. weight: math.unit(400, "lbs"),
  2864. name: "Taur (Laying)",
  2865. image: {
  2866. source: "./media/characters/deerpuff/taur-laying.svg"
  2867. }
  2868. },
  2869. },
  2870. [
  2871. {
  2872. name: "Puffball",
  2873. height: math.unit(6, "inches")
  2874. },
  2875. {
  2876. name: "Normalpuff",
  2877. height: math.unit(5.75, "feet")
  2878. },
  2879. {
  2880. name: "Macropuff",
  2881. height: math.unit(1500, "feet"),
  2882. default: true
  2883. },
  2884. {
  2885. name: "Megapuff",
  2886. height: math.unit(500, "miles")
  2887. },
  2888. {
  2889. name: "Gigapuff",
  2890. height: math.unit(250000, "miles")
  2891. },
  2892. {
  2893. name: "Omegapuff",
  2894. height: math.unit(1000, "lightyears")
  2895. },
  2896. ]
  2897. ))
  2898. characterMakers.push(() => makeCharacter(
  2899. { name: "Vivian" },
  2900. {
  2901. stomping: {
  2902. height: math.unit(6, "feet"),
  2903. weight: math.unit(170, "lbs"),
  2904. name: "Stomping",
  2905. image: {
  2906. source: "./media/characters/vivian/stomping.svg"
  2907. }
  2908. },
  2909. sitting: {
  2910. height: math.unit(6 / 1.75, "feet"),
  2911. weight: math.unit(170, "lbs"),
  2912. name: "Sitting",
  2913. image: {
  2914. source: "./media/characters/vivian/sitting.svg",
  2915. bottom: 1 / 6.4,
  2916. extra: 1,
  2917. }
  2918. },
  2919. },
  2920. [
  2921. {
  2922. name: "Normal",
  2923. height: math.unit(7, "feet"),
  2924. default: true
  2925. },
  2926. {
  2927. name: "Macro",
  2928. height: math.unit(10, "stories")
  2929. },
  2930. {
  2931. name: "Macro+",
  2932. height: math.unit(30, "stories")
  2933. },
  2934. {
  2935. name: "Megamacro",
  2936. height: math.unit(10, "miles")
  2937. },
  2938. {
  2939. name: "Megamacro+",
  2940. height: math.unit(2750000, "meters")
  2941. },
  2942. ]
  2943. ))
  2944. characterMakers.push(() => makeCharacter(
  2945. { name: "Prince" },
  2946. {
  2947. front: {
  2948. height: math.unit(6, "feet"),
  2949. weight: math.unit(160, "lbs"),
  2950. name: "Front",
  2951. image: {
  2952. source: "./media/characters/prince/front.svg",
  2953. extra: 3400 / 3000
  2954. }
  2955. },
  2956. jumping: {
  2957. height: math.unit(6, "feet"),
  2958. weight: math.unit(160, "lbs"),
  2959. name: "Jumping",
  2960. image: {
  2961. source: "./media/characters/prince/jump.svg",
  2962. extra: 2555 / 2134
  2963. }
  2964. },
  2965. },
  2966. [
  2967. {
  2968. name: "Normal",
  2969. height: math.unit(7.75, "feet"),
  2970. default: true
  2971. },
  2972. {
  2973. name: "Not cute",
  2974. height: math.unit(17, "feet")
  2975. },
  2976. {
  2977. name: "I said NOT",
  2978. height: math.unit(91, "feet")
  2979. },
  2980. {
  2981. name: "Please stop",
  2982. height: math.unit(560, "feet")
  2983. },
  2984. {
  2985. name: "What have you done",
  2986. height: math.unit(2200, "feet")
  2987. },
  2988. {
  2989. name: "Deer God",
  2990. height: math.unit(3.6, "miles")
  2991. },
  2992. ]
  2993. ))
  2994. characterMakers.push(() => makeCharacter(
  2995. { name: "Psymon" },
  2996. {
  2997. standing: {
  2998. height: math.unit(6, "feet"),
  2999. weight: math.unit(300, "lbs"),
  3000. name: "Standing",
  3001. image: {
  3002. source: "./media/characters/psymon/standing.svg",
  3003. extra: 1888 / 1810,
  3004. bottom: 0.05
  3005. }
  3006. },
  3007. slithering: {
  3008. height: math.unit(6, "feet"),
  3009. weight: math.unit(300, "lbs"),
  3010. name: "Slithering",
  3011. image: {
  3012. source: "./media/characters/psymon/slithering.svg",
  3013. extra: 1330 / 1224
  3014. }
  3015. },
  3016. slitheringAlt: {
  3017. height: math.unit(6, "feet"),
  3018. weight: math.unit(300, "lbs"),
  3019. name: "Slithering (Alt)",
  3020. image: {
  3021. source: "./media/characters/psymon/slithering-alt.svg",
  3022. extra: 1330 / 1224
  3023. }
  3024. },
  3025. },
  3026. [
  3027. {
  3028. name: "Normal",
  3029. height: math.unit(11.25, "feet"),
  3030. default: true
  3031. },
  3032. {
  3033. name: "Large",
  3034. height: math.unit(27, "feet")
  3035. },
  3036. {
  3037. name: "Giant",
  3038. height: math.unit(87, "feet")
  3039. },
  3040. {
  3041. name: "Macro",
  3042. height: math.unit(365, "feet")
  3043. },
  3044. {
  3045. name: "Megamacro",
  3046. height: math.unit(3, "miles")
  3047. },
  3048. {
  3049. name: "World Serpent",
  3050. height: math.unit(8000, "miles")
  3051. },
  3052. ]
  3053. ))
  3054. characterMakers.push(() => makeCharacter(
  3055. { name: "Daimos" },
  3056. {
  3057. front: {
  3058. height: math.unit(6, "feet"),
  3059. weight: math.unit(180, "lbs"),
  3060. name: "Front",
  3061. image: {
  3062. source: "./media/characters/daimos/front.svg",
  3063. extra: 4160 / 3897,
  3064. bottom: 0.021
  3065. }
  3066. }
  3067. },
  3068. [
  3069. {
  3070. name: "Normal",
  3071. height: math.unit(8, "feet"),
  3072. default: true
  3073. },
  3074. {
  3075. name: "Big Dog",
  3076. height: math.unit(22, "feet")
  3077. },
  3078. {
  3079. name: "Macro",
  3080. height: math.unit(127, "feet")
  3081. },
  3082. {
  3083. name: "Megamacro",
  3084. height: math.unit(3600, "feet")
  3085. },
  3086. ]
  3087. ))
  3088. characterMakers.push(() => makeCharacter(
  3089. { name: "Blake" },
  3090. {
  3091. side: {
  3092. height: math.unit(6, "feet"),
  3093. weight: math.unit(180, "lbs"),
  3094. name: "Side",
  3095. image: {
  3096. source: "./media/characters/blake/side.svg",
  3097. extra: 1212 / 1120,
  3098. bottom: 0.05
  3099. }
  3100. },
  3101. crouched: {
  3102. height: math.unit(6 * 0.57, "feet"),
  3103. weight: math.unit(180, "lbs"),
  3104. name: "Crouched",
  3105. image: {
  3106. source: "./media/characters/blake/crouched.svg",
  3107. extra: 840 / 587,
  3108. bottom: 0.04
  3109. }
  3110. },
  3111. bent: {
  3112. height: math.unit(6 * 0.75, "feet"),
  3113. weight: math.unit(180, "lbs"),
  3114. name: "Bent",
  3115. image: {
  3116. source: "./media/characters/blake/bent.svg",
  3117. extra: 592 / 544,
  3118. bottom: 0.035
  3119. }
  3120. },
  3121. },
  3122. [
  3123. {
  3124. name: "Normal",
  3125. height: math.unit(8 + 1 / 6, "feet"),
  3126. default: true
  3127. },
  3128. {
  3129. name: "Big Backside",
  3130. height: math.unit(37, "feet")
  3131. },
  3132. {
  3133. name: "Subway Shredder",
  3134. height: math.unit(72, "feet")
  3135. },
  3136. {
  3137. name: "City Carver",
  3138. height: math.unit(1675, "feet")
  3139. },
  3140. {
  3141. name: "Tectonic Tweaker",
  3142. height: math.unit(2300, "miles")
  3143. },
  3144. ]
  3145. ))
  3146. characterMakers.push(() => makeCharacter(
  3147. { name: "Guisetto" },
  3148. {
  3149. front: {
  3150. height: math.unit(6, "feet"),
  3151. weight: math.unit(180, "lbs"),
  3152. name: "Front",
  3153. image: {
  3154. source: "./media/characters/guisetto/front.svg",
  3155. extra: 856 / 817,
  3156. bottom: 0.06
  3157. }
  3158. },
  3159. airborne: {
  3160. height: math.unit(6, "feet"),
  3161. weight: math.unit(180, "lbs"),
  3162. name: "Airborne",
  3163. image: {
  3164. source: "./media/characters/guisetto/airborne.svg",
  3165. extra: 584 / 525
  3166. }
  3167. },
  3168. },
  3169. [
  3170. {
  3171. name: "Normal",
  3172. height: math.unit(10 + 11 / 12, "feet"),
  3173. default: true
  3174. },
  3175. {
  3176. name: "Large",
  3177. height: math.unit(35, "feet")
  3178. },
  3179. {
  3180. name: "Macro",
  3181. height: math.unit(475, "feet")
  3182. },
  3183. ]
  3184. ))
  3185. characterMakers.push(() => makeCharacter(
  3186. { name: "Luxor" },
  3187. {
  3188. front: {
  3189. height: math.unit(6, "feet"),
  3190. weight: math.unit(180, "lbs"),
  3191. name: "Front",
  3192. image: {
  3193. source: "./media/characters/luxor/front.svg",
  3194. extra: 2940 / 2152
  3195. }
  3196. },
  3197. back: {
  3198. height: math.unit(6, "feet"),
  3199. weight: math.unit(180, "lbs"),
  3200. name: "Back",
  3201. image: {
  3202. source: "./media/characters/luxor/back.svg",
  3203. extra: 1083 / 960
  3204. }
  3205. },
  3206. },
  3207. [
  3208. {
  3209. name: "Normal",
  3210. height: math.unit(5 + 5 / 6, "feet"),
  3211. default: true
  3212. },
  3213. {
  3214. name: "Lamp",
  3215. height: math.unit(50, "feet")
  3216. },
  3217. {
  3218. name: "Lämp",
  3219. height: math.unit(300, "feet")
  3220. },
  3221. {
  3222. name: "The sun is a lamp",
  3223. height: math.unit(250000, "miles")
  3224. },
  3225. ]
  3226. ))
  3227. characterMakers.push(() => makeCharacter(
  3228. { name: "Huoyan" },
  3229. {
  3230. front: {
  3231. height: math.unit(6, "feet"),
  3232. weight: math.unit(50, "lbs"),
  3233. name: "Front",
  3234. image: {
  3235. source: "./media/characters/huoyan/front.svg"
  3236. }
  3237. },
  3238. side: {
  3239. height: math.unit(6, "feet"),
  3240. weight: math.unit(180, "lbs"),
  3241. name: "Side",
  3242. image: {
  3243. source: "./media/characters/huoyan/side.svg"
  3244. }
  3245. },
  3246. },
  3247. [
  3248. {
  3249. name: "Chef",
  3250. height: math.unit(9, "feet")
  3251. },
  3252. {
  3253. name: "Normal",
  3254. height: math.unit(65, "feet"),
  3255. default: true
  3256. },
  3257. {
  3258. name: "Macro",
  3259. height: math.unit(780, "feet")
  3260. },
  3261. {
  3262. name: "Flaming Mountain",
  3263. height: math.unit(4.8, "miles")
  3264. },
  3265. {
  3266. name: "Celestial",
  3267. height: math.unit(765000, "miles")
  3268. },
  3269. ]
  3270. ))
  3271. characterMakers.push(() => makeCharacter(
  3272. { name: "Tails" },
  3273. {
  3274. front: {
  3275. height: math.unit(5 + 3 / 4, "feet"),
  3276. weight: math.unit(120, "lbs"),
  3277. name: "Front",
  3278. image: {
  3279. source: "./media/characters/tails/front.svg"
  3280. }
  3281. }
  3282. },
  3283. [
  3284. {
  3285. name: "Normal",
  3286. height: math.unit(5 + 3 / 4, "feet"),
  3287. default: true
  3288. }
  3289. ]
  3290. ))
  3291. characterMakers.push(() => makeCharacter(
  3292. { name: "Rainy" },
  3293. {
  3294. front: {
  3295. height: math.unit(4, "feet"),
  3296. weight: math.unit(50, "lbs"),
  3297. name: "Front",
  3298. image: {
  3299. source: "./media/characters/rainy/front.svg"
  3300. }
  3301. }
  3302. },
  3303. [
  3304. {
  3305. name: "Macro",
  3306. height: math.unit(800, "feet"),
  3307. default: true
  3308. }
  3309. ]
  3310. ))
  3311. characterMakers.push(() => makeCharacter(
  3312. { name: "Rainier" },
  3313. {
  3314. front: {
  3315. height: math.unit(6, "feet"),
  3316. weight: math.unit(150, "lbs"),
  3317. name: "Front",
  3318. image: {
  3319. source: "./media/characters/rainier/front.svg"
  3320. }
  3321. }
  3322. },
  3323. [
  3324. {
  3325. name: "Micro",
  3326. height: math.unit(2, "mm"),
  3327. default: true
  3328. }
  3329. ]
  3330. ))
  3331. characterMakers.push(() => makeCharacter(
  3332. { name: "Andy" },
  3333. {
  3334. front: {
  3335. height: math.unit(6, "feet"),
  3336. weight: math.unit(180, "lbs"),
  3337. name: "Front",
  3338. image: {
  3339. source: "./media/characters/andy/front.svg"
  3340. }
  3341. }
  3342. },
  3343. [
  3344. {
  3345. name: "Normal",
  3346. height: math.unit(8, "feet"),
  3347. default: true
  3348. },
  3349. {
  3350. name: "Macro",
  3351. height: math.unit(1000, "feet")
  3352. },
  3353. {
  3354. name: "Megamacro",
  3355. height: math.unit(5, "miles")
  3356. },
  3357. {
  3358. name: "Gigamacro",
  3359. height: math.unit(5000, "miles")
  3360. },
  3361. ]
  3362. ))
  3363. characterMakers.push(() => makeCharacter(
  3364. { name: "Cimmaron" },
  3365. {
  3366. frontClothed: {
  3367. height: math.unit(6, "feet"),
  3368. weight: math.unit(210, "lbs"),
  3369. name: "Front (Clothed)",
  3370. image: {
  3371. source: "./media/characters/cimmaron/front-clothed.svg",
  3372. extra: 701 / 676,
  3373. bottom: 0.046
  3374. }
  3375. },
  3376. backClothed: {
  3377. height: math.unit(6, "feet"),
  3378. weight: math.unit(210, "lbs"),
  3379. name: "Back (Clothed)",
  3380. image: {
  3381. source: "./media/characters/cimmaron/back-clothed.svg",
  3382. extra: 701 / 676,
  3383. bottom: 0.046
  3384. }
  3385. },
  3386. frontNude: {
  3387. height: math.unit(6, "feet"),
  3388. weight: math.unit(210, "lbs"),
  3389. name: "Front (Nude)",
  3390. image: {
  3391. source: "./media/characters/cimmaron/front-nude.svg",
  3392. extra: 701 / 676,
  3393. bottom: 0.046
  3394. }
  3395. },
  3396. backNude: {
  3397. height: math.unit(6, "feet"),
  3398. weight: math.unit(210, "lbs"),
  3399. name: "Back (Nude)",
  3400. image: {
  3401. source: "./media/characters/cimmaron/back-nude.svg",
  3402. extra: 701 / 676,
  3403. bottom: 0.046
  3404. }
  3405. }
  3406. },
  3407. [
  3408. {
  3409. name: "Normal",
  3410. height: math.unit(6, "feet"),
  3411. default: true
  3412. },
  3413. {
  3414. name: "Macro Mayor",
  3415. height: math.unit(350, "meters")
  3416. },
  3417. ]
  3418. ))
  3419. characterMakers.push(() => makeCharacter(
  3420. { name: "Akari Kaen" },
  3421. {
  3422. front: {
  3423. height: math.unit(6, "feet"),
  3424. weight: math.unit(200, "lbs"),
  3425. name: "Front",
  3426. image: {
  3427. source: "./media/characters/akari/front.svg",
  3428. extra: 962 / 901,
  3429. bottom: 0.04
  3430. }
  3431. }
  3432. },
  3433. [
  3434. {
  3435. name: "Micro",
  3436. height: math.unit(5, "inches"),
  3437. default: true
  3438. },
  3439. {
  3440. name: "Normal",
  3441. height: math.unit(7, "feet")
  3442. },
  3443. ]
  3444. ))
  3445. characterMakers.push(() => makeCharacter(
  3446. { name: "Cynosura" },
  3447. {
  3448. front: {
  3449. height: math.unit(6, "feet"),
  3450. weight: math.unit(140, "lbs"),
  3451. name: "Front",
  3452. image: {
  3453. source: "./media/characters/cynosura/front.svg",
  3454. extra: 896 / 847
  3455. }
  3456. },
  3457. back: {
  3458. height: math.unit(6, "feet"),
  3459. weight: math.unit(140, "lbs"),
  3460. name: "Back",
  3461. image: {
  3462. source: "./media/characters/cynosura/back.svg",
  3463. extra: 1365 / 1250
  3464. }
  3465. },
  3466. },
  3467. [
  3468. {
  3469. name: "Micro",
  3470. height: math.unit(4, "inches")
  3471. },
  3472. {
  3473. name: "Normal",
  3474. height: math.unit(5.75, "feet"),
  3475. default: true
  3476. },
  3477. {
  3478. name: "Tall",
  3479. height: math.unit(10, "feet")
  3480. },
  3481. {
  3482. name: "Big",
  3483. height: math.unit(20, "feet")
  3484. },
  3485. {
  3486. name: "Macro",
  3487. height: math.unit(50, "feet")
  3488. },
  3489. ]
  3490. ))
  3491. characterMakers.push(() => makeCharacter(
  3492. { name: "Gin" },
  3493. {
  3494. front: {
  3495. height: math.unit(6, "feet"),
  3496. weight: math.unit(170, "lbs"),
  3497. name: "Front",
  3498. image: {
  3499. source: "./media/characters/gin/front.svg",
  3500. extra: 1.053,
  3501. bottom: 0.025
  3502. }
  3503. },
  3504. foot: {
  3505. height: math.unit(6 / 4.25, "feet"),
  3506. name: "Foot",
  3507. image: {
  3508. source: "./media/characters/gin/foot.svg"
  3509. }
  3510. },
  3511. sole: {
  3512. height: math.unit(6 / 4.40, "feet"),
  3513. name: "Sole",
  3514. image: {
  3515. source: "./media/characters/gin/sole.svg"
  3516. }
  3517. },
  3518. },
  3519. [
  3520. {
  3521. name: "Normal",
  3522. height: math.unit(9 + 4 / 12, "feet")
  3523. },
  3524. {
  3525. name: "Macro",
  3526. height: math.unit(1500, "feet")
  3527. },
  3528. {
  3529. name: "Megamacro",
  3530. height: math.unit(200, "miles"),
  3531. default: true
  3532. },
  3533. {
  3534. name: "Gigamacro",
  3535. height: math.unit(500, "megameters")
  3536. },
  3537. {
  3538. name: "Teramacro",
  3539. height: math.unit(15, "lightyears")
  3540. }
  3541. ]
  3542. ))
  3543. characterMakers.push(() => makeCharacter(
  3544. { name: "Guy" },
  3545. {
  3546. front: {
  3547. height: math.unit(6 + 1 / 6, "feet"),
  3548. weight: math.unit(178, "lbs"),
  3549. name: "Front",
  3550. image: {
  3551. source: "./media/characters/guy/front.svg"
  3552. }
  3553. }
  3554. },
  3555. [
  3556. {
  3557. name: "Normal",
  3558. height: math.unit(6 + 1 / 6, "feet"),
  3559. default: true
  3560. },
  3561. {
  3562. name: "Large",
  3563. height: math.unit(25 + 7 / 12, "feet")
  3564. },
  3565. {
  3566. name: "Macro",
  3567. height: math.unit(60 + 9 / 12, "feet")
  3568. },
  3569. {
  3570. name: "Macro+",
  3571. height: math.unit(246, "feet")
  3572. },
  3573. {
  3574. name: "Macro++",
  3575. height: math.unit(878, "feet")
  3576. }
  3577. ]
  3578. ))
  3579. characterMakers.push(() => makeCharacter(
  3580. { name: "Tiberius" },
  3581. {
  3582. front: {
  3583. height: math.unit(9, "feet"),
  3584. weight: math.unit(800, "lbs"),
  3585. name: "Front",
  3586. image: {
  3587. source: "./media/characters/tiberius/front.svg",
  3588. extra: 2295 / 2071
  3589. }
  3590. },
  3591. back: {
  3592. height: math.unit(9, "feet"),
  3593. weight: math.unit(800, "lbs"),
  3594. name: "Back",
  3595. image: {
  3596. source: "./media/characters/tiberius/back.svg",
  3597. extra: 2373 / 2160
  3598. }
  3599. },
  3600. },
  3601. [
  3602. {
  3603. name: "Normal",
  3604. height: math.unit(9, "feet"),
  3605. default: true
  3606. }
  3607. ]
  3608. ))
  3609. characterMakers.push(() => makeCharacter(
  3610. { name: "Surgo" },
  3611. {
  3612. front: {
  3613. height: math.unit(6, "feet"),
  3614. weight: math.unit(600, "lbs"),
  3615. name: "Front",
  3616. image: {
  3617. source: "./media/characters/surgo/front.svg",
  3618. extra: 3591 / 2227
  3619. }
  3620. },
  3621. back: {
  3622. height: math.unit(6, "feet"),
  3623. weight: math.unit(600, "lbs"),
  3624. name: "Back",
  3625. image: {
  3626. source: "./media/characters/surgo/back.svg",
  3627. extra: 3557 / 2228
  3628. }
  3629. },
  3630. laying: {
  3631. height: math.unit(6 * 0.85, "feet"),
  3632. weight: math.unit(600, "lbs"),
  3633. name: "Laying",
  3634. image: {
  3635. source: "./media/characters/surgo/laying.svg"
  3636. }
  3637. },
  3638. },
  3639. [
  3640. {
  3641. name: "Normal",
  3642. height: math.unit(6, "feet"),
  3643. default: true
  3644. }
  3645. ]
  3646. ))
  3647. characterMakers.push(() => makeCharacter(
  3648. { name: "Cibus" },
  3649. {
  3650. side: {
  3651. height: math.unit(6, "feet"),
  3652. weight: math.unit(150, "lbs"),
  3653. name: "Side",
  3654. image: {
  3655. source: "./media/characters/cibus/side.svg",
  3656. extra: 800 / 400
  3657. }
  3658. },
  3659. },
  3660. [
  3661. {
  3662. name: "Normal",
  3663. height: math.unit(6, "feet"),
  3664. default: true
  3665. }
  3666. ]
  3667. ))
  3668. characterMakers.push(() => makeCharacter(
  3669. { name: "Nibbles" },
  3670. {
  3671. front: {
  3672. height: math.unit(6, "feet"),
  3673. weight: math.unit(240, "lbs"),
  3674. name: "Front",
  3675. image: {
  3676. source: "./media/characters/nibbles/front.svg"
  3677. }
  3678. },
  3679. side: {
  3680. height: math.unit(6, "feet"),
  3681. weight: math.unit(240, "lbs"),
  3682. name: "Side",
  3683. image: {
  3684. source: "./media/characters/nibbles/side.svg"
  3685. }
  3686. },
  3687. },
  3688. [
  3689. {
  3690. name: "Normal",
  3691. height: math.unit(9, "feet"),
  3692. default: true
  3693. }
  3694. ]
  3695. ))
  3696. characterMakers.push(() => makeCharacter(
  3697. { name: "Rikky" },
  3698. {
  3699. side: {
  3700. height: math.unit(5 + 1 / 6, "feet"),
  3701. weight: math.unit(130, "lbs"),
  3702. name: "Side",
  3703. image: {
  3704. source: "./media/characters/rikky/side.svg"
  3705. }
  3706. },
  3707. },
  3708. [
  3709. {
  3710. name: "Normal",
  3711. height: math.unit(5 + 1 / 6, "feet")
  3712. },
  3713. {
  3714. name: "Macro",
  3715. height: math.unit(152, "feet"),
  3716. default: true
  3717. },
  3718. {
  3719. name: "Megamacro",
  3720. height: math.unit(7, "miles")
  3721. }
  3722. ]
  3723. ))
  3724. characterMakers.push(() => makeCharacter(
  3725. { name: "Malfressa" },
  3726. {
  3727. side: {
  3728. height: math.unit(370, "cm"),
  3729. weight: math.unit(350, "lbs"),
  3730. name: "Side",
  3731. image: {
  3732. source: "./media/characters/malfressa/side.svg"
  3733. }
  3734. },
  3735. walking: {
  3736. height: math.unit(370, "cm"),
  3737. weight: math.unit(350, "lbs"),
  3738. name: "Walking",
  3739. image: {
  3740. source: "./media/characters/malfressa/walking.svg"
  3741. }
  3742. },
  3743. feral: {
  3744. height: math.unit(2500, "cm"),
  3745. weight: math.unit(100000, "lbs"),
  3746. name: "Feral",
  3747. image: {
  3748. source: "./media/characters/malfressa/feral.svg",
  3749. extra: 2108 / 837,
  3750. bottom: 0.02
  3751. }
  3752. },
  3753. },
  3754. [
  3755. {
  3756. name: "Normal",
  3757. height: math.unit(370, "cm")
  3758. },
  3759. {
  3760. name: "Macro",
  3761. height: math.unit(300, "meters"),
  3762. default: true
  3763. }
  3764. ]
  3765. ))
  3766. characterMakers.push(() => makeCharacter(
  3767. { name: "Jaro" },
  3768. {
  3769. front: {
  3770. height: math.unit(6, "feet"),
  3771. weight: math.unit(60, "kg"),
  3772. name: "Front",
  3773. image: {
  3774. source: "./media/characters/jaro/front.svg"
  3775. }
  3776. },
  3777. back: {
  3778. height: math.unit(6, "feet"),
  3779. weight: math.unit(60, "kg"),
  3780. name: "Back",
  3781. image: {
  3782. source: "./media/characters/jaro/back.svg"
  3783. }
  3784. },
  3785. },
  3786. [
  3787. {
  3788. name: "Micro",
  3789. height: math.unit(7, "inches")
  3790. },
  3791. {
  3792. name: "Normal",
  3793. height: math.unit(5.5, "feet"),
  3794. default: true
  3795. },
  3796. {
  3797. name: "Minimacro",
  3798. height: math.unit(20, "feet")
  3799. },
  3800. {
  3801. name: "Macro",
  3802. height: math.unit(200, "meters")
  3803. }
  3804. ]
  3805. ))
  3806. characterMakers.push(() => makeCharacter(
  3807. { name: "Rogue" },
  3808. {
  3809. front: {
  3810. height: math.unit(6, "feet"),
  3811. weight: math.unit(195, "lb"),
  3812. name: "Front",
  3813. image: {
  3814. source: "./media/characters/rogue/front.svg"
  3815. }
  3816. },
  3817. },
  3818. [
  3819. {
  3820. name: "Macro",
  3821. height: math.unit(90, "feet"),
  3822. default: true
  3823. },
  3824. ]
  3825. ))
  3826. characterMakers.push(() => makeCharacter(
  3827. { name: "Piper" },
  3828. {
  3829. front: {
  3830. height: math.unit(5 + 8 / 12, "feet"),
  3831. weight: math.unit(140, "lb"),
  3832. name: "Front",
  3833. image: {
  3834. source: "./media/characters/piper/front.svg",
  3835. extra: 3928 / 3681
  3836. }
  3837. },
  3838. },
  3839. [
  3840. {
  3841. name: "Micro",
  3842. height: math.unit(2, "inches")
  3843. },
  3844. {
  3845. name: "Normal",
  3846. height: math.unit(5 + 8 / 12, "feet")
  3847. },
  3848. {
  3849. name: "Macro",
  3850. height: math.unit(250, "feet"),
  3851. default: true
  3852. },
  3853. {
  3854. name: "Megamacro",
  3855. height: math.unit(7, "miles")
  3856. },
  3857. ]
  3858. ))
  3859. characterMakers.push(() => makeCharacter(
  3860. { name: "Gemini" },
  3861. {
  3862. front: {
  3863. height: math.unit(6, "feet"),
  3864. weight: math.unit(220, "lb"),
  3865. name: "Front",
  3866. image: {
  3867. source: "./media/characters/gemini/front.svg"
  3868. }
  3869. },
  3870. back: {
  3871. height: math.unit(6, "feet"),
  3872. weight: math.unit(220, "lb"),
  3873. name: "Back",
  3874. image: {
  3875. source: "./media/characters/gemini/back.svg"
  3876. }
  3877. },
  3878. kneeling: {
  3879. height: math.unit(6 / 1.5, "feet"),
  3880. weight: math.unit(220, "lb"),
  3881. name: "Kneeling",
  3882. image: {
  3883. source: "./media/characters/gemini/kneeling.svg",
  3884. bottom: 0.02
  3885. }
  3886. },
  3887. },
  3888. [
  3889. {
  3890. name: "Macro",
  3891. height: math.unit(300, "meters"),
  3892. default: true
  3893. },
  3894. {
  3895. name: "Megamacro",
  3896. height: math.unit(6900, "meters")
  3897. },
  3898. ]
  3899. ))
  3900. characterMakers.push(() => makeCharacter(
  3901. { name: "Alicia" },
  3902. {
  3903. anthro: {
  3904. height: math.unit(2.35, "meters"),
  3905. weight: math.unit(73, "kg"),
  3906. name: "Anthro",
  3907. image: {
  3908. source: "./media/characters/alicia/anthro.svg"
  3909. }
  3910. },
  3911. feral: {
  3912. height: math.unit(1.69, "meters"),
  3913. weight: math.unit(73, "kg"),
  3914. name: "Feral",
  3915. image: {
  3916. source: "./media/characters/alicia/feral.svg"
  3917. }
  3918. },
  3919. },
  3920. [
  3921. {
  3922. name: "Normal",
  3923. height: math.unit(2.35, "meters")
  3924. },
  3925. {
  3926. name: "Macro",
  3927. height: math.unit(60, "meters"),
  3928. default: true
  3929. },
  3930. {
  3931. name: "Megamacro",
  3932. height: math.unit(10000, "kilometers")
  3933. },
  3934. ]
  3935. ))
  3936. characterMakers.push(() => makeCharacter(
  3937. { name: "Archy" },
  3938. {
  3939. front: {
  3940. height: math.unit(7, "feet"),
  3941. weight: math.unit(250, "lbs"),
  3942. name: "Front",
  3943. image: {
  3944. source: "./media/characters/archy/front.svg"
  3945. }
  3946. }
  3947. },
  3948. [
  3949. {
  3950. name: "Micro",
  3951. height: math.unit(1, "inch")
  3952. },
  3953. {
  3954. name: "Shorty",
  3955. height: math.unit(5, "feet")
  3956. },
  3957. {
  3958. name: "Normal",
  3959. height: math.unit(7, "feet")
  3960. },
  3961. {
  3962. name: "Macro",
  3963. height: math.unit(600, "meters"),
  3964. default: true
  3965. },
  3966. {
  3967. name: "Megamacro",
  3968. height: math.unit(1, "mile")
  3969. },
  3970. ]
  3971. ))
  3972. characterMakers.push(() => makeCharacter(
  3973. { name: "Berri" },
  3974. {
  3975. front: {
  3976. height: math.unit(1.65, "meters"),
  3977. weight: math.unit(74, "kg"),
  3978. name: "Front",
  3979. image: {
  3980. source: "./media/characters/berri/front.svg"
  3981. }
  3982. }
  3983. },
  3984. [
  3985. {
  3986. name: "Normal",
  3987. height: math.unit(1.65, "meters")
  3988. },
  3989. {
  3990. name: "Macro",
  3991. height: math.unit(60, "m"),
  3992. default: true
  3993. },
  3994. {
  3995. name: "Megamacro",
  3996. height: math.unit(9.213, "km")
  3997. },
  3998. {
  3999. name: "Planet Eater",
  4000. height: math.unit(489, "megameters")
  4001. },
  4002. {
  4003. name: "Teramacro",
  4004. height: math.unit(2471635000000, "meters")
  4005. },
  4006. {
  4007. name: "Examacro",
  4008. height: math.unit(8.0624e+26, "meters")
  4009. }
  4010. ]
  4011. ))
  4012. characterMakers.push(() => makeCharacter(
  4013. { name: "Lexi" },
  4014. {
  4015. front: {
  4016. height: math.unit(1.72, "meters"),
  4017. weight: math.unit(68, "kg"),
  4018. name: "Front",
  4019. image: {
  4020. source: "./media/characters/lexi/front.svg"
  4021. }
  4022. }
  4023. },
  4024. [
  4025. {
  4026. name: "Very Smol",
  4027. height: math.unit(10, "mm")
  4028. },
  4029. {
  4030. name: "Micro",
  4031. height: math.unit(6.8, "cm"),
  4032. default: true
  4033. },
  4034. {
  4035. name: "Normal",
  4036. height: math.unit(1.72, "m")
  4037. }
  4038. ]
  4039. ))
  4040. characterMakers.push(() => makeCharacter(
  4041. { name: "Martin" },
  4042. {
  4043. front: {
  4044. height: math.unit(1.69, "meters"),
  4045. weight: math.unit(68, "kg"),
  4046. name: "Front",
  4047. image: {
  4048. source: "./media/characters/martin/front.svg",
  4049. extra: 596 / 581
  4050. }
  4051. }
  4052. },
  4053. [
  4054. {
  4055. name: "Micro",
  4056. height: math.unit(6.85, "cm"),
  4057. default: true
  4058. },
  4059. {
  4060. name: "Normal",
  4061. height: math.unit(1.69, "m")
  4062. }
  4063. ]
  4064. ))
  4065. characterMakers.push(() => makeCharacter(
  4066. { name: "Juno" },
  4067. {
  4068. front: {
  4069. height: math.unit(1.69, "meters"),
  4070. weight: math.unit(68, "kg"),
  4071. name: "Front",
  4072. image: {
  4073. source: "./media/characters/juno/front.svg"
  4074. }
  4075. }
  4076. },
  4077. [
  4078. {
  4079. name: "Micro",
  4080. height: math.unit(7, "cm")
  4081. },
  4082. {
  4083. name: "Normal",
  4084. height: math.unit(1.89, "m")
  4085. },
  4086. {
  4087. name: "Macro",
  4088. height: math.unit(353, "meters"),
  4089. default: true
  4090. }
  4091. ]
  4092. ))
  4093. characterMakers.push(() => makeCharacter(
  4094. { name: "Samantha" },
  4095. {
  4096. front: {
  4097. height: math.unit(1.93, "meters"),
  4098. weight: math.unit(83, "kg"),
  4099. name: "Front",
  4100. image: {
  4101. source: "./media/characters/samantha/front.svg"
  4102. }
  4103. },
  4104. frontClothed: {
  4105. height: math.unit(1.93, "meters"),
  4106. weight: math.unit(83, "kg"),
  4107. name: "Front (Clothed)",
  4108. image: {
  4109. source: "./media/characters/samantha/front-clothed.svg"
  4110. }
  4111. },
  4112. back: {
  4113. height: math.unit(1.93, "meters"),
  4114. weight: math.unit(83, "kg"),
  4115. name: "Back",
  4116. image: {
  4117. source: "./media/characters/samantha/back.svg"
  4118. }
  4119. },
  4120. },
  4121. [
  4122. {
  4123. name: "Normal",
  4124. height: math.unit(1.93, "m")
  4125. },
  4126. {
  4127. name: "Macro",
  4128. height: math.unit(74, "meters"),
  4129. default: true
  4130. },
  4131. {
  4132. name: "Macro+",
  4133. height: math.unit(223, "meters"),
  4134. },
  4135. {
  4136. name: "Megamacro",
  4137. height: math.unit(8381, "meters"),
  4138. },
  4139. {
  4140. name: "Megamacro+",
  4141. height: math.unit(12000, "kilometers")
  4142. },
  4143. ]
  4144. ))
  4145. characterMakers.push(() => makeCharacter(
  4146. { name: "Dr. Clay" },
  4147. {
  4148. front: {
  4149. height: math.unit(1.92, "meters"),
  4150. weight: math.unit(80, "kg"),
  4151. name: "Front",
  4152. image: {
  4153. source: "./media/characters/dr-clay/front.svg"
  4154. }
  4155. },
  4156. frontClothed: {
  4157. height: math.unit(1.92, "meters"),
  4158. weight: math.unit(80, "kg"),
  4159. name: "Front (Clothed)",
  4160. image: {
  4161. source: "./media/characters/dr-clay/front-clothed.svg"
  4162. }
  4163. }
  4164. },
  4165. [
  4166. {
  4167. name: "Normal",
  4168. height: math.unit(1.92, "m")
  4169. },
  4170. {
  4171. name: "Macro",
  4172. height: math.unit(214, "meters"),
  4173. default: true
  4174. },
  4175. {
  4176. name: "Macro+",
  4177. height: math.unit(12.237, "meters"),
  4178. },
  4179. {
  4180. name: "Megamacro",
  4181. height: math.unit(557, "megameters"),
  4182. },
  4183. {
  4184. name: "Unimaginable",
  4185. height: math.unit(120e9, "lightyears")
  4186. },
  4187. ]
  4188. ))
  4189. characterMakers.push(() => makeCharacter(
  4190. { name: "Wyvrn Ripsnarl" },
  4191. {
  4192. front: {
  4193. height: math.unit(2, "meters"),
  4194. weight: math.unit(80, "kg"),
  4195. name: "Front",
  4196. image: {
  4197. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4198. }
  4199. }
  4200. },
  4201. [
  4202. {
  4203. name: "Teramacro",
  4204. height: math.unit(500000, "lightyears"),
  4205. default: true
  4206. },
  4207. ]
  4208. ))
  4209. characterMakers.push(() => makeCharacter(
  4210. { name: "Vemus" },
  4211. {
  4212. front: {
  4213. height: math.unit(2, "meters"),
  4214. weight: math.unit(150, "kg"),
  4215. name: "Front",
  4216. image: {
  4217. source: "./media/characters/vemus/front.svg",
  4218. extra: 2384 / 2084,
  4219. bottom: 0.0123
  4220. }
  4221. }
  4222. },
  4223. [
  4224. {
  4225. name: "Normal",
  4226. height: math.unit(3.75, "meters"),
  4227. default: true
  4228. },
  4229. {
  4230. name: "Big",
  4231. height: math.unit(8, "meters")
  4232. },
  4233. {
  4234. name: "Macro",
  4235. height: math.unit(100, "meters")
  4236. },
  4237. {
  4238. name: "Macro+",
  4239. height: math.unit(1500, "meters")
  4240. },
  4241. {
  4242. name: "Stellar",
  4243. height: math.unit(14e8, "meters")
  4244. },
  4245. ]
  4246. ))
  4247. characterMakers.push(() => makeCharacter(
  4248. { name: "Beherit" },
  4249. {
  4250. front: {
  4251. height: math.unit(2, "meters"),
  4252. weight: math.unit(70, "kg"),
  4253. name: "Front",
  4254. image: {
  4255. source: "./media/characters/beherit/front.svg",
  4256. extra: 1408 / 1242
  4257. }
  4258. }
  4259. },
  4260. [
  4261. {
  4262. name: "Normal",
  4263. height: math.unit(6, "feet")
  4264. },
  4265. {
  4266. name: "Lorg",
  4267. height: math.unit(25, "feet"),
  4268. default: true
  4269. },
  4270. {
  4271. name: "Lorger",
  4272. height: math.unit(75, "feet")
  4273. },
  4274. {
  4275. name: "Macro",
  4276. height: math.unit(200, "meters")
  4277. },
  4278. ]
  4279. ))
  4280. characterMakers.push(() => makeCharacter(
  4281. { name: "Everett" },
  4282. {
  4283. front: {
  4284. height: math.unit(2, "meters"),
  4285. weight: math.unit(150, "kg"),
  4286. name: "Front",
  4287. image: {
  4288. source: "./media/characters/everett/front.svg",
  4289. extra: 2038 / 1737,
  4290. bottom: 0.03
  4291. }
  4292. },
  4293. paw: {
  4294. height: math.unit(2 / 3.6, "meters"),
  4295. name: "Paw",
  4296. image: {
  4297. source: "./media/characters/everett/paw.svg"
  4298. }
  4299. },
  4300. },
  4301. [
  4302. {
  4303. name: "Normal",
  4304. height: math.unit(15, "feet"),
  4305. default: true
  4306. },
  4307. {
  4308. name: "Lorg",
  4309. height: math.unit(70, "feet"),
  4310. default: true
  4311. },
  4312. {
  4313. name: "Lorger",
  4314. height: math.unit(250, "feet")
  4315. },
  4316. {
  4317. name: "Macro",
  4318. height: math.unit(500, "meters")
  4319. },
  4320. ]
  4321. ))
  4322. characterMakers.push(() => makeCharacter(
  4323. { name: "Rose Lion" },
  4324. {
  4325. front: {
  4326. height: math.unit(2, "meters"),
  4327. weight: math.unit(86, "kg"),
  4328. name: "Front",
  4329. image: {
  4330. source: "./media/characters/rose-lion/front.svg"
  4331. }
  4332. },
  4333. bent: {
  4334. height: math.unit(2 / 1.4288, "meters"),
  4335. weight: math.unit(86, "kg"),
  4336. name: "Bent",
  4337. image: {
  4338. source: "./media/characters/rose-lion/bent.svg"
  4339. }
  4340. }
  4341. },
  4342. [
  4343. {
  4344. name: "Mini-Micro",
  4345. height: math.unit(1, "cm")
  4346. },
  4347. {
  4348. name: "Micro",
  4349. height: math.unit(3.5, "inches"),
  4350. default: true
  4351. },
  4352. {
  4353. name: "Normal",
  4354. height: math.unit(6 + 1 / 6, "feet")
  4355. },
  4356. {
  4357. name: "Mini-Macro",
  4358. height: math.unit(9 + 10 / 12, "feet")
  4359. },
  4360. ]
  4361. ))
  4362. characterMakers.push(() => makeCharacter(
  4363. { name: "Regal" },
  4364. {
  4365. front: {
  4366. height: math.unit(2, "meters"),
  4367. weight: math.unit(350, "lbs"),
  4368. name: "Front",
  4369. image: {
  4370. source: "./media/characters/regal/front.svg"
  4371. }
  4372. },
  4373. back: {
  4374. height: math.unit(2, "meters"),
  4375. weight: math.unit(350, "lbs"),
  4376. name: "Back",
  4377. image: {
  4378. source: "./media/characters/regal/back.svg"
  4379. }
  4380. },
  4381. },
  4382. [
  4383. {
  4384. name: "Macro",
  4385. height: math.unit(350, "feet"),
  4386. default: true
  4387. }
  4388. ]
  4389. ))
  4390. characterMakers.push(() => makeCharacter(
  4391. { name: "Opal" },
  4392. {
  4393. front: {
  4394. height: math.unit(4 + 11 / 12, "feet"),
  4395. weight: math.unit(100, "lbs"),
  4396. name: "Front",
  4397. image: {
  4398. source: "./media/characters/opal/front.svg"
  4399. }
  4400. },
  4401. frontAlt: {
  4402. height: math.unit(4 + 11 / 12, "feet"),
  4403. weight: math.unit(100, "lbs"),
  4404. name: "Front (Alt)",
  4405. image: {
  4406. source: "./media/characters/opal/front-alt.svg"
  4407. }
  4408. },
  4409. },
  4410. [
  4411. {
  4412. name: "Small",
  4413. height: math.unit(4 + 11 / 12, "feet")
  4414. },
  4415. {
  4416. name: "Normal",
  4417. height: math.unit(20, "feet"),
  4418. default: true
  4419. },
  4420. {
  4421. name: "Macro",
  4422. height: math.unit(120, "feet")
  4423. },
  4424. {
  4425. name: "Megamacro",
  4426. height: math.unit(80, "miles")
  4427. },
  4428. {
  4429. name: "True Size",
  4430. height: math.unit(100000, "lightyears")
  4431. },
  4432. ]
  4433. ))
  4434. characterMakers.push(() => makeCharacter(
  4435. { name: "Vector Wuff" },
  4436. {
  4437. front: {
  4438. height: math.unit(6, "feet"),
  4439. weight: math.unit(200, "lbs"),
  4440. name: "Front",
  4441. image: {
  4442. source: "./media/characters/vector-wuff/front.svg"
  4443. }
  4444. }
  4445. },
  4446. [
  4447. {
  4448. name: "Normal",
  4449. height: math.unit(2.8, "meters")
  4450. },
  4451. {
  4452. name: "Macro",
  4453. height: math.unit(450, "meters"),
  4454. default: true
  4455. },
  4456. {
  4457. name: "Megamacro",
  4458. height: math.unit(15, "kilometers")
  4459. }
  4460. ]
  4461. ))
  4462. characterMakers.push(() => makeCharacter(
  4463. { name: "Dannik" },
  4464. {
  4465. front: {
  4466. height: math.unit(6, "feet"),
  4467. weight: math.unit(256, "lbs"),
  4468. name: "Front",
  4469. image: {
  4470. source: "./media/characters/dannik/front.svg"
  4471. }
  4472. }
  4473. },
  4474. [
  4475. {
  4476. name: "Macro",
  4477. height: math.unit(69.57, "meters"),
  4478. default: true
  4479. },
  4480. ]
  4481. ))
  4482. characterMakers.push(() => makeCharacter(
  4483. { name: "Azura Saharah" },
  4484. {
  4485. front: {
  4486. height: math.unit(6, "feet"),
  4487. weight: math.unit(120, "lbs"),
  4488. name: "Front",
  4489. image: {
  4490. source: "./media/characters/azura-saharah/front.svg"
  4491. }
  4492. },
  4493. back: {
  4494. height: math.unit(6, "feet"),
  4495. weight: math.unit(120, "lbs"),
  4496. name: "Back",
  4497. image: {
  4498. source: "./media/characters/azura-saharah/back.svg"
  4499. }
  4500. },
  4501. },
  4502. [
  4503. {
  4504. name: "Macro",
  4505. height: math.unit(100, "feet"),
  4506. default: true
  4507. },
  4508. ]
  4509. ))
  4510. characterMakers.push(() => makeCharacter(
  4511. { name: "Kennedy" },
  4512. {
  4513. side: {
  4514. height: math.unit(5 + 4 / 12, "feet"),
  4515. weight: math.unit(163, "lbs"),
  4516. name: "Side",
  4517. image: {
  4518. source: "./media/characters/kennedy/side.svg"
  4519. }
  4520. }
  4521. },
  4522. [
  4523. {
  4524. name: "Standard Doggo",
  4525. height: math.unit(5 + 4 / 12, "feet")
  4526. },
  4527. {
  4528. name: "Big Doggo",
  4529. height: math.unit(25 + 3 / 12, "feet"),
  4530. default: true
  4531. },
  4532. ]
  4533. ))
  4534. characterMakers.push(() => makeCharacter(
  4535. { name: "Odi Lunar" },
  4536. {
  4537. front: {
  4538. height: math.unit(6, "feet"),
  4539. weight: math.unit(90, "lbs"),
  4540. name: "Front",
  4541. image: {
  4542. source: "./media/characters/odi-lunar/front.svg"
  4543. }
  4544. }
  4545. },
  4546. [
  4547. {
  4548. name: "Micro",
  4549. height: math.unit(3, "inches"),
  4550. default: true
  4551. },
  4552. {
  4553. name: "Normal",
  4554. height: math.unit(5.5, "feet")
  4555. }
  4556. ]
  4557. ))
  4558. characterMakers.push(() => makeCharacter(
  4559. { name: "Mandake" },
  4560. {
  4561. back: {
  4562. height: math.unit(6, "feet"),
  4563. weight: math.unit(220, "lbs"),
  4564. name: "Back",
  4565. image: {
  4566. source: "./media/characters/mandake/back.svg"
  4567. }
  4568. }
  4569. },
  4570. [
  4571. {
  4572. name: "Normal",
  4573. height: math.unit(7, "feet"),
  4574. default: true
  4575. },
  4576. {
  4577. name: "Macro",
  4578. height: math.unit(78, "feet")
  4579. },
  4580. {
  4581. name: "Macro+",
  4582. height: math.unit(300, "meters")
  4583. },
  4584. {
  4585. name: "Macro++",
  4586. height: math.unit(2400, "feet")
  4587. },
  4588. {
  4589. name: "Megamacro",
  4590. height: math.unit(5167, "meters")
  4591. },
  4592. {
  4593. name: "Gigamacro",
  4594. height: math.unit(41769, "miles")
  4595. },
  4596. ]
  4597. ))
  4598. characterMakers.push(() => makeCharacter(
  4599. { name: "Yozey" },
  4600. {
  4601. front: {
  4602. height: math.unit(6, "feet"),
  4603. weight: math.unit(120, "lbs"),
  4604. name: "Front",
  4605. image: {
  4606. source: "./media/characters/yozey/front.svg"
  4607. }
  4608. },
  4609. frontAlt: {
  4610. height: math.unit(6, "feet"),
  4611. weight: math.unit(120, "lbs"),
  4612. name: "Front (Alt)",
  4613. image: {
  4614. source: "./media/characters/yozey/front-alt.svg"
  4615. }
  4616. },
  4617. side: {
  4618. height: math.unit(6, "feet"),
  4619. weight: math.unit(120, "lbs"),
  4620. name: "Side",
  4621. image: {
  4622. source: "./media/characters/yozey/side.svg"
  4623. }
  4624. },
  4625. },
  4626. [
  4627. {
  4628. name: "Micro",
  4629. height: math.unit(3, "inches"),
  4630. default: true
  4631. },
  4632. {
  4633. name: "Normal",
  4634. height: math.unit(6, "feet")
  4635. }
  4636. ]
  4637. ))
  4638. characterMakers.push(() => makeCharacter(
  4639. { name: "Valeska Voss" },
  4640. {
  4641. front: {
  4642. height: math.unit(6, "feet"),
  4643. weight: math.unit(103, "lbs"),
  4644. name: "Front",
  4645. image: {
  4646. source: "./media/characters/valeska-voss/front.svg"
  4647. }
  4648. }
  4649. },
  4650. [
  4651. {
  4652. name: "Mini-Sized Sub",
  4653. height: math.unit(3.1, "inches")
  4654. },
  4655. {
  4656. name: "Mid-Sized Sub",
  4657. height: math.unit(6.2, "inches")
  4658. },
  4659. {
  4660. name: "Full-Sized Sub",
  4661. height: math.unit(9.3, "inches")
  4662. },
  4663. {
  4664. name: "Normal",
  4665. height: math.unit(5 + 2 / 12, "foot"),
  4666. default: true
  4667. },
  4668. ]
  4669. ))
  4670. characterMakers.push(() => makeCharacter(
  4671. { name: "Gene Zeta" },
  4672. {
  4673. front: {
  4674. height: math.unit(6, "feet"),
  4675. weight: math.unit(160, "lbs"),
  4676. name: "Front",
  4677. image: {
  4678. source: "./media/characters/gene-zeta/front.svg",
  4679. bottom: 0.03,
  4680. extra: 1
  4681. }
  4682. }
  4683. },
  4684. [
  4685. {
  4686. name: "Normal",
  4687. height: math.unit(6.25, "foot"),
  4688. default: true
  4689. },
  4690. ]
  4691. ))
  4692. characterMakers.push(() => makeCharacter(
  4693. { name: "Razinox" },
  4694. {
  4695. front: {
  4696. height: math.unit(6, "feet"),
  4697. weight: math.unit(350, "lbs"),
  4698. name: "Front",
  4699. image: {
  4700. source: "./media/characters/razinox/front.svg",
  4701. extra: 1686 / 1548
  4702. }
  4703. },
  4704. back: {
  4705. height: math.unit(6, "feet"),
  4706. weight: math.unit(350, "lbs"),
  4707. name: "Back",
  4708. image: {
  4709. source: "./media/characters/razinox/back.svg",
  4710. extra: 1660 / 1590
  4711. }
  4712. },
  4713. },
  4714. [
  4715. {
  4716. name: "Normal",
  4717. height: math.unit(10 + 8 / 12, "foot")
  4718. },
  4719. {
  4720. name: "Minimacro",
  4721. height: math.unit(15, "foot")
  4722. },
  4723. {
  4724. name: "Macro",
  4725. height: math.unit(60, "foot"),
  4726. default: true
  4727. },
  4728. {
  4729. name: "Megamacro",
  4730. height: math.unit(5, "miles")
  4731. },
  4732. {
  4733. name: "Gigamacro",
  4734. height: math.unit(6000, "miles")
  4735. },
  4736. ]
  4737. ))
  4738. characterMakers.push(() => makeCharacter(
  4739. { name: "Cobalt" },
  4740. {
  4741. front: {
  4742. height: math.unit(6, "feet"),
  4743. weight: math.unit(150, "lbs"),
  4744. name: "Front",
  4745. image: {
  4746. source: "./media/characters/cobalt/front.svg"
  4747. }
  4748. }
  4749. },
  4750. [
  4751. {
  4752. name: "Normal",
  4753. height: math.unit(8 + 1 / 12, "foot")
  4754. },
  4755. {
  4756. name: "Macro",
  4757. height: math.unit(111, "foot"),
  4758. default: true
  4759. },
  4760. {
  4761. name: "Supracosmic",
  4762. height: math.unit(1e42, "feet")
  4763. },
  4764. ]
  4765. ))
  4766. characterMakers.push(() => makeCharacter(
  4767. { name: "Amanda" },
  4768. {
  4769. front: {
  4770. height: math.unit(6, "feet"),
  4771. weight: math.unit(140, "lbs"),
  4772. name: "Front",
  4773. image: {
  4774. source: "./media/characters/amanda/front.svg"
  4775. }
  4776. }
  4777. },
  4778. [
  4779. {
  4780. name: "Micro",
  4781. height: math.unit(5, "inches"),
  4782. default: true
  4783. },
  4784. ]
  4785. ))
  4786. characterMakers.push(() => makeCharacter(
  4787. { name: "Teal" },
  4788. {
  4789. front: {
  4790. height: math.unit(5.59, "feet"),
  4791. weight: math.unit(250, "lbs"),
  4792. name: "Front",
  4793. image: {
  4794. source: "./media/characters/teal/front.svg"
  4795. }
  4796. },
  4797. frontAlt: {
  4798. height: math.unit(6, "feet"),
  4799. weight: math.unit(250, "lbs"),
  4800. name: "Front (Alt)",
  4801. image: {
  4802. source: "./media/characters/teal/front-alt.svg",
  4803. bottom: 0.04,
  4804. extra: 1
  4805. }
  4806. },
  4807. },
  4808. [
  4809. {
  4810. name: "Normal",
  4811. height: math.unit(12, "feet"),
  4812. default: true
  4813. },
  4814. {
  4815. name: "Macro",
  4816. height: math.unit(300, "feet")
  4817. },
  4818. ]
  4819. ))
  4820. characterMakers.push(() => makeCharacter(
  4821. { name: "Ravin Amulet" },
  4822. {
  4823. frontCat: {
  4824. height: math.unit(6, "feet"),
  4825. weight: math.unit(180, "lbs"),
  4826. name: "Front (Cat)",
  4827. image: {
  4828. source: "./media/characters/ravin-amulet/front-cat.svg"
  4829. }
  4830. },
  4831. frontCatAlt: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(180, "lbs"),
  4834. name: "Front (Alt, Cat)",
  4835. image: {
  4836. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  4837. }
  4838. },
  4839. frontWerewolf: {
  4840. height: math.unit(6 * 1.2, "feet"),
  4841. weight: math.unit(225, "lbs"),
  4842. name: "Front (Werewolf)",
  4843. image: {
  4844. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  4845. }
  4846. },
  4847. backWerewolf: {
  4848. height: math.unit(6 * 1.2, "feet"),
  4849. weight: math.unit(225, "lbs"),
  4850. name: "Back (Werewolf)",
  4851. image: {
  4852. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  4853. }
  4854. },
  4855. },
  4856. [
  4857. {
  4858. name: "Nano",
  4859. height: math.unit(1, "micrometer")
  4860. },
  4861. {
  4862. name: "Micro",
  4863. height: math.unit(1, "inch")
  4864. },
  4865. {
  4866. name: "Normal",
  4867. height: math.unit(6, "feet"),
  4868. default: true
  4869. },
  4870. {
  4871. name: "Macro",
  4872. height: math.unit(60, "feet")
  4873. }
  4874. ]
  4875. ))
  4876. characterMakers.push(() => makeCharacter(
  4877. { name: "Fluoresce" },
  4878. {
  4879. front: {
  4880. height: math.unit(6, "feet"),
  4881. weight: math.unit(165, "lbs"),
  4882. name: "Front",
  4883. image: {
  4884. source: "./media/characters/fluoresce/front.svg"
  4885. }
  4886. }
  4887. },
  4888. [
  4889. {
  4890. name: "Micro",
  4891. height: math.unit(6, "cm")
  4892. },
  4893. {
  4894. name: "Normal",
  4895. height: math.unit(5 + 7 / 12, "feet"),
  4896. default: true
  4897. },
  4898. {
  4899. name: "Macro",
  4900. height: math.unit(56, "feet")
  4901. },
  4902. {
  4903. name: "Megamacro",
  4904. height: math.unit(1.9, "miles")
  4905. },
  4906. ]
  4907. ))
  4908. characterMakers.push(() => makeCharacter(
  4909. { name: "Aurora" },
  4910. {
  4911. front: {
  4912. height: math.unit(9 + 6 / 12, "feet"),
  4913. weight: math.unit(523, "lbs"),
  4914. name: "Side",
  4915. image: {
  4916. source: "./media/characters/aurora/side.svg"
  4917. }
  4918. }
  4919. },
  4920. [
  4921. {
  4922. name: "Normal",
  4923. height: math.unit(9 + 6 / 12, "feet")
  4924. },
  4925. {
  4926. name: "Macro",
  4927. height: math.unit(96, "feet"),
  4928. default: true
  4929. },
  4930. {
  4931. name: "Macro+",
  4932. height: math.unit(243, "feet")
  4933. },
  4934. ]
  4935. ))
  4936. characterMakers.push(() => makeCharacter(
  4937. { name: "Ranek" },
  4938. {
  4939. front: {
  4940. height: math.unit(194, "cm"),
  4941. weight: math.unit(90, "kg"),
  4942. name: "Front",
  4943. image: {
  4944. source: "./media/characters/ranek/front.svg"
  4945. }
  4946. },
  4947. side: {
  4948. height: math.unit(194, "cm"),
  4949. weight: math.unit(90, "kg"),
  4950. name: "Side",
  4951. image: {
  4952. source: "./media/characters/ranek/side.svg"
  4953. }
  4954. },
  4955. back: {
  4956. height: math.unit(194, "cm"),
  4957. weight: math.unit(90, "kg"),
  4958. name: "Back",
  4959. image: {
  4960. source: "./media/characters/ranek/back.svg"
  4961. }
  4962. },
  4963. feral: {
  4964. height: math.unit(30, "cm"),
  4965. weight: math.unit(1.6, "lbs"),
  4966. name: "Feral",
  4967. image: {
  4968. source: "./media/characters/ranek/feral.svg"
  4969. }
  4970. },
  4971. },
  4972. [
  4973. {
  4974. name: "Normal",
  4975. height: math.unit(194, "cm"),
  4976. default: true
  4977. },
  4978. {
  4979. name: "Macro",
  4980. height: math.unit(100, "meters")
  4981. },
  4982. ]
  4983. ))
  4984. characterMakers.push(() => makeCharacter(
  4985. { name: "Andrew Cooper" },
  4986. {
  4987. front: {
  4988. height: math.unit(5 + 6 / 12, "feet"),
  4989. weight: math.unit(153, "lbs"),
  4990. name: "Front",
  4991. image: {
  4992. source: "./media/characters/andrew-cooper/front.svg"
  4993. }
  4994. },
  4995. },
  4996. [
  4997. {
  4998. name: "Nano",
  4999. height: math.unit(1, "mm")
  5000. },
  5001. {
  5002. name: "Micro",
  5003. height: math.unit(2, "inches")
  5004. },
  5005. {
  5006. name: "Normal",
  5007. height: math.unit(5 + 6 / 12, "feet"),
  5008. default: true
  5009. }
  5010. ]
  5011. ))
  5012. characterMakers.push(() => makeCharacter(
  5013. { name: "Akane Sato" },
  5014. {
  5015. front: {
  5016. height: math.unit(6, "feet"),
  5017. weight: math.unit(180, "lbs"),
  5018. name: "Front",
  5019. image: {
  5020. source: "./media/characters/akane-sato/front.svg",
  5021. extra: 1219 / 1140
  5022. }
  5023. },
  5024. back: {
  5025. height: math.unit(6, "feet"),
  5026. weight: math.unit(180, "lbs"),
  5027. name: "Back",
  5028. image: {
  5029. source: "./media/characters/akane-sato/back.svg",
  5030. extra: 1219 / 1170
  5031. }
  5032. },
  5033. },
  5034. [
  5035. {
  5036. name: "Normal",
  5037. height: math.unit(2.5, "meters")
  5038. },
  5039. {
  5040. name: "Macro",
  5041. height: math.unit(250, "meters"),
  5042. default: true
  5043. },
  5044. {
  5045. name: "Megamacro",
  5046. height: math.unit(25, "km")
  5047. },
  5048. ]
  5049. ))
  5050. characterMakers.push(() => makeCharacter(
  5051. { name: "Rook" },
  5052. {
  5053. front: {
  5054. height: math.unit(6, "feet"),
  5055. weight: math.unit(65, "kg"),
  5056. name: "Front",
  5057. image: {
  5058. source: "./media/characters/rook/front.svg"
  5059. }
  5060. }
  5061. },
  5062. [
  5063. {
  5064. name: "Normal",
  5065. height: math.unit(8.8, "feet")
  5066. },
  5067. {
  5068. name: "Macro",
  5069. height: math.unit(88, "feet"),
  5070. default: true
  5071. },
  5072. {
  5073. name: "Megamacro",
  5074. height: math.unit(8, "miles")
  5075. },
  5076. ]
  5077. ))
  5078. characterMakers.push(() => makeCharacter(
  5079. { name: "Prodigy" },
  5080. {
  5081. front: {
  5082. height: math.unit(12 + 2 / 12, "feet"),
  5083. weight: math.unit(808, "lbs"),
  5084. name: "Front",
  5085. image: {
  5086. source: "./media/characters/prodigy/front.svg"
  5087. }
  5088. }
  5089. },
  5090. [
  5091. {
  5092. name: "Normal",
  5093. height: math.unit(12 + 2 / 12, "feet"),
  5094. default: true
  5095. },
  5096. {
  5097. name: "Macro",
  5098. height: math.unit(143, "feet")
  5099. },
  5100. {
  5101. name: "Macro+",
  5102. height: math.unit(400, "feet")
  5103. },
  5104. ]
  5105. ))
  5106. characterMakers.push(() => makeCharacter(
  5107. { name: "Daniel" },
  5108. {
  5109. front: {
  5110. height: math.unit(6, "feet"),
  5111. weight: math.unit(225, "lbs"),
  5112. name: "Front",
  5113. image: {
  5114. source: "./media/characters/daniel/front.svg"
  5115. }
  5116. },
  5117. leaning: {
  5118. height: math.unit(6, "feet"),
  5119. weight: math.unit(225, "lbs"),
  5120. name: "Leaning",
  5121. image: {
  5122. source: "./media/characters/daniel/leaning.svg"
  5123. }
  5124. },
  5125. },
  5126. [
  5127. {
  5128. name: "Macro",
  5129. height: math.unit(1000, "feet"),
  5130. default: true
  5131. },
  5132. ]
  5133. ))
  5134. characterMakers.push(() => makeCharacter(
  5135. { name: "Chiros" },
  5136. {
  5137. front: {
  5138. height: math.unit(6, "feet"),
  5139. weight: math.unit(88, "lbs"),
  5140. name: "Front",
  5141. image: {
  5142. source: "./media/characters/chiros/front.svg",
  5143. extra: 306 / 226
  5144. }
  5145. },
  5146. side: {
  5147. height: math.unit(6, "feet"),
  5148. weight: math.unit(88, "lbs"),
  5149. name: "Side",
  5150. image: {
  5151. source: "./media/characters/chiros/side.svg",
  5152. extra: 306 / 226
  5153. }
  5154. },
  5155. },
  5156. [
  5157. {
  5158. name: "Normal",
  5159. height: math.unit(6, "cm"),
  5160. default: true
  5161. },
  5162. ]
  5163. ))
  5164. characterMakers.push(() => makeCharacter(
  5165. { name: "Selka" },
  5166. {
  5167. front: {
  5168. height: math.unit(6, "feet"),
  5169. weight: math.unit(100, "lbs"),
  5170. name: "Front",
  5171. image: {
  5172. source: "./media/characters/selka/front.svg",
  5173. extra: 947 / 887
  5174. }
  5175. }
  5176. },
  5177. [
  5178. {
  5179. name: "Normal",
  5180. height: math.unit(5, "cm"),
  5181. default: true
  5182. },
  5183. ]
  5184. ))
  5185. characterMakers.push(() => makeCharacter(
  5186. { name: "Verin" },
  5187. {
  5188. front: {
  5189. height: math.unit(8 + 3 / 12, "feet"),
  5190. weight: math.unit(424, "lbs"),
  5191. name: "Front",
  5192. image: {
  5193. source: "./media/characters/verin/front.svg",
  5194. extra: 1845 / 1550
  5195. }
  5196. },
  5197. frontArmored: {
  5198. height: math.unit(8 + 3 / 12, "feet"),
  5199. weight: math.unit(424, "lbs"),
  5200. name: "Front (Armored)",
  5201. image: {
  5202. source: "./media/characters/verin/front-armor.svg",
  5203. extra: 1845 / 1550,
  5204. bottom: 0.01
  5205. }
  5206. },
  5207. back: {
  5208. height: math.unit(8 + 3 / 12, "feet"),
  5209. weight: math.unit(424, "lbs"),
  5210. name: "Back",
  5211. image: {
  5212. source: "./media/characters/verin/back.svg",
  5213. bottom: 0.1,
  5214. extra: 1
  5215. }
  5216. },
  5217. foot: {
  5218. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5219. name: "Foot",
  5220. image: {
  5221. source: "./media/characters/verin/foot.svg"
  5222. }
  5223. },
  5224. },
  5225. [
  5226. {
  5227. name: "Normal",
  5228. height: math.unit(8 + 3 / 12, "feet")
  5229. },
  5230. {
  5231. name: "Minimacro",
  5232. height: math.unit(21, "feet"),
  5233. default: true
  5234. },
  5235. {
  5236. name: "Macro",
  5237. height: math.unit(626, "feet")
  5238. },
  5239. ]
  5240. ))
  5241. characterMakers.push(() => makeCharacter(
  5242. { name: "Sovrim Terraquian" },
  5243. {
  5244. front: {
  5245. height: math.unit(2.718, "meters"),
  5246. weight: math.unit(150, "lbs"),
  5247. name: "Front",
  5248. image: {
  5249. source: "./media/characters/sovrim-terraquian/front.svg"
  5250. }
  5251. },
  5252. back: {
  5253. height: math.unit(2.718, "meters"),
  5254. weight: math.unit(150, "lbs"),
  5255. name: "Back",
  5256. image: {
  5257. source: "./media/characters/sovrim-terraquian/back.svg"
  5258. }
  5259. }
  5260. },
  5261. [
  5262. {
  5263. name: "Micro",
  5264. height: math.unit(2, "inches")
  5265. },
  5266. {
  5267. name: "Small",
  5268. height: math.unit(1, "meter")
  5269. },
  5270. {
  5271. name: "Normal",
  5272. height: math.unit(Math.E, "meters"),
  5273. default: true
  5274. },
  5275. {
  5276. name: "Macro",
  5277. height: math.unit(20, "meters")
  5278. },
  5279. {
  5280. name: "Macro+",
  5281. height: math.unit(400, "meters")
  5282. },
  5283. ]
  5284. ))
  5285. characterMakers.push(() => makeCharacter(
  5286. { name: "Reece Silvermane" },
  5287. {
  5288. front: {
  5289. height: math.unit(7, "feet"),
  5290. weight: math.unit(489, "lbs"),
  5291. name: "Front",
  5292. image: {
  5293. source: "./media/characters/reece-silvermane/front.svg",
  5294. bottom: 0.02,
  5295. extra: 1
  5296. }
  5297. },
  5298. },
  5299. [
  5300. {
  5301. name: "Macro",
  5302. height: math.unit(1.5, "miles"),
  5303. default: true
  5304. },
  5305. ]
  5306. ))
  5307. characterMakers.push(() => makeCharacter(
  5308. { name: "Kane" },
  5309. {
  5310. front: {
  5311. height: math.unit(6, "feet"),
  5312. weight: math.unit(78, "kg"),
  5313. name: "Front",
  5314. image: {
  5315. source: "./media/characters/kane/front.svg",
  5316. extra: 978 / 899
  5317. }
  5318. },
  5319. },
  5320. [
  5321. {
  5322. name: "Normal",
  5323. height: math.unit(2.1, "m"),
  5324. },
  5325. {
  5326. name: "Macro",
  5327. height: math.unit(1, "km"),
  5328. default: true
  5329. },
  5330. ]
  5331. ))
  5332. characterMakers.push(() => makeCharacter(
  5333. { name: "Tegon" },
  5334. {
  5335. front: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(200, "kg"),
  5338. name: "Front",
  5339. image: {
  5340. source: "./media/characters/tegon/front.svg",
  5341. bottom: 0.01,
  5342. extra: 1
  5343. }
  5344. },
  5345. },
  5346. [
  5347. {
  5348. name: "Micro",
  5349. height: math.unit(1, "inch")
  5350. },
  5351. {
  5352. name: "Normal",
  5353. height: math.unit(6 + 3 / 12, "feet"),
  5354. default: true
  5355. },
  5356. {
  5357. name: "Macro",
  5358. height: math.unit(300, "feet")
  5359. },
  5360. {
  5361. name: "Megamacro",
  5362. height: math.unit(69, "miles")
  5363. },
  5364. ]
  5365. ))
  5366. characterMakers.push(() => makeCharacter(
  5367. { name: "Arcturax" },
  5368. {
  5369. side: {
  5370. height: math.unit(6, "feet"),
  5371. weight: math.unit(2304, "lbs"),
  5372. name: "Side",
  5373. image: {
  5374. source: "./media/characters/arcturax/side.svg",
  5375. extra: 790 / 376,
  5376. bottom: 0.01
  5377. }
  5378. },
  5379. },
  5380. [
  5381. {
  5382. name: "Micro",
  5383. height: math.unit(2, "inch")
  5384. },
  5385. {
  5386. name: "Normal",
  5387. height: math.unit(6, "feet")
  5388. },
  5389. {
  5390. name: "Macro",
  5391. height: math.unit(39, "feet"),
  5392. default: true
  5393. },
  5394. {
  5395. name: "Megamacro",
  5396. height: math.unit(7, "miles")
  5397. },
  5398. ]
  5399. ))
  5400. characterMakers.push(() => makeCharacter(
  5401. { name: "Sentri" },
  5402. {
  5403. front: {
  5404. height: math.unit(6, "feet"),
  5405. weight: math.unit(50, "lbs"),
  5406. name: "Front",
  5407. image: {
  5408. source: "./media/characters/sentri/front.svg",
  5409. extra: 1750 / 1570,
  5410. bottom: 0.025
  5411. }
  5412. },
  5413. frontAlt: {
  5414. height: math.unit(6, "feet"),
  5415. weight: math.unit(50, "lbs"),
  5416. name: "Front (Alt)",
  5417. image: {
  5418. source: "./media/characters/sentri/front-alt.svg",
  5419. extra: 1750 / 1570,
  5420. bottom: 0.025
  5421. }
  5422. },
  5423. },
  5424. [
  5425. {
  5426. name: "Normal",
  5427. height: math.unit(15, "feet"),
  5428. default: true
  5429. },
  5430. {
  5431. name: "Macro",
  5432. height: math.unit(2500, "feet")
  5433. }
  5434. ]
  5435. ))
  5436. characterMakers.push(() => makeCharacter(
  5437. { name: "Corvin" },
  5438. {
  5439. front: {
  5440. height: math.unit(5 + 8 / 12, "feet"),
  5441. weight: math.unit(130, "lbs"),
  5442. name: "Front",
  5443. image: {
  5444. source: "./media/characters/corvin/front.svg",
  5445. extra: 1803 / 1629
  5446. }
  5447. },
  5448. frontShirt: {
  5449. height: math.unit(5 + 8 / 12, "feet"),
  5450. weight: math.unit(130, "lbs"),
  5451. name: "Front (Shirt)",
  5452. image: {
  5453. source: "./media/characters/corvin/front-shirt.svg",
  5454. extra: 1803 / 1629
  5455. }
  5456. },
  5457. frontPoncho: {
  5458. height: math.unit(5 + 8 / 12, "feet"),
  5459. weight: math.unit(130, "lbs"),
  5460. name: "Front (Poncho)",
  5461. image: {
  5462. source: "./media/characters/corvin/front-poncho.svg",
  5463. extra: 1803 / 1629
  5464. }
  5465. },
  5466. side: {
  5467. height: math.unit(5 + 8 / 12, "feet"),
  5468. weight: math.unit(130, "lbs"),
  5469. name: "Side",
  5470. image: {
  5471. source: "./media/characters/corvin/side.svg",
  5472. extra: 1012 / 945
  5473. }
  5474. },
  5475. back: {
  5476. height: math.unit(5 + 8 / 12, "feet"),
  5477. weight: math.unit(130, "lbs"),
  5478. name: "Back",
  5479. image: {
  5480. source: "./media/characters/corvin/back.svg",
  5481. extra: 1803 / 1629
  5482. }
  5483. },
  5484. },
  5485. [
  5486. {
  5487. name: "Micro",
  5488. height: math.unit(3, "inches")
  5489. },
  5490. {
  5491. name: "Normal",
  5492. height: math.unit(5 + 8 / 12, "feet")
  5493. },
  5494. {
  5495. name: "Macro",
  5496. height: math.unit(300, "feet"),
  5497. default: true
  5498. },
  5499. {
  5500. name: "Megamacro",
  5501. height: math.unit(500, "miles")
  5502. }
  5503. ]
  5504. ))
  5505. characterMakers.push(() => makeCharacter(
  5506. { name: "Q" },
  5507. {
  5508. front: {
  5509. height: math.unit(6, "feet"),
  5510. weight: math.unit(135, "lbs"),
  5511. name: "Front",
  5512. image: {
  5513. source: "./media/characters/q/front.svg",
  5514. extra: 854 / 752,
  5515. bottom: 0.005
  5516. }
  5517. },
  5518. back: {
  5519. height: math.unit(6, "feet"),
  5520. weight: math.unit(130, "lbs"),
  5521. name: "Back",
  5522. image: {
  5523. source: "./media/characters/q/back.svg",
  5524. extra: 854 / 752
  5525. }
  5526. },
  5527. },
  5528. [
  5529. {
  5530. name: "Macro",
  5531. height: math.unit(90, "feet"),
  5532. default: true
  5533. },
  5534. {
  5535. name: "Extra Macro",
  5536. height: math.unit(300, "feet"),
  5537. },
  5538. {
  5539. name: "BIG WALF",
  5540. height: math.unit(750, "feet"),
  5541. },
  5542. ]
  5543. ))
  5544. characterMakers.push(() => makeCharacter(
  5545. { name: "Carley" },
  5546. {
  5547. front: {
  5548. height: math.unit(6, "feet"),
  5549. weight: math.unit(150, "lbs"),
  5550. name: "Front",
  5551. image: {
  5552. source: "./media/characters/carley/front.svg",
  5553. extra: 3927 / 3540,
  5554. bottom: 0.03
  5555. }
  5556. }
  5557. },
  5558. [
  5559. {
  5560. name: "Normal",
  5561. height: math.unit(6 + 3 / 12, "feet")
  5562. },
  5563. {
  5564. name: "Macro",
  5565. height: math.unit(185, "feet"),
  5566. default: true
  5567. },
  5568. {
  5569. name: "Megamacro",
  5570. height: math.unit(8, "miles"),
  5571. },
  5572. ]
  5573. ))
  5574. characterMakers.push(() => makeCharacter(
  5575. { name: "Citrine" },
  5576. {
  5577. front: {
  5578. height: math.unit(3, "feet"),
  5579. weight: math.unit(28, "lbs"),
  5580. name: "Front",
  5581. image: {
  5582. source: "./media/characters/citrine/front.svg"
  5583. }
  5584. }
  5585. },
  5586. [
  5587. {
  5588. name: "Normal",
  5589. height: math.unit(3, "feet"),
  5590. default: true
  5591. }
  5592. ]
  5593. ))
  5594. characterMakers.push(() => makeCharacter(
  5595. { name: "Aura Starwind" },
  5596. {
  5597. front: {
  5598. height: math.unit(14, "feet"),
  5599. weight: math.unit(1450, "kg"),
  5600. name: "Front",
  5601. image: {
  5602. source: "./media/characters/aura-starwind/front.svg",
  5603. extra: 1455 / 1335
  5604. }
  5605. },
  5606. side: {
  5607. height: math.unit(14, "feet"),
  5608. weight: math.unit(1450, "kg"),
  5609. name: "Side",
  5610. image: {
  5611. source: "./media/characters/aura-starwind/side.svg",
  5612. extra: 1654 / 1497
  5613. }
  5614. },
  5615. taur: {
  5616. height: math.unit(18, "feet"),
  5617. weight: math.unit(5500, "kg"),
  5618. name: "Taur",
  5619. image: {
  5620. source: "./media/characters/aura-starwind/taur.svg",
  5621. extra: 1760 / 1650
  5622. }
  5623. },
  5624. feral: {
  5625. height: math.unit(46, "feet"),
  5626. weight: math.unit(25000, "kg"),
  5627. name: "Feral",
  5628. image: {
  5629. source: "./media/characters/aura-starwind/feral.svg"
  5630. }
  5631. },
  5632. },
  5633. [
  5634. {
  5635. name: "Normal",
  5636. height: math.unit(14, "feet"),
  5637. default: true
  5638. },
  5639. {
  5640. name: "Macro",
  5641. height: math.unit(50, "meters")
  5642. },
  5643. {
  5644. name: "Megamacro",
  5645. height: math.unit(5000, "meters")
  5646. },
  5647. {
  5648. name: "Gigamacro",
  5649. height: math.unit(100000, "kilometers")
  5650. },
  5651. ]
  5652. ))
  5653. characterMakers.push(() => makeCharacter(
  5654. { name: "Rivet" },
  5655. {
  5656. front: {
  5657. height: math.unit(2 + 7 / 12, "feet"),
  5658. weight: math.unit(32, "lbs"),
  5659. name: "Front",
  5660. image: {
  5661. source: "./media/characters/rivet/front.svg",
  5662. extra: 1716 / 1658,
  5663. bottom: 0.03
  5664. }
  5665. },
  5666. foot: {
  5667. height: math.unit(0.551, "feet"),
  5668. name: "Rivet's Foot",
  5669. image: {
  5670. source: "./media/characters/rivet/foot.svg"
  5671. },
  5672. rename: true
  5673. }
  5674. },
  5675. [
  5676. {
  5677. name: "Micro",
  5678. height: math.unit(1.5, "inches"),
  5679. },
  5680. {
  5681. name: "Normal",
  5682. height: math.unit(2 + 7 / 12, "feet"),
  5683. default: true
  5684. },
  5685. {
  5686. name: "Macro",
  5687. height: math.unit(85, "feet")
  5688. },
  5689. {
  5690. name: "Megamacro",
  5691. height: math.unit(2.2, "km")
  5692. }
  5693. ]
  5694. ))
  5695. characterMakers.push(() => makeCharacter(
  5696. { name: "Coffee" },
  5697. {
  5698. front: {
  5699. height: math.unit(5 + 9 / 12, "feet"),
  5700. weight: math.unit(150, "lbs"),
  5701. name: "Front",
  5702. image: {
  5703. source: "./media/characters/coffee/front.svg",
  5704. extra: 3666 / 3032,
  5705. bottom: 0.04
  5706. }
  5707. },
  5708. foot: {
  5709. height: math.unit(1.29, "feet"),
  5710. name: "Foot",
  5711. image: {
  5712. source: "./media/characters/coffee/foot.svg"
  5713. }
  5714. },
  5715. },
  5716. [
  5717. {
  5718. name: "Micro",
  5719. height: math.unit(2, "inches"),
  5720. },
  5721. {
  5722. name: "Normal",
  5723. height: math.unit(5 + 9 / 12, "feet"),
  5724. default: true
  5725. },
  5726. {
  5727. name: "Macro",
  5728. height: math.unit(800, "feet")
  5729. },
  5730. {
  5731. name: "Megamacro",
  5732. height: math.unit(25, "miles")
  5733. }
  5734. ]
  5735. ))
  5736. characterMakers.push(() => makeCharacter(
  5737. { name: "Chari-Gal" },
  5738. {
  5739. front: {
  5740. height: math.unit(6, "feet"),
  5741. weight: math.unit(200, "lbs"),
  5742. name: "Front",
  5743. image: {
  5744. source: "./media/characters/chari-gal/front.svg",
  5745. extra: 1568 / 1385,
  5746. bottom: 0.047
  5747. }
  5748. },
  5749. gigantamax: {
  5750. height: math.unit(6 * 16, "feet"),
  5751. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  5752. name: "Gigantamax",
  5753. image: {
  5754. source: "./media/characters/chari-gal/gigantamax.svg",
  5755. extra: 1124 / 888,
  5756. bottom: 0.03
  5757. }
  5758. },
  5759. },
  5760. [
  5761. {
  5762. name: "Normal",
  5763. height: math.unit(5 + 7 / 12, "feet")
  5764. },
  5765. {
  5766. name: "Macro",
  5767. height: math.unit(200, "feet"),
  5768. default: true
  5769. }
  5770. ]
  5771. ))
  5772. characterMakers.push(() => makeCharacter(
  5773. { name: "Nova" },
  5774. {
  5775. front: {
  5776. height: math.unit(6, "feet"),
  5777. weight: math.unit(150, "lbs"),
  5778. name: "Front",
  5779. image: {
  5780. source: "./media/characters/nova/front.svg",
  5781. extra: 5000 / 4722,
  5782. bottom: 0.02
  5783. }
  5784. }
  5785. },
  5786. [
  5787. {
  5788. name: "Micro-",
  5789. height: math.unit(0.8, "inches")
  5790. },
  5791. {
  5792. name: "Micro",
  5793. height: math.unit(2, "inches"),
  5794. default: true
  5795. },
  5796. ]
  5797. ))
  5798. characterMakers.push(() => makeCharacter(
  5799. { name: "Argent" },
  5800. {
  5801. front: {
  5802. height: math.unit(3 + 1 / 12, "feet"),
  5803. weight: math.unit(21.7, "lbs"),
  5804. name: "Front",
  5805. image: {
  5806. source: "./media/characters/argent/front.svg",
  5807. extra: 1565 / 1416,
  5808. bottom: 0.01
  5809. }
  5810. }
  5811. },
  5812. [
  5813. {
  5814. name: "Micro",
  5815. height: math.unit(2, "inches")
  5816. },
  5817. {
  5818. name: "Normal",
  5819. height: math.unit(3 + 1 / 12, "feet"),
  5820. default: true
  5821. },
  5822. {
  5823. name: "Macro",
  5824. height: math.unit(120, "feet")
  5825. },
  5826. ]
  5827. ))
  5828. characterMakers.push(() => makeCharacter(
  5829. { name: "Mira al-Cul" },
  5830. {
  5831. lamp: {
  5832. height: math.unit(7 * 1559 / 989, "feet"),
  5833. name: "Magic Lamp",
  5834. image: {
  5835. source: "./media/characters/mira-al-cul/lamp.svg",
  5836. extra: 1617 / 1559
  5837. }
  5838. },
  5839. front: {
  5840. height: math.unit(7, "feet"),
  5841. name: "Front",
  5842. image: {
  5843. source: "./media/characters/mira-al-cul/front.svg",
  5844. extra: 1044 / 990
  5845. }
  5846. },
  5847. },
  5848. [
  5849. {
  5850. name: "Heavily Restricted",
  5851. height: math.unit(7 * 1559 / 989, "feet")
  5852. },
  5853. {
  5854. name: "Freshly Freed",
  5855. height: math.unit(50 * 1559 / 989, "feet")
  5856. },
  5857. {
  5858. name: "World Encompassing",
  5859. height: math.unit(10000 * 1559 / 989, "miles")
  5860. },
  5861. {
  5862. name: "Galactic",
  5863. height: math.unit(1.433 * 1559 / 989, "zettameters")
  5864. },
  5865. {
  5866. name: "Palmed Universe",
  5867. height: math.unit(6000 * 1559 / 989, "yottameters"),
  5868. default: true
  5869. },
  5870. {
  5871. name: "Multiversal Matriarch",
  5872. height: math.unit(8.87e10, "yottameters")
  5873. },
  5874. {
  5875. name: "Void Mother",
  5876. height: math.unit(3.14e110, "yottaparsecs")
  5877. },
  5878. ]
  5879. ))
  5880. characterMakers.push(() => makeCharacter(
  5881. { name: "Kuro-shi Uchū" },
  5882. {
  5883. front: {
  5884. height: math.unit(17 + 1 / 12, "feet"),
  5885. weight: math.unit(476.2 * 5, "lbs"),
  5886. name: "Front",
  5887. image: {
  5888. source: "./media/characters/kuro-shi-uchū/front.svg",
  5889. extra: 2329 / 1835,
  5890. bottom: 0.02
  5891. }
  5892. },
  5893. },
  5894. [
  5895. {
  5896. name: "Micro",
  5897. height: math.unit(2, "inches")
  5898. },
  5899. {
  5900. name: "Normal",
  5901. height: math.unit(12, "meters")
  5902. },
  5903. {
  5904. name: "Planetary",
  5905. height: math.unit(0.00929, "AU"),
  5906. default: true
  5907. },
  5908. {
  5909. name: "Universal",
  5910. height: math.unit(20, "gigaparsecs")
  5911. },
  5912. ]
  5913. ))
  5914. characterMakers.push(() => makeCharacter(
  5915. { name: "Katherine" },
  5916. {
  5917. front: {
  5918. height: math.unit(5 + 2 / 12, "feet"),
  5919. weight: math.unit(120, "lbs"),
  5920. name: "Front",
  5921. image: {
  5922. source: "./media/characters/katherine/front.svg",
  5923. extra: 2075 / 1969
  5924. }
  5925. },
  5926. dress: {
  5927. height: math.unit(5 + 2 / 12, "feet"),
  5928. weight: math.unit(120, "lbs"),
  5929. name: "Dress",
  5930. image: {
  5931. source: "./media/characters/katherine/dress.svg",
  5932. extra: 2258 / 2064
  5933. }
  5934. },
  5935. },
  5936. [
  5937. {
  5938. name: "Micro",
  5939. height: math.unit(1, "inches"),
  5940. default: true
  5941. },
  5942. {
  5943. name: "Normal",
  5944. height: math.unit(5 + 2 / 12, "feet")
  5945. },
  5946. {
  5947. name: "Macro",
  5948. height: math.unit(100, "meters")
  5949. },
  5950. {
  5951. name: "Megamacro",
  5952. height: math.unit(80, "miles")
  5953. },
  5954. ]
  5955. ))
  5956. characterMakers.push(() => makeCharacter(
  5957. { name: "Yevis" },
  5958. {
  5959. front: {
  5960. height: math.unit(7 + 8 / 12, "feet"),
  5961. weight: math.unit(250, "lbs"),
  5962. name: "Front",
  5963. image: {
  5964. source: "./media/characters/yevis/front.svg",
  5965. extra: 1938 / 1755
  5966. }
  5967. }
  5968. },
  5969. [
  5970. {
  5971. name: "Mortal",
  5972. height: math.unit(7 + 8 / 12, "feet")
  5973. },
  5974. {
  5975. name: "Battle",
  5976. height: math.unit(25 + 11 / 12, "feet")
  5977. },
  5978. {
  5979. name: "Wrath",
  5980. height: math.unit(1654 + 11 / 12, "feet")
  5981. },
  5982. {
  5983. name: "Planet Destroyer",
  5984. height: math.unit(12000, "miles")
  5985. },
  5986. {
  5987. name: "Galaxy Conqueror",
  5988. height: math.unit(1.45, "zettameters"),
  5989. default: true
  5990. },
  5991. {
  5992. name: "Universal War",
  5993. height: math.unit(184, "gigaparsecs")
  5994. },
  5995. {
  5996. name: "Eternity War",
  5997. height: math.unit(1.98e55, "yottaparsecs")
  5998. },
  5999. ]
  6000. ))
  6001. characterMakers.push(() => makeCharacter(
  6002. { name: "Xavier" },
  6003. {
  6004. front: {
  6005. height: math.unit(5 + 8 / 12, "feet"),
  6006. weight: math.unit(63, "kg"),
  6007. name: "Front",
  6008. image: {
  6009. source: "./media/characters/xavier/front.svg",
  6010. extra: 944 / 883
  6011. }
  6012. },
  6013. frontStretch: {
  6014. height: math.unit(5 + 8 / 12, "feet"),
  6015. weight: math.unit(63, "kg"),
  6016. name: "Stretching",
  6017. image: {
  6018. source: "./media/characters/xavier/front-stretch.svg",
  6019. extra: 962 / 820
  6020. }
  6021. },
  6022. },
  6023. [
  6024. {
  6025. name: "Normal",
  6026. height: math.unit(5 + 8 / 12, "feet")
  6027. },
  6028. {
  6029. name: "Macro",
  6030. height: math.unit(100, "meters"),
  6031. default: true
  6032. },
  6033. {
  6034. name: "McLargeHuge",
  6035. height: math.unit(10, "miles")
  6036. },
  6037. ]
  6038. ))
  6039. characterMakers.push(() => makeCharacter(
  6040. { name: "Joshii" },
  6041. {
  6042. front: {
  6043. height: math.unit(5 + 5 / 12, "feet"),
  6044. weight: math.unit(150, "lb"),
  6045. name: "Front",
  6046. image: {
  6047. source: "./media/characters/joshii/front.svg"
  6048. }
  6049. },
  6050. foot: {
  6051. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6052. name: "Foot",
  6053. image: {
  6054. source: "./media/characters/joshii/foot.svg"
  6055. }
  6056. },
  6057. },
  6058. [
  6059. {
  6060. name: "Micro",
  6061. height: math.unit(2, "inches")
  6062. },
  6063. {
  6064. name: "Normal",
  6065. height: math.unit(5 + 5 / 12, "feet"),
  6066. default: true
  6067. },
  6068. {
  6069. name: "Macro",
  6070. height: math.unit(785, "feet")
  6071. },
  6072. {
  6073. name: "Megamacro",
  6074. height: math.unit(24.5, "miles")
  6075. },
  6076. ]
  6077. ))
  6078. characterMakers.push(() => makeCharacter(
  6079. { name: "Goddess Elizabeth" },
  6080. {
  6081. front: {
  6082. height: math.unit(6, "feet"),
  6083. weight: math.unit(150, "lb"),
  6084. name: "Front",
  6085. image: {
  6086. source: "./media/characters/goddess-elizabeth/front.svg",
  6087. extra: 1800 / 1525,
  6088. bottom: 0.005
  6089. }
  6090. },
  6091. foot: {
  6092. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6093. name: "Foot",
  6094. image: {
  6095. source: "./media/characters/goddess-elizabeth/foot.svg"
  6096. }
  6097. },
  6098. },
  6099. [
  6100. {
  6101. name: "Micro",
  6102. height: math.unit(12, "feet")
  6103. },
  6104. {
  6105. name: "Normal",
  6106. height: math.unit(80, "miles"),
  6107. default: true
  6108. },
  6109. {
  6110. name: "Macro",
  6111. height: math.unit(15000, "parsecs")
  6112. },
  6113. ]
  6114. ))
  6115. characterMakers.push(() => makeCharacter(
  6116. { name: "Kara" },
  6117. {
  6118. front: {
  6119. height: math.unit(5 + 9 / 12, "feet"),
  6120. weight: math.unit(144, "lb"),
  6121. name: "Front",
  6122. image: {
  6123. source: "./media/characters/kara/front.svg"
  6124. }
  6125. },
  6126. feet: {
  6127. height: math.unit(6 / 6.765, "feet"),
  6128. name: "Kara's Feet",
  6129. rename: true,
  6130. image: {
  6131. source: "./media/characters/kara/feet.svg"
  6132. }
  6133. },
  6134. },
  6135. [
  6136. {
  6137. name: "Normal",
  6138. height: math.unit(5 + 9 / 12, "feet")
  6139. },
  6140. {
  6141. name: "Macro",
  6142. height: math.unit(174, "feet"),
  6143. default: true
  6144. },
  6145. ]
  6146. ))
  6147. characterMakers.push(() => makeCharacter(
  6148. { name: "Tyrone" },
  6149. {
  6150. front: {
  6151. height: math.unit(18, "feet"),
  6152. weight: math.unit(4050, "lb"),
  6153. name: "Front",
  6154. image: {
  6155. source: "./media/characters/tyrone/front.svg",
  6156. extra: 2520 / 2402,
  6157. bottom: 0.025
  6158. }
  6159. },
  6160. },
  6161. [
  6162. {
  6163. name: "Normal",
  6164. height: math.unit(18, "feet"),
  6165. default: true
  6166. },
  6167. {
  6168. name: "Macro",
  6169. height: math.unit(300, "feet")
  6170. },
  6171. ]
  6172. ))
  6173. characterMakers.push(() => makeCharacter(
  6174. { name: "Danny" },
  6175. {
  6176. front: {
  6177. height: math.unit(7 + 8 / 12, "feet"),
  6178. weight: math.unit(120, "lb"),
  6179. name: "Front",
  6180. image: {
  6181. source: "./media/characters/danny/front.svg",
  6182. extra: 1490 / 1350
  6183. }
  6184. },
  6185. back: {
  6186. height: math.unit(7 + 8 / 12, "feet"),
  6187. weight: math.unit(120, "lb"),
  6188. name: "Back",
  6189. image: {
  6190. source: "./media/characters/danny/back.svg",
  6191. extra: 1490 / 1350
  6192. }
  6193. },
  6194. },
  6195. [
  6196. {
  6197. name: "Normal",
  6198. height: math.unit(7 + 8 / 12, "feet"),
  6199. default: true
  6200. },
  6201. ]
  6202. ))
  6203. characterMakers.push(() => makeCharacter(
  6204. { name: "Mallow" },
  6205. {
  6206. front: {
  6207. height: math.unit(3.5, "inches"),
  6208. weight: math.unit(19, "grams"),
  6209. name: "Front",
  6210. image: {
  6211. source: "./media/characters/mallow/front.svg",
  6212. extra: 471 / 431
  6213. }
  6214. },
  6215. back: {
  6216. height: math.unit(3.5, "inches"),
  6217. weight: math.unit(19, "grams"),
  6218. name: "Back",
  6219. image: {
  6220. source: "./media/characters/mallow/back.svg",
  6221. extra: 471 / 431
  6222. }
  6223. },
  6224. },
  6225. [
  6226. {
  6227. name: "Normal",
  6228. height: math.unit(3.5, "inches"),
  6229. default: true
  6230. },
  6231. ]
  6232. ))
  6233. characterMakers.push(() => makeCharacter(
  6234. { name: "Starry Aqua" },
  6235. {
  6236. front: {
  6237. height: math.unit(9, "feet"),
  6238. weight: math.unit(230, "kg"),
  6239. name: "Front",
  6240. image: {
  6241. source: "./media/characters/starry-aqua/front.svg"
  6242. }
  6243. },
  6244. back: {
  6245. height: math.unit(9, "feet"),
  6246. weight: math.unit(230, "kg"),
  6247. name: "Back",
  6248. image: {
  6249. source: "./media/characters/starry-aqua/back.svg"
  6250. }
  6251. },
  6252. hand: {
  6253. height: math.unit(9 * 0.1168, "feet"),
  6254. name: "Hand",
  6255. image: {
  6256. source: "./media/characters/starry-aqua/hand.svg"
  6257. }
  6258. },
  6259. foot: {
  6260. height: math.unit(9 * 0.18, "feet"),
  6261. name: "Foot",
  6262. image: {
  6263. source: "./media/characters/starry-aqua/foot.svg"
  6264. }
  6265. }
  6266. },
  6267. [
  6268. {
  6269. name: "Micro",
  6270. height: math.unit(3, "inches")
  6271. },
  6272. {
  6273. name: "Normal",
  6274. height: math.unit(9, "feet")
  6275. },
  6276. {
  6277. name: "Macro",
  6278. height: math.unit(300, "feet"),
  6279. default: true
  6280. },
  6281. {
  6282. name: "Megamacro",
  6283. height: math.unit(3200, "feet")
  6284. }
  6285. ]
  6286. ))
  6287. characterMakers.push(() => makeCharacter(
  6288. { name: "Luka" },
  6289. {
  6290. front: {
  6291. height: math.unit(6, "feet"),
  6292. weight: math.unit(230, "lb"),
  6293. name: "Front",
  6294. image: {
  6295. source: "./media/characters/luka/front.svg",
  6296. extra: 1,
  6297. bottom: 0.025
  6298. }
  6299. },
  6300. },
  6301. [
  6302. {
  6303. name: "Normal",
  6304. height: math.unit(12 + 8 / 12, "feet"),
  6305. default: true
  6306. },
  6307. {
  6308. name: "Minimacro",
  6309. height: math.unit(20, "feet")
  6310. },
  6311. {
  6312. name: "Macro",
  6313. height: math.unit(250, "feet")
  6314. },
  6315. {
  6316. name: "Megamacro",
  6317. height: math.unit(5, "miles")
  6318. },
  6319. {
  6320. name: "Gigamacro",
  6321. height: math.unit(8000, "miles")
  6322. },
  6323. ]
  6324. ))
  6325. characterMakers.push(() => makeCharacter(
  6326. { name: "Natalie Nightring" },
  6327. {
  6328. front: {
  6329. height: math.unit(6, "feet"),
  6330. weight: math.unit(150, "lb"),
  6331. name: "Front",
  6332. image: {
  6333. source: "./media/characters/natalie-nightring/front.svg",
  6334. extra: 1,
  6335. bottom: 0.06
  6336. }
  6337. },
  6338. },
  6339. [
  6340. {
  6341. name: "Uh Oh",
  6342. height: math.unit(0.1, "mm")
  6343. },
  6344. {
  6345. name: "Small",
  6346. height: math.unit(3, "inches")
  6347. },
  6348. {
  6349. name: "Human Scale",
  6350. height: math.unit(6, "feet")
  6351. },
  6352. {
  6353. name: "Librarian",
  6354. height: math.unit(50, "feet"),
  6355. default: true
  6356. },
  6357. {
  6358. name: "Immense",
  6359. height: math.unit(200, "miles")
  6360. },
  6361. ]
  6362. ))
  6363. characterMakers.push(() => makeCharacter(
  6364. { name: "Danni Rosie" },
  6365. {
  6366. front: {
  6367. height: math.unit(6, "feet"),
  6368. weight: math.unit(180, "lbs"),
  6369. name: "Front",
  6370. image: {
  6371. source: "./media/characters/danni-rosie/front.svg",
  6372. extra: 1260 / 1128,
  6373. bottom: 0.022
  6374. }
  6375. },
  6376. },
  6377. [
  6378. {
  6379. name: "Micro",
  6380. height: math.unit(2, "inches"),
  6381. default: true
  6382. },
  6383. ]
  6384. ))
  6385. characterMakers.push(() => makeCharacter(
  6386. { name: "Samantha Kruse" },
  6387. {
  6388. front: {
  6389. height: math.unit(5 + 9 / 12, "feet"),
  6390. weight: math.unit(220, "lb"),
  6391. name: "Front",
  6392. image: {
  6393. source: "./media/characters/samantha-kruse/front.svg",
  6394. extra: (985 / 935),
  6395. bottom: 0.03
  6396. }
  6397. },
  6398. frontUndressed: {
  6399. height: math.unit(5 + 9 / 12, "feet"),
  6400. weight: math.unit(220, "lb"),
  6401. name: "Front (Undressed)",
  6402. image: {
  6403. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6404. extra: (973 / 923),
  6405. bottom: 0.025
  6406. }
  6407. },
  6408. fat: {
  6409. height: math.unit(5 + 9 / 12, "feet"),
  6410. weight: math.unit(900, "lb"),
  6411. name: "Front (Fat)",
  6412. image: {
  6413. source: "./media/characters/samantha-kruse/fat.svg",
  6414. extra: 2688 / 2561
  6415. }
  6416. },
  6417. },
  6418. [
  6419. {
  6420. name: "Normal",
  6421. height: math.unit(5 + 9 / 12, "feet"),
  6422. default: true
  6423. }
  6424. ]
  6425. ))
  6426. characterMakers.push(() => makeCharacter(
  6427. { name: "Amelia Rosie" },
  6428. {
  6429. back: {
  6430. height: math.unit(5 + 4 / 12, "feet"),
  6431. weight: math.unit(4963, "lb"),
  6432. name: "Back",
  6433. image: {
  6434. source: "./media/characters/amelia-rosie/back.svg",
  6435. extra: 1113 / 963,
  6436. bottom: 0.01
  6437. }
  6438. },
  6439. },
  6440. [
  6441. {
  6442. name: "Level 0",
  6443. height: math.unit(5 + 4 / 12, "feet")
  6444. },
  6445. {
  6446. name: "Level 1",
  6447. height: math.unit(164597, "feet"),
  6448. default: true
  6449. },
  6450. {
  6451. name: "Level 2",
  6452. height: math.unit(956243, "miles")
  6453. },
  6454. {
  6455. name: "Level 3",
  6456. height: math.unit(29421709423, "miles")
  6457. },
  6458. {
  6459. name: "Level 4",
  6460. height: math.unit(154, "lightyears")
  6461. },
  6462. {
  6463. name: "Level 5",
  6464. height: math.unit(4738272, "lightyears")
  6465. },
  6466. {
  6467. name: "Level 6",
  6468. height: math.unit(145787152896, "lightyears")
  6469. },
  6470. ]
  6471. ))
  6472. characterMakers.push(() => makeCharacter(
  6473. { name: "Rook Kitara" },
  6474. {
  6475. front: {
  6476. height: math.unit(5 + 11 / 12, "feet"),
  6477. weight: math.unit(65, "kg"),
  6478. name: "Front",
  6479. image: {
  6480. source: "./media/characters/rook-kitara/front.svg",
  6481. extra: 1347 / 1274,
  6482. bottom: 0.005
  6483. }
  6484. },
  6485. },
  6486. [
  6487. {
  6488. name: "Totally Unfair",
  6489. height: math.unit(1.8, "mm")
  6490. },
  6491. {
  6492. name: "Lap Rookie",
  6493. height: math.unit(1.4, "feet")
  6494. },
  6495. {
  6496. name: "Normal",
  6497. height: math.unit(5 + 11 / 12, "feet"),
  6498. default: true
  6499. },
  6500. {
  6501. name: "How Did This Happen",
  6502. height: math.unit(80, "miles")
  6503. }
  6504. ]
  6505. ))
  6506. characterMakers.push(() => makeCharacter(
  6507. { name: "Pisces" },
  6508. {
  6509. front: {
  6510. height: math.unit(7, "feet"),
  6511. weight: math.unit(300, "lb"),
  6512. name: "Front",
  6513. image: {
  6514. source: "./media/characters/pisces/front.svg",
  6515. extra: 2255 / 2115,
  6516. bottom: 0.03
  6517. }
  6518. },
  6519. back: {
  6520. height: math.unit(7, "feet"),
  6521. weight: math.unit(300, "lb"),
  6522. name: "Back",
  6523. image: {
  6524. source: "./media/characters/pisces/back.svg",
  6525. extra: 2146 / 2055,
  6526. bottom: 0.04
  6527. }
  6528. },
  6529. },
  6530. [
  6531. {
  6532. name: "Normal",
  6533. height: math.unit(7, "feet"),
  6534. default: true
  6535. },
  6536. {
  6537. name: "Swimming Pool",
  6538. height: math.unit(12.2, "meters")
  6539. },
  6540. {
  6541. name: "Olympic Swimming Pool",
  6542. height: math.unit(56.3, "meters")
  6543. },
  6544. {
  6545. name: "Lake Superior",
  6546. height: math.unit(93900, "meters")
  6547. },
  6548. {
  6549. name: "Mediterranean Sea",
  6550. height: math.unit(644457, "meters")
  6551. },
  6552. {
  6553. name: "World's Oceans",
  6554. height: math.unit(4567491, "meters")
  6555. },
  6556. ]
  6557. ))
  6558. characterMakers.push(() => makeCharacter(
  6559. { name: "Zelas" },
  6560. {
  6561. front: {
  6562. height: math.unit(2.3, "meters"),
  6563. weight: math.unit(120, "kg"),
  6564. name: "Front",
  6565. image: {
  6566. source: "./media/characters/zelas/front.svg"
  6567. }
  6568. },
  6569. side: {
  6570. height: math.unit(2.3, "meters"),
  6571. weight: math.unit(120, "kg"),
  6572. name: "Side",
  6573. image: {
  6574. source: "./media/characters/zelas/side.svg"
  6575. }
  6576. },
  6577. back: {
  6578. height: math.unit(2.3, "meters"),
  6579. weight: math.unit(120, "kg"),
  6580. name: "Back",
  6581. image: {
  6582. source: "./media/characters/zelas/back.svg"
  6583. }
  6584. },
  6585. foot: {
  6586. height: math.unit(1.116, "feet"),
  6587. name: "Foot",
  6588. image: {
  6589. source: "./media/characters/zelas/foot.svg"
  6590. }
  6591. },
  6592. },
  6593. [
  6594. {
  6595. name: "Normal",
  6596. height: math.unit(2.3, "meters")
  6597. },
  6598. {
  6599. name: "Macro",
  6600. height: math.unit(30, "meters"),
  6601. default: true
  6602. },
  6603. ]
  6604. ))
  6605. characterMakers.push(() => makeCharacter(
  6606. { name: "Talbot" },
  6607. {
  6608. front: {
  6609. height: math.unit(1, "inch"),
  6610. weight: math.unit(0.21, "grams"),
  6611. name: "Front",
  6612. image: {
  6613. source: "./media/characters/talbot/front.svg",
  6614. extra: 594 / 544
  6615. }
  6616. },
  6617. },
  6618. [
  6619. {
  6620. name: "Micro",
  6621. height: math.unit(1, "inch"),
  6622. default: true
  6623. },
  6624. ]
  6625. ))
  6626. characterMakers.push(() => makeCharacter(
  6627. { name: "Fliss" },
  6628. {
  6629. front: {
  6630. height: math.unit(3 + 3 / 12, "feet"),
  6631. weight: math.unit(51.8, "lb"),
  6632. name: "Front",
  6633. image: {
  6634. source: "./media/characters/fliss/front.svg",
  6635. extra: 840 / 640
  6636. }
  6637. },
  6638. },
  6639. [
  6640. {
  6641. name: "Teeny Tiny",
  6642. height: math.unit(1, "mm")
  6643. },
  6644. {
  6645. name: "Small",
  6646. height: math.unit(1, "inch"),
  6647. default: true
  6648. },
  6649. {
  6650. name: "Standard Sylveon",
  6651. height: math.unit(3 + 3 / 12, "feet")
  6652. },
  6653. {
  6654. name: "Large Nuisance",
  6655. height: math.unit(33, "feet")
  6656. },
  6657. {
  6658. name: "City Filler",
  6659. height: math.unit(3000, "feet")
  6660. },
  6661. {
  6662. name: "New Horizon",
  6663. height: math.unit(6000, "miles")
  6664. },
  6665. ]
  6666. ))
  6667. characterMakers.push(() => makeCharacter(
  6668. { name: "Fleta" },
  6669. {
  6670. front: {
  6671. height: math.unit(5, "cm"),
  6672. weight: math.unit(1.94, "g"),
  6673. name: "Front",
  6674. image: {
  6675. source: "./media/characters/fleta/front.svg",
  6676. extra: 835 / 803
  6677. }
  6678. },
  6679. back: {
  6680. height: math.unit(5, "cm"),
  6681. weight: math.unit(1.94, "g"),
  6682. name: "Back",
  6683. image: {
  6684. source: "./media/characters/fleta/back.svg",
  6685. extra: 835 / 803
  6686. }
  6687. },
  6688. },
  6689. [
  6690. {
  6691. name: "Micro",
  6692. height: math.unit(5, "cm"),
  6693. default: true
  6694. },
  6695. ]
  6696. ))
  6697. characterMakers.push(() => makeCharacter(
  6698. { name: "Dominic" },
  6699. {
  6700. front: {
  6701. height: math.unit(6, "feet"),
  6702. weight: math.unit(225, "lb"),
  6703. name: "Front",
  6704. image: {
  6705. source: "./media/characters/dominic/front.svg",
  6706. extra: 1770 / 1620,
  6707. bottom: 0.025
  6708. }
  6709. },
  6710. back: {
  6711. height: math.unit(6, "feet"),
  6712. weight: math.unit(225, "lb"),
  6713. name: "Back",
  6714. image: {
  6715. source: "./media/characters/dominic/back.svg",
  6716. extra: 1745 / 1620,
  6717. bottom: 0.065
  6718. }
  6719. },
  6720. },
  6721. [
  6722. {
  6723. name: "Nano",
  6724. height: math.unit(0.1, "mm")
  6725. },
  6726. {
  6727. name: "Micro-",
  6728. height: math.unit(1, "mm")
  6729. },
  6730. {
  6731. name: "Micro",
  6732. height: math.unit(4, "inches")
  6733. },
  6734. {
  6735. name: "Normal",
  6736. height: math.unit(6 + 4 / 12, "feet"),
  6737. default: true
  6738. },
  6739. {
  6740. name: "Macro",
  6741. height: math.unit(115, "feet")
  6742. },
  6743. {
  6744. name: "Macro+",
  6745. height: math.unit(955, "feet")
  6746. },
  6747. {
  6748. name: "Megamacro",
  6749. height: math.unit(8990, "feet")
  6750. },
  6751. {
  6752. name: "Gigmacro",
  6753. height: math.unit(9310, "miles")
  6754. },
  6755. {
  6756. name: "Teramacro",
  6757. height: math.unit(1567005010, "miles")
  6758. },
  6759. {
  6760. name: "Examacro",
  6761. height: math.unit(1425, "parsecs")
  6762. },
  6763. ]
  6764. ))
  6765. characterMakers.push(() => makeCharacter(
  6766. { name: "Major Colonel" },
  6767. {
  6768. front: {
  6769. height: math.unit(400, "feet"),
  6770. weight: math.unit(44444444, "lb"),
  6771. name: "Front",
  6772. image: {
  6773. source: "./media/characters/major-colonel/front.svg"
  6774. }
  6775. },
  6776. back: {
  6777. height: math.unit(400, "feet"),
  6778. weight: math.unit(44444444, "lb"),
  6779. name: "Back",
  6780. image: {
  6781. source: "./media/characters/major-colonel/back.svg"
  6782. }
  6783. },
  6784. },
  6785. [
  6786. {
  6787. name: "Macro",
  6788. height: math.unit(400, "feet"),
  6789. default: true
  6790. },
  6791. ]
  6792. ))
  6793. characterMakers.push(() => makeCharacter(
  6794. { name: "Axel Lycan" },
  6795. {
  6796. front: {
  6797. height: math.unit(6, "feet"),
  6798. weight: math.unit(120, "lb"),
  6799. name: "Front",
  6800. image: {
  6801. source: "./media/characters/axel-lycan/front.svg",
  6802. extra: 1,
  6803. bottom: 0.08
  6804. }
  6805. },
  6806. },
  6807. [
  6808. {
  6809. name: "Macro",
  6810. height: math.unit(1, "km"),
  6811. default: true
  6812. },
  6813. ]
  6814. ))
  6815. characterMakers.push(() => makeCharacter(
  6816. { name: "Vanrel (Hyena)" },
  6817. {
  6818. front: {
  6819. height: math.unit(5 + 9 / 12, "feet"),
  6820. weight: math.unit(175, "lb"),
  6821. name: "Front",
  6822. image: {
  6823. source: "./media/characters/vanrel-hyena/front.svg",
  6824. extra: 1086 / 1010,
  6825. bottom: 0.04
  6826. }
  6827. },
  6828. },
  6829. [
  6830. {
  6831. name: "Normal",
  6832. height: math.unit(5 + 9 / 12, "feet"),
  6833. default: true
  6834. },
  6835. ]
  6836. ))
  6837. characterMakers.push(() => makeCharacter(
  6838. { name: "Abbott Absol" },
  6839. {
  6840. front: {
  6841. height: math.unit(6, "feet"),
  6842. weight: math.unit(103, "lb"),
  6843. name: "Front",
  6844. image: {
  6845. source: "./media/characters/abbott-absol/front.svg",
  6846. extra: 2010 / 1842
  6847. }
  6848. },
  6849. },
  6850. [
  6851. {
  6852. name: "Megamicro",
  6853. height: math.unit(0.1, "mm")
  6854. },
  6855. {
  6856. name: "Micro",
  6857. height: math.unit(1, "inch")
  6858. },
  6859. {
  6860. name: "Normal",
  6861. height: math.unit(6, "feet"),
  6862. default: true
  6863. },
  6864. ]
  6865. ))
  6866. characterMakers.push(() => makeCharacter(
  6867. { name: "Hector" },
  6868. {
  6869. front: {
  6870. height: math.unit(6, "feet"),
  6871. weight: math.unit(264, "lb"),
  6872. name: "Front",
  6873. image: {
  6874. source: "./media/characters/hector/front.svg",
  6875. extra: 2280 / 2130,
  6876. bottom: 0.07
  6877. }
  6878. },
  6879. },
  6880. [
  6881. {
  6882. name: "Normal",
  6883. height: math.unit(12.25, "foot"),
  6884. default: true
  6885. },
  6886. {
  6887. name: "Macro",
  6888. height: math.unit(160, "feet")
  6889. },
  6890. ]
  6891. ))
  6892. characterMakers.push(() => makeCharacter(
  6893. { name: "Sal" },
  6894. {
  6895. front: {
  6896. height: math.unit(6, "feet"),
  6897. weight: math.unit(150, "lb"),
  6898. name: "Front",
  6899. image: {
  6900. source: "./media/characters/sal/front.svg",
  6901. extra: 1846 / 1699,
  6902. bottom: 0.04
  6903. }
  6904. },
  6905. },
  6906. [
  6907. {
  6908. name: "Megamacro",
  6909. height: math.unit(10, "miles"),
  6910. default: true
  6911. },
  6912. ]
  6913. ))
  6914. characterMakers.push(() => makeCharacter(
  6915. { name: "Ranger" },
  6916. {
  6917. front: {
  6918. height: math.unit(3, "meters"),
  6919. weight: math.unit(450, "kg"),
  6920. name: "front",
  6921. image: {
  6922. source: "./media/characters/ranger/front.svg",
  6923. extra: 2401 / 2243,
  6924. bottom: 0.05
  6925. }
  6926. },
  6927. },
  6928. [
  6929. {
  6930. name: "Normal",
  6931. height: math.unit(3, "meters"),
  6932. default: true
  6933. },
  6934. ]
  6935. ))
  6936. characterMakers.push(() => makeCharacter(
  6937. { name: "Theresa" },
  6938. {
  6939. front: {
  6940. height: math.unit(14, "feet"),
  6941. weight: math.unit(800, "kg"),
  6942. name: "Front",
  6943. image: {
  6944. source: "./media/characters/theresa/front.svg",
  6945. extra: 3575 / 3346,
  6946. bottom: 0.03
  6947. }
  6948. },
  6949. },
  6950. [
  6951. {
  6952. name: "Normal",
  6953. height: math.unit(14, "feet"),
  6954. default: true
  6955. },
  6956. ]
  6957. ))
  6958. characterMakers.push(() => makeCharacter(
  6959. { name: "Ine" },
  6960. {
  6961. front: {
  6962. height: math.unit(6, "feet"),
  6963. weight: math.unit(3, "kg"),
  6964. name: "Front",
  6965. image: {
  6966. source: "./media/characters/ine/front.svg",
  6967. extra: 678 / 539,
  6968. bottom: 0.023
  6969. }
  6970. },
  6971. },
  6972. [
  6973. {
  6974. name: "Normal",
  6975. height: math.unit(2.265, "feet"),
  6976. default: true
  6977. },
  6978. ]
  6979. ))
  6980. characterMakers.push(() => makeCharacter(
  6981. { name: "Vial" },
  6982. {
  6983. front: {
  6984. height: math.unit(5, "feet"),
  6985. weight: math.unit(30, "kg"),
  6986. name: "Front",
  6987. image: {
  6988. source: "./media/characters/vial/front.svg",
  6989. extra: 1365 / 1277,
  6990. bottom: 0.04
  6991. }
  6992. },
  6993. },
  6994. [
  6995. {
  6996. name: "Normal",
  6997. height: math.unit(5, "feet"),
  6998. default: true
  6999. },
  7000. ]
  7001. ))
  7002. characterMakers.push(() => makeCharacter(
  7003. { name: "Rovoska" },
  7004. {
  7005. side: {
  7006. height: math.unit(3.4, "meters"),
  7007. weight: math.unit(1000, "lb"),
  7008. name: "Side",
  7009. image: {
  7010. source: "./media/characters/rovoska/side.svg",
  7011. extra: 4403 / 1515
  7012. }
  7013. },
  7014. },
  7015. [
  7016. {
  7017. name: "Normal",
  7018. height: math.unit(3.4, "meters"),
  7019. default: true
  7020. },
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Gunner Rotthbauer" },
  7025. {
  7026. front: {
  7027. height: math.unit(8, "feet"),
  7028. weight: math.unit(315, "lb"),
  7029. name: "Front",
  7030. image: {
  7031. source: "./media/characters/gunner-rotthbauer/front.svg"
  7032. }
  7033. },
  7034. back: {
  7035. height: math.unit(8, "feet"),
  7036. weight: math.unit(315, "lb"),
  7037. name: "Back",
  7038. image: {
  7039. source: "./media/characters/gunner-rotthbauer/back.svg"
  7040. }
  7041. },
  7042. },
  7043. [
  7044. {
  7045. name: "Micro",
  7046. height: math.unit(3.5, "inches")
  7047. },
  7048. {
  7049. name: "Normal",
  7050. height: math.unit(8, "feet"),
  7051. default: true
  7052. },
  7053. {
  7054. name: "Macro",
  7055. height: math.unit(250, "feet")
  7056. },
  7057. {
  7058. name: "Megamacro",
  7059. height: math.unit(1, "AU")
  7060. },
  7061. ]
  7062. ))
  7063. characterMakers.push(() => makeCharacter(
  7064. { name: "Allatia" },
  7065. {
  7066. front: {
  7067. height: math.unit(5 + 5 / 12, "feet"),
  7068. weight: math.unit(140, "lb"),
  7069. name: "Front",
  7070. image: {
  7071. source: "./media/characters/allatia/front.svg",
  7072. extra: 1227 / 1180,
  7073. bottom: 0.027
  7074. }
  7075. },
  7076. },
  7077. [
  7078. {
  7079. name: "Normal",
  7080. height: math.unit(5 + 5 / 12, "feet")
  7081. },
  7082. {
  7083. name: "Macro",
  7084. height: math.unit(250, "feet"),
  7085. default: true
  7086. },
  7087. {
  7088. name: "Megamacro",
  7089. height: math.unit(8, "miles")
  7090. }
  7091. ]
  7092. ))
  7093. characterMakers.push(() => makeCharacter(
  7094. { name: "Tene" },
  7095. {
  7096. front: {
  7097. height: math.unit(6, "feet"),
  7098. weight: math.unit(120, "lb"),
  7099. name: "Front",
  7100. image: {
  7101. source: "./media/characters/tene/front.svg",
  7102. extra: 1728 / 1578,
  7103. bottom: 0.022
  7104. }
  7105. },
  7106. stomping: {
  7107. height: math.unit(2.025, "meters"),
  7108. weight: math.unit(120, "lb"),
  7109. name: "Stomping",
  7110. image: {
  7111. source: "./media/characters/tene/stomping.svg",
  7112. extra: 938 / 873,
  7113. bottom: 0.01
  7114. }
  7115. },
  7116. sitting: {
  7117. height: math.unit(1, "meter"),
  7118. weight: math.unit(120, "lb"),
  7119. name: "Sitting",
  7120. image: {
  7121. source: "./media/characters/tene/sitting.svg",
  7122. extra: 437 / 415,
  7123. bottom: 0.1
  7124. }
  7125. },
  7126. feral: {
  7127. height: math.unit(3.9, "feet"),
  7128. weight: math.unit(250, "lb"),
  7129. name: "Feral",
  7130. image: {
  7131. source: "./media/characters/tene/feral.svg",
  7132. extra: 717 / 458,
  7133. bottom: 0.179
  7134. }
  7135. },
  7136. },
  7137. [
  7138. {
  7139. name: "Normal",
  7140. height: math.unit(6, "feet")
  7141. },
  7142. {
  7143. name: "Macro",
  7144. height: math.unit(300, "feet"),
  7145. default: true
  7146. },
  7147. {
  7148. name: "Megamacro",
  7149. height: math.unit(5, "miles")
  7150. },
  7151. ]
  7152. ))
  7153. characterMakers.push(() => makeCharacter(
  7154. { name: "Evander" },
  7155. {
  7156. side: {
  7157. height: math.unit(6, "feet"),
  7158. name: "Side",
  7159. image: {
  7160. source: "./media/characters/evander/side.svg",
  7161. extra: 877 / 477
  7162. }
  7163. },
  7164. },
  7165. [
  7166. {
  7167. name: "Normal",
  7168. height: math.unit(0.83, "meters"),
  7169. default: true
  7170. },
  7171. ]
  7172. ))
  7173. characterMakers.push(() => makeCharacter(
  7174. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7175. {
  7176. front: {
  7177. height: math.unit(12, "feet"),
  7178. weight: math.unit(1000, "lb"),
  7179. name: "Front",
  7180. image: {
  7181. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7182. extra: 1762 / 1611
  7183. }
  7184. },
  7185. back: {
  7186. height: math.unit(12, "feet"),
  7187. weight: math.unit(1000, "lb"),
  7188. name: "Back",
  7189. image: {
  7190. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7191. extra: 1762 / 1611
  7192. }
  7193. },
  7194. },
  7195. [
  7196. {
  7197. name: "Normal",
  7198. height: math.unit(12, "feet"),
  7199. default: true
  7200. },
  7201. {
  7202. name: "Kaiju",
  7203. height: math.unit(150, "feet")
  7204. },
  7205. ]
  7206. ))
  7207. characterMakers.push(() => makeCharacter(
  7208. { name: "Zero Alurus" },
  7209. {
  7210. front: {
  7211. height: math.unit(6, "feet"),
  7212. weight: math.unit(150, "lb"),
  7213. name: "Front",
  7214. image: {
  7215. source: "./media/characters/zero-alurus/front.svg"
  7216. }
  7217. },
  7218. back: {
  7219. height: math.unit(6, "feet"),
  7220. weight: math.unit(150, "lb"),
  7221. name: "Back",
  7222. image: {
  7223. source: "./media/characters/zero-alurus/back.svg"
  7224. }
  7225. },
  7226. },
  7227. [
  7228. {
  7229. name: "Normal",
  7230. height: math.unit(5 + 10 / 12, "feet")
  7231. },
  7232. {
  7233. name: "Macro",
  7234. height: math.unit(60, "feet"),
  7235. default: true
  7236. },
  7237. {
  7238. name: "Macro+",
  7239. height: math.unit(450, "feet")
  7240. },
  7241. ]
  7242. ))
  7243. characterMakers.push(() => makeCharacter(
  7244. { name: "Mega Shi" },
  7245. {
  7246. front: {
  7247. height: math.unit(6, "feet"),
  7248. weight: math.unit(200, "lb"),
  7249. name: "Front",
  7250. image: {
  7251. source: "./media/characters/mega-shi/front.svg",
  7252. extra: 1279 / 1250,
  7253. bottom: 0.02
  7254. }
  7255. },
  7256. back: {
  7257. height: math.unit(6, "feet"),
  7258. weight: math.unit(200, "lb"),
  7259. name: "Back",
  7260. image: {
  7261. source: "./media/characters/mega-shi/back.svg",
  7262. extra: 1279 / 1250,
  7263. bottom: 0.02
  7264. }
  7265. },
  7266. },
  7267. [
  7268. {
  7269. name: "Micro",
  7270. height: math.unit(16 + 6 / 12, "feet")
  7271. },
  7272. {
  7273. name: "Normal",
  7274. height: math.unit(660, "feet"),
  7275. default: true
  7276. },
  7277. {
  7278. name: "Megamacro",
  7279. height: math.unit(10, "miles")
  7280. },
  7281. {
  7282. name: "Planetary Launch",
  7283. height: math.unit(500, "miles")
  7284. },
  7285. {
  7286. name: "Interstellar",
  7287. height: math.unit(1e9, "miles")
  7288. },
  7289. {
  7290. name: "Leaving the Universe",
  7291. height: math.unit(1, "gigaparsec")
  7292. },
  7293. {
  7294. name: "Travelling Universes",
  7295. height: math.unit(30e15, "parsecs")
  7296. },
  7297. ]
  7298. ))
  7299. characterMakers.push(() => makeCharacter(
  7300. { name: "Odyssey" },
  7301. {
  7302. front: {
  7303. height: math.unit(6, "feet"),
  7304. weight: math.unit(150, "lb"),
  7305. name: "Front",
  7306. image: {
  7307. source: "./media/characters/odyssey/front.svg",
  7308. extra: 1782 / 1582,
  7309. bottom: 0.01
  7310. }
  7311. },
  7312. side: {
  7313. height: math.unit(5.6, "feet"),
  7314. weight: math.unit(140, "lb"),
  7315. name: "Side",
  7316. image: {
  7317. source: "./media/characters/odyssey/side.svg",
  7318. extra: 6462 / 5700
  7319. }
  7320. },
  7321. },
  7322. [
  7323. {
  7324. name: "Normal",
  7325. height: math.unit(5 + 4 / 12, "feet")
  7326. },
  7327. {
  7328. name: "Macro",
  7329. height: math.unit(1, "km")
  7330. },
  7331. {
  7332. name: "Megamacro",
  7333. height: math.unit(3000, "km")
  7334. },
  7335. {
  7336. name: "Gigamacro",
  7337. height: math.unit(1, "AU"),
  7338. default: true
  7339. },
  7340. {
  7341. name: "Omniversal",
  7342. height: math.unit(100e14, "lightyears")
  7343. },
  7344. ]
  7345. ))
  7346. characterMakers.push(() => makeCharacter(
  7347. { name: "Mekuto" },
  7348. {
  7349. front: {
  7350. height: math.unit(6, "feet"),
  7351. weight: math.unit(300, "lb"),
  7352. name: "Front",
  7353. image: {
  7354. source: "./media/characters/mekuto/front.svg",
  7355. extra: 921 / 832,
  7356. bottom: 0.03
  7357. }
  7358. },
  7359. hand: {
  7360. height: math.unit(6 / 10.24, "feet"),
  7361. name: "Hand",
  7362. image: {
  7363. source: "./media/characters/mekuto/hand.svg"
  7364. }
  7365. },
  7366. foot: {
  7367. height: math.unit(6 / 5.05, "feet"),
  7368. name: "Foot",
  7369. image: {
  7370. source: "./media/characters/mekuto/foot.svg"
  7371. }
  7372. },
  7373. },
  7374. [
  7375. {
  7376. name: "Minimicro",
  7377. height: math.unit(0.2, "inches")
  7378. },
  7379. {
  7380. name: "Micro",
  7381. height: math.unit(1.5, "inches")
  7382. },
  7383. {
  7384. name: "Normal",
  7385. height: math.unit(5 + 11 / 12, "feet"),
  7386. default: true
  7387. },
  7388. {
  7389. name: "Minimacro",
  7390. height: math.unit(17 + 9 / 12, "feet")
  7391. },
  7392. {
  7393. name: "Macro",
  7394. height: math.unit(177.5, "feet")
  7395. },
  7396. {
  7397. name: "Megamacro",
  7398. height: math.unit(152, "miles")
  7399. },
  7400. ]
  7401. ))
  7402. characterMakers.push(() => makeCharacter(
  7403. { name: "Dafydd Tomos" },
  7404. {
  7405. front: {
  7406. height: math.unit(6.5, "inches"),
  7407. weight: math.unit(13, "oz"),
  7408. name: "Front",
  7409. image: {
  7410. source: "./media/characters/dafydd-tomos/front.svg",
  7411. extra: 2990 / 2603,
  7412. bottom: 0.03
  7413. }
  7414. },
  7415. },
  7416. [
  7417. {
  7418. name: "Micro",
  7419. height: math.unit(6.5, "inches"),
  7420. default: true
  7421. },
  7422. ]
  7423. ))
  7424. characterMakers.push(() => makeCharacter(
  7425. { name: "Splinter" },
  7426. {
  7427. front: {
  7428. height: math.unit(6, "feet"),
  7429. weight: math.unit(150, "lb"),
  7430. name: "Front",
  7431. image: {
  7432. source: "./media/characters/splinter/front.svg",
  7433. extra: 2990 / 2882,
  7434. bottom: 0.04
  7435. }
  7436. },
  7437. back: {
  7438. height: math.unit(6, "feet"),
  7439. weight: math.unit(150, "lb"),
  7440. name: "Back",
  7441. image: {
  7442. source: "./media/characters/splinter/back.svg",
  7443. extra: 2990 / 2882,
  7444. bottom: 0.04
  7445. }
  7446. },
  7447. },
  7448. [
  7449. {
  7450. name: "Normal",
  7451. height: math.unit(6, "feet")
  7452. },
  7453. {
  7454. name: "Macro",
  7455. height: math.unit(230, "meters"),
  7456. default: true
  7457. },
  7458. ]
  7459. ))
  7460. characterMakers.push(() => makeCharacter(
  7461. { name: "SnowGabumon" },
  7462. {
  7463. front: {
  7464. height: math.unit(4 + 10 / 12, "feet"),
  7465. weight: math.unit(480, "lb"),
  7466. name: "Front",
  7467. image: {
  7468. source: "./media/characters/snow-gabumon/front.svg",
  7469. extra: 1140 / 963,
  7470. bottom: 0.058
  7471. }
  7472. },
  7473. back: {
  7474. height: math.unit(4 + 10 / 12, "feet"),
  7475. weight: math.unit(480, "lb"),
  7476. name: "Back",
  7477. image: {
  7478. source: "./media/characters/snow-gabumon/back.svg",
  7479. extra: 1115 / 962,
  7480. bottom: 0.041
  7481. }
  7482. },
  7483. frontUndresed: {
  7484. height: math.unit(4 + 10 / 12, "feet"),
  7485. weight: math.unit(480, "lb"),
  7486. name: "Front (Undressed)",
  7487. image: {
  7488. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7489. extra: 1061 / 960,
  7490. bottom: 0.045
  7491. }
  7492. },
  7493. },
  7494. [
  7495. {
  7496. name: "Micro",
  7497. height: math.unit(1, "inch")
  7498. },
  7499. {
  7500. name: "Normal",
  7501. height: math.unit(4 + 10 / 12, "feet"),
  7502. default: true
  7503. },
  7504. {
  7505. name: "Macro",
  7506. height: math.unit(200, "feet")
  7507. },
  7508. {
  7509. name: "Megamacro",
  7510. height: math.unit(120, "miles")
  7511. },
  7512. {
  7513. name: "Gigamacro",
  7514. height: math.unit(9800, "miles")
  7515. },
  7516. ]
  7517. ))
  7518. characterMakers.push(() => makeCharacter(
  7519. { name: "Moody" },
  7520. {
  7521. front: {
  7522. height: math.unit(1.7, "meters"),
  7523. weight: math.unit(140, "lb"),
  7524. name: "Front",
  7525. image: {
  7526. source: "./media/characters/moody/front.svg",
  7527. extra: 3226 / 3007,
  7528. bottom: 0.087
  7529. }
  7530. },
  7531. },
  7532. [
  7533. {
  7534. name: "Micro",
  7535. height: math.unit(1, "mm")
  7536. },
  7537. {
  7538. name: "Normal",
  7539. height: math.unit(1.7, "meters"),
  7540. default: true
  7541. },
  7542. {
  7543. name: "Macro",
  7544. height: math.unit(80, "meters")
  7545. },
  7546. {
  7547. name: "Macro+",
  7548. height: math.unit(500, "meters")
  7549. },
  7550. ]
  7551. ))
  7552. characterMakers.push(() => makeCharacter(
  7553. { name: "Zyas" },
  7554. {
  7555. front: {
  7556. height: math.unit(6, "feet"),
  7557. weight: math.unit(150, "lb"),
  7558. name: "Front",
  7559. image: {
  7560. source: "./media/characters/zyas/front.svg",
  7561. extra: 1180 / 1120,
  7562. bottom: 0.045
  7563. }
  7564. },
  7565. },
  7566. [
  7567. {
  7568. name: "Normal",
  7569. height: math.unit(10, "feet"),
  7570. default: true
  7571. },
  7572. {
  7573. name: "Macro",
  7574. height: math.unit(500, "feet")
  7575. },
  7576. {
  7577. name: "Megamacro",
  7578. height: math.unit(5, "miles")
  7579. },
  7580. {
  7581. name: "Teramacro",
  7582. height: math.unit(150000, "miles")
  7583. },
  7584. ]
  7585. ))
  7586. characterMakers.push(() => makeCharacter(
  7587. { name: "Cuon" },
  7588. {
  7589. front: {
  7590. height: math.unit(6, "feet"),
  7591. weight: math.unit(150, "lb"),
  7592. name: "Front",
  7593. image: {
  7594. source: "./media/characters/cuon/front.svg",
  7595. extra: 1390 / 1320,
  7596. bottom: 0.008
  7597. }
  7598. },
  7599. },
  7600. [
  7601. {
  7602. name: "Micro",
  7603. height: math.unit(3, "inches")
  7604. },
  7605. {
  7606. name: "Normal",
  7607. height: math.unit(18 + 9 / 12, "feet"),
  7608. default: true
  7609. },
  7610. {
  7611. name: "Macro",
  7612. height: math.unit(360, "feet")
  7613. },
  7614. {
  7615. name: "Megamacro",
  7616. height: math.unit(360, "miles")
  7617. },
  7618. ]
  7619. ))
  7620. characterMakers.push(() => makeCharacter(
  7621. { name: "Nyanuxk" },
  7622. {
  7623. front: {
  7624. height: math.unit(2.4, "meters"),
  7625. weight: math.unit(70, "kg"),
  7626. name: "Front",
  7627. image: {
  7628. source: "./media/characters/nyanuxk/front.svg",
  7629. extra: 1172 / 1084,
  7630. bottom: 0.065
  7631. }
  7632. },
  7633. side: {
  7634. height: math.unit(2.4, "meters"),
  7635. weight: math.unit(70, "kg"),
  7636. name: "Side",
  7637. image: {
  7638. source: "./media/characters/nyanuxk/side.svg",
  7639. extra: 1190 / 1132,
  7640. bottom: 0.007
  7641. }
  7642. },
  7643. back: {
  7644. height: math.unit(2.4, "meters"),
  7645. weight: math.unit(70, "kg"),
  7646. name: "Back",
  7647. image: {
  7648. source: "./media/characters/nyanuxk/back.svg",
  7649. extra: 1200 / 1141,
  7650. bottom: 0.015
  7651. }
  7652. },
  7653. foot: {
  7654. height: math.unit(0.52, "meters"),
  7655. name: "Foot",
  7656. image: {
  7657. source: "./media/characters/nyanuxk/foot.svg"
  7658. }
  7659. },
  7660. },
  7661. [
  7662. {
  7663. name: "Micro",
  7664. height: math.unit(2, "cm")
  7665. },
  7666. {
  7667. name: "Normal",
  7668. height: math.unit(2.4, "meters"),
  7669. default: true
  7670. },
  7671. {
  7672. name: "Smaller Macro",
  7673. height: math.unit(120, "meters")
  7674. },
  7675. {
  7676. name: "Bigger Macro",
  7677. height: math.unit(1.2, "km")
  7678. },
  7679. {
  7680. name: "Megamacro",
  7681. height: math.unit(15, "kilometers")
  7682. },
  7683. {
  7684. name: "Gigamacro",
  7685. height: math.unit(2000, "km")
  7686. },
  7687. {
  7688. name: "Teramacro",
  7689. height: math.unit(500000, "km")
  7690. },
  7691. ]
  7692. ))
  7693. characterMakers.push(() => makeCharacter(
  7694. { name: "Ailbhe" },
  7695. {
  7696. side: {
  7697. height: math.unit(6, "feet"),
  7698. name: "Side",
  7699. image: {
  7700. source: "./media/characters/ailbhe/side.svg",
  7701. extra: 757 / 464,
  7702. bottom: 0.041
  7703. }
  7704. },
  7705. },
  7706. [
  7707. {
  7708. name: "Normal",
  7709. height: math.unit(1.07, "meters"),
  7710. default: true
  7711. },
  7712. ]
  7713. ))
  7714. characterMakers.push(() => makeCharacter(
  7715. { name: "Zevulfius" },
  7716. {
  7717. front: {
  7718. height: math.unit(6, "feet"),
  7719. weight: math.unit(120, "kg"),
  7720. name: "Front",
  7721. image: {
  7722. source: "./media/characters/zevulfius/front.svg",
  7723. extra: 965 / 903
  7724. }
  7725. },
  7726. side: {
  7727. height: math.unit(6, "feet"),
  7728. weight: math.unit(120, "kg"),
  7729. name: "Side",
  7730. image: {
  7731. source: "./media/characters/zevulfius/side.svg",
  7732. extra: 939 / 900
  7733. }
  7734. },
  7735. back: {
  7736. height: math.unit(6, "feet"),
  7737. weight: math.unit(120, "kg"),
  7738. name: "Back",
  7739. image: {
  7740. source: "./media/characters/zevulfius/back.svg",
  7741. extra: 918 / 854,
  7742. bottom: 0.005
  7743. }
  7744. },
  7745. foot: {
  7746. height: math.unit(6 / 3.72, "feet"),
  7747. name: "Foot",
  7748. image: {
  7749. source: "./media/characters/zevulfius/foot.svg"
  7750. }
  7751. },
  7752. },
  7753. [
  7754. {
  7755. name: "Macro",
  7756. height: math.unit(750, "meters")
  7757. },
  7758. {
  7759. name: "Megamacro",
  7760. height: math.unit(20, "km"),
  7761. default: true
  7762. },
  7763. {
  7764. name: "Gigamacro",
  7765. height: math.unit(2000, "km")
  7766. },
  7767. {
  7768. name: "Teramacro",
  7769. height: math.unit(250000, "km")
  7770. },
  7771. ]
  7772. ))
  7773. characterMakers.push(() => makeCharacter(
  7774. { name: "Rikes" },
  7775. {
  7776. front: {
  7777. height: math.unit(100, "feet"),
  7778. weight: math.unit(350, "kg"),
  7779. name: "Front",
  7780. image: {
  7781. source: "./media/characters/rikes/front.svg",
  7782. extra: 1565 / 1483,
  7783. bottom: 0.017
  7784. }
  7785. },
  7786. },
  7787. [
  7788. {
  7789. name: "Macro",
  7790. height: math.unit(100, "feet"),
  7791. default: true
  7792. },
  7793. ]
  7794. ))
  7795. characterMakers.push(() => makeCharacter(
  7796. { name: "Adam Silver-Mane" },
  7797. {
  7798. anthro: {
  7799. height: math.unit(8, "feet"),
  7800. weight: math.unit(120, "kg"),
  7801. name: "Anthro",
  7802. image: {
  7803. source: "./media/characters/adam-silver-mane/anthro.svg",
  7804. extra: 5743 / 5339,
  7805. bottom: 0.07
  7806. }
  7807. },
  7808. taur: {
  7809. height: math.unit(16, "feet"),
  7810. weight: math.unit(1500, "kg"),
  7811. name: "Taur",
  7812. image: {
  7813. source: "./media/characters/adam-silver-mane/taur.svg",
  7814. extra: 1713 / 1571,
  7815. bottom: 0.01
  7816. }
  7817. },
  7818. },
  7819. [
  7820. {
  7821. name: "Normal",
  7822. height: math.unit(8, "feet")
  7823. },
  7824. {
  7825. name: "Minimacro",
  7826. height: math.unit(80, "feet")
  7827. },
  7828. {
  7829. name: "Macro",
  7830. height: math.unit(800, "feet"),
  7831. default: true
  7832. },
  7833. {
  7834. name: "Megamacro",
  7835. height: math.unit(8000, "feet")
  7836. },
  7837. {
  7838. name: "Gigamacro",
  7839. height: math.unit(800, "miles")
  7840. },
  7841. {
  7842. name: "Teramacro",
  7843. height: math.unit(80000, "miles")
  7844. },
  7845. {
  7846. name: "Celestial",
  7847. height: math.unit(8e6, "miles")
  7848. },
  7849. {
  7850. name: "Star Dragon",
  7851. height: math.unit(800000, "parsecs")
  7852. },
  7853. {
  7854. name: "Godly",
  7855. height: math.unit(800, "teraparsecs")
  7856. },
  7857. ]
  7858. ))
  7859. characterMakers.push(() => makeCharacter(
  7860. { name: "Ky'owin" },
  7861. {
  7862. front: {
  7863. height: math.unit(6, "feet"),
  7864. weight: math.unit(150, "lb"),
  7865. name: "Front",
  7866. image: {
  7867. source: "./media/characters/ky'owin/front.svg",
  7868. extra: 3888 / 3068,
  7869. bottom: 0.015
  7870. }
  7871. },
  7872. },
  7873. [
  7874. {
  7875. name: "Normal",
  7876. height: math.unit(6 + 8 / 12, "feet")
  7877. },
  7878. {
  7879. name: "Large",
  7880. height: math.unit(68, "feet")
  7881. },
  7882. {
  7883. name: "Macro",
  7884. height: math.unit(132, "feet")
  7885. },
  7886. {
  7887. name: "Macro+",
  7888. height: math.unit(340, "feet")
  7889. },
  7890. {
  7891. name: "Macro++",
  7892. height: math.unit(680, "feet"),
  7893. default: true
  7894. },
  7895. {
  7896. name: "Megamacro",
  7897. height: math.unit(1, "mile")
  7898. },
  7899. {
  7900. name: "Megamacro+",
  7901. height: math.unit(10, "miles")
  7902. },
  7903. ]
  7904. ))
  7905. characterMakers.push(() => makeCharacter(
  7906. { name: "Mal" },
  7907. {
  7908. front: {
  7909. height: math.unit(4, "feet"),
  7910. weight: math.unit(50, "lb"),
  7911. name: "Front",
  7912. image: {
  7913. source: "./media/characters/mal/front.svg",
  7914. extra: 785 / 724,
  7915. bottom: 0.07
  7916. }
  7917. },
  7918. },
  7919. [
  7920. {
  7921. name: "Micro",
  7922. height: math.unit(4, "inches")
  7923. },
  7924. {
  7925. name: "Normal",
  7926. height: math.unit(4, "feet"),
  7927. default: true
  7928. },
  7929. {
  7930. name: "Macro",
  7931. height: math.unit(200, "feet")
  7932. },
  7933. ]
  7934. ))
  7935. characterMakers.push(() => makeCharacter(
  7936. { name: "Jordan Deware" },
  7937. {
  7938. front: {
  7939. height: math.unit(6, "feet"),
  7940. weight: math.unit(150, "lb"),
  7941. name: "Front",
  7942. image: {
  7943. source: "./media/characters/jordan-deware/front.svg",
  7944. extra: 1191 / 1012
  7945. }
  7946. },
  7947. },
  7948. [
  7949. {
  7950. name: "Nano",
  7951. height: math.unit(0.01, "mm")
  7952. },
  7953. {
  7954. name: "Minimicro",
  7955. height: math.unit(1, "mm")
  7956. },
  7957. {
  7958. name: "Micro",
  7959. height: math.unit(0.5, "inches")
  7960. },
  7961. {
  7962. name: "Normal",
  7963. height: math.unit(4, "feet"),
  7964. default: true
  7965. },
  7966. {
  7967. name: "Minimacro",
  7968. height: math.unit(40, "meters")
  7969. },
  7970. {
  7971. name: "Small Macro",
  7972. height: math.unit(400, "meters")
  7973. },
  7974. {
  7975. name: "Macro",
  7976. height: math.unit(4, "miles")
  7977. },
  7978. {
  7979. name: "Megamacro",
  7980. height: math.unit(40, "miles")
  7981. },
  7982. {
  7983. name: "Megamacro+",
  7984. height: math.unit(400, "miles")
  7985. },
  7986. {
  7987. name: "Gigamacro",
  7988. height: math.unit(400000, "miles")
  7989. },
  7990. ]
  7991. ))
  7992. characterMakers.push(() => makeCharacter(
  7993. { name: "Kimiko" },
  7994. {
  7995. side: {
  7996. height: math.unit(6, "feet"),
  7997. weight: math.unit(150, "lb"),
  7998. name: "Side",
  7999. image: {
  8000. source: "./media/characters/kimiko/side.svg",
  8001. extra: 600 / 358
  8002. }
  8003. },
  8004. },
  8005. [
  8006. {
  8007. name: "Normal",
  8008. height: math.unit(15, "feet"),
  8009. default: true
  8010. },
  8011. {
  8012. name: "Macro",
  8013. height: math.unit(220, "feet")
  8014. },
  8015. {
  8016. name: "Macro+",
  8017. height: math.unit(1450, "feet")
  8018. },
  8019. {
  8020. name: "Megamacro",
  8021. height: math.unit(11500, "feet")
  8022. },
  8023. {
  8024. name: "Gigamacro",
  8025. height: math.unit(9500, "miles")
  8026. },
  8027. {
  8028. name: "Teramacro",
  8029. height: math.unit(2208005005, "miles")
  8030. },
  8031. {
  8032. name: "Examacro",
  8033. height: math.unit(2750, "parsecs")
  8034. },
  8035. {
  8036. name: "Zettamacro",
  8037. height: math.unit(101500, "parsecs")
  8038. },
  8039. ]
  8040. ))
  8041. characterMakers.push(() => makeCharacter(
  8042. { name: "Andrew Sleepy" },
  8043. {
  8044. front: {
  8045. height: math.unit(6, "feet"),
  8046. weight: math.unit(70, "kg"),
  8047. name: "Front",
  8048. image: {
  8049. source: "./media/characters/andrew-sleepy/front.svg"
  8050. }
  8051. },
  8052. side: {
  8053. height: math.unit(6, "feet"),
  8054. weight: math.unit(70, "kg"),
  8055. name: "Side",
  8056. image: {
  8057. source: "./media/characters/andrew-sleepy/side.svg"
  8058. }
  8059. },
  8060. },
  8061. [
  8062. {
  8063. name: "Micro",
  8064. height: math.unit(1, "mm"),
  8065. default: true
  8066. },
  8067. ]
  8068. ))
  8069. characterMakers.push(() => makeCharacter(
  8070. { name: "Judio" },
  8071. {
  8072. front: {
  8073. height: math.unit(6, "feet"),
  8074. weight: math.unit(150, "lb"),
  8075. name: "Front",
  8076. image: {
  8077. source: "./media/characters/judio/front.svg",
  8078. extra: 1258 / 1110
  8079. }
  8080. },
  8081. },
  8082. [
  8083. {
  8084. name: "Normal",
  8085. height: math.unit(5 + 6 / 12, "feet")
  8086. },
  8087. {
  8088. name: "Macro",
  8089. height: math.unit(1000, "feet"),
  8090. default: true
  8091. },
  8092. {
  8093. name: "Megamacro",
  8094. height: math.unit(10, "miles")
  8095. },
  8096. ]
  8097. ))
  8098. characterMakers.push(() => makeCharacter(
  8099. { name: "Nomaxice" },
  8100. {
  8101. front: {
  8102. height: math.unit(6, "feet"),
  8103. weight: math.unit(68, "kg"),
  8104. name: "Front",
  8105. image: {
  8106. source: "./media/characters/nomaxice/front.svg",
  8107. extra: 1498 / 1073,
  8108. bottom: 0.075
  8109. }
  8110. },
  8111. foot: {
  8112. height: math.unit(1.1, "feet"),
  8113. name: "Foot",
  8114. image: {
  8115. source: "./media/characters/nomaxice/foot.svg"
  8116. }
  8117. },
  8118. },
  8119. [
  8120. {
  8121. name: "Micro",
  8122. height: math.unit(8, "cm")
  8123. },
  8124. {
  8125. name: "Norm",
  8126. height: math.unit(1.82, "m")
  8127. },
  8128. {
  8129. name: "Norm+",
  8130. height: math.unit(8.8, "feet")
  8131. },
  8132. {
  8133. name: "Big",
  8134. height: math.unit(8, "meters"),
  8135. default: true
  8136. },
  8137. {
  8138. name: "Macro",
  8139. height: math.unit(18, "meters")
  8140. },
  8141. {
  8142. name: "Macro+",
  8143. height: math.unit(88, "meters")
  8144. },
  8145. ]
  8146. ))
  8147. characterMakers.push(() => makeCharacter(
  8148. { name: "Dydros" },
  8149. {
  8150. front: {
  8151. height: math.unit(12, "feet"),
  8152. weight: math.unit(1.5, "tons"),
  8153. name: "Front",
  8154. image: {
  8155. source: "./media/characters/dydros/front.svg",
  8156. extra: 863 / 800,
  8157. bottom: 0.015
  8158. }
  8159. },
  8160. back: {
  8161. height: math.unit(12, "feet"),
  8162. weight: math.unit(1.5, "tons"),
  8163. name: "Back",
  8164. image: {
  8165. source: "./media/characters/dydros/back.svg",
  8166. extra: 900 / 843,
  8167. bottom: 0.005
  8168. }
  8169. },
  8170. },
  8171. [
  8172. {
  8173. name: "Normal",
  8174. height: math.unit(12, "feet"),
  8175. default: true
  8176. },
  8177. ]
  8178. ))
  8179. characterMakers.push(() => makeCharacter(
  8180. { name: "Riggi" },
  8181. {
  8182. front: {
  8183. height: math.unit(6, "feet"),
  8184. weight: math.unit(100, "kg"),
  8185. name: "Front",
  8186. image: {
  8187. source: "./media/characters/riggi/front.svg",
  8188. extra: 5787 / 5303
  8189. }
  8190. },
  8191. hyper: {
  8192. height: math.unit(6 * 5 / 3, "feet"),
  8193. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8194. name: "Hyper",
  8195. image: {
  8196. source: "./media/characters/riggi/hyper.svg",
  8197. extra: 3595 / 3485
  8198. }
  8199. },
  8200. },
  8201. [
  8202. {
  8203. name: "Small Macro",
  8204. height: math.unit(50, "feet")
  8205. },
  8206. {
  8207. name: "Default",
  8208. height: math.unit(200, "feet"),
  8209. default: true
  8210. },
  8211. {
  8212. name: "Loom",
  8213. height: math.unit(10000, "feet")
  8214. },
  8215. {
  8216. name: "Cruising Altitude",
  8217. height: math.unit(30000, "feet")
  8218. },
  8219. {
  8220. name: "Megamacro",
  8221. height: math.unit(100, "miles")
  8222. },
  8223. {
  8224. name: "Continent Sized",
  8225. height: math.unit(2800, "miles")
  8226. },
  8227. {
  8228. name: "Earth Sized",
  8229. height: math.unit(8000, "miles")
  8230. },
  8231. ]
  8232. ))
  8233. characterMakers.push(() => makeCharacter(
  8234. { name: "Alexi" },
  8235. {
  8236. front: {
  8237. height: math.unit(6, "feet"),
  8238. weight: math.unit(250, "lb"),
  8239. name: "Front",
  8240. image: {
  8241. source: "./media/characters/alexi/front.svg",
  8242. extra: 3483 / 3291,
  8243. bottom: 0.04
  8244. }
  8245. },
  8246. back: {
  8247. height: math.unit(6, "feet"),
  8248. weight: math.unit(250, "lb"),
  8249. name: "Back",
  8250. image: {
  8251. source: "./media/characters/alexi/back.svg",
  8252. extra: 3533 / 3356,
  8253. bottom: 0.021
  8254. }
  8255. },
  8256. frontTransformed: {
  8257. height: math.unit(12.5, "feet"),
  8258. weight: math.unit(4000, "lb"),
  8259. name: "Front (Transformed)",
  8260. image: {
  8261. source: "./media/characters/alexi/front-transformed.svg",
  8262. extra: 5345 / 5100,
  8263. bottom: 0.03
  8264. }
  8265. },
  8266. },
  8267. [
  8268. {
  8269. name: "Normal",
  8270. height: math.unit(3, "meters"),
  8271. default: true
  8272. },
  8273. {
  8274. name: "Minimacro",
  8275. height: math.unit(30, "meters")
  8276. },
  8277. {
  8278. name: "Macro",
  8279. height: math.unit(500, "meters")
  8280. },
  8281. {
  8282. name: "Megamacro",
  8283. height: math.unit(9000, "km")
  8284. },
  8285. {
  8286. name: "Teramacro",
  8287. height: math.unit(384000, "km")
  8288. },
  8289. ]
  8290. ))
  8291. characterMakers.push(() => makeCharacter(
  8292. { name: "Kayroo" },
  8293. {
  8294. front: {
  8295. height: math.unit(6, "feet"),
  8296. weight: math.unit(150, "lb"),
  8297. name: "Front",
  8298. image: {
  8299. source: "./media/characters/kayroo/front.svg",
  8300. extra: 1153 / 1038,
  8301. bottom: 0.06
  8302. }
  8303. },
  8304. foot: {
  8305. height: math.unit(6, "feet"),
  8306. weight: math.unit(150, "lb"),
  8307. name: "Foot",
  8308. image: {
  8309. source: "./media/characters/kayroo/foot.svg"
  8310. }
  8311. },
  8312. },
  8313. [
  8314. {
  8315. name: "Normal",
  8316. height: math.unit(8, "feet"),
  8317. default: true
  8318. },
  8319. {
  8320. name: "Minimacro",
  8321. height: math.unit(250, "feet")
  8322. },
  8323. {
  8324. name: "Macro",
  8325. height: math.unit(2800, "feet")
  8326. },
  8327. {
  8328. name: "Megamacro",
  8329. height: math.unit(5200, "feet")
  8330. },
  8331. {
  8332. name: "Gigamacro",
  8333. height: math.unit(27000, "feet")
  8334. },
  8335. {
  8336. name: "Omega",
  8337. height: math.unit(45000, "feet")
  8338. },
  8339. ]
  8340. ))
  8341. characterMakers.push(() => makeCharacter(
  8342. { name: "Rhys" },
  8343. {
  8344. front: {
  8345. height: math.unit(18, "feet"),
  8346. weight: math.unit(5800, "lb"),
  8347. name: "Front",
  8348. image: {
  8349. source: "./media/characters/rhys/front.svg",
  8350. extra: 3386 / 3090,
  8351. bottom: 0.07
  8352. }
  8353. },
  8354. },
  8355. [
  8356. {
  8357. name: "Normal",
  8358. height: math.unit(18, "feet"),
  8359. default: true
  8360. },
  8361. {
  8362. name: "Working Size",
  8363. height: math.unit(200, "feet")
  8364. },
  8365. {
  8366. name: "Demolition Size",
  8367. height: math.unit(2000, "feet")
  8368. },
  8369. {
  8370. name: "Maximum Licensed Size",
  8371. height: math.unit(5, "miles")
  8372. },
  8373. {
  8374. name: "Maximum Observed Size",
  8375. height: math.unit(10, "yottameters")
  8376. },
  8377. ]
  8378. ))
  8379. characterMakers.push(() => makeCharacter(
  8380. { name: "Toto" },
  8381. {
  8382. front: {
  8383. height: math.unit(6, "feet"),
  8384. weight: math.unit(250, "lb"),
  8385. name: "Front",
  8386. image: {
  8387. source: "./media/characters/toto/front.svg",
  8388. extra: 527 / 479,
  8389. bottom: 0.05
  8390. }
  8391. },
  8392. },
  8393. [
  8394. {
  8395. name: "Micro",
  8396. height: math.unit(3, "feet")
  8397. },
  8398. {
  8399. name: "Normal",
  8400. height: math.unit(10, "feet")
  8401. },
  8402. {
  8403. name: "Macro",
  8404. height: math.unit(150, "feet"),
  8405. default: true
  8406. },
  8407. {
  8408. name: "Megamacro",
  8409. height: math.unit(1200, "feet")
  8410. },
  8411. ]
  8412. ))
  8413. characterMakers.push(() => makeCharacter(
  8414. { name: "King" },
  8415. {
  8416. back: {
  8417. height: math.unit(6, "feet"),
  8418. weight: math.unit(150, "lb"),
  8419. name: "Back",
  8420. image: {
  8421. source: "./media/characters/king/back.svg"
  8422. }
  8423. },
  8424. },
  8425. [
  8426. {
  8427. name: "Micro",
  8428. height: math.unit(2, "inches")
  8429. },
  8430. {
  8431. name: "Normal",
  8432. height: math.unit(8, "feet")
  8433. },
  8434. {
  8435. name: "Macro",
  8436. height: math.unit(200, "feet"),
  8437. default: true
  8438. },
  8439. {
  8440. name: "Megamacro",
  8441. height: math.unit(50, "miles")
  8442. },
  8443. ]
  8444. ))
  8445. characterMakers.push(() => makeCharacter(
  8446. { name: "Cordite" },
  8447. {
  8448. anthro: {
  8449. height: math.unit(6 + 5 / 12, "feet"),
  8450. weight: math.unit(280, "lb"),
  8451. name: "Anthro",
  8452. image: {
  8453. source: "./media/characters/cordite/anthro.svg",
  8454. extra: 1986 / 1905,
  8455. bottom: 0.025
  8456. }
  8457. },
  8458. feral: {
  8459. height: math.unit(2, "feet"),
  8460. weight: math.unit(90, "lb"),
  8461. name: "Feral",
  8462. image: {
  8463. source: "./media/characters/cordite/feral.svg",
  8464. extra: 1260 / 755,
  8465. bottom: 0.05
  8466. }
  8467. },
  8468. },
  8469. [
  8470. {
  8471. name: "Normal",
  8472. height: math.unit(6 + 5 / 12, "feet"),
  8473. default: true
  8474. },
  8475. ]
  8476. ))
  8477. characterMakers.push(() => makeCharacter(
  8478. { name: "Pianostrong" },
  8479. {
  8480. front: {
  8481. height: math.unit(6, "feet"),
  8482. weight: math.unit(150, "lb"),
  8483. name: "Front",
  8484. image: {
  8485. source: "./media/characters/pianostrong/front.svg",
  8486. extra: 6577 / 6254,
  8487. bottom: 0.02
  8488. }
  8489. },
  8490. side: {
  8491. height: math.unit(6, "feet"),
  8492. weight: math.unit(150, "lb"),
  8493. name: "Side",
  8494. image: {
  8495. source: "./media/characters/pianostrong/side.svg",
  8496. extra: 6106 / 5730
  8497. }
  8498. },
  8499. back: {
  8500. height: math.unit(6, "feet"),
  8501. weight: math.unit(150, "lb"),
  8502. name: "Back",
  8503. image: {
  8504. source: "./media/characters/pianostrong/back.svg",
  8505. extra: 6085 / 5733,
  8506. bottom: 0.01
  8507. }
  8508. },
  8509. },
  8510. [
  8511. {
  8512. name: "Macro",
  8513. height: math.unit(100, "feet")
  8514. },
  8515. {
  8516. name: "Macro+",
  8517. height: math.unit(300, "feet"),
  8518. default: true
  8519. },
  8520. {
  8521. name: "Macro++",
  8522. height: math.unit(1000, "feet")
  8523. },
  8524. ]
  8525. ))
  8526. characterMakers.push(() => makeCharacter(
  8527. { name: "Kona" },
  8528. {
  8529. front: {
  8530. height: math.unit(6, "feet"),
  8531. weight: math.unit(150, "lb"),
  8532. name: "Front",
  8533. image: {
  8534. source: "./media/characters/kona/front.svg",
  8535. extra: 2960 / 2629,
  8536. bottom: 0.005
  8537. }
  8538. },
  8539. },
  8540. [
  8541. {
  8542. name: "Normal",
  8543. height: math.unit(11 + 8 / 12, "feet")
  8544. },
  8545. {
  8546. name: "Macro",
  8547. height: math.unit(850, "feet"),
  8548. default: true
  8549. },
  8550. {
  8551. name: "Macro+",
  8552. height: math.unit(1.5, "km"),
  8553. default: true
  8554. },
  8555. {
  8556. name: "Megamacro",
  8557. height: math.unit(80, "miles")
  8558. },
  8559. {
  8560. name: "Gigamacro",
  8561. height: math.unit(3500, "miles")
  8562. },
  8563. ]
  8564. ))
  8565. characterMakers.push(() => makeCharacter(
  8566. { name: "Levi" },
  8567. {
  8568. side: {
  8569. height: math.unit(1.9, "meters"),
  8570. weight: math.unit(326, "kg"),
  8571. name: "Side",
  8572. image: {
  8573. source: "./media/characters/levi/side.svg",
  8574. extra: 1704 / 1334,
  8575. bottom: 0.02
  8576. }
  8577. },
  8578. },
  8579. [
  8580. {
  8581. name: "Normal",
  8582. height: math.unit(1.9, "meters"),
  8583. default: true
  8584. },
  8585. {
  8586. name: "Macro",
  8587. height: math.unit(20, "meters")
  8588. },
  8589. {
  8590. name: "Macro+",
  8591. height: math.unit(200, "meters")
  8592. },
  8593. {
  8594. name: "Megamacro",
  8595. height: math.unit(2, "km")
  8596. },
  8597. {
  8598. name: "Megamacro+",
  8599. height: math.unit(20, "km")
  8600. },
  8601. {
  8602. name: "Gigamacro",
  8603. height: math.unit(2500, "km")
  8604. },
  8605. {
  8606. name: "Gigamacro+",
  8607. height: math.unit(120000, "km")
  8608. },
  8609. {
  8610. name: "Teramacro",
  8611. height: math.unit(7.77e6, "km")
  8612. },
  8613. ]
  8614. ))
  8615. characterMakers.push(() => makeCharacter(
  8616. { name: "BMC" },
  8617. {
  8618. front: {
  8619. height: math.unit(6 + 4 / 12, "feet"),
  8620. weight: math.unit(188, "lb"),
  8621. name: "Front",
  8622. image: {
  8623. source: "./media/characters/bmc/front.svg",
  8624. extra: 1067 / 1022,
  8625. bottom: 0.047
  8626. }
  8627. },
  8628. },
  8629. [
  8630. {
  8631. name: "Human-sized",
  8632. height: math.unit(6 + 4 / 12, "feet")
  8633. },
  8634. {
  8635. name: "Small",
  8636. height: math.unit(250, "feet")
  8637. },
  8638. {
  8639. name: "Normal",
  8640. height: math.unit(1250, "feet"),
  8641. default: true
  8642. },
  8643. {
  8644. name: "Good Day",
  8645. height: math.unit(88, "miles")
  8646. },
  8647. {
  8648. name: "Largest Measured Size",
  8649. height: math.unit(11.2e6, "lightyears")
  8650. },
  8651. ]
  8652. ))
  8653. characterMakers.push(() => makeCharacter(
  8654. { name: "Sven the Kaiju" },
  8655. {
  8656. front: {
  8657. height: math.unit(20, "feet"),
  8658. weight: math.unit(2016, "kg"),
  8659. name: "Front",
  8660. image: {
  8661. source: "./media/characters/sven-the-kaiju/front.svg",
  8662. extra: 1479 / 1449,
  8663. bottom: 0.05
  8664. }
  8665. },
  8666. },
  8667. [
  8668. {
  8669. name: "Fairy",
  8670. height: math.unit(6, "inches")
  8671. },
  8672. {
  8673. name: "Normal",
  8674. height: math.unit(20, "feet"),
  8675. default: true
  8676. },
  8677. {
  8678. name: "Rampage",
  8679. height: math.unit(200, "feet")
  8680. },
  8681. {
  8682. name: "Archfey Forest Guardian",
  8683. height: math.unit(1, "mile")
  8684. },
  8685. ]
  8686. ))
  8687. characterMakers.push(() => makeCharacter(
  8688. { name: "Marik" },
  8689. {
  8690. front: {
  8691. height: math.unit(4, "meters"),
  8692. weight: math.unit(2, "tons"),
  8693. name: "Front",
  8694. image: {
  8695. source: "./media/characters/marik/front.svg",
  8696. extra: 1057 / 1003,
  8697. bottom: 0.08
  8698. }
  8699. },
  8700. },
  8701. [
  8702. {
  8703. name: "Normal",
  8704. height: math.unit(4, "meters"),
  8705. default: true
  8706. },
  8707. {
  8708. name: "Macro",
  8709. height: math.unit(20, "meters")
  8710. },
  8711. {
  8712. name: "Megamacro",
  8713. height: math.unit(50, "km")
  8714. },
  8715. {
  8716. name: "Gigamacro",
  8717. height: math.unit(100, "km")
  8718. },
  8719. {
  8720. name: "Alpha Macro",
  8721. height: math.unit(7.88e7, "yottameters")
  8722. },
  8723. ]
  8724. ))
  8725. characterMakers.push(() => makeCharacter(
  8726. { name: "Mel" },
  8727. {
  8728. front: {
  8729. height: math.unit(6, "feet"),
  8730. weight: math.unit(110, "lb"),
  8731. name: "Front",
  8732. image: {
  8733. source: "./media/characters/mel/front.svg",
  8734. extra: 736 / 617,
  8735. bottom: 0.017
  8736. }
  8737. },
  8738. },
  8739. [
  8740. {
  8741. name: "Pico",
  8742. height: math.unit(3, "pm")
  8743. },
  8744. {
  8745. name: "Nano",
  8746. height: math.unit(3, "nm")
  8747. },
  8748. {
  8749. name: "Micro",
  8750. height: math.unit(0.3, "mm"),
  8751. default: true
  8752. },
  8753. {
  8754. name: "Micro+",
  8755. height: math.unit(3, "mm")
  8756. },
  8757. {
  8758. name: "Normal",
  8759. height: math.unit(5 + 10.5 / 12, "feet")
  8760. },
  8761. ]
  8762. ))
  8763. characterMakers.push(() => makeCharacter(
  8764. { name: "Lykonous" },
  8765. {
  8766. kaiju: {
  8767. height: math.unit(1.75, "meters"),
  8768. weight: math.unit(55, "kg"),
  8769. name: "Kaiju",
  8770. image: {
  8771. source: "./media/characters/lykonous/kaiju.svg",
  8772. extra: 1055 / 946,
  8773. bottom: 0.135
  8774. }
  8775. },
  8776. },
  8777. [
  8778. {
  8779. name: "Normal",
  8780. height: math.unit(2.5, "meters"),
  8781. default: true
  8782. },
  8783. {
  8784. name: "Kaiju Dragon",
  8785. height: math.unit(60, "meters")
  8786. },
  8787. {
  8788. name: "Mega Kaiju",
  8789. height: math.unit(120, "km")
  8790. },
  8791. {
  8792. name: "Giga Kaiju",
  8793. height: math.unit(200, "megameters")
  8794. },
  8795. {
  8796. name: "Terra Kaiju",
  8797. height: math.unit(400, "gigameters")
  8798. },
  8799. {
  8800. name: "Kaiju Dragon God",
  8801. height: math.unit(13000, "exaparsecs")
  8802. },
  8803. ]
  8804. ))
  8805. characterMakers.push(() => makeCharacter(
  8806. { name: "Blü" },
  8807. {
  8808. front: {
  8809. height: math.unit(6, "feet"),
  8810. weight: math.unit(150, "lb"),
  8811. name: "Front",
  8812. image: {
  8813. source: "./media/characters/blü/front.svg",
  8814. extra: 1883 / 1564,
  8815. bottom: 0.031
  8816. }
  8817. },
  8818. },
  8819. [
  8820. {
  8821. name: "Normal",
  8822. height: math.unit(13, "feet"),
  8823. default: true
  8824. },
  8825. {
  8826. name: "Big Boi",
  8827. height: math.unit(150, "meters")
  8828. },
  8829. {
  8830. name: "Mini Stomper",
  8831. height: math.unit(300, "meters")
  8832. },
  8833. {
  8834. name: "Macro",
  8835. height: math.unit(1000, "meters")
  8836. },
  8837. {
  8838. name: "Megamacro",
  8839. height: math.unit(11000, "meters")
  8840. },
  8841. {
  8842. name: "Gigamacro",
  8843. height: math.unit(11000, "km")
  8844. },
  8845. {
  8846. name: "Teramacro",
  8847. height: math.unit(420000, "km")
  8848. },
  8849. {
  8850. name: "Examacro",
  8851. height: math.unit(120, "parsecs")
  8852. },
  8853. {
  8854. name: "God Tho",
  8855. height: math.unit(98000000000, "parsecs")
  8856. },
  8857. ]
  8858. ))
  8859. characterMakers.push(() => makeCharacter(
  8860. { name: "Scales" },
  8861. {
  8862. taurFront: {
  8863. height: math.unit(6, "feet"),
  8864. weight: math.unit(200, "lb"),
  8865. name: "Taur (Front)",
  8866. image: {
  8867. source: "./media/characters/scales/taur-front.svg",
  8868. extra: 1,
  8869. bottom: 0.05
  8870. }
  8871. },
  8872. taurBack: {
  8873. height: math.unit(6, "feet"),
  8874. weight: math.unit(200, "lb"),
  8875. name: "Taur (Back)",
  8876. image: {
  8877. source: "./media/characters/scales/taur-back.svg",
  8878. extra: 1,
  8879. bottom: 0.08
  8880. }
  8881. },
  8882. anthro: {
  8883. height: math.unit(6 * 7 / 12, "feet"),
  8884. weight: math.unit(100, "lb"),
  8885. name: "Anthro",
  8886. image: {
  8887. source: "./media/characters/scales/anthro.svg",
  8888. extra: 1,
  8889. bottom: 0.06
  8890. }
  8891. },
  8892. },
  8893. [
  8894. {
  8895. name: "Normal",
  8896. height: math.unit(12, "feet"),
  8897. default: true
  8898. },
  8899. ]
  8900. ))
  8901. characterMakers.push(() => makeCharacter(
  8902. { name: "Koragos" },
  8903. {
  8904. front: {
  8905. height: math.unit(6, "feet"),
  8906. weight: math.unit(150, "lb"),
  8907. name: "Front",
  8908. image: {
  8909. source: "./media/characters/koragos/front.svg",
  8910. extra: 841 / 794,
  8911. bottom: 0.035
  8912. }
  8913. },
  8914. back: {
  8915. height: math.unit(6, "feet"),
  8916. weight: math.unit(150, "lb"),
  8917. name: "Back",
  8918. image: {
  8919. source: "./media/characters/koragos/back.svg",
  8920. extra: 841 / 810,
  8921. bottom: 0.022
  8922. }
  8923. },
  8924. },
  8925. [
  8926. {
  8927. name: "Normal",
  8928. height: math.unit(6 + 11 / 12, "feet"),
  8929. default: true
  8930. },
  8931. {
  8932. name: "Macro",
  8933. height: math.unit(490, "feet")
  8934. },
  8935. {
  8936. name: "Megamacro",
  8937. height: math.unit(10, "miles")
  8938. },
  8939. {
  8940. name: "Gigamacro",
  8941. height: math.unit(50, "miles")
  8942. },
  8943. ]
  8944. ))
  8945. characterMakers.push(() => makeCharacter(
  8946. { name: "Xylrem" },
  8947. {
  8948. front: {
  8949. height: math.unit(6, "feet"),
  8950. weight: math.unit(250, "lb"),
  8951. name: "Front",
  8952. image: {
  8953. source: "./media/characters/xylrem/front.svg",
  8954. extra: 3323 / 3050,
  8955. bottom: 0.065
  8956. }
  8957. },
  8958. },
  8959. [
  8960. {
  8961. name: "Micro",
  8962. height: math.unit(4, "feet")
  8963. },
  8964. {
  8965. name: "Normal",
  8966. height: math.unit(16, "feet"),
  8967. default: true
  8968. },
  8969. {
  8970. name: "Macro",
  8971. height: math.unit(2720, "feet")
  8972. },
  8973. {
  8974. name: "Megamacro",
  8975. height: math.unit(25000, "miles")
  8976. },
  8977. ]
  8978. ))
  8979. characterMakers.push(() => makeCharacter(
  8980. { name: "Ikideru" },
  8981. {
  8982. front: {
  8983. height: math.unit(8, "feet"),
  8984. weight: math.unit(250, "kg"),
  8985. name: "Front",
  8986. image: {
  8987. source: "./media/characters/ikideru/front.svg",
  8988. extra: 930 / 870,
  8989. bottom: 0.087
  8990. }
  8991. },
  8992. back: {
  8993. height: math.unit(8, "feet"),
  8994. weight: math.unit(250, "kg"),
  8995. name: "Back",
  8996. image: {
  8997. source: "./media/characters/ikideru/back.svg",
  8998. extra: 919 / 852,
  8999. bottom: 0.055
  9000. }
  9001. },
  9002. },
  9003. [
  9004. {
  9005. name: "Rare",
  9006. height: math.unit(8, "feet"),
  9007. default: true
  9008. },
  9009. {
  9010. name: "Playful Loom",
  9011. height: math.unit(80, "feet")
  9012. },
  9013. {
  9014. name: "City Leaner",
  9015. height: math.unit(230, "feet")
  9016. },
  9017. {
  9018. name: "Megamacro",
  9019. height: math.unit(2500, "feet")
  9020. },
  9021. {
  9022. name: "Gigamacro",
  9023. height: math.unit(26400, "feet")
  9024. },
  9025. {
  9026. name: "Tectonic Shifter",
  9027. height: math.unit(1.7, "megameters")
  9028. },
  9029. {
  9030. name: "Planet Carer",
  9031. height: math.unit(21, "megameters")
  9032. },
  9033. {
  9034. name: "God",
  9035. height: math.unit(11157.22, "parsecs")
  9036. },
  9037. ]
  9038. ))
  9039. characterMakers.push(() => makeCharacter(
  9040. { name: "Neo" },
  9041. {
  9042. front: {
  9043. height: math.unit(6, "feet"),
  9044. weight: math.unit(120, "lb"),
  9045. name: "Front",
  9046. image: {
  9047. source: "./media/characters/neo/front.svg"
  9048. }
  9049. },
  9050. },
  9051. [
  9052. {
  9053. name: "Micro",
  9054. height: math.unit(2, "inches"),
  9055. default: true
  9056. },
  9057. {
  9058. name: "Human Size",
  9059. height: math.unit(5 + 8 / 12, "feet")
  9060. },
  9061. ]
  9062. ))
  9063. characterMakers.push(() => makeCharacter(
  9064. { name: "Chauncey (Chantz)" },
  9065. {
  9066. front: {
  9067. height: math.unit(13 + 10 / 12, "feet"),
  9068. weight: math.unit(5320, "lb"),
  9069. name: "Front",
  9070. image: {
  9071. source: "./media/characters/chauncey-chantz/front.svg",
  9072. extra: 1587 / 1435,
  9073. bottom: 0.02
  9074. }
  9075. },
  9076. },
  9077. [
  9078. {
  9079. name: "Normal",
  9080. height: math.unit(13 + 10 / 12, "feet"),
  9081. default: true
  9082. },
  9083. {
  9084. name: "Macro",
  9085. height: math.unit(45, "feet")
  9086. },
  9087. {
  9088. name: "Megamacro",
  9089. height: math.unit(250, "miles")
  9090. },
  9091. {
  9092. name: "Planetary",
  9093. height: math.unit(10000, "miles")
  9094. },
  9095. {
  9096. name: "Galactic",
  9097. height: math.unit(40000, "parsecs")
  9098. },
  9099. {
  9100. name: "Universal",
  9101. height: math.unit(1, "yottameter")
  9102. },
  9103. ]
  9104. ))
  9105. characterMakers.push(() => makeCharacter(
  9106. { name: "Epifox" },
  9107. {
  9108. front: {
  9109. height: math.unit(6, "feet"),
  9110. weight: math.unit(150, "lb"),
  9111. name: "Front",
  9112. image: {
  9113. source: "./media/characters/epifox/front.svg",
  9114. extra: 1,
  9115. bottom: 0.075
  9116. }
  9117. },
  9118. },
  9119. [
  9120. {
  9121. name: "Micro",
  9122. height: math.unit(6, "inches")
  9123. },
  9124. {
  9125. name: "Normal",
  9126. height: math.unit(12, "feet"),
  9127. default: true
  9128. },
  9129. {
  9130. name: "Macro",
  9131. height: math.unit(3810, "feet")
  9132. },
  9133. {
  9134. name: "Megamacro",
  9135. height: math.unit(500, "miles")
  9136. },
  9137. ]
  9138. ))
  9139. characterMakers.push(() => makeCharacter(
  9140. { name: "Colin T." },
  9141. {
  9142. front: {
  9143. height: math.unit(1.8796, "m"),
  9144. weight: math.unit(230, "lb"),
  9145. name: "Front",
  9146. image: {
  9147. source: "./media/characters/colin-t/front.svg",
  9148. extra: 1272 / 1193,
  9149. bottom: 0.07
  9150. }
  9151. },
  9152. },
  9153. [
  9154. {
  9155. name: "Micro",
  9156. height: math.unit(0.571, "meters")
  9157. },
  9158. {
  9159. name: "Normal",
  9160. height: math.unit(1.8796, "meters"),
  9161. default: true
  9162. },
  9163. {
  9164. name: "Tall",
  9165. height: math.unit(4, "meters")
  9166. },
  9167. {
  9168. name: "Macro",
  9169. height: math.unit(67.241, "meters")
  9170. },
  9171. {
  9172. name: "Megamacro",
  9173. height: math.unit(371.856, "meters")
  9174. },
  9175. {
  9176. name: "Planetary",
  9177. height: math.unit(12631.5689, "km")
  9178. },
  9179. ]
  9180. ))
  9181. characterMakers.push(() => makeCharacter(
  9182. { name: "Matvei" },
  9183. {
  9184. front: {
  9185. height: math.unit(1.85, "meters"),
  9186. weight: math.unit(80, "kg"),
  9187. name: "Front",
  9188. image: {
  9189. source: "./media/characters/matvei/front.svg",
  9190. extra: 614 / 594,
  9191. bottom: 0.01
  9192. }
  9193. },
  9194. },
  9195. [
  9196. {
  9197. name: "Normal",
  9198. height: math.unit(1.85, "meters"),
  9199. default: true
  9200. },
  9201. ]
  9202. ))
  9203. characterMakers.push(() => makeCharacter(
  9204. { name: "Quincy" },
  9205. {
  9206. front: {
  9207. height: math.unit(5 + 9 / 12, "feet"),
  9208. weight: math.unit(70, "lb"),
  9209. name: "Front",
  9210. image: {
  9211. source: "./media/characters/quincy/front.svg",
  9212. extra: 3041 / 2751
  9213. }
  9214. },
  9215. back: {
  9216. height: math.unit(5 + 9 / 12, "feet"),
  9217. weight: math.unit(70, "lb"),
  9218. name: "Back",
  9219. image: {
  9220. source: "./media/characters/quincy/back.svg",
  9221. extra: 3041 / 2751
  9222. }
  9223. },
  9224. flying: {
  9225. height: math.unit(5 + 4 / 12, "feet"),
  9226. weight: math.unit(70, "lb"),
  9227. name: "Flying",
  9228. image: {
  9229. source: "./media/characters/quincy/flying.svg",
  9230. extra: 1044 / 930
  9231. }
  9232. },
  9233. },
  9234. [
  9235. {
  9236. name: "Micro",
  9237. height: math.unit(3, "cm")
  9238. },
  9239. {
  9240. name: "Normal",
  9241. height: math.unit(5 + 9 / 12, "feet")
  9242. },
  9243. {
  9244. name: "Macro",
  9245. height: math.unit(200, "meters"),
  9246. default: true
  9247. },
  9248. {
  9249. name: "Megamacro",
  9250. height: math.unit(1000, "meters")
  9251. },
  9252. ]
  9253. ))
  9254. characterMakers.push(() => makeCharacter(
  9255. { name: "Vanrel" },
  9256. {
  9257. front: {
  9258. height: math.unit(4 + 7 / 12, "feet"),
  9259. weight: math.unit(150, "lb"),
  9260. name: "Front",
  9261. image: {
  9262. source: "./media/characters/vanrel/front.svg",
  9263. extra: 1,
  9264. bottom: 0.02
  9265. }
  9266. },
  9267. elemental: {
  9268. height: math.unit(4 + 2/12, "feet"),
  9269. weight: math.unit(150, "lb"),
  9270. name: "Elemental",
  9271. image: {
  9272. source: "./media/characters/vanrel/elemental.svg"
  9273. }
  9274. },
  9275. side: {
  9276. height: math.unit(4 + 7 / 12, "feet"),
  9277. weight: math.unit(150, "lb"),
  9278. name: "Side",
  9279. image: {
  9280. source: "./media/characters/vanrel/side.svg",
  9281. extra: 1,
  9282. bottom: 0.025
  9283. }
  9284. },
  9285. tome: {
  9286. height: math.unit(1.35, "feet"),
  9287. weight: math.unit(10, "lb"),
  9288. name: "Vanrel's Tome",
  9289. rename: true,
  9290. image: {
  9291. source: "./media/characters/vanrel/tome.svg"
  9292. }
  9293. },
  9294. beans: {
  9295. height: math.unit(0.89, "feet"),
  9296. name: "Beans",
  9297. image: {
  9298. source: "./media/characters/vanrel/beans.svg"
  9299. }
  9300. },
  9301. },
  9302. [
  9303. {
  9304. name: "Normal",
  9305. height: math.unit(4 + 7 / 12, "feet"),
  9306. default: true
  9307. },
  9308. ]
  9309. ))
  9310. characterMakers.push(() => makeCharacter(
  9311. { name: "Kuiper Vanrel" },
  9312. {
  9313. front: {
  9314. height: math.unit(7 + 5 / 12, "feet"),
  9315. weight: math.unit(150, "lb"),
  9316. name: "Front",
  9317. image: {
  9318. source: "./media/characters/kuiper-vanrel/front.svg",
  9319. extra: 1118 / 1068,
  9320. bottom: 0.09
  9321. }
  9322. },
  9323. foot: {
  9324. height: math.unit(0.55, "meters"),
  9325. name: "Foot",
  9326. image: {
  9327. source: "./media/characters/kuiper-vanrel/foot.svg",
  9328. }
  9329. },
  9330. },
  9331. [
  9332. {
  9333. name: "Normal",
  9334. height: math.unit(7 + 5 / 12, "feet"),
  9335. default: true
  9336. },
  9337. ]
  9338. ))
  9339. characterMakers.push(() => makeCharacter(
  9340. { name: "Keset Vanrel" },
  9341. {
  9342. front: {
  9343. height: math.unit(8 + 5 / 12, "feet"),
  9344. weight: math.unit(150, "lb"),
  9345. name: "Front",
  9346. image: {
  9347. source: "./media/characters/keset-vanrel/front.svg",
  9348. extra: 1150 / 1084,
  9349. bottom: 0.05
  9350. }
  9351. },
  9352. hand: {
  9353. height: math.unit(0.6, "meters"),
  9354. name: "Hand",
  9355. image: {
  9356. source: "./media/characters/keset-vanrel/hand.svg"
  9357. }
  9358. },
  9359. foot: {
  9360. height: math.unit(0.94978, "meters"),
  9361. name: "Foot",
  9362. image: {
  9363. source: "./media/characters/keset-vanrel/foot.svg"
  9364. }
  9365. },
  9366. },
  9367. [
  9368. {
  9369. name: "Normal",
  9370. height: math.unit(8 + 5 / 12, "feet"),
  9371. default: true
  9372. },
  9373. ]
  9374. ))
  9375. characterMakers.push(() => makeCharacter(
  9376. { name: "Neos" },
  9377. {
  9378. front: {
  9379. height: math.unit(6, "feet"),
  9380. weight: math.unit(150, "lb"),
  9381. name: "Front",
  9382. image: {
  9383. source: "./media/characters/neos/front.svg",
  9384. extra: 1696 / 992,
  9385. bottom: 0.14
  9386. }
  9387. },
  9388. },
  9389. [
  9390. {
  9391. name: "Normal",
  9392. height: math.unit(54, "cm"),
  9393. default: true
  9394. },
  9395. {
  9396. name: "Macro",
  9397. height: math.unit(100, "m")
  9398. },
  9399. {
  9400. name: "Megamacro",
  9401. height: math.unit(10, "km")
  9402. },
  9403. {
  9404. name: "Megamacro+",
  9405. height: math.unit(100, "km")
  9406. },
  9407. {
  9408. name: "Gigamacro",
  9409. height: math.unit(100, "Mm")
  9410. },
  9411. {
  9412. name: "Teramacro",
  9413. height: math.unit(100, "Gm")
  9414. },
  9415. {
  9416. name: "Examacro",
  9417. height: math.unit(100, "Em")
  9418. },
  9419. {
  9420. name: "Godly",
  9421. height: math.unit(10000, "Ym")
  9422. },
  9423. {
  9424. name: "Beyond Godly",
  9425. height: math.unit(10000000, "Ym")
  9426. },
  9427. ]
  9428. ))
  9429. characterMakers.push(() => makeCharacter(
  9430. { name: "Sammy Mouse" },
  9431. {
  9432. feminine: {
  9433. height: math.unit(5, "feet"),
  9434. weight: math.unit(100, "lb"),
  9435. name: "Feminine",
  9436. image: {
  9437. source: "./media/characters/sammy-mouse/feminine.svg",
  9438. extra: 2526 / 2425,
  9439. bottom: 0.123
  9440. }
  9441. },
  9442. masculine: {
  9443. height: math.unit(5, "feet"),
  9444. weight: math.unit(100, "lb"),
  9445. name: "Masculine",
  9446. image: {
  9447. source: "./media/characters/sammy-mouse/masculine.svg",
  9448. extra: 2526 / 2425,
  9449. bottom: 0.123
  9450. }
  9451. },
  9452. },
  9453. [
  9454. {
  9455. name: "Micro",
  9456. height: math.unit(5, "inches")
  9457. },
  9458. {
  9459. name: "Normal",
  9460. height: math.unit(5, "feet"),
  9461. default: true
  9462. },
  9463. {
  9464. name: "Macro",
  9465. height: math.unit(60, "feet")
  9466. },
  9467. ]
  9468. ))
  9469. characterMakers.push(() => makeCharacter(
  9470. { name: "Kole" },
  9471. {
  9472. front: {
  9473. height: math.unit(4, "feet"),
  9474. weight: math.unit(50, "lb"),
  9475. name: "Front",
  9476. image: {
  9477. source: "./media/characters/kole/front.svg",
  9478. extra: 1423 / 1303,
  9479. bottom: 0.025
  9480. }
  9481. },
  9482. back: {
  9483. height: math.unit(4, "feet"),
  9484. weight: math.unit(50, "lb"),
  9485. name: "Back",
  9486. image: {
  9487. source: "./media/characters/kole/back.svg",
  9488. extra: 1426 / 1280,
  9489. bottom: 0.02
  9490. }
  9491. },
  9492. },
  9493. [
  9494. {
  9495. name: "Normal",
  9496. height: math.unit(4, "feet"),
  9497. default: true
  9498. },
  9499. ]
  9500. ))
  9501. characterMakers.push(() => makeCharacter(
  9502. { name: "Rufran" },
  9503. {
  9504. front: {
  9505. height: math.unit(2 + 6 / 12, "feet"),
  9506. weight: math.unit(20, "lb"),
  9507. name: "Front",
  9508. image: {
  9509. source: "./media/characters/rufran/front.svg",
  9510. extra: 2041 / 1839,
  9511. bottom: 0.055
  9512. }
  9513. },
  9514. back: {
  9515. height: math.unit(2 + 6 / 12, "feet"),
  9516. weight: math.unit(20, "lb"),
  9517. name: "Back",
  9518. image: {
  9519. source: "./media/characters/rufran/back.svg",
  9520. extra: 2054 / 1839,
  9521. bottom: 0.01
  9522. }
  9523. },
  9524. hand: {
  9525. height: math.unit(0.2166, "meters"),
  9526. name: "Hand",
  9527. image: {
  9528. source: "./media/characters/rufran/hand.svg"
  9529. }
  9530. },
  9531. foot: {
  9532. height: math.unit(0.185, "meters"),
  9533. name: "Foot",
  9534. image: {
  9535. source: "./media/characters/rufran/foot.svg"
  9536. }
  9537. },
  9538. },
  9539. [
  9540. {
  9541. name: "Micro",
  9542. height: math.unit(1, "inch")
  9543. },
  9544. {
  9545. name: "Normal",
  9546. height: math.unit(2 + 6 / 12, "feet"),
  9547. default: true
  9548. },
  9549. {
  9550. name: "Big",
  9551. height: math.unit(60, "feet")
  9552. },
  9553. {
  9554. name: "Macro",
  9555. height: math.unit(325, "feet")
  9556. },
  9557. ]
  9558. ))
  9559. characterMakers.push(() => makeCharacter(
  9560. { name: "Chip" },
  9561. {
  9562. front: {
  9563. height: math.unit(0.3, "meters"),
  9564. weight: math.unit(3.5, "kg"),
  9565. name: "Front",
  9566. image: {
  9567. source: "./media/characters/chip/front.svg",
  9568. extra: 748 / 674
  9569. }
  9570. },
  9571. },
  9572. [
  9573. {
  9574. name: "Micro",
  9575. height: math.unit(1, "inch"),
  9576. default: true
  9577. },
  9578. ]
  9579. ))
  9580. characterMakers.push(() => makeCharacter(
  9581. { name: "Torvid" },
  9582. {
  9583. side: {
  9584. height: math.unit(2.3, "meters"),
  9585. weight: math.unit(3500, "lb"),
  9586. name: "Side",
  9587. image: {
  9588. source: "./media/characters/torvid/side.svg",
  9589. extra: 1972 / 722,
  9590. bottom: 0.035
  9591. }
  9592. },
  9593. },
  9594. [
  9595. {
  9596. name: "Normal",
  9597. height: math.unit(2.3, "meters"),
  9598. default: true
  9599. },
  9600. ]
  9601. ))
  9602. characterMakers.push(() => makeCharacter(
  9603. { name: "Susan" },
  9604. {
  9605. front: {
  9606. height: math.unit(2, "meters"),
  9607. weight: math.unit(150.5, "kg"),
  9608. name: "Front",
  9609. image: {
  9610. source: "./media/characters/susan/front.svg",
  9611. extra: 693 / 635,
  9612. bottom: 0.05
  9613. }
  9614. },
  9615. },
  9616. [
  9617. {
  9618. name: "Megamacro",
  9619. height: math.unit(505, "miles"),
  9620. default: true
  9621. },
  9622. ]
  9623. ))
  9624. characterMakers.push(() => makeCharacter(
  9625. { name: "Raindrops" },
  9626. {
  9627. front: {
  9628. height: math.unit(6, "feet"),
  9629. weight: math.unit(150, "lb"),
  9630. name: "Front",
  9631. image: {
  9632. source: "./media/characters/raindrops/front.svg",
  9633. extra: 2655 / 2461,
  9634. bottom: 0.02
  9635. }
  9636. },
  9637. back: {
  9638. height: math.unit(6, "feet"),
  9639. weight: math.unit(150, "lb"),
  9640. name: "Back",
  9641. image: {
  9642. source: "./media/characters/raindrops/back.svg",
  9643. extra: 2574 / 2400,
  9644. bottom: 0.03
  9645. }
  9646. },
  9647. },
  9648. [
  9649. {
  9650. name: "Micro",
  9651. height: math.unit(6, "inches")
  9652. },
  9653. {
  9654. name: "Normal",
  9655. height: math.unit(6 + 2 / 12, "feet")
  9656. },
  9657. {
  9658. name: "Macro",
  9659. height: math.unit(131, "feet"),
  9660. default: true
  9661. },
  9662. {
  9663. name: "Megamacro",
  9664. height: math.unit(15, "miles")
  9665. },
  9666. {
  9667. name: "Gigamacro",
  9668. height: math.unit(4000, "miles")
  9669. },
  9670. {
  9671. name: "Teramacro",
  9672. height: math.unit(315000, "miles")
  9673. },
  9674. ]
  9675. ))
  9676. characterMakers.push(() => makeCharacter(
  9677. { name: "Tezwa" },
  9678. {
  9679. front: {
  9680. height: math.unit(2.794, "meters"),
  9681. weight: math.unit(325, "kg"),
  9682. name: "Front",
  9683. image: {
  9684. source: "./media/characters/tezwa/front.svg",
  9685. extra: 2083 / 1906,
  9686. bottom: 0.031
  9687. }
  9688. },
  9689. foot: {
  9690. height: math.unit(0.687, "meters"),
  9691. name: "Foot",
  9692. image: {
  9693. source: "./media/characters/tezwa/foot.svg"
  9694. }
  9695. },
  9696. },
  9697. [
  9698. {
  9699. name: "Normal",
  9700. height: math.unit(9 + 2 / 12, "feet"),
  9701. default: true
  9702. },
  9703. ]
  9704. ))
  9705. characterMakers.push(() => makeCharacter(
  9706. { name: "Typhus" },
  9707. {
  9708. front: {
  9709. height: math.unit(58, "feet"),
  9710. weight: math.unit(89000, "lb"),
  9711. name: "Front",
  9712. image: {
  9713. source: "./media/characters/typhus/front.svg",
  9714. extra: 816 / 800,
  9715. bottom: 0.065
  9716. }
  9717. },
  9718. },
  9719. [
  9720. {
  9721. name: "Macro",
  9722. height: math.unit(58, "feet"),
  9723. default: true
  9724. },
  9725. ]
  9726. ))
  9727. characterMakers.push(() => makeCharacter(
  9728. { name: "Lyra Von Wulf" },
  9729. {
  9730. front: {
  9731. height: math.unit(12, "feet"),
  9732. weight: math.unit(6, "tonnes"),
  9733. name: "Front",
  9734. image: {
  9735. source: "./media/characters/lyra-von-wulf/front.svg",
  9736. extra: 1,
  9737. bottom: 0.10
  9738. }
  9739. },
  9740. frontMecha: {
  9741. height: math.unit(12, "feet"),
  9742. weight: math.unit(12, "tonnes"),
  9743. name: "Front (Mecha)",
  9744. image: {
  9745. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  9746. extra: 1,
  9747. bottom: 0.042
  9748. }
  9749. },
  9750. maw: {
  9751. height: math.unit(2.2, "feet"),
  9752. name: "Maw",
  9753. image: {
  9754. source: "./media/characters/lyra-von-wulf/maw.svg"
  9755. }
  9756. },
  9757. },
  9758. [
  9759. {
  9760. name: "Normal",
  9761. height: math.unit(12, "feet"),
  9762. default: true
  9763. },
  9764. {
  9765. name: "Classic",
  9766. height: math.unit(50, "feet")
  9767. },
  9768. {
  9769. name: "Macro",
  9770. height: math.unit(500, "feet")
  9771. },
  9772. {
  9773. name: "Megamacro",
  9774. height: math.unit(1, "mile")
  9775. },
  9776. {
  9777. name: "Gigamacro",
  9778. height: math.unit(400, "miles")
  9779. },
  9780. {
  9781. name: "Teramacro",
  9782. height: math.unit(22000, "miles")
  9783. },
  9784. {
  9785. name: "Solarmacro",
  9786. height: math.unit(8600000, "miles")
  9787. },
  9788. {
  9789. name: "Galactic",
  9790. height: math.unit(1057000, "lightyears")
  9791. },
  9792. ]
  9793. ))
  9794. characterMakers.push(() => makeCharacter(
  9795. { name: "Dixon" },
  9796. {
  9797. front: {
  9798. height: math.unit(6 + 10 / 12, "feet"),
  9799. weight: math.unit(150, "lb"),
  9800. name: "Front",
  9801. image: {
  9802. source: "./media/characters/dixon/front.svg",
  9803. extra: 3361 / 3209,
  9804. bottom: 0.01
  9805. }
  9806. },
  9807. },
  9808. [
  9809. {
  9810. name: "Normal",
  9811. height: math.unit(6 + 10 / 12, "feet"),
  9812. default: true
  9813. },
  9814. {
  9815. name: "Big",
  9816. height: math.unit(12, "meters")
  9817. },
  9818. {
  9819. name: "Macro",
  9820. height: math.unit(500, "meters")
  9821. },
  9822. {
  9823. name: "Megamacro",
  9824. height: math.unit(2, "km")
  9825. },
  9826. ]
  9827. ))
  9828. characterMakers.push(() => makeCharacter(
  9829. { name: "Kauko" },
  9830. {
  9831. front: {
  9832. height: math.unit(185, "cm"),
  9833. weight: math.unit(68, "kg"),
  9834. name: "Front",
  9835. image: {
  9836. source: "./media/characters/kauko/front.svg",
  9837. extra: 1455 / 1421,
  9838. bottom: 0.03
  9839. }
  9840. },
  9841. back: {
  9842. height: math.unit(185, "cm"),
  9843. weight: math.unit(68, "kg"),
  9844. name: "Back",
  9845. image: {
  9846. source: "./media/characters/kauko/back.svg",
  9847. extra: 1455 / 1421,
  9848. bottom: 0.004
  9849. }
  9850. },
  9851. },
  9852. [
  9853. {
  9854. name: "Normal",
  9855. height: math.unit(185, "cm"),
  9856. default: true
  9857. },
  9858. ]
  9859. ))
  9860. characterMakers.push(() => makeCharacter(
  9861. { name: "Varg" },
  9862. {
  9863. front: {
  9864. height: math.unit(6, "feet"),
  9865. weight: math.unit(150, "kg"),
  9866. name: "Front",
  9867. image: {
  9868. source: "./media/characters/varg/front.svg",
  9869. extra: 1108 / 1018,
  9870. bottom: 0.0375
  9871. }
  9872. },
  9873. },
  9874. [
  9875. {
  9876. name: "Normal",
  9877. height: math.unit(5, "meters")
  9878. },
  9879. {
  9880. name: "Macro",
  9881. height: math.unit(200, "meters")
  9882. },
  9883. {
  9884. name: "Megamacro",
  9885. height: math.unit(20, "kilometers")
  9886. },
  9887. {
  9888. name: "True Size",
  9889. height: math.unit(211, "km"),
  9890. default: true
  9891. },
  9892. {
  9893. name: "Gigamacro",
  9894. height: math.unit(1000, "km")
  9895. },
  9896. {
  9897. name: "Gigamacro+",
  9898. height: math.unit(8000, "km")
  9899. },
  9900. {
  9901. name: "Teramacro",
  9902. height: math.unit(1000000, "km")
  9903. },
  9904. ]
  9905. ))
  9906. characterMakers.push(() => makeCharacter(
  9907. { name: "Dayza" },
  9908. {
  9909. front: {
  9910. height: math.unit(7 + 7 / 12, "feet"),
  9911. weight: math.unit(267, "lb"),
  9912. name: "Front",
  9913. image: {
  9914. source: "./media/characters/dayza/front.svg",
  9915. extra: 1262 / 1200,
  9916. bottom: 0.035
  9917. }
  9918. },
  9919. side: {
  9920. height: math.unit(7 + 7 / 12, "feet"),
  9921. weight: math.unit(267, "lb"),
  9922. name: "Side",
  9923. image: {
  9924. source: "./media/characters/dayza/side.svg",
  9925. extra: 1295 / 1245,
  9926. bottom: 0.05
  9927. }
  9928. },
  9929. back: {
  9930. height: math.unit(7 + 7 / 12, "feet"),
  9931. weight: math.unit(267, "lb"),
  9932. name: "Back",
  9933. image: {
  9934. source: "./media/characters/dayza/back.svg",
  9935. extra: 1241 / 1170
  9936. }
  9937. },
  9938. },
  9939. [
  9940. {
  9941. name: "Normal",
  9942. height: math.unit(7 + 7 / 12, "feet"),
  9943. default: true
  9944. },
  9945. {
  9946. name: "Macro",
  9947. height: math.unit(155, "feet")
  9948. },
  9949. ]
  9950. ))
  9951. characterMakers.push(() => makeCharacter(
  9952. { name: "Xanthos" },
  9953. {
  9954. front: {
  9955. height: math.unit(6 + 5 / 12, "feet"),
  9956. weight: math.unit(160, "lb"),
  9957. name: "Front",
  9958. image: {
  9959. source: "./media/characters/xanthos/front.svg",
  9960. extra: 1,
  9961. bottom: 0.04
  9962. }
  9963. },
  9964. back: {
  9965. height: math.unit(6 + 5 / 12, "feet"),
  9966. weight: math.unit(160, "lb"),
  9967. name: "Back",
  9968. image: {
  9969. source: "./media/characters/xanthos/back.svg",
  9970. extra: 1,
  9971. bottom: 0.03
  9972. }
  9973. },
  9974. hand: {
  9975. height: math.unit(0.928, "feet"),
  9976. name: "Hand",
  9977. image: {
  9978. source: "./media/characters/xanthos/hand.svg"
  9979. }
  9980. },
  9981. foot: {
  9982. height: math.unit(1.286, "feet"),
  9983. name: "Foot",
  9984. image: {
  9985. source: "./media/characters/xanthos/foot.svg"
  9986. }
  9987. },
  9988. },
  9989. [
  9990. {
  9991. name: "Normal",
  9992. height: math.unit(6 + 5 / 12, "feet"),
  9993. default: true
  9994. },
  9995. {
  9996. name: "Normal+",
  9997. height: math.unit(6, "meters")
  9998. },
  9999. {
  10000. name: "Macro",
  10001. height: math.unit(40, "feet")
  10002. },
  10003. {
  10004. name: "Macro+",
  10005. height: math.unit(200, "meters")
  10006. },
  10007. {
  10008. name: "Megamacro",
  10009. height: math.unit(20, "km")
  10010. },
  10011. {
  10012. name: "Megamacro+",
  10013. height: math.unit(100, "km")
  10014. },
  10015. ]
  10016. ))
  10017. characterMakers.push(() => makeCharacter(
  10018. { name: "Grynn" },
  10019. {
  10020. front: {
  10021. height: math.unit(6 + 3 / 12, "feet"),
  10022. weight: math.unit(215, "lb"),
  10023. name: "Front",
  10024. image: {
  10025. source: "./media/characters/grynn/front.svg",
  10026. extra: 4627 / 4209,
  10027. bottom: 0.047
  10028. }
  10029. },
  10030. },
  10031. [
  10032. {
  10033. name: "Micro",
  10034. height: math.unit(6, "inches")
  10035. },
  10036. {
  10037. name: "Normal",
  10038. height: math.unit(6 + 3 / 12, "feet"),
  10039. default: true
  10040. },
  10041. {
  10042. name: "Big",
  10043. height: math.unit(104, "feet")
  10044. },
  10045. {
  10046. name: "Macro",
  10047. height: math.unit(944, "feet")
  10048. },
  10049. {
  10050. name: "Macro+",
  10051. height: math.unit(9480, "feet")
  10052. },
  10053. {
  10054. name: "Megamacro",
  10055. height: math.unit(78752, "feet")
  10056. },
  10057. {
  10058. name: "Megamacro+",
  10059. height: math.unit(630128, "feet")
  10060. },
  10061. {
  10062. name: "Megamacro++",
  10063. height: math.unit(3150695, "feet")
  10064. },
  10065. ]
  10066. ))
  10067. characterMakers.push(() => makeCharacter(
  10068. { name: "Mocha Aura" },
  10069. {
  10070. front: {
  10071. height: math.unit(7 + 5 / 12, "feet"),
  10072. weight: math.unit(450, "lb"),
  10073. name: "Front",
  10074. image: {
  10075. source: "./media/characters/mocha-aura/front.svg",
  10076. extra: 1907 / 1817,
  10077. bottom: 0.04
  10078. }
  10079. },
  10080. back: {
  10081. height: math.unit(7 + 5 / 12, "feet"),
  10082. weight: math.unit(450, "lb"),
  10083. name: "Back",
  10084. image: {
  10085. source: "./media/characters/mocha-aura/back.svg",
  10086. extra: 1900 / 1825,
  10087. bottom: 0.045
  10088. }
  10089. },
  10090. },
  10091. [
  10092. {
  10093. name: "Nano",
  10094. height: math.unit(1, "nm")
  10095. },
  10096. {
  10097. name: "Megamicro",
  10098. height: math.unit(1, "mm")
  10099. },
  10100. {
  10101. name: "Micro",
  10102. height: math.unit(3, "inches")
  10103. },
  10104. {
  10105. name: "Normal",
  10106. height: math.unit(7 + 5 / 12, "feet"),
  10107. default: true
  10108. },
  10109. {
  10110. name: "Macro",
  10111. height: math.unit(30, "feet")
  10112. },
  10113. {
  10114. name: "Megamacro",
  10115. height: math.unit(3500, "feet")
  10116. },
  10117. {
  10118. name: "Teramacro",
  10119. height: math.unit(500000, "miles")
  10120. },
  10121. {
  10122. name: "Petamacro",
  10123. height: math.unit(50000000000000000, "parsecs")
  10124. },
  10125. ]
  10126. ))
  10127. characterMakers.push(() => makeCharacter(
  10128. { name: "Ilisha Devya" },
  10129. {
  10130. front: {
  10131. height: math.unit(6, "feet"),
  10132. weight: math.unit(150, "lb"),
  10133. name: "Front",
  10134. image: {
  10135. source: "./media/characters/ilisha-devya/front.svg",
  10136. extra: 1,
  10137. bottom: 0.175
  10138. }
  10139. },
  10140. back: {
  10141. height: math.unit(6, "feet"),
  10142. weight: math.unit(150, "lb"),
  10143. name: "Back",
  10144. image: {
  10145. source: "./media/characters/ilisha-devya/back.svg",
  10146. extra: 1,
  10147. bottom: 0.015
  10148. }
  10149. },
  10150. },
  10151. [
  10152. {
  10153. name: "Macro",
  10154. height: math.unit(500, "feet"),
  10155. default: true
  10156. },
  10157. {
  10158. name: "Megamacro",
  10159. height: math.unit(10, "miles")
  10160. },
  10161. {
  10162. name: "Gigamacro",
  10163. height: math.unit(100000, "miles")
  10164. },
  10165. {
  10166. name: "Examacro",
  10167. height: math.unit(1e9, "lightyears")
  10168. },
  10169. {
  10170. name: "Omniversal",
  10171. height: math.unit(1e33, "lightyears")
  10172. },
  10173. {
  10174. name: "Beyond Infinite",
  10175. height: math.unit(1e100, "lightyears")
  10176. },
  10177. ]
  10178. ))
  10179. characterMakers.push(() => makeCharacter(
  10180. { name: "Mira" },
  10181. {
  10182. Side: {
  10183. height: math.unit(6, "feet"),
  10184. weight: math.unit(150, "lb"),
  10185. name: "Side",
  10186. image: {
  10187. source: "./media/characters/mira/side.svg",
  10188. extra: 900 / 799,
  10189. bottom: 0.02
  10190. }
  10191. },
  10192. },
  10193. [
  10194. {
  10195. name: "Human Size",
  10196. height: math.unit(6, "feet")
  10197. },
  10198. {
  10199. name: "Macro",
  10200. height: math.unit(100, "feet"),
  10201. default: true
  10202. },
  10203. {
  10204. name: "Megamacro",
  10205. height: math.unit(10, "miles")
  10206. },
  10207. {
  10208. name: "Gigamacro",
  10209. height: math.unit(25000, "miles")
  10210. },
  10211. {
  10212. name: "Teramacro",
  10213. height: math.unit(300, "AU")
  10214. },
  10215. {
  10216. name: "Full Size",
  10217. height: math.unit(4.5e10, "lightyears")
  10218. },
  10219. ]
  10220. ))
  10221. characterMakers.push(() => makeCharacter(
  10222. { name: "Holly" },
  10223. {
  10224. front: {
  10225. height: math.unit(6, "feet"),
  10226. weight: math.unit(150, "lb"),
  10227. name: "Front",
  10228. image: {
  10229. source: "./media/characters/holly/front.svg",
  10230. extra: 639 / 606
  10231. }
  10232. },
  10233. back: {
  10234. height: math.unit(6, "feet"),
  10235. weight: math.unit(150, "lb"),
  10236. name: "Back",
  10237. image: {
  10238. source: "./media/characters/holly/back.svg",
  10239. extra: 623 / 598
  10240. }
  10241. },
  10242. frontWorking: {
  10243. height: math.unit(6, "feet"),
  10244. weight: math.unit(150, "lb"),
  10245. name: "Front (Working)",
  10246. image: {
  10247. source: "./media/characters/holly/front-working.svg",
  10248. extra: 607 / 577,
  10249. bottom: 0.048
  10250. }
  10251. },
  10252. },
  10253. [
  10254. {
  10255. name: "Normal",
  10256. height: math.unit(12 + 3 / 12, "feet"),
  10257. default: true
  10258. },
  10259. ]
  10260. ))
  10261. characterMakers.push(() => makeCharacter(
  10262. { name: "Porter" },
  10263. {
  10264. front: {
  10265. height: math.unit(6, "feet"),
  10266. weight: math.unit(150, "lb"),
  10267. name: "Front",
  10268. image: {
  10269. source: "./media/characters/porter/front.svg",
  10270. extra: 1,
  10271. bottom: 0.01
  10272. }
  10273. },
  10274. frontRobes: {
  10275. height: math.unit(6, "feet"),
  10276. weight: math.unit(150, "lb"),
  10277. name: "Front (Robes)",
  10278. image: {
  10279. source: "./media/characters/porter/front-robes.svg",
  10280. extra: 1.01,
  10281. bottom: 0.01
  10282. }
  10283. },
  10284. },
  10285. [
  10286. {
  10287. name: "Normal",
  10288. height: math.unit(11 + 9 / 12, "feet"),
  10289. default: true
  10290. },
  10291. ]
  10292. ))
  10293. characterMakers.push(() => makeCharacter(
  10294. { name: "Lucy" },
  10295. {
  10296. legendary: {
  10297. height: math.unit(6, "feet"),
  10298. weight: math.unit(150, "lb"),
  10299. name: "Legendary",
  10300. image: {
  10301. source: "./media/characters/lucy/legendary.svg",
  10302. extra: 1355 / 1100,
  10303. bottom: 0.045
  10304. }
  10305. },
  10306. },
  10307. [
  10308. {
  10309. name: "Legendary",
  10310. height: math.unit(86882 * 2, "miles"),
  10311. default: true
  10312. },
  10313. ]
  10314. ))
  10315. characterMakers.push(() => makeCharacter(
  10316. { name: "Drusilla" },
  10317. {
  10318. front: {
  10319. height: math.unit(6, "feet"),
  10320. weight: math.unit(150, "lb"),
  10321. name: "Front",
  10322. image: {
  10323. source: "./media/characters/drusilla/front.svg",
  10324. extra: 678 / 635,
  10325. bottom: 0.03
  10326. }
  10327. },
  10328. back: {
  10329. height: math.unit(6, "feet"),
  10330. weight: math.unit(150, "lb"),
  10331. name: "Back",
  10332. image: {
  10333. source: "./media/characters/drusilla/back.svg",
  10334. extra: 678 / 635,
  10335. bottom: 0.005
  10336. }
  10337. },
  10338. },
  10339. [
  10340. {
  10341. name: "Macro",
  10342. height: math.unit(100, "feet")
  10343. },
  10344. {
  10345. name: "Canon Height",
  10346. height: math.unit(2000, "feet"),
  10347. default: true
  10348. },
  10349. ]
  10350. ))
  10351. characterMakers.push(() => makeCharacter(
  10352. { name: "Renard Thatch" },
  10353. {
  10354. front: {
  10355. height: math.unit(6, "feet"),
  10356. weight: math.unit(180, "lb"),
  10357. name: "Front",
  10358. image: {
  10359. source: "./media/characters/renard-thatch/front.svg",
  10360. extra: 2411 / 2275,
  10361. bottom: 0.01
  10362. }
  10363. },
  10364. frontPosing: {
  10365. height: math.unit(6, "feet"),
  10366. weight: math.unit(180, "lb"),
  10367. name: "Front (Posing)",
  10368. image: {
  10369. source: "./media/characters/renard-thatch/front-posing.svg",
  10370. extra: 2381 / 2261,
  10371. bottom: 0.01
  10372. }
  10373. },
  10374. back: {
  10375. height: math.unit(6, "feet"),
  10376. weight: math.unit(180, "lb"),
  10377. name: "Back",
  10378. image: {
  10379. source: "./media/characters/renard-thatch/back.svg",
  10380. extra: 2428 / 2288
  10381. }
  10382. },
  10383. },
  10384. [
  10385. {
  10386. name: "Micro",
  10387. height: math.unit(3, "inches")
  10388. },
  10389. {
  10390. name: "Default",
  10391. height: math.unit(6, "feet"),
  10392. default: true
  10393. },
  10394. {
  10395. name: "Macro",
  10396. height: math.unit(75, "feet")
  10397. },
  10398. ]
  10399. ))
  10400. characterMakers.push(() => makeCharacter(
  10401. { name: "Sekvra" },
  10402. {
  10403. front: {
  10404. height: math.unit(1450, "feet"),
  10405. weight: math.unit(1.21e6, "tons"),
  10406. name: "Front",
  10407. image: {
  10408. source: "./media/characters/sekvra/front.svg",
  10409. extra: 1,
  10410. bottom: 0.03
  10411. }
  10412. },
  10413. frontClothed: {
  10414. height: math.unit(1450, "feet"),
  10415. weight: math.unit(1.21e6, "tons"),
  10416. name: "Front (Clothed)",
  10417. image: {
  10418. source: "./media/characters/sekvra/front-clothed.svg",
  10419. extra: 1,
  10420. bottom: 0.03
  10421. }
  10422. },
  10423. side: {
  10424. height: math.unit(1450, "feet"),
  10425. weight: math.unit(1.21e6, "tons"),
  10426. name: "Side",
  10427. image: {
  10428. source: "./media/characters/sekvra/side.svg",
  10429. extra: 1,
  10430. bottom: 0.025
  10431. }
  10432. },
  10433. back: {
  10434. height: math.unit(1450, "feet"),
  10435. weight: math.unit(1.21e6, "tons"),
  10436. name: "Back",
  10437. image: {
  10438. source: "./media/characters/sekvra/back.svg",
  10439. extra: 1,
  10440. bottom: 0.005
  10441. }
  10442. },
  10443. },
  10444. [
  10445. {
  10446. name: "Macro",
  10447. height: math.unit(1450, "feet"),
  10448. default: true
  10449. },
  10450. {
  10451. name: "Megamacro",
  10452. height: math.unit(15000, "feet")
  10453. },
  10454. ]
  10455. ))
  10456. characterMakers.push(() => makeCharacter(
  10457. { name: "Carmine" },
  10458. {
  10459. front: {
  10460. height: math.unit(6, "feet"),
  10461. weight: math.unit(150, "lb"),
  10462. name: "Front",
  10463. image: {
  10464. source: "./media/characters/carmine/front.svg",
  10465. extra: 1,
  10466. bottom: 0.035
  10467. }
  10468. },
  10469. frontArmor: {
  10470. height: math.unit(6, "feet"),
  10471. weight: math.unit(150, "lb"),
  10472. name: "Front (Armor)",
  10473. image: {
  10474. source: "./media/characters/carmine/front-armor.svg",
  10475. extra: 1,
  10476. bottom: 0.035
  10477. }
  10478. },
  10479. },
  10480. [
  10481. {
  10482. name: "Large",
  10483. height: math.unit(1, "mile")
  10484. },
  10485. {
  10486. name: "Huge",
  10487. height: math.unit(40, "miles"),
  10488. default: true
  10489. },
  10490. {
  10491. name: "Colossal",
  10492. height: math.unit(2500, "miles")
  10493. },
  10494. ]
  10495. ))
  10496. characterMakers.push(() => makeCharacter(
  10497. { name: "Elyssia" },
  10498. {
  10499. front: {
  10500. height: math.unit(6, "feet"),
  10501. weight: math.unit(150, "lb"),
  10502. name: "Front",
  10503. image: {
  10504. source: "./media/characters/elyssia/front.svg",
  10505. extra: 2201 / 2035,
  10506. bottom: 0.05
  10507. }
  10508. },
  10509. frontClothed: {
  10510. height: math.unit(6, "feet"),
  10511. weight: math.unit(150, "lb"),
  10512. name: "Front (Clothed)",
  10513. image: {
  10514. source: "./media/characters/elyssia/front-clothed.svg",
  10515. extra: 2201 / 2035,
  10516. bottom: 0.05
  10517. }
  10518. },
  10519. back: {
  10520. height: math.unit(6, "feet"),
  10521. weight: math.unit(150, "lb"),
  10522. name: "Back",
  10523. image: {
  10524. source: "./media/characters/elyssia/back.svg",
  10525. extra: 2201 / 2035,
  10526. bottom: 0.013
  10527. }
  10528. },
  10529. },
  10530. [
  10531. {
  10532. name: "Smaller",
  10533. height: math.unit(150, "feet")
  10534. },
  10535. {
  10536. name: "Standard",
  10537. height: math.unit(1400, "feet"),
  10538. default: true
  10539. },
  10540. {
  10541. name: "Distracted",
  10542. height: math.unit(15000, "feet")
  10543. },
  10544. ]
  10545. ))
  10546. characterMakers.push(() => makeCharacter(
  10547. { name: "Geno Maxwell" },
  10548. {
  10549. front: {
  10550. height: math.unit(7 + 4 / 12, "feet"),
  10551. weight: math.unit(500, "lb"),
  10552. name: "Front",
  10553. image: {
  10554. source: "./media/characters/geno-maxwell/front.svg",
  10555. extra: 2207 / 2040,
  10556. bottom: 0.015
  10557. }
  10558. },
  10559. },
  10560. [
  10561. {
  10562. name: "Micro",
  10563. height: math.unit(3, "inches")
  10564. },
  10565. {
  10566. name: "Normal",
  10567. height: math.unit(7 + 4 / 12, "feet"),
  10568. default: true
  10569. },
  10570. {
  10571. name: "Macro",
  10572. height: math.unit(220, "feet")
  10573. },
  10574. {
  10575. name: "Megamacro",
  10576. height: math.unit(11, "miles")
  10577. },
  10578. ]
  10579. ))
  10580. characterMakers.push(() => makeCharacter(
  10581. { name: "Regena Maxwell" },
  10582. {
  10583. front: {
  10584. height: math.unit(7 + 4 / 12, "feet"),
  10585. weight: math.unit(500, "lb"),
  10586. name: "Front",
  10587. image: {
  10588. source: "./media/characters/regena-maxwell/front.svg",
  10589. extra: 3115 / 2770,
  10590. bottom: 0.02
  10591. }
  10592. },
  10593. },
  10594. [
  10595. {
  10596. name: "Normal",
  10597. height: math.unit(7 + 4 / 12, "feet"),
  10598. default: true
  10599. },
  10600. {
  10601. name: "Macro",
  10602. height: math.unit(220, "feet")
  10603. },
  10604. {
  10605. name: "Megamacro",
  10606. height: math.unit(11, "miles")
  10607. },
  10608. ]
  10609. ))
  10610. characterMakers.push(() => makeCharacter(
  10611. { name: "XGlidingDragonX" },
  10612. {
  10613. front: {
  10614. height: math.unit(6, "feet"),
  10615. weight: math.unit(150, "lb"),
  10616. name: "Front",
  10617. image: {
  10618. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10619. extra: 860 / 690,
  10620. bottom: 0.03
  10621. }
  10622. },
  10623. },
  10624. [
  10625. {
  10626. name: "Normal",
  10627. height: math.unit(1.7, "meters"),
  10628. default: true
  10629. },
  10630. ]
  10631. ))
  10632. characterMakers.push(() => makeCharacter(
  10633. { name: "Quilly" },
  10634. {
  10635. front: {
  10636. height: math.unit(6, "feet"),
  10637. weight: math.unit(150, "lb"),
  10638. name: "Front",
  10639. image: {
  10640. source: "./media/characters/quilly/front.svg",
  10641. extra: 890 / 776
  10642. }
  10643. },
  10644. },
  10645. [
  10646. {
  10647. name: "Gigamacro",
  10648. height: math.unit(404090, "miles"),
  10649. default: true
  10650. },
  10651. ]
  10652. ))
  10653. characterMakers.push(() => makeCharacter(
  10654. { name: "Tempest" },
  10655. {
  10656. front: {
  10657. height: math.unit(7 + 8 / 12, "feet"),
  10658. weight: math.unit(350, "lb"),
  10659. name: "Front",
  10660. image: {
  10661. source: "./media/characters/tempest/front.svg",
  10662. extra: 1175 / 1086,
  10663. bottom: 0.02
  10664. }
  10665. },
  10666. },
  10667. [
  10668. {
  10669. name: "Normal",
  10670. height: math.unit(7 + 8 / 12, "feet"),
  10671. default: true
  10672. },
  10673. ]
  10674. ))
  10675. characterMakers.push(() => makeCharacter(
  10676. { name: "Rodger" },
  10677. {
  10678. side: {
  10679. height: math.unit(4 + 5 / 12, "feet"),
  10680. weight: math.unit(80, "lb"),
  10681. name: "Side",
  10682. image: {
  10683. source: "./media/characters/rodger/side.svg",
  10684. extra: 1235 / 1118
  10685. }
  10686. },
  10687. },
  10688. [
  10689. {
  10690. name: "Micro",
  10691. height: math.unit(1, "inch")
  10692. },
  10693. {
  10694. name: "Normal",
  10695. height: math.unit(4 + 5 / 12, "feet"),
  10696. default: true
  10697. },
  10698. {
  10699. name: "Macro",
  10700. height: math.unit(120, "feet")
  10701. },
  10702. ]
  10703. ))
  10704. characterMakers.push(() => makeCharacter(
  10705. { name: "Danyel" },
  10706. {
  10707. front: {
  10708. height: math.unit(6, "feet"),
  10709. weight: math.unit(150, "lb"),
  10710. name: "Front",
  10711. image: {
  10712. source: "./media/characters/danyel/front.svg",
  10713. extra: 1185 / 1123,
  10714. bottom: 0.05
  10715. }
  10716. },
  10717. },
  10718. [
  10719. {
  10720. name: "Shrunken",
  10721. height: math.unit(0.5, "mm")
  10722. },
  10723. {
  10724. name: "Micro",
  10725. height: math.unit(1, "mm"),
  10726. default: true
  10727. },
  10728. {
  10729. name: "Upsized",
  10730. height: math.unit(5 + 5 / 12, "feet")
  10731. },
  10732. ]
  10733. ))
  10734. characterMakers.push(() => makeCharacter(
  10735. { name: "Vivian Bijoux" },
  10736. {
  10737. front: {
  10738. height: math.unit(5 + 6 / 12, "feet"),
  10739. weight: math.unit(200, "lb"),
  10740. name: "Front",
  10741. image: {
  10742. source: "./media/characters/vivian-bijoux/front.svg",
  10743. extra: 1,
  10744. bottom: 0.072
  10745. }
  10746. },
  10747. },
  10748. [
  10749. {
  10750. name: "Normal",
  10751. height: math.unit(5 + 6 / 12, "feet"),
  10752. default: true
  10753. },
  10754. {
  10755. name: "Bad Dream",
  10756. height: math.unit(500, "feet")
  10757. },
  10758. {
  10759. name: "Nightmare",
  10760. height: math.unit(500, "miles")
  10761. },
  10762. ]
  10763. ))
  10764. characterMakers.push(() => makeCharacter(
  10765. { name: "Zeta" },
  10766. {
  10767. front: {
  10768. height: math.unit(6 + 1 / 12, "feet"),
  10769. weight: math.unit(260, "lb"),
  10770. name: "Front",
  10771. image: {
  10772. source: "./media/characters/zeta/front.svg",
  10773. extra: 1968 / 1889,
  10774. bottom: 0.06
  10775. }
  10776. },
  10777. back: {
  10778. height: math.unit(6 + 1 / 12, "feet"),
  10779. weight: math.unit(260, "lb"),
  10780. name: "Back",
  10781. image: {
  10782. source: "./media/characters/zeta/back.svg",
  10783. extra: 1944 / 1858,
  10784. bottom: 0.03
  10785. }
  10786. },
  10787. hand: {
  10788. height: math.unit(1.112, "feet"),
  10789. name: "Hand",
  10790. image: {
  10791. source: "./media/characters/zeta/hand.svg"
  10792. }
  10793. },
  10794. foot: {
  10795. height: math.unit(1.48, "feet"),
  10796. name: "Foot",
  10797. image: {
  10798. source: "./media/characters/zeta/foot.svg"
  10799. }
  10800. },
  10801. },
  10802. [
  10803. {
  10804. name: "Micro",
  10805. height: math.unit(6, "inches")
  10806. },
  10807. {
  10808. name: "Normal",
  10809. height: math.unit(6 + 1 / 12, "feet"),
  10810. default: true
  10811. },
  10812. {
  10813. name: "Macro",
  10814. height: math.unit(20, "feet")
  10815. },
  10816. ]
  10817. ))
  10818. characterMakers.push(() => makeCharacter(
  10819. { name: "Jamie Larsen" },
  10820. {
  10821. front: {
  10822. height: math.unit(6, "feet"),
  10823. weight: math.unit(150, "lb"),
  10824. name: "Front",
  10825. image: {
  10826. source: "./media/characters/jamie-larsen/front.svg",
  10827. extra: 962 / 933,
  10828. bottom: 0.02
  10829. }
  10830. },
  10831. back: {
  10832. height: math.unit(6, "feet"),
  10833. weight: math.unit(150, "lb"),
  10834. name: "Back",
  10835. image: {
  10836. source: "./media/characters/jamie-larsen/back.svg",
  10837. extra: 997 / 946
  10838. }
  10839. },
  10840. },
  10841. [
  10842. {
  10843. name: "Macro",
  10844. height: math.unit(28 + 7 / 12, "feet"),
  10845. default: true
  10846. },
  10847. {
  10848. name: "Macro+",
  10849. height: math.unit(180, "feet")
  10850. },
  10851. {
  10852. name: "Megamacro",
  10853. height: math.unit(10, "miles")
  10854. },
  10855. {
  10856. name: "Gigamacro",
  10857. height: math.unit(200000, "miles")
  10858. },
  10859. ]
  10860. ))
  10861. characterMakers.push(() => makeCharacter(
  10862. { name: "Vance" },
  10863. {
  10864. front: {
  10865. height: math.unit(6, "feet"),
  10866. weight: math.unit(120, "lb"),
  10867. name: "Front",
  10868. image: {
  10869. source: "./media/characters/vance/front.svg",
  10870. extra: 1980 / 1890,
  10871. bottom: 0.09
  10872. }
  10873. },
  10874. back: {
  10875. height: math.unit(6, "feet"),
  10876. weight: math.unit(120, "lb"),
  10877. name: "Back",
  10878. image: {
  10879. source: "./media/characters/vance/back.svg",
  10880. extra: 2081 / 1994,
  10881. bottom: 0.014
  10882. }
  10883. },
  10884. hand: {
  10885. height: math.unit(0.88, "feet"),
  10886. name: "Hand",
  10887. image: {
  10888. source: "./media/characters/vance/hand.svg"
  10889. }
  10890. },
  10891. foot: {
  10892. height: math.unit(0.64, "feet"),
  10893. name: "Foot",
  10894. image: {
  10895. source: "./media/characters/vance/foot.svg"
  10896. }
  10897. },
  10898. },
  10899. [
  10900. {
  10901. name: "Small",
  10902. height: math.unit(90, "feet"),
  10903. default: true
  10904. },
  10905. {
  10906. name: "Macro",
  10907. height: math.unit(100, "meters")
  10908. },
  10909. {
  10910. name: "Megamacro",
  10911. height: math.unit(15, "miles")
  10912. },
  10913. ]
  10914. ))
  10915. characterMakers.push(() => makeCharacter(
  10916. { name: "Xochitl" },
  10917. {
  10918. front: {
  10919. height: math.unit(6, "feet"),
  10920. weight: math.unit(180, "lb"),
  10921. name: "Front",
  10922. image: {
  10923. source: "./media/characters/xochitl/front.svg",
  10924. extra: 2297 / 2261,
  10925. bottom: 0.065
  10926. }
  10927. },
  10928. back: {
  10929. height: math.unit(6, "feet"),
  10930. weight: math.unit(180, "lb"),
  10931. name: "Back",
  10932. image: {
  10933. source: "./media/characters/xochitl/back.svg",
  10934. extra: 2386 / 2354,
  10935. bottom: 0.01
  10936. }
  10937. },
  10938. foot: {
  10939. height: math.unit(6 / 5 * 1.15, "feet"),
  10940. weight: math.unit(150, "lb"),
  10941. name: "Foot",
  10942. image: {
  10943. source: "./media/characters/xochitl/foot.svg"
  10944. }
  10945. },
  10946. },
  10947. [
  10948. {
  10949. name: "Macro",
  10950. height: math.unit(80, "feet")
  10951. },
  10952. {
  10953. name: "Macro+",
  10954. height: math.unit(400, "feet"),
  10955. default: true
  10956. },
  10957. {
  10958. name: "Gigamacro",
  10959. height: math.unit(80000, "miles")
  10960. },
  10961. {
  10962. name: "Gigamacro+",
  10963. height: math.unit(400000, "miles")
  10964. },
  10965. {
  10966. name: "Teramacro",
  10967. height: math.unit(300, "AU")
  10968. },
  10969. ]
  10970. ))
  10971. characterMakers.push(() => makeCharacter(
  10972. { name: "Vincent" },
  10973. {
  10974. front: {
  10975. height: math.unit(6, "feet"),
  10976. weight: math.unit(150, "lb"),
  10977. name: "Front",
  10978. image: {
  10979. source: "./media/characters/vincent/front.svg",
  10980. extra: 1130 / 1080,
  10981. bottom: 0.055
  10982. }
  10983. },
  10984. beak: {
  10985. height: math.unit(6 * 0.1, "feet"),
  10986. name: "Beak",
  10987. image: {
  10988. source: "./media/characters/vincent/beak.svg"
  10989. }
  10990. },
  10991. hand: {
  10992. height: math.unit(6 * 0.85, "feet"),
  10993. weight: math.unit(150, "lb"),
  10994. name: "Hand",
  10995. image: {
  10996. source: "./media/characters/vincent/hand.svg"
  10997. }
  10998. },
  10999. foot: {
  11000. height: math.unit(6 * 0.19, "feet"),
  11001. weight: math.unit(150, "lb"),
  11002. name: "Foot",
  11003. image: {
  11004. source: "./media/characters/vincent/foot.svg"
  11005. }
  11006. },
  11007. },
  11008. [
  11009. {
  11010. name: "Base",
  11011. height: math.unit(6 + 5 / 12, "feet"),
  11012. default: true
  11013. },
  11014. {
  11015. name: "Macro",
  11016. height: math.unit(300, "feet")
  11017. },
  11018. {
  11019. name: "Megamacro",
  11020. height: math.unit(2, "miles")
  11021. },
  11022. {
  11023. name: "Gigamacro",
  11024. height: math.unit(1000, "miles")
  11025. },
  11026. ]
  11027. ))
  11028. characterMakers.push(() => makeCharacter(
  11029. { name: "Jay" },
  11030. {
  11031. front: {
  11032. height: math.unit(6 + 2 / 12, "feet"),
  11033. weight: math.unit(65, "lb"),
  11034. name: "Front",
  11035. image: {
  11036. source: "./media/characters/jay/front.svg",
  11037. extra: 1510 / 1430,
  11038. bottom: 0.042
  11039. }
  11040. },
  11041. back: {
  11042. height: math.unit(6 + 2 / 12, "feet"),
  11043. weight: math.unit(65, "lb"),
  11044. name: "Back",
  11045. image: {
  11046. source: "./media/characters/jay/back.svg",
  11047. extra: 1510 / 1430,
  11048. bottom: 0.025
  11049. }
  11050. },
  11051. clothed: {
  11052. height: math.unit(6 + 2 / 12, "feet"),
  11053. weight: math.unit(65, "lb"),
  11054. name: "Front (Clothed)",
  11055. image: {
  11056. source: "./media/characters/jay/clothed.svg",
  11057. extra: 744 / 699,
  11058. bottom: 0.043
  11059. }
  11060. },
  11061. },
  11062. [
  11063. {
  11064. name: "Micro",
  11065. height: math.unit(1, "inch")
  11066. },
  11067. {
  11068. name: "Normal",
  11069. height: math.unit(6 + 2 / 12, "feet"),
  11070. default: true
  11071. },
  11072. {
  11073. name: "Macro",
  11074. height: math.unit(1, "mile")
  11075. },
  11076. {
  11077. name: "Megamacro",
  11078. height: math.unit(100, "miles")
  11079. },
  11080. ]
  11081. ))
  11082. characterMakers.push(() => makeCharacter(
  11083. { name: "Coatl" },
  11084. {
  11085. front: {
  11086. height: math.unit(2, "meters"),
  11087. weight: math.unit(500, "kg"),
  11088. name: "Front",
  11089. image: {
  11090. source: "./media/characters/coatl/front.svg",
  11091. extra: 3948 / 3500,
  11092. bottom: 0.082
  11093. }
  11094. },
  11095. },
  11096. [
  11097. {
  11098. name: "Normal",
  11099. height: math.unit(4, "meters")
  11100. },
  11101. {
  11102. name: "Macro",
  11103. height: math.unit(100, "meters"),
  11104. default: true
  11105. },
  11106. {
  11107. name: "Macro+",
  11108. height: math.unit(300, "meters")
  11109. },
  11110. {
  11111. name: "Megamacro",
  11112. height: math.unit(3, "gigameters")
  11113. },
  11114. {
  11115. name: "Megamacro+",
  11116. height: math.unit(300, "terameters")
  11117. },
  11118. {
  11119. name: "Megamacro++",
  11120. height: math.unit(3, "lightyears")
  11121. },
  11122. ]
  11123. ))
  11124. characterMakers.push(() => makeCharacter(
  11125. { name: "Shiroryu" },
  11126. {
  11127. front: {
  11128. height: math.unit(6, "feet"),
  11129. weight: math.unit(50, "kg"),
  11130. name: "front",
  11131. image: {
  11132. source: "./media/characters/shiroryu/front.svg",
  11133. extra: 1990 / 1935
  11134. }
  11135. },
  11136. },
  11137. [
  11138. {
  11139. name: "Mortal Mingling",
  11140. height: math.unit(3, "meters")
  11141. },
  11142. {
  11143. name: "Kaiju-ish",
  11144. height: math.unit(250, "meters")
  11145. },
  11146. {
  11147. name: "Somewhat Godly",
  11148. height: math.unit(400, "km"),
  11149. default: true
  11150. },
  11151. {
  11152. name: "Planetary",
  11153. height: math.unit(300, "megameters")
  11154. },
  11155. {
  11156. name: "Galaxy-dwarfing",
  11157. height: math.unit(450, "kiloparsecs")
  11158. },
  11159. {
  11160. name: "Universe Eater",
  11161. height: math.unit(150, "gigaparsecs")
  11162. },
  11163. {
  11164. name: "Almost Immeasurable",
  11165. height: math.unit(1.3e266, "yottaparsecs")
  11166. },
  11167. ]
  11168. ))
  11169. characterMakers.push(() => makeCharacter(
  11170. { name: "Umeko" },
  11171. {
  11172. front: {
  11173. height: math.unit(6, "feet"),
  11174. weight: math.unit(150, "lb"),
  11175. name: "Front",
  11176. image: {
  11177. source: "./media/characters/umeko/front.svg",
  11178. extra: 1,
  11179. bottom: 0.019
  11180. }
  11181. },
  11182. frontArmored: {
  11183. height: math.unit(6, "feet"),
  11184. weight: math.unit(150, "lb"),
  11185. name: "Front (Armored)",
  11186. image: {
  11187. source: "./media/characters/umeko/front-armored.svg",
  11188. extra: 1,
  11189. bottom: 0.021
  11190. }
  11191. },
  11192. },
  11193. [
  11194. {
  11195. name: "Macro",
  11196. height: math.unit(220, "feet"),
  11197. default: true
  11198. },
  11199. {
  11200. name: "Guardian Dragon",
  11201. height: math.unit(50, "miles")
  11202. },
  11203. {
  11204. name: "Cosmic",
  11205. height: math.unit(800000, "miles")
  11206. },
  11207. ]
  11208. ))
  11209. characterMakers.push(() => makeCharacter(
  11210. { name: "Cassidy" },
  11211. {
  11212. front: {
  11213. height: math.unit(6, "feet"),
  11214. weight: math.unit(150, "lb"),
  11215. name: "Front",
  11216. image: {
  11217. source: "./media/characters/cassidy/front.svg",
  11218. extra: 1,
  11219. bottom: 0.043
  11220. }
  11221. },
  11222. },
  11223. [
  11224. {
  11225. name: "Canon Height",
  11226. height: math.unit(120, "feet"),
  11227. default: true
  11228. },
  11229. {
  11230. name: "Macro+",
  11231. height: math.unit(400, "feet")
  11232. },
  11233. {
  11234. name: "Macro++",
  11235. height: math.unit(4000, "feet")
  11236. },
  11237. {
  11238. name: "Megamacro",
  11239. height: math.unit(3, "miles")
  11240. },
  11241. ]
  11242. ))
  11243. characterMakers.push(() => makeCharacter(
  11244. { name: "Isaac" },
  11245. {
  11246. front: {
  11247. height: math.unit(6, "feet"),
  11248. weight: math.unit(150, "lb"),
  11249. name: "Front",
  11250. image: {
  11251. source: "./media/characters/isaac/front.svg",
  11252. extra: 896 / 815,
  11253. bottom: 0.11
  11254. }
  11255. },
  11256. },
  11257. [
  11258. {
  11259. name: "Human Size",
  11260. height: math.unit(8, "feet"),
  11261. default: true
  11262. },
  11263. {
  11264. name: "Macro",
  11265. height: math.unit(400, "feet")
  11266. },
  11267. {
  11268. name: "Megamacro",
  11269. height: math.unit(50, "miles")
  11270. },
  11271. {
  11272. name: "Canon Height",
  11273. height: math.unit(200, "AU")
  11274. },
  11275. ]
  11276. ))
  11277. characterMakers.push(() => makeCharacter(
  11278. { name: "Sleekit" },
  11279. {
  11280. front: {
  11281. height: math.unit(6, "feet"),
  11282. weight: math.unit(72, "kg"),
  11283. name: "Front",
  11284. image: {
  11285. source: "./media/characters/sleekit/front.svg",
  11286. extra: 4693 / 4487,
  11287. bottom: 0.012
  11288. }
  11289. },
  11290. },
  11291. [
  11292. {
  11293. name: "Minimum Height",
  11294. height: math.unit(10, "meters")
  11295. },
  11296. {
  11297. name: "Smaller",
  11298. height: math.unit(25, "meters")
  11299. },
  11300. {
  11301. name: "Larger",
  11302. height: math.unit(38, "meters"),
  11303. default: true
  11304. },
  11305. {
  11306. name: "Maximum height",
  11307. height: math.unit(100, "meters")
  11308. },
  11309. ]
  11310. ))
  11311. characterMakers.push(() => makeCharacter(
  11312. { name: "Nillia" },
  11313. {
  11314. front: {
  11315. height: math.unit(6, "feet"),
  11316. weight: math.unit(150, "lb"),
  11317. name: "Front",
  11318. image: {
  11319. source: "./media/characters/nillia/front.svg",
  11320. extra: 2195 / 2037,
  11321. bottom: 0.005
  11322. }
  11323. },
  11324. back: {
  11325. height: math.unit(6, "feet"),
  11326. weight: math.unit(150, "lb"),
  11327. name: "Back",
  11328. image: {
  11329. source: "./media/characters/nillia/back.svg",
  11330. extra: 2195 / 2037,
  11331. bottom: 0.005
  11332. }
  11333. },
  11334. },
  11335. [
  11336. {
  11337. name: "Canon Height",
  11338. height: math.unit(489, "feet"),
  11339. default: true
  11340. }
  11341. ]
  11342. ))
  11343. characterMakers.push(() => makeCharacter(
  11344. { name: "Mesmyriza" },
  11345. {
  11346. front: {
  11347. height: math.unit(6, "feet"),
  11348. weight: math.unit(150, "lb"),
  11349. name: "Front",
  11350. image: {
  11351. source: "./media/characters/mesmyriza/front.svg",
  11352. extra: 2067 / 1784,
  11353. bottom: 0.035
  11354. }
  11355. },
  11356. foot: {
  11357. height: math.unit(6 / (250 / 35), "feet"),
  11358. name: "Foot",
  11359. image: {
  11360. source: "./media/characters/mesmyriza/foot.svg"
  11361. }
  11362. },
  11363. },
  11364. [
  11365. {
  11366. name: "Macro",
  11367. height: math.unit(457, "meters"),
  11368. default: true
  11369. },
  11370. {
  11371. name: "Megamacro",
  11372. height: math.unit(8, "megameters")
  11373. },
  11374. ]
  11375. ))
  11376. characterMakers.push(() => makeCharacter(
  11377. { name: "Saudade" },
  11378. {
  11379. front: {
  11380. height: math.unit(6, "feet"),
  11381. weight: math.unit(250, "lb"),
  11382. name: "Front",
  11383. image: {
  11384. source: "./media/characters/saudade/front.svg",
  11385. extra: 1172 / 1139,
  11386. bottom: 0.035
  11387. }
  11388. },
  11389. },
  11390. [
  11391. {
  11392. name: "Micro",
  11393. height: math.unit(3, "inches")
  11394. },
  11395. {
  11396. name: "Normal",
  11397. height: math.unit(6, "feet"),
  11398. default: true
  11399. },
  11400. {
  11401. name: "Macro",
  11402. height: math.unit(50, "feet")
  11403. },
  11404. {
  11405. name: "Megamacro",
  11406. height: math.unit(2800, "feet")
  11407. },
  11408. ]
  11409. ))
  11410. characterMakers.push(() => makeCharacter(
  11411. { name: "Keireer" },
  11412. {
  11413. front: {
  11414. height: math.unit(5 + 4 / 12, "feet"),
  11415. weight: math.unit(100, "lb"),
  11416. name: "Front",
  11417. image: {
  11418. source: "./media/characters/keireer/front.svg",
  11419. extra: 716 / 666,
  11420. bottom: 0.05
  11421. }
  11422. },
  11423. },
  11424. [
  11425. {
  11426. name: "Normal",
  11427. height: math.unit(5 + 4 / 12, "feet"),
  11428. default: true
  11429. },
  11430. ]
  11431. ))
  11432. characterMakers.push(() => makeCharacter(
  11433. { name: "Mirja" },
  11434. {
  11435. front: {
  11436. height: math.unit(6, "feet"),
  11437. weight: math.unit(90, "kg"),
  11438. name: "Front",
  11439. image: {
  11440. source: "./media/characters/mirja/front.svg",
  11441. extra: 1789 / 1683,
  11442. bottom: 0.05
  11443. }
  11444. },
  11445. frontDressed: {
  11446. height: math.unit(6, "feet"),
  11447. weight: math.unit(90, "lb"),
  11448. name: "Front (Dressed)",
  11449. image: {
  11450. source: "./media/characters/mirja/front-dressed.svg",
  11451. extra: 1789 / 1683,
  11452. bottom: 0.05
  11453. }
  11454. },
  11455. back: {
  11456. height: math.unit(6, "feet"),
  11457. weight: math.unit(90, "lb"),
  11458. name: "Back",
  11459. image: {
  11460. source: "./media/characters/mirja/back.svg",
  11461. extra: 953 / 917,
  11462. bottom: 0.017
  11463. }
  11464. },
  11465. },
  11466. [
  11467. {
  11468. name: "\"Incognito\"",
  11469. height: math.unit(3, "meters")
  11470. },
  11471. {
  11472. name: "Strolling Size",
  11473. height: math.unit(15, "km")
  11474. },
  11475. {
  11476. name: "Larger Strolling Size",
  11477. height: math.unit(400, "km")
  11478. },
  11479. {
  11480. name: "Preferred Size",
  11481. height: math.unit(5000, "km")
  11482. },
  11483. {
  11484. name: "True Size",
  11485. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11486. default: true
  11487. },
  11488. ]
  11489. ))
  11490. characterMakers.push(() => makeCharacter(
  11491. { name: "Nightraver" },
  11492. {
  11493. front: {
  11494. height: math.unit(15, "feet"),
  11495. weight: math.unit(880, "kg"),
  11496. name: "Front",
  11497. image: {
  11498. source: "./media/characters/nightraver/front.svg",
  11499. extra: 2444 / 2160,
  11500. bottom: 0.027
  11501. }
  11502. },
  11503. back: {
  11504. height: math.unit(15, "feet"),
  11505. weight: math.unit(880, "kg"),
  11506. name: "Back",
  11507. image: {
  11508. source: "./media/characters/nightraver/back.svg",
  11509. extra: 2309 / 2180,
  11510. bottom: 0.005
  11511. }
  11512. },
  11513. sole: {
  11514. height: math.unit(2.878, "feet"),
  11515. name: "Sole",
  11516. image: {
  11517. source: "./media/characters/nightraver/sole.svg"
  11518. }
  11519. },
  11520. foot: {
  11521. height: math.unit(2.285, "feet"),
  11522. name: "Foot",
  11523. image: {
  11524. source: "./media/characters/nightraver/foot.svg"
  11525. }
  11526. },
  11527. maw: {
  11528. height: math.unit(2.67, "feet"),
  11529. name: "Maw",
  11530. image: {
  11531. source: "./media/characters/nightraver/maw.svg"
  11532. }
  11533. },
  11534. },
  11535. [
  11536. {
  11537. name: "Micro",
  11538. height: math.unit(1, "cm")
  11539. },
  11540. {
  11541. name: "Normal",
  11542. height: math.unit(15, "feet"),
  11543. default: true
  11544. },
  11545. {
  11546. name: "Macro",
  11547. height: math.unit(300, "feet")
  11548. },
  11549. {
  11550. name: "Megamacro",
  11551. height: math.unit(300, "miles")
  11552. },
  11553. {
  11554. name: "Gigamacro",
  11555. height: math.unit(10000, "miles")
  11556. },
  11557. ]
  11558. ))
  11559. characterMakers.push(() => makeCharacter(
  11560. { name: "Arc" },
  11561. {
  11562. side: {
  11563. height: math.unit(2, "inches"),
  11564. weight: math.unit(5, "grams"),
  11565. name: "Side",
  11566. image: {
  11567. source: "./media/characters/arc/side.svg"
  11568. }
  11569. },
  11570. },
  11571. [
  11572. {
  11573. name: "Micro",
  11574. height: math.unit(2, "inches"),
  11575. default: true
  11576. },
  11577. ]
  11578. ))
  11579. characterMakers.push(() => makeCharacter(
  11580. { name: "Nebula Shahar" },
  11581. {
  11582. front: {
  11583. height: math.unit(1.1938, "meters"),
  11584. weight: math.unit(54, "kg"),
  11585. name: "Front",
  11586. image: {
  11587. source: "./media/characters/nebula-shahar/front.svg",
  11588. extra: 1642 / 1436,
  11589. bottom: 0.06
  11590. }
  11591. },
  11592. },
  11593. [
  11594. {
  11595. name: "Megamicro",
  11596. height: math.unit(0.3, "mm")
  11597. },
  11598. {
  11599. name: "Micro",
  11600. height: math.unit(3, "cm")
  11601. },
  11602. {
  11603. name: "Normal",
  11604. height: math.unit(138, "cm"),
  11605. default: true
  11606. },
  11607. {
  11608. name: "Macro",
  11609. height: math.unit(30, "m")
  11610. },
  11611. ]
  11612. ))
  11613. characterMakers.push(() => makeCharacter(
  11614. { name: "Shayla" },
  11615. {
  11616. front: {
  11617. height: math.unit(5.24, "feet"),
  11618. weight: math.unit(150, "lb"),
  11619. name: "Front",
  11620. image: {
  11621. source: "./media/characters/shayla/front.svg",
  11622. extra: 1512 / 1414,
  11623. bottom: 0.01
  11624. }
  11625. },
  11626. back: {
  11627. height: math.unit(5.24, "feet"),
  11628. weight: math.unit(150, "lb"),
  11629. name: "Back",
  11630. image: {
  11631. source: "./media/characters/shayla/back.svg",
  11632. extra: 1512 / 1414
  11633. }
  11634. },
  11635. hand: {
  11636. height: math.unit(0.7781496062992126, "feet"),
  11637. name: "Hand",
  11638. image: {
  11639. source: "./media/characters/shayla/hand.svg"
  11640. }
  11641. },
  11642. foot: {
  11643. height: math.unit(1.4206036745406823, "feet"),
  11644. name: "Foot",
  11645. image: {
  11646. source: "./media/characters/shayla/foot.svg"
  11647. }
  11648. },
  11649. },
  11650. [
  11651. {
  11652. name: "Micro",
  11653. height: math.unit(0.32, "feet")
  11654. },
  11655. {
  11656. name: "Normal",
  11657. height: math.unit(5.24, "feet"),
  11658. default: true
  11659. },
  11660. {
  11661. name: "Macro",
  11662. height: math.unit(492.12, "feet")
  11663. },
  11664. {
  11665. name: "Megamacro",
  11666. height: math.unit(186.41, "miles")
  11667. },
  11668. ]
  11669. ))
  11670. characterMakers.push(() => makeCharacter(
  11671. { name: "Pia Jr." },
  11672. {
  11673. front: {
  11674. height: math.unit(2.2, "m"),
  11675. weight: math.unit(120, "kg"),
  11676. name: "Front",
  11677. image: {
  11678. source: "./media/characters/pia-jr/front.svg",
  11679. extra: 1000 / 970,
  11680. bottom: 0.035
  11681. }
  11682. },
  11683. hand: {
  11684. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11685. name: "Hand",
  11686. image: {
  11687. source: "./media/characters/pia-jr/hand.svg"
  11688. }
  11689. },
  11690. paw: {
  11691. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11692. name: "Paw",
  11693. image: {
  11694. source: "./media/characters/pia-jr/paw.svg"
  11695. }
  11696. },
  11697. },
  11698. [
  11699. {
  11700. name: "Micro",
  11701. height: math.unit(1.2, "cm")
  11702. },
  11703. {
  11704. name: "Normal",
  11705. height: math.unit(2.2, "m"),
  11706. default: true
  11707. },
  11708. {
  11709. name: "Macro",
  11710. height: math.unit(180, "m")
  11711. },
  11712. {
  11713. name: "Megamacro",
  11714. height: math.unit(420, "km")
  11715. },
  11716. ]
  11717. ))
  11718. characterMakers.push(() => makeCharacter(
  11719. { name: "Pia Sr." },
  11720. {
  11721. front: {
  11722. height: math.unit(2, "m"),
  11723. weight: math.unit(115, "kg"),
  11724. name: "Front",
  11725. image: {
  11726. source: "./media/characters/pia-sr/front.svg",
  11727. extra: 760 / 730,
  11728. bottom: 0.015
  11729. }
  11730. },
  11731. back: {
  11732. height: math.unit(2, "m"),
  11733. weight: math.unit(115, "kg"),
  11734. name: "Back",
  11735. image: {
  11736. source: "./media/characters/pia-sr/back.svg",
  11737. extra: 760 / 730,
  11738. bottom: 0.01
  11739. }
  11740. },
  11741. hand: {
  11742. height: math.unit(0.89 * 6.56 / 6, "feet"),
  11743. name: "Hand",
  11744. image: {
  11745. source: "./media/characters/pia-sr/hand.svg"
  11746. }
  11747. },
  11748. foot: {
  11749. height: math.unit(1.83, "feet"),
  11750. name: "Foot",
  11751. image: {
  11752. source: "./media/characters/pia-sr/foot.svg"
  11753. }
  11754. },
  11755. },
  11756. [
  11757. {
  11758. name: "Micro",
  11759. height: math.unit(88, "mm")
  11760. },
  11761. {
  11762. name: "Normal",
  11763. height: math.unit(2, "m"),
  11764. default: true
  11765. },
  11766. {
  11767. name: "Macro",
  11768. height: math.unit(200, "m")
  11769. },
  11770. {
  11771. name: "Megamacro",
  11772. height: math.unit(420, "km")
  11773. },
  11774. ]
  11775. ))
  11776. characterMakers.push(() => makeCharacter(
  11777. { name: "KIBIBYTE" },
  11778. {
  11779. front: {
  11780. height: math.unit(8 + 2 / 12, "feet"),
  11781. weight: math.unit(300, "lb"),
  11782. name: "Front",
  11783. image: {
  11784. source: "./media/characters/kibibyte/front.svg",
  11785. extra: 2221 / 2098,
  11786. bottom: 0.04
  11787. }
  11788. },
  11789. },
  11790. [
  11791. {
  11792. name: "Normal",
  11793. height: math.unit(8 + 2 / 12, "feet"),
  11794. default: true
  11795. },
  11796. {
  11797. name: "Socialable Macro",
  11798. height: math.unit(50, "feet")
  11799. },
  11800. {
  11801. name: "Macro",
  11802. height: math.unit(300, "feet")
  11803. },
  11804. {
  11805. name: "Megamacro",
  11806. height: math.unit(500, "miles")
  11807. },
  11808. ]
  11809. ))
  11810. characterMakers.push(() => makeCharacter(
  11811. { name: "Felix" },
  11812. {
  11813. front: {
  11814. height: math.unit(6, "feet"),
  11815. weight: math.unit(150, "lb"),
  11816. name: "Front",
  11817. image: {
  11818. source: "./media/characters/felix/front.svg",
  11819. extra: 762 / 722,
  11820. bottom: 0.02
  11821. }
  11822. },
  11823. frontClothed: {
  11824. height: math.unit(6, "feet"),
  11825. weight: math.unit(150, "lb"),
  11826. name: "Front (Clothed)",
  11827. image: {
  11828. source: "./media/characters/felix/front-clothed.svg",
  11829. extra: 762 / 722,
  11830. bottom: 0.02
  11831. }
  11832. },
  11833. },
  11834. [
  11835. {
  11836. name: "Normal",
  11837. height: math.unit(6 + 8 / 12, "feet"),
  11838. default: true
  11839. },
  11840. {
  11841. name: "Macro",
  11842. height: math.unit(2600, "feet")
  11843. },
  11844. {
  11845. name: "Megamacro",
  11846. height: math.unit(450, "miles")
  11847. },
  11848. ]
  11849. ))
  11850. characterMakers.push(() => makeCharacter(
  11851. { name: "Tobo" },
  11852. {
  11853. front: {
  11854. height: math.unit(6 + 1 / 12, "feet"),
  11855. weight: math.unit(250, "lb"),
  11856. name: "Front",
  11857. image: {
  11858. source: "./media/characters/tobo/front.svg",
  11859. extra: 608 / 586,
  11860. bottom: 0.023
  11861. }
  11862. },
  11863. back: {
  11864. height: math.unit(6 + 1 / 12, "feet"),
  11865. weight: math.unit(250, "lb"),
  11866. name: "Back",
  11867. image: {
  11868. source: "./media/characters/tobo/back.svg",
  11869. extra: 608 / 586
  11870. }
  11871. },
  11872. },
  11873. [
  11874. {
  11875. name: "Nano",
  11876. height: math.unit(2, "nm")
  11877. },
  11878. {
  11879. name: "Megamicro",
  11880. height: math.unit(0.1, "mm")
  11881. },
  11882. {
  11883. name: "Micro",
  11884. height: math.unit(1, "inch"),
  11885. default: true
  11886. },
  11887. {
  11888. name: "Human-sized",
  11889. height: math.unit(6 + 1 / 12, "feet")
  11890. },
  11891. {
  11892. name: "Macro",
  11893. height: math.unit(250, "feet")
  11894. },
  11895. {
  11896. name: "Megamacro",
  11897. height: math.unit(75, "miles")
  11898. },
  11899. {
  11900. name: "Texas-sized",
  11901. height: math.unit(750, "miles")
  11902. },
  11903. {
  11904. name: "Teramacro",
  11905. height: math.unit(50000, "miles")
  11906. },
  11907. ]
  11908. ))
  11909. characterMakers.push(() => makeCharacter(
  11910. { name: "Danny Kapowsky" },
  11911. {
  11912. front: {
  11913. height: math.unit(6, "feet"),
  11914. weight: math.unit(269, "lb"),
  11915. name: "Front",
  11916. image: {
  11917. source: "./media/characters/danny-kapowsky/front.svg",
  11918. extra: 766 / 736,
  11919. bottom: 0.044
  11920. }
  11921. },
  11922. back: {
  11923. height: math.unit(6, "feet"),
  11924. weight: math.unit(269, "lb"),
  11925. name: "Back",
  11926. image: {
  11927. source: "./media/characters/danny-kapowsky/back.svg",
  11928. extra: 797 / 760,
  11929. bottom: 0.025
  11930. }
  11931. },
  11932. },
  11933. [
  11934. {
  11935. name: "Macro",
  11936. height: math.unit(150, "feet"),
  11937. default: true
  11938. },
  11939. {
  11940. name: "Macro+",
  11941. height: math.unit(200, "feet")
  11942. },
  11943. {
  11944. name: "Macro++",
  11945. height: math.unit(300, "feet")
  11946. },
  11947. {
  11948. name: "Macro+++",
  11949. height: math.unit(400, "feet")
  11950. },
  11951. ]
  11952. ))
  11953. characterMakers.push(() => makeCharacter(
  11954. { name: "Finn" },
  11955. {
  11956. side: {
  11957. height: math.unit(6, "feet"),
  11958. weight: math.unit(170, "lb"),
  11959. name: "Side",
  11960. image: {
  11961. source: "./media/characters/finn/side.svg",
  11962. extra: 1953 / 1807,
  11963. bottom: 0.057
  11964. }
  11965. },
  11966. },
  11967. [
  11968. {
  11969. name: "Megamacro",
  11970. height: math.unit(14445, "feet"),
  11971. default: true
  11972. },
  11973. ]
  11974. ))
  11975. characterMakers.push(() => makeCharacter(
  11976. { name: "Roy" },
  11977. {
  11978. front: {
  11979. height: math.unit(5 + 6 / 12, "feet"),
  11980. weight: math.unit(125, "lb"),
  11981. name: "Front",
  11982. image: {
  11983. source: "./media/characters/roy/front.svg",
  11984. extra: 1,
  11985. bottom: 0.11
  11986. }
  11987. },
  11988. },
  11989. [
  11990. {
  11991. name: "Micro",
  11992. height: math.unit(3, "inches"),
  11993. default: true
  11994. },
  11995. {
  11996. name: "Normal",
  11997. height: math.unit(5 + 6 / 12, "feet")
  11998. },
  11999. {
  12000. name: "Lesser Macro",
  12001. height: math.unit(60, "feet")
  12002. },
  12003. {
  12004. name: "Greater Macro",
  12005. height: math.unit(120, "feet")
  12006. },
  12007. ]
  12008. ))
  12009. characterMakers.push(() => makeCharacter(
  12010. { name: "Aevsivs" },
  12011. {
  12012. front: {
  12013. height: math.unit(6, "feet"),
  12014. weight: math.unit(100, "lb"),
  12015. name: "Front",
  12016. image: {
  12017. source: "./media/characters/aevsivs/front.svg",
  12018. extra: 1,
  12019. bottom: 0.03
  12020. }
  12021. },
  12022. back: {
  12023. height: math.unit(6, "feet"),
  12024. weight: math.unit(100, "lb"),
  12025. name: "Back",
  12026. image: {
  12027. source: "./media/characters/aevsivs/back.svg"
  12028. }
  12029. },
  12030. },
  12031. [
  12032. {
  12033. name: "Micro",
  12034. height: math.unit(2, "inches"),
  12035. default: true
  12036. },
  12037. {
  12038. name: "Normal",
  12039. height: math.unit(5, "feet")
  12040. },
  12041. ]
  12042. ))
  12043. characterMakers.push(() => makeCharacter(
  12044. { name: "Hildegard" },
  12045. {
  12046. front: {
  12047. height: math.unit(5 + 7 / 12, "feet"),
  12048. weight: math.unit(159, "lb"),
  12049. name: "Front",
  12050. image: {
  12051. source: "./media/characters/hildegard/front.svg",
  12052. extra: 312 / 286,
  12053. bottom: 0.005
  12054. }
  12055. },
  12056. },
  12057. [
  12058. {
  12059. name: "Normal",
  12060. height: math.unit(5 + 7 / 12, "feet"),
  12061. default: true
  12062. },
  12063. ]
  12064. ))
  12065. characterMakers.push(() => makeCharacter(
  12066. { name: "Bernard & Wilder" },
  12067. {
  12068. bernard: {
  12069. height: math.unit(2 + 7 / 12, "feet"),
  12070. weight: math.unit(66, "lb"),
  12071. name: "Bernard",
  12072. rename: true,
  12073. image: {
  12074. source: "./media/characters/bernard-wilder/bernard.svg",
  12075. extra: 192 / 128,
  12076. bottom: 0.05
  12077. }
  12078. },
  12079. wilder: {
  12080. height: math.unit(5 + 8 / 12, "feet"),
  12081. weight: math.unit(143, "lb"),
  12082. name: "Wilder",
  12083. rename: true,
  12084. image: {
  12085. source: "./media/characters/bernard-wilder/wilder.svg",
  12086. extra: 361 / 312,
  12087. bottom: 0.02
  12088. }
  12089. },
  12090. },
  12091. [
  12092. {
  12093. name: "Normal",
  12094. height: math.unit(2 + 7 / 12, "feet"),
  12095. default: true
  12096. },
  12097. ]
  12098. ))
  12099. characterMakers.push(() => makeCharacter(
  12100. { name: "Hearth" },
  12101. {
  12102. anthro: {
  12103. height: math.unit(6 + 1 / 12, "feet"),
  12104. weight: math.unit(155, "lb"),
  12105. name: "Anthro",
  12106. image: {
  12107. source: "./media/characters/hearth/anthro.svg",
  12108. extra: 260 / 250,
  12109. bottom: 0.02
  12110. }
  12111. },
  12112. feral: {
  12113. height: math.unit(3.78, "feet"),
  12114. weight: math.unit(35, "kg"),
  12115. name: "Feral",
  12116. image: {
  12117. source: "./media/characters/hearth/feral.svg",
  12118. extra: 153 / 135,
  12119. bottom: 0.03
  12120. }
  12121. },
  12122. },
  12123. [
  12124. {
  12125. name: "Normal",
  12126. height: math.unit(6 + 1 / 12, "feet"),
  12127. default: true
  12128. },
  12129. ]
  12130. ))
  12131. characterMakers.push(() => makeCharacter(
  12132. { name: "Ingrid" },
  12133. {
  12134. front: {
  12135. height: math.unit(6, "feet"),
  12136. weight: math.unit(182, "lb"),
  12137. name: "Front",
  12138. image: {
  12139. source: "./media/characters/ingrid/front.svg",
  12140. extra: 294 / 268,
  12141. bottom: 0.027
  12142. }
  12143. },
  12144. },
  12145. [
  12146. {
  12147. name: "Normal",
  12148. height: math.unit(6, "feet"),
  12149. default: true
  12150. },
  12151. ]
  12152. ))
  12153. characterMakers.push(() => makeCharacter(
  12154. { name: "Malgam" },
  12155. {
  12156. eevee: {
  12157. height: math.unit(2 + 10 / 12, "feet"),
  12158. weight: math.unit(86, "lb"),
  12159. name: "Malgam",
  12160. image: {
  12161. source: "./media/characters/malgam/eevee.svg",
  12162. extra: 218 / 180,
  12163. bottom: 0.2
  12164. }
  12165. },
  12166. sylveon: {
  12167. height: math.unit(4, "feet"),
  12168. weight: math.unit(101, "lb"),
  12169. name: "Future Malgam",
  12170. rename: true,
  12171. image: {
  12172. source: "./media/characters/malgam/sylveon.svg",
  12173. extra: 371 / 325,
  12174. bottom: 0.015
  12175. }
  12176. },
  12177. gigantamax: {
  12178. height: math.unit(50, "feet"),
  12179. name: "Gigantamax Malgam",
  12180. rename: true,
  12181. image: {
  12182. source: "./media/characters/malgam/gigantamax.svg"
  12183. }
  12184. },
  12185. },
  12186. [
  12187. {
  12188. name: "Normal",
  12189. height: math.unit(2 + 10 / 12, "feet"),
  12190. default: true
  12191. },
  12192. ]
  12193. ))
  12194. characterMakers.push(() => makeCharacter(
  12195. { name: "Fleur" },
  12196. {
  12197. front: {
  12198. height: math.unit(5 + 11 / 12, "feet"),
  12199. weight: math.unit(188, "lb"),
  12200. name: "Front",
  12201. image: {
  12202. source: "./media/characters/fleur/front.svg",
  12203. extra: 309 / 283,
  12204. bottom: 0.007
  12205. }
  12206. },
  12207. },
  12208. [
  12209. {
  12210. name: "Normal",
  12211. height: math.unit(5 + 11 / 12, "feet"),
  12212. default: true
  12213. },
  12214. ]
  12215. ))
  12216. characterMakers.push(() => makeCharacter(
  12217. { name: "Jude" },
  12218. {
  12219. front: {
  12220. height: math.unit(5 + 4 / 12, "feet"),
  12221. weight: math.unit(122, "lb"),
  12222. name: "Front",
  12223. image: {
  12224. source: "./media/characters/jude/front.svg",
  12225. extra: 288 / 273,
  12226. bottom: 0.03
  12227. }
  12228. },
  12229. },
  12230. [
  12231. {
  12232. name: "Normal",
  12233. height: math.unit(5 + 4 / 12, "feet"),
  12234. default: true
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Seara" },
  12240. {
  12241. front: {
  12242. height: math.unit(5 + 11 / 12, "feet"),
  12243. weight: math.unit(190, "lb"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/seara/front.svg",
  12247. extra: 1,
  12248. bottom: 0.05
  12249. }
  12250. },
  12251. },
  12252. [
  12253. {
  12254. name: "Normal",
  12255. height: math.unit(5 + 11 / 12, "feet"),
  12256. default: true
  12257. },
  12258. ]
  12259. ))
  12260. characterMakers.push(() => makeCharacter(
  12261. { name: "Caspian" },
  12262. {
  12263. front: {
  12264. height: math.unit(16 + 5 / 12, "feet"),
  12265. weight: math.unit(524, "lb"),
  12266. name: "Front",
  12267. image: {
  12268. source: "./media/characters/caspian/front.svg",
  12269. extra: 1,
  12270. bottom: 0.04
  12271. }
  12272. },
  12273. },
  12274. [
  12275. {
  12276. name: "Normal",
  12277. height: math.unit(16 + 5 / 12, "feet"),
  12278. default: true
  12279. },
  12280. ]
  12281. ))
  12282. characterMakers.push(() => makeCharacter(
  12283. { name: "Mika" },
  12284. {
  12285. front: {
  12286. height: math.unit(5 + 7 / 12, "feet"),
  12287. weight: math.unit(170, "lb"),
  12288. name: "Front",
  12289. image: {
  12290. source: "./media/characters/mika/front.svg",
  12291. extra: 1,
  12292. bottom: 0.016
  12293. }
  12294. },
  12295. },
  12296. [
  12297. {
  12298. name: "Normal",
  12299. height: math.unit(5 + 7 / 12, "feet"),
  12300. default: true
  12301. },
  12302. ]
  12303. ))
  12304. characterMakers.push(() => makeCharacter(
  12305. { name: "Sol" },
  12306. {
  12307. front: {
  12308. height: math.unit(6 + 2 / 12, "feet"),
  12309. weight: math.unit(268, "lb"),
  12310. name: "Front",
  12311. image: {
  12312. source: "./media/characters/sol/front.svg",
  12313. extra: 247 / 231,
  12314. bottom: 0.05
  12315. }
  12316. },
  12317. },
  12318. [
  12319. {
  12320. name: "Normal",
  12321. height: math.unit(6 + 2 / 12, "feet"),
  12322. default: true
  12323. },
  12324. ]
  12325. ))
  12326. characterMakers.push(() => makeCharacter(
  12327. { name: "Umiko" },
  12328. {
  12329. buizel: {
  12330. height: math.unit(2 + 5 / 12, "feet"),
  12331. weight: math.unit(87, "lb"),
  12332. name: "Buizel",
  12333. image: {
  12334. source: "./media/characters/umiko/buizel.svg",
  12335. extra: 172 / 157,
  12336. bottom: 0.01
  12337. }
  12338. },
  12339. floatzel: {
  12340. height: math.unit(5 + 9 / 12, "feet"),
  12341. weight: math.unit(250, "lb"),
  12342. name: "Floatzel",
  12343. image: {
  12344. source: "./media/characters/umiko/floatzel.svg",
  12345. extra: 262 / 248
  12346. }
  12347. },
  12348. },
  12349. [
  12350. {
  12351. name: "Normal",
  12352. height: math.unit(2 + 5 / 12, "feet"),
  12353. default: true
  12354. },
  12355. ]
  12356. ))
  12357. characterMakers.push(() => makeCharacter(
  12358. { name: "Iliac" },
  12359. {
  12360. front: {
  12361. height: math.unit(6 + 2 / 12, "feet"),
  12362. weight: math.unit(146, "lb"),
  12363. name: "Front",
  12364. image: {
  12365. source: "./media/characters/iliac/front.svg",
  12366. extra: 389 / 365,
  12367. bottom: 0.035
  12368. }
  12369. },
  12370. },
  12371. [
  12372. {
  12373. name: "Normal",
  12374. height: math.unit(6 + 2 / 12, "feet"),
  12375. default: true
  12376. },
  12377. ]
  12378. ))
  12379. characterMakers.push(() => makeCharacter(
  12380. { name: "Topaz" },
  12381. {
  12382. front: {
  12383. height: math.unit(6, "feet"),
  12384. weight: math.unit(170, "lb"),
  12385. name: "Front",
  12386. image: {
  12387. source: "./media/characters/topaz/front.svg",
  12388. extra: 317 / 303,
  12389. bottom: 0.055
  12390. }
  12391. },
  12392. },
  12393. [
  12394. {
  12395. name: "Normal",
  12396. height: math.unit(6, "feet"),
  12397. default: true
  12398. },
  12399. ]
  12400. ))
  12401. characterMakers.push(() => makeCharacter(
  12402. { name: "Gabriel" },
  12403. {
  12404. front: {
  12405. height: math.unit(5 + 11 / 12, "feet"),
  12406. weight: math.unit(144, "lb"),
  12407. name: "Front",
  12408. image: {
  12409. source: "./media/characters/gabriel/front.svg",
  12410. extra: 285 / 262,
  12411. bottom: 0.004
  12412. }
  12413. },
  12414. },
  12415. [
  12416. {
  12417. name: "Normal",
  12418. height: math.unit(5 + 11 / 12, "feet"),
  12419. default: true
  12420. },
  12421. ]
  12422. ))
  12423. characterMakers.push(() => makeCharacter(
  12424. { name: "Tempest (Suicune)" },
  12425. {
  12426. side: {
  12427. height: math.unit(6 + 5 / 12, "feet"),
  12428. weight: math.unit(300, "lb"),
  12429. name: "Side",
  12430. image: {
  12431. source: "./media/characters/tempest-suicune/side.svg",
  12432. extra: 195 / 154,
  12433. bottom: 0.04
  12434. }
  12435. },
  12436. },
  12437. [
  12438. {
  12439. name: "Normal",
  12440. height: math.unit(6 + 5 / 12, "feet"),
  12441. default: true
  12442. },
  12443. ]
  12444. ))
  12445. characterMakers.push(() => makeCharacter(
  12446. { name: "Vulcan" },
  12447. {
  12448. front: {
  12449. height: math.unit(7 + 2 / 12, "feet"),
  12450. weight: math.unit(322, "lb"),
  12451. name: "Front",
  12452. image: {
  12453. source: "./media/characters/vulcan/front.svg",
  12454. extra: 154 / 147,
  12455. bottom: 0.04
  12456. }
  12457. },
  12458. },
  12459. [
  12460. {
  12461. name: "Normal",
  12462. height: math.unit(7 + 2 / 12, "feet"),
  12463. default: true
  12464. },
  12465. ]
  12466. ))
  12467. characterMakers.push(() => makeCharacter(
  12468. { name: "Gault" },
  12469. {
  12470. front: {
  12471. height: math.unit(5 + 10 / 12, "feet"),
  12472. weight: math.unit(264, "lb"),
  12473. name: "Front",
  12474. image: {
  12475. source: "./media/characters/gault/front.svg",
  12476. extra: 161 / 140,
  12477. bottom: 0.028
  12478. }
  12479. },
  12480. },
  12481. [
  12482. {
  12483. name: "Normal",
  12484. height: math.unit(5 + 10 / 12, "feet"),
  12485. default: true
  12486. },
  12487. ]
  12488. ))
  12489. characterMakers.push(() => makeCharacter(
  12490. { name: "Shard" },
  12491. {
  12492. front: {
  12493. height: math.unit(6, "feet"),
  12494. weight: math.unit(150, "lb"),
  12495. name: "Front",
  12496. image: {
  12497. source: "./media/characters/shard/front.svg",
  12498. extra: 273 / 238,
  12499. bottom: 0.02
  12500. }
  12501. },
  12502. },
  12503. [
  12504. {
  12505. name: "Normal",
  12506. height: math.unit(3 + 6 / 12, "feet"),
  12507. default: true
  12508. },
  12509. ]
  12510. ))
  12511. characterMakers.push(() => makeCharacter(
  12512. { name: "Ashe" },
  12513. {
  12514. front: {
  12515. height: math.unit(5 + 11 / 12, "feet"),
  12516. weight: math.unit(146, "lb"),
  12517. name: "Front",
  12518. image: {
  12519. source: "./media/characters/ashe/front.svg",
  12520. extra: 400 / 373,
  12521. bottom: 0.01
  12522. }
  12523. },
  12524. },
  12525. [
  12526. {
  12527. name: "Normal",
  12528. height: math.unit(5 + 11 / 12, "feet"),
  12529. default: true
  12530. },
  12531. ]
  12532. ))
  12533. characterMakers.push(() => makeCharacter(
  12534. { name: "Beatrix" },
  12535. {
  12536. front: {
  12537. height: math.unit(5 + 5 / 12, "feet"),
  12538. weight: math.unit(135, "lb"),
  12539. name: "Front",
  12540. image: {
  12541. source: "./media/characters/beatrix/front.svg",
  12542. extra: 392 / 379,
  12543. bottom: 0.01
  12544. }
  12545. },
  12546. },
  12547. [
  12548. {
  12549. name: "Normal",
  12550. height: math.unit(6, "feet"),
  12551. default: true
  12552. },
  12553. ]
  12554. ))
  12555. characterMakers.push(() => makeCharacter(
  12556. { name: "Ignatius" },
  12557. {
  12558. front: {
  12559. height: math.unit(6, "feet"),
  12560. weight: math.unit(150, "lb"),
  12561. name: "Front",
  12562. image: {
  12563. source: "./media/characters/ignatius/front.svg",
  12564. extra: 245 / 222,
  12565. bottom: 0.01
  12566. }
  12567. },
  12568. },
  12569. [
  12570. {
  12571. name: "Normal",
  12572. height: math.unit(5 + 5 / 12, "feet"),
  12573. default: true
  12574. },
  12575. ]
  12576. ))
  12577. characterMakers.push(() => makeCharacter(
  12578. { name: "Mei Li" },
  12579. {
  12580. front: {
  12581. height: math.unit(6 + 2 / 12, "feet"),
  12582. weight: math.unit(138, "lb"),
  12583. name: "Front",
  12584. image: {
  12585. source: "./media/characters/mei-li/front.svg",
  12586. extra: 237 / 229,
  12587. bottom: 0.03
  12588. }
  12589. },
  12590. },
  12591. [
  12592. {
  12593. name: "Normal",
  12594. height: math.unit(6 + 2 / 12, "feet"),
  12595. default: true
  12596. },
  12597. ]
  12598. ))
  12599. characterMakers.push(() => makeCharacter(
  12600. { name: "Puru" },
  12601. {
  12602. front: {
  12603. height: math.unit(2 + 4 / 12, "feet"),
  12604. weight: math.unit(62, "lb"),
  12605. name: "Front",
  12606. image: {
  12607. source: "./media/characters/puru/front.svg",
  12608. extra: 206 / 149,
  12609. bottom: 0.06
  12610. }
  12611. },
  12612. },
  12613. [
  12614. {
  12615. name: "Normal",
  12616. height: math.unit(2 + 4 / 12, "feet"),
  12617. default: true
  12618. },
  12619. ]
  12620. ))
  12621. characterMakers.push(() => makeCharacter(
  12622. { name: "Kee" },
  12623. {
  12624. taur: {
  12625. height: math.unit(11, "feet"),
  12626. weight: math.unit(500, "lb"),
  12627. name: "Taur",
  12628. image: {
  12629. source: "./media/characters/kee/taur.svg",
  12630. extra: 1,
  12631. bottom: 0.04
  12632. }
  12633. },
  12634. },
  12635. [
  12636. {
  12637. name: "Normal",
  12638. height: math.unit(11, "feet"),
  12639. default: true
  12640. },
  12641. ]
  12642. ))
  12643. characterMakers.push(() => makeCharacter(
  12644. { name: "Cobalt (Dracha)" },
  12645. {
  12646. anthro: {
  12647. height: math.unit(7, "feet"),
  12648. weight: math.unit(190, "lb"),
  12649. name: "Anthro",
  12650. image: {
  12651. source: "./media/characters/cobalt-dracha/anthro.svg",
  12652. extra: 231 / 225,
  12653. bottom: 0.04
  12654. }
  12655. },
  12656. feral: {
  12657. height: math.unit(9 + 7 / 12, "feet"),
  12658. weight: math.unit(294, "lb"),
  12659. name: "Feral",
  12660. image: {
  12661. source: "./media/characters/cobalt-dracha/feral.svg",
  12662. extra: 692 / 633,
  12663. bottom: 0.05
  12664. }
  12665. },
  12666. },
  12667. [
  12668. {
  12669. name: "Normal",
  12670. height: math.unit(7, "feet"),
  12671. default: true
  12672. },
  12673. ]
  12674. ))
  12675. characterMakers.push(() => makeCharacter(
  12676. { name: "Java" },
  12677. {
  12678. fallen: {
  12679. height: math.unit(11 + 8 / 12, "feet"),
  12680. weight: math.unit(485, "lb"),
  12681. name: "Java (Fallen)",
  12682. rename: true,
  12683. image: {
  12684. source: "./media/characters/java/fallen.svg",
  12685. extra: 226 / 208,
  12686. bottom: 0.005
  12687. }
  12688. },
  12689. godkin: {
  12690. height: math.unit(10 + 6 / 12, "feet"),
  12691. weight: math.unit(328, "lb"),
  12692. name: "Java (Godkin)",
  12693. rename: true,
  12694. image: {
  12695. source: "./media/characters/java/godkin.svg",
  12696. extra: 270 / 262,
  12697. bottom: 0.02
  12698. }
  12699. },
  12700. },
  12701. [
  12702. {
  12703. name: "Normal",
  12704. height: math.unit(11 + 8 / 12, "feet"),
  12705. default: true
  12706. },
  12707. ]
  12708. ))
  12709. characterMakers.push(() => makeCharacter(
  12710. { name: "Skoll" },
  12711. {
  12712. front: {
  12713. height: math.unit(7 + 8 / 12, "feet"),
  12714. weight: math.unit(320, "lb"),
  12715. name: "Front",
  12716. image: {
  12717. source: "./media/characters/skoll/front.svg",
  12718. extra: 232 / 220,
  12719. bottom: 0.02
  12720. }
  12721. },
  12722. },
  12723. [
  12724. {
  12725. name: "Normal",
  12726. height: math.unit(7 + 8 / 12, "feet"),
  12727. default: true
  12728. },
  12729. ]
  12730. ))
  12731. characterMakers.push(() => makeCharacter(
  12732. { name: "Purna" },
  12733. {
  12734. front: {
  12735. height: math.unit(5 + 9 / 12, "feet"),
  12736. weight: math.unit(170, "lb"),
  12737. name: "Front",
  12738. image: {
  12739. source: "./media/characters/purna/front.svg",
  12740. extra: 239 / 229,
  12741. bottom: 0.01
  12742. }
  12743. },
  12744. },
  12745. [
  12746. {
  12747. name: "Normal",
  12748. height: math.unit(5 + 9 / 12, "feet"),
  12749. default: true
  12750. },
  12751. ]
  12752. ))
  12753. characterMakers.push(() => makeCharacter(
  12754. { name: "Kuva" },
  12755. {
  12756. front: {
  12757. height: math.unit(5 + 9 / 12, "feet"),
  12758. weight: math.unit(142, "lb"),
  12759. name: "Front",
  12760. image: {
  12761. source: "./media/characters/kuva/front.svg",
  12762. extra: 281 / 271,
  12763. bottom: 0.006
  12764. }
  12765. },
  12766. },
  12767. [
  12768. {
  12769. name: "Normal",
  12770. height: math.unit(5 + 9 / 12, "feet"),
  12771. default: true
  12772. },
  12773. ]
  12774. ))
  12775. characterMakers.push(() => makeCharacter(
  12776. { name: "Embra" },
  12777. {
  12778. anthro: {
  12779. height: math.unit(9 + 2 / 12, "feet"),
  12780. weight: math.unit(270, "lb"),
  12781. name: "Anthro",
  12782. image: {
  12783. source: "./media/characters/embra/anthro.svg",
  12784. extra: 200 / 187,
  12785. bottom: 0.02
  12786. }
  12787. },
  12788. feral: {
  12789. height: math.unit(18 + 8 / 12, "feet"),
  12790. weight: math.unit(576, "lb"),
  12791. name: "Feral",
  12792. image: {
  12793. source: "./media/characters/embra/feral.svg",
  12794. extra: 152 / 137,
  12795. bottom: 0.037
  12796. }
  12797. },
  12798. },
  12799. [
  12800. {
  12801. name: "Normal",
  12802. height: math.unit(9 + 2 / 12, "feet"),
  12803. default: true
  12804. },
  12805. ]
  12806. ))
  12807. characterMakers.push(() => makeCharacter(
  12808. { name: "Grottos" },
  12809. {
  12810. anthro: {
  12811. height: math.unit(10 + 9 / 12, "feet"),
  12812. weight: math.unit(224, "lb"),
  12813. name: "Anthro",
  12814. image: {
  12815. source: "./media/characters/grottos/anthro.svg",
  12816. extra: 350 / 332,
  12817. bottom: 0.045
  12818. }
  12819. },
  12820. feral: {
  12821. height: math.unit(20 + 7 / 12, "feet"),
  12822. weight: math.unit(629, "lb"),
  12823. name: "Feral",
  12824. image: {
  12825. source: "./media/characters/grottos/feral.svg",
  12826. extra: 207 / 190,
  12827. bottom: 0.05
  12828. }
  12829. },
  12830. },
  12831. [
  12832. {
  12833. name: "Normal",
  12834. height: math.unit(10 + 9 / 12, "feet"),
  12835. default: true
  12836. },
  12837. ]
  12838. ))
  12839. characterMakers.push(() => makeCharacter(
  12840. { name: "Frifna" },
  12841. {
  12842. anthro: {
  12843. height: math.unit(9 + 6 / 12, "feet"),
  12844. weight: math.unit(298, "lb"),
  12845. name: "Anthro",
  12846. image: {
  12847. source: "./media/characters/frifna/anthro.svg",
  12848. extra: 282 / 269,
  12849. bottom: 0.015
  12850. }
  12851. },
  12852. feral: {
  12853. height: math.unit(16 + 2 / 12, "feet"),
  12854. weight: math.unit(624, "lb"),
  12855. name: "Feral",
  12856. image: {
  12857. source: "./media/characters/frifna/feral.svg"
  12858. }
  12859. },
  12860. },
  12861. [
  12862. {
  12863. name: "Normal",
  12864. height: math.unit(9 + 6 / 12, "feet"),
  12865. default: true
  12866. },
  12867. ]
  12868. ))
  12869. characterMakers.push(() => makeCharacter(
  12870. { name: "Elise" },
  12871. {
  12872. front: {
  12873. height: math.unit(6 + 2 / 12, "feet"),
  12874. weight: math.unit(168, "lb"),
  12875. name: "Front",
  12876. image: {
  12877. source: "./media/characters/elise/front.svg",
  12878. extra: 276 / 271
  12879. }
  12880. },
  12881. },
  12882. [
  12883. {
  12884. name: "Normal",
  12885. height: math.unit(6 + 2 / 12, "feet"),
  12886. default: true
  12887. },
  12888. ]
  12889. ))
  12890. characterMakers.push(() => makeCharacter(
  12891. { name: "Glade" },
  12892. {
  12893. front: {
  12894. height: math.unit(5 + 10 / 12, "feet"),
  12895. weight: math.unit(210, "lb"),
  12896. name: "Front",
  12897. image: {
  12898. source: "./media/characters/glade/front.svg",
  12899. extra: 258 / 247,
  12900. bottom: 0.008
  12901. }
  12902. },
  12903. },
  12904. [
  12905. {
  12906. name: "Normal",
  12907. height: math.unit(5 + 10 / 12, "feet"),
  12908. default: true
  12909. },
  12910. ]
  12911. ))
  12912. characterMakers.push(() => makeCharacter(
  12913. { name: "Rina" },
  12914. {
  12915. front: {
  12916. height: math.unit(5 + 10 / 12, "feet"),
  12917. weight: math.unit(129, "lb"),
  12918. name: "Front",
  12919. image: {
  12920. source: "./media/characters/rina/front.svg",
  12921. extra: 266 / 255,
  12922. bottom: 0.005
  12923. }
  12924. },
  12925. },
  12926. [
  12927. {
  12928. name: "Normal",
  12929. height: math.unit(5 + 10 / 12, "feet"),
  12930. default: true
  12931. },
  12932. ]
  12933. ))
  12934. characterMakers.push(() => makeCharacter(
  12935. { name: "Veronica" },
  12936. {
  12937. front: {
  12938. height: math.unit(6 + 1 / 12, "feet"),
  12939. weight: math.unit(192, "lb"),
  12940. name: "Front",
  12941. image: {
  12942. source: "./media/characters/veronica/front.svg",
  12943. extra: 319 / 309,
  12944. bottom: 0.005
  12945. }
  12946. },
  12947. },
  12948. [
  12949. {
  12950. name: "Normal",
  12951. height: math.unit(6 + 1 / 12, "feet"),
  12952. default: true
  12953. },
  12954. ]
  12955. ))
  12956. characterMakers.push(() => makeCharacter(
  12957. { name: "Braxton" },
  12958. {
  12959. front: {
  12960. height: math.unit(9 + 3 / 12, "feet"),
  12961. weight: math.unit(1100, "lb"),
  12962. name: "Front",
  12963. image: {
  12964. source: "./media/characters/braxton/front.svg",
  12965. extra: 1057 / 984,
  12966. bottom: 0.05
  12967. }
  12968. },
  12969. },
  12970. [
  12971. {
  12972. name: "Normal",
  12973. height: math.unit(9 + 3 / 12, "feet")
  12974. },
  12975. {
  12976. name: "Giant",
  12977. height: math.unit(300, "feet"),
  12978. default: true
  12979. },
  12980. {
  12981. name: "Macro",
  12982. height: math.unit(700, "feet")
  12983. },
  12984. {
  12985. name: "Megamacro",
  12986. height: math.unit(6000, "feet")
  12987. },
  12988. ]
  12989. ))
  12990. characterMakers.push(() => makeCharacter(
  12991. { name: "Blue Feyonics" },
  12992. {
  12993. front: {
  12994. height: math.unit(6 + 7 / 12, "feet"),
  12995. weight: math.unit(150, "lb"),
  12996. name: "Front",
  12997. image: {
  12998. source: "./media/characters/blue-feyonics/front.svg",
  12999. extra: 1403 / 1306,
  13000. bottom: 0.047
  13001. }
  13002. },
  13003. },
  13004. [
  13005. {
  13006. name: "Normal",
  13007. height: math.unit(6 + 7 / 12, "feet"),
  13008. default: true
  13009. },
  13010. ]
  13011. ))
  13012. characterMakers.push(() => makeCharacter(
  13013. { name: "Maxwell" },
  13014. {
  13015. front: {
  13016. height: math.unit(1.8, "meters"),
  13017. weight: math.unit(60, "kg"),
  13018. name: "Front",
  13019. image: {
  13020. source: "./media/characters/maxwell/front.svg",
  13021. extra: 2060 / 1873
  13022. }
  13023. },
  13024. },
  13025. [
  13026. {
  13027. name: "Micro",
  13028. height: math.unit(1, "mm")
  13029. },
  13030. {
  13031. name: "Normal",
  13032. height: math.unit(1.8, "meter"),
  13033. default: true
  13034. },
  13035. {
  13036. name: "Macro",
  13037. height: math.unit(30, "meters")
  13038. },
  13039. {
  13040. name: "Megamacro",
  13041. height: math.unit(10, "km")
  13042. },
  13043. ]
  13044. ))
  13045. characterMakers.push(() => makeCharacter(
  13046. { name: "Jack" },
  13047. {
  13048. front: {
  13049. height: math.unit(6, "feet"),
  13050. weight: math.unit(150, "lb"),
  13051. name: "Front",
  13052. image: {
  13053. source: "./media/characters/jack/front.svg",
  13054. extra: 1754 / 1640,
  13055. bottom: 0.01
  13056. }
  13057. },
  13058. },
  13059. [
  13060. {
  13061. name: "Normal",
  13062. height: math.unit(80000, "feet"),
  13063. default: true
  13064. },
  13065. {
  13066. name: "Max size",
  13067. height: math.unit(10, "lightyears")
  13068. },
  13069. ]
  13070. ))
  13071. characterMakers.push(() => makeCharacter(
  13072. { name: "Cafat" },
  13073. {
  13074. upright: {
  13075. height: math.unit(7, "feet"),
  13076. weight: math.unit(170, "lb"),
  13077. name: "Upright",
  13078. image: {
  13079. source: "./media/characters/cafat/upright.svg",
  13080. bottom: 0.01
  13081. }
  13082. },
  13083. uprightFull: {
  13084. height: math.unit(7, "feet"),
  13085. weight: math.unit(170, "lb"),
  13086. name: "Upright (Full)",
  13087. image: {
  13088. source: "./media/characters/cafat/upright-full.svg",
  13089. bottom: 0.01
  13090. }
  13091. },
  13092. side: {
  13093. height: math.unit(5, "feet"),
  13094. weight: math.unit(150, "lb"),
  13095. name: "Side",
  13096. image: {
  13097. source: "./media/characters/cafat/side.svg"
  13098. }
  13099. },
  13100. },
  13101. [
  13102. {
  13103. name: "Small",
  13104. height: math.unit(7, "feet"),
  13105. default: true
  13106. },
  13107. {
  13108. name: "Large",
  13109. height: math.unit(15.5, "feet")
  13110. },
  13111. ]
  13112. ))
  13113. characterMakers.push(() => makeCharacter(
  13114. { name: "Verin Raharra" },
  13115. {
  13116. front: {
  13117. height: math.unit(6, "feet"),
  13118. weight: math.unit(150, "lb"),
  13119. name: "Front",
  13120. image: {
  13121. source: "./media/characters/verin-raharra/front.svg",
  13122. extra: 5019 / 4835,
  13123. bottom: 0.023
  13124. }
  13125. },
  13126. },
  13127. [
  13128. {
  13129. name: "Normal",
  13130. height: math.unit(7 + 5 / 12, "feet"),
  13131. default: true
  13132. },
  13133. {
  13134. name: "Upsized",
  13135. height: math.unit(20, "feet")
  13136. },
  13137. ]
  13138. ))
  13139. characterMakers.push(() => makeCharacter(
  13140. { name: "Nakata" },
  13141. {
  13142. front: {
  13143. height: math.unit(7, "feet"),
  13144. weight: math.unit(230, "lb"),
  13145. name: "Front",
  13146. image: {
  13147. source: "./media/characters/nakata/front.svg",
  13148. extra: 1.005,
  13149. bottom: 0.01
  13150. }
  13151. },
  13152. },
  13153. [
  13154. {
  13155. name: "Normal",
  13156. height: math.unit(7, "feet"),
  13157. default: true
  13158. },
  13159. {
  13160. name: "Big",
  13161. height: math.unit(14, "feet")
  13162. },
  13163. {
  13164. name: "Macro",
  13165. height: math.unit(400, "feet")
  13166. },
  13167. ]
  13168. ))
  13169. characterMakers.push(() => makeCharacter(
  13170. { name: "Lily" },
  13171. {
  13172. front: {
  13173. height: math.unit(4.91, "feet"),
  13174. weight: math.unit(100, "lb"),
  13175. name: "Front",
  13176. image: {
  13177. source: "./media/characters/lily/front.svg",
  13178. extra: 1585 / 1415,
  13179. bottom: 0.02
  13180. }
  13181. },
  13182. },
  13183. [
  13184. {
  13185. name: "Normal",
  13186. height: math.unit(4.91, "feet"),
  13187. default: true
  13188. },
  13189. ]
  13190. ))
  13191. characterMakers.push(() => makeCharacter(
  13192. { name: "Sheila" },
  13193. {
  13194. laying: {
  13195. height: math.unit(4 + 4 / 12, "feet"),
  13196. weight: math.unit(600, "lb"),
  13197. name: "Laying",
  13198. image: {
  13199. source: "./media/characters/sheila/laying.svg",
  13200. extra: 1333 / 1265,
  13201. bottom: 0.16
  13202. }
  13203. },
  13204. },
  13205. [
  13206. {
  13207. name: "Normal",
  13208. height: math.unit(4 + 4 / 12, "feet"),
  13209. default: true
  13210. },
  13211. ]
  13212. ))
  13213. characterMakers.push(() => makeCharacter(
  13214. { name: "Sax" },
  13215. {
  13216. front: {
  13217. height: math.unit(6, "feet"),
  13218. weight: math.unit(190, "lb"),
  13219. name: "Front",
  13220. image: {
  13221. source: "./media/characters/sax/front.svg",
  13222. extra: 1187 / 973,
  13223. bottom: 0.042
  13224. }
  13225. },
  13226. },
  13227. [
  13228. {
  13229. name: "Micro",
  13230. height: math.unit(4, "inches"),
  13231. default: true
  13232. },
  13233. ]
  13234. ))
  13235. characterMakers.push(() => makeCharacter(
  13236. { name: "Pandora" },
  13237. {
  13238. front: {
  13239. height: math.unit(6, "feet"),
  13240. weight: math.unit(150, "lb"),
  13241. name: "Front",
  13242. image: {
  13243. source: "./media/characters/pandora/front.svg",
  13244. extra: 2720 / 2556,
  13245. bottom: 0.015
  13246. }
  13247. },
  13248. back: {
  13249. height: math.unit(6, "feet"),
  13250. weight: math.unit(150, "lb"),
  13251. name: "Back",
  13252. image: {
  13253. source: "./media/characters/pandora/back.svg",
  13254. extra: 2720 / 2556,
  13255. bottom: 0.01
  13256. }
  13257. },
  13258. beans: {
  13259. height: math.unit(6 / 8, "feet"),
  13260. name: "Beans",
  13261. image: {
  13262. source: "./media/characters/pandora/beans.svg"
  13263. }
  13264. },
  13265. skirt: {
  13266. height: math.unit(6, "feet"),
  13267. weight: math.unit(150, "lb"),
  13268. name: "Skirt",
  13269. image: {
  13270. source: "./media/characters/pandora/skirt.svg",
  13271. extra: 1622 / 1525,
  13272. bottom: 0.015
  13273. }
  13274. },
  13275. hoodie: {
  13276. height: math.unit(6, "feet"),
  13277. weight: math.unit(150, "lb"),
  13278. name: "Hoodie",
  13279. image: {
  13280. source: "./media/characters/pandora/hoodie.svg",
  13281. extra: 1622 / 1525,
  13282. bottom: 0.015
  13283. }
  13284. },
  13285. casual: {
  13286. height: math.unit(6, "feet"),
  13287. weight: math.unit(150, "lb"),
  13288. name: "Casual",
  13289. image: {
  13290. source: "./media/characters/pandora/casual.svg",
  13291. extra: 1622 / 1525,
  13292. bottom: 0.015
  13293. }
  13294. },
  13295. },
  13296. [
  13297. {
  13298. name: "Normal",
  13299. height: math.unit(6, "feet")
  13300. },
  13301. {
  13302. name: "Big Steppy",
  13303. height: math.unit(1, "km"),
  13304. default: true
  13305. },
  13306. ]
  13307. ))
  13308. characterMakers.push(() => makeCharacter(
  13309. { name: "Venio Darcony" },
  13310. {
  13311. side: {
  13312. height: math.unit(10, "feet"),
  13313. weight: math.unit(800, "kg"),
  13314. name: "Side",
  13315. image: {
  13316. source: "./media/characters/venio-darcony/side.svg",
  13317. extra: 1373 / 1003,
  13318. bottom: 0.037
  13319. }
  13320. },
  13321. front: {
  13322. height: math.unit(19, "feet"),
  13323. weight: math.unit(800, "kg"),
  13324. name: "Front",
  13325. image: {
  13326. source: "./media/characters/venio-darcony/front.svg"
  13327. }
  13328. },
  13329. back: {
  13330. height: math.unit(19, "feet"),
  13331. weight: math.unit(800, "kg"),
  13332. name: "Back",
  13333. image: {
  13334. source: "./media/characters/venio-darcony/back.svg"
  13335. }
  13336. },
  13337. },
  13338. [
  13339. {
  13340. name: "Normal",
  13341. height: math.unit(10, "feet")
  13342. },
  13343. {
  13344. name: "Macro",
  13345. height: math.unit(130, "feet"),
  13346. default: true
  13347. },
  13348. {
  13349. name: "Macro+",
  13350. height: math.unit(240, "feet")
  13351. },
  13352. ]
  13353. ))
  13354. characterMakers.push(() => makeCharacter(
  13355. { name: "Veski" },
  13356. {
  13357. front: {
  13358. height: math.unit(6, "feet"),
  13359. weight: math.unit(150, "lb"),
  13360. name: "Front",
  13361. image: {
  13362. source: "./media/characters/veski/front.svg",
  13363. extra: 1299 / 1225,
  13364. bottom: 0.04
  13365. }
  13366. },
  13367. back: {
  13368. height: math.unit(6, "feet"),
  13369. weight: math.unit(150, "lb"),
  13370. name: "Back",
  13371. image: {
  13372. source: "./media/characters/veski/back.svg",
  13373. extra: 1299 / 1225,
  13374. bottom: 0.008
  13375. }
  13376. },
  13377. maw: {
  13378. height: math.unit(1.5 * 1.21, "feet"),
  13379. name: "Maw",
  13380. image: {
  13381. source: "./media/characters/veski/maw.svg"
  13382. }
  13383. },
  13384. },
  13385. [
  13386. {
  13387. name: "Macro",
  13388. height: math.unit(2, "km"),
  13389. default: true
  13390. },
  13391. ]
  13392. ))
  13393. characterMakers.push(() => makeCharacter(
  13394. { name: "Isabelle" },
  13395. {
  13396. front: {
  13397. height: math.unit(5 + 7 / 12, "feet"),
  13398. name: "Front",
  13399. image: {
  13400. source: "./media/characters/isabelle/front.svg",
  13401. extra: 2130 / 1976,
  13402. bottom: 0.05
  13403. }
  13404. },
  13405. },
  13406. [
  13407. {
  13408. name: "Supermicro",
  13409. height: math.unit(10, "micrometers")
  13410. },
  13411. {
  13412. name: "Micro",
  13413. height: math.unit(1, "inch")
  13414. },
  13415. {
  13416. name: "Tiny",
  13417. height: math.unit(5, "inches")
  13418. },
  13419. {
  13420. name: "Standard",
  13421. height: math.unit(5 + 7 / 12, "inches")
  13422. },
  13423. {
  13424. name: "Macro",
  13425. height: math.unit(80, "meters"),
  13426. default: true
  13427. },
  13428. {
  13429. name: "Megamacro",
  13430. height: math.unit(250, "meters")
  13431. },
  13432. {
  13433. name: "Gigamacro",
  13434. height: math.unit(5, "km")
  13435. },
  13436. {
  13437. name: "Cosmic",
  13438. height: math.unit(2.5e6, "miles")
  13439. },
  13440. ]
  13441. ))
  13442. characterMakers.push(() => makeCharacter(
  13443. { name: "Hanzo" },
  13444. {
  13445. front: {
  13446. height: math.unit(6, "feet"),
  13447. weight: math.unit(150, "lb"),
  13448. name: "Front",
  13449. image: {
  13450. source: "./media/characters/hanzo/front.svg",
  13451. extra: 374 / 344,
  13452. bottom: 0.02
  13453. }
  13454. },
  13455. },
  13456. [
  13457. {
  13458. name: "Normal",
  13459. height: math.unit(8, "feet"),
  13460. default: true
  13461. },
  13462. ]
  13463. ))
  13464. characterMakers.push(() => makeCharacter(
  13465. { name: "Anna" },
  13466. {
  13467. front: {
  13468. height: math.unit(7, "feet"),
  13469. weight: math.unit(130, "lb"),
  13470. name: "Front",
  13471. image: {
  13472. source: "./media/characters/anna/front.svg",
  13473. extra: 169 / 145,
  13474. bottom: 0.06
  13475. }
  13476. },
  13477. full: {
  13478. height: math.unit(4.96, "feet"),
  13479. weight: math.unit(220, "lb"),
  13480. name: "Full",
  13481. image: {
  13482. source: "./media/characters/anna/full.svg",
  13483. extra: 138 / 114,
  13484. bottom: 0.15
  13485. }
  13486. },
  13487. tongue: {
  13488. height: math.unit(2.53, "feet"),
  13489. name: "Tongue",
  13490. image: {
  13491. source: "./media/characters/anna/tongue.svg"
  13492. }
  13493. },
  13494. },
  13495. [
  13496. {
  13497. name: "Normal",
  13498. height: math.unit(7, "feet"),
  13499. default: true
  13500. },
  13501. ]
  13502. ))
  13503. characterMakers.push(() => makeCharacter(
  13504. { name: "Ian Corvid" },
  13505. {
  13506. front: {
  13507. height: math.unit(7, "feet"),
  13508. weight: math.unit(150, "lb"),
  13509. name: "Front",
  13510. image: {
  13511. source: "./media/characters/ian-corvid/front.svg",
  13512. extra: 150 / 142,
  13513. bottom: 0.02
  13514. }
  13515. },
  13516. back: {
  13517. height: math.unit(7, "feet"),
  13518. weight: math.unit(150, "lb"),
  13519. name: "Back",
  13520. image: {
  13521. source: "./media/characters/ian-corvid/back.svg",
  13522. extra: 150 / 143,
  13523. bottom: 0.01
  13524. }
  13525. },
  13526. stomping: {
  13527. height: math.unit(7, "feet"),
  13528. weight: math.unit(150, "lb"),
  13529. name: "Stomping",
  13530. image: {
  13531. source: "./media/characters/ian-corvid/stomping.svg",
  13532. extra: 76 / 72
  13533. }
  13534. },
  13535. sitting: {
  13536. height: math.unit(7 / 1.8, "feet"),
  13537. weight: math.unit(150, "lb"),
  13538. name: "Sitting",
  13539. image: {
  13540. source: "./media/characters/ian-corvid/sitting.svg",
  13541. extra: 1400 / 1269,
  13542. bottom: 0.15
  13543. }
  13544. },
  13545. },
  13546. [
  13547. {
  13548. name: "Tiny Microw",
  13549. height: math.unit(1, "inch")
  13550. },
  13551. {
  13552. name: "Microw",
  13553. height: math.unit(6, "inches")
  13554. },
  13555. {
  13556. name: "Crow",
  13557. height: math.unit(7 + 1 / 12, "feet"),
  13558. default: true
  13559. },
  13560. {
  13561. name: "Macrow",
  13562. height: math.unit(176, "feet")
  13563. },
  13564. ]
  13565. ))
  13566. characterMakers.push(() => makeCharacter(
  13567. { name: "Natalie Kellon" },
  13568. {
  13569. front: {
  13570. height: math.unit(5 + 7 / 12, "feet"),
  13571. weight: math.unit(147, "lb"),
  13572. name: "Front",
  13573. image: {
  13574. source: "./media/characters/natalie-kellon/front.svg",
  13575. extra: 1214 / 1141,
  13576. bottom: 0.02
  13577. }
  13578. },
  13579. },
  13580. [
  13581. {
  13582. name: "Micro",
  13583. height: math.unit(1 / 16, "inch")
  13584. },
  13585. {
  13586. name: "Tiny",
  13587. height: math.unit(4, "inches")
  13588. },
  13589. {
  13590. name: "Normal",
  13591. height: math.unit(5 + 7 / 12, "feet"),
  13592. default: true
  13593. },
  13594. {
  13595. name: "Amazon",
  13596. height: math.unit(12, "feet")
  13597. },
  13598. {
  13599. name: "Giantess",
  13600. height: math.unit(160, "meters")
  13601. },
  13602. {
  13603. name: "Titaness",
  13604. height: math.unit(800, "meters")
  13605. },
  13606. ]
  13607. ))
  13608. characterMakers.push(() => makeCharacter(
  13609. { name: "Alluria" },
  13610. {
  13611. front: {
  13612. height: math.unit(6, "feet"),
  13613. weight: math.unit(150, "lb"),
  13614. name: "Front",
  13615. image: {
  13616. source: "./media/characters/alluria/front.svg",
  13617. extra: 806 / 738,
  13618. bottom: 0.01
  13619. }
  13620. },
  13621. side: {
  13622. height: math.unit(6, "feet"),
  13623. weight: math.unit(150, "lb"),
  13624. name: "Side",
  13625. image: {
  13626. source: "./media/characters/alluria/side.svg",
  13627. extra: 800 / 750,
  13628. }
  13629. },
  13630. back: {
  13631. height: math.unit(6, "feet"),
  13632. weight: math.unit(150, "lb"),
  13633. name: "Back",
  13634. image: {
  13635. source: "./media/characters/alluria/back.svg",
  13636. extra: 806 / 738,
  13637. }
  13638. },
  13639. frontMaid: {
  13640. height: math.unit(6, "feet"),
  13641. weight: math.unit(150, "lb"),
  13642. name: "Front (Maid)",
  13643. image: {
  13644. source: "./media/characters/alluria/front-maid.svg",
  13645. extra: 806 / 738,
  13646. bottom: 0.01
  13647. }
  13648. },
  13649. sideMaid: {
  13650. height: math.unit(6, "feet"),
  13651. weight: math.unit(150, "lb"),
  13652. name: "Side (Maid)",
  13653. image: {
  13654. source: "./media/characters/alluria/side-maid.svg",
  13655. extra: 800 / 750,
  13656. bottom: 0.005
  13657. }
  13658. },
  13659. backMaid: {
  13660. height: math.unit(6, "feet"),
  13661. weight: math.unit(150, "lb"),
  13662. name: "Back (Maid)",
  13663. image: {
  13664. source: "./media/characters/alluria/back-maid.svg",
  13665. extra: 806 / 738,
  13666. }
  13667. },
  13668. },
  13669. [
  13670. {
  13671. name: "Micro",
  13672. height: math.unit(6, "inches"),
  13673. default: true
  13674. },
  13675. ]
  13676. ))
  13677. characterMakers.push(() => makeCharacter(
  13678. { name: "Kyle" },
  13679. {
  13680. front: {
  13681. height: math.unit(6, "feet"),
  13682. weight: math.unit(150, "lb"),
  13683. name: "Front",
  13684. image: {
  13685. source: "./media/characters/kyle/front.svg",
  13686. extra: 1069 / 962,
  13687. bottom: 77.228 / 1727.45
  13688. }
  13689. },
  13690. },
  13691. [
  13692. {
  13693. name: "Macro",
  13694. height: math.unit(150, "feet"),
  13695. default: true
  13696. },
  13697. ]
  13698. ))
  13699. characterMakers.push(() => makeCharacter(
  13700. { name: "Duncan" },
  13701. {
  13702. front: {
  13703. height: math.unit(6, "feet"),
  13704. weight: math.unit(300, "lb"),
  13705. name: "Front",
  13706. image: {
  13707. source: "./media/characters/duncan/front.svg",
  13708. extra: 1650 / 1482,
  13709. bottom: 0.05
  13710. }
  13711. },
  13712. },
  13713. [
  13714. {
  13715. name: "Macro",
  13716. height: math.unit(100, "feet"),
  13717. default: true
  13718. },
  13719. ]
  13720. ))
  13721. characterMakers.push(() => makeCharacter(
  13722. { name: "Memory" },
  13723. {
  13724. front: {
  13725. height: math.unit(5 + 4 / 12, "feet"),
  13726. weight: math.unit(220, "lb"),
  13727. name: "Front",
  13728. image: {
  13729. source: "./media/characters/memory/front.svg",
  13730. extra: 3641 / 3545,
  13731. bottom: 0.03
  13732. }
  13733. },
  13734. back: {
  13735. height: math.unit(5 + 4 / 12, "feet"),
  13736. weight: math.unit(220, "lb"),
  13737. name: "Back",
  13738. image: {
  13739. source: "./media/characters/memory/back.svg",
  13740. extra: 3641 / 3545,
  13741. bottom: 0.025
  13742. }
  13743. },
  13744. frontSkirt: {
  13745. height: math.unit(5 + 4 / 12, "feet"),
  13746. weight: math.unit(220, "lb"),
  13747. name: "Front (Skirt)",
  13748. image: {
  13749. source: "./media/characters/memory/front-skirt.svg",
  13750. extra: 3641 / 3545,
  13751. bottom: 0.03
  13752. }
  13753. },
  13754. frontDress: {
  13755. height: math.unit(5 + 4 / 12, "feet"),
  13756. weight: math.unit(220, "lb"),
  13757. name: "Front (Dress)",
  13758. image: {
  13759. source: "./media/characters/memory/front-dress.svg",
  13760. extra: 3641 / 3545,
  13761. bottom: 0.03
  13762. }
  13763. },
  13764. },
  13765. [
  13766. {
  13767. name: "Micro",
  13768. height: math.unit(6, "inches"),
  13769. default: true
  13770. },
  13771. {
  13772. name: "Normal",
  13773. height: math.unit(5 + 4 / 12, "feet")
  13774. },
  13775. ]
  13776. ))
  13777. characterMakers.push(() => makeCharacter(
  13778. { name: "Luno" },
  13779. {
  13780. front: {
  13781. height: math.unit(4 + 11 / 12, "feet"),
  13782. weight: math.unit(100, "lb"),
  13783. name: "Front",
  13784. image: {
  13785. source: "./media/characters/luno/front.svg",
  13786. extra: 1535 / 1487,
  13787. bottom: 0.03
  13788. }
  13789. },
  13790. },
  13791. [
  13792. {
  13793. name: "Micro",
  13794. height: math.unit(3, "inches")
  13795. },
  13796. {
  13797. name: "Normal",
  13798. height: math.unit(4 + 11 / 12, "feet"),
  13799. default: true
  13800. },
  13801. {
  13802. name: "Macro",
  13803. height: math.unit(300, "feet")
  13804. },
  13805. {
  13806. name: "Megamacro",
  13807. height: math.unit(700, "miles")
  13808. },
  13809. ]
  13810. ))
  13811. characterMakers.push(() => makeCharacter(
  13812. { name: "Jamesy" },
  13813. {
  13814. front: {
  13815. height: math.unit(6 + 2 / 12, "feet"),
  13816. weight: math.unit(170, "lb"),
  13817. name: "Front",
  13818. image: {
  13819. source: "./media/characters/jamesy/front.svg",
  13820. extra: 440 / 382,
  13821. bottom: 0.005
  13822. }
  13823. },
  13824. },
  13825. [
  13826. {
  13827. name: "Micro",
  13828. height: math.unit(3, "inches")
  13829. },
  13830. {
  13831. name: "Normal",
  13832. height: math.unit(6 + 2 / 12, "feet"),
  13833. default: true
  13834. },
  13835. {
  13836. name: "Macro",
  13837. height: math.unit(300, "feet")
  13838. },
  13839. {
  13840. name: "Megamacro",
  13841. height: math.unit(700, "miles")
  13842. },
  13843. ]
  13844. ))
  13845. characterMakers.push(() => makeCharacter(
  13846. { name: "Mark" },
  13847. {
  13848. front: {
  13849. height: math.unit(6, "feet"),
  13850. weight: math.unit(160, "lb"),
  13851. name: "Front",
  13852. image: {
  13853. source: "./media/characters/mark/front.svg",
  13854. extra: 3300 / 3100,
  13855. bottom: 136.42 / 3440.47
  13856. }
  13857. },
  13858. },
  13859. [
  13860. {
  13861. name: "Macro",
  13862. height: math.unit(120, "meters")
  13863. },
  13864. {
  13865. name: "Bigger Macro",
  13866. height: math.unit(350, "meters")
  13867. },
  13868. {
  13869. name: "Megamacro",
  13870. height: math.unit(8, "km"),
  13871. default: true
  13872. },
  13873. {
  13874. name: "Continental",
  13875. height: math.unit(4550, "km")
  13876. },
  13877. {
  13878. name: "Planetary",
  13879. height: math.unit(65000, "km")
  13880. },
  13881. ]
  13882. ))
  13883. characterMakers.push(() => makeCharacter(
  13884. { name: "Mac" },
  13885. {
  13886. front: {
  13887. height: math.unit(6, "feet"),
  13888. weight: math.unit(400, "lb"),
  13889. name: "Front",
  13890. image: {
  13891. source: "./media/characters/mac/front.svg",
  13892. extra: 1048 / 987.7,
  13893. bottom: 60 / 1107.6,
  13894. }
  13895. },
  13896. },
  13897. [
  13898. {
  13899. name: "Macro",
  13900. height: math.unit(500, "feet"),
  13901. default: true
  13902. },
  13903. ]
  13904. ))
  13905. characterMakers.push(() => makeCharacter(
  13906. { name: "Bari" },
  13907. {
  13908. front: {
  13909. height: math.unit(5 + 2 / 12, "feet"),
  13910. weight: math.unit(190, "lb"),
  13911. name: "Front",
  13912. image: {
  13913. source: "./media/characters/bari/front.svg",
  13914. extra: 3156 / 2880,
  13915. bottom: 0.03
  13916. }
  13917. },
  13918. back: {
  13919. height: math.unit(5 + 2 / 12, "feet"),
  13920. weight: math.unit(190, "lb"),
  13921. name: "Back",
  13922. image: {
  13923. source: "./media/characters/bari/back.svg",
  13924. extra: 3260 / 2834,
  13925. bottom: 0.025
  13926. }
  13927. },
  13928. frontPlush: {
  13929. height: math.unit(5 + 2 / 12, "feet"),
  13930. weight: math.unit(190, "lb"),
  13931. name: "Front (Plush)",
  13932. image: {
  13933. source: "./media/characters/bari/front-plush.svg",
  13934. extra: 1112 / 1061,
  13935. bottom: 0.002
  13936. }
  13937. },
  13938. },
  13939. [
  13940. {
  13941. name: "Micro",
  13942. height: math.unit(3, "inches")
  13943. },
  13944. {
  13945. name: "Normal",
  13946. height: math.unit(5 + 2 / 12, "feet"),
  13947. default: true
  13948. },
  13949. {
  13950. name: "Macro",
  13951. height: math.unit(20, "feet")
  13952. },
  13953. ]
  13954. ))
  13955. characterMakers.push(() => makeCharacter(
  13956. { name: "Hunter Misha Raven" },
  13957. {
  13958. front: {
  13959. height: math.unit(6 + 1 / 12, "feet"),
  13960. weight: math.unit(275, "lb"),
  13961. name: "Front",
  13962. image: {
  13963. source: "./media/characters/hunter-misha-raven/front.svg"
  13964. }
  13965. },
  13966. },
  13967. [
  13968. {
  13969. name: "Mortal",
  13970. height: math.unit(6 + 1 / 12, "feet")
  13971. },
  13972. {
  13973. name: "Divine",
  13974. height: math.unit(1.12134e34, "parsecs"),
  13975. default: true
  13976. },
  13977. ]
  13978. ))
  13979. characterMakers.push(() => makeCharacter(
  13980. { name: "Max Calore" },
  13981. {
  13982. front: {
  13983. height: math.unit(6 + 3 / 12, "feet"),
  13984. weight: math.unit(220, "lb"),
  13985. name: "Front",
  13986. image: {
  13987. source: "./media/characters/max-calore/front.svg",
  13988. extra: 1700 / 1648,
  13989. bottom: 0.01
  13990. }
  13991. },
  13992. back: {
  13993. height: math.unit(6 + 3 / 12, "feet"),
  13994. weight: math.unit(220, "lb"),
  13995. name: "Back",
  13996. image: {
  13997. source: "./media/characters/max-calore/back.svg",
  13998. extra: 1700 / 1648,
  13999. bottom: 0.01
  14000. }
  14001. },
  14002. },
  14003. [
  14004. {
  14005. name: "Normal",
  14006. height: math.unit(6 + 3 / 12, "feet"),
  14007. default: true
  14008. },
  14009. ]
  14010. ))
  14011. characterMakers.push(() => makeCharacter(
  14012. { name: "Aspen" },
  14013. {
  14014. side: {
  14015. height: math.unit(2 + 8 / 12, "feet"),
  14016. weight: math.unit(99, "lb"),
  14017. name: "Side",
  14018. image: {
  14019. source: "./media/characters/aspen/side.svg",
  14020. extra: 152 / 138,
  14021. bottom: 0.032
  14022. }
  14023. },
  14024. },
  14025. [
  14026. {
  14027. name: "Normal",
  14028. height: math.unit(2 + 8 / 12, "feet"),
  14029. default: true
  14030. },
  14031. ]
  14032. ))
  14033. characterMakers.push(() => makeCharacter(
  14034. { name: "Sheila (Wolf)" },
  14035. {
  14036. side: {
  14037. height: math.unit(3 + 2 / 12, "feet"),
  14038. weight: math.unit(224, "lb"),
  14039. name: "Side",
  14040. image: {
  14041. source: "./media/characters/sheila-wolf/side.svg",
  14042. extra: 179 / 166,
  14043. bottom: 0.03
  14044. }
  14045. },
  14046. },
  14047. [
  14048. {
  14049. name: "Normal",
  14050. height: math.unit(3 + 2 / 12, "feet"),
  14051. default: true
  14052. },
  14053. ]
  14054. ))
  14055. characterMakers.push(() => makeCharacter(
  14056. { name: "Michelle" },
  14057. {
  14058. side: {
  14059. height: math.unit(1 + 9 / 12, "feet"),
  14060. weight: math.unit(38, "lb"),
  14061. name: "Side",
  14062. image: {
  14063. source: "./media/characters/michelle/side.svg",
  14064. extra: 147 / 136.7,
  14065. bottom: 0.03
  14066. }
  14067. },
  14068. },
  14069. [
  14070. {
  14071. name: "Normal",
  14072. height: math.unit(1 + 9 / 12, "feet"),
  14073. default: true
  14074. },
  14075. ]
  14076. ))
  14077. characterMakers.push(() => makeCharacter(
  14078. { name: "Nino" },
  14079. {
  14080. front: {
  14081. height: math.unit(1 + 1 / 12, "feet"),
  14082. weight: math.unit(18, "lb"),
  14083. name: "Front",
  14084. image: {
  14085. source: "./media/characters/nino/front.svg"
  14086. }
  14087. },
  14088. },
  14089. [
  14090. {
  14091. name: "Normal",
  14092. height: math.unit(1 + 1 / 12, "feet"),
  14093. default: true
  14094. },
  14095. ]
  14096. ))
  14097. characterMakers.push(() => makeCharacter(
  14098. { name: "Viola" },
  14099. {
  14100. front: {
  14101. height: math.unit(1, "feet"),
  14102. weight: math.unit(16, "lb"),
  14103. name: "Front",
  14104. image: {
  14105. source: "./media/characters/viola/front.svg"
  14106. }
  14107. },
  14108. },
  14109. [
  14110. {
  14111. name: "Normal",
  14112. height: math.unit(1, "feet"),
  14113. default: true
  14114. },
  14115. ]
  14116. ))
  14117. characterMakers.push(() => makeCharacter(
  14118. { name: "Atlas" },
  14119. {
  14120. front: {
  14121. height: math.unit(6 + 5 / 12, "feet"),
  14122. weight: math.unit(580, "lb"),
  14123. name: "Front",
  14124. image: {
  14125. source: "./media/characters/atlas/front.svg",
  14126. extra: 298.5 / 290,
  14127. bottom: 0.015
  14128. }
  14129. },
  14130. },
  14131. [
  14132. {
  14133. name: "Normal",
  14134. height: math.unit(6 + 5 / 12, "feet"),
  14135. default: true
  14136. },
  14137. ]
  14138. ))
  14139. characterMakers.push(() => makeCharacter(
  14140. { name: "Davy" },
  14141. {
  14142. side: {
  14143. height: math.unit(1 + 10 / 12, "feet"),
  14144. weight: math.unit(25, "lb"),
  14145. name: "Side",
  14146. image: {
  14147. source: "./media/characters/davy/side.svg",
  14148. extra: 200 / 170,
  14149. bottom: 0.01
  14150. }
  14151. },
  14152. },
  14153. [
  14154. {
  14155. name: "Normal",
  14156. height: math.unit(1 + 10 / 12, "feet"),
  14157. default: true
  14158. },
  14159. ]
  14160. ))
  14161. characterMakers.push(() => makeCharacter(
  14162. { name: "Fiona" },
  14163. {
  14164. side: {
  14165. height: math.unit(4 + 8 / 12, "feet"),
  14166. weight: math.unit(166, "lb"),
  14167. name: "Side",
  14168. image: {
  14169. source: "./media/characters/fiona/side.svg",
  14170. extra: 232 / 220,
  14171. bottom: 0.03
  14172. }
  14173. },
  14174. },
  14175. [
  14176. {
  14177. name: "Normal",
  14178. height: math.unit(4 + 8 / 12, "feet"),
  14179. default: true
  14180. },
  14181. ]
  14182. ))
  14183. characterMakers.push(() => makeCharacter(
  14184. { name: "Lyla" },
  14185. {
  14186. front: {
  14187. height: math.unit(2, "feet"),
  14188. weight: math.unit(62, "lb"),
  14189. name: "Front",
  14190. image: {
  14191. source: "./media/characters/lyla/front.svg",
  14192. bottom: 0.1
  14193. }
  14194. },
  14195. },
  14196. [
  14197. {
  14198. name: "Normal",
  14199. height: math.unit(2, "feet"),
  14200. default: true
  14201. },
  14202. ]
  14203. ))
  14204. characterMakers.push(() => makeCharacter(
  14205. { name: "Perseus" },
  14206. {
  14207. side: {
  14208. height: math.unit(1.8, "feet"),
  14209. weight: math.unit(44, "lb"),
  14210. name: "Side",
  14211. image: {
  14212. source: "./media/characters/perseus/side.svg",
  14213. bottom: 0.21
  14214. }
  14215. },
  14216. },
  14217. [
  14218. {
  14219. name: "Normal",
  14220. height: math.unit(1.8, "feet"),
  14221. default: true
  14222. },
  14223. ]
  14224. ))
  14225. characterMakers.push(() => makeCharacter(
  14226. { name: "Remus" },
  14227. {
  14228. side: {
  14229. height: math.unit(4 + 2 / 12, "feet"),
  14230. weight: math.unit(20, "lb"),
  14231. name: "Side",
  14232. image: {
  14233. source: "./media/characters/remus/side.svg"
  14234. }
  14235. },
  14236. },
  14237. [
  14238. {
  14239. name: "Normal",
  14240. height: math.unit(4 + 2 / 12, "feet"),
  14241. default: true
  14242. },
  14243. ]
  14244. ))
  14245. characterMakers.push(() => makeCharacter(
  14246. { name: "Raf" },
  14247. {
  14248. front: {
  14249. height: math.unit(4 + 11 / 12, "feet"),
  14250. weight: math.unit(114, "lb"),
  14251. name: "Front",
  14252. image: {
  14253. source: "./media/characters/raf/front.svg",
  14254. bottom: 0.01
  14255. }
  14256. },
  14257. side: {
  14258. height: math.unit(4 + 11 / 12, "feet"),
  14259. weight: math.unit(114, "lb"),
  14260. name: "Side",
  14261. image: {
  14262. source: "./media/characters/raf/side.svg",
  14263. bottom: 0.005
  14264. }
  14265. },
  14266. },
  14267. [
  14268. {
  14269. name: "Micro",
  14270. height: math.unit(2, "inches")
  14271. },
  14272. {
  14273. name: "Normal",
  14274. height: math.unit(4 + 11 / 12, "feet"),
  14275. default: true
  14276. },
  14277. {
  14278. name: "Macro",
  14279. height: math.unit(70, "feet")
  14280. },
  14281. ]
  14282. ))
  14283. characterMakers.push(() => makeCharacter(
  14284. { name: "Liam Einarr" },
  14285. {
  14286. front: {
  14287. height: math.unit(1.5, "meters"),
  14288. weight: math.unit(68, "kg"),
  14289. name: "Front",
  14290. image: {
  14291. source: "./media/characters/liam-einarr/front.svg",
  14292. extra: 2822 / 2666
  14293. }
  14294. },
  14295. back: {
  14296. height: math.unit(1.5, "meters"),
  14297. weight: math.unit(68, "kg"),
  14298. name: "Back",
  14299. image: {
  14300. source: "./media/characters/liam-einarr/back.svg",
  14301. extra: 2822 / 2666,
  14302. bottom: 0.015
  14303. }
  14304. },
  14305. },
  14306. [
  14307. {
  14308. name: "Normal",
  14309. height: math.unit(1.5, "meters"),
  14310. default: true
  14311. },
  14312. {
  14313. name: "Macro",
  14314. height: math.unit(150, "meters")
  14315. },
  14316. {
  14317. name: "Megamacro",
  14318. height: math.unit(35, "km")
  14319. },
  14320. ]
  14321. ))
  14322. characterMakers.push(() => makeCharacter(
  14323. { name: "Linda" },
  14324. {
  14325. front: {
  14326. height: math.unit(6, "feet"),
  14327. weight: math.unit(75, "kg"),
  14328. name: "Front",
  14329. image: {
  14330. source: "./media/characters/linda/front.svg",
  14331. extra: 930 / 874,
  14332. bottom: 0.004
  14333. }
  14334. },
  14335. },
  14336. [
  14337. {
  14338. name: "Normal",
  14339. height: math.unit(6, "feet"),
  14340. default: true
  14341. },
  14342. ]
  14343. ))
  14344. characterMakers.push(() => makeCharacter(
  14345. { name: "Caylex" },
  14346. {
  14347. front: {
  14348. height: math.unit(6 + 8 / 12, "feet"),
  14349. weight: math.unit(220, "lb"),
  14350. name: "Front",
  14351. image: {
  14352. source: "./media/characters/caylex/front.svg",
  14353. extra: 821 / 772,
  14354. bottom: 0.07
  14355. }
  14356. },
  14357. back: {
  14358. height: math.unit(6 + 8 / 12, "feet"),
  14359. weight: math.unit(220, "lb"),
  14360. name: "Back",
  14361. image: {
  14362. source: "./media/characters/caylex/back.svg",
  14363. extra: 821 / 772,
  14364. bottom: 0.022
  14365. }
  14366. },
  14367. hand: {
  14368. height: math.unit(1.25, "feet"),
  14369. name: "Hand",
  14370. image: {
  14371. source: "./media/characters/caylex/hand.svg"
  14372. }
  14373. },
  14374. foot: {
  14375. height: math.unit(1.6, "feet"),
  14376. name: "Foot",
  14377. image: {
  14378. source: "./media/characters/caylex/foot.svg"
  14379. }
  14380. },
  14381. armored: {
  14382. height: math.unit(6 + 8 / 12, "feet"),
  14383. weight: math.unit(250, "lb"),
  14384. name: "Armored",
  14385. image: {
  14386. source: "./media/characters/caylex/armored.svg",
  14387. extra: 1420 / 1310,
  14388. bottom: 0.045
  14389. }
  14390. },
  14391. },
  14392. [
  14393. {
  14394. name: "Normal",
  14395. height: math.unit(6 + 8 / 12, "feet"),
  14396. default: true
  14397. },
  14398. {
  14399. name: "Normal+",
  14400. height: math.unit(12, "feet")
  14401. },
  14402. ]
  14403. ))
  14404. characterMakers.push(() => makeCharacter(
  14405. { name: "Alana" },
  14406. {
  14407. front: {
  14408. height: math.unit(7 + 6 / 12, "feet"),
  14409. weight: math.unit(288, "lb"),
  14410. name: "Front",
  14411. image: {
  14412. source: "./media/characters/alana/front.svg",
  14413. extra: 679 / 653,
  14414. bottom: 22.5 / 701
  14415. }
  14416. },
  14417. },
  14418. [
  14419. {
  14420. name: "Normal",
  14421. height: math.unit(7 + 6 / 12, "feet")
  14422. },
  14423. {
  14424. name: "Large",
  14425. height: math.unit(50, "feet")
  14426. },
  14427. {
  14428. name: "Macro",
  14429. height: math.unit(100, "feet"),
  14430. default: true
  14431. },
  14432. {
  14433. name: "Macro+",
  14434. height: math.unit(200, "feet")
  14435. },
  14436. ]
  14437. ))
  14438. characterMakers.push(() => makeCharacter(
  14439. { name: "Hasani" },
  14440. {
  14441. front: {
  14442. height: math.unit(6 + 1 / 12, "feet"),
  14443. weight: math.unit(210, "lb"),
  14444. name: "Front",
  14445. image: {
  14446. source: "./media/characters/hasani/front.svg",
  14447. extra: 244 / 232,
  14448. bottom: 0.01
  14449. }
  14450. },
  14451. back: {
  14452. height: math.unit(6 + 1 / 12, "feet"),
  14453. weight: math.unit(210, "lb"),
  14454. name: "Back",
  14455. image: {
  14456. source: "./media/characters/hasani/back.svg",
  14457. extra: 244 / 232,
  14458. bottom: 0.01
  14459. }
  14460. },
  14461. },
  14462. [
  14463. {
  14464. name: "Normal",
  14465. height: math.unit(6 + 1 / 12, "feet")
  14466. },
  14467. {
  14468. name: "Macro",
  14469. height: math.unit(175, "feet"),
  14470. default: true
  14471. },
  14472. ]
  14473. ))
  14474. characterMakers.push(() => makeCharacter(
  14475. { name: "Nita" },
  14476. {
  14477. front: {
  14478. height: math.unit(1.82, "meters"),
  14479. weight: math.unit(140, "lb"),
  14480. name: "Front",
  14481. image: {
  14482. source: "./media/characters/nita/front.svg",
  14483. extra: 2473 / 2363,
  14484. bottom: 0.01
  14485. }
  14486. },
  14487. },
  14488. [
  14489. {
  14490. name: "Normal",
  14491. height: math.unit(1.82, "m")
  14492. },
  14493. {
  14494. name: "Macro",
  14495. height: math.unit(300, "m")
  14496. },
  14497. {
  14498. name: "Mistake Canon",
  14499. height: math.unit(0.5, "miles"),
  14500. default: true
  14501. },
  14502. {
  14503. name: "Big Mistake",
  14504. height: math.unit(13, "miles")
  14505. },
  14506. {
  14507. name: "Playing God",
  14508. height: math.unit(2450, "miles")
  14509. },
  14510. ]
  14511. ))
  14512. characterMakers.push(() => makeCharacter(
  14513. { name: "Shiriko" },
  14514. {
  14515. front: {
  14516. height: math.unit(4, "feet"),
  14517. weight: math.unit(120, "lb"),
  14518. name: "Front",
  14519. image: {
  14520. source: "./media/characters/shiriko/front.svg",
  14521. extra: 195 / 188
  14522. }
  14523. },
  14524. },
  14525. [
  14526. {
  14527. name: "Normal",
  14528. height: math.unit(4, "feet"),
  14529. default: true
  14530. },
  14531. ]
  14532. ))
  14533. characterMakers.push(() => makeCharacter(
  14534. { name: "Deja" },
  14535. {
  14536. front: {
  14537. height: math.unit(6, "feet"),
  14538. name: "front",
  14539. image: {
  14540. source: "./media/characters/deja/front.svg",
  14541. extra: 926 / 840,
  14542. bottom: 0.07
  14543. }
  14544. },
  14545. },
  14546. [
  14547. {
  14548. name: "Planck Length",
  14549. height: math.unit(1.6e-35, "meters")
  14550. },
  14551. {
  14552. name: "Normal",
  14553. height: math.unit(30.48, "meters"),
  14554. default: true
  14555. },
  14556. {
  14557. name: "Universal",
  14558. height: math.unit(8.8e26, "meters")
  14559. },
  14560. ]
  14561. ))
  14562. characterMakers.push(() => makeCharacter(
  14563. { name: "Anima" },
  14564. {
  14565. side: {
  14566. height: math.unit(8, "feet"),
  14567. weight: math.unit(6300, "lb"),
  14568. name: "Side",
  14569. image: {
  14570. source: "./media/characters/anima/side.svg",
  14571. bottom: 0.035
  14572. }
  14573. },
  14574. },
  14575. [
  14576. {
  14577. name: "Normal",
  14578. height: math.unit(8, "feet"),
  14579. default: true
  14580. },
  14581. ]
  14582. ))
  14583. characterMakers.push(() => makeCharacter(
  14584. { name: "Bianca" },
  14585. {
  14586. front: {
  14587. height: math.unit(8, "feet"),
  14588. weight: math.unit(350, "lb"),
  14589. name: "Front",
  14590. image: {
  14591. source: "./media/characters/bianca/front.svg",
  14592. extra: 234 / 225,
  14593. bottom: 0.03
  14594. }
  14595. },
  14596. },
  14597. [
  14598. {
  14599. name: "Normal",
  14600. height: math.unit(8, "feet"),
  14601. default: true
  14602. },
  14603. ]
  14604. ))
  14605. characterMakers.push(() => makeCharacter(
  14606. { name: "Adinia" },
  14607. {
  14608. front: {
  14609. height: math.unit(6, "feet"),
  14610. weight: math.unit(150, "lb"),
  14611. name: "Front",
  14612. image: {
  14613. source: "./media/characters/adinia/front.svg",
  14614. extra: 1845 / 1672,
  14615. bottom: 0.02
  14616. }
  14617. },
  14618. back: {
  14619. height: math.unit(6, "feet"),
  14620. weight: math.unit(150, "lb"),
  14621. name: "Back",
  14622. image: {
  14623. source: "./media/characters/adinia/back.svg",
  14624. extra: 1845 / 1672,
  14625. bottom: 0.002
  14626. }
  14627. },
  14628. },
  14629. [
  14630. {
  14631. name: "Normal",
  14632. height: math.unit(11 + 5 / 12, "feet"),
  14633. default: true
  14634. },
  14635. ]
  14636. ))
  14637. characterMakers.push(() => makeCharacter(
  14638. { name: "Lykasa" },
  14639. {
  14640. front: {
  14641. height: math.unit(3, "meters"),
  14642. weight: math.unit(200, "kg"),
  14643. name: "Front",
  14644. image: {
  14645. source: "./media/characters/lykasa/front.svg",
  14646. extra: 1076 / 976,
  14647. bottom: 0.06
  14648. }
  14649. },
  14650. },
  14651. [
  14652. {
  14653. name: "Normal",
  14654. height: math.unit(3, "meters")
  14655. },
  14656. {
  14657. name: "Kaiku",
  14658. height: math.unit(120, "meters"),
  14659. default: true
  14660. },
  14661. {
  14662. name: "Mega Kaiju",
  14663. height: math.unit(240, "km")
  14664. },
  14665. {
  14666. name: "Giga Kaiju",
  14667. height: math.unit(400, "megameters")
  14668. },
  14669. {
  14670. name: "Tera Kaiju",
  14671. height: math.unit(800, "gigameters")
  14672. },
  14673. {
  14674. name: "Kaiju Dragon Goddess",
  14675. height: math.unit(26, "zettaparsecs")
  14676. },
  14677. ]
  14678. ))
  14679. characterMakers.push(() => makeCharacter(
  14680. { name: "Malfaren" },
  14681. {
  14682. side: {
  14683. height: math.unit(283 / 124 * 6, "feet"),
  14684. weight: math.unit(35000, "lb"),
  14685. name: "Side",
  14686. image: {
  14687. source: "./media/characters/malfaren/side.svg",
  14688. extra: 2500 / 1010,
  14689. bottom: 0.01
  14690. }
  14691. },
  14692. front: {
  14693. height: math.unit(22.36, "feet"),
  14694. weight: math.unit(35000, "lb"),
  14695. name: "Front",
  14696. image: {
  14697. source: "./media/characters/malfaren/front.svg",
  14698. extra: 1631 / 1476,
  14699. bottom: 0.01
  14700. }
  14701. },
  14702. maw: {
  14703. height: math.unit(6.9, "feet"),
  14704. name: "Maw",
  14705. image: {
  14706. source: "./media/characters/malfaren/maw.svg"
  14707. }
  14708. },
  14709. },
  14710. [
  14711. {
  14712. name: "Big",
  14713. height: math.unit(283 / 162 * 6, "feet"),
  14714. },
  14715. {
  14716. name: "Bigger",
  14717. height: math.unit(283 / 124 * 6, "feet")
  14718. },
  14719. {
  14720. name: "Massive",
  14721. height: math.unit(283 / 92 * 6, "feet"),
  14722. default: true
  14723. },
  14724. {
  14725. name: "👀💦",
  14726. height: math.unit(283 / 73 * 6, "feet"),
  14727. },
  14728. ]
  14729. ))
  14730. characterMakers.push(() => makeCharacter(
  14731. { name: "Kernel" },
  14732. {
  14733. front: {
  14734. height: math.unit(1.7, "m"),
  14735. weight: math.unit(70, "kg"),
  14736. name: "Front",
  14737. image: {
  14738. source: "./media/characters/kernel/front.svg",
  14739. extra: 222 / 210,
  14740. bottom: 0.007
  14741. }
  14742. },
  14743. },
  14744. [
  14745. {
  14746. name: "Nano",
  14747. height: math.unit(17, "micrometers")
  14748. },
  14749. {
  14750. name: "Micro",
  14751. height: math.unit(1.7, "mm")
  14752. },
  14753. {
  14754. name: "Small",
  14755. height: math.unit(1.7, "cm")
  14756. },
  14757. {
  14758. name: "Normal",
  14759. height: math.unit(1.7, "m"),
  14760. default: true
  14761. },
  14762. ]
  14763. ))
  14764. characterMakers.push(() => makeCharacter(
  14765. { name: "Jayne Folest" },
  14766. {
  14767. front: {
  14768. height: math.unit(1.75, "meters"),
  14769. weight: math.unit(65, "kg"),
  14770. name: "Front",
  14771. image: {
  14772. source: "./media/characters/jayne-folest/front.svg",
  14773. extra: 2115 / 2007,
  14774. bottom: 0.02
  14775. }
  14776. },
  14777. back: {
  14778. height: math.unit(1.75, "meters"),
  14779. weight: math.unit(65, "kg"),
  14780. name: "Back",
  14781. image: {
  14782. source: "./media/characters/jayne-folest/back.svg",
  14783. extra: 2115 / 2007,
  14784. bottom: 0.005
  14785. }
  14786. },
  14787. frontClothed: {
  14788. height: math.unit(1.75, "meters"),
  14789. weight: math.unit(65, "kg"),
  14790. name: "Front (Clothed)",
  14791. image: {
  14792. source: "./media/characters/jayne-folest/front-clothed.svg",
  14793. extra: 2115 / 2007,
  14794. bottom: 0.035
  14795. }
  14796. },
  14797. hand: {
  14798. height: math.unit(1 / 1.260, "feet"),
  14799. name: "Hand",
  14800. image: {
  14801. source: "./media/characters/jayne-folest/hand.svg"
  14802. }
  14803. },
  14804. foot: {
  14805. height: math.unit(1 / 0.918, "feet"),
  14806. name: "Foot",
  14807. image: {
  14808. source: "./media/characters/jayne-folest/foot.svg"
  14809. }
  14810. },
  14811. },
  14812. [
  14813. {
  14814. name: "Micro",
  14815. height: math.unit(4, "cm")
  14816. },
  14817. {
  14818. name: "Normal",
  14819. height: math.unit(1.75, "meters")
  14820. },
  14821. {
  14822. name: "Macro",
  14823. height: math.unit(47.5, "meters"),
  14824. default: true
  14825. },
  14826. ]
  14827. ))
  14828. characterMakers.push(() => makeCharacter(
  14829. { name: "Algier" },
  14830. {
  14831. front: {
  14832. height: math.unit(180, "cm"),
  14833. weight: math.unit(70, "kg"),
  14834. name: "Front",
  14835. image: {
  14836. source: "./media/characters/algier/front.svg",
  14837. extra: 596 / 572,
  14838. bottom: 0.04
  14839. }
  14840. },
  14841. back: {
  14842. height: math.unit(180, "cm"),
  14843. weight: math.unit(70, "kg"),
  14844. name: "Back",
  14845. image: {
  14846. source: "./media/characters/algier/back.svg",
  14847. extra: 596 / 572,
  14848. bottom: 0.025
  14849. }
  14850. },
  14851. frontdressed: {
  14852. height: math.unit(180, "cm"),
  14853. weight: math.unit(150, "kg"),
  14854. name: "Front-dressed",
  14855. image: {
  14856. source: "./media/characters/algier/front-dressed.svg",
  14857. extra: 596 / 572,
  14858. bottom: 0.038
  14859. }
  14860. },
  14861. },
  14862. [
  14863. {
  14864. name: "Micro",
  14865. height: math.unit(5, "cm")
  14866. },
  14867. {
  14868. name: "Normal",
  14869. height: math.unit(180, "cm"),
  14870. default: true
  14871. },
  14872. {
  14873. name: "Macro",
  14874. height: math.unit(64, "m")
  14875. },
  14876. ]
  14877. ))
  14878. characterMakers.push(() => makeCharacter(
  14879. { name: "Pretzel" },
  14880. {
  14881. upright: {
  14882. height: math.unit(7, "feet"),
  14883. weight: math.unit(300, "lb"),
  14884. name: "Upright",
  14885. image: {
  14886. source: "./media/characters/pretzel/upright.svg",
  14887. extra: 534 / 522,
  14888. bottom: 0.065
  14889. }
  14890. },
  14891. sprawling: {
  14892. height: math.unit(3.75, "feet"),
  14893. weight: math.unit(300, "lb"),
  14894. name: "Sprawling",
  14895. image: {
  14896. source: "./media/characters/pretzel/sprawling.svg",
  14897. extra: 314 / 281,
  14898. bottom: 0.1
  14899. }
  14900. },
  14901. tongue: {
  14902. height: math.unit(2, "feet"),
  14903. name: "Tongue",
  14904. image: {
  14905. source: "./media/characters/pretzel/tongue.svg"
  14906. }
  14907. },
  14908. },
  14909. [
  14910. {
  14911. name: "Normal",
  14912. height: math.unit(7, "feet"),
  14913. default: true
  14914. },
  14915. {
  14916. name: "Oversized",
  14917. height: math.unit(15, "feet")
  14918. },
  14919. {
  14920. name: "Huge",
  14921. height: math.unit(30, "feet")
  14922. },
  14923. {
  14924. name: "Macro",
  14925. height: math.unit(250, "feet")
  14926. },
  14927. ]
  14928. ))
  14929. characterMakers.push(() => makeCharacter(
  14930. { name: "Roxi" },
  14931. {
  14932. sideFront: {
  14933. height: math.unit(5 + 2 / 12, "feet"),
  14934. weight: math.unit(120, "lb"),
  14935. name: "Front Side",
  14936. image: {
  14937. source: "./media/characters/roxi/side-front.svg",
  14938. extra: 2924 / 2717,
  14939. bottom: 0.08
  14940. }
  14941. },
  14942. sideBack: {
  14943. height: math.unit(5 + 2 / 12, "feet"),
  14944. weight: math.unit(120, "lb"),
  14945. name: "Back Side",
  14946. image: {
  14947. source: "./media/characters/roxi/side-back.svg",
  14948. extra: 2904 / 2693,
  14949. bottom: 0.06
  14950. }
  14951. },
  14952. front: {
  14953. height: math.unit(5 + 2 / 12, "feet"),
  14954. weight: math.unit(120, "lb"),
  14955. name: "Front",
  14956. image: {
  14957. source: "./media/characters/roxi/front.svg",
  14958. extra: 2028 / 1907,
  14959. bottom: 0.01
  14960. }
  14961. },
  14962. frontAlt: {
  14963. height: math.unit(5 + 2 / 12, "feet"),
  14964. weight: math.unit(120, "lb"),
  14965. name: "Front (Alt)",
  14966. image: {
  14967. source: "./media/characters/roxi/front-alt.svg",
  14968. extra: 1828 / 1798,
  14969. bottom: 0.01
  14970. }
  14971. },
  14972. sitting: {
  14973. height: math.unit(2.8, "feet"),
  14974. weight: math.unit(120, "lb"),
  14975. name: "Sitting",
  14976. image: {
  14977. source: "./media/characters/roxi/sitting.svg",
  14978. extra: 2660 / 2462,
  14979. bottom: 0.1
  14980. }
  14981. },
  14982. },
  14983. [
  14984. {
  14985. name: "Normal",
  14986. height: math.unit(5 + 2 / 12, "feet"),
  14987. default: true
  14988. },
  14989. ]
  14990. ))
  14991. characterMakers.push(() => makeCharacter(
  14992. { name: "Shadow" },
  14993. {
  14994. side: {
  14995. height: math.unit(55, "feet"),
  14996. weight: math.unit(153, "tons"),
  14997. name: "Side",
  14998. image: {
  14999. source: "./media/characters/shadow/side.svg",
  15000. extra: 701 / 628,
  15001. bottom: 0.02
  15002. }
  15003. },
  15004. flying: {
  15005. height: math.unit(145, "feet"),
  15006. weight: math.unit(153, "tons"),
  15007. name: "Flying",
  15008. image: {
  15009. source: "./media/characters/shadow/flying.svg"
  15010. }
  15011. },
  15012. },
  15013. [
  15014. {
  15015. name: "Normal",
  15016. height: math.unit(55, "feet"),
  15017. default: true
  15018. },
  15019. ]
  15020. ))
  15021. characterMakers.push(() => makeCharacter(
  15022. { name: "Marcie" },
  15023. {
  15024. front: {
  15025. height: math.unit(6, "feet"),
  15026. weight: math.unit(200, "lb"),
  15027. name: "Front",
  15028. image: {
  15029. source: "./media/characters/marcie/front.svg",
  15030. extra: 960 / 876,
  15031. bottom: 58 / 1017.87
  15032. }
  15033. },
  15034. },
  15035. [
  15036. {
  15037. name: "Macro",
  15038. height: math.unit(1, "mile"),
  15039. default: true
  15040. },
  15041. ]
  15042. ))
  15043. characterMakers.push(() => makeCharacter(
  15044. { name: "Kachina" },
  15045. {
  15046. front: {
  15047. height: math.unit(7, "feet"),
  15048. weight: math.unit(200, "lb"),
  15049. name: "Front",
  15050. image: {
  15051. source: "./media/characters/kachina/front.svg",
  15052. extra: 1290.68 / 1119,
  15053. bottom: 36.5 / 1327.18
  15054. }
  15055. },
  15056. },
  15057. [
  15058. {
  15059. name: "Normal",
  15060. height: math.unit(7, "feet"),
  15061. default: true
  15062. },
  15063. ]
  15064. ))
  15065. characterMakers.push(() => makeCharacter(
  15066. { name: "Kash" },
  15067. {
  15068. looking: {
  15069. height: math.unit(2, "meters"),
  15070. weight: math.unit(300, "kg"),
  15071. name: "Looking",
  15072. image: {
  15073. source: "./media/characters/kash/looking.svg",
  15074. extra: 474 / 344,
  15075. bottom: 0.03
  15076. }
  15077. },
  15078. side: {
  15079. height: math.unit(2, "meters"),
  15080. weight: math.unit(300, "kg"),
  15081. name: "Side",
  15082. image: {
  15083. source: "./media/characters/kash/side.svg",
  15084. extra: 302 / 251,
  15085. bottom: 0.03
  15086. }
  15087. },
  15088. front: {
  15089. height: math.unit(2, "meters"),
  15090. weight: math.unit(300, "kg"),
  15091. name: "Front",
  15092. image: {
  15093. source: "./media/characters/kash/front.svg",
  15094. extra: 495 / 360,
  15095. bottom: 0.015
  15096. }
  15097. },
  15098. },
  15099. [
  15100. {
  15101. name: "Normal",
  15102. height: math.unit(2, "meters"),
  15103. default: true
  15104. },
  15105. {
  15106. name: "Big",
  15107. height: math.unit(3, "meters")
  15108. },
  15109. {
  15110. name: "Large",
  15111. height: math.unit(5, "meters")
  15112. },
  15113. ]
  15114. ))
  15115. characterMakers.push(() => makeCharacter(
  15116. { name: "Lalim" },
  15117. {
  15118. feeding: {
  15119. height: math.unit(6.7, "feet"),
  15120. weight: math.unit(350, "lb"),
  15121. name: "Feeding",
  15122. image: {
  15123. source: "./media/characters/lalim/feeding.svg",
  15124. }
  15125. },
  15126. },
  15127. [
  15128. {
  15129. name: "Normal",
  15130. height: math.unit(6.7, "feet"),
  15131. default: true
  15132. },
  15133. ]
  15134. ))
  15135. characterMakers.push(() => makeCharacter(
  15136. { name: "De'Vout" },
  15137. {
  15138. front: {
  15139. height: math.unit(9.5, "feet"),
  15140. weight: math.unit(600, "lb"),
  15141. name: "Front",
  15142. image: {
  15143. source: "./media/characters/de'vout/front.svg",
  15144. extra: 1443 / 1328,
  15145. bottom: 0.025
  15146. }
  15147. },
  15148. back: {
  15149. height: math.unit(9.5, "feet"),
  15150. weight: math.unit(600, "lb"),
  15151. name: "Back",
  15152. image: {
  15153. source: "./media/characters/de'vout/back.svg",
  15154. extra: 1443 / 1328
  15155. }
  15156. },
  15157. frontDressed: {
  15158. height: math.unit(9.5, "feet"),
  15159. weight: math.unit(600, "lb"),
  15160. name: "Front (Dressed",
  15161. image: {
  15162. source: "./media/characters/de'vout/front-dressed.svg",
  15163. extra: 1443 / 1328,
  15164. bottom: 0.025
  15165. }
  15166. },
  15167. backDressed: {
  15168. height: math.unit(9.5, "feet"),
  15169. weight: math.unit(600, "lb"),
  15170. name: "Back (Dressed",
  15171. image: {
  15172. source: "./media/characters/de'vout/back-dressed.svg",
  15173. extra: 1443 / 1328
  15174. }
  15175. },
  15176. },
  15177. [
  15178. {
  15179. name: "Normal",
  15180. height: math.unit(9.5, "feet"),
  15181. default: true
  15182. },
  15183. ]
  15184. ))
  15185. characterMakers.push(() => makeCharacter(
  15186. { name: "Talana" },
  15187. {
  15188. front: {
  15189. height: math.unit(8, "feet"),
  15190. weight: math.unit(225, "lb"),
  15191. name: "Front",
  15192. image: {
  15193. source: "./media/characters/talana/front.svg",
  15194. extra: 1410 / 1300,
  15195. bottom: 0.015
  15196. }
  15197. },
  15198. frontDressed: {
  15199. height: math.unit(8, "feet"),
  15200. weight: math.unit(225, "lb"),
  15201. name: "Front (Dressed",
  15202. image: {
  15203. source: "./media/characters/talana/front-dressed.svg",
  15204. extra: 1410 / 1300,
  15205. bottom: 0.015
  15206. }
  15207. },
  15208. },
  15209. [
  15210. {
  15211. name: "Normal",
  15212. height: math.unit(8, "feet"),
  15213. default: true
  15214. },
  15215. ]
  15216. ))
  15217. characterMakers.push(() => makeCharacter(
  15218. { name: "Xeauvok" },
  15219. {
  15220. side: {
  15221. height: math.unit(7.2, "feet"),
  15222. weight: math.unit(150, "lb"),
  15223. name: "Side",
  15224. image: {
  15225. source: "./media/characters/xeauvok/side.svg",
  15226. extra: 1975 / 1523,
  15227. bottom: 0.07
  15228. }
  15229. },
  15230. },
  15231. [
  15232. {
  15233. name: "Normal",
  15234. height: math.unit(7.2, "feet"),
  15235. default: true
  15236. },
  15237. ]
  15238. ))
  15239. characterMakers.push(() => makeCharacter(
  15240. { name: "Zara" },
  15241. {
  15242. side: {
  15243. height: math.unit(10, "feet"),
  15244. weight: math.unit(900, "kg"),
  15245. name: "Side",
  15246. image: {
  15247. source: "./media/characters/zara/side.svg",
  15248. extra: 504 / 498
  15249. }
  15250. },
  15251. },
  15252. [
  15253. {
  15254. name: "Normal",
  15255. height: math.unit(10, "feet"),
  15256. default: true
  15257. },
  15258. ]
  15259. ))
  15260. characterMakers.push(() => makeCharacter(
  15261. { name: "Richard (Dragon)" },
  15262. {
  15263. side: {
  15264. height: math.unit(6, "feet"),
  15265. weight: math.unit(150, "lb"),
  15266. name: "Side",
  15267. image: {
  15268. source: "./media/characters/richard-dragon/side.svg",
  15269. extra: 845 / 340,
  15270. bottom: 0.017
  15271. }
  15272. },
  15273. maw: {
  15274. height: math.unit(2.97, "feet"),
  15275. name: "Maw",
  15276. image: {
  15277. source: "./media/characters/richard-dragon/maw.svg"
  15278. }
  15279. },
  15280. },
  15281. [
  15282. ]
  15283. ))
  15284. characterMakers.push(() => makeCharacter(
  15285. { name: "Richard (Smeargle)" },
  15286. {
  15287. front: {
  15288. height: math.unit(4, "feet"),
  15289. weight: math.unit(100, "lb"),
  15290. name: "Front",
  15291. image: {
  15292. source: "./media/characters/richard-smeargle/front.svg",
  15293. extra: 2952 / 2820,
  15294. bottom: 0.028
  15295. }
  15296. },
  15297. },
  15298. [
  15299. {
  15300. name: "Normal",
  15301. height: math.unit(4, "feet"),
  15302. default: true
  15303. },
  15304. {
  15305. name: "Dynamax",
  15306. height: math.unit(20, "meters")
  15307. },
  15308. ]
  15309. ))
  15310. characterMakers.push(() => makeCharacter(
  15311. { name: "Klay" },
  15312. {
  15313. front: {
  15314. height: math.unit(6, "feet"),
  15315. weight: math.unit(110, "lb"),
  15316. name: "Front",
  15317. image: {
  15318. source: "./media/characters/klay/front.svg",
  15319. extra: 962 / 883,
  15320. bottom: 0.04
  15321. }
  15322. },
  15323. back: {
  15324. height: math.unit(6, "feet"),
  15325. weight: math.unit(110, "lb"),
  15326. name: "Back",
  15327. image: {
  15328. source: "./media/characters/klay/back.svg",
  15329. extra: 962 / 883
  15330. }
  15331. },
  15332. beans: {
  15333. height: math.unit(1.15, "feet"),
  15334. name: "Beans",
  15335. image: {
  15336. source: "./media/characters/klay/beans.svg"
  15337. }
  15338. },
  15339. },
  15340. [
  15341. {
  15342. name: "Micro",
  15343. height: math.unit(6, "inches")
  15344. },
  15345. {
  15346. name: "Mini",
  15347. height: math.unit(3, "feet")
  15348. },
  15349. {
  15350. name: "Normal",
  15351. height: math.unit(6, "feet"),
  15352. default: true
  15353. },
  15354. {
  15355. name: "Big",
  15356. height: math.unit(25, "feet")
  15357. },
  15358. {
  15359. name: "Macro",
  15360. height: math.unit(100, "feet")
  15361. },
  15362. {
  15363. name: "Megamacro",
  15364. height: math.unit(400, "feet")
  15365. },
  15366. ]
  15367. ))
  15368. characterMakers.push(() => makeCharacter(
  15369. { name: "Marcus" },
  15370. {
  15371. front: {
  15372. height: math.unit(6, "feet"),
  15373. weight: math.unit(160, "lb"),
  15374. name: "Front",
  15375. image: {
  15376. source: "./media/characters/marcus/front.svg",
  15377. extra: 734 / 676,
  15378. bottom: 0.03
  15379. }
  15380. },
  15381. },
  15382. [
  15383. {
  15384. name: "Little",
  15385. height: math.unit(6, "feet")
  15386. },
  15387. {
  15388. name: "Normal",
  15389. height: math.unit(110, "feet"),
  15390. default: true
  15391. },
  15392. {
  15393. name: "Macro",
  15394. height: math.unit(250, "feet")
  15395. },
  15396. {
  15397. name: "Megamacro",
  15398. height: math.unit(1000, "feet")
  15399. },
  15400. ]
  15401. ))
  15402. characterMakers.push(() => makeCharacter(
  15403. { name: "Claude DelRoute" },
  15404. {
  15405. front: {
  15406. height: math.unit(7, "feet"),
  15407. weight: math.unit(275, "lb"),
  15408. name: "Front",
  15409. image: {
  15410. source: "./media/characters/claude-delroute/front.svg",
  15411. extra: 230 / 214,
  15412. bottom: 0.007
  15413. }
  15414. },
  15415. side: {
  15416. height: math.unit(7, "feet"),
  15417. weight: math.unit(275, "lb"),
  15418. name: "Side",
  15419. image: {
  15420. source: "./media/characters/claude-delroute/side.svg",
  15421. extra: 222 / 214,
  15422. bottom: 0.01
  15423. }
  15424. },
  15425. back: {
  15426. height: math.unit(7, "feet"),
  15427. weight: math.unit(275, "lb"),
  15428. name: "Back",
  15429. image: {
  15430. source: "./media/characters/claude-delroute/back.svg",
  15431. extra: 230 / 214,
  15432. bottom: 0.015
  15433. }
  15434. },
  15435. maw: {
  15436. height: math.unit(0.6407, "meters"),
  15437. name: "Maw",
  15438. image: {
  15439. source: "./media/characters/claude-delroute/maw.svg"
  15440. }
  15441. },
  15442. },
  15443. [
  15444. {
  15445. name: "Normal",
  15446. height: math.unit(7, "feet"),
  15447. default: true
  15448. },
  15449. {
  15450. name: "Lorge",
  15451. height: math.unit(20, "feet")
  15452. },
  15453. ]
  15454. ))
  15455. characterMakers.push(() => makeCharacter(
  15456. { name: "Dragonien" },
  15457. {
  15458. front: {
  15459. height: math.unit(8 + 4 / 12, "feet"),
  15460. weight: math.unit(600, "lb"),
  15461. name: "Front",
  15462. image: {
  15463. source: "./media/characters/dragonien/front.svg",
  15464. extra: 100 / 94,
  15465. bottom: 3.3 / 103.3445
  15466. }
  15467. },
  15468. back: {
  15469. height: math.unit(8 + 4 / 12, "feet"),
  15470. weight: math.unit(600, "lb"),
  15471. name: "Back",
  15472. image: {
  15473. source: "./media/characters/dragonien/back.svg",
  15474. extra: 776 / 746,
  15475. bottom: 6.4 / 782.0616
  15476. }
  15477. },
  15478. foot: {
  15479. height: math.unit(1.54, "feet"),
  15480. name: "Foot",
  15481. image: {
  15482. source: "./media/characters/dragonien/foot.svg",
  15483. }
  15484. },
  15485. },
  15486. [
  15487. {
  15488. name: "Normal",
  15489. height: math.unit(8 + 4 / 12, "feet"),
  15490. default: true
  15491. },
  15492. {
  15493. name: "Macro",
  15494. height: math.unit(200, "feet")
  15495. },
  15496. {
  15497. name: "Megamacro",
  15498. height: math.unit(1, "mile")
  15499. },
  15500. {
  15501. name: "Gigamacro",
  15502. height: math.unit(1000, "miles")
  15503. },
  15504. ]
  15505. ))
  15506. characterMakers.push(() => makeCharacter(
  15507. { name: "Desta" },
  15508. {
  15509. front: {
  15510. height: math.unit(5 + 2 / 12, "feet"),
  15511. weight: math.unit(110, "lb"),
  15512. name: "Front",
  15513. image: {
  15514. source: "./media/characters/desta/front.svg",
  15515. extra: 1482 / 1417
  15516. }
  15517. },
  15518. side: {
  15519. height: math.unit(5 + 2 / 12, "feet"),
  15520. weight: math.unit(110, "lb"),
  15521. name: "Side",
  15522. image: {
  15523. source: "./media/characters/desta/side.svg",
  15524. extra: 2579 / 2491,
  15525. bottom: 0.053
  15526. }
  15527. },
  15528. },
  15529. [
  15530. {
  15531. name: "Micro",
  15532. height: math.unit(6, "inches")
  15533. },
  15534. {
  15535. name: "Normal",
  15536. height: math.unit(5 + 2 / 12, "feet"),
  15537. default: true
  15538. },
  15539. {
  15540. name: "Macro",
  15541. height: math.unit(62, "feet")
  15542. },
  15543. {
  15544. name: "Megamacro",
  15545. height: math.unit(1800, "feet")
  15546. },
  15547. ]
  15548. ))
  15549. characterMakers.push(() => makeCharacter(
  15550. { name: "Storm Alystar" },
  15551. {
  15552. front: {
  15553. height: math.unit(10, "feet"),
  15554. weight: math.unit(700, "lb"),
  15555. name: "Front",
  15556. image: {
  15557. source: "./media/characters/storm-alystar/front.svg",
  15558. extra: 2112 / 1898,
  15559. bottom: 0.034
  15560. }
  15561. },
  15562. },
  15563. [
  15564. {
  15565. name: "Micro",
  15566. height: math.unit(3.5, "inches")
  15567. },
  15568. {
  15569. name: "Normal",
  15570. height: math.unit(10, "feet"),
  15571. default: true
  15572. },
  15573. {
  15574. name: "Macro",
  15575. height: math.unit(400, "feet")
  15576. },
  15577. {
  15578. name: "Deific",
  15579. height: math.unit(60, "miles")
  15580. },
  15581. ]
  15582. ))
  15583. characterMakers.push(() => makeCharacter(
  15584. { name: "Ilia" },
  15585. {
  15586. front: {
  15587. height: math.unit(2.35, "meters"),
  15588. weight: math.unit(119, "kg"),
  15589. name: "Front",
  15590. image: {
  15591. source: "./media/characters/ilia/front.svg",
  15592. extra: 1285 / 1255,
  15593. bottom: 0.06
  15594. }
  15595. },
  15596. },
  15597. [
  15598. {
  15599. name: "Normal",
  15600. height: math.unit(2.35, "meters")
  15601. },
  15602. {
  15603. name: "Macro",
  15604. height: math.unit(140, "meters"),
  15605. default: true
  15606. },
  15607. {
  15608. name: "Megamacro",
  15609. height: math.unit(100, "miles")
  15610. },
  15611. ]
  15612. ))
  15613. characterMakers.push(() => makeCharacter(
  15614. { name: "KingDead" },
  15615. {
  15616. front: {
  15617. height: math.unit(6 + 5 / 12, "feet"),
  15618. weight: math.unit(190, "lb"),
  15619. name: "Front",
  15620. image: {
  15621. source: "./media/characters/kingdead/front.svg",
  15622. extra: 1228 / 1177
  15623. }
  15624. },
  15625. },
  15626. [
  15627. {
  15628. name: "Micro",
  15629. height: math.unit(7, "inches")
  15630. },
  15631. {
  15632. name: "Normal",
  15633. height: math.unit(6 + 5 / 12, "feet")
  15634. },
  15635. {
  15636. name: "Macro",
  15637. height: math.unit(150, "feet"),
  15638. default: true
  15639. },
  15640. {
  15641. name: "Megamacro",
  15642. height: math.unit(200, "miles")
  15643. },
  15644. ]
  15645. ))
  15646. characterMakers.push(() => makeCharacter(
  15647. { name: "Kyrehx" },
  15648. {
  15649. front: {
  15650. height: math.unit(8, "feet"),
  15651. weight: math.unit(600, "lb"),
  15652. name: "Front",
  15653. image: {
  15654. source: "./media/characters/kyrehx/front.svg",
  15655. extra: 1195 / 1095,
  15656. bottom: 0.034
  15657. }
  15658. },
  15659. },
  15660. [
  15661. {
  15662. name: "Micro",
  15663. height: math.unit(2, "inches")
  15664. },
  15665. {
  15666. name: "Normal",
  15667. height: math.unit(8, "feet"),
  15668. default: true
  15669. },
  15670. {
  15671. name: "Macro",
  15672. height: math.unit(255, "feet")
  15673. },
  15674. ]
  15675. ))
  15676. characterMakers.push(() => makeCharacter(
  15677. { name: "Xang" },
  15678. {
  15679. front: {
  15680. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15681. weight: math.unit(184, "lb"),
  15682. name: "Front",
  15683. image: {
  15684. source: "./media/characters/xang/front.svg",
  15685. extra: 845 / 755
  15686. }
  15687. },
  15688. },
  15689. [
  15690. {
  15691. name: "Normal",
  15692. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15693. default: true
  15694. },
  15695. {
  15696. name: "Macro",
  15697. height: math.unit(0.935 * 146, "feet")
  15698. },
  15699. {
  15700. name: "Megamacro",
  15701. height: math.unit(0.935 * 3, "miles")
  15702. },
  15703. ]
  15704. ))
  15705. characterMakers.push(() => makeCharacter(
  15706. { name: "Doc Weardno" },
  15707. {
  15708. frontDressed: {
  15709. height: math.unit(5 + 7 / 12, "feet"),
  15710. weight: math.unit(140, "lb"),
  15711. name: "Front (Dressed)",
  15712. image: {
  15713. source: "./media/characters/doc-weardno/front-dressed.svg",
  15714. extra: 263 / 234
  15715. }
  15716. },
  15717. backDressed: {
  15718. height: math.unit(5 + 7 / 12, "feet"),
  15719. weight: math.unit(140, "lb"),
  15720. name: "Back (Dressed)",
  15721. image: {
  15722. source: "./media/characters/doc-weardno/back-dressed.svg",
  15723. extra: 266 / 238
  15724. }
  15725. },
  15726. front: {
  15727. height: math.unit(5 + 7 / 12, "feet"),
  15728. weight: math.unit(140, "lb"),
  15729. name: "Front",
  15730. image: {
  15731. source: "./media/characters/doc-weardno/front.svg",
  15732. extra: 254 / 233
  15733. }
  15734. },
  15735. },
  15736. [
  15737. {
  15738. name: "Micro",
  15739. height: math.unit(3, "inches")
  15740. },
  15741. {
  15742. name: "Normal",
  15743. height: math.unit(5 + 7 / 12, "feet"),
  15744. default: true
  15745. },
  15746. {
  15747. name: "Macro",
  15748. height: math.unit(25, "feet")
  15749. },
  15750. {
  15751. name: "Megamacro",
  15752. height: math.unit(2, "miles")
  15753. },
  15754. ]
  15755. ))
  15756. characterMakers.push(() => makeCharacter(
  15757. { name: "Seth Whilst" },
  15758. {
  15759. front: {
  15760. height: math.unit(6 + 2 / 12, "feet"),
  15761. weight: math.unit(153, "lb"),
  15762. name: "Front",
  15763. image: {
  15764. source: "./media/characters/seth-whilst/front.svg",
  15765. bottom: 0.07
  15766. }
  15767. },
  15768. },
  15769. [
  15770. {
  15771. name: "Micro",
  15772. height: math.unit(5, "inches")
  15773. },
  15774. {
  15775. name: "Normal",
  15776. height: math.unit(6 + 2 / 12, "feet"),
  15777. default: true
  15778. },
  15779. ]
  15780. ))
  15781. characterMakers.push(() => makeCharacter(
  15782. { name: "Pocket Jabari" },
  15783. {
  15784. front: {
  15785. height: math.unit(3, "inches"),
  15786. weight: math.unit(8, "grams"),
  15787. name: "Front",
  15788. image: {
  15789. source: "./media/characters/pocket-jabari/front.svg",
  15790. extra: 1024 / 974,
  15791. bottom: 0.039
  15792. }
  15793. },
  15794. },
  15795. [
  15796. {
  15797. name: "Minimicro",
  15798. height: math.unit(8, "mm")
  15799. },
  15800. {
  15801. name: "Micro",
  15802. height: math.unit(3, "inches"),
  15803. default: true
  15804. },
  15805. {
  15806. name: "Normal",
  15807. height: math.unit(3, "feet")
  15808. },
  15809. ]
  15810. ))
  15811. characterMakers.push(() => makeCharacter(
  15812. { name: "Sapphy" },
  15813. {
  15814. front: {
  15815. height: math.unit(15, "feet"),
  15816. weight: math.unit(3280, "lb"),
  15817. name: "Front",
  15818. image: {
  15819. source: "./media/characters/sapphy/front.svg",
  15820. extra: 671 / 577,
  15821. bottom: 0.085
  15822. }
  15823. },
  15824. back: {
  15825. height: math.unit(15, "feet"),
  15826. weight: math.unit(3280, "lb"),
  15827. name: "Back",
  15828. image: {
  15829. source: "./media/characters/sapphy/back.svg",
  15830. extra: 631 / 607,
  15831. bottom: 0.045
  15832. }
  15833. },
  15834. },
  15835. [
  15836. {
  15837. name: "Normal",
  15838. height: math.unit(15, "feet")
  15839. },
  15840. {
  15841. name: "Casual Macro",
  15842. height: math.unit(120, "feet")
  15843. },
  15844. {
  15845. name: "Macro",
  15846. height: math.unit(2150, "feet"),
  15847. default: true
  15848. },
  15849. {
  15850. name: "Megamacro",
  15851. height: math.unit(8, "miles")
  15852. },
  15853. {
  15854. name: "Galaxy Mom",
  15855. height: math.unit(6, "megalightyears")
  15856. },
  15857. ]
  15858. ))
  15859. characterMakers.push(() => makeCharacter(
  15860. { name: "Kiro" },
  15861. {
  15862. front: {
  15863. height: math.unit(6, "feet"),
  15864. weight: math.unit(170, "lb"),
  15865. name: "Front",
  15866. image: {
  15867. source: "./media/characters/kiro/front.svg",
  15868. extra: 1064 / 1012,
  15869. bottom: 0.052
  15870. }
  15871. },
  15872. },
  15873. [
  15874. {
  15875. name: "Micro",
  15876. height: math.unit(6, "inches")
  15877. },
  15878. {
  15879. name: "Normal",
  15880. height: math.unit(6, "feet"),
  15881. default: true
  15882. },
  15883. {
  15884. name: "Macro",
  15885. height: math.unit(72, "feet")
  15886. },
  15887. ]
  15888. ))
  15889. characterMakers.push(() => makeCharacter(
  15890. { name: "Irishfox" },
  15891. {
  15892. front: {
  15893. height: math.unit(5 + 9 / 12, "feet"),
  15894. weight: math.unit(175, "lb"),
  15895. name: "Front",
  15896. image: {
  15897. source: "./media/characters/irishfox/front.svg",
  15898. extra: 1912 / 1680,
  15899. bottom: 0.02
  15900. }
  15901. },
  15902. },
  15903. [
  15904. {
  15905. name: "Nano",
  15906. height: math.unit(1, "mm")
  15907. },
  15908. {
  15909. name: "Micro",
  15910. height: math.unit(2, "inches")
  15911. },
  15912. {
  15913. name: "Normal",
  15914. height: math.unit(5 + 9 / 12, "feet"),
  15915. default: true
  15916. },
  15917. {
  15918. name: "Macro",
  15919. height: math.unit(45, "feet")
  15920. },
  15921. ]
  15922. ))
  15923. characterMakers.push(() => makeCharacter(
  15924. { name: "Aronai Sieyes" },
  15925. {
  15926. front: {
  15927. height: math.unit(6 + 1 / 12, "feet"),
  15928. weight: math.unit(150, "lb"),
  15929. name: "Front",
  15930. image: {
  15931. source: "./media/characters/aronai-sieyes/front.svg",
  15932. extra: 1556 / 1480,
  15933. bottom: 0.015
  15934. }
  15935. },
  15936. side: {
  15937. height: math.unit(6 + 1 / 12, "feet"),
  15938. weight: math.unit(150, "lb"),
  15939. name: "Side",
  15940. image: {
  15941. source: "./media/characters/aronai-sieyes/side.svg",
  15942. extra: 1433 / 1390,
  15943. bottom: 0.0393
  15944. }
  15945. },
  15946. back: {
  15947. height: math.unit(6 + 1 / 12, "feet"),
  15948. weight: math.unit(150, "lb"),
  15949. name: "Back",
  15950. image: {
  15951. source: "./media/characters/aronai-sieyes/back.svg",
  15952. extra: 1544 / 1494,
  15953. bottom: 0.02
  15954. }
  15955. },
  15956. frontClothed: {
  15957. height: math.unit(6 + 1 / 12, "feet"),
  15958. weight: math.unit(150, "lb"),
  15959. name: "Front (Clothed)",
  15960. image: {
  15961. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  15962. extra: 1582 / 1527
  15963. }
  15964. },
  15965. feral: {
  15966. height: math.unit(18, "feet"),
  15967. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  15968. name: "Feral",
  15969. image: {
  15970. source: "./media/characters/aronai-sieyes/feral.svg",
  15971. extra: 1530 / 1240,
  15972. bottom: 0.035
  15973. }
  15974. },
  15975. },
  15976. [
  15977. {
  15978. name: "Micro",
  15979. height: math.unit(2, "inches")
  15980. },
  15981. {
  15982. name: "Normal",
  15983. height: math.unit(6 + 1 / 12, "feet"),
  15984. default: true
  15985. }
  15986. ]
  15987. ))
  15988. characterMakers.push(() => makeCharacter(
  15989. { name: "Xuna" },
  15990. {
  15991. front: {
  15992. height: math.unit(12, "feet"),
  15993. weight: math.unit(410, "kg"),
  15994. name: "Front",
  15995. image: {
  15996. source: "./media/characters/xuna/front.svg",
  15997. extra: 2184 / 1980
  15998. }
  15999. },
  16000. side: {
  16001. height: math.unit(12, "feet"),
  16002. weight: math.unit(410, "kg"),
  16003. name: "Side",
  16004. image: {
  16005. source: "./media/characters/xuna/side.svg",
  16006. extra: 2184 / 1980
  16007. }
  16008. },
  16009. back: {
  16010. height: math.unit(12, "feet"),
  16011. weight: math.unit(410, "kg"),
  16012. name: "Back",
  16013. image: {
  16014. source: "./media/characters/xuna/back.svg",
  16015. extra: 2184 / 1980
  16016. }
  16017. },
  16018. },
  16019. [
  16020. {
  16021. name: "Nano glow",
  16022. height: math.unit(10, "nm")
  16023. },
  16024. {
  16025. name: "Micro floof",
  16026. height: math.unit(0.3, "m")
  16027. },
  16028. {
  16029. name: "Huggable softy boi",
  16030. height: math.unit(3.6576, "m"),
  16031. default: true
  16032. },
  16033. {
  16034. name: "Admirable floof",
  16035. height: math.unit(80, "meters")
  16036. },
  16037. {
  16038. name: "Gentle macro",
  16039. height: math.unit(300, "meters")
  16040. },
  16041. {
  16042. name: "Very careful floof",
  16043. height: math.unit(3200, "meters")
  16044. },
  16045. {
  16046. name: "The mega floof",
  16047. height: math.unit(36000, "meters")
  16048. },
  16049. {
  16050. name: "Giga-fur-Wicker",
  16051. height: math.unit(4800000, "meters")
  16052. },
  16053. {
  16054. name: "Licky world",
  16055. height: math.unit(20000000, "meters")
  16056. },
  16057. {
  16058. name: "Floofy cyan sun",
  16059. height: math.unit(1500000000, "meters")
  16060. },
  16061. {
  16062. name: "Milky Wicker",
  16063. height: math.unit(1000000000000000000000, "meters")
  16064. },
  16065. {
  16066. name: "The observing Wicker",
  16067. height: math.unit(999999999999999999999999999, "meters")
  16068. },
  16069. ]
  16070. ))
  16071. characterMakers.push(() => makeCharacter(
  16072. { name: "Arokha Sieyes" },
  16073. {
  16074. front: {
  16075. height: math.unit(5 + 9 / 12, "feet"),
  16076. weight: math.unit(150, "lb"),
  16077. name: "Front",
  16078. image: {
  16079. source: "./media/characters/arokha-sieyes/front.svg",
  16080. extra: 1425 / 1284,
  16081. bottom: 0.05
  16082. }
  16083. },
  16084. },
  16085. [
  16086. {
  16087. name: "Normal",
  16088. height: math.unit(5 + 9 / 12, "feet")
  16089. },
  16090. {
  16091. name: "Macro",
  16092. height: math.unit(30, "meters"),
  16093. default: true
  16094. },
  16095. ]
  16096. ))
  16097. characterMakers.push(() => makeCharacter(
  16098. { name: "Arokh Sieyes" },
  16099. {
  16100. front: {
  16101. height: math.unit(6, "feet"),
  16102. weight: math.unit(180, "lb"),
  16103. name: "Front",
  16104. image: {
  16105. source: "./media/characters/arokh-sieyes/front.svg",
  16106. extra: 1830 / 1769,
  16107. bottom: 0.01
  16108. }
  16109. },
  16110. },
  16111. [
  16112. {
  16113. name: "Normal",
  16114. height: math.unit(6, "feet")
  16115. },
  16116. {
  16117. name: "Macro",
  16118. height: math.unit(30, "meters"),
  16119. default: true
  16120. },
  16121. ]
  16122. ))
  16123. characterMakers.push(() => makeCharacter(
  16124. { name: "Goldeneye" },
  16125. {
  16126. side: {
  16127. height: math.unit(13 + 1 / 12, "feet"),
  16128. weight: math.unit(8.5, "tonnes"),
  16129. name: "Side",
  16130. image: {
  16131. source: "./media/characters/goldeneye/side.svg",
  16132. extra: 1182 / 778,
  16133. bottom: 0.067
  16134. }
  16135. },
  16136. paw: {
  16137. height: math.unit(3.4, "feet"),
  16138. name: "Paw",
  16139. image: {
  16140. source: "./media/characters/goldeneye/paw.svg"
  16141. }
  16142. },
  16143. },
  16144. [
  16145. {
  16146. name: "Normal",
  16147. height: math.unit(13 + 1 / 12, "feet"),
  16148. default: true
  16149. },
  16150. ]
  16151. ))
  16152. characterMakers.push(() => makeCharacter(
  16153. { name: "Leonardo Lycheborne" },
  16154. {
  16155. front: {
  16156. height: math.unit(6 + 1 / 12, "feet"),
  16157. weight: math.unit(210, "lb"),
  16158. name: "Front",
  16159. image: {
  16160. source: "./media/characters/leonardo-lycheborne/front.svg",
  16161. extra: 390 / 365,
  16162. bottom: 0.032
  16163. }
  16164. },
  16165. side: {
  16166. height: math.unit(6 + 1 / 12, "feet"),
  16167. weight: math.unit(210, "lb"),
  16168. name: "Side",
  16169. image: {
  16170. source: "./media/characters/leonardo-lycheborne/side.svg",
  16171. extra: 390 / 365,
  16172. bottom: 0.005
  16173. }
  16174. },
  16175. back: {
  16176. height: math.unit(6 + 1 / 12, "feet"),
  16177. weight: math.unit(210, "lb"),
  16178. name: "Back",
  16179. image: {
  16180. source: "./media/characters/leonardo-lycheborne/back.svg",
  16181. extra: 392 / 366,
  16182. bottom: 0.01
  16183. }
  16184. },
  16185. hand: {
  16186. height: math.unit(1.08, "feet"),
  16187. name: "Hand",
  16188. image: {
  16189. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16190. }
  16191. },
  16192. foot: {
  16193. height: math.unit(1.32, "feet"),
  16194. name: "Foot",
  16195. image: {
  16196. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16197. }
  16198. },
  16199. were: {
  16200. height: math.unit(20, "feet"),
  16201. weight: math.unit(7800, "lb"),
  16202. name: "Were",
  16203. image: {
  16204. source: "./media/characters/leonardo-lycheborne/were.svg",
  16205. extra: 308 / 294,
  16206. bottom: 0.048
  16207. }
  16208. },
  16209. feral: {
  16210. height: math.unit(7.5, "feet"),
  16211. weight: math.unit(600, "lb"),
  16212. name: "Feral",
  16213. image: {
  16214. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16215. extra: 210 / 186,
  16216. bottom: 0.108
  16217. }
  16218. },
  16219. taur: {
  16220. height: math.unit(11, "feet"),
  16221. weight: math.unit(3300, "lb"),
  16222. name: "Taur",
  16223. image: {
  16224. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16225. extra: 320 / 303,
  16226. bottom: 0.025
  16227. }
  16228. },
  16229. barghest: {
  16230. height: math.unit(11, "feet"),
  16231. weight: math.unit(1300, "lb"),
  16232. name: "Barghest",
  16233. image: {
  16234. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16235. extra: 323 / 302,
  16236. bottom: 0.027
  16237. }
  16238. },
  16239. dick: {
  16240. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16241. name: "Dick",
  16242. image: {
  16243. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16244. }
  16245. },
  16246. dickWere: {
  16247. height: math.unit((20) / 3.8, "feet"),
  16248. name: "Dick (Were)",
  16249. image: {
  16250. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16251. }
  16252. },
  16253. },
  16254. [
  16255. {
  16256. name: "Normal",
  16257. height: math.unit(6 + 1 / 12, "feet"),
  16258. default: true
  16259. },
  16260. ]
  16261. ))
  16262. characterMakers.push(() => makeCharacter(
  16263. { name: "Jet" },
  16264. {
  16265. front: {
  16266. height: math.unit(10, "feet"),
  16267. weight: math.unit(350, "lb"),
  16268. name: "Front",
  16269. image: {
  16270. source: "./media/characters/jet/front.svg",
  16271. extra: 2050 / 1980,
  16272. bottom: 0.013
  16273. }
  16274. },
  16275. back: {
  16276. height: math.unit(10, "feet"),
  16277. weight: math.unit(350, "lb"),
  16278. name: "Back",
  16279. image: {
  16280. source: "./media/characters/jet/back.svg",
  16281. extra: 2050 / 1980,
  16282. bottom: 0.013
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Micro",
  16289. height: math.unit(6, "inches")
  16290. },
  16291. {
  16292. name: "Normal",
  16293. height: math.unit(10, "feet"),
  16294. default: true
  16295. },
  16296. {
  16297. name: "Macro",
  16298. height: math.unit(100, "feet")
  16299. },
  16300. ]
  16301. ))
  16302. characterMakers.push(() => makeCharacter(
  16303. { name: "Tanarath" },
  16304. {
  16305. front: {
  16306. height: math.unit(15, "feet"),
  16307. weight: math.unit(2800, "lb"),
  16308. name: "Front",
  16309. image: {
  16310. source: "./media/characters/tanarath/front.svg",
  16311. extra: 2392 / 2220,
  16312. bottom: 0.03
  16313. }
  16314. },
  16315. back: {
  16316. height: math.unit(15, "feet"),
  16317. weight: math.unit(2800, "lb"),
  16318. name: "Back",
  16319. image: {
  16320. source: "./media/characters/tanarath/back.svg",
  16321. extra: 2392 / 2220,
  16322. bottom: 0.03
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Normal",
  16329. height: math.unit(15, "feet"),
  16330. default: true
  16331. },
  16332. ]
  16333. ))
  16334. characterMakers.push(() => makeCharacter(
  16335. { name: "Patty CattyBatty" },
  16336. {
  16337. front: {
  16338. height: math.unit(7 + 1 / 12, "feet"),
  16339. weight: math.unit(175, "lb"),
  16340. name: "Front",
  16341. image: {
  16342. source: "./media/characters/patty-cattybatty/front.svg",
  16343. extra: 908 / 874,
  16344. bottom: 0.025
  16345. }
  16346. },
  16347. },
  16348. [
  16349. {
  16350. name: "Micro",
  16351. height: math.unit(1, "inch")
  16352. },
  16353. {
  16354. name: "Normal",
  16355. height: math.unit(7 + 1 / 12, "feet")
  16356. },
  16357. {
  16358. name: "Mini Macro",
  16359. height: math.unit(155, "feet")
  16360. },
  16361. {
  16362. name: "Macro",
  16363. height: math.unit(1077, "feet")
  16364. },
  16365. {
  16366. name: "Mega Macro",
  16367. height: math.unit(47650, "feet"),
  16368. default: true
  16369. },
  16370. {
  16371. name: "Giga Macro",
  16372. height: math.unit(440, "miles")
  16373. },
  16374. {
  16375. name: "Tera Macro",
  16376. height: math.unit(8700, "miles")
  16377. },
  16378. {
  16379. name: "Planetary Macro",
  16380. height: math.unit(32700, "miles")
  16381. },
  16382. {
  16383. name: "Solar Macro",
  16384. height: math.unit(550000, "miles")
  16385. },
  16386. {
  16387. name: "Celestial Macro",
  16388. height: math.unit(2.5, "AU")
  16389. },
  16390. ]
  16391. ))
  16392. characterMakers.push(() => makeCharacter(
  16393. { name: "Cappu" },
  16394. {
  16395. front: {
  16396. height: math.unit(4 + 5 / 12, "feet"),
  16397. weight: math.unit(90, "lb"),
  16398. name: "Front",
  16399. image: {
  16400. source: "./media/characters/cappu/front.svg",
  16401. extra: 1247 / 1152,
  16402. bottom: 0.012
  16403. }
  16404. },
  16405. },
  16406. [
  16407. {
  16408. name: "Normal",
  16409. height: math.unit(4 + 5 / 12, "feet"),
  16410. default: true
  16411. },
  16412. ]
  16413. ))
  16414. characterMakers.push(() => makeCharacter(
  16415. { name: "Sebi" },
  16416. {
  16417. frontDressed: {
  16418. height: math.unit(70, "cm"),
  16419. weight: math.unit(6, "kg"),
  16420. name: "Front (Dressed)",
  16421. image: {
  16422. source: "./media/characters/sebi/front-dressed.svg",
  16423. extra: 713.5 / 686.5,
  16424. bottom: 0.003
  16425. }
  16426. },
  16427. front: {
  16428. height: math.unit(70, "cm"),
  16429. weight: math.unit(5, "kg"),
  16430. name: "Front",
  16431. image: {
  16432. source: "./media/characters/sebi/front.svg",
  16433. extra: 713.5 / 686.5,
  16434. bottom: 0.003
  16435. }
  16436. }
  16437. },
  16438. [
  16439. {
  16440. name: "Normal",
  16441. height: math.unit(70, "cm"),
  16442. default: true
  16443. },
  16444. {
  16445. name: "Macro",
  16446. height: math.unit(8, "meters")
  16447. },
  16448. ]
  16449. ))
  16450. characterMakers.push(() => makeCharacter(
  16451. { name: "Typhek" },
  16452. {
  16453. front: {
  16454. height: math.unit(6, "feet"),
  16455. weight: math.unit(150, "lb"),
  16456. name: "Front",
  16457. image: {
  16458. source: "./media/characters/typhek/front.svg",
  16459. extra: 1948 / 1929,
  16460. bottom: 0.025
  16461. }
  16462. },
  16463. side: {
  16464. height: math.unit(6, "feet"),
  16465. weight: math.unit(150, "lb"),
  16466. name: "Side",
  16467. image: {
  16468. source: "./media/characters/typhek/side.svg",
  16469. extra: 2034 / 2010,
  16470. bottom: 0.003
  16471. }
  16472. },
  16473. back: {
  16474. height: math.unit(6, "feet"),
  16475. weight: math.unit(150, "lb"),
  16476. name: "Back",
  16477. image: {
  16478. source: "./media/characters/typhek/back.svg",
  16479. extra: 2005 / 1978,
  16480. bottom: 0.004
  16481. }
  16482. },
  16483. palm: {
  16484. height: math.unit(1.2, "feet"),
  16485. name: "Palm",
  16486. image: {
  16487. source: "./media/characters/typhek/palm.svg"
  16488. }
  16489. },
  16490. fist: {
  16491. height: math.unit(1.1, "feet"),
  16492. name: "Fist",
  16493. image: {
  16494. source: "./media/characters/typhek/fist.svg"
  16495. }
  16496. },
  16497. foot: {
  16498. height: math.unit(1.57, "feet"),
  16499. name: "Foot",
  16500. image: {
  16501. source: "./media/characters/typhek/foot.svg"
  16502. }
  16503. },
  16504. sole: {
  16505. height: math.unit(2.05, "feet"),
  16506. name: "Sole",
  16507. image: {
  16508. source: "./media/characters/typhek/sole.svg"
  16509. }
  16510. },
  16511. },
  16512. [
  16513. {
  16514. name: "Macro",
  16515. height: math.unit(40, "stories"),
  16516. default: true
  16517. },
  16518. {
  16519. name: "Megamacro",
  16520. height: math.unit(1, "mile")
  16521. },
  16522. {
  16523. name: "Gigamacro",
  16524. height: math.unit(4000, "solarradii")
  16525. },
  16526. {
  16527. name: "Universal",
  16528. height: math.unit(1.1, "universes")
  16529. }
  16530. ]
  16531. ))
  16532. characterMakers.push(() => makeCharacter(
  16533. { name: "Kassy" },
  16534. {
  16535. side: {
  16536. height: math.unit(5 + 7 / 12, "feet"),
  16537. weight: math.unit(150, "lb"),
  16538. name: "Side",
  16539. image: {
  16540. source: "./media/characters/kassy/side.svg",
  16541. extra: 1280 / 1225,
  16542. bottom: 0.002
  16543. }
  16544. },
  16545. front: {
  16546. height: math.unit(5 + 7 / 12, "feet"),
  16547. weight: math.unit(150, "lb"),
  16548. name: "Front",
  16549. image: {
  16550. source: "./media/characters/kassy/front.svg",
  16551. extra: 1280 / 1225,
  16552. bottom: 0.025
  16553. }
  16554. },
  16555. back: {
  16556. height: math.unit(5 + 7 / 12, "feet"),
  16557. weight: math.unit(150, "lb"),
  16558. name: "Back",
  16559. image: {
  16560. source: "./media/characters/kassy/back.svg",
  16561. extra: 1280 / 1225,
  16562. bottom: 0.002
  16563. }
  16564. },
  16565. foot: {
  16566. height: math.unit(1.266, "feet"),
  16567. name: "Foot",
  16568. image: {
  16569. source: "./media/characters/kassy/foot.svg"
  16570. }
  16571. },
  16572. },
  16573. [
  16574. {
  16575. name: "Normal",
  16576. height: math.unit(5 + 7 / 12, "feet")
  16577. },
  16578. {
  16579. name: "Macro",
  16580. height: math.unit(137, "feet"),
  16581. default: true
  16582. },
  16583. {
  16584. name: "Megamacro",
  16585. height: math.unit(1, "mile")
  16586. },
  16587. ]
  16588. ))
  16589. characterMakers.push(() => makeCharacter(
  16590. { name: "Neil" },
  16591. {
  16592. front: {
  16593. height: math.unit(6 + 1 / 12, "feet"),
  16594. weight: math.unit(200, "lb"),
  16595. name: "Front",
  16596. image: {
  16597. source: "./media/characters/neil/front.svg",
  16598. extra: 1326 / 1250,
  16599. bottom: 0.023
  16600. }
  16601. },
  16602. },
  16603. [
  16604. {
  16605. name: "Normal",
  16606. height: math.unit(6 + 1 / 12, "feet"),
  16607. default: true
  16608. },
  16609. {
  16610. name: "Macro",
  16611. height: math.unit(200, "feet")
  16612. },
  16613. ]
  16614. ))
  16615. characterMakers.push(() => makeCharacter(
  16616. { name: "Atticus" },
  16617. {
  16618. front: {
  16619. height: math.unit(5 + 9 / 12, "feet"),
  16620. weight: math.unit(190, "lb"),
  16621. name: "Front",
  16622. image: {
  16623. source: "./media/characters/atticus/front.svg",
  16624. extra: 2934 / 2785,
  16625. bottom: 0.025
  16626. }
  16627. },
  16628. },
  16629. [
  16630. {
  16631. name: "Normal",
  16632. height: math.unit(5 + 9 / 12, "feet"),
  16633. default: true
  16634. },
  16635. {
  16636. name: "Macro",
  16637. height: math.unit(180, "feet")
  16638. },
  16639. ]
  16640. ))
  16641. characterMakers.push(() => makeCharacter(
  16642. { name: "Milo" },
  16643. {
  16644. side: {
  16645. height: math.unit(9, "feet"),
  16646. weight: math.unit(650, "lb"),
  16647. name: "Side",
  16648. image: {
  16649. source: "./media/characters/milo/side.svg",
  16650. extra: 2644 / 2310,
  16651. bottom: 0.032
  16652. }
  16653. },
  16654. },
  16655. [
  16656. {
  16657. name: "Normal",
  16658. height: math.unit(9, "feet"),
  16659. default: true
  16660. },
  16661. {
  16662. name: "Macro",
  16663. height: math.unit(300, "feet")
  16664. },
  16665. ]
  16666. ))
  16667. characterMakers.push(() => makeCharacter(
  16668. { name: "Ijzer" },
  16669. {
  16670. side: {
  16671. height: math.unit(8, "meters"),
  16672. weight: math.unit(90000, "kg"),
  16673. name: "Side",
  16674. image: {
  16675. source: "./media/characters/ijzer/side.svg",
  16676. extra: 2756 / 1600,
  16677. bottom: 0.01
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Small",
  16684. height: math.unit(3, "meters")
  16685. },
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(8, "meters"),
  16689. default: true
  16690. },
  16691. {
  16692. name: "Normal+",
  16693. height: math.unit(10, "meters")
  16694. },
  16695. {
  16696. name: "Bigger",
  16697. height: math.unit(24, "meters")
  16698. },
  16699. {
  16700. name: "Huge",
  16701. height: math.unit(80, "meters")
  16702. },
  16703. ]
  16704. ))
  16705. characterMakers.push(() => makeCharacter(
  16706. { name: "Luca Cervicum" },
  16707. {
  16708. front: {
  16709. height: math.unit(6 + 2 / 12, "feet"),
  16710. weight: math.unit(153, "lb"),
  16711. name: "Front",
  16712. image: {
  16713. source: "./media/characters/luca-cervicum/front.svg",
  16714. extra: 370 / 327,
  16715. bottom: 0.015
  16716. }
  16717. },
  16718. back: {
  16719. height: math.unit(6 + 2 / 12, "feet"),
  16720. weight: math.unit(153, "lb"),
  16721. name: "Back",
  16722. image: {
  16723. source: "./media/characters/luca-cervicum/back.svg",
  16724. extra: 367 / 333,
  16725. bottom: 0.005
  16726. }
  16727. },
  16728. frontGear: {
  16729. height: math.unit(6 + 2 / 12, "feet"),
  16730. weight: math.unit(173, "lb"),
  16731. name: "Front (Gear)",
  16732. image: {
  16733. source: "./media/characters/luca-cervicum/front-gear.svg",
  16734. extra: 377 / 333,
  16735. bottom: 0.006
  16736. }
  16737. },
  16738. },
  16739. [
  16740. {
  16741. name: "Normal",
  16742. height: math.unit(6 + 2 / 12, "feet"),
  16743. default: true
  16744. },
  16745. ]
  16746. ))
  16747. characterMakers.push(() => makeCharacter(
  16748. { name: "Oliver" },
  16749. {
  16750. front: {
  16751. height: math.unit(6 + 1 / 12, "feet"),
  16752. weight: math.unit(304, "lb"),
  16753. name: "Front",
  16754. image: {
  16755. source: "./media/characters/oliver/front.svg",
  16756. extra: 157 / 143,
  16757. bottom: 0.08
  16758. }
  16759. },
  16760. },
  16761. [
  16762. {
  16763. name: "Normal",
  16764. height: math.unit(6 + 1 / 12, "feet"),
  16765. default: true
  16766. },
  16767. ]
  16768. ))
  16769. characterMakers.push(() => makeCharacter(
  16770. { name: "Shane" },
  16771. {
  16772. front: {
  16773. height: math.unit(5 + 7 / 12, "feet"),
  16774. weight: math.unit(140, "lb"),
  16775. name: "Front",
  16776. image: {
  16777. source: "./media/characters/shane/front.svg",
  16778. extra: 304 / 289,
  16779. bottom: 0.005
  16780. }
  16781. },
  16782. },
  16783. [
  16784. {
  16785. name: "Normal",
  16786. height: math.unit(5 + 7 / 12, "feet"),
  16787. default: true
  16788. },
  16789. ]
  16790. ))
  16791. characterMakers.push(() => makeCharacter(
  16792. { name: "Shin" },
  16793. {
  16794. front: {
  16795. height: math.unit(5 + 9 / 12, "feet"),
  16796. weight: math.unit(178, "lb"),
  16797. name: "Front",
  16798. image: {
  16799. source: "./media/characters/shin/front.svg",
  16800. extra: 159 / 151,
  16801. bottom: 0.015
  16802. }
  16803. },
  16804. },
  16805. [
  16806. {
  16807. name: "Normal",
  16808. height: math.unit(5 + 9 / 12, "feet"),
  16809. default: true
  16810. },
  16811. ]
  16812. ))
  16813. characterMakers.push(() => makeCharacter(
  16814. { name: "Xerxes" },
  16815. {
  16816. front: {
  16817. height: math.unit(5 + 10 / 12, "feet"),
  16818. weight: math.unit(168, "lb"),
  16819. name: "Front",
  16820. image: {
  16821. source: "./media/characters/xerxes/front.svg",
  16822. extra: 282 / 260,
  16823. bottom: 0.045
  16824. }
  16825. },
  16826. },
  16827. [
  16828. {
  16829. name: "Normal",
  16830. height: math.unit(5 + 10 / 12, "feet"),
  16831. default: true
  16832. },
  16833. ]
  16834. ))
  16835. characterMakers.push(() => makeCharacter(
  16836. { name: "Chaska" },
  16837. {
  16838. front: {
  16839. height: math.unit(6 + 7 / 12, "feet"),
  16840. weight: math.unit(208, "lb"),
  16841. name: "Front",
  16842. image: {
  16843. source: "./media/characters/chaska/front.svg",
  16844. extra: 332 / 319,
  16845. bottom: 0.015
  16846. }
  16847. },
  16848. },
  16849. [
  16850. {
  16851. name: "Normal",
  16852. height: math.unit(6 + 7 / 12, "feet"),
  16853. default: true
  16854. },
  16855. ]
  16856. ))
  16857. characterMakers.push(() => makeCharacter(
  16858. { name: "Enuk" },
  16859. {
  16860. front: {
  16861. height: math.unit(5 + 8 / 12, "feet"),
  16862. weight: math.unit(208, "lb"),
  16863. name: "Front",
  16864. image: {
  16865. source: "./media/characters/enuk/front.svg",
  16866. extra: 437 / 406,
  16867. bottom: 0.02
  16868. }
  16869. },
  16870. },
  16871. [
  16872. {
  16873. name: "Normal",
  16874. height: math.unit(5 + 8 / 12, "feet"),
  16875. default: true
  16876. },
  16877. ]
  16878. ))
  16879. characterMakers.push(() => makeCharacter(
  16880. { name: "Bruun" },
  16881. {
  16882. front: {
  16883. height: math.unit(5 + 10 / 12, "feet"),
  16884. weight: math.unit(252, "lb"),
  16885. name: "Front",
  16886. image: {
  16887. source: "./media/characters/bruun/front.svg",
  16888. extra: 197 / 187,
  16889. bottom: 0.012
  16890. }
  16891. },
  16892. },
  16893. [
  16894. {
  16895. name: "Normal",
  16896. height: math.unit(5 + 10 / 12, "feet"),
  16897. default: true
  16898. },
  16899. ]
  16900. ))
  16901. characterMakers.push(() => makeCharacter(
  16902. { name: "Alexeev" },
  16903. {
  16904. front: {
  16905. height: math.unit(6 + 10 / 12, "feet"),
  16906. weight: math.unit(255, "lb"),
  16907. name: "Front",
  16908. image: {
  16909. source: "./media/characters/alexeev/front.svg",
  16910. extra: 213 / 200,
  16911. bottom: 0.05
  16912. }
  16913. },
  16914. },
  16915. [
  16916. {
  16917. name: "Normal",
  16918. height: math.unit(6 + 10 / 12, "feet"),
  16919. default: true
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Evelyn" },
  16925. {
  16926. front: {
  16927. height: math.unit(2 + 8 / 12, "feet"),
  16928. weight: math.unit(22, "lb"),
  16929. name: "Front",
  16930. image: {
  16931. source: "./media/characters/evelyn/front.svg",
  16932. extra: 208 / 180
  16933. }
  16934. },
  16935. },
  16936. [
  16937. {
  16938. name: "Normal",
  16939. height: math.unit(2 + 8 / 12, "feet"),
  16940. default: true
  16941. },
  16942. ]
  16943. ))
  16944. characterMakers.push(() => makeCharacter(
  16945. { name: "Inca" },
  16946. {
  16947. front: {
  16948. height: math.unit(5 + 9 / 12, "feet"),
  16949. weight: math.unit(139, "lb"),
  16950. name: "Front",
  16951. image: {
  16952. source: "./media/characters/inca/front.svg",
  16953. extra: 294 / 291,
  16954. bottom: 0.03
  16955. }
  16956. },
  16957. },
  16958. [
  16959. {
  16960. name: "Normal",
  16961. height: math.unit(5 + 9 / 12, "feet"),
  16962. default: true
  16963. },
  16964. ]
  16965. ))
  16966. characterMakers.push(() => makeCharacter(
  16967. { name: "Magdalene" },
  16968. {
  16969. front: {
  16970. height: math.unit(5 + 1 / 12, "feet"),
  16971. weight: math.unit(84, "lb"),
  16972. name: "Front",
  16973. image: {
  16974. source: "./media/characters/magdalene/front.svg",
  16975. extra: 293 / 273
  16976. }
  16977. },
  16978. },
  16979. [
  16980. {
  16981. name: "Normal",
  16982. height: math.unit(5 + 1 / 12, "feet"),
  16983. default: true
  16984. },
  16985. ]
  16986. ))
  16987. characterMakers.push(() => makeCharacter(
  16988. { name: "Mera" },
  16989. {
  16990. front: {
  16991. height: math.unit(6 + 3 / 12, "feet"),
  16992. weight: math.unit(185, "lb"),
  16993. name: "Front",
  16994. image: {
  16995. source: "./media/characters/mera/front.svg",
  16996. extra: 291 / 277,
  16997. bottom: 0.03
  16998. }
  16999. },
  17000. },
  17001. [
  17002. {
  17003. name: "Normal",
  17004. height: math.unit(6 + 3 / 12, "feet"),
  17005. default: true
  17006. },
  17007. ]
  17008. ))
  17009. characterMakers.push(() => makeCharacter(
  17010. { name: "Ceres" },
  17011. {
  17012. front: {
  17013. height: math.unit(6 + 7 / 12, "feet"),
  17014. weight: math.unit(160, "lb"),
  17015. name: "Front",
  17016. image: {
  17017. source: "./media/characters/ceres/front.svg",
  17018. extra: 1023 / 950,
  17019. bottom: 0.027
  17020. }
  17021. },
  17022. back: {
  17023. height: math.unit(6 + 7 / 12, "feet"),
  17024. weight: math.unit(160, "lb"),
  17025. name: "Back",
  17026. image: {
  17027. source: "./media/characters/ceres/back.svg",
  17028. extra: 1023 / 950
  17029. }
  17030. },
  17031. },
  17032. [
  17033. {
  17034. name: "Normal",
  17035. height: math.unit(6 + 7 / 12, "feet"),
  17036. default: true
  17037. },
  17038. ]
  17039. ))
  17040. characterMakers.push(() => makeCharacter(
  17041. { name: "Kris" },
  17042. {
  17043. front: {
  17044. height: math.unit(5 + 10 / 12, "feet"),
  17045. weight: math.unit(150, "lb"),
  17046. name: "Front",
  17047. image: {
  17048. source: "./media/characters/kris/front.svg",
  17049. extra: 885 / 803,
  17050. bottom: 0.03
  17051. }
  17052. },
  17053. },
  17054. [
  17055. {
  17056. name: "Normal",
  17057. height: math.unit(5 + 10 / 12, "feet"),
  17058. default: true
  17059. },
  17060. ]
  17061. ))
  17062. characterMakers.push(() => makeCharacter(
  17063. { name: "Taluthus" },
  17064. {
  17065. front: {
  17066. height: math.unit(7, "feet"),
  17067. weight: math.unit(120, "kg"),
  17068. name: "Front",
  17069. image: {
  17070. source: "./media/characters/taluthus/front.svg",
  17071. extra: 903 / 833,
  17072. bottom: 0.015
  17073. }
  17074. },
  17075. },
  17076. [
  17077. {
  17078. name: "Normal",
  17079. height: math.unit(7, "feet"),
  17080. default: true
  17081. },
  17082. {
  17083. name: "Macro",
  17084. height: math.unit(300, "feet")
  17085. },
  17086. ]
  17087. ))
  17088. characterMakers.push(() => makeCharacter(
  17089. { name: "Dawn" },
  17090. {
  17091. front: {
  17092. height: math.unit(5 + 9 / 12, "feet"),
  17093. weight: math.unit(145, "lb"),
  17094. name: "Front",
  17095. image: {
  17096. source: "./media/characters/dawn/front.svg",
  17097. extra: 2094 / 2016,
  17098. bottom: 0.025
  17099. }
  17100. },
  17101. back: {
  17102. height: math.unit(5 + 9 / 12, "feet"),
  17103. weight: math.unit(160, "lb"),
  17104. name: "Back",
  17105. image: {
  17106. source: "./media/characters/dawn/back.svg",
  17107. extra: 2112 / 2080,
  17108. bottom: 0.005
  17109. }
  17110. },
  17111. },
  17112. [
  17113. {
  17114. name: "Normal",
  17115. height: math.unit(6 + 7 / 12, "feet"),
  17116. default: true
  17117. },
  17118. ]
  17119. ))
  17120. characterMakers.push(() => makeCharacter(
  17121. { name: "Arador" },
  17122. {
  17123. anthro: {
  17124. height: math.unit(8 + 3 / 12, "feet"),
  17125. weight: math.unit(450, "lb"),
  17126. name: "Anthro",
  17127. image: {
  17128. source: "./media/characters/arador/anthro.svg",
  17129. extra: 1835 / 1718,
  17130. bottom: 0.025
  17131. }
  17132. },
  17133. feral: {
  17134. height: math.unit(4, "feet"),
  17135. weight: math.unit(200, "lb"),
  17136. name: "Feral",
  17137. image: {
  17138. source: "./media/characters/arador/feral.svg",
  17139. extra: 1683 / 1514,
  17140. bottom: 0.07
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Normal",
  17147. height: math.unit(8 + 3 / 12, "feet")
  17148. },
  17149. {
  17150. name: "Macro",
  17151. height: math.unit(82.5, "feet"),
  17152. default: true
  17153. },
  17154. ]
  17155. ))
  17156. characterMakers.push(() => makeCharacter(
  17157. { name: "Dharsi" },
  17158. {
  17159. front: {
  17160. height: math.unit(5 + 10 / 12, "feet"),
  17161. weight: math.unit(125, "lb"),
  17162. name: "Front",
  17163. image: {
  17164. source: "./media/characters/dharsi/front.svg",
  17165. extra: 716 / 630,
  17166. bottom: 0.035
  17167. }
  17168. },
  17169. },
  17170. [
  17171. {
  17172. name: "Nano",
  17173. height: math.unit(100, "nm")
  17174. },
  17175. {
  17176. name: "Micro",
  17177. height: math.unit(2, "inches")
  17178. },
  17179. {
  17180. name: "Normal",
  17181. height: math.unit(5 + 10 / 12, "feet"),
  17182. default: true
  17183. },
  17184. {
  17185. name: "Macro",
  17186. height: math.unit(1000, "feet")
  17187. },
  17188. {
  17189. name: "Megamacro",
  17190. height: math.unit(10, "miles")
  17191. },
  17192. {
  17193. name: "Gigamacro",
  17194. height: math.unit(3000, "miles")
  17195. },
  17196. {
  17197. name: "Teramacro",
  17198. height: math.unit(500000, "miles")
  17199. },
  17200. {
  17201. name: "Teramacro+",
  17202. height: math.unit(30, "galaxies")
  17203. },
  17204. ]
  17205. ))
  17206. characterMakers.push(() => makeCharacter(
  17207. { name: "Deathy" },
  17208. {
  17209. front: {
  17210. height: math.unit(6, "feet"),
  17211. weight: math.unit(150, "lb"),
  17212. name: "Front",
  17213. image: {
  17214. source: "./media/characters/deathy/front.svg",
  17215. extra: 1552 / 1463,
  17216. bottom: 0.025
  17217. }
  17218. },
  17219. side: {
  17220. height: math.unit(6, "feet"),
  17221. weight: math.unit(150, "lb"),
  17222. name: "Side",
  17223. image: {
  17224. source: "./media/characters/deathy/side.svg",
  17225. extra: 1604 / 1455,
  17226. bottom: 0.025
  17227. }
  17228. },
  17229. back: {
  17230. height: math.unit(6, "feet"),
  17231. weight: math.unit(150, "lb"),
  17232. name: "Back",
  17233. image: {
  17234. source: "./media/characters/deathy/back.svg",
  17235. extra: 1580 / 1463,
  17236. bottom: 0.005
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Micro",
  17243. height: math.unit(5, "millimeters")
  17244. },
  17245. {
  17246. name: "Normal",
  17247. height: math.unit(6 + 5 / 12, "feet"),
  17248. default: true
  17249. },
  17250. ]
  17251. ))
  17252. characterMakers.push(() => makeCharacter(
  17253. { name: "Juniper" },
  17254. {
  17255. front: {
  17256. height: math.unit(16, "feet"),
  17257. weight: math.unit(4000, "lb"),
  17258. name: "Front",
  17259. image: {
  17260. source: "./media/characters/juniper/front.svg",
  17261. bottom: 0.04
  17262. }
  17263. },
  17264. },
  17265. [
  17266. {
  17267. name: "Normal",
  17268. height: math.unit(16, "feet"),
  17269. default: true
  17270. },
  17271. ]
  17272. ))
  17273. characterMakers.push(() => makeCharacter(
  17274. { name: "Hipster" },
  17275. {
  17276. front: {
  17277. height: math.unit(6, "feet"),
  17278. weight: math.unit(150, "lb"),
  17279. name: "Front",
  17280. image: {
  17281. source: "./media/characters/hipster/front.svg",
  17282. extra: 1312 / 1209,
  17283. bottom: 0.025
  17284. }
  17285. },
  17286. back: {
  17287. height: math.unit(6, "feet"),
  17288. weight: math.unit(150, "lb"),
  17289. name: "Back",
  17290. image: {
  17291. source: "./media/characters/hipster/back.svg",
  17292. extra: 1281 / 1196,
  17293. bottom: 0.01
  17294. }
  17295. },
  17296. },
  17297. [
  17298. {
  17299. name: "Micro",
  17300. height: math.unit(1, "mm")
  17301. },
  17302. {
  17303. name: "Normal",
  17304. height: math.unit(4, "inches"),
  17305. default: true
  17306. },
  17307. {
  17308. name: "Macro",
  17309. height: math.unit(500, "feet")
  17310. },
  17311. {
  17312. name: "Megamacro",
  17313. height: math.unit(1000, "miles")
  17314. },
  17315. ]
  17316. ))
  17317. characterMakers.push(() => makeCharacter(
  17318. { name: "Tendirmuldr" },
  17319. {
  17320. front: {
  17321. height: math.unit(6, "feet"),
  17322. weight: math.unit(150, "lb"),
  17323. name: "Front",
  17324. image: {
  17325. source: "./media/characters/tendirmuldr/front.svg",
  17326. extra: 1878 / 1772,
  17327. bottom: 0.015
  17328. }
  17329. },
  17330. },
  17331. [
  17332. {
  17333. name: "Megamacro",
  17334. height: math.unit(1500, "miles"),
  17335. default: true
  17336. },
  17337. ]
  17338. ))
  17339. characterMakers.push(() => makeCharacter(
  17340. { name: "Mort" },
  17341. {
  17342. front: {
  17343. height: math.unit(14, "feet"),
  17344. weight: math.unit(12000, "lb"),
  17345. name: "Front",
  17346. image: {
  17347. source: "./media/characters/mort/front.svg",
  17348. extra: 365 / 318,
  17349. bottom: 0.01
  17350. }
  17351. },
  17352. side: {
  17353. height: math.unit(14, "feet"),
  17354. weight: math.unit(12000, "lb"),
  17355. name: "Side",
  17356. image: {
  17357. source: "./media/characters/mort/side.svg",
  17358. extra: 365 / 318,
  17359. bottom: 0.052
  17360. },
  17361. default: true
  17362. },
  17363. back: {
  17364. height: math.unit(14, "feet"),
  17365. weight: math.unit(12000, "lb"),
  17366. name: "Back",
  17367. image: {
  17368. source: "./media/characters/mort/back.svg",
  17369. extra: 371 / 332,
  17370. bottom: 0.18
  17371. }
  17372. },
  17373. },
  17374. [
  17375. {
  17376. name: "Normal",
  17377. height: math.unit(14, "feet"),
  17378. default: true
  17379. },
  17380. ]
  17381. ))
  17382. characterMakers.push(() => makeCharacter(
  17383. { name: "Lycoa" },
  17384. {
  17385. front: {
  17386. height: math.unit(8, "feet"),
  17387. weight: math.unit(1, "ton"),
  17388. name: "Front",
  17389. image: {
  17390. source: "./media/characters/lycoa/front.svg",
  17391. extra: 1875 / 1789,
  17392. bottom: 0.022
  17393. }
  17394. },
  17395. back: {
  17396. height: math.unit(8, "feet"),
  17397. weight: math.unit(1, "ton"),
  17398. name: "Back",
  17399. image: {
  17400. source: "./media/characters/lycoa/back.svg",
  17401. extra: 1835 / 1781,
  17402. bottom: 0.03
  17403. }
  17404. },
  17405. },
  17406. [
  17407. {
  17408. name: "Normal",
  17409. height: math.unit(8, "feet"),
  17410. default: true
  17411. },
  17412. {
  17413. name: "Macro",
  17414. height: math.unit(30, "feet")
  17415. },
  17416. ]
  17417. ))
  17418. characterMakers.push(() => makeCharacter(
  17419. { name: "Naldara" },
  17420. {
  17421. front: {
  17422. height: math.unit(4 + 2 / 12, "feet"),
  17423. weight: math.unit(70, "lb"),
  17424. name: "Front",
  17425. image: {
  17426. source: "./media/characters/naldara/front.svg",
  17427. extra: 841 / 720,
  17428. bottom: 0.04
  17429. }
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Normal",
  17435. height: math.unit(4 + 2 / 12, "feet"),
  17436. default: true
  17437. },
  17438. ]
  17439. ))
  17440. characterMakers.push(() => makeCharacter(
  17441. { name: "Briar" },
  17442. {
  17443. front: {
  17444. height: math.unit(13 + 7 / 12, "feet"),
  17445. weight: math.unit(1500, "lb"),
  17446. name: "Front",
  17447. image: {
  17448. source: "./media/characters/briar/front.svg",
  17449. extra: 626 / 596,
  17450. bottom: 0.08
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Normal",
  17457. height: math.unit(13 + 7 / 12, "feet"),
  17458. default: true
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Vanguard" },
  17464. {
  17465. side: {
  17466. height: math.unit(10, "feet"),
  17467. weight: math.unit(500, "lb"),
  17468. name: "Side",
  17469. image: {
  17470. source: "./media/characters/vanguard/side.svg",
  17471. extra: 502 / 425,
  17472. bottom: 0.087
  17473. }
  17474. },
  17475. },
  17476. [
  17477. {
  17478. name: "Normal",
  17479. height: math.unit(10, "feet"),
  17480. default: true
  17481. },
  17482. ]
  17483. ))
  17484. characterMakers.push(() => makeCharacter(
  17485. { name: "Artemis" },
  17486. {
  17487. front: {
  17488. height: math.unit(7.5, "feet"),
  17489. weight: math.unit(2, "lb"),
  17490. name: "Front",
  17491. image: {
  17492. source: "./media/characters/artemis/front.svg",
  17493. extra: 1192 / 1075,
  17494. bottom: 0.07
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Normal",
  17501. height: math.unit(7.5, "feet"),
  17502. default: true
  17503. },
  17504. {
  17505. name: "Enlarged",
  17506. height: math.unit(12, "feet")
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Kira" },
  17512. {
  17513. front: {
  17514. height: math.unit(5 + 3 / 12, "feet"),
  17515. weight: math.unit(160, "lb"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/kira/front.svg",
  17519. extra: 906 / 786,
  17520. bottom: 0.01
  17521. }
  17522. },
  17523. back: {
  17524. height: math.unit(5 + 3 / 12, "feet"),
  17525. weight: math.unit(160, "lb"),
  17526. name: "Back",
  17527. image: {
  17528. source: "./media/characters/kira/back.svg",
  17529. extra: 882 / 757,
  17530. bottom: 0.005
  17531. }
  17532. },
  17533. frontDressed: {
  17534. height: math.unit(5 + 3 / 12, "feet"),
  17535. weight: math.unit(160, "lb"),
  17536. name: "Front (Dressed)",
  17537. image: {
  17538. source: "./media/characters/kira/front-dressed.svg",
  17539. extra: 906 / 786,
  17540. bottom: 0.01
  17541. }
  17542. },
  17543. beans: {
  17544. height: math.unit(0.92, "feet"),
  17545. name: "Beans",
  17546. image: {
  17547. source: "./media/characters/kira/beans.svg"
  17548. }
  17549. },
  17550. },
  17551. [
  17552. {
  17553. name: "Normal",
  17554. height: math.unit(5 + 3 / 12, "feet"),
  17555. default: true
  17556. },
  17557. ]
  17558. ))
  17559. characterMakers.push(() => makeCharacter(
  17560. { name: "Scramble" },
  17561. {
  17562. front: {
  17563. height: math.unit(5 + 4 / 12, "feet"),
  17564. weight: math.unit(145, "lb"),
  17565. name: "Front",
  17566. image: {
  17567. source: "./media/characters/scramble/front.svg",
  17568. extra: 763 / 727,
  17569. bottom: 0.05
  17570. }
  17571. },
  17572. back: {
  17573. height: math.unit(5 + 4 / 12, "feet"),
  17574. weight: math.unit(145, "lb"),
  17575. name: "Back",
  17576. image: {
  17577. source: "./media/characters/scramble/back.svg",
  17578. extra: 826 / 737,
  17579. bottom: 0.002
  17580. }
  17581. },
  17582. },
  17583. [
  17584. {
  17585. name: "Normal",
  17586. height: math.unit(5 + 4 / 12, "feet"),
  17587. default: true
  17588. },
  17589. ]
  17590. ))
  17591. characterMakers.push(() => makeCharacter(
  17592. { name: "Biscuit" },
  17593. {
  17594. side: {
  17595. height: math.unit(6 + 2 / 12, "feet"),
  17596. weight: math.unit(190, "lb"),
  17597. name: "Side",
  17598. image: {
  17599. source: "./media/characters/biscuit/side.svg",
  17600. extra: 858 / 791,
  17601. bottom: 0.044
  17602. }
  17603. },
  17604. },
  17605. [
  17606. {
  17607. name: "Normal",
  17608. height: math.unit(6 + 2 / 12, "feet"),
  17609. default: true
  17610. },
  17611. ]
  17612. ))
  17613. characterMakers.push(() => makeCharacter(
  17614. { name: "Poffin" },
  17615. {
  17616. front: {
  17617. height: math.unit(5 + 2 / 12, "feet"),
  17618. weight: math.unit(120, "lb"),
  17619. name: "Front",
  17620. image: {
  17621. source: "./media/characters/poffin/front.svg",
  17622. extra: 786 / 680,
  17623. bottom: 0.005
  17624. }
  17625. },
  17626. },
  17627. [
  17628. {
  17629. name: "Normal",
  17630. height: math.unit(5 + 2 / 12, "feet"),
  17631. default: true
  17632. },
  17633. ]
  17634. ))
  17635. characterMakers.push(() => makeCharacter(
  17636. { name: "Dhari" },
  17637. {
  17638. front: {
  17639. height: math.unit(6 + 3 / 12, "feet"),
  17640. weight: math.unit(519, "lb"),
  17641. name: "Front",
  17642. image: {
  17643. source: "./media/characters/dhari/front.svg",
  17644. extra: 1048 / 946,
  17645. bottom: 0.015
  17646. }
  17647. },
  17648. back: {
  17649. height: math.unit(6 + 3 / 12, "feet"),
  17650. weight: math.unit(519, "lb"),
  17651. name: "Back",
  17652. image: {
  17653. source: "./media/characters/dhari/back.svg",
  17654. extra: 1048 / 931,
  17655. bottom: 0.005
  17656. }
  17657. },
  17658. frontDressed: {
  17659. height: math.unit(6 + 3 / 12, "feet"),
  17660. weight: math.unit(519, "lb"),
  17661. name: "Front (Dressed)",
  17662. image: {
  17663. source: "./media/characters/dhari/front-dressed.svg",
  17664. extra: 1713 / 1546,
  17665. bottom: 0.02
  17666. }
  17667. },
  17668. backDressed: {
  17669. height: math.unit(6 + 3 / 12, "feet"),
  17670. weight: math.unit(519, "lb"),
  17671. name: "Back (Dressed)",
  17672. image: {
  17673. source: "./media/characters/dhari/back-dressed.svg",
  17674. extra: 1699 / 1537,
  17675. bottom: 0.01
  17676. }
  17677. },
  17678. maw: {
  17679. height: math.unit(0.95, "feet"),
  17680. name: "Maw",
  17681. image: {
  17682. source: "./media/characters/dhari/maw.svg"
  17683. }
  17684. },
  17685. wereFront: {
  17686. height: math.unit(12 + 8 / 12, "feet"),
  17687. weight: math.unit(4000, "lb"),
  17688. name: "Front (Were)",
  17689. image: {
  17690. source: "./media/characters/dhari/were-front.svg",
  17691. extra: 1065 / 969,
  17692. bottom: 0.015
  17693. }
  17694. },
  17695. wereBack: {
  17696. height: math.unit(12 + 8 / 12, "feet"),
  17697. weight: math.unit(4000, "lb"),
  17698. name: "Back (Were)",
  17699. image: {
  17700. source: "./media/characters/dhari/were-back.svg",
  17701. extra: 1065 / 969,
  17702. bottom: 0.012
  17703. }
  17704. },
  17705. wereMaw: {
  17706. height: math.unit(0.625, "meters"),
  17707. name: "Maw (Were)",
  17708. image: {
  17709. source: "./media/characters/dhari/were-maw.svg"
  17710. }
  17711. },
  17712. },
  17713. [
  17714. {
  17715. name: "Normal",
  17716. height: math.unit(6 + 3 / 12, "feet"),
  17717. default: true
  17718. },
  17719. ]
  17720. ))
  17721. characterMakers.push(() => makeCharacter(
  17722. { name: "Rena Dyne" },
  17723. {
  17724. anthro: {
  17725. height: math.unit(5 + 7 / 12, "feet"),
  17726. weight: math.unit(175, "lb"),
  17727. name: "Anthro",
  17728. image: {
  17729. source: "./media/characters/rena-dyne/anthro.svg",
  17730. extra: 1849 / 1785,
  17731. bottom: 0.005
  17732. }
  17733. },
  17734. taur: {
  17735. height: math.unit(15 + 6 / 12, "feet"),
  17736. weight: math.unit(8000, "lb"),
  17737. name: "Taur",
  17738. image: {
  17739. source: "./media/characters/rena-dyne/taur.svg",
  17740. extra: 2315 / 2234,
  17741. bottom: 0.033
  17742. }
  17743. },
  17744. },
  17745. [
  17746. {
  17747. name: "Normal",
  17748. height: math.unit(5 + 7 / 12, "feet"),
  17749. default: true
  17750. },
  17751. ]
  17752. ))
  17753. characterMakers.push(() => makeCharacter(
  17754. { name: "Weremeep" },
  17755. {
  17756. front: {
  17757. height: math.unit(8, "feet"),
  17758. weight: math.unit(600, "lb"),
  17759. name: "Front",
  17760. image: {
  17761. source: "./media/characters/weremeep/front.svg",
  17762. extra: 967 / 862,
  17763. bottom: 0.01
  17764. }
  17765. },
  17766. },
  17767. [
  17768. {
  17769. name: "Normal",
  17770. height: math.unit(8, "feet"),
  17771. default: true
  17772. },
  17773. {
  17774. name: "Lorg",
  17775. height: math.unit(12, "feet")
  17776. },
  17777. {
  17778. name: "Oh Lawd She Comin'",
  17779. height: math.unit(20, "feet")
  17780. },
  17781. ]
  17782. ))
  17783. characterMakers.push(() => makeCharacter(
  17784. { name: "Reza" },
  17785. {
  17786. front: {
  17787. height: math.unit(4, "feet"),
  17788. weight: math.unit(90, "lb"),
  17789. name: "Front",
  17790. image: {
  17791. source: "./media/characters/reza/front.svg",
  17792. extra: 1183 / 1111,
  17793. bottom: 0.017
  17794. }
  17795. },
  17796. back: {
  17797. height: math.unit(4, "feet"),
  17798. weight: math.unit(90, "lb"),
  17799. name: "Back",
  17800. image: {
  17801. source: "./media/characters/reza/back.svg",
  17802. extra: 1183 / 1111,
  17803. bottom: 0.01
  17804. }
  17805. },
  17806. },
  17807. [
  17808. {
  17809. name: "Normal",
  17810. height: math.unit(4, "feet"),
  17811. default: true
  17812. },
  17813. ]
  17814. ))
  17815. characterMakers.push(() => makeCharacter(
  17816. { name: "Athea" },
  17817. {
  17818. side: {
  17819. height: math.unit(15, "feet"),
  17820. weight: math.unit(14, "tons"),
  17821. name: "Side",
  17822. image: {
  17823. source: "./media/characters/athea/side.svg",
  17824. extra: 960 / 540,
  17825. bottom: 0.003
  17826. }
  17827. },
  17828. sitting: {
  17829. height: math.unit(6 * 2.85, "feet"),
  17830. weight: math.unit(14, "tons"),
  17831. name: "Sitting",
  17832. image: {
  17833. source: "./media/characters/athea/sitting.svg",
  17834. extra: 621 / 581,
  17835. bottom: 0.075
  17836. }
  17837. },
  17838. maw: {
  17839. height: math.unit(7.59498031496063, "feet"),
  17840. name: "Maw",
  17841. image: {
  17842. source: "./media/characters/athea/maw.svg"
  17843. }
  17844. },
  17845. },
  17846. [
  17847. {
  17848. name: "Lap Cat",
  17849. height: math.unit(2.5, "feet")
  17850. },
  17851. {
  17852. name: "Minimacro",
  17853. height: math.unit(15, "feet"),
  17854. default: true
  17855. },
  17856. {
  17857. name: "Macro",
  17858. height: math.unit(120, "feet")
  17859. },
  17860. {
  17861. name: "Macro+",
  17862. height: math.unit(640, "feet")
  17863. },
  17864. {
  17865. name: "Colossus",
  17866. height: math.unit(2.2, "miles")
  17867. },
  17868. ]
  17869. ))
  17870. characterMakers.push(() => makeCharacter(
  17871. { name: "Seroko" },
  17872. {
  17873. front: {
  17874. height: math.unit(8 + 8 / 12, "feet"),
  17875. weight: math.unit(130, "kg"),
  17876. name: "Front",
  17877. image: {
  17878. source: "./media/characters/seroko/front.svg",
  17879. extra: 1385 / 1280,
  17880. bottom: 0.025
  17881. }
  17882. },
  17883. back: {
  17884. height: math.unit(8 + 8 / 12, "feet"),
  17885. weight: math.unit(130, "kg"),
  17886. name: "Back",
  17887. image: {
  17888. source: "./media/characters/seroko/back.svg",
  17889. extra: 1369 / 1238,
  17890. bottom: 0.018
  17891. }
  17892. },
  17893. frontDressed: {
  17894. height: math.unit(8 + 8 / 12, "feet"),
  17895. weight: math.unit(130, "kg"),
  17896. name: "Front (Dressed)",
  17897. image: {
  17898. source: "./media/characters/seroko/front-dressed.svg",
  17899. extra: 1366 / 1275,
  17900. bottom: 0.03
  17901. }
  17902. },
  17903. },
  17904. [
  17905. {
  17906. name: "Normal",
  17907. height: math.unit(8 + 8 / 12, "feet"),
  17908. default: true
  17909. },
  17910. ]
  17911. ))
  17912. characterMakers.push(() => makeCharacter(
  17913. { name: "Quatzi" },
  17914. {
  17915. front: {
  17916. height: math.unit(5.5, "feet"),
  17917. weight: math.unit(160, "lb"),
  17918. name: "Front",
  17919. image: {
  17920. source: "./media/characters/quatzi/front.svg",
  17921. extra: 2346 / 2242,
  17922. bottom: 0.015
  17923. }
  17924. },
  17925. },
  17926. [
  17927. {
  17928. name: "Normal",
  17929. height: math.unit(5.5, "feet"),
  17930. default: true
  17931. },
  17932. {
  17933. name: "Big",
  17934. height: math.unit(7.7, "feet")
  17935. },
  17936. ]
  17937. ))
  17938. characterMakers.push(() => makeCharacter(
  17939. { name: "Sen" },
  17940. {
  17941. front: {
  17942. height: math.unit(5 + 11 / 12, "feet"),
  17943. weight: math.unit(180, "lb"),
  17944. name: "Front",
  17945. image: {
  17946. source: "./media/characters/sen/front.svg",
  17947. extra: 1321 / 1254,
  17948. bottom: 0.015
  17949. }
  17950. },
  17951. side: {
  17952. height: math.unit(5 + 11 / 12, "feet"),
  17953. weight: math.unit(180, "lb"),
  17954. name: "Side",
  17955. image: {
  17956. source: "./media/characters/sen/side.svg",
  17957. extra: 1321 / 1254,
  17958. bottom: 0.007
  17959. }
  17960. },
  17961. back: {
  17962. height: math.unit(5 + 11 / 12, "feet"),
  17963. weight: math.unit(180, "lb"),
  17964. name: "Back",
  17965. image: {
  17966. source: "./media/characters/sen/back.svg",
  17967. extra: 1321 / 1254
  17968. }
  17969. },
  17970. },
  17971. [
  17972. {
  17973. name: "Normal",
  17974. height: math.unit(5 + 11 / 12, "feet"),
  17975. default: true
  17976. },
  17977. ]
  17978. ))
  17979. characterMakers.push(() => makeCharacter(
  17980. { name: "Fruity" },
  17981. {
  17982. front: {
  17983. height: math.unit(166.6, "cm"),
  17984. weight: math.unit(66.6, "kg"),
  17985. name: "Front",
  17986. image: {
  17987. source: "./media/characters/fruity/front.svg",
  17988. extra: 1510 / 1386,
  17989. bottom: 0.04
  17990. }
  17991. },
  17992. back: {
  17993. height: math.unit(166.6, "cm"),
  17994. weight: math.unit(66.6, "lb"),
  17995. name: "Back",
  17996. image: {
  17997. source: "./media/characters/fruity/back.svg",
  17998. extra: 1563 / 1435,
  17999. bottom: 0.005
  18000. }
  18001. },
  18002. },
  18003. [
  18004. {
  18005. name: "Normal",
  18006. height: math.unit(166.6, "cm"),
  18007. default: true
  18008. },
  18009. {
  18010. name: "Demonic",
  18011. height: math.unit(166.6, "feet")
  18012. },
  18013. ]
  18014. ))
  18015. characterMakers.push(() => makeCharacter(
  18016. { name: "Zost" },
  18017. {
  18018. side: {
  18019. height: math.unit(10, "feet"),
  18020. weight: math.unit(500, "lb"),
  18021. name: "Side",
  18022. image: {
  18023. source: "./media/characters/zost/side.svg",
  18024. extra: 966 / 880,
  18025. bottom: 0.075
  18026. }
  18027. },
  18028. mawFront: {
  18029. height: math.unit(1.08, "meters"),
  18030. name: "Maw (Front)",
  18031. image: {
  18032. source: "./media/characters/zost/maw-front.svg"
  18033. }
  18034. },
  18035. mawSide: {
  18036. height: math.unit(2.66, "feet"),
  18037. name: "Maw (Side)",
  18038. image: {
  18039. source: "./media/characters/zost/maw-side.svg"
  18040. }
  18041. },
  18042. },
  18043. [
  18044. {
  18045. name: "Normal",
  18046. height: math.unit(10, "feet"),
  18047. default: true
  18048. },
  18049. ]
  18050. ))
  18051. characterMakers.push(() => makeCharacter(
  18052. { name: "Luci" },
  18053. {
  18054. front: {
  18055. height: math.unit(5 + 4 / 12, "feet"),
  18056. weight: math.unit(120, "lb"),
  18057. name: "Front",
  18058. image: {
  18059. source: "./media/characters/luci/front.svg",
  18060. extra: 1985 / 1884,
  18061. bottom: 0.04
  18062. }
  18063. },
  18064. back: {
  18065. height: math.unit(5 + 4 / 12, "feet"),
  18066. weight: math.unit(120, "lb"),
  18067. name: "Back",
  18068. image: {
  18069. source: "./media/characters/luci/back.svg",
  18070. extra: 1892 / 1791,
  18071. bottom: 0.002
  18072. }
  18073. },
  18074. },
  18075. [
  18076. {
  18077. name: "Normal",
  18078. height: math.unit(5 + 4 / 12, "feet"),
  18079. default: true
  18080. },
  18081. ]
  18082. ))
  18083. characterMakers.push(() => makeCharacter(
  18084. { name: "2th" },
  18085. {
  18086. front: {
  18087. height: math.unit(1500, "feet"),
  18088. weight: math.unit(3.8e6, "tons"),
  18089. name: "Front",
  18090. image: {
  18091. source: "./media/characters/2th/front.svg",
  18092. extra: 3489 / 3350,
  18093. bottom: 0.1
  18094. }
  18095. },
  18096. foot: {
  18097. height: math.unit(461, "feet"),
  18098. name: "Foot",
  18099. image: {
  18100. source: "./media/characters/2th/foot.svg"
  18101. }
  18102. },
  18103. },
  18104. [
  18105. {
  18106. name: "\"Micro\"",
  18107. height: math.unit(15 + 7 / 12, "feet")
  18108. },
  18109. {
  18110. name: "Normal",
  18111. height: math.unit(1500, "feet"),
  18112. default: true
  18113. },
  18114. {
  18115. name: "Macro",
  18116. height: math.unit(5000, "feet")
  18117. },
  18118. {
  18119. name: "Megamacro",
  18120. height: math.unit(15, "miles")
  18121. },
  18122. {
  18123. name: "Gigamacro",
  18124. height: math.unit(4000, "miles")
  18125. },
  18126. {
  18127. name: "Galactic",
  18128. height: math.unit(50, "AU")
  18129. },
  18130. ]
  18131. ))
  18132. characterMakers.push(() => makeCharacter(
  18133. { name: "Amethyst" },
  18134. {
  18135. front: {
  18136. height: math.unit(5 + 6 / 12, "feet"),
  18137. weight: math.unit(220, "lb"),
  18138. name: "Front",
  18139. image: {
  18140. source: "./media/characters/amethyst/front.svg",
  18141. extra: 2078 / 2040,
  18142. bottom: 0.045
  18143. }
  18144. },
  18145. back: {
  18146. height: math.unit(5 + 6 / 12, "feet"),
  18147. weight: math.unit(220, "lb"),
  18148. name: "Back",
  18149. image: {
  18150. source: "./media/characters/amethyst/back.svg",
  18151. extra: 2021 / 1989,
  18152. bottom: 0.02
  18153. }
  18154. },
  18155. },
  18156. [
  18157. {
  18158. name: "Normal",
  18159. height: math.unit(5 + 6 / 12, "feet"),
  18160. default: true
  18161. },
  18162. ]
  18163. ))
  18164. characterMakers.push(() => makeCharacter(
  18165. { name: "Yumi Akiyama" },
  18166. {
  18167. front: {
  18168. height: math.unit(4 + 11 / 12, "feet"),
  18169. weight: math.unit(120, "lb"),
  18170. name: "Front",
  18171. image: {
  18172. source: "./media/characters/yumi-akiyama/front.svg",
  18173. extra: 1327 / 1235,
  18174. bottom: 0.02
  18175. }
  18176. },
  18177. back: {
  18178. height: math.unit(4 + 11 / 12, "feet"),
  18179. weight: math.unit(120, "lb"),
  18180. name: "Back",
  18181. image: {
  18182. source: "./media/characters/yumi-akiyama/back.svg",
  18183. extra: 1287 / 1245,
  18184. bottom: 0.002
  18185. }
  18186. },
  18187. },
  18188. [
  18189. {
  18190. name: "Galactic",
  18191. height: math.unit(50, "galaxies"),
  18192. default: true
  18193. },
  18194. {
  18195. name: "Universal",
  18196. height: math.unit(100, "universes")
  18197. },
  18198. ]
  18199. ))
  18200. characterMakers.push(() => makeCharacter(
  18201. { name: "Rifter Yrmori" },
  18202. {
  18203. front: {
  18204. height: math.unit(8, "feet"),
  18205. weight: math.unit(500, "lb"),
  18206. name: "Front",
  18207. image: {
  18208. source: "./media/characters/rifter-yrmori/front.svg",
  18209. extra: 1180 / 1125,
  18210. bottom: 0.02
  18211. }
  18212. },
  18213. back: {
  18214. height: math.unit(8, "feet"),
  18215. weight: math.unit(500, "lb"),
  18216. name: "Back",
  18217. image: {
  18218. source: "./media/characters/rifter-yrmori/back.svg",
  18219. extra: 1190 / 1145,
  18220. bottom: 0.001
  18221. }
  18222. },
  18223. wings: {
  18224. height: math.unit(7.75, "feet"),
  18225. weight: math.unit(500, "lb"),
  18226. name: "Wings",
  18227. image: {
  18228. source: "./media/characters/rifter-yrmori/wings.svg",
  18229. extra: 1357 / 1285
  18230. }
  18231. },
  18232. maw: {
  18233. height: math.unit(0.8, "feet"),
  18234. name: "Maw",
  18235. image: {
  18236. source: "./media/characters/rifter-yrmori/maw.svg"
  18237. }
  18238. },
  18239. },
  18240. [
  18241. {
  18242. name: "Normal",
  18243. height: math.unit(8, "feet"),
  18244. default: true
  18245. },
  18246. {
  18247. name: "Macro",
  18248. height: math.unit(42, "meters")
  18249. },
  18250. ]
  18251. ))
  18252. characterMakers.push(() => makeCharacter(
  18253. { name: "Tahajin" },
  18254. {
  18255. were: {
  18256. height: math.unit(25 + 6 / 12, "feet"),
  18257. weight: math.unit(10000, "lb"),
  18258. name: "Were",
  18259. image: {
  18260. source: "./media/characters/tahajin/were.svg",
  18261. extra: 801 / 770,
  18262. bottom: 0.042
  18263. }
  18264. },
  18265. aquatic: {
  18266. height: math.unit(6 + 4 / 12, "feet"),
  18267. weight: math.unit(160, "lb"),
  18268. name: "Aquatic",
  18269. image: {
  18270. source: "./media/characters/tahajin/aquatic.svg",
  18271. extra: 572 / 542,
  18272. bottom: 0.04
  18273. }
  18274. },
  18275. chow: {
  18276. height: math.unit(8 + 11 / 12, "feet"),
  18277. weight: math.unit(450, "lb"),
  18278. name: "Chow",
  18279. image: {
  18280. source: "./media/characters/tahajin/chow.svg",
  18281. extra: 660 / 640,
  18282. bottom: 0.015
  18283. }
  18284. },
  18285. demiNaga: {
  18286. height: math.unit(6 + 8 / 12, "feet"),
  18287. weight: math.unit(300, "lb"),
  18288. name: "Demi Naga",
  18289. image: {
  18290. source: "./media/characters/tahajin/demi-naga.svg",
  18291. extra: 643 / 615,
  18292. bottom: 0.1
  18293. }
  18294. },
  18295. data: {
  18296. height: math.unit(5, "inches"),
  18297. weight: math.unit(0.1, "lb"),
  18298. name: "Data",
  18299. image: {
  18300. source: "./media/characters/tahajin/data.svg"
  18301. }
  18302. },
  18303. fluu: {
  18304. height: math.unit(5 + 7 / 12, "feet"),
  18305. weight: math.unit(140, "lb"),
  18306. name: "Fluu",
  18307. image: {
  18308. source: "./media/characters/tahajin/fluu.svg",
  18309. extra: 628 / 592,
  18310. bottom: 0.02
  18311. }
  18312. },
  18313. starWarrior: {
  18314. height: math.unit(4 + 5 / 12, "feet"),
  18315. weight: math.unit(50, "lb"),
  18316. name: "Star Warrior",
  18317. image: {
  18318. source: "./media/characters/tahajin/star-warrior.svg"
  18319. }
  18320. },
  18321. },
  18322. [
  18323. {
  18324. name: "Normal",
  18325. height: math.unit(25 + 6 / 12, "feet"),
  18326. default: true
  18327. },
  18328. ]
  18329. ))
  18330. characterMakers.push(() => makeCharacter(
  18331. { name: "Gabira" },
  18332. {
  18333. front: {
  18334. height: math.unit(8, "feet"),
  18335. weight: math.unit(350, "lb"),
  18336. name: "Front",
  18337. image: {
  18338. source: "./media/characters/gabira/front.svg",
  18339. extra: 608 / 580,
  18340. bottom: 0.03
  18341. }
  18342. },
  18343. back: {
  18344. height: math.unit(8, "feet"),
  18345. weight: math.unit(350, "lb"),
  18346. name: "Back",
  18347. image: {
  18348. source: "./media/characters/gabira/back.svg",
  18349. extra: 608 / 580,
  18350. bottom: 0.03
  18351. }
  18352. },
  18353. },
  18354. [
  18355. {
  18356. name: "Normal",
  18357. height: math.unit(8, "feet"),
  18358. default: true
  18359. },
  18360. ]
  18361. ))
  18362. characterMakers.push(() => makeCharacter(
  18363. { name: "Sasha Katraine" },
  18364. {
  18365. front: {
  18366. height: math.unit(5 + 3 / 12, "feet"),
  18367. weight: math.unit(137, "lb"),
  18368. name: "Front",
  18369. image: {
  18370. source: "./media/characters/sasha-katraine/front.svg",
  18371. bottom: 0.045
  18372. }
  18373. },
  18374. },
  18375. [
  18376. {
  18377. name: "Micro",
  18378. height: math.unit(5, "inches")
  18379. },
  18380. {
  18381. name: "Normal",
  18382. height: math.unit(5 + 3 / 12, "feet"),
  18383. default: true
  18384. },
  18385. ]
  18386. ))
  18387. characterMakers.push(() => makeCharacter(
  18388. { name: "Der" },
  18389. {
  18390. side: {
  18391. height: math.unit(4, "inches"),
  18392. weight: math.unit(200, "grams"),
  18393. name: "Side",
  18394. image: {
  18395. source: "./media/characters/der/side.svg",
  18396. extra: 719 / 400,
  18397. bottom: 30.6 / 749.9187
  18398. }
  18399. },
  18400. },
  18401. [
  18402. {
  18403. name: "Micro",
  18404. height: math.unit(4, "inches"),
  18405. default: true
  18406. },
  18407. ]
  18408. ))
  18409. characterMakers.push(() => makeCharacter(
  18410. { name: "Fixerdragon" },
  18411. {
  18412. side: {
  18413. height: math.unit(30, "meters"),
  18414. weight: math.unit(700, "tonnes"),
  18415. name: "Side",
  18416. image: {
  18417. source: "./media/characters/fixerdragon/side.svg",
  18418. extra: (1293.0514-116.03)/1106.86,
  18419. bottom: 116.03/1293.0514
  18420. }
  18421. },
  18422. },
  18423. [
  18424. {
  18425. name: "Planck",
  18426. height: math.unit(1.6e-35, "meters")
  18427. },
  18428. {
  18429. name: "Micro",
  18430. height: math.unit(0.4, "meters")
  18431. },
  18432. {
  18433. name: "Normal",
  18434. height: math.unit(30, "meters"),
  18435. default: true
  18436. },
  18437. {
  18438. name: "Megamacro",
  18439. height: math.unit(1.2, "megameters")
  18440. },
  18441. {
  18442. name: "Teramacro",
  18443. height: math.unit(130, "terameters")
  18444. },
  18445. {
  18446. name: "Yottamacro",
  18447. height: math.unit(6200, "yottameters")
  18448. },
  18449. ]
  18450. ));
  18451. characterMakers.push(() => makeCharacter(
  18452. { name: "Kite" },
  18453. {
  18454. front: {
  18455. height: math.unit(8, "feet"),
  18456. weight: math.unit(250, "lb"),
  18457. name: "Front",
  18458. image: {
  18459. source: "./media/characters/kite/front.svg",
  18460. extra: 2796/2659,
  18461. bottom: 0.002
  18462. }
  18463. },
  18464. },
  18465. [
  18466. {
  18467. name: "Normal",
  18468. height: math.unit(8, "feet"),
  18469. default: true
  18470. },
  18471. {
  18472. name: "Macro",
  18473. height: math.unit(360, "feet")
  18474. },
  18475. {
  18476. name: "Megamacro",
  18477. height: math.unit(1500, "feet")
  18478. },
  18479. ]
  18480. ))
  18481. characterMakers.push(() => makeCharacter(
  18482. { name: "Poojawa Vynar" },
  18483. {
  18484. front: {
  18485. height: math.unit(5 + 10/12, "feet"),
  18486. weight: math.unit(150, "lb"),
  18487. name: "Front",
  18488. image: {
  18489. source: "./media/characters/poojawa-vynar/front.svg",
  18490. extra: (1506.1547-55) / 1356.6,
  18491. bottom: 55/1506.1547
  18492. }
  18493. },
  18494. frontTailless: {
  18495. height: math.unit(5 + 10/12, "feet"),
  18496. weight: math.unit(150, "lb"),
  18497. name: "Front (Tailless)",
  18498. image: {
  18499. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18500. extra: (1506.1547-55) / 1356.6,
  18501. bottom: 55/1506.1547
  18502. }
  18503. },
  18504. },
  18505. [
  18506. {
  18507. name: "Normal",
  18508. height: math.unit(5 + 10/12, "feet"),
  18509. default: true
  18510. },
  18511. ]
  18512. ))
  18513. characterMakers.push(() => makeCharacter(
  18514. { name: "Violette" },
  18515. {
  18516. front: {
  18517. height: math.unit(293, "meters"),
  18518. weight: math.unit(70400, "tons"),
  18519. name: "Front",
  18520. image: {
  18521. source: "./media/characters/violette/front.svg",
  18522. extra: 1227/1180,
  18523. bottom: 0.005
  18524. }
  18525. },
  18526. back: {
  18527. height: math.unit(293, "meters"),
  18528. weight: math.unit(70400, "tons"),
  18529. name: "Back",
  18530. image: {
  18531. source: "./media/characters/violette/back.svg",
  18532. extra: 1227/1180,
  18533. bottom: 0.005
  18534. }
  18535. },
  18536. },
  18537. [
  18538. {
  18539. name: "Macro",
  18540. height: math.unit(293, "meters"),
  18541. default: true
  18542. },
  18543. ]
  18544. ))
  18545. characterMakers.push(() => makeCharacter(
  18546. { name: "Alessandra" },
  18547. {
  18548. front: {
  18549. height: math.unit(1050, "feet"),
  18550. weight: math.unit(200000, "tons"),
  18551. name: "Front",
  18552. image: {
  18553. source: "./media/characters/alessandra/front.svg",
  18554. extra: 960/912,
  18555. bottom: 0.06
  18556. }
  18557. },
  18558. },
  18559. [
  18560. {
  18561. name: "Macro",
  18562. height: math.unit(1050, "feet")
  18563. },
  18564. {
  18565. name: "Macro+",
  18566. height: math.unit(900, "meters"),
  18567. default: true
  18568. },
  18569. ]
  18570. ))
  18571. characterMakers.push(() => makeCharacter(
  18572. { name: "Person", species: "Catdragon" },
  18573. {
  18574. front: {
  18575. height: math.unit(5, "feet"),
  18576. weight: math.unit(187, "lb"),
  18577. name: "Front",
  18578. image: {
  18579. source: "./media/characters/person/front.svg",
  18580. extra: 3087/2945,
  18581. bottom: 91/3181
  18582. }
  18583. },
  18584. },
  18585. [
  18586. {
  18587. name: "Micro",
  18588. height: math.unit(3, "inches")
  18589. },
  18590. {
  18591. name: "Normal",
  18592. height: math.unit(5, "feet"),
  18593. default: true
  18594. },
  18595. {
  18596. name: "Macro",
  18597. height: math.unit(90, "feet")
  18598. },
  18599. {
  18600. name: "Max Size",
  18601. height: math.unit(280, "feet")
  18602. },
  18603. ]
  18604. ))
  18605. characterMakers.push(() => makeCharacter(
  18606. { name: "Ty" },
  18607. {
  18608. front: {
  18609. height: math.unit(4.5, "meters"),
  18610. weight: math.unit(3200, "lb"),
  18611. name: "Front",
  18612. image: {
  18613. source: "./media/characters/ty/front.svg",
  18614. extra: 1038/960,
  18615. bottom: 31.156/1068
  18616. }
  18617. },
  18618. back: {
  18619. height: math.unit(4.5, "meters"),
  18620. weight: math.unit(3200, "lb"),
  18621. name: "Back",
  18622. image: {
  18623. source: "./media/characters/ty/back.svg",
  18624. extra: 1044/966,
  18625. bottom: 7.48/1049
  18626. }
  18627. },
  18628. },
  18629. [
  18630. {
  18631. name: "Normal",
  18632. height: math.unit(4.5, "meters"),
  18633. default: true
  18634. },
  18635. ]
  18636. ))
  18637. characterMakers.push(() => makeCharacter(
  18638. { name: "Rocky" },
  18639. {
  18640. front: {
  18641. height: math.unit(5 + 4/12, "feet"),
  18642. weight: math.unit(115, "lb"),
  18643. name: "Front",
  18644. image: {
  18645. source: "./media/characters/rocky/front.svg",
  18646. extra: 1012/975,
  18647. bottom: 54/1066
  18648. }
  18649. },
  18650. },
  18651. [
  18652. {
  18653. name: "Normal",
  18654. height: math.unit(5 + 4/12, "feet"),
  18655. default: true
  18656. },
  18657. ]
  18658. ))
  18659. characterMakers.push(() => makeCharacter(
  18660. { name: "Ruin" },
  18661. {
  18662. upright: {
  18663. height: math.unit(6, "meters"),
  18664. weight: math.unit(4000, "kg"),
  18665. name: "Upright",
  18666. image: {
  18667. source: "./media/characters/ruin/upright.svg",
  18668. extra: 668/661,
  18669. bottom: 42/799.8396
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Normal",
  18676. height: math.unit(6, "meters")
  18677. },
  18678. ]
  18679. ))
  18680. characterMakers.push(() => makeCharacter(
  18681. { name: "Robin" },
  18682. {
  18683. front: {
  18684. height: math.unit(5, "feet"),
  18685. weight: math.unit(106, "lb"),
  18686. name: "Front",
  18687. image: {
  18688. source: "./media/characters/robin/front.svg",
  18689. extra: 862/799,
  18690. bottom: 42.4/914.8856
  18691. }
  18692. },
  18693. },
  18694. [
  18695. {
  18696. name: "Normal",
  18697. height: math.unit(5, "feet"),
  18698. default: true
  18699. },
  18700. ]
  18701. ))
  18702. characterMakers.push(() => makeCharacter(
  18703. { name: "Saian" },
  18704. {
  18705. side: {
  18706. height: math.unit(3, "feet"),
  18707. weight: math.unit(225, "lb"),
  18708. name: "Side",
  18709. image: {
  18710. source: "./media/characters/saian/side.svg",
  18711. extra: 566/356,
  18712. bottom: 79.7/643
  18713. }
  18714. },
  18715. maw: {
  18716. height: math.unit(2.85, "feet"),
  18717. name: "Maw",
  18718. image: {
  18719. source: "./media/characters/saian/maw.svg"
  18720. }
  18721. },
  18722. },
  18723. [
  18724. {
  18725. name: "Normal",
  18726. height: math.unit(3, "feet"),
  18727. default: true
  18728. },
  18729. ]
  18730. ))
  18731. characterMakers.push(() => makeCharacter(
  18732. { name: "Equus Silvermane" },
  18733. {
  18734. side: {
  18735. height: math.unit(8, "feet"),
  18736. weight: math.unit(300, "lb"),
  18737. name: "Side",
  18738. image: {
  18739. source: "./media/characters/equus-silvermane/side.svg",
  18740. extra: 2176/2050,
  18741. bottom: 65.7/2245
  18742. }
  18743. },
  18744. front: {
  18745. height: math.unit(8, "feet"),
  18746. weight: math.unit(300, "lb"),
  18747. name: "Front",
  18748. image: {
  18749. source: "./media/characters/equus-silvermane/front.svg",
  18750. extra: 4633/4400,
  18751. bottom: 71.3/4706.915
  18752. }
  18753. },
  18754. sideStepping: {
  18755. height: math.unit(8, "feet"),
  18756. weight: math.unit(300, "lb"),
  18757. name: "Side (Stepping)",
  18758. image: {
  18759. source: "./media/characters/equus-silvermane/side-stepping.svg",
  18760. extra: 1968/1860,
  18761. bottom: 16.4/1989
  18762. }
  18763. },
  18764. },
  18765. [
  18766. {
  18767. name: "Normal",
  18768. height: math.unit(8, "feet")
  18769. },
  18770. {
  18771. name: "Minimacro",
  18772. height: math.unit(75, "feet"),
  18773. default: true
  18774. },
  18775. {
  18776. name: "Macro",
  18777. height: math.unit(150, "feet")
  18778. },
  18779. {
  18780. name: "Macro+",
  18781. height: math.unit(1000, "feet")
  18782. },
  18783. {
  18784. name: "Megamacro",
  18785. height: math.unit(1, "mile")
  18786. },
  18787. ]
  18788. ))
  18789. characterMakers.push(() => makeCharacter(
  18790. { name: "Windar" },
  18791. {
  18792. side: {
  18793. height: math.unit(20, "feet"),
  18794. weight: math.unit(30000, "kg"),
  18795. name: "Side",
  18796. image: {
  18797. source: "./media/characters/windar/side.svg",
  18798. extra: 1491/1248,
  18799. bottom: 82.56/1568
  18800. }
  18801. },
  18802. },
  18803. [
  18804. {
  18805. name: "Normal",
  18806. height: math.unit(20, "feet"),
  18807. default: true
  18808. },
  18809. ]
  18810. ))
  18811. characterMakers.push(() => makeCharacter(
  18812. { name: "Melody" },
  18813. {
  18814. side: {
  18815. height: math.unit(15.66, "feet"),
  18816. weight: math.unit(150, "lb"),
  18817. name: "Side",
  18818. image: {
  18819. source: "./media/characters/melody/side.svg",
  18820. extra: 1097/944,
  18821. bottom: 11.8/1109
  18822. }
  18823. },
  18824. sideOutfit: {
  18825. height: math.unit(15.66, "feet"),
  18826. weight: math.unit(150, "lb"),
  18827. name: "Side (Outfit)",
  18828. image: {
  18829. source: "./media/characters/melody/side-outfit.svg",
  18830. extra: 1097/944,
  18831. bottom: 11.8/1109
  18832. }
  18833. },
  18834. },
  18835. [
  18836. {
  18837. name: "Normal",
  18838. height: math.unit(15.66, "feet"),
  18839. default: true
  18840. },
  18841. ]
  18842. ))
  18843. characterMakers.push(() => makeCharacter(
  18844. { name: "Windera" },
  18845. {
  18846. front: {
  18847. height: math.unit(8, "feet"),
  18848. weight: math.unit(325, "lb"),
  18849. name: "Front",
  18850. image: {
  18851. source: "./media/characters/windera/front.svg",
  18852. extra: 3180/2845,
  18853. bottom: 178/3365
  18854. }
  18855. },
  18856. },
  18857. [
  18858. {
  18859. name: "Normal",
  18860. height: math.unit(8, "feet"),
  18861. default: true
  18862. },
  18863. ]
  18864. ))
  18865. characterMakers.push(() => makeCharacter(
  18866. { name: "Sonear" },
  18867. {
  18868. front: {
  18869. height: math.unit(28.75, "feet"),
  18870. weight: math.unit(2000, "kg"),
  18871. name: "Front",
  18872. image: {
  18873. source: "./media/characters/sonear/front.svg",
  18874. extra: 1041.1/964.9,
  18875. bottom: 53.7/1096.6
  18876. }
  18877. },
  18878. },
  18879. [
  18880. {
  18881. name: "Normal",
  18882. height: math.unit(28.75, "feet"),
  18883. default: true
  18884. },
  18885. ]
  18886. ))
  18887. characterMakers.push(() => makeCharacter(
  18888. { name: "Kanara" },
  18889. {
  18890. side: {
  18891. height: math.unit(25.5, "feet"),
  18892. weight: math.unit(23000, "kg"),
  18893. name: "Side",
  18894. image: {
  18895. source: "./media/characters/kanara/side.svg"
  18896. }
  18897. },
  18898. },
  18899. [
  18900. {
  18901. name: "Normal",
  18902. height: math.unit(25.5, "feet"),
  18903. default: true
  18904. },
  18905. ]
  18906. ))
  18907. characterMakers.push(() => makeCharacter(
  18908. { name: "Ereus" },
  18909. {
  18910. side: {
  18911. height: math.unit(10, "feet"),
  18912. weight: math.unit(1000, "kg"),
  18913. name: "Side",
  18914. image: {
  18915. source: "./media/characters/ereus/side.svg",
  18916. extra: 1157/959,
  18917. bottom: 153/1312.5
  18918. }
  18919. },
  18920. },
  18921. [
  18922. {
  18923. name: "Normal",
  18924. height: math.unit(10, "feet"),
  18925. default: true
  18926. },
  18927. ]
  18928. ))
  18929. characterMakers.push(() => makeCharacter(
  18930. { name: "E-ter" },
  18931. {
  18932. side: {
  18933. height: math.unit(4.5, "feet"),
  18934. weight: math.unit(500, "lb"),
  18935. name: "Side",
  18936. image: {
  18937. source: "./media/characters/e-ter/side.svg",
  18938. extra: 1550/1248,
  18939. bottom: 146/1694
  18940. }
  18941. },
  18942. },
  18943. [
  18944. {
  18945. name: "Normal",
  18946. height: math.unit(4.5, "feet"),
  18947. default: true
  18948. },
  18949. ]
  18950. ))
  18951. characterMakers.push(() => makeCharacter(
  18952. { name: "Yamie" },
  18953. {
  18954. side: {
  18955. height: math.unit(9.7, "feet"),
  18956. weight: math.unit(4000, "kg"),
  18957. name: "Side",
  18958. image: {
  18959. source: "./media/characters/yamie/side.svg"
  18960. }
  18961. },
  18962. },
  18963. [
  18964. {
  18965. name: "Normal",
  18966. height: math.unit(9.7, "feet"),
  18967. default: true
  18968. },
  18969. ]
  18970. ))
  18971. characterMakers.push(() => makeCharacter(
  18972. { name: "Anders" },
  18973. {
  18974. front: {
  18975. height: math.unit(50, "feet"),
  18976. weight: math.unit(50000, "kg"),
  18977. name: "Front",
  18978. image: {
  18979. source: "./media/characters/anders/front.svg",
  18980. extra: 570/539,
  18981. bottom: 14.7/586.7
  18982. }
  18983. },
  18984. },
  18985. [
  18986. {
  18987. name: "Large",
  18988. height: math.unit(50, "feet")
  18989. },
  18990. {
  18991. name: "Macro",
  18992. height: math.unit(2000, "feet"),
  18993. default: true
  18994. },
  18995. {
  18996. name: "Megamacro",
  18997. height: math.unit(12, "miles")
  18998. },
  18999. ]
  19000. ))
  19001. characterMakers.push(() => makeCharacter(
  19002. { name: "Reban" },
  19003. {
  19004. front: {
  19005. height: math.unit(7 + 2/12, "feet"),
  19006. weight: math.unit(300, "lb"),
  19007. name: "Front",
  19008. image: {
  19009. source: "./media/characters/reban/front.svg",
  19010. extra: 516/487,
  19011. bottom: 42.82/558.356
  19012. }
  19013. },
  19014. dick: {
  19015. height: math.unit(7/5, "feet"),
  19016. name: "Dick",
  19017. image: {
  19018. source: "./media/characters/reban/dick.svg"
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Natural Height",
  19025. height: math.unit(7 + 2/12, "feet")
  19026. },
  19027. {
  19028. name: "Macro",
  19029. height: math.unit(500, "feet"),
  19030. default: true
  19031. },
  19032. {
  19033. name: "Canon Height",
  19034. height: math.unit(50, "AU")
  19035. },
  19036. ]
  19037. ))
  19038. characterMakers.push(() => makeCharacter(
  19039. { name: "Terrance Keayes" },
  19040. {
  19041. front: {
  19042. height: math.unit(6, "feet"),
  19043. weight: math.unit(150, "lb"),
  19044. name: "Front",
  19045. image: {
  19046. source: "./media/characters/terrance-keayes/front.svg",
  19047. extra: 1.005,
  19048. bottom: 151/1615
  19049. }
  19050. },
  19051. side: {
  19052. height: math.unit(6, "feet"),
  19053. weight: math.unit(150, "lb"),
  19054. name: "Side",
  19055. image: {
  19056. source: "./media/characters/terrance-keayes/side.svg",
  19057. extra: 1.005,
  19058. bottom: 129.4/1544
  19059. }
  19060. },
  19061. back: {
  19062. height: math.unit(6, "feet"),
  19063. weight: math.unit(150, "lb"),
  19064. name: "Back",
  19065. image: {
  19066. source: "./media/characters/terrance-keayes/back.svg",
  19067. extra: 1.005,
  19068. bottom: 58.4/1557.3
  19069. }
  19070. },
  19071. dick: {
  19072. height: math.unit(6*0.208, "feet"),
  19073. name: "Dick",
  19074. image: {
  19075. source: "./media/characters/terrance-keayes/dick.svg"
  19076. }
  19077. },
  19078. },
  19079. [
  19080. {
  19081. name: "Canon Height",
  19082. height: math.unit(35, "miles"),
  19083. default: true
  19084. },
  19085. ]
  19086. ))
  19087. characterMakers.push(() => makeCharacter(
  19088. { name: "Ofelia" },
  19089. {
  19090. front: {
  19091. height: math.unit(6, "feet"),
  19092. weight: math.unit(150, "lb"),
  19093. name: "Front",
  19094. image: {
  19095. source: "./media/characters/ofelia/front.svg",
  19096. extra: 546/541,
  19097. bottom: 39/583
  19098. }
  19099. },
  19100. back: {
  19101. height: math.unit(6, "feet"),
  19102. weight: math.unit(150, "lb"),
  19103. name: "Back",
  19104. image: {
  19105. source: "./media/characters/ofelia/back.svg",
  19106. extra: 564/559.5,
  19107. bottom: 8.69/573.02
  19108. }
  19109. },
  19110. maw: {
  19111. height: math.unit(1, "feet"),
  19112. name: "Maw",
  19113. image: {
  19114. source: "./media/characters/ofelia/maw.svg"
  19115. }
  19116. },
  19117. foot: {
  19118. height: math.unit(1.949, "feet"),
  19119. name: "Foot",
  19120. image: {
  19121. source: "./media/characters/ofelia/foot.svg"
  19122. }
  19123. },
  19124. },
  19125. [
  19126. {
  19127. name: "Canon Height",
  19128. height: math.unit(2000, "miles"),
  19129. default: true
  19130. },
  19131. ]
  19132. ))
  19133. characterMakers.push(() => makeCharacter(
  19134. { name: "Samuel" },
  19135. {
  19136. front: {
  19137. height: math.unit(6, "feet"),
  19138. weight: math.unit(150, "lb"),
  19139. name: "Front",
  19140. image: {
  19141. source: "./media/characters/samuel/front.svg",
  19142. extra: 265/258,
  19143. bottom: 2/266.1566
  19144. }
  19145. },
  19146. },
  19147. [
  19148. {
  19149. name: "Macro",
  19150. height: math.unit(100, "feet"),
  19151. default: true
  19152. },
  19153. {
  19154. name: "Full Size",
  19155. height: math.unit(1000, "miles")
  19156. },
  19157. ]
  19158. ))
  19159. characterMakers.push(() => makeCharacter(
  19160. { name: "Beishir Kiel" },
  19161. {
  19162. front: {
  19163. height: math.unit(6, "feet"),
  19164. weight: math.unit(300, "lb"),
  19165. name: "Front",
  19166. image: {
  19167. source: "./media/characters/beishir-kiel/front.svg",
  19168. extra: 569/547,
  19169. bottom: 41.9/609
  19170. }
  19171. },
  19172. maw: {
  19173. height: math.unit(6*0.202, "feet"),
  19174. name: "Maw",
  19175. image: {
  19176. source: "./media/characters/beishir-kiel/maw.svg"
  19177. }
  19178. },
  19179. },
  19180. [
  19181. {
  19182. name: "Macro",
  19183. height: math.unit(300, "feet"),
  19184. default: true
  19185. },
  19186. ]
  19187. ))
  19188. characterMakers.push(() => makeCharacter(
  19189. { name: "Logan Grey" },
  19190. {
  19191. front: {
  19192. height: math.unit(5 + 8/12, "feet"),
  19193. weight: math.unit(120, "lb"),
  19194. name: "Front",
  19195. image: {
  19196. source: "./media/characters/logan-grey/front.svg",
  19197. extra: 2539/2393,
  19198. bottom: 97.6/2636.37
  19199. }
  19200. },
  19201. frontAlt: {
  19202. height: math.unit(5 + 8/12, "feet"),
  19203. weight: math.unit(120, "lb"),
  19204. name: "Front (Alt)",
  19205. image: {
  19206. source: "./media/characters/logan-grey/front-alt.svg",
  19207. extra: 958/893,
  19208. bottom: 15/970.768
  19209. }
  19210. },
  19211. back: {
  19212. height: math.unit(5 + 8/12, "feet"),
  19213. weight: math.unit(120, "lb"),
  19214. name: "Back",
  19215. image: {
  19216. source: "./media/characters/logan-grey/back.svg",
  19217. extra: 958/893,
  19218. bottom: 2.1881/970.9788
  19219. }
  19220. },
  19221. dick: {
  19222. height: math.unit(1.437, "feet"),
  19223. name: "Dick",
  19224. image: {
  19225. source: "./media/characters/logan-grey/dick.svg"
  19226. }
  19227. },
  19228. },
  19229. [
  19230. {
  19231. name: "Normal",
  19232. height: math.unit(5 + 8/12, "feet")
  19233. },
  19234. {
  19235. name: "The 500 Foot Femboy",
  19236. height: math.unit(500, "feet"),
  19237. default: true
  19238. },
  19239. {
  19240. name: "Megmacro",
  19241. height: math.unit(20, "miles")
  19242. },
  19243. ]
  19244. ))
  19245. //characters
  19246. function makeCharacters() {
  19247. const results = [];
  19248. characterMakers.forEach(character => {
  19249. results.push(character());
  19250. });
  19251. return results;
  19252. }