less copy protection, more size visualization
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

20711 satır
494 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename
  18. }
  19. if (value.weight) {
  20. views[key].attributes.weight = {
  21. name: "Mass",
  22. power: 3,
  23. type: "mass",
  24. base: value.weight
  25. };
  26. }
  27. });
  28. return createEntityMaker(info, views, defaultSizes);
  29. }
  30. characterMakers.push(() => makeCharacter(
  31. {
  32. name: "Fen",
  33. species: "Crux",
  34. description: {
  35. title: "Bio",
  36. text: "Very furry. Sheds on everything."
  37. }
  38. },
  39. {
  40. back: {
  41. height: math.unit(2.2428, "meter"),
  42. weight: math.unit(124.738, "kg"),
  43. name: "Back",
  44. image: {
  45. source: "./media/characters/fen/back.svg",
  46. extra: 1025 / 935,
  47. bottom: 0.01
  48. },
  49. info: {
  50. description: {
  51. mode: "append",
  52. text: "\n\nHe is not currently looking at you."
  53. }
  54. }
  55. },
  56. full: {
  57. height: math.unit(1.34, "meter"),
  58. weight: math.unit(225, "kg"),
  59. name: "Full",
  60. image: {
  61. source: "./media/characters/fen/full.svg"
  62. },
  63. info: {
  64. description: {
  65. mode: "append",
  66. text: "\n\nMunch."
  67. }
  68. }
  69. },
  70. kneeling: {
  71. height: math.unit(5.4, "feet"),
  72. weight: math.unit(124.738, "kg"),
  73. name: "Kneeling",
  74. image: {
  75. source: "./media/characters/fen/kneeling.svg",
  76. extra: 563 / 507
  77. }
  78. },
  79. },
  80. [
  81. {
  82. name: "Normal",
  83. height: math.unit(2.2428, "meter")
  84. },
  85. {
  86. name: "Big",
  87. height: math.unit(12, "feet")
  88. },
  89. {
  90. name: "Minimacro",
  91. height: math.unit(30, "meter"),
  92. default: true,
  93. info: {
  94. description: {
  95. mode: "append",
  96. text: "\n\nTOO DAMN BIG"
  97. }
  98. }
  99. },
  100. {
  101. name: "Macro",
  102. height: math.unit(100, "meter"),
  103. info: {
  104. description: {
  105. mode: "append",
  106. text: "\n\nTOO DAMN BIG"
  107. }
  108. }
  109. },
  110. {
  111. name: "Macro+",
  112. height: math.unit(1000, "meter")
  113. },
  114. {
  115. name: "Megamacro",
  116. height: math.unit(10, "miles")
  117. }
  118. ]
  119. ))
  120. characterMakers.push(() => makeCharacter(
  121. { name: "Sofia Fluttertail" },
  122. {
  123. front: {
  124. height: math.unit(183, "cm"),
  125. weight: math.unit(80, "kg"),
  126. name: "Front",
  127. image: {
  128. source: "./media/characters/sofia-fluttertail/front.svg",
  129. bottom: 0.01,
  130. extra: 2154 / 2081
  131. }
  132. },
  133. frontAlt: {
  134. height: math.unit(183, "cm"),
  135. weight: math.unit(80, "kg"),
  136. name: "Front (alt)",
  137. image: {
  138. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  139. }
  140. },
  141. back: {
  142. height: math.unit(183, "cm"),
  143. weight: math.unit(80, "kg"),
  144. name: "Back",
  145. image: {
  146. source: "./media/characters/sofia-fluttertail/back.svg"
  147. }
  148. },
  149. maw: {
  150. height: math.unit(183 / 5, "cm"),
  151. name: "Maw",
  152. image: {
  153. source: "./media/characters/sofia-fluttertail/maw.svg"
  154. }
  155. },
  156. },
  157. [
  158. {
  159. name: "Normal",
  160. height: math.unit(1.83, "meter")
  161. },
  162. {
  163. name: "Macro",
  164. height: math.unit(96, "feet"),
  165. default: true
  166. },
  167. {
  168. name: "Megamerger",
  169. height: math.unit(650, "feet")
  170. },
  171. ]
  172. ))
  173. characterMakers.push(() => makeCharacter(
  174. { name: "March" },
  175. {
  176. front: {
  177. height: math.unit(7, "feet"),
  178. weight: math.unit(100, "kg"),
  179. name: "Front",
  180. image: {
  181. source: "./media/characters/march/front.svg",
  182. extra: 1,
  183. bottom: 0.015
  184. }
  185. },
  186. foot: {
  187. height: math.unit(0.9, "feet"),
  188. name: "Foot",
  189. image: {
  190. source: "./media/characters/march/foot.svg"
  191. }
  192. },
  193. },
  194. [
  195. {
  196. name: "Normal",
  197. height: math.unit(7.9, "feet")
  198. },
  199. {
  200. name: "Macro",
  201. height: math.unit(220, "meters")
  202. },
  203. {
  204. name: "Megamacro",
  205. height: math.unit(2.98, "km"),
  206. default: true
  207. },
  208. {
  209. name: "Gigamacro",
  210. height: math.unit(15963, "km")
  211. },
  212. {
  213. name: "Teramacro",
  214. height: math.unit(2980000000, "km")
  215. },
  216. {
  217. name: "Examacro",
  218. height: math.unit(250, "parsecs")
  219. },
  220. ]
  221. ))
  222. characterMakers.push(() => makeCharacter(
  223. { name: "Noir" },
  224. {
  225. front: {
  226. height: math.unit(6, "feet"),
  227. weight: math.unit(60, "kg"),
  228. name: "Front",
  229. image: {
  230. source: "./media/characters/noir/front.svg",
  231. extra: 1,
  232. bottom: 0.032
  233. }
  234. },
  235. },
  236. [
  237. {
  238. name: "Normal",
  239. height: math.unit(6.6, "feet")
  240. },
  241. {
  242. name: "Macro",
  243. height: math.unit(500, "feet")
  244. },
  245. {
  246. name: "Megamacro",
  247. height: math.unit(2.5, "km"),
  248. default: true
  249. },
  250. {
  251. name: "Gigamacro",
  252. height: math.unit(22500, "km")
  253. },
  254. {
  255. name: "Teramacro",
  256. height: math.unit(2500000000, "km")
  257. },
  258. {
  259. name: "Examacro",
  260. height: math.unit(200, "parsecs")
  261. },
  262. ]
  263. ))
  264. characterMakers.push(() => makeCharacter(
  265. { name: "Okuri" },
  266. {
  267. front: {
  268. height: math.unit(7, "feet"),
  269. weight: math.unit(100, "kg"),
  270. name: "Front",
  271. image: {
  272. source: "./media/characters/okuri/front.svg",
  273. extra: 1,
  274. bottom: 0.037
  275. }
  276. },
  277. back: {
  278. height: math.unit(7, "feet"),
  279. weight: math.unit(100, "kg"),
  280. name: "Back",
  281. image: {
  282. source: "./media/characters/okuri/back.svg",
  283. extra: 1,
  284. bottom: 0.007
  285. }
  286. },
  287. },
  288. [
  289. {
  290. name: "Megamacro",
  291. height: math.unit(100, "miles"),
  292. default: true
  293. },
  294. ]
  295. ))
  296. characterMakers.push(() => makeCharacter(
  297. { name: "Manny" },
  298. {
  299. front: {
  300. height: math.unit(7, "feet"),
  301. weight: math.unit(100, "kg"),
  302. name: "Front",
  303. image: {
  304. source: "./media/characters/manny/front.svg",
  305. extra: 1,
  306. bottom: 0.06
  307. }
  308. },
  309. back: {
  310. height: math.unit(7, "feet"),
  311. weight: math.unit(100, "kg"),
  312. name: "Back",
  313. image: {
  314. source: "./media/characters/manny/back.svg",
  315. extra: 1,
  316. bottom: 0.014
  317. }
  318. },
  319. },
  320. [
  321. {
  322. name: "Normal",
  323. height: math.unit(7, "feet"),
  324. },
  325. {
  326. name: "Macro",
  327. height: math.unit(78, "feet"),
  328. default: true
  329. },
  330. {
  331. name: "Macro+",
  332. height: math.unit(300, "meters")
  333. },
  334. {
  335. name: "Macro++",
  336. height: math.unit(2400, "meters")
  337. },
  338. {
  339. name: "Megamacro",
  340. height: math.unit(5167, "meters")
  341. },
  342. {
  343. name: "Gigamacro",
  344. height: math.unit(41769, "miles")
  345. },
  346. ]
  347. ))
  348. characterMakers.push(() => makeCharacter(
  349. { name: "Adake" },
  350. {
  351. front: {
  352. height: math.unit(7, "feet"),
  353. weight: math.unit(100, "kg"),
  354. name: "Front",
  355. image: {
  356. source: "./media/characters/adake/front-1.svg"
  357. }
  358. },
  359. frontAlt: {
  360. height: math.unit(7, "feet"),
  361. weight: math.unit(100, "kg"),
  362. name: "Front (Alt)",
  363. image: {
  364. source: "./media/characters/adake/front-2.svg",
  365. extra: 1,
  366. bottom: 0.01
  367. }
  368. },
  369. back: {
  370. height: math.unit(7, "feet"),
  371. weight: math.unit(100, "kg"),
  372. name: "Back",
  373. image: {
  374. source: "./media/characters/adake/back.svg",
  375. }
  376. },
  377. kneel: {
  378. height: math.unit(5.385, "feet"),
  379. weight: math.unit(100, "kg"),
  380. name: "Kneeling",
  381. image: {
  382. source: "./media/characters/adake/kneel.svg",
  383. bottom: 0.052
  384. }
  385. },
  386. },
  387. [
  388. {
  389. name: "Normal",
  390. height: math.unit(7, "feet"),
  391. },
  392. {
  393. name: "Macro",
  394. height: math.unit(78, "feet"),
  395. default: true
  396. },
  397. {
  398. name: "Macro+",
  399. height: math.unit(300, "meters")
  400. },
  401. {
  402. name: "Macro++",
  403. height: math.unit(2400, "meters")
  404. },
  405. {
  406. name: "Megamacro",
  407. height: math.unit(5167, "meters")
  408. },
  409. {
  410. name: "Gigamacro",
  411. height: math.unit(41769, "miles")
  412. },
  413. ]
  414. ))
  415. characterMakers.push(() => makeCharacter(
  416. { name: "Elijah" },
  417. {
  418. front: {
  419. height: math.unit(1.65, "meters"),
  420. weight: math.unit(50, "kg"),
  421. name: "Front",
  422. image: {
  423. source: "./media/characters/elijah/front.svg",
  424. extra: 639 / 626,
  425. bottom: 58.7 / 697.8
  426. }
  427. },
  428. side: {
  429. height: math.unit(1.65, "meters"),
  430. weight: math.unit(50, "kg"),
  431. name: "Side",
  432. image: {
  433. source: "./media/characters/elijah/side.svg",
  434. extra: 1840 / 1795,
  435. bottom: 106 / 1943
  436. }
  437. },
  438. back: {
  439. height: math.unit(1.65, "meters"),
  440. weight: math.unit(50, "kg"),
  441. name: "Back",
  442. image: {
  443. source: "./media/characters/elijah/back.svg",
  444. extra: 661.2 / 639.5,
  445. bottom: 21.2 / 682.5
  446. }
  447. },
  448. foot: {
  449. height: math.unit(1.4, "feet"),
  450. name: "Foot",
  451. image: {
  452. source: "./media/characters/elijah/foot.svg"
  453. }
  454. },
  455. footFlexing: {
  456. height: math.unit(1.243, "feet"),
  457. name: "Foot (Flexing)",
  458. image: {
  459. source: "./media/characters/elijah/foot-flexing.svg"
  460. }
  461. },
  462. footStepping: {
  463. height: math.unit(1.3, "feet"),
  464. name: "Foot (Stepping)",
  465. image: {
  466. source: "./media/characters/elijah/foot-stepping.svg"
  467. }
  468. },
  469. beak: {
  470. height: math.unit(0.666, "feet"),
  471. name: "Beak",
  472. image: {
  473. source: "./media/characters/elijah/beak.svg"
  474. }
  475. },
  476. dick: {
  477. height: math.unit(0.85, "feet"),
  478. name: "Dick",
  479. image: {
  480. source: "./media/characters/elijah/dick.svg"
  481. }
  482. },
  483. },
  484. [
  485. {
  486. name: "Normal",
  487. height: math.unit(1.65, "meters")
  488. },
  489. {
  490. name: "Macro",
  491. height: math.unit(55, "meters"),
  492. default: true
  493. },
  494. {
  495. name: "Macro+",
  496. height: math.unit(105, "meters")
  497. },
  498. ]
  499. ))
  500. characterMakers.push(() => makeCharacter(
  501. { name: "Rai" },
  502. {
  503. front: {
  504. height: math.unit(11, "feet"),
  505. weight: math.unit(80, "kg"),
  506. name: "Front",
  507. image: {
  508. source: "./media/characters/rai/front.svg",
  509. extra: 1,
  510. bottom: 0.03
  511. }
  512. },
  513. side: {
  514. height: math.unit(11, "feet"),
  515. weight: math.unit(80, "kg"),
  516. name: "Side",
  517. image: {
  518. source: "./media/characters/rai/side.svg"
  519. }
  520. },
  521. back: {
  522. height: math.unit(11, "feet"),
  523. weight: math.unit(80, "lb"),
  524. name: "Back",
  525. image: {
  526. source: "./media/characters/rai/back.svg",
  527. extra: 1,
  528. bottom: 0.01
  529. }
  530. },
  531. feral: {
  532. height: math.unit(11, "feet"),
  533. weight: math.unit(800, "lb"),
  534. name: "Feral",
  535. image: {
  536. source: "./media/characters/rai/feral.svg",
  537. extra: 1050 / 659,
  538. bottom: 0.07
  539. }
  540. },
  541. maw: {
  542. height: math.unit(6 / 3.81416, "feet"),
  543. name: "Maw",
  544. image: {
  545. source: "./media/characters/rai/maw.svg"
  546. }
  547. },
  548. },
  549. [
  550. {
  551. name: "Normal",
  552. height: math.unit(11, "feet")
  553. },
  554. {
  555. name: "Macro",
  556. height: math.unit(302, "feet"),
  557. default: true
  558. },
  559. ]
  560. ))
  561. characterMakers.push(() => makeCharacter(
  562. { name: "Jazzy" },
  563. {
  564. front: {
  565. height: math.unit(7, "feet"),
  566. weight: math.unit(80, "kg"),
  567. name: "Front",
  568. image: {
  569. source: "./media/characters/jazzy/front.svg",
  570. extra: 1,
  571. bottom: 0.01
  572. }
  573. },
  574. back: {
  575. height: math.unit(7, "feet"),
  576. weight: math.unit(80, "kg"),
  577. name: "Back",
  578. image: {
  579. source: "./media/characters/jazzy/back.svg",
  580. extra: 1,
  581. bottom: 0.01
  582. }
  583. },
  584. },
  585. [
  586. {
  587. name: "Macro",
  588. height: math.unit(216, "feet"),
  589. default: true
  590. },
  591. ]
  592. ))
  593. characterMakers.push(() => makeCharacter(
  594. { name: "Flamm" },
  595. {
  596. front: {
  597. height: math.unit(7, "feet"),
  598. weight: math.unit(80, "kg"),
  599. name: "Front",
  600. image: {
  601. source: "./media/characters/flamm/front.svg",
  602. extra: 1794 / 1677,
  603. bottom: 31.7 / 1828.5
  604. }
  605. },
  606. },
  607. [
  608. {
  609. name: "Normal",
  610. height: math.unit(9.5, "feet")
  611. },
  612. {
  613. name: "Macro",
  614. height: math.unit(200, "feet"),
  615. default: true
  616. },
  617. ]
  618. ))
  619. characterMakers.push(() => makeCharacter(
  620. { name: "Zephiro" },
  621. {
  622. front: {
  623. height: math.unit(7, "feet"),
  624. weight: math.unit(80, "kg"),
  625. name: "Front",
  626. image: {
  627. source: "./media/characters/zephiro/front.svg",
  628. extra: 2309 / 2162,
  629. bottom: 0.069
  630. }
  631. },
  632. side: {
  633. height: math.unit(7, "feet"),
  634. weight: math.unit(80, "kg"),
  635. name: "Side",
  636. image: {
  637. source: "./media/characters/zephiro/side.svg",
  638. extra: 2403 / 2279,
  639. bottom: 0.015
  640. }
  641. },
  642. back: {
  643. height: math.unit(7, "feet"),
  644. weight: math.unit(80, "kg"),
  645. name: "Back",
  646. image: {
  647. source: "./media/characters/zephiro/back.svg",
  648. extra: 2373 / 2244,
  649. bottom: 0.013
  650. }
  651. },
  652. },
  653. [
  654. {
  655. name: "Micro",
  656. height: math.unit(3, "inches")
  657. },
  658. {
  659. name: "Normal",
  660. height: math.unit(5 + 3 / 12, "feet"),
  661. default: true
  662. },
  663. {
  664. name: "Macro",
  665. height: math.unit(118, "feet")
  666. },
  667. ]
  668. ))
  669. characterMakers.push(() => makeCharacter(
  670. { name: "Fory" },
  671. {
  672. front: {
  673. height: math.unit(5, "feet"),
  674. weight: math.unit(90, "kg"),
  675. name: "Front",
  676. image: {
  677. source: "./media/characters/fory/front.svg",
  678. extra: 2862 / 2674,
  679. bottom: 180 / 3043.8
  680. }
  681. },
  682. back: {
  683. height: math.unit(5, "feet"),
  684. weight: math.unit(90, "kg"),
  685. name: "Back",
  686. image: {
  687. source: "./media/characters/fory/back.svg",
  688. extra: 2962 / 2791,
  689. bottom: 106 / 3071.8
  690. }
  691. },
  692. foot: {
  693. height: math.unit(2.14, "feet"),
  694. name: "Foot",
  695. image: {
  696. source: "./media/characters/fory/foot.svg"
  697. }
  698. },
  699. },
  700. [
  701. {
  702. name: "Normal",
  703. height: math.unit(5, "feet")
  704. },
  705. {
  706. name: "Macro",
  707. height: math.unit(50, "feet"),
  708. default: true
  709. },
  710. {
  711. name: "Megamacro",
  712. height: math.unit(10, "miles")
  713. },
  714. {
  715. name: "Gigamacro",
  716. height: math.unit(5, "earths")
  717. },
  718. ]
  719. ))
  720. characterMakers.push(() => makeCharacter(
  721. { name: "Kurrikage" },
  722. {
  723. front: {
  724. height: math.unit(7, "feet"),
  725. weight: math.unit(90, "kg"),
  726. name: "Front",
  727. image: {
  728. source: "./media/characters/kurrikage/front.svg",
  729. extra: 1,
  730. bottom: 0.035
  731. }
  732. },
  733. back: {
  734. height: math.unit(7, "feet"),
  735. weight: math.unit(90, "lb"),
  736. name: "Back",
  737. image: {
  738. source: "./media/characters/kurrikage/back.svg"
  739. }
  740. },
  741. paw: {
  742. height: math.unit(1.5, "feet"),
  743. name: "Paw",
  744. image: {
  745. source: "./media/characters/kurrikage/paw.svg"
  746. }
  747. },
  748. staff: {
  749. height: math.unit(6.7, "feet"),
  750. name: "Staff",
  751. image: {
  752. source: "./media/characters/kurrikage/staff.svg"
  753. }
  754. },
  755. peek: {
  756. height: math.unit(1.05, "feet"),
  757. name: "Peeking",
  758. image: {
  759. source: "./media/characters/kurrikage/peek.svg",
  760. bottom: 0.08
  761. }
  762. },
  763. },
  764. [
  765. {
  766. name: "Normal",
  767. height: math.unit(12, "feet"),
  768. default: true
  769. },
  770. {
  771. name: "Big",
  772. height: math.unit(20, "feet")
  773. },
  774. {
  775. name: "Macro",
  776. height: math.unit(500, "feet")
  777. },
  778. {
  779. name: "Megamacro",
  780. height: math.unit(20, "miles")
  781. },
  782. ]
  783. ))
  784. characterMakers.push(() => makeCharacter(
  785. { name: "Shingo" },
  786. {
  787. front: {
  788. height: math.unit(6, "feet"),
  789. weight: math.unit(75, "kg"),
  790. name: "Front",
  791. image: {
  792. source: "./media/characters/shingo/front.svg",
  793. extra: 3511 / 3338,
  794. bottom: 0.005
  795. }
  796. },
  797. },
  798. [
  799. {
  800. name: "Micro",
  801. height: math.unit(4, "inches")
  802. },
  803. {
  804. name: "Normal",
  805. height: math.unit(6, "feet"),
  806. default: true
  807. },
  808. {
  809. name: "Macro",
  810. height: math.unit(108, "feet")
  811. }
  812. ]
  813. ))
  814. characterMakers.push(() => makeCharacter(
  815. { name: "Aigey" },
  816. {
  817. side: {
  818. height: math.unit(6, "feet"),
  819. weight: math.unit(75, "kg"),
  820. name: "Side",
  821. image: {
  822. source: "./media/characters/aigey/side.svg"
  823. }
  824. },
  825. },
  826. [
  827. {
  828. name: "Macro",
  829. height: math.unit(200, "feet"),
  830. default: true
  831. },
  832. {
  833. name: "Megamacro",
  834. height: math.unit(100, "miles")
  835. },
  836. ]
  837. )
  838. )
  839. characterMakers.push(() => makeCharacter(
  840. { name: "Natasha" },
  841. {
  842. front: {
  843. height: math.unit(5 + 5 / 12, "feet"),
  844. weight: math.unit(75, "kg"),
  845. name: "Front",
  846. image: {
  847. source: "./media/characters/natasha/front.svg",
  848. extra: 859/824,
  849. bottom: 23/879.6
  850. }
  851. },
  852. frontNsfw: {
  853. height: math.unit(5 + 5 / 12, "feet"),
  854. weight: math.unit(75, "kg"),
  855. name: "Front (NSFW)",
  856. image: {
  857. source: "./media/characters/natasha/front-nsfw.svg",
  858. extra: 859/824,
  859. bottom: 23/879.6
  860. }
  861. },
  862. frontErect: {
  863. height: math.unit(5 + 5 / 12, "feet"),
  864. weight: math.unit(75, "kg"),
  865. name: "Front (Erect)",
  866. image: {
  867. source: "./media/characters/natasha/front-erect.svg",
  868. extra: 859/824,
  869. bottom: 23/879.6
  870. }
  871. },
  872. back: {
  873. height: math.unit(5 + 5 / 12, "feet"),
  874. weight: math.unit(75, "kg"),
  875. name: "Back",
  876. image: {
  877. source: "./media/characters/natasha/back.svg",
  878. extra: 887.9/852.6,
  879. bottom: 9.7/896.4
  880. }
  881. },
  882. backAlt: {
  883. height: math.unit(5 + 5 / 12, "feet"),
  884. weight: math.unit(75, "kg"),
  885. name: "Back (Alt)",
  886. image: {
  887. source: "./media/characters/natasha/back-alt.svg",
  888. extra: 1236.7/1192,
  889. bottom: 22.3/1258.2
  890. }
  891. },
  892. dick: {
  893. height: math.unit(1.772, "feet"),
  894. name: "Dick",
  895. image: {
  896. source: "./media/characters/natasha/dick.svg"
  897. }
  898. },
  899. },
  900. [
  901. {
  902. name: "Normal",
  903. height: math.unit(5 + 5 / 12, "feet")
  904. },
  905. {
  906. name: "Large",
  907. height: math.unit(12, "feet")
  908. },
  909. {
  910. name: "Macro",
  911. height: math.unit(100, "feet"),
  912. default: true
  913. },
  914. {
  915. name: "Macro+",
  916. height: math.unit(260, "feet")
  917. },
  918. {
  919. name: "Macro++",
  920. height: math.unit(1, "mile")
  921. },
  922. ]
  923. ))
  924. characterMakers.push(() => makeCharacter(
  925. { name: "Malik" },
  926. {
  927. front: {
  928. height: math.unit(6, "feet"),
  929. weight: math.unit(75, "kg"),
  930. name: "Front",
  931. image: {
  932. source: "./media/characters/malik/front.svg"
  933. }
  934. },
  935. side: {
  936. height: math.unit(6, "feet"),
  937. weight: math.unit(75, "kg"),
  938. name: "Side",
  939. image: {
  940. source: "./media/characters/malik/side.svg",
  941. extra: 1.1539
  942. }
  943. },
  944. back: {
  945. height: math.unit(6, "feet"),
  946. weight: math.unit(75, "kg"),
  947. name: "Back",
  948. image: {
  949. source: "./media/characters/malik/back.svg"
  950. }
  951. },
  952. },
  953. [
  954. {
  955. name: "Macro",
  956. height: math.unit(156, "feet"),
  957. default: true
  958. },
  959. {
  960. name: "Macro+",
  961. height: math.unit(1188, "feet")
  962. },
  963. ]
  964. ))
  965. characterMakers.push(() => makeCharacter(
  966. { name: "Sefer" },
  967. {
  968. front: {
  969. height: math.unit(6, "feet"),
  970. weight: math.unit(75, "kg"),
  971. name: "Front",
  972. image: {
  973. source: "./media/characters/sefer/front.svg"
  974. }
  975. },
  976. back: {
  977. height: math.unit(6, "feet"),
  978. weight: math.unit(75, "kg"),
  979. name: "Back",
  980. image: {
  981. source: "./media/characters/sefer/back.svg"
  982. }
  983. },
  984. },
  985. [
  986. {
  987. name: "Normal",
  988. height: math.unit(6, "feet"),
  989. default: true
  990. },
  991. ]
  992. ))
  993. characterMakers.push(() => makeCharacter(
  994. { name: "North" },
  995. {
  996. body: {
  997. height: math.unit(2.2428, "meter"),
  998. weight: math.unit(124.738, "kg"),
  999. name: "Body",
  1000. image: {
  1001. extra: 1225 / 1050,
  1002. source: "./media/characters/north/front.svg"
  1003. }
  1004. }
  1005. },
  1006. [
  1007. {
  1008. name: "Micro",
  1009. height: math.unit(4, "inches")
  1010. },
  1011. {
  1012. name: "Macro",
  1013. height: math.unit(63, "meters")
  1014. },
  1015. {
  1016. name: "Megamacro",
  1017. height: math.unit(101, "miles"),
  1018. default: true
  1019. }
  1020. ]
  1021. ))
  1022. characterMakers.push(() => makeCharacter(
  1023. { name: "Talan" },
  1024. {
  1025. angled: {
  1026. height: math.unit(4, "meter"),
  1027. weight: math.unit(150, "kg"),
  1028. name: "Angled",
  1029. image: {
  1030. source: "./media/characters/talan/angled-sfw.svg",
  1031. bottom: 29 / 3734
  1032. }
  1033. },
  1034. angledNsfw: {
  1035. height: math.unit(4, "meter"),
  1036. weight: math.unit(150, "kg"),
  1037. name: "Angled (NSFW)",
  1038. image: {
  1039. source: "./media/characters/talan/angled-nsfw.svg",
  1040. bottom: 29 / 3734
  1041. }
  1042. },
  1043. frontNsfw: {
  1044. height: math.unit(4, "meter"),
  1045. weight: math.unit(150, "kg"),
  1046. name: "Front (NSFW)",
  1047. image: {
  1048. source: "./media/characters/talan/front-nsfw.svg",
  1049. bottom: 29 / 3734
  1050. }
  1051. },
  1052. sideNsfw: {
  1053. height: math.unit(4, "meter"),
  1054. weight: math.unit(150, "kg"),
  1055. name: "Side (NSFW)",
  1056. image: {
  1057. source: "./media/characters/talan/side-nsfw.svg",
  1058. bottom: 29 / 3734
  1059. }
  1060. },
  1061. back: {
  1062. height: math.unit(4, "meter"),
  1063. weight: math.unit(150, "kg"),
  1064. name: "Back",
  1065. image: {
  1066. source: "./media/characters/talan/back.svg"
  1067. }
  1068. },
  1069. dickBottom: {
  1070. height: math.unit(0.621, "meter"),
  1071. name: "Dick (Bottom)",
  1072. image: {
  1073. source: "./media/characters/talan/dick-bottom.svg"
  1074. }
  1075. },
  1076. dickTop: {
  1077. height: math.unit(0.621, "meter"),
  1078. name: "Dick (Top)",
  1079. image: {
  1080. source: "./media/characters/talan/dick-top.svg"
  1081. }
  1082. },
  1083. dickSide: {
  1084. height: math.unit(0.305, "meter"),
  1085. name: "Dick (Side)",
  1086. image: {
  1087. source: "./media/characters/talan/dick-side.svg"
  1088. }
  1089. },
  1090. dickFront: {
  1091. height: math.unit(0.305, "meter"),
  1092. name: "Dick (Front)",
  1093. image: {
  1094. source: "./media/characters/talan/dick-front.svg"
  1095. }
  1096. },
  1097. },
  1098. [
  1099. {
  1100. name: "Normal",
  1101. height: math.unit(4, "meters")
  1102. },
  1103. {
  1104. name: "Macro",
  1105. height: math.unit(100, "meters")
  1106. },
  1107. {
  1108. name: "Megamacro",
  1109. height: math.unit(2, "miles"),
  1110. default: true
  1111. },
  1112. {
  1113. name: "Gigamacro",
  1114. height: math.unit(5000, "miles")
  1115. },
  1116. {
  1117. name: "Teramacro",
  1118. height: math.unit(100, "parsecs")
  1119. }
  1120. ]
  1121. ))
  1122. characterMakers.push(() => makeCharacter(
  1123. { name: "Gael'Rathus" },
  1124. {
  1125. front: {
  1126. height: math.unit(2, "meter"),
  1127. weight: math.unit(90, "kg"),
  1128. name: "Front",
  1129. image: {
  1130. source: "./media/characters/gael'rathus/front.svg"
  1131. }
  1132. },
  1133. frontAlt: {
  1134. height: math.unit(2, "meter"),
  1135. weight: math.unit(90, "kg"),
  1136. name: "Front (alt)",
  1137. image: {
  1138. source: "./media/characters/gael'rathus/front-alt.svg"
  1139. }
  1140. },
  1141. frontAlt2: {
  1142. height: math.unit(2, "meter"),
  1143. weight: math.unit(90, "kg"),
  1144. name: "Front (alt 2)",
  1145. image: {
  1146. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1147. }
  1148. }
  1149. },
  1150. [
  1151. {
  1152. name: "Normal",
  1153. height: math.unit(9, "feet"),
  1154. default: true
  1155. },
  1156. {
  1157. name: "Large",
  1158. height: math.unit(25, "feet")
  1159. },
  1160. {
  1161. name: "Macro",
  1162. height: math.unit(0.25, "miles")
  1163. },
  1164. {
  1165. name: "Megamacro",
  1166. height: math.unit(10, "miles")
  1167. }
  1168. ]
  1169. ))
  1170. characterMakers.push(() => makeCharacter(
  1171. { name: "Sosha" },
  1172. {
  1173. side: {
  1174. height: math.unit(2, "meter"),
  1175. weight: math.unit(140, "kg"),
  1176. name: "Side",
  1177. image: {
  1178. source: "./media/characters/sosha/side.svg",
  1179. bottom: 0.042
  1180. }
  1181. },
  1182. },
  1183. [
  1184. {
  1185. name: "Normal",
  1186. height: math.unit(12, "feet"),
  1187. default: true
  1188. }
  1189. ]
  1190. ))
  1191. characterMakers.push(() => makeCharacter(
  1192. { name: "RuNNoLa" },
  1193. {
  1194. side: {
  1195. height: math.unit(5 + 5 / 12, "feet"),
  1196. weight: math.unit(170, "kg"),
  1197. name: "Side",
  1198. image: {
  1199. source: "./media/characters/runnola/side.svg",
  1200. extra: 741 / 448,
  1201. bottom: 0.05
  1202. }
  1203. },
  1204. },
  1205. [
  1206. {
  1207. name: "Small",
  1208. height: math.unit(3, "feet")
  1209. },
  1210. {
  1211. name: "Normal",
  1212. height: math.unit(5 + 5 / 12, "feet"),
  1213. default: true
  1214. },
  1215. {
  1216. name: "Big",
  1217. height: math.unit(10, "feet")
  1218. },
  1219. ]
  1220. ))
  1221. characterMakers.push(() => makeCharacter(
  1222. { name: "Kurribird" },
  1223. {
  1224. front: {
  1225. height: math.unit(2, "meter"),
  1226. weight: math.unit(50, "kg"),
  1227. name: "Front",
  1228. image: {
  1229. source: "./media/characters/kurribird/front.svg",
  1230. bottom: 0.015
  1231. }
  1232. },
  1233. frontAlt: {
  1234. height: math.unit(1.5, "meter"),
  1235. weight: math.unit(50, "kg"),
  1236. name: "Front (Alt)",
  1237. image: {
  1238. source: "./media/characters/kurribird/front-alt.svg",
  1239. extra: 1.45
  1240. }
  1241. },
  1242. },
  1243. [
  1244. {
  1245. name: "Normal",
  1246. height: math.unit(7, "feet")
  1247. },
  1248. {
  1249. name: "Big",
  1250. height: math.unit(12, "feet"),
  1251. default: true
  1252. },
  1253. {
  1254. name: "Macro",
  1255. height: math.unit(1500, "feet")
  1256. },
  1257. {
  1258. name: "Megamacro",
  1259. height: math.unit(2, "miles")
  1260. }
  1261. ]
  1262. ))
  1263. characterMakers.push(() => makeCharacter(
  1264. { name: "Elbial" },
  1265. {
  1266. front: {
  1267. height: math.unit(2, "meter"),
  1268. weight: math.unit(80, "kg"),
  1269. name: "Front",
  1270. image: {
  1271. source: "./media/characters/elbial/front.svg",
  1272. extra: 1643 / 1556,
  1273. bottom: 60.2 / 1696
  1274. }
  1275. },
  1276. side: {
  1277. height: math.unit(2, "meter"),
  1278. weight: math.unit(80, "kg"),
  1279. name: "Side",
  1280. image: {
  1281. source: "./media/characters/elbial/side.svg",
  1282. extra: 1630 / 1565,
  1283. bottom: 71.5 / 1697
  1284. }
  1285. },
  1286. back: {
  1287. height: math.unit(2, "meter"),
  1288. weight: math.unit(80, "kg"),
  1289. name: "Back",
  1290. image: {
  1291. source: "./media/characters/elbial/back.svg",
  1292. extra: 1668 / 1595,
  1293. bottom: 5.6 / 1672
  1294. }
  1295. },
  1296. frontDressed: {
  1297. height: math.unit(2, "meter"),
  1298. weight: math.unit(80, "kg"),
  1299. name: "Front (Dressed)",
  1300. image: {
  1301. source: "./media/characters/elbial/front-dressed.svg",
  1302. extra: 1653 / 1584,
  1303. bottom: 57 / 1708
  1304. }
  1305. },
  1306. genitals: {
  1307. height: math.unit(2 / 3.367, "meter"),
  1308. name: "Genitals",
  1309. image: {
  1310. source: "./media/characters/elbial/genitals.svg"
  1311. }
  1312. },
  1313. },
  1314. [
  1315. {
  1316. name: "Large",
  1317. height: math.unit(100, "feet")
  1318. },
  1319. {
  1320. name: "Macro",
  1321. height: math.unit(500, "feet"),
  1322. default: true
  1323. },
  1324. {
  1325. name: "Megamacro",
  1326. height: math.unit(10, "miles")
  1327. },
  1328. {
  1329. name: "Gigamacro",
  1330. height: math.unit(25000, "miles")
  1331. },
  1332. {
  1333. name: "Full-Size",
  1334. height: math.unit(8000000, "gigaparsecs")
  1335. }
  1336. ]
  1337. ))
  1338. characterMakers.push(() => makeCharacter(
  1339. { name: "Noah" },
  1340. {
  1341. front: {
  1342. height: math.unit(2, "meter"),
  1343. weight: math.unit(60, "kg"),
  1344. name: "Front",
  1345. image: {
  1346. source: "./media/characters/noah/front.svg"
  1347. }
  1348. },
  1349. talons: {
  1350. height: math.unit(0.315, "meter"),
  1351. name: "Talons",
  1352. image: {
  1353. source: "./media/characters/noah/talons.svg"
  1354. }
  1355. }
  1356. },
  1357. [
  1358. {
  1359. name: "Large",
  1360. height: math.unit(50, "feet")
  1361. },
  1362. {
  1363. name: "Macro",
  1364. height: math.unit(750, "feet"),
  1365. default: true
  1366. },
  1367. {
  1368. name: "Megamacro",
  1369. height: math.unit(50, "miles")
  1370. },
  1371. {
  1372. name: "Gigamacro",
  1373. height: math.unit(100000, "miles")
  1374. },
  1375. {
  1376. name: "Full-Size",
  1377. height: math.unit(3000000000, "miles")
  1378. }
  1379. ]
  1380. ))
  1381. characterMakers.push(() => makeCharacter(
  1382. { name: "Natalya" },
  1383. {
  1384. front: {
  1385. height: math.unit(2, "meter"),
  1386. weight: math.unit(80, "kg"),
  1387. name: "Front",
  1388. image: {
  1389. source: "./media/characters/natalya/front.svg"
  1390. }
  1391. },
  1392. back: {
  1393. height: math.unit(2, "meter"),
  1394. weight: math.unit(80, "kg"),
  1395. name: "Back",
  1396. image: {
  1397. source: "./media/characters/natalya/back.svg"
  1398. }
  1399. }
  1400. },
  1401. [
  1402. {
  1403. name: "Normal",
  1404. height: math.unit(150, "feet"),
  1405. default: true
  1406. },
  1407. {
  1408. name: "Megamacro",
  1409. height: math.unit(5, "miles")
  1410. },
  1411. {
  1412. name: "Full-Size",
  1413. height: math.unit(600, "kiloparsecs")
  1414. }
  1415. ]
  1416. ))
  1417. characterMakers.push(() => makeCharacter(
  1418. { name: "Erestrebah" },
  1419. {
  1420. front: {
  1421. height: math.unit(2, "meter"),
  1422. weight: math.unit(50, "kg"),
  1423. name: "Front",
  1424. image: {
  1425. source: "./media/characters/erestrebah/front.svg",
  1426. extra: 208 / 193,
  1427. bottom: 0.055
  1428. }
  1429. },
  1430. back: {
  1431. height: math.unit(2, "meter"),
  1432. weight: math.unit(50, "kg"),
  1433. name: "Back",
  1434. image: {
  1435. source: "./media/characters/erestrebah/back.svg",
  1436. extra: 1.3
  1437. }
  1438. }
  1439. },
  1440. [
  1441. {
  1442. name: "Normal",
  1443. height: math.unit(10, "feet")
  1444. },
  1445. {
  1446. name: "Large",
  1447. height: math.unit(50, "feet"),
  1448. default: true
  1449. },
  1450. {
  1451. name: "Macro",
  1452. height: math.unit(300, "feet")
  1453. },
  1454. {
  1455. name: "Macro+",
  1456. height: math.unit(750, "feet")
  1457. },
  1458. {
  1459. name: "Megamacro",
  1460. height: math.unit(3, "miles")
  1461. }
  1462. ]
  1463. ))
  1464. characterMakers.push(() => makeCharacter(
  1465. { name: "Jennifer" },
  1466. {
  1467. front: {
  1468. height: math.unit(2, "meter"),
  1469. weight: math.unit(80, "kg"),
  1470. name: "Front",
  1471. image: {
  1472. source: "./media/characters/jennifer/front.svg",
  1473. bottom: 0.11,
  1474. extra: 1.16
  1475. }
  1476. },
  1477. frontAlt: {
  1478. height: math.unit(2, "meter"),
  1479. weight: math.unit(80, "kg"),
  1480. name: "Front (Alt)",
  1481. image: {
  1482. source: "./media/characters/jennifer/front-alt.svg"
  1483. }
  1484. }
  1485. },
  1486. [
  1487. {
  1488. name: "Canon Height",
  1489. height: math.unit(120, "feet"),
  1490. default: true
  1491. },
  1492. {
  1493. name: "Macro+",
  1494. height: math.unit(300, "feet")
  1495. },
  1496. {
  1497. name: "Megamacro",
  1498. height: math.unit(20000, "feet")
  1499. }
  1500. ]
  1501. ))
  1502. characterMakers.push(() => makeCharacter(
  1503. { name: "Kalista" },
  1504. {
  1505. front: {
  1506. height: math.unit(2, "meter"),
  1507. weight: math.unit(50, "kg"),
  1508. name: "Front",
  1509. image: {
  1510. source: "./media/characters/kalista/front.svg",
  1511. extra: 1947 / 1700
  1512. }
  1513. },
  1514. back: {
  1515. height: math.unit(2, "meter"),
  1516. weight: math.unit(50, "kg"),
  1517. name: "Back",
  1518. image: {
  1519. source: "./media/characters/kalista/back.svg",
  1520. extra: 1366 / 1156
  1521. }
  1522. }
  1523. },
  1524. [
  1525. {
  1526. name: "Uncomfortably Small",
  1527. height: math.unit(10, "feet")
  1528. },
  1529. {
  1530. name: "Small",
  1531. height: math.unit(30, "feet")
  1532. },
  1533. {
  1534. name: "Macro",
  1535. height: math.unit(100, "feet"),
  1536. default: true
  1537. },
  1538. {
  1539. name: "Macro+",
  1540. height: math.unit(2000, "feet")
  1541. },
  1542. {
  1543. name: "True Form",
  1544. height: math.unit(8924, "miles")
  1545. }
  1546. ]
  1547. ))
  1548. characterMakers.push(() => makeCharacter(
  1549. { name: "GiantGrowingVixen" },
  1550. {
  1551. front: {
  1552. height: math.unit(2, "meter"),
  1553. weight: math.unit(120, "kg"),
  1554. name: "Front",
  1555. image: {
  1556. source: "./media/characters/ggv/front.svg"
  1557. }
  1558. },
  1559. side: {
  1560. height: math.unit(2, "meter"),
  1561. weight: math.unit(120, "kg"),
  1562. name: "Side",
  1563. image: {
  1564. source: "./media/characters/ggv/side.svg"
  1565. }
  1566. }
  1567. },
  1568. [
  1569. {
  1570. name: "Extremely Puny",
  1571. height: math.unit(9 + 5 / 12, "feet")
  1572. },
  1573. {
  1574. name: "Horribly Small",
  1575. height: math.unit(47.7, "miles"),
  1576. default: true
  1577. },
  1578. {
  1579. name: "Reasonably Sized",
  1580. height: math.unit(25000, "parsecs")
  1581. },
  1582. {
  1583. name: "Slightly Uncompressed",
  1584. height: math.unit(7.77e31, "parsecs")
  1585. },
  1586. {
  1587. name: "Omniversal",
  1588. height: math.unit(1e300, "meters")
  1589. },
  1590. ]
  1591. ))
  1592. characterMakers.push(() => makeCharacter(
  1593. { name: "Napalm" },
  1594. {
  1595. front: {
  1596. height: math.unit(2, "meter"),
  1597. weight: math.unit(75, "lb"),
  1598. name: "Front",
  1599. image: {
  1600. source: "./media/characters/napalm/front.svg"
  1601. }
  1602. },
  1603. back: {
  1604. height: math.unit(2, "meter"),
  1605. weight: math.unit(75, "lb"),
  1606. name: "Back",
  1607. image: {
  1608. source: "./media/characters/napalm/back.svg"
  1609. }
  1610. }
  1611. },
  1612. [
  1613. {
  1614. name: "Standard",
  1615. height: math.unit(55, "feet"),
  1616. default: true
  1617. }
  1618. ]
  1619. ))
  1620. characterMakers.push(() => makeCharacter(
  1621. { name: "Asana" },
  1622. {
  1623. front: {
  1624. height: math.unit(7 + 5 / 6, "feet"),
  1625. weight: math.unit(325, "lb"),
  1626. name: "Front",
  1627. image: {
  1628. source: "./media/characters/asana/front.svg",
  1629. extra: 1128 / 1068
  1630. }
  1631. },
  1632. back: {
  1633. height: math.unit(7 + 5 / 6, "feet"),
  1634. weight: math.unit(325, "lb"),
  1635. name: "Back",
  1636. image: {
  1637. source: "./media/characters/asana/back.svg",
  1638. extra: 1128 / 1068
  1639. }
  1640. },
  1641. },
  1642. [
  1643. {
  1644. name: "Standard",
  1645. height: math.unit(7 + 5 / 6, "feet"),
  1646. default: true
  1647. },
  1648. {
  1649. name: "Large",
  1650. height: math.unit(10, "meters")
  1651. },
  1652. {
  1653. name: "Macro",
  1654. height: math.unit(2500, "meters")
  1655. },
  1656. {
  1657. name: "Megamacro",
  1658. height: math.unit(5e6, "meters")
  1659. },
  1660. {
  1661. name: "Examacro",
  1662. height: math.unit(5e12, "lightyears")
  1663. },
  1664. {
  1665. name: "Max Size",
  1666. height: math.unit(1e31, "lightyears")
  1667. }
  1668. ]
  1669. ))
  1670. characterMakers.push(() => makeCharacter(
  1671. { name: "Ebony" },
  1672. {
  1673. front: {
  1674. height: math.unit(2, "meter"),
  1675. weight: math.unit(60, "kg"),
  1676. name: "Front",
  1677. image: {
  1678. source: "./media/characters/ebony/front.svg",
  1679. bottom: 0.03,
  1680. extra: 1045 / 810 + 0.03
  1681. }
  1682. },
  1683. side: {
  1684. height: math.unit(2, "meter"),
  1685. weight: math.unit(60, "kg"),
  1686. name: "Side",
  1687. image: {
  1688. source: "./media/characters/ebony/side.svg",
  1689. bottom: 0.03,
  1690. extra: 1045 / 810 + 0.03
  1691. }
  1692. },
  1693. back: {
  1694. height: math.unit(2, "meter"),
  1695. weight: math.unit(60, "kg"),
  1696. name: "Back",
  1697. image: {
  1698. source: "./media/characters/ebony/back.svg",
  1699. bottom: 0.01,
  1700. extra: 1045 / 810 + 0.01
  1701. }
  1702. },
  1703. },
  1704. [
  1705. // TODO check why I did this lol
  1706. {
  1707. name: "Standard",
  1708. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1709. default: true
  1710. },
  1711. {
  1712. name: "Macro",
  1713. height: math.unit(200, "feet")
  1714. },
  1715. {
  1716. name: "Gigamacro",
  1717. height: math.unit(13000, "km")
  1718. }
  1719. ]
  1720. ))
  1721. characterMakers.push(() => makeCharacter(
  1722. { name: "Mountain" },
  1723. {
  1724. front: {
  1725. height: math.unit(6, "feet"),
  1726. weight: math.unit(175, "lb"),
  1727. name: "Front",
  1728. image: {
  1729. source: "./media/characters/mountain/front.svg"
  1730. }
  1731. },
  1732. back: {
  1733. height: math.unit(6, "feet"),
  1734. weight: math.unit(175, "lb"),
  1735. name: "Back",
  1736. image: {
  1737. source: "./media/characters/mountain/back.svg"
  1738. }
  1739. },
  1740. },
  1741. [
  1742. {
  1743. name: "Large",
  1744. height: math.unit(20, "meters")
  1745. },
  1746. {
  1747. name: "Macro",
  1748. height: math.unit(300, "meters")
  1749. },
  1750. {
  1751. name: "Gigamacro",
  1752. height: math.unit(10000, "km"),
  1753. default: true
  1754. },
  1755. {
  1756. name: "Examacro",
  1757. height: math.unit(10e9, "lightyears")
  1758. }
  1759. ]
  1760. ))
  1761. characterMakers.push(() => makeCharacter(
  1762. { name: "Rick" },
  1763. {
  1764. front: {
  1765. height: math.unit(8, "feet"),
  1766. weight: math.unit(500, "lb"),
  1767. name: "Front",
  1768. image: {
  1769. source: "./media/characters/rick/front.svg"
  1770. }
  1771. }
  1772. },
  1773. [
  1774. {
  1775. name: "Normal",
  1776. height: math.unit(8, "feet"),
  1777. default: true
  1778. },
  1779. {
  1780. name: "Macro",
  1781. height: math.unit(5, "km")
  1782. }
  1783. ]
  1784. ))
  1785. characterMakers.push(() => makeCharacter(
  1786. { name: "Ona" },
  1787. {
  1788. front: {
  1789. height: math.unit(8, "feet"),
  1790. weight: math.unit(120, "lb"),
  1791. name: "Front",
  1792. image: {
  1793. source: "./media/characters/ona/front.svg"
  1794. }
  1795. },
  1796. frontAlt: {
  1797. height: math.unit(8, "feet"),
  1798. weight: math.unit(120, "lb"),
  1799. name: "Front (Alt)",
  1800. image: {
  1801. source: "./media/characters/ona/front-alt.svg"
  1802. }
  1803. },
  1804. back: {
  1805. height: math.unit(8, "feet"),
  1806. weight: math.unit(120, "lb"),
  1807. name: "Back",
  1808. image: {
  1809. source: "./media/characters/ona/back.svg"
  1810. }
  1811. },
  1812. foot: {
  1813. height: math.unit(1.1, "feet"),
  1814. name: "Foot",
  1815. image: {
  1816. source: "./media/characters/ona/foot.svg"
  1817. }
  1818. }
  1819. },
  1820. [
  1821. {
  1822. name: "Megamacro",
  1823. height: math.unit(70, "km"),
  1824. default: true
  1825. },
  1826. {
  1827. name: "Gigamacro",
  1828. height: math.unit(681818, "miles")
  1829. },
  1830. {
  1831. name: "Examacro",
  1832. height: math.unit(3800000, "lightyears")
  1833. },
  1834. ]
  1835. ))
  1836. characterMakers.push(() => makeCharacter(
  1837. { name: "Mech" },
  1838. {
  1839. front: {
  1840. height: math.unit(12, "feet"),
  1841. weight: math.unit(3000, "lb"),
  1842. name: "Front",
  1843. image: {
  1844. source: "./media/characters/mech/front.svg",
  1845. bottom: 0.025,
  1846. }
  1847. },
  1848. back: {
  1849. height: math.unit(12, "feet"),
  1850. weight: math.unit(3000, "lb"),
  1851. name: "Back",
  1852. image: {
  1853. source: "./media/characters/mech/back.svg",
  1854. bottom: 0.03,
  1855. }
  1856. }
  1857. },
  1858. [
  1859. {
  1860. name: "Normal",
  1861. height: math.unit(12, "feet")
  1862. },
  1863. {
  1864. name: "Macro",
  1865. height: math.unit(300, "feet"),
  1866. default: true
  1867. },
  1868. {
  1869. name: "Macro+",
  1870. height: math.unit(1500, "feet")
  1871. },
  1872. ]
  1873. ))
  1874. characterMakers.push(() => makeCharacter(
  1875. { name: "Gregory" },
  1876. {
  1877. front: {
  1878. height: math.unit(1.3, "meter"),
  1879. weight: math.unit(30, "kg"),
  1880. name: "Front",
  1881. image: {
  1882. source: "./media/characters/gregory/front.svg",
  1883. }
  1884. }
  1885. },
  1886. [
  1887. {
  1888. name: "Normal",
  1889. height: math.unit(1.3, "meter"),
  1890. default: true
  1891. },
  1892. {
  1893. name: "Macro",
  1894. height: math.unit(20, "meter")
  1895. }
  1896. ]
  1897. ))
  1898. characterMakers.push(() => makeCharacter(
  1899. { name: "Elory" },
  1900. {
  1901. front: {
  1902. height: math.unit(2.8, "meter"),
  1903. weight: math.unit(200, "kg"),
  1904. name: "Front",
  1905. image: {
  1906. source: "./media/characters/elory/front.svg",
  1907. }
  1908. }
  1909. },
  1910. [
  1911. {
  1912. name: "Normal",
  1913. height: math.unit(2.8, "meter"),
  1914. default: true
  1915. },
  1916. {
  1917. name: "Macro",
  1918. height: math.unit(38, "meter")
  1919. }
  1920. ]
  1921. ))
  1922. characterMakers.push(() => makeCharacter(
  1923. { name: "Angelpatamon" },
  1924. {
  1925. front: {
  1926. height: math.unit(470, "feet"),
  1927. weight: math.unit(924, "tons"),
  1928. name: "Front",
  1929. image: {
  1930. source: "./media/characters/angelpatamon/front.svg",
  1931. }
  1932. }
  1933. },
  1934. [
  1935. {
  1936. name: "Normal",
  1937. height: math.unit(470, "feet"),
  1938. default: true
  1939. },
  1940. {
  1941. name: "Deity Size I",
  1942. height: math.unit(28651.2, "km")
  1943. },
  1944. {
  1945. name: "Deity Size II",
  1946. height: math.unit(171907.2, "km")
  1947. }
  1948. ]
  1949. ))
  1950. characterMakers.push(() => makeCharacter(
  1951. { name: "Cryae" },
  1952. {
  1953. side: {
  1954. height: math.unit(7.2, "meter"),
  1955. weight: math.unit(8.2, "tons"),
  1956. name: "Side",
  1957. image: {
  1958. source: "./media/characters/cryae/side.svg",
  1959. extra: 3500 / 1500
  1960. }
  1961. }
  1962. },
  1963. [
  1964. {
  1965. name: "Normal",
  1966. height: math.unit(7.2, "meter"),
  1967. default: true
  1968. }
  1969. ]
  1970. ))
  1971. characterMakers.push(() => makeCharacter(
  1972. { name: "Xera" },
  1973. {
  1974. front: {
  1975. height: math.unit(6, "feet"),
  1976. weight: math.unit(175, "lb"),
  1977. name: "Front",
  1978. image: {
  1979. source: "./media/characters/xera/front.svg",
  1980. extra: 2300 / 2061
  1981. }
  1982. },
  1983. side: {
  1984. height: math.unit(6, "feet"),
  1985. weight: math.unit(175, "lb"),
  1986. name: "Side",
  1987. image: {
  1988. source: "./media/characters/xera/side.svg",
  1989. extra: 2300 / 2061
  1990. }
  1991. },
  1992. back: {
  1993. height: math.unit(6, "feet"),
  1994. weight: math.unit(175, "lb"),
  1995. name: "Back",
  1996. image: {
  1997. source: "./media/characters/xera/back.svg"
  1998. }
  1999. },
  2000. },
  2001. [
  2002. {
  2003. name: "Small",
  2004. height: math.unit(10, "feet")
  2005. },
  2006. {
  2007. name: "Macro",
  2008. height: math.unit(500, "meters"),
  2009. default: true
  2010. },
  2011. {
  2012. name: "Macro+",
  2013. height: math.unit(10, "km")
  2014. },
  2015. {
  2016. name: "Gigamacro",
  2017. height: math.unit(25000, "km")
  2018. },
  2019. {
  2020. name: "Teramacro",
  2021. height: math.unit(3e6, "km")
  2022. }
  2023. ]
  2024. ))
  2025. characterMakers.push(() => makeCharacter(
  2026. { name: "Nebula" },
  2027. {
  2028. front: {
  2029. height: math.unit(6, "feet"),
  2030. weight: math.unit(175, "lb"),
  2031. name: "Front",
  2032. image: {
  2033. source: "./media/characters/nebula/front.svg",
  2034. extra: 2600 / 2450
  2035. }
  2036. }
  2037. },
  2038. [
  2039. {
  2040. name: "Small",
  2041. height: math.unit(4.5, "meters")
  2042. },
  2043. {
  2044. name: "Macro",
  2045. height: math.unit(1500, "meters"),
  2046. default: true
  2047. },
  2048. {
  2049. name: "Megamacro",
  2050. height: math.unit(150, "km")
  2051. },
  2052. {
  2053. name: "Gigamacro",
  2054. height: math.unit(27000, "km")
  2055. }
  2056. ]
  2057. ))
  2058. characterMakers.push(() => makeCharacter(
  2059. { name: "Abysgar" },
  2060. {
  2061. front: {
  2062. height: math.unit(6, "feet"),
  2063. weight: math.unit(225, "lb"),
  2064. name: "Front",
  2065. image: {
  2066. source: "./media/characters/abysgar/front.svg"
  2067. }
  2068. }
  2069. },
  2070. [
  2071. {
  2072. name: "Small",
  2073. height: math.unit(4.5, "meters")
  2074. },
  2075. {
  2076. name: "Macro",
  2077. height: math.unit(1250, "meters"),
  2078. default: true
  2079. },
  2080. {
  2081. name: "Megamacro",
  2082. height: math.unit(125, "km")
  2083. },
  2084. {
  2085. name: "Gigamacro",
  2086. height: math.unit(26000, "km")
  2087. }
  2088. ]
  2089. ))
  2090. characterMakers.push(() => makeCharacter(
  2091. { name: "Yakuz" },
  2092. {
  2093. front: {
  2094. height: math.unit(6, "feet"),
  2095. weight: math.unit(180, "lb"),
  2096. name: "Front",
  2097. image: {
  2098. source: "./media/characters/yakuz/front.svg"
  2099. }
  2100. }
  2101. },
  2102. [
  2103. {
  2104. name: "Small",
  2105. height: math.unit(5, "meters")
  2106. },
  2107. {
  2108. name: "Macro",
  2109. height: math.unit(1500, "meters"),
  2110. default: true
  2111. },
  2112. {
  2113. name: "Megamacro",
  2114. height: math.unit(200, "km")
  2115. },
  2116. {
  2117. name: "Gigamacro",
  2118. height: math.unit(100000, "km")
  2119. }
  2120. ]
  2121. ))
  2122. characterMakers.push(() => makeCharacter(
  2123. { name: "Mirova" },
  2124. {
  2125. front: {
  2126. height: math.unit(6, "feet"),
  2127. weight: math.unit(175, "lb"),
  2128. name: "Front",
  2129. image: {
  2130. source: "./media/characters/mirova/front.svg"
  2131. }
  2132. }
  2133. },
  2134. [
  2135. {
  2136. name: "Small",
  2137. height: math.unit(5, "meters")
  2138. },
  2139. {
  2140. name: "Macro",
  2141. height: math.unit(900, "meters"),
  2142. default: true
  2143. },
  2144. {
  2145. name: "Megamacro",
  2146. height: math.unit(135, "km")
  2147. },
  2148. {
  2149. name: "Gigamacro",
  2150. height: math.unit(20000, "km")
  2151. }
  2152. ]
  2153. ))
  2154. characterMakers.push(() => makeCharacter(
  2155. { name: "Asana (Mech)" },
  2156. {
  2157. side: {
  2158. height: math.unit(28.35, "feet"),
  2159. weight: math.unit(99.75, "tons"),
  2160. name: "Side",
  2161. image: {
  2162. source: "./media/characters/asana-mech/side.svg"
  2163. }
  2164. }
  2165. },
  2166. [
  2167. {
  2168. name: "Normal",
  2169. height: math.unit(28.35, "feet"),
  2170. default: true
  2171. },
  2172. {
  2173. name: "Macro",
  2174. height: math.unit(2500, "feet")
  2175. },
  2176. {
  2177. name: "Megamacro",
  2178. height: math.unit(25, "miles")
  2179. },
  2180. {
  2181. name: "Examacro",
  2182. height: math.unit(6e8, "lightyears")
  2183. },
  2184. ]
  2185. ))
  2186. characterMakers.push(() => makeCharacter(
  2187. { name: "Ashtrek" },
  2188. {
  2189. front: {
  2190. height: math.unit(2, "meters"),
  2191. weight: math.unit(70, "kg"),
  2192. name: "Front",
  2193. image: {
  2194. source: "./media/characters/ashtrek/front.svg",
  2195. extra: 560 / 524,
  2196. bottom: 0.01
  2197. }
  2198. },
  2199. frontArmor: {
  2200. height: math.unit(2, "meters"),
  2201. weight: math.unit(76, "kg"),
  2202. name: "Front (Armor)",
  2203. image: {
  2204. source: "./media/characters/ashtrek/front-armor.svg",
  2205. extra: 561 / 527,
  2206. bottom: 0.01
  2207. }
  2208. },
  2209. side: {
  2210. height: math.unit(2, "meters"),
  2211. weight: math.unit(70, "kg"),
  2212. name: "Side",
  2213. image: {
  2214. source: "./media/characters/ashtrek/side.svg",
  2215. extra: 1717 / 1609,
  2216. bottom: 0.005
  2217. }
  2218. },
  2219. back: {
  2220. height: math.unit(2, "meters"),
  2221. weight: math.unit(70, "kg"),
  2222. name: "Back",
  2223. image: {
  2224. source: "./media/characters/ashtrek/back.svg",
  2225. extra: 1570 / 1501
  2226. }
  2227. },
  2228. },
  2229. [
  2230. {
  2231. name: "DEFCON 5",
  2232. height: math.unit(5, "meters")
  2233. },
  2234. {
  2235. name: "DEFCON 4",
  2236. height: math.unit(500, "meters"),
  2237. default: true
  2238. },
  2239. {
  2240. name: "DEFCON 3",
  2241. height: math.unit(5, "km")
  2242. },
  2243. {
  2244. name: "DEFCON 2",
  2245. height: math.unit(500, "km")
  2246. },
  2247. {
  2248. name: "DEFCON 1",
  2249. height: math.unit(500000, "km")
  2250. },
  2251. {
  2252. name: "DEFCON 0",
  2253. height: math.unit(3, "gigaparsecs")
  2254. },
  2255. ]
  2256. ))
  2257. characterMakers.push(() => makeCharacter(
  2258. { name: "Gale" },
  2259. {
  2260. front: {
  2261. height: math.unit(2, "meters"),
  2262. weight: math.unit(76, "kg"),
  2263. name: "Front",
  2264. image: {
  2265. source: "./media/characters/gale/front.svg"
  2266. }
  2267. },
  2268. frontAlt1: {
  2269. height: math.unit(2, "meters"),
  2270. weight: math.unit(76, "kg"),
  2271. name: "Front (Alt 1)",
  2272. image: {
  2273. source: "./media/characters/gale/front-alt-1.svg"
  2274. }
  2275. },
  2276. frontAlt2: {
  2277. height: math.unit(2, "meters"),
  2278. weight: math.unit(76, "kg"),
  2279. name: "Front (Alt 2)",
  2280. image: {
  2281. source: "./media/characters/gale/front-alt-2.svg"
  2282. }
  2283. },
  2284. },
  2285. [
  2286. {
  2287. name: "Normal",
  2288. height: math.unit(7, "feet")
  2289. },
  2290. {
  2291. name: "Macro",
  2292. height: math.unit(150, "feet"),
  2293. default: true
  2294. },
  2295. {
  2296. name: "Macro+",
  2297. height: math.unit(300, "feet")
  2298. },
  2299. ]
  2300. ))
  2301. characterMakers.push(() => makeCharacter(
  2302. { name: "Draylen" },
  2303. {
  2304. front: {
  2305. height: math.unit(2, "meters"),
  2306. weight: math.unit(76, "kg"),
  2307. name: "Front",
  2308. image: {
  2309. source: "./media/characters/draylen/front.svg"
  2310. }
  2311. }
  2312. },
  2313. [
  2314. {
  2315. name: "Macro",
  2316. height: math.unit(150, "feet"),
  2317. default: true
  2318. }
  2319. ]
  2320. ))
  2321. characterMakers.push(() => makeCharacter(
  2322. { name: "Chez" },
  2323. {
  2324. front: {
  2325. height: math.unit(7 + 9 / 12, "feet"),
  2326. weight: math.unit(379, "lbs"),
  2327. name: "Front",
  2328. image: {
  2329. source: "./media/characters/chez/front.svg"
  2330. }
  2331. },
  2332. side: {
  2333. height: math.unit(7 + 9 / 12, "feet"),
  2334. weight: math.unit(379, "lbs"),
  2335. name: "Side",
  2336. image: {
  2337. source: "./media/characters/chez/side.svg"
  2338. }
  2339. }
  2340. },
  2341. [
  2342. {
  2343. name: "Normal",
  2344. height: math.unit(7 + 9 / 12, "feet"),
  2345. default: true
  2346. },
  2347. {
  2348. name: "God King",
  2349. height: math.unit(9750000, "meters")
  2350. }
  2351. ]
  2352. ))
  2353. characterMakers.push(() => makeCharacter(
  2354. { name: "Kaylum" },
  2355. {
  2356. front: {
  2357. height: math.unit(6, "feet"),
  2358. weight: math.unit(275, "lbs"),
  2359. name: "Front",
  2360. image: {
  2361. source: "./media/characters/kaylum/front.svg",
  2362. bottom: 0.01,
  2363. extra: 1166 / 1031
  2364. }
  2365. },
  2366. frontWingless: {
  2367. height: math.unit(6, "feet"),
  2368. weight: math.unit(275, "lbs"),
  2369. name: "Front (Wingless)",
  2370. image: {
  2371. source: "./media/characters/kaylum/front-wingless.svg",
  2372. bottom: 0.01,
  2373. extra: 1117 / 1031
  2374. }
  2375. }
  2376. },
  2377. [
  2378. {
  2379. name: "Normal",
  2380. height: math.unit(3.05, "meters")
  2381. },
  2382. {
  2383. name: "Master",
  2384. height: math.unit(5.5, "meters")
  2385. },
  2386. {
  2387. name: "Rampage",
  2388. height: math.unit(19, "meters")
  2389. },
  2390. {
  2391. name: "Macro Lite",
  2392. height: math.unit(37, "meters")
  2393. },
  2394. {
  2395. name: "Hyper Predator",
  2396. height: math.unit(61, "meters")
  2397. },
  2398. {
  2399. name: "Macro",
  2400. height: math.unit(138, "meters"),
  2401. default: true
  2402. }
  2403. ]
  2404. ))
  2405. characterMakers.push(() => makeCharacter(
  2406. { name: "Geta" },
  2407. {
  2408. front: {
  2409. height: math.unit(6, "feet"),
  2410. weight: math.unit(150, "lbs"),
  2411. name: "Front",
  2412. image: {
  2413. source: "./media/characters/geta/front.svg"
  2414. }
  2415. }
  2416. },
  2417. [
  2418. {
  2419. name: "Micro",
  2420. height: math.unit(3, "inches"),
  2421. default: true
  2422. },
  2423. {
  2424. name: "Normal",
  2425. height: math.unit(5 + 5 / 12, "feet")
  2426. }
  2427. ]
  2428. ))
  2429. characterMakers.push(() => makeCharacter(
  2430. { name: "Tyrnn" },
  2431. {
  2432. front: {
  2433. height: math.unit(6, "feet"),
  2434. weight: math.unit(300, "lbs"),
  2435. name: "Front",
  2436. image: {
  2437. source: "./media/characters/tyrnn/front.svg"
  2438. }
  2439. }
  2440. },
  2441. [
  2442. {
  2443. name: "Main Height",
  2444. height: math.unit(355, "feet"),
  2445. default: true
  2446. },
  2447. {
  2448. name: "Fave. Height",
  2449. height: math.unit(2400, "feet")
  2450. }
  2451. ]
  2452. ))
  2453. characterMakers.push(() => makeCharacter(
  2454. { name: "Apple" },
  2455. {
  2456. front: {
  2457. height: math.unit(6, "feet"),
  2458. weight: math.unit(300, "lbs"),
  2459. name: "Front",
  2460. image: {
  2461. source: "./media/characters/appledectomy/front.svg"
  2462. }
  2463. }
  2464. },
  2465. [
  2466. {
  2467. name: "Macro",
  2468. height: math.unit(2500, "feet")
  2469. },
  2470. {
  2471. name: "Megamacro",
  2472. height: math.unit(50, "miles"),
  2473. default: true
  2474. },
  2475. {
  2476. name: "Gigamacro",
  2477. height: math.unit(5000, "miles")
  2478. },
  2479. {
  2480. name: "Teramacro",
  2481. height: math.unit(250000, "miles")
  2482. },
  2483. ]
  2484. ))
  2485. characterMakers.push(() => makeCharacter(
  2486. { name: "Vulpes" },
  2487. {
  2488. front: {
  2489. height: math.unit(6, "feet"),
  2490. weight: math.unit(200, "lbs"),
  2491. name: "Front",
  2492. image: {
  2493. source: "./media/characters/vulpes/front.svg",
  2494. extra: 573 / 543,
  2495. bottom: 0.033
  2496. }
  2497. },
  2498. side: {
  2499. height: math.unit(6, "feet"),
  2500. weight: math.unit(200, "lbs"),
  2501. name: "Side",
  2502. image: {
  2503. source: "./media/characters/vulpes/side.svg",
  2504. extra: 573 / 543,
  2505. bottom: 0.01
  2506. }
  2507. },
  2508. back: {
  2509. height: math.unit(6, "feet"),
  2510. weight: math.unit(200, "lbs"),
  2511. name: "Back",
  2512. image: {
  2513. source: "./media/characters/vulpes/back.svg",
  2514. extra: 573 / 543,
  2515. }
  2516. },
  2517. feet: {
  2518. height: math.unit(1.276, "feet"),
  2519. name: "Feet",
  2520. image: {
  2521. source: "./media/characters/vulpes/feet.svg"
  2522. }
  2523. },
  2524. maw: {
  2525. height: math.unit(1.18, "feet"),
  2526. name: "Maw",
  2527. image: {
  2528. source: "./media/characters/vulpes/maw.svg"
  2529. }
  2530. },
  2531. },
  2532. [
  2533. {
  2534. name: "Micro",
  2535. height: math.unit(2, "inches")
  2536. },
  2537. {
  2538. name: "Normal",
  2539. height: math.unit(6.3, "feet")
  2540. },
  2541. {
  2542. name: "Macro",
  2543. height: math.unit(850, "feet")
  2544. },
  2545. {
  2546. name: "Megamacro",
  2547. height: math.unit(7500, "feet"),
  2548. default: true
  2549. },
  2550. {
  2551. name: "Gigamacro",
  2552. height: math.unit(570000, "miles")
  2553. }
  2554. ]
  2555. ))
  2556. characterMakers.push(() => makeCharacter(
  2557. { name: "Rain Fallen" },
  2558. {
  2559. front: {
  2560. height: math.unit(6, "feet"),
  2561. weight: math.unit(210, "lbs"),
  2562. name: "Front",
  2563. image: {
  2564. source: "./media/characters/rain-fallen/front.svg"
  2565. }
  2566. },
  2567. side: {
  2568. height: math.unit(6, "feet"),
  2569. weight: math.unit(210, "lbs"),
  2570. name: "Side",
  2571. image: {
  2572. source: "./media/characters/rain-fallen/side.svg"
  2573. }
  2574. },
  2575. back: {
  2576. height: math.unit(6, "feet"),
  2577. weight: math.unit(210, "lbs"),
  2578. name: "Back",
  2579. image: {
  2580. source: "./media/characters/rain-fallen/back.svg"
  2581. }
  2582. },
  2583. feral: {
  2584. height: math.unit(9, "feet"),
  2585. weight: math.unit(700, "lbs"),
  2586. name: "Feral",
  2587. image: {
  2588. source: "./media/characters/rain-fallen/feral.svg"
  2589. }
  2590. },
  2591. },
  2592. [
  2593. {
  2594. name: "Normal",
  2595. height: math.unit(5, "meter")
  2596. },
  2597. {
  2598. name: "Macro",
  2599. height: math.unit(150, "meter"),
  2600. default: true
  2601. },
  2602. {
  2603. name: "Megamacro",
  2604. height: math.unit(278e6, "meter")
  2605. },
  2606. {
  2607. name: "Gigamacro",
  2608. height: math.unit(2e9, "meter")
  2609. },
  2610. {
  2611. name: "Teramacro",
  2612. height: math.unit(8e12, "meter")
  2613. },
  2614. {
  2615. name: "Devourer",
  2616. height: math.unit(14, "zettameters")
  2617. },
  2618. {
  2619. name: "Scarlet King",
  2620. height: math.unit(18, "yottameters")
  2621. },
  2622. {
  2623. name: "Void",
  2624. height: math.unit(6.66e66, "yottameters")
  2625. }
  2626. ]
  2627. ))
  2628. characterMakers.push(() => makeCharacter(
  2629. { name: "Zaakira" },
  2630. {
  2631. standing: {
  2632. height: math.unit(6, "feet"),
  2633. weight: math.unit(180, "lbs"),
  2634. name: "Standing",
  2635. image: {
  2636. source: "./media/characters/zaakira/standing.svg"
  2637. }
  2638. },
  2639. laying: {
  2640. height: math.unit(3, "feet"),
  2641. weight: math.unit(180, "lbs"),
  2642. name: "Laying",
  2643. image: {
  2644. source: "./media/characters/zaakira/laying.svg"
  2645. }
  2646. },
  2647. },
  2648. [
  2649. {
  2650. name: "Normal",
  2651. height: math.unit(12, "feet")
  2652. },
  2653. {
  2654. name: "Macro",
  2655. height: math.unit(279, "feet"),
  2656. default: true
  2657. }
  2658. ]
  2659. ))
  2660. characterMakers.push(() => makeCharacter(
  2661. { name: "Sigvald" },
  2662. {
  2663. front: {
  2664. height: math.unit(6, "feet"),
  2665. weight: math.unit(250, "lbs"),
  2666. name: "Front",
  2667. image: {
  2668. source: "./media/characters/sigvald/front.svg",
  2669. extra: 1000 / 850
  2670. }
  2671. },
  2672. back: {
  2673. height: math.unit(6, "feet"),
  2674. weight: math.unit(250, "lbs"),
  2675. name: "Back",
  2676. image: {
  2677. source: "./media/characters/sigvald/back.svg"
  2678. }
  2679. },
  2680. },
  2681. [
  2682. {
  2683. name: "Normal",
  2684. height: math.unit(8, "feet")
  2685. },
  2686. {
  2687. name: "Large",
  2688. height: math.unit(12, "feet")
  2689. },
  2690. {
  2691. name: "Larger",
  2692. height: math.unit(20, "feet")
  2693. },
  2694. {
  2695. name: "Macro",
  2696. height: math.unit(150, "feet")
  2697. },
  2698. {
  2699. name: "Macro+",
  2700. height: math.unit(200, "feet"),
  2701. default: true
  2702. },
  2703. ]
  2704. ))
  2705. characterMakers.push(() => makeCharacter(
  2706. { name: "Scott" },
  2707. {
  2708. side: {
  2709. height: math.unit(12, "feet"),
  2710. weight: math.unit(3000, "lbs"),
  2711. name: "Side",
  2712. image: {
  2713. source: "./media/characters/scott/side.svg",
  2714. extra: 1,
  2715. bottom: 0.069
  2716. }
  2717. },
  2718. upright: {
  2719. height: math.unit(12, "feet"),
  2720. weight: math.unit(3000, "lbs"),
  2721. name: "Upright",
  2722. image: {
  2723. source: "./media/characters/scott/upright.svg",
  2724. extra: 1,
  2725. bottom: 0.05
  2726. }
  2727. },
  2728. },
  2729. [
  2730. {
  2731. name: "Normal",
  2732. height: math.unit(12, "feet"),
  2733. default: true
  2734. },
  2735. ]
  2736. ))
  2737. characterMakers.push(() => makeCharacter(
  2738. { name: "Tobias" },
  2739. {
  2740. side: {
  2741. height: math.unit(8, "meters"),
  2742. weight: math.unit(84755, "lbs"),
  2743. name: "Side",
  2744. image: {
  2745. source: "./media/characters/tobias/side.svg",
  2746. extra: 1474 / 1096,
  2747. bottom: 38.9 / 1513.1235
  2748. }
  2749. },
  2750. },
  2751. [
  2752. {
  2753. name: "Normal",
  2754. height: math.unit(8, "meters"),
  2755. default: true
  2756. },
  2757. ]
  2758. ))
  2759. characterMakers.push(() => makeCharacter(
  2760. { name: "Kieran" },
  2761. {
  2762. front: {
  2763. height: math.unit(5.5, "feet"),
  2764. weight: math.unit(400, "lbs"),
  2765. name: "Front",
  2766. image: {
  2767. source: "./media/characters/kieran/front.svg",
  2768. extra: 2694/2364,
  2769. bottom: 217/2908
  2770. }
  2771. },
  2772. side: {
  2773. height: math.unit(5.5, "feet"),
  2774. weight: math.unit(400, "lbs"),
  2775. name: "Side",
  2776. image: {
  2777. source: "./media/characters/kieran/side.svg",
  2778. extra: 875/777,
  2779. bottom: 84.6/959
  2780. }
  2781. },
  2782. },
  2783. [
  2784. {
  2785. name: "Normal",
  2786. height: math.unit(5.5, "feet"),
  2787. default: true
  2788. },
  2789. ]
  2790. ))
  2791. characterMakers.push(() => makeCharacter(
  2792. { name: "Sanya" },
  2793. {
  2794. side: {
  2795. height: math.unit(2, "meters"),
  2796. weight: math.unit(70, "kg"),
  2797. name: "Side",
  2798. image: {
  2799. source: "./media/characters/sanya/side.svg",
  2800. bottom: 0.02,
  2801. extra: 1.02
  2802. }
  2803. },
  2804. },
  2805. [
  2806. {
  2807. name: "Small",
  2808. height: math.unit(2, "meters")
  2809. },
  2810. {
  2811. name: "Normal",
  2812. height: math.unit(3, "meters")
  2813. },
  2814. {
  2815. name: "Macro",
  2816. height: math.unit(16, "meters"),
  2817. default: true
  2818. },
  2819. ]
  2820. ))
  2821. characterMakers.push(() => makeCharacter(
  2822. { name: "Miranda" },
  2823. {
  2824. side: {
  2825. height: math.unit(2, "meters"),
  2826. weight: math.unit(120, "kg"),
  2827. name: "Front",
  2828. image: {
  2829. source: "./media/characters/miranda/front.svg",
  2830. extra: 10.6 / 10
  2831. }
  2832. },
  2833. },
  2834. [
  2835. {
  2836. name: "Normal",
  2837. height: math.unit(10, "feet"),
  2838. default: true
  2839. }
  2840. ]
  2841. ))
  2842. characterMakers.push(() => makeCharacter(
  2843. { name: "James" },
  2844. {
  2845. side: {
  2846. height: math.unit(2, "meters"),
  2847. weight: math.unit(100, "kg"),
  2848. name: "Front",
  2849. image: {
  2850. source: "./media/characters/james/front.svg",
  2851. extra: 10 / 8.5
  2852. }
  2853. },
  2854. },
  2855. [
  2856. {
  2857. name: "Normal",
  2858. height: math.unit(8.5, "feet"),
  2859. default: true
  2860. }
  2861. ]
  2862. ))
  2863. characterMakers.push(() => makeCharacter(
  2864. { name: "Heather" },
  2865. {
  2866. side: {
  2867. height: math.unit(9.5, "feet"),
  2868. weight: math.unit(2500, "lbs"),
  2869. name: "Side",
  2870. image: {
  2871. source: "./media/characters/heather/side.svg"
  2872. }
  2873. },
  2874. },
  2875. [
  2876. {
  2877. name: "Normal",
  2878. height: math.unit(9.5, "feet"),
  2879. default: true
  2880. }
  2881. ]
  2882. ))
  2883. characterMakers.push(() => makeCharacter(
  2884. { name: "Lukas" },
  2885. {
  2886. side: {
  2887. height: math.unit(6.5, "feet"),
  2888. weight: math.unit(400, "lbs"),
  2889. name: "Side",
  2890. image: {
  2891. source: "./media/characters/lukas/side.svg",
  2892. extra: 7.25 / 6.5
  2893. }
  2894. },
  2895. },
  2896. [
  2897. {
  2898. name: "Normal",
  2899. height: math.unit(6.5, "feet"),
  2900. default: true
  2901. }
  2902. ]
  2903. ))
  2904. characterMakers.push(() => makeCharacter(
  2905. { name: "Louise" },
  2906. {
  2907. side: {
  2908. height: math.unit(5, "feet"),
  2909. weight: math.unit(3000, "lbs"),
  2910. name: "Side",
  2911. image: {
  2912. source: "./media/characters/louise/side.svg"
  2913. }
  2914. },
  2915. },
  2916. [
  2917. {
  2918. name: "Normal",
  2919. height: math.unit(5, "feet"),
  2920. default: true
  2921. }
  2922. ]
  2923. ))
  2924. characterMakers.push(() => makeCharacter(
  2925. { name: "Ramona" },
  2926. {
  2927. side: {
  2928. height: math.unit(6, "feet"),
  2929. weight: math.unit(150, "lbs"),
  2930. name: "Side",
  2931. image: {
  2932. source: "./media/characters/ramona/side.svg"
  2933. }
  2934. },
  2935. },
  2936. [
  2937. {
  2938. name: "Normal",
  2939. height: math.unit(5.3, "meters"),
  2940. default: true
  2941. },
  2942. {
  2943. name: "Macro",
  2944. height: math.unit(20, "stories")
  2945. },
  2946. {
  2947. name: "Macro+",
  2948. height: math.unit(50, "stories")
  2949. },
  2950. ]
  2951. ))
  2952. characterMakers.push(() => makeCharacter(
  2953. { name: "Deerpuff" },
  2954. {
  2955. standing: {
  2956. height: math.unit(5.75, "feet"),
  2957. weight: math.unit(160, "lbs"),
  2958. name: "Standing",
  2959. image: {
  2960. source: "./media/characters/deerpuff/standing.svg",
  2961. extra: 682 / 624
  2962. }
  2963. },
  2964. sitting: {
  2965. height: math.unit(5.75 / 1.79, "feet"),
  2966. weight: math.unit(160, "lbs"),
  2967. name: "Sitting",
  2968. image: {
  2969. source: "./media/characters/deerpuff/sitting.svg",
  2970. bottom: 44 / 400,
  2971. extra: 1
  2972. }
  2973. },
  2974. taurLaying: {
  2975. height: math.unit(6, "feet"),
  2976. weight: math.unit(400, "lbs"),
  2977. name: "Taur (Laying)",
  2978. image: {
  2979. source: "./media/characters/deerpuff/taur-laying.svg"
  2980. }
  2981. },
  2982. },
  2983. [
  2984. {
  2985. name: "Puffball",
  2986. height: math.unit(6, "inches")
  2987. },
  2988. {
  2989. name: "Normalpuff",
  2990. height: math.unit(5.75, "feet")
  2991. },
  2992. {
  2993. name: "Macropuff",
  2994. height: math.unit(1500, "feet"),
  2995. default: true
  2996. },
  2997. {
  2998. name: "Megapuff",
  2999. height: math.unit(500, "miles")
  3000. },
  3001. {
  3002. name: "Gigapuff",
  3003. height: math.unit(250000, "miles")
  3004. },
  3005. {
  3006. name: "Omegapuff",
  3007. height: math.unit(1000, "lightyears")
  3008. },
  3009. ]
  3010. ))
  3011. characterMakers.push(() => makeCharacter(
  3012. { name: "Vivian" },
  3013. {
  3014. stomping: {
  3015. height: math.unit(6, "feet"),
  3016. weight: math.unit(170, "lbs"),
  3017. name: "Stomping",
  3018. image: {
  3019. source: "./media/characters/vivian/stomping.svg"
  3020. }
  3021. },
  3022. sitting: {
  3023. height: math.unit(6 / 1.75, "feet"),
  3024. weight: math.unit(170, "lbs"),
  3025. name: "Sitting",
  3026. image: {
  3027. source: "./media/characters/vivian/sitting.svg",
  3028. bottom: 1 / 6.4,
  3029. extra: 1,
  3030. }
  3031. },
  3032. },
  3033. [
  3034. {
  3035. name: "Normal",
  3036. height: math.unit(7, "feet"),
  3037. default: true
  3038. },
  3039. {
  3040. name: "Macro",
  3041. height: math.unit(10, "stories")
  3042. },
  3043. {
  3044. name: "Macro+",
  3045. height: math.unit(30, "stories")
  3046. },
  3047. {
  3048. name: "Megamacro",
  3049. height: math.unit(10, "miles")
  3050. },
  3051. {
  3052. name: "Megamacro+",
  3053. height: math.unit(2750000, "meters")
  3054. },
  3055. ]
  3056. ))
  3057. characterMakers.push(() => makeCharacter(
  3058. { name: "Prince" },
  3059. {
  3060. front: {
  3061. height: math.unit(6, "feet"),
  3062. weight: math.unit(160, "lbs"),
  3063. name: "Front",
  3064. image: {
  3065. source: "./media/characters/prince/front.svg",
  3066. extra: 3400 / 3000
  3067. }
  3068. },
  3069. jumping: {
  3070. height: math.unit(6, "feet"),
  3071. weight: math.unit(160, "lbs"),
  3072. name: "Jumping",
  3073. image: {
  3074. source: "./media/characters/prince/jump.svg",
  3075. extra: 2555 / 2134
  3076. }
  3077. },
  3078. },
  3079. [
  3080. {
  3081. name: "Normal",
  3082. height: math.unit(7.75, "feet"),
  3083. default: true
  3084. },
  3085. {
  3086. name: "Not cute",
  3087. height: math.unit(17, "feet")
  3088. },
  3089. {
  3090. name: "I said NOT",
  3091. height: math.unit(91, "feet")
  3092. },
  3093. {
  3094. name: "Please stop",
  3095. height: math.unit(560, "feet")
  3096. },
  3097. {
  3098. name: "What have you done",
  3099. height: math.unit(2200, "feet")
  3100. },
  3101. {
  3102. name: "Deer God",
  3103. height: math.unit(3.6, "miles")
  3104. },
  3105. ]
  3106. ))
  3107. characterMakers.push(() => makeCharacter(
  3108. { name: "Psymon" },
  3109. {
  3110. standing: {
  3111. height: math.unit(6, "feet"),
  3112. weight: math.unit(300, "lbs"),
  3113. name: "Standing",
  3114. image: {
  3115. source: "./media/characters/psymon/standing.svg",
  3116. extra: 1888 / 1810,
  3117. bottom: 0.05
  3118. }
  3119. },
  3120. slithering: {
  3121. height: math.unit(6, "feet"),
  3122. weight: math.unit(300, "lbs"),
  3123. name: "Slithering",
  3124. image: {
  3125. source: "./media/characters/psymon/slithering.svg",
  3126. extra: 1330 / 1224
  3127. }
  3128. },
  3129. slitheringAlt: {
  3130. height: math.unit(6, "feet"),
  3131. weight: math.unit(300, "lbs"),
  3132. name: "Slithering (Alt)",
  3133. image: {
  3134. source: "./media/characters/psymon/slithering-alt.svg",
  3135. extra: 1330 / 1224
  3136. }
  3137. },
  3138. },
  3139. [
  3140. {
  3141. name: "Normal",
  3142. height: math.unit(11.25, "feet"),
  3143. default: true
  3144. },
  3145. {
  3146. name: "Large",
  3147. height: math.unit(27, "feet")
  3148. },
  3149. {
  3150. name: "Giant",
  3151. height: math.unit(87, "feet")
  3152. },
  3153. {
  3154. name: "Macro",
  3155. height: math.unit(365, "feet")
  3156. },
  3157. {
  3158. name: "Megamacro",
  3159. height: math.unit(3, "miles")
  3160. },
  3161. {
  3162. name: "World Serpent",
  3163. height: math.unit(8000, "miles")
  3164. },
  3165. ]
  3166. ))
  3167. characterMakers.push(() => makeCharacter(
  3168. { name: "Daimos" },
  3169. {
  3170. front: {
  3171. height: math.unit(6, "feet"),
  3172. weight: math.unit(180, "lbs"),
  3173. name: "Front",
  3174. image: {
  3175. source: "./media/characters/daimos/front.svg",
  3176. extra: 4160 / 3897,
  3177. bottom: 0.021
  3178. }
  3179. }
  3180. },
  3181. [
  3182. {
  3183. name: "Normal",
  3184. height: math.unit(8, "feet"),
  3185. default: true
  3186. },
  3187. {
  3188. name: "Big Dog",
  3189. height: math.unit(22, "feet")
  3190. },
  3191. {
  3192. name: "Macro",
  3193. height: math.unit(127, "feet")
  3194. },
  3195. {
  3196. name: "Megamacro",
  3197. height: math.unit(3600, "feet")
  3198. },
  3199. ]
  3200. ))
  3201. characterMakers.push(() => makeCharacter(
  3202. { name: "Blake" },
  3203. {
  3204. side: {
  3205. height: math.unit(6, "feet"),
  3206. weight: math.unit(180, "lbs"),
  3207. name: "Side",
  3208. image: {
  3209. source: "./media/characters/blake/side.svg",
  3210. extra: 1212 / 1120,
  3211. bottom: 0.05
  3212. }
  3213. },
  3214. crouched: {
  3215. height: math.unit(6 * 0.57, "feet"),
  3216. weight: math.unit(180, "lbs"),
  3217. name: "Crouched",
  3218. image: {
  3219. source: "./media/characters/blake/crouched.svg",
  3220. extra: 840 / 587,
  3221. bottom: 0.04
  3222. }
  3223. },
  3224. bent: {
  3225. height: math.unit(6 * 0.75, "feet"),
  3226. weight: math.unit(180, "lbs"),
  3227. name: "Bent",
  3228. image: {
  3229. source: "./media/characters/blake/bent.svg",
  3230. extra: 592 / 544,
  3231. bottom: 0.035
  3232. }
  3233. },
  3234. },
  3235. [
  3236. {
  3237. name: "Normal",
  3238. height: math.unit(8 + 1 / 6, "feet"),
  3239. default: true
  3240. },
  3241. {
  3242. name: "Big Backside",
  3243. height: math.unit(37, "feet")
  3244. },
  3245. {
  3246. name: "Subway Shredder",
  3247. height: math.unit(72, "feet")
  3248. },
  3249. {
  3250. name: "City Carver",
  3251. height: math.unit(1675, "feet")
  3252. },
  3253. {
  3254. name: "Tectonic Tweaker",
  3255. height: math.unit(2300, "miles")
  3256. },
  3257. ]
  3258. ))
  3259. characterMakers.push(() => makeCharacter(
  3260. { name: "Guisetto" },
  3261. {
  3262. front: {
  3263. height: math.unit(6, "feet"),
  3264. weight: math.unit(180, "lbs"),
  3265. name: "Front",
  3266. image: {
  3267. source: "./media/characters/guisetto/front.svg",
  3268. extra: 856 / 817,
  3269. bottom: 0.06
  3270. }
  3271. },
  3272. airborne: {
  3273. height: math.unit(6, "feet"),
  3274. weight: math.unit(180, "lbs"),
  3275. name: "Airborne",
  3276. image: {
  3277. source: "./media/characters/guisetto/airborne.svg",
  3278. extra: 584 / 525
  3279. }
  3280. },
  3281. },
  3282. [
  3283. {
  3284. name: "Normal",
  3285. height: math.unit(10 + 11 / 12, "feet"),
  3286. default: true
  3287. },
  3288. {
  3289. name: "Large",
  3290. height: math.unit(35, "feet")
  3291. },
  3292. {
  3293. name: "Macro",
  3294. height: math.unit(475, "feet")
  3295. },
  3296. ]
  3297. ))
  3298. characterMakers.push(() => makeCharacter(
  3299. { name: "Luxor" },
  3300. {
  3301. front: {
  3302. height: math.unit(6, "feet"),
  3303. weight: math.unit(180, "lbs"),
  3304. name: "Front",
  3305. image: {
  3306. source: "./media/characters/luxor/front.svg",
  3307. extra: 2940 / 2152
  3308. }
  3309. },
  3310. back: {
  3311. height: math.unit(6, "feet"),
  3312. weight: math.unit(180, "lbs"),
  3313. name: "Back",
  3314. image: {
  3315. source: "./media/characters/luxor/back.svg",
  3316. extra: 1083 / 960
  3317. }
  3318. },
  3319. },
  3320. [
  3321. {
  3322. name: "Normal",
  3323. height: math.unit(5 + 5 / 6, "feet"),
  3324. default: true
  3325. },
  3326. {
  3327. name: "Lamp",
  3328. height: math.unit(50, "feet")
  3329. },
  3330. {
  3331. name: "Lämp",
  3332. height: math.unit(300, "feet")
  3333. },
  3334. {
  3335. name: "The sun is a lamp",
  3336. height: math.unit(250000, "miles")
  3337. },
  3338. ]
  3339. ))
  3340. characterMakers.push(() => makeCharacter(
  3341. { name: "Huoyan" },
  3342. {
  3343. front: {
  3344. height: math.unit(6, "feet"),
  3345. weight: math.unit(50, "lbs"),
  3346. name: "Front",
  3347. image: {
  3348. source: "./media/characters/huoyan/front.svg"
  3349. }
  3350. },
  3351. side: {
  3352. height: math.unit(6, "feet"),
  3353. weight: math.unit(180, "lbs"),
  3354. name: "Side",
  3355. image: {
  3356. source: "./media/characters/huoyan/side.svg"
  3357. }
  3358. },
  3359. },
  3360. [
  3361. {
  3362. name: "Chef",
  3363. height: math.unit(9, "feet")
  3364. },
  3365. {
  3366. name: "Normal",
  3367. height: math.unit(65, "feet"),
  3368. default: true
  3369. },
  3370. {
  3371. name: "Macro",
  3372. height: math.unit(780, "feet")
  3373. },
  3374. {
  3375. name: "Flaming Mountain",
  3376. height: math.unit(4.8, "miles")
  3377. },
  3378. {
  3379. name: "Celestial",
  3380. height: math.unit(765000, "miles")
  3381. },
  3382. ]
  3383. ))
  3384. characterMakers.push(() => makeCharacter(
  3385. { name: "Tails" },
  3386. {
  3387. front: {
  3388. height: math.unit(5 + 3 / 4, "feet"),
  3389. weight: math.unit(120, "lbs"),
  3390. name: "Front",
  3391. image: {
  3392. source: "./media/characters/tails/front.svg"
  3393. }
  3394. }
  3395. },
  3396. [
  3397. {
  3398. name: "Normal",
  3399. height: math.unit(5 + 3 / 4, "feet"),
  3400. default: true
  3401. }
  3402. ]
  3403. ))
  3404. characterMakers.push(() => makeCharacter(
  3405. { name: "Rainy" },
  3406. {
  3407. front: {
  3408. height: math.unit(4, "feet"),
  3409. weight: math.unit(50, "lbs"),
  3410. name: "Front",
  3411. image: {
  3412. source: "./media/characters/rainy/front.svg"
  3413. }
  3414. }
  3415. },
  3416. [
  3417. {
  3418. name: "Macro",
  3419. height: math.unit(800, "feet"),
  3420. default: true
  3421. }
  3422. ]
  3423. ))
  3424. characterMakers.push(() => makeCharacter(
  3425. { name: "Rainier" },
  3426. {
  3427. front: {
  3428. height: math.unit(6, "feet"),
  3429. weight: math.unit(150, "lbs"),
  3430. name: "Front",
  3431. image: {
  3432. source: "./media/characters/rainier/front.svg"
  3433. }
  3434. }
  3435. },
  3436. [
  3437. {
  3438. name: "Micro",
  3439. height: math.unit(2, "mm"),
  3440. default: true
  3441. }
  3442. ]
  3443. ))
  3444. characterMakers.push(() => makeCharacter(
  3445. { name: "Andy" },
  3446. {
  3447. front: {
  3448. height: math.unit(6, "feet"),
  3449. weight: math.unit(180, "lbs"),
  3450. name: "Front",
  3451. image: {
  3452. source: "./media/characters/andy/front.svg"
  3453. }
  3454. }
  3455. },
  3456. [
  3457. {
  3458. name: "Normal",
  3459. height: math.unit(8, "feet"),
  3460. default: true
  3461. },
  3462. {
  3463. name: "Macro",
  3464. height: math.unit(1000, "feet")
  3465. },
  3466. {
  3467. name: "Megamacro",
  3468. height: math.unit(5, "miles")
  3469. },
  3470. {
  3471. name: "Gigamacro",
  3472. height: math.unit(5000, "miles")
  3473. },
  3474. ]
  3475. ))
  3476. characterMakers.push(() => makeCharacter(
  3477. { name: "Cimmaron" },
  3478. {
  3479. front: {
  3480. height: math.unit(6, "feet"),
  3481. weight: math.unit(210, "lbs"),
  3482. name: "Front",
  3483. image: {
  3484. source: "./media/characters/cimmaron/front-sfw.svg",
  3485. extra: 701 / 676,
  3486. bottom: 0.046
  3487. }
  3488. },
  3489. back: {
  3490. height: math.unit(6, "feet"),
  3491. weight: math.unit(210, "lbs"),
  3492. name: "Back",
  3493. image: {
  3494. source: "./media/characters/cimmaron/back-sfw.svg",
  3495. extra: 701 / 676,
  3496. bottom: 0.046
  3497. }
  3498. },
  3499. frontNsfw: {
  3500. height: math.unit(6, "feet"),
  3501. weight: math.unit(210, "lbs"),
  3502. name: "Front (NSFW)",
  3503. image: {
  3504. source: "./media/characters/cimmaron/front-nsfw.svg",
  3505. extra: 701 / 676,
  3506. bottom: 0.046
  3507. }
  3508. },
  3509. backNsfw: {
  3510. height: math.unit(6, "feet"),
  3511. weight: math.unit(210, "lbs"),
  3512. name: "Back (NSFW)",
  3513. image: {
  3514. source: "./media/characters/cimmaron/back-nsfw.svg",
  3515. extra: 701 / 676,
  3516. bottom: 0.046
  3517. }
  3518. },
  3519. dick: {
  3520. height: math.unit(1.714, "feet"),
  3521. name: "Dick",
  3522. image: {
  3523. source: "./media/characters/cimmaron/dick.svg"
  3524. }
  3525. },
  3526. },
  3527. [
  3528. {
  3529. name: "Normal",
  3530. height: math.unit(6, "feet"),
  3531. default: true
  3532. },
  3533. {
  3534. name: "Macro Mayor",
  3535. height: math.unit(350, "meters")
  3536. },
  3537. ]
  3538. ))
  3539. characterMakers.push(() => makeCharacter(
  3540. { name: "Akari Kaen" },
  3541. {
  3542. front: {
  3543. height: math.unit(6, "feet"),
  3544. weight: math.unit(200, "lbs"),
  3545. name: "Front",
  3546. image: {
  3547. source: "./media/characters/akari/front.svg",
  3548. extra: 962 / 901,
  3549. bottom: 0.04
  3550. }
  3551. }
  3552. },
  3553. [
  3554. {
  3555. name: "Micro",
  3556. height: math.unit(5, "inches"),
  3557. default: true
  3558. },
  3559. {
  3560. name: "Normal",
  3561. height: math.unit(7, "feet")
  3562. },
  3563. ]
  3564. ))
  3565. characterMakers.push(() => makeCharacter(
  3566. { name: "Cynosura" },
  3567. {
  3568. front: {
  3569. height: math.unit(6, "feet"),
  3570. weight: math.unit(140, "lbs"),
  3571. name: "Front",
  3572. image: {
  3573. source: "./media/characters/cynosura/front.svg",
  3574. extra: 896 / 847
  3575. }
  3576. },
  3577. back: {
  3578. height: math.unit(6, "feet"),
  3579. weight: math.unit(140, "lbs"),
  3580. name: "Back",
  3581. image: {
  3582. source: "./media/characters/cynosura/back.svg",
  3583. extra: 1365 / 1250
  3584. }
  3585. },
  3586. },
  3587. [
  3588. {
  3589. name: "Micro",
  3590. height: math.unit(4, "inches")
  3591. },
  3592. {
  3593. name: "Normal",
  3594. height: math.unit(5.75, "feet"),
  3595. default: true
  3596. },
  3597. {
  3598. name: "Tall",
  3599. height: math.unit(10, "feet")
  3600. },
  3601. {
  3602. name: "Big",
  3603. height: math.unit(20, "feet")
  3604. },
  3605. {
  3606. name: "Macro",
  3607. height: math.unit(50, "feet")
  3608. },
  3609. ]
  3610. ))
  3611. characterMakers.push(() => makeCharacter(
  3612. { name: "Gin" },
  3613. {
  3614. front: {
  3615. height: math.unit(6, "feet"),
  3616. weight: math.unit(170, "lbs"),
  3617. name: "Front",
  3618. image: {
  3619. source: "./media/characters/gin/front.svg",
  3620. extra: 1.053,
  3621. bottom: 0.025
  3622. }
  3623. },
  3624. foot: {
  3625. height: math.unit(6 / 4.25, "feet"),
  3626. name: "Foot",
  3627. image: {
  3628. source: "./media/characters/gin/foot.svg"
  3629. }
  3630. },
  3631. sole: {
  3632. height: math.unit(6 / 4.40, "feet"),
  3633. name: "Sole",
  3634. image: {
  3635. source: "./media/characters/gin/sole.svg"
  3636. }
  3637. },
  3638. },
  3639. [
  3640. {
  3641. name: "Normal",
  3642. height: math.unit(9 + 4 / 12, "feet")
  3643. },
  3644. {
  3645. name: "Macro",
  3646. height: math.unit(1500, "feet")
  3647. },
  3648. {
  3649. name: "Megamacro",
  3650. height: math.unit(200, "miles"),
  3651. default: true
  3652. },
  3653. {
  3654. name: "Gigamacro",
  3655. height: math.unit(500, "megameters")
  3656. },
  3657. {
  3658. name: "Teramacro",
  3659. height: math.unit(15, "lightyears")
  3660. }
  3661. ]
  3662. ))
  3663. characterMakers.push(() => makeCharacter(
  3664. { name: "Guy" },
  3665. {
  3666. front: {
  3667. height: math.unit(6 + 1 / 6, "feet"),
  3668. weight: math.unit(178, "lbs"),
  3669. name: "Front",
  3670. image: {
  3671. source: "./media/characters/guy/front.svg"
  3672. }
  3673. }
  3674. },
  3675. [
  3676. {
  3677. name: "Normal",
  3678. height: math.unit(6 + 1 / 6, "feet"),
  3679. default: true
  3680. },
  3681. {
  3682. name: "Large",
  3683. height: math.unit(25 + 7 / 12, "feet")
  3684. },
  3685. {
  3686. name: "Macro",
  3687. height: math.unit(60 + 9 / 12, "feet")
  3688. },
  3689. {
  3690. name: "Macro+",
  3691. height: math.unit(246, "feet")
  3692. },
  3693. {
  3694. name: "Macro++",
  3695. height: math.unit(878, "feet")
  3696. }
  3697. ]
  3698. ))
  3699. characterMakers.push(() => makeCharacter(
  3700. { name: "Tiberius" },
  3701. {
  3702. front: {
  3703. height: math.unit(9, "feet"),
  3704. weight: math.unit(800, "lbs"),
  3705. name: "Front",
  3706. image: {
  3707. source: "./media/characters/tiberius/front.svg",
  3708. extra: 2295 / 2071
  3709. }
  3710. },
  3711. back: {
  3712. height: math.unit(9, "feet"),
  3713. weight: math.unit(800, "lbs"),
  3714. name: "Back",
  3715. image: {
  3716. source: "./media/characters/tiberius/back.svg",
  3717. extra: 2373 / 2160
  3718. }
  3719. },
  3720. },
  3721. [
  3722. {
  3723. name: "Normal",
  3724. height: math.unit(9, "feet"),
  3725. default: true
  3726. }
  3727. ]
  3728. ))
  3729. characterMakers.push(() => makeCharacter(
  3730. { name: "Surgo" },
  3731. {
  3732. front: {
  3733. height: math.unit(6, "feet"),
  3734. weight: math.unit(600, "lbs"),
  3735. name: "Front",
  3736. image: {
  3737. source: "./media/characters/surgo/front.svg",
  3738. extra: 3591 / 2227
  3739. }
  3740. },
  3741. back: {
  3742. height: math.unit(6, "feet"),
  3743. weight: math.unit(600, "lbs"),
  3744. name: "Back",
  3745. image: {
  3746. source: "./media/characters/surgo/back.svg",
  3747. extra: 3557 / 2228
  3748. }
  3749. },
  3750. laying: {
  3751. height: math.unit(6 * 0.85, "feet"),
  3752. weight: math.unit(600, "lbs"),
  3753. name: "Laying",
  3754. image: {
  3755. source: "./media/characters/surgo/laying.svg"
  3756. }
  3757. },
  3758. },
  3759. [
  3760. {
  3761. name: "Normal",
  3762. height: math.unit(6, "feet"),
  3763. default: true
  3764. }
  3765. ]
  3766. ))
  3767. characterMakers.push(() => makeCharacter(
  3768. { name: "Cibus" },
  3769. {
  3770. side: {
  3771. height: math.unit(6, "feet"),
  3772. weight: math.unit(150, "lbs"),
  3773. name: "Side",
  3774. image: {
  3775. source: "./media/characters/cibus/side.svg",
  3776. extra: 800 / 400
  3777. }
  3778. },
  3779. },
  3780. [
  3781. {
  3782. name: "Normal",
  3783. height: math.unit(6, "feet"),
  3784. default: true
  3785. }
  3786. ]
  3787. ))
  3788. characterMakers.push(() => makeCharacter(
  3789. { name: "Nibbles" },
  3790. {
  3791. front: {
  3792. height: math.unit(6, "feet"),
  3793. weight: math.unit(240, "lbs"),
  3794. name: "Front",
  3795. image: {
  3796. source: "./media/characters/nibbles/front.svg"
  3797. }
  3798. },
  3799. side: {
  3800. height: math.unit(6, "feet"),
  3801. weight: math.unit(240, "lbs"),
  3802. name: "Side",
  3803. image: {
  3804. source: "./media/characters/nibbles/side.svg"
  3805. }
  3806. },
  3807. },
  3808. [
  3809. {
  3810. name: "Normal",
  3811. height: math.unit(9, "feet"),
  3812. default: true
  3813. }
  3814. ]
  3815. ))
  3816. characterMakers.push(() => makeCharacter(
  3817. { name: "Rikky" },
  3818. {
  3819. side: {
  3820. height: math.unit(5 + 1 / 6, "feet"),
  3821. weight: math.unit(130, "lbs"),
  3822. name: "Side",
  3823. image: {
  3824. source: "./media/characters/rikky/side.svg"
  3825. }
  3826. },
  3827. },
  3828. [
  3829. {
  3830. name: "Normal",
  3831. height: math.unit(5 + 1 / 6, "feet")
  3832. },
  3833. {
  3834. name: "Macro",
  3835. height: math.unit(152, "feet"),
  3836. default: true
  3837. },
  3838. {
  3839. name: "Megamacro",
  3840. height: math.unit(7, "miles")
  3841. }
  3842. ]
  3843. ))
  3844. characterMakers.push(() => makeCharacter(
  3845. { name: "Malfressa" },
  3846. {
  3847. side: {
  3848. height: math.unit(370, "cm"),
  3849. weight: math.unit(350, "lbs"),
  3850. name: "Side",
  3851. image: {
  3852. source: "./media/characters/malfressa/side.svg"
  3853. }
  3854. },
  3855. walking: {
  3856. height: math.unit(370, "cm"),
  3857. weight: math.unit(350, "lbs"),
  3858. name: "Walking",
  3859. image: {
  3860. source: "./media/characters/malfressa/walking.svg"
  3861. }
  3862. },
  3863. feral: {
  3864. height: math.unit(2500, "cm"),
  3865. weight: math.unit(100000, "lbs"),
  3866. name: "Feral",
  3867. image: {
  3868. source: "./media/characters/malfressa/feral.svg",
  3869. extra: 2108 / 837,
  3870. bottom: 0.02
  3871. }
  3872. },
  3873. },
  3874. [
  3875. {
  3876. name: "Normal",
  3877. height: math.unit(370, "cm")
  3878. },
  3879. {
  3880. name: "Macro",
  3881. height: math.unit(300, "meters"),
  3882. default: true
  3883. }
  3884. ]
  3885. ))
  3886. characterMakers.push(() => makeCharacter(
  3887. { name: "Jaro" },
  3888. {
  3889. front: {
  3890. height: math.unit(6, "feet"),
  3891. weight: math.unit(60, "kg"),
  3892. name: "Front",
  3893. image: {
  3894. source: "./media/characters/jaro/front.svg"
  3895. }
  3896. },
  3897. back: {
  3898. height: math.unit(6, "feet"),
  3899. weight: math.unit(60, "kg"),
  3900. name: "Back",
  3901. image: {
  3902. source: "./media/characters/jaro/back.svg"
  3903. }
  3904. },
  3905. },
  3906. [
  3907. {
  3908. name: "Micro",
  3909. height: math.unit(7, "inches")
  3910. },
  3911. {
  3912. name: "Normal",
  3913. height: math.unit(5.5, "feet"),
  3914. default: true
  3915. },
  3916. {
  3917. name: "Minimacro",
  3918. height: math.unit(20, "feet")
  3919. },
  3920. {
  3921. name: "Macro",
  3922. height: math.unit(200, "meters")
  3923. }
  3924. ]
  3925. ))
  3926. characterMakers.push(() => makeCharacter(
  3927. { name: "Rogue" },
  3928. {
  3929. front: {
  3930. height: math.unit(6, "feet"),
  3931. weight: math.unit(195, "lb"),
  3932. name: "Front",
  3933. image: {
  3934. source: "./media/characters/rogue/front.svg"
  3935. }
  3936. },
  3937. },
  3938. [
  3939. {
  3940. name: "Macro",
  3941. height: math.unit(90, "feet"),
  3942. default: true
  3943. },
  3944. ]
  3945. ))
  3946. characterMakers.push(() => makeCharacter(
  3947. { name: "Piper" },
  3948. {
  3949. front: {
  3950. height: math.unit(5 + 8 / 12, "feet"),
  3951. weight: math.unit(140, "lb"),
  3952. name: "Front",
  3953. image: {
  3954. source: "./media/characters/piper/front.svg",
  3955. extra: 3928 / 3681
  3956. }
  3957. },
  3958. },
  3959. [
  3960. {
  3961. name: "Micro",
  3962. height: math.unit(2, "inches")
  3963. },
  3964. {
  3965. name: "Normal",
  3966. height: math.unit(5 + 8 / 12, "feet")
  3967. },
  3968. {
  3969. name: "Macro",
  3970. height: math.unit(250, "feet"),
  3971. default: true
  3972. },
  3973. {
  3974. name: "Megamacro",
  3975. height: math.unit(7, "miles")
  3976. },
  3977. ]
  3978. ))
  3979. characterMakers.push(() => makeCharacter(
  3980. { name: "Gemini" },
  3981. {
  3982. front: {
  3983. height: math.unit(6, "feet"),
  3984. weight: math.unit(220, "lb"),
  3985. name: "Front",
  3986. image: {
  3987. source: "./media/characters/gemini/front.svg"
  3988. }
  3989. },
  3990. back: {
  3991. height: math.unit(6, "feet"),
  3992. weight: math.unit(220, "lb"),
  3993. name: "Back",
  3994. image: {
  3995. source: "./media/characters/gemini/back.svg"
  3996. }
  3997. },
  3998. kneeling: {
  3999. height: math.unit(6 / 1.5, "feet"),
  4000. weight: math.unit(220, "lb"),
  4001. name: "Kneeling",
  4002. image: {
  4003. source: "./media/characters/gemini/kneeling.svg",
  4004. bottom: 0.02
  4005. }
  4006. },
  4007. },
  4008. [
  4009. {
  4010. name: "Macro",
  4011. height: math.unit(300, "meters"),
  4012. default: true
  4013. },
  4014. {
  4015. name: "Megamacro",
  4016. height: math.unit(6900, "meters")
  4017. },
  4018. ]
  4019. ))
  4020. characterMakers.push(() => makeCharacter(
  4021. { name: "Alicia" },
  4022. {
  4023. anthro: {
  4024. height: math.unit(2.35, "meters"),
  4025. weight: math.unit(73, "kg"),
  4026. name: "Anthro",
  4027. image: {
  4028. source: "./media/characters/alicia/anthro.svg"
  4029. }
  4030. },
  4031. feral: {
  4032. height: math.unit(1.69, "meters"),
  4033. weight: math.unit(73, "kg"),
  4034. name: "Feral",
  4035. image: {
  4036. source: "./media/characters/alicia/feral.svg"
  4037. }
  4038. },
  4039. },
  4040. [
  4041. {
  4042. name: "Normal",
  4043. height: math.unit(2.35, "meters")
  4044. },
  4045. {
  4046. name: "Macro",
  4047. height: math.unit(60, "meters"),
  4048. default: true
  4049. },
  4050. {
  4051. name: "Megamacro",
  4052. height: math.unit(10000, "kilometers")
  4053. },
  4054. ]
  4055. ))
  4056. characterMakers.push(() => makeCharacter(
  4057. { name: "Archy" },
  4058. {
  4059. front: {
  4060. height: math.unit(7, "feet"),
  4061. weight: math.unit(250, "lbs"),
  4062. name: "Front",
  4063. image: {
  4064. source: "./media/characters/archy/front.svg"
  4065. }
  4066. }
  4067. },
  4068. [
  4069. {
  4070. name: "Micro",
  4071. height: math.unit(1, "inch")
  4072. },
  4073. {
  4074. name: "Shorty",
  4075. height: math.unit(5, "feet")
  4076. },
  4077. {
  4078. name: "Normal",
  4079. height: math.unit(7, "feet")
  4080. },
  4081. {
  4082. name: "Macro",
  4083. height: math.unit(600, "meters"),
  4084. default: true
  4085. },
  4086. {
  4087. name: "Megamacro",
  4088. height: math.unit(1, "mile")
  4089. },
  4090. ]
  4091. ))
  4092. characterMakers.push(() => makeCharacter(
  4093. { name: "Berri" },
  4094. {
  4095. front: {
  4096. height: math.unit(1.65, "meters"),
  4097. weight: math.unit(74, "kg"),
  4098. name: "Front",
  4099. image: {
  4100. source: "./media/characters/berri/front.svg"
  4101. }
  4102. }
  4103. },
  4104. [
  4105. {
  4106. name: "Normal",
  4107. height: math.unit(1.65, "meters")
  4108. },
  4109. {
  4110. name: "Macro",
  4111. height: math.unit(60, "m"),
  4112. default: true
  4113. },
  4114. {
  4115. name: "Megamacro",
  4116. height: math.unit(9.213, "km")
  4117. },
  4118. {
  4119. name: "Planet Eater",
  4120. height: math.unit(489, "megameters")
  4121. },
  4122. {
  4123. name: "Teramacro",
  4124. height: math.unit(2471635000000, "meters")
  4125. },
  4126. {
  4127. name: "Examacro",
  4128. height: math.unit(8.0624e+26, "meters")
  4129. }
  4130. ]
  4131. ))
  4132. characterMakers.push(() => makeCharacter(
  4133. { name: "Lexi" },
  4134. {
  4135. front: {
  4136. height: math.unit(1.72, "meters"),
  4137. weight: math.unit(68, "kg"),
  4138. name: "Front",
  4139. image: {
  4140. source: "./media/characters/lexi/front.svg"
  4141. }
  4142. }
  4143. },
  4144. [
  4145. {
  4146. name: "Very Smol",
  4147. height: math.unit(10, "mm")
  4148. },
  4149. {
  4150. name: "Micro",
  4151. height: math.unit(6.8, "cm"),
  4152. default: true
  4153. },
  4154. {
  4155. name: "Normal",
  4156. height: math.unit(1.72, "m")
  4157. }
  4158. ]
  4159. ))
  4160. characterMakers.push(() => makeCharacter(
  4161. { name: "Martin" },
  4162. {
  4163. front: {
  4164. height: math.unit(1.69, "meters"),
  4165. weight: math.unit(68, "kg"),
  4166. name: "Front",
  4167. image: {
  4168. source: "./media/characters/martin/front.svg",
  4169. extra: 596 / 581
  4170. }
  4171. }
  4172. },
  4173. [
  4174. {
  4175. name: "Micro",
  4176. height: math.unit(6.85, "cm"),
  4177. default: true
  4178. },
  4179. {
  4180. name: "Normal",
  4181. height: math.unit(1.69, "m")
  4182. }
  4183. ]
  4184. ))
  4185. characterMakers.push(() => makeCharacter(
  4186. { name: "Juno" },
  4187. {
  4188. front: {
  4189. height: math.unit(1.69, "meters"),
  4190. weight: math.unit(68, "kg"),
  4191. name: "Front",
  4192. image: {
  4193. source: "./media/characters/juno/front.svg"
  4194. }
  4195. }
  4196. },
  4197. [
  4198. {
  4199. name: "Micro",
  4200. height: math.unit(7, "cm")
  4201. },
  4202. {
  4203. name: "Normal",
  4204. height: math.unit(1.89, "m")
  4205. },
  4206. {
  4207. name: "Macro",
  4208. height: math.unit(353, "meters"),
  4209. default: true
  4210. }
  4211. ]
  4212. ))
  4213. characterMakers.push(() => makeCharacter(
  4214. { name: "Samantha" },
  4215. {
  4216. front: {
  4217. height: math.unit(1.93, "meters"),
  4218. weight: math.unit(83, "kg"),
  4219. name: "Front",
  4220. image: {
  4221. source: "./media/characters/samantha/front.svg"
  4222. }
  4223. },
  4224. frontClothed: {
  4225. height: math.unit(1.93, "meters"),
  4226. weight: math.unit(83, "kg"),
  4227. name: "Front (Clothed)",
  4228. image: {
  4229. source: "./media/characters/samantha/front-clothed.svg"
  4230. }
  4231. },
  4232. back: {
  4233. height: math.unit(1.93, "meters"),
  4234. weight: math.unit(83, "kg"),
  4235. name: "Back",
  4236. image: {
  4237. source: "./media/characters/samantha/back.svg"
  4238. }
  4239. },
  4240. },
  4241. [
  4242. {
  4243. name: "Normal",
  4244. height: math.unit(1.93, "m")
  4245. },
  4246. {
  4247. name: "Macro",
  4248. height: math.unit(74, "meters"),
  4249. default: true
  4250. },
  4251. {
  4252. name: "Macro+",
  4253. height: math.unit(223, "meters"),
  4254. },
  4255. {
  4256. name: "Megamacro",
  4257. height: math.unit(8381, "meters"),
  4258. },
  4259. {
  4260. name: "Megamacro+",
  4261. height: math.unit(12000, "kilometers")
  4262. },
  4263. ]
  4264. ))
  4265. characterMakers.push(() => makeCharacter(
  4266. { name: "Dr. Clay" },
  4267. {
  4268. front: {
  4269. height: math.unit(1.92, "meters"),
  4270. weight: math.unit(80, "kg"),
  4271. name: "Front",
  4272. image: {
  4273. source: "./media/characters/dr-clay/front.svg"
  4274. }
  4275. },
  4276. frontClothed: {
  4277. height: math.unit(1.92, "meters"),
  4278. weight: math.unit(80, "kg"),
  4279. name: "Front (Clothed)",
  4280. image: {
  4281. source: "./media/characters/dr-clay/front-clothed.svg"
  4282. }
  4283. }
  4284. },
  4285. [
  4286. {
  4287. name: "Normal",
  4288. height: math.unit(1.92, "m")
  4289. },
  4290. {
  4291. name: "Macro",
  4292. height: math.unit(214, "meters"),
  4293. default: true
  4294. },
  4295. {
  4296. name: "Macro+",
  4297. height: math.unit(12.237, "meters"),
  4298. },
  4299. {
  4300. name: "Megamacro",
  4301. height: math.unit(557, "megameters"),
  4302. },
  4303. {
  4304. name: "Unimaginable",
  4305. height: math.unit(120e9, "lightyears")
  4306. },
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Wyvrn Ripsnarl" },
  4311. {
  4312. front: {
  4313. height: math.unit(2, "meters"),
  4314. weight: math.unit(80, "kg"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4318. }
  4319. }
  4320. },
  4321. [
  4322. {
  4323. name: "Teramacro",
  4324. height: math.unit(500000, "lightyears"),
  4325. default: true
  4326. },
  4327. ]
  4328. ))
  4329. characterMakers.push(() => makeCharacter(
  4330. { name: "Vemus" },
  4331. {
  4332. front: {
  4333. height: math.unit(2, "meters"),
  4334. weight: math.unit(150, "kg"),
  4335. name: "Front",
  4336. image: {
  4337. source: "./media/characters/vemus/front.svg",
  4338. extra: 2384 / 2084,
  4339. bottom: 0.0123
  4340. }
  4341. }
  4342. },
  4343. [
  4344. {
  4345. name: "Normal",
  4346. height: math.unit(3.75, "meters"),
  4347. default: true
  4348. },
  4349. {
  4350. name: "Big",
  4351. height: math.unit(8, "meters")
  4352. },
  4353. {
  4354. name: "Macro",
  4355. height: math.unit(100, "meters")
  4356. },
  4357. {
  4358. name: "Macro+",
  4359. height: math.unit(1500, "meters")
  4360. },
  4361. {
  4362. name: "Stellar",
  4363. height: math.unit(14e8, "meters")
  4364. },
  4365. ]
  4366. ))
  4367. characterMakers.push(() => makeCharacter(
  4368. { name: "Beherit" },
  4369. {
  4370. front: {
  4371. height: math.unit(2, "meters"),
  4372. weight: math.unit(70, "kg"),
  4373. name: "Front",
  4374. image: {
  4375. source: "./media/characters/beherit/front.svg",
  4376. extra: 1408 / 1242
  4377. }
  4378. }
  4379. },
  4380. [
  4381. {
  4382. name: "Normal",
  4383. height: math.unit(6, "feet")
  4384. },
  4385. {
  4386. name: "Lorg",
  4387. height: math.unit(25, "feet"),
  4388. default: true
  4389. },
  4390. {
  4391. name: "Lorger",
  4392. height: math.unit(75, "feet")
  4393. },
  4394. {
  4395. name: "Macro",
  4396. height: math.unit(200, "meters")
  4397. },
  4398. ]
  4399. ))
  4400. characterMakers.push(() => makeCharacter(
  4401. { name: "Everett" },
  4402. {
  4403. front: {
  4404. height: math.unit(2, "meters"),
  4405. weight: math.unit(150, "kg"),
  4406. name: "Front",
  4407. image: {
  4408. source: "./media/characters/everett/front.svg",
  4409. extra: 2038 / 1737,
  4410. bottom: 0.03
  4411. }
  4412. },
  4413. paw: {
  4414. height: math.unit(2 / 3.6, "meters"),
  4415. name: "Paw",
  4416. image: {
  4417. source: "./media/characters/everett/paw.svg"
  4418. }
  4419. },
  4420. },
  4421. [
  4422. {
  4423. name: "Normal",
  4424. height: math.unit(15, "feet"),
  4425. default: true
  4426. },
  4427. {
  4428. name: "Lorg",
  4429. height: math.unit(70, "feet"),
  4430. default: true
  4431. },
  4432. {
  4433. name: "Lorger",
  4434. height: math.unit(250, "feet")
  4435. },
  4436. {
  4437. name: "Macro",
  4438. height: math.unit(500, "meters")
  4439. },
  4440. ]
  4441. ))
  4442. characterMakers.push(() => makeCharacter(
  4443. { name: "Rose Lion" },
  4444. {
  4445. front: {
  4446. height: math.unit(2, "meters"),
  4447. weight: math.unit(86, "kg"),
  4448. name: "Front",
  4449. image: {
  4450. source: "./media/characters/rose-lion/front.svg"
  4451. }
  4452. },
  4453. bent: {
  4454. height: math.unit(2 / 1.4288, "meters"),
  4455. weight: math.unit(86, "kg"),
  4456. name: "Bent",
  4457. image: {
  4458. source: "./media/characters/rose-lion/bent.svg"
  4459. }
  4460. }
  4461. },
  4462. [
  4463. {
  4464. name: "Mini-Micro",
  4465. height: math.unit(1, "cm")
  4466. },
  4467. {
  4468. name: "Micro",
  4469. height: math.unit(3.5, "inches"),
  4470. default: true
  4471. },
  4472. {
  4473. name: "Normal",
  4474. height: math.unit(6 + 1 / 6, "feet")
  4475. },
  4476. {
  4477. name: "Mini-Macro",
  4478. height: math.unit(9 + 10 / 12, "feet")
  4479. },
  4480. ]
  4481. ))
  4482. characterMakers.push(() => makeCharacter(
  4483. { name: "Regal" },
  4484. {
  4485. front: {
  4486. height: math.unit(2, "meters"),
  4487. weight: math.unit(350, "lbs"),
  4488. name: "Front",
  4489. image: {
  4490. source: "./media/characters/regal/front.svg"
  4491. }
  4492. },
  4493. back: {
  4494. height: math.unit(2, "meters"),
  4495. weight: math.unit(350, "lbs"),
  4496. name: "Back",
  4497. image: {
  4498. source: "./media/characters/regal/back.svg"
  4499. }
  4500. },
  4501. },
  4502. [
  4503. {
  4504. name: "Macro",
  4505. height: math.unit(350, "feet"),
  4506. default: true
  4507. }
  4508. ]
  4509. ))
  4510. characterMakers.push(() => makeCharacter(
  4511. { name: "Opal" },
  4512. {
  4513. front: {
  4514. height: math.unit(4 + 11 / 12, "feet"),
  4515. weight: math.unit(100, "lbs"),
  4516. name: "Front",
  4517. image: {
  4518. source: "./media/characters/opal/front.svg"
  4519. }
  4520. },
  4521. frontAlt: {
  4522. height: math.unit(4 + 11 / 12, "feet"),
  4523. weight: math.unit(100, "lbs"),
  4524. name: "Front (Alt)",
  4525. image: {
  4526. source: "./media/characters/opal/front-alt.svg"
  4527. }
  4528. },
  4529. },
  4530. [
  4531. {
  4532. name: "Small",
  4533. height: math.unit(4 + 11 / 12, "feet")
  4534. },
  4535. {
  4536. name: "Normal",
  4537. height: math.unit(20, "feet"),
  4538. default: true
  4539. },
  4540. {
  4541. name: "Macro",
  4542. height: math.unit(120, "feet")
  4543. },
  4544. {
  4545. name: "Megamacro",
  4546. height: math.unit(80, "miles")
  4547. },
  4548. {
  4549. name: "True Size",
  4550. height: math.unit(100000, "lightyears")
  4551. },
  4552. ]
  4553. ))
  4554. characterMakers.push(() => makeCharacter(
  4555. { name: "Vector Wuff" },
  4556. {
  4557. front: {
  4558. height: math.unit(6, "feet"),
  4559. weight: math.unit(200, "lbs"),
  4560. name: "Front",
  4561. image: {
  4562. source: "./media/characters/vector-wuff/front.svg"
  4563. }
  4564. }
  4565. },
  4566. [
  4567. {
  4568. name: "Normal",
  4569. height: math.unit(2.8, "meters")
  4570. },
  4571. {
  4572. name: "Macro",
  4573. height: math.unit(450, "meters"),
  4574. default: true
  4575. },
  4576. {
  4577. name: "Megamacro",
  4578. height: math.unit(15, "kilometers")
  4579. }
  4580. ]
  4581. ))
  4582. characterMakers.push(() => makeCharacter(
  4583. { name: "Dannik" },
  4584. {
  4585. front: {
  4586. height: math.unit(6, "feet"),
  4587. weight: math.unit(256, "lbs"),
  4588. name: "Front",
  4589. image: {
  4590. source: "./media/characters/dannik/front.svg"
  4591. }
  4592. }
  4593. },
  4594. [
  4595. {
  4596. name: "Macro",
  4597. height: math.unit(69.57, "meters"),
  4598. default: true
  4599. },
  4600. ]
  4601. ))
  4602. characterMakers.push(() => makeCharacter(
  4603. { name: "Azura Saharah" },
  4604. {
  4605. front: {
  4606. height: math.unit(6, "feet"),
  4607. weight: math.unit(120, "lbs"),
  4608. name: "Front",
  4609. image: {
  4610. source: "./media/characters/azura-saharah/front.svg"
  4611. }
  4612. },
  4613. back: {
  4614. height: math.unit(6, "feet"),
  4615. weight: math.unit(120, "lbs"),
  4616. name: "Back",
  4617. image: {
  4618. source: "./media/characters/azura-saharah/back.svg"
  4619. }
  4620. },
  4621. },
  4622. [
  4623. {
  4624. name: "Macro",
  4625. height: math.unit(100, "feet"),
  4626. default: true
  4627. },
  4628. ]
  4629. ))
  4630. characterMakers.push(() => makeCharacter(
  4631. { name: "Kennedy" },
  4632. {
  4633. side: {
  4634. height: math.unit(5 + 4 / 12, "feet"),
  4635. weight: math.unit(163, "lbs"),
  4636. name: "Side",
  4637. image: {
  4638. source: "./media/characters/kennedy/side.svg"
  4639. }
  4640. }
  4641. },
  4642. [
  4643. {
  4644. name: "Standard Doggo",
  4645. height: math.unit(5 + 4 / 12, "feet")
  4646. },
  4647. {
  4648. name: "Big Doggo",
  4649. height: math.unit(25 + 3 / 12, "feet"),
  4650. default: true
  4651. },
  4652. ]
  4653. ))
  4654. characterMakers.push(() => makeCharacter(
  4655. { name: "Odi Lunar" },
  4656. {
  4657. front: {
  4658. height: math.unit(6, "feet"),
  4659. weight: math.unit(90, "lbs"),
  4660. name: "Front",
  4661. image: {
  4662. source: "./media/characters/odi-lunar/front.svg"
  4663. }
  4664. }
  4665. },
  4666. [
  4667. {
  4668. name: "Micro",
  4669. height: math.unit(3, "inches"),
  4670. default: true
  4671. },
  4672. {
  4673. name: "Normal",
  4674. height: math.unit(5.5, "feet")
  4675. }
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Mandake" },
  4680. {
  4681. back: {
  4682. height: math.unit(6, "feet"),
  4683. weight: math.unit(220, "lbs"),
  4684. name: "Back",
  4685. image: {
  4686. source: "./media/characters/mandake/back.svg"
  4687. }
  4688. }
  4689. },
  4690. [
  4691. {
  4692. name: "Normal",
  4693. height: math.unit(7, "feet"),
  4694. default: true
  4695. },
  4696. {
  4697. name: "Macro",
  4698. height: math.unit(78, "feet")
  4699. },
  4700. {
  4701. name: "Macro+",
  4702. height: math.unit(300, "meters")
  4703. },
  4704. {
  4705. name: "Macro++",
  4706. height: math.unit(2400, "feet")
  4707. },
  4708. {
  4709. name: "Megamacro",
  4710. height: math.unit(5167, "meters")
  4711. },
  4712. {
  4713. name: "Gigamacro",
  4714. height: math.unit(41769, "miles")
  4715. },
  4716. ]
  4717. ))
  4718. characterMakers.push(() => makeCharacter(
  4719. { name: "Yozey" },
  4720. {
  4721. front: {
  4722. height: math.unit(6, "feet"),
  4723. weight: math.unit(120, "lbs"),
  4724. name: "Front",
  4725. image: {
  4726. source: "./media/characters/yozey/front.svg"
  4727. }
  4728. },
  4729. frontAlt: {
  4730. height: math.unit(6, "feet"),
  4731. weight: math.unit(120, "lbs"),
  4732. name: "Front (Alt)",
  4733. image: {
  4734. source: "./media/characters/yozey/front-alt.svg"
  4735. }
  4736. },
  4737. side: {
  4738. height: math.unit(6, "feet"),
  4739. weight: math.unit(120, "lbs"),
  4740. name: "Side",
  4741. image: {
  4742. source: "./media/characters/yozey/side.svg"
  4743. }
  4744. },
  4745. },
  4746. [
  4747. {
  4748. name: "Micro",
  4749. height: math.unit(3, "inches"),
  4750. default: true
  4751. },
  4752. {
  4753. name: "Normal",
  4754. height: math.unit(6, "feet")
  4755. }
  4756. ]
  4757. ))
  4758. characterMakers.push(() => makeCharacter(
  4759. { name: "Valeska Voss" },
  4760. {
  4761. front: {
  4762. height: math.unit(6, "feet"),
  4763. weight: math.unit(103, "lbs"),
  4764. name: "Front",
  4765. image: {
  4766. source: "./media/characters/valeska-voss/front.svg"
  4767. }
  4768. }
  4769. },
  4770. [
  4771. {
  4772. name: "Mini-Sized Sub",
  4773. height: math.unit(3.1, "inches")
  4774. },
  4775. {
  4776. name: "Mid-Sized Sub",
  4777. height: math.unit(6.2, "inches")
  4778. },
  4779. {
  4780. name: "Full-Sized Sub",
  4781. height: math.unit(9.3, "inches")
  4782. },
  4783. {
  4784. name: "Normal",
  4785. height: math.unit(5 + 2 / 12, "foot"),
  4786. default: true
  4787. },
  4788. ]
  4789. ))
  4790. characterMakers.push(() => makeCharacter(
  4791. { name: "Gene Zeta" },
  4792. {
  4793. front: {
  4794. height: math.unit(6, "feet"),
  4795. weight: math.unit(160, "lbs"),
  4796. name: "Front",
  4797. image: {
  4798. source: "./media/characters/gene-zeta/front.svg",
  4799. bottom: 0.03,
  4800. extra: 1
  4801. }
  4802. }
  4803. },
  4804. [
  4805. {
  4806. name: "Normal",
  4807. height: math.unit(6.25, "foot"),
  4808. default: true
  4809. },
  4810. ]
  4811. ))
  4812. characterMakers.push(() => makeCharacter(
  4813. { name: "Razinox" },
  4814. {
  4815. front: {
  4816. height: math.unit(6, "feet"),
  4817. weight: math.unit(350, "lbs"),
  4818. name: "Front",
  4819. image: {
  4820. source: "./media/characters/razinox/front.svg",
  4821. extra: 1686 / 1548
  4822. }
  4823. },
  4824. back: {
  4825. height: math.unit(6, "feet"),
  4826. weight: math.unit(350, "lbs"),
  4827. name: "Back",
  4828. image: {
  4829. source: "./media/characters/razinox/back.svg",
  4830. extra: 1660 / 1590
  4831. }
  4832. },
  4833. },
  4834. [
  4835. {
  4836. name: "Normal",
  4837. height: math.unit(10 + 8 / 12, "foot")
  4838. },
  4839. {
  4840. name: "Minimacro",
  4841. height: math.unit(15, "foot")
  4842. },
  4843. {
  4844. name: "Macro",
  4845. height: math.unit(60, "foot"),
  4846. default: true
  4847. },
  4848. {
  4849. name: "Megamacro",
  4850. height: math.unit(5, "miles")
  4851. },
  4852. {
  4853. name: "Gigamacro",
  4854. height: math.unit(6000, "miles")
  4855. },
  4856. ]
  4857. ))
  4858. characterMakers.push(() => makeCharacter(
  4859. { name: "Cobalt" },
  4860. {
  4861. front: {
  4862. height: math.unit(6, "feet"),
  4863. weight: math.unit(150, "lbs"),
  4864. name: "Front",
  4865. image: {
  4866. source: "./media/characters/cobalt/front.svg"
  4867. }
  4868. }
  4869. },
  4870. [
  4871. {
  4872. name: "Normal",
  4873. height: math.unit(8 + 1 / 12, "foot")
  4874. },
  4875. {
  4876. name: "Macro",
  4877. height: math.unit(111, "foot"),
  4878. default: true
  4879. },
  4880. {
  4881. name: "Supracosmic",
  4882. height: math.unit(1e42, "feet")
  4883. },
  4884. ]
  4885. ))
  4886. characterMakers.push(() => makeCharacter(
  4887. { name: "Amanda" },
  4888. {
  4889. front: {
  4890. height: math.unit(6, "feet"),
  4891. weight: math.unit(140, "lbs"),
  4892. name: "Front",
  4893. image: {
  4894. source: "./media/characters/amanda/front.svg"
  4895. }
  4896. }
  4897. },
  4898. [
  4899. {
  4900. name: "Micro",
  4901. height: math.unit(5, "inches"),
  4902. default: true
  4903. },
  4904. ]
  4905. ))
  4906. characterMakers.push(() => makeCharacter(
  4907. { name: "Teal" },
  4908. {
  4909. front: {
  4910. height: math.unit(5.59, "feet"),
  4911. weight: math.unit(250, "lbs"),
  4912. name: "Front",
  4913. image: {
  4914. source: "./media/characters/teal/front.svg"
  4915. }
  4916. },
  4917. frontAlt: {
  4918. height: math.unit(6, "feet"),
  4919. weight: math.unit(250, "lbs"),
  4920. name: "Front (Alt)",
  4921. image: {
  4922. source: "./media/characters/teal/front-alt.svg",
  4923. bottom: 0.04,
  4924. extra: 1
  4925. }
  4926. },
  4927. },
  4928. [
  4929. {
  4930. name: "Normal",
  4931. height: math.unit(12, "feet"),
  4932. default: true
  4933. },
  4934. {
  4935. name: "Macro",
  4936. height: math.unit(300, "feet")
  4937. },
  4938. ]
  4939. ))
  4940. characterMakers.push(() => makeCharacter(
  4941. { name: "Ravin Amulet" },
  4942. {
  4943. frontCat: {
  4944. height: math.unit(6, "feet"),
  4945. weight: math.unit(180, "lbs"),
  4946. name: "Front (Cat)",
  4947. image: {
  4948. source: "./media/characters/ravin-amulet/front-cat.svg"
  4949. }
  4950. },
  4951. frontCatAlt: {
  4952. height: math.unit(6, "feet"),
  4953. weight: math.unit(180, "lbs"),
  4954. name: "Front (Alt, Cat)",
  4955. image: {
  4956. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  4957. }
  4958. },
  4959. frontWerewolf: {
  4960. height: math.unit(6 * 1.2, "feet"),
  4961. weight: math.unit(225, "lbs"),
  4962. name: "Front (Werewolf)",
  4963. image: {
  4964. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  4965. }
  4966. },
  4967. backWerewolf: {
  4968. height: math.unit(6 * 1.2, "feet"),
  4969. weight: math.unit(225, "lbs"),
  4970. name: "Back (Werewolf)",
  4971. image: {
  4972. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  4973. }
  4974. },
  4975. },
  4976. [
  4977. {
  4978. name: "Nano",
  4979. height: math.unit(1, "micrometer")
  4980. },
  4981. {
  4982. name: "Micro",
  4983. height: math.unit(1, "inch")
  4984. },
  4985. {
  4986. name: "Normal",
  4987. height: math.unit(6, "feet"),
  4988. default: true
  4989. },
  4990. {
  4991. name: "Macro",
  4992. height: math.unit(60, "feet")
  4993. }
  4994. ]
  4995. ))
  4996. characterMakers.push(() => makeCharacter(
  4997. { name: "Fluoresce" },
  4998. {
  4999. front: {
  5000. height: math.unit(6, "feet"),
  5001. weight: math.unit(165, "lbs"),
  5002. name: "Front",
  5003. image: {
  5004. source: "./media/characters/fluoresce/front.svg"
  5005. }
  5006. }
  5007. },
  5008. [
  5009. {
  5010. name: "Micro",
  5011. height: math.unit(6, "cm")
  5012. },
  5013. {
  5014. name: "Normal",
  5015. height: math.unit(5 + 7 / 12, "feet"),
  5016. default: true
  5017. },
  5018. {
  5019. name: "Macro",
  5020. height: math.unit(56, "feet")
  5021. },
  5022. {
  5023. name: "Megamacro",
  5024. height: math.unit(1.9, "miles")
  5025. },
  5026. ]
  5027. ))
  5028. characterMakers.push(() => makeCharacter(
  5029. { name: "Aurora" },
  5030. {
  5031. front: {
  5032. height: math.unit(9 + 6 / 12, "feet"),
  5033. weight: math.unit(523, "lbs"),
  5034. name: "Side",
  5035. image: {
  5036. source: "./media/characters/aurora/side.svg"
  5037. }
  5038. }
  5039. },
  5040. [
  5041. {
  5042. name: "Normal",
  5043. height: math.unit(9 + 6 / 12, "feet")
  5044. },
  5045. {
  5046. name: "Macro",
  5047. height: math.unit(96, "feet"),
  5048. default: true
  5049. },
  5050. {
  5051. name: "Macro+",
  5052. height: math.unit(243, "feet")
  5053. },
  5054. ]
  5055. ))
  5056. characterMakers.push(() => makeCharacter(
  5057. { name: "Ranek" },
  5058. {
  5059. front: {
  5060. height: math.unit(194, "cm"),
  5061. weight: math.unit(90, "kg"),
  5062. name: "Front",
  5063. image: {
  5064. source: "./media/characters/ranek/front.svg"
  5065. }
  5066. },
  5067. side: {
  5068. height: math.unit(194, "cm"),
  5069. weight: math.unit(90, "kg"),
  5070. name: "Side",
  5071. image: {
  5072. source: "./media/characters/ranek/side.svg"
  5073. }
  5074. },
  5075. back: {
  5076. height: math.unit(194, "cm"),
  5077. weight: math.unit(90, "kg"),
  5078. name: "Back",
  5079. image: {
  5080. source: "./media/characters/ranek/back.svg"
  5081. }
  5082. },
  5083. feral: {
  5084. height: math.unit(30, "cm"),
  5085. weight: math.unit(1.6, "lbs"),
  5086. name: "Feral",
  5087. image: {
  5088. source: "./media/characters/ranek/feral.svg"
  5089. }
  5090. },
  5091. },
  5092. [
  5093. {
  5094. name: "Normal",
  5095. height: math.unit(194, "cm"),
  5096. default: true
  5097. },
  5098. {
  5099. name: "Macro",
  5100. height: math.unit(100, "meters")
  5101. },
  5102. ]
  5103. ))
  5104. characterMakers.push(() => makeCharacter(
  5105. { name: "Andrew Cooper" },
  5106. {
  5107. front: {
  5108. height: math.unit(5 + 6 / 12, "feet"),
  5109. weight: math.unit(153, "lbs"),
  5110. name: "Front",
  5111. image: {
  5112. source: "./media/characters/andrew-cooper/front.svg"
  5113. }
  5114. },
  5115. },
  5116. [
  5117. {
  5118. name: "Nano",
  5119. height: math.unit(1, "mm")
  5120. },
  5121. {
  5122. name: "Micro",
  5123. height: math.unit(2, "inches")
  5124. },
  5125. {
  5126. name: "Normal",
  5127. height: math.unit(5 + 6 / 12, "feet"),
  5128. default: true
  5129. }
  5130. ]
  5131. ))
  5132. characterMakers.push(() => makeCharacter(
  5133. { name: "Akane Sato" },
  5134. {
  5135. front: {
  5136. height: math.unit(6, "feet"),
  5137. weight: math.unit(180, "lbs"),
  5138. name: "Front",
  5139. image: {
  5140. source: "./media/characters/akane-sato/front.svg",
  5141. extra: 1219 / 1140
  5142. }
  5143. },
  5144. back: {
  5145. height: math.unit(6, "feet"),
  5146. weight: math.unit(180, "lbs"),
  5147. name: "Back",
  5148. image: {
  5149. source: "./media/characters/akane-sato/back.svg",
  5150. extra: 1219 / 1170
  5151. }
  5152. },
  5153. },
  5154. [
  5155. {
  5156. name: "Normal",
  5157. height: math.unit(2.5, "meters")
  5158. },
  5159. {
  5160. name: "Macro",
  5161. height: math.unit(250, "meters"),
  5162. default: true
  5163. },
  5164. {
  5165. name: "Megamacro",
  5166. height: math.unit(25, "km")
  5167. },
  5168. ]
  5169. ))
  5170. characterMakers.push(() => makeCharacter(
  5171. { name: "Rook" },
  5172. {
  5173. front: {
  5174. height: math.unit(6, "feet"),
  5175. weight: math.unit(65, "kg"),
  5176. name: "Front",
  5177. image: {
  5178. source: "./media/characters/rook/front.svg",
  5179. extra: 960/950
  5180. }
  5181. }
  5182. },
  5183. [
  5184. {
  5185. name: "Normal",
  5186. height: math.unit(8.8, "feet")
  5187. },
  5188. {
  5189. name: "Macro",
  5190. height: math.unit(88, "feet"),
  5191. default: true
  5192. },
  5193. {
  5194. name: "Megamacro",
  5195. height: math.unit(8, "miles")
  5196. },
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Prodigy" },
  5201. {
  5202. front: {
  5203. height: math.unit(12 + 2 / 12, "feet"),
  5204. weight: math.unit(808, "lbs"),
  5205. name: "Front",
  5206. image: {
  5207. source: "./media/characters/prodigy/front.svg"
  5208. }
  5209. }
  5210. },
  5211. [
  5212. {
  5213. name: "Normal",
  5214. height: math.unit(12 + 2 / 12, "feet"),
  5215. default: true
  5216. },
  5217. {
  5218. name: "Macro",
  5219. height: math.unit(143, "feet")
  5220. },
  5221. {
  5222. name: "Macro+",
  5223. height: math.unit(400, "feet")
  5224. },
  5225. ]
  5226. ))
  5227. characterMakers.push(() => makeCharacter(
  5228. { name: "Daniel" },
  5229. {
  5230. front: {
  5231. height: math.unit(6, "feet"),
  5232. weight: math.unit(225, "lbs"),
  5233. name: "Front",
  5234. image: {
  5235. source: "./media/characters/daniel/front.svg"
  5236. }
  5237. },
  5238. leaning: {
  5239. height: math.unit(6, "feet"),
  5240. weight: math.unit(225, "lbs"),
  5241. name: "Leaning",
  5242. image: {
  5243. source: "./media/characters/daniel/leaning.svg"
  5244. }
  5245. },
  5246. },
  5247. [
  5248. {
  5249. name: "Macro",
  5250. height: math.unit(1000, "feet"),
  5251. default: true
  5252. },
  5253. ]
  5254. ))
  5255. characterMakers.push(() => makeCharacter(
  5256. { name: "Chiros" },
  5257. {
  5258. front: {
  5259. height: math.unit(6, "feet"),
  5260. weight: math.unit(88, "lbs"),
  5261. name: "Front",
  5262. image: {
  5263. source: "./media/characters/chiros/front.svg",
  5264. extra: 306 / 226
  5265. }
  5266. },
  5267. side: {
  5268. height: math.unit(6, "feet"),
  5269. weight: math.unit(88, "lbs"),
  5270. name: "Side",
  5271. image: {
  5272. source: "./media/characters/chiros/side.svg",
  5273. extra: 306 / 226
  5274. }
  5275. },
  5276. },
  5277. [
  5278. {
  5279. name: "Normal",
  5280. height: math.unit(6, "cm"),
  5281. default: true
  5282. },
  5283. ]
  5284. ))
  5285. characterMakers.push(() => makeCharacter(
  5286. { name: "Selka" },
  5287. {
  5288. front: {
  5289. height: math.unit(6, "feet"),
  5290. weight: math.unit(100, "lbs"),
  5291. name: "Front",
  5292. image: {
  5293. source: "./media/characters/selka/front.svg",
  5294. extra: 947 / 887
  5295. }
  5296. }
  5297. },
  5298. [
  5299. {
  5300. name: "Normal",
  5301. height: math.unit(5, "cm"),
  5302. default: true
  5303. },
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Verin" },
  5308. {
  5309. front: {
  5310. height: math.unit(8 + 3 / 12, "feet"),
  5311. weight: math.unit(424, "lbs"),
  5312. name: "Front",
  5313. image: {
  5314. source: "./media/characters/verin/front.svg",
  5315. extra: 1845 / 1550
  5316. }
  5317. },
  5318. frontArmored: {
  5319. height: math.unit(8 + 3 / 12, "feet"),
  5320. weight: math.unit(424, "lbs"),
  5321. name: "Front (Armored)",
  5322. image: {
  5323. source: "./media/characters/verin/front-armor.svg",
  5324. extra: 1845 / 1550,
  5325. bottom: 0.01
  5326. }
  5327. },
  5328. back: {
  5329. height: math.unit(8 + 3 / 12, "feet"),
  5330. weight: math.unit(424, "lbs"),
  5331. name: "Back",
  5332. image: {
  5333. source: "./media/characters/verin/back.svg",
  5334. bottom: 0.1,
  5335. extra: 1
  5336. }
  5337. },
  5338. foot: {
  5339. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5340. name: "Foot",
  5341. image: {
  5342. source: "./media/characters/verin/foot.svg"
  5343. }
  5344. },
  5345. },
  5346. [
  5347. {
  5348. name: "Normal",
  5349. height: math.unit(8 + 3 / 12, "feet")
  5350. },
  5351. {
  5352. name: "Minimacro",
  5353. height: math.unit(21, "feet"),
  5354. default: true
  5355. },
  5356. {
  5357. name: "Macro",
  5358. height: math.unit(626, "feet")
  5359. },
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Sovrim Terraquian" },
  5364. {
  5365. front: {
  5366. height: math.unit(2.718, "meters"),
  5367. weight: math.unit(150, "lbs"),
  5368. name: "Front",
  5369. image: {
  5370. source: "./media/characters/sovrim-terraquian/front.svg"
  5371. }
  5372. },
  5373. back: {
  5374. height: math.unit(2.718, "meters"),
  5375. weight: math.unit(150, "lbs"),
  5376. name: "Back",
  5377. image: {
  5378. source: "./media/characters/sovrim-terraquian/back.svg"
  5379. }
  5380. }
  5381. },
  5382. [
  5383. {
  5384. name: "Micro",
  5385. height: math.unit(2, "inches")
  5386. },
  5387. {
  5388. name: "Small",
  5389. height: math.unit(1, "meter")
  5390. },
  5391. {
  5392. name: "Normal",
  5393. height: math.unit(Math.E, "meters"),
  5394. default: true
  5395. },
  5396. {
  5397. name: "Macro",
  5398. height: math.unit(20, "meters")
  5399. },
  5400. {
  5401. name: "Macro+",
  5402. height: math.unit(400, "meters")
  5403. },
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Reece Silvermane" },
  5408. {
  5409. front: {
  5410. height: math.unit(7, "feet"),
  5411. weight: math.unit(489, "lbs"),
  5412. name: "Front",
  5413. image: {
  5414. source: "./media/characters/reece-silvermane/front.svg",
  5415. bottom: 0.02,
  5416. extra: 1
  5417. }
  5418. },
  5419. },
  5420. [
  5421. {
  5422. name: "Macro",
  5423. height: math.unit(1.5, "miles"),
  5424. default: true
  5425. },
  5426. ]
  5427. ))
  5428. characterMakers.push(() => makeCharacter(
  5429. { name: "Kane" },
  5430. {
  5431. front: {
  5432. height: math.unit(6, "feet"),
  5433. weight: math.unit(78, "kg"),
  5434. name: "Front",
  5435. image: {
  5436. source: "./media/characters/kane/front.svg",
  5437. extra: 978 / 899
  5438. }
  5439. },
  5440. },
  5441. [
  5442. {
  5443. name: "Normal",
  5444. height: math.unit(2.1, "m"),
  5445. },
  5446. {
  5447. name: "Macro",
  5448. height: math.unit(1, "km"),
  5449. default: true
  5450. },
  5451. ]
  5452. ))
  5453. characterMakers.push(() => makeCharacter(
  5454. { name: "Tegon" },
  5455. {
  5456. front: {
  5457. height: math.unit(6, "feet"),
  5458. weight: math.unit(200, "kg"),
  5459. name: "Front",
  5460. image: {
  5461. source: "./media/characters/tegon/front.svg",
  5462. bottom: 0.01,
  5463. extra: 1
  5464. }
  5465. },
  5466. },
  5467. [
  5468. {
  5469. name: "Micro",
  5470. height: math.unit(1, "inch")
  5471. },
  5472. {
  5473. name: "Normal",
  5474. height: math.unit(6 + 3 / 12, "feet"),
  5475. default: true
  5476. },
  5477. {
  5478. name: "Macro",
  5479. height: math.unit(300, "feet")
  5480. },
  5481. {
  5482. name: "Megamacro",
  5483. height: math.unit(69, "miles")
  5484. },
  5485. ]
  5486. ))
  5487. characterMakers.push(() => makeCharacter(
  5488. { name: "Arcturax" },
  5489. {
  5490. side: {
  5491. height: math.unit(6, "feet"),
  5492. weight: math.unit(2304, "lbs"),
  5493. name: "Side",
  5494. image: {
  5495. source: "./media/characters/arcturax/side.svg",
  5496. extra: 790 / 376,
  5497. bottom: 0.01
  5498. }
  5499. },
  5500. },
  5501. [
  5502. {
  5503. name: "Micro",
  5504. height: math.unit(2, "inch")
  5505. },
  5506. {
  5507. name: "Normal",
  5508. height: math.unit(6, "feet")
  5509. },
  5510. {
  5511. name: "Macro",
  5512. height: math.unit(39, "feet"),
  5513. default: true
  5514. },
  5515. {
  5516. name: "Megamacro",
  5517. height: math.unit(7, "miles")
  5518. },
  5519. ]
  5520. ))
  5521. characterMakers.push(() => makeCharacter(
  5522. { name: "Sentri" },
  5523. {
  5524. front: {
  5525. height: math.unit(6, "feet"),
  5526. weight: math.unit(50, "lbs"),
  5527. name: "Front",
  5528. image: {
  5529. source: "./media/characters/sentri/front.svg",
  5530. extra: 1750 / 1570,
  5531. bottom: 0.025
  5532. }
  5533. },
  5534. frontAlt: {
  5535. height: math.unit(6, "feet"),
  5536. weight: math.unit(50, "lbs"),
  5537. name: "Front (Alt)",
  5538. image: {
  5539. source: "./media/characters/sentri/front-alt.svg",
  5540. extra: 1750 / 1570,
  5541. bottom: 0.025
  5542. }
  5543. },
  5544. },
  5545. [
  5546. {
  5547. name: "Normal",
  5548. height: math.unit(15, "feet"),
  5549. default: true
  5550. },
  5551. {
  5552. name: "Macro",
  5553. height: math.unit(2500, "feet")
  5554. }
  5555. ]
  5556. ))
  5557. characterMakers.push(() => makeCharacter(
  5558. { name: "Corvin" },
  5559. {
  5560. front: {
  5561. height: math.unit(5 + 8 / 12, "feet"),
  5562. weight: math.unit(130, "lbs"),
  5563. name: "Front",
  5564. image: {
  5565. source: "./media/characters/corvin/front.svg",
  5566. extra: 1803 / 1629
  5567. }
  5568. },
  5569. frontShirt: {
  5570. height: math.unit(5 + 8 / 12, "feet"),
  5571. weight: math.unit(130, "lbs"),
  5572. name: "Front (Shirt)",
  5573. image: {
  5574. source: "./media/characters/corvin/front-shirt.svg",
  5575. extra: 1803 / 1629
  5576. }
  5577. },
  5578. frontPoncho: {
  5579. height: math.unit(5 + 8 / 12, "feet"),
  5580. weight: math.unit(130, "lbs"),
  5581. name: "Front (Poncho)",
  5582. image: {
  5583. source: "./media/characters/corvin/front-poncho.svg",
  5584. extra: 1803 / 1629
  5585. }
  5586. },
  5587. side: {
  5588. height: math.unit(5 + 8 / 12, "feet"),
  5589. weight: math.unit(130, "lbs"),
  5590. name: "Side",
  5591. image: {
  5592. source: "./media/characters/corvin/side.svg",
  5593. extra: 1012 / 945
  5594. }
  5595. },
  5596. back: {
  5597. height: math.unit(5 + 8 / 12, "feet"),
  5598. weight: math.unit(130, "lbs"),
  5599. name: "Back",
  5600. image: {
  5601. source: "./media/characters/corvin/back.svg",
  5602. extra: 1803 / 1629
  5603. }
  5604. },
  5605. },
  5606. [
  5607. {
  5608. name: "Micro",
  5609. height: math.unit(3, "inches")
  5610. },
  5611. {
  5612. name: "Normal",
  5613. height: math.unit(5 + 8 / 12, "feet")
  5614. },
  5615. {
  5616. name: "Macro",
  5617. height: math.unit(300, "feet"),
  5618. default: true
  5619. },
  5620. {
  5621. name: "Megamacro",
  5622. height: math.unit(500, "miles")
  5623. }
  5624. ]
  5625. ))
  5626. characterMakers.push(() => makeCharacter(
  5627. { name: "Q" },
  5628. {
  5629. front: {
  5630. height: math.unit(6, "feet"),
  5631. weight: math.unit(135, "lbs"),
  5632. name: "Front",
  5633. image: {
  5634. source: "./media/characters/q/front.svg",
  5635. extra: 854 / 752,
  5636. bottom: 0.005
  5637. }
  5638. },
  5639. back: {
  5640. height: math.unit(6, "feet"),
  5641. weight: math.unit(130, "lbs"),
  5642. name: "Back",
  5643. image: {
  5644. source: "./media/characters/q/back.svg",
  5645. extra: 854 / 752
  5646. }
  5647. },
  5648. },
  5649. [
  5650. {
  5651. name: "Macro",
  5652. height: math.unit(90, "feet"),
  5653. default: true
  5654. },
  5655. {
  5656. name: "Extra Macro",
  5657. height: math.unit(300, "feet"),
  5658. },
  5659. {
  5660. name: "BIG WALF",
  5661. height: math.unit(750, "feet"),
  5662. },
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Carley" },
  5667. {
  5668. front: {
  5669. height: math.unit(6, "feet"),
  5670. weight: math.unit(150, "lbs"),
  5671. name: "Front",
  5672. image: {
  5673. source: "./media/characters/carley/front.svg",
  5674. extra: 3927 / 3540,
  5675. bottom: 0.03
  5676. }
  5677. }
  5678. },
  5679. [
  5680. {
  5681. name: "Normal",
  5682. height: math.unit(6 + 3 / 12, "feet")
  5683. },
  5684. {
  5685. name: "Macro",
  5686. height: math.unit(185, "feet"),
  5687. default: true
  5688. },
  5689. {
  5690. name: "Megamacro",
  5691. height: math.unit(8, "miles"),
  5692. },
  5693. ]
  5694. ))
  5695. characterMakers.push(() => makeCharacter(
  5696. { name: "Citrine" },
  5697. {
  5698. front: {
  5699. height: math.unit(3, "feet"),
  5700. weight: math.unit(28, "lbs"),
  5701. name: "Front",
  5702. image: {
  5703. source: "./media/characters/citrine/front.svg"
  5704. }
  5705. }
  5706. },
  5707. [
  5708. {
  5709. name: "Normal",
  5710. height: math.unit(3, "feet"),
  5711. default: true
  5712. }
  5713. ]
  5714. ))
  5715. characterMakers.push(() => makeCharacter(
  5716. { name: "Aura Starwind" },
  5717. {
  5718. front: {
  5719. height: math.unit(14, "feet"),
  5720. weight: math.unit(1450, "kg"),
  5721. name: "Front",
  5722. image: {
  5723. source: "./media/characters/aura-starwind/front.svg",
  5724. extra: 1455 / 1335
  5725. }
  5726. },
  5727. side: {
  5728. height: math.unit(14, "feet"),
  5729. weight: math.unit(1450, "kg"),
  5730. name: "Side",
  5731. image: {
  5732. source: "./media/characters/aura-starwind/side.svg",
  5733. extra: 1654 / 1497
  5734. }
  5735. },
  5736. taur: {
  5737. height: math.unit(18, "feet"),
  5738. weight: math.unit(5500, "kg"),
  5739. name: "Taur",
  5740. image: {
  5741. source: "./media/characters/aura-starwind/taur.svg",
  5742. extra: 1760 / 1650
  5743. }
  5744. },
  5745. feral: {
  5746. height: math.unit(46, "feet"),
  5747. weight: math.unit(25000, "kg"),
  5748. name: "Feral",
  5749. image: {
  5750. source: "./media/characters/aura-starwind/feral.svg"
  5751. }
  5752. },
  5753. },
  5754. [
  5755. {
  5756. name: "Normal",
  5757. height: math.unit(14, "feet"),
  5758. default: true
  5759. },
  5760. {
  5761. name: "Macro",
  5762. height: math.unit(50, "meters")
  5763. },
  5764. {
  5765. name: "Megamacro",
  5766. height: math.unit(5000, "meters")
  5767. },
  5768. {
  5769. name: "Gigamacro",
  5770. height: math.unit(100000, "kilometers")
  5771. },
  5772. ]
  5773. ))
  5774. characterMakers.push(() => makeCharacter(
  5775. { name: "Rivet" },
  5776. {
  5777. front: {
  5778. height: math.unit(2 + 7 / 12, "feet"),
  5779. weight: math.unit(32, "lbs"),
  5780. name: "Front",
  5781. image: {
  5782. source: "./media/characters/rivet/front.svg",
  5783. extra: 1716 / 1658,
  5784. bottom: 0.03
  5785. }
  5786. },
  5787. foot: {
  5788. height: math.unit(0.551, "feet"),
  5789. name: "Rivet's Foot",
  5790. image: {
  5791. source: "./media/characters/rivet/foot.svg"
  5792. },
  5793. rename: true
  5794. }
  5795. },
  5796. [
  5797. {
  5798. name: "Micro",
  5799. height: math.unit(1.5, "inches"),
  5800. },
  5801. {
  5802. name: "Normal",
  5803. height: math.unit(2 + 7 / 12, "feet"),
  5804. default: true
  5805. },
  5806. {
  5807. name: "Macro",
  5808. height: math.unit(85, "feet")
  5809. },
  5810. {
  5811. name: "Megamacro",
  5812. height: math.unit(2.2, "km")
  5813. }
  5814. ]
  5815. ))
  5816. characterMakers.push(() => makeCharacter(
  5817. { name: "Coffee" },
  5818. {
  5819. front: {
  5820. height: math.unit(5 + 9 / 12, "feet"),
  5821. weight: math.unit(150, "lbs"),
  5822. name: "Front",
  5823. image: {
  5824. source: "./media/characters/coffee/front.svg",
  5825. extra: 3666 / 3032,
  5826. bottom: 0.04
  5827. }
  5828. },
  5829. foot: {
  5830. height: math.unit(1.29, "feet"),
  5831. name: "Foot",
  5832. image: {
  5833. source: "./media/characters/coffee/foot.svg"
  5834. }
  5835. },
  5836. },
  5837. [
  5838. {
  5839. name: "Micro",
  5840. height: math.unit(2, "inches"),
  5841. },
  5842. {
  5843. name: "Normal",
  5844. height: math.unit(5 + 9 / 12, "feet"),
  5845. default: true
  5846. },
  5847. {
  5848. name: "Macro",
  5849. height: math.unit(800, "feet")
  5850. },
  5851. {
  5852. name: "Megamacro",
  5853. height: math.unit(25, "miles")
  5854. }
  5855. ]
  5856. ))
  5857. characterMakers.push(() => makeCharacter(
  5858. { name: "Chari-Gal" },
  5859. {
  5860. front: {
  5861. height: math.unit(6, "feet"),
  5862. weight: math.unit(200, "lbs"),
  5863. name: "Front",
  5864. image: {
  5865. source: "./media/characters/chari-gal/front.svg",
  5866. extra: 1568 / 1385,
  5867. bottom: 0.047
  5868. }
  5869. },
  5870. gigantamax: {
  5871. height: math.unit(6 * 16, "feet"),
  5872. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  5873. name: "Gigantamax",
  5874. image: {
  5875. source: "./media/characters/chari-gal/gigantamax.svg",
  5876. extra: 1124 / 888,
  5877. bottom: 0.03
  5878. }
  5879. },
  5880. },
  5881. [
  5882. {
  5883. name: "Normal",
  5884. height: math.unit(5 + 7 / 12, "feet")
  5885. },
  5886. {
  5887. name: "Macro",
  5888. height: math.unit(200, "feet"),
  5889. default: true
  5890. }
  5891. ]
  5892. ))
  5893. characterMakers.push(() => makeCharacter(
  5894. { name: "Nova" },
  5895. {
  5896. front: {
  5897. height: math.unit(6, "feet"),
  5898. weight: math.unit(150, "lbs"),
  5899. name: "Front",
  5900. image: {
  5901. source: "./media/characters/nova/front.svg",
  5902. extra: 5000 / 4722,
  5903. bottom: 0.02
  5904. }
  5905. }
  5906. },
  5907. [
  5908. {
  5909. name: "Micro-",
  5910. height: math.unit(0.8, "inches")
  5911. },
  5912. {
  5913. name: "Micro",
  5914. height: math.unit(2, "inches"),
  5915. default: true
  5916. },
  5917. ]
  5918. ))
  5919. characterMakers.push(() => makeCharacter(
  5920. { name: "Argent" },
  5921. {
  5922. front: {
  5923. height: math.unit(3 + 1 / 12, "feet"),
  5924. weight: math.unit(21.7, "lbs"),
  5925. name: "Front",
  5926. image: {
  5927. source: "./media/characters/argent/front.svg",
  5928. extra: 1565 / 1416,
  5929. bottom: 0.01
  5930. }
  5931. }
  5932. },
  5933. [
  5934. {
  5935. name: "Micro",
  5936. height: math.unit(2, "inches")
  5937. },
  5938. {
  5939. name: "Normal",
  5940. height: math.unit(3 + 1 / 12, "feet"),
  5941. default: true
  5942. },
  5943. {
  5944. name: "Macro",
  5945. height: math.unit(120, "feet")
  5946. },
  5947. ]
  5948. ))
  5949. characterMakers.push(() => makeCharacter(
  5950. { name: "Mira al-Cul" },
  5951. {
  5952. lamp: {
  5953. height: math.unit(7 * 1559 / 989, "feet"),
  5954. name: "Magic Lamp",
  5955. image: {
  5956. source: "./media/characters/mira-al-cul/lamp.svg",
  5957. extra: 1617 / 1559
  5958. }
  5959. },
  5960. front: {
  5961. height: math.unit(7, "feet"),
  5962. name: "Front",
  5963. image: {
  5964. source: "./media/characters/mira-al-cul/front.svg",
  5965. extra: 1044 / 990
  5966. }
  5967. },
  5968. },
  5969. [
  5970. {
  5971. name: "Heavily Restricted",
  5972. height: math.unit(7 * 1559 / 989, "feet")
  5973. },
  5974. {
  5975. name: "Freshly Freed",
  5976. height: math.unit(50 * 1559 / 989, "feet")
  5977. },
  5978. {
  5979. name: "World Encompassing",
  5980. height: math.unit(10000 * 1559 / 989, "miles")
  5981. },
  5982. {
  5983. name: "Galactic",
  5984. height: math.unit(1.433 * 1559 / 989, "zettameters")
  5985. },
  5986. {
  5987. name: "Palmed Universe",
  5988. height: math.unit(6000 * 1559 / 989, "yottameters"),
  5989. default: true
  5990. },
  5991. {
  5992. name: "Multiversal Matriarch",
  5993. height: math.unit(8.87e10, "yottameters")
  5994. },
  5995. {
  5996. name: "Void Mother",
  5997. height: math.unit(3.14e110, "yottaparsecs")
  5998. },
  5999. ]
  6000. ))
  6001. characterMakers.push(() => makeCharacter(
  6002. { name: "Kuro-shi Uchū" },
  6003. {
  6004. front: {
  6005. height: math.unit(17 + 1 / 12, "feet"),
  6006. weight: math.unit(476.2 * 5, "lbs"),
  6007. name: "Front",
  6008. image: {
  6009. source: "./media/characters/kuro-shi-uchū/front.svg",
  6010. extra: 2329 / 1835,
  6011. bottom: 0.02
  6012. }
  6013. },
  6014. },
  6015. [
  6016. {
  6017. name: "Micro",
  6018. height: math.unit(2, "inches")
  6019. },
  6020. {
  6021. name: "Normal",
  6022. height: math.unit(12, "meters")
  6023. },
  6024. {
  6025. name: "Planetary",
  6026. height: math.unit(0.00929, "AU"),
  6027. default: true
  6028. },
  6029. {
  6030. name: "Universal",
  6031. height: math.unit(20, "gigaparsecs")
  6032. },
  6033. ]
  6034. ))
  6035. characterMakers.push(() => makeCharacter(
  6036. { name: "Katherine" },
  6037. {
  6038. front: {
  6039. height: math.unit(5 + 2 / 12, "feet"),
  6040. weight: math.unit(120, "lbs"),
  6041. name: "Front",
  6042. image: {
  6043. source: "./media/characters/katherine/front.svg",
  6044. extra: 2075 / 1969
  6045. }
  6046. },
  6047. dress: {
  6048. height: math.unit(5 + 2 / 12, "feet"),
  6049. weight: math.unit(120, "lbs"),
  6050. name: "Dress",
  6051. image: {
  6052. source: "./media/characters/katherine/dress.svg",
  6053. extra: 2258 / 2064
  6054. }
  6055. },
  6056. },
  6057. [
  6058. {
  6059. name: "Micro",
  6060. height: math.unit(1, "inches"),
  6061. default: true
  6062. },
  6063. {
  6064. name: "Normal",
  6065. height: math.unit(5 + 2 / 12, "feet")
  6066. },
  6067. {
  6068. name: "Macro",
  6069. height: math.unit(100, "meters")
  6070. },
  6071. {
  6072. name: "Megamacro",
  6073. height: math.unit(80, "miles")
  6074. },
  6075. ]
  6076. ))
  6077. characterMakers.push(() => makeCharacter(
  6078. { name: "Yevis" },
  6079. {
  6080. front: {
  6081. height: math.unit(7 + 8 / 12, "feet"),
  6082. weight: math.unit(250, "lbs"),
  6083. name: "Front",
  6084. image: {
  6085. source: "./media/characters/yevis/front.svg",
  6086. extra: 1938 / 1755
  6087. }
  6088. }
  6089. },
  6090. [
  6091. {
  6092. name: "Mortal",
  6093. height: math.unit(7 + 8 / 12, "feet")
  6094. },
  6095. {
  6096. name: "Battle",
  6097. height: math.unit(25 + 11 / 12, "feet")
  6098. },
  6099. {
  6100. name: "Wrath",
  6101. height: math.unit(1654 + 11 / 12, "feet")
  6102. },
  6103. {
  6104. name: "Planet Destroyer",
  6105. height: math.unit(12000, "miles")
  6106. },
  6107. {
  6108. name: "Galaxy Conqueror",
  6109. height: math.unit(1.45, "zettameters"),
  6110. default: true
  6111. },
  6112. {
  6113. name: "Universal War",
  6114. height: math.unit(184, "gigaparsecs")
  6115. },
  6116. {
  6117. name: "Eternity War",
  6118. height: math.unit(1.98e55, "yottaparsecs")
  6119. },
  6120. ]
  6121. ))
  6122. characterMakers.push(() => makeCharacter(
  6123. { name: "Xavier" },
  6124. {
  6125. front: {
  6126. height: math.unit(5 + 8 / 12, "feet"),
  6127. weight: math.unit(63, "kg"),
  6128. name: "Front",
  6129. image: {
  6130. source: "./media/characters/xavier/front.svg",
  6131. extra: 944 / 883
  6132. }
  6133. },
  6134. frontStretch: {
  6135. height: math.unit(5 + 8 / 12, "feet"),
  6136. weight: math.unit(63, "kg"),
  6137. name: "Stretching",
  6138. image: {
  6139. source: "./media/characters/xavier/front-stretch.svg",
  6140. extra: 962 / 820
  6141. }
  6142. },
  6143. },
  6144. [
  6145. {
  6146. name: "Normal",
  6147. height: math.unit(5 + 8 / 12, "feet")
  6148. },
  6149. {
  6150. name: "Macro",
  6151. height: math.unit(100, "meters"),
  6152. default: true
  6153. },
  6154. {
  6155. name: "McLargeHuge",
  6156. height: math.unit(10, "miles")
  6157. },
  6158. ]
  6159. ))
  6160. characterMakers.push(() => makeCharacter(
  6161. { name: "Joshii" },
  6162. {
  6163. front: {
  6164. height: math.unit(5 + 5 / 12, "feet"),
  6165. weight: math.unit(150, "lb"),
  6166. name: "Front",
  6167. image: {
  6168. source: "./media/characters/joshii/front.svg"
  6169. }
  6170. },
  6171. foot: {
  6172. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6173. name: "Foot",
  6174. image: {
  6175. source: "./media/characters/joshii/foot.svg"
  6176. }
  6177. },
  6178. },
  6179. [
  6180. {
  6181. name: "Micro",
  6182. height: math.unit(2, "inches")
  6183. },
  6184. {
  6185. name: "Normal",
  6186. height: math.unit(5 + 5 / 12, "feet"),
  6187. default: true
  6188. },
  6189. {
  6190. name: "Macro",
  6191. height: math.unit(785, "feet")
  6192. },
  6193. {
  6194. name: "Megamacro",
  6195. height: math.unit(24.5, "miles")
  6196. },
  6197. ]
  6198. ))
  6199. characterMakers.push(() => makeCharacter(
  6200. { name: "Goddess Elizabeth" },
  6201. {
  6202. front: {
  6203. height: math.unit(6, "feet"),
  6204. weight: math.unit(150, "lb"),
  6205. name: "Front",
  6206. image: {
  6207. source: "./media/characters/goddess-elizabeth/front.svg",
  6208. extra: 1800 / 1525,
  6209. bottom: 0.005
  6210. }
  6211. },
  6212. foot: {
  6213. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6214. name: "Foot",
  6215. image: {
  6216. source: "./media/characters/goddess-elizabeth/foot.svg"
  6217. }
  6218. },
  6219. mouth: {
  6220. height: math.unit(6, "feet"),
  6221. name: "Mouth",
  6222. image: {
  6223. source: "./media/characters/goddess-elizabeth/mouth.svg"
  6224. }
  6225. },
  6226. },
  6227. [
  6228. {
  6229. name: "Micro",
  6230. height: math.unit(12, "feet")
  6231. },
  6232. {
  6233. name: "Normal",
  6234. height: math.unit(80, "miles"),
  6235. default: true
  6236. },
  6237. {
  6238. name: "Macro",
  6239. height: math.unit(15000, "parsecs")
  6240. },
  6241. ]
  6242. ))
  6243. characterMakers.push(() => makeCharacter(
  6244. { name: "Kara" },
  6245. {
  6246. front: {
  6247. height: math.unit(5 + 9 / 12, "feet"),
  6248. weight: math.unit(144, "lb"),
  6249. name: "Front",
  6250. image: {
  6251. source: "./media/characters/kara/front.svg"
  6252. }
  6253. },
  6254. feet: {
  6255. height: math.unit(6 / 6.765, "feet"),
  6256. name: "Kara's Feet",
  6257. rename: true,
  6258. image: {
  6259. source: "./media/characters/kara/feet.svg"
  6260. }
  6261. },
  6262. },
  6263. [
  6264. {
  6265. name: "Normal",
  6266. height: math.unit(5 + 9 / 12, "feet")
  6267. },
  6268. {
  6269. name: "Macro",
  6270. height: math.unit(174, "feet"),
  6271. default: true
  6272. },
  6273. ]
  6274. ))
  6275. characterMakers.push(() => makeCharacter(
  6276. { name: "Tyrone" },
  6277. {
  6278. front: {
  6279. height: math.unit(18, "feet"),
  6280. weight: math.unit(4050, "lb"),
  6281. name: "Front",
  6282. image: {
  6283. source: "./media/characters/tyrone/front.svg",
  6284. extra: 2520 / 2402,
  6285. bottom: 0.025
  6286. }
  6287. },
  6288. },
  6289. [
  6290. {
  6291. name: "Normal",
  6292. height: math.unit(18, "feet"),
  6293. default: true
  6294. },
  6295. {
  6296. name: "Macro",
  6297. height: math.unit(300, "feet")
  6298. },
  6299. ]
  6300. ))
  6301. characterMakers.push(() => makeCharacter(
  6302. { name: "Danny" },
  6303. {
  6304. front: {
  6305. height: math.unit(7 + 8 / 12, "feet"),
  6306. weight: math.unit(120, "lb"),
  6307. name: "Front",
  6308. image: {
  6309. source: "./media/characters/danny/front.svg",
  6310. extra: 1490 / 1350
  6311. }
  6312. },
  6313. back: {
  6314. height: math.unit(7 + 8 / 12, "feet"),
  6315. weight: math.unit(120, "lb"),
  6316. name: "Back",
  6317. image: {
  6318. source: "./media/characters/danny/back.svg",
  6319. extra: 1490 / 1350
  6320. }
  6321. },
  6322. },
  6323. [
  6324. {
  6325. name: "Normal",
  6326. height: math.unit(7 + 8 / 12, "feet"),
  6327. default: true
  6328. },
  6329. ]
  6330. ))
  6331. characterMakers.push(() => makeCharacter(
  6332. { name: "Mallow" },
  6333. {
  6334. front: {
  6335. height: math.unit(3.5, "inches"),
  6336. weight: math.unit(19, "grams"),
  6337. name: "Front",
  6338. image: {
  6339. source: "./media/characters/mallow/front.svg",
  6340. extra: 471 / 431
  6341. }
  6342. },
  6343. back: {
  6344. height: math.unit(3.5, "inches"),
  6345. weight: math.unit(19, "grams"),
  6346. name: "Back",
  6347. image: {
  6348. source: "./media/characters/mallow/back.svg",
  6349. extra: 471 / 431
  6350. }
  6351. },
  6352. },
  6353. [
  6354. {
  6355. name: "Normal",
  6356. height: math.unit(3.5, "inches"),
  6357. default: true
  6358. },
  6359. ]
  6360. ))
  6361. characterMakers.push(() => makeCharacter(
  6362. { name: "Starry Aqua" },
  6363. {
  6364. front: {
  6365. height: math.unit(9, "feet"),
  6366. weight: math.unit(230, "kg"),
  6367. name: "Front",
  6368. image: {
  6369. source: "./media/characters/starry-aqua/front.svg"
  6370. }
  6371. },
  6372. back: {
  6373. height: math.unit(9, "feet"),
  6374. weight: math.unit(230, "kg"),
  6375. name: "Back",
  6376. image: {
  6377. source: "./media/characters/starry-aqua/back.svg"
  6378. }
  6379. },
  6380. hand: {
  6381. height: math.unit(9 * 0.1168, "feet"),
  6382. name: "Hand",
  6383. image: {
  6384. source: "./media/characters/starry-aqua/hand.svg"
  6385. }
  6386. },
  6387. foot: {
  6388. height: math.unit(9 * 0.18, "feet"),
  6389. name: "Foot",
  6390. image: {
  6391. source: "./media/characters/starry-aqua/foot.svg"
  6392. }
  6393. }
  6394. },
  6395. [
  6396. {
  6397. name: "Micro",
  6398. height: math.unit(3, "inches")
  6399. },
  6400. {
  6401. name: "Normal",
  6402. height: math.unit(9, "feet")
  6403. },
  6404. {
  6405. name: "Macro",
  6406. height: math.unit(300, "feet"),
  6407. default: true
  6408. },
  6409. {
  6410. name: "Megamacro",
  6411. height: math.unit(3200, "feet")
  6412. }
  6413. ]
  6414. ))
  6415. characterMakers.push(() => makeCharacter(
  6416. { name: "Luka" },
  6417. {
  6418. front: {
  6419. height: math.unit(6, "feet"),
  6420. weight: math.unit(230, "lb"),
  6421. name: "Front",
  6422. image: {
  6423. source: "./media/characters/luka/front.svg",
  6424. extra: 1,
  6425. bottom: 0.025
  6426. }
  6427. },
  6428. },
  6429. [
  6430. {
  6431. name: "Normal",
  6432. height: math.unit(12 + 8 / 12, "feet"),
  6433. default: true
  6434. },
  6435. {
  6436. name: "Minimacro",
  6437. height: math.unit(20, "feet")
  6438. },
  6439. {
  6440. name: "Macro",
  6441. height: math.unit(250, "feet")
  6442. },
  6443. {
  6444. name: "Megamacro",
  6445. height: math.unit(5, "miles")
  6446. },
  6447. {
  6448. name: "Gigamacro",
  6449. height: math.unit(8000, "miles")
  6450. },
  6451. ]
  6452. ))
  6453. characterMakers.push(() => makeCharacter(
  6454. { name: "Natalie Nightring" },
  6455. {
  6456. front: {
  6457. height: math.unit(6, "feet"),
  6458. weight: math.unit(150, "lb"),
  6459. name: "Front",
  6460. image: {
  6461. source: "./media/characters/natalie-nightring/front.svg",
  6462. extra: 1,
  6463. bottom: 0.06
  6464. }
  6465. },
  6466. },
  6467. [
  6468. {
  6469. name: "Uh Oh",
  6470. height: math.unit(0.1, "mm")
  6471. },
  6472. {
  6473. name: "Small",
  6474. height: math.unit(3, "inches")
  6475. },
  6476. {
  6477. name: "Human Scale",
  6478. height: math.unit(6, "feet")
  6479. },
  6480. {
  6481. name: "Librarian",
  6482. height: math.unit(50, "feet"),
  6483. default: true
  6484. },
  6485. {
  6486. name: "Immense",
  6487. height: math.unit(200, "miles")
  6488. },
  6489. ]
  6490. ))
  6491. characterMakers.push(() => makeCharacter(
  6492. { name: "Danni Rosie" },
  6493. {
  6494. front: {
  6495. height: math.unit(6, "feet"),
  6496. weight: math.unit(180, "lbs"),
  6497. name: "Front",
  6498. image: {
  6499. source: "./media/characters/danni-rosie/front.svg",
  6500. extra: 1260 / 1128,
  6501. bottom: 0.022
  6502. }
  6503. },
  6504. },
  6505. [
  6506. {
  6507. name: "Micro",
  6508. height: math.unit(2, "inches"),
  6509. default: true
  6510. },
  6511. ]
  6512. ))
  6513. characterMakers.push(() => makeCharacter(
  6514. { name: "Samantha Kruse" },
  6515. {
  6516. front: {
  6517. height: math.unit(5 + 9 / 12, "feet"),
  6518. weight: math.unit(220, "lb"),
  6519. name: "Front",
  6520. image: {
  6521. source: "./media/characters/samantha-kruse/front.svg",
  6522. extra: (985 / 935),
  6523. bottom: 0.03
  6524. }
  6525. },
  6526. frontUndressed: {
  6527. height: math.unit(5 + 9 / 12, "feet"),
  6528. weight: math.unit(220, "lb"),
  6529. name: "Front (Undressed)",
  6530. image: {
  6531. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6532. extra: (973 / 923),
  6533. bottom: 0.025
  6534. }
  6535. },
  6536. fat: {
  6537. height: math.unit(5 + 9 / 12, "feet"),
  6538. weight: math.unit(900, "lb"),
  6539. name: "Front (Fat)",
  6540. image: {
  6541. source: "./media/characters/samantha-kruse/fat.svg",
  6542. extra: 2688 / 2561
  6543. }
  6544. },
  6545. },
  6546. [
  6547. {
  6548. name: "Normal",
  6549. height: math.unit(5 + 9 / 12, "feet"),
  6550. default: true
  6551. }
  6552. ]
  6553. ))
  6554. characterMakers.push(() => makeCharacter(
  6555. { name: "Amelia Rosie" },
  6556. {
  6557. back: {
  6558. height: math.unit(5 + 4 / 12, "feet"),
  6559. weight: math.unit(4963, "lb"),
  6560. name: "Back",
  6561. image: {
  6562. source: "./media/characters/amelia-rosie/back.svg",
  6563. extra: 1113 / 963,
  6564. bottom: 0.01
  6565. }
  6566. },
  6567. },
  6568. [
  6569. {
  6570. name: "Level 0",
  6571. height: math.unit(5 + 4 / 12, "feet")
  6572. },
  6573. {
  6574. name: "Level 1",
  6575. height: math.unit(164597, "feet"),
  6576. default: true
  6577. },
  6578. {
  6579. name: "Level 2",
  6580. height: math.unit(956243, "miles")
  6581. },
  6582. {
  6583. name: "Level 3",
  6584. height: math.unit(29421709423, "miles")
  6585. },
  6586. {
  6587. name: "Level 4",
  6588. height: math.unit(154, "lightyears")
  6589. },
  6590. {
  6591. name: "Level 5",
  6592. height: math.unit(4738272, "lightyears")
  6593. },
  6594. {
  6595. name: "Level 6",
  6596. height: math.unit(145787152896, "lightyears")
  6597. },
  6598. ]
  6599. ))
  6600. characterMakers.push(() => makeCharacter(
  6601. { name: "Rook Kitara" },
  6602. {
  6603. front: {
  6604. height: math.unit(5 + 11 / 12, "feet"),
  6605. weight: math.unit(65, "kg"),
  6606. name: "Front",
  6607. image: {
  6608. source: "./media/characters/rook-kitara/front.svg",
  6609. extra: 1347 / 1274,
  6610. bottom: 0.005
  6611. }
  6612. },
  6613. },
  6614. [
  6615. {
  6616. name: "Totally Unfair",
  6617. height: math.unit(1.8, "mm")
  6618. },
  6619. {
  6620. name: "Lap Rookie",
  6621. height: math.unit(1.4, "feet")
  6622. },
  6623. {
  6624. name: "Normal",
  6625. height: math.unit(5 + 11 / 12, "feet"),
  6626. default: true
  6627. },
  6628. {
  6629. name: "How Did This Happen",
  6630. height: math.unit(80, "miles")
  6631. }
  6632. ]
  6633. ))
  6634. characterMakers.push(() => makeCharacter(
  6635. { name: "Pisces" },
  6636. {
  6637. front: {
  6638. height: math.unit(7, "feet"),
  6639. weight: math.unit(300, "lb"),
  6640. name: "Front",
  6641. image: {
  6642. source: "./media/characters/pisces/front.svg",
  6643. extra: 2255 / 2115,
  6644. bottom: 0.03
  6645. }
  6646. },
  6647. back: {
  6648. height: math.unit(7, "feet"),
  6649. weight: math.unit(300, "lb"),
  6650. name: "Back",
  6651. image: {
  6652. source: "./media/characters/pisces/back.svg",
  6653. extra: 2146 / 2055,
  6654. bottom: 0.04
  6655. }
  6656. },
  6657. },
  6658. [
  6659. {
  6660. name: "Normal",
  6661. height: math.unit(7, "feet"),
  6662. default: true
  6663. },
  6664. {
  6665. name: "Swimming Pool",
  6666. height: math.unit(12.2, "meters")
  6667. },
  6668. {
  6669. name: "Olympic Swimming Pool",
  6670. height: math.unit(56.3, "meters")
  6671. },
  6672. {
  6673. name: "Lake Superior",
  6674. height: math.unit(93900, "meters")
  6675. },
  6676. {
  6677. name: "Mediterranean Sea",
  6678. height: math.unit(644457, "meters")
  6679. },
  6680. {
  6681. name: "World's Oceans",
  6682. height: math.unit(4567491, "meters")
  6683. },
  6684. ]
  6685. ))
  6686. characterMakers.push(() => makeCharacter(
  6687. { name: "Zelas" },
  6688. {
  6689. front: {
  6690. height: math.unit(2.3, "meters"),
  6691. weight: math.unit(120, "kg"),
  6692. name: "Front",
  6693. image: {
  6694. source: "./media/characters/zelas/front.svg"
  6695. }
  6696. },
  6697. side: {
  6698. height: math.unit(2.3, "meters"),
  6699. weight: math.unit(120, "kg"),
  6700. name: "Side",
  6701. image: {
  6702. source: "./media/characters/zelas/side.svg"
  6703. }
  6704. },
  6705. back: {
  6706. height: math.unit(2.3, "meters"),
  6707. weight: math.unit(120, "kg"),
  6708. name: "Back",
  6709. image: {
  6710. source: "./media/characters/zelas/back.svg"
  6711. }
  6712. },
  6713. foot: {
  6714. height: math.unit(1.116, "feet"),
  6715. name: "Foot",
  6716. image: {
  6717. source: "./media/characters/zelas/foot.svg"
  6718. }
  6719. },
  6720. },
  6721. [
  6722. {
  6723. name: "Normal",
  6724. height: math.unit(2.3, "meters")
  6725. },
  6726. {
  6727. name: "Macro",
  6728. height: math.unit(30, "meters"),
  6729. default: true
  6730. },
  6731. ]
  6732. ))
  6733. characterMakers.push(() => makeCharacter(
  6734. { name: "Talbot" },
  6735. {
  6736. front: {
  6737. height: math.unit(1, "inch"),
  6738. weight: math.unit(0.21, "grams"),
  6739. name: "Front",
  6740. image: {
  6741. source: "./media/characters/talbot/front.svg",
  6742. extra: 594 / 544
  6743. }
  6744. },
  6745. },
  6746. [
  6747. {
  6748. name: "Micro",
  6749. height: math.unit(1, "inch"),
  6750. default: true
  6751. },
  6752. ]
  6753. ))
  6754. characterMakers.push(() => makeCharacter(
  6755. { name: "Fliss" },
  6756. {
  6757. front: {
  6758. height: math.unit(3 + 3 / 12, "feet"),
  6759. weight: math.unit(51.8, "lb"),
  6760. name: "Front",
  6761. image: {
  6762. source: "./media/characters/fliss/front.svg",
  6763. extra: 840 / 640
  6764. }
  6765. },
  6766. },
  6767. [
  6768. {
  6769. name: "Teeny Tiny",
  6770. height: math.unit(1, "mm")
  6771. },
  6772. {
  6773. name: "Small",
  6774. height: math.unit(1, "inch"),
  6775. default: true
  6776. },
  6777. {
  6778. name: "Standard Sylveon",
  6779. height: math.unit(3 + 3 / 12, "feet")
  6780. },
  6781. {
  6782. name: "Large Nuisance",
  6783. height: math.unit(33, "feet")
  6784. },
  6785. {
  6786. name: "City Filler",
  6787. height: math.unit(3000, "feet")
  6788. },
  6789. {
  6790. name: "New Horizon",
  6791. height: math.unit(6000, "miles")
  6792. },
  6793. ]
  6794. ))
  6795. characterMakers.push(() => makeCharacter(
  6796. { name: "Fleta" },
  6797. {
  6798. front: {
  6799. height: math.unit(5, "cm"),
  6800. weight: math.unit(1.94, "g"),
  6801. name: "Front",
  6802. image: {
  6803. source: "./media/characters/fleta/front.svg",
  6804. extra: 835 / 803
  6805. }
  6806. },
  6807. back: {
  6808. height: math.unit(5, "cm"),
  6809. weight: math.unit(1.94, "g"),
  6810. name: "Back",
  6811. image: {
  6812. source: "./media/characters/fleta/back.svg",
  6813. extra: 835 / 803
  6814. }
  6815. },
  6816. },
  6817. [
  6818. {
  6819. name: "Micro",
  6820. height: math.unit(5, "cm"),
  6821. default: true
  6822. },
  6823. ]
  6824. ))
  6825. characterMakers.push(() => makeCharacter(
  6826. { name: "Dominic" },
  6827. {
  6828. front: {
  6829. height: math.unit(6, "feet"),
  6830. weight: math.unit(225, "lb"),
  6831. name: "Front",
  6832. image: {
  6833. source: "./media/characters/dominic/front.svg",
  6834. extra: 1770 / 1620,
  6835. bottom: 0.025
  6836. }
  6837. },
  6838. back: {
  6839. height: math.unit(6, "feet"),
  6840. weight: math.unit(225, "lb"),
  6841. name: "Back",
  6842. image: {
  6843. source: "./media/characters/dominic/back.svg",
  6844. extra: 1745 / 1620,
  6845. bottom: 0.065
  6846. }
  6847. },
  6848. },
  6849. [
  6850. {
  6851. name: "Nano",
  6852. height: math.unit(0.1, "mm")
  6853. },
  6854. {
  6855. name: "Micro-",
  6856. height: math.unit(1, "mm")
  6857. },
  6858. {
  6859. name: "Micro",
  6860. height: math.unit(4, "inches")
  6861. },
  6862. {
  6863. name: "Normal",
  6864. height: math.unit(6 + 4 / 12, "feet"),
  6865. default: true
  6866. },
  6867. {
  6868. name: "Macro",
  6869. height: math.unit(115, "feet")
  6870. },
  6871. {
  6872. name: "Macro+",
  6873. height: math.unit(955, "feet")
  6874. },
  6875. {
  6876. name: "Megamacro",
  6877. height: math.unit(8990, "feet")
  6878. },
  6879. {
  6880. name: "Gigmacro",
  6881. height: math.unit(9310, "miles")
  6882. },
  6883. {
  6884. name: "Teramacro",
  6885. height: math.unit(1567005010, "miles")
  6886. },
  6887. {
  6888. name: "Examacro",
  6889. height: math.unit(1425, "parsecs")
  6890. },
  6891. ]
  6892. ))
  6893. characterMakers.push(() => makeCharacter(
  6894. { name: "Major Colonel" },
  6895. {
  6896. front: {
  6897. height: math.unit(400, "feet"),
  6898. weight: math.unit(44444444, "lb"),
  6899. name: "Front",
  6900. image: {
  6901. source: "./media/characters/major-colonel/front.svg"
  6902. }
  6903. },
  6904. back: {
  6905. height: math.unit(400, "feet"),
  6906. weight: math.unit(44444444, "lb"),
  6907. name: "Back",
  6908. image: {
  6909. source: "./media/characters/major-colonel/back.svg"
  6910. }
  6911. },
  6912. },
  6913. [
  6914. {
  6915. name: "Macro",
  6916. height: math.unit(400, "feet"),
  6917. default: true
  6918. },
  6919. ]
  6920. ))
  6921. characterMakers.push(() => makeCharacter(
  6922. { name: "Axel Lycan" },
  6923. {
  6924. front: {
  6925. height: math.unit(6, "feet"),
  6926. weight: math.unit(120, "lb"),
  6927. name: "Front",
  6928. image: {
  6929. source: "./media/characters/axel-lycan/front.svg",
  6930. extra: 1,
  6931. bottom: 0.08
  6932. }
  6933. },
  6934. },
  6935. [
  6936. {
  6937. name: "Macro",
  6938. height: math.unit(1, "km"),
  6939. default: true
  6940. },
  6941. ]
  6942. ))
  6943. characterMakers.push(() => makeCharacter(
  6944. { name: "Vanrel (Hyena)" },
  6945. {
  6946. front: {
  6947. height: math.unit(5 + 9 / 12, "feet"),
  6948. weight: math.unit(175, "lb"),
  6949. name: "Front",
  6950. image: {
  6951. source: "./media/characters/vanrel-hyena/front.svg",
  6952. extra: 1086 / 1010,
  6953. bottom: 0.04
  6954. }
  6955. },
  6956. },
  6957. [
  6958. {
  6959. name: "Normal",
  6960. height: math.unit(5 + 9 / 12, "feet"),
  6961. default: true
  6962. },
  6963. ]
  6964. ))
  6965. characterMakers.push(() => makeCharacter(
  6966. { name: "Abbott Absol" },
  6967. {
  6968. front: {
  6969. height: math.unit(6, "feet"),
  6970. weight: math.unit(103, "lb"),
  6971. name: "Front",
  6972. image: {
  6973. source: "./media/characters/abbott-absol/front.svg",
  6974. extra: 2010 / 1842
  6975. }
  6976. },
  6977. },
  6978. [
  6979. {
  6980. name: "Megamicro",
  6981. height: math.unit(0.1, "mm")
  6982. },
  6983. {
  6984. name: "Micro",
  6985. height: math.unit(1, "inch")
  6986. },
  6987. {
  6988. name: "Normal",
  6989. height: math.unit(6, "feet"),
  6990. default: true
  6991. },
  6992. ]
  6993. ))
  6994. characterMakers.push(() => makeCharacter(
  6995. { name: "Hector" },
  6996. {
  6997. front: {
  6998. height: math.unit(6, "feet"),
  6999. weight: math.unit(264, "lb"),
  7000. name: "Front",
  7001. image: {
  7002. source: "./media/characters/hector/front.svg",
  7003. extra: 2280 / 2130,
  7004. bottom: 0.07
  7005. }
  7006. },
  7007. },
  7008. [
  7009. {
  7010. name: "Normal",
  7011. height: math.unit(12.25, "foot"),
  7012. default: true
  7013. },
  7014. {
  7015. name: "Macro",
  7016. height: math.unit(160, "feet")
  7017. },
  7018. ]
  7019. ))
  7020. characterMakers.push(() => makeCharacter(
  7021. { name: "Sal" },
  7022. {
  7023. front: {
  7024. height: math.unit(6, "feet"),
  7025. weight: math.unit(150, "lb"),
  7026. name: "Front",
  7027. image: {
  7028. source: "./media/characters/sal/front.svg",
  7029. extra: 1846 / 1699,
  7030. bottom: 0.04
  7031. }
  7032. },
  7033. },
  7034. [
  7035. {
  7036. name: "Megamacro",
  7037. height: math.unit(10, "miles"),
  7038. default: true
  7039. },
  7040. ]
  7041. ))
  7042. characterMakers.push(() => makeCharacter(
  7043. { name: "Ranger" },
  7044. {
  7045. front: {
  7046. height: math.unit(3, "meters"),
  7047. weight: math.unit(450, "kg"),
  7048. name: "front",
  7049. image: {
  7050. source: "./media/characters/ranger/front.svg",
  7051. extra: 2401 / 2243,
  7052. bottom: 0.05
  7053. }
  7054. },
  7055. },
  7056. [
  7057. {
  7058. name: "Normal",
  7059. height: math.unit(3, "meters"),
  7060. default: true
  7061. },
  7062. ]
  7063. ))
  7064. characterMakers.push(() => makeCharacter(
  7065. { name: "Theresa" },
  7066. {
  7067. front: {
  7068. height: math.unit(14, "feet"),
  7069. weight: math.unit(800, "kg"),
  7070. name: "Front",
  7071. image: {
  7072. source: "./media/characters/theresa/front.svg",
  7073. extra: 3575 / 3346,
  7074. bottom: 0.03
  7075. }
  7076. },
  7077. },
  7078. [
  7079. {
  7080. name: "Normal",
  7081. height: math.unit(14, "feet"),
  7082. default: true
  7083. },
  7084. ]
  7085. ))
  7086. characterMakers.push(() => makeCharacter(
  7087. { name: "Ine" },
  7088. {
  7089. front: {
  7090. height: math.unit(6, "feet"),
  7091. weight: math.unit(3, "kg"),
  7092. name: "Front",
  7093. image: {
  7094. source: "./media/characters/ine/front.svg",
  7095. extra: 678 / 539,
  7096. bottom: 0.023
  7097. }
  7098. },
  7099. },
  7100. [
  7101. {
  7102. name: "Normal",
  7103. height: math.unit(2.265, "feet"),
  7104. default: true
  7105. },
  7106. ]
  7107. ))
  7108. characterMakers.push(() => makeCharacter(
  7109. { name: "Vial" },
  7110. {
  7111. front: {
  7112. height: math.unit(5, "feet"),
  7113. weight: math.unit(30, "kg"),
  7114. name: "Front",
  7115. image: {
  7116. source: "./media/characters/vial/front.svg",
  7117. extra: 1365 / 1277,
  7118. bottom: 0.04
  7119. }
  7120. },
  7121. },
  7122. [
  7123. {
  7124. name: "Normal",
  7125. height: math.unit(5, "feet"),
  7126. default: true
  7127. },
  7128. ]
  7129. ))
  7130. characterMakers.push(() => makeCharacter(
  7131. { name: "Rovoska" },
  7132. {
  7133. side: {
  7134. height: math.unit(3.4, "meters"),
  7135. weight: math.unit(1000, "lb"),
  7136. name: "Side",
  7137. image: {
  7138. source: "./media/characters/rovoska/side.svg",
  7139. extra: 4403 / 1515
  7140. }
  7141. },
  7142. },
  7143. [
  7144. {
  7145. name: "Normal",
  7146. height: math.unit(3.4, "meters"),
  7147. default: true
  7148. },
  7149. ]
  7150. ))
  7151. characterMakers.push(() => makeCharacter(
  7152. { name: "Gunner Rotthbauer" },
  7153. {
  7154. front: {
  7155. height: math.unit(8, "feet"),
  7156. weight: math.unit(315, "lb"),
  7157. name: "Front",
  7158. image: {
  7159. source: "./media/characters/gunner-rotthbauer/front.svg"
  7160. }
  7161. },
  7162. back: {
  7163. height: math.unit(8, "feet"),
  7164. weight: math.unit(315, "lb"),
  7165. name: "Back",
  7166. image: {
  7167. source: "./media/characters/gunner-rotthbauer/back.svg"
  7168. }
  7169. },
  7170. },
  7171. [
  7172. {
  7173. name: "Micro",
  7174. height: math.unit(3.5, "inches")
  7175. },
  7176. {
  7177. name: "Normal",
  7178. height: math.unit(8, "feet"),
  7179. default: true
  7180. },
  7181. {
  7182. name: "Macro",
  7183. height: math.unit(250, "feet")
  7184. },
  7185. {
  7186. name: "Megamacro",
  7187. height: math.unit(1, "AU")
  7188. },
  7189. ]
  7190. ))
  7191. characterMakers.push(() => makeCharacter(
  7192. { name: "Allatia" },
  7193. {
  7194. front: {
  7195. height: math.unit(5 + 5 / 12, "feet"),
  7196. weight: math.unit(140, "lb"),
  7197. name: "Front",
  7198. image: {
  7199. source: "./media/characters/allatia/front.svg",
  7200. extra: 1227 / 1180,
  7201. bottom: 0.027
  7202. }
  7203. },
  7204. },
  7205. [
  7206. {
  7207. name: "Normal",
  7208. height: math.unit(5 + 5 / 12, "feet")
  7209. },
  7210. {
  7211. name: "Macro",
  7212. height: math.unit(250, "feet"),
  7213. default: true
  7214. },
  7215. {
  7216. name: "Megamacro",
  7217. height: math.unit(8, "miles")
  7218. }
  7219. ]
  7220. ))
  7221. characterMakers.push(() => makeCharacter(
  7222. { name: "Tene" },
  7223. {
  7224. front: {
  7225. height: math.unit(6, "feet"),
  7226. weight: math.unit(120, "lb"),
  7227. name: "Front",
  7228. image: {
  7229. source: "./media/characters/tene/front.svg",
  7230. extra: 1728 / 1578,
  7231. bottom: 0.022
  7232. }
  7233. },
  7234. stomping: {
  7235. height: math.unit(2.025, "meters"),
  7236. weight: math.unit(120, "lb"),
  7237. name: "Stomping",
  7238. image: {
  7239. source: "./media/characters/tene/stomping.svg",
  7240. extra: 938 / 873,
  7241. bottom: 0.01
  7242. }
  7243. },
  7244. sitting: {
  7245. height: math.unit(1, "meter"),
  7246. weight: math.unit(120, "lb"),
  7247. name: "Sitting",
  7248. image: {
  7249. source: "./media/characters/tene/sitting.svg",
  7250. extra: 437 / 415,
  7251. bottom: 0.1
  7252. }
  7253. },
  7254. feral: {
  7255. height: math.unit(3.9, "feet"),
  7256. weight: math.unit(250, "lb"),
  7257. name: "Feral",
  7258. image: {
  7259. source: "./media/characters/tene/feral.svg",
  7260. extra: 717 / 458,
  7261. bottom: 0.179
  7262. }
  7263. },
  7264. },
  7265. [
  7266. {
  7267. name: "Normal",
  7268. height: math.unit(6, "feet")
  7269. },
  7270. {
  7271. name: "Macro",
  7272. height: math.unit(300, "feet"),
  7273. default: true
  7274. },
  7275. {
  7276. name: "Megamacro",
  7277. height: math.unit(5, "miles")
  7278. },
  7279. ]
  7280. ))
  7281. characterMakers.push(() => makeCharacter(
  7282. { name: "Evander" },
  7283. {
  7284. side: {
  7285. height: math.unit(6, "feet"),
  7286. name: "Side",
  7287. image: {
  7288. source: "./media/characters/evander/side.svg",
  7289. extra: 877 / 477
  7290. }
  7291. },
  7292. },
  7293. [
  7294. {
  7295. name: "Normal",
  7296. height: math.unit(0.83, "meters"),
  7297. default: true
  7298. },
  7299. ]
  7300. ))
  7301. characterMakers.push(() => makeCharacter(
  7302. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7303. {
  7304. front: {
  7305. height: math.unit(12, "feet"),
  7306. weight: math.unit(1000, "lb"),
  7307. name: "Front",
  7308. image: {
  7309. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7310. extra: 1762 / 1611
  7311. }
  7312. },
  7313. back: {
  7314. height: math.unit(12, "feet"),
  7315. weight: math.unit(1000, "lb"),
  7316. name: "Back",
  7317. image: {
  7318. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7319. extra: 1762 / 1611
  7320. }
  7321. },
  7322. },
  7323. [
  7324. {
  7325. name: "Normal",
  7326. height: math.unit(12, "feet"),
  7327. default: true
  7328. },
  7329. {
  7330. name: "Kaiju",
  7331. height: math.unit(150, "feet")
  7332. },
  7333. ]
  7334. ))
  7335. characterMakers.push(() => makeCharacter(
  7336. { name: "Zero Alurus" },
  7337. {
  7338. front: {
  7339. height: math.unit(6, "feet"),
  7340. weight: math.unit(150, "lb"),
  7341. name: "Front",
  7342. image: {
  7343. source: "./media/characters/zero-alurus/front.svg"
  7344. }
  7345. },
  7346. back: {
  7347. height: math.unit(6, "feet"),
  7348. weight: math.unit(150, "lb"),
  7349. name: "Back",
  7350. image: {
  7351. source: "./media/characters/zero-alurus/back.svg"
  7352. }
  7353. },
  7354. },
  7355. [
  7356. {
  7357. name: "Normal",
  7358. height: math.unit(5 + 10 / 12, "feet")
  7359. },
  7360. {
  7361. name: "Macro",
  7362. height: math.unit(60, "feet"),
  7363. default: true
  7364. },
  7365. {
  7366. name: "Macro+",
  7367. height: math.unit(450, "feet")
  7368. },
  7369. ]
  7370. ))
  7371. characterMakers.push(() => makeCharacter(
  7372. { name: "Mega Shi" },
  7373. {
  7374. front: {
  7375. height: math.unit(6, "feet"),
  7376. weight: math.unit(200, "lb"),
  7377. name: "Front",
  7378. image: {
  7379. source: "./media/characters/mega-shi/front.svg",
  7380. extra: 1279 / 1250,
  7381. bottom: 0.02
  7382. }
  7383. },
  7384. back: {
  7385. height: math.unit(6, "feet"),
  7386. weight: math.unit(200, "lb"),
  7387. name: "Back",
  7388. image: {
  7389. source: "./media/characters/mega-shi/back.svg",
  7390. extra: 1279 / 1250,
  7391. bottom: 0.02
  7392. }
  7393. },
  7394. },
  7395. [
  7396. {
  7397. name: "Micro",
  7398. height: math.unit(16 + 6 / 12, "feet")
  7399. },
  7400. {
  7401. name: "Normal",
  7402. height: math.unit(660, "feet"),
  7403. default: true
  7404. },
  7405. {
  7406. name: "Megamacro",
  7407. height: math.unit(10, "miles")
  7408. },
  7409. {
  7410. name: "Planetary Launch",
  7411. height: math.unit(500, "miles")
  7412. },
  7413. {
  7414. name: "Interstellar",
  7415. height: math.unit(1e9, "miles")
  7416. },
  7417. {
  7418. name: "Leaving the Universe",
  7419. height: math.unit(1, "gigaparsec")
  7420. },
  7421. {
  7422. name: "Travelling Universes",
  7423. height: math.unit(30e15, "parsecs")
  7424. },
  7425. ]
  7426. ))
  7427. characterMakers.push(() => makeCharacter(
  7428. { name: "Odyssey" },
  7429. {
  7430. front: {
  7431. height: math.unit(6, "feet"),
  7432. weight: math.unit(150, "lb"),
  7433. name: "Front",
  7434. image: {
  7435. source: "./media/characters/odyssey/front.svg",
  7436. extra: 1782 / 1582,
  7437. bottom: 0.01
  7438. }
  7439. },
  7440. side: {
  7441. height: math.unit(5.7, "feet"),
  7442. weight: math.unit(140, "lb"),
  7443. name: "Side",
  7444. image: {
  7445. source: "./media/characters/odyssey/side.svg",
  7446. extra: 6462 / 5700
  7447. }
  7448. },
  7449. },
  7450. [
  7451. {
  7452. name: "Normal",
  7453. height: math.unit(5 + 4 / 12, "feet")
  7454. },
  7455. {
  7456. name: "Macro",
  7457. height: math.unit(1, "km")
  7458. },
  7459. {
  7460. name: "Megamacro",
  7461. height: math.unit(3000, "km")
  7462. },
  7463. {
  7464. name: "Gigamacro",
  7465. height: math.unit(1, "AU"),
  7466. default: true
  7467. },
  7468. {
  7469. name: "Omniversal",
  7470. height: math.unit(100e14, "lightyears")
  7471. },
  7472. ]
  7473. ))
  7474. characterMakers.push(() => makeCharacter(
  7475. { name: "Mekuto" },
  7476. {
  7477. front: {
  7478. height: math.unit(6, "feet"),
  7479. weight: math.unit(300, "lb"),
  7480. name: "Front",
  7481. image: {
  7482. source: "./media/characters/mekuto/front.svg",
  7483. extra: 921 / 832,
  7484. bottom: 0.03
  7485. }
  7486. },
  7487. hand: {
  7488. height: math.unit(6 / 10.24, "feet"),
  7489. name: "Hand",
  7490. image: {
  7491. source: "./media/characters/mekuto/hand.svg"
  7492. }
  7493. },
  7494. foot: {
  7495. height: math.unit(6 / 5.05, "feet"),
  7496. name: "Foot",
  7497. image: {
  7498. source: "./media/characters/mekuto/foot.svg"
  7499. }
  7500. },
  7501. },
  7502. [
  7503. {
  7504. name: "Minimicro",
  7505. height: math.unit(0.2, "inches")
  7506. },
  7507. {
  7508. name: "Micro",
  7509. height: math.unit(1.5, "inches")
  7510. },
  7511. {
  7512. name: "Normal",
  7513. height: math.unit(5 + 11 / 12, "feet"),
  7514. default: true
  7515. },
  7516. {
  7517. name: "Minimacro",
  7518. height: math.unit(17 + 9 / 12, "feet")
  7519. },
  7520. {
  7521. name: "Macro",
  7522. height: math.unit(177.5, "feet")
  7523. },
  7524. {
  7525. name: "Megamacro",
  7526. height: math.unit(152, "miles")
  7527. },
  7528. ]
  7529. ))
  7530. characterMakers.push(() => makeCharacter(
  7531. { name: "Dafydd Tomos" },
  7532. {
  7533. front: {
  7534. height: math.unit(6.5, "inches"),
  7535. weight: math.unit(13, "oz"),
  7536. name: "Front",
  7537. image: {
  7538. source: "./media/characters/dafydd-tomos/front.svg",
  7539. extra: 2990 / 2603,
  7540. bottom: 0.03
  7541. }
  7542. },
  7543. },
  7544. [
  7545. {
  7546. name: "Micro",
  7547. height: math.unit(6.5, "inches"),
  7548. default: true
  7549. },
  7550. ]
  7551. ))
  7552. characterMakers.push(() => makeCharacter(
  7553. { name: "Splinter" },
  7554. {
  7555. front: {
  7556. height: math.unit(6, "feet"),
  7557. weight: math.unit(150, "lb"),
  7558. name: "Front",
  7559. image: {
  7560. source: "./media/characters/splinter/front.svg",
  7561. extra: 2990 / 2882,
  7562. bottom: 0.04
  7563. }
  7564. },
  7565. back: {
  7566. height: math.unit(6, "feet"),
  7567. weight: math.unit(150, "lb"),
  7568. name: "Back",
  7569. image: {
  7570. source: "./media/characters/splinter/back.svg",
  7571. extra: 2990 / 2882,
  7572. bottom: 0.04
  7573. }
  7574. },
  7575. },
  7576. [
  7577. {
  7578. name: "Normal",
  7579. height: math.unit(6, "feet")
  7580. },
  7581. {
  7582. name: "Macro",
  7583. height: math.unit(230, "meters"),
  7584. default: true
  7585. },
  7586. ]
  7587. ))
  7588. characterMakers.push(() => makeCharacter(
  7589. { name: "SnowGabumon" },
  7590. {
  7591. front: {
  7592. height: math.unit(4 + 10 / 12, "feet"),
  7593. weight: math.unit(480, "lb"),
  7594. name: "Front",
  7595. image: {
  7596. source: "./media/characters/snow-gabumon/front.svg",
  7597. extra: 1140 / 963,
  7598. bottom: 0.058
  7599. }
  7600. },
  7601. back: {
  7602. height: math.unit(4 + 10 / 12, "feet"),
  7603. weight: math.unit(480, "lb"),
  7604. name: "Back",
  7605. image: {
  7606. source: "./media/characters/snow-gabumon/back.svg",
  7607. extra: 1115 / 962,
  7608. bottom: 0.041
  7609. }
  7610. },
  7611. frontUndresed: {
  7612. height: math.unit(4 + 10 / 12, "feet"),
  7613. weight: math.unit(480, "lb"),
  7614. name: "Front (Undressed)",
  7615. image: {
  7616. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7617. extra: 1061 / 960,
  7618. bottom: 0.045
  7619. }
  7620. },
  7621. },
  7622. [
  7623. {
  7624. name: "Micro",
  7625. height: math.unit(1, "inch")
  7626. },
  7627. {
  7628. name: "Normal",
  7629. height: math.unit(4 + 10 / 12, "feet"),
  7630. default: true
  7631. },
  7632. {
  7633. name: "Macro",
  7634. height: math.unit(200, "feet")
  7635. },
  7636. {
  7637. name: "Megamacro",
  7638. height: math.unit(120, "miles")
  7639. },
  7640. {
  7641. name: "Gigamacro",
  7642. height: math.unit(9800, "miles")
  7643. },
  7644. ]
  7645. ))
  7646. characterMakers.push(() => makeCharacter(
  7647. { name: "Moody" },
  7648. {
  7649. front: {
  7650. height: math.unit(1.7, "meters"),
  7651. weight: math.unit(140, "lb"),
  7652. name: "Front",
  7653. image: {
  7654. source: "./media/characters/moody/front.svg",
  7655. extra: 3226 / 3007,
  7656. bottom: 0.087
  7657. }
  7658. },
  7659. },
  7660. [
  7661. {
  7662. name: "Micro",
  7663. height: math.unit(1, "mm")
  7664. },
  7665. {
  7666. name: "Normal",
  7667. height: math.unit(1.7, "meters"),
  7668. default: true
  7669. },
  7670. {
  7671. name: "Macro",
  7672. height: math.unit(80, "meters")
  7673. },
  7674. {
  7675. name: "Macro+",
  7676. height: math.unit(500, "meters")
  7677. },
  7678. ]
  7679. ))
  7680. characterMakers.push(() => makeCharacter(
  7681. { name: "Zyas" },
  7682. {
  7683. front: {
  7684. height: math.unit(6, "feet"),
  7685. weight: math.unit(150, "lb"),
  7686. name: "Front",
  7687. image: {
  7688. source: "./media/characters/zyas/front.svg",
  7689. extra: 1180 / 1120,
  7690. bottom: 0.045
  7691. }
  7692. },
  7693. },
  7694. [
  7695. {
  7696. name: "Normal",
  7697. height: math.unit(10, "feet"),
  7698. default: true
  7699. },
  7700. {
  7701. name: "Macro",
  7702. height: math.unit(500, "feet")
  7703. },
  7704. {
  7705. name: "Megamacro",
  7706. height: math.unit(5, "miles")
  7707. },
  7708. {
  7709. name: "Teramacro",
  7710. height: math.unit(150000, "miles")
  7711. },
  7712. ]
  7713. ))
  7714. characterMakers.push(() => makeCharacter(
  7715. { name: "Cuon" },
  7716. {
  7717. front: {
  7718. height: math.unit(6, "feet"),
  7719. weight: math.unit(150, "lb"),
  7720. name: "Front",
  7721. image: {
  7722. source: "./media/characters/cuon/front.svg",
  7723. extra: 1390 / 1320,
  7724. bottom: 0.008
  7725. }
  7726. },
  7727. },
  7728. [
  7729. {
  7730. name: "Micro",
  7731. height: math.unit(3, "inches")
  7732. },
  7733. {
  7734. name: "Normal",
  7735. height: math.unit(18 + 9 / 12, "feet"),
  7736. default: true
  7737. },
  7738. {
  7739. name: "Macro",
  7740. height: math.unit(360, "feet")
  7741. },
  7742. {
  7743. name: "Megamacro",
  7744. height: math.unit(360, "miles")
  7745. },
  7746. ]
  7747. ))
  7748. characterMakers.push(() => makeCharacter(
  7749. { name: "Nyanuxk" },
  7750. {
  7751. front: {
  7752. height: math.unit(2.4, "meters"),
  7753. weight: math.unit(70, "kg"),
  7754. name: "Front",
  7755. image: {
  7756. source: "./media/characters/nyanuxk/front.svg",
  7757. extra: 1172 / 1084,
  7758. bottom: 0.065
  7759. }
  7760. },
  7761. side: {
  7762. height: math.unit(2.4, "meters"),
  7763. weight: math.unit(70, "kg"),
  7764. name: "Side",
  7765. image: {
  7766. source: "./media/characters/nyanuxk/side.svg",
  7767. extra: 1190 / 1132,
  7768. bottom: 0.007
  7769. }
  7770. },
  7771. back: {
  7772. height: math.unit(2.4, "meters"),
  7773. weight: math.unit(70, "kg"),
  7774. name: "Back",
  7775. image: {
  7776. source: "./media/characters/nyanuxk/back.svg",
  7777. extra: 1200 / 1141,
  7778. bottom: 0.015
  7779. }
  7780. },
  7781. foot: {
  7782. height: math.unit(0.52, "meters"),
  7783. name: "Foot",
  7784. image: {
  7785. source: "./media/characters/nyanuxk/foot.svg"
  7786. }
  7787. },
  7788. },
  7789. [
  7790. {
  7791. name: "Micro",
  7792. height: math.unit(2, "cm")
  7793. },
  7794. {
  7795. name: "Normal",
  7796. height: math.unit(2.4, "meters"),
  7797. default: true
  7798. },
  7799. {
  7800. name: "Smaller Macro",
  7801. height: math.unit(120, "meters")
  7802. },
  7803. {
  7804. name: "Bigger Macro",
  7805. height: math.unit(1.2, "km")
  7806. },
  7807. {
  7808. name: "Megamacro",
  7809. height: math.unit(15, "kilometers")
  7810. },
  7811. {
  7812. name: "Gigamacro",
  7813. height: math.unit(2000, "km")
  7814. },
  7815. {
  7816. name: "Teramacro",
  7817. height: math.unit(500000, "km")
  7818. },
  7819. ]
  7820. ))
  7821. characterMakers.push(() => makeCharacter(
  7822. { name: "Ailbhe" },
  7823. {
  7824. side: {
  7825. height: math.unit(6, "feet"),
  7826. name: "Side",
  7827. image: {
  7828. source: "./media/characters/ailbhe/side.svg",
  7829. extra: 757 / 464,
  7830. bottom: 0.041
  7831. }
  7832. },
  7833. },
  7834. [
  7835. {
  7836. name: "Normal",
  7837. height: math.unit(1.07, "meters"),
  7838. default: true
  7839. },
  7840. ]
  7841. ))
  7842. characterMakers.push(() => makeCharacter(
  7843. { name: "Zevulfius" },
  7844. {
  7845. front: {
  7846. height: math.unit(6, "feet"),
  7847. weight: math.unit(120, "kg"),
  7848. name: "Front",
  7849. image: {
  7850. source: "./media/characters/zevulfius/front.svg",
  7851. extra: 965 / 903
  7852. }
  7853. },
  7854. side: {
  7855. height: math.unit(6, "feet"),
  7856. weight: math.unit(120, "kg"),
  7857. name: "Side",
  7858. image: {
  7859. source: "./media/characters/zevulfius/side.svg",
  7860. extra: 939 / 900
  7861. }
  7862. },
  7863. back: {
  7864. height: math.unit(6, "feet"),
  7865. weight: math.unit(120, "kg"),
  7866. name: "Back",
  7867. image: {
  7868. source: "./media/characters/zevulfius/back.svg",
  7869. extra: 918 / 854,
  7870. bottom: 0.005
  7871. }
  7872. },
  7873. foot: {
  7874. height: math.unit(6 / 3.72, "feet"),
  7875. name: "Foot",
  7876. image: {
  7877. source: "./media/characters/zevulfius/foot.svg"
  7878. }
  7879. },
  7880. },
  7881. [
  7882. {
  7883. name: "Macro",
  7884. height: math.unit(750, "meters")
  7885. },
  7886. {
  7887. name: "Megamacro",
  7888. height: math.unit(20, "km"),
  7889. default: true
  7890. },
  7891. {
  7892. name: "Gigamacro",
  7893. height: math.unit(2000, "km")
  7894. },
  7895. {
  7896. name: "Teramacro",
  7897. height: math.unit(250000, "km")
  7898. },
  7899. ]
  7900. ))
  7901. characterMakers.push(() => makeCharacter(
  7902. { name: "Rikes" },
  7903. {
  7904. front: {
  7905. height: math.unit(100, "feet"),
  7906. weight: math.unit(350, "kg"),
  7907. name: "Front",
  7908. image: {
  7909. source: "./media/characters/rikes/front.svg",
  7910. extra: 1565 / 1483,
  7911. bottom: 0.017
  7912. }
  7913. },
  7914. },
  7915. [
  7916. {
  7917. name: "Macro",
  7918. height: math.unit(100, "feet"),
  7919. default: true
  7920. },
  7921. ]
  7922. ))
  7923. characterMakers.push(() => makeCharacter(
  7924. { name: "Adam Silver-Mane" },
  7925. {
  7926. anthro: {
  7927. height: math.unit(8, "feet"),
  7928. weight: math.unit(120, "kg"),
  7929. name: "Anthro",
  7930. image: {
  7931. source: "./media/characters/adam-silver-mane/anthro.svg",
  7932. extra: 5743 / 5339,
  7933. bottom: 0.07
  7934. }
  7935. },
  7936. taur: {
  7937. height: math.unit(16, "feet"),
  7938. weight: math.unit(1500, "kg"),
  7939. name: "Taur",
  7940. image: {
  7941. source: "./media/characters/adam-silver-mane/taur.svg",
  7942. extra: 1713 / 1571,
  7943. bottom: 0.01
  7944. }
  7945. },
  7946. },
  7947. [
  7948. {
  7949. name: "Normal",
  7950. height: math.unit(8, "feet")
  7951. },
  7952. {
  7953. name: "Minimacro",
  7954. height: math.unit(80, "feet")
  7955. },
  7956. {
  7957. name: "Macro",
  7958. height: math.unit(800, "feet"),
  7959. default: true
  7960. },
  7961. {
  7962. name: "Megamacro",
  7963. height: math.unit(8000, "feet")
  7964. },
  7965. {
  7966. name: "Gigamacro",
  7967. height: math.unit(800, "miles")
  7968. },
  7969. {
  7970. name: "Teramacro",
  7971. height: math.unit(80000, "miles")
  7972. },
  7973. {
  7974. name: "Celestial",
  7975. height: math.unit(8e6, "miles")
  7976. },
  7977. {
  7978. name: "Star Dragon",
  7979. height: math.unit(800000, "parsecs")
  7980. },
  7981. {
  7982. name: "Godly",
  7983. height: math.unit(800, "teraparsecs")
  7984. },
  7985. ]
  7986. ))
  7987. characterMakers.push(() => makeCharacter(
  7988. { name: "Ky'owin" },
  7989. {
  7990. front: {
  7991. height: math.unit(6, "feet"),
  7992. weight: math.unit(150, "lb"),
  7993. name: "Front",
  7994. image: {
  7995. source: "./media/characters/ky'owin/front.svg",
  7996. extra: 3888 / 3068,
  7997. bottom: 0.015
  7998. }
  7999. },
  8000. },
  8001. [
  8002. {
  8003. name: "Normal",
  8004. height: math.unit(6 + 8 / 12, "feet")
  8005. },
  8006. {
  8007. name: "Large",
  8008. height: math.unit(68, "feet")
  8009. },
  8010. {
  8011. name: "Macro",
  8012. height: math.unit(132, "feet")
  8013. },
  8014. {
  8015. name: "Macro+",
  8016. height: math.unit(340, "feet")
  8017. },
  8018. {
  8019. name: "Macro++",
  8020. height: math.unit(680, "feet"),
  8021. default: true
  8022. },
  8023. {
  8024. name: "Megamacro",
  8025. height: math.unit(1, "mile")
  8026. },
  8027. {
  8028. name: "Megamacro+",
  8029. height: math.unit(10, "miles")
  8030. },
  8031. ]
  8032. ))
  8033. characterMakers.push(() => makeCharacter(
  8034. { name: "Mal" },
  8035. {
  8036. front: {
  8037. height: math.unit(4, "feet"),
  8038. weight: math.unit(50, "lb"),
  8039. name: "Front",
  8040. image: {
  8041. source: "./media/characters/mal/front.svg",
  8042. extra: 785 / 724,
  8043. bottom: 0.07
  8044. }
  8045. },
  8046. },
  8047. [
  8048. {
  8049. name: "Micro",
  8050. height: math.unit(4, "inches")
  8051. },
  8052. {
  8053. name: "Normal",
  8054. height: math.unit(4, "feet"),
  8055. default: true
  8056. },
  8057. {
  8058. name: "Macro",
  8059. height: math.unit(200, "feet")
  8060. },
  8061. ]
  8062. ))
  8063. characterMakers.push(() => makeCharacter(
  8064. { name: "Jordan Deware" },
  8065. {
  8066. front: {
  8067. height: math.unit(6, "feet"),
  8068. weight: math.unit(150, "lb"),
  8069. name: "Front",
  8070. image: {
  8071. source: "./media/characters/jordan-deware/front.svg",
  8072. extra: 1191 / 1012
  8073. }
  8074. },
  8075. },
  8076. [
  8077. {
  8078. name: "Nano",
  8079. height: math.unit(0.01, "mm")
  8080. },
  8081. {
  8082. name: "Minimicro",
  8083. height: math.unit(1, "mm")
  8084. },
  8085. {
  8086. name: "Micro",
  8087. height: math.unit(0.5, "inches")
  8088. },
  8089. {
  8090. name: "Normal",
  8091. height: math.unit(4, "feet"),
  8092. default: true
  8093. },
  8094. {
  8095. name: "Minimacro",
  8096. height: math.unit(40, "meters")
  8097. },
  8098. {
  8099. name: "Small Macro",
  8100. height: math.unit(400, "meters")
  8101. },
  8102. {
  8103. name: "Macro",
  8104. height: math.unit(4, "miles")
  8105. },
  8106. {
  8107. name: "Megamacro",
  8108. height: math.unit(40, "miles")
  8109. },
  8110. {
  8111. name: "Megamacro+",
  8112. height: math.unit(400, "miles")
  8113. },
  8114. {
  8115. name: "Gigamacro",
  8116. height: math.unit(400000, "miles")
  8117. },
  8118. ]
  8119. ))
  8120. characterMakers.push(() => makeCharacter(
  8121. { name: "Kimiko" },
  8122. {
  8123. side: {
  8124. height: math.unit(6, "feet"),
  8125. weight: math.unit(150, "lb"),
  8126. name: "Side",
  8127. image: {
  8128. source: "./media/characters/kimiko/side.svg",
  8129. extra: 600 / 358
  8130. }
  8131. },
  8132. },
  8133. [
  8134. {
  8135. name: "Normal",
  8136. height: math.unit(15, "feet"),
  8137. default: true
  8138. },
  8139. {
  8140. name: "Macro",
  8141. height: math.unit(220, "feet")
  8142. },
  8143. {
  8144. name: "Macro+",
  8145. height: math.unit(1450, "feet")
  8146. },
  8147. {
  8148. name: "Megamacro",
  8149. height: math.unit(11500, "feet")
  8150. },
  8151. {
  8152. name: "Gigamacro",
  8153. height: math.unit(9500, "miles")
  8154. },
  8155. {
  8156. name: "Teramacro",
  8157. height: math.unit(2208005005, "miles")
  8158. },
  8159. {
  8160. name: "Examacro",
  8161. height: math.unit(2750, "parsecs")
  8162. },
  8163. {
  8164. name: "Zettamacro",
  8165. height: math.unit(101500, "parsecs")
  8166. },
  8167. ]
  8168. ))
  8169. characterMakers.push(() => makeCharacter(
  8170. { name: "Andrew Sleepy" },
  8171. {
  8172. front: {
  8173. height: math.unit(6, "feet"),
  8174. weight: math.unit(70, "kg"),
  8175. name: "Front",
  8176. image: {
  8177. source: "./media/characters/andrew-sleepy/front.svg"
  8178. }
  8179. },
  8180. side: {
  8181. height: math.unit(6, "feet"),
  8182. weight: math.unit(70, "kg"),
  8183. name: "Side",
  8184. image: {
  8185. source: "./media/characters/andrew-sleepy/side.svg"
  8186. }
  8187. },
  8188. },
  8189. [
  8190. {
  8191. name: "Micro",
  8192. height: math.unit(1, "mm"),
  8193. default: true
  8194. },
  8195. ]
  8196. ))
  8197. characterMakers.push(() => makeCharacter(
  8198. { name: "Judio" },
  8199. {
  8200. front: {
  8201. height: math.unit(6, "feet"),
  8202. weight: math.unit(150, "lb"),
  8203. name: "Front",
  8204. image: {
  8205. source: "./media/characters/judio/front.svg",
  8206. extra: 1258 / 1110
  8207. }
  8208. },
  8209. },
  8210. [
  8211. {
  8212. name: "Normal",
  8213. height: math.unit(5 + 6 / 12, "feet")
  8214. },
  8215. {
  8216. name: "Macro",
  8217. height: math.unit(1000, "feet"),
  8218. default: true
  8219. },
  8220. {
  8221. name: "Megamacro",
  8222. height: math.unit(10, "miles")
  8223. },
  8224. ]
  8225. ))
  8226. characterMakers.push(() => makeCharacter(
  8227. { name: "Nomaxice" },
  8228. {
  8229. front: {
  8230. height: math.unit(6, "feet"),
  8231. weight: math.unit(68, "kg"),
  8232. name: "Front",
  8233. image: {
  8234. source: "./media/characters/nomaxice/front.svg",
  8235. extra: 1498 / 1073,
  8236. bottom: 0.075
  8237. }
  8238. },
  8239. foot: {
  8240. height: math.unit(1.1, "feet"),
  8241. name: "Foot",
  8242. image: {
  8243. source: "./media/characters/nomaxice/foot.svg"
  8244. }
  8245. },
  8246. },
  8247. [
  8248. {
  8249. name: "Micro",
  8250. height: math.unit(8, "cm")
  8251. },
  8252. {
  8253. name: "Norm",
  8254. height: math.unit(1.82, "m")
  8255. },
  8256. {
  8257. name: "Norm+",
  8258. height: math.unit(8.8, "feet")
  8259. },
  8260. {
  8261. name: "Big",
  8262. height: math.unit(8, "meters"),
  8263. default: true
  8264. },
  8265. {
  8266. name: "Macro",
  8267. height: math.unit(18, "meters")
  8268. },
  8269. {
  8270. name: "Macro+",
  8271. height: math.unit(88, "meters")
  8272. },
  8273. ]
  8274. ))
  8275. characterMakers.push(() => makeCharacter(
  8276. { name: "Dydros" },
  8277. {
  8278. front: {
  8279. height: math.unit(12, "feet"),
  8280. weight: math.unit(1.5, "tons"),
  8281. name: "Front",
  8282. image: {
  8283. source: "./media/characters/dydros/front.svg",
  8284. extra: 863 / 800,
  8285. bottom: 0.015
  8286. }
  8287. },
  8288. back: {
  8289. height: math.unit(12, "feet"),
  8290. weight: math.unit(1.5, "tons"),
  8291. name: "Back",
  8292. image: {
  8293. source: "./media/characters/dydros/back.svg",
  8294. extra: 900 / 843,
  8295. bottom: 0.005
  8296. }
  8297. },
  8298. },
  8299. [
  8300. {
  8301. name: "Normal",
  8302. height: math.unit(12, "feet"),
  8303. default: true
  8304. },
  8305. ]
  8306. ))
  8307. characterMakers.push(() => makeCharacter(
  8308. { name: "Riggi" },
  8309. {
  8310. front: {
  8311. height: math.unit(6, "feet"),
  8312. weight: math.unit(100, "kg"),
  8313. name: "Front",
  8314. image: {
  8315. source: "./media/characters/riggi/front.svg",
  8316. extra: 5787 / 5303
  8317. }
  8318. },
  8319. hyper: {
  8320. height: math.unit(6 * 5 / 3, "feet"),
  8321. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8322. name: "Hyper",
  8323. image: {
  8324. source: "./media/characters/riggi/hyper.svg",
  8325. extra: 3595 / 3485
  8326. }
  8327. },
  8328. },
  8329. [
  8330. {
  8331. name: "Small Macro",
  8332. height: math.unit(50, "feet")
  8333. },
  8334. {
  8335. name: "Default",
  8336. height: math.unit(200, "feet"),
  8337. default: true
  8338. },
  8339. {
  8340. name: "Loom",
  8341. height: math.unit(10000, "feet")
  8342. },
  8343. {
  8344. name: "Cruising Altitude",
  8345. height: math.unit(30000, "feet")
  8346. },
  8347. {
  8348. name: "Megamacro",
  8349. height: math.unit(100, "miles")
  8350. },
  8351. {
  8352. name: "Continent Sized",
  8353. height: math.unit(2800, "miles")
  8354. },
  8355. {
  8356. name: "Earth Sized",
  8357. height: math.unit(8000, "miles")
  8358. },
  8359. ]
  8360. ))
  8361. characterMakers.push(() => makeCharacter(
  8362. { name: "Alexi" },
  8363. {
  8364. front: {
  8365. height: math.unit(6, "feet"),
  8366. weight: math.unit(250, "lb"),
  8367. name: "Front",
  8368. image: {
  8369. source: "./media/characters/alexi/front.svg",
  8370. extra: 3483 / 3291,
  8371. bottom: 0.04
  8372. }
  8373. },
  8374. back: {
  8375. height: math.unit(6, "feet"),
  8376. weight: math.unit(250, "lb"),
  8377. name: "Back",
  8378. image: {
  8379. source: "./media/characters/alexi/back.svg",
  8380. extra: 3533 / 3356,
  8381. bottom: 0.021
  8382. }
  8383. },
  8384. frontTransformed: {
  8385. height: math.unit(12.5, "feet"),
  8386. weight: math.unit(4000, "lb"),
  8387. name: "Front (Transformed)",
  8388. image: {
  8389. source: "./media/characters/alexi/front-transformed.svg",
  8390. extra: 5345 / 5100,
  8391. bottom: 0.03
  8392. }
  8393. },
  8394. },
  8395. [
  8396. {
  8397. name: "Normal",
  8398. height: math.unit(3, "meters"),
  8399. default: true
  8400. },
  8401. {
  8402. name: "Minimacro",
  8403. height: math.unit(30, "meters")
  8404. },
  8405. {
  8406. name: "Macro",
  8407. height: math.unit(500, "meters")
  8408. },
  8409. {
  8410. name: "Megamacro",
  8411. height: math.unit(9000, "km")
  8412. },
  8413. {
  8414. name: "Teramacro",
  8415. height: math.unit(384000, "km")
  8416. },
  8417. ]
  8418. ))
  8419. characterMakers.push(() => makeCharacter(
  8420. { name: "Kayroo" },
  8421. {
  8422. front: {
  8423. height: math.unit(6, "feet"),
  8424. weight: math.unit(150, "lb"),
  8425. name: "Front",
  8426. image: {
  8427. source: "./media/characters/kayroo/front.svg",
  8428. extra: 1153 / 1038,
  8429. bottom: 0.06
  8430. }
  8431. },
  8432. foot: {
  8433. height: math.unit(6, "feet"),
  8434. weight: math.unit(150, "lb"),
  8435. name: "Foot",
  8436. image: {
  8437. source: "./media/characters/kayroo/foot.svg"
  8438. }
  8439. },
  8440. },
  8441. [
  8442. {
  8443. name: "Normal",
  8444. height: math.unit(8, "feet"),
  8445. default: true
  8446. },
  8447. {
  8448. name: "Minimacro",
  8449. height: math.unit(250, "feet")
  8450. },
  8451. {
  8452. name: "Macro",
  8453. height: math.unit(2800, "feet")
  8454. },
  8455. {
  8456. name: "Megamacro",
  8457. height: math.unit(5200, "feet")
  8458. },
  8459. {
  8460. name: "Gigamacro",
  8461. height: math.unit(27000, "feet")
  8462. },
  8463. {
  8464. name: "Omega",
  8465. height: math.unit(45000, "feet")
  8466. },
  8467. ]
  8468. ))
  8469. characterMakers.push(() => makeCharacter(
  8470. { name: "Rhys" },
  8471. {
  8472. front: {
  8473. height: math.unit(18, "feet"),
  8474. weight: math.unit(5800, "lb"),
  8475. name: "Front",
  8476. image: {
  8477. source: "./media/characters/rhys/front.svg",
  8478. extra: 3386 / 3090,
  8479. bottom: 0.07
  8480. }
  8481. },
  8482. },
  8483. [
  8484. {
  8485. name: "Normal",
  8486. height: math.unit(18, "feet"),
  8487. default: true
  8488. },
  8489. {
  8490. name: "Working Size",
  8491. height: math.unit(200, "feet")
  8492. },
  8493. {
  8494. name: "Demolition Size",
  8495. height: math.unit(2000, "feet")
  8496. },
  8497. {
  8498. name: "Maximum Licensed Size",
  8499. height: math.unit(5, "miles")
  8500. },
  8501. {
  8502. name: "Maximum Observed Size",
  8503. height: math.unit(10, "yottameters")
  8504. },
  8505. ]
  8506. ))
  8507. characterMakers.push(() => makeCharacter(
  8508. { name: "Toto" },
  8509. {
  8510. front: {
  8511. height: math.unit(6, "feet"),
  8512. weight: math.unit(250, "lb"),
  8513. name: "Front",
  8514. image: {
  8515. source: "./media/characters/toto/front.svg",
  8516. extra: 527 / 479,
  8517. bottom: 0.05
  8518. }
  8519. },
  8520. },
  8521. [
  8522. {
  8523. name: "Micro",
  8524. height: math.unit(3, "feet")
  8525. },
  8526. {
  8527. name: "Normal",
  8528. height: math.unit(10, "feet")
  8529. },
  8530. {
  8531. name: "Macro",
  8532. height: math.unit(150, "feet"),
  8533. default: true
  8534. },
  8535. {
  8536. name: "Megamacro",
  8537. height: math.unit(1200, "feet")
  8538. },
  8539. ]
  8540. ))
  8541. characterMakers.push(() => makeCharacter(
  8542. { name: "King" },
  8543. {
  8544. back: {
  8545. height: math.unit(6, "feet"),
  8546. weight: math.unit(150, "lb"),
  8547. name: "Back",
  8548. image: {
  8549. source: "./media/characters/king/back.svg"
  8550. }
  8551. },
  8552. },
  8553. [
  8554. {
  8555. name: "Micro",
  8556. height: math.unit(2, "inches")
  8557. },
  8558. {
  8559. name: "Normal",
  8560. height: math.unit(8, "feet")
  8561. },
  8562. {
  8563. name: "Macro",
  8564. height: math.unit(200, "feet"),
  8565. default: true
  8566. },
  8567. {
  8568. name: "Megamacro",
  8569. height: math.unit(50, "miles")
  8570. },
  8571. ]
  8572. ))
  8573. characterMakers.push(() => makeCharacter(
  8574. { name: "Cordite" },
  8575. {
  8576. anthro: {
  8577. height: math.unit(6 + 5 / 12, "feet"),
  8578. weight: math.unit(280, "lb"),
  8579. name: "Anthro",
  8580. image: {
  8581. source: "./media/characters/cordite/anthro.svg",
  8582. extra: 1986 / 1905,
  8583. bottom: 0.025
  8584. }
  8585. },
  8586. feral: {
  8587. height: math.unit(2, "feet"),
  8588. weight: math.unit(90, "lb"),
  8589. name: "Feral",
  8590. image: {
  8591. source: "./media/characters/cordite/feral.svg",
  8592. extra: 1260 / 755,
  8593. bottom: 0.05
  8594. }
  8595. },
  8596. },
  8597. [
  8598. {
  8599. name: "Normal",
  8600. height: math.unit(6 + 5 / 12, "feet"),
  8601. default: true
  8602. },
  8603. ]
  8604. ))
  8605. characterMakers.push(() => makeCharacter(
  8606. { name: "Pianostrong" },
  8607. {
  8608. front: {
  8609. height: math.unit(6, "feet"),
  8610. weight: math.unit(150, "lb"),
  8611. name: "Front",
  8612. image: {
  8613. source: "./media/characters/pianostrong/front.svg",
  8614. extra: 6577 / 6254,
  8615. bottom: 0.02
  8616. }
  8617. },
  8618. side: {
  8619. height: math.unit(6, "feet"),
  8620. weight: math.unit(150, "lb"),
  8621. name: "Side",
  8622. image: {
  8623. source: "./media/characters/pianostrong/side.svg",
  8624. extra: 6106 / 5730
  8625. }
  8626. },
  8627. back: {
  8628. height: math.unit(6, "feet"),
  8629. weight: math.unit(150, "lb"),
  8630. name: "Back",
  8631. image: {
  8632. source: "./media/characters/pianostrong/back.svg",
  8633. extra: 6085 / 5733,
  8634. bottom: 0.01
  8635. }
  8636. },
  8637. },
  8638. [
  8639. {
  8640. name: "Macro",
  8641. height: math.unit(100, "feet")
  8642. },
  8643. {
  8644. name: "Macro+",
  8645. height: math.unit(300, "feet"),
  8646. default: true
  8647. },
  8648. {
  8649. name: "Macro++",
  8650. height: math.unit(1000, "feet")
  8651. },
  8652. ]
  8653. ))
  8654. characterMakers.push(() => makeCharacter(
  8655. { name: "Kona" },
  8656. {
  8657. front: {
  8658. height: math.unit(6, "feet"),
  8659. weight: math.unit(150, "lb"),
  8660. name: "Front",
  8661. image: {
  8662. source: "./media/characters/kona/front.svg",
  8663. extra: 2960 / 2629,
  8664. bottom: 0.005
  8665. }
  8666. },
  8667. },
  8668. [
  8669. {
  8670. name: "Normal",
  8671. height: math.unit(11 + 8 / 12, "feet")
  8672. },
  8673. {
  8674. name: "Macro",
  8675. height: math.unit(850, "feet"),
  8676. default: true
  8677. },
  8678. {
  8679. name: "Macro+",
  8680. height: math.unit(1.5, "km"),
  8681. default: true
  8682. },
  8683. {
  8684. name: "Megamacro",
  8685. height: math.unit(80, "miles")
  8686. },
  8687. {
  8688. name: "Gigamacro",
  8689. height: math.unit(3500, "miles")
  8690. },
  8691. ]
  8692. ))
  8693. characterMakers.push(() => makeCharacter(
  8694. { name: "Levi" },
  8695. {
  8696. side: {
  8697. height: math.unit(1.9, "meters"),
  8698. weight: math.unit(326, "kg"),
  8699. name: "Side",
  8700. image: {
  8701. source: "./media/characters/levi/side.svg",
  8702. extra: 1704 / 1334,
  8703. bottom: 0.02
  8704. }
  8705. },
  8706. },
  8707. [
  8708. {
  8709. name: "Normal",
  8710. height: math.unit(1.9, "meters"),
  8711. default: true
  8712. },
  8713. {
  8714. name: "Macro",
  8715. height: math.unit(20, "meters")
  8716. },
  8717. {
  8718. name: "Macro+",
  8719. height: math.unit(200, "meters")
  8720. },
  8721. {
  8722. name: "Megamacro",
  8723. height: math.unit(2, "km")
  8724. },
  8725. {
  8726. name: "Megamacro+",
  8727. height: math.unit(20, "km")
  8728. },
  8729. {
  8730. name: "Gigamacro",
  8731. height: math.unit(2500, "km")
  8732. },
  8733. {
  8734. name: "Gigamacro+",
  8735. height: math.unit(120000, "km")
  8736. },
  8737. {
  8738. name: "Teramacro",
  8739. height: math.unit(7.77e6, "km")
  8740. },
  8741. ]
  8742. ))
  8743. characterMakers.push(() => makeCharacter(
  8744. { name: "BMC" },
  8745. {
  8746. front: {
  8747. height: math.unit(6 + 4 / 12, "feet"),
  8748. weight: math.unit(188, "lb"),
  8749. name: "Front",
  8750. image: {
  8751. source: "./media/characters/bmc/front.svg",
  8752. extra: 1067 / 1022,
  8753. bottom: 0.047
  8754. }
  8755. },
  8756. },
  8757. [
  8758. {
  8759. name: "Human-sized",
  8760. height: math.unit(6 + 4 / 12, "feet")
  8761. },
  8762. {
  8763. name: "Small",
  8764. height: math.unit(250, "feet")
  8765. },
  8766. {
  8767. name: "Normal",
  8768. height: math.unit(1250, "feet"),
  8769. default: true
  8770. },
  8771. {
  8772. name: "Good Day",
  8773. height: math.unit(88, "miles")
  8774. },
  8775. {
  8776. name: "Largest Measured Size",
  8777. height: math.unit(11.2e6, "lightyears")
  8778. },
  8779. ]
  8780. ))
  8781. characterMakers.push(() => makeCharacter(
  8782. { name: "Sven the Kaiju" },
  8783. {
  8784. front: {
  8785. height: math.unit(20, "feet"),
  8786. weight: math.unit(2016, "kg"),
  8787. name: "Front",
  8788. image: {
  8789. source: "./media/characters/sven-the-kaiju/front.svg",
  8790. extra: 1479 / 1449,
  8791. bottom: 0.05
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Fairy",
  8798. height: math.unit(6, "inches")
  8799. },
  8800. {
  8801. name: "Normal",
  8802. height: math.unit(20, "feet"),
  8803. default: true
  8804. },
  8805. {
  8806. name: "Rampage",
  8807. height: math.unit(200, "feet")
  8808. },
  8809. {
  8810. name: "Archfey Forest Guardian",
  8811. height: math.unit(1, "mile")
  8812. },
  8813. ]
  8814. ))
  8815. characterMakers.push(() => makeCharacter(
  8816. { name: "Marik" },
  8817. {
  8818. front: {
  8819. height: math.unit(4, "meters"),
  8820. weight: math.unit(2, "tons"),
  8821. name: "Front",
  8822. image: {
  8823. source: "./media/characters/marik/front.svg",
  8824. extra: 1057 / 1003,
  8825. bottom: 0.08
  8826. }
  8827. },
  8828. },
  8829. [
  8830. {
  8831. name: "Normal",
  8832. height: math.unit(4, "meters"),
  8833. default: true
  8834. },
  8835. {
  8836. name: "Macro",
  8837. height: math.unit(20, "meters")
  8838. },
  8839. {
  8840. name: "Megamacro",
  8841. height: math.unit(50, "km")
  8842. },
  8843. {
  8844. name: "Gigamacro",
  8845. height: math.unit(100, "km")
  8846. },
  8847. {
  8848. name: "Alpha Macro",
  8849. height: math.unit(7.88e7, "yottameters")
  8850. },
  8851. ]
  8852. ))
  8853. characterMakers.push(() => makeCharacter(
  8854. { name: "Mel" },
  8855. {
  8856. front: {
  8857. height: math.unit(6, "feet"),
  8858. weight: math.unit(110, "lb"),
  8859. name: "Front",
  8860. image: {
  8861. source: "./media/characters/mel/front.svg",
  8862. extra: 736 / 617,
  8863. bottom: 0.017
  8864. }
  8865. },
  8866. },
  8867. [
  8868. {
  8869. name: "Pico",
  8870. height: math.unit(3, "pm")
  8871. },
  8872. {
  8873. name: "Nano",
  8874. height: math.unit(3, "nm")
  8875. },
  8876. {
  8877. name: "Micro",
  8878. height: math.unit(0.3, "mm"),
  8879. default: true
  8880. },
  8881. {
  8882. name: "Micro+",
  8883. height: math.unit(3, "mm")
  8884. },
  8885. {
  8886. name: "Normal",
  8887. height: math.unit(5 + 10.5 / 12, "feet")
  8888. },
  8889. ]
  8890. ))
  8891. characterMakers.push(() => makeCharacter(
  8892. { name: "Lykonous" },
  8893. {
  8894. kaiju: {
  8895. height: math.unit(1.75, "meters"),
  8896. weight: math.unit(55, "kg"),
  8897. name: "Kaiju",
  8898. image: {
  8899. source: "./media/characters/lykonous/kaiju.svg",
  8900. extra: 1055 / 946,
  8901. bottom: 0.135
  8902. }
  8903. },
  8904. },
  8905. [
  8906. {
  8907. name: "Normal",
  8908. height: math.unit(2.5, "meters"),
  8909. default: true
  8910. },
  8911. {
  8912. name: "Kaiju Dragon",
  8913. height: math.unit(60, "meters")
  8914. },
  8915. {
  8916. name: "Mega Kaiju",
  8917. height: math.unit(120, "km")
  8918. },
  8919. {
  8920. name: "Giga Kaiju",
  8921. height: math.unit(200, "megameters")
  8922. },
  8923. {
  8924. name: "Terra Kaiju",
  8925. height: math.unit(400, "gigameters")
  8926. },
  8927. {
  8928. name: "Kaiju Dragon God",
  8929. height: math.unit(13000, "exaparsecs")
  8930. },
  8931. ]
  8932. ))
  8933. characterMakers.push(() => makeCharacter(
  8934. { name: "Blü" },
  8935. {
  8936. front: {
  8937. height: math.unit(6, "feet"),
  8938. weight: math.unit(150, "lb"),
  8939. name: "Front",
  8940. image: {
  8941. source: "./media/characters/blü/front.svg",
  8942. extra: 1883 / 1564,
  8943. bottom: 0.031
  8944. }
  8945. },
  8946. },
  8947. [
  8948. {
  8949. name: "Normal",
  8950. height: math.unit(13, "feet"),
  8951. default: true
  8952. },
  8953. {
  8954. name: "Big Boi",
  8955. height: math.unit(150, "meters")
  8956. },
  8957. {
  8958. name: "Mini Stomper",
  8959. height: math.unit(300, "meters")
  8960. },
  8961. {
  8962. name: "Macro",
  8963. height: math.unit(1000, "meters")
  8964. },
  8965. {
  8966. name: "Megamacro",
  8967. height: math.unit(11000, "meters")
  8968. },
  8969. {
  8970. name: "Gigamacro",
  8971. height: math.unit(11000, "km")
  8972. },
  8973. {
  8974. name: "Teramacro",
  8975. height: math.unit(420000, "km")
  8976. },
  8977. {
  8978. name: "Examacro",
  8979. height: math.unit(120, "parsecs")
  8980. },
  8981. {
  8982. name: "God Tho",
  8983. height: math.unit(98000000000, "parsecs")
  8984. },
  8985. ]
  8986. ))
  8987. characterMakers.push(() => makeCharacter(
  8988. { name: "Scales" },
  8989. {
  8990. taurFront: {
  8991. height: math.unit(6, "feet"),
  8992. weight: math.unit(200, "lb"),
  8993. name: "Taur (Front)",
  8994. image: {
  8995. source: "./media/characters/scales/taur-front.svg",
  8996. extra: 1,
  8997. bottom: 0.05
  8998. }
  8999. },
  9000. taurBack: {
  9001. height: math.unit(6, "feet"),
  9002. weight: math.unit(200, "lb"),
  9003. name: "Taur (Back)",
  9004. image: {
  9005. source: "./media/characters/scales/taur-back.svg",
  9006. extra: 1,
  9007. bottom: 0.08
  9008. }
  9009. },
  9010. anthro: {
  9011. height: math.unit(6 * 7 / 12, "feet"),
  9012. weight: math.unit(100, "lb"),
  9013. name: "Anthro",
  9014. image: {
  9015. source: "./media/characters/scales/anthro.svg",
  9016. extra: 1,
  9017. bottom: 0.06
  9018. }
  9019. },
  9020. },
  9021. [
  9022. {
  9023. name: "Normal",
  9024. height: math.unit(12, "feet"),
  9025. default: true
  9026. },
  9027. ]
  9028. ))
  9029. characterMakers.push(() => makeCharacter(
  9030. { name: "Koragos" },
  9031. {
  9032. front: {
  9033. height: math.unit(6, "feet"),
  9034. weight: math.unit(150, "lb"),
  9035. name: "Front",
  9036. image: {
  9037. source: "./media/characters/koragos/front.svg",
  9038. extra: 841 / 794,
  9039. bottom: 0.035
  9040. }
  9041. },
  9042. back: {
  9043. height: math.unit(6, "feet"),
  9044. weight: math.unit(150, "lb"),
  9045. name: "Back",
  9046. image: {
  9047. source: "./media/characters/koragos/back.svg",
  9048. extra: 841 / 810,
  9049. bottom: 0.022
  9050. }
  9051. },
  9052. },
  9053. [
  9054. {
  9055. name: "Normal",
  9056. height: math.unit(6 + 11 / 12, "feet"),
  9057. default: true
  9058. },
  9059. {
  9060. name: "Macro",
  9061. height: math.unit(490, "feet")
  9062. },
  9063. {
  9064. name: "Megamacro",
  9065. height: math.unit(10, "miles")
  9066. },
  9067. {
  9068. name: "Gigamacro",
  9069. height: math.unit(50, "miles")
  9070. },
  9071. ]
  9072. ))
  9073. characterMakers.push(() => makeCharacter(
  9074. { name: "Xylrem" },
  9075. {
  9076. front: {
  9077. height: math.unit(6, "feet"),
  9078. weight: math.unit(250, "lb"),
  9079. name: "Front",
  9080. image: {
  9081. source: "./media/characters/xylrem/front.svg",
  9082. extra: 3323 / 3050,
  9083. bottom: 0.065
  9084. }
  9085. },
  9086. },
  9087. [
  9088. {
  9089. name: "Micro",
  9090. height: math.unit(4, "feet")
  9091. },
  9092. {
  9093. name: "Normal",
  9094. height: math.unit(16, "feet"),
  9095. default: true
  9096. },
  9097. {
  9098. name: "Macro",
  9099. height: math.unit(2720, "feet")
  9100. },
  9101. {
  9102. name: "Megamacro",
  9103. height: math.unit(25000, "miles")
  9104. },
  9105. ]
  9106. ))
  9107. characterMakers.push(() => makeCharacter(
  9108. { name: "Ikideru" },
  9109. {
  9110. front: {
  9111. height: math.unit(8, "feet"),
  9112. weight: math.unit(250, "kg"),
  9113. name: "Front",
  9114. image: {
  9115. source: "./media/characters/ikideru/front.svg",
  9116. extra: 930 / 870,
  9117. bottom: 0.087
  9118. }
  9119. },
  9120. back: {
  9121. height: math.unit(8, "feet"),
  9122. weight: math.unit(250, "kg"),
  9123. name: "Back",
  9124. image: {
  9125. source: "./media/characters/ikideru/back.svg",
  9126. extra: 919 / 852,
  9127. bottom: 0.055
  9128. }
  9129. },
  9130. },
  9131. [
  9132. {
  9133. name: "Rare",
  9134. height: math.unit(8, "feet"),
  9135. default: true
  9136. },
  9137. {
  9138. name: "Playful Loom",
  9139. height: math.unit(80, "feet")
  9140. },
  9141. {
  9142. name: "City Leaner",
  9143. height: math.unit(230, "feet")
  9144. },
  9145. {
  9146. name: "Megamacro",
  9147. height: math.unit(2500, "feet")
  9148. },
  9149. {
  9150. name: "Gigamacro",
  9151. height: math.unit(26400, "feet")
  9152. },
  9153. {
  9154. name: "Tectonic Shifter",
  9155. height: math.unit(1.7, "megameters")
  9156. },
  9157. {
  9158. name: "Planet Carer",
  9159. height: math.unit(21, "megameters")
  9160. },
  9161. {
  9162. name: "God",
  9163. height: math.unit(11157.22, "parsecs")
  9164. },
  9165. ]
  9166. ))
  9167. characterMakers.push(() => makeCharacter(
  9168. { name: "Neo" },
  9169. {
  9170. front: {
  9171. height: math.unit(6, "feet"),
  9172. weight: math.unit(120, "lb"),
  9173. name: "Front",
  9174. image: {
  9175. source: "./media/characters/neo/front.svg"
  9176. }
  9177. },
  9178. },
  9179. [
  9180. {
  9181. name: "Micro",
  9182. height: math.unit(2, "inches"),
  9183. default: true
  9184. },
  9185. {
  9186. name: "Human Size",
  9187. height: math.unit(5 + 8 / 12, "feet")
  9188. },
  9189. ]
  9190. ))
  9191. characterMakers.push(() => makeCharacter(
  9192. { name: "Chauncey (Chantz)" },
  9193. {
  9194. front: {
  9195. height: math.unit(13 + 10 / 12, "feet"),
  9196. weight: math.unit(5320, "lb"),
  9197. name: "Front",
  9198. image: {
  9199. source: "./media/characters/chauncey-chantz/front.svg",
  9200. extra: 1587 / 1435,
  9201. bottom: 0.02
  9202. }
  9203. },
  9204. },
  9205. [
  9206. {
  9207. name: "Normal",
  9208. height: math.unit(13 + 10 / 12, "feet"),
  9209. default: true
  9210. },
  9211. {
  9212. name: "Macro",
  9213. height: math.unit(45, "feet")
  9214. },
  9215. {
  9216. name: "Megamacro",
  9217. height: math.unit(250, "miles")
  9218. },
  9219. {
  9220. name: "Planetary",
  9221. height: math.unit(10000, "miles")
  9222. },
  9223. {
  9224. name: "Galactic",
  9225. height: math.unit(40000, "parsecs")
  9226. },
  9227. {
  9228. name: "Universal",
  9229. height: math.unit(1, "yottameter")
  9230. },
  9231. ]
  9232. ))
  9233. characterMakers.push(() => makeCharacter(
  9234. { name: "Epifox" },
  9235. {
  9236. front: {
  9237. height: math.unit(6, "feet"),
  9238. weight: math.unit(150, "lb"),
  9239. name: "Front",
  9240. image: {
  9241. source: "./media/characters/epifox/front.svg",
  9242. extra: 1,
  9243. bottom: 0.075
  9244. }
  9245. },
  9246. },
  9247. [
  9248. {
  9249. name: "Micro",
  9250. height: math.unit(6, "inches")
  9251. },
  9252. {
  9253. name: "Normal",
  9254. height: math.unit(12, "feet"),
  9255. default: true
  9256. },
  9257. {
  9258. name: "Macro",
  9259. height: math.unit(3810, "feet")
  9260. },
  9261. {
  9262. name: "Megamacro",
  9263. height: math.unit(500, "miles")
  9264. },
  9265. ]
  9266. ))
  9267. characterMakers.push(() => makeCharacter(
  9268. { name: "Colin T." },
  9269. {
  9270. front: {
  9271. height: math.unit(1.8796, "m"),
  9272. weight: math.unit(230, "lb"),
  9273. name: "Front",
  9274. image: {
  9275. source: "./media/characters/colin-t/front.svg",
  9276. extra: 1272 / 1193,
  9277. bottom: 0.07
  9278. }
  9279. },
  9280. },
  9281. [
  9282. {
  9283. name: "Micro",
  9284. height: math.unit(0.571, "meters")
  9285. },
  9286. {
  9287. name: "Normal",
  9288. height: math.unit(1.8796, "meters"),
  9289. default: true
  9290. },
  9291. {
  9292. name: "Tall",
  9293. height: math.unit(4, "meters")
  9294. },
  9295. {
  9296. name: "Macro",
  9297. height: math.unit(67.241, "meters")
  9298. },
  9299. {
  9300. name: "Megamacro",
  9301. height: math.unit(371.856, "meters")
  9302. },
  9303. {
  9304. name: "Planetary",
  9305. height: math.unit(12631.5689, "km")
  9306. },
  9307. ]
  9308. ))
  9309. characterMakers.push(() => makeCharacter(
  9310. { name: "Matvei" },
  9311. {
  9312. front: {
  9313. height: math.unit(1.85, "meters"),
  9314. weight: math.unit(80, "kg"),
  9315. name: "Front",
  9316. image: {
  9317. source: "./media/characters/matvei/front.svg",
  9318. extra: 614 / 594,
  9319. bottom: 0.01
  9320. }
  9321. },
  9322. },
  9323. [
  9324. {
  9325. name: "Normal",
  9326. height: math.unit(1.85, "meters"),
  9327. default: true
  9328. },
  9329. ]
  9330. ))
  9331. characterMakers.push(() => makeCharacter(
  9332. { name: "Quincy" },
  9333. {
  9334. front: {
  9335. height: math.unit(5 + 9 / 12, "feet"),
  9336. weight: math.unit(70, "lb"),
  9337. name: "Front",
  9338. image: {
  9339. source: "./media/characters/quincy/front.svg",
  9340. extra: 3041 / 2751
  9341. }
  9342. },
  9343. back: {
  9344. height: math.unit(5 + 9 / 12, "feet"),
  9345. weight: math.unit(70, "lb"),
  9346. name: "Back",
  9347. image: {
  9348. source: "./media/characters/quincy/back.svg",
  9349. extra: 3041 / 2751
  9350. }
  9351. },
  9352. flying: {
  9353. height: math.unit(5 + 4 / 12, "feet"),
  9354. weight: math.unit(70, "lb"),
  9355. name: "Flying",
  9356. image: {
  9357. source: "./media/characters/quincy/flying.svg",
  9358. extra: 1044 / 930
  9359. }
  9360. },
  9361. },
  9362. [
  9363. {
  9364. name: "Micro",
  9365. height: math.unit(3, "cm")
  9366. },
  9367. {
  9368. name: "Normal",
  9369. height: math.unit(5 + 9 / 12, "feet")
  9370. },
  9371. {
  9372. name: "Macro",
  9373. height: math.unit(200, "meters"),
  9374. default: true
  9375. },
  9376. {
  9377. name: "Megamacro",
  9378. height: math.unit(1000, "meters")
  9379. },
  9380. ]
  9381. ))
  9382. characterMakers.push(() => makeCharacter(
  9383. { name: "Vanrel" },
  9384. {
  9385. front: {
  9386. height: math.unit(4 + 7 / 12, "feet"),
  9387. weight: math.unit(150, "lb"),
  9388. name: "Front",
  9389. image: {
  9390. source: "./media/characters/vanrel/front.svg",
  9391. extra: 1,
  9392. bottom: 0.02
  9393. }
  9394. },
  9395. elemental: {
  9396. height: math.unit(4 + 2 / 12, "feet"),
  9397. weight: math.unit(150, "lb"),
  9398. name: "Elemental",
  9399. image: {
  9400. source: "./media/characters/vanrel/elemental.svg"
  9401. }
  9402. },
  9403. side: {
  9404. height: math.unit(4 + 7 / 12, "feet"),
  9405. weight: math.unit(150, "lb"),
  9406. name: "Side",
  9407. image: {
  9408. source: "./media/characters/vanrel/side.svg",
  9409. extra: 1,
  9410. bottom: 0.025
  9411. }
  9412. },
  9413. tome: {
  9414. height: math.unit(1.35, "feet"),
  9415. weight: math.unit(10, "lb"),
  9416. name: "Vanrel's Tome",
  9417. rename: true,
  9418. image: {
  9419. source: "./media/characters/vanrel/tome.svg"
  9420. }
  9421. },
  9422. beans: {
  9423. height: math.unit(0.89, "feet"),
  9424. name: "Beans",
  9425. image: {
  9426. source: "./media/characters/vanrel/beans.svg"
  9427. }
  9428. },
  9429. },
  9430. [
  9431. {
  9432. name: "Normal",
  9433. height: math.unit(4 + 7 / 12, "feet"),
  9434. default: true
  9435. },
  9436. ]
  9437. ))
  9438. characterMakers.push(() => makeCharacter(
  9439. { name: "Kuiper Vanrel" },
  9440. {
  9441. front: {
  9442. height: math.unit(7 + 5 / 12, "feet"),
  9443. weight: math.unit(150, "lb"),
  9444. name: "Front",
  9445. image: {
  9446. source: "./media/characters/kuiper-vanrel/front.svg",
  9447. extra: 1118 / 1068,
  9448. bottom: 0.09
  9449. }
  9450. },
  9451. foot: {
  9452. height: math.unit(0.55, "meters"),
  9453. name: "Foot",
  9454. image: {
  9455. source: "./media/characters/kuiper-vanrel/foot.svg",
  9456. }
  9457. },
  9458. },
  9459. [
  9460. {
  9461. name: "Normal",
  9462. height: math.unit(7 + 5 / 12, "feet"),
  9463. default: true
  9464. },
  9465. ]
  9466. ))
  9467. characterMakers.push(() => makeCharacter(
  9468. { name: "Keset Vanrel" },
  9469. {
  9470. front: {
  9471. height: math.unit(8 + 5 / 12, "feet"),
  9472. weight: math.unit(150, "lb"),
  9473. name: "Front",
  9474. image: {
  9475. source: "./media/characters/keset-vanrel/front.svg",
  9476. extra: 1150 / 1084,
  9477. bottom: 0.05
  9478. }
  9479. },
  9480. hand: {
  9481. height: math.unit(0.6, "meters"),
  9482. name: "Hand",
  9483. image: {
  9484. source: "./media/characters/keset-vanrel/hand.svg"
  9485. }
  9486. },
  9487. foot: {
  9488. height: math.unit(0.94978, "meters"),
  9489. name: "Foot",
  9490. image: {
  9491. source: "./media/characters/keset-vanrel/foot.svg"
  9492. }
  9493. },
  9494. },
  9495. [
  9496. {
  9497. name: "Normal",
  9498. height: math.unit(8 + 5 / 12, "feet"),
  9499. default: true
  9500. },
  9501. ]
  9502. ))
  9503. characterMakers.push(() => makeCharacter(
  9504. { name: "Neos" },
  9505. {
  9506. front: {
  9507. height: math.unit(6, "feet"),
  9508. weight: math.unit(150, "lb"),
  9509. name: "Front",
  9510. image: {
  9511. source: "./media/characters/neos/front.svg",
  9512. extra: 1696 / 992,
  9513. bottom: 0.14
  9514. }
  9515. },
  9516. },
  9517. [
  9518. {
  9519. name: "Normal",
  9520. height: math.unit(54, "cm"),
  9521. default: true
  9522. },
  9523. {
  9524. name: "Macro",
  9525. height: math.unit(100, "m")
  9526. },
  9527. {
  9528. name: "Megamacro",
  9529. height: math.unit(10, "km")
  9530. },
  9531. {
  9532. name: "Megamacro+",
  9533. height: math.unit(100, "km")
  9534. },
  9535. {
  9536. name: "Gigamacro",
  9537. height: math.unit(100, "Mm")
  9538. },
  9539. {
  9540. name: "Teramacro",
  9541. height: math.unit(100, "Gm")
  9542. },
  9543. {
  9544. name: "Examacro",
  9545. height: math.unit(100, "Em")
  9546. },
  9547. {
  9548. name: "Godly",
  9549. height: math.unit(10000, "Ym")
  9550. },
  9551. {
  9552. name: "Beyond Godly",
  9553. height: math.unit(10000000, "Ym")
  9554. },
  9555. ]
  9556. ))
  9557. characterMakers.push(() => makeCharacter(
  9558. { name: "Sammy Mouse" },
  9559. {
  9560. feminine: {
  9561. height: math.unit(5, "feet"),
  9562. weight: math.unit(100, "lb"),
  9563. name: "Feminine",
  9564. image: {
  9565. source: "./media/characters/sammy-mouse/feminine.svg",
  9566. extra: 2526 / 2425,
  9567. bottom: 0.123
  9568. }
  9569. },
  9570. masculine: {
  9571. height: math.unit(5, "feet"),
  9572. weight: math.unit(100, "lb"),
  9573. name: "Masculine",
  9574. image: {
  9575. source: "./media/characters/sammy-mouse/masculine.svg",
  9576. extra: 2526 / 2425,
  9577. bottom: 0.123
  9578. }
  9579. },
  9580. },
  9581. [
  9582. {
  9583. name: "Micro",
  9584. height: math.unit(5, "inches")
  9585. },
  9586. {
  9587. name: "Normal",
  9588. height: math.unit(5, "feet"),
  9589. default: true
  9590. },
  9591. {
  9592. name: "Macro",
  9593. height: math.unit(60, "feet")
  9594. },
  9595. ]
  9596. ))
  9597. characterMakers.push(() => makeCharacter(
  9598. { name: "Kole" },
  9599. {
  9600. front: {
  9601. height: math.unit(4, "feet"),
  9602. weight: math.unit(50, "lb"),
  9603. name: "Front",
  9604. image: {
  9605. source: "./media/characters/kole/front.svg",
  9606. extra: 1423 / 1303,
  9607. bottom: 0.025
  9608. }
  9609. },
  9610. back: {
  9611. height: math.unit(4, "feet"),
  9612. weight: math.unit(50, "lb"),
  9613. name: "Back",
  9614. image: {
  9615. source: "./media/characters/kole/back.svg",
  9616. extra: 1426 / 1280,
  9617. bottom: 0.02
  9618. }
  9619. },
  9620. },
  9621. [
  9622. {
  9623. name: "Normal",
  9624. height: math.unit(4, "feet"),
  9625. default: true
  9626. },
  9627. ]
  9628. ))
  9629. characterMakers.push(() => makeCharacter(
  9630. { name: "Rufran" },
  9631. {
  9632. front: {
  9633. height: math.unit(2 + 6 / 12, "feet"),
  9634. weight: math.unit(20, "lb"),
  9635. name: "Front",
  9636. image: {
  9637. source: "./media/characters/rufran/front.svg",
  9638. extra: 2041 / 1839,
  9639. bottom: 0.055
  9640. }
  9641. },
  9642. back: {
  9643. height: math.unit(2 + 6 / 12, "feet"),
  9644. weight: math.unit(20, "lb"),
  9645. name: "Back",
  9646. image: {
  9647. source: "./media/characters/rufran/back.svg",
  9648. extra: 2054 / 1839,
  9649. bottom: 0.01
  9650. }
  9651. },
  9652. hand: {
  9653. height: math.unit(0.2166, "meters"),
  9654. name: "Hand",
  9655. image: {
  9656. source: "./media/characters/rufran/hand.svg"
  9657. }
  9658. },
  9659. foot: {
  9660. height: math.unit(0.185, "meters"),
  9661. name: "Foot",
  9662. image: {
  9663. source: "./media/characters/rufran/foot.svg"
  9664. }
  9665. },
  9666. },
  9667. [
  9668. {
  9669. name: "Micro",
  9670. height: math.unit(1, "inch")
  9671. },
  9672. {
  9673. name: "Normal",
  9674. height: math.unit(2 + 6 / 12, "feet"),
  9675. default: true
  9676. },
  9677. {
  9678. name: "Big",
  9679. height: math.unit(60, "feet")
  9680. },
  9681. {
  9682. name: "Macro",
  9683. height: math.unit(325, "feet")
  9684. },
  9685. ]
  9686. ))
  9687. characterMakers.push(() => makeCharacter(
  9688. { name: "Chip" },
  9689. {
  9690. front: {
  9691. height: math.unit(0.3, "meters"),
  9692. weight: math.unit(3.5, "kg"),
  9693. name: "Front",
  9694. image: {
  9695. source: "./media/characters/chip/front.svg",
  9696. extra: 748 / 674
  9697. }
  9698. },
  9699. },
  9700. [
  9701. {
  9702. name: "Micro",
  9703. height: math.unit(1, "inch"),
  9704. default: true
  9705. },
  9706. ]
  9707. ))
  9708. characterMakers.push(() => makeCharacter(
  9709. { name: "Torvid" },
  9710. {
  9711. side: {
  9712. height: math.unit(2.3, "meters"),
  9713. weight: math.unit(3500, "lb"),
  9714. name: "Side",
  9715. image: {
  9716. source: "./media/characters/torvid/side.svg",
  9717. extra: 1972 / 722,
  9718. bottom: 0.035
  9719. }
  9720. },
  9721. },
  9722. [
  9723. {
  9724. name: "Normal",
  9725. height: math.unit(2.3, "meters"),
  9726. default: true
  9727. },
  9728. ]
  9729. ))
  9730. characterMakers.push(() => makeCharacter(
  9731. { name: "Susan" },
  9732. {
  9733. front: {
  9734. height: math.unit(2, "meters"),
  9735. weight: math.unit(150.5, "kg"),
  9736. name: "Front",
  9737. image: {
  9738. source: "./media/characters/susan/front.svg",
  9739. extra: 693 / 635,
  9740. bottom: 0.05
  9741. }
  9742. },
  9743. },
  9744. [
  9745. {
  9746. name: "Megamacro",
  9747. height: math.unit(505, "miles"),
  9748. default: true
  9749. },
  9750. ]
  9751. ))
  9752. characterMakers.push(() => makeCharacter(
  9753. { name: "Raindrops" },
  9754. {
  9755. front: {
  9756. height: math.unit(6, "feet"),
  9757. weight: math.unit(150, "lb"),
  9758. name: "Front",
  9759. image: {
  9760. source: "./media/characters/raindrops/front.svg",
  9761. extra: 2655 / 2461,
  9762. bottom: 0.02
  9763. }
  9764. },
  9765. back: {
  9766. height: math.unit(6, "feet"),
  9767. weight: math.unit(150, "lb"),
  9768. name: "Back",
  9769. image: {
  9770. source: "./media/characters/raindrops/back.svg",
  9771. extra: 2574 / 2400,
  9772. bottom: 0.03
  9773. }
  9774. },
  9775. },
  9776. [
  9777. {
  9778. name: "Micro",
  9779. height: math.unit(6, "inches")
  9780. },
  9781. {
  9782. name: "Normal",
  9783. height: math.unit(6 + 2 / 12, "feet")
  9784. },
  9785. {
  9786. name: "Macro",
  9787. height: math.unit(131, "feet"),
  9788. default: true
  9789. },
  9790. {
  9791. name: "Megamacro",
  9792. height: math.unit(15, "miles")
  9793. },
  9794. {
  9795. name: "Gigamacro",
  9796. height: math.unit(4000, "miles")
  9797. },
  9798. {
  9799. name: "Teramacro",
  9800. height: math.unit(315000, "miles")
  9801. },
  9802. ]
  9803. ))
  9804. characterMakers.push(() => makeCharacter(
  9805. { name: "Tezwa" },
  9806. {
  9807. front: {
  9808. height: math.unit(2.794, "meters"),
  9809. weight: math.unit(325, "kg"),
  9810. name: "Front",
  9811. image: {
  9812. source: "./media/characters/tezwa/front.svg",
  9813. extra: 2083 / 1906,
  9814. bottom: 0.031
  9815. }
  9816. },
  9817. foot: {
  9818. height: math.unit(0.687, "meters"),
  9819. name: "Foot",
  9820. image: {
  9821. source: "./media/characters/tezwa/foot.svg"
  9822. }
  9823. },
  9824. },
  9825. [
  9826. {
  9827. name: "Normal",
  9828. height: math.unit(9 + 2 / 12, "feet"),
  9829. default: true
  9830. },
  9831. ]
  9832. ))
  9833. characterMakers.push(() => makeCharacter(
  9834. { name: "Typhus" },
  9835. {
  9836. front: {
  9837. height: math.unit(58, "feet"),
  9838. weight: math.unit(89000, "lb"),
  9839. name: "Front",
  9840. image: {
  9841. source: "./media/characters/typhus/front.svg",
  9842. extra: 816 / 800,
  9843. bottom: 0.065
  9844. }
  9845. },
  9846. },
  9847. [
  9848. {
  9849. name: "Macro",
  9850. height: math.unit(58, "feet"),
  9851. default: true
  9852. },
  9853. ]
  9854. ))
  9855. characterMakers.push(() => makeCharacter(
  9856. { name: "Lyra Von Wulf" },
  9857. {
  9858. front: {
  9859. height: math.unit(12, "feet"),
  9860. weight: math.unit(6, "tonnes"),
  9861. name: "Front",
  9862. image: {
  9863. source: "./media/characters/lyra-von-wulf/front.svg",
  9864. extra: 1,
  9865. bottom: 0.10
  9866. }
  9867. },
  9868. frontMecha: {
  9869. height: math.unit(12, "feet"),
  9870. weight: math.unit(12, "tonnes"),
  9871. name: "Front (Mecha)",
  9872. image: {
  9873. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  9874. extra: 1,
  9875. bottom: 0.042
  9876. }
  9877. },
  9878. maw: {
  9879. height: math.unit(2.2, "feet"),
  9880. name: "Maw",
  9881. image: {
  9882. source: "./media/characters/lyra-von-wulf/maw.svg"
  9883. }
  9884. },
  9885. },
  9886. [
  9887. {
  9888. name: "Normal",
  9889. height: math.unit(12, "feet"),
  9890. default: true
  9891. },
  9892. {
  9893. name: "Classic",
  9894. height: math.unit(50, "feet")
  9895. },
  9896. {
  9897. name: "Macro",
  9898. height: math.unit(500, "feet")
  9899. },
  9900. {
  9901. name: "Megamacro",
  9902. height: math.unit(1, "mile")
  9903. },
  9904. {
  9905. name: "Gigamacro",
  9906. height: math.unit(400, "miles")
  9907. },
  9908. {
  9909. name: "Teramacro",
  9910. height: math.unit(22000, "miles")
  9911. },
  9912. {
  9913. name: "Solarmacro",
  9914. height: math.unit(8600000, "miles")
  9915. },
  9916. {
  9917. name: "Galactic",
  9918. height: math.unit(1057000, "lightyears")
  9919. },
  9920. ]
  9921. ))
  9922. characterMakers.push(() => makeCharacter(
  9923. { name: "Dixon" },
  9924. {
  9925. front: {
  9926. height: math.unit(6 + 10 / 12, "feet"),
  9927. weight: math.unit(150, "lb"),
  9928. name: "Front",
  9929. image: {
  9930. source: "./media/characters/dixon/front.svg",
  9931. extra: 3361 / 3209,
  9932. bottom: 0.01
  9933. }
  9934. },
  9935. },
  9936. [
  9937. {
  9938. name: "Normal",
  9939. height: math.unit(6 + 10 / 12, "feet"),
  9940. default: true
  9941. },
  9942. {
  9943. name: "Big",
  9944. height: math.unit(12, "meters")
  9945. },
  9946. {
  9947. name: "Macro",
  9948. height: math.unit(500, "meters")
  9949. },
  9950. {
  9951. name: "Megamacro",
  9952. height: math.unit(2, "km")
  9953. },
  9954. ]
  9955. ))
  9956. characterMakers.push(() => makeCharacter(
  9957. { name: "Kauko" },
  9958. {
  9959. front: {
  9960. height: math.unit(185, "cm"),
  9961. weight: math.unit(68, "kg"),
  9962. name: "Front",
  9963. image: {
  9964. source: "./media/characters/kauko/front.svg",
  9965. extra: 1455 / 1421,
  9966. bottom: 0.03
  9967. }
  9968. },
  9969. back: {
  9970. height: math.unit(185, "cm"),
  9971. weight: math.unit(68, "kg"),
  9972. name: "Back",
  9973. image: {
  9974. source: "./media/characters/kauko/back.svg",
  9975. extra: 1455 / 1421,
  9976. bottom: 0.004
  9977. }
  9978. },
  9979. },
  9980. [
  9981. {
  9982. name: "Normal",
  9983. height: math.unit(185, "cm"),
  9984. default: true
  9985. },
  9986. ]
  9987. ))
  9988. characterMakers.push(() => makeCharacter(
  9989. { name: "Varg" },
  9990. {
  9991. front: {
  9992. height: math.unit(6, "feet"),
  9993. weight: math.unit(150, "kg"),
  9994. name: "Front",
  9995. image: {
  9996. source: "./media/characters/varg/front.svg",
  9997. extra: 1108 / 1018,
  9998. bottom: 0.0375
  9999. }
  10000. },
  10001. },
  10002. [
  10003. {
  10004. name: "Normal",
  10005. height: math.unit(5, "meters")
  10006. },
  10007. {
  10008. name: "Macro",
  10009. height: math.unit(200, "meters")
  10010. },
  10011. {
  10012. name: "Megamacro",
  10013. height: math.unit(20, "kilometers")
  10014. },
  10015. {
  10016. name: "True Size",
  10017. height: math.unit(211, "km"),
  10018. default: true
  10019. },
  10020. {
  10021. name: "Gigamacro",
  10022. height: math.unit(1000, "km")
  10023. },
  10024. {
  10025. name: "Gigamacro+",
  10026. height: math.unit(8000, "km")
  10027. },
  10028. {
  10029. name: "Teramacro",
  10030. height: math.unit(1000000, "km")
  10031. },
  10032. ]
  10033. ))
  10034. characterMakers.push(() => makeCharacter(
  10035. { name: "Dayza" },
  10036. {
  10037. front: {
  10038. height: math.unit(7 + 7 / 12, "feet"),
  10039. weight: math.unit(267, "lb"),
  10040. name: "Front",
  10041. image: {
  10042. source: "./media/characters/dayza/front.svg",
  10043. extra: 1262 / 1200,
  10044. bottom: 0.035
  10045. }
  10046. },
  10047. side: {
  10048. height: math.unit(7 + 7 / 12, "feet"),
  10049. weight: math.unit(267, "lb"),
  10050. name: "Side",
  10051. image: {
  10052. source: "./media/characters/dayza/side.svg",
  10053. extra: 1295 / 1245,
  10054. bottom: 0.05
  10055. }
  10056. },
  10057. back: {
  10058. height: math.unit(7 + 7 / 12, "feet"),
  10059. weight: math.unit(267, "lb"),
  10060. name: "Back",
  10061. image: {
  10062. source: "./media/characters/dayza/back.svg",
  10063. extra: 1241 / 1170
  10064. }
  10065. },
  10066. },
  10067. [
  10068. {
  10069. name: "Normal",
  10070. height: math.unit(7 + 7 / 12, "feet"),
  10071. default: true
  10072. },
  10073. {
  10074. name: "Macro",
  10075. height: math.unit(155, "feet")
  10076. },
  10077. ]
  10078. ))
  10079. characterMakers.push(() => makeCharacter(
  10080. { name: "Xanthos" },
  10081. {
  10082. front: {
  10083. height: math.unit(6 + 5 / 12, "feet"),
  10084. weight: math.unit(160, "lb"),
  10085. name: "Front",
  10086. image: {
  10087. source: "./media/characters/xanthos/front.svg",
  10088. extra: 1,
  10089. bottom: 0.04
  10090. }
  10091. },
  10092. back: {
  10093. height: math.unit(6 + 5 / 12, "feet"),
  10094. weight: math.unit(160, "lb"),
  10095. name: "Back",
  10096. image: {
  10097. source: "./media/characters/xanthos/back.svg",
  10098. extra: 1,
  10099. bottom: 0.03
  10100. }
  10101. },
  10102. hand: {
  10103. height: math.unit(0.928, "feet"),
  10104. name: "Hand",
  10105. image: {
  10106. source: "./media/characters/xanthos/hand.svg"
  10107. }
  10108. },
  10109. foot: {
  10110. height: math.unit(1.286, "feet"),
  10111. name: "Foot",
  10112. image: {
  10113. source: "./media/characters/xanthos/foot.svg"
  10114. }
  10115. },
  10116. },
  10117. [
  10118. {
  10119. name: "Normal",
  10120. height: math.unit(6 + 5 / 12, "feet"),
  10121. default: true
  10122. },
  10123. {
  10124. name: "Normal+",
  10125. height: math.unit(6, "meters")
  10126. },
  10127. {
  10128. name: "Macro",
  10129. height: math.unit(40, "feet")
  10130. },
  10131. {
  10132. name: "Macro+",
  10133. height: math.unit(200, "meters")
  10134. },
  10135. {
  10136. name: "Megamacro",
  10137. height: math.unit(20, "km")
  10138. },
  10139. {
  10140. name: "Megamacro+",
  10141. height: math.unit(100, "km")
  10142. },
  10143. ]
  10144. ))
  10145. characterMakers.push(() => makeCharacter(
  10146. { name: "Grynn" },
  10147. {
  10148. front: {
  10149. height: math.unit(6 + 3 / 12, "feet"),
  10150. weight: math.unit(215, "lb"),
  10151. name: "Front",
  10152. image: {
  10153. source: "./media/characters/grynn/front.svg",
  10154. extra: 4627 / 4209,
  10155. bottom: 0.047
  10156. }
  10157. },
  10158. },
  10159. [
  10160. {
  10161. name: "Micro",
  10162. height: math.unit(6, "inches")
  10163. },
  10164. {
  10165. name: "Normal",
  10166. height: math.unit(6 + 3 / 12, "feet"),
  10167. default: true
  10168. },
  10169. {
  10170. name: "Big",
  10171. height: math.unit(104, "feet")
  10172. },
  10173. {
  10174. name: "Macro",
  10175. height: math.unit(944, "feet")
  10176. },
  10177. {
  10178. name: "Macro+",
  10179. height: math.unit(9480, "feet")
  10180. },
  10181. {
  10182. name: "Megamacro",
  10183. height: math.unit(78752, "feet")
  10184. },
  10185. {
  10186. name: "Megamacro+",
  10187. height: math.unit(630128, "feet")
  10188. },
  10189. {
  10190. name: "Megamacro++",
  10191. height: math.unit(3150695, "feet")
  10192. },
  10193. ]
  10194. ))
  10195. characterMakers.push(() => makeCharacter(
  10196. { name: "Mocha Aura" },
  10197. {
  10198. front: {
  10199. height: math.unit(7 + 5 / 12, "feet"),
  10200. weight: math.unit(450, "lb"),
  10201. name: "Front",
  10202. image: {
  10203. source: "./media/characters/mocha-aura/front.svg",
  10204. extra: 1907 / 1817,
  10205. bottom: 0.04
  10206. }
  10207. },
  10208. back: {
  10209. height: math.unit(7 + 5 / 12, "feet"),
  10210. weight: math.unit(450, "lb"),
  10211. name: "Back",
  10212. image: {
  10213. source: "./media/characters/mocha-aura/back.svg",
  10214. extra: 1900 / 1825,
  10215. bottom: 0.045
  10216. }
  10217. },
  10218. },
  10219. [
  10220. {
  10221. name: "Nano",
  10222. height: math.unit(1, "nm")
  10223. },
  10224. {
  10225. name: "Megamicro",
  10226. height: math.unit(1, "mm")
  10227. },
  10228. {
  10229. name: "Micro",
  10230. height: math.unit(3, "inches")
  10231. },
  10232. {
  10233. name: "Normal",
  10234. height: math.unit(7 + 5 / 12, "feet"),
  10235. default: true
  10236. },
  10237. {
  10238. name: "Macro",
  10239. height: math.unit(30, "feet")
  10240. },
  10241. {
  10242. name: "Megamacro",
  10243. height: math.unit(3500, "feet")
  10244. },
  10245. {
  10246. name: "Teramacro",
  10247. height: math.unit(500000, "miles")
  10248. },
  10249. {
  10250. name: "Petamacro",
  10251. height: math.unit(50000000000000000, "parsecs")
  10252. },
  10253. ]
  10254. ))
  10255. characterMakers.push(() => makeCharacter(
  10256. { name: "Ilisha Devya" },
  10257. {
  10258. front: {
  10259. height: math.unit(6, "feet"),
  10260. weight: math.unit(150, "lb"),
  10261. name: "Front",
  10262. image: {
  10263. source: "./media/characters/ilisha-devya/front.svg",
  10264. extra: 1,
  10265. bottom: 0.175
  10266. }
  10267. },
  10268. back: {
  10269. height: math.unit(6, "feet"),
  10270. weight: math.unit(150, "lb"),
  10271. name: "Back",
  10272. image: {
  10273. source: "./media/characters/ilisha-devya/back.svg",
  10274. extra: 1,
  10275. bottom: 0.015
  10276. }
  10277. },
  10278. },
  10279. [
  10280. {
  10281. name: "Macro",
  10282. height: math.unit(500, "feet"),
  10283. default: true
  10284. },
  10285. {
  10286. name: "Megamacro",
  10287. height: math.unit(10, "miles")
  10288. },
  10289. {
  10290. name: "Gigamacro",
  10291. height: math.unit(100000, "miles")
  10292. },
  10293. {
  10294. name: "Examacro",
  10295. height: math.unit(1e9, "lightyears")
  10296. },
  10297. {
  10298. name: "Omniversal",
  10299. height: math.unit(1e33, "lightyears")
  10300. },
  10301. {
  10302. name: "Beyond Infinite",
  10303. height: math.unit(1e100, "lightyears")
  10304. },
  10305. ]
  10306. ))
  10307. characterMakers.push(() => makeCharacter(
  10308. { name: "Mira" },
  10309. {
  10310. Side: {
  10311. height: math.unit(6, "feet"),
  10312. weight: math.unit(150, "lb"),
  10313. name: "Side",
  10314. image: {
  10315. source: "./media/characters/mira/side.svg",
  10316. extra: 900 / 799,
  10317. bottom: 0.02
  10318. }
  10319. },
  10320. },
  10321. [
  10322. {
  10323. name: "Human Size",
  10324. height: math.unit(6, "feet")
  10325. },
  10326. {
  10327. name: "Macro",
  10328. height: math.unit(100, "feet"),
  10329. default: true
  10330. },
  10331. {
  10332. name: "Megamacro",
  10333. height: math.unit(10, "miles")
  10334. },
  10335. {
  10336. name: "Gigamacro",
  10337. height: math.unit(25000, "miles")
  10338. },
  10339. {
  10340. name: "Teramacro",
  10341. height: math.unit(300, "AU")
  10342. },
  10343. {
  10344. name: "Full Size",
  10345. height: math.unit(4.5e10, "lightyears")
  10346. },
  10347. ]
  10348. ))
  10349. characterMakers.push(() => makeCharacter(
  10350. { name: "Holly" },
  10351. {
  10352. front: {
  10353. height: math.unit(6, "feet"),
  10354. weight: math.unit(150, "lb"),
  10355. name: "Front",
  10356. image: {
  10357. source: "./media/characters/holly/front.svg",
  10358. extra: 639 / 606
  10359. }
  10360. },
  10361. back: {
  10362. height: math.unit(6, "feet"),
  10363. weight: math.unit(150, "lb"),
  10364. name: "Back",
  10365. image: {
  10366. source: "./media/characters/holly/back.svg",
  10367. extra: 623 / 598
  10368. }
  10369. },
  10370. frontWorking: {
  10371. height: math.unit(6, "feet"),
  10372. weight: math.unit(150, "lb"),
  10373. name: "Front (Working)",
  10374. image: {
  10375. source: "./media/characters/holly/front-working.svg",
  10376. extra: 607 / 577,
  10377. bottom: 0.048
  10378. }
  10379. },
  10380. },
  10381. [
  10382. {
  10383. name: "Normal",
  10384. height: math.unit(12 + 3 / 12, "feet"),
  10385. default: true
  10386. },
  10387. ]
  10388. ))
  10389. characterMakers.push(() => makeCharacter(
  10390. { name: "Porter" },
  10391. {
  10392. front: {
  10393. height: math.unit(6, "feet"),
  10394. weight: math.unit(150, "lb"),
  10395. name: "Front",
  10396. image: {
  10397. source: "./media/characters/porter/front.svg",
  10398. extra: 1,
  10399. bottom: 0.01
  10400. }
  10401. },
  10402. frontRobes: {
  10403. height: math.unit(6, "feet"),
  10404. weight: math.unit(150, "lb"),
  10405. name: "Front (Robes)",
  10406. image: {
  10407. source: "./media/characters/porter/front-robes.svg",
  10408. extra: 1.01,
  10409. bottom: 0.01
  10410. }
  10411. },
  10412. },
  10413. [
  10414. {
  10415. name: "Normal",
  10416. height: math.unit(11 + 9 / 12, "feet"),
  10417. default: true
  10418. },
  10419. ]
  10420. ))
  10421. characterMakers.push(() => makeCharacter(
  10422. { name: "Lucy" },
  10423. {
  10424. legendary: {
  10425. height: math.unit(6, "feet"),
  10426. weight: math.unit(150, "lb"),
  10427. name: "Legendary",
  10428. image: {
  10429. source: "./media/characters/lucy/legendary.svg",
  10430. extra: 1355 / 1100,
  10431. bottom: 0.045
  10432. }
  10433. },
  10434. },
  10435. [
  10436. {
  10437. name: "Legendary",
  10438. height: math.unit(86882 * 2, "miles"),
  10439. default: true
  10440. },
  10441. ]
  10442. ))
  10443. characterMakers.push(() => makeCharacter(
  10444. { name: "Drusilla" },
  10445. {
  10446. front: {
  10447. height: math.unit(6, "feet"),
  10448. weight: math.unit(150, "lb"),
  10449. name: "Front",
  10450. image: {
  10451. source: "./media/characters/drusilla/front.svg",
  10452. extra: 678 / 635,
  10453. bottom: 0.03
  10454. }
  10455. },
  10456. back: {
  10457. height: math.unit(6, "feet"),
  10458. weight: math.unit(150, "lb"),
  10459. name: "Back",
  10460. image: {
  10461. source: "./media/characters/drusilla/back.svg",
  10462. extra: 678 / 635,
  10463. bottom: 0.005
  10464. }
  10465. },
  10466. },
  10467. [
  10468. {
  10469. name: "Macro",
  10470. height: math.unit(100, "feet")
  10471. },
  10472. {
  10473. name: "Canon Height",
  10474. height: math.unit(2000, "feet"),
  10475. default: true
  10476. },
  10477. ]
  10478. ))
  10479. characterMakers.push(() => makeCharacter(
  10480. { name: "Renard Thatch" },
  10481. {
  10482. front: {
  10483. height: math.unit(6, "feet"),
  10484. weight: math.unit(180, "lb"),
  10485. name: "Front",
  10486. image: {
  10487. source: "./media/characters/renard-thatch/front.svg",
  10488. extra: 2411 / 2275,
  10489. bottom: 0.01
  10490. }
  10491. },
  10492. frontPosing: {
  10493. height: math.unit(6, "feet"),
  10494. weight: math.unit(180, "lb"),
  10495. name: "Front (Posing)",
  10496. image: {
  10497. source: "./media/characters/renard-thatch/front-posing.svg",
  10498. extra: 2381 / 2261,
  10499. bottom: 0.01
  10500. }
  10501. },
  10502. back: {
  10503. height: math.unit(6, "feet"),
  10504. weight: math.unit(180, "lb"),
  10505. name: "Back",
  10506. image: {
  10507. source: "./media/characters/renard-thatch/back.svg",
  10508. extra: 2428 / 2288
  10509. }
  10510. },
  10511. },
  10512. [
  10513. {
  10514. name: "Micro",
  10515. height: math.unit(3, "inches")
  10516. },
  10517. {
  10518. name: "Default",
  10519. height: math.unit(6, "feet"),
  10520. default: true
  10521. },
  10522. {
  10523. name: "Macro",
  10524. height: math.unit(75, "feet")
  10525. },
  10526. ]
  10527. ))
  10528. characterMakers.push(() => makeCharacter(
  10529. { name: "Sekvra" },
  10530. {
  10531. front: {
  10532. height: math.unit(1450, "feet"),
  10533. weight: math.unit(1.21e6, "tons"),
  10534. name: "Front",
  10535. image: {
  10536. source: "./media/characters/sekvra/front.svg",
  10537. extra: 1,
  10538. bottom: 0.03
  10539. }
  10540. },
  10541. frontClothed: {
  10542. height: math.unit(1450, "feet"),
  10543. weight: math.unit(1.21e6, "tons"),
  10544. name: "Front (Clothed)",
  10545. image: {
  10546. source: "./media/characters/sekvra/front-clothed.svg",
  10547. extra: 1,
  10548. bottom: 0.03
  10549. }
  10550. },
  10551. side: {
  10552. height: math.unit(1450, "feet"),
  10553. weight: math.unit(1.21e6, "tons"),
  10554. name: "Side",
  10555. image: {
  10556. source: "./media/characters/sekvra/side.svg",
  10557. extra: 1,
  10558. bottom: 0.025
  10559. }
  10560. },
  10561. back: {
  10562. height: math.unit(1450, "feet"),
  10563. weight: math.unit(1.21e6, "tons"),
  10564. name: "Back",
  10565. image: {
  10566. source: "./media/characters/sekvra/back.svg",
  10567. extra: 1,
  10568. bottom: 0.005
  10569. }
  10570. },
  10571. },
  10572. [
  10573. {
  10574. name: "Macro",
  10575. height: math.unit(1450, "feet"),
  10576. default: true
  10577. },
  10578. {
  10579. name: "Megamacro",
  10580. height: math.unit(15000, "feet")
  10581. },
  10582. ]
  10583. ))
  10584. characterMakers.push(() => makeCharacter(
  10585. { name: "Carmine" },
  10586. {
  10587. front: {
  10588. height: math.unit(6, "feet"),
  10589. weight: math.unit(150, "lb"),
  10590. name: "Front",
  10591. image: {
  10592. source: "./media/characters/carmine/front.svg",
  10593. extra: 1,
  10594. bottom: 0.035
  10595. }
  10596. },
  10597. frontArmor: {
  10598. height: math.unit(6, "feet"),
  10599. weight: math.unit(150, "lb"),
  10600. name: "Front (Armor)",
  10601. image: {
  10602. source: "./media/characters/carmine/front-armor.svg",
  10603. extra: 1,
  10604. bottom: 0.035
  10605. }
  10606. },
  10607. },
  10608. [
  10609. {
  10610. name: "Large",
  10611. height: math.unit(1, "mile")
  10612. },
  10613. {
  10614. name: "Huge",
  10615. height: math.unit(40, "miles"),
  10616. default: true
  10617. },
  10618. {
  10619. name: "Colossal",
  10620. height: math.unit(2500, "miles")
  10621. },
  10622. ]
  10623. ))
  10624. characterMakers.push(() => makeCharacter(
  10625. { name: "Elyssia" },
  10626. {
  10627. front: {
  10628. height: math.unit(6, "feet"),
  10629. weight: math.unit(150, "lb"),
  10630. name: "Front",
  10631. image: {
  10632. source: "./media/characters/elyssia/front.svg",
  10633. extra: 2201 / 2035,
  10634. bottom: 0.05
  10635. }
  10636. },
  10637. frontClothed: {
  10638. height: math.unit(6, "feet"),
  10639. weight: math.unit(150, "lb"),
  10640. name: "Front (Clothed)",
  10641. image: {
  10642. source: "./media/characters/elyssia/front-clothed.svg",
  10643. extra: 2201 / 2035,
  10644. bottom: 0.05
  10645. }
  10646. },
  10647. back: {
  10648. height: math.unit(6, "feet"),
  10649. weight: math.unit(150, "lb"),
  10650. name: "Back",
  10651. image: {
  10652. source: "./media/characters/elyssia/back.svg",
  10653. extra: 2201 / 2035,
  10654. bottom: 0.013
  10655. }
  10656. },
  10657. },
  10658. [
  10659. {
  10660. name: "Smaller",
  10661. height: math.unit(150, "feet")
  10662. },
  10663. {
  10664. name: "Standard",
  10665. height: math.unit(1400, "feet"),
  10666. default: true
  10667. },
  10668. {
  10669. name: "Distracted",
  10670. height: math.unit(15000, "feet")
  10671. },
  10672. ]
  10673. ))
  10674. characterMakers.push(() => makeCharacter(
  10675. { name: "Geno Maxwell" },
  10676. {
  10677. front: {
  10678. height: math.unit(7 + 4 / 12, "feet"),
  10679. weight: math.unit(500, "lb"),
  10680. name: "Front",
  10681. image: {
  10682. source: "./media/characters/geno-maxwell/front.svg",
  10683. extra: 2207 / 2040,
  10684. bottom: 0.015
  10685. }
  10686. },
  10687. },
  10688. [
  10689. {
  10690. name: "Micro",
  10691. height: math.unit(3, "inches")
  10692. },
  10693. {
  10694. name: "Normal",
  10695. height: math.unit(7 + 4 / 12, "feet"),
  10696. default: true
  10697. },
  10698. {
  10699. name: "Macro",
  10700. height: math.unit(220, "feet")
  10701. },
  10702. {
  10703. name: "Megamacro",
  10704. height: math.unit(11, "miles")
  10705. },
  10706. ]
  10707. ))
  10708. characterMakers.push(() => makeCharacter(
  10709. { name: "Regena Maxwell" },
  10710. {
  10711. front: {
  10712. height: math.unit(7 + 4 / 12, "feet"),
  10713. weight: math.unit(500, "lb"),
  10714. name: "Front",
  10715. image: {
  10716. source: "./media/characters/regena-maxwell/front.svg",
  10717. extra: 3115 / 2770,
  10718. bottom: 0.02
  10719. }
  10720. },
  10721. },
  10722. [
  10723. {
  10724. name: "Normal",
  10725. height: math.unit(7 + 4 / 12, "feet"),
  10726. default: true
  10727. },
  10728. {
  10729. name: "Macro",
  10730. height: math.unit(220, "feet")
  10731. },
  10732. {
  10733. name: "Megamacro",
  10734. height: math.unit(11, "miles")
  10735. },
  10736. ]
  10737. ))
  10738. characterMakers.push(() => makeCharacter(
  10739. { name: "XGlidingDragonX" },
  10740. {
  10741. front: {
  10742. height: math.unit(6, "feet"),
  10743. weight: math.unit(150, "lb"),
  10744. name: "Front",
  10745. image: {
  10746. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10747. extra: 860 / 690,
  10748. bottom: 0.03
  10749. }
  10750. },
  10751. },
  10752. [
  10753. {
  10754. name: "Normal",
  10755. height: math.unit(1.7, "meters"),
  10756. default: true
  10757. },
  10758. ]
  10759. ))
  10760. characterMakers.push(() => makeCharacter(
  10761. { name: "Quilly" },
  10762. {
  10763. front: {
  10764. height: math.unit(6, "feet"),
  10765. weight: math.unit(150, "lb"),
  10766. name: "Front",
  10767. image: {
  10768. source: "./media/characters/quilly/front.svg",
  10769. extra: 890 / 776
  10770. }
  10771. },
  10772. },
  10773. [
  10774. {
  10775. name: "Gigamacro",
  10776. height: math.unit(404090, "miles"),
  10777. default: true
  10778. },
  10779. ]
  10780. ))
  10781. characterMakers.push(() => makeCharacter(
  10782. { name: "Tempest" },
  10783. {
  10784. front: {
  10785. height: math.unit(7 + 8 / 12, "feet"),
  10786. weight: math.unit(350, "lb"),
  10787. name: "Front",
  10788. image: {
  10789. source: "./media/characters/tempest/front.svg",
  10790. extra: 1175 / 1086,
  10791. bottom: 0.02
  10792. }
  10793. },
  10794. },
  10795. [
  10796. {
  10797. name: "Normal",
  10798. height: math.unit(7 + 8 / 12, "feet"),
  10799. default: true
  10800. },
  10801. ]
  10802. ))
  10803. characterMakers.push(() => makeCharacter(
  10804. { name: "Rodger" },
  10805. {
  10806. side: {
  10807. height: math.unit(4 + 5 / 12, "feet"),
  10808. weight: math.unit(80, "lb"),
  10809. name: "Side",
  10810. image: {
  10811. source: "./media/characters/rodger/side.svg",
  10812. extra: 1235 / 1118
  10813. }
  10814. },
  10815. },
  10816. [
  10817. {
  10818. name: "Micro",
  10819. height: math.unit(1, "inch")
  10820. },
  10821. {
  10822. name: "Normal",
  10823. height: math.unit(4 + 5 / 12, "feet"),
  10824. default: true
  10825. },
  10826. {
  10827. name: "Macro",
  10828. height: math.unit(120, "feet")
  10829. },
  10830. ]
  10831. ))
  10832. characterMakers.push(() => makeCharacter(
  10833. { name: "Danyel" },
  10834. {
  10835. front: {
  10836. height: math.unit(6, "feet"),
  10837. weight: math.unit(150, "lb"),
  10838. name: "Front",
  10839. image: {
  10840. source: "./media/characters/danyel/front.svg",
  10841. extra: 1185 / 1123,
  10842. bottom: 0.05
  10843. }
  10844. },
  10845. },
  10846. [
  10847. {
  10848. name: "Shrunken",
  10849. height: math.unit(0.5, "mm")
  10850. },
  10851. {
  10852. name: "Micro",
  10853. height: math.unit(1, "mm"),
  10854. default: true
  10855. },
  10856. {
  10857. name: "Upsized",
  10858. height: math.unit(5 + 5 / 12, "feet")
  10859. },
  10860. ]
  10861. ))
  10862. characterMakers.push(() => makeCharacter(
  10863. { name: "Vivian Bijoux" },
  10864. {
  10865. front: {
  10866. height: math.unit(5 + 6 / 12, "feet"),
  10867. weight: math.unit(200, "lb"),
  10868. name: "Front",
  10869. image: {
  10870. source: "./media/characters/vivian-bijoux/front.svg",
  10871. extra: 1,
  10872. bottom: 0.072
  10873. }
  10874. },
  10875. },
  10876. [
  10877. {
  10878. name: "Normal",
  10879. height: math.unit(5 + 6 / 12, "feet"),
  10880. default: true
  10881. },
  10882. {
  10883. name: "Bad Dream",
  10884. height: math.unit(500, "feet")
  10885. },
  10886. {
  10887. name: "Nightmare",
  10888. height: math.unit(500, "miles")
  10889. },
  10890. ]
  10891. ))
  10892. characterMakers.push(() => makeCharacter(
  10893. { name: "Zeta" },
  10894. {
  10895. front: {
  10896. height: math.unit(6 + 1 / 12, "feet"),
  10897. weight: math.unit(260, "lb"),
  10898. name: "Front",
  10899. image: {
  10900. source: "./media/characters/zeta/front.svg",
  10901. extra: 1968 / 1889,
  10902. bottom: 0.06
  10903. }
  10904. },
  10905. back: {
  10906. height: math.unit(6 + 1 / 12, "feet"),
  10907. weight: math.unit(260, "lb"),
  10908. name: "Back",
  10909. image: {
  10910. source: "./media/characters/zeta/back.svg",
  10911. extra: 1944 / 1858,
  10912. bottom: 0.03
  10913. }
  10914. },
  10915. hand: {
  10916. height: math.unit(1.112, "feet"),
  10917. name: "Hand",
  10918. image: {
  10919. source: "./media/characters/zeta/hand.svg"
  10920. }
  10921. },
  10922. foot: {
  10923. height: math.unit(1.48, "feet"),
  10924. name: "Foot",
  10925. image: {
  10926. source: "./media/characters/zeta/foot.svg"
  10927. }
  10928. },
  10929. },
  10930. [
  10931. {
  10932. name: "Micro",
  10933. height: math.unit(6, "inches")
  10934. },
  10935. {
  10936. name: "Normal",
  10937. height: math.unit(6 + 1 / 12, "feet"),
  10938. default: true
  10939. },
  10940. {
  10941. name: "Macro",
  10942. height: math.unit(20, "feet")
  10943. },
  10944. ]
  10945. ))
  10946. characterMakers.push(() => makeCharacter(
  10947. { name: "Jamie Larsen" },
  10948. {
  10949. front: {
  10950. height: math.unit(6, "feet"),
  10951. weight: math.unit(150, "lb"),
  10952. name: "Front",
  10953. image: {
  10954. source: "./media/characters/jamie-larsen/front.svg",
  10955. extra: 962 / 933,
  10956. bottom: 0.02
  10957. }
  10958. },
  10959. back: {
  10960. height: math.unit(6, "feet"),
  10961. weight: math.unit(150, "lb"),
  10962. name: "Back",
  10963. image: {
  10964. source: "./media/characters/jamie-larsen/back.svg",
  10965. extra: 997 / 946
  10966. }
  10967. },
  10968. },
  10969. [
  10970. {
  10971. name: "Macro",
  10972. height: math.unit(28 + 7 / 12, "feet"),
  10973. default: true
  10974. },
  10975. {
  10976. name: "Macro+",
  10977. height: math.unit(180, "feet")
  10978. },
  10979. {
  10980. name: "Megamacro",
  10981. height: math.unit(10, "miles")
  10982. },
  10983. {
  10984. name: "Gigamacro",
  10985. height: math.unit(200000, "miles")
  10986. },
  10987. ]
  10988. ))
  10989. characterMakers.push(() => makeCharacter(
  10990. { name: "Vance" },
  10991. {
  10992. front: {
  10993. height: math.unit(6, "feet"),
  10994. weight: math.unit(120, "lb"),
  10995. name: "Front",
  10996. image: {
  10997. source: "./media/characters/vance/front.svg",
  10998. extra: 1980 / 1890,
  10999. bottom: 0.09
  11000. }
  11001. },
  11002. back: {
  11003. height: math.unit(6, "feet"),
  11004. weight: math.unit(120, "lb"),
  11005. name: "Back",
  11006. image: {
  11007. source: "./media/characters/vance/back.svg",
  11008. extra: 2081 / 1994,
  11009. bottom: 0.014
  11010. }
  11011. },
  11012. hand: {
  11013. height: math.unit(0.88, "feet"),
  11014. name: "Hand",
  11015. image: {
  11016. source: "./media/characters/vance/hand.svg"
  11017. }
  11018. },
  11019. foot: {
  11020. height: math.unit(0.64, "feet"),
  11021. name: "Foot",
  11022. image: {
  11023. source: "./media/characters/vance/foot.svg"
  11024. }
  11025. },
  11026. },
  11027. [
  11028. {
  11029. name: "Small",
  11030. height: math.unit(90, "feet"),
  11031. default: true
  11032. },
  11033. {
  11034. name: "Macro",
  11035. height: math.unit(100, "meters")
  11036. },
  11037. {
  11038. name: "Megamacro",
  11039. height: math.unit(15, "miles")
  11040. },
  11041. ]
  11042. ))
  11043. characterMakers.push(() => makeCharacter(
  11044. { name: "Xochitl" },
  11045. {
  11046. front: {
  11047. height: math.unit(6, "feet"),
  11048. weight: math.unit(180, "lb"),
  11049. name: "Front",
  11050. image: {
  11051. source: "./media/characters/xochitl/front.svg",
  11052. extra: 2297 / 2261,
  11053. bottom: 0.065
  11054. }
  11055. },
  11056. back: {
  11057. height: math.unit(6, "feet"),
  11058. weight: math.unit(180, "lb"),
  11059. name: "Back",
  11060. image: {
  11061. source: "./media/characters/xochitl/back.svg",
  11062. extra: 2386 / 2354,
  11063. bottom: 0.01
  11064. }
  11065. },
  11066. foot: {
  11067. height: math.unit(6 / 5 * 1.15, "feet"),
  11068. weight: math.unit(150, "lb"),
  11069. name: "Foot",
  11070. image: {
  11071. source: "./media/characters/xochitl/foot.svg"
  11072. }
  11073. },
  11074. },
  11075. [
  11076. {
  11077. name: "Macro",
  11078. height: math.unit(80, "feet")
  11079. },
  11080. {
  11081. name: "Macro+",
  11082. height: math.unit(400, "feet"),
  11083. default: true
  11084. },
  11085. {
  11086. name: "Gigamacro",
  11087. height: math.unit(80000, "miles")
  11088. },
  11089. {
  11090. name: "Gigamacro+",
  11091. height: math.unit(400000, "miles")
  11092. },
  11093. {
  11094. name: "Teramacro",
  11095. height: math.unit(300, "AU")
  11096. },
  11097. ]
  11098. ))
  11099. characterMakers.push(() => makeCharacter(
  11100. { name: "Vincent" },
  11101. {
  11102. front: {
  11103. height: math.unit(6, "feet"),
  11104. weight: math.unit(150, "lb"),
  11105. name: "Front",
  11106. image: {
  11107. source: "./media/characters/vincent/front.svg",
  11108. extra: 1130 / 1080,
  11109. bottom: 0.055
  11110. }
  11111. },
  11112. beak: {
  11113. height: math.unit(6 * 0.1, "feet"),
  11114. name: "Beak",
  11115. image: {
  11116. source: "./media/characters/vincent/beak.svg"
  11117. }
  11118. },
  11119. hand: {
  11120. height: math.unit(6 * 0.85, "feet"),
  11121. weight: math.unit(150, "lb"),
  11122. name: "Hand",
  11123. image: {
  11124. source: "./media/characters/vincent/hand.svg"
  11125. }
  11126. },
  11127. foot: {
  11128. height: math.unit(6 * 0.19, "feet"),
  11129. weight: math.unit(150, "lb"),
  11130. name: "Foot",
  11131. image: {
  11132. source: "./media/characters/vincent/foot.svg"
  11133. }
  11134. },
  11135. },
  11136. [
  11137. {
  11138. name: "Base",
  11139. height: math.unit(6 + 5 / 12, "feet"),
  11140. default: true
  11141. },
  11142. {
  11143. name: "Macro",
  11144. height: math.unit(300, "feet")
  11145. },
  11146. {
  11147. name: "Megamacro",
  11148. height: math.unit(2, "miles")
  11149. },
  11150. {
  11151. name: "Gigamacro",
  11152. height: math.unit(1000, "miles")
  11153. },
  11154. ]
  11155. ))
  11156. characterMakers.push(() => makeCharacter(
  11157. { name: "Jay" },
  11158. {
  11159. front: {
  11160. height: math.unit(6 + 2 / 12, "feet"),
  11161. weight: math.unit(65, "lb"),
  11162. name: "Front",
  11163. image: {
  11164. source: "./media/characters/jay/front.svg",
  11165. extra: 1510 / 1430,
  11166. bottom: 0.042
  11167. }
  11168. },
  11169. back: {
  11170. height: math.unit(6 + 2 / 12, "feet"),
  11171. weight: math.unit(65, "lb"),
  11172. name: "Back",
  11173. image: {
  11174. source: "./media/characters/jay/back.svg",
  11175. extra: 1510 / 1430,
  11176. bottom: 0.025
  11177. }
  11178. },
  11179. clothed: {
  11180. height: math.unit(6 + 2 / 12, "feet"),
  11181. weight: math.unit(65, "lb"),
  11182. name: "Front (Clothed)",
  11183. image: {
  11184. source: "./media/characters/jay/clothed.svg",
  11185. extra: 744 / 699,
  11186. bottom: 0.043
  11187. }
  11188. },
  11189. },
  11190. [
  11191. {
  11192. name: "Micro",
  11193. height: math.unit(1, "inch")
  11194. },
  11195. {
  11196. name: "Normal",
  11197. height: math.unit(6 + 2 / 12, "feet"),
  11198. default: true
  11199. },
  11200. {
  11201. name: "Macro",
  11202. height: math.unit(1, "mile")
  11203. },
  11204. {
  11205. name: "Megamacro",
  11206. height: math.unit(100, "miles")
  11207. },
  11208. ]
  11209. ))
  11210. characterMakers.push(() => makeCharacter(
  11211. { name: "Coatl" },
  11212. {
  11213. front: {
  11214. height: math.unit(2, "meters"),
  11215. weight: math.unit(500, "kg"),
  11216. name: "Front",
  11217. image: {
  11218. source: "./media/characters/coatl/front.svg",
  11219. extra: 3948 / 3500,
  11220. bottom: 0.082
  11221. }
  11222. },
  11223. },
  11224. [
  11225. {
  11226. name: "Normal",
  11227. height: math.unit(4, "meters")
  11228. },
  11229. {
  11230. name: "Macro",
  11231. height: math.unit(100, "meters"),
  11232. default: true
  11233. },
  11234. {
  11235. name: "Macro+",
  11236. height: math.unit(300, "meters")
  11237. },
  11238. {
  11239. name: "Megamacro",
  11240. height: math.unit(3, "gigameters")
  11241. },
  11242. {
  11243. name: "Megamacro+",
  11244. height: math.unit(300, "terameters")
  11245. },
  11246. {
  11247. name: "Megamacro++",
  11248. height: math.unit(3, "lightyears")
  11249. },
  11250. ]
  11251. ))
  11252. characterMakers.push(() => makeCharacter(
  11253. { name: "Shiroryu" },
  11254. {
  11255. front: {
  11256. height: math.unit(6, "feet"),
  11257. weight: math.unit(50, "kg"),
  11258. name: "front",
  11259. image: {
  11260. source: "./media/characters/shiroryu/front.svg",
  11261. extra: 1990 / 1935
  11262. }
  11263. },
  11264. },
  11265. [
  11266. {
  11267. name: "Mortal Mingling",
  11268. height: math.unit(3, "meters")
  11269. },
  11270. {
  11271. name: "Kaiju-ish",
  11272. height: math.unit(250, "meters")
  11273. },
  11274. {
  11275. name: "Somewhat Godly",
  11276. height: math.unit(400, "km"),
  11277. default: true
  11278. },
  11279. {
  11280. name: "Planetary",
  11281. height: math.unit(300, "megameters")
  11282. },
  11283. {
  11284. name: "Galaxy-dwarfing",
  11285. height: math.unit(450, "kiloparsecs")
  11286. },
  11287. {
  11288. name: "Universe Eater",
  11289. height: math.unit(150, "gigaparsecs")
  11290. },
  11291. {
  11292. name: "Almost Immeasurable",
  11293. height: math.unit(1.3e266, "yottaparsecs")
  11294. },
  11295. ]
  11296. ))
  11297. characterMakers.push(() => makeCharacter(
  11298. { name: "Umeko" },
  11299. {
  11300. front: {
  11301. height: math.unit(6, "feet"),
  11302. weight: math.unit(150, "lb"),
  11303. name: "Front",
  11304. image: {
  11305. source: "./media/characters/umeko/front.svg",
  11306. extra: 1,
  11307. bottom: 0.019
  11308. }
  11309. },
  11310. frontArmored: {
  11311. height: math.unit(6, "feet"),
  11312. weight: math.unit(150, "lb"),
  11313. name: "Front (Armored)",
  11314. image: {
  11315. source: "./media/characters/umeko/front-armored.svg",
  11316. extra: 1,
  11317. bottom: 0.021
  11318. }
  11319. },
  11320. },
  11321. [
  11322. {
  11323. name: "Macro",
  11324. height: math.unit(220, "feet"),
  11325. default: true
  11326. },
  11327. {
  11328. name: "Guardian Dragon",
  11329. height: math.unit(50, "miles")
  11330. },
  11331. {
  11332. name: "Cosmic",
  11333. height: math.unit(800000, "miles")
  11334. },
  11335. ]
  11336. ))
  11337. characterMakers.push(() => makeCharacter(
  11338. { name: "Cassidy" },
  11339. {
  11340. front: {
  11341. height: math.unit(6, "feet"),
  11342. weight: math.unit(150, "lb"),
  11343. name: "Front",
  11344. image: {
  11345. source: "./media/characters/cassidy/front.svg",
  11346. extra: 1,
  11347. bottom: 0.043
  11348. }
  11349. },
  11350. },
  11351. [
  11352. {
  11353. name: "Canon Height",
  11354. height: math.unit(120, "feet"),
  11355. default: true
  11356. },
  11357. {
  11358. name: "Macro+",
  11359. height: math.unit(400, "feet")
  11360. },
  11361. {
  11362. name: "Macro++",
  11363. height: math.unit(4000, "feet")
  11364. },
  11365. {
  11366. name: "Megamacro",
  11367. height: math.unit(3, "miles")
  11368. },
  11369. ]
  11370. ))
  11371. characterMakers.push(() => makeCharacter(
  11372. { name: "Isaac" },
  11373. {
  11374. front: {
  11375. height: math.unit(6, "feet"),
  11376. weight: math.unit(150, "lb"),
  11377. name: "Front",
  11378. image: {
  11379. source: "./media/characters/isaac/front.svg",
  11380. extra: 896 / 815,
  11381. bottom: 0.11
  11382. }
  11383. },
  11384. },
  11385. [
  11386. {
  11387. name: "Human Size",
  11388. height: math.unit(8, "feet"),
  11389. default: true
  11390. },
  11391. {
  11392. name: "Macro",
  11393. height: math.unit(400, "feet")
  11394. },
  11395. {
  11396. name: "Megamacro",
  11397. height: math.unit(50, "miles")
  11398. },
  11399. {
  11400. name: "Canon Height",
  11401. height: math.unit(200, "AU")
  11402. },
  11403. ]
  11404. ))
  11405. characterMakers.push(() => makeCharacter(
  11406. { name: "Sleekit" },
  11407. {
  11408. front: {
  11409. height: math.unit(6, "feet"),
  11410. weight: math.unit(72, "kg"),
  11411. name: "Front",
  11412. image: {
  11413. source: "./media/characters/sleekit/front.svg",
  11414. extra: 4693 / 4487,
  11415. bottom: 0.012
  11416. }
  11417. },
  11418. },
  11419. [
  11420. {
  11421. name: "Minimum Height",
  11422. height: math.unit(10, "meters")
  11423. },
  11424. {
  11425. name: "Smaller",
  11426. height: math.unit(25, "meters")
  11427. },
  11428. {
  11429. name: "Larger",
  11430. height: math.unit(38, "meters"),
  11431. default: true
  11432. },
  11433. {
  11434. name: "Maximum height",
  11435. height: math.unit(100, "meters")
  11436. },
  11437. ]
  11438. ))
  11439. characterMakers.push(() => makeCharacter(
  11440. { name: "Nillia" },
  11441. {
  11442. front: {
  11443. height: math.unit(6, "feet"),
  11444. weight: math.unit(150, "lb"),
  11445. name: "Front",
  11446. image: {
  11447. source: "./media/characters/nillia/front.svg",
  11448. extra: 2195 / 2037,
  11449. bottom: 0.005
  11450. }
  11451. },
  11452. back: {
  11453. height: math.unit(6, "feet"),
  11454. weight: math.unit(150, "lb"),
  11455. name: "Back",
  11456. image: {
  11457. source: "./media/characters/nillia/back.svg",
  11458. extra: 2195 / 2037,
  11459. bottom: 0.005
  11460. }
  11461. },
  11462. },
  11463. [
  11464. {
  11465. name: "Canon Height",
  11466. height: math.unit(489, "feet"),
  11467. default: true
  11468. }
  11469. ]
  11470. ))
  11471. characterMakers.push(() => makeCharacter(
  11472. { name: "Mesmyriza" },
  11473. {
  11474. front: {
  11475. height: math.unit(6, "feet"),
  11476. weight: math.unit(150, "lb"),
  11477. name: "Front",
  11478. image: {
  11479. source: "./media/characters/mesmyriza/front.svg",
  11480. extra: 2067 / 1784,
  11481. bottom: 0.035
  11482. }
  11483. },
  11484. foot: {
  11485. height: math.unit(6 / (250 / 35), "feet"),
  11486. name: "Foot",
  11487. image: {
  11488. source: "./media/characters/mesmyriza/foot.svg"
  11489. }
  11490. },
  11491. },
  11492. [
  11493. {
  11494. name: "Macro",
  11495. height: math.unit(457, "meters"),
  11496. default: true
  11497. },
  11498. {
  11499. name: "Megamacro",
  11500. height: math.unit(8, "megameters")
  11501. },
  11502. ]
  11503. ))
  11504. characterMakers.push(() => makeCharacter(
  11505. { name: "Saudade" },
  11506. {
  11507. front: {
  11508. height: math.unit(6, "feet"),
  11509. weight: math.unit(250, "lb"),
  11510. name: "Front",
  11511. image: {
  11512. source: "./media/characters/saudade/front.svg",
  11513. extra: 1172 / 1139,
  11514. bottom: 0.035
  11515. }
  11516. },
  11517. },
  11518. [
  11519. {
  11520. name: "Micro",
  11521. height: math.unit(3, "inches")
  11522. },
  11523. {
  11524. name: "Normal",
  11525. height: math.unit(6, "feet"),
  11526. default: true
  11527. },
  11528. {
  11529. name: "Macro",
  11530. height: math.unit(50, "feet")
  11531. },
  11532. {
  11533. name: "Megamacro",
  11534. height: math.unit(2800, "feet")
  11535. },
  11536. ]
  11537. ))
  11538. characterMakers.push(() => makeCharacter(
  11539. { name: "Keireer" },
  11540. {
  11541. front: {
  11542. height: math.unit(5 + 4 / 12, "feet"),
  11543. weight: math.unit(100, "lb"),
  11544. name: "Front",
  11545. image: {
  11546. source: "./media/characters/keireer/front.svg",
  11547. extra: 716 / 666,
  11548. bottom: 0.05
  11549. }
  11550. },
  11551. },
  11552. [
  11553. {
  11554. name: "Normal",
  11555. height: math.unit(5 + 4 / 12, "feet"),
  11556. default: true
  11557. },
  11558. ]
  11559. ))
  11560. characterMakers.push(() => makeCharacter(
  11561. { name: "Mirja" },
  11562. {
  11563. front: {
  11564. height: math.unit(6, "feet"),
  11565. weight: math.unit(90, "kg"),
  11566. name: "Front",
  11567. image: {
  11568. source: "./media/characters/mirja/front.svg",
  11569. extra: 1789 / 1683,
  11570. bottom: 0.05
  11571. }
  11572. },
  11573. frontDressed: {
  11574. height: math.unit(6, "feet"),
  11575. weight: math.unit(90, "lb"),
  11576. name: "Front (Dressed)",
  11577. image: {
  11578. source: "./media/characters/mirja/front-dressed.svg",
  11579. extra: 1789 / 1683,
  11580. bottom: 0.05
  11581. }
  11582. },
  11583. back: {
  11584. height: math.unit(6, "feet"),
  11585. weight: math.unit(90, "lb"),
  11586. name: "Back",
  11587. image: {
  11588. source: "./media/characters/mirja/back.svg",
  11589. extra: 953 / 917,
  11590. bottom: 0.017
  11591. }
  11592. },
  11593. },
  11594. [
  11595. {
  11596. name: "\"Incognito\"",
  11597. height: math.unit(3, "meters")
  11598. },
  11599. {
  11600. name: "Strolling Size",
  11601. height: math.unit(15, "km")
  11602. },
  11603. {
  11604. name: "Larger Strolling Size",
  11605. height: math.unit(400, "km")
  11606. },
  11607. {
  11608. name: "Preferred Size",
  11609. height: math.unit(5000, "km")
  11610. },
  11611. {
  11612. name: "True Size",
  11613. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11614. default: true
  11615. },
  11616. ]
  11617. ))
  11618. characterMakers.push(() => makeCharacter(
  11619. { name: "Nightraver" },
  11620. {
  11621. front: {
  11622. height: math.unit(15, "feet"),
  11623. weight: math.unit(880, "kg"),
  11624. name: "Front",
  11625. image: {
  11626. source: "./media/characters/nightraver/front.svg",
  11627. extra: 2444 / 2160,
  11628. bottom: 0.027
  11629. }
  11630. },
  11631. back: {
  11632. height: math.unit(15, "feet"),
  11633. weight: math.unit(880, "kg"),
  11634. name: "Back",
  11635. image: {
  11636. source: "./media/characters/nightraver/back.svg",
  11637. extra: 2309 / 2180,
  11638. bottom: 0.005
  11639. }
  11640. },
  11641. sole: {
  11642. height: math.unit(2.878, "feet"),
  11643. name: "Sole",
  11644. image: {
  11645. source: "./media/characters/nightraver/sole.svg"
  11646. }
  11647. },
  11648. foot: {
  11649. height: math.unit(2.285, "feet"),
  11650. name: "Foot",
  11651. image: {
  11652. source: "./media/characters/nightraver/foot.svg"
  11653. }
  11654. },
  11655. maw: {
  11656. height: math.unit(2.67, "feet"),
  11657. name: "Maw",
  11658. image: {
  11659. source: "./media/characters/nightraver/maw.svg"
  11660. }
  11661. },
  11662. },
  11663. [
  11664. {
  11665. name: "Micro",
  11666. height: math.unit(1, "cm")
  11667. },
  11668. {
  11669. name: "Normal",
  11670. height: math.unit(15, "feet"),
  11671. default: true
  11672. },
  11673. {
  11674. name: "Macro",
  11675. height: math.unit(300, "feet")
  11676. },
  11677. {
  11678. name: "Megamacro",
  11679. height: math.unit(300, "miles")
  11680. },
  11681. {
  11682. name: "Gigamacro",
  11683. height: math.unit(10000, "miles")
  11684. },
  11685. ]
  11686. ))
  11687. characterMakers.push(() => makeCharacter(
  11688. { name: "Arc" },
  11689. {
  11690. side: {
  11691. height: math.unit(2, "inches"),
  11692. weight: math.unit(5, "grams"),
  11693. name: "Side",
  11694. image: {
  11695. source: "./media/characters/arc/side.svg"
  11696. }
  11697. },
  11698. },
  11699. [
  11700. {
  11701. name: "Micro",
  11702. height: math.unit(2, "inches"),
  11703. default: true
  11704. },
  11705. ]
  11706. ))
  11707. characterMakers.push(() => makeCharacter(
  11708. { name: "Nebula Shahar" },
  11709. {
  11710. front: {
  11711. height: math.unit(1.1938, "meters"),
  11712. weight: math.unit(54, "kg"),
  11713. name: "Front",
  11714. image: {
  11715. source: "./media/characters/nebula-shahar/front.svg",
  11716. extra: 1642 / 1436,
  11717. bottom: 0.06
  11718. }
  11719. },
  11720. },
  11721. [
  11722. {
  11723. name: "Megamicro",
  11724. height: math.unit(0.3, "mm")
  11725. },
  11726. {
  11727. name: "Micro",
  11728. height: math.unit(3, "cm")
  11729. },
  11730. {
  11731. name: "Normal",
  11732. height: math.unit(138, "cm"),
  11733. default: true
  11734. },
  11735. {
  11736. name: "Macro",
  11737. height: math.unit(30, "m")
  11738. },
  11739. ]
  11740. ))
  11741. characterMakers.push(() => makeCharacter(
  11742. { name: "Shayla" },
  11743. {
  11744. front: {
  11745. height: math.unit(5.24, "feet"),
  11746. weight: math.unit(150, "lb"),
  11747. name: "Front",
  11748. image: {
  11749. source: "./media/characters/shayla/front.svg",
  11750. extra: 1512 / 1414,
  11751. bottom: 0.01
  11752. }
  11753. },
  11754. back: {
  11755. height: math.unit(5.24, "feet"),
  11756. weight: math.unit(150, "lb"),
  11757. name: "Back",
  11758. image: {
  11759. source: "./media/characters/shayla/back.svg",
  11760. extra: 1512 / 1414
  11761. }
  11762. },
  11763. hand: {
  11764. height: math.unit(0.7781496062992126, "feet"),
  11765. name: "Hand",
  11766. image: {
  11767. source: "./media/characters/shayla/hand.svg"
  11768. }
  11769. },
  11770. foot: {
  11771. height: math.unit(1.4206036745406823, "feet"),
  11772. name: "Foot",
  11773. image: {
  11774. source: "./media/characters/shayla/foot.svg"
  11775. }
  11776. },
  11777. },
  11778. [
  11779. {
  11780. name: "Micro",
  11781. height: math.unit(0.32, "feet")
  11782. },
  11783. {
  11784. name: "Normal",
  11785. height: math.unit(5.24, "feet"),
  11786. default: true
  11787. },
  11788. {
  11789. name: "Macro",
  11790. height: math.unit(492.12, "feet")
  11791. },
  11792. {
  11793. name: "Megamacro",
  11794. height: math.unit(186.41, "miles")
  11795. },
  11796. ]
  11797. ))
  11798. characterMakers.push(() => makeCharacter(
  11799. { name: "Pia Jr." },
  11800. {
  11801. front: {
  11802. height: math.unit(2.2, "m"),
  11803. weight: math.unit(120, "kg"),
  11804. name: "Front",
  11805. image: {
  11806. source: "./media/characters/pia-jr/front.svg",
  11807. extra: 1000 / 970,
  11808. bottom: 0.035
  11809. }
  11810. },
  11811. hand: {
  11812. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11813. name: "Hand",
  11814. image: {
  11815. source: "./media/characters/pia-jr/hand.svg"
  11816. }
  11817. },
  11818. paw: {
  11819. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11820. name: "Paw",
  11821. image: {
  11822. source: "./media/characters/pia-jr/paw.svg"
  11823. }
  11824. },
  11825. },
  11826. [
  11827. {
  11828. name: "Micro",
  11829. height: math.unit(1.2, "cm")
  11830. },
  11831. {
  11832. name: "Normal",
  11833. height: math.unit(2.2, "m"),
  11834. default: true
  11835. },
  11836. {
  11837. name: "Macro",
  11838. height: math.unit(180, "m")
  11839. },
  11840. {
  11841. name: "Megamacro",
  11842. height: math.unit(420, "km")
  11843. },
  11844. ]
  11845. ))
  11846. characterMakers.push(() => makeCharacter(
  11847. { name: "Pia Sr." },
  11848. {
  11849. front: {
  11850. height: math.unit(2, "m"),
  11851. weight: math.unit(115, "kg"),
  11852. name: "Front",
  11853. image: {
  11854. source: "./media/characters/pia-sr/front.svg",
  11855. extra: 760 / 730,
  11856. bottom: 0.015
  11857. }
  11858. },
  11859. back: {
  11860. height: math.unit(2, "m"),
  11861. weight: math.unit(115, "kg"),
  11862. name: "Back",
  11863. image: {
  11864. source: "./media/characters/pia-sr/back.svg",
  11865. extra: 760 / 730,
  11866. bottom: 0.01
  11867. }
  11868. },
  11869. hand: {
  11870. height: math.unit(0.89 * 6.56 / 6, "feet"),
  11871. name: "Hand",
  11872. image: {
  11873. source: "./media/characters/pia-sr/hand.svg"
  11874. }
  11875. },
  11876. foot: {
  11877. height: math.unit(1.83, "feet"),
  11878. name: "Foot",
  11879. image: {
  11880. source: "./media/characters/pia-sr/foot.svg"
  11881. }
  11882. },
  11883. },
  11884. [
  11885. {
  11886. name: "Micro",
  11887. height: math.unit(88, "mm")
  11888. },
  11889. {
  11890. name: "Normal",
  11891. height: math.unit(2, "m"),
  11892. default: true
  11893. },
  11894. {
  11895. name: "Macro",
  11896. height: math.unit(200, "m")
  11897. },
  11898. {
  11899. name: "Megamacro",
  11900. height: math.unit(420, "km")
  11901. },
  11902. ]
  11903. ))
  11904. characterMakers.push(() => makeCharacter(
  11905. { name: "KIBIBYTE" },
  11906. {
  11907. front: {
  11908. height: math.unit(8 + 2 / 12, "feet"),
  11909. weight: math.unit(300, "lb"),
  11910. name: "Front",
  11911. image: {
  11912. source: "./media/characters/kibibyte/front.svg",
  11913. extra: 2221 / 2098,
  11914. bottom: 0.04
  11915. }
  11916. },
  11917. },
  11918. [
  11919. {
  11920. name: "Normal",
  11921. height: math.unit(8 + 2 / 12, "feet"),
  11922. default: true
  11923. },
  11924. {
  11925. name: "Socialable Macro",
  11926. height: math.unit(50, "feet")
  11927. },
  11928. {
  11929. name: "Macro",
  11930. height: math.unit(300, "feet")
  11931. },
  11932. {
  11933. name: "Megamacro",
  11934. height: math.unit(500, "miles")
  11935. },
  11936. ]
  11937. ))
  11938. characterMakers.push(() => makeCharacter(
  11939. { name: "Felix" },
  11940. {
  11941. front: {
  11942. height: math.unit(6, "feet"),
  11943. weight: math.unit(150, "lb"),
  11944. name: "Front",
  11945. image: {
  11946. source: "./media/characters/felix/front.svg",
  11947. extra: 762 / 722,
  11948. bottom: 0.02
  11949. }
  11950. },
  11951. frontClothed: {
  11952. height: math.unit(6, "feet"),
  11953. weight: math.unit(150, "lb"),
  11954. name: "Front (Clothed)",
  11955. image: {
  11956. source: "./media/characters/felix/front-clothed.svg",
  11957. extra: 762 / 722,
  11958. bottom: 0.02
  11959. }
  11960. },
  11961. },
  11962. [
  11963. {
  11964. name: "Normal",
  11965. height: math.unit(6 + 8 / 12, "feet"),
  11966. default: true
  11967. },
  11968. {
  11969. name: "Macro",
  11970. height: math.unit(2600, "feet")
  11971. },
  11972. {
  11973. name: "Megamacro",
  11974. height: math.unit(450, "miles")
  11975. },
  11976. ]
  11977. ))
  11978. characterMakers.push(() => makeCharacter(
  11979. { name: "Tobo" },
  11980. {
  11981. front: {
  11982. height: math.unit(6 + 1 / 12, "feet"),
  11983. weight: math.unit(250, "lb"),
  11984. name: "Front",
  11985. image: {
  11986. source: "./media/characters/tobo/front.svg",
  11987. extra: 608 / 586,
  11988. bottom: 0.023
  11989. }
  11990. },
  11991. back: {
  11992. height: math.unit(6 + 1 / 12, "feet"),
  11993. weight: math.unit(250, "lb"),
  11994. name: "Back",
  11995. image: {
  11996. source: "./media/characters/tobo/back.svg",
  11997. extra: 608 / 586
  11998. }
  11999. },
  12000. },
  12001. [
  12002. {
  12003. name: "Nano",
  12004. height: math.unit(2, "nm")
  12005. },
  12006. {
  12007. name: "Megamicro",
  12008. height: math.unit(0.1, "mm")
  12009. },
  12010. {
  12011. name: "Micro",
  12012. height: math.unit(1, "inch"),
  12013. default: true
  12014. },
  12015. {
  12016. name: "Human-sized",
  12017. height: math.unit(6 + 1 / 12, "feet")
  12018. },
  12019. {
  12020. name: "Macro",
  12021. height: math.unit(250, "feet")
  12022. },
  12023. {
  12024. name: "Megamacro",
  12025. height: math.unit(75, "miles")
  12026. },
  12027. {
  12028. name: "Texas-sized",
  12029. height: math.unit(750, "miles")
  12030. },
  12031. {
  12032. name: "Teramacro",
  12033. height: math.unit(50000, "miles")
  12034. },
  12035. ]
  12036. ))
  12037. characterMakers.push(() => makeCharacter(
  12038. { name: "Danny Kapowsky" },
  12039. {
  12040. front: {
  12041. height: math.unit(6, "feet"),
  12042. weight: math.unit(269, "lb"),
  12043. name: "Front",
  12044. image: {
  12045. source: "./media/characters/danny-kapowsky/front.svg",
  12046. extra: 766 / 736,
  12047. bottom: 0.044
  12048. }
  12049. },
  12050. back: {
  12051. height: math.unit(6, "feet"),
  12052. weight: math.unit(269, "lb"),
  12053. name: "Back",
  12054. image: {
  12055. source: "./media/characters/danny-kapowsky/back.svg",
  12056. extra: 797 / 760,
  12057. bottom: 0.025
  12058. }
  12059. },
  12060. },
  12061. [
  12062. {
  12063. name: "Macro",
  12064. height: math.unit(150, "feet"),
  12065. default: true
  12066. },
  12067. {
  12068. name: "Macro+",
  12069. height: math.unit(200, "feet")
  12070. },
  12071. {
  12072. name: "Macro++",
  12073. height: math.unit(300, "feet")
  12074. },
  12075. {
  12076. name: "Macro+++",
  12077. height: math.unit(400, "feet")
  12078. },
  12079. ]
  12080. ))
  12081. characterMakers.push(() => makeCharacter(
  12082. { name: "Finn" },
  12083. {
  12084. side: {
  12085. height: math.unit(6, "feet"),
  12086. weight: math.unit(170, "lb"),
  12087. name: "Side",
  12088. image: {
  12089. source: "./media/characters/finn/side.svg",
  12090. extra: 1953 / 1807,
  12091. bottom: 0.057
  12092. }
  12093. },
  12094. },
  12095. [
  12096. {
  12097. name: "Megamacro",
  12098. height: math.unit(14445, "feet"),
  12099. default: true
  12100. },
  12101. ]
  12102. ))
  12103. characterMakers.push(() => makeCharacter(
  12104. { name: "Roy" },
  12105. {
  12106. front: {
  12107. height: math.unit(5 + 6 / 12, "feet"),
  12108. weight: math.unit(125, "lb"),
  12109. name: "Front",
  12110. image: {
  12111. source: "./media/characters/roy/front.svg",
  12112. extra: 1,
  12113. bottom: 0.11
  12114. }
  12115. },
  12116. },
  12117. [
  12118. {
  12119. name: "Micro",
  12120. height: math.unit(3, "inches"),
  12121. default: true
  12122. },
  12123. {
  12124. name: "Normal",
  12125. height: math.unit(5 + 6 / 12, "feet")
  12126. },
  12127. {
  12128. name: "Lesser Macro",
  12129. height: math.unit(60, "feet")
  12130. },
  12131. {
  12132. name: "Greater Macro",
  12133. height: math.unit(120, "feet")
  12134. },
  12135. ]
  12136. ))
  12137. characterMakers.push(() => makeCharacter(
  12138. { name: "Aevsivs" },
  12139. {
  12140. front: {
  12141. height: math.unit(6, "feet"),
  12142. weight: math.unit(100, "lb"),
  12143. name: "Front",
  12144. image: {
  12145. source: "./media/characters/aevsivs/front.svg",
  12146. extra: 1,
  12147. bottom: 0.03
  12148. }
  12149. },
  12150. back: {
  12151. height: math.unit(6, "feet"),
  12152. weight: math.unit(100, "lb"),
  12153. name: "Back",
  12154. image: {
  12155. source: "./media/characters/aevsivs/back.svg"
  12156. }
  12157. },
  12158. },
  12159. [
  12160. {
  12161. name: "Micro",
  12162. height: math.unit(2, "inches"),
  12163. default: true
  12164. },
  12165. {
  12166. name: "Normal",
  12167. height: math.unit(5, "feet")
  12168. },
  12169. ]
  12170. ))
  12171. characterMakers.push(() => makeCharacter(
  12172. { name: "Hildegard" },
  12173. {
  12174. front: {
  12175. height: math.unit(5 + 7 / 12, "feet"),
  12176. weight: math.unit(159, "lb"),
  12177. name: "Front",
  12178. image: {
  12179. source: "./media/characters/hildegard/front.svg",
  12180. extra: 312 / 286,
  12181. bottom: 0.005
  12182. }
  12183. },
  12184. },
  12185. [
  12186. {
  12187. name: "Normal",
  12188. height: math.unit(5 + 7 / 12, "feet"),
  12189. default: true
  12190. },
  12191. ]
  12192. ))
  12193. characterMakers.push(() => makeCharacter(
  12194. { name: "Bernard & Wilder" },
  12195. {
  12196. bernard: {
  12197. height: math.unit(2 + 7 / 12, "feet"),
  12198. weight: math.unit(66, "lb"),
  12199. name: "Bernard",
  12200. rename: true,
  12201. image: {
  12202. source: "./media/characters/bernard-wilder/bernard.svg",
  12203. extra: 192 / 128,
  12204. bottom: 0.05
  12205. }
  12206. },
  12207. wilder: {
  12208. height: math.unit(5 + 8 / 12, "feet"),
  12209. weight: math.unit(143, "lb"),
  12210. name: "Wilder",
  12211. rename: true,
  12212. image: {
  12213. source: "./media/characters/bernard-wilder/wilder.svg",
  12214. extra: 361 / 312,
  12215. bottom: 0.02
  12216. }
  12217. },
  12218. },
  12219. [
  12220. {
  12221. name: "Normal",
  12222. height: math.unit(2 + 7 / 12, "feet"),
  12223. default: true
  12224. },
  12225. ]
  12226. ))
  12227. characterMakers.push(() => makeCharacter(
  12228. { name: "Hearth" },
  12229. {
  12230. anthro: {
  12231. height: math.unit(6 + 1 / 12, "feet"),
  12232. weight: math.unit(155, "lb"),
  12233. name: "Anthro",
  12234. image: {
  12235. source: "./media/characters/hearth/anthro.svg",
  12236. extra: 260 / 250,
  12237. bottom: 0.02
  12238. }
  12239. },
  12240. feral: {
  12241. height: math.unit(3.78, "feet"),
  12242. weight: math.unit(35, "kg"),
  12243. name: "Feral",
  12244. image: {
  12245. source: "./media/characters/hearth/feral.svg",
  12246. extra: 153 / 135,
  12247. bottom: 0.03
  12248. }
  12249. },
  12250. },
  12251. [
  12252. {
  12253. name: "Normal",
  12254. height: math.unit(6 + 1 / 12, "feet"),
  12255. default: true
  12256. },
  12257. ]
  12258. ))
  12259. characterMakers.push(() => makeCharacter(
  12260. { name: "Ingrid" },
  12261. {
  12262. front: {
  12263. height: math.unit(6, "feet"),
  12264. weight: math.unit(182, "lb"),
  12265. name: "Front",
  12266. image: {
  12267. source: "./media/characters/ingrid/front.svg",
  12268. extra: 294 / 268,
  12269. bottom: 0.027
  12270. }
  12271. },
  12272. },
  12273. [
  12274. {
  12275. name: "Normal",
  12276. height: math.unit(6, "feet"),
  12277. default: true
  12278. },
  12279. ]
  12280. ))
  12281. characterMakers.push(() => makeCharacter(
  12282. { name: "Malgam" },
  12283. {
  12284. eevee: {
  12285. height: math.unit(2 + 10 / 12, "feet"),
  12286. weight: math.unit(86, "lb"),
  12287. name: "Malgam",
  12288. image: {
  12289. source: "./media/characters/malgam/eevee.svg",
  12290. extra: 218 / 180,
  12291. bottom: 0.2
  12292. }
  12293. },
  12294. sylveon: {
  12295. height: math.unit(4, "feet"),
  12296. weight: math.unit(101, "lb"),
  12297. name: "Future Malgam",
  12298. rename: true,
  12299. image: {
  12300. source: "./media/characters/malgam/sylveon.svg",
  12301. extra: 371 / 325,
  12302. bottom: 0.015
  12303. }
  12304. },
  12305. gigantamax: {
  12306. height: math.unit(50, "feet"),
  12307. name: "Gigantamax Malgam",
  12308. rename: true,
  12309. image: {
  12310. source: "./media/characters/malgam/gigantamax.svg"
  12311. }
  12312. },
  12313. },
  12314. [
  12315. {
  12316. name: "Normal",
  12317. height: math.unit(2 + 10 / 12, "feet"),
  12318. default: true
  12319. },
  12320. ]
  12321. ))
  12322. characterMakers.push(() => makeCharacter(
  12323. { name: "Fleur" },
  12324. {
  12325. front: {
  12326. height: math.unit(5 + 11 / 12, "feet"),
  12327. weight: math.unit(188, "lb"),
  12328. name: "Front",
  12329. image: {
  12330. source: "./media/characters/fleur/front.svg",
  12331. extra: 309 / 283,
  12332. bottom: 0.007
  12333. }
  12334. },
  12335. },
  12336. [
  12337. {
  12338. name: "Normal",
  12339. height: math.unit(5 + 11 / 12, "feet"),
  12340. default: true
  12341. },
  12342. ]
  12343. ))
  12344. characterMakers.push(() => makeCharacter(
  12345. { name: "Jude" },
  12346. {
  12347. front: {
  12348. height: math.unit(5 + 4 / 12, "feet"),
  12349. weight: math.unit(122, "lb"),
  12350. name: "Front",
  12351. image: {
  12352. source: "./media/characters/jude/front.svg",
  12353. extra: 288 / 273,
  12354. bottom: 0.03
  12355. }
  12356. },
  12357. },
  12358. [
  12359. {
  12360. name: "Normal",
  12361. height: math.unit(5 + 4 / 12, "feet"),
  12362. default: true
  12363. },
  12364. ]
  12365. ))
  12366. characterMakers.push(() => makeCharacter(
  12367. { name: "Seara" },
  12368. {
  12369. front: {
  12370. height: math.unit(5 + 11 / 12, "feet"),
  12371. weight: math.unit(190, "lb"),
  12372. name: "Front",
  12373. image: {
  12374. source: "./media/characters/seara/front.svg",
  12375. extra: 1,
  12376. bottom: 0.05
  12377. }
  12378. },
  12379. },
  12380. [
  12381. {
  12382. name: "Normal",
  12383. height: math.unit(5 + 11 / 12, "feet"),
  12384. default: true
  12385. },
  12386. ]
  12387. ))
  12388. characterMakers.push(() => makeCharacter(
  12389. { name: "Caspian" },
  12390. {
  12391. front: {
  12392. height: math.unit(16 + 5 / 12, "feet"),
  12393. weight: math.unit(524, "lb"),
  12394. name: "Front",
  12395. image: {
  12396. source: "./media/characters/caspian/front.svg",
  12397. extra: 1,
  12398. bottom: 0.04
  12399. }
  12400. },
  12401. },
  12402. [
  12403. {
  12404. name: "Normal",
  12405. height: math.unit(16 + 5 / 12, "feet"),
  12406. default: true
  12407. },
  12408. ]
  12409. ))
  12410. characterMakers.push(() => makeCharacter(
  12411. { name: "Mika" },
  12412. {
  12413. front: {
  12414. height: math.unit(5 + 7 / 12, "feet"),
  12415. weight: math.unit(170, "lb"),
  12416. name: "Front",
  12417. image: {
  12418. source: "./media/characters/mika/front.svg",
  12419. extra: 1,
  12420. bottom: 0.016
  12421. }
  12422. },
  12423. },
  12424. [
  12425. {
  12426. name: "Normal",
  12427. height: math.unit(5 + 7 / 12, "feet"),
  12428. default: true
  12429. },
  12430. ]
  12431. ))
  12432. characterMakers.push(() => makeCharacter(
  12433. { name: "Sol" },
  12434. {
  12435. front: {
  12436. height: math.unit(6 + 2 / 12, "feet"),
  12437. weight: math.unit(268, "lb"),
  12438. name: "Front",
  12439. image: {
  12440. source: "./media/characters/sol/front.svg",
  12441. extra: 247 / 231,
  12442. bottom: 0.05
  12443. }
  12444. },
  12445. },
  12446. [
  12447. {
  12448. name: "Normal",
  12449. height: math.unit(6 + 2 / 12, "feet"),
  12450. default: true
  12451. },
  12452. ]
  12453. ))
  12454. characterMakers.push(() => makeCharacter(
  12455. { name: "Umiko" },
  12456. {
  12457. buizel: {
  12458. height: math.unit(2 + 5 / 12, "feet"),
  12459. weight: math.unit(87, "lb"),
  12460. name: "Buizel",
  12461. image: {
  12462. source: "./media/characters/umiko/buizel.svg",
  12463. extra: 172 / 157,
  12464. bottom: 0.01
  12465. }
  12466. },
  12467. floatzel: {
  12468. height: math.unit(5 + 9 / 12, "feet"),
  12469. weight: math.unit(250, "lb"),
  12470. name: "Floatzel",
  12471. image: {
  12472. source: "./media/characters/umiko/floatzel.svg",
  12473. extra: 262 / 248
  12474. }
  12475. },
  12476. },
  12477. [
  12478. {
  12479. name: "Normal",
  12480. height: math.unit(2 + 5 / 12, "feet"),
  12481. default: true
  12482. },
  12483. ]
  12484. ))
  12485. characterMakers.push(() => makeCharacter(
  12486. { name: "Iliac" },
  12487. {
  12488. front: {
  12489. height: math.unit(6 + 2 / 12, "feet"),
  12490. weight: math.unit(146, "lb"),
  12491. name: "Front",
  12492. image: {
  12493. source: "./media/characters/iliac/front.svg",
  12494. extra: 389 / 365,
  12495. bottom: 0.035
  12496. }
  12497. },
  12498. },
  12499. [
  12500. {
  12501. name: "Normal",
  12502. height: math.unit(6 + 2 / 12, "feet"),
  12503. default: true
  12504. },
  12505. ]
  12506. ))
  12507. characterMakers.push(() => makeCharacter(
  12508. { name: "Topaz" },
  12509. {
  12510. front: {
  12511. height: math.unit(6, "feet"),
  12512. weight: math.unit(170, "lb"),
  12513. name: "Front",
  12514. image: {
  12515. source: "./media/characters/topaz/front.svg",
  12516. extra: 317 / 303,
  12517. bottom: 0.055
  12518. }
  12519. },
  12520. },
  12521. [
  12522. {
  12523. name: "Normal",
  12524. height: math.unit(6, "feet"),
  12525. default: true
  12526. },
  12527. ]
  12528. ))
  12529. characterMakers.push(() => makeCharacter(
  12530. { name: "Gabriel" },
  12531. {
  12532. front: {
  12533. height: math.unit(5 + 11 / 12, "feet"),
  12534. weight: math.unit(144, "lb"),
  12535. name: "Front",
  12536. image: {
  12537. source: "./media/characters/gabriel/front.svg",
  12538. extra: 285 / 262,
  12539. bottom: 0.004
  12540. }
  12541. },
  12542. },
  12543. [
  12544. {
  12545. name: "Normal",
  12546. height: math.unit(5 + 11 / 12, "feet"),
  12547. default: true
  12548. },
  12549. ]
  12550. ))
  12551. characterMakers.push(() => makeCharacter(
  12552. { name: "Tempest (Suicune)" },
  12553. {
  12554. side: {
  12555. height: math.unit(6 + 5 / 12, "feet"),
  12556. weight: math.unit(300, "lb"),
  12557. name: "Side",
  12558. image: {
  12559. source: "./media/characters/tempest-suicune/side.svg",
  12560. extra: 195 / 154,
  12561. bottom: 0.04
  12562. }
  12563. },
  12564. },
  12565. [
  12566. {
  12567. name: "Normal",
  12568. height: math.unit(6 + 5 / 12, "feet"),
  12569. default: true
  12570. },
  12571. ]
  12572. ))
  12573. characterMakers.push(() => makeCharacter(
  12574. { name: "Vulcan" },
  12575. {
  12576. front: {
  12577. height: math.unit(7 + 2 / 12, "feet"),
  12578. weight: math.unit(322, "lb"),
  12579. name: "Front",
  12580. image: {
  12581. source: "./media/characters/vulcan/front.svg",
  12582. extra: 154 / 147,
  12583. bottom: 0.04
  12584. }
  12585. },
  12586. },
  12587. [
  12588. {
  12589. name: "Normal",
  12590. height: math.unit(7 + 2 / 12, "feet"),
  12591. default: true
  12592. },
  12593. ]
  12594. ))
  12595. characterMakers.push(() => makeCharacter(
  12596. { name: "Gault" },
  12597. {
  12598. front: {
  12599. height: math.unit(5 + 10 / 12, "feet"),
  12600. weight: math.unit(264, "lb"),
  12601. name: "Front",
  12602. image: {
  12603. source: "./media/characters/gault/front.svg",
  12604. extra: 161 / 140,
  12605. bottom: 0.028
  12606. }
  12607. },
  12608. },
  12609. [
  12610. {
  12611. name: "Normal",
  12612. height: math.unit(5 + 10 / 12, "feet"),
  12613. default: true
  12614. },
  12615. ]
  12616. ))
  12617. characterMakers.push(() => makeCharacter(
  12618. { name: "Shard" },
  12619. {
  12620. front: {
  12621. height: math.unit(6, "feet"),
  12622. weight: math.unit(150, "lb"),
  12623. name: "Front",
  12624. image: {
  12625. source: "./media/characters/shard/front.svg",
  12626. extra: 273 / 238,
  12627. bottom: 0.02
  12628. }
  12629. },
  12630. },
  12631. [
  12632. {
  12633. name: "Normal",
  12634. height: math.unit(3 + 6 / 12, "feet"),
  12635. default: true
  12636. },
  12637. ]
  12638. ))
  12639. characterMakers.push(() => makeCharacter(
  12640. { name: "Ashe" },
  12641. {
  12642. front: {
  12643. height: math.unit(5 + 11 / 12, "feet"),
  12644. weight: math.unit(146, "lb"),
  12645. name: "Front",
  12646. image: {
  12647. source: "./media/characters/ashe/front.svg",
  12648. extra: 400 / 373,
  12649. bottom: 0.01
  12650. }
  12651. },
  12652. },
  12653. [
  12654. {
  12655. name: "Normal",
  12656. height: math.unit(5 + 11 / 12, "feet"),
  12657. default: true
  12658. },
  12659. ]
  12660. ))
  12661. characterMakers.push(() => makeCharacter(
  12662. { name: "Beatrix" },
  12663. {
  12664. front: {
  12665. height: math.unit(5 + 5 / 12, "feet"),
  12666. weight: math.unit(135, "lb"),
  12667. name: "Front",
  12668. image: {
  12669. source: "./media/characters/beatrix/front.svg",
  12670. extra: 392 / 379,
  12671. bottom: 0.01
  12672. }
  12673. },
  12674. },
  12675. [
  12676. {
  12677. name: "Normal",
  12678. height: math.unit(6, "feet"),
  12679. default: true
  12680. },
  12681. ]
  12682. ))
  12683. characterMakers.push(() => makeCharacter(
  12684. { name: "Ignatius" },
  12685. {
  12686. front: {
  12687. height: math.unit(6, "feet"),
  12688. weight: math.unit(150, "lb"),
  12689. name: "Front",
  12690. image: {
  12691. source: "./media/characters/ignatius/front.svg",
  12692. extra: 245 / 222,
  12693. bottom: 0.01
  12694. }
  12695. },
  12696. },
  12697. [
  12698. {
  12699. name: "Normal",
  12700. height: math.unit(5 + 5 / 12, "feet"),
  12701. default: true
  12702. },
  12703. ]
  12704. ))
  12705. characterMakers.push(() => makeCharacter(
  12706. { name: "Mei Li" },
  12707. {
  12708. front: {
  12709. height: math.unit(6 + 2 / 12, "feet"),
  12710. weight: math.unit(138, "lb"),
  12711. name: "Front",
  12712. image: {
  12713. source: "./media/characters/mei-li/front.svg",
  12714. extra: 237 / 229,
  12715. bottom: 0.03
  12716. }
  12717. },
  12718. },
  12719. [
  12720. {
  12721. name: "Normal",
  12722. height: math.unit(6 + 2 / 12, "feet"),
  12723. default: true
  12724. },
  12725. ]
  12726. ))
  12727. characterMakers.push(() => makeCharacter(
  12728. { name: "Puru" },
  12729. {
  12730. front: {
  12731. height: math.unit(2 + 4 / 12, "feet"),
  12732. weight: math.unit(62, "lb"),
  12733. name: "Front",
  12734. image: {
  12735. source: "./media/characters/puru/front.svg",
  12736. extra: 206 / 149,
  12737. bottom: 0.06
  12738. }
  12739. },
  12740. },
  12741. [
  12742. {
  12743. name: "Normal",
  12744. height: math.unit(2 + 4 / 12, "feet"),
  12745. default: true
  12746. },
  12747. ]
  12748. ))
  12749. characterMakers.push(() => makeCharacter(
  12750. { name: "Kee" },
  12751. {
  12752. taur: {
  12753. height: math.unit(11, "feet"),
  12754. weight: math.unit(500, "lb"),
  12755. name: "Taur",
  12756. image: {
  12757. source: "./media/characters/kee/taur.svg",
  12758. extra: 1,
  12759. bottom: 0.04
  12760. }
  12761. },
  12762. },
  12763. [
  12764. {
  12765. name: "Normal",
  12766. height: math.unit(11, "feet"),
  12767. default: true
  12768. },
  12769. ]
  12770. ))
  12771. characterMakers.push(() => makeCharacter(
  12772. { name: "Cobalt (Dracha)" },
  12773. {
  12774. anthro: {
  12775. height: math.unit(7, "feet"),
  12776. weight: math.unit(190, "lb"),
  12777. name: "Anthro",
  12778. image: {
  12779. source: "./media/characters/cobalt-dracha/anthro.svg",
  12780. extra: 231 / 225,
  12781. bottom: 0.04
  12782. }
  12783. },
  12784. feral: {
  12785. height: math.unit(9 + 7 / 12, "feet"),
  12786. weight: math.unit(294, "lb"),
  12787. name: "Feral",
  12788. image: {
  12789. source: "./media/characters/cobalt-dracha/feral.svg",
  12790. extra: 692 / 633,
  12791. bottom: 0.05
  12792. }
  12793. },
  12794. },
  12795. [
  12796. {
  12797. name: "Normal",
  12798. height: math.unit(7, "feet"),
  12799. default: true
  12800. },
  12801. ]
  12802. ))
  12803. characterMakers.push(() => makeCharacter(
  12804. { name: "Java" },
  12805. {
  12806. fallen: {
  12807. height: math.unit(11 + 8 / 12, "feet"),
  12808. weight: math.unit(485, "lb"),
  12809. name: "Java (Fallen)",
  12810. rename: true,
  12811. image: {
  12812. source: "./media/characters/java/fallen.svg",
  12813. extra: 226 / 208,
  12814. bottom: 0.005
  12815. }
  12816. },
  12817. godkin: {
  12818. height: math.unit(10 + 6 / 12, "feet"),
  12819. weight: math.unit(328, "lb"),
  12820. name: "Java (Godkin)",
  12821. rename: true,
  12822. image: {
  12823. source: "./media/characters/java/godkin.svg",
  12824. extra: 270 / 262,
  12825. bottom: 0.02
  12826. }
  12827. },
  12828. },
  12829. [
  12830. {
  12831. name: "Normal",
  12832. height: math.unit(11 + 8 / 12, "feet"),
  12833. default: true
  12834. },
  12835. ]
  12836. ))
  12837. characterMakers.push(() => makeCharacter(
  12838. { name: "Skoll" },
  12839. {
  12840. front: {
  12841. height: math.unit(7 + 8 / 12, "feet"),
  12842. weight: math.unit(320, "lb"),
  12843. name: "Front",
  12844. image: {
  12845. source: "./media/characters/skoll/front.svg",
  12846. extra: 232 / 220,
  12847. bottom: 0.02
  12848. }
  12849. },
  12850. },
  12851. [
  12852. {
  12853. name: "Normal",
  12854. height: math.unit(7 + 8 / 12, "feet"),
  12855. default: true
  12856. },
  12857. ]
  12858. ))
  12859. characterMakers.push(() => makeCharacter(
  12860. { name: "Purna" },
  12861. {
  12862. front: {
  12863. height: math.unit(5 + 9 / 12, "feet"),
  12864. weight: math.unit(170, "lb"),
  12865. name: "Front",
  12866. image: {
  12867. source: "./media/characters/purna/front.svg",
  12868. extra: 239 / 229,
  12869. bottom: 0.01
  12870. }
  12871. },
  12872. },
  12873. [
  12874. {
  12875. name: "Normal",
  12876. height: math.unit(5 + 9 / 12, "feet"),
  12877. default: true
  12878. },
  12879. ]
  12880. ))
  12881. characterMakers.push(() => makeCharacter(
  12882. { name: "Kuva" },
  12883. {
  12884. front: {
  12885. height: math.unit(5 + 9 / 12, "feet"),
  12886. weight: math.unit(142, "lb"),
  12887. name: "Front",
  12888. image: {
  12889. source: "./media/characters/kuva/front.svg",
  12890. extra: 281 / 271,
  12891. bottom: 0.006
  12892. }
  12893. },
  12894. },
  12895. [
  12896. {
  12897. name: "Normal",
  12898. height: math.unit(5 + 9 / 12, "feet"),
  12899. default: true
  12900. },
  12901. ]
  12902. ))
  12903. characterMakers.push(() => makeCharacter(
  12904. { name: "Embra" },
  12905. {
  12906. anthro: {
  12907. height: math.unit(9 + 2 / 12, "feet"),
  12908. weight: math.unit(270, "lb"),
  12909. name: "Anthro",
  12910. image: {
  12911. source: "./media/characters/embra/anthro.svg",
  12912. extra: 200 / 187,
  12913. bottom: 0.02
  12914. }
  12915. },
  12916. feral: {
  12917. height: math.unit(18 + 8 / 12, "feet"),
  12918. weight: math.unit(576, "lb"),
  12919. name: "Feral",
  12920. image: {
  12921. source: "./media/characters/embra/feral.svg",
  12922. extra: 152 / 137,
  12923. bottom: 0.037
  12924. }
  12925. },
  12926. },
  12927. [
  12928. {
  12929. name: "Normal",
  12930. height: math.unit(9 + 2 / 12, "feet"),
  12931. default: true
  12932. },
  12933. ]
  12934. ))
  12935. characterMakers.push(() => makeCharacter(
  12936. { name: "Grottos" },
  12937. {
  12938. anthro: {
  12939. height: math.unit(10 + 9 / 12, "feet"),
  12940. weight: math.unit(224, "lb"),
  12941. name: "Anthro",
  12942. image: {
  12943. source: "./media/characters/grottos/anthro.svg",
  12944. extra: 350 / 332,
  12945. bottom: 0.045
  12946. }
  12947. },
  12948. feral: {
  12949. height: math.unit(20 + 7 / 12, "feet"),
  12950. weight: math.unit(629, "lb"),
  12951. name: "Feral",
  12952. image: {
  12953. source: "./media/characters/grottos/feral.svg",
  12954. extra: 207 / 190,
  12955. bottom: 0.05
  12956. }
  12957. },
  12958. },
  12959. [
  12960. {
  12961. name: "Normal",
  12962. height: math.unit(10 + 9 / 12, "feet"),
  12963. default: true
  12964. },
  12965. ]
  12966. ))
  12967. characterMakers.push(() => makeCharacter(
  12968. { name: "Frifna" },
  12969. {
  12970. anthro: {
  12971. height: math.unit(9 + 6 / 12, "feet"),
  12972. weight: math.unit(298, "lb"),
  12973. name: "Anthro",
  12974. image: {
  12975. source: "./media/characters/frifna/anthro.svg",
  12976. extra: 282 / 269,
  12977. bottom: 0.015
  12978. }
  12979. },
  12980. feral: {
  12981. height: math.unit(16 + 2 / 12, "feet"),
  12982. weight: math.unit(624, "lb"),
  12983. name: "Feral",
  12984. image: {
  12985. source: "./media/characters/frifna/feral.svg"
  12986. }
  12987. },
  12988. },
  12989. [
  12990. {
  12991. name: "Normal",
  12992. height: math.unit(9 + 6 / 12, "feet"),
  12993. default: true
  12994. },
  12995. ]
  12996. ))
  12997. characterMakers.push(() => makeCharacter(
  12998. { name: "Elise" },
  12999. {
  13000. front: {
  13001. height: math.unit(6 + 2 / 12, "feet"),
  13002. weight: math.unit(168, "lb"),
  13003. name: "Front",
  13004. image: {
  13005. source: "./media/characters/elise/front.svg",
  13006. extra: 276 / 271
  13007. }
  13008. },
  13009. },
  13010. [
  13011. {
  13012. name: "Normal",
  13013. height: math.unit(6 + 2 / 12, "feet"),
  13014. default: true
  13015. },
  13016. ]
  13017. ))
  13018. characterMakers.push(() => makeCharacter(
  13019. { name: "Glade" },
  13020. {
  13021. front: {
  13022. height: math.unit(5 + 10 / 12, "feet"),
  13023. weight: math.unit(210, "lb"),
  13024. name: "Front",
  13025. image: {
  13026. source: "./media/characters/glade/front.svg",
  13027. extra: 258 / 247,
  13028. bottom: 0.008
  13029. }
  13030. },
  13031. },
  13032. [
  13033. {
  13034. name: "Normal",
  13035. height: math.unit(5 + 10 / 12, "feet"),
  13036. default: true
  13037. },
  13038. ]
  13039. ))
  13040. characterMakers.push(() => makeCharacter(
  13041. { name: "Rina" },
  13042. {
  13043. front: {
  13044. height: math.unit(5 + 10 / 12, "feet"),
  13045. weight: math.unit(129, "lb"),
  13046. name: "Front",
  13047. image: {
  13048. source: "./media/characters/rina/front.svg",
  13049. extra: 266 / 255,
  13050. bottom: 0.005
  13051. }
  13052. },
  13053. },
  13054. [
  13055. {
  13056. name: "Normal",
  13057. height: math.unit(5 + 10 / 12, "feet"),
  13058. default: true
  13059. },
  13060. ]
  13061. ))
  13062. characterMakers.push(() => makeCharacter(
  13063. { name: "Veronica" },
  13064. {
  13065. front: {
  13066. height: math.unit(6 + 1 / 12, "feet"),
  13067. weight: math.unit(192, "lb"),
  13068. name: "Front",
  13069. image: {
  13070. source: "./media/characters/veronica/front.svg",
  13071. extra: 319 / 309,
  13072. bottom: 0.005
  13073. }
  13074. },
  13075. },
  13076. [
  13077. {
  13078. name: "Normal",
  13079. height: math.unit(6 + 1 / 12, "feet"),
  13080. default: true
  13081. },
  13082. ]
  13083. ))
  13084. characterMakers.push(() => makeCharacter(
  13085. { name: "Braxton" },
  13086. {
  13087. front: {
  13088. height: math.unit(9 + 3 / 12, "feet"),
  13089. weight: math.unit(1100, "lb"),
  13090. name: "Front",
  13091. image: {
  13092. source: "./media/characters/braxton/front.svg",
  13093. extra: 1057 / 984,
  13094. bottom: 0.05
  13095. }
  13096. },
  13097. },
  13098. [
  13099. {
  13100. name: "Normal",
  13101. height: math.unit(9 + 3 / 12, "feet")
  13102. },
  13103. {
  13104. name: "Giant",
  13105. height: math.unit(300, "feet"),
  13106. default: true
  13107. },
  13108. {
  13109. name: "Macro",
  13110. height: math.unit(700, "feet")
  13111. },
  13112. {
  13113. name: "Megamacro",
  13114. height: math.unit(6000, "feet")
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "Blue Feyonics" },
  13120. {
  13121. front: {
  13122. height: math.unit(6 + 7 / 12, "feet"),
  13123. weight: math.unit(150, "lb"),
  13124. name: "Front",
  13125. image: {
  13126. source: "./media/characters/blue-feyonics/front.svg",
  13127. extra: 1403 / 1306,
  13128. bottom: 0.047
  13129. }
  13130. },
  13131. },
  13132. [
  13133. {
  13134. name: "Normal",
  13135. height: math.unit(6 + 7 / 12, "feet"),
  13136. default: true
  13137. },
  13138. ]
  13139. ))
  13140. characterMakers.push(() => makeCharacter(
  13141. { name: "Maxwell" },
  13142. {
  13143. front: {
  13144. height: math.unit(1.8, "meters"),
  13145. weight: math.unit(60, "kg"),
  13146. name: "Front",
  13147. image: {
  13148. source: "./media/characters/maxwell/front.svg",
  13149. extra: 2060 / 1873
  13150. }
  13151. },
  13152. },
  13153. [
  13154. {
  13155. name: "Micro",
  13156. height: math.unit(1, "mm")
  13157. },
  13158. {
  13159. name: "Normal",
  13160. height: math.unit(1.8, "meter"),
  13161. default: true
  13162. },
  13163. {
  13164. name: "Macro",
  13165. height: math.unit(30, "meters")
  13166. },
  13167. {
  13168. name: "Megamacro",
  13169. height: math.unit(10, "km")
  13170. },
  13171. ]
  13172. ))
  13173. characterMakers.push(() => makeCharacter(
  13174. { name: "Jack" },
  13175. {
  13176. front: {
  13177. height: math.unit(6, "feet"),
  13178. weight: math.unit(150, "lb"),
  13179. name: "Front",
  13180. image: {
  13181. source: "./media/characters/jack/front.svg",
  13182. extra: 1754 / 1640,
  13183. bottom: 0.01
  13184. }
  13185. },
  13186. },
  13187. [
  13188. {
  13189. name: "Normal",
  13190. height: math.unit(80000, "feet"),
  13191. default: true
  13192. },
  13193. {
  13194. name: "Max size",
  13195. height: math.unit(10, "lightyears")
  13196. },
  13197. ]
  13198. ))
  13199. characterMakers.push(() => makeCharacter(
  13200. { name: "Cafat" },
  13201. {
  13202. upright: {
  13203. height: math.unit(7, "feet"),
  13204. weight: math.unit(170, "lb"),
  13205. name: "Upright",
  13206. image: {
  13207. source: "./media/characters/cafat/upright.svg",
  13208. bottom: 0.01
  13209. }
  13210. },
  13211. uprightFull: {
  13212. height: math.unit(7, "feet"),
  13213. weight: math.unit(170, "lb"),
  13214. name: "Upright (Full)",
  13215. image: {
  13216. source: "./media/characters/cafat/upright-full.svg",
  13217. bottom: 0.01
  13218. }
  13219. },
  13220. side: {
  13221. height: math.unit(5, "feet"),
  13222. weight: math.unit(150, "lb"),
  13223. name: "Side",
  13224. image: {
  13225. source: "./media/characters/cafat/side.svg"
  13226. }
  13227. },
  13228. },
  13229. [
  13230. {
  13231. name: "Small",
  13232. height: math.unit(7, "feet"),
  13233. default: true
  13234. },
  13235. {
  13236. name: "Large",
  13237. height: math.unit(15.5, "feet")
  13238. },
  13239. ]
  13240. ))
  13241. characterMakers.push(() => makeCharacter(
  13242. { name: "Verin Raharra" },
  13243. {
  13244. front: {
  13245. height: math.unit(6, "feet"),
  13246. weight: math.unit(150, "lb"),
  13247. name: "Front",
  13248. image: {
  13249. source: "./media/characters/verin-raharra/front.svg",
  13250. extra: 5019 / 4835,
  13251. bottom: 0.023
  13252. }
  13253. },
  13254. },
  13255. [
  13256. {
  13257. name: "Normal",
  13258. height: math.unit(7 + 5 / 12, "feet"),
  13259. default: true
  13260. },
  13261. {
  13262. name: "Upsized",
  13263. height: math.unit(20, "feet")
  13264. },
  13265. ]
  13266. ))
  13267. characterMakers.push(() => makeCharacter(
  13268. { name: "Nakata" },
  13269. {
  13270. front: {
  13271. height: math.unit(7, "feet"),
  13272. weight: math.unit(230, "lb"),
  13273. name: "Front",
  13274. image: {
  13275. source: "./media/characters/nakata/front.svg",
  13276. extra: 1.005,
  13277. bottom: 0.01
  13278. }
  13279. },
  13280. },
  13281. [
  13282. {
  13283. name: "Normal",
  13284. height: math.unit(7, "feet"),
  13285. default: true
  13286. },
  13287. {
  13288. name: "Big",
  13289. height: math.unit(14, "feet")
  13290. },
  13291. {
  13292. name: "Macro",
  13293. height: math.unit(400, "feet")
  13294. },
  13295. ]
  13296. ))
  13297. characterMakers.push(() => makeCharacter(
  13298. { name: "Lily" },
  13299. {
  13300. front: {
  13301. height: math.unit(4.91, "feet"),
  13302. weight: math.unit(100, "lb"),
  13303. name: "Front",
  13304. image: {
  13305. source: "./media/characters/lily/front.svg",
  13306. extra: 1585 / 1415,
  13307. bottom: 0.02
  13308. }
  13309. },
  13310. },
  13311. [
  13312. {
  13313. name: "Normal",
  13314. height: math.unit(4.91, "feet"),
  13315. default: true
  13316. },
  13317. ]
  13318. ))
  13319. characterMakers.push(() => makeCharacter(
  13320. { name: "Sheila" },
  13321. {
  13322. laying: {
  13323. height: math.unit(4 + 4 / 12, "feet"),
  13324. weight: math.unit(600, "lb"),
  13325. name: "Laying",
  13326. image: {
  13327. source: "./media/characters/sheila/laying.svg",
  13328. extra: 1333 / 1265,
  13329. bottom: 0.16
  13330. }
  13331. },
  13332. },
  13333. [
  13334. {
  13335. name: "Normal",
  13336. height: math.unit(4 + 4 / 12, "feet"),
  13337. default: true
  13338. },
  13339. ]
  13340. ))
  13341. characterMakers.push(() => makeCharacter(
  13342. { name: "Sax" },
  13343. {
  13344. front: {
  13345. height: math.unit(6, "feet"),
  13346. weight: math.unit(190, "lb"),
  13347. name: "Front",
  13348. image: {
  13349. source: "./media/characters/sax/front.svg",
  13350. extra: 1187 / 973,
  13351. bottom: 0.042
  13352. }
  13353. },
  13354. },
  13355. [
  13356. {
  13357. name: "Micro",
  13358. height: math.unit(4, "inches"),
  13359. default: true
  13360. },
  13361. ]
  13362. ))
  13363. characterMakers.push(() => makeCharacter(
  13364. { name: "Pandora" },
  13365. {
  13366. front: {
  13367. height: math.unit(6, "feet"),
  13368. weight: math.unit(150, "lb"),
  13369. name: "Front",
  13370. image: {
  13371. source: "./media/characters/pandora/front.svg",
  13372. extra: 2720 / 2556,
  13373. bottom: 0.015
  13374. }
  13375. },
  13376. back: {
  13377. height: math.unit(6, "feet"),
  13378. weight: math.unit(150, "lb"),
  13379. name: "Back",
  13380. image: {
  13381. source: "./media/characters/pandora/back.svg",
  13382. extra: 2720 / 2556,
  13383. bottom: 0.01
  13384. }
  13385. },
  13386. beans: {
  13387. height: math.unit(6 / 8, "feet"),
  13388. name: "Beans",
  13389. image: {
  13390. source: "./media/characters/pandora/beans.svg"
  13391. }
  13392. },
  13393. skirt: {
  13394. height: math.unit(6, "feet"),
  13395. weight: math.unit(150, "lb"),
  13396. name: "Skirt",
  13397. image: {
  13398. source: "./media/characters/pandora/skirt.svg",
  13399. extra: 1622 / 1525,
  13400. bottom: 0.015
  13401. }
  13402. },
  13403. hoodie: {
  13404. height: math.unit(6, "feet"),
  13405. weight: math.unit(150, "lb"),
  13406. name: "Hoodie",
  13407. image: {
  13408. source: "./media/characters/pandora/hoodie.svg",
  13409. extra: 1622 / 1525,
  13410. bottom: 0.015
  13411. }
  13412. },
  13413. casual: {
  13414. height: math.unit(6, "feet"),
  13415. weight: math.unit(150, "lb"),
  13416. name: "Casual",
  13417. image: {
  13418. source: "./media/characters/pandora/casual.svg",
  13419. extra: 1622 / 1525,
  13420. bottom: 0.015
  13421. }
  13422. },
  13423. },
  13424. [
  13425. {
  13426. name: "Normal",
  13427. height: math.unit(6, "feet")
  13428. },
  13429. {
  13430. name: "Big Steppy",
  13431. height: math.unit(1, "km"),
  13432. default: true
  13433. },
  13434. ]
  13435. ))
  13436. characterMakers.push(() => makeCharacter(
  13437. { name: "Venio Darcony" },
  13438. {
  13439. side: {
  13440. height: math.unit(10, "feet"),
  13441. weight: math.unit(800, "kg"),
  13442. name: "Side",
  13443. image: {
  13444. source: "./media/characters/venio-darcony/side.svg",
  13445. extra: 1373 / 1003,
  13446. bottom: 0.037
  13447. }
  13448. },
  13449. front: {
  13450. height: math.unit(19, "feet"),
  13451. weight: math.unit(800, "kg"),
  13452. name: "Front",
  13453. image: {
  13454. source: "./media/characters/venio-darcony/front.svg"
  13455. }
  13456. },
  13457. back: {
  13458. height: math.unit(19, "feet"),
  13459. weight: math.unit(800, "kg"),
  13460. name: "Back",
  13461. image: {
  13462. source: "./media/characters/venio-darcony/back.svg"
  13463. }
  13464. },
  13465. },
  13466. [
  13467. {
  13468. name: "Normal",
  13469. height: math.unit(10, "feet")
  13470. },
  13471. {
  13472. name: "Macro",
  13473. height: math.unit(130, "feet"),
  13474. default: true
  13475. },
  13476. {
  13477. name: "Macro+",
  13478. height: math.unit(240, "feet")
  13479. },
  13480. ]
  13481. ))
  13482. characterMakers.push(() => makeCharacter(
  13483. { name: "Veski" },
  13484. {
  13485. front: {
  13486. height: math.unit(6, "feet"),
  13487. weight: math.unit(150, "lb"),
  13488. name: "Front",
  13489. image: {
  13490. source: "./media/characters/veski/front.svg",
  13491. extra: 1299 / 1225,
  13492. bottom: 0.04
  13493. }
  13494. },
  13495. back: {
  13496. height: math.unit(6, "feet"),
  13497. weight: math.unit(150, "lb"),
  13498. name: "Back",
  13499. image: {
  13500. source: "./media/characters/veski/back.svg",
  13501. extra: 1299 / 1225,
  13502. bottom: 0.008
  13503. }
  13504. },
  13505. maw: {
  13506. height: math.unit(1.5 * 1.21, "feet"),
  13507. name: "Maw",
  13508. image: {
  13509. source: "./media/characters/veski/maw.svg"
  13510. }
  13511. },
  13512. },
  13513. [
  13514. {
  13515. name: "Macro",
  13516. height: math.unit(2, "km"),
  13517. default: true
  13518. },
  13519. ]
  13520. ))
  13521. characterMakers.push(() => makeCharacter(
  13522. { name: "Isabelle" },
  13523. {
  13524. front: {
  13525. height: math.unit(5 + 7 / 12, "feet"),
  13526. name: "Front",
  13527. image: {
  13528. source: "./media/characters/isabelle/front.svg",
  13529. extra: 2130 / 1976,
  13530. bottom: 0.05
  13531. }
  13532. },
  13533. },
  13534. [
  13535. {
  13536. name: "Supermicro",
  13537. height: math.unit(10, "micrometers")
  13538. },
  13539. {
  13540. name: "Micro",
  13541. height: math.unit(1, "inch")
  13542. },
  13543. {
  13544. name: "Tiny",
  13545. height: math.unit(5, "inches")
  13546. },
  13547. {
  13548. name: "Standard",
  13549. height: math.unit(5 + 7 / 12, "inches")
  13550. },
  13551. {
  13552. name: "Macro",
  13553. height: math.unit(80, "meters"),
  13554. default: true
  13555. },
  13556. {
  13557. name: "Megamacro",
  13558. height: math.unit(250, "meters")
  13559. },
  13560. {
  13561. name: "Gigamacro",
  13562. height: math.unit(5, "km")
  13563. },
  13564. {
  13565. name: "Cosmic",
  13566. height: math.unit(2.5e6, "miles")
  13567. },
  13568. ]
  13569. ))
  13570. characterMakers.push(() => makeCharacter(
  13571. { name: "Hanzo" },
  13572. {
  13573. front: {
  13574. height: math.unit(6, "feet"),
  13575. weight: math.unit(150, "lb"),
  13576. name: "Front",
  13577. image: {
  13578. source: "./media/characters/hanzo/front.svg",
  13579. extra: 374 / 344,
  13580. bottom: 0.02
  13581. }
  13582. },
  13583. },
  13584. [
  13585. {
  13586. name: "Normal",
  13587. height: math.unit(8, "feet"),
  13588. default: true
  13589. },
  13590. ]
  13591. ))
  13592. characterMakers.push(() => makeCharacter(
  13593. { name: "Anna" },
  13594. {
  13595. front: {
  13596. height: math.unit(7, "feet"),
  13597. weight: math.unit(130, "lb"),
  13598. name: "Front",
  13599. image: {
  13600. source: "./media/characters/anna/front.svg",
  13601. extra: 169 / 145,
  13602. bottom: 0.06
  13603. }
  13604. },
  13605. full: {
  13606. height: math.unit(4.96, "feet"),
  13607. weight: math.unit(220, "lb"),
  13608. name: "Full",
  13609. image: {
  13610. source: "./media/characters/anna/full.svg",
  13611. extra: 138 / 114,
  13612. bottom: 0.15
  13613. }
  13614. },
  13615. tongue: {
  13616. height: math.unit(2.53, "feet"),
  13617. name: "Tongue",
  13618. image: {
  13619. source: "./media/characters/anna/tongue.svg"
  13620. }
  13621. },
  13622. },
  13623. [
  13624. {
  13625. name: "Normal",
  13626. height: math.unit(7, "feet"),
  13627. default: true
  13628. },
  13629. ]
  13630. ))
  13631. characterMakers.push(() => makeCharacter(
  13632. { name: "Ian Corvid" },
  13633. {
  13634. front: {
  13635. height: math.unit(7, "feet"),
  13636. weight: math.unit(150, "lb"),
  13637. name: "Front",
  13638. image: {
  13639. source: "./media/characters/ian-corvid/front.svg",
  13640. extra: 150 / 142,
  13641. bottom: 0.02
  13642. }
  13643. },
  13644. back: {
  13645. height: math.unit(7, "feet"),
  13646. weight: math.unit(150, "lb"),
  13647. name: "Back",
  13648. image: {
  13649. source: "./media/characters/ian-corvid/back.svg",
  13650. extra: 150 / 143,
  13651. bottom: 0.01
  13652. }
  13653. },
  13654. stomping: {
  13655. height: math.unit(7, "feet"),
  13656. weight: math.unit(150, "lb"),
  13657. name: "Stomping",
  13658. image: {
  13659. source: "./media/characters/ian-corvid/stomping.svg",
  13660. extra: 76 / 72
  13661. }
  13662. },
  13663. sitting: {
  13664. height: math.unit(7 / 1.8, "feet"),
  13665. weight: math.unit(150, "lb"),
  13666. name: "Sitting",
  13667. image: {
  13668. source: "./media/characters/ian-corvid/sitting.svg",
  13669. extra: 1400 / 1269,
  13670. bottom: 0.15
  13671. }
  13672. },
  13673. },
  13674. [
  13675. {
  13676. name: "Tiny Microw",
  13677. height: math.unit(1, "inch")
  13678. },
  13679. {
  13680. name: "Microw",
  13681. height: math.unit(6, "inches")
  13682. },
  13683. {
  13684. name: "Crow",
  13685. height: math.unit(7 + 1 / 12, "feet"),
  13686. default: true
  13687. },
  13688. {
  13689. name: "Macrow",
  13690. height: math.unit(176, "feet")
  13691. },
  13692. ]
  13693. ))
  13694. characterMakers.push(() => makeCharacter(
  13695. { name: "Natalie Kellon" },
  13696. {
  13697. front: {
  13698. height: math.unit(5 + 7 / 12, "feet"),
  13699. weight: math.unit(147, "lb"),
  13700. name: "Front",
  13701. image: {
  13702. source: "./media/characters/natalie-kellon/front.svg",
  13703. extra: 1214 / 1141,
  13704. bottom: 0.02
  13705. }
  13706. },
  13707. },
  13708. [
  13709. {
  13710. name: "Micro",
  13711. height: math.unit(1 / 16, "inch")
  13712. },
  13713. {
  13714. name: "Tiny",
  13715. height: math.unit(4, "inches")
  13716. },
  13717. {
  13718. name: "Normal",
  13719. height: math.unit(5 + 7 / 12, "feet"),
  13720. default: true
  13721. },
  13722. {
  13723. name: "Amazon",
  13724. height: math.unit(12, "feet")
  13725. },
  13726. {
  13727. name: "Giantess",
  13728. height: math.unit(160, "meters")
  13729. },
  13730. {
  13731. name: "Titaness",
  13732. height: math.unit(800, "meters")
  13733. },
  13734. ]
  13735. ))
  13736. characterMakers.push(() => makeCharacter(
  13737. { name: "Alluria" },
  13738. {
  13739. front: {
  13740. height: math.unit(6, "feet"),
  13741. weight: math.unit(150, "lb"),
  13742. name: "Front",
  13743. image: {
  13744. source: "./media/characters/alluria/front.svg",
  13745. extra: 806 / 738,
  13746. bottom: 0.01
  13747. }
  13748. },
  13749. side: {
  13750. height: math.unit(6, "feet"),
  13751. weight: math.unit(150, "lb"),
  13752. name: "Side",
  13753. image: {
  13754. source: "./media/characters/alluria/side.svg",
  13755. extra: 800 / 750,
  13756. }
  13757. },
  13758. back: {
  13759. height: math.unit(6, "feet"),
  13760. weight: math.unit(150, "lb"),
  13761. name: "Back",
  13762. image: {
  13763. source: "./media/characters/alluria/back.svg",
  13764. extra: 806 / 738,
  13765. }
  13766. },
  13767. frontMaid: {
  13768. height: math.unit(6, "feet"),
  13769. weight: math.unit(150, "lb"),
  13770. name: "Front (Maid)",
  13771. image: {
  13772. source: "./media/characters/alluria/front-maid.svg",
  13773. extra: 806 / 738,
  13774. bottom: 0.01
  13775. }
  13776. },
  13777. sideMaid: {
  13778. height: math.unit(6, "feet"),
  13779. weight: math.unit(150, "lb"),
  13780. name: "Side (Maid)",
  13781. image: {
  13782. source: "./media/characters/alluria/side-maid.svg",
  13783. extra: 800 / 750,
  13784. bottom: 0.005
  13785. }
  13786. },
  13787. backMaid: {
  13788. height: math.unit(6, "feet"),
  13789. weight: math.unit(150, "lb"),
  13790. name: "Back (Maid)",
  13791. image: {
  13792. source: "./media/characters/alluria/back-maid.svg",
  13793. extra: 806 / 738,
  13794. }
  13795. },
  13796. },
  13797. [
  13798. {
  13799. name: "Micro",
  13800. height: math.unit(6, "inches"),
  13801. default: true
  13802. },
  13803. ]
  13804. ))
  13805. characterMakers.push(() => makeCharacter(
  13806. { name: "Kyle" },
  13807. {
  13808. front: {
  13809. height: math.unit(6, "feet"),
  13810. weight: math.unit(150, "lb"),
  13811. name: "Front",
  13812. image: {
  13813. source: "./media/characters/kyle/front.svg",
  13814. extra: 1069 / 962,
  13815. bottom: 77.228 / 1727.45
  13816. }
  13817. },
  13818. },
  13819. [
  13820. {
  13821. name: "Macro",
  13822. height: math.unit(150, "feet"),
  13823. default: true
  13824. },
  13825. ]
  13826. ))
  13827. characterMakers.push(() => makeCharacter(
  13828. { name: "Duncan" },
  13829. {
  13830. front: {
  13831. height: math.unit(6, "feet"),
  13832. weight: math.unit(300, "lb"),
  13833. name: "Front",
  13834. image: {
  13835. source: "./media/characters/duncan/front.svg",
  13836. extra: 1650 / 1482,
  13837. bottom: 0.05
  13838. }
  13839. },
  13840. },
  13841. [
  13842. {
  13843. name: "Macro",
  13844. height: math.unit(100, "feet"),
  13845. default: true
  13846. },
  13847. ]
  13848. ))
  13849. characterMakers.push(() => makeCharacter(
  13850. { name: "Memory" },
  13851. {
  13852. front: {
  13853. height: math.unit(5 + 4 / 12, "feet"),
  13854. weight: math.unit(220, "lb"),
  13855. name: "Front",
  13856. image: {
  13857. source: "./media/characters/memory/front.svg",
  13858. extra: 3641 / 3545,
  13859. bottom: 0.03
  13860. }
  13861. },
  13862. back: {
  13863. height: math.unit(5 + 4 / 12, "feet"),
  13864. weight: math.unit(220, "lb"),
  13865. name: "Back",
  13866. image: {
  13867. source: "./media/characters/memory/back.svg",
  13868. extra: 3641 / 3545,
  13869. bottom: 0.025
  13870. }
  13871. },
  13872. frontSkirt: {
  13873. height: math.unit(5 + 4 / 12, "feet"),
  13874. weight: math.unit(220, "lb"),
  13875. name: "Front (Skirt)",
  13876. image: {
  13877. source: "./media/characters/memory/front-skirt.svg",
  13878. extra: 3641 / 3545,
  13879. bottom: 0.03
  13880. }
  13881. },
  13882. frontDress: {
  13883. height: math.unit(5 + 4 / 12, "feet"),
  13884. weight: math.unit(220, "lb"),
  13885. name: "Front (Dress)",
  13886. image: {
  13887. source: "./media/characters/memory/front-dress.svg",
  13888. extra: 3641 / 3545,
  13889. bottom: 0.03
  13890. }
  13891. },
  13892. },
  13893. [
  13894. {
  13895. name: "Micro",
  13896. height: math.unit(6, "inches"),
  13897. default: true
  13898. },
  13899. {
  13900. name: "Normal",
  13901. height: math.unit(5 + 4 / 12, "feet")
  13902. },
  13903. ]
  13904. ))
  13905. characterMakers.push(() => makeCharacter(
  13906. { name: "Luno" },
  13907. {
  13908. front: {
  13909. height: math.unit(4 + 11 / 12, "feet"),
  13910. weight: math.unit(100, "lb"),
  13911. name: "Front",
  13912. image: {
  13913. source: "./media/characters/luno/front.svg",
  13914. extra: 1535 / 1487,
  13915. bottom: 0.03
  13916. }
  13917. },
  13918. },
  13919. [
  13920. {
  13921. name: "Micro",
  13922. height: math.unit(3, "inches")
  13923. },
  13924. {
  13925. name: "Normal",
  13926. height: math.unit(4 + 11 / 12, "feet"),
  13927. default: true
  13928. },
  13929. {
  13930. name: "Macro",
  13931. height: math.unit(300, "feet")
  13932. },
  13933. {
  13934. name: "Megamacro",
  13935. height: math.unit(700, "miles")
  13936. },
  13937. ]
  13938. ))
  13939. characterMakers.push(() => makeCharacter(
  13940. { name: "Jamesy" },
  13941. {
  13942. front: {
  13943. height: math.unit(6 + 2 / 12, "feet"),
  13944. weight: math.unit(170, "lb"),
  13945. name: "Front",
  13946. image: {
  13947. source: "./media/characters/jamesy/front.svg",
  13948. extra: 440 / 382,
  13949. bottom: 0.005
  13950. }
  13951. },
  13952. },
  13953. [
  13954. {
  13955. name: "Micro",
  13956. height: math.unit(3, "inches")
  13957. },
  13958. {
  13959. name: "Normal",
  13960. height: math.unit(6 + 2 / 12, "feet"),
  13961. default: true
  13962. },
  13963. {
  13964. name: "Macro",
  13965. height: math.unit(300, "feet")
  13966. },
  13967. {
  13968. name: "Megamacro",
  13969. height: math.unit(700, "miles")
  13970. },
  13971. ]
  13972. ))
  13973. characterMakers.push(() => makeCharacter(
  13974. { name: "Mark" },
  13975. {
  13976. front: {
  13977. height: math.unit(6, "feet"),
  13978. weight: math.unit(160, "lb"),
  13979. name: "Front",
  13980. image: {
  13981. source: "./media/characters/mark/front.svg",
  13982. extra: 3300 / 3100,
  13983. bottom: 136.42 / 3440.47
  13984. }
  13985. },
  13986. },
  13987. [
  13988. {
  13989. name: "Macro",
  13990. height: math.unit(120, "meters")
  13991. },
  13992. {
  13993. name: "Bigger Macro",
  13994. height: math.unit(350, "meters")
  13995. },
  13996. {
  13997. name: "Megamacro",
  13998. height: math.unit(8, "km"),
  13999. default: true
  14000. },
  14001. {
  14002. name: "Continental",
  14003. height: math.unit(4550, "km")
  14004. },
  14005. {
  14006. name: "Planetary",
  14007. height: math.unit(65000, "km")
  14008. },
  14009. ]
  14010. ))
  14011. characterMakers.push(() => makeCharacter(
  14012. { name: "Mac" },
  14013. {
  14014. front: {
  14015. height: math.unit(6, "feet"),
  14016. weight: math.unit(400, "lb"),
  14017. name: "Front",
  14018. image: {
  14019. source: "./media/characters/mac/front.svg",
  14020. extra: 1048 / 987.7,
  14021. bottom: 60 / 1107.6,
  14022. }
  14023. },
  14024. },
  14025. [
  14026. {
  14027. name: "Macro",
  14028. height: math.unit(500, "feet"),
  14029. default: true
  14030. },
  14031. ]
  14032. ))
  14033. characterMakers.push(() => makeCharacter(
  14034. { name: "Bari" },
  14035. {
  14036. front: {
  14037. height: math.unit(5 + 2 / 12, "feet"),
  14038. weight: math.unit(190, "lb"),
  14039. name: "Front",
  14040. image: {
  14041. source: "./media/characters/bari/front.svg",
  14042. extra: 3156 / 2880,
  14043. bottom: 0.03
  14044. }
  14045. },
  14046. back: {
  14047. height: math.unit(5 + 2 / 12, "feet"),
  14048. weight: math.unit(190, "lb"),
  14049. name: "Back",
  14050. image: {
  14051. source: "./media/characters/bari/back.svg",
  14052. extra: 3260 / 2834,
  14053. bottom: 0.025
  14054. }
  14055. },
  14056. frontPlush: {
  14057. height: math.unit(5 + 2 / 12, "feet"),
  14058. weight: math.unit(190, "lb"),
  14059. name: "Front (Plush)",
  14060. image: {
  14061. source: "./media/characters/bari/front-plush.svg",
  14062. extra: 1112 / 1061,
  14063. bottom: 0.002
  14064. }
  14065. },
  14066. },
  14067. [
  14068. {
  14069. name: "Micro",
  14070. height: math.unit(3, "inches")
  14071. },
  14072. {
  14073. name: "Normal",
  14074. height: math.unit(5 + 2 / 12, "feet"),
  14075. default: true
  14076. },
  14077. {
  14078. name: "Macro",
  14079. height: math.unit(20, "feet")
  14080. },
  14081. ]
  14082. ))
  14083. characterMakers.push(() => makeCharacter(
  14084. { name: "Hunter Misha Raven" },
  14085. {
  14086. front: {
  14087. height: math.unit(6 + 1 / 12, "feet"),
  14088. weight: math.unit(275, "lb"),
  14089. name: "Front",
  14090. image: {
  14091. source: "./media/characters/hunter-misha-raven/front.svg"
  14092. }
  14093. },
  14094. },
  14095. [
  14096. {
  14097. name: "Mortal",
  14098. height: math.unit(6 + 1 / 12, "feet")
  14099. },
  14100. {
  14101. name: "Divine",
  14102. height: math.unit(1.12134e34, "parsecs"),
  14103. default: true
  14104. },
  14105. ]
  14106. ))
  14107. characterMakers.push(() => makeCharacter(
  14108. { name: "Max Calore" },
  14109. {
  14110. front: {
  14111. height: math.unit(6 + 3 / 12, "feet"),
  14112. weight: math.unit(220, "lb"),
  14113. name: "Front",
  14114. image: {
  14115. source: "./media/characters/max-calore/front.svg",
  14116. extra: 1700 / 1648,
  14117. bottom: 0.01
  14118. }
  14119. },
  14120. back: {
  14121. height: math.unit(6 + 3 / 12, "feet"),
  14122. weight: math.unit(220, "lb"),
  14123. name: "Back",
  14124. image: {
  14125. source: "./media/characters/max-calore/back.svg",
  14126. extra: 1700 / 1648,
  14127. bottom: 0.01
  14128. }
  14129. },
  14130. },
  14131. [
  14132. {
  14133. name: "Normal",
  14134. height: math.unit(6 + 3 / 12, "feet"),
  14135. default: true
  14136. },
  14137. ]
  14138. ))
  14139. characterMakers.push(() => makeCharacter(
  14140. { name: "Aspen" },
  14141. {
  14142. side: {
  14143. height: math.unit(2 + 8 / 12, "feet"),
  14144. weight: math.unit(99, "lb"),
  14145. name: "Side",
  14146. image: {
  14147. source: "./media/characters/aspen/side.svg",
  14148. extra: 152 / 138,
  14149. bottom: 0.032
  14150. }
  14151. },
  14152. },
  14153. [
  14154. {
  14155. name: "Normal",
  14156. height: math.unit(2 + 8 / 12, "feet"),
  14157. default: true
  14158. },
  14159. ]
  14160. ))
  14161. characterMakers.push(() => makeCharacter(
  14162. { name: "Sheila (Wolf)" },
  14163. {
  14164. side: {
  14165. height: math.unit(3 + 2 / 12, "feet"),
  14166. weight: math.unit(224, "lb"),
  14167. name: "Side",
  14168. image: {
  14169. source: "./media/characters/sheila-wolf/side.svg",
  14170. extra: 179 / 166,
  14171. bottom: 0.03
  14172. }
  14173. },
  14174. },
  14175. [
  14176. {
  14177. name: "Normal",
  14178. height: math.unit(3 + 2 / 12, "feet"),
  14179. default: true
  14180. },
  14181. ]
  14182. ))
  14183. characterMakers.push(() => makeCharacter(
  14184. { name: "Michelle" },
  14185. {
  14186. side: {
  14187. height: math.unit(1 + 9 / 12, "feet"),
  14188. weight: math.unit(38, "lb"),
  14189. name: "Side",
  14190. image: {
  14191. source: "./media/characters/michelle/side.svg",
  14192. extra: 147 / 136.7,
  14193. bottom: 0.03
  14194. }
  14195. },
  14196. },
  14197. [
  14198. {
  14199. name: "Normal",
  14200. height: math.unit(1 + 9 / 12, "feet"),
  14201. default: true
  14202. },
  14203. ]
  14204. ))
  14205. characterMakers.push(() => makeCharacter(
  14206. { name: "Nino" },
  14207. {
  14208. front: {
  14209. height: math.unit(1 + 1 / 12, "feet"),
  14210. weight: math.unit(18, "lb"),
  14211. name: "Front",
  14212. image: {
  14213. source: "./media/characters/nino/front.svg"
  14214. }
  14215. },
  14216. },
  14217. [
  14218. {
  14219. name: "Normal",
  14220. height: math.unit(1 + 1 / 12, "feet"),
  14221. default: true
  14222. },
  14223. ]
  14224. ))
  14225. characterMakers.push(() => makeCharacter(
  14226. { name: "Viola" },
  14227. {
  14228. front: {
  14229. height: math.unit(1, "feet"),
  14230. weight: math.unit(16, "lb"),
  14231. name: "Front",
  14232. image: {
  14233. source: "./media/characters/viola/front.svg"
  14234. }
  14235. },
  14236. },
  14237. [
  14238. {
  14239. name: "Normal",
  14240. height: math.unit(1, "feet"),
  14241. default: true
  14242. },
  14243. ]
  14244. ))
  14245. characterMakers.push(() => makeCharacter(
  14246. { name: "Atlas" },
  14247. {
  14248. front: {
  14249. height: math.unit(6 + 5 / 12, "feet"),
  14250. weight: math.unit(580, "lb"),
  14251. name: "Front",
  14252. image: {
  14253. source: "./media/characters/atlas/front.svg",
  14254. extra: 298.5 / 290,
  14255. bottom: 0.015
  14256. }
  14257. },
  14258. },
  14259. [
  14260. {
  14261. name: "Normal",
  14262. height: math.unit(6 + 5 / 12, "feet"),
  14263. default: true
  14264. },
  14265. ]
  14266. ))
  14267. characterMakers.push(() => makeCharacter(
  14268. { name: "Davy" },
  14269. {
  14270. side: {
  14271. height: math.unit(1 + 10 / 12, "feet"),
  14272. weight: math.unit(25, "lb"),
  14273. name: "Side",
  14274. image: {
  14275. source: "./media/characters/davy/side.svg",
  14276. extra: 200 / 170,
  14277. bottom: 0.01
  14278. }
  14279. },
  14280. },
  14281. [
  14282. {
  14283. name: "Normal",
  14284. height: math.unit(1 + 10 / 12, "feet"),
  14285. default: true
  14286. },
  14287. ]
  14288. ))
  14289. characterMakers.push(() => makeCharacter(
  14290. { name: "Fiona" },
  14291. {
  14292. side: {
  14293. height: math.unit(4 + 8 / 12, "feet"),
  14294. weight: math.unit(166, "lb"),
  14295. name: "Side",
  14296. image: {
  14297. source: "./media/characters/fiona/side.svg",
  14298. extra: 232 / 220,
  14299. bottom: 0.03
  14300. }
  14301. },
  14302. },
  14303. [
  14304. {
  14305. name: "Normal",
  14306. height: math.unit(4 + 8 / 12, "feet"),
  14307. default: true
  14308. },
  14309. ]
  14310. ))
  14311. characterMakers.push(() => makeCharacter(
  14312. { name: "Lyla" },
  14313. {
  14314. front: {
  14315. height: math.unit(2, "feet"),
  14316. weight: math.unit(62, "lb"),
  14317. name: "Front",
  14318. image: {
  14319. source: "./media/characters/lyla/front.svg",
  14320. bottom: 0.1
  14321. }
  14322. },
  14323. },
  14324. [
  14325. {
  14326. name: "Normal",
  14327. height: math.unit(2, "feet"),
  14328. default: true
  14329. },
  14330. ]
  14331. ))
  14332. characterMakers.push(() => makeCharacter(
  14333. { name: "Perseus" },
  14334. {
  14335. side: {
  14336. height: math.unit(1.8, "feet"),
  14337. weight: math.unit(44, "lb"),
  14338. name: "Side",
  14339. image: {
  14340. source: "./media/characters/perseus/side.svg",
  14341. bottom: 0.21
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Normal",
  14348. height: math.unit(1.8, "feet"),
  14349. default: true
  14350. },
  14351. ]
  14352. ))
  14353. characterMakers.push(() => makeCharacter(
  14354. { name: "Remus" },
  14355. {
  14356. side: {
  14357. height: math.unit(4 + 2 / 12, "feet"),
  14358. weight: math.unit(20, "lb"),
  14359. name: "Side",
  14360. image: {
  14361. source: "./media/characters/remus/side.svg"
  14362. }
  14363. },
  14364. },
  14365. [
  14366. {
  14367. name: "Normal",
  14368. height: math.unit(4 + 2 / 12, "feet"),
  14369. default: true
  14370. },
  14371. ]
  14372. ))
  14373. characterMakers.push(() => makeCharacter(
  14374. { name: "Raf" },
  14375. {
  14376. front: {
  14377. height: math.unit(4 + 11 / 12, "feet"),
  14378. weight: math.unit(114, "lb"),
  14379. name: "Front",
  14380. image: {
  14381. source: "./media/characters/raf/front.svg",
  14382. bottom: 0.01
  14383. }
  14384. },
  14385. side: {
  14386. height: math.unit(4 + 11 / 12, "feet"),
  14387. weight: math.unit(114, "lb"),
  14388. name: "Side",
  14389. image: {
  14390. source: "./media/characters/raf/side.svg",
  14391. bottom: 0.005
  14392. }
  14393. },
  14394. },
  14395. [
  14396. {
  14397. name: "Micro",
  14398. height: math.unit(2, "inches")
  14399. },
  14400. {
  14401. name: "Normal",
  14402. height: math.unit(4 + 11 / 12, "feet"),
  14403. default: true
  14404. },
  14405. {
  14406. name: "Macro",
  14407. height: math.unit(70, "feet")
  14408. },
  14409. ]
  14410. ))
  14411. characterMakers.push(() => makeCharacter(
  14412. { name: "Liam Einarr" },
  14413. {
  14414. front: {
  14415. height: math.unit(1.5, "meters"),
  14416. weight: math.unit(68, "kg"),
  14417. name: "Front",
  14418. image: {
  14419. source: "./media/characters/liam-einarr/front.svg",
  14420. extra: 2822 / 2666
  14421. }
  14422. },
  14423. back: {
  14424. height: math.unit(1.5, "meters"),
  14425. weight: math.unit(68, "kg"),
  14426. name: "Back",
  14427. image: {
  14428. source: "./media/characters/liam-einarr/back.svg",
  14429. extra: 2822 / 2666,
  14430. bottom: 0.015
  14431. }
  14432. },
  14433. },
  14434. [
  14435. {
  14436. name: "Normal",
  14437. height: math.unit(1.5, "meters"),
  14438. default: true
  14439. },
  14440. {
  14441. name: "Macro",
  14442. height: math.unit(150, "meters")
  14443. },
  14444. {
  14445. name: "Megamacro",
  14446. height: math.unit(35, "km")
  14447. },
  14448. ]
  14449. ))
  14450. characterMakers.push(() => makeCharacter(
  14451. { name: "Linda" },
  14452. {
  14453. front: {
  14454. height: math.unit(6, "feet"),
  14455. weight: math.unit(75, "kg"),
  14456. name: "Front",
  14457. image: {
  14458. source: "./media/characters/linda/front.svg",
  14459. extra: 930 / 874,
  14460. bottom: 0.004
  14461. }
  14462. },
  14463. },
  14464. [
  14465. {
  14466. name: "Normal",
  14467. height: math.unit(6, "feet"),
  14468. default: true
  14469. },
  14470. ]
  14471. ))
  14472. characterMakers.push(() => makeCharacter(
  14473. { name: "Caylex" },
  14474. {
  14475. front: {
  14476. height: math.unit(6 + 8 / 12, "feet"),
  14477. weight: math.unit(220, "lb"),
  14478. name: "Front",
  14479. image: {
  14480. source: "./media/characters/caylex/front.svg",
  14481. extra: 821 / 772,
  14482. bottom: 0.07
  14483. }
  14484. },
  14485. back: {
  14486. height: math.unit(6 + 8 / 12, "feet"),
  14487. weight: math.unit(220, "lb"),
  14488. name: "Back",
  14489. image: {
  14490. source: "./media/characters/caylex/back.svg",
  14491. extra: 821 / 772,
  14492. bottom: 0.022
  14493. }
  14494. },
  14495. hand: {
  14496. height: math.unit(1.25, "feet"),
  14497. name: "Hand",
  14498. image: {
  14499. source: "./media/characters/caylex/hand.svg"
  14500. }
  14501. },
  14502. foot: {
  14503. height: math.unit(1.6, "feet"),
  14504. name: "Foot",
  14505. image: {
  14506. source: "./media/characters/caylex/foot.svg"
  14507. }
  14508. },
  14509. armored: {
  14510. height: math.unit(6 + 8 / 12, "feet"),
  14511. weight: math.unit(250, "lb"),
  14512. name: "Armored",
  14513. image: {
  14514. source: "./media/characters/caylex/armored.svg",
  14515. extra: 1420 / 1310,
  14516. bottom: 0.045
  14517. }
  14518. },
  14519. },
  14520. [
  14521. {
  14522. name: "Normal",
  14523. height: math.unit(6 + 8 / 12, "feet"),
  14524. default: true
  14525. },
  14526. {
  14527. name: "Normal+",
  14528. height: math.unit(12, "feet")
  14529. },
  14530. ]
  14531. ))
  14532. characterMakers.push(() => makeCharacter(
  14533. { name: "Alana" },
  14534. {
  14535. front: {
  14536. height: math.unit(7 + 6 / 12, "feet"),
  14537. weight: math.unit(288, "lb"),
  14538. name: "Front",
  14539. image: {
  14540. source: "./media/characters/alana/front.svg",
  14541. extra: 679 / 653,
  14542. bottom: 22.5 / 701
  14543. }
  14544. },
  14545. },
  14546. [
  14547. {
  14548. name: "Normal",
  14549. height: math.unit(7 + 6 / 12, "feet")
  14550. },
  14551. {
  14552. name: "Large",
  14553. height: math.unit(50, "feet")
  14554. },
  14555. {
  14556. name: "Macro",
  14557. height: math.unit(100, "feet"),
  14558. default: true
  14559. },
  14560. {
  14561. name: "Macro+",
  14562. height: math.unit(200, "feet")
  14563. },
  14564. ]
  14565. ))
  14566. characterMakers.push(() => makeCharacter(
  14567. { name: "Hasani" },
  14568. {
  14569. front: {
  14570. height: math.unit(6 + 1 / 12, "feet"),
  14571. weight: math.unit(210, "lb"),
  14572. name: "Front",
  14573. image: {
  14574. source: "./media/characters/hasani/front.svg",
  14575. extra: 244 / 232,
  14576. bottom: 0.01
  14577. }
  14578. },
  14579. back: {
  14580. height: math.unit(6 + 1 / 12, "feet"),
  14581. weight: math.unit(210, "lb"),
  14582. name: "Back",
  14583. image: {
  14584. source: "./media/characters/hasani/back.svg",
  14585. extra: 244 / 232,
  14586. bottom: 0.01
  14587. }
  14588. },
  14589. },
  14590. [
  14591. {
  14592. name: "Normal",
  14593. height: math.unit(6 + 1 / 12, "feet")
  14594. },
  14595. {
  14596. name: "Macro",
  14597. height: math.unit(175, "feet"),
  14598. default: true
  14599. },
  14600. ]
  14601. ))
  14602. characterMakers.push(() => makeCharacter(
  14603. { name: "Nita" },
  14604. {
  14605. front: {
  14606. height: math.unit(1.82, "meters"),
  14607. weight: math.unit(140, "lb"),
  14608. name: "Front",
  14609. image: {
  14610. source: "./media/characters/nita/front.svg",
  14611. extra: 2473 / 2363,
  14612. bottom: 0.01
  14613. }
  14614. },
  14615. },
  14616. [
  14617. {
  14618. name: "Normal",
  14619. height: math.unit(1.82, "m")
  14620. },
  14621. {
  14622. name: "Macro",
  14623. height: math.unit(300, "m")
  14624. },
  14625. {
  14626. name: "Mistake Canon",
  14627. height: math.unit(0.5, "miles"),
  14628. default: true
  14629. },
  14630. {
  14631. name: "Big Mistake",
  14632. height: math.unit(13, "miles")
  14633. },
  14634. {
  14635. name: "Playing God",
  14636. height: math.unit(2450, "miles")
  14637. },
  14638. ]
  14639. ))
  14640. characterMakers.push(() => makeCharacter(
  14641. { name: "Shiriko" },
  14642. {
  14643. front: {
  14644. height: math.unit(4, "feet"),
  14645. weight: math.unit(120, "lb"),
  14646. name: "Front",
  14647. image: {
  14648. source: "./media/characters/shiriko/front.svg",
  14649. extra: 195 / 188
  14650. }
  14651. },
  14652. },
  14653. [
  14654. {
  14655. name: "Normal",
  14656. height: math.unit(4, "feet"),
  14657. default: true
  14658. },
  14659. ]
  14660. ))
  14661. characterMakers.push(() => makeCharacter(
  14662. { name: "Deja" },
  14663. {
  14664. front: {
  14665. height: math.unit(6, "feet"),
  14666. name: "front",
  14667. image: {
  14668. source: "./media/characters/deja/front.svg",
  14669. extra: 926 / 840,
  14670. bottom: 0.07
  14671. }
  14672. },
  14673. },
  14674. [
  14675. {
  14676. name: "Planck Length",
  14677. height: math.unit(1.6e-35, "meters")
  14678. },
  14679. {
  14680. name: "Normal",
  14681. height: math.unit(30.48, "meters"),
  14682. default: true
  14683. },
  14684. {
  14685. name: "Universal",
  14686. height: math.unit(8.8e26, "meters")
  14687. },
  14688. ]
  14689. ))
  14690. characterMakers.push(() => makeCharacter(
  14691. { name: "Anima" },
  14692. {
  14693. side: {
  14694. height: math.unit(8, "feet"),
  14695. weight: math.unit(6300, "lb"),
  14696. name: "Side",
  14697. image: {
  14698. source: "./media/characters/anima/side.svg",
  14699. bottom: 0.035
  14700. }
  14701. },
  14702. },
  14703. [
  14704. {
  14705. name: "Normal",
  14706. height: math.unit(8, "feet"),
  14707. default: true
  14708. },
  14709. ]
  14710. ))
  14711. characterMakers.push(() => makeCharacter(
  14712. { name: "Bianca" },
  14713. {
  14714. front: {
  14715. height: math.unit(8, "feet"),
  14716. weight: math.unit(350, "lb"),
  14717. name: "Front",
  14718. image: {
  14719. source: "./media/characters/bianca/front.svg",
  14720. extra: 234 / 225,
  14721. bottom: 0.03
  14722. }
  14723. },
  14724. },
  14725. [
  14726. {
  14727. name: "Normal",
  14728. height: math.unit(8, "feet"),
  14729. default: true
  14730. },
  14731. ]
  14732. ))
  14733. characterMakers.push(() => makeCharacter(
  14734. { name: "Adinia" },
  14735. {
  14736. front: {
  14737. height: math.unit(6, "feet"),
  14738. weight: math.unit(150, "lb"),
  14739. name: "Front",
  14740. image: {
  14741. source: "./media/characters/adinia/front.svg",
  14742. extra: 1845 / 1672,
  14743. bottom: 0.02
  14744. }
  14745. },
  14746. back: {
  14747. height: math.unit(6, "feet"),
  14748. weight: math.unit(150, "lb"),
  14749. name: "Back",
  14750. image: {
  14751. source: "./media/characters/adinia/back.svg",
  14752. extra: 1845 / 1672,
  14753. bottom: 0.002
  14754. }
  14755. },
  14756. },
  14757. [
  14758. {
  14759. name: "Normal",
  14760. height: math.unit(11 + 5 / 12, "feet"),
  14761. default: true
  14762. },
  14763. ]
  14764. ))
  14765. characterMakers.push(() => makeCharacter(
  14766. { name: "Lykasa" },
  14767. {
  14768. front: {
  14769. height: math.unit(3, "meters"),
  14770. weight: math.unit(200, "kg"),
  14771. name: "Front",
  14772. image: {
  14773. source: "./media/characters/lykasa/front.svg",
  14774. extra: 1076 / 976,
  14775. bottom: 0.06
  14776. }
  14777. },
  14778. },
  14779. [
  14780. {
  14781. name: "Normal",
  14782. height: math.unit(3, "meters")
  14783. },
  14784. {
  14785. name: "Kaiku",
  14786. height: math.unit(120, "meters"),
  14787. default: true
  14788. },
  14789. {
  14790. name: "Mega Kaiju",
  14791. height: math.unit(240, "km")
  14792. },
  14793. {
  14794. name: "Giga Kaiju",
  14795. height: math.unit(400, "megameters")
  14796. },
  14797. {
  14798. name: "Tera Kaiju",
  14799. height: math.unit(800, "gigameters")
  14800. },
  14801. {
  14802. name: "Kaiju Dragon Goddess",
  14803. height: math.unit(26, "zettaparsecs")
  14804. },
  14805. ]
  14806. ))
  14807. characterMakers.push(() => makeCharacter(
  14808. { name: "Malfaren" },
  14809. {
  14810. side: {
  14811. height: math.unit(283 / 124 * 6, "feet"),
  14812. weight: math.unit(35000, "lb"),
  14813. name: "Side",
  14814. image: {
  14815. source: "./media/characters/malfaren/side.svg",
  14816. extra: 2500 / 1010,
  14817. bottom: 0.01
  14818. }
  14819. },
  14820. front: {
  14821. height: math.unit(22.36, "feet"),
  14822. weight: math.unit(35000, "lb"),
  14823. name: "Front",
  14824. image: {
  14825. source: "./media/characters/malfaren/front.svg",
  14826. extra: 1631 / 1476,
  14827. bottom: 0.01
  14828. }
  14829. },
  14830. maw: {
  14831. height: math.unit(6.9, "feet"),
  14832. name: "Maw",
  14833. image: {
  14834. source: "./media/characters/malfaren/maw.svg"
  14835. }
  14836. },
  14837. },
  14838. [
  14839. {
  14840. name: "Big",
  14841. height: math.unit(283 / 162 * 6, "feet"),
  14842. },
  14843. {
  14844. name: "Bigger",
  14845. height: math.unit(283 / 124 * 6, "feet")
  14846. },
  14847. {
  14848. name: "Massive",
  14849. height: math.unit(283 / 92 * 6, "feet"),
  14850. default: true
  14851. },
  14852. {
  14853. name: "👀💦",
  14854. height: math.unit(283 / 73 * 6, "feet"),
  14855. },
  14856. ]
  14857. ))
  14858. characterMakers.push(() => makeCharacter(
  14859. { name: "Kernel" },
  14860. {
  14861. front: {
  14862. height: math.unit(1.7, "m"),
  14863. weight: math.unit(70, "kg"),
  14864. name: "Front",
  14865. image: {
  14866. source: "./media/characters/kernel/front.svg",
  14867. extra: 222 / 210,
  14868. bottom: 0.007
  14869. }
  14870. },
  14871. },
  14872. [
  14873. {
  14874. name: "Nano",
  14875. height: math.unit(17, "micrometers")
  14876. },
  14877. {
  14878. name: "Micro",
  14879. height: math.unit(1.7, "mm")
  14880. },
  14881. {
  14882. name: "Small",
  14883. height: math.unit(1.7, "cm")
  14884. },
  14885. {
  14886. name: "Normal",
  14887. height: math.unit(1.7, "m"),
  14888. default: true
  14889. },
  14890. ]
  14891. ))
  14892. characterMakers.push(() => makeCharacter(
  14893. { name: "Jayne Folest" },
  14894. {
  14895. front: {
  14896. height: math.unit(1.75, "meters"),
  14897. weight: math.unit(65, "kg"),
  14898. name: "Front",
  14899. image: {
  14900. source: "./media/characters/jayne-folest/front.svg",
  14901. extra: 2115 / 2007,
  14902. bottom: 0.02
  14903. }
  14904. },
  14905. back: {
  14906. height: math.unit(1.75, "meters"),
  14907. weight: math.unit(65, "kg"),
  14908. name: "Back",
  14909. image: {
  14910. source: "./media/characters/jayne-folest/back.svg",
  14911. extra: 2115 / 2007,
  14912. bottom: 0.005
  14913. }
  14914. },
  14915. frontClothed: {
  14916. height: math.unit(1.75, "meters"),
  14917. weight: math.unit(65, "kg"),
  14918. name: "Front (Clothed)",
  14919. image: {
  14920. source: "./media/characters/jayne-folest/front-clothed.svg",
  14921. extra: 2115 / 2007,
  14922. bottom: 0.035
  14923. }
  14924. },
  14925. hand: {
  14926. height: math.unit(1 / 1.260, "feet"),
  14927. name: "Hand",
  14928. image: {
  14929. source: "./media/characters/jayne-folest/hand.svg"
  14930. }
  14931. },
  14932. foot: {
  14933. height: math.unit(1 / 0.918, "feet"),
  14934. name: "Foot",
  14935. image: {
  14936. source: "./media/characters/jayne-folest/foot.svg"
  14937. }
  14938. },
  14939. },
  14940. [
  14941. {
  14942. name: "Micro",
  14943. height: math.unit(4, "cm")
  14944. },
  14945. {
  14946. name: "Normal",
  14947. height: math.unit(1.75, "meters")
  14948. },
  14949. {
  14950. name: "Macro",
  14951. height: math.unit(47.5, "meters"),
  14952. default: true
  14953. },
  14954. ]
  14955. ))
  14956. characterMakers.push(() => makeCharacter(
  14957. { name: "Algier" },
  14958. {
  14959. front: {
  14960. height: math.unit(180, "cm"),
  14961. weight: math.unit(70, "kg"),
  14962. name: "Front",
  14963. image: {
  14964. source: "./media/characters/algier/front.svg",
  14965. extra: 596 / 572,
  14966. bottom: 0.04
  14967. }
  14968. },
  14969. back: {
  14970. height: math.unit(180, "cm"),
  14971. weight: math.unit(70, "kg"),
  14972. name: "Back",
  14973. image: {
  14974. source: "./media/characters/algier/back.svg",
  14975. extra: 596 / 572,
  14976. bottom: 0.025
  14977. }
  14978. },
  14979. frontdressed: {
  14980. height: math.unit(180, "cm"),
  14981. weight: math.unit(150, "kg"),
  14982. name: "Front-dressed",
  14983. image: {
  14984. source: "./media/characters/algier/front-dressed.svg",
  14985. extra: 596 / 572,
  14986. bottom: 0.038
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Micro",
  14993. height: math.unit(5, "cm")
  14994. },
  14995. {
  14996. name: "Normal",
  14997. height: math.unit(180, "cm"),
  14998. default: true
  14999. },
  15000. {
  15001. name: "Macro",
  15002. height: math.unit(64, "m")
  15003. },
  15004. ]
  15005. ))
  15006. characterMakers.push(() => makeCharacter(
  15007. { name: "Pretzel" },
  15008. {
  15009. upright: {
  15010. height: math.unit(7, "feet"),
  15011. weight: math.unit(300, "lb"),
  15012. name: "Upright",
  15013. image: {
  15014. source: "./media/characters/pretzel/upright.svg",
  15015. extra: 534 / 522,
  15016. bottom: 0.065
  15017. }
  15018. },
  15019. sprawling: {
  15020. height: math.unit(3.75, "feet"),
  15021. weight: math.unit(300, "lb"),
  15022. name: "Sprawling",
  15023. image: {
  15024. source: "./media/characters/pretzel/sprawling.svg",
  15025. extra: 314 / 281,
  15026. bottom: 0.1
  15027. }
  15028. },
  15029. tongue: {
  15030. height: math.unit(2, "feet"),
  15031. name: "Tongue",
  15032. image: {
  15033. source: "./media/characters/pretzel/tongue.svg"
  15034. }
  15035. },
  15036. },
  15037. [
  15038. {
  15039. name: "Normal",
  15040. height: math.unit(7, "feet"),
  15041. default: true
  15042. },
  15043. {
  15044. name: "Oversized",
  15045. height: math.unit(15, "feet")
  15046. },
  15047. {
  15048. name: "Huge",
  15049. height: math.unit(30, "feet")
  15050. },
  15051. {
  15052. name: "Macro",
  15053. height: math.unit(250, "feet")
  15054. },
  15055. ]
  15056. ))
  15057. characterMakers.push(() => makeCharacter(
  15058. { name: "Roxi" },
  15059. {
  15060. sideFront: {
  15061. height: math.unit(5 + 2 / 12, "feet"),
  15062. weight: math.unit(120, "lb"),
  15063. name: "Front Side",
  15064. image: {
  15065. source: "./media/characters/roxi/side-front.svg",
  15066. extra: 2924 / 2717,
  15067. bottom: 0.08
  15068. }
  15069. },
  15070. sideBack: {
  15071. height: math.unit(5 + 2 / 12, "feet"),
  15072. weight: math.unit(120, "lb"),
  15073. name: "Back Side",
  15074. image: {
  15075. source: "./media/characters/roxi/side-back.svg",
  15076. extra: 2904 / 2693,
  15077. bottom: 0.06
  15078. }
  15079. },
  15080. front: {
  15081. height: math.unit(5 + 2 / 12, "feet"),
  15082. weight: math.unit(120, "lb"),
  15083. name: "Front",
  15084. image: {
  15085. source: "./media/characters/roxi/front.svg",
  15086. extra: 2028 / 1907,
  15087. bottom: 0.01
  15088. }
  15089. },
  15090. frontAlt: {
  15091. height: math.unit(5 + 2 / 12, "feet"),
  15092. weight: math.unit(120, "lb"),
  15093. name: "Front (Alt)",
  15094. image: {
  15095. source: "./media/characters/roxi/front-alt.svg",
  15096. extra: 1828 / 1798,
  15097. bottom: 0.01
  15098. }
  15099. },
  15100. sitting: {
  15101. height: math.unit(2.8, "feet"),
  15102. weight: math.unit(120, "lb"),
  15103. name: "Sitting",
  15104. image: {
  15105. source: "./media/characters/roxi/sitting.svg",
  15106. extra: 2660 / 2462,
  15107. bottom: 0.1
  15108. }
  15109. },
  15110. },
  15111. [
  15112. {
  15113. name: "Normal",
  15114. height: math.unit(5 + 2 / 12, "feet"),
  15115. default: true
  15116. },
  15117. ]
  15118. ))
  15119. characterMakers.push(() => makeCharacter(
  15120. { name: "Shadow" },
  15121. {
  15122. side: {
  15123. height: math.unit(55, "feet"),
  15124. weight: math.unit(153, "tons"),
  15125. name: "Side",
  15126. image: {
  15127. source: "./media/characters/shadow/side.svg",
  15128. extra: 701 / 628,
  15129. bottom: 0.02
  15130. }
  15131. },
  15132. flying: {
  15133. height: math.unit(145, "feet"),
  15134. weight: math.unit(153, "tons"),
  15135. name: "Flying",
  15136. image: {
  15137. source: "./media/characters/shadow/flying.svg"
  15138. }
  15139. },
  15140. },
  15141. [
  15142. {
  15143. name: "Normal",
  15144. height: math.unit(55, "feet"),
  15145. default: true
  15146. },
  15147. ]
  15148. ))
  15149. characterMakers.push(() => makeCharacter(
  15150. { name: "Marcie" },
  15151. {
  15152. front: {
  15153. height: math.unit(6, "feet"),
  15154. weight: math.unit(200, "lb"),
  15155. name: "Front",
  15156. image: {
  15157. source: "./media/characters/marcie/front.svg",
  15158. extra: 960 / 876,
  15159. bottom: 58 / 1017.87
  15160. }
  15161. },
  15162. },
  15163. [
  15164. {
  15165. name: "Macro",
  15166. height: math.unit(1, "mile"),
  15167. default: true
  15168. },
  15169. ]
  15170. ))
  15171. characterMakers.push(() => makeCharacter(
  15172. { name: "Kachina" },
  15173. {
  15174. front: {
  15175. height: math.unit(7, "feet"),
  15176. weight: math.unit(200, "lb"),
  15177. name: "Front",
  15178. image: {
  15179. source: "./media/characters/kachina/front.svg",
  15180. extra: 1290.68 / 1119,
  15181. bottom: 36.5 / 1327.18
  15182. }
  15183. },
  15184. },
  15185. [
  15186. {
  15187. name: "Normal",
  15188. height: math.unit(7, "feet"),
  15189. default: true
  15190. },
  15191. ]
  15192. ))
  15193. characterMakers.push(() => makeCharacter(
  15194. { name: "Kash" },
  15195. {
  15196. looking: {
  15197. height: math.unit(2, "meters"),
  15198. weight: math.unit(300, "kg"),
  15199. name: "Looking",
  15200. image: {
  15201. source: "./media/characters/kash/looking.svg",
  15202. extra: 474 / 344,
  15203. bottom: 0.03
  15204. }
  15205. },
  15206. side: {
  15207. height: math.unit(2, "meters"),
  15208. weight: math.unit(300, "kg"),
  15209. name: "Side",
  15210. image: {
  15211. source: "./media/characters/kash/side.svg",
  15212. extra: 302 / 251,
  15213. bottom: 0.03
  15214. }
  15215. },
  15216. front: {
  15217. height: math.unit(2, "meters"),
  15218. weight: math.unit(300, "kg"),
  15219. name: "Front",
  15220. image: {
  15221. source: "./media/characters/kash/front.svg",
  15222. extra: 495 / 360,
  15223. bottom: 0.015
  15224. }
  15225. },
  15226. },
  15227. [
  15228. {
  15229. name: "Normal",
  15230. height: math.unit(2, "meters"),
  15231. default: true
  15232. },
  15233. {
  15234. name: "Big",
  15235. height: math.unit(3, "meters")
  15236. },
  15237. {
  15238. name: "Large",
  15239. height: math.unit(5, "meters")
  15240. },
  15241. ]
  15242. ))
  15243. characterMakers.push(() => makeCharacter(
  15244. { name: "Lalim" },
  15245. {
  15246. feeding: {
  15247. height: math.unit(6.7, "feet"),
  15248. weight: math.unit(350, "lb"),
  15249. name: "Feeding",
  15250. image: {
  15251. source: "./media/characters/lalim/feeding.svg",
  15252. }
  15253. },
  15254. },
  15255. [
  15256. {
  15257. name: "Normal",
  15258. height: math.unit(6.7, "feet"),
  15259. default: true
  15260. },
  15261. ]
  15262. ))
  15263. characterMakers.push(() => makeCharacter(
  15264. { name: "De'Vout" },
  15265. {
  15266. front: {
  15267. height: math.unit(9.5, "feet"),
  15268. weight: math.unit(600, "lb"),
  15269. name: "Front",
  15270. image: {
  15271. source: "./media/characters/de'vout/front.svg",
  15272. extra: 1443 / 1328,
  15273. bottom: 0.025
  15274. }
  15275. },
  15276. back: {
  15277. height: math.unit(9.5, "feet"),
  15278. weight: math.unit(600, "lb"),
  15279. name: "Back",
  15280. image: {
  15281. source: "./media/characters/de'vout/back.svg",
  15282. extra: 1443 / 1328
  15283. }
  15284. },
  15285. frontDressed: {
  15286. height: math.unit(9.5, "feet"),
  15287. weight: math.unit(600, "lb"),
  15288. name: "Front (Dressed",
  15289. image: {
  15290. source: "./media/characters/de'vout/front-dressed.svg",
  15291. extra: 1443 / 1328,
  15292. bottom: 0.025
  15293. }
  15294. },
  15295. backDressed: {
  15296. height: math.unit(9.5, "feet"),
  15297. weight: math.unit(600, "lb"),
  15298. name: "Back (Dressed",
  15299. image: {
  15300. source: "./media/characters/de'vout/back-dressed.svg",
  15301. extra: 1443 / 1328
  15302. }
  15303. },
  15304. },
  15305. [
  15306. {
  15307. name: "Normal",
  15308. height: math.unit(9.5, "feet"),
  15309. default: true
  15310. },
  15311. ]
  15312. ))
  15313. characterMakers.push(() => makeCharacter(
  15314. { name: "Talana" },
  15315. {
  15316. front: {
  15317. height: math.unit(8, "feet"),
  15318. weight: math.unit(225, "lb"),
  15319. name: "Front",
  15320. image: {
  15321. source: "./media/characters/talana/front.svg",
  15322. extra: 1410 / 1300,
  15323. bottom: 0.015
  15324. }
  15325. },
  15326. frontDressed: {
  15327. height: math.unit(8, "feet"),
  15328. weight: math.unit(225, "lb"),
  15329. name: "Front (Dressed",
  15330. image: {
  15331. source: "./media/characters/talana/front-dressed.svg",
  15332. extra: 1410 / 1300,
  15333. bottom: 0.015
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Normal",
  15340. height: math.unit(8, "feet"),
  15341. default: true
  15342. },
  15343. ]
  15344. ))
  15345. characterMakers.push(() => makeCharacter(
  15346. { name: "Xeauvok" },
  15347. {
  15348. side: {
  15349. height: math.unit(7.2, "feet"),
  15350. weight: math.unit(150, "lb"),
  15351. name: "Side",
  15352. image: {
  15353. source: "./media/characters/xeauvok/side.svg",
  15354. extra: 1975 / 1523,
  15355. bottom: 0.07
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Normal",
  15362. height: math.unit(7.2, "feet"),
  15363. default: true
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Zara" },
  15369. {
  15370. side: {
  15371. height: math.unit(10, "feet"),
  15372. weight: math.unit(900, "kg"),
  15373. name: "Side",
  15374. image: {
  15375. source: "./media/characters/zara/side.svg",
  15376. extra: 504 / 498
  15377. }
  15378. },
  15379. },
  15380. [
  15381. {
  15382. name: "Normal",
  15383. height: math.unit(10, "feet"),
  15384. default: true
  15385. },
  15386. ]
  15387. ))
  15388. characterMakers.push(() => makeCharacter(
  15389. { name: "Richard (Dragon)" },
  15390. {
  15391. side: {
  15392. height: math.unit(6, "feet"),
  15393. weight: math.unit(150, "lb"),
  15394. name: "Side",
  15395. image: {
  15396. source: "./media/characters/richard-dragon/side.svg",
  15397. extra: 845 / 340,
  15398. bottom: 0.017
  15399. }
  15400. },
  15401. maw: {
  15402. height: math.unit(2.97, "feet"),
  15403. name: "Maw",
  15404. image: {
  15405. source: "./media/characters/richard-dragon/maw.svg"
  15406. }
  15407. },
  15408. },
  15409. [
  15410. ]
  15411. ))
  15412. characterMakers.push(() => makeCharacter(
  15413. { name: "Richard (Smeargle)" },
  15414. {
  15415. front: {
  15416. height: math.unit(4, "feet"),
  15417. weight: math.unit(100, "lb"),
  15418. name: "Front",
  15419. image: {
  15420. source: "./media/characters/richard-smeargle/front.svg",
  15421. extra: 2952 / 2820,
  15422. bottom: 0.028
  15423. }
  15424. },
  15425. },
  15426. [
  15427. {
  15428. name: "Normal",
  15429. height: math.unit(4, "feet"),
  15430. default: true
  15431. },
  15432. {
  15433. name: "Dynamax",
  15434. height: math.unit(20, "meters")
  15435. },
  15436. ]
  15437. ))
  15438. characterMakers.push(() => makeCharacter(
  15439. { name: "Klay" },
  15440. {
  15441. front: {
  15442. height: math.unit(6, "feet"),
  15443. weight: math.unit(110, "lb"),
  15444. name: "Front",
  15445. image: {
  15446. source: "./media/characters/klay/front.svg",
  15447. extra: 962 / 883,
  15448. bottom: 0.04
  15449. }
  15450. },
  15451. back: {
  15452. height: math.unit(6, "feet"),
  15453. weight: math.unit(110, "lb"),
  15454. name: "Back",
  15455. image: {
  15456. source: "./media/characters/klay/back.svg",
  15457. extra: 962 / 883
  15458. }
  15459. },
  15460. beans: {
  15461. height: math.unit(1.15, "feet"),
  15462. name: "Beans",
  15463. image: {
  15464. source: "./media/characters/klay/beans.svg"
  15465. }
  15466. },
  15467. },
  15468. [
  15469. {
  15470. name: "Micro",
  15471. height: math.unit(6, "inches")
  15472. },
  15473. {
  15474. name: "Mini",
  15475. height: math.unit(3, "feet")
  15476. },
  15477. {
  15478. name: "Normal",
  15479. height: math.unit(6, "feet"),
  15480. default: true
  15481. },
  15482. {
  15483. name: "Big",
  15484. height: math.unit(25, "feet")
  15485. },
  15486. {
  15487. name: "Macro",
  15488. height: math.unit(100, "feet")
  15489. },
  15490. {
  15491. name: "Megamacro",
  15492. height: math.unit(400, "feet")
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Marcus" },
  15498. {
  15499. front: {
  15500. height: math.unit(6, "feet"),
  15501. weight: math.unit(160, "lb"),
  15502. name: "Front",
  15503. image: {
  15504. source: "./media/characters/marcus/front.svg",
  15505. extra: 734 / 676,
  15506. bottom: 0.03
  15507. }
  15508. },
  15509. },
  15510. [
  15511. {
  15512. name: "Little",
  15513. height: math.unit(6, "feet")
  15514. },
  15515. {
  15516. name: "Normal",
  15517. height: math.unit(110, "feet"),
  15518. default: true
  15519. },
  15520. {
  15521. name: "Macro",
  15522. height: math.unit(250, "feet")
  15523. },
  15524. {
  15525. name: "Megamacro",
  15526. height: math.unit(1000, "feet")
  15527. },
  15528. ]
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Claude DelRoute" },
  15532. {
  15533. front: {
  15534. height: math.unit(7, "feet"),
  15535. weight: math.unit(275, "lb"),
  15536. name: "Front",
  15537. image: {
  15538. source: "./media/characters/claude-delroute/front.svg",
  15539. extra: 230 / 214,
  15540. bottom: 0.007
  15541. }
  15542. },
  15543. side: {
  15544. height: math.unit(7, "feet"),
  15545. weight: math.unit(275, "lb"),
  15546. name: "Side",
  15547. image: {
  15548. source: "./media/characters/claude-delroute/side.svg",
  15549. extra: 222 / 214,
  15550. bottom: 0.01
  15551. }
  15552. },
  15553. back: {
  15554. height: math.unit(7, "feet"),
  15555. weight: math.unit(275, "lb"),
  15556. name: "Back",
  15557. image: {
  15558. source: "./media/characters/claude-delroute/back.svg",
  15559. extra: 230 / 214,
  15560. bottom: 0.015
  15561. }
  15562. },
  15563. maw: {
  15564. height: math.unit(0.6407, "meters"),
  15565. name: "Maw",
  15566. image: {
  15567. source: "./media/characters/claude-delroute/maw.svg"
  15568. }
  15569. },
  15570. },
  15571. [
  15572. {
  15573. name: "Normal",
  15574. height: math.unit(7, "feet"),
  15575. default: true
  15576. },
  15577. {
  15578. name: "Lorge",
  15579. height: math.unit(20, "feet")
  15580. },
  15581. ]
  15582. ))
  15583. characterMakers.push(() => makeCharacter(
  15584. { name: "Dragonien" },
  15585. {
  15586. front: {
  15587. height: math.unit(8 + 4 / 12, "feet"),
  15588. weight: math.unit(600, "lb"),
  15589. name: "Front",
  15590. image: {
  15591. source: "./media/characters/dragonien/front.svg",
  15592. extra: 100 / 94,
  15593. bottom: 3.3 / 103.3445
  15594. }
  15595. },
  15596. back: {
  15597. height: math.unit(8 + 4 / 12, "feet"),
  15598. weight: math.unit(600, "lb"),
  15599. name: "Back",
  15600. image: {
  15601. source: "./media/characters/dragonien/back.svg",
  15602. extra: 776 / 746,
  15603. bottom: 6.4 / 782.0616
  15604. }
  15605. },
  15606. foot: {
  15607. height: math.unit(1.54, "feet"),
  15608. name: "Foot",
  15609. image: {
  15610. source: "./media/characters/dragonien/foot.svg",
  15611. }
  15612. },
  15613. },
  15614. [
  15615. {
  15616. name: "Normal",
  15617. height: math.unit(8 + 4 / 12, "feet"),
  15618. default: true
  15619. },
  15620. {
  15621. name: "Macro",
  15622. height: math.unit(200, "feet")
  15623. },
  15624. {
  15625. name: "Megamacro",
  15626. height: math.unit(1, "mile")
  15627. },
  15628. {
  15629. name: "Gigamacro",
  15630. height: math.unit(1000, "miles")
  15631. },
  15632. ]
  15633. ))
  15634. characterMakers.push(() => makeCharacter(
  15635. { name: "Desta" },
  15636. {
  15637. front: {
  15638. height: math.unit(5 + 2 / 12, "feet"),
  15639. weight: math.unit(110, "lb"),
  15640. name: "Front",
  15641. image: {
  15642. source: "./media/characters/desta/front.svg",
  15643. extra: 1482 / 1417
  15644. }
  15645. },
  15646. side: {
  15647. height: math.unit(5 + 2 / 12, "feet"),
  15648. weight: math.unit(110, "lb"),
  15649. name: "Side",
  15650. image: {
  15651. source: "./media/characters/desta/side.svg",
  15652. extra: 2579 / 2491,
  15653. bottom: 0.053
  15654. }
  15655. },
  15656. },
  15657. [
  15658. {
  15659. name: "Micro",
  15660. height: math.unit(6, "inches")
  15661. },
  15662. {
  15663. name: "Normal",
  15664. height: math.unit(5 + 2 / 12, "feet"),
  15665. default: true
  15666. },
  15667. {
  15668. name: "Macro",
  15669. height: math.unit(62, "feet")
  15670. },
  15671. {
  15672. name: "Megamacro",
  15673. height: math.unit(1800, "feet")
  15674. },
  15675. ]
  15676. ))
  15677. characterMakers.push(() => makeCharacter(
  15678. { name: "Storm Alystar" },
  15679. {
  15680. front: {
  15681. height: math.unit(10, "feet"),
  15682. weight: math.unit(700, "lb"),
  15683. name: "Front",
  15684. image: {
  15685. source: "./media/characters/storm-alystar/front.svg",
  15686. extra: 2112 / 1898,
  15687. bottom: 0.034
  15688. }
  15689. },
  15690. },
  15691. [
  15692. {
  15693. name: "Micro",
  15694. height: math.unit(3.5, "inches")
  15695. },
  15696. {
  15697. name: "Normal",
  15698. height: math.unit(10, "feet"),
  15699. default: true
  15700. },
  15701. {
  15702. name: "Macro",
  15703. height: math.unit(400, "feet")
  15704. },
  15705. {
  15706. name: "Deific",
  15707. height: math.unit(60, "miles")
  15708. },
  15709. ]
  15710. ))
  15711. characterMakers.push(() => makeCharacter(
  15712. { name: "Ilia" },
  15713. {
  15714. front: {
  15715. height: math.unit(2.35, "meters"),
  15716. weight: math.unit(119, "kg"),
  15717. name: "Front",
  15718. image: {
  15719. source: "./media/characters/ilia/front.svg",
  15720. extra: 1285 / 1255,
  15721. bottom: 0.06
  15722. }
  15723. },
  15724. },
  15725. [
  15726. {
  15727. name: "Normal",
  15728. height: math.unit(2.35, "meters")
  15729. },
  15730. {
  15731. name: "Macro",
  15732. height: math.unit(140, "meters"),
  15733. default: true
  15734. },
  15735. {
  15736. name: "Megamacro",
  15737. height: math.unit(100, "miles")
  15738. },
  15739. ]
  15740. ))
  15741. characterMakers.push(() => makeCharacter(
  15742. { name: "KingDead" },
  15743. {
  15744. front: {
  15745. height: math.unit(6 + 5 / 12, "feet"),
  15746. weight: math.unit(190, "lb"),
  15747. name: "Front",
  15748. image: {
  15749. source: "./media/characters/kingdead/front.svg",
  15750. extra: 1228 / 1177
  15751. }
  15752. },
  15753. },
  15754. [
  15755. {
  15756. name: "Micro",
  15757. height: math.unit(7, "inches")
  15758. },
  15759. {
  15760. name: "Normal",
  15761. height: math.unit(6 + 5 / 12, "feet")
  15762. },
  15763. {
  15764. name: "Macro",
  15765. height: math.unit(150, "feet"),
  15766. default: true
  15767. },
  15768. {
  15769. name: "Megamacro",
  15770. height: math.unit(200, "miles")
  15771. },
  15772. ]
  15773. ))
  15774. characterMakers.push(() => makeCharacter(
  15775. { name: "Kyrehx" },
  15776. {
  15777. front: {
  15778. height: math.unit(8, "feet"),
  15779. weight: math.unit(600, "lb"),
  15780. name: "Front",
  15781. image: {
  15782. source: "./media/characters/kyrehx/front.svg",
  15783. extra: 1195 / 1095,
  15784. bottom: 0.034
  15785. }
  15786. },
  15787. },
  15788. [
  15789. {
  15790. name: "Micro",
  15791. height: math.unit(2, "inches")
  15792. },
  15793. {
  15794. name: "Normal",
  15795. height: math.unit(8, "feet"),
  15796. default: true
  15797. },
  15798. {
  15799. name: "Macro",
  15800. height: math.unit(255, "feet")
  15801. },
  15802. ]
  15803. ))
  15804. characterMakers.push(() => makeCharacter(
  15805. { name: "Xang" },
  15806. {
  15807. front: {
  15808. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15809. weight: math.unit(184, "lb"),
  15810. name: "Front",
  15811. image: {
  15812. source: "./media/characters/xang/front.svg",
  15813. extra: 845 / 755
  15814. }
  15815. },
  15816. },
  15817. [
  15818. {
  15819. name: "Normal",
  15820. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15821. default: true
  15822. },
  15823. {
  15824. name: "Macro",
  15825. height: math.unit(0.935 * 146, "feet")
  15826. },
  15827. {
  15828. name: "Megamacro",
  15829. height: math.unit(0.935 * 3, "miles")
  15830. },
  15831. ]
  15832. ))
  15833. characterMakers.push(() => makeCharacter(
  15834. { name: "Doc Weardno" },
  15835. {
  15836. frontDressed: {
  15837. height: math.unit(5 + 7 / 12, "feet"),
  15838. weight: math.unit(140, "lb"),
  15839. name: "Front (Dressed)",
  15840. image: {
  15841. source: "./media/characters/doc-weardno/front-dressed.svg",
  15842. extra: 263 / 234
  15843. }
  15844. },
  15845. backDressed: {
  15846. height: math.unit(5 + 7 / 12, "feet"),
  15847. weight: math.unit(140, "lb"),
  15848. name: "Back (Dressed)",
  15849. image: {
  15850. source: "./media/characters/doc-weardno/back-dressed.svg",
  15851. extra: 266 / 238
  15852. }
  15853. },
  15854. front: {
  15855. height: math.unit(5 + 7 / 12, "feet"),
  15856. weight: math.unit(140, "lb"),
  15857. name: "Front",
  15858. image: {
  15859. source: "./media/characters/doc-weardno/front.svg",
  15860. extra: 254 / 233
  15861. }
  15862. },
  15863. },
  15864. [
  15865. {
  15866. name: "Micro",
  15867. height: math.unit(3, "inches")
  15868. },
  15869. {
  15870. name: "Normal",
  15871. height: math.unit(5 + 7 / 12, "feet"),
  15872. default: true
  15873. },
  15874. {
  15875. name: "Macro",
  15876. height: math.unit(25, "feet")
  15877. },
  15878. {
  15879. name: "Megamacro",
  15880. height: math.unit(2, "miles")
  15881. },
  15882. ]
  15883. ))
  15884. characterMakers.push(() => makeCharacter(
  15885. { name: "Seth Whilst" },
  15886. {
  15887. front: {
  15888. height: math.unit(6 + 2 / 12, "feet"),
  15889. weight: math.unit(153, "lb"),
  15890. name: "Front",
  15891. image: {
  15892. source: "./media/characters/seth-whilst/front.svg",
  15893. bottom: 0.07
  15894. }
  15895. },
  15896. },
  15897. [
  15898. {
  15899. name: "Micro",
  15900. height: math.unit(5, "inches")
  15901. },
  15902. {
  15903. name: "Normal",
  15904. height: math.unit(6 + 2 / 12, "feet"),
  15905. default: true
  15906. },
  15907. ]
  15908. ))
  15909. characterMakers.push(() => makeCharacter(
  15910. { name: "Pocket Jabari" },
  15911. {
  15912. front: {
  15913. height: math.unit(3, "inches"),
  15914. weight: math.unit(8, "grams"),
  15915. name: "Front",
  15916. image: {
  15917. source: "./media/characters/pocket-jabari/front.svg",
  15918. extra: 1024 / 974,
  15919. bottom: 0.039
  15920. }
  15921. },
  15922. },
  15923. [
  15924. {
  15925. name: "Minimicro",
  15926. height: math.unit(8, "mm")
  15927. },
  15928. {
  15929. name: "Micro",
  15930. height: math.unit(3, "inches"),
  15931. default: true
  15932. },
  15933. {
  15934. name: "Normal",
  15935. height: math.unit(3, "feet")
  15936. },
  15937. ]
  15938. ))
  15939. characterMakers.push(() => makeCharacter(
  15940. { name: "Sapphy" },
  15941. {
  15942. front: {
  15943. height: math.unit(15, "feet"),
  15944. weight: math.unit(3280, "lb"),
  15945. name: "Front",
  15946. image: {
  15947. source: "./media/characters/sapphy/front.svg",
  15948. extra: 671 / 577,
  15949. bottom: 0.085
  15950. }
  15951. },
  15952. back: {
  15953. height: math.unit(15, "feet"),
  15954. weight: math.unit(3280, "lb"),
  15955. name: "Back",
  15956. image: {
  15957. source: "./media/characters/sapphy/back.svg",
  15958. extra: 631 / 607,
  15959. bottom: 0.045
  15960. }
  15961. },
  15962. },
  15963. [
  15964. {
  15965. name: "Normal",
  15966. height: math.unit(15, "feet")
  15967. },
  15968. {
  15969. name: "Casual Macro",
  15970. height: math.unit(120, "feet")
  15971. },
  15972. {
  15973. name: "Macro",
  15974. height: math.unit(2150, "feet"),
  15975. default: true
  15976. },
  15977. {
  15978. name: "Megamacro",
  15979. height: math.unit(8, "miles")
  15980. },
  15981. {
  15982. name: "Galaxy Mom",
  15983. height: math.unit(6, "megalightyears")
  15984. },
  15985. ]
  15986. ))
  15987. characterMakers.push(() => makeCharacter(
  15988. { name: "Kiro" },
  15989. {
  15990. front: {
  15991. height: math.unit(6, "feet"),
  15992. weight: math.unit(170, "lb"),
  15993. name: "Front",
  15994. image: {
  15995. source: "./media/characters/kiro/front.svg",
  15996. extra: 1064 / 1012,
  15997. bottom: 0.052
  15998. }
  15999. },
  16000. },
  16001. [
  16002. {
  16003. name: "Micro",
  16004. height: math.unit(6, "inches")
  16005. },
  16006. {
  16007. name: "Normal",
  16008. height: math.unit(6, "feet"),
  16009. default: true
  16010. },
  16011. {
  16012. name: "Macro",
  16013. height: math.unit(72, "feet")
  16014. },
  16015. ]
  16016. ))
  16017. characterMakers.push(() => makeCharacter(
  16018. { name: "Irishfox" },
  16019. {
  16020. front: {
  16021. height: math.unit(5 + 9 / 12, "feet"),
  16022. weight: math.unit(175, "lb"),
  16023. name: "Front",
  16024. image: {
  16025. source: "./media/characters/irishfox/front.svg",
  16026. extra: 1912 / 1680,
  16027. bottom: 0.02
  16028. }
  16029. },
  16030. },
  16031. [
  16032. {
  16033. name: "Nano",
  16034. height: math.unit(1, "mm")
  16035. },
  16036. {
  16037. name: "Micro",
  16038. height: math.unit(2, "inches")
  16039. },
  16040. {
  16041. name: "Normal",
  16042. height: math.unit(5 + 9 / 12, "feet"),
  16043. default: true
  16044. },
  16045. {
  16046. name: "Macro",
  16047. height: math.unit(45, "feet")
  16048. },
  16049. ]
  16050. ))
  16051. characterMakers.push(() => makeCharacter(
  16052. { name: "Aronai Sieyes" },
  16053. {
  16054. front: {
  16055. height: math.unit(6 + 1 / 12, "feet"),
  16056. weight: math.unit(150, "lb"),
  16057. name: "Front",
  16058. image: {
  16059. source: "./media/characters/aronai-sieyes/front.svg",
  16060. extra: 1556 / 1480,
  16061. bottom: 0.015
  16062. }
  16063. },
  16064. side: {
  16065. height: math.unit(6 + 1 / 12, "feet"),
  16066. weight: math.unit(150, "lb"),
  16067. name: "Side",
  16068. image: {
  16069. source: "./media/characters/aronai-sieyes/side.svg",
  16070. extra: 1433 / 1390,
  16071. bottom: 0.0393
  16072. }
  16073. },
  16074. back: {
  16075. height: math.unit(6 + 1 / 12, "feet"),
  16076. weight: math.unit(150, "lb"),
  16077. name: "Back",
  16078. image: {
  16079. source: "./media/characters/aronai-sieyes/back.svg",
  16080. extra: 1544 / 1494,
  16081. bottom: 0.02
  16082. }
  16083. },
  16084. frontClothed: {
  16085. height: math.unit(6 + 1 / 12, "feet"),
  16086. weight: math.unit(150, "lb"),
  16087. name: "Front (Clothed)",
  16088. image: {
  16089. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16090. extra: 1582 / 1527
  16091. }
  16092. },
  16093. feral: {
  16094. height: math.unit(18, "feet"),
  16095. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16096. name: "Feral",
  16097. image: {
  16098. source: "./media/characters/aronai-sieyes/feral.svg",
  16099. extra: 1530 / 1240,
  16100. bottom: 0.035
  16101. }
  16102. },
  16103. },
  16104. [
  16105. {
  16106. name: "Micro",
  16107. height: math.unit(2, "inches")
  16108. },
  16109. {
  16110. name: "Normal",
  16111. height: math.unit(6 + 1 / 12, "feet"),
  16112. default: true
  16113. }
  16114. ]
  16115. ))
  16116. characterMakers.push(() => makeCharacter(
  16117. { name: "Xuna" },
  16118. {
  16119. front: {
  16120. height: math.unit(12, "feet"),
  16121. weight: math.unit(410, "kg"),
  16122. name: "Front",
  16123. image: {
  16124. source: "./media/characters/xuna/front.svg",
  16125. extra: 2184 / 1980
  16126. }
  16127. },
  16128. side: {
  16129. height: math.unit(12, "feet"),
  16130. weight: math.unit(410, "kg"),
  16131. name: "Side",
  16132. image: {
  16133. source: "./media/characters/xuna/side.svg",
  16134. extra: 2184 / 1980
  16135. }
  16136. },
  16137. back: {
  16138. height: math.unit(12, "feet"),
  16139. weight: math.unit(410, "kg"),
  16140. name: "Back",
  16141. image: {
  16142. source: "./media/characters/xuna/back.svg",
  16143. extra: 2184 / 1980
  16144. }
  16145. },
  16146. },
  16147. [
  16148. {
  16149. name: "Nano glow",
  16150. height: math.unit(10, "nm")
  16151. },
  16152. {
  16153. name: "Micro floof",
  16154. height: math.unit(0.3, "m")
  16155. },
  16156. {
  16157. name: "Huggable softy boi",
  16158. height: math.unit(3.6576, "m"),
  16159. default: true
  16160. },
  16161. {
  16162. name: "Admirable floof",
  16163. height: math.unit(80, "meters")
  16164. },
  16165. {
  16166. name: "Gentle macro",
  16167. height: math.unit(300, "meters")
  16168. },
  16169. {
  16170. name: "Very careful floof",
  16171. height: math.unit(3200, "meters")
  16172. },
  16173. {
  16174. name: "The mega floof",
  16175. height: math.unit(36000, "meters")
  16176. },
  16177. {
  16178. name: "Giga-fur-Wicker",
  16179. height: math.unit(4800000, "meters")
  16180. },
  16181. {
  16182. name: "Licky world",
  16183. height: math.unit(20000000, "meters")
  16184. },
  16185. {
  16186. name: "Floofy cyan sun",
  16187. height: math.unit(1500000000, "meters")
  16188. },
  16189. {
  16190. name: "Milky Wicker",
  16191. height: math.unit(1000000000000000000000, "meters")
  16192. },
  16193. {
  16194. name: "The observing Wicker",
  16195. height: math.unit(999999999999999999999999999, "meters")
  16196. },
  16197. ]
  16198. ))
  16199. characterMakers.push(() => makeCharacter(
  16200. { name: "Arokha Sieyes" },
  16201. {
  16202. front: {
  16203. height: math.unit(5 + 9 / 12, "feet"),
  16204. weight: math.unit(150, "lb"),
  16205. name: "Front",
  16206. image: {
  16207. source: "./media/characters/arokha-sieyes/front.svg",
  16208. extra: 1425 / 1284,
  16209. bottom: 0.05
  16210. }
  16211. },
  16212. },
  16213. [
  16214. {
  16215. name: "Normal",
  16216. height: math.unit(5 + 9 / 12, "feet")
  16217. },
  16218. {
  16219. name: "Macro",
  16220. height: math.unit(30, "meters"),
  16221. default: true
  16222. },
  16223. ]
  16224. ))
  16225. characterMakers.push(() => makeCharacter(
  16226. { name: "Arokh Sieyes" },
  16227. {
  16228. front: {
  16229. height: math.unit(6, "feet"),
  16230. weight: math.unit(180, "lb"),
  16231. name: "Front",
  16232. image: {
  16233. source: "./media/characters/arokh-sieyes/front.svg",
  16234. extra: 1830 / 1769,
  16235. bottom: 0.01
  16236. }
  16237. },
  16238. },
  16239. [
  16240. {
  16241. name: "Normal",
  16242. height: math.unit(6, "feet")
  16243. },
  16244. {
  16245. name: "Macro",
  16246. height: math.unit(30, "meters"),
  16247. default: true
  16248. },
  16249. ]
  16250. ))
  16251. characterMakers.push(() => makeCharacter(
  16252. { name: "Goldeneye" },
  16253. {
  16254. side: {
  16255. height: math.unit(13 + 1 / 12, "feet"),
  16256. weight: math.unit(8.5, "tonnes"),
  16257. name: "Side",
  16258. image: {
  16259. source: "./media/characters/goldeneye/side.svg",
  16260. extra: 1182 / 778,
  16261. bottom: 0.067
  16262. }
  16263. },
  16264. paw: {
  16265. height: math.unit(3.4, "feet"),
  16266. name: "Paw",
  16267. image: {
  16268. source: "./media/characters/goldeneye/paw.svg"
  16269. }
  16270. },
  16271. },
  16272. [
  16273. {
  16274. name: "Normal",
  16275. height: math.unit(13 + 1 / 12, "feet"),
  16276. default: true
  16277. },
  16278. ]
  16279. ))
  16280. characterMakers.push(() => makeCharacter(
  16281. { name: "Leonardo Lycheborne" },
  16282. {
  16283. front: {
  16284. height: math.unit(6 + 1 / 12, "feet"),
  16285. weight: math.unit(210, "lb"),
  16286. name: "Front",
  16287. image: {
  16288. source: "./media/characters/leonardo-lycheborne/front.svg",
  16289. extra: 390 / 365,
  16290. bottom: 0.032
  16291. }
  16292. },
  16293. side: {
  16294. height: math.unit(6 + 1 / 12, "feet"),
  16295. weight: math.unit(210, "lb"),
  16296. name: "Side",
  16297. image: {
  16298. source: "./media/characters/leonardo-lycheborne/side.svg",
  16299. extra: 390 / 365,
  16300. bottom: 0.005
  16301. }
  16302. },
  16303. back: {
  16304. height: math.unit(6 + 1 / 12, "feet"),
  16305. weight: math.unit(210, "lb"),
  16306. name: "Back",
  16307. image: {
  16308. source: "./media/characters/leonardo-lycheborne/back.svg",
  16309. extra: 392 / 366,
  16310. bottom: 0.01
  16311. }
  16312. },
  16313. hand: {
  16314. height: math.unit(1.08, "feet"),
  16315. name: "Hand",
  16316. image: {
  16317. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16318. }
  16319. },
  16320. foot: {
  16321. height: math.unit(1.32, "feet"),
  16322. name: "Foot",
  16323. image: {
  16324. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16325. }
  16326. },
  16327. were: {
  16328. height: math.unit(20, "feet"),
  16329. weight: math.unit(7800, "lb"),
  16330. name: "Were",
  16331. image: {
  16332. source: "./media/characters/leonardo-lycheborne/were.svg",
  16333. extra: 308 / 294,
  16334. bottom: 0.048
  16335. }
  16336. },
  16337. feral: {
  16338. height: math.unit(7.5, "feet"),
  16339. weight: math.unit(600, "lb"),
  16340. name: "Feral",
  16341. image: {
  16342. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16343. extra: 210 / 186,
  16344. bottom: 0.108
  16345. }
  16346. },
  16347. taur: {
  16348. height: math.unit(11, "feet"),
  16349. weight: math.unit(3300, "lb"),
  16350. name: "Taur",
  16351. image: {
  16352. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16353. extra: 320 / 303,
  16354. bottom: 0.025
  16355. }
  16356. },
  16357. barghest: {
  16358. height: math.unit(11, "feet"),
  16359. weight: math.unit(1300, "lb"),
  16360. name: "Barghest",
  16361. image: {
  16362. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16363. extra: 323 / 302,
  16364. bottom: 0.027
  16365. }
  16366. },
  16367. dick: {
  16368. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16369. name: "Dick",
  16370. image: {
  16371. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16372. }
  16373. },
  16374. dickWere: {
  16375. height: math.unit((20) / 3.8, "feet"),
  16376. name: "Dick (Were)",
  16377. image: {
  16378. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16379. }
  16380. },
  16381. },
  16382. [
  16383. {
  16384. name: "Normal",
  16385. height: math.unit(6 + 1 / 12, "feet"),
  16386. default: true
  16387. },
  16388. ]
  16389. ))
  16390. characterMakers.push(() => makeCharacter(
  16391. { name: "Jet" },
  16392. {
  16393. front: {
  16394. height: math.unit(10, "feet"),
  16395. weight: math.unit(350, "lb"),
  16396. name: "Front",
  16397. image: {
  16398. source: "./media/characters/jet/front.svg",
  16399. extra: 2050 / 1980,
  16400. bottom: 0.013
  16401. }
  16402. },
  16403. back: {
  16404. height: math.unit(10, "feet"),
  16405. weight: math.unit(350, "lb"),
  16406. name: "Back",
  16407. image: {
  16408. source: "./media/characters/jet/back.svg",
  16409. extra: 2050 / 1980,
  16410. bottom: 0.013
  16411. }
  16412. },
  16413. },
  16414. [
  16415. {
  16416. name: "Micro",
  16417. height: math.unit(6, "inches")
  16418. },
  16419. {
  16420. name: "Normal",
  16421. height: math.unit(10, "feet"),
  16422. default: true
  16423. },
  16424. {
  16425. name: "Macro",
  16426. height: math.unit(100, "feet")
  16427. },
  16428. ]
  16429. ))
  16430. characterMakers.push(() => makeCharacter(
  16431. { name: "Tanarath" },
  16432. {
  16433. front: {
  16434. height: math.unit(15, "feet"),
  16435. weight: math.unit(2800, "lb"),
  16436. name: "Front",
  16437. image: {
  16438. source: "./media/characters/tanarath/front.svg",
  16439. extra: 2392 / 2220,
  16440. bottom: 0.03
  16441. }
  16442. },
  16443. back: {
  16444. height: math.unit(15, "feet"),
  16445. weight: math.unit(2800, "lb"),
  16446. name: "Back",
  16447. image: {
  16448. source: "./media/characters/tanarath/back.svg",
  16449. extra: 2392 / 2220,
  16450. bottom: 0.03
  16451. }
  16452. },
  16453. },
  16454. [
  16455. {
  16456. name: "Normal",
  16457. height: math.unit(15, "feet"),
  16458. default: true
  16459. },
  16460. ]
  16461. ))
  16462. characterMakers.push(() => makeCharacter(
  16463. { name: "Patty CattyBatty" },
  16464. {
  16465. front: {
  16466. height: math.unit(7 + 1 / 12, "feet"),
  16467. weight: math.unit(175, "lb"),
  16468. name: "Front",
  16469. image: {
  16470. source: "./media/characters/patty-cattybatty/front.svg",
  16471. extra: 908 / 874,
  16472. bottom: 0.025
  16473. }
  16474. },
  16475. },
  16476. [
  16477. {
  16478. name: "Micro",
  16479. height: math.unit(1, "inch")
  16480. },
  16481. {
  16482. name: "Normal",
  16483. height: math.unit(7 + 1 / 12, "feet")
  16484. },
  16485. {
  16486. name: "Mini Macro",
  16487. height: math.unit(155, "feet")
  16488. },
  16489. {
  16490. name: "Macro",
  16491. height: math.unit(1077, "feet")
  16492. },
  16493. {
  16494. name: "Mega Macro",
  16495. height: math.unit(47650, "feet"),
  16496. default: true
  16497. },
  16498. {
  16499. name: "Giga Macro",
  16500. height: math.unit(440, "miles")
  16501. },
  16502. {
  16503. name: "Tera Macro",
  16504. height: math.unit(8700, "miles")
  16505. },
  16506. {
  16507. name: "Planetary Macro",
  16508. height: math.unit(32700, "miles")
  16509. },
  16510. {
  16511. name: "Solar Macro",
  16512. height: math.unit(550000, "miles")
  16513. },
  16514. {
  16515. name: "Celestial Macro",
  16516. height: math.unit(2.5, "AU")
  16517. },
  16518. ]
  16519. ))
  16520. characterMakers.push(() => makeCharacter(
  16521. { name: "Cappu" },
  16522. {
  16523. front: {
  16524. height: math.unit(4 + 5 / 12, "feet"),
  16525. weight: math.unit(90, "lb"),
  16526. name: "Front",
  16527. image: {
  16528. source: "./media/characters/cappu/front.svg",
  16529. extra: 1247 / 1152,
  16530. bottom: 0.012
  16531. }
  16532. },
  16533. },
  16534. [
  16535. {
  16536. name: "Normal",
  16537. height: math.unit(4 + 5 / 12, "feet"),
  16538. default: true
  16539. },
  16540. ]
  16541. ))
  16542. characterMakers.push(() => makeCharacter(
  16543. { name: "Sebi" },
  16544. {
  16545. frontDressed: {
  16546. height: math.unit(70, "cm"),
  16547. weight: math.unit(6, "kg"),
  16548. name: "Front (Dressed)",
  16549. image: {
  16550. source: "./media/characters/sebi/front-dressed.svg",
  16551. extra: 713.5 / 686.5,
  16552. bottom: 0.003
  16553. }
  16554. },
  16555. front: {
  16556. height: math.unit(70, "cm"),
  16557. weight: math.unit(5, "kg"),
  16558. name: "Front",
  16559. image: {
  16560. source: "./media/characters/sebi/front.svg",
  16561. extra: 713.5 / 686.5,
  16562. bottom: 0.003
  16563. }
  16564. }
  16565. },
  16566. [
  16567. {
  16568. name: "Normal",
  16569. height: math.unit(70, "cm"),
  16570. default: true
  16571. },
  16572. {
  16573. name: "Macro",
  16574. height: math.unit(8, "meters")
  16575. },
  16576. ]
  16577. ))
  16578. characterMakers.push(() => makeCharacter(
  16579. { name: "Typhek" },
  16580. {
  16581. front: {
  16582. height: math.unit(6, "feet"),
  16583. weight: math.unit(150, "lb"),
  16584. name: "Front",
  16585. image: {
  16586. source: "./media/characters/typhek/front.svg",
  16587. extra: 1948 / 1929,
  16588. bottom: 0.025
  16589. }
  16590. },
  16591. side: {
  16592. height: math.unit(6, "feet"),
  16593. weight: math.unit(150, "lb"),
  16594. name: "Side",
  16595. image: {
  16596. source: "./media/characters/typhek/side.svg",
  16597. extra: 2034 / 2010,
  16598. bottom: 0.003
  16599. }
  16600. },
  16601. back: {
  16602. height: math.unit(6, "feet"),
  16603. weight: math.unit(150, "lb"),
  16604. name: "Back",
  16605. image: {
  16606. source: "./media/characters/typhek/back.svg",
  16607. extra: 2005 / 1978,
  16608. bottom: 0.004
  16609. }
  16610. },
  16611. palm: {
  16612. height: math.unit(1.2, "feet"),
  16613. name: "Palm",
  16614. image: {
  16615. source: "./media/characters/typhek/palm.svg"
  16616. }
  16617. },
  16618. fist: {
  16619. height: math.unit(1.1, "feet"),
  16620. name: "Fist",
  16621. image: {
  16622. source: "./media/characters/typhek/fist.svg"
  16623. }
  16624. },
  16625. foot: {
  16626. height: math.unit(1.57, "feet"),
  16627. name: "Foot",
  16628. image: {
  16629. source: "./media/characters/typhek/foot.svg"
  16630. }
  16631. },
  16632. sole: {
  16633. height: math.unit(2.05, "feet"),
  16634. name: "Sole",
  16635. image: {
  16636. source: "./media/characters/typhek/sole.svg"
  16637. }
  16638. },
  16639. },
  16640. [
  16641. {
  16642. name: "Macro",
  16643. height: math.unit(40, "stories"),
  16644. default: true
  16645. },
  16646. {
  16647. name: "Megamacro",
  16648. height: math.unit(1, "mile")
  16649. },
  16650. {
  16651. name: "Gigamacro",
  16652. height: math.unit(4000, "solarradii")
  16653. },
  16654. {
  16655. name: "Universal",
  16656. height: math.unit(1.1, "universes")
  16657. }
  16658. ]
  16659. ))
  16660. characterMakers.push(() => makeCharacter(
  16661. { name: "Kassy" },
  16662. {
  16663. side: {
  16664. height: math.unit(5 + 7 / 12, "feet"),
  16665. weight: math.unit(150, "lb"),
  16666. name: "Side",
  16667. image: {
  16668. source: "./media/characters/kassy/side.svg",
  16669. extra: 1280 / 1225,
  16670. bottom: 0.002
  16671. }
  16672. },
  16673. front: {
  16674. height: math.unit(5 + 7 / 12, "feet"),
  16675. weight: math.unit(150, "lb"),
  16676. name: "Front",
  16677. image: {
  16678. source: "./media/characters/kassy/front.svg",
  16679. extra: 1280 / 1225,
  16680. bottom: 0.025
  16681. }
  16682. },
  16683. back: {
  16684. height: math.unit(5 + 7 / 12, "feet"),
  16685. weight: math.unit(150, "lb"),
  16686. name: "Back",
  16687. image: {
  16688. source: "./media/characters/kassy/back.svg",
  16689. extra: 1280 / 1225,
  16690. bottom: 0.002
  16691. }
  16692. },
  16693. foot: {
  16694. height: math.unit(1.266, "feet"),
  16695. name: "Foot",
  16696. image: {
  16697. source: "./media/characters/kassy/foot.svg"
  16698. }
  16699. },
  16700. },
  16701. [
  16702. {
  16703. name: "Normal",
  16704. height: math.unit(5 + 7 / 12, "feet")
  16705. },
  16706. {
  16707. name: "Macro",
  16708. height: math.unit(137, "feet"),
  16709. default: true
  16710. },
  16711. {
  16712. name: "Megamacro",
  16713. height: math.unit(1, "mile")
  16714. },
  16715. ]
  16716. ))
  16717. characterMakers.push(() => makeCharacter(
  16718. { name: "Neil" },
  16719. {
  16720. front: {
  16721. height: math.unit(6 + 1 / 12, "feet"),
  16722. weight: math.unit(200, "lb"),
  16723. name: "Front",
  16724. image: {
  16725. source: "./media/characters/neil/front.svg",
  16726. extra: 1326 / 1250,
  16727. bottom: 0.023
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(6 + 1 / 12, "feet"),
  16735. default: true
  16736. },
  16737. {
  16738. name: "Macro",
  16739. height: math.unit(200, "feet")
  16740. },
  16741. ]
  16742. ))
  16743. characterMakers.push(() => makeCharacter(
  16744. { name: "Atticus" },
  16745. {
  16746. front: {
  16747. height: math.unit(5 + 9 / 12, "feet"),
  16748. weight: math.unit(190, "lb"),
  16749. name: "Front",
  16750. image: {
  16751. source: "./media/characters/atticus/front.svg",
  16752. extra: 2934 / 2785,
  16753. bottom: 0.025
  16754. }
  16755. },
  16756. },
  16757. [
  16758. {
  16759. name: "Normal",
  16760. height: math.unit(5 + 9 / 12, "feet"),
  16761. default: true
  16762. },
  16763. {
  16764. name: "Macro",
  16765. height: math.unit(180, "feet")
  16766. },
  16767. ]
  16768. ))
  16769. characterMakers.push(() => makeCharacter(
  16770. { name: "Milo" },
  16771. {
  16772. side: {
  16773. height: math.unit(9, "feet"),
  16774. weight: math.unit(650, "lb"),
  16775. name: "Side",
  16776. image: {
  16777. source: "./media/characters/milo/side.svg",
  16778. extra: 2644 / 2310,
  16779. bottom: 0.032
  16780. }
  16781. },
  16782. },
  16783. [
  16784. {
  16785. name: "Normal",
  16786. height: math.unit(9, "feet"),
  16787. default: true
  16788. },
  16789. {
  16790. name: "Macro",
  16791. height: math.unit(300, "feet")
  16792. },
  16793. ]
  16794. ))
  16795. characterMakers.push(() => makeCharacter(
  16796. { name: "Ijzer" },
  16797. {
  16798. side: {
  16799. height: math.unit(8, "meters"),
  16800. weight: math.unit(90000, "kg"),
  16801. name: "Side",
  16802. image: {
  16803. source: "./media/characters/ijzer/side.svg",
  16804. extra: 2756 / 1600,
  16805. bottom: 0.01
  16806. }
  16807. },
  16808. },
  16809. [
  16810. {
  16811. name: "Small",
  16812. height: math.unit(3, "meters")
  16813. },
  16814. {
  16815. name: "Normal",
  16816. height: math.unit(8, "meters"),
  16817. default: true
  16818. },
  16819. {
  16820. name: "Normal+",
  16821. height: math.unit(10, "meters")
  16822. },
  16823. {
  16824. name: "Bigger",
  16825. height: math.unit(24, "meters")
  16826. },
  16827. {
  16828. name: "Huge",
  16829. height: math.unit(80, "meters")
  16830. },
  16831. ]
  16832. ))
  16833. characterMakers.push(() => makeCharacter(
  16834. { name: "Luca Cervicum" },
  16835. {
  16836. front: {
  16837. height: math.unit(6 + 2 / 12, "feet"),
  16838. weight: math.unit(153, "lb"),
  16839. name: "Front",
  16840. image: {
  16841. source: "./media/characters/luca-cervicum/front.svg",
  16842. extra: 370 / 327,
  16843. bottom: 0.015
  16844. }
  16845. },
  16846. back: {
  16847. height: math.unit(6 + 2 / 12, "feet"),
  16848. weight: math.unit(153, "lb"),
  16849. name: "Back",
  16850. image: {
  16851. source: "./media/characters/luca-cervicum/back.svg",
  16852. extra: 367 / 333,
  16853. bottom: 0.005
  16854. }
  16855. },
  16856. frontGear: {
  16857. height: math.unit(6 + 2 / 12, "feet"),
  16858. weight: math.unit(173, "lb"),
  16859. name: "Front (Gear)",
  16860. image: {
  16861. source: "./media/characters/luca-cervicum/front-gear.svg",
  16862. extra: 377 / 333,
  16863. bottom: 0.006
  16864. }
  16865. },
  16866. },
  16867. [
  16868. {
  16869. name: "Normal",
  16870. height: math.unit(6 + 2 / 12, "feet"),
  16871. default: true
  16872. },
  16873. ]
  16874. ))
  16875. characterMakers.push(() => makeCharacter(
  16876. { name: "Oliver" },
  16877. {
  16878. front: {
  16879. height: math.unit(6 + 1 / 12, "feet"),
  16880. weight: math.unit(304, "lb"),
  16881. name: "Front",
  16882. image: {
  16883. source: "./media/characters/oliver/front.svg",
  16884. extra: 157 / 143,
  16885. bottom: 0.08
  16886. }
  16887. },
  16888. },
  16889. [
  16890. {
  16891. name: "Normal",
  16892. height: math.unit(6 + 1 / 12, "feet"),
  16893. default: true
  16894. },
  16895. ]
  16896. ))
  16897. characterMakers.push(() => makeCharacter(
  16898. { name: "Shane" },
  16899. {
  16900. front: {
  16901. height: math.unit(5 + 7 / 12, "feet"),
  16902. weight: math.unit(140, "lb"),
  16903. name: "Front",
  16904. image: {
  16905. source: "./media/characters/shane/front.svg",
  16906. extra: 304 / 289,
  16907. bottom: 0.005
  16908. }
  16909. },
  16910. },
  16911. [
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(5 + 7 / 12, "feet"),
  16915. default: true
  16916. },
  16917. ]
  16918. ))
  16919. characterMakers.push(() => makeCharacter(
  16920. { name: "Shin" },
  16921. {
  16922. front: {
  16923. height: math.unit(5 + 9 / 12, "feet"),
  16924. weight: math.unit(178, "lb"),
  16925. name: "Front",
  16926. image: {
  16927. source: "./media/characters/shin/front.svg",
  16928. extra: 159 / 151,
  16929. bottom: 0.015
  16930. }
  16931. },
  16932. },
  16933. [
  16934. {
  16935. name: "Normal",
  16936. height: math.unit(5 + 9 / 12, "feet"),
  16937. default: true
  16938. },
  16939. ]
  16940. ))
  16941. characterMakers.push(() => makeCharacter(
  16942. { name: "Xerxes" },
  16943. {
  16944. front: {
  16945. height: math.unit(5 + 10 / 12, "feet"),
  16946. weight: math.unit(168, "lb"),
  16947. name: "Front",
  16948. image: {
  16949. source: "./media/characters/xerxes/front.svg",
  16950. extra: 282 / 260,
  16951. bottom: 0.045
  16952. }
  16953. },
  16954. },
  16955. [
  16956. {
  16957. name: "Normal",
  16958. height: math.unit(5 + 10 / 12, "feet"),
  16959. default: true
  16960. },
  16961. ]
  16962. ))
  16963. characterMakers.push(() => makeCharacter(
  16964. { name: "Chaska" },
  16965. {
  16966. front: {
  16967. height: math.unit(6 + 7 / 12, "feet"),
  16968. weight: math.unit(208, "lb"),
  16969. name: "Front",
  16970. image: {
  16971. source: "./media/characters/chaska/front.svg",
  16972. extra: 332 / 319,
  16973. bottom: 0.015
  16974. }
  16975. },
  16976. },
  16977. [
  16978. {
  16979. name: "Normal",
  16980. height: math.unit(6 + 7 / 12, "feet"),
  16981. default: true
  16982. },
  16983. ]
  16984. ))
  16985. characterMakers.push(() => makeCharacter(
  16986. { name: "Enuk" },
  16987. {
  16988. front: {
  16989. height: math.unit(5 + 8 / 12, "feet"),
  16990. weight: math.unit(208, "lb"),
  16991. name: "Front",
  16992. image: {
  16993. source: "./media/characters/enuk/front.svg",
  16994. extra: 437 / 406,
  16995. bottom: 0.02
  16996. }
  16997. },
  16998. },
  16999. [
  17000. {
  17001. name: "Normal",
  17002. height: math.unit(5 + 8 / 12, "feet"),
  17003. default: true
  17004. },
  17005. ]
  17006. ))
  17007. characterMakers.push(() => makeCharacter(
  17008. { name: "Bruun" },
  17009. {
  17010. front: {
  17011. height: math.unit(5 + 10 / 12, "feet"),
  17012. weight: math.unit(252, "lb"),
  17013. name: "Front",
  17014. image: {
  17015. source: "./media/characters/bruun/front.svg",
  17016. extra: 197 / 187,
  17017. bottom: 0.012
  17018. }
  17019. },
  17020. },
  17021. [
  17022. {
  17023. name: "Normal",
  17024. height: math.unit(5 + 10 / 12, "feet"),
  17025. default: true
  17026. },
  17027. ]
  17028. ))
  17029. characterMakers.push(() => makeCharacter(
  17030. { name: "Alexeev" },
  17031. {
  17032. front: {
  17033. height: math.unit(6 + 10 / 12, "feet"),
  17034. weight: math.unit(255, "lb"),
  17035. name: "Front",
  17036. image: {
  17037. source: "./media/characters/alexeev/front.svg",
  17038. extra: 213 / 200,
  17039. bottom: 0.05
  17040. }
  17041. },
  17042. },
  17043. [
  17044. {
  17045. name: "Normal",
  17046. height: math.unit(6 + 10 / 12, "feet"),
  17047. default: true
  17048. },
  17049. ]
  17050. ))
  17051. characterMakers.push(() => makeCharacter(
  17052. { name: "Evelyn" },
  17053. {
  17054. front: {
  17055. height: math.unit(2 + 8 / 12, "feet"),
  17056. weight: math.unit(22, "lb"),
  17057. name: "Front",
  17058. image: {
  17059. source: "./media/characters/evelyn/front.svg",
  17060. extra: 208 / 180
  17061. }
  17062. },
  17063. },
  17064. [
  17065. {
  17066. name: "Normal",
  17067. height: math.unit(2 + 8 / 12, "feet"),
  17068. default: true
  17069. },
  17070. ]
  17071. ))
  17072. characterMakers.push(() => makeCharacter(
  17073. { name: "Inca" },
  17074. {
  17075. front: {
  17076. height: math.unit(5 + 9 / 12, "feet"),
  17077. weight: math.unit(139, "lb"),
  17078. name: "Front",
  17079. image: {
  17080. source: "./media/characters/inca/front.svg",
  17081. extra: 294 / 291,
  17082. bottom: 0.03
  17083. }
  17084. },
  17085. },
  17086. [
  17087. {
  17088. name: "Normal",
  17089. height: math.unit(5 + 9 / 12, "feet"),
  17090. default: true
  17091. },
  17092. ]
  17093. ))
  17094. characterMakers.push(() => makeCharacter(
  17095. { name: "Magdalene" },
  17096. {
  17097. front: {
  17098. height: math.unit(5 + 1 / 12, "feet"),
  17099. weight: math.unit(84, "lb"),
  17100. name: "Front",
  17101. image: {
  17102. source: "./media/characters/magdalene/front.svg",
  17103. extra: 293 / 273
  17104. }
  17105. },
  17106. },
  17107. [
  17108. {
  17109. name: "Normal",
  17110. height: math.unit(5 + 1 / 12, "feet"),
  17111. default: true
  17112. },
  17113. ]
  17114. ))
  17115. characterMakers.push(() => makeCharacter(
  17116. { name: "Mera" },
  17117. {
  17118. front: {
  17119. height: math.unit(6 + 3 / 12, "feet"),
  17120. weight: math.unit(185, "lb"),
  17121. name: "Front",
  17122. image: {
  17123. source: "./media/characters/mera/front.svg",
  17124. extra: 291 / 277,
  17125. bottom: 0.03
  17126. }
  17127. },
  17128. },
  17129. [
  17130. {
  17131. name: "Normal",
  17132. height: math.unit(6 + 3 / 12, "feet"),
  17133. default: true
  17134. },
  17135. ]
  17136. ))
  17137. characterMakers.push(() => makeCharacter(
  17138. { name: "Ceres" },
  17139. {
  17140. front: {
  17141. height: math.unit(6 + 7 / 12, "feet"),
  17142. weight: math.unit(160, "lb"),
  17143. name: "Front",
  17144. image: {
  17145. source: "./media/characters/ceres/front.svg",
  17146. extra: 1023 / 950,
  17147. bottom: 0.027
  17148. }
  17149. },
  17150. back: {
  17151. height: math.unit(6 + 7 / 12, "feet"),
  17152. weight: math.unit(160, "lb"),
  17153. name: "Back",
  17154. image: {
  17155. source: "./media/characters/ceres/back.svg",
  17156. extra: 1023 / 950
  17157. }
  17158. },
  17159. },
  17160. [
  17161. {
  17162. name: "Normal",
  17163. height: math.unit(6 + 7 / 12, "feet"),
  17164. default: true
  17165. },
  17166. ]
  17167. ))
  17168. characterMakers.push(() => makeCharacter(
  17169. { name: "Kris" },
  17170. {
  17171. front: {
  17172. height: math.unit(5 + 10 / 12, "feet"),
  17173. weight: math.unit(150, "lb"),
  17174. name: "Front",
  17175. image: {
  17176. source: "./media/characters/kris/front.svg",
  17177. extra: 885 / 803,
  17178. bottom: 0.03
  17179. }
  17180. },
  17181. },
  17182. [
  17183. {
  17184. name: "Normal",
  17185. height: math.unit(5 + 10 / 12, "feet"),
  17186. default: true
  17187. },
  17188. ]
  17189. ))
  17190. characterMakers.push(() => makeCharacter(
  17191. { name: "Taluthus" },
  17192. {
  17193. front: {
  17194. height: math.unit(7, "feet"),
  17195. weight: math.unit(120, "kg"),
  17196. name: "Front",
  17197. image: {
  17198. source: "./media/characters/taluthus/front.svg",
  17199. extra: 903 / 833,
  17200. bottom: 0.015
  17201. }
  17202. },
  17203. },
  17204. [
  17205. {
  17206. name: "Normal",
  17207. height: math.unit(7, "feet"),
  17208. default: true
  17209. },
  17210. {
  17211. name: "Macro",
  17212. height: math.unit(300, "feet")
  17213. },
  17214. ]
  17215. ))
  17216. characterMakers.push(() => makeCharacter(
  17217. { name: "Dawn" },
  17218. {
  17219. front: {
  17220. height: math.unit(5 + 9 / 12, "feet"),
  17221. weight: math.unit(145, "lb"),
  17222. name: "Front",
  17223. image: {
  17224. source: "./media/characters/dawn/front.svg",
  17225. extra: 2094 / 2016,
  17226. bottom: 0.025
  17227. }
  17228. },
  17229. back: {
  17230. height: math.unit(5 + 9 / 12, "feet"),
  17231. weight: math.unit(160, "lb"),
  17232. name: "Back",
  17233. image: {
  17234. source: "./media/characters/dawn/back.svg",
  17235. extra: 2112 / 2080,
  17236. bottom: 0.005
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Normal",
  17243. height: math.unit(6 + 7 / 12, "feet"),
  17244. default: true
  17245. },
  17246. ]
  17247. ))
  17248. characterMakers.push(() => makeCharacter(
  17249. { name: "Arador" },
  17250. {
  17251. anthro: {
  17252. height: math.unit(8 + 3 / 12, "feet"),
  17253. weight: math.unit(450, "lb"),
  17254. name: "Anthro",
  17255. image: {
  17256. source: "./media/characters/arador/anthro.svg",
  17257. extra: 1835 / 1718,
  17258. bottom: 0.025
  17259. }
  17260. },
  17261. feral: {
  17262. height: math.unit(4, "feet"),
  17263. weight: math.unit(200, "lb"),
  17264. name: "Feral",
  17265. image: {
  17266. source: "./media/characters/arador/feral.svg",
  17267. extra: 1683 / 1514,
  17268. bottom: 0.07
  17269. }
  17270. },
  17271. },
  17272. [
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(8 + 3 / 12, "feet")
  17276. },
  17277. {
  17278. name: "Macro",
  17279. height: math.unit(82.5, "feet"),
  17280. default: true
  17281. },
  17282. ]
  17283. ))
  17284. characterMakers.push(() => makeCharacter(
  17285. { name: "Dharsi" },
  17286. {
  17287. front: {
  17288. height: math.unit(5 + 10 / 12, "feet"),
  17289. weight: math.unit(125, "lb"),
  17290. name: "Front",
  17291. image: {
  17292. source: "./media/characters/dharsi/front.svg",
  17293. extra: 716 / 630,
  17294. bottom: 0.035
  17295. }
  17296. },
  17297. },
  17298. [
  17299. {
  17300. name: "Nano",
  17301. height: math.unit(100, "nm")
  17302. },
  17303. {
  17304. name: "Micro",
  17305. height: math.unit(2, "inches")
  17306. },
  17307. {
  17308. name: "Normal",
  17309. height: math.unit(5 + 10 / 12, "feet"),
  17310. default: true
  17311. },
  17312. {
  17313. name: "Macro",
  17314. height: math.unit(1000, "feet")
  17315. },
  17316. {
  17317. name: "Megamacro",
  17318. height: math.unit(10, "miles")
  17319. },
  17320. {
  17321. name: "Gigamacro",
  17322. height: math.unit(3000, "miles")
  17323. },
  17324. {
  17325. name: "Teramacro",
  17326. height: math.unit(500000, "miles")
  17327. },
  17328. {
  17329. name: "Teramacro+",
  17330. height: math.unit(30, "galaxies")
  17331. },
  17332. ]
  17333. ))
  17334. characterMakers.push(() => makeCharacter(
  17335. { name: "Deathy" },
  17336. {
  17337. front: {
  17338. height: math.unit(6, "feet"),
  17339. weight: math.unit(150, "lb"),
  17340. name: "Front",
  17341. image: {
  17342. source: "./media/characters/deathy/front.svg",
  17343. extra: 1552 / 1463,
  17344. bottom: 0.025
  17345. }
  17346. },
  17347. side: {
  17348. height: math.unit(6, "feet"),
  17349. weight: math.unit(150, "lb"),
  17350. name: "Side",
  17351. image: {
  17352. source: "./media/characters/deathy/side.svg",
  17353. extra: 1604 / 1455,
  17354. bottom: 0.025
  17355. }
  17356. },
  17357. back: {
  17358. height: math.unit(6, "feet"),
  17359. weight: math.unit(150, "lb"),
  17360. name: "Back",
  17361. image: {
  17362. source: "./media/characters/deathy/back.svg",
  17363. extra: 1580 / 1463,
  17364. bottom: 0.005
  17365. }
  17366. },
  17367. },
  17368. [
  17369. {
  17370. name: "Micro",
  17371. height: math.unit(5, "millimeters")
  17372. },
  17373. {
  17374. name: "Normal",
  17375. height: math.unit(6 + 5 / 12, "feet"),
  17376. default: true
  17377. },
  17378. ]
  17379. ))
  17380. characterMakers.push(() => makeCharacter(
  17381. { name: "Juniper" },
  17382. {
  17383. front: {
  17384. height: math.unit(16, "feet"),
  17385. weight: math.unit(4000, "lb"),
  17386. name: "Front",
  17387. image: {
  17388. source: "./media/characters/juniper/front.svg",
  17389. bottom: 0.04
  17390. }
  17391. },
  17392. },
  17393. [
  17394. {
  17395. name: "Normal",
  17396. height: math.unit(16, "feet"),
  17397. default: true
  17398. },
  17399. ]
  17400. ))
  17401. characterMakers.push(() => makeCharacter(
  17402. { name: "Hipster" },
  17403. {
  17404. front: {
  17405. height: math.unit(6, "feet"),
  17406. weight: math.unit(150, "lb"),
  17407. name: "Front",
  17408. image: {
  17409. source: "./media/characters/hipster/front.svg",
  17410. extra: 1312 / 1209,
  17411. bottom: 0.025
  17412. }
  17413. },
  17414. back: {
  17415. height: math.unit(6, "feet"),
  17416. weight: math.unit(150, "lb"),
  17417. name: "Back",
  17418. image: {
  17419. source: "./media/characters/hipster/back.svg",
  17420. extra: 1281 / 1196,
  17421. bottom: 0.01
  17422. }
  17423. },
  17424. },
  17425. [
  17426. {
  17427. name: "Micro",
  17428. height: math.unit(1, "mm")
  17429. },
  17430. {
  17431. name: "Normal",
  17432. height: math.unit(4, "inches"),
  17433. default: true
  17434. },
  17435. {
  17436. name: "Macro",
  17437. height: math.unit(500, "feet")
  17438. },
  17439. {
  17440. name: "Megamacro",
  17441. height: math.unit(1000, "miles")
  17442. },
  17443. ]
  17444. ))
  17445. characterMakers.push(() => makeCharacter(
  17446. { name: "Tendirmuldr" },
  17447. {
  17448. front: {
  17449. height: math.unit(6, "feet"),
  17450. weight: math.unit(150, "lb"),
  17451. name: "Front",
  17452. image: {
  17453. source: "./media/characters/tendirmuldr/front.svg",
  17454. extra: 1878 / 1772,
  17455. bottom: 0.015
  17456. }
  17457. },
  17458. },
  17459. [
  17460. {
  17461. name: "Megamacro",
  17462. height: math.unit(1500, "miles"),
  17463. default: true
  17464. },
  17465. ]
  17466. ))
  17467. characterMakers.push(() => makeCharacter(
  17468. { name: "Mort" },
  17469. {
  17470. front: {
  17471. height: math.unit(14, "feet"),
  17472. weight: math.unit(12000, "lb"),
  17473. name: "Front",
  17474. image: {
  17475. source: "./media/characters/mort/front.svg",
  17476. extra: 365 / 318,
  17477. bottom: 0.01
  17478. }
  17479. },
  17480. side: {
  17481. height: math.unit(14, "feet"),
  17482. weight: math.unit(12000, "lb"),
  17483. name: "Side",
  17484. image: {
  17485. source: "./media/characters/mort/side.svg",
  17486. extra: 365 / 318,
  17487. bottom: 0.052
  17488. },
  17489. default: true
  17490. },
  17491. back: {
  17492. height: math.unit(14, "feet"),
  17493. weight: math.unit(12000, "lb"),
  17494. name: "Back",
  17495. image: {
  17496. source: "./media/characters/mort/back.svg",
  17497. extra: 371 / 332,
  17498. bottom: 0.18
  17499. }
  17500. },
  17501. },
  17502. [
  17503. {
  17504. name: "Normal",
  17505. height: math.unit(14, "feet"),
  17506. default: true
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Lycoa" },
  17512. {
  17513. front: {
  17514. height: math.unit(8, "feet"),
  17515. weight: math.unit(1, "ton"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/lycoa/front.svg",
  17519. extra: 1875 / 1789,
  17520. bottom: 0.022
  17521. }
  17522. },
  17523. back: {
  17524. height: math.unit(8, "feet"),
  17525. weight: math.unit(1, "ton"),
  17526. name: "Back",
  17527. image: {
  17528. source: "./media/characters/lycoa/back.svg",
  17529. extra: 1835 / 1781,
  17530. bottom: 0.03
  17531. }
  17532. },
  17533. },
  17534. [
  17535. {
  17536. name: "Normal",
  17537. height: math.unit(8, "feet"),
  17538. default: true
  17539. },
  17540. {
  17541. name: "Macro",
  17542. height: math.unit(30, "feet")
  17543. },
  17544. ]
  17545. ))
  17546. characterMakers.push(() => makeCharacter(
  17547. { name: "Naldara" },
  17548. {
  17549. front: {
  17550. height: math.unit(4 + 2 / 12, "feet"),
  17551. weight: math.unit(70, "lb"),
  17552. name: "Front",
  17553. image: {
  17554. source: "./media/characters/naldara/front.svg",
  17555. extra: 841 / 720,
  17556. bottom: 0.04
  17557. }
  17558. },
  17559. },
  17560. [
  17561. {
  17562. name: "Normal",
  17563. height: math.unit(4 + 2 / 12, "feet"),
  17564. default: true
  17565. },
  17566. ]
  17567. ))
  17568. characterMakers.push(() => makeCharacter(
  17569. { name: "Briar" },
  17570. {
  17571. front: {
  17572. height: math.unit(13 + 7 / 12, "feet"),
  17573. weight: math.unit(1500, "lb"),
  17574. name: "Front",
  17575. image: {
  17576. source: "./media/characters/briar/front.svg",
  17577. extra: 626 / 596,
  17578. bottom: 0.08
  17579. }
  17580. },
  17581. },
  17582. [
  17583. {
  17584. name: "Normal",
  17585. height: math.unit(13 + 7 / 12, "feet"),
  17586. default: true
  17587. },
  17588. ]
  17589. ))
  17590. characterMakers.push(() => makeCharacter(
  17591. { name: "Vanguard" },
  17592. {
  17593. side: {
  17594. height: math.unit(10, "feet"),
  17595. weight: math.unit(500, "lb"),
  17596. name: "Side",
  17597. image: {
  17598. source: "./media/characters/vanguard/side.svg",
  17599. extra: 502 / 425,
  17600. bottom: 0.087
  17601. }
  17602. },
  17603. },
  17604. [
  17605. {
  17606. name: "Normal",
  17607. height: math.unit(10, "feet"),
  17608. default: true
  17609. },
  17610. ]
  17611. ))
  17612. characterMakers.push(() => makeCharacter(
  17613. { name: "Artemis" },
  17614. {
  17615. front: {
  17616. height: math.unit(7.5, "feet"),
  17617. weight: math.unit(2, "lb"),
  17618. name: "Front",
  17619. image: {
  17620. source: "./media/characters/artemis/front.svg",
  17621. extra: 1192 / 1075,
  17622. bottom: 0.07
  17623. }
  17624. },
  17625. },
  17626. [
  17627. {
  17628. name: "Normal",
  17629. height: math.unit(7.5, "feet"),
  17630. default: true
  17631. },
  17632. {
  17633. name: "Enlarged",
  17634. height: math.unit(12, "feet")
  17635. },
  17636. ]
  17637. ))
  17638. characterMakers.push(() => makeCharacter(
  17639. { name: "Kira" },
  17640. {
  17641. front: {
  17642. height: math.unit(5 + 3 / 12, "feet"),
  17643. weight: math.unit(160, "lb"),
  17644. name: "Front",
  17645. image: {
  17646. source: "./media/characters/kira/front.svg",
  17647. extra: 906 / 786,
  17648. bottom: 0.01
  17649. }
  17650. },
  17651. back: {
  17652. height: math.unit(5 + 3 / 12, "feet"),
  17653. weight: math.unit(160, "lb"),
  17654. name: "Back",
  17655. image: {
  17656. source: "./media/characters/kira/back.svg",
  17657. extra: 882 / 757,
  17658. bottom: 0.005
  17659. }
  17660. },
  17661. frontDressed: {
  17662. height: math.unit(5 + 3 / 12, "feet"),
  17663. weight: math.unit(160, "lb"),
  17664. name: "Front (Dressed)",
  17665. image: {
  17666. source: "./media/characters/kira/front-dressed.svg",
  17667. extra: 906 / 786,
  17668. bottom: 0.01
  17669. }
  17670. },
  17671. beans: {
  17672. height: math.unit(0.92, "feet"),
  17673. name: "Beans",
  17674. image: {
  17675. source: "./media/characters/kira/beans.svg"
  17676. }
  17677. },
  17678. },
  17679. [
  17680. {
  17681. name: "Normal",
  17682. height: math.unit(5 + 3 / 12, "feet"),
  17683. default: true
  17684. },
  17685. ]
  17686. ))
  17687. characterMakers.push(() => makeCharacter(
  17688. { name: "Scramble" },
  17689. {
  17690. front: {
  17691. height: math.unit(5 + 4 / 12, "feet"),
  17692. weight: math.unit(145, "lb"),
  17693. name: "Front",
  17694. image: {
  17695. source: "./media/characters/scramble/front.svg",
  17696. extra: 763 / 727,
  17697. bottom: 0.05
  17698. }
  17699. },
  17700. back: {
  17701. height: math.unit(5 + 4 / 12, "feet"),
  17702. weight: math.unit(145, "lb"),
  17703. name: "Back",
  17704. image: {
  17705. source: "./media/characters/scramble/back.svg",
  17706. extra: 826 / 737,
  17707. bottom: 0.002
  17708. }
  17709. },
  17710. },
  17711. [
  17712. {
  17713. name: "Normal",
  17714. height: math.unit(5 + 4 / 12, "feet"),
  17715. default: true
  17716. },
  17717. ]
  17718. ))
  17719. characterMakers.push(() => makeCharacter(
  17720. { name: "Biscuit" },
  17721. {
  17722. side: {
  17723. height: math.unit(6 + 2 / 12, "feet"),
  17724. weight: math.unit(190, "lb"),
  17725. name: "Side",
  17726. image: {
  17727. source: "./media/characters/biscuit/side.svg",
  17728. extra: 858 / 791,
  17729. bottom: 0.044
  17730. }
  17731. },
  17732. },
  17733. [
  17734. {
  17735. name: "Normal",
  17736. height: math.unit(6 + 2 / 12, "feet"),
  17737. default: true
  17738. },
  17739. ]
  17740. ))
  17741. characterMakers.push(() => makeCharacter(
  17742. { name: "Poffin" },
  17743. {
  17744. front: {
  17745. height: math.unit(5 + 2 / 12, "feet"),
  17746. weight: math.unit(120, "lb"),
  17747. name: "Front",
  17748. image: {
  17749. source: "./media/characters/poffin/front.svg",
  17750. extra: 786 / 680,
  17751. bottom: 0.005
  17752. }
  17753. },
  17754. },
  17755. [
  17756. {
  17757. name: "Normal",
  17758. height: math.unit(5 + 2 / 12, "feet"),
  17759. default: true
  17760. },
  17761. ]
  17762. ))
  17763. characterMakers.push(() => makeCharacter(
  17764. { name: "Dhari" },
  17765. {
  17766. front: {
  17767. height: math.unit(6 + 3 / 12, "feet"),
  17768. weight: math.unit(519, "lb"),
  17769. name: "Front",
  17770. image: {
  17771. source: "./media/characters/dhari/front.svg",
  17772. extra: 1048 / 946,
  17773. bottom: 0.015
  17774. }
  17775. },
  17776. back: {
  17777. height: math.unit(6 + 3 / 12, "feet"),
  17778. weight: math.unit(519, "lb"),
  17779. name: "Back",
  17780. image: {
  17781. source: "./media/characters/dhari/back.svg",
  17782. extra: 1048 / 931,
  17783. bottom: 0.005
  17784. }
  17785. },
  17786. frontDressed: {
  17787. height: math.unit(6 + 3 / 12, "feet"),
  17788. weight: math.unit(519, "lb"),
  17789. name: "Front (Dressed)",
  17790. image: {
  17791. source: "./media/characters/dhari/front-dressed.svg",
  17792. extra: 1713 / 1546,
  17793. bottom: 0.02
  17794. }
  17795. },
  17796. backDressed: {
  17797. height: math.unit(6 + 3 / 12, "feet"),
  17798. weight: math.unit(519, "lb"),
  17799. name: "Back (Dressed)",
  17800. image: {
  17801. source: "./media/characters/dhari/back-dressed.svg",
  17802. extra: 1699 / 1537,
  17803. bottom: 0.01
  17804. }
  17805. },
  17806. maw: {
  17807. height: math.unit(0.95, "feet"),
  17808. name: "Maw",
  17809. image: {
  17810. source: "./media/characters/dhari/maw.svg"
  17811. }
  17812. },
  17813. wereFront: {
  17814. height: math.unit(12 + 8 / 12, "feet"),
  17815. weight: math.unit(4000, "lb"),
  17816. name: "Front (Were)",
  17817. image: {
  17818. source: "./media/characters/dhari/were-front.svg",
  17819. extra: 1065 / 969,
  17820. bottom: 0.015
  17821. }
  17822. },
  17823. wereBack: {
  17824. height: math.unit(12 + 8 / 12, "feet"),
  17825. weight: math.unit(4000, "lb"),
  17826. name: "Back (Were)",
  17827. image: {
  17828. source: "./media/characters/dhari/were-back.svg",
  17829. extra: 1065 / 969,
  17830. bottom: 0.012
  17831. }
  17832. },
  17833. wereMaw: {
  17834. height: math.unit(0.625, "meters"),
  17835. name: "Maw (Were)",
  17836. image: {
  17837. source: "./media/characters/dhari/were-maw.svg"
  17838. }
  17839. },
  17840. },
  17841. [
  17842. {
  17843. name: "Normal",
  17844. height: math.unit(6 + 3 / 12, "feet"),
  17845. default: true
  17846. },
  17847. ]
  17848. ))
  17849. characterMakers.push(() => makeCharacter(
  17850. { name: "Rena Dyne" },
  17851. {
  17852. anthro: {
  17853. height: math.unit(5 + 7 / 12, "feet"),
  17854. weight: math.unit(175, "lb"),
  17855. name: "Anthro",
  17856. image: {
  17857. source: "./media/characters/rena-dyne/anthro.svg",
  17858. extra: 1849 / 1785,
  17859. bottom: 0.005
  17860. }
  17861. },
  17862. taur: {
  17863. height: math.unit(15 + 6 / 12, "feet"),
  17864. weight: math.unit(8000, "lb"),
  17865. name: "Taur",
  17866. image: {
  17867. source: "./media/characters/rena-dyne/taur.svg",
  17868. extra: 2315 / 2234,
  17869. bottom: 0.033
  17870. }
  17871. },
  17872. },
  17873. [
  17874. {
  17875. name: "Normal",
  17876. height: math.unit(5 + 7 / 12, "feet"),
  17877. default: true
  17878. },
  17879. ]
  17880. ))
  17881. characterMakers.push(() => makeCharacter(
  17882. { name: "Weremeep" },
  17883. {
  17884. front: {
  17885. height: math.unit(8, "feet"),
  17886. weight: math.unit(600, "lb"),
  17887. name: "Front",
  17888. image: {
  17889. source: "./media/characters/weremeep/front.svg",
  17890. extra: 967 / 862,
  17891. bottom: 0.01
  17892. }
  17893. },
  17894. },
  17895. [
  17896. {
  17897. name: "Normal",
  17898. height: math.unit(8, "feet"),
  17899. default: true
  17900. },
  17901. {
  17902. name: "Lorg",
  17903. height: math.unit(12, "feet")
  17904. },
  17905. {
  17906. name: "Oh Lawd She Comin'",
  17907. height: math.unit(20, "feet")
  17908. },
  17909. ]
  17910. ))
  17911. characterMakers.push(() => makeCharacter(
  17912. { name: "Reza" },
  17913. {
  17914. front: {
  17915. height: math.unit(4, "feet"),
  17916. weight: math.unit(90, "lb"),
  17917. name: "Front",
  17918. image: {
  17919. source: "./media/characters/reza/front.svg",
  17920. extra: 1183 / 1111,
  17921. bottom: 0.017
  17922. }
  17923. },
  17924. back: {
  17925. height: math.unit(4, "feet"),
  17926. weight: math.unit(90, "lb"),
  17927. name: "Back",
  17928. image: {
  17929. source: "./media/characters/reza/back.svg",
  17930. extra: 1183 / 1111,
  17931. bottom: 0.01
  17932. }
  17933. },
  17934. },
  17935. [
  17936. {
  17937. name: "Normal",
  17938. height: math.unit(4, "feet"),
  17939. default: true
  17940. },
  17941. ]
  17942. ))
  17943. characterMakers.push(() => makeCharacter(
  17944. { name: "Athea" },
  17945. {
  17946. side: {
  17947. height: math.unit(15, "feet"),
  17948. weight: math.unit(14, "tons"),
  17949. name: "Side",
  17950. image: {
  17951. source: "./media/characters/athea/side.svg",
  17952. extra: 960 / 540,
  17953. bottom: 0.003
  17954. }
  17955. },
  17956. sitting: {
  17957. height: math.unit(6 * 2.85, "feet"),
  17958. weight: math.unit(14, "tons"),
  17959. name: "Sitting",
  17960. image: {
  17961. source: "./media/characters/athea/sitting.svg",
  17962. extra: 621 / 581,
  17963. bottom: 0.075
  17964. }
  17965. },
  17966. maw: {
  17967. height: math.unit(7.59498031496063, "feet"),
  17968. name: "Maw",
  17969. image: {
  17970. source: "./media/characters/athea/maw.svg"
  17971. }
  17972. },
  17973. },
  17974. [
  17975. {
  17976. name: "Lap Cat",
  17977. height: math.unit(2.5, "feet")
  17978. },
  17979. {
  17980. name: "Minimacro",
  17981. height: math.unit(15, "feet"),
  17982. default: true
  17983. },
  17984. {
  17985. name: "Macro",
  17986. height: math.unit(120, "feet")
  17987. },
  17988. {
  17989. name: "Macro+",
  17990. height: math.unit(640, "feet")
  17991. },
  17992. {
  17993. name: "Colossus",
  17994. height: math.unit(2.2, "miles")
  17995. },
  17996. ]
  17997. ))
  17998. characterMakers.push(() => makeCharacter(
  17999. { name: "Seroko" },
  18000. {
  18001. front: {
  18002. height: math.unit(8 + 8 / 12, "feet"),
  18003. weight: math.unit(130, "kg"),
  18004. name: "Front",
  18005. image: {
  18006. source: "./media/characters/seroko/front.svg",
  18007. extra: 1385 / 1280,
  18008. bottom: 0.025
  18009. }
  18010. },
  18011. back: {
  18012. height: math.unit(8 + 8 / 12, "feet"),
  18013. weight: math.unit(130, "kg"),
  18014. name: "Back",
  18015. image: {
  18016. source: "./media/characters/seroko/back.svg",
  18017. extra: 1369 / 1238,
  18018. bottom: 0.018
  18019. }
  18020. },
  18021. frontDressed: {
  18022. height: math.unit(8 + 8 / 12, "feet"),
  18023. weight: math.unit(130, "kg"),
  18024. name: "Front (Dressed)",
  18025. image: {
  18026. source: "./media/characters/seroko/front-dressed.svg",
  18027. extra: 1366 / 1275,
  18028. bottom: 0.03
  18029. }
  18030. },
  18031. },
  18032. [
  18033. {
  18034. name: "Normal",
  18035. height: math.unit(8 + 8 / 12, "feet"),
  18036. default: true
  18037. },
  18038. ]
  18039. ))
  18040. characterMakers.push(() => makeCharacter(
  18041. { name: "Quatzi" },
  18042. {
  18043. front: {
  18044. height: math.unit(5.5, "feet"),
  18045. weight: math.unit(160, "lb"),
  18046. name: "Front",
  18047. image: {
  18048. source: "./media/characters/quatzi/front.svg",
  18049. extra: 2346 / 2242,
  18050. bottom: 0.015
  18051. }
  18052. },
  18053. },
  18054. [
  18055. {
  18056. name: "Normal",
  18057. height: math.unit(5.5, "feet"),
  18058. default: true
  18059. },
  18060. {
  18061. name: "Big",
  18062. height: math.unit(7.7, "feet")
  18063. },
  18064. ]
  18065. ))
  18066. characterMakers.push(() => makeCharacter(
  18067. { name: "Sen" },
  18068. {
  18069. front: {
  18070. height: math.unit(5 + 11 / 12, "feet"),
  18071. weight: math.unit(180, "lb"),
  18072. name: "Front",
  18073. image: {
  18074. source: "./media/characters/sen/front.svg",
  18075. extra: 1321 / 1254,
  18076. bottom: 0.015
  18077. }
  18078. },
  18079. side: {
  18080. height: math.unit(5 + 11 / 12, "feet"),
  18081. weight: math.unit(180, "lb"),
  18082. name: "Side",
  18083. image: {
  18084. source: "./media/characters/sen/side.svg",
  18085. extra: 1321 / 1254,
  18086. bottom: 0.007
  18087. }
  18088. },
  18089. back: {
  18090. height: math.unit(5 + 11 / 12, "feet"),
  18091. weight: math.unit(180, "lb"),
  18092. name: "Back",
  18093. image: {
  18094. source: "./media/characters/sen/back.svg",
  18095. extra: 1321 / 1254
  18096. }
  18097. },
  18098. },
  18099. [
  18100. {
  18101. name: "Normal",
  18102. height: math.unit(5 + 11 / 12, "feet"),
  18103. default: true
  18104. },
  18105. ]
  18106. ))
  18107. characterMakers.push(() => makeCharacter(
  18108. { name: "Fruity" },
  18109. {
  18110. front: {
  18111. height: math.unit(166.6, "cm"),
  18112. weight: math.unit(66.6, "kg"),
  18113. name: "Front",
  18114. image: {
  18115. source: "./media/characters/fruity/front.svg",
  18116. extra: 1510 / 1386,
  18117. bottom: 0.04
  18118. }
  18119. },
  18120. back: {
  18121. height: math.unit(166.6, "cm"),
  18122. weight: math.unit(66.6, "lb"),
  18123. name: "Back",
  18124. image: {
  18125. source: "./media/characters/fruity/back.svg",
  18126. extra: 1563 / 1435,
  18127. bottom: 0.005
  18128. }
  18129. },
  18130. },
  18131. [
  18132. {
  18133. name: "Normal",
  18134. height: math.unit(166.6, "cm"),
  18135. default: true
  18136. },
  18137. {
  18138. name: "Demonic",
  18139. height: math.unit(166.6, "feet")
  18140. },
  18141. ]
  18142. ))
  18143. characterMakers.push(() => makeCharacter(
  18144. { name: "Zost" },
  18145. {
  18146. side: {
  18147. height: math.unit(10, "feet"),
  18148. weight: math.unit(500, "lb"),
  18149. name: "Side",
  18150. image: {
  18151. source: "./media/characters/zost/side.svg",
  18152. extra: 966 / 880,
  18153. bottom: 0.075
  18154. }
  18155. },
  18156. mawFront: {
  18157. height: math.unit(1.08, "meters"),
  18158. name: "Maw (Front)",
  18159. image: {
  18160. source: "./media/characters/zost/maw-front.svg"
  18161. }
  18162. },
  18163. mawSide: {
  18164. height: math.unit(2.66, "feet"),
  18165. name: "Maw (Side)",
  18166. image: {
  18167. source: "./media/characters/zost/maw-side.svg"
  18168. }
  18169. },
  18170. },
  18171. [
  18172. {
  18173. name: "Normal",
  18174. height: math.unit(10, "feet"),
  18175. default: true
  18176. },
  18177. ]
  18178. ))
  18179. characterMakers.push(() => makeCharacter(
  18180. { name: "Luci" },
  18181. {
  18182. front: {
  18183. height: math.unit(5 + 4 / 12, "feet"),
  18184. weight: math.unit(120, "lb"),
  18185. name: "Front",
  18186. image: {
  18187. source: "./media/characters/luci/front.svg",
  18188. extra: 1985 / 1884,
  18189. bottom: 0.04
  18190. }
  18191. },
  18192. back: {
  18193. height: math.unit(5 + 4 / 12, "feet"),
  18194. weight: math.unit(120, "lb"),
  18195. name: "Back",
  18196. image: {
  18197. source: "./media/characters/luci/back.svg",
  18198. extra: 1892 / 1791,
  18199. bottom: 0.002
  18200. }
  18201. },
  18202. },
  18203. [
  18204. {
  18205. name: "Normal",
  18206. height: math.unit(5 + 4 / 12, "feet"),
  18207. default: true
  18208. },
  18209. ]
  18210. ))
  18211. characterMakers.push(() => makeCharacter(
  18212. { name: "2th" },
  18213. {
  18214. front: {
  18215. height: math.unit(1500, "feet"),
  18216. weight: math.unit(3.8e6, "tons"),
  18217. name: "Front",
  18218. image: {
  18219. source: "./media/characters/2th/front.svg",
  18220. extra: 3489 / 3350,
  18221. bottom: 0.1
  18222. }
  18223. },
  18224. foot: {
  18225. height: math.unit(461, "feet"),
  18226. name: "Foot",
  18227. image: {
  18228. source: "./media/characters/2th/foot.svg"
  18229. }
  18230. },
  18231. },
  18232. [
  18233. {
  18234. name: "\"Micro\"",
  18235. height: math.unit(15 + 7 / 12, "feet")
  18236. },
  18237. {
  18238. name: "Normal",
  18239. height: math.unit(1500, "feet"),
  18240. default: true
  18241. },
  18242. {
  18243. name: "Macro",
  18244. height: math.unit(5000, "feet")
  18245. },
  18246. {
  18247. name: "Megamacro",
  18248. height: math.unit(15, "miles")
  18249. },
  18250. {
  18251. name: "Gigamacro",
  18252. height: math.unit(4000, "miles")
  18253. },
  18254. {
  18255. name: "Galactic",
  18256. height: math.unit(50, "AU")
  18257. },
  18258. ]
  18259. ))
  18260. characterMakers.push(() => makeCharacter(
  18261. { name: "Amethyst" },
  18262. {
  18263. front: {
  18264. height: math.unit(5 + 6 / 12, "feet"),
  18265. weight: math.unit(220, "lb"),
  18266. name: "Front",
  18267. image: {
  18268. source: "./media/characters/amethyst/front.svg",
  18269. extra: 2078 / 2040,
  18270. bottom: 0.045
  18271. }
  18272. },
  18273. back: {
  18274. height: math.unit(5 + 6 / 12, "feet"),
  18275. weight: math.unit(220, "lb"),
  18276. name: "Back",
  18277. image: {
  18278. source: "./media/characters/amethyst/back.svg",
  18279. extra: 2021 / 1989,
  18280. bottom: 0.02
  18281. }
  18282. },
  18283. },
  18284. [
  18285. {
  18286. name: "Normal",
  18287. height: math.unit(5 + 6 / 12, "feet"),
  18288. default: true
  18289. },
  18290. ]
  18291. ))
  18292. characterMakers.push(() => makeCharacter(
  18293. { name: "Yumi Akiyama" },
  18294. {
  18295. front: {
  18296. height: math.unit(4 + 11 / 12, "feet"),
  18297. weight: math.unit(120, "lb"),
  18298. name: "Front",
  18299. image: {
  18300. source: "./media/characters/yumi-akiyama/front.svg",
  18301. extra: 1327 / 1235,
  18302. bottom: 0.02
  18303. }
  18304. },
  18305. back: {
  18306. height: math.unit(4 + 11 / 12, "feet"),
  18307. weight: math.unit(120, "lb"),
  18308. name: "Back",
  18309. image: {
  18310. source: "./media/characters/yumi-akiyama/back.svg",
  18311. extra: 1287 / 1245,
  18312. bottom: 0.002
  18313. }
  18314. },
  18315. },
  18316. [
  18317. {
  18318. name: "Galactic",
  18319. height: math.unit(50, "galaxies"),
  18320. default: true
  18321. },
  18322. {
  18323. name: "Universal",
  18324. height: math.unit(100, "universes")
  18325. },
  18326. ]
  18327. ))
  18328. characterMakers.push(() => makeCharacter(
  18329. { name: "Rifter Yrmori" },
  18330. {
  18331. front: {
  18332. height: math.unit(8, "feet"),
  18333. weight: math.unit(500, "lb"),
  18334. name: "Front",
  18335. image: {
  18336. source: "./media/characters/rifter-yrmori/front.svg",
  18337. extra: 1180 / 1125,
  18338. bottom: 0.02
  18339. }
  18340. },
  18341. back: {
  18342. height: math.unit(8, "feet"),
  18343. weight: math.unit(500, "lb"),
  18344. name: "Back",
  18345. image: {
  18346. source: "./media/characters/rifter-yrmori/back.svg",
  18347. extra: 1190 / 1145,
  18348. bottom: 0.001
  18349. }
  18350. },
  18351. wings: {
  18352. height: math.unit(7.75, "feet"),
  18353. weight: math.unit(500, "lb"),
  18354. name: "Wings",
  18355. image: {
  18356. source: "./media/characters/rifter-yrmori/wings.svg",
  18357. extra: 1357 / 1285
  18358. }
  18359. },
  18360. maw: {
  18361. height: math.unit(0.8, "feet"),
  18362. name: "Maw",
  18363. image: {
  18364. source: "./media/characters/rifter-yrmori/maw.svg"
  18365. }
  18366. },
  18367. },
  18368. [
  18369. {
  18370. name: "Normal",
  18371. height: math.unit(8, "feet"),
  18372. default: true
  18373. },
  18374. {
  18375. name: "Macro",
  18376. height: math.unit(42, "meters")
  18377. },
  18378. ]
  18379. ))
  18380. characterMakers.push(() => makeCharacter(
  18381. { name: "Tahajin" },
  18382. {
  18383. were: {
  18384. height: math.unit(25 + 6 / 12, "feet"),
  18385. weight: math.unit(10000, "lb"),
  18386. name: "Were",
  18387. image: {
  18388. source: "./media/characters/tahajin/were.svg",
  18389. extra: 801 / 770,
  18390. bottom: 0.042
  18391. }
  18392. },
  18393. aquatic: {
  18394. height: math.unit(6 + 4 / 12, "feet"),
  18395. weight: math.unit(160, "lb"),
  18396. name: "Aquatic",
  18397. image: {
  18398. source: "./media/characters/tahajin/aquatic.svg",
  18399. extra: 572 / 542,
  18400. bottom: 0.04
  18401. }
  18402. },
  18403. chow: {
  18404. height: math.unit(8 + 11 / 12, "feet"),
  18405. weight: math.unit(450, "lb"),
  18406. name: "Chow",
  18407. image: {
  18408. source: "./media/characters/tahajin/chow.svg",
  18409. extra: 660 / 640,
  18410. bottom: 0.015
  18411. }
  18412. },
  18413. demiNaga: {
  18414. height: math.unit(6 + 8 / 12, "feet"),
  18415. weight: math.unit(300, "lb"),
  18416. name: "Demi Naga",
  18417. image: {
  18418. source: "./media/characters/tahajin/demi-naga.svg",
  18419. extra: 643 / 615,
  18420. bottom: 0.1
  18421. }
  18422. },
  18423. data: {
  18424. height: math.unit(5, "inches"),
  18425. weight: math.unit(0.1, "lb"),
  18426. name: "Data",
  18427. image: {
  18428. source: "./media/characters/tahajin/data.svg"
  18429. }
  18430. },
  18431. fluu: {
  18432. height: math.unit(5 + 7 / 12, "feet"),
  18433. weight: math.unit(140, "lb"),
  18434. name: "Fluu",
  18435. image: {
  18436. source: "./media/characters/tahajin/fluu.svg",
  18437. extra: 628 / 592,
  18438. bottom: 0.02
  18439. }
  18440. },
  18441. starWarrior: {
  18442. height: math.unit(4 + 5 / 12, "feet"),
  18443. weight: math.unit(50, "lb"),
  18444. name: "Star Warrior",
  18445. image: {
  18446. source: "./media/characters/tahajin/star-warrior.svg"
  18447. }
  18448. },
  18449. },
  18450. [
  18451. {
  18452. name: "Normal",
  18453. height: math.unit(25 + 6 / 12, "feet"),
  18454. default: true
  18455. },
  18456. ]
  18457. ))
  18458. characterMakers.push(() => makeCharacter(
  18459. { name: "Gabira" },
  18460. {
  18461. front: {
  18462. height: math.unit(8, "feet"),
  18463. weight: math.unit(350, "lb"),
  18464. name: "Front",
  18465. image: {
  18466. source: "./media/characters/gabira/front.svg",
  18467. extra: 608 / 580,
  18468. bottom: 0.03
  18469. }
  18470. },
  18471. back: {
  18472. height: math.unit(8, "feet"),
  18473. weight: math.unit(350, "lb"),
  18474. name: "Back",
  18475. image: {
  18476. source: "./media/characters/gabira/back.svg",
  18477. extra: 608 / 580,
  18478. bottom: 0.03
  18479. }
  18480. },
  18481. },
  18482. [
  18483. {
  18484. name: "Normal",
  18485. height: math.unit(8, "feet"),
  18486. default: true
  18487. },
  18488. ]
  18489. ))
  18490. characterMakers.push(() => makeCharacter(
  18491. { name: "Sasha Katraine" },
  18492. {
  18493. front: {
  18494. height: math.unit(5 + 3 / 12, "feet"),
  18495. weight: math.unit(137, "lb"),
  18496. name: "Front",
  18497. image: {
  18498. source: "./media/characters/sasha-katraine/front.svg",
  18499. bottom: 0.045
  18500. }
  18501. },
  18502. },
  18503. [
  18504. {
  18505. name: "Micro",
  18506. height: math.unit(5, "inches")
  18507. },
  18508. {
  18509. name: "Normal",
  18510. height: math.unit(5 + 3 / 12, "feet"),
  18511. default: true
  18512. },
  18513. ]
  18514. ))
  18515. characterMakers.push(() => makeCharacter(
  18516. { name: "Der" },
  18517. {
  18518. side: {
  18519. height: math.unit(4, "inches"),
  18520. weight: math.unit(200, "grams"),
  18521. name: "Side",
  18522. image: {
  18523. source: "./media/characters/der/side.svg",
  18524. extra: 719 / 400,
  18525. bottom: 30.6 / 749.9187
  18526. }
  18527. },
  18528. },
  18529. [
  18530. {
  18531. name: "Micro",
  18532. height: math.unit(4, "inches"),
  18533. default: true
  18534. },
  18535. ]
  18536. ))
  18537. characterMakers.push(() => makeCharacter(
  18538. { name: "Fixerdragon" },
  18539. {
  18540. side: {
  18541. height: math.unit(30, "meters"),
  18542. weight: math.unit(700, "tonnes"),
  18543. name: "Side",
  18544. image: {
  18545. source: "./media/characters/fixerdragon/side.svg",
  18546. extra: (1293.0514 - 116.03) / 1106.86,
  18547. bottom: 116.03 / 1293.0514
  18548. }
  18549. },
  18550. },
  18551. [
  18552. {
  18553. name: "Planck",
  18554. height: math.unit(1.6e-35, "meters")
  18555. },
  18556. {
  18557. name: "Micro",
  18558. height: math.unit(0.4, "meters")
  18559. },
  18560. {
  18561. name: "Normal",
  18562. height: math.unit(30, "meters"),
  18563. default: true
  18564. },
  18565. {
  18566. name: "Megamacro",
  18567. height: math.unit(1.2, "megameters")
  18568. },
  18569. {
  18570. name: "Teramacro",
  18571. height: math.unit(130, "terameters")
  18572. },
  18573. {
  18574. name: "Yottamacro",
  18575. height: math.unit(6200, "yottameters")
  18576. },
  18577. ]
  18578. ));
  18579. characterMakers.push(() => makeCharacter(
  18580. { name: "Kite" },
  18581. {
  18582. front: {
  18583. height: math.unit(8, "feet"),
  18584. weight: math.unit(250, "lb"),
  18585. name: "Front",
  18586. image: {
  18587. source: "./media/characters/kite/front.svg",
  18588. extra: 2796 / 2659,
  18589. bottom: 0.002
  18590. }
  18591. },
  18592. },
  18593. [
  18594. {
  18595. name: "Normal",
  18596. height: math.unit(8, "feet"),
  18597. default: true
  18598. },
  18599. {
  18600. name: "Macro",
  18601. height: math.unit(360, "feet")
  18602. },
  18603. {
  18604. name: "Megamacro",
  18605. height: math.unit(1500, "feet")
  18606. },
  18607. ]
  18608. ))
  18609. characterMakers.push(() => makeCharacter(
  18610. { name: "Poojawa Vynar" },
  18611. {
  18612. front: {
  18613. height: math.unit(5 + 10 / 12, "feet"),
  18614. weight: math.unit(150, "lb"),
  18615. name: "Front",
  18616. image: {
  18617. source: "./media/characters/poojawa-vynar/front.svg",
  18618. extra: (1506.1547 - 55) / 1356.6,
  18619. bottom: 55 / 1506.1547
  18620. }
  18621. },
  18622. frontTailless: {
  18623. height: math.unit(5 + 10 / 12, "feet"),
  18624. weight: math.unit(150, "lb"),
  18625. name: "Front (Tailless)",
  18626. image: {
  18627. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18628. extra: (1506.1547 - 55) / 1356.6,
  18629. bottom: 55 / 1506.1547
  18630. }
  18631. },
  18632. },
  18633. [
  18634. {
  18635. name: "Normal",
  18636. height: math.unit(5 + 10 / 12, "feet"),
  18637. default: true
  18638. },
  18639. ]
  18640. ))
  18641. characterMakers.push(() => makeCharacter(
  18642. { name: "Violette" },
  18643. {
  18644. front: {
  18645. height: math.unit(293, "meters"),
  18646. weight: math.unit(70400, "tons"),
  18647. name: "Front",
  18648. image: {
  18649. source: "./media/characters/violette/front.svg",
  18650. extra: 1227 / 1180,
  18651. bottom: 0.005
  18652. }
  18653. },
  18654. back: {
  18655. height: math.unit(293, "meters"),
  18656. weight: math.unit(70400, "tons"),
  18657. name: "Back",
  18658. image: {
  18659. source: "./media/characters/violette/back.svg",
  18660. extra: 1227 / 1180,
  18661. bottom: 0.005
  18662. }
  18663. },
  18664. },
  18665. [
  18666. {
  18667. name: "Macro",
  18668. height: math.unit(293, "meters"),
  18669. default: true
  18670. },
  18671. ]
  18672. ))
  18673. characterMakers.push(() => makeCharacter(
  18674. { name: "Alessandra" },
  18675. {
  18676. front: {
  18677. height: math.unit(1050, "feet"),
  18678. weight: math.unit(200000, "tons"),
  18679. name: "Front",
  18680. image: {
  18681. source: "./media/characters/alessandra/front.svg",
  18682. extra: 960 / 912,
  18683. bottom: 0.06
  18684. }
  18685. },
  18686. },
  18687. [
  18688. {
  18689. name: "Macro",
  18690. height: math.unit(1050, "feet")
  18691. },
  18692. {
  18693. name: "Macro+",
  18694. height: math.unit(900, "meters"),
  18695. default: true
  18696. },
  18697. ]
  18698. ))
  18699. characterMakers.push(() => makeCharacter(
  18700. { name: "Person", species: "Catdragon" },
  18701. {
  18702. front: {
  18703. height: math.unit(5, "feet"),
  18704. weight: math.unit(187, "lb"),
  18705. name: "Front",
  18706. image: {
  18707. source: "./media/characters/person/front.svg",
  18708. extra: 3087 / 2945,
  18709. bottom: 91 / 3181
  18710. }
  18711. },
  18712. },
  18713. [
  18714. {
  18715. name: "Micro",
  18716. height: math.unit(3, "inches")
  18717. },
  18718. {
  18719. name: "Normal",
  18720. height: math.unit(5, "feet"),
  18721. default: true
  18722. },
  18723. {
  18724. name: "Macro",
  18725. height: math.unit(90, "feet")
  18726. },
  18727. {
  18728. name: "Max Size",
  18729. height: math.unit(280, "feet")
  18730. },
  18731. ]
  18732. ))
  18733. characterMakers.push(() => makeCharacter(
  18734. { name: "Ty" },
  18735. {
  18736. front: {
  18737. height: math.unit(4.5, "meters"),
  18738. weight: math.unit(3200, "lb"),
  18739. name: "Front",
  18740. image: {
  18741. source: "./media/characters/ty/front.svg",
  18742. extra: 1038 / 960,
  18743. bottom: 31.156 / 1068
  18744. }
  18745. },
  18746. back: {
  18747. height: math.unit(4.5, "meters"),
  18748. weight: math.unit(3200, "lb"),
  18749. name: "Back",
  18750. image: {
  18751. source: "./media/characters/ty/back.svg",
  18752. extra: 1044 / 966,
  18753. bottom: 7.48 / 1049
  18754. }
  18755. },
  18756. },
  18757. [
  18758. {
  18759. name: "Normal",
  18760. height: math.unit(4.5, "meters"),
  18761. default: true
  18762. },
  18763. ]
  18764. ))
  18765. characterMakers.push(() => makeCharacter(
  18766. { name: "Rocky" },
  18767. {
  18768. front: {
  18769. height: math.unit(5 + 4 / 12, "feet"),
  18770. weight: math.unit(115, "lb"),
  18771. name: "Front",
  18772. image: {
  18773. source: "./media/characters/rocky/front.svg",
  18774. extra: 1012 / 975,
  18775. bottom: 54 / 1066
  18776. }
  18777. },
  18778. },
  18779. [
  18780. {
  18781. name: "Normal",
  18782. height: math.unit(5 + 4 / 12, "feet"),
  18783. default: true
  18784. },
  18785. ]
  18786. ))
  18787. characterMakers.push(() => makeCharacter(
  18788. { name: "Ruin" },
  18789. {
  18790. upright: {
  18791. height: math.unit(6, "meters"),
  18792. weight: math.unit(4000, "kg"),
  18793. name: "Upright",
  18794. image: {
  18795. source: "./media/characters/ruin/upright.svg",
  18796. extra: 668 / 661,
  18797. bottom: 42 / 799.8396
  18798. }
  18799. },
  18800. },
  18801. [
  18802. {
  18803. name: "Normal",
  18804. height: math.unit(6, "meters"),
  18805. default: true
  18806. },
  18807. ]
  18808. ))
  18809. characterMakers.push(() => makeCharacter(
  18810. { name: "Robin" },
  18811. {
  18812. front: {
  18813. height: math.unit(5, "feet"),
  18814. weight: math.unit(106, "lb"),
  18815. name: "Front",
  18816. image: {
  18817. source: "./media/characters/robin/front.svg",
  18818. extra: 862 / 799,
  18819. bottom: 42.4 / 914.8856
  18820. }
  18821. },
  18822. },
  18823. [
  18824. {
  18825. name: "Normal",
  18826. height: math.unit(5, "feet"),
  18827. default: true
  18828. },
  18829. ]
  18830. ))
  18831. characterMakers.push(() => makeCharacter(
  18832. { name: "Saian" },
  18833. {
  18834. side: {
  18835. height: math.unit(3, "feet"),
  18836. weight: math.unit(225, "lb"),
  18837. name: "Side",
  18838. image: {
  18839. source: "./media/characters/saian/side.svg",
  18840. extra: 566 / 356,
  18841. bottom: 79.7 / 643
  18842. }
  18843. },
  18844. maw: {
  18845. height: math.unit(2.85, "feet"),
  18846. name: "Maw",
  18847. image: {
  18848. source: "./media/characters/saian/maw.svg"
  18849. }
  18850. },
  18851. },
  18852. [
  18853. {
  18854. name: "Normal",
  18855. height: math.unit(3, "feet"),
  18856. default: true
  18857. },
  18858. ]
  18859. ))
  18860. characterMakers.push(() => makeCharacter(
  18861. { name: "Equus Silvermane" },
  18862. {
  18863. side: {
  18864. height: math.unit(8, "feet"),
  18865. weight: math.unit(300, "lb"),
  18866. name: "Side",
  18867. image: {
  18868. source: "./media/characters/equus-silvermane/side.svg",
  18869. extra: 2176 / 2050,
  18870. bottom: 65.7 / 2245
  18871. }
  18872. },
  18873. front: {
  18874. height: math.unit(8, "feet"),
  18875. weight: math.unit(300, "lb"),
  18876. name: "Front",
  18877. image: {
  18878. source: "./media/characters/equus-silvermane/front.svg",
  18879. extra: 4633 / 4400,
  18880. bottom: 71.3 / 4706.915
  18881. }
  18882. },
  18883. sideStepping: {
  18884. height: math.unit(8, "feet"),
  18885. weight: math.unit(300, "lb"),
  18886. name: "Side (Stepping)",
  18887. image: {
  18888. source: "./media/characters/equus-silvermane/side-stepping.svg",
  18889. extra: 1968 / 1860,
  18890. bottom: 16.4 / 1989
  18891. }
  18892. },
  18893. },
  18894. [
  18895. {
  18896. name: "Normal",
  18897. height: math.unit(8, "feet")
  18898. },
  18899. {
  18900. name: "Minimacro",
  18901. height: math.unit(75, "feet"),
  18902. default: true
  18903. },
  18904. {
  18905. name: "Macro",
  18906. height: math.unit(150, "feet")
  18907. },
  18908. {
  18909. name: "Macro+",
  18910. height: math.unit(1000, "feet")
  18911. },
  18912. {
  18913. name: "Megamacro",
  18914. height: math.unit(1, "mile")
  18915. },
  18916. ]
  18917. ))
  18918. characterMakers.push(() => makeCharacter(
  18919. { name: "Windar" },
  18920. {
  18921. side: {
  18922. height: math.unit(20, "feet"),
  18923. weight: math.unit(30000, "kg"),
  18924. name: "Side",
  18925. image: {
  18926. source: "./media/characters/windar/side.svg",
  18927. extra: 1491 / 1248,
  18928. bottom: 82.56 / 1568
  18929. }
  18930. },
  18931. },
  18932. [
  18933. {
  18934. name: "Normal",
  18935. height: math.unit(20, "feet"),
  18936. default: true
  18937. },
  18938. ]
  18939. ))
  18940. characterMakers.push(() => makeCharacter(
  18941. { name: "Melody" },
  18942. {
  18943. side: {
  18944. height: math.unit(15.66, "feet"),
  18945. weight: math.unit(150, "lb"),
  18946. name: "Side",
  18947. image: {
  18948. source: "./media/characters/melody/side.svg",
  18949. extra: 1097 / 944,
  18950. bottom: 11.8 / 1109
  18951. }
  18952. },
  18953. sideOutfit: {
  18954. height: math.unit(15.66, "feet"),
  18955. weight: math.unit(150, "lb"),
  18956. name: "Side (Outfit)",
  18957. image: {
  18958. source: "./media/characters/melody/side-outfit.svg",
  18959. extra: 1097 / 944,
  18960. bottom: 11.8 / 1109
  18961. }
  18962. },
  18963. },
  18964. [
  18965. {
  18966. name: "Normal",
  18967. height: math.unit(15.66, "feet"),
  18968. default: true
  18969. },
  18970. ]
  18971. ))
  18972. characterMakers.push(() => makeCharacter(
  18973. { name: "Windera" },
  18974. {
  18975. front: {
  18976. height: math.unit(8, "feet"),
  18977. weight: math.unit(325, "lb"),
  18978. name: "Front",
  18979. image: {
  18980. source: "./media/characters/windera/front.svg",
  18981. extra: 3180 / 2845,
  18982. bottom: 178 / 3365
  18983. }
  18984. },
  18985. },
  18986. [
  18987. {
  18988. name: "Normal",
  18989. height: math.unit(8, "feet"),
  18990. default: true
  18991. },
  18992. ]
  18993. ))
  18994. characterMakers.push(() => makeCharacter(
  18995. { name: "Sonear" },
  18996. {
  18997. front: {
  18998. height: math.unit(28.75, "feet"),
  18999. weight: math.unit(2000, "kg"),
  19000. name: "Front",
  19001. image: {
  19002. source: "./media/characters/sonear/front.svg",
  19003. extra: 1041.1 / 964.9,
  19004. bottom: 53.7 / 1096.6
  19005. }
  19006. },
  19007. },
  19008. [
  19009. {
  19010. name: "Normal",
  19011. height: math.unit(28.75, "feet"),
  19012. default: true
  19013. },
  19014. ]
  19015. ))
  19016. characterMakers.push(() => makeCharacter(
  19017. { name: "Kanara" },
  19018. {
  19019. side: {
  19020. height: math.unit(25.5, "feet"),
  19021. weight: math.unit(23000, "kg"),
  19022. name: "Side",
  19023. image: {
  19024. source: "./media/characters/kanara/side.svg"
  19025. }
  19026. },
  19027. },
  19028. [
  19029. {
  19030. name: "Normal",
  19031. height: math.unit(25.5, "feet"),
  19032. default: true
  19033. },
  19034. ]
  19035. ))
  19036. characterMakers.push(() => makeCharacter(
  19037. { name: "Ereus" },
  19038. {
  19039. side: {
  19040. height: math.unit(10, "feet"),
  19041. weight: math.unit(1000, "kg"),
  19042. name: "Side",
  19043. image: {
  19044. source: "./media/characters/ereus/side.svg",
  19045. extra: 1157 / 959,
  19046. bottom: 153 / 1312.5
  19047. }
  19048. },
  19049. },
  19050. [
  19051. {
  19052. name: "Normal",
  19053. height: math.unit(10, "feet"),
  19054. default: true
  19055. },
  19056. ]
  19057. ))
  19058. characterMakers.push(() => makeCharacter(
  19059. { name: "E-ter" },
  19060. {
  19061. side: {
  19062. height: math.unit(4.5, "feet"),
  19063. weight: math.unit(500, "lb"),
  19064. name: "Side",
  19065. image: {
  19066. source: "./media/characters/e-ter/side.svg",
  19067. extra: 1550 / 1248,
  19068. bottom: 146 / 1694
  19069. }
  19070. },
  19071. },
  19072. [
  19073. {
  19074. name: "Normal",
  19075. height: math.unit(4.5, "feet"),
  19076. default: true
  19077. },
  19078. ]
  19079. ))
  19080. characterMakers.push(() => makeCharacter(
  19081. { name: "Yamie" },
  19082. {
  19083. side: {
  19084. height: math.unit(9.7, "feet"),
  19085. weight: math.unit(4000, "kg"),
  19086. name: "Side",
  19087. image: {
  19088. source: "./media/characters/yamie/side.svg"
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Normal",
  19095. height: math.unit(9.7, "feet"),
  19096. default: true
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Anders" },
  19102. {
  19103. front: {
  19104. height: math.unit(50, "feet"),
  19105. weight: math.unit(50000, "kg"),
  19106. name: "Front",
  19107. image: {
  19108. source: "./media/characters/anders/front.svg",
  19109. extra: 570 / 539,
  19110. bottom: 14.7 / 586.7
  19111. }
  19112. },
  19113. },
  19114. [
  19115. {
  19116. name: "Large",
  19117. height: math.unit(50, "feet")
  19118. },
  19119. {
  19120. name: "Macro",
  19121. height: math.unit(2000, "feet"),
  19122. default: true
  19123. },
  19124. {
  19125. name: "Megamacro",
  19126. height: math.unit(12, "miles")
  19127. },
  19128. ]
  19129. ))
  19130. characterMakers.push(() => makeCharacter(
  19131. { name: "Reban" },
  19132. {
  19133. front: {
  19134. height: math.unit(7 + 2 / 12, "feet"),
  19135. weight: math.unit(300, "lb"),
  19136. name: "Front",
  19137. image: {
  19138. source: "./media/characters/reban/front.svg",
  19139. extra: 516 / 487,
  19140. bottom: 42.82 / 558.356
  19141. }
  19142. },
  19143. dick: {
  19144. height: math.unit(7 / 5, "feet"),
  19145. name: "Dick",
  19146. image: {
  19147. source: "./media/characters/reban/dick.svg"
  19148. }
  19149. },
  19150. },
  19151. [
  19152. {
  19153. name: "Natural Height",
  19154. height: math.unit(7 + 2 / 12, "feet")
  19155. },
  19156. {
  19157. name: "Macro",
  19158. height: math.unit(500, "feet"),
  19159. default: true
  19160. },
  19161. {
  19162. name: "Canon Height",
  19163. height: math.unit(50, "AU")
  19164. },
  19165. ]
  19166. ))
  19167. characterMakers.push(() => makeCharacter(
  19168. { name: "Terrance Keayes" },
  19169. {
  19170. front: {
  19171. height: math.unit(6, "feet"),
  19172. weight: math.unit(150, "lb"),
  19173. name: "Front",
  19174. image: {
  19175. source: "./media/characters/terrance-keayes/front.svg",
  19176. extra: 1.005,
  19177. bottom: 151 / 1615
  19178. }
  19179. },
  19180. side: {
  19181. height: math.unit(6, "feet"),
  19182. weight: math.unit(150, "lb"),
  19183. name: "Side",
  19184. image: {
  19185. source: "./media/characters/terrance-keayes/side.svg",
  19186. extra: 1.005,
  19187. bottom: 129.4 / 1544
  19188. }
  19189. },
  19190. back: {
  19191. height: math.unit(6, "feet"),
  19192. weight: math.unit(150, "lb"),
  19193. name: "Back",
  19194. image: {
  19195. source: "./media/characters/terrance-keayes/back.svg",
  19196. extra: 1.005,
  19197. bottom: 58.4 / 1557.3
  19198. }
  19199. },
  19200. dick: {
  19201. height: math.unit(6 * 0.208, "feet"),
  19202. name: "Dick",
  19203. image: {
  19204. source: "./media/characters/terrance-keayes/dick.svg"
  19205. }
  19206. },
  19207. },
  19208. [
  19209. {
  19210. name: "Canon Height",
  19211. height: math.unit(35, "miles"),
  19212. default: true
  19213. },
  19214. ]
  19215. ))
  19216. characterMakers.push(() => makeCharacter(
  19217. { name: "Ofelia" },
  19218. {
  19219. front: {
  19220. height: math.unit(6, "feet"),
  19221. weight: math.unit(150, "lb"),
  19222. name: "Front",
  19223. image: {
  19224. source: "./media/characters/ofelia/front.svg",
  19225. extra: 546 / 541,
  19226. bottom: 39 / 583
  19227. }
  19228. },
  19229. back: {
  19230. height: math.unit(6, "feet"),
  19231. weight: math.unit(150, "lb"),
  19232. name: "Back",
  19233. image: {
  19234. source: "./media/characters/ofelia/back.svg",
  19235. extra: 564 / 559.5,
  19236. bottom: 8.69 / 573.02
  19237. }
  19238. },
  19239. maw: {
  19240. height: math.unit(1, "feet"),
  19241. name: "Maw",
  19242. image: {
  19243. source: "./media/characters/ofelia/maw.svg"
  19244. }
  19245. },
  19246. foot: {
  19247. height: math.unit(1.949, "feet"),
  19248. name: "Foot",
  19249. image: {
  19250. source: "./media/characters/ofelia/foot.svg"
  19251. }
  19252. },
  19253. },
  19254. [
  19255. {
  19256. name: "Canon Height",
  19257. height: math.unit(2000, "miles"),
  19258. default: true
  19259. },
  19260. ]
  19261. ))
  19262. characterMakers.push(() => makeCharacter(
  19263. { name: "Samuel" },
  19264. {
  19265. front: {
  19266. height: math.unit(6, "feet"),
  19267. weight: math.unit(150, "lb"),
  19268. name: "Front",
  19269. image: {
  19270. source: "./media/characters/samuel/front.svg",
  19271. extra: 265 / 258,
  19272. bottom: 2 / 266.1566
  19273. }
  19274. },
  19275. },
  19276. [
  19277. {
  19278. name: "Macro",
  19279. height: math.unit(100, "feet"),
  19280. default: true
  19281. },
  19282. {
  19283. name: "Full Size",
  19284. height: math.unit(1000, "miles")
  19285. },
  19286. ]
  19287. ))
  19288. characterMakers.push(() => makeCharacter(
  19289. { name: "Beishir Kiel" },
  19290. {
  19291. front: {
  19292. height: math.unit(6, "feet"),
  19293. weight: math.unit(300, "lb"),
  19294. name: "Front",
  19295. image: {
  19296. source: "./media/characters/beishir-kiel/front.svg",
  19297. extra: 569 / 547,
  19298. bottom: 41.9 / 609
  19299. }
  19300. },
  19301. maw: {
  19302. height: math.unit(6 * 0.202, "feet"),
  19303. name: "Maw",
  19304. image: {
  19305. source: "./media/characters/beishir-kiel/maw.svg"
  19306. }
  19307. },
  19308. },
  19309. [
  19310. {
  19311. name: "Macro",
  19312. height: math.unit(300, "feet"),
  19313. default: true
  19314. },
  19315. ]
  19316. ))
  19317. characterMakers.push(() => makeCharacter(
  19318. { name: "Logan Grey" },
  19319. {
  19320. front: {
  19321. height: math.unit(5 + 8 / 12, "feet"),
  19322. weight: math.unit(120, "lb"),
  19323. name: "Front",
  19324. image: {
  19325. source: "./media/characters/logan-grey/front.svg",
  19326. extra: 2539 / 2393,
  19327. bottom: 97.6 / 2636.37
  19328. }
  19329. },
  19330. frontAlt: {
  19331. height: math.unit(5 + 8 / 12, "feet"),
  19332. weight: math.unit(120, "lb"),
  19333. name: "Front (Alt)",
  19334. image: {
  19335. source: "./media/characters/logan-grey/front-alt.svg",
  19336. extra: 958 / 893,
  19337. bottom: 15 / 970.768
  19338. }
  19339. },
  19340. back: {
  19341. height: math.unit(5 + 8 / 12, "feet"),
  19342. weight: math.unit(120, "lb"),
  19343. name: "Back",
  19344. image: {
  19345. source: "./media/characters/logan-grey/back.svg",
  19346. extra: 958 / 893,
  19347. bottom: 2.1881 / 970.9788
  19348. }
  19349. },
  19350. dick: {
  19351. height: math.unit(1.437, "feet"),
  19352. name: "Dick",
  19353. image: {
  19354. source: "./media/characters/logan-grey/dick.svg"
  19355. }
  19356. },
  19357. },
  19358. [
  19359. {
  19360. name: "Normal",
  19361. height: math.unit(5 + 8 / 12, "feet")
  19362. },
  19363. {
  19364. name: "The 500 Foot Femboy",
  19365. height: math.unit(500, "feet"),
  19366. default: true
  19367. },
  19368. {
  19369. name: "Megmacro",
  19370. height: math.unit(20, "miles")
  19371. },
  19372. ]
  19373. ))
  19374. characterMakers.push(() => makeCharacter(
  19375. { name: "Draganta" },
  19376. {
  19377. front: {
  19378. height: math.unit(8 + 2 / 12, "feet"),
  19379. weight: math.unit(275, "lb"),
  19380. name: "Front",
  19381. image: {
  19382. source: "./media/characters/draganta/front.svg",
  19383. extra: 1177 / 1135,
  19384. bottom: 33.46 / 1212.1
  19385. }
  19386. },
  19387. },
  19388. [
  19389. {
  19390. name: "Normal",
  19391. height: math.unit(8 + 6 / 12, "feet"),
  19392. default: true
  19393. },
  19394. {
  19395. name: "Macro",
  19396. height: math.unit(150, "feet")
  19397. },
  19398. {
  19399. name: "Megamacro",
  19400. height: math.unit(1000, "miles")
  19401. },
  19402. ]
  19403. ))
  19404. characterMakers.push(() => makeCharacter(
  19405. { name: "Voski", species: "Corvid" },
  19406. {
  19407. front: {
  19408. height: math.unit(1.72, "m"),
  19409. weight: math.unit(80, "lb"),
  19410. name: "Front",
  19411. image: {
  19412. source: "./media/characters/voski/front.svg",
  19413. extra: 2076.22 / 2022.4,
  19414. bottom: 102.7 / 2177.3866
  19415. }
  19416. },
  19417. back: {
  19418. height: math.unit(1.72, "m"),
  19419. weight: math.unit(80, "lb"),
  19420. name: "Back",
  19421. image: {
  19422. source: "./media/characters/voski/back.svg",
  19423. extra: 2104 / 2051,
  19424. bottom: 10.45 / 2113.63
  19425. }
  19426. },
  19427. },
  19428. [
  19429. {
  19430. name: "Normal",
  19431. height: math.unit(1.72, "m")
  19432. },
  19433. {
  19434. name: "Macro",
  19435. height: math.unit(55, "m"),
  19436. default: true
  19437. },
  19438. {
  19439. name: "Macro+",
  19440. height: math.unit(300, "m")
  19441. },
  19442. {
  19443. name: "Macro++",
  19444. height: math.unit(700, "m")
  19445. },
  19446. {
  19447. name: "Macro+++",
  19448. height: math.unit(4500, "m")
  19449. },
  19450. {
  19451. name: "Macro++++",
  19452. height: math.unit(45, "km")
  19453. },
  19454. {
  19455. name: "Macro+++++",
  19456. height: math.unit(1220, "km")
  19457. },
  19458. ]
  19459. ))
  19460. characterMakers.push(() => makeCharacter(
  19461. { name: "Icowom Lee" },
  19462. {
  19463. front: {
  19464. height: math.unit(2.3, "m"),
  19465. weight: math.unit(304, "kg"),
  19466. name: "Front",
  19467. image: {
  19468. source: "./media/characters/icowom-lee/front.svg",
  19469. extra: 3076 / 2933,
  19470. bottom: 51.4 / 3125.1889
  19471. }
  19472. },
  19473. },
  19474. [
  19475. {
  19476. name: "Normal",
  19477. height: math.unit(2.3, "meters"),
  19478. default: true
  19479. },
  19480. {
  19481. name: "Macro",
  19482. height: math.unit(94, "meters"),
  19483. default: true
  19484. },
  19485. ]
  19486. ))
  19487. characterMakers.push(() => makeCharacter(
  19488. { name: "Shock Diamond", species: "Aeromorphic Synthetic Pharaoh Hound" },
  19489. {
  19490. front: {
  19491. height: math.unit(22, "meters"),
  19492. weight: math.unit(21000, "kg"),
  19493. name: "Front",
  19494. image: {
  19495. source: "./media/characters/shock-diamond/front.svg",
  19496. extra: 2204 / 2053,
  19497. bottom: 65 / 2239.47
  19498. }
  19499. },
  19500. frontNude: {
  19501. height: math.unit(22, "meters"),
  19502. weight: math.unit(21000, "kg"),
  19503. name: "Front (Nude)",
  19504. image: {
  19505. source: "./media/characters/shock-diamond/front-nude.svg",
  19506. extra: 2514 / 2285,
  19507. bottom: 13 / 2527.56
  19508. }
  19509. },
  19510. },
  19511. [
  19512. {
  19513. name: "Normal",
  19514. height: math.unit(3, "meters")
  19515. },
  19516. {
  19517. name: "Macro",
  19518. height: math.unit(22, "meters"),
  19519. default: true
  19520. },
  19521. ]
  19522. ))
  19523. characterMakers.push(() => makeCharacter(
  19524. { name: "Rory" },
  19525. {
  19526. front: {
  19527. height: math.unit(5 + 4 / 12, "feet"),
  19528. weight: math.unit(120, "lb"),
  19529. name: "Front",
  19530. image: {
  19531. source: "./media/characters/rory/front.svg",
  19532. extra: 589 / 556,
  19533. bottom: 45.7 / 635.76
  19534. }
  19535. },
  19536. frontNude: {
  19537. height: math.unit(5 + 4 / 12, "feet"),
  19538. weight: math.unit(120, "lb"),
  19539. name: "Front (Nude)",
  19540. image: {
  19541. source: "./media/characters/rory/front-nude.svg",
  19542. extra: 589 / 556,
  19543. bottom: 45.7 / 635.76
  19544. }
  19545. },
  19546. side: {
  19547. height: math.unit(5 + 4 / 12, "feet"),
  19548. weight: math.unit(120, "lb"),
  19549. name: "Side",
  19550. image: {
  19551. source: "./media/characters/rory/side.svg",
  19552. extra: 597 / 564,
  19553. bottom: 55 / 653
  19554. }
  19555. },
  19556. back: {
  19557. height: math.unit(5 + 4 / 12, "feet"),
  19558. weight: math.unit(120, "lb"),
  19559. name: "Back",
  19560. image: {
  19561. source: "./media/characters/rory/back.svg",
  19562. extra: 620 / 585,
  19563. bottom: 8.86 / 630.43
  19564. }
  19565. },
  19566. dick: {
  19567. height: math.unit(0.86, "feet"),
  19568. name: "Dick",
  19569. image: {
  19570. source: "./media/characters/rory/dick.svg"
  19571. }
  19572. },
  19573. },
  19574. [
  19575. {
  19576. name: "Normal",
  19577. height: math.unit(5 + 4 / 12, "feet"),
  19578. default: true
  19579. },
  19580. {
  19581. name: "Macro",
  19582. height: math.unit(100, "feet")
  19583. },
  19584. {
  19585. name: "Macro+",
  19586. height: math.unit(140, "feet")
  19587. },
  19588. {
  19589. name: "Macro++",
  19590. height: math.unit(300, "feet")
  19591. },
  19592. ]
  19593. ))
  19594. characterMakers.push(() => makeCharacter(
  19595. { name: "Sprisk" },
  19596. {
  19597. front: {
  19598. height: math.unit(5 + 9 / 12, "feet"),
  19599. weight: math.unit(190, "lb"),
  19600. name: "Front",
  19601. image: {
  19602. source: "./media/characters/sprisk/front.svg",
  19603. extra: 1225 / 1180,
  19604. bottom: 42.7 / 1266.4
  19605. }
  19606. },
  19607. frontNsfw: {
  19608. height: math.unit(5 + 9 / 12, "feet"),
  19609. weight: math.unit(190, "lb"),
  19610. name: "Front (NSFW)",
  19611. image: {
  19612. source: "./media/characters/sprisk/front-nsfw.svg",
  19613. extra: 1225 / 1180,
  19614. bottom: 42.7 / 1266.4
  19615. }
  19616. },
  19617. back: {
  19618. height: math.unit(5 + 9 / 12, "feet"),
  19619. weight: math.unit(190, "lb"),
  19620. name: "Back",
  19621. image: {
  19622. source: "./media/characters/sprisk/back.svg",
  19623. extra: 1247 / 1200,
  19624. bottom: 5.6 / 1253.04
  19625. }
  19626. },
  19627. },
  19628. [
  19629. {
  19630. name: "Tiny",
  19631. height: math.unit(2, "inches")
  19632. },
  19633. {
  19634. name: "Normal",
  19635. height: math.unit(5 + 9 / 12, "feet"),
  19636. default: true
  19637. },
  19638. {
  19639. name: "Mini Macro",
  19640. height: math.unit(18, "feet")
  19641. },
  19642. {
  19643. name: "Macro",
  19644. height: math.unit(100, "feet")
  19645. },
  19646. {
  19647. name: "MACRO",
  19648. height: math.unit(50, "miles")
  19649. },
  19650. {
  19651. name: "M A C R O",
  19652. height: math.unit(300, "miles")
  19653. },
  19654. ]
  19655. ))
  19656. characterMakers.push(() => makeCharacter(
  19657. { name: "Bunsen" },
  19658. {
  19659. side: {
  19660. height: math.unit(15.6, "meters"),
  19661. weight: math.unit(700000, "kg"),
  19662. name: "Side",
  19663. image: {
  19664. source: "./media/characters/bunsen/side.svg",
  19665. extra: 1644 / 358
  19666. }
  19667. },
  19668. foot: {
  19669. height: math.unit(1.611 * 1644 / 358, "meter"),
  19670. name: "Foot",
  19671. image: {
  19672. source: "./media/characters/bunsen/foot.svg"
  19673. }
  19674. },
  19675. },
  19676. [
  19677. {
  19678. name: "Small",
  19679. height: math.unit(10, "feet")
  19680. },
  19681. {
  19682. name: "Normal",
  19683. height: math.unit(15.6, "meters"),
  19684. default: true
  19685. },
  19686. ]
  19687. ))
  19688. characterMakers.push(() => makeCharacter(
  19689. { name: "Sesh" },
  19690. {
  19691. front: {
  19692. height: math.unit(4 + 11 / 12, "feet"),
  19693. weight: math.unit(140, "lb"),
  19694. name: "Front",
  19695. image: {
  19696. source: "./media/characters/sesh/front.svg",
  19697. extra: 3420 / 3231,
  19698. bottom: 72 / 3949.5
  19699. }
  19700. },
  19701. },
  19702. [
  19703. {
  19704. name: "Normal",
  19705. height: math.unit(4 + 11 / 12, "feet")
  19706. },
  19707. {
  19708. name: "Grown",
  19709. height: math.unit(15, "feet"),
  19710. default: true
  19711. },
  19712. {
  19713. name: "Macro",
  19714. height: math.unit(1500, "feet")
  19715. },
  19716. {
  19717. name: "Megamacro",
  19718. height: math.unit(30, "miles")
  19719. },
  19720. {
  19721. name: "Continental",
  19722. height: math.unit(3000, "miles")
  19723. },
  19724. {
  19725. name: "Gravity Mass",
  19726. height: math.unit(300000, "miles")
  19727. },
  19728. {
  19729. name: "Planet Buster",
  19730. height: math.unit(30000000, "miles")
  19731. },
  19732. {
  19733. name: "Big",
  19734. height: math.unit(3000000000, "miles")
  19735. },
  19736. ]
  19737. ))
  19738. characterMakers.push(() => makeCharacter(
  19739. { name: "Pepper" },
  19740. {
  19741. front: {
  19742. height: math.unit(9, "feet"),
  19743. weight: math.unit(350, "lb"),
  19744. name: "Front",
  19745. image: {
  19746. source: "./media/characters/pepper/front.svg",
  19747. extra: 1448/1312,
  19748. bottom: 9.4/1457.88
  19749. }
  19750. },
  19751. back: {
  19752. height: math.unit(9, "feet"),
  19753. weight: math.unit(350, "lb"),
  19754. name: "Back",
  19755. image: {
  19756. source: "./media/characters/pepper/back.svg",
  19757. extra: 1423/1300,
  19758. bottom: 4.6/1429
  19759. }
  19760. },
  19761. maw: {
  19762. height: math.unit(0.932, "feet"),
  19763. name: "Maw",
  19764. image: {
  19765. source: "./media/characters/pepper/maw.svg"
  19766. }
  19767. },
  19768. },
  19769. [
  19770. {
  19771. name: "Normal",
  19772. height: math.unit(9, "feet"),
  19773. default: true
  19774. },
  19775. ]
  19776. ))
  19777. characterMakers.push(() => makeCharacter(
  19778. { name: "Maelstrom" },
  19779. {
  19780. front: {
  19781. height: math.unit(6, "feet"),
  19782. weight: math.unit(150, "lb"),
  19783. name: "Front",
  19784. image: {
  19785. source: "./media/characters/maelstrom/front.svg",
  19786. extra: 2100/1883,
  19787. bottom: 94/2196.7
  19788. }
  19789. },
  19790. },
  19791. [
  19792. {
  19793. name: "Less Kaiju",
  19794. height: math.unit(200, "feet")
  19795. },
  19796. {
  19797. name: "Kaiju",
  19798. height: math.unit(400, "feet"),
  19799. default: true
  19800. },
  19801. {
  19802. name: "Kaiju-er",
  19803. height: math.unit(600, "feet")
  19804. },
  19805. ]
  19806. ))
  19807. characterMakers.push(() => makeCharacter(
  19808. { name: "Lexir" },
  19809. {
  19810. front: {
  19811. height: math.unit(6 + 5/12, "feet"),
  19812. weight: math.unit(180, "lb"),
  19813. name: "Front",
  19814. image: {
  19815. source: "./media/characters/lexir/front.svg",
  19816. extra: 180/172,
  19817. bottom: 12/192
  19818. }
  19819. },
  19820. back: {
  19821. height: math.unit(6 + 5/12, "feet"),
  19822. weight: math.unit(180, "lb"),
  19823. name: "Back",
  19824. image: {
  19825. source: "./media/characters/lexir/back.svg",
  19826. extra: 183.84/175.5,
  19827. bottom: 3.1/187
  19828. }
  19829. },
  19830. },
  19831. [
  19832. {
  19833. name: "Very Smal",
  19834. height: math.unit(1, "nm")
  19835. },
  19836. {
  19837. name: "Normal",
  19838. height: math.unit(6 + 5/12, "feet"),
  19839. default: true
  19840. },
  19841. {
  19842. name: "Macro",
  19843. height: math.unit(1, "mile")
  19844. },
  19845. {
  19846. name: "Megamacro",
  19847. height: math.unit(50, "miles")
  19848. },
  19849. ]
  19850. ))
  19851. characterMakers.push(() => makeCharacter(
  19852. { name: "Maksio" },
  19853. {
  19854. front: {
  19855. height: math.unit(1.5, "meters"),
  19856. weight: math.unit(100, "lb"),
  19857. name: "Front",
  19858. image: {
  19859. source: "./media/characters/maksio/front.svg",
  19860. extra: 1549/1531,
  19861. bottom: 123.7/1674.5429
  19862. }
  19863. },
  19864. back: {
  19865. height: math.unit(1.5, "meters"),
  19866. weight: math.unit(100, "lb"),
  19867. name: "Back",
  19868. image: {
  19869. source: "./media/characters/maksio/back.svg",
  19870. extra: 1541/1509,
  19871. bottom: 97/1639
  19872. }
  19873. },
  19874. hand: {
  19875. height: math.unit(0.621, "feet"),
  19876. name: "Hand",
  19877. image: {
  19878. source: "./media/characters/maksio/hand.svg"
  19879. }
  19880. },
  19881. foot: {
  19882. height: math.unit(1.611, "feet"),
  19883. name: "Foot",
  19884. image: {
  19885. source: "./media/characters/maksio/foot.svg"
  19886. }
  19887. },
  19888. },
  19889. [
  19890. {
  19891. name: "Shrunken",
  19892. height: math.unit(10, "cm")
  19893. },
  19894. {
  19895. name: "Normal",
  19896. height: math.unit(150, "cm"),
  19897. default: true
  19898. },
  19899. ]
  19900. ))
  19901. characterMakers.push(() => makeCharacter(
  19902. { name: "Erza Bear" },
  19903. {
  19904. front: {
  19905. height: math.unit(100, "feet"),
  19906. name: "Front",
  19907. image: {
  19908. source: "./media/characters/erza-bear/front.svg",
  19909. extra: 2449/2390,
  19910. bottom: 46/2494
  19911. }
  19912. },
  19913. back: {
  19914. height: math.unit(100, "feet"),
  19915. name: "Back",
  19916. image: {
  19917. source: "./media/characters/erza-bear/back.svg",
  19918. extra: 2489/2430,
  19919. bottom: 85.4/2480
  19920. }
  19921. },
  19922. tail: {
  19923. height: math.unit(42, "feet"),
  19924. name: "Tail",
  19925. image: {
  19926. source: "./media/characters/erza-bear/tail.svg"
  19927. }
  19928. },
  19929. tongue: {
  19930. height: math.unit(8, "feet"),
  19931. name: "Tongue",
  19932. image: {
  19933. source: "./media/characters/erza-bear/tongue.svg"
  19934. }
  19935. },
  19936. dick: {
  19937. height: math.unit(10.5, "feet"),
  19938. name: "Dick",
  19939. image: {
  19940. source: "./media/characters/erza-bear/dick.svg"
  19941. }
  19942. },
  19943. dickVertical: {
  19944. height: math.unit(16.9, "feet"),
  19945. name: "Dick (Vertical)",
  19946. image: {
  19947. source: "./media/characters/erza-bear/dick-vertical.svg"
  19948. }
  19949. },
  19950. },
  19951. [
  19952. {
  19953. name: "Macro",
  19954. height: math.unit(100, "feet"),
  19955. default: true
  19956. },
  19957. ]
  19958. ))
  19959. characterMakers.push(() => makeCharacter(
  19960. { name: "Violet Flor", species: "Skunk" },
  19961. {
  19962. front: {
  19963. height: math.unit(172, "cm"),
  19964. weight: math.unit(73, "kg"),
  19965. name: "Front",
  19966. image: {
  19967. source: "./media/characters/violet-flor/front.svg",
  19968. extra: 1530/1442,
  19969. bottom: 61.9/1588.8
  19970. }
  19971. },
  19972. back: {
  19973. height: math.unit(180, "cm"),
  19974. weight: math.unit(73, "kg"),
  19975. name: "Back",
  19976. image: {
  19977. source: "./media/characters/violet-flor/back.svg",
  19978. extra: 1692/1630,
  19979. bottom: 20/1712
  19980. }
  19981. },
  19982. },
  19983. [
  19984. {
  19985. name: "Normal",
  19986. height: math.unit(172, "cm"),
  19987. default: true
  19988. },
  19989. ]
  19990. ))
  19991. characterMakers.push(() => makeCharacter(
  19992. { name: "Lynn Rhea", species: "Shark" },
  19993. {
  19994. front: {
  19995. height: math.unit(6, "feet"),
  19996. weight: math.unit(220, "lb"),
  19997. name: "Front",
  19998. image: {
  19999. source: "./media/characters/lynn-rhea/front.svg",
  20000. extra: 310/273
  20001. }
  20002. },
  20003. back: {
  20004. height: math.unit(6, "feet"),
  20005. weight: math.unit(220, "lb"),
  20006. name: "Back",
  20007. image: {
  20008. source: "./media/characters/lynn-rhea/back.svg",
  20009. extra: 310/273
  20010. }
  20011. },
  20012. dicks: {
  20013. height: math.unit(0.9, "feet"),
  20014. name: "Dicks",
  20015. image: {
  20016. source: "./media/characters/lynn-rhea/dicks.svg"
  20017. }
  20018. },
  20019. slit: {
  20020. height: math.unit(0.4, "feet"),
  20021. name: "Slit",
  20022. image: {
  20023. source: "./media/characters/lynn-rhea/slit.svg"
  20024. }
  20025. },
  20026. },
  20027. [
  20028. {
  20029. name: "Micro",
  20030. height: math.unit(1, "inch")
  20031. },
  20032. {
  20033. name: "Macro",
  20034. height: math.unit(60, "feet"),
  20035. default: true
  20036. },
  20037. {
  20038. name: "Megamacro",
  20039. height: math.unit(2, "miles")
  20040. },
  20041. {
  20042. name: "Gigamacro",
  20043. height: math.unit(3, "earths")
  20044. },
  20045. {
  20046. name: "Galactic",
  20047. height: math.unit(0.8, "galaxies")
  20048. },
  20049. ]
  20050. ))
  20051. characterMakers.push(() => makeCharacter(
  20052. { name: "Valathos" },
  20053. {
  20054. front: {
  20055. height: math.unit(1600, "feet"),
  20056. weight: math.unit(85758785169, "kg"),
  20057. name: "Front",
  20058. image: {
  20059. source: "./media/characters/valathos/front.svg",
  20060. extra: 1451/1339
  20061. }
  20062. },
  20063. },
  20064. [
  20065. {
  20066. name: "Macro",
  20067. height: math.unit(1600, "feet"),
  20068. default: true
  20069. },
  20070. ]
  20071. ))
  20072. characterMakers.push(() => makeCharacter(
  20073. { name: "Azula" },
  20074. {
  20075. front: {
  20076. height: math.unit(7 + 5/12, "feet"),
  20077. weight: math.unit(300, "lb"),
  20078. name: "Front",
  20079. image: {
  20080. source: "./media/characters/azula/front.svg",
  20081. extra: 3208/2880,
  20082. bottom: 80.2/3277
  20083. }
  20084. },
  20085. back: {
  20086. height: math.unit(7 + 5/12, "feet"),
  20087. weight: math.unit(300, "lb"),
  20088. name: "Back",
  20089. image: {
  20090. source: "./media/characters/azula/back.svg",
  20091. extra: 3169/2822,
  20092. bottom: 150.6/3321
  20093. }
  20094. },
  20095. },
  20096. [
  20097. {
  20098. name: "Normal",
  20099. height: math.unit(7 + 5/12, "feet"),
  20100. default: true
  20101. },
  20102. {
  20103. name: "Big",
  20104. height: math.unit(20, "feet")
  20105. },
  20106. ]
  20107. ))
  20108. characterMakers.push(() => makeCharacter(
  20109. { name: "Rupert" },
  20110. {
  20111. front: {
  20112. height: math.unit(5 + 1/12, "feet"),
  20113. weight: math.unit(110, "lb"),
  20114. name: "Front",
  20115. image: {
  20116. source: "./media/characters/rupert/front.svg",
  20117. extra: 1549/1495,
  20118. bottom: 54.2/1604.4
  20119. }
  20120. },
  20121. },
  20122. [
  20123. {
  20124. name: "Normal",
  20125. height: math.unit(5 + 1/12, "feet"),
  20126. default: true
  20127. },
  20128. ]
  20129. ))
  20130. //characters
  20131. function makeCharacters() {
  20132. const results = [];
  20133. characterMakers.forEach(character => {
  20134. results.push(character());
  20135. });
  20136. return results;
  20137. }