less copy protection, more size visualization
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

19798 wiersze
470 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename
  18. }
  19. if (value.weight) {
  20. views[key].attributes.weight = {
  21. name: "Mass",
  22. power: 3,
  23. type: "mass",
  24. base: value.weight
  25. };
  26. }
  27. });
  28. return createEntityMaker(info, views, defaultSizes);
  29. }
  30. characterMakers.push(() => makeCharacter(
  31. {
  32. name: "Fen",
  33. species: "Crux",
  34. description: {
  35. title: "Bio",
  36. text: "Very furry. Sheds on everything."
  37. }
  38. },
  39. {
  40. back: {
  41. height: math.unit(2.2428, "meter"),
  42. weight: math.unit(124.738, "kg"),
  43. name: "Back",
  44. image: {
  45. source: "./media/characters/fen/back.svg",
  46. extra: 1025 / 935
  47. },
  48. info: {
  49. description: {
  50. mode: "append",
  51. text: "\n\nHe is not currently looking at you."
  52. }
  53. }
  54. },
  55. full: {
  56. height: math.unit(1.34, "meter"),
  57. weight: math.unit(225, "kg"),
  58. name: "Full",
  59. image: {
  60. source: "./media/characters/fen/full.svg"
  61. },
  62. info: {
  63. description: {
  64. mode: "append",
  65. text: "\n\nMunch."
  66. }
  67. }
  68. },
  69. kneeling: {
  70. height: math.unit(5.4, "feet"),
  71. weight: math.unit(124.738, "kg"),
  72. name: "Kneeling",
  73. image: {
  74. source: "./media/characters/fen/kneeling.svg",
  75. extra: 563 / 507
  76. }
  77. },
  78. },
  79. [
  80. {
  81. name: "Normal",
  82. height: math.unit(2.2428, "meter")
  83. },
  84. {
  85. name: "Big",
  86. height: math.unit(12, "feet")
  87. },
  88. {
  89. name: "Minimacro",
  90. height: math.unit(30, "meter"),
  91. default: true,
  92. info: {
  93. description: {
  94. mode: "append",
  95. text: "\n\nTOO DAMN BIG"
  96. }
  97. }
  98. },
  99. {
  100. name: "Macro",
  101. height: math.unit(100, "meter"),
  102. info: {
  103. description: {
  104. mode: "append",
  105. text: "\n\nTOO DAMN BIG"
  106. }
  107. }
  108. },
  109. {
  110. name: "Macro+",
  111. height: math.unit(1000, "meter")
  112. },
  113. {
  114. name: "Megamacro",
  115. height: math.unit(10, "miles")
  116. }
  117. ]
  118. ))
  119. characterMakers.push(() => makeCharacter(
  120. { name: "Sofia Fluttertail" },
  121. {
  122. front: {
  123. height: math.unit(183, "cm"),
  124. weight: math.unit(80, "kg"),
  125. name: "Front",
  126. image: {
  127. source: "./media/characters/sofia-fluttertail/front.svg",
  128. bottom: 0.01,
  129. extra: 2154 / 2081
  130. }
  131. },
  132. frontAlt: {
  133. height: math.unit(183, "cm"),
  134. weight: math.unit(80, "kg"),
  135. name: "Front (alt)",
  136. image: {
  137. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  138. }
  139. },
  140. back: {
  141. height: math.unit(183, "cm"),
  142. weight: math.unit(80, "kg"),
  143. name: "Back",
  144. image: {
  145. source: "./media/characters/sofia-fluttertail/back.svg"
  146. }
  147. },
  148. maw: {
  149. height: math.unit(183 / 5, "cm"),
  150. name: "Maw",
  151. image: {
  152. source: "./media/characters/sofia-fluttertail/maw.svg"
  153. }
  154. },
  155. },
  156. [
  157. {
  158. name: "Normal",
  159. height: math.unit(1.83, "meter")
  160. },
  161. {
  162. name: "Macro",
  163. height: math.unit(96, "feet"),
  164. default: true
  165. },
  166. {
  167. name: "Megamerger",
  168. height: math.unit(650, "feet")
  169. },
  170. ]
  171. ))
  172. characterMakers.push(() => makeCharacter(
  173. { name: "March" },
  174. {
  175. front: {
  176. height: math.unit(7, "feet"),
  177. weight: math.unit(100, "kg"),
  178. name: "Front",
  179. image: {
  180. source: "./media/characters/march/front.svg",
  181. extra: 1,
  182. bottom: 0.015
  183. }
  184. },
  185. foot: {
  186. height: math.unit(0.9, "feet"),
  187. name: "Foot",
  188. image: {
  189. source: "./media/characters/march/foot.svg"
  190. }
  191. },
  192. },
  193. [
  194. {
  195. name: "Normal",
  196. height: math.unit(7.9, "feet")
  197. },
  198. {
  199. name: "Macro",
  200. height: math.unit(220, "meters")
  201. },
  202. {
  203. name: "Megamacro",
  204. height: math.unit(2.98, "km"),
  205. default: true
  206. },
  207. {
  208. name: "Gigamacro",
  209. height: math.unit(15963, "km")
  210. },
  211. {
  212. name: "Teramacro",
  213. height: math.unit(2980000000, "km")
  214. },
  215. {
  216. name: "Examacro",
  217. height: math.unit(250, "parsecs")
  218. },
  219. ]
  220. ))
  221. characterMakers.push(() => makeCharacter(
  222. { name: "Noir" },
  223. {
  224. front: {
  225. height: math.unit(6, "feet"),
  226. weight: math.unit(60, "kg"),
  227. name: "Front",
  228. image: {
  229. source: "./media/characters/noir/front.svg",
  230. extra: 1,
  231. bottom: 0.032
  232. }
  233. },
  234. },
  235. [
  236. {
  237. name: "Normal",
  238. height: math.unit(6.6, "feet")
  239. },
  240. {
  241. name: "Macro",
  242. height: math.unit(500, "feet")
  243. },
  244. {
  245. name: "Megamacro",
  246. height: math.unit(2.5, "km"),
  247. default: true
  248. },
  249. {
  250. name: "Gigamacro",
  251. height: math.unit(22500, "km")
  252. },
  253. {
  254. name: "Teramacro",
  255. height: math.unit(2500000000, "km")
  256. },
  257. {
  258. name: "Examacro",
  259. height: math.unit(200, "parsecs")
  260. },
  261. ]
  262. ))
  263. characterMakers.push(() => makeCharacter(
  264. { name: "Okuri" },
  265. {
  266. front: {
  267. height: math.unit(7, "feet"),
  268. weight: math.unit(100, "kg"),
  269. name: "Front",
  270. image: {
  271. source: "./media/characters/okuri/front.svg",
  272. extra: 1,
  273. bottom: 0.037
  274. }
  275. },
  276. back: {
  277. height: math.unit(7, "feet"),
  278. weight: math.unit(100, "kg"),
  279. name: "Back",
  280. image: {
  281. source: "./media/characters/okuri/back.svg",
  282. extra: 1,
  283. bottom: 0.007
  284. }
  285. },
  286. },
  287. [
  288. {
  289. name: "Megamacro",
  290. height: math.unit(100, "miles"),
  291. default: true
  292. },
  293. ]
  294. ))
  295. characterMakers.push(() => makeCharacter(
  296. { name: "Manny" },
  297. {
  298. front: {
  299. height: math.unit(7, "feet"),
  300. weight: math.unit(100, "kg"),
  301. name: "Front",
  302. image: {
  303. source: "./media/characters/manny/front.svg",
  304. extra: 1,
  305. bottom: 0.06
  306. }
  307. },
  308. back: {
  309. height: math.unit(7, "feet"),
  310. weight: math.unit(100, "kg"),
  311. name: "Back",
  312. image: {
  313. source: "./media/characters/manny/back.svg",
  314. extra: 1,
  315. bottom: 0.014
  316. }
  317. },
  318. },
  319. [
  320. {
  321. name: "Normal",
  322. height: math.unit(7, "feet"),
  323. },
  324. {
  325. name: "Macro",
  326. height: math.unit(78, "feet"),
  327. default: true
  328. },
  329. {
  330. name: "Macro+",
  331. height: math.unit(300, "meters")
  332. },
  333. {
  334. name: "Macro++",
  335. height: math.unit(2400, "meters")
  336. },
  337. {
  338. name: "Megamacro",
  339. height: math.unit(5167, "meters")
  340. },
  341. {
  342. name: "Gigamacro",
  343. height: math.unit(41769, "miles")
  344. },
  345. ]
  346. ))
  347. characterMakers.push(() => makeCharacter(
  348. { name: "Adake" },
  349. {
  350. front: {
  351. height: math.unit(7, "feet"),
  352. weight: math.unit(100, "kg"),
  353. name: "Front",
  354. image: {
  355. source: "./media/characters/adake/front-1.svg"
  356. }
  357. },
  358. frontAlt: {
  359. height: math.unit(7, "feet"),
  360. weight: math.unit(100, "kg"),
  361. name: "Front (Alt)",
  362. image: {
  363. source: "./media/characters/adake/front-2.svg",
  364. extra: 1,
  365. bottom: 0.01
  366. }
  367. },
  368. back: {
  369. height: math.unit(7, "feet"),
  370. weight: math.unit(100, "kg"),
  371. name: "Back",
  372. image: {
  373. source: "./media/characters/adake/back.svg",
  374. }
  375. },
  376. kneel: {
  377. height: math.unit(5.385, "feet"),
  378. weight: math.unit(100, "kg"),
  379. name: "Kneeling",
  380. image: {
  381. source: "./media/characters/adake/kneel.svg",
  382. bottom: 0.052
  383. }
  384. },
  385. },
  386. [
  387. {
  388. name: "Normal",
  389. height: math.unit(7, "feet"),
  390. },
  391. {
  392. name: "Macro",
  393. height: math.unit(78, "feet"),
  394. default: true
  395. },
  396. {
  397. name: "Macro+",
  398. height: math.unit(300, "meters")
  399. },
  400. {
  401. name: "Macro++",
  402. height: math.unit(2400, "meters")
  403. },
  404. {
  405. name: "Megamacro",
  406. height: math.unit(5167, "meters")
  407. },
  408. {
  409. name: "Gigamacro",
  410. height: math.unit(41769, "miles")
  411. },
  412. ]
  413. ))
  414. characterMakers.push(() => makeCharacter(
  415. { name: "Elijah" },
  416. {
  417. front: {
  418. height: math.unit(1.65, "meters"),
  419. weight: math.unit(50, "kg"),
  420. name: "Front",
  421. image: {
  422. source: "./media/characters/elijah/front.svg",
  423. extra: 639/626,
  424. bottom: 58.7/697.8
  425. }
  426. },
  427. side: {
  428. height: math.unit(1.65, "meters"),
  429. weight: math.unit(50, "kg"),
  430. name: "Side",
  431. image: {
  432. source: "./media/characters/elijah/side.svg",
  433. extra: 1840/1795,
  434. bottom: 106/1943
  435. }
  436. },
  437. back: {
  438. height: math.unit(1.65, "meters"),
  439. weight: math.unit(50, "kg"),
  440. name: "Back",
  441. image: {
  442. source: "./media/characters/elijah/back.svg",
  443. extra: 661.2/639.5,
  444. bottom: 21.2/682.5
  445. }
  446. },
  447. foot: {
  448. height: math.unit(1.4, "feet"),
  449. name: "Foot",
  450. image: {
  451. source: "./media/characters/elijah/foot.svg"
  452. }
  453. },
  454. footFlexing: {
  455. height: math.unit(1.243, "feet"),
  456. name: "Foot (Flexing)",
  457. image: {
  458. source: "./media/characters/elijah/foot-flexing.svg"
  459. }
  460. },
  461. footStepping: {
  462. height: math.unit(1.3, "feet"),
  463. name: "Foot (Stepping)",
  464. image: {
  465. source: "./media/characters/elijah/foot-stepping.svg"
  466. }
  467. },
  468. beak: {
  469. height: math.unit(0.666, "feet"),
  470. name: "Beak",
  471. image: {
  472. source: "./media/characters/elijah/beak.svg"
  473. }
  474. },
  475. dick: {
  476. height: math.unit(0.85, "feet"),
  477. name: "Dick",
  478. image: {
  479. source: "./media/characters/elijah/dick.svg"
  480. }
  481. },
  482. },
  483. [
  484. {
  485. name: "Normal",
  486. height: math.unit(1.65, "meters")
  487. },
  488. {
  489. name: "Macro",
  490. height: math.unit(55, "meters"),
  491. default: true
  492. },
  493. {
  494. name: "Macro+",
  495. height: math.unit(105, "meters")
  496. },
  497. ]
  498. ))
  499. characterMakers.push(() => makeCharacter(
  500. { name: "Rai" },
  501. {
  502. front: {
  503. height: math.unit(11, "feet"),
  504. weight: math.unit(80, "kg"),
  505. name: "Front",
  506. image: {
  507. source: "./media/characters/rai/front.svg",
  508. extra: 1,
  509. bottom: 0.03
  510. }
  511. },
  512. side: {
  513. height: math.unit(11, "feet"),
  514. weight: math.unit(80, "kg"),
  515. name: "Side",
  516. image: {
  517. source: "./media/characters/rai/side.svg"
  518. }
  519. },
  520. back: {
  521. height: math.unit(11, "feet"),
  522. weight: math.unit(80, "lb"),
  523. name: "Back",
  524. image: {
  525. source: "./media/characters/rai/back.svg",
  526. extra: 1,
  527. bottom: 0.01
  528. }
  529. },
  530. feral: {
  531. height: math.unit(11, "feet"),
  532. weight: math.unit(800, "lb"),
  533. name: "Feral",
  534. image: {
  535. source: "./media/characters/rai/feral.svg",
  536. extra: 1050 / 659,
  537. bottom: 0.07
  538. }
  539. },
  540. maw: {
  541. height: math.unit(6 / 3.81416, "feet"),
  542. name: "Maw",
  543. image: {
  544. source: "./media/characters/rai/maw.svg"
  545. }
  546. },
  547. },
  548. [
  549. {
  550. name: "Normal",
  551. height: math.unit(11, "feet")
  552. },
  553. {
  554. name: "Macro",
  555. height: math.unit(302, "feet"),
  556. default: true
  557. },
  558. ]
  559. ))
  560. characterMakers.push(() => makeCharacter(
  561. { name: "Jazzy" },
  562. {
  563. front: {
  564. height: math.unit(7, "feet"),
  565. weight: math.unit(80, "kg"),
  566. name: "Front",
  567. image: {
  568. source: "./media/characters/jazzy/front.svg",
  569. extra: 1,
  570. bottom: 0.01
  571. }
  572. },
  573. back: {
  574. height: math.unit(7, "feet"),
  575. weight: math.unit(80, "kg"),
  576. name: "Back",
  577. image: {
  578. source: "./media/characters/jazzy/back.svg",
  579. extra: 1,
  580. bottom: 0.01
  581. }
  582. },
  583. },
  584. [
  585. {
  586. name: "Macro",
  587. height: math.unit(216, "feet"),
  588. default: true
  589. },
  590. ]
  591. ))
  592. characterMakers.push(() => makeCharacter(
  593. { name: "Flamm" },
  594. {
  595. front: {
  596. height: math.unit(7, "feet"),
  597. weight: math.unit(80, "kg"),
  598. name: "Front",
  599. image: {
  600. source: "./media/characters/flamm/front.svg",
  601. extra: 1,
  602. bottom: 0.02
  603. }
  604. },
  605. },
  606. [
  607. {
  608. name: "Normal",
  609. height: math.unit(9.5, "feet")
  610. },
  611. {
  612. name: "Macro",
  613. height: math.unit(200, "feet"),
  614. default: true
  615. },
  616. ]
  617. ))
  618. characterMakers.push(() => makeCharacter(
  619. { name: "Zephiro" },
  620. {
  621. front: {
  622. height: math.unit(7, "feet"),
  623. weight: math.unit(80, "kg"),
  624. name: "Front",
  625. image: {
  626. source: "./media/characters/zephiro/front.svg",
  627. extra: 2309 / 2162,
  628. bottom: 0.069
  629. }
  630. },
  631. side: {
  632. height: math.unit(7, "feet"),
  633. weight: math.unit(80, "kg"),
  634. name: "Side",
  635. image: {
  636. source: "./media/characters/zephiro/side.svg",
  637. extra: 2403 / 2279,
  638. bottom: 0.015
  639. }
  640. },
  641. back: {
  642. height: math.unit(7, "feet"),
  643. weight: math.unit(80, "kg"),
  644. name: "Back",
  645. image: {
  646. source: "./media/characters/zephiro/back.svg",
  647. extra: 2373 / 2244,
  648. bottom: 0.013
  649. }
  650. },
  651. },
  652. [
  653. {
  654. name: "Micro",
  655. height: math.unit(3, "inches")
  656. },
  657. {
  658. name: "Normal",
  659. height: math.unit(5 + 3 / 12, "feet"),
  660. default: true
  661. },
  662. {
  663. name: "Macro",
  664. height: math.unit(118, "feet")
  665. },
  666. ]
  667. ))
  668. characterMakers.push(() => makeCharacter(
  669. { name: "Fory" },
  670. {
  671. front: {
  672. height: math.unit(5, "feet"),
  673. weight: math.unit(90, "kg"),
  674. name: "Front",
  675. image: {
  676. source: "./media/characters/fory/front.svg",
  677. extra: 2862/2674,
  678. bottom: 180/3043.8
  679. }
  680. },
  681. back: {
  682. height: math.unit(5, "feet"),
  683. weight: math.unit(90, "kg"),
  684. name: "Back",
  685. image: {
  686. source: "./media/characters/fory/back.svg",
  687. extra: 2962/2791,
  688. bottom: 106/3071.8
  689. }
  690. },
  691. foot: {
  692. height: math.unit(2.14, "feet"),
  693. name: "Foot",
  694. image: {
  695. source: "./media/characters/fory/foot.svg"
  696. }
  697. },
  698. },
  699. [
  700. {
  701. name: "Normal",
  702. height: math.unit(5, "feet")
  703. },
  704. {
  705. name: "Macro",
  706. height: math.unit(50, "feet"),
  707. default: true
  708. },
  709. ]
  710. ))
  711. characterMakers.push(() => makeCharacter(
  712. { name: "Kurrikage" },
  713. {
  714. front: {
  715. height: math.unit(7, "feet"),
  716. weight: math.unit(90, "kg"),
  717. name: "Front",
  718. image: {
  719. source: "./media/characters/kurrikage/front.svg",
  720. extra: 1,
  721. bottom: 0.035
  722. }
  723. },
  724. back: {
  725. height: math.unit(7, "feet"),
  726. weight: math.unit(90, "lb"),
  727. name: "Back",
  728. image: {
  729. source: "./media/characters/kurrikage/back.svg"
  730. }
  731. },
  732. paw: {
  733. height: math.unit(1.5, "feet"),
  734. name: "Paw",
  735. image: {
  736. source: "./media/characters/kurrikage/paw.svg"
  737. }
  738. },
  739. staff: {
  740. height: math.unit(6.7, "feet"),
  741. name: "Staff",
  742. image: {
  743. source: "./media/characters/kurrikage/staff.svg"
  744. }
  745. },
  746. peek: {
  747. height: math.unit(1.05, "feet"),
  748. name: "Peeking",
  749. image: {
  750. source: "./media/characters/kurrikage/peek.svg",
  751. bottom: 0.08
  752. }
  753. },
  754. },
  755. [
  756. {
  757. name: "Normal",
  758. height: math.unit(12, "feet"),
  759. default: true
  760. },
  761. {
  762. name: "Big",
  763. height: math.unit(20, "feet")
  764. },
  765. {
  766. name: "Macro",
  767. height: math.unit(500, "feet")
  768. },
  769. {
  770. name: "Megamacro",
  771. height: math.unit(20, "miles")
  772. },
  773. ]
  774. ))
  775. characterMakers.push(() => makeCharacter(
  776. { name: "Shingo" },
  777. {
  778. front: {
  779. height: math.unit(6, "feet"),
  780. weight: math.unit(75, "kg"),
  781. name: "Front",
  782. image: {
  783. source: "./media/characters/shingo/front.svg",
  784. extra: 3511 / 3338,
  785. bottom: 0.005
  786. }
  787. },
  788. },
  789. [
  790. {
  791. name: "Micro",
  792. height: math.unit(4, "inches")
  793. },
  794. {
  795. name: "Normal",
  796. height: math.unit(6, "feet"),
  797. default: true
  798. },
  799. {
  800. name: "Macro",
  801. height: math.unit(108, "feet")
  802. }
  803. ]
  804. ))
  805. characterMakers.push(() => makeCharacter(
  806. { name: "Aigey" },
  807. {
  808. side: {
  809. height: math.unit(6, "feet"),
  810. weight: math.unit(75, "kg"),
  811. name: "Side",
  812. image: {
  813. source: "./media/characters/aigey/side.svg"
  814. }
  815. },
  816. },
  817. [
  818. {
  819. name: "Macro",
  820. height: math.unit(200, "feet"),
  821. default: true
  822. },
  823. {
  824. name: "Megamacro",
  825. height: math.unit(100, "miles")
  826. },
  827. ]
  828. )
  829. )
  830. characterMakers.push(() => makeCharacter(
  831. { name: "Natasha" },
  832. {
  833. front: {
  834. height: math.unit(5 + 5 / 12, "feet"),
  835. weight: math.unit(75, "kg"),
  836. name: "Front",
  837. image: {
  838. source: "./media/characters/natasha/front.svg",
  839. extra: 875 / 846,
  840. bottom: 0.01
  841. }
  842. },
  843. },
  844. [
  845. {
  846. name: "Normal",
  847. height: math.unit(5 + 5 / 12, "feet")
  848. },
  849. {
  850. name: "Large",
  851. height: math.unit(12, "feet")
  852. },
  853. {
  854. name: "Macro",
  855. height: math.unit(100, "feet"),
  856. default: true
  857. },
  858. {
  859. name: "Macro+",
  860. height: math.unit(260, "feet")
  861. },
  862. {
  863. name: "Macro++",
  864. height: math.unit(1, "mile")
  865. },
  866. ]
  867. ))
  868. characterMakers.push(() => makeCharacter(
  869. { name: "Malik" },
  870. {
  871. front: {
  872. height: math.unit(6, "feet"),
  873. weight: math.unit(75, "kg"),
  874. name: "Front",
  875. image: {
  876. source: "./media/characters/malik/front.svg"
  877. }
  878. },
  879. side: {
  880. height: math.unit(6, "feet"),
  881. weight: math.unit(75, "kg"),
  882. name: "Side",
  883. image: {
  884. source: "./media/characters/malik/side.svg",
  885. extra: 1.1539
  886. }
  887. },
  888. back: {
  889. height: math.unit(6, "feet"),
  890. weight: math.unit(75, "kg"),
  891. name: "Back",
  892. image: {
  893. source: "./media/characters/malik/back.svg"
  894. }
  895. },
  896. },
  897. [
  898. {
  899. name: "Macro",
  900. height: math.unit(156, "feet"),
  901. default: true
  902. },
  903. {
  904. name: "Macro+",
  905. height: math.unit(1188, "feet")
  906. },
  907. ]
  908. ))
  909. characterMakers.push(() => makeCharacter(
  910. { name: "Sefer" },
  911. {
  912. front: {
  913. height: math.unit(6, "feet"),
  914. weight: math.unit(75, "kg"),
  915. name: "Front",
  916. image: {
  917. source: "./media/characters/sefer/front.svg"
  918. }
  919. },
  920. back: {
  921. height: math.unit(6, "feet"),
  922. weight: math.unit(75, "kg"),
  923. name: "Back",
  924. image: {
  925. source: "./media/characters/sefer/back.svg"
  926. }
  927. },
  928. },
  929. [
  930. {
  931. name: "Normal",
  932. height: math.unit(6, "feet"),
  933. default: true
  934. },
  935. ]
  936. ))
  937. characterMakers.push(() => makeCharacter(
  938. { name: "North" },
  939. {
  940. body: {
  941. height: math.unit(2.2428, "meter"),
  942. weight: math.unit(124.738, "kg"),
  943. name: "Body",
  944. image: {
  945. extra: 1225 / 1050,
  946. source: "./media/characters/north/front.svg"
  947. }
  948. }
  949. },
  950. [
  951. {
  952. name: "Micro",
  953. height: math.unit(4, "inches")
  954. },
  955. {
  956. name: "Macro",
  957. height: math.unit(63, "meters")
  958. },
  959. {
  960. name: "Megamacro",
  961. height: math.unit(101, "miles"),
  962. default: true
  963. }
  964. ]
  965. ))
  966. characterMakers.push(() => makeCharacter(
  967. { name: "Talan" },
  968. {
  969. body: {
  970. height: math.unit(2, "meter"),
  971. weight: math.unit(70, "kg"),
  972. name: "Body",
  973. image: {
  974. bottom: 0.02,
  975. source: "./media/characters/talan/front.svg"
  976. }
  977. }
  978. },
  979. [
  980. {
  981. name: "Normal",
  982. height: math.unit(4, "meters")
  983. },
  984. {
  985. name: "Macro",
  986. height: math.unit(100, "meters")
  987. },
  988. {
  989. name: "Megamacro",
  990. height: math.unit(2, "miles"),
  991. default: true
  992. },
  993. {
  994. name: "Gigamacro",
  995. height: math.unit(5000, "miles")
  996. },
  997. {
  998. name: "Teramacro",
  999. height: math.unit(100, "parsecs")
  1000. }
  1001. ]
  1002. ))
  1003. characterMakers.push(() => makeCharacter(
  1004. { name: "Gael'Rathus" },
  1005. {
  1006. front: {
  1007. height: math.unit(2, "meter"),
  1008. weight: math.unit(90, "kg"),
  1009. name: "Front",
  1010. image: {
  1011. source: "./media/characters/gael'rathus/front.svg"
  1012. }
  1013. },
  1014. frontAlt: {
  1015. height: math.unit(2, "meter"),
  1016. weight: math.unit(90, "kg"),
  1017. name: "Front (alt)",
  1018. image: {
  1019. source: "./media/characters/gael'rathus/front-alt.svg"
  1020. }
  1021. },
  1022. frontAlt2: {
  1023. height: math.unit(2, "meter"),
  1024. weight: math.unit(90, "kg"),
  1025. name: "Front (alt 2)",
  1026. image: {
  1027. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1028. }
  1029. }
  1030. },
  1031. [
  1032. {
  1033. name: "Normal",
  1034. height: math.unit(9, "feet"),
  1035. default: true
  1036. },
  1037. {
  1038. name: "Large",
  1039. height: math.unit(25, "feet")
  1040. },
  1041. {
  1042. name: "Macro",
  1043. height: math.unit(0.25, "miles")
  1044. },
  1045. {
  1046. name: "Megamacro",
  1047. height: math.unit(10, "miles")
  1048. }
  1049. ]
  1050. ))
  1051. characterMakers.push(() => makeCharacter(
  1052. { name: "Sosha" },
  1053. {
  1054. side: {
  1055. height: math.unit(2, "meter"),
  1056. weight: math.unit(140, "kg"),
  1057. name: "Side",
  1058. image: {
  1059. source: "./media/characters/sosha/side.svg",
  1060. bottom: 0.042
  1061. }
  1062. },
  1063. },
  1064. [
  1065. {
  1066. name: "Normal",
  1067. height: math.unit(12, "feet"),
  1068. default: true
  1069. }
  1070. ]
  1071. ))
  1072. characterMakers.push(() => makeCharacter(
  1073. { name: "RuNNoLa" },
  1074. {
  1075. side: {
  1076. height: math.unit(5 + 5 / 12, "feet"),
  1077. weight: math.unit(170, "kg"),
  1078. name: "Side",
  1079. image: {
  1080. source: "./media/characters/runnola/side.svg",
  1081. extra: 741 / 448,
  1082. bottom: 0.05
  1083. }
  1084. },
  1085. },
  1086. [
  1087. {
  1088. name: "Small",
  1089. height: math.unit(3, "feet")
  1090. },
  1091. {
  1092. name: "Normal",
  1093. height: math.unit(5 + 5 / 12, "feet"),
  1094. default: true
  1095. },
  1096. {
  1097. name: "Big",
  1098. height: math.unit(10, "feet")
  1099. },
  1100. ]
  1101. ))
  1102. characterMakers.push(() => makeCharacter(
  1103. { name: "Kurribird" },
  1104. {
  1105. front: {
  1106. height: math.unit(2, "meter"),
  1107. weight: math.unit(50, "kg"),
  1108. name: "Front",
  1109. image: {
  1110. source: "./media/characters/kurribird/front.svg",
  1111. bottom: 0.015
  1112. }
  1113. },
  1114. frontAlt: {
  1115. height: math.unit(1.5, "meter"),
  1116. weight: math.unit(50, "kg"),
  1117. name: "Front (Alt)",
  1118. image: {
  1119. source: "./media/characters/kurribird/front-alt.svg",
  1120. extra: 1.45
  1121. }
  1122. },
  1123. },
  1124. [
  1125. {
  1126. name: "Normal",
  1127. height: math.unit(7, "feet")
  1128. },
  1129. {
  1130. name: "Big",
  1131. height: math.unit(12, "feet"),
  1132. default: true
  1133. },
  1134. {
  1135. name: "Macro",
  1136. height: math.unit(1500, "feet")
  1137. },
  1138. {
  1139. name: "Megamacro",
  1140. height: math.unit(2, "miles")
  1141. }
  1142. ]
  1143. ))
  1144. characterMakers.push(() => makeCharacter(
  1145. { name: "Elbial" },
  1146. {
  1147. front: {
  1148. height: math.unit(2, "meter"),
  1149. weight: math.unit(80, "kg"),
  1150. name: "Front",
  1151. image: {
  1152. source: "./media/characters/elbial/front.svg",
  1153. extra: 1643/1556,
  1154. bottom: 60.2/1696
  1155. }
  1156. },
  1157. side: {
  1158. height: math.unit(2, "meter"),
  1159. weight: math.unit(80, "kg"),
  1160. name: "Side",
  1161. image: {
  1162. source: "./media/characters/elbial/side.svg",
  1163. extra: 1630/1565,
  1164. bottom: 71.5/1697
  1165. }
  1166. },
  1167. back: {
  1168. height: math.unit(2, "meter"),
  1169. weight: math.unit(80, "kg"),
  1170. name: "Back",
  1171. image: {
  1172. source: "./media/characters/elbial/back.svg",
  1173. extra: 1668/1595,
  1174. bottom: 5.6/1672
  1175. }
  1176. },
  1177. frontDressed: {
  1178. height: math.unit(2, "meter"),
  1179. weight: math.unit(80, "kg"),
  1180. name: "Front (Dressed)",
  1181. image: {
  1182. source: "./media/characters/elbial/front-dressed.svg",
  1183. extra: 1653/1584,
  1184. bottom: 57/1708
  1185. }
  1186. },
  1187. genitals: {
  1188. height: math.unit(2/3.367, "meter"),
  1189. name: "Genitals",
  1190. image: {
  1191. source: "./media/characters/elbial/genitals.svg"
  1192. }
  1193. },
  1194. },
  1195. [
  1196. {
  1197. name: "Large",
  1198. height: math.unit(100, "feet")
  1199. },
  1200. {
  1201. name: "Macro",
  1202. height: math.unit(500, "feet"),
  1203. default: true
  1204. },
  1205. {
  1206. name: "Megamacro",
  1207. height: math.unit(10, "miles")
  1208. },
  1209. {
  1210. name: "Gigamacro",
  1211. height: math.unit(25000, "miles")
  1212. },
  1213. {
  1214. name: "Full-Size",
  1215. height: math.unit(8000000, "gigaparsecs")
  1216. }
  1217. ]
  1218. ))
  1219. characterMakers.push(() => makeCharacter(
  1220. { name: "Noah" },
  1221. {
  1222. front: {
  1223. height: math.unit(2, "meter"),
  1224. weight: math.unit(60, "kg"),
  1225. name: "Front",
  1226. image: {
  1227. source: "./media/characters/noah/front.svg"
  1228. }
  1229. },
  1230. talons: {
  1231. height: math.unit(0.315, "meter"),
  1232. name: "Talons",
  1233. image: {
  1234. source: "./media/characters/noah/talons.svg"
  1235. }
  1236. }
  1237. },
  1238. [
  1239. {
  1240. name: "Large",
  1241. height: math.unit(50, "feet")
  1242. },
  1243. {
  1244. name: "Macro",
  1245. height: math.unit(750, "feet"),
  1246. default: true
  1247. },
  1248. {
  1249. name: "Megamacro",
  1250. height: math.unit(50, "miles")
  1251. },
  1252. {
  1253. name: "Gigamacro",
  1254. height: math.unit(100000, "miles")
  1255. },
  1256. {
  1257. name: "Full-Size",
  1258. height: math.unit(3000000000, "miles")
  1259. }
  1260. ]
  1261. ))
  1262. characterMakers.push(() => makeCharacter(
  1263. { name: "Natalya" },
  1264. {
  1265. front: {
  1266. height: math.unit(2, "meter"),
  1267. weight: math.unit(80, "kg"),
  1268. name: "Front",
  1269. image: {
  1270. source: "./media/characters/natalya/front.svg"
  1271. }
  1272. },
  1273. back: {
  1274. height: math.unit(2, "meter"),
  1275. weight: math.unit(80, "kg"),
  1276. name: "Back",
  1277. image: {
  1278. source: "./media/characters/natalya/back.svg"
  1279. }
  1280. }
  1281. },
  1282. [
  1283. {
  1284. name: "Normal",
  1285. height: math.unit(150, "feet"),
  1286. default: true
  1287. },
  1288. {
  1289. name: "Megamacro",
  1290. height: math.unit(5, "miles")
  1291. },
  1292. {
  1293. name: "Full-Size",
  1294. height: math.unit(600, "kiloparsecs")
  1295. }
  1296. ]
  1297. ))
  1298. characterMakers.push(() => makeCharacter(
  1299. { name: "Erestrebah" },
  1300. {
  1301. front: {
  1302. height: math.unit(2, "meter"),
  1303. weight: math.unit(50, "kg"),
  1304. name: "Front",
  1305. image: {
  1306. source: "./media/characters/erestrebah/front.svg",
  1307. extra: 208 / 193,
  1308. bottom: 0.055
  1309. }
  1310. },
  1311. back: {
  1312. height: math.unit(2, "meter"),
  1313. weight: math.unit(50, "kg"),
  1314. name: "Back",
  1315. image: {
  1316. source: "./media/characters/erestrebah/back.svg",
  1317. extra: 1.3
  1318. }
  1319. }
  1320. },
  1321. [
  1322. {
  1323. name: "Normal",
  1324. height: math.unit(10, "feet")
  1325. },
  1326. {
  1327. name: "Large",
  1328. height: math.unit(50, "feet"),
  1329. default: true
  1330. },
  1331. {
  1332. name: "Macro",
  1333. height: math.unit(300, "feet")
  1334. },
  1335. {
  1336. name: "Macro+",
  1337. height: math.unit(750, "feet")
  1338. },
  1339. {
  1340. name: "Megamacro",
  1341. height: math.unit(3, "miles")
  1342. }
  1343. ]
  1344. ))
  1345. characterMakers.push(() => makeCharacter(
  1346. { name: "Jennifer" },
  1347. {
  1348. front: {
  1349. height: math.unit(2, "meter"),
  1350. weight: math.unit(80, "kg"),
  1351. name: "Front",
  1352. image: {
  1353. source: "./media/characters/jennifer/front.svg",
  1354. bottom: 0.11,
  1355. extra: 1.16
  1356. }
  1357. },
  1358. frontAlt: {
  1359. height: math.unit(2, "meter"),
  1360. weight: math.unit(80, "kg"),
  1361. name: "Front (Alt)",
  1362. image: {
  1363. source: "./media/characters/jennifer/front-alt.svg"
  1364. }
  1365. }
  1366. },
  1367. [
  1368. {
  1369. name: "Canon Height",
  1370. height: math.unit(120, "feet"),
  1371. default: true
  1372. },
  1373. {
  1374. name: "Macro+",
  1375. height: math.unit(300, "feet")
  1376. },
  1377. {
  1378. name: "Megamacro",
  1379. height: math.unit(20000, "feet")
  1380. }
  1381. ]
  1382. ))
  1383. characterMakers.push(() => makeCharacter(
  1384. { name: "Kalista" },
  1385. {
  1386. front: {
  1387. height: math.unit(2, "meter"),
  1388. weight: math.unit(50, "kg"),
  1389. name: "Front",
  1390. image: {
  1391. source: "./media/characters/kalista/front.svg",
  1392. extra: 1947 / 1700
  1393. }
  1394. },
  1395. back: {
  1396. height: math.unit(2, "meter"),
  1397. weight: math.unit(50, "kg"),
  1398. name: "Back",
  1399. image: {
  1400. source: "./media/characters/kalista/back.svg",
  1401. extra: 1366 / 1156
  1402. }
  1403. }
  1404. },
  1405. [
  1406. {
  1407. name: "Uncomfortably Small",
  1408. height: math.unit(10, "feet")
  1409. },
  1410. {
  1411. name: "Small",
  1412. height: math.unit(30, "feet")
  1413. },
  1414. {
  1415. name: "Macro",
  1416. height: math.unit(100, "feet"),
  1417. default: true
  1418. },
  1419. {
  1420. name: "Macro+",
  1421. height: math.unit(2000, "feet")
  1422. },
  1423. {
  1424. name: "True Form",
  1425. height: math.unit(8924, "miles")
  1426. }
  1427. ]
  1428. ))
  1429. characterMakers.push(() => makeCharacter(
  1430. { name: "GiantGrowingVixen" },
  1431. {
  1432. front: {
  1433. height: math.unit(2, "meter"),
  1434. weight: math.unit(120, "kg"),
  1435. name: "Front",
  1436. image: {
  1437. source: "./media/characters/ggv/front.svg"
  1438. }
  1439. },
  1440. side: {
  1441. height: math.unit(2, "meter"),
  1442. weight: math.unit(120, "kg"),
  1443. name: "Side",
  1444. image: {
  1445. source: "./media/characters/ggv/side.svg"
  1446. }
  1447. }
  1448. },
  1449. [
  1450. {
  1451. name: "Extremely Puny",
  1452. height: math.unit(9 + 5 / 12, "feet")
  1453. },
  1454. {
  1455. name: "Horribly Small",
  1456. height: math.unit(47.7, "miles"),
  1457. default: true
  1458. },
  1459. {
  1460. name: "Reasonably Sized",
  1461. height: math.unit(25000, "parsecs")
  1462. },
  1463. {
  1464. name: "Slightly Uncompressed",
  1465. height: math.unit(7.77e31, "parsecs")
  1466. },
  1467. {
  1468. name: "Omniversal",
  1469. height: math.unit(1e300, "meters")
  1470. },
  1471. ]
  1472. ))
  1473. characterMakers.push(() => makeCharacter(
  1474. { name: "Napalm" },
  1475. {
  1476. front: {
  1477. height: math.unit(2, "meter"),
  1478. weight: math.unit(75, "lb"),
  1479. name: "Front",
  1480. image: {
  1481. source: "./media/characters/napalm/front.svg"
  1482. }
  1483. },
  1484. back: {
  1485. height: math.unit(2, "meter"),
  1486. weight: math.unit(75, "lb"),
  1487. name: "Back",
  1488. image: {
  1489. source: "./media/characters/napalm/back.svg"
  1490. }
  1491. }
  1492. },
  1493. [
  1494. {
  1495. name: "Standard",
  1496. height: math.unit(55, "feet"),
  1497. default: true
  1498. }
  1499. ]
  1500. ))
  1501. characterMakers.push(() => makeCharacter(
  1502. { name: "Asana" },
  1503. {
  1504. front: {
  1505. height: math.unit(7 + 5 / 6, "feet"),
  1506. weight: math.unit(325, "lb"),
  1507. name: "Front",
  1508. image: {
  1509. source: "./media/characters/asana/front.svg",
  1510. extra: 1128 / 1068
  1511. }
  1512. },
  1513. back: {
  1514. height: math.unit(7 + 5 / 6, "feet"),
  1515. weight: math.unit(325, "lb"),
  1516. name: "Back",
  1517. image: {
  1518. source: "./media/characters/asana/back.svg",
  1519. extra: 1128 / 1068
  1520. }
  1521. },
  1522. },
  1523. [
  1524. {
  1525. name: "Standard",
  1526. height: math.unit(7 + 5 / 6, "feet"),
  1527. default: true
  1528. },
  1529. {
  1530. name: "Large",
  1531. height: math.unit(10, "meters")
  1532. },
  1533. {
  1534. name: "Macro",
  1535. height: math.unit(2500, "meters")
  1536. },
  1537. {
  1538. name: "Megamacro",
  1539. height: math.unit(5e6, "meters")
  1540. },
  1541. {
  1542. name: "Examacro",
  1543. height: math.unit(5e12, "lightyears")
  1544. },
  1545. {
  1546. name: "Max Size",
  1547. height: math.unit(1e31, "lightyears")
  1548. }
  1549. ]
  1550. ))
  1551. characterMakers.push(() => makeCharacter(
  1552. { name: "Ebony" },
  1553. {
  1554. front: {
  1555. height: math.unit(2, "meter"),
  1556. weight: math.unit(60, "kg"),
  1557. name: "Front",
  1558. image: {
  1559. source: "./media/characters/ebony/front.svg",
  1560. bottom: 0.03,
  1561. extra: 1045 / 810 + 0.03
  1562. }
  1563. },
  1564. side: {
  1565. height: math.unit(2, "meter"),
  1566. weight: math.unit(60, "kg"),
  1567. name: "Side",
  1568. image: {
  1569. source: "./media/characters/ebony/side.svg",
  1570. bottom: 0.03,
  1571. extra: 1045 / 810 + 0.03
  1572. }
  1573. },
  1574. back: {
  1575. height: math.unit(2, "meter"),
  1576. weight: math.unit(60, "kg"),
  1577. name: "Back",
  1578. image: {
  1579. source: "./media/characters/ebony/back.svg",
  1580. bottom: 0.01,
  1581. extra: 1045 / 810 + 0.01
  1582. }
  1583. },
  1584. },
  1585. [
  1586. // TODO check why I did this lol
  1587. {
  1588. name: "Standard",
  1589. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1590. default: true
  1591. },
  1592. {
  1593. name: "Macro",
  1594. height: math.unit(200, "feet")
  1595. },
  1596. {
  1597. name: "Gigamacro",
  1598. height: math.unit(13000, "km")
  1599. }
  1600. ]
  1601. ))
  1602. characterMakers.push(() => makeCharacter(
  1603. { name: "Mountain" },
  1604. {
  1605. front: {
  1606. height: math.unit(6, "feet"),
  1607. weight: math.unit(175, "lb"),
  1608. name: "Front",
  1609. image: {
  1610. source: "./media/characters/mountain/front.svg"
  1611. }
  1612. },
  1613. back: {
  1614. height: math.unit(6, "feet"),
  1615. weight: math.unit(175, "lb"),
  1616. name: "Back",
  1617. image: {
  1618. source: "./media/characters/mountain/back.svg"
  1619. }
  1620. },
  1621. },
  1622. [
  1623. {
  1624. name: "Large",
  1625. height: math.unit(20, "meters")
  1626. },
  1627. {
  1628. name: "Macro",
  1629. height: math.unit(300, "meters")
  1630. },
  1631. {
  1632. name: "Gigamacro",
  1633. height: math.unit(10000, "km"),
  1634. default: true
  1635. },
  1636. {
  1637. name: "Examacro",
  1638. height: math.unit(10e9, "lightyears")
  1639. }
  1640. ]
  1641. ))
  1642. characterMakers.push(() => makeCharacter(
  1643. { name: "Rick" },
  1644. {
  1645. front: {
  1646. height: math.unit(8, "feet"),
  1647. weight: math.unit(500, "lb"),
  1648. name: "Front",
  1649. image: {
  1650. source: "./media/characters/rick/front.svg"
  1651. }
  1652. }
  1653. },
  1654. [
  1655. {
  1656. name: "Normal",
  1657. height: math.unit(8, "feet"),
  1658. default: true
  1659. },
  1660. {
  1661. name: "Macro",
  1662. height: math.unit(5, "km")
  1663. }
  1664. ]
  1665. ))
  1666. characterMakers.push(() => makeCharacter(
  1667. { name: "Ona" },
  1668. {
  1669. front: {
  1670. height: math.unit(8, "feet"),
  1671. weight: math.unit(120, "lb"),
  1672. name: "Front",
  1673. image: {
  1674. source: "./media/characters/ona/front.svg"
  1675. }
  1676. },
  1677. frontAlt: {
  1678. height: math.unit(8, "feet"),
  1679. weight: math.unit(120, "lb"),
  1680. name: "Front (Alt)",
  1681. image: {
  1682. source: "./media/characters/ona/front-alt.svg"
  1683. }
  1684. },
  1685. back: {
  1686. height: math.unit(8, "feet"),
  1687. weight: math.unit(120, "lb"),
  1688. name: "Back",
  1689. image: {
  1690. source: "./media/characters/ona/back.svg"
  1691. }
  1692. },
  1693. foot: {
  1694. height: math.unit(1.1, "feet"),
  1695. name: "Foot",
  1696. image: {
  1697. source: "./media/characters/ona/foot.svg"
  1698. }
  1699. }
  1700. },
  1701. [
  1702. {
  1703. name: "Megamacro",
  1704. height: math.unit(70, "km"),
  1705. default: true
  1706. },
  1707. {
  1708. name: "Gigamacro",
  1709. height: math.unit(681818, "miles")
  1710. },
  1711. {
  1712. name: "Examacro",
  1713. height: math.unit(3800000, "lightyears")
  1714. },
  1715. ]
  1716. ))
  1717. characterMakers.push(() => makeCharacter(
  1718. { name: "Mech" },
  1719. {
  1720. front: {
  1721. height: math.unit(12, "feet"),
  1722. weight: math.unit(3000, "lb"),
  1723. name: "Front",
  1724. image: {
  1725. source: "./media/characters/mech/front.svg",
  1726. bottom: 0.025,
  1727. }
  1728. },
  1729. back: {
  1730. height: math.unit(12, "feet"),
  1731. weight: math.unit(3000, "lb"),
  1732. name: "Back",
  1733. image: {
  1734. source: "./media/characters/mech/back.svg",
  1735. bottom: 0.03,
  1736. }
  1737. }
  1738. },
  1739. [
  1740. {
  1741. name: "Normal",
  1742. height: math.unit(12, "feet")
  1743. },
  1744. {
  1745. name: "Macro",
  1746. height: math.unit(300, "feet"),
  1747. default: true
  1748. },
  1749. {
  1750. name: "Macro+",
  1751. height: math.unit(1500, "feet")
  1752. },
  1753. ]
  1754. ))
  1755. characterMakers.push(() => makeCharacter(
  1756. { name: "Gregory" },
  1757. {
  1758. front: {
  1759. height: math.unit(1.3, "meter"),
  1760. weight: math.unit(30, "kg"),
  1761. name: "Front",
  1762. image: {
  1763. source: "./media/characters/gregory/front.svg",
  1764. }
  1765. }
  1766. },
  1767. [
  1768. {
  1769. name: "Normal",
  1770. height: math.unit(1.3, "meter"),
  1771. default: true
  1772. },
  1773. {
  1774. name: "Macro",
  1775. height: math.unit(20, "meter")
  1776. }
  1777. ]
  1778. ))
  1779. characterMakers.push(() => makeCharacter(
  1780. { name: "Elory" },
  1781. {
  1782. front: {
  1783. height: math.unit(2.8, "meter"),
  1784. weight: math.unit(200, "kg"),
  1785. name: "Front",
  1786. image: {
  1787. source: "./media/characters/elory/front.svg",
  1788. }
  1789. }
  1790. },
  1791. [
  1792. {
  1793. name: "Normal",
  1794. height: math.unit(2.8, "meter"),
  1795. default: true
  1796. },
  1797. {
  1798. name: "Macro",
  1799. height: math.unit(38, "meter")
  1800. }
  1801. ]
  1802. ))
  1803. characterMakers.push(() => makeCharacter(
  1804. { name: "Angelpatamon" },
  1805. {
  1806. front: {
  1807. height: math.unit(470, "feet"),
  1808. weight: math.unit(924, "tons"),
  1809. name: "Front",
  1810. image: {
  1811. source: "./media/characters/angelpatamon/front.svg",
  1812. }
  1813. }
  1814. },
  1815. [
  1816. {
  1817. name: "Normal",
  1818. height: math.unit(470, "feet"),
  1819. default: true
  1820. },
  1821. {
  1822. name: "Deity Size I",
  1823. height: math.unit(28651.2, "km")
  1824. },
  1825. {
  1826. name: "Deity Size II",
  1827. height: math.unit(171907.2, "km")
  1828. }
  1829. ]
  1830. ))
  1831. characterMakers.push(() => makeCharacter(
  1832. { name: "Cryae" },
  1833. {
  1834. side: {
  1835. height: math.unit(7.2, "meter"),
  1836. weight: math.unit(8.2, "tons"),
  1837. name: "Side",
  1838. image: {
  1839. source: "./media/characters/cryae/side.svg",
  1840. extra: 3500 / 1500
  1841. }
  1842. }
  1843. },
  1844. [
  1845. {
  1846. name: "Normal",
  1847. height: math.unit(7.2, "meter"),
  1848. default: true
  1849. }
  1850. ]
  1851. ))
  1852. characterMakers.push(() => makeCharacter(
  1853. { name: "Xera" },
  1854. {
  1855. front: {
  1856. height: math.unit(6, "feet"),
  1857. weight: math.unit(175, "lb"),
  1858. name: "Front",
  1859. image: {
  1860. source: "./media/characters/xera/front.svg",
  1861. extra: 2300 / 2061
  1862. }
  1863. },
  1864. side: {
  1865. height: math.unit(6, "feet"),
  1866. weight: math.unit(175, "lb"),
  1867. name: "Side",
  1868. image: {
  1869. source: "./media/characters/xera/side.svg",
  1870. extra: 2300 / 2061
  1871. }
  1872. },
  1873. back: {
  1874. height: math.unit(6, "feet"),
  1875. weight: math.unit(175, "lb"),
  1876. name: "Back",
  1877. image: {
  1878. source: "./media/characters/xera/back.svg"
  1879. }
  1880. },
  1881. },
  1882. [
  1883. {
  1884. name: "Small",
  1885. height: math.unit(10, "feet")
  1886. },
  1887. {
  1888. name: "Macro",
  1889. height: math.unit(500, "meters"),
  1890. default: true
  1891. },
  1892. {
  1893. name: "Macro+",
  1894. height: math.unit(10, "km")
  1895. },
  1896. {
  1897. name: "Gigamacro",
  1898. height: math.unit(25000, "km")
  1899. },
  1900. {
  1901. name: "Teramacro",
  1902. height: math.unit(3e6, "km")
  1903. }
  1904. ]
  1905. ))
  1906. characterMakers.push(() => makeCharacter(
  1907. { name: "Nebula" },
  1908. {
  1909. front: {
  1910. height: math.unit(6, "feet"),
  1911. weight: math.unit(175, "lb"),
  1912. name: "Front",
  1913. image: {
  1914. source: "./media/characters/nebula/front.svg",
  1915. extra: 2600 / 2450
  1916. }
  1917. }
  1918. },
  1919. [
  1920. {
  1921. name: "Small",
  1922. height: math.unit(4.5, "meters")
  1923. },
  1924. {
  1925. name: "Macro",
  1926. height: math.unit(1500, "meters"),
  1927. default: true
  1928. },
  1929. {
  1930. name: "Megamacro",
  1931. height: math.unit(150, "km")
  1932. },
  1933. {
  1934. name: "Gigamacro",
  1935. height: math.unit(27000, "km")
  1936. }
  1937. ]
  1938. ))
  1939. characterMakers.push(() => makeCharacter(
  1940. { name: "Abysgar" },
  1941. {
  1942. front: {
  1943. height: math.unit(6, "feet"),
  1944. weight: math.unit(225, "lb"),
  1945. name: "Front",
  1946. image: {
  1947. source: "./media/characters/abysgar/front.svg"
  1948. }
  1949. }
  1950. },
  1951. [
  1952. {
  1953. name: "Small",
  1954. height: math.unit(4.5, "meters")
  1955. },
  1956. {
  1957. name: "Macro",
  1958. height: math.unit(1250, "meters"),
  1959. default: true
  1960. },
  1961. {
  1962. name: "Megamacro",
  1963. height: math.unit(125, "km")
  1964. },
  1965. {
  1966. name: "Gigamacro",
  1967. height: math.unit(26000, "km")
  1968. }
  1969. ]
  1970. ))
  1971. characterMakers.push(() => makeCharacter(
  1972. { name: "Yakuz" },
  1973. {
  1974. front: {
  1975. height: math.unit(6, "feet"),
  1976. weight: math.unit(180, "lb"),
  1977. name: "Front",
  1978. image: {
  1979. source: "./media/characters/yakuz/front.svg"
  1980. }
  1981. }
  1982. },
  1983. [
  1984. {
  1985. name: "Small",
  1986. height: math.unit(5, "meters")
  1987. },
  1988. {
  1989. name: "Macro",
  1990. height: math.unit(1500, "meters"),
  1991. default: true
  1992. },
  1993. {
  1994. name: "Megamacro",
  1995. height: math.unit(200, "km")
  1996. },
  1997. {
  1998. name: "Gigamacro",
  1999. height: math.unit(100000, "km")
  2000. }
  2001. ]
  2002. ))
  2003. characterMakers.push(() => makeCharacter(
  2004. { name: "Mirova" },
  2005. {
  2006. front: {
  2007. height: math.unit(6, "feet"),
  2008. weight: math.unit(175, "lb"),
  2009. name: "Front",
  2010. image: {
  2011. source: "./media/characters/mirova/front.svg"
  2012. }
  2013. }
  2014. },
  2015. [
  2016. {
  2017. name: "Small",
  2018. height: math.unit(5, "meters")
  2019. },
  2020. {
  2021. name: "Macro",
  2022. height: math.unit(900, "meters"),
  2023. default: true
  2024. },
  2025. {
  2026. name: "Megamacro",
  2027. height: math.unit(135, "km")
  2028. },
  2029. {
  2030. name: "Gigamacro",
  2031. height: math.unit(20000, "km")
  2032. }
  2033. ]
  2034. ))
  2035. characterMakers.push(() => makeCharacter(
  2036. { name: "Asana (Mech)" },
  2037. {
  2038. side: {
  2039. height: math.unit(28.35, "feet"),
  2040. weight: math.unit(99.75, "tons"),
  2041. name: "Side",
  2042. image: {
  2043. source: "./media/characters/asana-mech/side.svg"
  2044. }
  2045. }
  2046. },
  2047. [
  2048. {
  2049. name: "Normal",
  2050. height: math.unit(28.35, "feet"),
  2051. default: true
  2052. },
  2053. {
  2054. name: "Macro",
  2055. height: math.unit(2500, "feet")
  2056. },
  2057. {
  2058. name: "Megamacro",
  2059. height: math.unit(25, "miles")
  2060. },
  2061. {
  2062. name: "Examacro",
  2063. height: math.unit(6e8, "lightyears")
  2064. },
  2065. ]
  2066. ))
  2067. characterMakers.push(() => makeCharacter(
  2068. { name: "Ashtrek" },
  2069. {
  2070. front: {
  2071. height: math.unit(2, "meters"),
  2072. weight: math.unit(70, "kg"),
  2073. name: "Front",
  2074. image: {
  2075. source: "./media/characters/ashtrek/front.svg",
  2076. extra: 560 / 524,
  2077. bottom: 0.01
  2078. }
  2079. },
  2080. frontArmor: {
  2081. height: math.unit(2, "meters"),
  2082. weight: math.unit(76, "kg"),
  2083. name: "Front (Armor)",
  2084. image: {
  2085. source: "./media/characters/ashtrek/front-armor.svg",
  2086. extra: 561 / 527,
  2087. bottom: 0.01
  2088. }
  2089. },
  2090. side: {
  2091. height: math.unit(2, "meters"),
  2092. weight: math.unit(70, "kg"),
  2093. name: "Side",
  2094. image: {
  2095. source: "./media/characters/ashtrek/side.svg",
  2096. extra: 1717 / 1609,
  2097. bottom: 0.005
  2098. }
  2099. },
  2100. back: {
  2101. height: math.unit(2, "meters"),
  2102. weight: math.unit(70, "kg"),
  2103. name: "Back",
  2104. image: {
  2105. source: "./media/characters/ashtrek/back.svg",
  2106. extra: 1570 / 1501
  2107. }
  2108. },
  2109. },
  2110. [
  2111. {
  2112. name: "DEFCON 5",
  2113. height: math.unit(5, "meters")
  2114. },
  2115. {
  2116. name: "DEFCON 4",
  2117. height: math.unit(500, "meters"),
  2118. default: true
  2119. },
  2120. {
  2121. name: "DEFCON 3",
  2122. height: math.unit(5, "km")
  2123. },
  2124. {
  2125. name: "DEFCON 2",
  2126. height: math.unit(500, "km")
  2127. },
  2128. {
  2129. name: "DEFCON 1",
  2130. height: math.unit(500000, "km")
  2131. },
  2132. {
  2133. name: "DEFCON 0",
  2134. height: math.unit(3, "gigaparsecs")
  2135. },
  2136. ]
  2137. ))
  2138. characterMakers.push(() => makeCharacter(
  2139. { name: "Gale" },
  2140. {
  2141. front: {
  2142. height: math.unit(2, "meters"),
  2143. weight: math.unit(76, "kg"),
  2144. name: "Front",
  2145. image: {
  2146. source: "./media/characters/gale/front.svg"
  2147. }
  2148. },
  2149. frontAlt1: {
  2150. height: math.unit(2, "meters"),
  2151. weight: math.unit(76, "kg"),
  2152. name: "Front (Alt 1)",
  2153. image: {
  2154. source: "./media/characters/gale/front-alt-1.svg"
  2155. }
  2156. },
  2157. frontAlt2: {
  2158. height: math.unit(2, "meters"),
  2159. weight: math.unit(76, "kg"),
  2160. name: "Front (Alt 2)",
  2161. image: {
  2162. source: "./media/characters/gale/front-alt-2.svg"
  2163. }
  2164. },
  2165. },
  2166. [
  2167. {
  2168. name: "Normal",
  2169. height: math.unit(7, "feet")
  2170. },
  2171. {
  2172. name: "Macro",
  2173. height: math.unit(150, "feet"),
  2174. default: true
  2175. },
  2176. {
  2177. name: "Macro+",
  2178. height: math.unit(300, "feet")
  2179. },
  2180. ]
  2181. ))
  2182. characterMakers.push(() => makeCharacter(
  2183. { name: "Draylen" },
  2184. {
  2185. front: {
  2186. height: math.unit(2, "meters"),
  2187. weight: math.unit(76, "kg"),
  2188. name: "Front",
  2189. image: {
  2190. source: "./media/characters/draylen/front.svg"
  2191. }
  2192. }
  2193. },
  2194. [
  2195. {
  2196. name: "Macro",
  2197. height: math.unit(150, "feet"),
  2198. default: true
  2199. }
  2200. ]
  2201. ))
  2202. characterMakers.push(() => makeCharacter(
  2203. { name: "Chez" },
  2204. {
  2205. front: {
  2206. height: math.unit(7 + 9 / 12, "feet"),
  2207. weight: math.unit(379, "lbs"),
  2208. name: "Front",
  2209. image: {
  2210. source: "./media/characters/chez/front.svg"
  2211. }
  2212. },
  2213. side: {
  2214. height: math.unit(7 + 9 / 12, "feet"),
  2215. weight: math.unit(379, "lbs"),
  2216. name: "Side",
  2217. image: {
  2218. source: "./media/characters/chez/side.svg"
  2219. }
  2220. }
  2221. },
  2222. [
  2223. {
  2224. name: "Normal",
  2225. height: math.unit(7 + 9 / 12, "feet"),
  2226. default: true
  2227. },
  2228. {
  2229. name: "God King",
  2230. height: math.unit(9750000, "meters")
  2231. }
  2232. ]
  2233. ))
  2234. characterMakers.push(() => makeCharacter(
  2235. { name: "Kaylum" },
  2236. {
  2237. front: {
  2238. height: math.unit(6, "feet"),
  2239. weight: math.unit(275, "lbs"),
  2240. name: "Front",
  2241. image: {
  2242. source: "./media/characters/kaylum/front.svg",
  2243. bottom: 0.01,
  2244. extra: 1166 / 1031
  2245. }
  2246. },
  2247. frontWingless: {
  2248. height: math.unit(6, "feet"),
  2249. weight: math.unit(275, "lbs"),
  2250. name: "Front (Wingless)",
  2251. image: {
  2252. source: "./media/characters/kaylum/front-wingless.svg",
  2253. bottom: 0.01,
  2254. extra: 1117 / 1031
  2255. }
  2256. }
  2257. },
  2258. [
  2259. {
  2260. name: "Normal",
  2261. height: math.unit(3.05, "meters")
  2262. },
  2263. {
  2264. name: "Master",
  2265. height: math.unit(5.5, "meters")
  2266. },
  2267. {
  2268. name: "Rampage",
  2269. height: math.unit(19, "meters")
  2270. },
  2271. {
  2272. name: "Macro Lite",
  2273. height: math.unit(37, "meters")
  2274. },
  2275. {
  2276. name: "Hyper Predator",
  2277. height: math.unit(61, "meters")
  2278. },
  2279. {
  2280. name: "Macro",
  2281. height: math.unit(138, "meters"),
  2282. default: true
  2283. }
  2284. ]
  2285. ))
  2286. characterMakers.push(() => makeCharacter(
  2287. { name: "Geta" },
  2288. {
  2289. front: {
  2290. height: math.unit(6, "feet"),
  2291. weight: math.unit(150, "lbs"),
  2292. name: "Front",
  2293. image: {
  2294. source: "./media/characters/geta/front.svg"
  2295. }
  2296. }
  2297. },
  2298. [
  2299. {
  2300. name: "Micro",
  2301. height: math.unit(3, "inches"),
  2302. default: true
  2303. },
  2304. {
  2305. name: "Normal",
  2306. height: math.unit(5 + 5 / 12, "feet")
  2307. }
  2308. ]
  2309. ))
  2310. characterMakers.push(() => makeCharacter(
  2311. { name: "Tyrnn" },
  2312. {
  2313. front: {
  2314. height: math.unit(6, "feet"),
  2315. weight: math.unit(300, "lbs"),
  2316. name: "Front",
  2317. image: {
  2318. source: "./media/characters/tyrnn/front.svg"
  2319. }
  2320. }
  2321. },
  2322. [
  2323. {
  2324. name: "Main Height",
  2325. height: math.unit(355, "feet"),
  2326. default: true
  2327. },
  2328. {
  2329. name: "Fave. Height",
  2330. height: math.unit(2400, "feet")
  2331. }
  2332. ]
  2333. ))
  2334. characterMakers.push(() => makeCharacter(
  2335. { name: "Apple" },
  2336. {
  2337. front: {
  2338. height: math.unit(6, "feet"),
  2339. weight: math.unit(300, "lbs"),
  2340. name: "Front",
  2341. image: {
  2342. source: "./media/characters/appledectomy/front.svg"
  2343. }
  2344. }
  2345. },
  2346. [
  2347. {
  2348. name: "Macro",
  2349. height: math.unit(2500, "feet")
  2350. },
  2351. {
  2352. name: "Megamacro",
  2353. height: math.unit(50, "miles"),
  2354. default: true
  2355. },
  2356. {
  2357. name: "Gigamacro",
  2358. height: math.unit(5000, "miles")
  2359. },
  2360. {
  2361. name: "Teramacro",
  2362. height: math.unit(250000, "miles")
  2363. },
  2364. ]
  2365. ))
  2366. characterMakers.push(() => makeCharacter(
  2367. { name: "Vulpes" },
  2368. {
  2369. front: {
  2370. height: math.unit(6, "feet"),
  2371. weight: math.unit(200, "lbs"),
  2372. name: "Front",
  2373. image: {
  2374. source: "./media/characters/vulpes/front.svg",
  2375. extra: 573 / 543,
  2376. bottom: 0.033
  2377. }
  2378. },
  2379. side: {
  2380. height: math.unit(6, "feet"),
  2381. weight: math.unit(200, "lbs"),
  2382. name: "Side",
  2383. image: {
  2384. source: "./media/characters/vulpes/side.svg",
  2385. extra: 573 / 543,
  2386. bottom: 0.01
  2387. }
  2388. },
  2389. back: {
  2390. height: math.unit(6, "feet"),
  2391. weight: math.unit(200, "lbs"),
  2392. name: "Back",
  2393. image: {
  2394. source: "./media/characters/vulpes/back.svg",
  2395. extra: 573 / 543,
  2396. }
  2397. },
  2398. feet: {
  2399. height: math.unit(1.276, "feet"),
  2400. name: "Feet",
  2401. image: {
  2402. source: "./media/characters/vulpes/feet.svg"
  2403. }
  2404. },
  2405. maw: {
  2406. height: math.unit(1.18, "feet"),
  2407. name: "Maw",
  2408. image: {
  2409. source: "./media/characters/vulpes/maw.svg"
  2410. }
  2411. },
  2412. },
  2413. [
  2414. {
  2415. name: "Micro",
  2416. height: math.unit(2, "inches")
  2417. },
  2418. {
  2419. name: "Normal",
  2420. height: math.unit(6.3, "feet")
  2421. },
  2422. {
  2423. name: "Macro",
  2424. height: math.unit(850, "feet")
  2425. },
  2426. {
  2427. name: "Megamacro",
  2428. height: math.unit(7500, "feet"),
  2429. default: true
  2430. },
  2431. {
  2432. name: "Gigamacro",
  2433. height: math.unit(570000, "miles")
  2434. }
  2435. ]
  2436. ))
  2437. characterMakers.push(() => makeCharacter(
  2438. { name: "Rain Fallen" },
  2439. {
  2440. front: {
  2441. height: math.unit(6, "feet"),
  2442. weight: math.unit(210, "lbs"),
  2443. name: "Front",
  2444. image: {
  2445. source: "./media/characters/rain-fallen/front.svg"
  2446. }
  2447. },
  2448. side: {
  2449. height: math.unit(6, "feet"),
  2450. weight: math.unit(210, "lbs"),
  2451. name: "Side",
  2452. image: {
  2453. source: "./media/characters/rain-fallen/side.svg"
  2454. }
  2455. },
  2456. back: {
  2457. height: math.unit(6, "feet"),
  2458. weight: math.unit(210, "lbs"),
  2459. name: "Back",
  2460. image: {
  2461. source: "./media/characters/rain-fallen/back.svg"
  2462. }
  2463. },
  2464. feral: {
  2465. height: math.unit(9, "feet"),
  2466. weight: math.unit(700, "lbs"),
  2467. name: "Feral",
  2468. image: {
  2469. source: "./media/characters/rain-fallen/feral.svg"
  2470. }
  2471. },
  2472. },
  2473. [
  2474. {
  2475. name: "Normal",
  2476. height: math.unit(5, "meter")
  2477. },
  2478. {
  2479. name: "Macro",
  2480. height: math.unit(150, "meter"),
  2481. default: true
  2482. },
  2483. {
  2484. name: "Megamacro",
  2485. height: math.unit(278e6, "meter")
  2486. },
  2487. {
  2488. name: "Gigamacro",
  2489. height: math.unit(2e9, "meter")
  2490. },
  2491. {
  2492. name: "Teramacro",
  2493. height: math.unit(8e12, "meter")
  2494. },
  2495. {
  2496. name: "Devourer",
  2497. height: math.unit(14, "zettameters")
  2498. },
  2499. {
  2500. name: "Scarlet King",
  2501. height: math.unit(18, "yottameters")
  2502. },
  2503. {
  2504. name: "Void",
  2505. height: math.unit(6.66e66, "yottameters")
  2506. }
  2507. ]
  2508. ))
  2509. characterMakers.push(() => makeCharacter(
  2510. { name: "Zaakira" },
  2511. {
  2512. standing: {
  2513. height: math.unit(6, "feet"),
  2514. weight: math.unit(180, "lbs"),
  2515. name: "Standing",
  2516. image: {
  2517. source: "./media/characters/zaakira/standing.svg"
  2518. }
  2519. },
  2520. laying: {
  2521. height: math.unit(3, "feet"),
  2522. weight: math.unit(180, "lbs"),
  2523. name: "Laying",
  2524. image: {
  2525. source: "./media/characters/zaakira/laying.svg"
  2526. }
  2527. },
  2528. },
  2529. [
  2530. {
  2531. name: "Normal",
  2532. height: math.unit(12, "feet")
  2533. },
  2534. {
  2535. name: "Macro",
  2536. height: math.unit(279, "feet"),
  2537. default: true
  2538. }
  2539. ]
  2540. ))
  2541. characterMakers.push(() => makeCharacter(
  2542. { name: "Sigvald" },
  2543. {
  2544. front: {
  2545. height: math.unit(6, "feet"),
  2546. weight: math.unit(250, "lbs"),
  2547. name: "Front",
  2548. image: {
  2549. source: "./media/characters/sigvald/front.svg",
  2550. extra: 1000 / 850
  2551. }
  2552. },
  2553. back: {
  2554. height: math.unit(6, "feet"),
  2555. weight: math.unit(250, "lbs"),
  2556. name: "Back",
  2557. image: {
  2558. source: "./media/characters/sigvald/back.svg"
  2559. }
  2560. },
  2561. },
  2562. [
  2563. {
  2564. name: "Normal",
  2565. height: math.unit(8, "feet")
  2566. },
  2567. {
  2568. name: "Large",
  2569. height: math.unit(12, "feet")
  2570. },
  2571. {
  2572. name: "Larger",
  2573. height: math.unit(20, "feet")
  2574. },
  2575. {
  2576. name: "Macro",
  2577. height: math.unit(150, "feet")
  2578. },
  2579. {
  2580. name: "Macro+",
  2581. height: math.unit(200, "feet"),
  2582. default: true
  2583. },
  2584. ]
  2585. ))
  2586. characterMakers.push(() => makeCharacter(
  2587. { name: "Scott" },
  2588. {
  2589. side: {
  2590. height: math.unit(12, "feet"),
  2591. weight: math.unit(3000, "lbs"),
  2592. name: "Side",
  2593. image: {
  2594. source: "./media/characters/scott/side.svg",
  2595. extra: 1,
  2596. bottom: 0.069
  2597. }
  2598. },
  2599. upright: {
  2600. height: math.unit(12, "feet"),
  2601. weight: math.unit(3000, "lbs"),
  2602. name: "Upright",
  2603. image: {
  2604. source: "./media/characters/scott/upright.svg",
  2605. extra: 1,
  2606. bottom: 0.05
  2607. }
  2608. },
  2609. },
  2610. [
  2611. {
  2612. name: "Normal",
  2613. height: math.unit(12, "feet"),
  2614. default: true
  2615. },
  2616. ]
  2617. ))
  2618. characterMakers.push(() => makeCharacter(
  2619. { name: "Tobias" },
  2620. {
  2621. side: {
  2622. height: math.unit(8, "meters"),
  2623. weight: math.unit(84755, "lbs"),
  2624. name: "Side",
  2625. image: {
  2626. source: "./media/characters/tobias/side.svg",
  2627. extra: 1474 / 1096,
  2628. bottom: 38.9/1513.1235
  2629. }
  2630. },
  2631. },
  2632. [
  2633. {
  2634. name: "Normal",
  2635. height: math.unit(8, "meters"),
  2636. default: true
  2637. },
  2638. ]
  2639. ))
  2640. characterMakers.push(() => makeCharacter(
  2641. { name: "Kieran" },
  2642. {
  2643. front: {
  2644. height: math.unit(5.5, "feet"),
  2645. weight: math.unit(400, "lbs"),
  2646. name: "Front",
  2647. image: {
  2648. source: "./media/characters/kieran/front.svg",
  2649. extra: 1.05
  2650. }
  2651. },
  2652. side: {
  2653. height: math.unit(5.5, "feet"),
  2654. weight: math.unit(400, "lbs"),
  2655. name: "Side",
  2656. image: {
  2657. source: "./media/characters/kieran/side.svg",
  2658. extra: 950 / 850
  2659. }
  2660. },
  2661. },
  2662. [
  2663. {
  2664. name: "Normal",
  2665. height: math.unit(5.5, "feet"),
  2666. default: true
  2667. },
  2668. ]
  2669. ))
  2670. characterMakers.push(() => makeCharacter(
  2671. { name: "Sanya" },
  2672. {
  2673. side: {
  2674. height: math.unit(2, "meters"),
  2675. weight: math.unit(70, "kg"),
  2676. name: "Side",
  2677. image: {
  2678. source: "./media/characters/sanya/side.svg",
  2679. bottom: 0.02,
  2680. extra: 1.02
  2681. }
  2682. },
  2683. },
  2684. [
  2685. {
  2686. name: "Small",
  2687. height: math.unit(2, "meters")
  2688. },
  2689. {
  2690. name: "Normal",
  2691. height: math.unit(3, "meters")
  2692. },
  2693. {
  2694. name: "Macro",
  2695. height: math.unit(16, "meters"),
  2696. default: true
  2697. },
  2698. ]
  2699. ))
  2700. characterMakers.push(() => makeCharacter(
  2701. { name: "Miranda" },
  2702. {
  2703. side: {
  2704. height: math.unit(2, "meters"),
  2705. weight: math.unit(120, "kg"),
  2706. name: "Front",
  2707. image: {
  2708. source: "./media/characters/miranda/front.svg",
  2709. extra: 10.6 / 10
  2710. }
  2711. },
  2712. },
  2713. [
  2714. {
  2715. name: "Normal",
  2716. height: math.unit(10, "feet"),
  2717. default: true
  2718. }
  2719. ]
  2720. ))
  2721. characterMakers.push(() => makeCharacter(
  2722. { name: "James" },
  2723. {
  2724. side: {
  2725. height: math.unit(2, "meters"),
  2726. weight: math.unit(100, "kg"),
  2727. name: "Front",
  2728. image: {
  2729. source: "./media/characters/james/front.svg",
  2730. extra: 10 / 8.5
  2731. }
  2732. },
  2733. },
  2734. [
  2735. {
  2736. name: "Normal",
  2737. height: math.unit(8.5, "feet"),
  2738. default: true
  2739. }
  2740. ]
  2741. ))
  2742. characterMakers.push(() => makeCharacter(
  2743. { name: "Heather" },
  2744. {
  2745. side: {
  2746. height: math.unit(9.5, "feet"),
  2747. weight: math.unit(2500, "lbs"),
  2748. name: "Side",
  2749. image: {
  2750. source: "./media/characters/heather/side.svg"
  2751. }
  2752. },
  2753. },
  2754. [
  2755. {
  2756. name: "Normal",
  2757. height: math.unit(9.5, "feet"),
  2758. default: true
  2759. }
  2760. ]
  2761. ))
  2762. characterMakers.push(() => makeCharacter(
  2763. { name: "Lukas" },
  2764. {
  2765. side: {
  2766. height: math.unit(6.5, "feet"),
  2767. weight: math.unit(400, "lbs"),
  2768. name: "Side",
  2769. image: {
  2770. source: "./media/characters/lukas/side.svg",
  2771. extra: 7.25 / 6.5
  2772. }
  2773. },
  2774. },
  2775. [
  2776. {
  2777. name: "Normal",
  2778. height: math.unit(6.5, "feet"),
  2779. default: true
  2780. }
  2781. ]
  2782. ))
  2783. characterMakers.push(() => makeCharacter(
  2784. { name: "Louise" },
  2785. {
  2786. side: {
  2787. height: math.unit(5, "feet"),
  2788. weight: math.unit(3000, "lbs"),
  2789. name: "Side",
  2790. image: {
  2791. source: "./media/characters/louise/side.svg"
  2792. }
  2793. },
  2794. },
  2795. [
  2796. {
  2797. name: "Normal",
  2798. height: math.unit(5, "feet"),
  2799. default: true
  2800. }
  2801. ]
  2802. ))
  2803. characterMakers.push(() => makeCharacter(
  2804. { name: "Ramona" },
  2805. {
  2806. side: {
  2807. height: math.unit(6, "feet"),
  2808. weight: math.unit(150, "lbs"),
  2809. name: "Side",
  2810. image: {
  2811. source: "./media/characters/ramona/side.svg"
  2812. }
  2813. },
  2814. },
  2815. [
  2816. {
  2817. name: "Normal",
  2818. height: math.unit(5.3, "meters"),
  2819. default: true
  2820. },
  2821. {
  2822. name: "Macro",
  2823. height: math.unit(20, "stories")
  2824. },
  2825. {
  2826. name: "Macro+",
  2827. height: math.unit(50, "stories")
  2828. },
  2829. ]
  2830. ))
  2831. characterMakers.push(() => makeCharacter(
  2832. { name: "Deerpuff" },
  2833. {
  2834. standing: {
  2835. height: math.unit(5.75, "feet"),
  2836. weight: math.unit(160, "lbs"),
  2837. name: "Standing",
  2838. image: {
  2839. source: "./media/characters/deerpuff/standing.svg",
  2840. extra: 682 / 624
  2841. }
  2842. },
  2843. sitting: {
  2844. height: math.unit(5.75 / 1.79, "feet"),
  2845. weight: math.unit(160, "lbs"),
  2846. name: "Sitting",
  2847. image: {
  2848. source: "./media/characters/deerpuff/sitting.svg",
  2849. bottom: 44 / 400,
  2850. extra: 1
  2851. }
  2852. },
  2853. taurLaying: {
  2854. height: math.unit(6, "feet"),
  2855. weight: math.unit(400, "lbs"),
  2856. name: "Taur (Laying)",
  2857. image: {
  2858. source: "./media/characters/deerpuff/taur-laying.svg"
  2859. }
  2860. },
  2861. },
  2862. [
  2863. {
  2864. name: "Puffball",
  2865. height: math.unit(6, "inches")
  2866. },
  2867. {
  2868. name: "Normalpuff",
  2869. height: math.unit(5.75, "feet")
  2870. },
  2871. {
  2872. name: "Macropuff",
  2873. height: math.unit(1500, "feet"),
  2874. default: true
  2875. },
  2876. {
  2877. name: "Megapuff",
  2878. height: math.unit(500, "miles")
  2879. },
  2880. {
  2881. name: "Gigapuff",
  2882. height: math.unit(250000, "miles")
  2883. },
  2884. {
  2885. name: "Omegapuff",
  2886. height: math.unit(1000, "lightyears")
  2887. },
  2888. ]
  2889. ))
  2890. characterMakers.push(() => makeCharacter(
  2891. { name: "Vivian" },
  2892. {
  2893. stomping: {
  2894. height: math.unit(6, "feet"),
  2895. weight: math.unit(170, "lbs"),
  2896. name: "Stomping",
  2897. image: {
  2898. source: "./media/characters/vivian/stomping.svg"
  2899. }
  2900. },
  2901. sitting: {
  2902. height: math.unit(6 / 1.75, "feet"),
  2903. weight: math.unit(170, "lbs"),
  2904. name: "Sitting",
  2905. image: {
  2906. source: "./media/characters/vivian/sitting.svg",
  2907. bottom: 1 / 6.4,
  2908. extra: 1,
  2909. }
  2910. },
  2911. },
  2912. [
  2913. {
  2914. name: "Normal",
  2915. height: math.unit(7, "feet"),
  2916. default: true
  2917. },
  2918. {
  2919. name: "Macro",
  2920. height: math.unit(10, "stories")
  2921. },
  2922. {
  2923. name: "Macro+",
  2924. height: math.unit(30, "stories")
  2925. },
  2926. {
  2927. name: "Megamacro",
  2928. height: math.unit(10, "miles")
  2929. },
  2930. {
  2931. name: "Megamacro+",
  2932. height: math.unit(2750000, "meters")
  2933. },
  2934. ]
  2935. ))
  2936. characterMakers.push(() => makeCharacter(
  2937. { name: "Prince" },
  2938. {
  2939. front: {
  2940. height: math.unit(6, "feet"),
  2941. weight: math.unit(160, "lbs"),
  2942. name: "Front",
  2943. image: {
  2944. source: "./media/characters/prince/front.svg",
  2945. extra: 3400 / 3000
  2946. }
  2947. },
  2948. jumping: {
  2949. height: math.unit(6, "feet"),
  2950. weight: math.unit(160, "lbs"),
  2951. name: "Jumping",
  2952. image: {
  2953. source: "./media/characters/prince/jump.svg",
  2954. extra: 2555 / 2134
  2955. }
  2956. },
  2957. },
  2958. [
  2959. {
  2960. name: "Normal",
  2961. height: math.unit(7.75, "feet"),
  2962. default: true
  2963. },
  2964. {
  2965. name: "Not cute",
  2966. height: math.unit(17, "feet")
  2967. },
  2968. {
  2969. name: "I said NOT",
  2970. height: math.unit(91, "feet")
  2971. },
  2972. {
  2973. name: "Please stop",
  2974. height: math.unit(560, "feet")
  2975. },
  2976. {
  2977. name: "What have you done",
  2978. height: math.unit(2200, "feet")
  2979. },
  2980. {
  2981. name: "Deer God",
  2982. height: math.unit(3.6, "miles")
  2983. },
  2984. ]
  2985. ))
  2986. characterMakers.push(() => makeCharacter(
  2987. { name: "Psymon" },
  2988. {
  2989. standing: {
  2990. height: math.unit(6, "feet"),
  2991. weight: math.unit(300, "lbs"),
  2992. name: "Standing",
  2993. image: {
  2994. source: "./media/characters/psymon/standing.svg",
  2995. extra: 1888 / 1810,
  2996. bottom: 0.05
  2997. }
  2998. },
  2999. slithering: {
  3000. height: math.unit(6, "feet"),
  3001. weight: math.unit(300, "lbs"),
  3002. name: "Slithering",
  3003. image: {
  3004. source: "./media/characters/psymon/slithering.svg",
  3005. extra: 1330 / 1224
  3006. }
  3007. },
  3008. slitheringAlt: {
  3009. height: math.unit(6, "feet"),
  3010. weight: math.unit(300, "lbs"),
  3011. name: "Slithering (Alt)",
  3012. image: {
  3013. source: "./media/characters/psymon/slithering-alt.svg",
  3014. extra: 1330 / 1224
  3015. }
  3016. },
  3017. },
  3018. [
  3019. {
  3020. name: "Normal",
  3021. height: math.unit(11.25, "feet"),
  3022. default: true
  3023. },
  3024. {
  3025. name: "Large",
  3026. height: math.unit(27, "feet")
  3027. },
  3028. {
  3029. name: "Giant",
  3030. height: math.unit(87, "feet")
  3031. },
  3032. {
  3033. name: "Macro",
  3034. height: math.unit(365, "feet")
  3035. },
  3036. {
  3037. name: "Megamacro",
  3038. height: math.unit(3, "miles")
  3039. },
  3040. {
  3041. name: "World Serpent",
  3042. height: math.unit(8000, "miles")
  3043. },
  3044. ]
  3045. ))
  3046. characterMakers.push(() => makeCharacter(
  3047. { name: "Daimos" },
  3048. {
  3049. front: {
  3050. height: math.unit(6, "feet"),
  3051. weight: math.unit(180, "lbs"),
  3052. name: "Front",
  3053. image: {
  3054. source: "./media/characters/daimos/front.svg",
  3055. extra: 4160 / 3897,
  3056. bottom: 0.021
  3057. }
  3058. }
  3059. },
  3060. [
  3061. {
  3062. name: "Normal",
  3063. height: math.unit(8, "feet"),
  3064. default: true
  3065. },
  3066. {
  3067. name: "Big Dog",
  3068. height: math.unit(22, "feet")
  3069. },
  3070. {
  3071. name: "Macro",
  3072. height: math.unit(127, "feet")
  3073. },
  3074. {
  3075. name: "Megamacro",
  3076. height: math.unit(3600, "feet")
  3077. },
  3078. ]
  3079. ))
  3080. characterMakers.push(() => makeCharacter(
  3081. { name: "Blake" },
  3082. {
  3083. side: {
  3084. height: math.unit(6, "feet"),
  3085. weight: math.unit(180, "lbs"),
  3086. name: "Side",
  3087. image: {
  3088. source: "./media/characters/blake/side.svg",
  3089. extra: 1212 / 1120,
  3090. bottom: 0.05
  3091. }
  3092. },
  3093. crouched: {
  3094. height: math.unit(6 * 0.57, "feet"),
  3095. weight: math.unit(180, "lbs"),
  3096. name: "Crouched",
  3097. image: {
  3098. source: "./media/characters/blake/crouched.svg",
  3099. extra: 840 / 587,
  3100. bottom: 0.04
  3101. }
  3102. },
  3103. bent: {
  3104. height: math.unit(6 * 0.75, "feet"),
  3105. weight: math.unit(180, "lbs"),
  3106. name: "Bent",
  3107. image: {
  3108. source: "./media/characters/blake/bent.svg",
  3109. extra: 592 / 544,
  3110. bottom: 0.035
  3111. }
  3112. },
  3113. },
  3114. [
  3115. {
  3116. name: "Normal",
  3117. height: math.unit(8 + 1 / 6, "feet"),
  3118. default: true
  3119. },
  3120. {
  3121. name: "Big Backside",
  3122. height: math.unit(37, "feet")
  3123. },
  3124. {
  3125. name: "Subway Shredder",
  3126. height: math.unit(72, "feet")
  3127. },
  3128. {
  3129. name: "City Carver",
  3130. height: math.unit(1675, "feet")
  3131. },
  3132. {
  3133. name: "Tectonic Tweaker",
  3134. height: math.unit(2300, "miles")
  3135. },
  3136. ]
  3137. ))
  3138. characterMakers.push(() => makeCharacter(
  3139. { name: "Guisetto" },
  3140. {
  3141. front: {
  3142. height: math.unit(6, "feet"),
  3143. weight: math.unit(180, "lbs"),
  3144. name: "Front",
  3145. image: {
  3146. source: "./media/characters/guisetto/front.svg",
  3147. extra: 856 / 817,
  3148. bottom: 0.06
  3149. }
  3150. },
  3151. airborne: {
  3152. height: math.unit(6, "feet"),
  3153. weight: math.unit(180, "lbs"),
  3154. name: "Airborne",
  3155. image: {
  3156. source: "./media/characters/guisetto/airborne.svg",
  3157. extra: 584 / 525
  3158. }
  3159. },
  3160. },
  3161. [
  3162. {
  3163. name: "Normal",
  3164. height: math.unit(10 + 11 / 12, "feet"),
  3165. default: true
  3166. },
  3167. {
  3168. name: "Large",
  3169. height: math.unit(35, "feet")
  3170. },
  3171. {
  3172. name: "Macro",
  3173. height: math.unit(475, "feet")
  3174. },
  3175. ]
  3176. ))
  3177. characterMakers.push(() => makeCharacter(
  3178. { name: "Luxor" },
  3179. {
  3180. front: {
  3181. height: math.unit(6, "feet"),
  3182. weight: math.unit(180, "lbs"),
  3183. name: "Front",
  3184. image: {
  3185. source: "./media/characters/luxor/front.svg",
  3186. extra: 2940 / 2152
  3187. }
  3188. },
  3189. back: {
  3190. height: math.unit(6, "feet"),
  3191. weight: math.unit(180, "lbs"),
  3192. name: "Back",
  3193. image: {
  3194. source: "./media/characters/luxor/back.svg",
  3195. extra: 1083 / 960
  3196. }
  3197. },
  3198. },
  3199. [
  3200. {
  3201. name: "Normal",
  3202. height: math.unit(5 + 5 / 6, "feet"),
  3203. default: true
  3204. },
  3205. {
  3206. name: "Lamp",
  3207. height: math.unit(50, "feet")
  3208. },
  3209. {
  3210. name: "Lämp",
  3211. height: math.unit(300, "feet")
  3212. },
  3213. {
  3214. name: "The sun is a lamp",
  3215. height: math.unit(250000, "miles")
  3216. },
  3217. ]
  3218. ))
  3219. characterMakers.push(() => makeCharacter(
  3220. { name: "Huoyan" },
  3221. {
  3222. front: {
  3223. height: math.unit(6, "feet"),
  3224. weight: math.unit(50, "lbs"),
  3225. name: "Front",
  3226. image: {
  3227. source: "./media/characters/huoyan/front.svg"
  3228. }
  3229. },
  3230. side: {
  3231. height: math.unit(6, "feet"),
  3232. weight: math.unit(180, "lbs"),
  3233. name: "Side",
  3234. image: {
  3235. source: "./media/characters/huoyan/side.svg"
  3236. }
  3237. },
  3238. },
  3239. [
  3240. {
  3241. name: "Chef",
  3242. height: math.unit(9, "feet")
  3243. },
  3244. {
  3245. name: "Normal",
  3246. height: math.unit(65, "feet"),
  3247. default: true
  3248. },
  3249. {
  3250. name: "Macro",
  3251. height: math.unit(780, "feet")
  3252. },
  3253. {
  3254. name: "Flaming Mountain",
  3255. height: math.unit(4.8, "miles")
  3256. },
  3257. {
  3258. name: "Celestial",
  3259. height: math.unit(765000, "miles")
  3260. },
  3261. ]
  3262. ))
  3263. characterMakers.push(() => makeCharacter(
  3264. { name: "Tails" },
  3265. {
  3266. front: {
  3267. height: math.unit(5 + 3 / 4, "feet"),
  3268. weight: math.unit(120, "lbs"),
  3269. name: "Front",
  3270. image: {
  3271. source: "./media/characters/tails/front.svg"
  3272. }
  3273. }
  3274. },
  3275. [
  3276. {
  3277. name: "Normal",
  3278. height: math.unit(5 + 3 / 4, "feet"),
  3279. default: true
  3280. }
  3281. ]
  3282. ))
  3283. characterMakers.push(() => makeCharacter(
  3284. { name: "Rainy" },
  3285. {
  3286. front: {
  3287. height: math.unit(4, "feet"),
  3288. weight: math.unit(50, "lbs"),
  3289. name: "Front",
  3290. image: {
  3291. source: "./media/characters/rainy/front.svg"
  3292. }
  3293. }
  3294. },
  3295. [
  3296. {
  3297. name: "Macro",
  3298. height: math.unit(800, "feet"),
  3299. default: true
  3300. }
  3301. ]
  3302. ))
  3303. characterMakers.push(() => makeCharacter(
  3304. { name: "Rainier" },
  3305. {
  3306. front: {
  3307. height: math.unit(6, "feet"),
  3308. weight: math.unit(150, "lbs"),
  3309. name: "Front",
  3310. image: {
  3311. source: "./media/characters/rainier/front.svg"
  3312. }
  3313. }
  3314. },
  3315. [
  3316. {
  3317. name: "Micro",
  3318. height: math.unit(2, "mm"),
  3319. default: true
  3320. }
  3321. ]
  3322. ))
  3323. characterMakers.push(() => makeCharacter(
  3324. { name: "Andy" },
  3325. {
  3326. front: {
  3327. height: math.unit(6, "feet"),
  3328. weight: math.unit(180, "lbs"),
  3329. name: "Front",
  3330. image: {
  3331. source: "./media/characters/andy/front.svg"
  3332. }
  3333. }
  3334. },
  3335. [
  3336. {
  3337. name: "Normal",
  3338. height: math.unit(8, "feet"),
  3339. default: true
  3340. },
  3341. {
  3342. name: "Macro",
  3343. height: math.unit(1000, "feet")
  3344. },
  3345. {
  3346. name: "Megamacro",
  3347. height: math.unit(5, "miles")
  3348. },
  3349. {
  3350. name: "Gigamacro",
  3351. height: math.unit(5000, "miles")
  3352. },
  3353. ]
  3354. ))
  3355. characterMakers.push(() => makeCharacter(
  3356. { name: "Cimmaron" },
  3357. {
  3358. frontClothed: {
  3359. height: math.unit(6, "feet"),
  3360. weight: math.unit(210, "lbs"),
  3361. name: "Front (Clothed)",
  3362. image: {
  3363. source: "./media/characters/cimmaron/front-clothed.svg",
  3364. extra: 701 / 676,
  3365. bottom: 0.046
  3366. }
  3367. },
  3368. backClothed: {
  3369. height: math.unit(6, "feet"),
  3370. weight: math.unit(210, "lbs"),
  3371. name: "Back (Clothed)",
  3372. image: {
  3373. source: "./media/characters/cimmaron/back-clothed.svg",
  3374. extra: 701 / 676,
  3375. bottom: 0.046
  3376. }
  3377. },
  3378. frontNude: {
  3379. height: math.unit(6, "feet"),
  3380. weight: math.unit(210, "lbs"),
  3381. name: "Front (Nude)",
  3382. image: {
  3383. source: "./media/characters/cimmaron/front-nude.svg",
  3384. extra: 701 / 676,
  3385. bottom: 0.046
  3386. }
  3387. },
  3388. backNude: {
  3389. height: math.unit(6, "feet"),
  3390. weight: math.unit(210, "lbs"),
  3391. name: "Back (Nude)",
  3392. image: {
  3393. source: "./media/characters/cimmaron/back-nude.svg",
  3394. extra: 701 / 676,
  3395. bottom: 0.046
  3396. }
  3397. }
  3398. },
  3399. [
  3400. {
  3401. name: "Normal",
  3402. height: math.unit(6, "feet"),
  3403. default: true
  3404. },
  3405. {
  3406. name: "Macro Mayor",
  3407. height: math.unit(350, "meters")
  3408. },
  3409. ]
  3410. ))
  3411. characterMakers.push(() => makeCharacter(
  3412. { name: "Akari Kaen" },
  3413. {
  3414. front: {
  3415. height: math.unit(6, "feet"),
  3416. weight: math.unit(200, "lbs"),
  3417. name: "Front",
  3418. image: {
  3419. source: "./media/characters/akari/front.svg",
  3420. extra: 962 / 901,
  3421. bottom: 0.04
  3422. }
  3423. }
  3424. },
  3425. [
  3426. {
  3427. name: "Micro",
  3428. height: math.unit(5, "inches"),
  3429. default: true
  3430. },
  3431. {
  3432. name: "Normal",
  3433. height: math.unit(7, "feet")
  3434. },
  3435. ]
  3436. ))
  3437. characterMakers.push(() => makeCharacter(
  3438. { name: "Cynosura" },
  3439. {
  3440. front: {
  3441. height: math.unit(6, "feet"),
  3442. weight: math.unit(140, "lbs"),
  3443. name: "Front",
  3444. image: {
  3445. source: "./media/characters/cynosura/front.svg",
  3446. extra: 896 / 847
  3447. }
  3448. },
  3449. back: {
  3450. height: math.unit(6, "feet"),
  3451. weight: math.unit(140, "lbs"),
  3452. name: "Back",
  3453. image: {
  3454. source: "./media/characters/cynosura/back.svg",
  3455. extra: 1365 / 1250
  3456. }
  3457. },
  3458. },
  3459. [
  3460. {
  3461. name: "Micro",
  3462. height: math.unit(4, "inches")
  3463. },
  3464. {
  3465. name: "Normal",
  3466. height: math.unit(5.75, "feet"),
  3467. default: true
  3468. },
  3469. {
  3470. name: "Tall",
  3471. height: math.unit(10, "feet")
  3472. },
  3473. {
  3474. name: "Big",
  3475. height: math.unit(20, "feet")
  3476. },
  3477. {
  3478. name: "Macro",
  3479. height: math.unit(50, "feet")
  3480. },
  3481. ]
  3482. ))
  3483. characterMakers.push(() => makeCharacter(
  3484. { name: "Gin" },
  3485. {
  3486. front: {
  3487. height: math.unit(6, "feet"),
  3488. weight: math.unit(170, "lbs"),
  3489. name: "Front",
  3490. image: {
  3491. source: "./media/characters/gin/front.svg",
  3492. extra: 1.053,
  3493. bottom: 0.025
  3494. }
  3495. },
  3496. foot: {
  3497. height: math.unit(6 / 4.25, "feet"),
  3498. name: "Foot",
  3499. image: {
  3500. source: "./media/characters/gin/foot.svg"
  3501. }
  3502. },
  3503. sole: {
  3504. height: math.unit(6 / 4.40, "feet"),
  3505. name: "Sole",
  3506. image: {
  3507. source: "./media/characters/gin/sole.svg"
  3508. }
  3509. },
  3510. },
  3511. [
  3512. {
  3513. name: "Normal",
  3514. height: math.unit(9 + 4 / 12, "feet")
  3515. },
  3516. {
  3517. name: "Macro",
  3518. height: math.unit(1500, "feet")
  3519. },
  3520. {
  3521. name: "Megamacro",
  3522. height: math.unit(200, "miles"),
  3523. default: true
  3524. },
  3525. {
  3526. name: "Gigamacro",
  3527. height: math.unit(500, "megameters")
  3528. },
  3529. {
  3530. name: "Teramacro",
  3531. height: math.unit(15, "lightyears")
  3532. }
  3533. ]
  3534. ))
  3535. characterMakers.push(() => makeCharacter(
  3536. { name: "Guy" },
  3537. {
  3538. front: {
  3539. height: math.unit(6 + 1 / 6, "feet"),
  3540. weight: math.unit(178, "lbs"),
  3541. name: "Front",
  3542. image: {
  3543. source: "./media/characters/guy/front.svg"
  3544. }
  3545. }
  3546. },
  3547. [
  3548. {
  3549. name: "Normal",
  3550. height: math.unit(6 + 1 / 6, "feet"),
  3551. default: true
  3552. },
  3553. {
  3554. name: "Large",
  3555. height: math.unit(25 + 7 / 12, "feet")
  3556. },
  3557. {
  3558. name: "Macro",
  3559. height: math.unit(60 + 9 / 12, "feet")
  3560. },
  3561. {
  3562. name: "Macro+",
  3563. height: math.unit(246, "feet")
  3564. },
  3565. {
  3566. name: "Macro++",
  3567. height: math.unit(878, "feet")
  3568. }
  3569. ]
  3570. ))
  3571. characterMakers.push(() => makeCharacter(
  3572. { name: "Tiberius" },
  3573. {
  3574. front: {
  3575. height: math.unit(9, "feet"),
  3576. weight: math.unit(800, "lbs"),
  3577. name: "Front",
  3578. image: {
  3579. source: "./media/characters/tiberius/front.svg",
  3580. extra: 2295 / 2071
  3581. }
  3582. },
  3583. back: {
  3584. height: math.unit(9, "feet"),
  3585. weight: math.unit(800, "lbs"),
  3586. name: "Back",
  3587. image: {
  3588. source: "./media/characters/tiberius/back.svg",
  3589. extra: 2373 / 2160
  3590. }
  3591. },
  3592. },
  3593. [
  3594. {
  3595. name: "Normal",
  3596. height: math.unit(9, "feet"),
  3597. default: true
  3598. }
  3599. ]
  3600. ))
  3601. characterMakers.push(() => makeCharacter(
  3602. { name: "Surgo" },
  3603. {
  3604. front: {
  3605. height: math.unit(6, "feet"),
  3606. weight: math.unit(600, "lbs"),
  3607. name: "Front",
  3608. image: {
  3609. source: "./media/characters/surgo/front.svg",
  3610. extra: 3591 / 2227
  3611. }
  3612. },
  3613. back: {
  3614. height: math.unit(6, "feet"),
  3615. weight: math.unit(600, "lbs"),
  3616. name: "Back",
  3617. image: {
  3618. source: "./media/characters/surgo/back.svg",
  3619. extra: 3557 / 2228
  3620. }
  3621. },
  3622. laying: {
  3623. height: math.unit(6 * 0.85, "feet"),
  3624. weight: math.unit(600, "lbs"),
  3625. name: "Laying",
  3626. image: {
  3627. source: "./media/characters/surgo/laying.svg"
  3628. }
  3629. },
  3630. },
  3631. [
  3632. {
  3633. name: "Normal",
  3634. height: math.unit(6, "feet"),
  3635. default: true
  3636. }
  3637. ]
  3638. ))
  3639. characterMakers.push(() => makeCharacter(
  3640. { name: "Cibus" },
  3641. {
  3642. side: {
  3643. height: math.unit(6, "feet"),
  3644. weight: math.unit(150, "lbs"),
  3645. name: "Side",
  3646. image: {
  3647. source: "./media/characters/cibus/side.svg",
  3648. extra: 800 / 400
  3649. }
  3650. },
  3651. },
  3652. [
  3653. {
  3654. name: "Normal",
  3655. height: math.unit(6, "feet"),
  3656. default: true
  3657. }
  3658. ]
  3659. ))
  3660. characterMakers.push(() => makeCharacter(
  3661. { name: "Nibbles" },
  3662. {
  3663. front: {
  3664. height: math.unit(6, "feet"),
  3665. weight: math.unit(240, "lbs"),
  3666. name: "Front",
  3667. image: {
  3668. source: "./media/characters/nibbles/front.svg"
  3669. }
  3670. },
  3671. side: {
  3672. height: math.unit(6, "feet"),
  3673. weight: math.unit(240, "lbs"),
  3674. name: "Side",
  3675. image: {
  3676. source: "./media/characters/nibbles/side.svg"
  3677. }
  3678. },
  3679. },
  3680. [
  3681. {
  3682. name: "Normal",
  3683. height: math.unit(9, "feet"),
  3684. default: true
  3685. }
  3686. ]
  3687. ))
  3688. characterMakers.push(() => makeCharacter(
  3689. { name: "Rikky" },
  3690. {
  3691. side: {
  3692. height: math.unit(5 + 1 / 6, "feet"),
  3693. weight: math.unit(130, "lbs"),
  3694. name: "Side",
  3695. image: {
  3696. source: "./media/characters/rikky/side.svg"
  3697. }
  3698. },
  3699. },
  3700. [
  3701. {
  3702. name: "Normal",
  3703. height: math.unit(5 + 1 / 6, "feet")
  3704. },
  3705. {
  3706. name: "Macro",
  3707. height: math.unit(152, "feet"),
  3708. default: true
  3709. },
  3710. {
  3711. name: "Megamacro",
  3712. height: math.unit(7, "miles")
  3713. }
  3714. ]
  3715. ))
  3716. characterMakers.push(() => makeCharacter(
  3717. { name: "Malfressa" },
  3718. {
  3719. side: {
  3720. height: math.unit(370, "cm"),
  3721. weight: math.unit(350, "lbs"),
  3722. name: "Side",
  3723. image: {
  3724. source: "./media/characters/malfressa/side.svg"
  3725. }
  3726. },
  3727. walking: {
  3728. height: math.unit(370, "cm"),
  3729. weight: math.unit(350, "lbs"),
  3730. name: "Walking",
  3731. image: {
  3732. source: "./media/characters/malfressa/walking.svg"
  3733. }
  3734. },
  3735. feral: {
  3736. height: math.unit(2500, "cm"),
  3737. weight: math.unit(100000, "lbs"),
  3738. name: "Feral",
  3739. image: {
  3740. source: "./media/characters/malfressa/feral.svg",
  3741. extra: 2108 / 837,
  3742. bottom: 0.02
  3743. }
  3744. },
  3745. },
  3746. [
  3747. {
  3748. name: "Normal",
  3749. height: math.unit(370, "cm")
  3750. },
  3751. {
  3752. name: "Macro",
  3753. height: math.unit(300, "meters"),
  3754. default: true
  3755. }
  3756. ]
  3757. ))
  3758. characterMakers.push(() => makeCharacter(
  3759. { name: "Jaro" },
  3760. {
  3761. front: {
  3762. height: math.unit(6, "feet"),
  3763. weight: math.unit(60, "kg"),
  3764. name: "Front",
  3765. image: {
  3766. source: "./media/characters/jaro/front.svg"
  3767. }
  3768. },
  3769. back: {
  3770. height: math.unit(6, "feet"),
  3771. weight: math.unit(60, "kg"),
  3772. name: "Back",
  3773. image: {
  3774. source: "./media/characters/jaro/back.svg"
  3775. }
  3776. },
  3777. },
  3778. [
  3779. {
  3780. name: "Micro",
  3781. height: math.unit(7, "inches")
  3782. },
  3783. {
  3784. name: "Normal",
  3785. height: math.unit(5.5, "feet"),
  3786. default: true
  3787. },
  3788. {
  3789. name: "Minimacro",
  3790. height: math.unit(20, "feet")
  3791. },
  3792. {
  3793. name: "Macro",
  3794. height: math.unit(200, "meters")
  3795. }
  3796. ]
  3797. ))
  3798. characterMakers.push(() => makeCharacter(
  3799. { name: "Rogue" },
  3800. {
  3801. front: {
  3802. height: math.unit(6, "feet"),
  3803. weight: math.unit(195, "lb"),
  3804. name: "Front",
  3805. image: {
  3806. source: "./media/characters/rogue/front.svg"
  3807. }
  3808. },
  3809. },
  3810. [
  3811. {
  3812. name: "Macro",
  3813. height: math.unit(90, "feet"),
  3814. default: true
  3815. },
  3816. ]
  3817. ))
  3818. characterMakers.push(() => makeCharacter(
  3819. { name: "Piper" },
  3820. {
  3821. front: {
  3822. height: math.unit(5 + 8 / 12, "feet"),
  3823. weight: math.unit(140, "lb"),
  3824. name: "Front",
  3825. image: {
  3826. source: "./media/characters/piper/front.svg",
  3827. extra: 3928 / 3681
  3828. }
  3829. },
  3830. },
  3831. [
  3832. {
  3833. name: "Micro",
  3834. height: math.unit(2, "inches")
  3835. },
  3836. {
  3837. name: "Normal",
  3838. height: math.unit(5 + 8 / 12, "feet")
  3839. },
  3840. {
  3841. name: "Macro",
  3842. height: math.unit(250, "feet"),
  3843. default: true
  3844. },
  3845. {
  3846. name: "Megamacro",
  3847. height: math.unit(7, "miles")
  3848. },
  3849. ]
  3850. ))
  3851. characterMakers.push(() => makeCharacter(
  3852. { name: "Gemini" },
  3853. {
  3854. front: {
  3855. height: math.unit(6, "feet"),
  3856. weight: math.unit(220, "lb"),
  3857. name: "Front",
  3858. image: {
  3859. source: "./media/characters/gemini/front.svg"
  3860. }
  3861. },
  3862. back: {
  3863. height: math.unit(6, "feet"),
  3864. weight: math.unit(220, "lb"),
  3865. name: "Back",
  3866. image: {
  3867. source: "./media/characters/gemini/back.svg"
  3868. }
  3869. },
  3870. kneeling: {
  3871. height: math.unit(6 / 1.5, "feet"),
  3872. weight: math.unit(220, "lb"),
  3873. name: "Kneeling",
  3874. image: {
  3875. source: "./media/characters/gemini/kneeling.svg",
  3876. bottom: 0.02
  3877. }
  3878. },
  3879. },
  3880. [
  3881. {
  3882. name: "Macro",
  3883. height: math.unit(300, "meters"),
  3884. default: true
  3885. },
  3886. {
  3887. name: "Megamacro",
  3888. height: math.unit(6900, "meters")
  3889. },
  3890. ]
  3891. ))
  3892. characterMakers.push(() => makeCharacter(
  3893. { name: "Alicia" },
  3894. {
  3895. anthro: {
  3896. height: math.unit(2.35, "meters"),
  3897. weight: math.unit(73, "kg"),
  3898. name: "Anthro",
  3899. image: {
  3900. source: "./media/characters/alicia/anthro.svg"
  3901. }
  3902. },
  3903. feral: {
  3904. height: math.unit(1.69, "meters"),
  3905. weight: math.unit(73, "kg"),
  3906. name: "Feral",
  3907. image: {
  3908. source: "./media/characters/alicia/feral.svg"
  3909. }
  3910. },
  3911. },
  3912. [
  3913. {
  3914. name: "Normal",
  3915. height: math.unit(2.35, "meters")
  3916. },
  3917. {
  3918. name: "Macro",
  3919. height: math.unit(60, "meters"),
  3920. default: true
  3921. },
  3922. {
  3923. name: "Megamacro",
  3924. height: math.unit(10000, "kilometers")
  3925. },
  3926. ]
  3927. ))
  3928. characterMakers.push(() => makeCharacter(
  3929. { name: "Archy" },
  3930. {
  3931. front: {
  3932. height: math.unit(7, "feet"),
  3933. weight: math.unit(250, "lbs"),
  3934. name: "Front",
  3935. image: {
  3936. source: "./media/characters/archy/front.svg"
  3937. }
  3938. }
  3939. },
  3940. [
  3941. {
  3942. name: "Micro",
  3943. height: math.unit(1, "inch")
  3944. },
  3945. {
  3946. name: "Shorty",
  3947. height: math.unit(5, "feet")
  3948. },
  3949. {
  3950. name: "Normal",
  3951. height: math.unit(7, "feet")
  3952. },
  3953. {
  3954. name: "Macro",
  3955. height: math.unit(600, "meters"),
  3956. default: true
  3957. },
  3958. {
  3959. name: "Megamacro",
  3960. height: math.unit(1, "mile")
  3961. },
  3962. ]
  3963. ))
  3964. characterMakers.push(() => makeCharacter(
  3965. { name: "Berri" },
  3966. {
  3967. front: {
  3968. height: math.unit(1.65, "meters"),
  3969. weight: math.unit(74, "kg"),
  3970. name: "Front",
  3971. image: {
  3972. source: "./media/characters/berri/front.svg"
  3973. }
  3974. }
  3975. },
  3976. [
  3977. {
  3978. name: "Normal",
  3979. height: math.unit(1.65, "meters")
  3980. },
  3981. {
  3982. name: "Macro",
  3983. height: math.unit(60, "m"),
  3984. default: true
  3985. },
  3986. {
  3987. name: "Megamacro",
  3988. height: math.unit(9.213, "km")
  3989. },
  3990. {
  3991. name: "Planet Eater",
  3992. height: math.unit(489, "megameters")
  3993. },
  3994. {
  3995. name: "Teramacro",
  3996. height: math.unit(2471635000000, "meters")
  3997. },
  3998. {
  3999. name: "Examacro",
  4000. height: math.unit(8.0624e+26, "meters")
  4001. }
  4002. ]
  4003. ))
  4004. characterMakers.push(() => makeCharacter(
  4005. { name: "Lexi" },
  4006. {
  4007. front: {
  4008. height: math.unit(1.72, "meters"),
  4009. weight: math.unit(68, "kg"),
  4010. name: "Front",
  4011. image: {
  4012. source: "./media/characters/lexi/front.svg"
  4013. }
  4014. }
  4015. },
  4016. [
  4017. {
  4018. name: "Very Smol",
  4019. height: math.unit(10, "mm")
  4020. },
  4021. {
  4022. name: "Micro",
  4023. height: math.unit(6.8, "cm"),
  4024. default: true
  4025. },
  4026. {
  4027. name: "Normal",
  4028. height: math.unit(1.72, "m")
  4029. }
  4030. ]
  4031. ))
  4032. characterMakers.push(() => makeCharacter(
  4033. { name: "Martin" },
  4034. {
  4035. front: {
  4036. height: math.unit(1.69, "meters"),
  4037. weight: math.unit(68, "kg"),
  4038. name: "Front",
  4039. image: {
  4040. source: "./media/characters/martin/front.svg",
  4041. extra: 596 / 581
  4042. }
  4043. }
  4044. },
  4045. [
  4046. {
  4047. name: "Micro",
  4048. height: math.unit(6.85, "cm"),
  4049. default: true
  4050. },
  4051. {
  4052. name: "Normal",
  4053. height: math.unit(1.69, "m")
  4054. }
  4055. ]
  4056. ))
  4057. characterMakers.push(() => makeCharacter(
  4058. { name: "Juno" },
  4059. {
  4060. front: {
  4061. height: math.unit(1.69, "meters"),
  4062. weight: math.unit(68, "kg"),
  4063. name: "Front",
  4064. image: {
  4065. source: "./media/characters/juno/front.svg"
  4066. }
  4067. }
  4068. },
  4069. [
  4070. {
  4071. name: "Micro",
  4072. height: math.unit(7, "cm")
  4073. },
  4074. {
  4075. name: "Normal",
  4076. height: math.unit(1.89, "m")
  4077. },
  4078. {
  4079. name: "Macro",
  4080. height: math.unit(353, "meters"),
  4081. default: true
  4082. }
  4083. ]
  4084. ))
  4085. characterMakers.push(() => makeCharacter(
  4086. { name: "Samantha" },
  4087. {
  4088. front: {
  4089. height: math.unit(1.93, "meters"),
  4090. weight: math.unit(83, "kg"),
  4091. name: "Front",
  4092. image: {
  4093. source: "./media/characters/samantha/front.svg"
  4094. }
  4095. },
  4096. frontClothed: {
  4097. height: math.unit(1.93, "meters"),
  4098. weight: math.unit(83, "kg"),
  4099. name: "Front (Clothed)",
  4100. image: {
  4101. source: "./media/characters/samantha/front-clothed.svg"
  4102. }
  4103. },
  4104. back: {
  4105. height: math.unit(1.93, "meters"),
  4106. weight: math.unit(83, "kg"),
  4107. name: "Back",
  4108. image: {
  4109. source: "./media/characters/samantha/back.svg"
  4110. }
  4111. },
  4112. },
  4113. [
  4114. {
  4115. name: "Normal",
  4116. height: math.unit(1.93, "m")
  4117. },
  4118. {
  4119. name: "Macro",
  4120. height: math.unit(74, "meters"),
  4121. default: true
  4122. },
  4123. {
  4124. name: "Macro+",
  4125. height: math.unit(223, "meters"),
  4126. },
  4127. {
  4128. name: "Megamacro",
  4129. height: math.unit(8381, "meters"),
  4130. },
  4131. {
  4132. name: "Megamacro+",
  4133. height: math.unit(12000, "kilometers")
  4134. },
  4135. ]
  4136. ))
  4137. characterMakers.push(() => makeCharacter(
  4138. { name: "Dr. Clay" },
  4139. {
  4140. front: {
  4141. height: math.unit(1.92, "meters"),
  4142. weight: math.unit(80, "kg"),
  4143. name: "Front",
  4144. image: {
  4145. source: "./media/characters/dr-clay/front.svg"
  4146. }
  4147. },
  4148. frontClothed: {
  4149. height: math.unit(1.92, "meters"),
  4150. weight: math.unit(80, "kg"),
  4151. name: "Front (Clothed)",
  4152. image: {
  4153. source: "./media/characters/dr-clay/front-clothed.svg"
  4154. }
  4155. }
  4156. },
  4157. [
  4158. {
  4159. name: "Normal",
  4160. height: math.unit(1.92, "m")
  4161. },
  4162. {
  4163. name: "Macro",
  4164. height: math.unit(214, "meters"),
  4165. default: true
  4166. },
  4167. {
  4168. name: "Macro+",
  4169. height: math.unit(12.237, "meters"),
  4170. },
  4171. {
  4172. name: "Megamacro",
  4173. height: math.unit(557, "megameters"),
  4174. },
  4175. {
  4176. name: "Unimaginable",
  4177. height: math.unit(120e9, "lightyears")
  4178. },
  4179. ]
  4180. ))
  4181. characterMakers.push(() => makeCharacter(
  4182. { name: "Wyvrn Ripsnarl" },
  4183. {
  4184. front: {
  4185. height: math.unit(2, "meters"),
  4186. weight: math.unit(80, "kg"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4190. }
  4191. }
  4192. },
  4193. [
  4194. {
  4195. name: "Teramacro",
  4196. height: math.unit(500000, "lightyears"),
  4197. default: true
  4198. },
  4199. ]
  4200. ))
  4201. characterMakers.push(() => makeCharacter(
  4202. { name: "Vemus" },
  4203. {
  4204. front: {
  4205. height: math.unit(2, "meters"),
  4206. weight: math.unit(150, "kg"),
  4207. name: "Front",
  4208. image: {
  4209. source: "./media/characters/vemus/front.svg",
  4210. extra: 2384 / 2084,
  4211. bottom: 0.0123
  4212. }
  4213. }
  4214. },
  4215. [
  4216. {
  4217. name: "Normal",
  4218. height: math.unit(3.75, "meters"),
  4219. default: true
  4220. },
  4221. {
  4222. name: "Big",
  4223. height: math.unit(8, "meters")
  4224. },
  4225. {
  4226. name: "Macro",
  4227. height: math.unit(100, "meters")
  4228. },
  4229. {
  4230. name: "Macro+",
  4231. height: math.unit(1500, "meters")
  4232. },
  4233. {
  4234. name: "Stellar",
  4235. height: math.unit(14e8, "meters")
  4236. },
  4237. ]
  4238. ))
  4239. characterMakers.push(() => makeCharacter(
  4240. { name: "Beherit" },
  4241. {
  4242. front: {
  4243. height: math.unit(2, "meters"),
  4244. weight: math.unit(70, "kg"),
  4245. name: "Front",
  4246. image: {
  4247. source: "./media/characters/beherit/front.svg",
  4248. extra: 1408 / 1242
  4249. }
  4250. }
  4251. },
  4252. [
  4253. {
  4254. name: "Normal",
  4255. height: math.unit(6, "feet")
  4256. },
  4257. {
  4258. name: "Lorg",
  4259. height: math.unit(25, "feet"),
  4260. default: true
  4261. },
  4262. {
  4263. name: "Lorger",
  4264. height: math.unit(75, "feet")
  4265. },
  4266. {
  4267. name: "Macro",
  4268. height: math.unit(200, "meters")
  4269. },
  4270. ]
  4271. ))
  4272. characterMakers.push(() => makeCharacter(
  4273. { name: "Everett" },
  4274. {
  4275. front: {
  4276. height: math.unit(2, "meters"),
  4277. weight: math.unit(150, "kg"),
  4278. name: "Front",
  4279. image: {
  4280. source: "./media/characters/everett/front.svg",
  4281. extra: 2038 / 1737,
  4282. bottom: 0.03
  4283. }
  4284. },
  4285. paw: {
  4286. height: math.unit(2 / 3.6, "meters"),
  4287. name: "Paw",
  4288. image: {
  4289. source: "./media/characters/everett/paw.svg"
  4290. }
  4291. },
  4292. },
  4293. [
  4294. {
  4295. name: "Normal",
  4296. height: math.unit(15, "feet"),
  4297. default: true
  4298. },
  4299. {
  4300. name: "Lorg",
  4301. height: math.unit(70, "feet"),
  4302. default: true
  4303. },
  4304. {
  4305. name: "Lorger",
  4306. height: math.unit(250, "feet")
  4307. },
  4308. {
  4309. name: "Macro",
  4310. height: math.unit(500, "meters")
  4311. },
  4312. ]
  4313. ))
  4314. characterMakers.push(() => makeCharacter(
  4315. { name: "Rose Lion" },
  4316. {
  4317. front: {
  4318. height: math.unit(2, "meters"),
  4319. weight: math.unit(86, "kg"),
  4320. name: "Front",
  4321. image: {
  4322. source: "./media/characters/rose-lion/front.svg"
  4323. }
  4324. },
  4325. bent: {
  4326. height: math.unit(2 / 1.4288, "meters"),
  4327. weight: math.unit(86, "kg"),
  4328. name: "Bent",
  4329. image: {
  4330. source: "./media/characters/rose-lion/bent.svg"
  4331. }
  4332. }
  4333. },
  4334. [
  4335. {
  4336. name: "Mini-Micro",
  4337. height: math.unit(1, "cm")
  4338. },
  4339. {
  4340. name: "Micro",
  4341. height: math.unit(3.5, "inches"),
  4342. default: true
  4343. },
  4344. {
  4345. name: "Normal",
  4346. height: math.unit(6 + 1 / 6, "feet")
  4347. },
  4348. {
  4349. name: "Mini-Macro",
  4350. height: math.unit(9 + 10 / 12, "feet")
  4351. },
  4352. ]
  4353. ))
  4354. characterMakers.push(() => makeCharacter(
  4355. { name: "Regal" },
  4356. {
  4357. front: {
  4358. height: math.unit(2, "meters"),
  4359. weight: math.unit(350, "lbs"),
  4360. name: "Front",
  4361. image: {
  4362. source: "./media/characters/regal/front.svg"
  4363. }
  4364. },
  4365. back: {
  4366. height: math.unit(2, "meters"),
  4367. weight: math.unit(350, "lbs"),
  4368. name: "Back",
  4369. image: {
  4370. source: "./media/characters/regal/back.svg"
  4371. }
  4372. },
  4373. },
  4374. [
  4375. {
  4376. name: "Macro",
  4377. height: math.unit(350, "feet"),
  4378. default: true
  4379. }
  4380. ]
  4381. ))
  4382. characterMakers.push(() => makeCharacter(
  4383. { name: "Opal" },
  4384. {
  4385. front: {
  4386. height: math.unit(4 + 11 / 12, "feet"),
  4387. weight: math.unit(100, "lbs"),
  4388. name: "Front",
  4389. image: {
  4390. source: "./media/characters/opal/front.svg"
  4391. }
  4392. },
  4393. frontAlt: {
  4394. height: math.unit(4 + 11 / 12, "feet"),
  4395. weight: math.unit(100, "lbs"),
  4396. name: "Front (Alt)",
  4397. image: {
  4398. source: "./media/characters/opal/front-alt.svg"
  4399. }
  4400. },
  4401. },
  4402. [
  4403. {
  4404. name: "Small",
  4405. height: math.unit(4 + 11 / 12, "feet")
  4406. },
  4407. {
  4408. name: "Normal",
  4409. height: math.unit(20, "feet"),
  4410. default: true
  4411. },
  4412. {
  4413. name: "Macro",
  4414. height: math.unit(120, "feet")
  4415. },
  4416. {
  4417. name: "Megamacro",
  4418. height: math.unit(80, "miles")
  4419. },
  4420. {
  4421. name: "True Size",
  4422. height: math.unit(100000, "lightyears")
  4423. },
  4424. ]
  4425. ))
  4426. characterMakers.push(() => makeCharacter(
  4427. { name: "Vector Wuff" },
  4428. {
  4429. front: {
  4430. height: math.unit(6, "feet"),
  4431. weight: math.unit(200, "lbs"),
  4432. name: "Front",
  4433. image: {
  4434. source: "./media/characters/vector-wuff/front.svg"
  4435. }
  4436. }
  4437. },
  4438. [
  4439. {
  4440. name: "Normal",
  4441. height: math.unit(2.8, "meters")
  4442. },
  4443. {
  4444. name: "Macro",
  4445. height: math.unit(450, "meters"),
  4446. default: true
  4447. },
  4448. {
  4449. name: "Megamacro",
  4450. height: math.unit(15, "kilometers")
  4451. }
  4452. ]
  4453. ))
  4454. characterMakers.push(() => makeCharacter(
  4455. { name: "Dannik" },
  4456. {
  4457. front: {
  4458. height: math.unit(6, "feet"),
  4459. weight: math.unit(256, "lbs"),
  4460. name: "Front",
  4461. image: {
  4462. source: "./media/characters/dannik/front.svg"
  4463. }
  4464. }
  4465. },
  4466. [
  4467. {
  4468. name: "Macro",
  4469. height: math.unit(69.57, "meters"),
  4470. default: true
  4471. },
  4472. ]
  4473. ))
  4474. characterMakers.push(() => makeCharacter(
  4475. { name: "Azura Saharah" },
  4476. {
  4477. front: {
  4478. height: math.unit(6, "feet"),
  4479. weight: math.unit(120, "lbs"),
  4480. name: "Front",
  4481. image: {
  4482. source: "./media/characters/azura-saharah/front.svg"
  4483. }
  4484. },
  4485. back: {
  4486. height: math.unit(6, "feet"),
  4487. weight: math.unit(120, "lbs"),
  4488. name: "Back",
  4489. image: {
  4490. source: "./media/characters/azura-saharah/back.svg"
  4491. }
  4492. },
  4493. },
  4494. [
  4495. {
  4496. name: "Macro",
  4497. height: math.unit(100, "feet"),
  4498. default: true
  4499. },
  4500. ]
  4501. ))
  4502. characterMakers.push(() => makeCharacter(
  4503. { name: "Kennedy" },
  4504. {
  4505. side: {
  4506. height: math.unit(5 + 4 / 12, "feet"),
  4507. weight: math.unit(163, "lbs"),
  4508. name: "Side",
  4509. image: {
  4510. source: "./media/characters/kennedy/side.svg"
  4511. }
  4512. }
  4513. },
  4514. [
  4515. {
  4516. name: "Standard Doggo",
  4517. height: math.unit(5 + 4 / 12, "feet")
  4518. },
  4519. {
  4520. name: "Big Doggo",
  4521. height: math.unit(25 + 3 / 12, "feet"),
  4522. default: true
  4523. },
  4524. ]
  4525. ))
  4526. characterMakers.push(() => makeCharacter(
  4527. { name: "Odi Lunar" },
  4528. {
  4529. front: {
  4530. height: math.unit(6, "feet"),
  4531. weight: math.unit(90, "lbs"),
  4532. name: "Front",
  4533. image: {
  4534. source: "./media/characters/odi-lunar/front.svg"
  4535. }
  4536. }
  4537. },
  4538. [
  4539. {
  4540. name: "Micro",
  4541. height: math.unit(3, "inches"),
  4542. default: true
  4543. },
  4544. {
  4545. name: "Normal",
  4546. height: math.unit(5.5, "feet")
  4547. }
  4548. ]
  4549. ))
  4550. characterMakers.push(() => makeCharacter(
  4551. { name: "Mandake" },
  4552. {
  4553. back: {
  4554. height: math.unit(6, "feet"),
  4555. weight: math.unit(220, "lbs"),
  4556. name: "Back",
  4557. image: {
  4558. source: "./media/characters/mandake/back.svg"
  4559. }
  4560. }
  4561. },
  4562. [
  4563. {
  4564. name: "Normal",
  4565. height: math.unit(7, "feet"),
  4566. default: true
  4567. },
  4568. {
  4569. name: "Macro",
  4570. height: math.unit(78, "feet")
  4571. },
  4572. {
  4573. name: "Macro+",
  4574. height: math.unit(300, "meters")
  4575. },
  4576. {
  4577. name: "Macro++",
  4578. height: math.unit(2400, "feet")
  4579. },
  4580. {
  4581. name: "Megamacro",
  4582. height: math.unit(5167, "meters")
  4583. },
  4584. {
  4585. name: "Gigamacro",
  4586. height: math.unit(41769, "miles")
  4587. },
  4588. ]
  4589. ))
  4590. characterMakers.push(() => makeCharacter(
  4591. { name: "Yozey" },
  4592. {
  4593. front: {
  4594. height: math.unit(6, "feet"),
  4595. weight: math.unit(120, "lbs"),
  4596. name: "Front",
  4597. image: {
  4598. source: "./media/characters/yozey/front.svg"
  4599. }
  4600. },
  4601. frontAlt: {
  4602. height: math.unit(6, "feet"),
  4603. weight: math.unit(120, "lbs"),
  4604. name: "Front (Alt)",
  4605. image: {
  4606. source: "./media/characters/yozey/front-alt.svg"
  4607. }
  4608. },
  4609. side: {
  4610. height: math.unit(6, "feet"),
  4611. weight: math.unit(120, "lbs"),
  4612. name: "Side",
  4613. image: {
  4614. source: "./media/characters/yozey/side.svg"
  4615. }
  4616. },
  4617. },
  4618. [
  4619. {
  4620. name: "Micro",
  4621. height: math.unit(3, "inches"),
  4622. default: true
  4623. },
  4624. {
  4625. name: "Normal",
  4626. height: math.unit(6, "feet")
  4627. }
  4628. ]
  4629. ))
  4630. characterMakers.push(() => makeCharacter(
  4631. { name: "Valeska Voss" },
  4632. {
  4633. front: {
  4634. height: math.unit(6, "feet"),
  4635. weight: math.unit(103, "lbs"),
  4636. name: "Front",
  4637. image: {
  4638. source: "./media/characters/valeska-voss/front.svg"
  4639. }
  4640. }
  4641. },
  4642. [
  4643. {
  4644. name: "Mini-Sized Sub",
  4645. height: math.unit(3.1, "inches")
  4646. },
  4647. {
  4648. name: "Mid-Sized Sub",
  4649. height: math.unit(6.2, "inches")
  4650. },
  4651. {
  4652. name: "Full-Sized Sub",
  4653. height: math.unit(9.3, "inches")
  4654. },
  4655. {
  4656. name: "Normal",
  4657. height: math.unit(5 + 2 / 12, "foot"),
  4658. default: true
  4659. },
  4660. ]
  4661. ))
  4662. characterMakers.push(() => makeCharacter(
  4663. { name: "Gene Zeta" },
  4664. {
  4665. front: {
  4666. height: math.unit(6, "feet"),
  4667. weight: math.unit(160, "lbs"),
  4668. name: "Front",
  4669. image: {
  4670. source: "./media/characters/gene-zeta/front.svg",
  4671. bottom: 0.03,
  4672. extra: 1
  4673. }
  4674. }
  4675. },
  4676. [
  4677. {
  4678. name: "Normal",
  4679. height: math.unit(6.25, "foot"),
  4680. default: true
  4681. },
  4682. ]
  4683. ))
  4684. characterMakers.push(() => makeCharacter(
  4685. { name: "Razinox" },
  4686. {
  4687. front: {
  4688. height: math.unit(6, "feet"),
  4689. weight: math.unit(350, "lbs"),
  4690. name: "Front",
  4691. image: {
  4692. source: "./media/characters/razinox/front.svg",
  4693. extra: 1686 / 1548
  4694. }
  4695. },
  4696. back: {
  4697. height: math.unit(6, "feet"),
  4698. weight: math.unit(350, "lbs"),
  4699. name: "Back",
  4700. image: {
  4701. source: "./media/characters/razinox/back.svg",
  4702. extra: 1660 / 1590
  4703. }
  4704. },
  4705. },
  4706. [
  4707. {
  4708. name: "Normal",
  4709. height: math.unit(10 + 8 / 12, "foot")
  4710. },
  4711. {
  4712. name: "Minimacro",
  4713. height: math.unit(15, "foot")
  4714. },
  4715. {
  4716. name: "Macro",
  4717. height: math.unit(60, "foot"),
  4718. default: true
  4719. },
  4720. {
  4721. name: "Megamacro",
  4722. height: math.unit(5, "miles")
  4723. },
  4724. {
  4725. name: "Gigamacro",
  4726. height: math.unit(6000, "miles")
  4727. },
  4728. ]
  4729. ))
  4730. characterMakers.push(() => makeCharacter(
  4731. { name: "Cobalt" },
  4732. {
  4733. front: {
  4734. height: math.unit(6, "feet"),
  4735. weight: math.unit(150, "lbs"),
  4736. name: "Front",
  4737. image: {
  4738. source: "./media/characters/cobalt/front.svg"
  4739. }
  4740. }
  4741. },
  4742. [
  4743. {
  4744. name: "Normal",
  4745. height: math.unit(8 + 1 / 12, "foot")
  4746. },
  4747. {
  4748. name: "Macro",
  4749. height: math.unit(111, "foot"),
  4750. default: true
  4751. },
  4752. {
  4753. name: "Supracosmic",
  4754. height: math.unit(1e42, "feet")
  4755. },
  4756. ]
  4757. ))
  4758. characterMakers.push(() => makeCharacter(
  4759. { name: "Amanda" },
  4760. {
  4761. front: {
  4762. height: math.unit(6, "feet"),
  4763. weight: math.unit(140, "lbs"),
  4764. name: "Front",
  4765. image: {
  4766. source: "./media/characters/amanda/front.svg"
  4767. }
  4768. }
  4769. },
  4770. [
  4771. {
  4772. name: "Micro",
  4773. height: math.unit(5, "inches"),
  4774. default: true
  4775. },
  4776. ]
  4777. ))
  4778. characterMakers.push(() => makeCharacter(
  4779. { name: "Teal" },
  4780. {
  4781. front: {
  4782. height: math.unit(5.59, "feet"),
  4783. weight: math.unit(250, "lbs"),
  4784. name: "Front",
  4785. image: {
  4786. source: "./media/characters/teal/front.svg"
  4787. }
  4788. },
  4789. frontAlt: {
  4790. height: math.unit(6, "feet"),
  4791. weight: math.unit(250, "lbs"),
  4792. name: "Front (Alt)",
  4793. image: {
  4794. source: "./media/characters/teal/front-alt.svg",
  4795. bottom: 0.04,
  4796. extra: 1
  4797. }
  4798. },
  4799. },
  4800. [
  4801. {
  4802. name: "Normal",
  4803. height: math.unit(12, "feet"),
  4804. default: true
  4805. },
  4806. {
  4807. name: "Macro",
  4808. height: math.unit(300, "feet")
  4809. },
  4810. ]
  4811. ))
  4812. characterMakers.push(() => makeCharacter(
  4813. { name: "Ravin Amulet" },
  4814. {
  4815. frontCat: {
  4816. height: math.unit(6, "feet"),
  4817. weight: math.unit(180, "lbs"),
  4818. name: "Front (Cat)",
  4819. image: {
  4820. source: "./media/characters/ravin-amulet/front-cat.svg"
  4821. }
  4822. },
  4823. frontCatAlt: {
  4824. height: math.unit(6, "feet"),
  4825. weight: math.unit(180, "lbs"),
  4826. name: "Front (Alt, Cat)",
  4827. image: {
  4828. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  4829. }
  4830. },
  4831. frontWerewolf: {
  4832. height: math.unit(6 * 1.2, "feet"),
  4833. weight: math.unit(225, "lbs"),
  4834. name: "Front (Werewolf)",
  4835. image: {
  4836. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  4837. }
  4838. },
  4839. backWerewolf: {
  4840. height: math.unit(6 * 1.2, "feet"),
  4841. weight: math.unit(225, "lbs"),
  4842. name: "Back (Werewolf)",
  4843. image: {
  4844. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  4845. }
  4846. },
  4847. },
  4848. [
  4849. {
  4850. name: "Nano",
  4851. height: math.unit(1, "micrometer")
  4852. },
  4853. {
  4854. name: "Micro",
  4855. height: math.unit(1, "inch")
  4856. },
  4857. {
  4858. name: "Normal",
  4859. height: math.unit(6, "feet"),
  4860. default: true
  4861. },
  4862. {
  4863. name: "Macro",
  4864. height: math.unit(60, "feet")
  4865. }
  4866. ]
  4867. ))
  4868. characterMakers.push(() => makeCharacter(
  4869. { name: "Fluoresce" },
  4870. {
  4871. front: {
  4872. height: math.unit(6, "feet"),
  4873. weight: math.unit(165, "lbs"),
  4874. name: "Front",
  4875. image: {
  4876. source: "./media/characters/fluoresce/front.svg"
  4877. }
  4878. }
  4879. },
  4880. [
  4881. {
  4882. name: "Micro",
  4883. height: math.unit(6, "cm")
  4884. },
  4885. {
  4886. name: "Normal",
  4887. height: math.unit(5 + 7 / 12, "feet"),
  4888. default: true
  4889. },
  4890. {
  4891. name: "Macro",
  4892. height: math.unit(56, "feet")
  4893. },
  4894. {
  4895. name: "Megamacro",
  4896. height: math.unit(1.9, "miles")
  4897. },
  4898. ]
  4899. ))
  4900. characterMakers.push(() => makeCharacter(
  4901. { name: "Aurora" },
  4902. {
  4903. front: {
  4904. height: math.unit(9 + 6 / 12, "feet"),
  4905. weight: math.unit(523, "lbs"),
  4906. name: "Side",
  4907. image: {
  4908. source: "./media/characters/aurora/side.svg"
  4909. }
  4910. }
  4911. },
  4912. [
  4913. {
  4914. name: "Normal",
  4915. height: math.unit(9 + 6 / 12, "feet")
  4916. },
  4917. {
  4918. name: "Macro",
  4919. height: math.unit(96, "feet"),
  4920. default: true
  4921. },
  4922. {
  4923. name: "Macro+",
  4924. height: math.unit(243, "feet")
  4925. },
  4926. ]
  4927. ))
  4928. characterMakers.push(() => makeCharacter(
  4929. { name: "Ranek" },
  4930. {
  4931. front: {
  4932. height: math.unit(194, "cm"),
  4933. weight: math.unit(90, "kg"),
  4934. name: "Front",
  4935. image: {
  4936. source: "./media/characters/ranek/front.svg"
  4937. }
  4938. },
  4939. side: {
  4940. height: math.unit(194, "cm"),
  4941. weight: math.unit(90, "kg"),
  4942. name: "Side",
  4943. image: {
  4944. source: "./media/characters/ranek/side.svg"
  4945. }
  4946. },
  4947. back: {
  4948. height: math.unit(194, "cm"),
  4949. weight: math.unit(90, "kg"),
  4950. name: "Back",
  4951. image: {
  4952. source: "./media/characters/ranek/back.svg"
  4953. }
  4954. },
  4955. feral: {
  4956. height: math.unit(30, "cm"),
  4957. weight: math.unit(1.6, "lbs"),
  4958. name: "Feral",
  4959. image: {
  4960. source: "./media/characters/ranek/feral.svg"
  4961. }
  4962. },
  4963. },
  4964. [
  4965. {
  4966. name: "Normal",
  4967. height: math.unit(194, "cm"),
  4968. default: true
  4969. },
  4970. {
  4971. name: "Macro",
  4972. height: math.unit(100, "meters")
  4973. },
  4974. ]
  4975. ))
  4976. characterMakers.push(() => makeCharacter(
  4977. { name: "Andrew Cooper" },
  4978. {
  4979. front: {
  4980. height: math.unit(5 + 6 / 12, "feet"),
  4981. weight: math.unit(153, "lbs"),
  4982. name: "Front",
  4983. image: {
  4984. source: "./media/characters/andrew-cooper/front.svg"
  4985. }
  4986. },
  4987. },
  4988. [
  4989. {
  4990. name: "Nano",
  4991. height: math.unit(1, "mm")
  4992. },
  4993. {
  4994. name: "Micro",
  4995. height: math.unit(2, "inches")
  4996. },
  4997. {
  4998. name: "Normal",
  4999. height: math.unit(5 + 6 / 12, "feet"),
  5000. default: true
  5001. }
  5002. ]
  5003. ))
  5004. characterMakers.push(() => makeCharacter(
  5005. { name: "Akane Sato" },
  5006. {
  5007. front: {
  5008. height: math.unit(6, "feet"),
  5009. weight: math.unit(180, "lbs"),
  5010. name: "Front",
  5011. image: {
  5012. source: "./media/characters/akane-sato/front.svg",
  5013. extra: 1219 / 1140
  5014. }
  5015. },
  5016. back: {
  5017. height: math.unit(6, "feet"),
  5018. weight: math.unit(180, "lbs"),
  5019. name: "Back",
  5020. image: {
  5021. source: "./media/characters/akane-sato/back.svg",
  5022. extra: 1219 / 1170
  5023. }
  5024. },
  5025. },
  5026. [
  5027. {
  5028. name: "Normal",
  5029. height: math.unit(2.5, "meters")
  5030. },
  5031. {
  5032. name: "Macro",
  5033. height: math.unit(250, "meters"),
  5034. default: true
  5035. },
  5036. {
  5037. name: "Megamacro",
  5038. height: math.unit(25, "km")
  5039. },
  5040. ]
  5041. ))
  5042. characterMakers.push(() => makeCharacter(
  5043. { name: "Rook" },
  5044. {
  5045. front: {
  5046. height: math.unit(6, "feet"),
  5047. weight: math.unit(65, "kg"),
  5048. name: "Front",
  5049. image: {
  5050. source: "./media/characters/rook/front.svg"
  5051. }
  5052. }
  5053. },
  5054. [
  5055. {
  5056. name: "Normal",
  5057. height: math.unit(8.8, "feet")
  5058. },
  5059. {
  5060. name: "Macro",
  5061. height: math.unit(88, "feet"),
  5062. default: true
  5063. },
  5064. {
  5065. name: "Megamacro",
  5066. height: math.unit(8, "miles")
  5067. },
  5068. ]
  5069. ))
  5070. characterMakers.push(() => makeCharacter(
  5071. { name: "Prodigy" },
  5072. {
  5073. front: {
  5074. height: math.unit(12 + 2 / 12, "feet"),
  5075. weight: math.unit(808, "lbs"),
  5076. name: "Front",
  5077. image: {
  5078. source: "./media/characters/prodigy/front.svg"
  5079. }
  5080. }
  5081. },
  5082. [
  5083. {
  5084. name: "Normal",
  5085. height: math.unit(12 + 2 / 12, "feet"),
  5086. default: true
  5087. },
  5088. {
  5089. name: "Macro",
  5090. height: math.unit(143, "feet")
  5091. },
  5092. {
  5093. name: "Macro+",
  5094. height: math.unit(400, "feet")
  5095. },
  5096. ]
  5097. ))
  5098. characterMakers.push(() => makeCharacter(
  5099. { name: "Daniel" },
  5100. {
  5101. front: {
  5102. height: math.unit(6, "feet"),
  5103. weight: math.unit(225, "lbs"),
  5104. name: "Front",
  5105. image: {
  5106. source: "./media/characters/daniel/front.svg"
  5107. }
  5108. },
  5109. leaning: {
  5110. height: math.unit(6, "feet"),
  5111. weight: math.unit(225, "lbs"),
  5112. name: "Leaning",
  5113. image: {
  5114. source: "./media/characters/daniel/leaning.svg"
  5115. }
  5116. },
  5117. },
  5118. [
  5119. {
  5120. name: "Macro",
  5121. height: math.unit(1000, "feet"),
  5122. default: true
  5123. },
  5124. ]
  5125. ))
  5126. characterMakers.push(() => makeCharacter(
  5127. { name: "Chiros" },
  5128. {
  5129. front: {
  5130. height: math.unit(6, "feet"),
  5131. weight: math.unit(88, "lbs"),
  5132. name: "Front",
  5133. image: {
  5134. source: "./media/characters/chiros/front.svg",
  5135. extra: 306 / 226
  5136. }
  5137. },
  5138. side: {
  5139. height: math.unit(6, "feet"),
  5140. weight: math.unit(88, "lbs"),
  5141. name: "Side",
  5142. image: {
  5143. source: "./media/characters/chiros/side.svg",
  5144. extra: 306 / 226
  5145. }
  5146. },
  5147. },
  5148. [
  5149. {
  5150. name: "Normal",
  5151. height: math.unit(6, "cm"),
  5152. default: true
  5153. },
  5154. ]
  5155. ))
  5156. characterMakers.push(() => makeCharacter(
  5157. { name: "Selka" },
  5158. {
  5159. front: {
  5160. height: math.unit(6, "feet"),
  5161. weight: math.unit(100, "lbs"),
  5162. name: "Front",
  5163. image: {
  5164. source: "./media/characters/selka/front.svg",
  5165. extra: 947 / 887
  5166. }
  5167. }
  5168. },
  5169. [
  5170. {
  5171. name: "Normal",
  5172. height: math.unit(5, "cm"),
  5173. default: true
  5174. },
  5175. ]
  5176. ))
  5177. characterMakers.push(() => makeCharacter(
  5178. { name: "Verin" },
  5179. {
  5180. front: {
  5181. height: math.unit(8 + 3 / 12, "feet"),
  5182. weight: math.unit(424, "lbs"),
  5183. name: "Front",
  5184. image: {
  5185. source: "./media/characters/verin/front.svg",
  5186. extra: 1845 / 1550
  5187. }
  5188. },
  5189. frontArmored: {
  5190. height: math.unit(8 + 3 / 12, "feet"),
  5191. weight: math.unit(424, "lbs"),
  5192. name: "Front (Armored)",
  5193. image: {
  5194. source: "./media/characters/verin/front-armor.svg",
  5195. extra: 1845 / 1550,
  5196. bottom: 0.01
  5197. }
  5198. },
  5199. back: {
  5200. height: math.unit(8 + 3 / 12, "feet"),
  5201. weight: math.unit(424, "lbs"),
  5202. name: "Back",
  5203. image: {
  5204. source: "./media/characters/verin/back.svg",
  5205. bottom: 0.1,
  5206. extra: 1
  5207. }
  5208. },
  5209. foot: {
  5210. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5211. name: "Foot",
  5212. image: {
  5213. source: "./media/characters/verin/foot.svg"
  5214. }
  5215. },
  5216. },
  5217. [
  5218. {
  5219. name: "Normal",
  5220. height: math.unit(8 + 3 / 12, "feet")
  5221. },
  5222. {
  5223. name: "Minimacro",
  5224. height: math.unit(21, "feet"),
  5225. default: true
  5226. },
  5227. {
  5228. name: "Macro",
  5229. height: math.unit(626, "feet")
  5230. },
  5231. ]
  5232. ))
  5233. characterMakers.push(() => makeCharacter(
  5234. { name: "Sovrim Terraquian" },
  5235. {
  5236. front: {
  5237. height: math.unit(2.718, "meters"),
  5238. weight: math.unit(150, "lbs"),
  5239. name: "Front",
  5240. image: {
  5241. source: "./media/characters/sovrim-terraquian/front.svg"
  5242. }
  5243. },
  5244. back: {
  5245. height: math.unit(2.718, "meters"),
  5246. weight: math.unit(150, "lbs"),
  5247. name: "Back",
  5248. image: {
  5249. source: "./media/characters/sovrim-terraquian/back.svg"
  5250. }
  5251. }
  5252. },
  5253. [
  5254. {
  5255. name: "Micro",
  5256. height: math.unit(2, "inches")
  5257. },
  5258. {
  5259. name: "Small",
  5260. height: math.unit(1, "meter")
  5261. },
  5262. {
  5263. name: "Normal",
  5264. height: math.unit(Math.E, "meters"),
  5265. default: true
  5266. },
  5267. {
  5268. name: "Macro",
  5269. height: math.unit(20, "meters")
  5270. },
  5271. {
  5272. name: "Macro+",
  5273. height: math.unit(400, "meters")
  5274. },
  5275. ]
  5276. ))
  5277. characterMakers.push(() => makeCharacter(
  5278. { name: "Reece Silvermane" },
  5279. {
  5280. front: {
  5281. height: math.unit(7, "feet"),
  5282. weight: math.unit(489, "lbs"),
  5283. name: "Front",
  5284. image: {
  5285. source: "./media/characters/reece-silvermane/front.svg",
  5286. bottom: 0.02,
  5287. extra: 1
  5288. }
  5289. },
  5290. },
  5291. [
  5292. {
  5293. name: "Macro",
  5294. height: math.unit(1.5, "miles"),
  5295. default: true
  5296. },
  5297. ]
  5298. ))
  5299. characterMakers.push(() => makeCharacter(
  5300. { name: "Kane" },
  5301. {
  5302. front: {
  5303. height: math.unit(6, "feet"),
  5304. weight: math.unit(78, "kg"),
  5305. name: "Front",
  5306. image: {
  5307. source: "./media/characters/kane/front.svg",
  5308. extra: 978 / 899
  5309. }
  5310. },
  5311. },
  5312. [
  5313. {
  5314. name: "Normal",
  5315. height: math.unit(2.1, "m"),
  5316. },
  5317. {
  5318. name: "Macro",
  5319. height: math.unit(1, "km"),
  5320. default: true
  5321. },
  5322. ]
  5323. ))
  5324. characterMakers.push(() => makeCharacter(
  5325. { name: "Tegon" },
  5326. {
  5327. front: {
  5328. height: math.unit(6, "feet"),
  5329. weight: math.unit(200, "kg"),
  5330. name: "Front",
  5331. image: {
  5332. source: "./media/characters/tegon/front.svg",
  5333. bottom: 0.01,
  5334. extra: 1
  5335. }
  5336. },
  5337. },
  5338. [
  5339. {
  5340. name: "Micro",
  5341. height: math.unit(1, "inch")
  5342. },
  5343. {
  5344. name: "Normal",
  5345. height: math.unit(6 + 3 / 12, "feet"),
  5346. default: true
  5347. },
  5348. {
  5349. name: "Macro",
  5350. height: math.unit(300, "feet")
  5351. },
  5352. {
  5353. name: "Megamacro",
  5354. height: math.unit(69, "miles")
  5355. },
  5356. ]
  5357. ))
  5358. characterMakers.push(() => makeCharacter(
  5359. { name: "Arcturax" },
  5360. {
  5361. side: {
  5362. height: math.unit(6, "feet"),
  5363. weight: math.unit(2304, "lbs"),
  5364. name: "Side",
  5365. image: {
  5366. source: "./media/characters/arcturax/side.svg",
  5367. extra: 790 / 376,
  5368. bottom: 0.01
  5369. }
  5370. },
  5371. },
  5372. [
  5373. {
  5374. name: "Micro",
  5375. height: math.unit(2, "inch")
  5376. },
  5377. {
  5378. name: "Normal",
  5379. height: math.unit(6, "feet")
  5380. },
  5381. {
  5382. name: "Macro",
  5383. height: math.unit(39, "feet"),
  5384. default: true
  5385. },
  5386. {
  5387. name: "Megamacro",
  5388. height: math.unit(7, "miles")
  5389. },
  5390. ]
  5391. ))
  5392. characterMakers.push(() => makeCharacter(
  5393. { name: "Sentri" },
  5394. {
  5395. front: {
  5396. height: math.unit(6, "feet"),
  5397. weight: math.unit(50, "lbs"),
  5398. name: "Front",
  5399. image: {
  5400. source: "./media/characters/sentri/front.svg",
  5401. extra: 1750 / 1570,
  5402. bottom: 0.025
  5403. }
  5404. },
  5405. frontAlt: {
  5406. height: math.unit(6, "feet"),
  5407. weight: math.unit(50, "lbs"),
  5408. name: "Front (Alt)",
  5409. image: {
  5410. source: "./media/characters/sentri/front-alt.svg",
  5411. extra: 1750 / 1570,
  5412. bottom: 0.025
  5413. }
  5414. },
  5415. },
  5416. [
  5417. {
  5418. name: "Normal",
  5419. height: math.unit(15, "feet"),
  5420. default: true
  5421. },
  5422. {
  5423. name: "Macro",
  5424. height: math.unit(2500, "feet")
  5425. }
  5426. ]
  5427. ))
  5428. characterMakers.push(() => makeCharacter(
  5429. { name: "Corvin" },
  5430. {
  5431. front: {
  5432. height: math.unit(5 + 8 / 12, "feet"),
  5433. weight: math.unit(130, "lbs"),
  5434. name: "Front",
  5435. image: {
  5436. source: "./media/characters/corvin/front.svg",
  5437. extra: 1803 / 1629
  5438. }
  5439. },
  5440. frontShirt: {
  5441. height: math.unit(5 + 8 / 12, "feet"),
  5442. weight: math.unit(130, "lbs"),
  5443. name: "Front (Shirt)",
  5444. image: {
  5445. source: "./media/characters/corvin/front-shirt.svg",
  5446. extra: 1803 / 1629
  5447. }
  5448. },
  5449. frontPoncho: {
  5450. height: math.unit(5 + 8 / 12, "feet"),
  5451. weight: math.unit(130, "lbs"),
  5452. name: "Front (Poncho)",
  5453. image: {
  5454. source: "./media/characters/corvin/front-poncho.svg",
  5455. extra: 1803 / 1629
  5456. }
  5457. },
  5458. side: {
  5459. height: math.unit(5 + 8 / 12, "feet"),
  5460. weight: math.unit(130, "lbs"),
  5461. name: "Side",
  5462. image: {
  5463. source: "./media/characters/corvin/side.svg",
  5464. extra: 1012 / 945
  5465. }
  5466. },
  5467. back: {
  5468. height: math.unit(5 + 8 / 12, "feet"),
  5469. weight: math.unit(130, "lbs"),
  5470. name: "Back",
  5471. image: {
  5472. source: "./media/characters/corvin/back.svg",
  5473. extra: 1803 / 1629
  5474. }
  5475. },
  5476. },
  5477. [
  5478. {
  5479. name: "Micro",
  5480. height: math.unit(3, "inches")
  5481. },
  5482. {
  5483. name: "Normal",
  5484. height: math.unit(5 + 8 / 12, "feet")
  5485. },
  5486. {
  5487. name: "Macro",
  5488. height: math.unit(300, "feet"),
  5489. default: true
  5490. },
  5491. {
  5492. name: "Megamacro",
  5493. height: math.unit(500, "miles")
  5494. }
  5495. ]
  5496. ))
  5497. characterMakers.push(() => makeCharacter(
  5498. { name: "Q" },
  5499. {
  5500. front: {
  5501. height: math.unit(6, "feet"),
  5502. weight: math.unit(135, "lbs"),
  5503. name: "Front",
  5504. image: {
  5505. source: "./media/characters/q/front.svg",
  5506. extra: 854 / 752,
  5507. bottom: 0.005
  5508. }
  5509. },
  5510. back: {
  5511. height: math.unit(6, "feet"),
  5512. weight: math.unit(130, "lbs"),
  5513. name: "Back",
  5514. image: {
  5515. source: "./media/characters/q/back.svg",
  5516. extra: 854 / 752
  5517. }
  5518. },
  5519. },
  5520. [
  5521. {
  5522. name: "Macro",
  5523. height: math.unit(90, "feet"),
  5524. default: true
  5525. },
  5526. {
  5527. name: "Extra Macro",
  5528. height: math.unit(300, "feet"),
  5529. },
  5530. {
  5531. name: "BIG WALF",
  5532. height: math.unit(750, "feet"),
  5533. },
  5534. ]
  5535. ))
  5536. characterMakers.push(() => makeCharacter(
  5537. { name: "Carley" },
  5538. {
  5539. front: {
  5540. height: math.unit(6, "feet"),
  5541. weight: math.unit(150, "lbs"),
  5542. name: "Front",
  5543. image: {
  5544. source: "./media/characters/carley/front.svg",
  5545. extra: 3927 / 3540,
  5546. bottom: 0.03
  5547. }
  5548. }
  5549. },
  5550. [
  5551. {
  5552. name: "Normal",
  5553. height: math.unit(6 + 3 / 12, "feet")
  5554. },
  5555. {
  5556. name: "Macro",
  5557. height: math.unit(185, "feet"),
  5558. default: true
  5559. },
  5560. {
  5561. name: "Megamacro",
  5562. height: math.unit(8, "miles"),
  5563. },
  5564. ]
  5565. ))
  5566. characterMakers.push(() => makeCharacter(
  5567. { name: "Citrine" },
  5568. {
  5569. front: {
  5570. height: math.unit(3, "feet"),
  5571. weight: math.unit(28, "lbs"),
  5572. name: "Front",
  5573. image: {
  5574. source: "./media/characters/citrine/front.svg"
  5575. }
  5576. }
  5577. },
  5578. [
  5579. {
  5580. name: "Normal",
  5581. height: math.unit(3, "feet"),
  5582. default: true
  5583. }
  5584. ]
  5585. ))
  5586. characterMakers.push(() => makeCharacter(
  5587. { name: "Aura Starwind" },
  5588. {
  5589. front: {
  5590. height: math.unit(14, "feet"),
  5591. weight: math.unit(1450, "kg"),
  5592. name: "Front",
  5593. image: {
  5594. source: "./media/characters/aura-starwind/front.svg",
  5595. extra: 1455 / 1335
  5596. }
  5597. },
  5598. side: {
  5599. height: math.unit(14, "feet"),
  5600. weight: math.unit(1450, "kg"),
  5601. name: "Side",
  5602. image: {
  5603. source: "./media/characters/aura-starwind/side.svg",
  5604. extra: 1654 / 1497
  5605. }
  5606. },
  5607. taur: {
  5608. height: math.unit(18, "feet"),
  5609. weight: math.unit(5500, "kg"),
  5610. name: "Taur",
  5611. image: {
  5612. source: "./media/characters/aura-starwind/taur.svg",
  5613. extra: 1760 / 1650
  5614. }
  5615. },
  5616. feral: {
  5617. height: math.unit(46, "feet"),
  5618. weight: math.unit(25000, "kg"),
  5619. name: "Feral",
  5620. image: {
  5621. source: "./media/characters/aura-starwind/feral.svg"
  5622. }
  5623. },
  5624. },
  5625. [
  5626. {
  5627. name: "Normal",
  5628. height: math.unit(14, "feet"),
  5629. default: true
  5630. },
  5631. {
  5632. name: "Macro",
  5633. height: math.unit(50, "meters")
  5634. },
  5635. {
  5636. name: "Megamacro",
  5637. height: math.unit(5000, "meters")
  5638. },
  5639. {
  5640. name: "Gigamacro",
  5641. height: math.unit(100000, "kilometers")
  5642. },
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Rivet" },
  5647. {
  5648. front: {
  5649. height: math.unit(2 + 7 / 12, "feet"),
  5650. weight: math.unit(32, "lbs"),
  5651. name: "Front",
  5652. image: {
  5653. source: "./media/characters/rivet/front.svg",
  5654. extra: 1716 / 1658,
  5655. bottom: 0.03
  5656. }
  5657. },
  5658. foot: {
  5659. height: math.unit(0.551, "feet"),
  5660. name: "Rivet's Foot",
  5661. image: {
  5662. source: "./media/characters/rivet/foot.svg"
  5663. },
  5664. rename: true
  5665. }
  5666. },
  5667. [
  5668. {
  5669. name: "Micro",
  5670. height: math.unit(1.5, "inches"),
  5671. },
  5672. {
  5673. name: "Normal",
  5674. height: math.unit(2 + 7 / 12, "feet"),
  5675. default: true
  5676. },
  5677. {
  5678. name: "Macro",
  5679. height: math.unit(85, "feet")
  5680. },
  5681. {
  5682. name: "Megamacro",
  5683. height: math.unit(2.2, "km")
  5684. }
  5685. ]
  5686. ))
  5687. characterMakers.push(() => makeCharacter(
  5688. { name: "Coffee" },
  5689. {
  5690. front: {
  5691. height: math.unit(5 + 9 / 12, "feet"),
  5692. weight: math.unit(150, "lbs"),
  5693. name: "Front",
  5694. image: {
  5695. source: "./media/characters/coffee/front.svg",
  5696. extra: 3666 / 3032,
  5697. bottom: 0.04
  5698. }
  5699. },
  5700. foot: {
  5701. height: math.unit(1.29, "feet"),
  5702. name: "Foot",
  5703. image: {
  5704. source: "./media/characters/coffee/foot.svg"
  5705. }
  5706. },
  5707. },
  5708. [
  5709. {
  5710. name: "Micro",
  5711. height: math.unit(2, "inches"),
  5712. },
  5713. {
  5714. name: "Normal",
  5715. height: math.unit(5 + 9 / 12, "feet"),
  5716. default: true
  5717. },
  5718. {
  5719. name: "Macro",
  5720. height: math.unit(800, "feet")
  5721. },
  5722. {
  5723. name: "Megamacro",
  5724. height: math.unit(25, "miles")
  5725. }
  5726. ]
  5727. ))
  5728. characterMakers.push(() => makeCharacter(
  5729. { name: "Chari-Gal" },
  5730. {
  5731. front: {
  5732. height: math.unit(6, "feet"),
  5733. weight: math.unit(200, "lbs"),
  5734. name: "Front",
  5735. image: {
  5736. source: "./media/characters/chari-gal/front.svg",
  5737. extra: 1568 / 1385,
  5738. bottom: 0.047
  5739. }
  5740. },
  5741. gigantamax: {
  5742. height: math.unit(6 * 16, "feet"),
  5743. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  5744. name: "Gigantamax",
  5745. image: {
  5746. source: "./media/characters/chari-gal/gigantamax.svg",
  5747. extra: 1124 / 888,
  5748. bottom: 0.03
  5749. }
  5750. },
  5751. },
  5752. [
  5753. {
  5754. name: "Normal",
  5755. height: math.unit(5 + 7 / 12, "feet")
  5756. },
  5757. {
  5758. name: "Macro",
  5759. height: math.unit(200, "feet"),
  5760. default: true
  5761. }
  5762. ]
  5763. ))
  5764. characterMakers.push(() => makeCharacter(
  5765. { name: "Nova" },
  5766. {
  5767. front: {
  5768. height: math.unit(6, "feet"),
  5769. weight: math.unit(150, "lbs"),
  5770. name: "Front",
  5771. image: {
  5772. source: "./media/characters/nova/front.svg",
  5773. extra: 5000 / 4722,
  5774. bottom: 0.02
  5775. }
  5776. }
  5777. },
  5778. [
  5779. {
  5780. name: "Micro-",
  5781. height: math.unit(0.8, "inches")
  5782. },
  5783. {
  5784. name: "Micro",
  5785. height: math.unit(2, "inches"),
  5786. default: true
  5787. },
  5788. ]
  5789. ))
  5790. characterMakers.push(() => makeCharacter(
  5791. { name: "Argent" },
  5792. {
  5793. front: {
  5794. height: math.unit(3 + 1 / 12, "feet"),
  5795. weight: math.unit(21.7, "lbs"),
  5796. name: "Front",
  5797. image: {
  5798. source: "./media/characters/argent/front.svg",
  5799. extra: 1565 / 1416,
  5800. bottom: 0.01
  5801. }
  5802. }
  5803. },
  5804. [
  5805. {
  5806. name: "Micro",
  5807. height: math.unit(2, "inches")
  5808. },
  5809. {
  5810. name: "Normal",
  5811. height: math.unit(3 + 1 / 12, "feet"),
  5812. default: true
  5813. },
  5814. {
  5815. name: "Macro",
  5816. height: math.unit(120, "feet")
  5817. },
  5818. ]
  5819. ))
  5820. characterMakers.push(() => makeCharacter(
  5821. { name: "Mira al-Cul" },
  5822. {
  5823. lamp: {
  5824. height: math.unit(7 * 1559 / 989, "feet"),
  5825. name: "Magic Lamp",
  5826. image: {
  5827. source: "./media/characters/mira-al-cul/lamp.svg",
  5828. extra: 1617 / 1559
  5829. }
  5830. },
  5831. front: {
  5832. height: math.unit(7, "feet"),
  5833. name: "Front",
  5834. image: {
  5835. source: "./media/characters/mira-al-cul/front.svg",
  5836. extra: 1044 / 990
  5837. }
  5838. },
  5839. },
  5840. [
  5841. {
  5842. name: "Heavily Restricted",
  5843. height: math.unit(7 * 1559 / 989, "feet")
  5844. },
  5845. {
  5846. name: "Freshly Freed",
  5847. height: math.unit(50 * 1559 / 989, "feet")
  5848. },
  5849. {
  5850. name: "World Encompassing",
  5851. height: math.unit(10000 * 1559 / 989, "miles")
  5852. },
  5853. {
  5854. name: "Galactic",
  5855. height: math.unit(1.433 * 1559 / 989, "zettameters")
  5856. },
  5857. {
  5858. name: "Palmed Universe",
  5859. height: math.unit(6000 * 1559 / 989, "yottameters"),
  5860. default: true
  5861. },
  5862. {
  5863. name: "Multiversal Matriarch",
  5864. height: math.unit(8.87e10, "yottameters")
  5865. },
  5866. {
  5867. name: "Void Mother",
  5868. height: math.unit(3.14e110, "yottaparsecs")
  5869. },
  5870. ]
  5871. ))
  5872. characterMakers.push(() => makeCharacter(
  5873. { name: "Kuro-shi Uchū" },
  5874. {
  5875. front: {
  5876. height: math.unit(17 + 1 / 12, "feet"),
  5877. weight: math.unit(476.2 * 5, "lbs"),
  5878. name: "Front",
  5879. image: {
  5880. source: "./media/characters/kuro-shi-uchū/front.svg",
  5881. extra: 2329 / 1835,
  5882. bottom: 0.02
  5883. }
  5884. },
  5885. },
  5886. [
  5887. {
  5888. name: "Micro",
  5889. height: math.unit(2, "inches")
  5890. },
  5891. {
  5892. name: "Normal",
  5893. height: math.unit(12, "meters")
  5894. },
  5895. {
  5896. name: "Planetary",
  5897. height: math.unit(0.00929, "AU"),
  5898. default: true
  5899. },
  5900. {
  5901. name: "Universal",
  5902. height: math.unit(20, "gigaparsecs")
  5903. },
  5904. ]
  5905. ))
  5906. characterMakers.push(() => makeCharacter(
  5907. { name: "Katherine" },
  5908. {
  5909. front: {
  5910. height: math.unit(5 + 2 / 12, "feet"),
  5911. weight: math.unit(120, "lbs"),
  5912. name: "Front",
  5913. image: {
  5914. source: "./media/characters/katherine/front.svg",
  5915. extra: 2075 / 1969
  5916. }
  5917. },
  5918. dress: {
  5919. height: math.unit(5 + 2 / 12, "feet"),
  5920. weight: math.unit(120, "lbs"),
  5921. name: "Dress",
  5922. image: {
  5923. source: "./media/characters/katherine/dress.svg",
  5924. extra: 2258 / 2064
  5925. }
  5926. },
  5927. },
  5928. [
  5929. {
  5930. name: "Micro",
  5931. height: math.unit(1, "inches"),
  5932. default: true
  5933. },
  5934. {
  5935. name: "Normal",
  5936. height: math.unit(5 + 2 / 12, "feet")
  5937. },
  5938. {
  5939. name: "Macro",
  5940. height: math.unit(100, "meters")
  5941. },
  5942. {
  5943. name: "Megamacro",
  5944. height: math.unit(80, "miles")
  5945. },
  5946. ]
  5947. ))
  5948. characterMakers.push(() => makeCharacter(
  5949. { name: "Yevis" },
  5950. {
  5951. front: {
  5952. height: math.unit(7 + 8 / 12, "feet"),
  5953. weight: math.unit(250, "lbs"),
  5954. name: "Front",
  5955. image: {
  5956. source: "./media/characters/yevis/front.svg",
  5957. extra: 1938 / 1755
  5958. }
  5959. }
  5960. },
  5961. [
  5962. {
  5963. name: "Mortal",
  5964. height: math.unit(7 + 8 / 12, "feet")
  5965. },
  5966. {
  5967. name: "Battle",
  5968. height: math.unit(25 + 11 / 12, "feet")
  5969. },
  5970. {
  5971. name: "Wrath",
  5972. height: math.unit(1654 + 11 / 12, "feet")
  5973. },
  5974. {
  5975. name: "Planet Destroyer",
  5976. height: math.unit(12000, "miles")
  5977. },
  5978. {
  5979. name: "Galaxy Conqueror",
  5980. height: math.unit(1.45, "zettameters"),
  5981. default: true
  5982. },
  5983. {
  5984. name: "Universal War",
  5985. height: math.unit(184, "gigaparsecs")
  5986. },
  5987. {
  5988. name: "Eternity War",
  5989. height: math.unit(1.98e55, "yottaparsecs")
  5990. },
  5991. ]
  5992. ))
  5993. characterMakers.push(() => makeCharacter(
  5994. { name: "Xavier" },
  5995. {
  5996. front: {
  5997. height: math.unit(5 + 8 / 12, "feet"),
  5998. weight: math.unit(63, "kg"),
  5999. name: "Front",
  6000. image: {
  6001. source: "./media/characters/xavier/front.svg",
  6002. extra: 944 / 883
  6003. }
  6004. },
  6005. frontStretch: {
  6006. height: math.unit(5 + 8 / 12, "feet"),
  6007. weight: math.unit(63, "kg"),
  6008. name: "Stretching",
  6009. image: {
  6010. source: "./media/characters/xavier/front-stretch.svg",
  6011. extra: 962 / 820
  6012. }
  6013. },
  6014. },
  6015. [
  6016. {
  6017. name: "Normal",
  6018. height: math.unit(5 + 8 / 12, "feet")
  6019. },
  6020. {
  6021. name: "Macro",
  6022. height: math.unit(100, "meters"),
  6023. default: true
  6024. },
  6025. {
  6026. name: "McLargeHuge",
  6027. height: math.unit(10, "miles")
  6028. },
  6029. ]
  6030. ))
  6031. characterMakers.push(() => makeCharacter(
  6032. { name: "Joshii" },
  6033. {
  6034. front: {
  6035. height: math.unit(5 + 5 / 12, "feet"),
  6036. weight: math.unit(150, "lb"),
  6037. name: "Front",
  6038. image: {
  6039. source: "./media/characters/joshii/front.svg"
  6040. }
  6041. },
  6042. foot: {
  6043. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6044. name: "Foot",
  6045. image: {
  6046. source: "./media/characters/joshii/foot.svg"
  6047. }
  6048. },
  6049. },
  6050. [
  6051. {
  6052. name: "Micro",
  6053. height: math.unit(2, "inches")
  6054. },
  6055. {
  6056. name: "Normal",
  6057. height: math.unit(5 + 5 / 12, "feet"),
  6058. default: true
  6059. },
  6060. {
  6061. name: "Macro",
  6062. height: math.unit(785, "feet")
  6063. },
  6064. {
  6065. name: "Megamacro",
  6066. height: math.unit(24.5, "miles")
  6067. },
  6068. ]
  6069. ))
  6070. characterMakers.push(() => makeCharacter(
  6071. { name: "Goddess Elizabeth" },
  6072. {
  6073. front: {
  6074. height: math.unit(6, "feet"),
  6075. weight: math.unit(150, "lb"),
  6076. name: "Front",
  6077. image: {
  6078. source: "./media/characters/goddess-elizabeth/front.svg",
  6079. extra: 1800 / 1525,
  6080. bottom: 0.005
  6081. }
  6082. },
  6083. foot: {
  6084. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6085. name: "Foot",
  6086. image: {
  6087. source: "./media/characters/goddess-elizabeth/foot.svg"
  6088. }
  6089. },
  6090. },
  6091. [
  6092. {
  6093. name: "Micro",
  6094. height: math.unit(12, "feet")
  6095. },
  6096. {
  6097. name: "Normal",
  6098. height: math.unit(80, "miles"),
  6099. default: true
  6100. },
  6101. {
  6102. name: "Macro",
  6103. height: math.unit(15000, "parsecs")
  6104. },
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Kara" },
  6109. {
  6110. front: {
  6111. height: math.unit(5 + 9 / 12, "feet"),
  6112. weight: math.unit(144, "lb"),
  6113. name: "Front",
  6114. image: {
  6115. source: "./media/characters/kara/front.svg"
  6116. }
  6117. },
  6118. feet: {
  6119. height: math.unit(6 / 6.765, "feet"),
  6120. name: "Kara's Feet",
  6121. rename: true,
  6122. image: {
  6123. source: "./media/characters/kara/feet.svg"
  6124. }
  6125. },
  6126. },
  6127. [
  6128. {
  6129. name: "Normal",
  6130. height: math.unit(5 + 9 / 12, "feet")
  6131. },
  6132. {
  6133. name: "Macro",
  6134. height: math.unit(174, "feet"),
  6135. default: true
  6136. },
  6137. ]
  6138. ))
  6139. characterMakers.push(() => makeCharacter(
  6140. { name: "Tyrone" },
  6141. {
  6142. front: {
  6143. height: math.unit(18, "feet"),
  6144. weight: math.unit(4050, "lb"),
  6145. name: "Front",
  6146. image: {
  6147. source: "./media/characters/tyrone/front.svg",
  6148. extra: 2520 / 2402,
  6149. bottom: 0.025
  6150. }
  6151. },
  6152. },
  6153. [
  6154. {
  6155. name: "Normal",
  6156. height: math.unit(18, "feet"),
  6157. default: true
  6158. },
  6159. {
  6160. name: "Macro",
  6161. height: math.unit(300, "feet")
  6162. },
  6163. ]
  6164. ))
  6165. characterMakers.push(() => makeCharacter(
  6166. { name: "Danny" },
  6167. {
  6168. front: {
  6169. height: math.unit(7 + 8 / 12, "feet"),
  6170. weight: math.unit(120, "lb"),
  6171. name: "Front",
  6172. image: {
  6173. source: "./media/characters/danny/front.svg",
  6174. extra: 1490 / 1350
  6175. }
  6176. },
  6177. back: {
  6178. height: math.unit(7 + 8 / 12, "feet"),
  6179. weight: math.unit(120, "lb"),
  6180. name: "Back",
  6181. image: {
  6182. source: "./media/characters/danny/back.svg",
  6183. extra: 1490 / 1350
  6184. }
  6185. },
  6186. },
  6187. [
  6188. {
  6189. name: "Normal",
  6190. height: math.unit(7 + 8 / 12, "feet"),
  6191. default: true
  6192. },
  6193. ]
  6194. ))
  6195. characterMakers.push(() => makeCharacter(
  6196. { name: "Mallow" },
  6197. {
  6198. front: {
  6199. height: math.unit(3.5, "inches"),
  6200. weight: math.unit(19, "grams"),
  6201. name: "Front",
  6202. image: {
  6203. source: "./media/characters/mallow/front.svg",
  6204. extra: 471 / 431
  6205. }
  6206. },
  6207. back: {
  6208. height: math.unit(3.5, "inches"),
  6209. weight: math.unit(19, "grams"),
  6210. name: "Back",
  6211. image: {
  6212. source: "./media/characters/mallow/back.svg",
  6213. extra: 471 / 431
  6214. }
  6215. },
  6216. },
  6217. [
  6218. {
  6219. name: "Normal",
  6220. height: math.unit(3.5, "inches"),
  6221. default: true
  6222. },
  6223. ]
  6224. ))
  6225. characterMakers.push(() => makeCharacter(
  6226. { name: "Starry Aqua" },
  6227. {
  6228. front: {
  6229. height: math.unit(9, "feet"),
  6230. weight: math.unit(230, "kg"),
  6231. name: "Front",
  6232. image: {
  6233. source: "./media/characters/starry-aqua/front.svg"
  6234. }
  6235. },
  6236. back: {
  6237. height: math.unit(9, "feet"),
  6238. weight: math.unit(230, "kg"),
  6239. name: "Back",
  6240. image: {
  6241. source: "./media/characters/starry-aqua/back.svg"
  6242. }
  6243. },
  6244. hand: {
  6245. height: math.unit(9 * 0.1168, "feet"),
  6246. name: "Hand",
  6247. image: {
  6248. source: "./media/characters/starry-aqua/hand.svg"
  6249. }
  6250. },
  6251. foot: {
  6252. height: math.unit(9 * 0.18, "feet"),
  6253. name: "Foot",
  6254. image: {
  6255. source: "./media/characters/starry-aqua/foot.svg"
  6256. }
  6257. }
  6258. },
  6259. [
  6260. {
  6261. name: "Micro",
  6262. height: math.unit(3, "inches")
  6263. },
  6264. {
  6265. name: "Normal",
  6266. height: math.unit(9, "feet")
  6267. },
  6268. {
  6269. name: "Macro",
  6270. height: math.unit(300, "feet"),
  6271. default: true
  6272. },
  6273. {
  6274. name: "Megamacro",
  6275. height: math.unit(3200, "feet")
  6276. }
  6277. ]
  6278. ))
  6279. characterMakers.push(() => makeCharacter(
  6280. { name: "Luka" },
  6281. {
  6282. front: {
  6283. height: math.unit(6, "feet"),
  6284. weight: math.unit(230, "lb"),
  6285. name: "Front",
  6286. image: {
  6287. source: "./media/characters/luka/front.svg",
  6288. extra: 1,
  6289. bottom: 0.025
  6290. }
  6291. },
  6292. },
  6293. [
  6294. {
  6295. name: "Normal",
  6296. height: math.unit(12 + 8 / 12, "feet"),
  6297. default: true
  6298. },
  6299. {
  6300. name: "Minimacro",
  6301. height: math.unit(20, "feet")
  6302. },
  6303. {
  6304. name: "Macro",
  6305. height: math.unit(250, "feet")
  6306. },
  6307. {
  6308. name: "Megamacro",
  6309. height: math.unit(5, "miles")
  6310. },
  6311. {
  6312. name: "Gigamacro",
  6313. height: math.unit(8000, "miles")
  6314. },
  6315. ]
  6316. ))
  6317. characterMakers.push(() => makeCharacter(
  6318. { name: "Natalie Nightring" },
  6319. {
  6320. front: {
  6321. height: math.unit(6, "feet"),
  6322. weight: math.unit(150, "lb"),
  6323. name: "Front",
  6324. image: {
  6325. source: "./media/characters/natalie-nightring/front.svg",
  6326. extra: 1,
  6327. bottom: 0.06
  6328. }
  6329. },
  6330. },
  6331. [
  6332. {
  6333. name: "Uh Oh",
  6334. height: math.unit(0.1, "mm")
  6335. },
  6336. {
  6337. name: "Small",
  6338. height: math.unit(3, "inches")
  6339. },
  6340. {
  6341. name: "Human Scale",
  6342. height: math.unit(6, "feet")
  6343. },
  6344. {
  6345. name: "Librarian",
  6346. height: math.unit(50, "feet"),
  6347. default: true
  6348. },
  6349. {
  6350. name: "Immense",
  6351. height: math.unit(200, "miles")
  6352. },
  6353. ]
  6354. ))
  6355. characterMakers.push(() => makeCharacter(
  6356. { name: "Danni Rosie" },
  6357. {
  6358. front: {
  6359. height: math.unit(6, "feet"),
  6360. weight: math.unit(180, "lbs"),
  6361. name: "Front",
  6362. image: {
  6363. source: "./media/characters/danni-rosie/front.svg",
  6364. extra: 1260 / 1128,
  6365. bottom: 0.022
  6366. }
  6367. },
  6368. },
  6369. [
  6370. {
  6371. name: "Micro",
  6372. height: math.unit(2, "inches"),
  6373. default: true
  6374. },
  6375. ]
  6376. ))
  6377. characterMakers.push(() => makeCharacter(
  6378. { name: "Samantha Kruse" },
  6379. {
  6380. front: {
  6381. height: math.unit(5 + 9 / 12, "feet"),
  6382. weight: math.unit(220, "lb"),
  6383. name: "Front",
  6384. image: {
  6385. source: "./media/characters/samantha-kruse/front.svg",
  6386. extra: (985 / 935),
  6387. bottom: 0.03
  6388. }
  6389. },
  6390. frontUndressed: {
  6391. height: math.unit(5 + 9 / 12, "feet"),
  6392. weight: math.unit(220, "lb"),
  6393. name: "Front (Undressed)",
  6394. image: {
  6395. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6396. extra: (973 / 923),
  6397. bottom: 0.025
  6398. }
  6399. },
  6400. fat: {
  6401. height: math.unit(5 + 9 / 12, "feet"),
  6402. weight: math.unit(900, "lb"),
  6403. name: "Front (Fat)",
  6404. image: {
  6405. source: "./media/characters/samantha-kruse/fat.svg",
  6406. extra: 2688 / 2561
  6407. }
  6408. },
  6409. },
  6410. [
  6411. {
  6412. name: "Normal",
  6413. height: math.unit(5 + 9 / 12, "feet"),
  6414. default: true
  6415. }
  6416. ]
  6417. ))
  6418. characterMakers.push(() => makeCharacter(
  6419. { name: "Amelia Rosie" },
  6420. {
  6421. back: {
  6422. height: math.unit(5 + 4 / 12, "feet"),
  6423. weight: math.unit(4963, "lb"),
  6424. name: "Back",
  6425. image: {
  6426. source: "./media/characters/amelia-rosie/back.svg",
  6427. extra: 1113 / 963,
  6428. bottom: 0.01
  6429. }
  6430. },
  6431. },
  6432. [
  6433. {
  6434. name: "Level 0",
  6435. height: math.unit(5 + 4 / 12, "feet")
  6436. },
  6437. {
  6438. name: "Level 1",
  6439. height: math.unit(164597, "feet"),
  6440. default: true
  6441. },
  6442. {
  6443. name: "Level 2",
  6444. height: math.unit(956243, "miles")
  6445. },
  6446. {
  6447. name: "Level 3",
  6448. height: math.unit(29421709423, "miles")
  6449. },
  6450. {
  6451. name: "Level 4",
  6452. height: math.unit(154, "lightyears")
  6453. },
  6454. {
  6455. name: "Level 5",
  6456. height: math.unit(4738272, "lightyears")
  6457. },
  6458. {
  6459. name: "Level 6",
  6460. height: math.unit(145787152896, "lightyears")
  6461. },
  6462. ]
  6463. ))
  6464. characterMakers.push(() => makeCharacter(
  6465. { name: "Rook Kitara" },
  6466. {
  6467. front: {
  6468. height: math.unit(5 + 11 / 12, "feet"),
  6469. weight: math.unit(65, "kg"),
  6470. name: "Front",
  6471. image: {
  6472. source: "./media/characters/rook-kitara/front.svg",
  6473. extra: 1347 / 1274,
  6474. bottom: 0.005
  6475. }
  6476. },
  6477. },
  6478. [
  6479. {
  6480. name: "Totally Unfair",
  6481. height: math.unit(1.8, "mm")
  6482. },
  6483. {
  6484. name: "Lap Rookie",
  6485. height: math.unit(1.4, "feet")
  6486. },
  6487. {
  6488. name: "Normal",
  6489. height: math.unit(5 + 11 / 12, "feet"),
  6490. default: true
  6491. },
  6492. {
  6493. name: "How Did This Happen",
  6494. height: math.unit(80, "miles")
  6495. }
  6496. ]
  6497. ))
  6498. characterMakers.push(() => makeCharacter(
  6499. { name: "Pisces" },
  6500. {
  6501. front: {
  6502. height: math.unit(7, "feet"),
  6503. weight: math.unit(300, "lb"),
  6504. name: "Front",
  6505. image: {
  6506. source: "./media/characters/pisces/front.svg",
  6507. extra: 2255 / 2115,
  6508. bottom: 0.03
  6509. }
  6510. },
  6511. back: {
  6512. height: math.unit(7, "feet"),
  6513. weight: math.unit(300, "lb"),
  6514. name: "Back",
  6515. image: {
  6516. source: "./media/characters/pisces/back.svg",
  6517. extra: 2146 / 2055,
  6518. bottom: 0.04
  6519. }
  6520. },
  6521. },
  6522. [
  6523. {
  6524. name: "Normal",
  6525. height: math.unit(7, "feet"),
  6526. default: true
  6527. },
  6528. {
  6529. name: "Swimming Pool",
  6530. height: math.unit(12.2, "meters")
  6531. },
  6532. {
  6533. name: "Olympic Swimming Pool",
  6534. height: math.unit(56.3, "meters")
  6535. },
  6536. {
  6537. name: "Lake Superior",
  6538. height: math.unit(93900, "meters")
  6539. },
  6540. {
  6541. name: "Mediterranean Sea",
  6542. height: math.unit(644457, "meters")
  6543. },
  6544. {
  6545. name: "World's Oceans",
  6546. height: math.unit(4567491, "meters")
  6547. },
  6548. ]
  6549. ))
  6550. characterMakers.push(() => makeCharacter(
  6551. { name: "Zelas" },
  6552. {
  6553. front: {
  6554. height: math.unit(2.3, "meters"),
  6555. weight: math.unit(120, "kg"),
  6556. name: "Front",
  6557. image: {
  6558. source: "./media/characters/zelas/front.svg"
  6559. }
  6560. },
  6561. side: {
  6562. height: math.unit(2.3, "meters"),
  6563. weight: math.unit(120, "kg"),
  6564. name: "Side",
  6565. image: {
  6566. source: "./media/characters/zelas/side.svg"
  6567. }
  6568. },
  6569. back: {
  6570. height: math.unit(2.3, "meters"),
  6571. weight: math.unit(120, "kg"),
  6572. name: "Back",
  6573. image: {
  6574. source: "./media/characters/zelas/back.svg"
  6575. }
  6576. },
  6577. foot: {
  6578. height: math.unit(1.116, "feet"),
  6579. name: "Foot",
  6580. image: {
  6581. source: "./media/characters/zelas/foot.svg"
  6582. }
  6583. },
  6584. },
  6585. [
  6586. {
  6587. name: "Normal",
  6588. height: math.unit(2.3, "meters")
  6589. },
  6590. {
  6591. name: "Macro",
  6592. height: math.unit(30, "meters"),
  6593. default: true
  6594. },
  6595. ]
  6596. ))
  6597. characterMakers.push(() => makeCharacter(
  6598. { name: "Talbot" },
  6599. {
  6600. front: {
  6601. height: math.unit(1, "inch"),
  6602. weight: math.unit(0.21, "grams"),
  6603. name: "Front",
  6604. image: {
  6605. source: "./media/characters/talbot/front.svg",
  6606. extra: 594 / 544
  6607. }
  6608. },
  6609. },
  6610. [
  6611. {
  6612. name: "Micro",
  6613. height: math.unit(1, "inch"),
  6614. default: true
  6615. },
  6616. ]
  6617. ))
  6618. characterMakers.push(() => makeCharacter(
  6619. { name: "Fliss" },
  6620. {
  6621. front: {
  6622. height: math.unit(3 + 3 / 12, "feet"),
  6623. weight: math.unit(51.8, "lb"),
  6624. name: "Front",
  6625. image: {
  6626. source: "./media/characters/fliss/front.svg",
  6627. extra: 840 / 640
  6628. }
  6629. },
  6630. },
  6631. [
  6632. {
  6633. name: "Teeny Tiny",
  6634. height: math.unit(1, "mm")
  6635. },
  6636. {
  6637. name: "Small",
  6638. height: math.unit(1, "inch"),
  6639. default: true
  6640. },
  6641. {
  6642. name: "Standard Sylveon",
  6643. height: math.unit(3 + 3 / 12, "feet")
  6644. },
  6645. {
  6646. name: "Large Nuisance",
  6647. height: math.unit(33, "feet")
  6648. },
  6649. {
  6650. name: "City Filler",
  6651. height: math.unit(3000, "feet")
  6652. },
  6653. {
  6654. name: "New Horizon",
  6655. height: math.unit(6000, "miles")
  6656. },
  6657. ]
  6658. ))
  6659. characterMakers.push(() => makeCharacter(
  6660. { name: "Fleta" },
  6661. {
  6662. front: {
  6663. height: math.unit(5, "cm"),
  6664. weight: math.unit(1.94, "g"),
  6665. name: "Front",
  6666. image: {
  6667. source: "./media/characters/fleta/front.svg",
  6668. extra: 835 / 803
  6669. }
  6670. },
  6671. back: {
  6672. height: math.unit(5, "cm"),
  6673. weight: math.unit(1.94, "g"),
  6674. name: "Back",
  6675. image: {
  6676. source: "./media/characters/fleta/back.svg",
  6677. extra: 835 / 803
  6678. }
  6679. },
  6680. },
  6681. [
  6682. {
  6683. name: "Micro",
  6684. height: math.unit(5, "cm"),
  6685. default: true
  6686. },
  6687. ]
  6688. ))
  6689. characterMakers.push(() => makeCharacter(
  6690. { name: "Dominic" },
  6691. {
  6692. front: {
  6693. height: math.unit(6, "feet"),
  6694. weight: math.unit(225, "lb"),
  6695. name: "Front",
  6696. image: {
  6697. source: "./media/characters/dominic/front.svg",
  6698. extra: 1770 / 1620,
  6699. bottom: 0.025
  6700. }
  6701. },
  6702. back: {
  6703. height: math.unit(6, "feet"),
  6704. weight: math.unit(225, "lb"),
  6705. name: "Back",
  6706. image: {
  6707. source: "./media/characters/dominic/back.svg",
  6708. extra: 1745 / 1620,
  6709. bottom: 0.065
  6710. }
  6711. },
  6712. },
  6713. [
  6714. {
  6715. name: "Nano",
  6716. height: math.unit(0.1, "mm")
  6717. },
  6718. {
  6719. name: "Micro-",
  6720. height: math.unit(1, "mm")
  6721. },
  6722. {
  6723. name: "Micro",
  6724. height: math.unit(4, "inches")
  6725. },
  6726. {
  6727. name: "Normal",
  6728. height: math.unit(6 + 4 / 12, "feet"),
  6729. default: true
  6730. },
  6731. {
  6732. name: "Macro",
  6733. height: math.unit(115, "feet")
  6734. },
  6735. {
  6736. name: "Macro+",
  6737. height: math.unit(955, "feet")
  6738. },
  6739. {
  6740. name: "Megamacro",
  6741. height: math.unit(8990, "feet")
  6742. },
  6743. {
  6744. name: "Gigmacro",
  6745. height: math.unit(9310, "miles")
  6746. },
  6747. {
  6748. name: "Teramacro",
  6749. height: math.unit(1567005010, "miles")
  6750. },
  6751. {
  6752. name: "Examacro",
  6753. height: math.unit(1425, "parsecs")
  6754. },
  6755. ]
  6756. ))
  6757. characterMakers.push(() => makeCharacter(
  6758. { name: "Major Colonel" },
  6759. {
  6760. front: {
  6761. height: math.unit(400, "feet"),
  6762. weight: math.unit(44444444, "lb"),
  6763. name: "Front",
  6764. image: {
  6765. source: "./media/characters/major-colonel/front.svg"
  6766. }
  6767. },
  6768. back: {
  6769. height: math.unit(400, "feet"),
  6770. weight: math.unit(44444444, "lb"),
  6771. name: "Back",
  6772. image: {
  6773. source: "./media/characters/major-colonel/back.svg"
  6774. }
  6775. },
  6776. },
  6777. [
  6778. {
  6779. name: "Macro",
  6780. height: math.unit(400, "feet"),
  6781. default: true
  6782. },
  6783. ]
  6784. ))
  6785. characterMakers.push(() => makeCharacter(
  6786. { name: "Axel Lycan" },
  6787. {
  6788. front: {
  6789. height: math.unit(6, "feet"),
  6790. weight: math.unit(120, "lb"),
  6791. name: "Front",
  6792. image: {
  6793. source: "./media/characters/axel-lycan/front.svg",
  6794. extra: 1,
  6795. bottom: 0.08
  6796. }
  6797. },
  6798. },
  6799. [
  6800. {
  6801. name: "Macro",
  6802. height: math.unit(1, "km"),
  6803. default: true
  6804. },
  6805. ]
  6806. ))
  6807. characterMakers.push(() => makeCharacter(
  6808. { name: "Vanrel (Hyena)" },
  6809. {
  6810. front: {
  6811. height: math.unit(5 + 9 / 12, "feet"),
  6812. weight: math.unit(175, "lb"),
  6813. name: "Front",
  6814. image: {
  6815. source: "./media/characters/vanrel-hyena/front.svg",
  6816. extra: 1086 / 1010,
  6817. bottom: 0.04
  6818. }
  6819. },
  6820. },
  6821. [
  6822. {
  6823. name: "Normal",
  6824. height: math.unit(5 + 9 / 12, "feet"),
  6825. default: true
  6826. },
  6827. ]
  6828. ))
  6829. characterMakers.push(() => makeCharacter(
  6830. { name: "Abbott Absol" },
  6831. {
  6832. front: {
  6833. height: math.unit(6, "feet"),
  6834. weight: math.unit(103, "lb"),
  6835. name: "Front",
  6836. image: {
  6837. source: "./media/characters/abbott-absol/front.svg",
  6838. extra: 2010 / 1842
  6839. }
  6840. },
  6841. },
  6842. [
  6843. {
  6844. name: "Megamicro",
  6845. height: math.unit(0.1, "mm")
  6846. },
  6847. {
  6848. name: "Micro",
  6849. height: math.unit(1, "inch")
  6850. },
  6851. {
  6852. name: "Normal",
  6853. height: math.unit(6, "feet"),
  6854. default: true
  6855. },
  6856. ]
  6857. ))
  6858. characterMakers.push(() => makeCharacter(
  6859. { name: "Hector" },
  6860. {
  6861. front: {
  6862. height: math.unit(6, "feet"),
  6863. weight: math.unit(264, "lb"),
  6864. name: "Front",
  6865. image: {
  6866. source: "./media/characters/hector/front.svg",
  6867. extra: 2280 / 2130,
  6868. bottom: 0.07
  6869. }
  6870. },
  6871. },
  6872. [
  6873. {
  6874. name: "Normal",
  6875. height: math.unit(12.25, "foot"),
  6876. default: true
  6877. },
  6878. {
  6879. name: "Macro",
  6880. height: math.unit(160, "feet")
  6881. },
  6882. ]
  6883. ))
  6884. characterMakers.push(() => makeCharacter(
  6885. { name: "Sal" },
  6886. {
  6887. front: {
  6888. height: math.unit(6, "feet"),
  6889. weight: math.unit(150, "lb"),
  6890. name: "Front",
  6891. image: {
  6892. source: "./media/characters/sal/front.svg",
  6893. extra: 1846 / 1699,
  6894. bottom: 0.04
  6895. }
  6896. },
  6897. },
  6898. [
  6899. {
  6900. name: "Megamacro",
  6901. height: math.unit(10, "miles"),
  6902. default: true
  6903. },
  6904. ]
  6905. ))
  6906. characterMakers.push(() => makeCharacter(
  6907. { name: "Ranger" },
  6908. {
  6909. front: {
  6910. height: math.unit(3, "meters"),
  6911. weight: math.unit(450, "kg"),
  6912. name: "front",
  6913. image: {
  6914. source: "./media/characters/ranger/front.svg",
  6915. extra: 2401 / 2243,
  6916. bottom: 0.05
  6917. }
  6918. },
  6919. },
  6920. [
  6921. {
  6922. name: "Normal",
  6923. height: math.unit(3, "meters"),
  6924. default: true
  6925. },
  6926. ]
  6927. ))
  6928. characterMakers.push(() => makeCharacter(
  6929. { name: "Theresa" },
  6930. {
  6931. front: {
  6932. height: math.unit(14, "feet"),
  6933. weight: math.unit(800, "kg"),
  6934. name: "Front",
  6935. image: {
  6936. source: "./media/characters/theresa/front.svg",
  6937. extra: 3575 / 3346,
  6938. bottom: 0.03
  6939. }
  6940. },
  6941. },
  6942. [
  6943. {
  6944. name: "Normal",
  6945. height: math.unit(14, "feet"),
  6946. default: true
  6947. },
  6948. ]
  6949. ))
  6950. characterMakers.push(() => makeCharacter(
  6951. { name: "Ine" },
  6952. {
  6953. front: {
  6954. height: math.unit(6, "feet"),
  6955. weight: math.unit(3, "kg"),
  6956. name: "Front",
  6957. image: {
  6958. source: "./media/characters/ine/front.svg",
  6959. extra: 678 / 539,
  6960. bottom: 0.023
  6961. }
  6962. },
  6963. },
  6964. [
  6965. {
  6966. name: "Normal",
  6967. height: math.unit(2.265, "feet"),
  6968. default: true
  6969. },
  6970. ]
  6971. ))
  6972. characterMakers.push(() => makeCharacter(
  6973. { name: "Vial" },
  6974. {
  6975. front: {
  6976. height: math.unit(5, "feet"),
  6977. weight: math.unit(30, "kg"),
  6978. name: "Front",
  6979. image: {
  6980. source: "./media/characters/vial/front.svg",
  6981. extra: 1365 / 1277,
  6982. bottom: 0.04
  6983. }
  6984. },
  6985. },
  6986. [
  6987. {
  6988. name: "Normal",
  6989. height: math.unit(5, "feet"),
  6990. default: true
  6991. },
  6992. ]
  6993. ))
  6994. characterMakers.push(() => makeCharacter(
  6995. { name: "Rovoska" },
  6996. {
  6997. side: {
  6998. height: math.unit(3.4, "meters"),
  6999. weight: math.unit(1000, "lb"),
  7000. name: "Side",
  7001. image: {
  7002. source: "./media/characters/rovoska/side.svg",
  7003. extra: 4403 / 1515
  7004. }
  7005. },
  7006. },
  7007. [
  7008. {
  7009. name: "Normal",
  7010. height: math.unit(3.4, "meters"),
  7011. default: true
  7012. },
  7013. ]
  7014. ))
  7015. characterMakers.push(() => makeCharacter(
  7016. { name: "Gunner Rotthbauer" },
  7017. {
  7018. front: {
  7019. height: math.unit(8, "feet"),
  7020. weight: math.unit(315, "lb"),
  7021. name: "Front",
  7022. image: {
  7023. source: "./media/characters/gunner-rotthbauer/front.svg"
  7024. }
  7025. },
  7026. back: {
  7027. height: math.unit(8, "feet"),
  7028. weight: math.unit(315, "lb"),
  7029. name: "Back",
  7030. image: {
  7031. source: "./media/characters/gunner-rotthbauer/back.svg"
  7032. }
  7033. },
  7034. },
  7035. [
  7036. {
  7037. name: "Micro",
  7038. height: math.unit(3.5, "inches")
  7039. },
  7040. {
  7041. name: "Normal",
  7042. height: math.unit(8, "feet"),
  7043. default: true
  7044. },
  7045. {
  7046. name: "Macro",
  7047. height: math.unit(250, "feet")
  7048. },
  7049. {
  7050. name: "Megamacro",
  7051. height: math.unit(1, "AU")
  7052. },
  7053. ]
  7054. ))
  7055. characterMakers.push(() => makeCharacter(
  7056. { name: "Allatia" },
  7057. {
  7058. front: {
  7059. height: math.unit(5 + 5 / 12, "feet"),
  7060. weight: math.unit(140, "lb"),
  7061. name: "Front",
  7062. image: {
  7063. source: "./media/characters/allatia/front.svg",
  7064. extra: 1227 / 1180,
  7065. bottom: 0.027
  7066. }
  7067. },
  7068. },
  7069. [
  7070. {
  7071. name: "Normal",
  7072. height: math.unit(5 + 5 / 12, "feet")
  7073. },
  7074. {
  7075. name: "Macro",
  7076. height: math.unit(250, "feet"),
  7077. default: true
  7078. },
  7079. {
  7080. name: "Megamacro",
  7081. height: math.unit(8, "miles")
  7082. }
  7083. ]
  7084. ))
  7085. characterMakers.push(() => makeCharacter(
  7086. { name: "Tene" },
  7087. {
  7088. front: {
  7089. height: math.unit(6, "feet"),
  7090. weight: math.unit(120, "lb"),
  7091. name: "Front",
  7092. image: {
  7093. source: "./media/characters/tene/front.svg",
  7094. extra: 1728 / 1578,
  7095. bottom: 0.022
  7096. }
  7097. },
  7098. stomping: {
  7099. height: math.unit(2.025, "meters"),
  7100. weight: math.unit(120, "lb"),
  7101. name: "Stomping",
  7102. image: {
  7103. source: "./media/characters/tene/stomping.svg",
  7104. extra: 938 / 873,
  7105. bottom: 0.01
  7106. }
  7107. },
  7108. sitting: {
  7109. height: math.unit(1, "meter"),
  7110. weight: math.unit(120, "lb"),
  7111. name: "Sitting",
  7112. image: {
  7113. source: "./media/characters/tene/sitting.svg",
  7114. extra: 437 / 415,
  7115. bottom: 0.1
  7116. }
  7117. },
  7118. feral: {
  7119. height: math.unit(3.9, "feet"),
  7120. weight: math.unit(250, "lb"),
  7121. name: "Feral",
  7122. image: {
  7123. source: "./media/characters/tene/feral.svg",
  7124. extra: 717 / 458,
  7125. bottom: 0.179
  7126. }
  7127. },
  7128. },
  7129. [
  7130. {
  7131. name: "Normal",
  7132. height: math.unit(6, "feet")
  7133. },
  7134. {
  7135. name: "Macro",
  7136. height: math.unit(300, "feet"),
  7137. default: true
  7138. },
  7139. {
  7140. name: "Megamacro",
  7141. height: math.unit(5, "miles")
  7142. },
  7143. ]
  7144. ))
  7145. characterMakers.push(() => makeCharacter(
  7146. { name: "Evander" },
  7147. {
  7148. side: {
  7149. height: math.unit(6, "feet"),
  7150. name: "Side",
  7151. image: {
  7152. source: "./media/characters/evander/side.svg",
  7153. extra: 877 / 477
  7154. }
  7155. },
  7156. },
  7157. [
  7158. {
  7159. name: "Normal",
  7160. height: math.unit(0.83, "meters"),
  7161. default: true
  7162. },
  7163. ]
  7164. ))
  7165. characterMakers.push(() => makeCharacter(
  7166. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7167. {
  7168. front: {
  7169. height: math.unit(12, "feet"),
  7170. weight: math.unit(1000, "lb"),
  7171. name: "Front",
  7172. image: {
  7173. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7174. extra: 1762 / 1611
  7175. }
  7176. },
  7177. back: {
  7178. height: math.unit(12, "feet"),
  7179. weight: math.unit(1000, "lb"),
  7180. name: "Back",
  7181. image: {
  7182. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7183. extra: 1762 / 1611
  7184. }
  7185. },
  7186. },
  7187. [
  7188. {
  7189. name: "Normal",
  7190. height: math.unit(12, "feet"),
  7191. default: true
  7192. },
  7193. {
  7194. name: "Kaiju",
  7195. height: math.unit(150, "feet")
  7196. },
  7197. ]
  7198. ))
  7199. characterMakers.push(() => makeCharacter(
  7200. { name: "Zero Alurus" },
  7201. {
  7202. front: {
  7203. height: math.unit(6, "feet"),
  7204. weight: math.unit(150, "lb"),
  7205. name: "Front",
  7206. image: {
  7207. source: "./media/characters/zero-alurus/front.svg"
  7208. }
  7209. },
  7210. back: {
  7211. height: math.unit(6, "feet"),
  7212. weight: math.unit(150, "lb"),
  7213. name: "Back",
  7214. image: {
  7215. source: "./media/characters/zero-alurus/back.svg"
  7216. }
  7217. },
  7218. },
  7219. [
  7220. {
  7221. name: "Normal",
  7222. height: math.unit(5 + 10 / 12, "feet")
  7223. },
  7224. {
  7225. name: "Macro",
  7226. height: math.unit(60, "feet"),
  7227. default: true
  7228. },
  7229. {
  7230. name: "Macro+",
  7231. height: math.unit(450, "feet")
  7232. },
  7233. ]
  7234. ))
  7235. characterMakers.push(() => makeCharacter(
  7236. { name: "Mega Shi" },
  7237. {
  7238. front: {
  7239. height: math.unit(6, "feet"),
  7240. weight: math.unit(200, "lb"),
  7241. name: "Front",
  7242. image: {
  7243. source: "./media/characters/mega-shi/front.svg",
  7244. extra: 1279 / 1250,
  7245. bottom: 0.02
  7246. }
  7247. },
  7248. back: {
  7249. height: math.unit(6, "feet"),
  7250. weight: math.unit(200, "lb"),
  7251. name: "Back",
  7252. image: {
  7253. source: "./media/characters/mega-shi/back.svg",
  7254. extra: 1279 / 1250,
  7255. bottom: 0.02
  7256. }
  7257. },
  7258. },
  7259. [
  7260. {
  7261. name: "Micro",
  7262. height: math.unit(16 + 6 / 12, "feet")
  7263. },
  7264. {
  7265. name: "Normal",
  7266. height: math.unit(660, "feet"),
  7267. default: true
  7268. },
  7269. {
  7270. name: "Megamacro",
  7271. height: math.unit(10, "miles")
  7272. },
  7273. {
  7274. name: "Planetary Launch",
  7275. height: math.unit(500, "miles")
  7276. },
  7277. {
  7278. name: "Interstellar",
  7279. height: math.unit(1e9, "miles")
  7280. },
  7281. {
  7282. name: "Leaving the Universe",
  7283. height: math.unit(1, "gigaparsec")
  7284. },
  7285. {
  7286. name: "Travelling Universes",
  7287. height: math.unit(30e15, "parsecs")
  7288. },
  7289. ]
  7290. ))
  7291. characterMakers.push(() => makeCharacter(
  7292. { name: "Odyssey" },
  7293. {
  7294. front: {
  7295. height: math.unit(6, "feet"),
  7296. weight: math.unit(150, "lb"),
  7297. name: "Front",
  7298. image: {
  7299. source: "./media/characters/odyssey/front.svg",
  7300. extra: 1782 / 1582,
  7301. bottom: 0.01
  7302. }
  7303. },
  7304. side: {
  7305. height: math.unit(5.6, "feet"),
  7306. weight: math.unit(140, "lb"),
  7307. name: "Side",
  7308. image: {
  7309. source: "./media/characters/odyssey/side.svg",
  7310. extra: 6462 / 5700
  7311. }
  7312. },
  7313. },
  7314. [
  7315. {
  7316. name: "Normal",
  7317. height: math.unit(5 + 4 / 12, "feet")
  7318. },
  7319. {
  7320. name: "Macro",
  7321. height: math.unit(1, "km")
  7322. },
  7323. {
  7324. name: "Megamacro",
  7325. height: math.unit(3000, "km")
  7326. },
  7327. {
  7328. name: "Gigamacro",
  7329. height: math.unit(1, "AU"),
  7330. default: true
  7331. },
  7332. {
  7333. name: "Omniversal",
  7334. height: math.unit(100e14, "lightyears")
  7335. },
  7336. ]
  7337. ))
  7338. characterMakers.push(() => makeCharacter(
  7339. { name: "Mekuto" },
  7340. {
  7341. front: {
  7342. height: math.unit(6, "feet"),
  7343. weight: math.unit(300, "lb"),
  7344. name: "Front",
  7345. image: {
  7346. source: "./media/characters/mekuto/front.svg",
  7347. extra: 921 / 832,
  7348. bottom: 0.03
  7349. }
  7350. },
  7351. hand: {
  7352. height: math.unit(6 / 10.24, "feet"),
  7353. name: "Hand",
  7354. image: {
  7355. source: "./media/characters/mekuto/hand.svg"
  7356. }
  7357. },
  7358. foot: {
  7359. height: math.unit(6 / 5.05, "feet"),
  7360. name: "Foot",
  7361. image: {
  7362. source: "./media/characters/mekuto/foot.svg"
  7363. }
  7364. },
  7365. },
  7366. [
  7367. {
  7368. name: "Minimicro",
  7369. height: math.unit(0.2, "inches")
  7370. },
  7371. {
  7372. name: "Micro",
  7373. height: math.unit(1.5, "inches")
  7374. },
  7375. {
  7376. name: "Normal",
  7377. height: math.unit(5 + 11 / 12, "feet"),
  7378. default: true
  7379. },
  7380. {
  7381. name: "Minimacro",
  7382. height: math.unit(17 + 9 / 12, "feet")
  7383. },
  7384. {
  7385. name: "Macro",
  7386. height: math.unit(177.5, "feet")
  7387. },
  7388. {
  7389. name: "Megamacro",
  7390. height: math.unit(152, "miles")
  7391. },
  7392. ]
  7393. ))
  7394. characterMakers.push(() => makeCharacter(
  7395. { name: "Dafydd Tomos" },
  7396. {
  7397. front: {
  7398. height: math.unit(6.5, "inches"),
  7399. weight: math.unit(13, "oz"),
  7400. name: "Front",
  7401. image: {
  7402. source: "./media/characters/dafydd-tomos/front.svg",
  7403. extra: 2990 / 2603,
  7404. bottom: 0.03
  7405. }
  7406. },
  7407. },
  7408. [
  7409. {
  7410. name: "Micro",
  7411. height: math.unit(6.5, "inches"),
  7412. default: true
  7413. },
  7414. ]
  7415. ))
  7416. characterMakers.push(() => makeCharacter(
  7417. { name: "Splinter" },
  7418. {
  7419. front: {
  7420. height: math.unit(6, "feet"),
  7421. weight: math.unit(150, "lb"),
  7422. name: "Front",
  7423. image: {
  7424. source: "./media/characters/splinter/front.svg",
  7425. extra: 2990 / 2882,
  7426. bottom: 0.04
  7427. }
  7428. },
  7429. back: {
  7430. height: math.unit(6, "feet"),
  7431. weight: math.unit(150, "lb"),
  7432. name: "Back",
  7433. image: {
  7434. source: "./media/characters/splinter/back.svg",
  7435. extra: 2990 / 2882,
  7436. bottom: 0.04
  7437. }
  7438. },
  7439. },
  7440. [
  7441. {
  7442. name: "Normal",
  7443. height: math.unit(6, "feet")
  7444. },
  7445. {
  7446. name: "Macro",
  7447. height: math.unit(230, "meters"),
  7448. default: true
  7449. },
  7450. ]
  7451. ))
  7452. characterMakers.push(() => makeCharacter(
  7453. { name: "SnowGabumon" },
  7454. {
  7455. front: {
  7456. height: math.unit(4 + 10 / 12, "feet"),
  7457. weight: math.unit(480, "lb"),
  7458. name: "Front",
  7459. image: {
  7460. source: "./media/characters/snow-gabumon/front.svg",
  7461. extra: 1140 / 963,
  7462. bottom: 0.058
  7463. }
  7464. },
  7465. back: {
  7466. height: math.unit(4 + 10 / 12, "feet"),
  7467. weight: math.unit(480, "lb"),
  7468. name: "Back",
  7469. image: {
  7470. source: "./media/characters/snow-gabumon/back.svg",
  7471. extra: 1115 / 962,
  7472. bottom: 0.041
  7473. }
  7474. },
  7475. frontUndresed: {
  7476. height: math.unit(4 + 10 / 12, "feet"),
  7477. weight: math.unit(480, "lb"),
  7478. name: "Front (Undressed)",
  7479. image: {
  7480. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7481. extra: 1061 / 960,
  7482. bottom: 0.045
  7483. }
  7484. },
  7485. },
  7486. [
  7487. {
  7488. name: "Micro",
  7489. height: math.unit(1, "inch")
  7490. },
  7491. {
  7492. name: "Normal",
  7493. height: math.unit(4 + 10 / 12, "feet"),
  7494. default: true
  7495. },
  7496. {
  7497. name: "Macro",
  7498. height: math.unit(200, "feet")
  7499. },
  7500. {
  7501. name: "Megamacro",
  7502. height: math.unit(120, "miles")
  7503. },
  7504. {
  7505. name: "Gigamacro",
  7506. height: math.unit(9800, "miles")
  7507. },
  7508. ]
  7509. ))
  7510. characterMakers.push(() => makeCharacter(
  7511. { name: "Moody" },
  7512. {
  7513. front: {
  7514. height: math.unit(1.7, "meters"),
  7515. weight: math.unit(140, "lb"),
  7516. name: "Front",
  7517. image: {
  7518. source: "./media/characters/moody/front.svg",
  7519. extra: 3226 / 3007,
  7520. bottom: 0.087
  7521. }
  7522. },
  7523. },
  7524. [
  7525. {
  7526. name: "Micro",
  7527. height: math.unit(1, "mm")
  7528. },
  7529. {
  7530. name: "Normal",
  7531. height: math.unit(1.7, "meters"),
  7532. default: true
  7533. },
  7534. {
  7535. name: "Macro",
  7536. height: math.unit(80, "meters")
  7537. },
  7538. {
  7539. name: "Macro+",
  7540. height: math.unit(500, "meters")
  7541. },
  7542. ]
  7543. ))
  7544. characterMakers.push(() => makeCharacter(
  7545. { name: "Zyas" },
  7546. {
  7547. front: {
  7548. height: math.unit(6, "feet"),
  7549. weight: math.unit(150, "lb"),
  7550. name: "Front",
  7551. image: {
  7552. source: "./media/characters/zyas/front.svg",
  7553. extra: 1180 / 1120,
  7554. bottom: 0.045
  7555. }
  7556. },
  7557. },
  7558. [
  7559. {
  7560. name: "Normal",
  7561. height: math.unit(10, "feet"),
  7562. default: true
  7563. },
  7564. {
  7565. name: "Macro",
  7566. height: math.unit(500, "feet")
  7567. },
  7568. {
  7569. name: "Megamacro",
  7570. height: math.unit(5, "miles")
  7571. },
  7572. {
  7573. name: "Teramacro",
  7574. height: math.unit(150000, "miles")
  7575. },
  7576. ]
  7577. ))
  7578. characterMakers.push(() => makeCharacter(
  7579. { name: "Cuon" },
  7580. {
  7581. front: {
  7582. height: math.unit(6, "feet"),
  7583. weight: math.unit(150, "lb"),
  7584. name: "Front",
  7585. image: {
  7586. source: "./media/characters/cuon/front.svg",
  7587. extra: 1390 / 1320,
  7588. bottom: 0.008
  7589. }
  7590. },
  7591. },
  7592. [
  7593. {
  7594. name: "Micro",
  7595. height: math.unit(3, "inches")
  7596. },
  7597. {
  7598. name: "Normal",
  7599. height: math.unit(18 + 9 / 12, "feet"),
  7600. default: true
  7601. },
  7602. {
  7603. name: "Macro",
  7604. height: math.unit(360, "feet")
  7605. },
  7606. {
  7607. name: "Megamacro",
  7608. height: math.unit(360, "miles")
  7609. },
  7610. ]
  7611. ))
  7612. characterMakers.push(() => makeCharacter(
  7613. { name: "Nyanuxk" },
  7614. {
  7615. front: {
  7616. height: math.unit(2.4, "meters"),
  7617. weight: math.unit(70, "kg"),
  7618. name: "Front",
  7619. image: {
  7620. source: "./media/characters/nyanuxk/front.svg",
  7621. extra: 1172 / 1084,
  7622. bottom: 0.065
  7623. }
  7624. },
  7625. side: {
  7626. height: math.unit(2.4, "meters"),
  7627. weight: math.unit(70, "kg"),
  7628. name: "Side",
  7629. image: {
  7630. source: "./media/characters/nyanuxk/side.svg",
  7631. extra: 1190 / 1132,
  7632. bottom: 0.007
  7633. }
  7634. },
  7635. back: {
  7636. height: math.unit(2.4, "meters"),
  7637. weight: math.unit(70, "kg"),
  7638. name: "Back",
  7639. image: {
  7640. source: "./media/characters/nyanuxk/back.svg",
  7641. extra: 1200 / 1141,
  7642. bottom: 0.015
  7643. }
  7644. },
  7645. foot: {
  7646. height: math.unit(0.52, "meters"),
  7647. name: "Foot",
  7648. image: {
  7649. source: "./media/characters/nyanuxk/foot.svg"
  7650. }
  7651. },
  7652. },
  7653. [
  7654. {
  7655. name: "Micro",
  7656. height: math.unit(2, "cm")
  7657. },
  7658. {
  7659. name: "Normal",
  7660. height: math.unit(2.4, "meters"),
  7661. default: true
  7662. },
  7663. {
  7664. name: "Smaller Macro",
  7665. height: math.unit(120, "meters")
  7666. },
  7667. {
  7668. name: "Bigger Macro",
  7669. height: math.unit(1.2, "km")
  7670. },
  7671. {
  7672. name: "Megamacro",
  7673. height: math.unit(15, "kilometers")
  7674. },
  7675. {
  7676. name: "Gigamacro",
  7677. height: math.unit(2000, "km")
  7678. },
  7679. {
  7680. name: "Teramacro",
  7681. height: math.unit(500000, "km")
  7682. },
  7683. ]
  7684. ))
  7685. characterMakers.push(() => makeCharacter(
  7686. { name: "Ailbhe" },
  7687. {
  7688. side: {
  7689. height: math.unit(6, "feet"),
  7690. name: "Side",
  7691. image: {
  7692. source: "./media/characters/ailbhe/side.svg",
  7693. extra: 757 / 464,
  7694. bottom: 0.041
  7695. }
  7696. },
  7697. },
  7698. [
  7699. {
  7700. name: "Normal",
  7701. height: math.unit(1.07, "meters"),
  7702. default: true
  7703. },
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Zevulfius" },
  7708. {
  7709. front: {
  7710. height: math.unit(6, "feet"),
  7711. weight: math.unit(120, "kg"),
  7712. name: "Front",
  7713. image: {
  7714. source: "./media/characters/zevulfius/front.svg",
  7715. extra: 965 / 903
  7716. }
  7717. },
  7718. side: {
  7719. height: math.unit(6, "feet"),
  7720. weight: math.unit(120, "kg"),
  7721. name: "Side",
  7722. image: {
  7723. source: "./media/characters/zevulfius/side.svg",
  7724. extra: 939 / 900
  7725. }
  7726. },
  7727. back: {
  7728. height: math.unit(6, "feet"),
  7729. weight: math.unit(120, "kg"),
  7730. name: "Back",
  7731. image: {
  7732. source: "./media/characters/zevulfius/back.svg",
  7733. extra: 918 / 854,
  7734. bottom: 0.005
  7735. }
  7736. },
  7737. foot: {
  7738. height: math.unit(6 / 3.72, "feet"),
  7739. name: "Foot",
  7740. image: {
  7741. source: "./media/characters/zevulfius/foot.svg"
  7742. }
  7743. },
  7744. },
  7745. [
  7746. {
  7747. name: "Macro",
  7748. height: math.unit(750, "meters")
  7749. },
  7750. {
  7751. name: "Megamacro",
  7752. height: math.unit(20, "km"),
  7753. default: true
  7754. },
  7755. {
  7756. name: "Gigamacro",
  7757. height: math.unit(2000, "km")
  7758. },
  7759. {
  7760. name: "Teramacro",
  7761. height: math.unit(250000, "km")
  7762. },
  7763. ]
  7764. ))
  7765. characterMakers.push(() => makeCharacter(
  7766. { name: "Rikes" },
  7767. {
  7768. front: {
  7769. height: math.unit(100, "feet"),
  7770. weight: math.unit(350, "kg"),
  7771. name: "Front",
  7772. image: {
  7773. source: "./media/characters/rikes/front.svg",
  7774. extra: 1565 / 1483,
  7775. bottom: 0.017
  7776. }
  7777. },
  7778. },
  7779. [
  7780. {
  7781. name: "Macro",
  7782. height: math.unit(100, "feet"),
  7783. default: true
  7784. },
  7785. ]
  7786. ))
  7787. characterMakers.push(() => makeCharacter(
  7788. { name: "Adam Silver-Mane" },
  7789. {
  7790. anthro: {
  7791. height: math.unit(8, "feet"),
  7792. weight: math.unit(120, "kg"),
  7793. name: "Anthro",
  7794. image: {
  7795. source: "./media/characters/adam-silver-mane/anthro.svg",
  7796. extra: 5743 / 5339,
  7797. bottom: 0.07
  7798. }
  7799. },
  7800. taur: {
  7801. height: math.unit(16, "feet"),
  7802. weight: math.unit(1500, "kg"),
  7803. name: "Taur",
  7804. image: {
  7805. source: "./media/characters/adam-silver-mane/taur.svg",
  7806. extra: 1713 / 1571,
  7807. bottom: 0.01
  7808. }
  7809. },
  7810. },
  7811. [
  7812. {
  7813. name: "Normal",
  7814. height: math.unit(8, "feet")
  7815. },
  7816. {
  7817. name: "Minimacro",
  7818. height: math.unit(80, "feet")
  7819. },
  7820. {
  7821. name: "Macro",
  7822. height: math.unit(800, "feet"),
  7823. default: true
  7824. },
  7825. {
  7826. name: "Megamacro",
  7827. height: math.unit(8000, "feet")
  7828. },
  7829. {
  7830. name: "Gigamacro",
  7831. height: math.unit(800, "miles")
  7832. },
  7833. {
  7834. name: "Teramacro",
  7835. height: math.unit(80000, "miles")
  7836. },
  7837. {
  7838. name: "Celestial",
  7839. height: math.unit(8e6, "miles")
  7840. },
  7841. {
  7842. name: "Star Dragon",
  7843. height: math.unit(800000, "parsecs")
  7844. },
  7845. {
  7846. name: "Godly",
  7847. height: math.unit(800, "teraparsecs")
  7848. },
  7849. ]
  7850. ))
  7851. characterMakers.push(() => makeCharacter(
  7852. { name: "Ky'owin" },
  7853. {
  7854. front: {
  7855. height: math.unit(6, "feet"),
  7856. weight: math.unit(150, "lb"),
  7857. name: "Front",
  7858. image: {
  7859. source: "./media/characters/ky'owin/front.svg",
  7860. extra: 3888 / 3068,
  7861. bottom: 0.015
  7862. }
  7863. },
  7864. },
  7865. [
  7866. {
  7867. name: "Normal",
  7868. height: math.unit(6 + 8 / 12, "feet")
  7869. },
  7870. {
  7871. name: "Large",
  7872. height: math.unit(68, "feet")
  7873. },
  7874. {
  7875. name: "Macro",
  7876. height: math.unit(132, "feet")
  7877. },
  7878. {
  7879. name: "Macro+",
  7880. height: math.unit(340, "feet")
  7881. },
  7882. {
  7883. name: "Macro++",
  7884. height: math.unit(680, "feet"),
  7885. default: true
  7886. },
  7887. {
  7888. name: "Megamacro",
  7889. height: math.unit(1, "mile")
  7890. },
  7891. {
  7892. name: "Megamacro+",
  7893. height: math.unit(10, "miles")
  7894. },
  7895. ]
  7896. ))
  7897. characterMakers.push(() => makeCharacter(
  7898. { name: "Mal" },
  7899. {
  7900. front: {
  7901. height: math.unit(4, "feet"),
  7902. weight: math.unit(50, "lb"),
  7903. name: "Front",
  7904. image: {
  7905. source: "./media/characters/mal/front.svg",
  7906. extra: 785 / 724,
  7907. bottom: 0.07
  7908. }
  7909. },
  7910. },
  7911. [
  7912. {
  7913. name: "Micro",
  7914. height: math.unit(4, "inches")
  7915. },
  7916. {
  7917. name: "Normal",
  7918. height: math.unit(4, "feet"),
  7919. default: true
  7920. },
  7921. {
  7922. name: "Macro",
  7923. height: math.unit(200, "feet")
  7924. },
  7925. ]
  7926. ))
  7927. characterMakers.push(() => makeCharacter(
  7928. { name: "Jordan Deware" },
  7929. {
  7930. front: {
  7931. height: math.unit(6, "feet"),
  7932. weight: math.unit(150, "lb"),
  7933. name: "Front",
  7934. image: {
  7935. source: "./media/characters/jordan-deware/front.svg",
  7936. extra: 1191 / 1012
  7937. }
  7938. },
  7939. },
  7940. [
  7941. {
  7942. name: "Nano",
  7943. height: math.unit(0.01, "mm")
  7944. },
  7945. {
  7946. name: "Minimicro",
  7947. height: math.unit(1, "mm")
  7948. },
  7949. {
  7950. name: "Micro",
  7951. height: math.unit(0.5, "inches")
  7952. },
  7953. {
  7954. name: "Normal",
  7955. height: math.unit(4, "feet"),
  7956. default: true
  7957. },
  7958. {
  7959. name: "Minimacro",
  7960. height: math.unit(40, "meters")
  7961. },
  7962. {
  7963. name: "Small Macro",
  7964. height: math.unit(400, "meters")
  7965. },
  7966. {
  7967. name: "Macro",
  7968. height: math.unit(4, "miles")
  7969. },
  7970. {
  7971. name: "Megamacro",
  7972. height: math.unit(40, "miles")
  7973. },
  7974. {
  7975. name: "Megamacro+",
  7976. height: math.unit(400, "miles")
  7977. },
  7978. {
  7979. name: "Gigamacro",
  7980. height: math.unit(400000, "miles")
  7981. },
  7982. ]
  7983. ))
  7984. characterMakers.push(() => makeCharacter(
  7985. { name: "Kimiko" },
  7986. {
  7987. side: {
  7988. height: math.unit(6, "feet"),
  7989. weight: math.unit(150, "lb"),
  7990. name: "Side",
  7991. image: {
  7992. source: "./media/characters/kimiko/side.svg",
  7993. extra: 600 / 358
  7994. }
  7995. },
  7996. },
  7997. [
  7998. {
  7999. name: "Normal",
  8000. height: math.unit(15, "feet"),
  8001. default: true
  8002. },
  8003. {
  8004. name: "Macro",
  8005. height: math.unit(220, "feet")
  8006. },
  8007. {
  8008. name: "Macro+",
  8009. height: math.unit(1450, "feet")
  8010. },
  8011. {
  8012. name: "Megamacro",
  8013. height: math.unit(11500, "feet")
  8014. },
  8015. {
  8016. name: "Gigamacro",
  8017. height: math.unit(9500, "miles")
  8018. },
  8019. {
  8020. name: "Teramacro",
  8021. height: math.unit(2208005005, "miles")
  8022. },
  8023. {
  8024. name: "Examacro",
  8025. height: math.unit(2750, "parsecs")
  8026. },
  8027. {
  8028. name: "Zettamacro",
  8029. height: math.unit(101500, "parsecs")
  8030. },
  8031. ]
  8032. ))
  8033. characterMakers.push(() => makeCharacter(
  8034. { name: "Andrew Sleepy" },
  8035. {
  8036. front: {
  8037. height: math.unit(6, "feet"),
  8038. weight: math.unit(70, "kg"),
  8039. name: "Front",
  8040. image: {
  8041. source: "./media/characters/andrew-sleepy/front.svg"
  8042. }
  8043. },
  8044. side: {
  8045. height: math.unit(6, "feet"),
  8046. weight: math.unit(70, "kg"),
  8047. name: "Side",
  8048. image: {
  8049. source: "./media/characters/andrew-sleepy/side.svg"
  8050. }
  8051. },
  8052. },
  8053. [
  8054. {
  8055. name: "Micro",
  8056. height: math.unit(1, "mm"),
  8057. default: true
  8058. },
  8059. ]
  8060. ))
  8061. characterMakers.push(() => makeCharacter(
  8062. { name: "Judio" },
  8063. {
  8064. front: {
  8065. height: math.unit(6, "feet"),
  8066. weight: math.unit(150, "lb"),
  8067. name: "Front",
  8068. image: {
  8069. source: "./media/characters/judio/front.svg",
  8070. extra: 1258 / 1110
  8071. }
  8072. },
  8073. },
  8074. [
  8075. {
  8076. name: "Normal",
  8077. height: math.unit(5 + 6 / 12, "feet")
  8078. },
  8079. {
  8080. name: "Macro",
  8081. height: math.unit(1000, "feet"),
  8082. default: true
  8083. },
  8084. {
  8085. name: "Megamacro",
  8086. height: math.unit(10, "miles")
  8087. },
  8088. ]
  8089. ))
  8090. characterMakers.push(() => makeCharacter(
  8091. { name: "Nomaxice" },
  8092. {
  8093. front: {
  8094. height: math.unit(6, "feet"),
  8095. weight: math.unit(68, "kg"),
  8096. name: "Front",
  8097. image: {
  8098. source: "./media/characters/nomaxice/front.svg",
  8099. extra: 1498 / 1073,
  8100. bottom: 0.075
  8101. }
  8102. },
  8103. foot: {
  8104. height: math.unit(1.1, "feet"),
  8105. name: "Foot",
  8106. image: {
  8107. source: "./media/characters/nomaxice/foot.svg"
  8108. }
  8109. },
  8110. },
  8111. [
  8112. {
  8113. name: "Micro",
  8114. height: math.unit(8, "cm")
  8115. },
  8116. {
  8117. name: "Norm",
  8118. height: math.unit(1.82, "m")
  8119. },
  8120. {
  8121. name: "Norm+",
  8122. height: math.unit(8.8, "feet")
  8123. },
  8124. {
  8125. name: "Big",
  8126. height: math.unit(8, "meters"),
  8127. default: true
  8128. },
  8129. {
  8130. name: "Macro",
  8131. height: math.unit(18, "meters")
  8132. },
  8133. {
  8134. name: "Macro+",
  8135. height: math.unit(88, "meters")
  8136. },
  8137. ]
  8138. ))
  8139. characterMakers.push(() => makeCharacter(
  8140. { name: "Dydros" },
  8141. {
  8142. front: {
  8143. height: math.unit(12, "feet"),
  8144. weight: math.unit(1.5, "tons"),
  8145. name: "Front",
  8146. image: {
  8147. source: "./media/characters/dydros/front.svg",
  8148. extra: 863 / 800,
  8149. bottom: 0.015
  8150. }
  8151. },
  8152. back: {
  8153. height: math.unit(12, "feet"),
  8154. weight: math.unit(1.5, "tons"),
  8155. name: "Back",
  8156. image: {
  8157. source: "./media/characters/dydros/back.svg",
  8158. extra: 900 / 843,
  8159. bottom: 0.005
  8160. }
  8161. },
  8162. },
  8163. [
  8164. {
  8165. name: "Normal",
  8166. height: math.unit(12, "feet"),
  8167. default: true
  8168. },
  8169. ]
  8170. ))
  8171. characterMakers.push(() => makeCharacter(
  8172. { name: "Riggi" },
  8173. {
  8174. front: {
  8175. height: math.unit(6, "feet"),
  8176. weight: math.unit(100, "kg"),
  8177. name: "Front",
  8178. image: {
  8179. source: "./media/characters/riggi/front.svg",
  8180. extra: 5787 / 5303
  8181. }
  8182. },
  8183. hyper: {
  8184. height: math.unit(6 * 5 / 3, "feet"),
  8185. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8186. name: "Hyper",
  8187. image: {
  8188. source: "./media/characters/riggi/hyper.svg",
  8189. extra: 3595 / 3485
  8190. }
  8191. },
  8192. },
  8193. [
  8194. {
  8195. name: "Small Macro",
  8196. height: math.unit(50, "feet")
  8197. },
  8198. {
  8199. name: "Default",
  8200. height: math.unit(200, "feet"),
  8201. default: true
  8202. },
  8203. {
  8204. name: "Loom",
  8205. height: math.unit(10000, "feet")
  8206. },
  8207. {
  8208. name: "Cruising Altitude",
  8209. height: math.unit(30000, "feet")
  8210. },
  8211. {
  8212. name: "Megamacro",
  8213. height: math.unit(100, "miles")
  8214. },
  8215. {
  8216. name: "Continent Sized",
  8217. height: math.unit(2800, "miles")
  8218. },
  8219. {
  8220. name: "Earth Sized",
  8221. height: math.unit(8000, "miles")
  8222. },
  8223. ]
  8224. ))
  8225. characterMakers.push(() => makeCharacter(
  8226. { name: "Alexi" },
  8227. {
  8228. front: {
  8229. height: math.unit(6, "feet"),
  8230. weight: math.unit(250, "lb"),
  8231. name: "Front",
  8232. image: {
  8233. source: "./media/characters/alexi/front.svg",
  8234. extra: 3483 / 3291,
  8235. bottom: 0.04
  8236. }
  8237. },
  8238. back: {
  8239. height: math.unit(6, "feet"),
  8240. weight: math.unit(250, "lb"),
  8241. name: "Back",
  8242. image: {
  8243. source: "./media/characters/alexi/back.svg",
  8244. extra: 3533 / 3356,
  8245. bottom: 0.021
  8246. }
  8247. },
  8248. frontTransformed: {
  8249. height: math.unit(12.5, "feet"),
  8250. weight: math.unit(4000, "lb"),
  8251. name: "Front (Transformed)",
  8252. image: {
  8253. source: "./media/characters/alexi/front-transformed.svg",
  8254. extra: 5345 / 5100,
  8255. bottom: 0.03
  8256. }
  8257. },
  8258. },
  8259. [
  8260. {
  8261. name: "Normal",
  8262. height: math.unit(3, "meters"),
  8263. default: true
  8264. },
  8265. {
  8266. name: "Minimacro",
  8267. height: math.unit(30, "meters")
  8268. },
  8269. {
  8270. name: "Macro",
  8271. height: math.unit(500, "meters")
  8272. },
  8273. {
  8274. name: "Megamacro",
  8275. height: math.unit(9000, "km")
  8276. },
  8277. {
  8278. name: "Teramacro",
  8279. height: math.unit(384000, "km")
  8280. },
  8281. ]
  8282. ))
  8283. characterMakers.push(() => makeCharacter(
  8284. { name: "Kayroo" },
  8285. {
  8286. front: {
  8287. height: math.unit(6, "feet"),
  8288. weight: math.unit(150, "lb"),
  8289. name: "Front",
  8290. image: {
  8291. source: "./media/characters/kayroo/front.svg",
  8292. extra: 1153 / 1038,
  8293. bottom: 0.06
  8294. }
  8295. },
  8296. foot: {
  8297. height: math.unit(6, "feet"),
  8298. weight: math.unit(150, "lb"),
  8299. name: "Foot",
  8300. image: {
  8301. source: "./media/characters/kayroo/foot.svg"
  8302. }
  8303. },
  8304. },
  8305. [
  8306. {
  8307. name: "Normal",
  8308. height: math.unit(8, "feet"),
  8309. default: true
  8310. },
  8311. {
  8312. name: "Minimacro",
  8313. height: math.unit(250, "feet")
  8314. },
  8315. {
  8316. name: "Macro",
  8317. height: math.unit(2800, "feet")
  8318. },
  8319. {
  8320. name: "Megamacro",
  8321. height: math.unit(5200, "feet")
  8322. },
  8323. {
  8324. name: "Gigamacro",
  8325. height: math.unit(27000, "feet")
  8326. },
  8327. {
  8328. name: "Omega",
  8329. height: math.unit(45000, "feet")
  8330. },
  8331. ]
  8332. ))
  8333. characterMakers.push(() => makeCharacter(
  8334. { name: "Rhys" },
  8335. {
  8336. front: {
  8337. height: math.unit(18, "feet"),
  8338. weight: math.unit(5800, "lb"),
  8339. name: "Front",
  8340. image: {
  8341. source: "./media/characters/rhys/front.svg",
  8342. extra: 3386 / 3090,
  8343. bottom: 0.07
  8344. }
  8345. },
  8346. },
  8347. [
  8348. {
  8349. name: "Normal",
  8350. height: math.unit(18, "feet"),
  8351. default: true
  8352. },
  8353. {
  8354. name: "Working Size",
  8355. height: math.unit(200, "feet")
  8356. },
  8357. {
  8358. name: "Demolition Size",
  8359. height: math.unit(2000, "feet")
  8360. },
  8361. {
  8362. name: "Maximum Licensed Size",
  8363. height: math.unit(5, "miles")
  8364. },
  8365. {
  8366. name: "Maximum Observed Size",
  8367. height: math.unit(10, "yottameters")
  8368. },
  8369. ]
  8370. ))
  8371. characterMakers.push(() => makeCharacter(
  8372. { name: "Toto" },
  8373. {
  8374. front: {
  8375. height: math.unit(6, "feet"),
  8376. weight: math.unit(250, "lb"),
  8377. name: "Front",
  8378. image: {
  8379. source: "./media/characters/toto/front.svg",
  8380. extra: 527 / 479,
  8381. bottom: 0.05
  8382. }
  8383. },
  8384. },
  8385. [
  8386. {
  8387. name: "Micro",
  8388. height: math.unit(3, "feet")
  8389. },
  8390. {
  8391. name: "Normal",
  8392. height: math.unit(10, "feet")
  8393. },
  8394. {
  8395. name: "Macro",
  8396. height: math.unit(150, "feet"),
  8397. default: true
  8398. },
  8399. {
  8400. name: "Megamacro",
  8401. height: math.unit(1200, "feet")
  8402. },
  8403. ]
  8404. ))
  8405. characterMakers.push(() => makeCharacter(
  8406. { name: "King" },
  8407. {
  8408. back: {
  8409. height: math.unit(6, "feet"),
  8410. weight: math.unit(150, "lb"),
  8411. name: "Back",
  8412. image: {
  8413. source: "./media/characters/king/back.svg"
  8414. }
  8415. },
  8416. },
  8417. [
  8418. {
  8419. name: "Micro",
  8420. height: math.unit(2, "inches")
  8421. },
  8422. {
  8423. name: "Normal",
  8424. height: math.unit(8, "feet")
  8425. },
  8426. {
  8427. name: "Macro",
  8428. height: math.unit(200, "feet"),
  8429. default: true
  8430. },
  8431. {
  8432. name: "Megamacro",
  8433. height: math.unit(50, "miles")
  8434. },
  8435. ]
  8436. ))
  8437. characterMakers.push(() => makeCharacter(
  8438. { name: "Cordite" },
  8439. {
  8440. anthro: {
  8441. height: math.unit(6 + 5 / 12, "feet"),
  8442. weight: math.unit(280, "lb"),
  8443. name: "Anthro",
  8444. image: {
  8445. source: "./media/characters/cordite/anthro.svg",
  8446. extra: 1986 / 1905,
  8447. bottom: 0.025
  8448. }
  8449. },
  8450. feral: {
  8451. height: math.unit(2, "feet"),
  8452. weight: math.unit(90, "lb"),
  8453. name: "Feral",
  8454. image: {
  8455. source: "./media/characters/cordite/feral.svg",
  8456. extra: 1260 / 755,
  8457. bottom: 0.05
  8458. }
  8459. },
  8460. },
  8461. [
  8462. {
  8463. name: "Normal",
  8464. height: math.unit(6 + 5 / 12, "feet"),
  8465. default: true
  8466. },
  8467. ]
  8468. ))
  8469. characterMakers.push(() => makeCharacter(
  8470. { name: "Pianostrong" },
  8471. {
  8472. front: {
  8473. height: math.unit(6, "feet"),
  8474. weight: math.unit(150, "lb"),
  8475. name: "Front",
  8476. image: {
  8477. source: "./media/characters/pianostrong/front.svg",
  8478. extra: 6577 / 6254,
  8479. bottom: 0.02
  8480. }
  8481. },
  8482. side: {
  8483. height: math.unit(6, "feet"),
  8484. weight: math.unit(150, "lb"),
  8485. name: "Side",
  8486. image: {
  8487. source: "./media/characters/pianostrong/side.svg",
  8488. extra: 6106 / 5730
  8489. }
  8490. },
  8491. back: {
  8492. height: math.unit(6, "feet"),
  8493. weight: math.unit(150, "lb"),
  8494. name: "Back",
  8495. image: {
  8496. source: "./media/characters/pianostrong/back.svg",
  8497. extra: 6085 / 5733,
  8498. bottom: 0.01
  8499. }
  8500. },
  8501. },
  8502. [
  8503. {
  8504. name: "Macro",
  8505. height: math.unit(100, "feet")
  8506. },
  8507. {
  8508. name: "Macro+",
  8509. height: math.unit(300, "feet"),
  8510. default: true
  8511. },
  8512. {
  8513. name: "Macro++",
  8514. height: math.unit(1000, "feet")
  8515. },
  8516. ]
  8517. ))
  8518. characterMakers.push(() => makeCharacter(
  8519. { name: "Kona" },
  8520. {
  8521. front: {
  8522. height: math.unit(6, "feet"),
  8523. weight: math.unit(150, "lb"),
  8524. name: "Front",
  8525. image: {
  8526. source: "./media/characters/kona/front.svg",
  8527. extra: 2960 / 2629,
  8528. bottom: 0.005
  8529. }
  8530. },
  8531. },
  8532. [
  8533. {
  8534. name: "Normal",
  8535. height: math.unit(11 + 8 / 12, "feet")
  8536. },
  8537. {
  8538. name: "Macro",
  8539. height: math.unit(850, "feet"),
  8540. default: true
  8541. },
  8542. {
  8543. name: "Macro+",
  8544. height: math.unit(1.5, "km"),
  8545. default: true
  8546. },
  8547. {
  8548. name: "Megamacro",
  8549. height: math.unit(80, "miles")
  8550. },
  8551. {
  8552. name: "Gigamacro",
  8553. height: math.unit(3500, "miles")
  8554. },
  8555. ]
  8556. ))
  8557. characterMakers.push(() => makeCharacter(
  8558. { name: "Levi" },
  8559. {
  8560. side: {
  8561. height: math.unit(1.9, "meters"),
  8562. weight: math.unit(326, "kg"),
  8563. name: "Side",
  8564. image: {
  8565. source: "./media/characters/levi/side.svg",
  8566. extra: 1704 / 1334,
  8567. bottom: 0.02
  8568. }
  8569. },
  8570. },
  8571. [
  8572. {
  8573. name: "Normal",
  8574. height: math.unit(1.9, "meters"),
  8575. default: true
  8576. },
  8577. {
  8578. name: "Macro",
  8579. height: math.unit(20, "meters")
  8580. },
  8581. {
  8582. name: "Macro+",
  8583. height: math.unit(200, "meters")
  8584. },
  8585. {
  8586. name: "Megamacro",
  8587. height: math.unit(2, "km")
  8588. },
  8589. {
  8590. name: "Megamacro+",
  8591. height: math.unit(20, "km")
  8592. },
  8593. {
  8594. name: "Gigamacro",
  8595. height: math.unit(2500, "km")
  8596. },
  8597. {
  8598. name: "Gigamacro+",
  8599. height: math.unit(120000, "km")
  8600. },
  8601. {
  8602. name: "Teramacro",
  8603. height: math.unit(7.77e6, "km")
  8604. },
  8605. ]
  8606. ))
  8607. characterMakers.push(() => makeCharacter(
  8608. { name: "BMC" },
  8609. {
  8610. front: {
  8611. height: math.unit(6 + 4 / 12, "feet"),
  8612. weight: math.unit(188, "lb"),
  8613. name: "Front",
  8614. image: {
  8615. source: "./media/characters/bmc/front.svg",
  8616. extra: 1067 / 1022,
  8617. bottom: 0.047
  8618. }
  8619. },
  8620. },
  8621. [
  8622. {
  8623. name: "Human-sized",
  8624. height: math.unit(6 + 4 / 12, "feet")
  8625. },
  8626. {
  8627. name: "Small",
  8628. height: math.unit(250, "feet")
  8629. },
  8630. {
  8631. name: "Normal",
  8632. height: math.unit(1250, "feet"),
  8633. default: true
  8634. },
  8635. {
  8636. name: "Good Day",
  8637. height: math.unit(88, "miles")
  8638. },
  8639. {
  8640. name: "Largest Measured Size",
  8641. height: math.unit(11.2e6, "lightyears")
  8642. },
  8643. ]
  8644. ))
  8645. characterMakers.push(() => makeCharacter(
  8646. { name: "Sven the Kaiju" },
  8647. {
  8648. front: {
  8649. height: math.unit(20, "feet"),
  8650. weight: math.unit(2016, "kg"),
  8651. name: "Front",
  8652. image: {
  8653. source: "./media/characters/sven-the-kaiju/front.svg",
  8654. extra: 1479 / 1449,
  8655. bottom: 0.05
  8656. }
  8657. },
  8658. },
  8659. [
  8660. {
  8661. name: "Fairy",
  8662. height: math.unit(6, "inches")
  8663. },
  8664. {
  8665. name: "Normal",
  8666. height: math.unit(20, "feet"),
  8667. default: true
  8668. },
  8669. {
  8670. name: "Rampage",
  8671. height: math.unit(200, "feet")
  8672. },
  8673. {
  8674. name: "Archfey Forest Guardian",
  8675. height: math.unit(1, "mile")
  8676. },
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "Marik" },
  8681. {
  8682. front: {
  8683. height: math.unit(4, "meters"),
  8684. weight: math.unit(2, "tons"),
  8685. name: "Front",
  8686. image: {
  8687. source: "./media/characters/marik/front.svg",
  8688. extra: 1057 / 1003,
  8689. bottom: 0.08
  8690. }
  8691. },
  8692. },
  8693. [
  8694. {
  8695. name: "Normal",
  8696. height: math.unit(4, "meters"),
  8697. default: true
  8698. },
  8699. {
  8700. name: "Macro",
  8701. height: math.unit(20, "meters")
  8702. },
  8703. {
  8704. name: "Megamacro",
  8705. height: math.unit(50, "km")
  8706. },
  8707. {
  8708. name: "Gigamacro",
  8709. height: math.unit(100, "km")
  8710. },
  8711. {
  8712. name: "Alpha Macro",
  8713. height: math.unit(7.88e7, "yottameters")
  8714. },
  8715. ]
  8716. ))
  8717. characterMakers.push(() => makeCharacter(
  8718. { name: "Mel" },
  8719. {
  8720. front: {
  8721. height: math.unit(6, "feet"),
  8722. weight: math.unit(110, "lb"),
  8723. name: "Front",
  8724. image: {
  8725. source: "./media/characters/mel/front.svg",
  8726. extra: 736 / 617,
  8727. bottom: 0.017
  8728. }
  8729. },
  8730. },
  8731. [
  8732. {
  8733. name: "Pico",
  8734. height: math.unit(3, "pm")
  8735. },
  8736. {
  8737. name: "Nano",
  8738. height: math.unit(3, "nm")
  8739. },
  8740. {
  8741. name: "Micro",
  8742. height: math.unit(0.3, "mm"),
  8743. default: true
  8744. },
  8745. {
  8746. name: "Micro+",
  8747. height: math.unit(3, "mm")
  8748. },
  8749. {
  8750. name: "Normal",
  8751. height: math.unit(5 + 10.5 / 12, "feet")
  8752. },
  8753. ]
  8754. ))
  8755. characterMakers.push(() => makeCharacter(
  8756. { name: "Lykonous" },
  8757. {
  8758. kaiju: {
  8759. height: math.unit(1.75, "meters"),
  8760. weight: math.unit(55, "kg"),
  8761. name: "Kaiju",
  8762. image: {
  8763. source: "./media/characters/lykonous/kaiju.svg",
  8764. extra: 1055 / 946,
  8765. bottom: 0.135
  8766. }
  8767. },
  8768. },
  8769. [
  8770. {
  8771. name: "Normal",
  8772. height: math.unit(2.5, "meters"),
  8773. default: true
  8774. },
  8775. {
  8776. name: "Kaiju Dragon",
  8777. height: math.unit(60, "meters")
  8778. },
  8779. {
  8780. name: "Mega Kaiju",
  8781. height: math.unit(120, "km")
  8782. },
  8783. {
  8784. name: "Giga Kaiju",
  8785. height: math.unit(200, "megameters")
  8786. },
  8787. {
  8788. name: "Terra Kaiju",
  8789. height: math.unit(400, "gigameters")
  8790. },
  8791. {
  8792. name: "Kaiju Dragon God",
  8793. height: math.unit(13000, "exaparsecs")
  8794. },
  8795. ]
  8796. ))
  8797. characterMakers.push(() => makeCharacter(
  8798. { name: "Blü" },
  8799. {
  8800. front: {
  8801. height: math.unit(6, "feet"),
  8802. weight: math.unit(150, "lb"),
  8803. name: "Front",
  8804. image: {
  8805. source: "./media/characters/blü/front.svg",
  8806. extra: 1883 / 1564,
  8807. bottom: 0.031
  8808. }
  8809. },
  8810. },
  8811. [
  8812. {
  8813. name: "Normal",
  8814. height: math.unit(13, "feet"),
  8815. default: true
  8816. },
  8817. {
  8818. name: "Big Boi",
  8819. height: math.unit(150, "meters")
  8820. },
  8821. {
  8822. name: "Mini Stomper",
  8823. height: math.unit(300, "meters")
  8824. },
  8825. {
  8826. name: "Macro",
  8827. height: math.unit(1000, "meters")
  8828. },
  8829. {
  8830. name: "Megamacro",
  8831. height: math.unit(11000, "meters")
  8832. },
  8833. {
  8834. name: "Gigamacro",
  8835. height: math.unit(11000, "km")
  8836. },
  8837. {
  8838. name: "Teramacro",
  8839. height: math.unit(420000, "km")
  8840. },
  8841. {
  8842. name: "Examacro",
  8843. height: math.unit(120, "parsecs")
  8844. },
  8845. {
  8846. name: "God Tho",
  8847. height: math.unit(98000000000, "parsecs")
  8848. },
  8849. ]
  8850. ))
  8851. characterMakers.push(() => makeCharacter(
  8852. { name: "Scales" },
  8853. {
  8854. taurFront: {
  8855. height: math.unit(6, "feet"),
  8856. weight: math.unit(200, "lb"),
  8857. name: "Taur (Front)",
  8858. image: {
  8859. source: "./media/characters/scales/taur-front.svg",
  8860. extra: 1,
  8861. bottom: 0.05
  8862. }
  8863. },
  8864. taurBack: {
  8865. height: math.unit(6, "feet"),
  8866. weight: math.unit(200, "lb"),
  8867. name: "Taur (Back)",
  8868. image: {
  8869. source: "./media/characters/scales/taur-back.svg",
  8870. extra: 1,
  8871. bottom: 0.08
  8872. }
  8873. },
  8874. anthro: {
  8875. height: math.unit(6 * 7 / 12, "feet"),
  8876. weight: math.unit(100, "lb"),
  8877. name: "Anthro",
  8878. image: {
  8879. source: "./media/characters/scales/anthro.svg",
  8880. extra: 1,
  8881. bottom: 0.06
  8882. }
  8883. },
  8884. },
  8885. [
  8886. {
  8887. name: "Normal",
  8888. height: math.unit(12, "feet"),
  8889. default: true
  8890. },
  8891. ]
  8892. ))
  8893. characterMakers.push(() => makeCharacter(
  8894. { name: "Koragos" },
  8895. {
  8896. front: {
  8897. height: math.unit(6, "feet"),
  8898. weight: math.unit(150, "lb"),
  8899. name: "Front",
  8900. image: {
  8901. source: "./media/characters/koragos/front.svg",
  8902. extra: 841 / 794,
  8903. bottom: 0.035
  8904. }
  8905. },
  8906. back: {
  8907. height: math.unit(6, "feet"),
  8908. weight: math.unit(150, "lb"),
  8909. name: "Back",
  8910. image: {
  8911. source: "./media/characters/koragos/back.svg",
  8912. extra: 841 / 810,
  8913. bottom: 0.022
  8914. }
  8915. },
  8916. },
  8917. [
  8918. {
  8919. name: "Normal",
  8920. height: math.unit(6 + 11 / 12, "feet"),
  8921. default: true
  8922. },
  8923. {
  8924. name: "Macro",
  8925. height: math.unit(490, "feet")
  8926. },
  8927. {
  8928. name: "Megamacro",
  8929. height: math.unit(10, "miles")
  8930. },
  8931. {
  8932. name: "Gigamacro",
  8933. height: math.unit(50, "miles")
  8934. },
  8935. ]
  8936. ))
  8937. characterMakers.push(() => makeCharacter(
  8938. { name: "Xylrem" },
  8939. {
  8940. front: {
  8941. height: math.unit(6, "feet"),
  8942. weight: math.unit(250, "lb"),
  8943. name: "Front",
  8944. image: {
  8945. source: "./media/characters/xylrem/front.svg",
  8946. extra: 3323 / 3050,
  8947. bottom: 0.065
  8948. }
  8949. },
  8950. },
  8951. [
  8952. {
  8953. name: "Micro",
  8954. height: math.unit(4, "feet")
  8955. },
  8956. {
  8957. name: "Normal",
  8958. height: math.unit(16, "feet"),
  8959. default: true
  8960. },
  8961. {
  8962. name: "Macro",
  8963. height: math.unit(2720, "feet")
  8964. },
  8965. {
  8966. name: "Megamacro",
  8967. height: math.unit(25000, "miles")
  8968. },
  8969. ]
  8970. ))
  8971. characterMakers.push(() => makeCharacter(
  8972. { name: "Ikideru" },
  8973. {
  8974. front: {
  8975. height: math.unit(8, "feet"),
  8976. weight: math.unit(250, "kg"),
  8977. name: "Front",
  8978. image: {
  8979. source: "./media/characters/ikideru/front.svg",
  8980. extra: 930 / 870,
  8981. bottom: 0.087
  8982. }
  8983. },
  8984. back: {
  8985. height: math.unit(8, "feet"),
  8986. weight: math.unit(250, "kg"),
  8987. name: "Back",
  8988. image: {
  8989. source: "./media/characters/ikideru/back.svg",
  8990. extra: 919 / 852,
  8991. bottom: 0.055
  8992. }
  8993. },
  8994. },
  8995. [
  8996. {
  8997. name: "Rare",
  8998. height: math.unit(8, "feet"),
  8999. default: true
  9000. },
  9001. {
  9002. name: "Playful Loom",
  9003. height: math.unit(80, "feet")
  9004. },
  9005. {
  9006. name: "City Leaner",
  9007. height: math.unit(230, "feet")
  9008. },
  9009. {
  9010. name: "Megamacro",
  9011. height: math.unit(2500, "feet")
  9012. },
  9013. {
  9014. name: "Gigamacro",
  9015. height: math.unit(26400, "feet")
  9016. },
  9017. {
  9018. name: "Tectonic Shifter",
  9019. height: math.unit(1.7, "megameters")
  9020. },
  9021. {
  9022. name: "Planet Carer",
  9023. height: math.unit(21, "megameters")
  9024. },
  9025. {
  9026. name: "God",
  9027. height: math.unit(11157.22, "parsecs")
  9028. },
  9029. ]
  9030. ))
  9031. characterMakers.push(() => makeCharacter(
  9032. { name: "Neo" },
  9033. {
  9034. front: {
  9035. height: math.unit(6, "feet"),
  9036. weight: math.unit(120, "lb"),
  9037. name: "Front",
  9038. image: {
  9039. source: "./media/characters/neo/front.svg"
  9040. }
  9041. },
  9042. },
  9043. [
  9044. {
  9045. name: "Micro",
  9046. height: math.unit(2, "inches"),
  9047. default: true
  9048. },
  9049. {
  9050. name: "Human Size",
  9051. height: math.unit(5 + 8 / 12, "feet")
  9052. },
  9053. ]
  9054. ))
  9055. characterMakers.push(() => makeCharacter(
  9056. { name: "Chauncey (Chantz)" },
  9057. {
  9058. front: {
  9059. height: math.unit(13 + 10 / 12, "feet"),
  9060. weight: math.unit(5320, "lb"),
  9061. name: "Front",
  9062. image: {
  9063. source: "./media/characters/chauncey-chantz/front.svg",
  9064. extra: 1587 / 1435,
  9065. bottom: 0.02
  9066. }
  9067. },
  9068. },
  9069. [
  9070. {
  9071. name: "Normal",
  9072. height: math.unit(13 + 10 / 12, "feet"),
  9073. default: true
  9074. },
  9075. {
  9076. name: "Macro",
  9077. height: math.unit(45, "feet")
  9078. },
  9079. {
  9080. name: "Megamacro",
  9081. height: math.unit(250, "miles")
  9082. },
  9083. {
  9084. name: "Planetary",
  9085. height: math.unit(10000, "miles")
  9086. },
  9087. {
  9088. name: "Galactic",
  9089. height: math.unit(40000, "parsecs")
  9090. },
  9091. {
  9092. name: "Universal",
  9093. height: math.unit(1, "yottameter")
  9094. },
  9095. ]
  9096. ))
  9097. characterMakers.push(() => makeCharacter(
  9098. { name: "Epifox" },
  9099. {
  9100. front: {
  9101. height: math.unit(6, "feet"),
  9102. weight: math.unit(150, "lb"),
  9103. name: "Front",
  9104. image: {
  9105. source: "./media/characters/epifox/front.svg",
  9106. extra: 1,
  9107. bottom: 0.075
  9108. }
  9109. },
  9110. },
  9111. [
  9112. {
  9113. name: "Micro",
  9114. height: math.unit(6, "inches")
  9115. },
  9116. {
  9117. name: "Normal",
  9118. height: math.unit(12, "feet"),
  9119. default: true
  9120. },
  9121. {
  9122. name: "Macro",
  9123. height: math.unit(3810, "feet")
  9124. },
  9125. {
  9126. name: "Megamacro",
  9127. height: math.unit(500, "miles")
  9128. },
  9129. ]
  9130. ))
  9131. characterMakers.push(() => makeCharacter(
  9132. { name: "Colin T." },
  9133. {
  9134. front: {
  9135. height: math.unit(1.8796, "m"),
  9136. weight: math.unit(230, "lb"),
  9137. name: "Front",
  9138. image: {
  9139. source: "./media/characters/colin-t/front.svg",
  9140. extra: 1272 / 1193,
  9141. bottom: 0.07
  9142. }
  9143. },
  9144. },
  9145. [
  9146. {
  9147. name: "Micro",
  9148. height: math.unit(0.571, "meters")
  9149. },
  9150. {
  9151. name: "Normal",
  9152. height: math.unit(1.8796, "meters"),
  9153. default: true
  9154. },
  9155. {
  9156. name: "Tall",
  9157. height: math.unit(4, "meters")
  9158. },
  9159. {
  9160. name: "Macro",
  9161. height: math.unit(67.241, "meters")
  9162. },
  9163. {
  9164. name: "Megamacro",
  9165. height: math.unit(371.856, "meters")
  9166. },
  9167. {
  9168. name: "Planetary",
  9169. height: math.unit(12631.5689, "km")
  9170. },
  9171. ]
  9172. ))
  9173. characterMakers.push(() => makeCharacter(
  9174. { name: "Matvei" },
  9175. {
  9176. front: {
  9177. height: math.unit(1.85, "meters"),
  9178. weight: math.unit(80, "kg"),
  9179. name: "Front",
  9180. image: {
  9181. source: "./media/characters/matvei/front.svg",
  9182. extra: 614 / 594,
  9183. bottom: 0.01
  9184. }
  9185. },
  9186. },
  9187. [
  9188. {
  9189. name: "Normal",
  9190. height: math.unit(1.85, "meters"),
  9191. default: true
  9192. },
  9193. ]
  9194. ))
  9195. characterMakers.push(() => makeCharacter(
  9196. { name: "Quincy" },
  9197. {
  9198. front: {
  9199. height: math.unit(5 + 9 / 12, "feet"),
  9200. weight: math.unit(70, "lb"),
  9201. name: "Front",
  9202. image: {
  9203. source: "./media/characters/quincy/front.svg",
  9204. extra: 3041 / 2751
  9205. }
  9206. },
  9207. back: {
  9208. height: math.unit(5 + 9 / 12, "feet"),
  9209. weight: math.unit(70, "lb"),
  9210. name: "Back",
  9211. image: {
  9212. source: "./media/characters/quincy/back.svg",
  9213. extra: 3041 / 2751
  9214. }
  9215. },
  9216. flying: {
  9217. height: math.unit(5 + 4 / 12, "feet"),
  9218. weight: math.unit(70, "lb"),
  9219. name: "Flying",
  9220. image: {
  9221. source: "./media/characters/quincy/flying.svg",
  9222. extra: 1044 / 930
  9223. }
  9224. },
  9225. },
  9226. [
  9227. {
  9228. name: "Micro",
  9229. height: math.unit(3, "cm")
  9230. },
  9231. {
  9232. name: "Normal",
  9233. height: math.unit(5 + 9 / 12, "feet")
  9234. },
  9235. {
  9236. name: "Macro",
  9237. height: math.unit(200, "meters"),
  9238. default: true
  9239. },
  9240. {
  9241. name: "Megamacro",
  9242. height: math.unit(1000, "meters")
  9243. },
  9244. ]
  9245. ))
  9246. characterMakers.push(() => makeCharacter(
  9247. { name: "Vanrel" },
  9248. {
  9249. front: {
  9250. height: math.unit(4 + 7 / 12, "feet"),
  9251. weight: math.unit(150, "lb"),
  9252. name: "Front",
  9253. image: {
  9254. source: "./media/characters/vanrel/front.svg",
  9255. extra: 1,
  9256. bottom: 0.02
  9257. }
  9258. },
  9259. elemental: {
  9260. height: math.unit(4 + 2/12, "feet"),
  9261. weight: math.unit(150, "lb"),
  9262. name: "Elemental",
  9263. image: {
  9264. source: "./media/characters/vanrel/elemental.svg"
  9265. }
  9266. },
  9267. side: {
  9268. height: math.unit(4 + 7 / 12, "feet"),
  9269. weight: math.unit(150, "lb"),
  9270. name: "Side",
  9271. image: {
  9272. source: "./media/characters/vanrel/side.svg",
  9273. extra: 1,
  9274. bottom: 0.025
  9275. }
  9276. },
  9277. tome: {
  9278. height: math.unit(1.35, "feet"),
  9279. weight: math.unit(10, "lb"),
  9280. name: "Vanrel's Tome",
  9281. rename: true,
  9282. image: {
  9283. source: "./media/characters/vanrel/tome.svg"
  9284. }
  9285. },
  9286. beans: {
  9287. height: math.unit(0.89, "feet"),
  9288. name: "Beans",
  9289. image: {
  9290. source: "./media/characters/vanrel/beans.svg"
  9291. }
  9292. },
  9293. },
  9294. [
  9295. {
  9296. name: "Normal",
  9297. height: math.unit(4 + 7 / 12, "feet"),
  9298. default: true
  9299. },
  9300. ]
  9301. ))
  9302. characterMakers.push(() => makeCharacter(
  9303. { name: "Kuiper Vanrel" },
  9304. {
  9305. front: {
  9306. height: math.unit(7 + 5 / 12, "feet"),
  9307. weight: math.unit(150, "lb"),
  9308. name: "Front",
  9309. image: {
  9310. source: "./media/characters/kuiper-vanrel/front.svg",
  9311. extra: 1118 / 1068,
  9312. bottom: 0.09
  9313. }
  9314. },
  9315. foot: {
  9316. height: math.unit(0.55, "meters"),
  9317. name: "Foot",
  9318. image: {
  9319. source: "./media/characters/kuiper-vanrel/foot.svg",
  9320. }
  9321. },
  9322. },
  9323. [
  9324. {
  9325. name: "Normal",
  9326. height: math.unit(7 + 5 / 12, "feet"),
  9327. default: true
  9328. },
  9329. ]
  9330. ))
  9331. characterMakers.push(() => makeCharacter(
  9332. { name: "Keset Vanrel" },
  9333. {
  9334. front: {
  9335. height: math.unit(8 + 5 / 12, "feet"),
  9336. weight: math.unit(150, "lb"),
  9337. name: "Front",
  9338. image: {
  9339. source: "./media/characters/keset-vanrel/front.svg",
  9340. extra: 1150 / 1084,
  9341. bottom: 0.05
  9342. }
  9343. },
  9344. hand: {
  9345. height: math.unit(0.6, "meters"),
  9346. name: "Hand",
  9347. image: {
  9348. source: "./media/characters/keset-vanrel/hand.svg"
  9349. }
  9350. },
  9351. foot: {
  9352. height: math.unit(0.94978, "meters"),
  9353. name: "Foot",
  9354. image: {
  9355. source: "./media/characters/keset-vanrel/foot.svg"
  9356. }
  9357. },
  9358. },
  9359. [
  9360. {
  9361. name: "Normal",
  9362. height: math.unit(8 + 5 / 12, "feet"),
  9363. default: true
  9364. },
  9365. ]
  9366. ))
  9367. characterMakers.push(() => makeCharacter(
  9368. { name: "Neos" },
  9369. {
  9370. front: {
  9371. height: math.unit(6, "feet"),
  9372. weight: math.unit(150, "lb"),
  9373. name: "Front",
  9374. image: {
  9375. source: "./media/characters/neos/front.svg",
  9376. extra: 1696 / 992,
  9377. bottom: 0.14
  9378. }
  9379. },
  9380. },
  9381. [
  9382. {
  9383. name: "Normal",
  9384. height: math.unit(54, "cm"),
  9385. default: true
  9386. },
  9387. {
  9388. name: "Macro",
  9389. height: math.unit(100, "m")
  9390. },
  9391. {
  9392. name: "Megamacro",
  9393. height: math.unit(10, "km")
  9394. },
  9395. {
  9396. name: "Megamacro+",
  9397. height: math.unit(100, "km")
  9398. },
  9399. {
  9400. name: "Gigamacro",
  9401. height: math.unit(100, "Mm")
  9402. },
  9403. {
  9404. name: "Teramacro",
  9405. height: math.unit(100, "Gm")
  9406. },
  9407. {
  9408. name: "Examacro",
  9409. height: math.unit(100, "Em")
  9410. },
  9411. {
  9412. name: "Godly",
  9413. height: math.unit(10000, "Ym")
  9414. },
  9415. {
  9416. name: "Beyond Godly",
  9417. height: math.unit(10000000, "Ym")
  9418. },
  9419. ]
  9420. ))
  9421. characterMakers.push(() => makeCharacter(
  9422. { name: "Sammy Mouse" },
  9423. {
  9424. feminine: {
  9425. height: math.unit(5, "feet"),
  9426. weight: math.unit(100, "lb"),
  9427. name: "Feminine",
  9428. image: {
  9429. source: "./media/characters/sammy-mouse/feminine.svg",
  9430. extra: 2526 / 2425,
  9431. bottom: 0.123
  9432. }
  9433. },
  9434. masculine: {
  9435. height: math.unit(5, "feet"),
  9436. weight: math.unit(100, "lb"),
  9437. name: "Masculine",
  9438. image: {
  9439. source: "./media/characters/sammy-mouse/masculine.svg",
  9440. extra: 2526 / 2425,
  9441. bottom: 0.123
  9442. }
  9443. },
  9444. },
  9445. [
  9446. {
  9447. name: "Micro",
  9448. height: math.unit(5, "inches")
  9449. },
  9450. {
  9451. name: "Normal",
  9452. height: math.unit(5, "feet"),
  9453. default: true
  9454. },
  9455. {
  9456. name: "Macro",
  9457. height: math.unit(60, "feet")
  9458. },
  9459. ]
  9460. ))
  9461. characterMakers.push(() => makeCharacter(
  9462. { name: "Kole" },
  9463. {
  9464. front: {
  9465. height: math.unit(4, "feet"),
  9466. weight: math.unit(50, "lb"),
  9467. name: "Front",
  9468. image: {
  9469. source: "./media/characters/kole/front.svg",
  9470. extra: 1423 / 1303,
  9471. bottom: 0.025
  9472. }
  9473. },
  9474. back: {
  9475. height: math.unit(4, "feet"),
  9476. weight: math.unit(50, "lb"),
  9477. name: "Back",
  9478. image: {
  9479. source: "./media/characters/kole/back.svg",
  9480. extra: 1426 / 1280,
  9481. bottom: 0.02
  9482. }
  9483. },
  9484. },
  9485. [
  9486. {
  9487. name: "Normal",
  9488. height: math.unit(4, "feet"),
  9489. default: true
  9490. },
  9491. ]
  9492. ))
  9493. characterMakers.push(() => makeCharacter(
  9494. { name: "Rufran" },
  9495. {
  9496. front: {
  9497. height: math.unit(2 + 6 / 12, "feet"),
  9498. weight: math.unit(20, "lb"),
  9499. name: "Front",
  9500. image: {
  9501. source: "./media/characters/rufran/front.svg",
  9502. extra: 2041 / 1839,
  9503. bottom: 0.055
  9504. }
  9505. },
  9506. back: {
  9507. height: math.unit(2 + 6 / 12, "feet"),
  9508. weight: math.unit(20, "lb"),
  9509. name: "Back",
  9510. image: {
  9511. source: "./media/characters/rufran/back.svg",
  9512. extra: 2054 / 1839,
  9513. bottom: 0.01
  9514. }
  9515. },
  9516. hand: {
  9517. height: math.unit(0.2166, "meters"),
  9518. name: "Hand",
  9519. image: {
  9520. source: "./media/characters/rufran/hand.svg"
  9521. }
  9522. },
  9523. foot: {
  9524. height: math.unit(0.185, "meters"),
  9525. name: "Foot",
  9526. image: {
  9527. source: "./media/characters/rufran/foot.svg"
  9528. }
  9529. },
  9530. },
  9531. [
  9532. {
  9533. name: "Micro",
  9534. height: math.unit(1, "inch")
  9535. },
  9536. {
  9537. name: "Normal",
  9538. height: math.unit(2 + 6 / 12, "feet"),
  9539. default: true
  9540. },
  9541. {
  9542. name: "Big",
  9543. height: math.unit(60, "feet")
  9544. },
  9545. {
  9546. name: "Macro",
  9547. height: math.unit(325, "feet")
  9548. },
  9549. ]
  9550. ))
  9551. characterMakers.push(() => makeCharacter(
  9552. { name: "Chip" },
  9553. {
  9554. front: {
  9555. height: math.unit(0.3, "meters"),
  9556. weight: math.unit(3.5, "kg"),
  9557. name: "Front",
  9558. image: {
  9559. source: "./media/characters/chip/front.svg",
  9560. extra: 748 / 674
  9561. }
  9562. },
  9563. },
  9564. [
  9565. {
  9566. name: "Micro",
  9567. height: math.unit(1, "inch"),
  9568. default: true
  9569. },
  9570. ]
  9571. ))
  9572. characterMakers.push(() => makeCharacter(
  9573. { name: "Torvid" },
  9574. {
  9575. side: {
  9576. height: math.unit(2.3, "meters"),
  9577. weight: math.unit(3500, "lb"),
  9578. name: "Side",
  9579. image: {
  9580. source: "./media/characters/torvid/side.svg",
  9581. extra: 1972 / 722,
  9582. bottom: 0.035
  9583. }
  9584. },
  9585. },
  9586. [
  9587. {
  9588. name: "Normal",
  9589. height: math.unit(2.3, "meters"),
  9590. default: true
  9591. },
  9592. ]
  9593. ))
  9594. characterMakers.push(() => makeCharacter(
  9595. { name: "Susan" },
  9596. {
  9597. front: {
  9598. height: math.unit(2, "meters"),
  9599. weight: math.unit(150.5, "kg"),
  9600. name: "Front",
  9601. image: {
  9602. source: "./media/characters/susan/front.svg",
  9603. extra: 693 / 635,
  9604. bottom: 0.05
  9605. }
  9606. },
  9607. },
  9608. [
  9609. {
  9610. name: "Megamacro",
  9611. height: math.unit(505, "miles"),
  9612. default: true
  9613. },
  9614. ]
  9615. ))
  9616. characterMakers.push(() => makeCharacter(
  9617. { name: "Raindrops" },
  9618. {
  9619. front: {
  9620. height: math.unit(6, "feet"),
  9621. weight: math.unit(150, "lb"),
  9622. name: "Front",
  9623. image: {
  9624. source: "./media/characters/raindrops/front.svg",
  9625. extra: 2655 / 2461,
  9626. bottom: 0.02
  9627. }
  9628. },
  9629. back: {
  9630. height: math.unit(6, "feet"),
  9631. weight: math.unit(150, "lb"),
  9632. name: "Back",
  9633. image: {
  9634. source: "./media/characters/raindrops/back.svg",
  9635. extra: 2574 / 2400,
  9636. bottom: 0.03
  9637. }
  9638. },
  9639. },
  9640. [
  9641. {
  9642. name: "Micro",
  9643. height: math.unit(6, "inches")
  9644. },
  9645. {
  9646. name: "Normal",
  9647. height: math.unit(6 + 2 / 12, "feet")
  9648. },
  9649. {
  9650. name: "Macro",
  9651. height: math.unit(131, "feet"),
  9652. default: true
  9653. },
  9654. {
  9655. name: "Megamacro",
  9656. height: math.unit(15, "miles")
  9657. },
  9658. {
  9659. name: "Gigamacro",
  9660. height: math.unit(4000, "miles")
  9661. },
  9662. {
  9663. name: "Teramacro",
  9664. height: math.unit(315000, "miles")
  9665. },
  9666. ]
  9667. ))
  9668. characterMakers.push(() => makeCharacter(
  9669. { name: "Tezwa" },
  9670. {
  9671. front: {
  9672. height: math.unit(2.794, "meters"),
  9673. weight: math.unit(325, "kg"),
  9674. name: "Front",
  9675. image: {
  9676. source: "./media/characters/tezwa/front.svg",
  9677. extra: 2083 / 1906,
  9678. bottom: 0.031
  9679. }
  9680. },
  9681. foot: {
  9682. height: math.unit(0.687, "meters"),
  9683. name: "Foot",
  9684. image: {
  9685. source: "./media/characters/tezwa/foot.svg"
  9686. }
  9687. },
  9688. },
  9689. [
  9690. {
  9691. name: "Normal",
  9692. height: math.unit(9 + 2 / 12, "feet"),
  9693. default: true
  9694. },
  9695. ]
  9696. ))
  9697. characterMakers.push(() => makeCharacter(
  9698. { name: "Typhus" },
  9699. {
  9700. front: {
  9701. height: math.unit(58, "feet"),
  9702. weight: math.unit(89000, "lb"),
  9703. name: "Front",
  9704. image: {
  9705. source: "./media/characters/typhus/front.svg",
  9706. extra: 816 / 800,
  9707. bottom: 0.065
  9708. }
  9709. },
  9710. },
  9711. [
  9712. {
  9713. name: "Macro",
  9714. height: math.unit(58, "feet"),
  9715. default: true
  9716. },
  9717. ]
  9718. ))
  9719. characterMakers.push(() => makeCharacter(
  9720. { name: "Lyra Von Wulf" },
  9721. {
  9722. front: {
  9723. height: math.unit(12, "feet"),
  9724. weight: math.unit(6, "tonnes"),
  9725. name: "Front",
  9726. image: {
  9727. source: "./media/characters/lyra-von-wulf/front.svg",
  9728. extra: 1,
  9729. bottom: 0.10
  9730. }
  9731. },
  9732. frontMecha: {
  9733. height: math.unit(12, "feet"),
  9734. weight: math.unit(12, "tonnes"),
  9735. name: "Front (Mecha)",
  9736. image: {
  9737. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  9738. extra: 1,
  9739. bottom: 0.042
  9740. }
  9741. },
  9742. maw: {
  9743. height: math.unit(2.2, "feet"),
  9744. name: "Maw",
  9745. image: {
  9746. source: "./media/characters/lyra-von-wulf/maw.svg"
  9747. }
  9748. },
  9749. },
  9750. [
  9751. {
  9752. name: "Normal",
  9753. height: math.unit(12, "feet"),
  9754. default: true
  9755. },
  9756. {
  9757. name: "Classic",
  9758. height: math.unit(50, "feet")
  9759. },
  9760. {
  9761. name: "Macro",
  9762. height: math.unit(500, "feet")
  9763. },
  9764. {
  9765. name: "Megamacro",
  9766. height: math.unit(1, "mile")
  9767. },
  9768. {
  9769. name: "Gigamacro",
  9770. height: math.unit(400, "miles")
  9771. },
  9772. {
  9773. name: "Teramacro",
  9774. height: math.unit(22000, "miles")
  9775. },
  9776. {
  9777. name: "Solarmacro",
  9778. height: math.unit(8600000, "miles")
  9779. },
  9780. {
  9781. name: "Galactic",
  9782. height: math.unit(1057000, "lightyears")
  9783. },
  9784. ]
  9785. ))
  9786. characterMakers.push(() => makeCharacter(
  9787. { name: "Dixon" },
  9788. {
  9789. front: {
  9790. height: math.unit(6 + 10 / 12, "feet"),
  9791. weight: math.unit(150, "lb"),
  9792. name: "Front",
  9793. image: {
  9794. source: "./media/characters/dixon/front.svg",
  9795. extra: 3361 / 3209,
  9796. bottom: 0.01
  9797. }
  9798. },
  9799. },
  9800. [
  9801. {
  9802. name: "Normal",
  9803. height: math.unit(6 + 10 / 12, "feet"),
  9804. default: true
  9805. },
  9806. {
  9807. name: "Big",
  9808. height: math.unit(12, "meters")
  9809. },
  9810. {
  9811. name: "Macro",
  9812. height: math.unit(500, "meters")
  9813. },
  9814. {
  9815. name: "Megamacro",
  9816. height: math.unit(2, "km")
  9817. },
  9818. ]
  9819. ))
  9820. characterMakers.push(() => makeCharacter(
  9821. { name: "Kauko" },
  9822. {
  9823. front: {
  9824. height: math.unit(185, "cm"),
  9825. weight: math.unit(68, "kg"),
  9826. name: "Front",
  9827. image: {
  9828. source: "./media/characters/kauko/front.svg",
  9829. extra: 1455 / 1421,
  9830. bottom: 0.03
  9831. }
  9832. },
  9833. back: {
  9834. height: math.unit(185, "cm"),
  9835. weight: math.unit(68, "kg"),
  9836. name: "Back",
  9837. image: {
  9838. source: "./media/characters/kauko/back.svg",
  9839. extra: 1455 / 1421,
  9840. bottom: 0.004
  9841. }
  9842. },
  9843. },
  9844. [
  9845. {
  9846. name: "Normal",
  9847. height: math.unit(185, "cm"),
  9848. default: true
  9849. },
  9850. ]
  9851. ))
  9852. characterMakers.push(() => makeCharacter(
  9853. { name: "Varg" },
  9854. {
  9855. front: {
  9856. height: math.unit(6, "feet"),
  9857. weight: math.unit(150, "kg"),
  9858. name: "Front",
  9859. image: {
  9860. source: "./media/characters/varg/front.svg",
  9861. extra: 1108 / 1018,
  9862. bottom: 0.0375
  9863. }
  9864. },
  9865. },
  9866. [
  9867. {
  9868. name: "Normal",
  9869. height: math.unit(5, "meters")
  9870. },
  9871. {
  9872. name: "Macro",
  9873. height: math.unit(200, "meters")
  9874. },
  9875. {
  9876. name: "Megamacro",
  9877. height: math.unit(20, "kilometers")
  9878. },
  9879. {
  9880. name: "True Size",
  9881. height: math.unit(211, "km"),
  9882. default: true
  9883. },
  9884. {
  9885. name: "Gigamacro",
  9886. height: math.unit(1000, "km")
  9887. },
  9888. {
  9889. name: "Gigamacro+",
  9890. height: math.unit(8000, "km")
  9891. },
  9892. {
  9893. name: "Teramacro",
  9894. height: math.unit(1000000, "km")
  9895. },
  9896. ]
  9897. ))
  9898. characterMakers.push(() => makeCharacter(
  9899. { name: "Dayza" },
  9900. {
  9901. front: {
  9902. height: math.unit(7 + 7 / 12, "feet"),
  9903. weight: math.unit(267, "lb"),
  9904. name: "Front",
  9905. image: {
  9906. source: "./media/characters/dayza/front.svg",
  9907. extra: 1262 / 1200,
  9908. bottom: 0.035
  9909. }
  9910. },
  9911. side: {
  9912. height: math.unit(7 + 7 / 12, "feet"),
  9913. weight: math.unit(267, "lb"),
  9914. name: "Side",
  9915. image: {
  9916. source: "./media/characters/dayza/side.svg",
  9917. extra: 1295 / 1245,
  9918. bottom: 0.05
  9919. }
  9920. },
  9921. back: {
  9922. height: math.unit(7 + 7 / 12, "feet"),
  9923. weight: math.unit(267, "lb"),
  9924. name: "Back",
  9925. image: {
  9926. source: "./media/characters/dayza/back.svg",
  9927. extra: 1241 / 1170
  9928. }
  9929. },
  9930. },
  9931. [
  9932. {
  9933. name: "Normal",
  9934. height: math.unit(7 + 7 / 12, "feet"),
  9935. default: true
  9936. },
  9937. {
  9938. name: "Macro",
  9939. height: math.unit(155, "feet")
  9940. },
  9941. ]
  9942. ))
  9943. characterMakers.push(() => makeCharacter(
  9944. { name: "Xanthos" },
  9945. {
  9946. front: {
  9947. height: math.unit(6 + 5 / 12, "feet"),
  9948. weight: math.unit(160, "lb"),
  9949. name: "Front",
  9950. image: {
  9951. source: "./media/characters/xanthos/front.svg",
  9952. extra: 1,
  9953. bottom: 0.04
  9954. }
  9955. },
  9956. back: {
  9957. height: math.unit(6 + 5 / 12, "feet"),
  9958. weight: math.unit(160, "lb"),
  9959. name: "Back",
  9960. image: {
  9961. source: "./media/characters/xanthos/back.svg",
  9962. extra: 1,
  9963. bottom: 0.03
  9964. }
  9965. },
  9966. hand: {
  9967. height: math.unit(0.928, "feet"),
  9968. name: "Hand",
  9969. image: {
  9970. source: "./media/characters/xanthos/hand.svg"
  9971. }
  9972. },
  9973. foot: {
  9974. height: math.unit(1.286, "feet"),
  9975. name: "Foot",
  9976. image: {
  9977. source: "./media/characters/xanthos/foot.svg"
  9978. }
  9979. },
  9980. },
  9981. [
  9982. {
  9983. name: "Normal",
  9984. height: math.unit(6 + 5 / 12, "feet"),
  9985. default: true
  9986. },
  9987. {
  9988. name: "Normal+",
  9989. height: math.unit(6, "meters")
  9990. },
  9991. {
  9992. name: "Macro",
  9993. height: math.unit(40, "feet")
  9994. },
  9995. {
  9996. name: "Macro+",
  9997. height: math.unit(200, "meters")
  9998. },
  9999. {
  10000. name: "Megamacro",
  10001. height: math.unit(20, "km")
  10002. },
  10003. {
  10004. name: "Megamacro+",
  10005. height: math.unit(100, "km")
  10006. },
  10007. ]
  10008. ))
  10009. characterMakers.push(() => makeCharacter(
  10010. { name: "Grynn" },
  10011. {
  10012. front: {
  10013. height: math.unit(6 + 3 / 12, "feet"),
  10014. weight: math.unit(215, "lb"),
  10015. name: "Front",
  10016. image: {
  10017. source: "./media/characters/grynn/front.svg",
  10018. extra: 4627 / 4209,
  10019. bottom: 0.047
  10020. }
  10021. },
  10022. },
  10023. [
  10024. {
  10025. name: "Micro",
  10026. height: math.unit(6, "inches")
  10027. },
  10028. {
  10029. name: "Normal",
  10030. height: math.unit(6 + 3 / 12, "feet"),
  10031. default: true
  10032. },
  10033. {
  10034. name: "Big",
  10035. height: math.unit(104, "feet")
  10036. },
  10037. {
  10038. name: "Macro",
  10039. height: math.unit(944, "feet")
  10040. },
  10041. {
  10042. name: "Macro+",
  10043. height: math.unit(9480, "feet")
  10044. },
  10045. {
  10046. name: "Megamacro",
  10047. height: math.unit(78752, "feet")
  10048. },
  10049. {
  10050. name: "Megamacro+",
  10051. height: math.unit(630128, "feet")
  10052. },
  10053. {
  10054. name: "Megamacro++",
  10055. height: math.unit(3150695, "feet")
  10056. },
  10057. ]
  10058. ))
  10059. characterMakers.push(() => makeCharacter(
  10060. { name: "Mocha Aura" },
  10061. {
  10062. front: {
  10063. height: math.unit(7 + 5 / 12, "feet"),
  10064. weight: math.unit(450, "lb"),
  10065. name: "Front",
  10066. image: {
  10067. source: "./media/characters/mocha-aura/front.svg",
  10068. extra: 1907 / 1817,
  10069. bottom: 0.04
  10070. }
  10071. },
  10072. back: {
  10073. height: math.unit(7 + 5 / 12, "feet"),
  10074. weight: math.unit(450, "lb"),
  10075. name: "Back",
  10076. image: {
  10077. source: "./media/characters/mocha-aura/back.svg",
  10078. extra: 1900 / 1825,
  10079. bottom: 0.045
  10080. }
  10081. },
  10082. },
  10083. [
  10084. {
  10085. name: "Nano",
  10086. height: math.unit(1, "nm")
  10087. },
  10088. {
  10089. name: "Megamicro",
  10090. height: math.unit(1, "mm")
  10091. },
  10092. {
  10093. name: "Micro",
  10094. height: math.unit(3, "inches")
  10095. },
  10096. {
  10097. name: "Normal",
  10098. height: math.unit(7 + 5 / 12, "feet"),
  10099. default: true
  10100. },
  10101. {
  10102. name: "Macro",
  10103. height: math.unit(30, "feet")
  10104. },
  10105. {
  10106. name: "Megamacro",
  10107. height: math.unit(3500, "feet")
  10108. },
  10109. {
  10110. name: "Teramacro",
  10111. height: math.unit(500000, "miles")
  10112. },
  10113. {
  10114. name: "Petamacro",
  10115. height: math.unit(50000000000000000, "parsecs")
  10116. },
  10117. ]
  10118. ))
  10119. characterMakers.push(() => makeCharacter(
  10120. { name: "Ilisha Devya" },
  10121. {
  10122. front: {
  10123. height: math.unit(6, "feet"),
  10124. weight: math.unit(150, "lb"),
  10125. name: "Front",
  10126. image: {
  10127. source: "./media/characters/ilisha-devya/front.svg",
  10128. extra: 1,
  10129. bottom: 0.175
  10130. }
  10131. },
  10132. back: {
  10133. height: math.unit(6, "feet"),
  10134. weight: math.unit(150, "lb"),
  10135. name: "Back",
  10136. image: {
  10137. source: "./media/characters/ilisha-devya/back.svg",
  10138. extra: 1,
  10139. bottom: 0.015
  10140. }
  10141. },
  10142. },
  10143. [
  10144. {
  10145. name: "Macro",
  10146. height: math.unit(500, "feet"),
  10147. default: true
  10148. },
  10149. {
  10150. name: "Megamacro",
  10151. height: math.unit(10, "miles")
  10152. },
  10153. {
  10154. name: "Gigamacro",
  10155. height: math.unit(100000, "miles")
  10156. },
  10157. {
  10158. name: "Examacro",
  10159. height: math.unit(1e9, "lightyears")
  10160. },
  10161. {
  10162. name: "Omniversal",
  10163. height: math.unit(1e33, "lightyears")
  10164. },
  10165. {
  10166. name: "Beyond Infinite",
  10167. height: math.unit(1e100, "lightyears")
  10168. },
  10169. ]
  10170. ))
  10171. characterMakers.push(() => makeCharacter(
  10172. { name: "Mira" },
  10173. {
  10174. Side: {
  10175. height: math.unit(6, "feet"),
  10176. weight: math.unit(150, "lb"),
  10177. name: "Side",
  10178. image: {
  10179. source: "./media/characters/mira/side.svg",
  10180. extra: 900 / 799,
  10181. bottom: 0.02
  10182. }
  10183. },
  10184. },
  10185. [
  10186. {
  10187. name: "Human Size",
  10188. height: math.unit(6, "feet")
  10189. },
  10190. {
  10191. name: "Macro",
  10192. height: math.unit(100, "feet"),
  10193. default: true
  10194. },
  10195. {
  10196. name: "Megamacro",
  10197. height: math.unit(10, "miles")
  10198. },
  10199. {
  10200. name: "Gigamacro",
  10201. height: math.unit(25000, "miles")
  10202. },
  10203. {
  10204. name: "Teramacro",
  10205. height: math.unit(300, "AU")
  10206. },
  10207. {
  10208. name: "Full Size",
  10209. height: math.unit(4.5e10, "lightyears")
  10210. },
  10211. ]
  10212. ))
  10213. characterMakers.push(() => makeCharacter(
  10214. { name: "Holly" },
  10215. {
  10216. front: {
  10217. height: math.unit(6, "feet"),
  10218. weight: math.unit(150, "lb"),
  10219. name: "Front",
  10220. image: {
  10221. source: "./media/characters/holly/front.svg",
  10222. extra: 639 / 606
  10223. }
  10224. },
  10225. back: {
  10226. height: math.unit(6, "feet"),
  10227. weight: math.unit(150, "lb"),
  10228. name: "Back",
  10229. image: {
  10230. source: "./media/characters/holly/back.svg",
  10231. extra: 623 / 598
  10232. }
  10233. },
  10234. frontWorking: {
  10235. height: math.unit(6, "feet"),
  10236. weight: math.unit(150, "lb"),
  10237. name: "Front (Working)",
  10238. image: {
  10239. source: "./media/characters/holly/front-working.svg",
  10240. extra: 607 / 577,
  10241. bottom: 0.048
  10242. }
  10243. },
  10244. },
  10245. [
  10246. {
  10247. name: "Normal",
  10248. height: math.unit(12 + 3 / 12, "feet"),
  10249. default: true
  10250. },
  10251. ]
  10252. ))
  10253. characterMakers.push(() => makeCharacter(
  10254. { name: "Porter" },
  10255. {
  10256. front: {
  10257. height: math.unit(6, "feet"),
  10258. weight: math.unit(150, "lb"),
  10259. name: "Front",
  10260. image: {
  10261. source: "./media/characters/porter/front.svg",
  10262. extra: 1,
  10263. bottom: 0.01
  10264. }
  10265. },
  10266. frontRobes: {
  10267. height: math.unit(6, "feet"),
  10268. weight: math.unit(150, "lb"),
  10269. name: "Front (Robes)",
  10270. image: {
  10271. source: "./media/characters/porter/front-robes.svg",
  10272. extra: 1.01,
  10273. bottom: 0.01
  10274. }
  10275. },
  10276. },
  10277. [
  10278. {
  10279. name: "Normal",
  10280. height: math.unit(11 + 9 / 12, "feet"),
  10281. default: true
  10282. },
  10283. ]
  10284. ))
  10285. characterMakers.push(() => makeCharacter(
  10286. { name: "Lucy" },
  10287. {
  10288. legendary: {
  10289. height: math.unit(6, "feet"),
  10290. weight: math.unit(150, "lb"),
  10291. name: "Legendary",
  10292. image: {
  10293. source: "./media/characters/lucy/legendary.svg",
  10294. extra: 1355 / 1100,
  10295. bottom: 0.045
  10296. }
  10297. },
  10298. },
  10299. [
  10300. {
  10301. name: "Legendary",
  10302. height: math.unit(86882 * 2, "miles"),
  10303. default: true
  10304. },
  10305. ]
  10306. ))
  10307. characterMakers.push(() => makeCharacter(
  10308. { name: "Drusilla" },
  10309. {
  10310. front: {
  10311. height: math.unit(6, "feet"),
  10312. weight: math.unit(150, "lb"),
  10313. name: "Front",
  10314. image: {
  10315. source: "./media/characters/drusilla/front.svg",
  10316. extra: 678 / 635,
  10317. bottom: 0.03
  10318. }
  10319. },
  10320. back: {
  10321. height: math.unit(6, "feet"),
  10322. weight: math.unit(150, "lb"),
  10323. name: "Back",
  10324. image: {
  10325. source: "./media/characters/drusilla/back.svg",
  10326. extra: 678 / 635,
  10327. bottom: 0.005
  10328. }
  10329. },
  10330. },
  10331. [
  10332. {
  10333. name: "Macro",
  10334. height: math.unit(100, "feet")
  10335. },
  10336. {
  10337. name: "Canon Height",
  10338. height: math.unit(2000, "feet"),
  10339. default: true
  10340. },
  10341. ]
  10342. ))
  10343. characterMakers.push(() => makeCharacter(
  10344. { name: "Renard Thatch" },
  10345. {
  10346. front: {
  10347. height: math.unit(6, "feet"),
  10348. weight: math.unit(180, "lb"),
  10349. name: "Front",
  10350. image: {
  10351. source: "./media/characters/renard-thatch/front.svg",
  10352. extra: 2411 / 2275,
  10353. bottom: 0.01
  10354. }
  10355. },
  10356. frontPosing: {
  10357. height: math.unit(6, "feet"),
  10358. weight: math.unit(180, "lb"),
  10359. name: "Front (Posing)",
  10360. image: {
  10361. source: "./media/characters/renard-thatch/front-posing.svg",
  10362. extra: 2381 / 2261,
  10363. bottom: 0.01
  10364. }
  10365. },
  10366. back: {
  10367. height: math.unit(6, "feet"),
  10368. weight: math.unit(180, "lb"),
  10369. name: "Back",
  10370. image: {
  10371. source: "./media/characters/renard-thatch/back.svg",
  10372. extra: 2428 / 2288
  10373. }
  10374. },
  10375. },
  10376. [
  10377. {
  10378. name: "Micro",
  10379. height: math.unit(3, "inches")
  10380. },
  10381. {
  10382. name: "Default",
  10383. height: math.unit(6, "feet"),
  10384. default: true
  10385. },
  10386. {
  10387. name: "Macro",
  10388. height: math.unit(75, "feet")
  10389. },
  10390. ]
  10391. ))
  10392. characterMakers.push(() => makeCharacter(
  10393. { name: "Sekvra" },
  10394. {
  10395. front: {
  10396. height: math.unit(1450, "feet"),
  10397. weight: math.unit(1.21e6, "tons"),
  10398. name: "Front",
  10399. image: {
  10400. source: "./media/characters/sekvra/front.svg",
  10401. extra: 1,
  10402. bottom: 0.03
  10403. }
  10404. },
  10405. frontClothed: {
  10406. height: math.unit(1450, "feet"),
  10407. weight: math.unit(1.21e6, "tons"),
  10408. name: "Front (Clothed)",
  10409. image: {
  10410. source: "./media/characters/sekvra/front-clothed.svg",
  10411. extra: 1,
  10412. bottom: 0.03
  10413. }
  10414. },
  10415. side: {
  10416. height: math.unit(1450, "feet"),
  10417. weight: math.unit(1.21e6, "tons"),
  10418. name: "Side",
  10419. image: {
  10420. source: "./media/characters/sekvra/side.svg",
  10421. extra: 1,
  10422. bottom: 0.025
  10423. }
  10424. },
  10425. back: {
  10426. height: math.unit(1450, "feet"),
  10427. weight: math.unit(1.21e6, "tons"),
  10428. name: "Back",
  10429. image: {
  10430. source: "./media/characters/sekvra/back.svg",
  10431. extra: 1,
  10432. bottom: 0.005
  10433. }
  10434. },
  10435. },
  10436. [
  10437. {
  10438. name: "Macro",
  10439. height: math.unit(1450, "feet"),
  10440. default: true
  10441. },
  10442. {
  10443. name: "Megamacro",
  10444. height: math.unit(15000, "feet")
  10445. },
  10446. ]
  10447. ))
  10448. characterMakers.push(() => makeCharacter(
  10449. { name: "Carmine" },
  10450. {
  10451. front: {
  10452. height: math.unit(6, "feet"),
  10453. weight: math.unit(150, "lb"),
  10454. name: "Front",
  10455. image: {
  10456. source: "./media/characters/carmine/front.svg",
  10457. extra: 1,
  10458. bottom: 0.035
  10459. }
  10460. },
  10461. frontArmor: {
  10462. height: math.unit(6, "feet"),
  10463. weight: math.unit(150, "lb"),
  10464. name: "Front (Armor)",
  10465. image: {
  10466. source: "./media/characters/carmine/front-armor.svg",
  10467. extra: 1,
  10468. bottom: 0.035
  10469. }
  10470. },
  10471. },
  10472. [
  10473. {
  10474. name: "Large",
  10475. height: math.unit(1, "mile")
  10476. },
  10477. {
  10478. name: "Huge",
  10479. height: math.unit(40, "miles"),
  10480. default: true
  10481. },
  10482. {
  10483. name: "Colossal",
  10484. height: math.unit(2500, "miles")
  10485. },
  10486. ]
  10487. ))
  10488. characterMakers.push(() => makeCharacter(
  10489. { name: "Elyssia" },
  10490. {
  10491. front: {
  10492. height: math.unit(6, "feet"),
  10493. weight: math.unit(150, "lb"),
  10494. name: "Front",
  10495. image: {
  10496. source: "./media/characters/elyssia/front.svg",
  10497. extra: 2201 / 2035,
  10498. bottom: 0.05
  10499. }
  10500. },
  10501. frontClothed: {
  10502. height: math.unit(6, "feet"),
  10503. weight: math.unit(150, "lb"),
  10504. name: "Front (Clothed)",
  10505. image: {
  10506. source: "./media/characters/elyssia/front-clothed.svg",
  10507. extra: 2201 / 2035,
  10508. bottom: 0.05
  10509. }
  10510. },
  10511. back: {
  10512. height: math.unit(6, "feet"),
  10513. weight: math.unit(150, "lb"),
  10514. name: "Back",
  10515. image: {
  10516. source: "./media/characters/elyssia/back.svg",
  10517. extra: 2201 / 2035,
  10518. bottom: 0.013
  10519. }
  10520. },
  10521. },
  10522. [
  10523. {
  10524. name: "Smaller",
  10525. height: math.unit(150, "feet")
  10526. },
  10527. {
  10528. name: "Standard",
  10529. height: math.unit(1400, "feet"),
  10530. default: true
  10531. },
  10532. {
  10533. name: "Distracted",
  10534. height: math.unit(15000, "feet")
  10535. },
  10536. ]
  10537. ))
  10538. characterMakers.push(() => makeCharacter(
  10539. { name: "Geno Maxwell" },
  10540. {
  10541. front: {
  10542. height: math.unit(7 + 4 / 12, "feet"),
  10543. weight: math.unit(500, "lb"),
  10544. name: "Front",
  10545. image: {
  10546. source: "./media/characters/geno-maxwell/front.svg",
  10547. extra: 2207 / 2040,
  10548. bottom: 0.015
  10549. }
  10550. },
  10551. },
  10552. [
  10553. {
  10554. name: "Micro",
  10555. height: math.unit(3, "inches")
  10556. },
  10557. {
  10558. name: "Normal",
  10559. height: math.unit(7 + 4 / 12, "feet"),
  10560. default: true
  10561. },
  10562. {
  10563. name: "Macro",
  10564. height: math.unit(220, "feet")
  10565. },
  10566. {
  10567. name: "Megamacro",
  10568. height: math.unit(11, "miles")
  10569. },
  10570. ]
  10571. ))
  10572. characterMakers.push(() => makeCharacter(
  10573. { name: "Regena Maxwell" },
  10574. {
  10575. front: {
  10576. height: math.unit(7 + 4 / 12, "feet"),
  10577. weight: math.unit(500, "lb"),
  10578. name: "Front",
  10579. image: {
  10580. source: "./media/characters/regena-maxwell/front.svg",
  10581. extra: 3115 / 2770,
  10582. bottom: 0.02
  10583. }
  10584. },
  10585. },
  10586. [
  10587. {
  10588. name: "Normal",
  10589. height: math.unit(7 + 4 / 12, "feet"),
  10590. default: true
  10591. },
  10592. {
  10593. name: "Macro",
  10594. height: math.unit(220, "feet")
  10595. },
  10596. {
  10597. name: "Megamacro",
  10598. height: math.unit(11, "miles")
  10599. },
  10600. ]
  10601. ))
  10602. characterMakers.push(() => makeCharacter(
  10603. { name: "XGlidingDragonX" },
  10604. {
  10605. front: {
  10606. height: math.unit(6, "feet"),
  10607. weight: math.unit(150, "lb"),
  10608. name: "Front",
  10609. image: {
  10610. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10611. extra: 860 / 690,
  10612. bottom: 0.03
  10613. }
  10614. },
  10615. },
  10616. [
  10617. {
  10618. name: "Normal",
  10619. height: math.unit(1.7, "meters"),
  10620. default: true
  10621. },
  10622. ]
  10623. ))
  10624. characterMakers.push(() => makeCharacter(
  10625. { name: "Quilly" },
  10626. {
  10627. front: {
  10628. height: math.unit(6, "feet"),
  10629. weight: math.unit(150, "lb"),
  10630. name: "Front",
  10631. image: {
  10632. source: "./media/characters/quilly/front.svg",
  10633. extra: 890 / 776
  10634. }
  10635. },
  10636. },
  10637. [
  10638. {
  10639. name: "Gigamacro",
  10640. height: math.unit(404090, "miles"),
  10641. default: true
  10642. },
  10643. ]
  10644. ))
  10645. characterMakers.push(() => makeCharacter(
  10646. { name: "Tempest" },
  10647. {
  10648. front: {
  10649. height: math.unit(7 + 8 / 12, "feet"),
  10650. weight: math.unit(350, "lb"),
  10651. name: "Front",
  10652. image: {
  10653. source: "./media/characters/tempest/front.svg",
  10654. extra: 1175 / 1086,
  10655. bottom: 0.02
  10656. }
  10657. },
  10658. },
  10659. [
  10660. {
  10661. name: "Normal",
  10662. height: math.unit(7 + 8 / 12, "feet"),
  10663. default: true
  10664. },
  10665. ]
  10666. ))
  10667. characterMakers.push(() => makeCharacter(
  10668. { name: "Rodger" },
  10669. {
  10670. side: {
  10671. height: math.unit(4 + 5 / 12, "feet"),
  10672. weight: math.unit(80, "lb"),
  10673. name: "Side",
  10674. image: {
  10675. source: "./media/characters/rodger/side.svg",
  10676. extra: 1235 / 1118
  10677. }
  10678. },
  10679. },
  10680. [
  10681. {
  10682. name: "Micro",
  10683. height: math.unit(1, "inch")
  10684. },
  10685. {
  10686. name: "Normal",
  10687. height: math.unit(4 + 5 / 12, "feet"),
  10688. default: true
  10689. },
  10690. {
  10691. name: "Macro",
  10692. height: math.unit(120, "feet")
  10693. },
  10694. ]
  10695. ))
  10696. characterMakers.push(() => makeCharacter(
  10697. { name: "Danyel" },
  10698. {
  10699. front: {
  10700. height: math.unit(6, "feet"),
  10701. weight: math.unit(150, "lb"),
  10702. name: "Front",
  10703. image: {
  10704. source: "./media/characters/danyel/front.svg",
  10705. extra: 1185 / 1123,
  10706. bottom: 0.05
  10707. }
  10708. },
  10709. },
  10710. [
  10711. {
  10712. name: "Shrunken",
  10713. height: math.unit(0.5, "mm")
  10714. },
  10715. {
  10716. name: "Micro",
  10717. height: math.unit(1, "mm"),
  10718. default: true
  10719. },
  10720. {
  10721. name: "Upsized",
  10722. height: math.unit(5 + 5 / 12, "feet")
  10723. },
  10724. ]
  10725. ))
  10726. characterMakers.push(() => makeCharacter(
  10727. { name: "Vivian Bijoux" },
  10728. {
  10729. front: {
  10730. height: math.unit(5 + 6 / 12, "feet"),
  10731. weight: math.unit(200, "lb"),
  10732. name: "Front",
  10733. image: {
  10734. source: "./media/characters/vivian-bijoux/front.svg",
  10735. extra: 1,
  10736. bottom: 0.072
  10737. }
  10738. },
  10739. },
  10740. [
  10741. {
  10742. name: "Normal",
  10743. height: math.unit(5 + 6 / 12, "feet"),
  10744. default: true
  10745. },
  10746. {
  10747. name: "Bad Dream",
  10748. height: math.unit(500, "feet")
  10749. },
  10750. {
  10751. name: "Nightmare",
  10752. height: math.unit(500, "miles")
  10753. },
  10754. ]
  10755. ))
  10756. characterMakers.push(() => makeCharacter(
  10757. { name: "Zeta" },
  10758. {
  10759. front: {
  10760. height: math.unit(6 + 1 / 12, "feet"),
  10761. weight: math.unit(260, "lb"),
  10762. name: "Front",
  10763. image: {
  10764. source: "./media/characters/zeta/front.svg",
  10765. extra: 1968 / 1889,
  10766. bottom: 0.06
  10767. }
  10768. },
  10769. back: {
  10770. height: math.unit(6 + 1 / 12, "feet"),
  10771. weight: math.unit(260, "lb"),
  10772. name: "Back",
  10773. image: {
  10774. source: "./media/characters/zeta/back.svg",
  10775. extra: 1944 / 1858,
  10776. bottom: 0.03
  10777. }
  10778. },
  10779. hand: {
  10780. height: math.unit(1.112, "feet"),
  10781. name: "Hand",
  10782. image: {
  10783. source: "./media/characters/zeta/hand.svg"
  10784. }
  10785. },
  10786. foot: {
  10787. height: math.unit(1.48, "feet"),
  10788. name: "Foot",
  10789. image: {
  10790. source: "./media/characters/zeta/foot.svg"
  10791. }
  10792. },
  10793. },
  10794. [
  10795. {
  10796. name: "Micro",
  10797. height: math.unit(6, "inches")
  10798. },
  10799. {
  10800. name: "Normal",
  10801. height: math.unit(6 + 1 / 12, "feet"),
  10802. default: true
  10803. },
  10804. {
  10805. name: "Macro",
  10806. height: math.unit(20, "feet")
  10807. },
  10808. ]
  10809. ))
  10810. characterMakers.push(() => makeCharacter(
  10811. { name: "Jamie Larsen" },
  10812. {
  10813. front: {
  10814. height: math.unit(6, "feet"),
  10815. weight: math.unit(150, "lb"),
  10816. name: "Front",
  10817. image: {
  10818. source: "./media/characters/jamie-larsen/front.svg",
  10819. extra: 962 / 933,
  10820. bottom: 0.02
  10821. }
  10822. },
  10823. back: {
  10824. height: math.unit(6, "feet"),
  10825. weight: math.unit(150, "lb"),
  10826. name: "Back",
  10827. image: {
  10828. source: "./media/characters/jamie-larsen/back.svg",
  10829. extra: 997 / 946
  10830. }
  10831. },
  10832. },
  10833. [
  10834. {
  10835. name: "Macro",
  10836. height: math.unit(28 + 7 / 12, "feet"),
  10837. default: true
  10838. },
  10839. {
  10840. name: "Macro+",
  10841. height: math.unit(180, "feet")
  10842. },
  10843. {
  10844. name: "Megamacro",
  10845. height: math.unit(10, "miles")
  10846. },
  10847. {
  10848. name: "Gigamacro",
  10849. height: math.unit(200000, "miles")
  10850. },
  10851. ]
  10852. ))
  10853. characterMakers.push(() => makeCharacter(
  10854. { name: "Vance" },
  10855. {
  10856. front: {
  10857. height: math.unit(6, "feet"),
  10858. weight: math.unit(120, "lb"),
  10859. name: "Front",
  10860. image: {
  10861. source: "./media/characters/vance/front.svg",
  10862. extra: 1980 / 1890,
  10863. bottom: 0.09
  10864. }
  10865. },
  10866. back: {
  10867. height: math.unit(6, "feet"),
  10868. weight: math.unit(120, "lb"),
  10869. name: "Back",
  10870. image: {
  10871. source: "./media/characters/vance/back.svg",
  10872. extra: 2081 / 1994,
  10873. bottom: 0.014
  10874. }
  10875. },
  10876. hand: {
  10877. height: math.unit(0.88, "feet"),
  10878. name: "Hand",
  10879. image: {
  10880. source: "./media/characters/vance/hand.svg"
  10881. }
  10882. },
  10883. foot: {
  10884. height: math.unit(0.64, "feet"),
  10885. name: "Foot",
  10886. image: {
  10887. source: "./media/characters/vance/foot.svg"
  10888. }
  10889. },
  10890. },
  10891. [
  10892. {
  10893. name: "Small",
  10894. height: math.unit(90, "feet"),
  10895. default: true
  10896. },
  10897. {
  10898. name: "Macro",
  10899. height: math.unit(100, "meters")
  10900. },
  10901. {
  10902. name: "Megamacro",
  10903. height: math.unit(15, "miles")
  10904. },
  10905. ]
  10906. ))
  10907. characterMakers.push(() => makeCharacter(
  10908. { name: "Xochitl" },
  10909. {
  10910. front: {
  10911. height: math.unit(6, "feet"),
  10912. weight: math.unit(180, "lb"),
  10913. name: "Front",
  10914. image: {
  10915. source: "./media/characters/xochitl/front.svg",
  10916. extra: 2297 / 2261,
  10917. bottom: 0.065
  10918. }
  10919. },
  10920. back: {
  10921. height: math.unit(6, "feet"),
  10922. weight: math.unit(180, "lb"),
  10923. name: "Back",
  10924. image: {
  10925. source: "./media/characters/xochitl/back.svg",
  10926. extra: 2386 / 2354,
  10927. bottom: 0.01
  10928. }
  10929. },
  10930. foot: {
  10931. height: math.unit(6 / 5 * 1.15, "feet"),
  10932. weight: math.unit(150, "lb"),
  10933. name: "Foot",
  10934. image: {
  10935. source: "./media/characters/xochitl/foot.svg"
  10936. }
  10937. },
  10938. },
  10939. [
  10940. {
  10941. name: "Macro",
  10942. height: math.unit(80, "feet")
  10943. },
  10944. {
  10945. name: "Macro+",
  10946. height: math.unit(400, "feet"),
  10947. default: true
  10948. },
  10949. {
  10950. name: "Gigamacro",
  10951. height: math.unit(80000, "miles")
  10952. },
  10953. {
  10954. name: "Gigamacro+",
  10955. height: math.unit(400000, "miles")
  10956. },
  10957. {
  10958. name: "Teramacro",
  10959. height: math.unit(300, "AU")
  10960. },
  10961. ]
  10962. ))
  10963. characterMakers.push(() => makeCharacter(
  10964. { name: "Vincent" },
  10965. {
  10966. front: {
  10967. height: math.unit(6, "feet"),
  10968. weight: math.unit(150, "lb"),
  10969. name: "Front",
  10970. image: {
  10971. source: "./media/characters/vincent/front.svg",
  10972. extra: 1130 / 1080,
  10973. bottom: 0.055
  10974. }
  10975. },
  10976. beak: {
  10977. height: math.unit(6 * 0.1, "feet"),
  10978. name: "Beak",
  10979. image: {
  10980. source: "./media/characters/vincent/beak.svg"
  10981. }
  10982. },
  10983. hand: {
  10984. height: math.unit(6 * 0.85, "feet"),
  10985. weight: math.unit(150, "lb"),
  10986. name: "Hand",
  10987. image: {
  10988. source: "./media/characters/vincent/hand.svg"
  10989. }
  10990. },
  10991. foot: {
  10992. height: math.unit(6 * 0.19, "feet"),
  10993. weight: math.unit(150, "lb"),
  10994. name: "Foot",
  10995. image: {
  10996. source: "./media/characters/vincent/foot.svg"
  10997. }
  10998. },
  10999. },
  11000. [
  11001. {
  11002. name: "Base",
  11003. height: math.unit(6 + 5 / 12, "feet"),
  11004. default: true
  11005. },
  11006. {
  11007. name: "Macro",
  11008. height: math.unit(300, "feet")
  11009. },
  11010. {
  11011. name: "Megamacro",
  11012. height: math.unit(2, "miles")
  11013. },
  11014. {
  11015. name: "Gigamacro",
  11016. height: math.unit(1000, "miles")
  11017. },
  11018. ]
  11019. ))
  11020. characterMakers.push(() => makeCharacter(
  11021. { name: "Jay" },
  11022. {
  11023. front: {
  11024. height: math.unit(6 + 2 / 12, "feet"),
  11025. weight: math.unit(65, "lb"),
  11026. name: "Front",
  11027. image: {
  11028. source: "./media/characters/jay/front.svg",
  11029. extra: 1510 / 1430,
  11030. bottom: 0.042
  11031. }
  11032. },
  11033. back: {
  11034. height: math.unit(6 + 2 / 12, "feet"),
  11035. weight: math.unit(65, "lb"),
  11036. name: "Back",
  11037. image: {
  11038. source: "./media/characters/jay/back.svg",
  11039. extra: 1510 / 1430,
  11040. bottom: 0.025
  11041. }
  11042. },
  11043. clothed: {
  11044. height: math.unit(6 + 2 / 12, "feet"),
  11045. weight: math.unit(65, "lb"),
  11046. name: "Front (Clothed)",
  11047. image: {
  11048. source: "./media/characters/jay/clothed.svg",
  11049. extra: 744 / 699,
  11050. bottom: 0.043
  11051. }
  11052. },
  11053. },
  11054. [
  11055. {
  11056. name: "Micro",
  11057. height: math.unit(1, "inch")
  11058. },
  11059. {
  11060. name: "Normal",
  11061. height: math.unit(6 + 2 / 12, "feet"),
  11062. default: true
  11063. },
  11064. {
  11065. name: "Macro",
  11066. height: math.unit(1, "mile")
  11067. },
  11068. {
  11069. name: "Megamacro",
  11070. height: math.unit(100, "miles")
  11071. },
  11072. ]
  11073. ))
  11074. characterMakers.push(() => makeCharacter(
  11075. { name: "Coatl" },
  11076. {
  11077. front: {
  11078. height: math.unit(2, "meters"),
  11079. weight: math.unit(500, "kg"),
  11080. name: "Front",
  11081. image: {
  11082. source: "./media/characters/coatl/front.svg",
  11083. extra: 3948 / 3500,
  11084. bottom: 0.082
  11085. }
  11086. },
  11087. },
  11088. [
  11089. {
  11090. name: "Normal",
  11091. height: math.unit(4, "meters")
  11092. },
  11093. {
  11094. name: "Macro",
  11095. height: math.unit(100, "meters"),
  11096. default: true
  11097. },
  11098. {
  11099. name: "Macro+",
  11100. height: math.unit(300, "meters")
  11101. },
  11102. {
  11103. name: "Megamacro",
  11104. height: math.unit(3, "gigameters")
  11105. },
  11106. {
  11107. name: "Megamacro+",
  11108. height: math.unit(300, "terameters")
  11109. },
  11110. {
  11111. name: "Megamacro++",
  11112. height: math.unit(3, "lightyears")
  11113. },
  11114. ]
  11115. ))
  11116. characterMakers.push(() => makeCharacter(
  11117. { name: "Shiroryu" },
  11118. {
  11119. front: {
  11120. height: math.unit(6, "feet"),
  11121. weight: math.unit(50, "kg"),
  11122. name: "front",
  11123. image: {
  11124. source: "./media/characters/shiroryu/front.svg",
  11125. extra: 1990 / 1935
  11126. }
  11127. },
  11128. },
  11129. [
  11130. {
  11131. name: "Mortal Mingling",
  11132. height: math.unit(3, "meters")
  11133. },
  11134. {
  11135. name: "Kaiju-ish",
  11136. height: math.unit(250, "meters")
  11137. },
  11138. {
  11139. name: "Somewhat Godly",
  11140. height: math.unit(400, "km"),
  11141. default: true
  11142. },
  11143. {
  11144. name: "Planetary",
  11145. height: math.unit(300, "megameters")
  11146. },
  11147. {
  11148. name: "Galaxy-dwarfing",
  11149. height: math.unit(450, "kiloparsecs")
  11150. },
  11151. {
  11152. name: "Universe Eater",
  11153. height: math.unit(150, "gigaparsecs")
  11154. },
  11155. {
  11156. name: "Almost Immeasurable",
  11157. height: math.unit(1.3e266, "yottaparsecs")
  11158. },
  11159. ]
  11160. ))
  11161. characterMakers.push(() => makeCharacter(
  11162. { name: "Umeko" },
  11163. {
  11164. front: {
  11165. height: math.unit(6, "feet"),
  11166. weight: math.unit(150, "lb"),
  11167. name: "Front",
  11168. image: {
  11169. source: "./media/characters/umeko/front.svg",
  11170. extra: 1,
  11171. bottom: 0.019
  11172. }
  11173. },
  11174. frontArmored: {
  11175. height: math.unit(6, "feet"),
  11176. weight: math.unit(150, "lb"),
  11177. name: "Front (Armored)",
  11178. image: {
  11179. source: "./media/characters/umeko/front-armored.svg",
  11180. extra: 1,
  11181. bottom: 0.021
  11182. }
  11183. },
  11184. },
  11185. [
  11186. {
  11187. name: "Macro",
  11188. height: math.unit(220, "feet"),
  11189. default: true
  11190. },
  11191. {
  11192. name: "Guardian Dragon",
  11193. height: math.unit(50, "miles")
  11194. },
  11195. {
  11196. name: "Cosmic",
  11197. height: math.unit(800000, "miles")
  11198. },
  11199. ]
  11200. ))
  11201. characterMakers.push(() => makeCharacter(
  11202. { name: "Cassidy" },
  11203. {
  11204. front: {
  11205. height: math.unit(6, "feet"),
  11206. weight: math.unit(150, "lb"),
  11207. name: "Front",
  11208. image: {
  11209. source: "./media/characters/cassidy/front.svg",
  11210. extra: 1,
  11211. bottom: 0.043
  11212. }
  11213. },
  11214. },
  11215. [
  11216. {
  11217. name: "Canon Height",
  11218. height: math.unit(120, "feet"),
  11219. default: true
  11220. },
  11221. {
  11222. name: "Macro+",
  11223. height: math.unit(400, "feet")
  11224. },
  11225. {
  11226. name: "Macro++",
  11227. height: math.unit(4000, "feet")
  11228. },
  11229. {
  11230. name: "Megamacro",
  11231. height: math.unit(3, "miles")
  11232. },
  11233. ]
  11234. ))
  11235. characterMakers.push(() => makeCharacter(
  11236. { name: "Isaac" },
  11237. {
  11238. front: {
  11239. height: math.unit(6, "feet"),
  11240. weight: math.unit(150, "lb"),
  11241. name: "Front",
  11242. image: {
  11243. source: "./media/characters/isaac/front.svg",
  11244. extra: 896 / 815,
  11245. bottom: 0.11
  11246. }
  11247. },
  11248. },
  11249. [
  11250. {
  11251. name: "Human Size",
  11252. height: math.unit(8, "feet"),
  11253. default: true
  11254. },
  11255. {
  11256. name: "Macro",
  11257. height: math.unit(400, "feet")
  11258. },
  11259. {
  11260. name: "Megamacro",
  11261. height: math.unit(50, "miles")
  11262. },
  11263. {
  11264. name: "Canon Height",
  11265. height: math.unit(200, "AU")
  11266. },
  11267. ]
  11268. ))
  11269. characterMakers.push(() => makeCharacter(
  11270. { name: "Sleekit" },
  11271. {
  11272. front: {
  11273. height: math.unit(6, "feet"),
  11274. weight: math.unit(72, "kg"),
  11275. name: "Front",
  11276. image: {
  11277. source: "./media/characters/sleekit/front.svg",
  11278. extra: 4693 / 4487,
  11279. bottom: 0.012
  11280. }
  11281. },
  11282. },
  11283. [
  11284. {
  11285. name: "Minimum Height",
  11286. height: math.unit(10, "meters")
  11287. },
  11288. {
  11289. name: "Smaller",
  11290. height: math.unit(25, "meters")
  11291. },
  11292. {
  11293. name: "Larger",
  11294. height: math.unit(38, "meters"),
  11295. default: true
  11296. },
  11297. {
  11298. name: "Maximum height",
  11299. height: math.unit(100, "meters")
  11300. },
  11301. ]
  11302. ))
  11303. characterMakers.push(() => makeCharacter(
  11304. { name: "Nillia" },
  11305. {
  11306. front: {
  11307. height: math.unit(6, "feet"),
  11308. weight: math.unit(150, "lb"),
  11309. name: "Front",
  11310. image: {
  11311. source: "./media/characters/nillia/front.svg",
  11312. extra: 2195 / 2037,
  11313. bottom: 0.005
  11314. }
  11315. },
  11316. back: {
  11317. height: math.unit(6, "feet"),
  11318. weight: math.unit(150, "lb"),
  11319. name: "Back",
  11320. image: {
  11321. source: "./media/characters/nillia/back.svg",
  11322. extra: 2195 / 2037,
  11323. bottom: 0.005
  11324. }
  11325. },
  11326. },
  11327. [
  11328. {
  11329. name: "Canon Height",
  11330. height: math.unit(489, "feet"),
  11331. default: true
  11332. }
  11333. ]
  11334. ))
  11335. characterMakers.push(() => makeCharacter(
  11336. { name: "Mesmyriza" },
  11337. {
  11338. front: {
  11339. height: math.unit(6, "feet"),
  11340. weight: math.unit(150, "lb"),
  11341. name: "Front",
  11342. image: {
  11343. source: "./media/characters/mesmyriza/front.svg",
  11344. extra: 2067 / 1784,
  11345. bottom: 0.035
  11346. }
  11347. },
  11348. foot: {
  11349. height: math.unit(6 / (250 / 35), "feet"),
  11350. name: "Foot",
  11351. image: {
  11352. source: "./media/characters/mesmyriza/foot.svg"
  11353. }
  11354. },
  11355. },
  11356. [
  11357. {
  11358. name: "Macro",
  11359. height: math.unit(457, "meters"),
  11360. default: true
  11361. },
  11362. {
  11363. name: "Megamacro",
  11364. height: math.unit(8, "megameters")
  11365. },
  11366. ]
  11367. ))
  11368. characterMakers.push(() => makeCharacter(
  11369. { name: "Saudade" },
  11370. {
  11371. front: {
  11372. height: math.unit(6, "feet"),
  11373. weight: math.unit(250, "lb"),
  11374. name: "Front",
  11375. image: {
  11376. source: "./media/characters/saudade/front.svg",
  11377. extra: 1172 / 1139,
  11378. bottom: 0.035
  11379. }
  11380. },
  11381. },
  11382. [
  11383. {
  11384. name: "Micro",
  11385. height: math.unit(3, "inches")
  11386. },
  11387. {
  11388. name: "Normal",
  11389. height: math.unit(6, "feet"),
  11390. default: true
  11391. },
  11392. {
  11393. name: "Macro",
  11394. height: math.unit(50, "feet")
  11395. },
  11396. {
  11397. name: "Megamacro",
  11398. height: math.unit(2800, "feet")
  11399. },
  11400. ]
  11401. ))
  11402. characterMakers.push(() => makeCharacter(
  11403. { name: "Keireer" },
  11404. {
  11405. front: {
  11406. height: math.unit(5 + 4 / 12, "feet"),
  11407. weight: math.unit(100, "lb"),
  11408. name: "Front",
  11409. image: {
  11410. source: "./media/characters/keireer/front.svg",
  11411. extra: 716 / 666,
  11412. bottom: 0.05
  11413. }
  11414. },
  11415. },
  11416. [
  11417. {
  11418. name: "Normal",
  11419. height: math.unit(5 + 4 / 12, "feet"),
  11420. default: true
  11421. },
  11422. ]
  11423. ))
  11424. characterMakers.push(() => makeCharacter(
  11425. { name: "Mirja" },
  11426. {
  11427. front: {
  11428. height: math.unit(6, "feet"),
  11429. weight: math.unit(90, "kg"),
  11430. name: "Front",
  11431. image: {
  11432. source: "./media/characters/mirja/front.svg",
  11433. extra: 1789 / 1683,
  11434. bottom: 0.05
  11435. }
  11436. },
  11437. frontDressed: {
  11438. height: math.unit(6, "feet"),
  11439. weight: math.unit(90, "lb"),
  11440. name: "Front (Dressed)",
  11441. image: {
  11442. source: "./media/characters/mirja/front-dressed.svg",
  11443. extra: 1789 / 1683,
  11444. bottom: 0.05
  11445. }
  11446. },
  11447. back: {
  11448. height: math.unit(6, "feet"),
  11449. weight: math.unit(90, "lb"),
  11450. name: "Back",
  11451. image: {
  11452. source: "./media/characters/mirja/back.svg",
  11453. extra: 953 / 917,
  11454. bottom: 0.017
  11455. }
  11456. },
  11457. },
  11458. [
  11459. {
  11460. name: "\"Incognito\"",
  11461. height: math.unit(3, "meters")
  11462. },
  11463. {
  11464. name: "Strolling Size",
  11465. height: math.unit(15, "km")
  11466. },
  11467. {
  11468. name: "Larger Strolling Size",
  11469. height: math.unit(400, "km")
  11470. },
  11471. {
  11472. name: "Preferred Size",
  11473. height: math.unit(5000, "km")
  11474. },
  11475. {
  11476. name: "True Size",
  11477. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11478. default: true
  11479. },
  11480. ]
  11481. ))
  11482. characterMakers.push(() => makeCharacter(
  11483. { name: "Nightraver" },
  11484. {
  11485. front: {
  11486. height: math.unit(15, "feet"),
  11487. weight: math.unit(880, "kg"),
  11488. name: "Front",
  11489. image: {
  11490. source: "./media/characters/nightraver/front.svg",
  11491. extra: 2444 / 2160,
  11492. bottom: 0.027
  11493. }
  11494. },
  11495. back: {
  11496. height: math.unit(15, "feet"),
  11497. weight: math.unit(880, "kg"),
  11498. name: "Back",
  11499. image: {
  11500. source: "./media/characters/nightraver/back.svg",
  11501. extra: 2309 / 2180,
  11502. bottom: 0.005
  11503. }
  11504. },
  11505. sole: {
  11506. height: math.unit(2.878, "feet"),
  11507. name: "Sole",
  11508. image: {
  11509. source: "./media/characters/nightraver/sole.svg"
  11510. }
  11511. },
  11512. foot: {
  11513. height: math.unit(2.285, "feet"),
  11514. name: "Foot",
  11515. image: {
  11516. source: "./media/characters/nightraver/foot.svg"
  11517. }
  11518. },
  11519. maw: {
  11520. height: math.unit(2.67, "feet"),
  11521. name: "Maw",
  11522. image: {
  11523. source: "./media/characters/nightraver/maw.svg"
  11524. }
  11525. },
  11526. },
  11527. [
  11528. {
  11529. name: "Micro",
  11530. height: math.unit(1, "cm")
  11531. },
  11532. {
  11533. name: "Normal",
  11534. height: math.unit(15, "feet"),
  11535. default: true
  11536. },
  11537. {
  11538. name: "Macro",
  11539. height: math.unit(300, "feet")
  11540. },
  11541. {
  11542. name: "Megamacro",
  11543. height: math.unit(300, "miles")
  11544. },
  11545. {
  11546. name: "Gigamacro",
  11547. height: math.unit(10000, "miles")
  11548. },
  11549. ]
  11550. ))
  11551. characterMakers.push(() => makeCharacter(
  11552. { name: "Arc" },
  11553. {
  11554. side: {
  11555. height: math.unit(2, "inches"),
  11556. weight: math.unit(5, "grams"),
  11557. name: "Side",
  11558. image: {
  11559. source: "./media/characters/arc/side.svg"
  11560. }
  11561. },
  11562. },
  11563. [
  11564. {
  11565. name: "Micro",
  11566. height: math.unit(2, "inches"),
  11567. default: true
  11568. },
  11569. ]
  11570. ))
  11571. characterMakers.push(() => makeCharacter(
  11572. { name: "Nebula Shahar" },
  11573. {
  11574. front: {
  11575. height: math.unit(1.1938, "meters"),
  11576. weight: math.unit(54, "kg"),
  11577. name: "Front",
  11578. image: {
  11579. source: "./media/characters/nebula-shahar/front.svg",
  11580. extra: 1642 / 1436,
  11581. bottom: 0.06
  11582. }
  11583. },
  11584. },
  11585. [
  11586. {
  11587. name: "Megamicro",
  11588. height: math.unit(0.3, "mm")
  11589. },
  11590. {
  11591. name: "Micro",
  11592. height: math.unit(3, "cm")
  11593. },
  11594. {
  11595. name: "Normal",
  11596. height: math.unit(138, "cm"),
  11597. default: true
  11598. },
  11599. {
  11600. name: "Macro",
  11601. height: math.unit(30, "m")
  11602. },
  11603. ]
  11604. ))
  11605. characterMakers.push(() => makeCharacter(
  11606. { name: "Shayla" },
  11607. {
  11608. front: {
  11609. height: math.unit(5.24, "feet"),
  11610. weight: math.unit(150, "lb"),
  11611. name: "Front",
  11612. image: {
  11613. source: "./media/characters/shayla/front.svg",
  11614. extra: 1512 / 1414,
  11615. bottom: 0.01
  11616. }
  11617. },
  11618. back: {
  11619. height: math.unit(5.24, "feet"),
  11620. weight: math.unit(150, "lb"),
  11621. name: "Back",
  11622. image: {
  11623. source: "./media/characters/shayla/back.svg",
  11624. extra: 1512 / 1414
  11625. }
  11626. },
  11627. hand: {
  11628. height: math.unit(0.7781496062992126, "feet"),
  11629. name: "Hand",
  11630. image: {
  11631. source: "./media/characters/shayla/hand.svg"
  11632. }
  11633. },
  11634. foot: {
  11635. height: math.unit(1.4206036745406823, "feet"),
  11636. name: "Foot",
  11637. image: {
  11638. source: "./media/characters/shayla/foot.svg"
  11639. }
  11640. },
  11641. },
  11642. [
  11643. {
  11644. name: "Micro",
  11645. height: math.unit(0.32, "feet")
  11646. },
  11647. {
  11648. name: "Normal",
  11649. height: math.unit(5.24, "feet"),
  11650. default: true
  11651. },
  11652. {
  11653. name: "Macro",
  11654. height: math.unit(492.12, "feet")
  11655. },
  11656. {
  11657. name: "Megamacro",
  11658. height: math.unit(186.41, "miles")
  11659. },
  11660. ]
  11661. ))
  11662. characterMakers.push(() => makeCharacter(
  11663. { name: "Pia Jr." },
  11664. {
  11665. front: {
  11666. height: math.unit(2.2, "m"),
  11667. weight: math.unit(120, "kg"),
  11668. name: "Front",
  11669. image: {
  11670. source: "./media/characters/pia-jr/front.svg",
  11671. extra: 1000 / 970,
  11672. bottom: 0.035
  11673. }
  11674. },
  11675. hand: {
  11676. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11677. name: "Hand",
  11678. image: {
  11679. source: "./media/characters/pia-jr/hand.svg"
  11680. }
  11681. },
  11682. paw: {
  11683. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11684. name: "Paw",
  11685. image: {
  11686. source: "./media/characters/pia-jr/paw.svg"
  11687. }
  11688. },
  11689. },
  11690. [
  11691. {
  11692. name: "Micro",
  11693. height: math.unit(1.2, "cm")
  11694. },
  11695. {
  11696. name: "Normal",
  11697. height: math.unit(2.2, "m"),
  11698. default: true
  11699. },
  11700. {
  11701. name: "Macro",
  11702. height: math.unit(180, "m")
  11703. },
  11704. {
  11705. name: "Megamacro",
  11706. height: math.unit(420, "km")
  11707. },
  11708. ]
  11709. ))
  11710. characterMakers.push(() => makeCharacter(
  11711. { name: "Pia Sr." },
  11712. {
  11713. front: {
  11714. height: math.unit(2, "m"),
  11715. weight: math.unit(115, "kg"),
  11716. name: "Front",
  11717. image: {
  11718. source: "./media/characters/pia-sr/front.svg",
  11719. extra: 760 / 730,
  11720. bottom: 0.015
  11721. }
  11722. },
  11723. back: {
  11724. height: math.unit(2, "m"),
  11725. weight: math.unit(115, "kg"),
  11726. name: "Back",
  11727. image: {
  11728. source: "./media/characters/pia-sr/back.svg",
  11729. extra: 760 / 730,
  11730. bottom: 0.01
  11731. }
  11732. },
  11733. hand: {
  11734. height: math.unit(0.89 * 6.56 / 6, "feet"),
  11735. name: "Hand",
  11736. image: {
  11737. source: "./media/characters/pia-sr/hand.svg"
  11738. }
  11739. },
  11740. foot: {
  11741. height: math.unit(1.83, "feet"),
  11742. name: "Foot",
  11743. image: {
  11744. source: "./media/characters/pia-sr/foot.svg"
  11745. }
  11746. },
  11747. },
  11748. [
  11749. {
  11750. name: "Micro",
  11751. height: math.unit(88, "mm")
  11752. },
  11753. {
  11754. name: "Normal",
  11755. height: math.unit(2, "m"),
  11756. default: true
  11757. },
  11758. {
  11759. name: "Macro",
  11760. height: math.unit(200, "m")
  11761. },
  11762. {
  11763. name: "Megamacro",
  11764. height: math.unit(420, "km")
  11765. },
  11766. ]
  11767. ))
  11768. characterMakers.push(() => makeCharacter(
  11769. { name: "KIBIBYTE" },
  11770. {
  11771. front: {
  11772. height: math.unit(8 + 2 / 12, "feet"),
  11773. weight: math.unit(300, "lb"),
  11774. name: "Front",
  11775. image: {
  11776. source: "./media/characters/kibibyte/front.svg",
  11777. extra: 2221 / 2098,
  11778. bottom: 0.04
  11779. }
  11780. },
  11781. },
  11782. [
  11783. {
  11784. name: "Normal",
  11785. height: math.unit(8 + 2 / 12, "feet"),
  11786. default: true
  11787. },
  11788. {
  11789. name: "Socialable Macro",
  11790. height: math.unit(50, "feet")
  11791. },
  11792. {
  11793. name: "Macro",
  11794. height: math.unit(300, "feet")
  11795. },
  11796. {
  11797. name: "Megamacro",
  11798. height: math.unit(500, "miles")
  11799. },
  11800. ]
  11801. ))
  11802. characterMakers.push(() => makeCharacter(
  11803. { name: "Felix" },
  11804. {
  11805. front: {
  11806. height: math.unit(6, "feet"),
  11807. weight: math.unit(150, "lb"),
  11808. name: "Front",
  11809. image: {
  11810. source: "./media/characters/felix/front.svg",
  11811. extra: 762 / 722,
  11812. bottom: 0.02
  11813. }
  11814. },
  11815. frontClothed: {
  11816. height: math.unit(6, "feet"),
  11817. weight: math.unit(150, "lb"),
  11818. name: "Front (Clothed)",
  11819. image: {
  11820. source: "./media/characters/felix/front-clothed.svg",
  11821. extra: 762 / 722,
  11822. bottom: 0.02
  11823. }
  11824. },
  11825. },
  11826. [
  11827. {
  11828. name: "Normal",
  11829. height: math.unit(6 + 8 / 12, "feet"),
  11830. default: true
  11831. },
  11832. {
  11833. name: "Macro",
  11834. height: math.unit(2600, "feet")
  11835. },
  11836. {
  11837. name: "Megamacro",
  11838. height: math.unit(450, "miles")
  11839. },
  11840. ]
  11841. ))
  11842. characterMakers.push(() => makeCharacter(
  11843. { name: "Tobo" },
  11844. {
  11845. front: {
  11846. height: math.unit(6 + 1 / 12, "feet"),
  11847. weight: math.unit(250, "lb"),
  11848. name: "Front",
  11849. image: {
  11850. source: "./media/characters/tobo/front.svg",
  11851. extra: 608 / 586,
  11852. bottom: 0.023
  11853. }
  11854. },
  11855. back: {
  11856. height: math.unit(6 + 1 / 12, "feet"),
  11857. weight: math.unit(250, "lb"),
  11858. name: "Back",
  11859. image: {
  11860. source: "./media/characters/tobo/back.svg",
  11861. extra: 608 / 586
  11862. }
  11863. },
  11864. },
  11865. [
  11866. {
  11867. name: "Nano",
  11868. height: math.unit(2, "nm")
  11869. },
  11870. {
  11871. name: "Megamicro",
  11872. height: math.unit(0.1, "mm")
  11873. },
  11874. {
  11875. name: "Micro",
  11876. height: math.unit(1, "inch"),
  11877. default: true
  11878. },
  11879. {
  11880. name: "Human-sized",
  11881. height: math.unit(6 + 1 / 12, "feet")
  11882. },
  11883. {
  11884. name: "Macro",
  11885. height: math.unit(250, "feet")
  11886. },
  11887. {
  11888. name: "Megamacro",
  11889. height: math.unit(75, "miles")
  11890. },
  11891. {
  11892. name: "Texas-sized",
  11893. height: math.unit(750, "miles")
  11894. },
  11895. {
  11896. name: "Teramacro",
  11897. height: math.unit(50000, "miles")
  11898. },
  11899. ]
  11900. ))
  11901. characterMakers.push(() => makeCharacter(
  11902. { name: "Danny Kapowsky" },
  11903. {
  11904. front: {
  11905. height: math.unit(6, "feet"),
  11906. weight: math.unit(269, "lb"),
  11907. name: "Front",
  11908. image: {
  11909. source: "./media/characters/danny-kapowsky/front.svg",
  11910. extra: 766 / 736,
  11911. bottom: 0.044
  11912. }
  11913. },
  11914. back: {
  11915. height: math.unit(6, "feet"),
  11916. weight: math.unit(269, "lb"),
  11917. name: "Back",
  11918. image: {
  11919. source: "./media/characters/danny-kapowsky/back.svg",
  11920. extra: 797 / 760,
  11921. bottom: 0.025
  11922. }
  11923. },
  11924. },
  11925. [
  11926. {
  11927. name: "Macro",
  11928. height: math.unit(150, "feet"),
  11929. default: true
  11930. },
  11931. {
  11932. name: "Macro+",
  11933. height: math.unit(200, "feet")
  11934. },
  11935. {
  11936. name: "Macro++",
  11937. height: math.unit(300, "feet")
  11938. },
  11939. {
  11940. name: "Macro+++",
  11941. height: math.unit(400, "feet")
  11942. },
  11943. ]
  11944. ))
  11945. characterMakers.push(() => makeCharacter(
  11946. { name: "Finn" },
  11947. {
  11948. side: {
  11949. height: math.unit(6, "feet"),
  11950. weight: math.unit(170, "lb"),
  11951. name: "Side",
  11952. image: {
  11953. source: "./media/characters/finn/side.svg",
  11954. extra: 1953 / 1807,
  11955. bottom: 0.057
  11956. }
  11957. },
  11958. },
  11959. [
  11960. {
  11961. name: "Megamacro",
  11962. height: math.unit(14445, "feet"),
  11963. default: true
  11964. },
  11965. ]
  11966. ))
  11967. characterMakers.push(() => makeCharacter(
  11968. { name: "Roy" },
  11969. {
  11970. front: {
  11971. height: math.unit(5 + 6 / 12, "feet"),
  11972. weight: math.unit(125, "lb"),
  11973. name: "Front",
  11974. image: {
  11975. source: "./media/characters/roy/front.svg",
  11976. extra: 1,
  11977. bottom: 0.11
  11978. }
  11979. },
  11980. },
  11981. [
  11982. {
  11983. name: "Micro",
  11984. height: math.unit(3, "inches"),
  11985. default: true
  11986. },
  11987. {
  11988. name: "Normal",
  11989. height: math.unit(5 + 6 / 12, "feet")
  11990. },
  11991. {
  11992. name: "Lesser Macro",
  11993. height: math.unit(60, "feet")
  11994. },
  11995. {
  11996. name: "Greater Macro",
  11997. height: math.unit(120, "feet")
  11998. },
  11999. ]
  12000. ))
  12001. characterMakers.push(() => makeCharacter(
  12002. { name: "Aevsivs" },
  12003. {
  12004. front: {
  12005. height: math.unit(6, "feet"),
  12006. weight: math.unit(100, "lb"),
  12007. name: "Front",
  12008. image: {
  12009. source: "./media/characters/aevsivs/front.svg",
  12010. extra: 1,
  12011. bottom: 0.03
  12012. }
  12013. },
  12014. back: {
  12015. height: math.unit(6, "feet"),
  12016. weight: math.unit(100, "lb"),
  12017. name: "Back",
  12018. image: {
  12019. source: "./media/characters/aevsivs/back.svg"
  12020. }
  12021. },
  12022. },
  12023. [
  12024. {
  12025. name: "Micro",
  12026. height: math.unit(2, "inches"),
  12027. default: true
  12028. },
  12029. {
  12030. name: "Normal",
  12031. height: math.unit(5, "feet")
  12032. },
  12033. ]
  12034. ))
  12035. characterMakers.push(() => makeCharacter(
  12036. { name: "Hildegard" },
  12037. {
  12038. front: {
  12039. height: math.unit(5 + 7 / 12, "feet"),
  12040. weight: math.unit(159, "lb"),
  12041. name: "Front",
  12042. image: {
  12043. source: "./media/characters/hildegard/front.svg",
  12044. extra: 312 / 286,
  12045. bottom: 0.005
  12046. }
  12047. },
  12048. },
  12049. [
  12050. {
  12051. name: "Normal",
  12052. height: math.unit(5 + 7 / 12, "feet"),
  12053. default: true
  12054. },
  12055. ]
  12056. ))
  12057. characterMakers.push(() => makeCharacter(
  12058. { name: "Bernard & Wilder" },
  12059. {
  12060. bernard: {
  12061. height: math.unit(2 + 7 / 12, "feet"),
  12062. weight: math.unit(66, "lb"),
  12063. name: "Bernard",
  12064. rename: true,
  12065. image: {
  12066. source: "./media/characters/bernard-wilder/bernard.svg",
  12067. extra: 192 / 128,
  12068. bottom: 0.05
  12069. }
  12070. },
  12071. wilder: {
  12072. height: math.unit(5 + 8 / 12, "feet"),
  12073. weight: math.unit(143, "lb"),
  12074. name: "Wilder",
  12075. rename: true,
  12076. image: {
  12077. source: "./media/characters/bernard-wilder/wilder.svg",
  12078. extra: 361 / 312,
  12079. bottom: 0.02
  12080. }
  12081. },
  12082. },
  12083. [
  12084. {
  12085. name: "Normal",
  12086. height: math.unit(2 + 7 / 12, "feet"),
  12087. default: true
  12088. },
  12089. ]
  12090. ))
  12091. characterMakers.push(() => makeCharacter(
  12092. { name: "Hearth" },
  12093. {
  12094. anthro: {
  12095. height: math.unit(6 + 1 / 12, "feet"),
  12096. weight: math.unit(155, "lb"),
  12097. name: "Anthro",
  12098. image: {
  12099. source: "./media/characters/hearth/anthro.svg",
  12100. extra: 260 / 250,
  12101. bottom: 0.02
  12102. }
  12103. },
  12104. feral: {
  12105. height: math.unit(3.78, "feet"),
  12106. weight: math.unit(35, "kg"),
  12107. name: "Feral",
  12108. image: {
  12109. source: "./media/characters/hearth/feral.svg",
  12110. extra: 153 / 135,
  12111. bottom: 0.03
  12112. }
  12113. },
  12114. },
  12115. [
  12116. {
  12117. name: "Normal",
  12118. height: math.unit(6 + 1 / 12, "feet"),
  12119. default: true
  12120. },
  12121. ]
  12122. ))
  12123. characterMakers.push(() => makeCharacter(
  12124. { name: "Ingrid" },
  12125. {
  12126. front: {
  12127. height: math.unit(6, "feet"),
  12128. weight: math.unit(182, "lb"),
  12129. name: "Front",
  12130. image: {
  12131. source: "./media/characters/ingrid/front.svg",
  12132. extra: 294 / 268,
  12133. bottom: 0.027
  12134. }
  12135. },
  12136. },
  12137. [
  12138. {
  12139. name: "Normal",
  12140. height: math.unit(6, "feet"),
  12141. default: true
  12142. },
  12143. ]
  12144. ))
  12145. characterMakers.push(() => makeCharacter(
  12146. { name: "Malgam" },
  12147. {
  12148. eevee: {
  12149. height: math.unit(2 + 10 / 12, "feet"),
  12150. weight: math.unit(86, "lb"),
  12151. name: "Malgam",
  12152. image: {
  12153. source: "./media/characters/malgam/eevee.svg",
  12154. extra: 218 / 180,
  12155. bottom: 0.2
  12156. }
  12157. },
  12158. sylveon: {
  12159. height: math.unit(4, "feet"),
  12160. weight: math.unit(101, "lb"),
  12161. name: "Future Malgam",
  12162. rename: true,
  12163. image: {
  12164. source: "./media/characters/malgam/sylveon.svg",
  12165. extra: 371 / 325,
  12166. bottom: 0.015
  12167. }
  12168. },
  12169. gigantamax: {
  12170. height: math.unit(50, "feet"),
  12171. name: "Gigantamax Malgam",
  12172. rename: true,
  12173. image: {
  12174. source: "./media/characters/malgam/gigantamax.svg"
  12175. }
  12176. },
  12177. },
  12178. [
  12179. {
  12180. name: "Normal",
  12181. height: math.unit(2 + 10 / 12, "feet"),
  12182. default: true
  12183. },
  12184. ]
  12185. ))
  12186. characterMakers.push(() => makeCharacter(
  12187. { name: "Fleur" },
  12188. {
  12189. front: {
  12190. height: math.unit(5 + 11 / 12, "feet"),
  12191. weight: math.unit(188, "lb"),
  12192. name: "Front",
  12193. image: {
  12194. source: "./media/characters/fleur/front.svg",
  12195. extra: 309 / 283,
  12196. bottom: 0.007
  12197. }
  12198. },
  12199. },
  12200. [
  12201. {
  12202. name: "Normal",
  12203. height: math.unit(5 + 11 / 12, "feet"),
  12204. default: true
  12205. },
  12206. ]
  12207. ))
  12208. characterMakers.push(() => makeCharacter(
  12209. { name: "Jude" },
  12210. {
  12211. front: {
  12212. height: math.unit(5 + 4 / 12, "feet"),
  12213. weight: math.unit(122, "lb"),
  12214. name: "Front",
  12215. image: {
  12216. source: "./media/characters/jude/front.svg",
  12217. extra: 288 / 273,
  12218. bottom: 0.03
  12219. }
  12220. },
  12221. },
  12222. [
  12223. {
  12224. name: "Normal",
  12225. height: math.unit(5 + 4 / 12, "feet"),
  12226. default: true
  12227. },
  12228. ]
  12229. ))
  12230. characterMakers.push(() => makeCharacter(
  12231. { name: "Seara" },
  12232. {
  12233. front: {
  12234. height: math.unit(5 + 11 / 12, "feet"),
  12235. weight: math.unit(190, "lb"),
  12236. name: "Front",
  12237. image: {
  12238. source: "./media/characters/seara/front.svg",
  12239. extra: 1,
  12240. bottom: 0.05
  12241. }
  12242. },
  12243. },
  12244. [
  12245. {
  12246. name: "Normal",
  12247. height: math.unit(5 + 11 / 12, "feet"),
  12248. default: true
  12249. },
  12250. ]
  12251. ))
  12252. characterMakers.push(() => makeCharacter(
  12253. { name: "Caspian" },
  12254. {
  12255. front: {
  12256. height: math.unit(16 + 5 / 12, "feet"),
  12257. weight: math.unit(524, "lb"),
  12258. name: "Front",
  12259. image: {
  12260. source: "./media/characters/caspian/front.svg",
  12261. extra: 1,
  12262. bottom: 0.04
  12263. }
  12264. },
  12265. },
  12266. [
  12267. {
  12268. name: "Normal",
  12269. height: math.unit(16 + 5 / 12, "feet"),
  12270. default: true
  12271. },
  12272. ]
  12273. ))
  12274. characterMakers.push(() => makeCharacter(
  12275. { name: "Mika" },
  12276. {
  12277. front: {
  12278. height: math.unit(5 + 7 / 12, "feet"),
  12279. weight: math.unit(170, "lb"),
  12280. name: "Front",
  12281. image: {
  12282. source: "./media/characters/mika/front.svg",
  12283. extra: 1,
  12284. bottom: 0.016
  12285. }
  12286. },
  12287. },
  12288. [
  12289. {
  12290. name: "Normal",
  12291. height: math.unit(5 + 7 / 12, "feet"),
  12292. default: true
  12293. },
  12294. ]
  12295. ))
  12296. characterMakers.push(() => makeCharacter(
  12297. { name: "Sol" },
  12298. {
  12299. front: {
  12300. height: math.unit(6 + 2 / 12, "feet"),
  12301. weight: math.unit(268, "lb"),
  12302. name: "Front",
  12303. image: {
  12304. source: "./media/characters/sol/front.svg",
  12305. extra: 247 / 231,
  12306. bottom: 0.05
  12307. }
  12308. },
  12309. },
  12310. [
  12311. {
  12312. name: "Normal",
  12313. height: math.unit(6 + 2 / 12, "feet"),
  12314. default: true
  12315. },
  12316. ]
  12317. ))
  12318. characterMakers.push(() => makeCharacter(
  12319. { name: "Umiko" },
  12320. {
  12321. buizel: {
  12322. height: math.unit(2 + 5 / 12, "feet"),
  12323. weight: math.unit(87, "lb"),
  12324. name: "Buizel",
  12325. image: {
  12326. source: "./media/characters/umiko/buizel.svg",
  12327. extra: 172 / 157,
  12328. bottom: 0.01
  12329. }
  12330. },
  12331. floatzel: {
  12332. height: math.unit(5 + 9 / 12, "feet"),
  12333. weight: math.unit(250, "lb"),
  12334. name: "Floatzel",
  12335. image: {
  12336. source: "./media/characters/umiko/floatzel.svg",
  12337. extra: 262 / 248
  12338. }
  12339. },
  12340. },
  12341. [
  12342. {
  12343. name: "Normal",
  12344. height: math.unit(2 + 5 / 12, "feet"),
  12345. default: true
  12346. },
  12347. ]
  12348. ))
  12349. characterMakers.push(() => makeCharacter(
  12350. { name: "Iliac" },
  12351. {
  12352. front: {
  12353. height: math.unit(6 + 2 / 12, "feet"),
  12354. weight: math.unit(146, "lb"),
  12355. name: "Front",
  12356. image: {
  12357. source: "./media/characters/iliac/front.svg",
  12358. extra: 389 / 365,
  12359. bottom: 0.035
  12360. }
  12361. },
  12362. },
  12363. [
  12364. {
  12365. name: "Normal",
  12366. height: math.unit(6 + 2 / 12, "feet"),
  12367. default: true
  12368. },
  12369. ]
  12370. ))
  12371. characterMakers.push(() => makeCharacter(
  12372. { name: "Topaz" },
  12373. {
  12374. front: {
  12375. height: math.unit(6, "feet"),
  12376. weight: math.unit(170, "lb"),
  12377. name: "Front",
  12378. image: {
  12379. source: "./media/characters/topaz/front.svg",
  12380. extra: 317 / 303,
  12381. bottom: 0.055
  12382. }
  12383. },
  12384. },
  12385. [
  12386. {
  12387. name: "Normal",
  12388. height: math.unit(6, "feet"),
  12389. default: true
  12390. },
  12391. ]
  12392. ))
  12393. characterMakers.push(() => makeCharacter(
  12394. { name: "Gabriel" },
  12395. {
  12396. front: {
  12397. height: math.unit(5 + 11 / 12, "feet"),
  12398. weight: math.unit(144, "lb"),
  12399. name: "Front",
  12400. image: {
  12401. source: "./media/characters/gabriel/front.svg",
  12402. extra: 285 / 262,
  12403. bottom: 0.004
  12404. }
  12405. },
  12406. },
  12407. [
  12408. {
  12409. name: "Normal",
  12410. height: math.unit(5 + 11 / 12, "feet"),
  12411. default: true
  12412. },
  12413. ]
  12414. ))
  12415. characterMakers.push(() => makeCharacter(
  12416. { name: "Tempest (Suicune)" },
  12417. {
  12418. side: {
  12419. height: math.unit(6 + 5 / 12, "feet"),
  12420. weight: math.unit(300, "lb"),
  12421. name: "Side",
  12422. image: {
  12423. source: "./media/characters/tempest-suicune/side.svg",
  12424. extra: 195 / 154,
  12425. bottom: 0.04
  12426. }
  12427. },
  12428. },
  12429. [
  12430. {
  12431. name: "Normal",
  12432. height: math.unit(6 + 5 / 12, "feet"),
  12433. default: true
  12434. },
  12435. ]
  12436. ))
  12437. characterMakers.push(() => makeCharacter(
  12438. { name: "Vulcan" },
  12439. {
  12440. front: {
  12441. height: math.unit(7 + 2 / 12, "feet"),
  12442. weight: math.unit(322, "lb"),
  12443. name: "Front",
  12444. image: {
  12445. source: "./media/characters/vulcan/front.svg",
  12446. extra: 154 / 147,
  12447. bottom: 0.04
  12448. }
  12449. },
  12450. },
  12451. [
  12452. {
  12453. name: "Normal",
  12454. height: math.unit(7 + 2 / 12, "feet"),
  12455. default: true
  12456. },
  12457. ]
  12458. ))
  12459. characterMakers.push(() => makeCharacter(
  12460. { name: "Gault" },
  12461. {
  12462. front: {
  12463. height: math.unit(5 + 10 / 12, "feet"),
  12464. weight: math.unit(264, "lb"),
  12465. name: "Front",
  12466. image: {
  12467. source: "./media/characters/gault/front.svg",
  12468. extra: 161 / 140,
  12469. bottom: 0.028
  12470. }
  12471. },
  12472. },
  12473. [
  12474. {
  12475. name: "Normal",
  12476. height: math.unit(5 + 10 / 12, "feet"),
  12477. default: true
  12478. },
  12479. ]
  12480. ))
  12481. characterMakers.push(() => makeCharacter(
  12482. { name: "Shard" },
  12483. {
  12484. front: {
  12485. height: math.unit(6, "feet"),
  12486. weight: math.unit(150, "lb"),
  12487. name: "Front",
  12488. image: {
  12489. source: "./media/characters/shard/front.svg",
  12490. extra: 273 / 238,
  12491. bottom: 0.02
  12492. }
  12493. },
  12494. },
  12495. [
  12496. {
  12497. name: "Normal",
  12498. height: math.unit(3 + 6 / 12, "feet"),
  12499. default: true
  12500. },
  12501. ]
  12502. ))
  12503. characterMakers.push(() => makeCharacter(
  12504. { name: "Ashe" },
  12505. {
  12506. front: {
  12507. height: math.unit(5 + 11 / 12, "feet"),
  12508. weight: math.unit(146, "lb"),
  12509. name: "Front",
  12510. image: {
  12511. source: "./media/characters/ashe/front.svg",
  12512. extra: 400 / 373,
  12513. bottom: 0.01
  12514. }
  12515. },
  12516. },
  12517. [
  12518. {
  12519. name: "Normal",
  12520. height: math.unit(5 + 11 / 12, "feet"),
  12521. default: true
  12522. },
  12523. ]
  12524. ))
  12525. characterMakers.push(() => makeCharacter(
  12526. { name: "Beatrix" },
  12527. {
  12528. front: {
  12529. height: math.unit(5 + 5 / 12, "feet"),
  12530. weight: math.unit(135, "lb"),
  12531. name: "Front",
  12532. image: {
  12533. source: "./media/characters/beatrix/front.svg",
  12534. extra: 392 / 379,
  12535. bottom: 0.01
  12536. }
  12537. },
  12538. },
  12539. [
  12540. {
  12541. name: "Normal",
  12542. height: math.unit(6, "feet"),
  12543. default: true
  12544. },
  12545. ]
  12546. ))
  12547. characterMakers.push(() => makeCharacter(
  12548. { name: "Ignatius" },
  12549. {
  12550. front: {
  12551. height: math.unit(6, "feet"),
  12552. weight: math.unit(150, "lb"),
  12553. name: "Front",
  12554. image: {
  12555. source: "./media/characters/ignatius/front.svg",
  12556. extra: 245 / 222,
  12557. bottom: 0.01
  12558. }
  12559. },
  12560. },
  12561. [
  12562. {
  12563. name: "Normal",
  12564. height: math.unit(5 + 5 / 12, "feet"),
  12565. default: true
  12566. },
  12567. ]
  12568. ))
  12569. characterMakers.push(() => makeCharacter(
  12570. { name: "Mei Li" },
  12571. {
  12572. front: {
  12573. height: math.unit(6 + 2 / 12, "feet"),
  12574. weight: math.unit(138, "lb"),
  12575. name: "Front",
  12576. image: {
  12577. source: "./media/characters/mei-li/front.svg",
  12578. extra: 237 / 229,
  12579. bottom: 0.03
  12580. }
  12581. },
  12582. },
  12583. [
  12584. {
  12585. name: "Normal",
  12586. height: math.unit(6 + 2 / 12, "feet"),
  12587. default: true
  12588. },
  12589. ]
  12590. ))
  12591. characterMakers.push(() => makeCharacter(
  12592. { name: "Puru" },
  12593. {
  12594. front: {
  12595. height: math.unit(2 + 4 / 12, "feet"),
  12596. weight: math.unit(62, "lb"),
  12597. name: "Front",
  12598. image: {
  12599. source: "./media/characters/puru/front.svg",
  12600. extra: 206 / 149,
  12601. bottom: 0.06
  12602. }
  12603. },
  12604. },
  12605. [
  12606. {
  12607. name: "Normal",
  12608. height: math.unit(2 + 4 / 12, "feet"),
  12609. default: true
  12610. },
  12611. ]
  12612. ))
  12613. characterMakers.push(() => makeCharacter(
  12614. { name: "Kee" },
  12615. {
  12616. taur: {
  12617. height: math.unit(11, "feet"),
  12618. weight: math.unit(500, "lb"),
  12619. name: "Taur",
  12620. image: {
  12621. source: "./media/characters/kee/taur.svg",
  12622. extra: 1,
  12623. bottom: 0.04
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Normal",
  12630. height: math.unit(11, "feet"),
  12631. default: true
  12632. },
  12633. ]
  12634. ))
  12635. characterMakers.push(() => makeCharacter(
  12636. { name: "Cobalt (Dracha)" },
  12637. {
  12638. anthro: {
  12639. height: math.unit(7, "feet"),
  12640. weight: math.unit(190, "lb"),
  12641. name: "Anthro",
  12642. image: {
  12643. source: "./media/characters/cobalt-dracha/anthro.svg",
  12644. extra: 231 / 225,
  12645. bottom: 0.04
  12646. }
  12647. },
  12648. feral: {
  12649. height: math.unit(9 + 7 / 12, "feet"),
  12650. weight: math.unit(294, "lb"),
  12651. name: "Feral",
  12652. image: {
  12653. source: "./media/characters/cobalt-dracha/feral.svg",
  12654. extra: 692 / 633,
  12655. bottom: 0.05
  12656. }
  12657. },
  12658. },
  12659. [
  12660. {
  12661. name: "Normal",
  12662. height: math.unit(7, "feet"),
  12663. default: true
  12664. },
  12665. ]
  12666. ))
  12667. characterMakers.push(() => makeCharacter(
  12668. { name: "Java" },
  12669. {
  12670. fallen: {
  12671. height: math.unit(11 + 8 / 12, "feet"),
  12672. weight: math.unit(485, "lb"),
  12673. name: "Java (Fallen)",
  12674. rename: true,
  12675. image: {
  12676. source: "./media/characters/java/fallen.svg",
  12677. extra: 226 / 208,
  12678. bottom: 0.005
  12679. }
  12680. },
  12681. godkin: {
  12682. height: math.unit(10 + 6 / 12, "feet"),
  12683. weight: math.unit(328, "lb"),
  12684. name: "Java (Godkin)",
  12685. rename: true,
  12686. image: {
  12687. source: "./media/characters/java/godkin.svg",
  12688. extra: 270 / 262,
  12689. bottom: 0.02
  12690. }
  12691. },
  12692. },
  12693. [
  12694. {
  12695. name: "Normal",
  12696. height: math.unit(11 + 8 / 12, "feet"),
  12697. default: true
  12698. },
  12699. ]
  12700. ))
  12701. characterMakers.push(() => makeCharacter(
  12702. { name: "Skoll" },
  12703. {
  12704. front: {
  12705. height: math.unit(7 + 8 / 12, "feet"),
  12706. weight: math.unit(320, "lb"),
  12707. name: "Front",
  12708. image: {
  12709. source: "./media/characters/skoll/front.svg",
  12710. extra: 232 / 220,
  12711. bottom: 0.02
  12712. }
  12713. },
  12714. },
  12715. [
  12716. {
  12717. name: "Normal",
  12718. height: math.unit(7 + 8 / 12, "feet"),
  12719. default: true
  12720. },
  12721. ]
  12722. ))
  12723. characterMakers.push(() => makeCharacter(
  12724. { name: "Purna" },
  12725. {
  12726. front: {
  12727. height: math.unit(5 + 9 / 12, "feet"),
  12728. weight: math.unit(170, "lb"),
  12729. name: "Front",
  12730. image: {
  12731. source: "./media/characters/purna/front.svg",
  12732. extra: 239 / 229,
  12733. bottom: 0.01
  12734. }
  12735. },
  12736. },
  12737. [
  12738. {
  12739. name: "Normal",
  12740. height: math.unit(5 + 9 / 12, "feet"),
  12741. default: true
  12742. },
  12743. ]
  12744. ))
  12745. characterMakers.push(() => makeCharacter(
  12746. { name: "Kuva" },
  12747. {
  12748. front: {
  12749. height: math.unit(5 + 9 / 12, "feet"),
  12750. weight: math.unit(142, "lb"),
  12751. name: "Front",
  12752. image: {
  12753. source: "./media/characters/kuva/front.svg",
  12754. extra: 281 / 271,
  12755. bottom: 0.006
  12756. }
  12757. },
  12758. },
  12759. [
  12760. {
  12761. name: "Normal",
  12762. height: math.unit(5 + 9 / 12, "feet"),
  12763. default: true
  12764. },
  12765. ]
  12766. ))
  12767. characterMakers.push(() => makeCharacter(
  12768. { name: "Embra" },
  12769. {
  12770. anthro: {
  12771. height: math.unit(9 + 2 / 12, "feet"),
  12772. weight: math.unit(270, "lb"),
  12773. name: "Anthro",
  12774. image: {
  12775. source: "./media/characters/embra/anthro.svg",
  12776. extra: 200 / 187,
  12777. bottom: 0.02
  12778. }
  12779. },
  12780. feral: {
  12781. height: math.unit(18 + 8 / 12, "feet"),
  12782. weight: math.unit(576, "lb"),
  12783. name: "Feral",
  12784. image: {
  12785. source: "./media/characters/embra/feral.svg",
  12786. extra: 152 / 137,
  12787. bottom: 0.037
  12788. }
  12789. },
  12790. },
  12791. [
  12792. {
  12793. name: "Normal",
  12794. height: math.unit(9 + 2 / 12, "feet"),
  12795. default: true
  12796. },
  12797. ]
  12798. ))
  12799. characterMakers.push(() => makeCharacter(
  12800. { name: "Grottos" },
  12801. {
  12802. anthro: {
  12803. height: math.unit(10 + 9 / 12, "feet"),
  12804. weight: math.unit(224, "lb"),
  12805. name: "Anthro",
  12806. image: {
  12807. source: "./media/characters/grottos/anthro.svg",
  12808. extra: 350 / 332,
  12809. bottom: 0.045
  12810. }
  12811. },
  12812. feral: {
  12813. height: math.unit(20 + 7 / 12, "feet"),
  12814. weight: math.unit(629, "lb"),
  12815. name: "Feral",
  12816. image: {
  12817. source: "./media/characters/grottos/feral.svg",
  12818. extra: 207 / 190,
  12819. bottom: 0.05
  12820. }
  12821. },
  12822. },
  12823. [
  12824. {
  12825. name: "Normal",
  12826. height: math.unit(10 + 9 / 12, "feet"),
  12827. default: true
  12828. },
  12829. ]
  12830. ))
  12831. characterMakers.push(() => makeCharacter(
  12832. { name: "Frifna" },
  12833. {
  12834. anthro: {
  12835. height: math.unit(9 + 6 / 12, "feet"),
  12836. weight: math.unit(298, "lb"),
  12837. name: "Anthro",
  12838. image: {
  12839. source: "./media/characters/frifna/anthro.svg",
  12840. extra: 282 / 269,
  12841. bottom: 0.015
  12842. }
  12843. },
  12844. feral: {
  12845. height: math.unit(16 + 2 / 12, "feet"),
  12846. weight: math.unit(624, "lb"),
  12847. name: "Feral",
  12848. image: {
  12849. source: "./media/characters/frifna/feral.svg"
  12850. }
  12851. },
  12852. },
  12853. [
  12854. {
  12855. name: "Normal",
  12856. height: math.unit(9 + 6 / 12, "feet"),
  12857. default: true
  12858. },
  12859. ]
  12860. ))
  12861. characterMakers.push(() => makeCharacter(
  12862. { name: "Elise" },
  12863. {
  12864. front: {
  12865. height: math.unit(6 + 2 / 12, "feet"),
  12866. weight: math.unit(168, "lb"),
  12867. name: "Front",
  12868. image: {
  12869. source: "./media/characters/elise/front.svg",
  12870. extra: 276 / 271
  12871. }
  12872. },
  12873. },
  12874. [
  12875. {
  12876. name: "Normal",
  12877. height: math.unit(6 + 2 / 12, "feet"),
  12878. default: true
  12879. },
  12880. ]
  12881. ))
  12882. characterMakers.push(() => makeCharacter(
  12883. { name: "Glade" },
  12884. {
  12885. front: {
  12886. height: math.unit(5 + 10 / 12, "feet"),
  12887. weight: math.unit(210, "lb"),
  12888. name: "Front",
  12889. image: {
  12890. source: "./media/characters/glade/front.svg",
  12891. extra: 258 / 247,
  12892. bottom: 0.008
  12893. }
  12894. },
  12895. },
  12896. [
  12897. {
  12898. name: "Normal",
  12899. height: math.unit(5 + 10 / 12, "feet"),
  12900. default: true
  12901. },
  12902. ]
  12903. ))
  12904. characterMakers.push(() => makeCharacter(
  12905. { name: "Rina" },
  12906. {
  12907. front: {
  12908. height: math.unit(5 + 10 / 12, "feet"),
  12909. weight: math.unit(129, "lb"),
  12910. name: "Front",
  12911. image: {
  12912. source: "./media/characters/rina/front.svg",
  12913. extra: 266 / 255,
  12914. bottom: 0.005
  12915. }
  12916. },
  12917. },
  12918. [
  12919. {
  12920. name: "Normal",
  12921. height: math.unit(5 + 10 / 12, "feet"),
  12922. default: true
  12923. },
  12924. ]
  12925. ))
  12926. characterMakers.push(() => makeCharacter(
  12927. { name: "Veronica" },
  12928. {
  12929. front: {
  12930. height: math.unit(6 + 1 / 12, "feet"),
  12931. weight: math.unit(192, "lb"),
  12932. name: "Front",
  12933. image: {
  12934. source: "./media/characters/veronica/front.svg",
  12935. extra: 319 / 309,
  12936. bottom: 0.005
  12937. }
  12938. },
  12939. },
  12940. [
  12941. {
  12942. name: "Normal",
  12943. height: math.unit(6 + 1 / 12, "feet"),
  12944. default: true
  12945. },
  12946. ]
  12947. ))
  12948. characterMakers.push(() => makeCharacter(
  12949. { name: "Braxton" },
  12950. {
  12951. front: {
  12952. height: math.unit(9 + 3 / 12, "feet"),
  12953. weight: math.unit(1100, "lb"),
  12954. name: "Front",
  12955. image: {
  12956. source: "./media/characters/braxton/front.svg",
  12957. extra: 1057 / 984,
  12958. bottom: 0.05
  12959. }
  12960. },
  12961. },
  12962. [
  12963. {
  12964. name: "Normal",
  12965. height: math.unit(9 + 3 / 12, "feet")
  12966. },
  12967. {
  12968. name: "Giant",
  12969. height: math.unit(300, "feet"),
  12970. default: true
  12971. },
  12972. {
  12973. name: "Macro",
  12974. height: math.unit(700, "feet")
  12975. },
  12976. {
  12977. name: "Megamacro",
  12978. height: math.unit(6000, "feet")
  12979. },
  12980. ]
  12981. ))
  12982. characterMakers.push(() => makeCharacter(
  12983. { name: "Blue Feyonics" },
  12984. {
  12985. front: {
  12986. height: math.unit(6 + 7 / 12, "feet"),
  12987. weight: math.unit(150, "lb"),
  12988. name: "Front",
  12989. image: {
  12990. source: "./media/characters/blue-feyonics/front.svg",
  12991. extra: 1403 / 1306,
  12992. bottom: 0.047
  12993. }
  12994. },
  12995. },
  12996. [
  12997. {
  12998. name: "Normal",
  12999. height: math.unit(6 + 7 / 12, "feet"),
  13000. default: true
  13001. },
  13002. ]
  13003. ))
  13004. characterMakers.push(() => makeCharacter(
  13005. { name: "Maxwell" },
  13006. {
  13007. front: {
  13008. height: math.unit(1.8, "meters"),
  13009. weight: math.unit(60, "kg"),
  13010. name: "Front",
  13011. image: {
  13012. source: "./media/characters/maxwell/front.svg",
  13013. extra: 2060 / 1873
  13014. }
  13015. },
  13016. },
  13017. [
  13018. {
  13019. name: "Micro",
  13020. height: math.unit(1, "mm")
  13021. },
  13022. {
  13023. name: "Normal",
  13024. height: math.unit(1.8, "meter"),
  13025. default: true
  13026. },
  13027. {
  13028. name: "Macro",
  13029. height: math.unit(30, "meters")
  13030. },
  13031. {
  13032. name: "Megamacro",
  13033. height: math.unit(10, "km")
  13034. },
  13035. ]
  13036. ))
  13037. characterMakers.push(() => makeCharacter(
  13038. { name: "Jack" },
  13039. {
  13040. front: {
  13041. height: math.unit(6, "feet"),
  13042. weight: math.unit(150, "lb"),
  13043. name: "Front",
  13044. image: {
  13045. source: "./media/characters/jack/front.svg",
  13046. extra: 1754 / 1640,
  13047. bottom: 0.01
  13048. }
  13049. },
  13050. },
  13051. [
  13052. {
  13053. name: "Normal",
  13054. height: math.unit(80000, "feet"),
  13055. default: true
  13056. },
  13057. {
  13058. name: "Max size",
  13059. height: math.unit(10, "lightyears")
  13060. },
  13061. ]
  13062. ))
  13063. characterMakers.push(() => makeCharacter(
  13064. { name: "Cafat" },
  13065. {
  13066. upright: {
  13067. height: math.unit(7, "feet"),
  13068. weight: math.unit(170, "lb"),
  13069. name: "Upright",
  13070. image: {
  13071. source: "./media/characters/cafat/upright.svg",
  13072. bottom: 0.01
  13073. }
  13074. },
  13075. uprightFull: {
  13076. height: math.unit(7, "feet"),
  13077. weight: math.unit(170, "lb"),
  13078. name: "Upright (Full)",
  13079. image: {
  13080. source: "./media/characters/cafat/upright-full.svg",
  13081. bottom: 0.01
  13082. }
  13083. },
  13084. side: {
  13085. height: math.unit(5, "feet"),
  13086. weight: math.unit(150, "lb"),
  13087. name: "Side",
  13088. image: {
  13089. source: "./media/characters/cafat/side.svg"
  13090. }
  13091. },
  13092. },
  13093. [
  13094. {
  13095. name: "Small",
  13096. height: math.unit(7, "feet"),
  13097. default: true
  13098. },
  13099. {
  13100. name: "Large",
  13101. height: math.unit(15.5, "feet")
  13102. },
  13103. ]
  13104. ))
  13105. characterMakers.push(() => makeCharacter(
  13106. { name: "Verin Raharra" },
  13107. {
  13108. front: {
  13109. height: math.unit(6, "feet"),
  13110. weight: math.unit(150, "lb"),
  13111. name: "Front",
  13112. image: {
  13113. source: "./media/characters/verin-raharra/front.svg",
  13114. extra: 5019 / 4835,
  13115. bottom: 0.023
  13116. }
  13117. },
  13118. },
  13119. [
  13120. {
  13121. name: "Normal",
  13122. height: math.unit(7 + 5 / 12, "feet"),
  13123. default: true
  13124. },
  13125. {
  13126. name: "Upsized",
  13127. height: math.unit(20, "feet")
  13128. },
  13129. ]
  13130. ))
  13131. characterMakers.push(() => makeCharacter(
  13132. { name: "Nakata" },
  13133. {
  13134. front: {
  13135. height: math.unit(7, "feet"),
  13136. weight: math.unit(230, "lb"),
  13137. name: "Front",
  13138. image: {
  13139. source: "./media/characters/nakata/front.svg",
  13140. extra: 1.005,
  13141. bottom: 0.01
  13142. }
  13143. },
  13144. },
  13145. [
  13146. {
  13147. name: "Normal",
  13148. height: math.unit(7, "feet"),
  13149. default: true
  13150. },
  13151. {
  13152. name: "Big",
  13153. height: math.unit(14, "feet")
  13154. },
  13155. {
  13156. name: "Macro",
  13157. height: math.unit(400, "feet")
  13158. },
  13159. ]
  13160. ))
  13161. characterMakers.push(() => makeCharacter(
  13162. { name: "Lily" },
  13163. {
  13164. front: {
  13165. height: math.unit(4.91, "feet"),
  13166. weight: math.unit(100, "lb"),
  13167. name: "Front",
  13168. image: {
  13169. source: "./media/characters/lily/front.svg",
  13170. extra: 1585 / 1415,
  13171. bottom: 0.02
  13172. }
  13173. },
  13174. },
  13175. [
  13176. {
  13177. name: "Normal",
  13178. height: math.unit(4.91, "feet"),
  13179. default: true
  13180. },
  13181. ]
  13182. ))
  13183. characterMakers.push(() => makeCharacter(
  13184. { name: "Sheila" },
  13185. {
  13186. laying: {
  13187. height: math.unit(4 + 4 / 12, "feet"),
  13188. weight: math.unit(600, "lb"),
  13189. name: "Laying",
  13190. image: {
  13191. source: "./media/characters/sheila/laying.svg",
  13192. extra: 1333 / 1265,
  13193. bottom: 0.16
  13194. }
  13195. },
  13196. },
  13197. [
  13198. {
  13199. name: "Normal",
  13200. height: math.unit(4 + 4 / 12, "feet"),
  13201. default: true
  13202. },
  13203. ]
  13204. ))
  13205. characterMakers.push(() => makeCharacter(
  13206. { name: "Sax" },
  13207. {
  13208. front: {
  13209. height: math.unit(6, "feet"),
  13210. weight: math.unit(190, "lb"),
  13211. name: "Front",
  13212. image: {
  13213. source: "./media/characters/sax/front.svg",
  13214. extra: 1187 / 973,
  13215. bottom: 0.042
  13216. }
  13217. },
  13218. },
  13219. [
  13220. {
  13221. name: "Micro",
  13222. height: math.unit(4, "inches"),
  13223. default: true
  13224. },
  13225. ]
  13226. ))
  13227. characterMakers.push(() => makeCharacter(
  13228. { name: "Pandora" },
  13229. {
  13230. front: {
  13231. height: math.unit(6, "feet"),
  13232. weight: math.unit(150, "lb"),
  13233. name: "Front",
  13234. image: {
  13235. source: "./media/characters/pandora/front.svg",
  13236. extra: 2720 / 2556,
  13237. bottom: 0.015
  13238. }
  13239. },
  13240. back: {
  13241. height: math.unit(6, "feet"),
  13242. weight: math.unit(150, "lb"),
  13243. name: "Back",
  13244. image: {
  13245. source: "./media/characters/pandora/back.svg",
  13246. extra: 2720 / 2556,
  13247. bottom: 0.01
  13248. }
  13249. },
  13250. beans: {
  13251. height: math.unit(6 / 8, "feet"),
  13252. name: "Beans",
  13253. image: {
  13254. source: "./media/characters/pandora/beans.svg"
  13255. }
  13256. },
  13257. skirt: {
  13258. height: math.unit(6, "feet"),
  13259. weight: math.unit(150, "lb"),
  13260. name: "Skirt",
  13261. image: {
  13262. source: "./media/characters/pandora/skirt.svg",
  13263. extra: 1622 / 1525,
  13264. bottom: 0.015
  13265. }
  13266. },
  13267. hoodie: {
  13268. height: math.unit(6, "feet"),
  13269. weight: math.unit(150, "lb"),
  13270. name: "Hoodie",
  13271. image: {
  13272. source: "./media/characters/pandora/hoodie.svg",
  13273. extra: 1622 / 1525,
  13274. bottom: 0.015
  13275. }
  13276. },
  13277. casual: {
  13278. height: math.unit(6, "feet"),
  13279. weight: math.unit(150, "lb"),
  13280. name: "Casual",
  13281. image: {
  13282. source: "./media/characters/pandora/casual.svg",
  13283. extra: 1622 / 1525,
  13284. bottom: 0.015
  13285. }
  13286. },
  13287. },
  13288. [
  13289. {
  13290. name: "Normal",
  13291. height: math.unit(6, "feet")
  13292. },
  13293. {
  13294. name: "Big Steppy",
  13295. height: math.unit(1, "km"),
  13296. default: true
  13297. },
  13298. ]
  13299. ))
  13300. characterMakers.push(() => makeCharacter(
  13301. { name: "Venio Darcony" },
  13302. {
  13303. side: {
  13304. height: math.unit(10, "feet"),
  13305. weight: math.unit(800, "kg"),
  13306. name: "Side",
  13307. image: {
  13308. source: "./media/characters/venio-darcony/side.svg",
  13309. extra: 1373 / 1003,
  13310. bottom: 0.037
  13311. }
  13312. },
  13313. front: {
  13314. height: math.unit(19, "feet"),
  13315. weight: math.unit(800, "kg"),
  13316. name: "Front",
  13317. image: {
  13318. source: "./media/characters/venio-darcony/front.svg"
  13319. }
  13320. },
  13321. back: {
  13322. height: math.unit(19, "feet"),
  13323. weight: math.unit(800, "kg"),
  13324. name: "Back",
  13325. image: {
  13326. source: "./media/characters/venio-darcony/back.svg"
  13327. }
  13328. },
  13329. },
  13330. [
  13331. {
  13332. name: "Normal",
  13333. height: math.unit(10, "feet")
  13334. },
  13335. {
  13336. name: "Macro",
  13337. height: math.unit(130, "feet"),
  13338. default: true
  13339. },
  13340. {
  13341. name: "Macro+",
  13342. height: math.unit(240, "feet")
  13343. },
  13344. ]
  13345. ))
  13346. characterMakers.push(() => makeCharacter(
  13347. { name: "Veski" },
  13348. {
  13349. front: {
  13350. height: math.unit(6, "feet"),
  13351. weight: math.unit(150, "lb"),
  13352. name: "Front",
  13353. image: {
  13354. source: "./media/characters/veski/front.svg",
  13355. extra: 1299 / 1225,
  13356. bottom: 0.04
  13357. }
  13358. },
  13359. back: {
  13360. height: math.unit(6, "feet"),
  13361. weight: math.unit(150, "lb"),
  13362. name: "Back",
  13363. image: {
  13364. source: "./media/characters/veski/back.svg",
  13365. extra: 1299 / 1225,
  13366. bottom: 0.008
  13367. }
  13368. },
  13369. maw: {
  13370. height: math.unit(1.5 * 1.21, "feet"),
  13371. name: "Maw",
  13372. image: {
  13373. source: "./media/characters/veski/maw.svg"
  13374. }
  13375. },
  13376. },
  13377. [
  13378. {
  13379. name: "Macro",
  13380. height: math.unit(2, "km"),
  13381. default: true
  13382. },
  13383. ]
  13384. ))
  13385. characterMakers.push(() => makeCharacter(
  13386. { name: "Isabelle" },
  13387. {
  13388. front: {
  13389. height: math.unit(5 + 7 / 12, "feet"),
  13390. name: "Front",
  13391. image: {
  13392. source: "./media/characters/isabelle/front.svg",
  13393. extra: 2130 / 1976,
  13394. bottom: 0.05
  13395. }
  13396. },
  13397. },
  13398. [
  13399. {
  13400. name: "Supermicro",
  13401. height: math.unit(10, "micrometers")
  13402. },
  13403. {
  13404. name: "Micro",
  13405. height: math.unit(1, "inch")
  13406. },
  13407. {
  13408. name: "Tiny",
  13409. height: math.unit(5, "inches")
  13410. },
  13411. {
  13412. name: "Standard",
  13413. height: math.unit(5 + 7 / 12, "inches")
  13414. },
  13415. {
  13416. name: "Macro",
  13417. height: math.unit(80, "meters"),
  13418. default: true
  13419. },
  13420. {
  13421. name: "Megamacro",
  13422. height: math.unit(250, "meters")
  13423. },
  13424. {
  13425. name: "Gigamacro",
  13426. height: math.unit(5, "km")
  13427. },
  13428. {
  13429. name: "Cosmic",
  13430. height: math.unit(2.5e6, "miles")
  13431. },
  13432. ]
  13433. ))
  13434. characterMakers.push(() => makeCharacter(
  13435. { name: "Hanzo" },
  13436. {
  13437. front: {
  13438. height: math.unit(6, "feet"),
  13439. weight: math.unit(150, "lb"),
  13440. name: "Front",
  13441. image: {
  13442. source: "./media/characters/hanzo/front.svg",
  13443. extra: 374 / 344,
  13444. bottom: 0.02
  13445. }
  13446. },
  13447. },
  13448. [
  13449. {
  13450. name: "Normal",
  13451. height: math.unit(8, "feet"),
  13452. default: true
  13453. },
  13454. ]
  13455. ))
  13456. characterMakers.push(() => makeCharacter(
  13457. { name: "Anna" },
  13458. {
  13459. front: {
  13460. height: math.unit(7, "feet"),
  13461. weight: math.unit(130, "lb"),
  13462. name: "Front",
  13463. image: {
  13464. source: "./media/characters/anna/front.svg",
  13465. extra: 169 / 145,
  13466. bottom: 0.06
  13467. }
  13468. },
  13469. full: {
  13470. height: math.unit(4.96, "feet"),
  13471. weight: math.unit(220, "lb"),
  13472. name: "Full",
  13473. image: {
  13474. source: "./media/characters/anna/full.svg",
  13475. extra: 138 / 114,
  13476. bottom: 0.15
  13477. }
  13478. },
  13479. tongue: {
  13480. height: math.unit(2.53, "feet"),
  13481. name: "Tongue",
  13482. image: {
  13483. source: "./media/characters/anna/tongue.svg"
  13484. }
  13485. },
  13486. },
  13487. [
  13488. {
  13489. name: "Normal",
  13490. height: math.unit(7, "feet"),
  13491. default: true
  13492. },
  13493. ]
  13494. ))
  13495. characterMakers.push(() => makeCharacter(
  13496. { name: "Ian Corvid" },
  13497. {
  13498. front: {
  13499. height: math.unit(7, "feet"),
  13500. weight: math.unit(150, "lb"),
  13501. name: "Front",
  13502. image: {
  13503. source: "./media/characters/ian-corvid/front.svg",
  13504. extra: 150 / 142,
  13505. bottom: 0.02
  13506. }
  13507. },
  13508. back: {
  13509. height: math.unit(7, "feet"),
  13510. weight: math.unit(150, "lb"),
  13511. name: "Back",
  13512. image: {
  13513. source: "./media/characters/ian-corvid/back.svg",
  13514. extra: 150 / 143,
  13515. bottom: 0.01
  13516. }
  13517. },
  13518. stomping: {
  13519. height: math.unit(7, "feet"),
  13520. weight: math.unit(150, "lb"),
  13521. name: "Stomping",
  13522. image: {
  13523. source: "./media/characters/ian-corvid/stomping.svg",
  13524. extra: 76 / 72
  13525. }
  13526. },
  13527. sitting: {
  13528. height: math.unit(7 / 1.8, "feet"),
  13529. weight: math.unit(150, "lb"),
  13530. name: "Sitting",
  13531. image: {
  13532. source: "./media/characters/ian-corvid/sitting.svg",
  13533. extra: 1400 / 1269,
  13534. bottom: 0.15
  13535. }
  13536. },
  13537. },
  13538. [
  13539. {
  13540. name: "Tiny Microw",
  13541. height: math.unit(1, "inch")
  13542. },
  13543. {
  13544. name: "Microw",
  13545. height: math.unit(6, "inches")
  13546. },
  13547. {
  13548. name: "Crow",
  13549. height: math.unit(7 + 1 / 12, "feet"),
  13550. default: true
  13551. },
  13552. {
  13553. name: "Macrow",
  13554. height: math.unit(176, "feet")
  13555. },
  13556. ]
  13557. ))
  13558. characterMakers.push(() => makeCharacter(
  13559. { name: "Natalie Kellon" },
  13560. {
  13561. front: {
  13562. height: math.unit(5 + 7 / 12, "feet"),
  13563. weight: math.unit(147, "lb"),
  13564. name: "Front",
  13565. image: {
  13566. source: "./media/characters/natalie-kellon/front.svg",
  13567. extra: 1214 / 1141,
  13568. bottom: 0.02
  13569. }
  13570. },
  13571. },
  13572. [
  13573. {
  13574. name: "Micro",
  13575. height: math.unit(1 / 16, "inch")
  13576. },
  13577. {
  13578. name: "Tiny",
  13579. height: math.unit(4, "inches")
  13580. },
  13581. {
  13582. name: "Normal",
  13583. height: math.unit(5 + 7 / 12, "feet"),
  13584. default: true
  13585. },
  13586. {
  13587. name: "Amazon",
  13588. height: math.unit(12, "feet")
  13589. },
  13590. {
  13591. name: "Giantess",
  13592. height: math.unit(160, "meters")
  13593. },
  13594. {
  13595. name: "Titaness",
  13596. height: math.unit(800, "meters")
  13597. },
  13598. ]
  13599. ))
  13600. characterMakers.push(() => makeCharacter(
  13601. { name: "Alluria" },
  13602. {
  13603. front: {
  13604. height: math.unit(6, "feet"),
  13605. weight: math.unit(150, "lb"),
  13606. name: "Front",
  13607. image: {
  13608. source: "./media/characters/alluria/front.svg",
  13609. extra: 806 / 738,
  13610. bottom: 0.01
  13611. }
  13612. },
  13613. side: {
  13614. height: math.unit(6, "feet"),
  13615. weight: math.unit(150, "lb"),
  13616. name: "Side",
  13617. image: {
  13618. source: "./media/characters/alluria/side.svg",
  13619. extra: 800 / 750,
  13620. }
  13621. },
  13622. back: {
  13623. height: math.unit(6, "feet"),
  13624. weight: math.unit(150, "lb"),
  13625. name: "Back",
  13626. image: {
  13627. source: "./media/characters/alluria/back.svg",
  13628. extra: 806 / 738,
  13629. }
  13630. },
  13631. frontMaid: {
  13632. height: math.unit(6, "feet"),
  13633. weight: math.unit(150, "lb"),
  13634. name: "Front (Maid)",
  13635. image: {
  13636. source: "./media/characters/alluria/front-maid.svg",
  13637. extra: 806 / 738,
  13638. bottom: 0.01
  13639. }
  13640. },
  13641. sideMaid: {
  13642. height: math.unit(6, "feet"),
  13643. weight: math.unit(150, "lb"),
  13644. name: "Side (Maid)",
  13645. image: {
  13646. source: "./media/characters/alluria/side-maid.svg",
  13647. extra: 800 / 750,
  13648. bottom: 0.005
  13649. }
  13650. },
  13651. backMaid: {
  13652. height: math.unit(6, "feet"),
  13653. weight: math.unit(150, "lb"),
  13654. name: "Back (Maid)",
  13655. image: {
  13656. source: "./media/characters/alluria/back-maid.svg",
  13657. extra: 806 / 738,
  13658. }
  13659. },
  13660. },
  13661. [
  13662. {
  13663. name: "Micro",
  13664. height: math.unit(6, "inches"),
  13665. default: true
  13666. },
  13667. ]
  13668. ))
  13669. characterMakers.push(() => makeCharacter(
  13670. { name: "Kyle" },
  13671. {
  13672. front: {
  13673. height: math.unit(6, "feet"),
  13674. weight: math.unit(150, "lb"),
  13675. name: "Front",
  13676. image: {
  13677. source: "./media/characters/kyle/front.svg",
  13678. extra: 1069 / 962,
  13679. bottom: 77.228 / 1727.45
  13680. }
  13681. },
  13682. },
  13683. [
  13684. {
  13685. name: "Macro",
  13686. height: math.unit(150, "feet"),
  13687. default: true
  13688. },
  13689. ]
  13690. ))
  13691. characterMakers.push(() => makeCharacter(
  13692. { name: "Duncan" },
  13693. {
  13694. front: {
  13695. height: math.unit(6, "feet"),
  13696. weight: math.unit(300, "lb"),
  13697. name: "Front",
  13698. image: {
  13699. source: "./media/characters/duncan/front.svg",
  13700. extra: 1650 / 1482,
  13701. bottom: 0.05
  13702. }
  13703. },
  13704. },
  13705. [
  13706. {
  13707. name: "Macro",
  13708. height: math.unit(100, "feet"),
  13709. default: true
  13710. },
  13711. ]
  13712. ))
  13713. characterMakers.push(() => makeCharacter(
  13714. { name: "Memory" },
  13715. {
  13716. front: {
  13717. height: math.unit(5 + 4 / 12, "feet"),
  13718. weight: math.unit(220, "lb"),
  13719. name: "Front",
  13720. image: {
  13721. source: "./media/characters/memory/front.svg",
  13722. extra: 3641 / 3545,
  13723. bottom: 0.03
  13724. }
  13725. },
  13726. back: {
  13727. height: math.unit(5 + 4 / 12, "feet"),
  13728. weight: math.unit(220, "lb"),
  13729. name: "Back",
  13730. image: {
  13731. source: "./media/characters/memory/back.svg",
  13732. extra: 3641 / 3545,
  13733. bottom: 0.025
  13734. }
  13735. },
  13736. frontSkirt: {
  13737. height: math.unit(5 + 4 / 12, "feet"),
  13738. weight: math.unit(220, "lb"),
  13739. name: "Front (Skirt)",
  13740. image: {
  13741. source: "./media/characters/memory/front-skirt.svg",
  13742. extra: 3641 / 3545,
  13743. bottom: 0.03
  13744. }
  13745. },
  13746. frontDress: {
  13747. height: math.unit(5 + 4 / 12, "feet"),
  13748. weight: math.unit(220, "lb"),
  13749. name: "Front (Dress)",
  13750. image: {
  13751. source: "./media/characters/memory/front-dress.svg",
  13752. extra: 3641 / 3545,
  13753. bottom: 0.03
  13754. }
  13755. },
  13756. },
  13757. [
  13758. {
  13759. name: "Micro",
  13760. height: math.unit(6, "inches"),
  13761. default: true
  13762. },
  13763. {
  13764. name: "Normal",
  13765. height: math.unit(5 + 4 / 12, "feet")
  13766. },
  13767. ]
  13768. ))
  13769. characterMakers.push(() => makeCharacter(
  13770. { name: "Luno" },
  13771. {
  13772. front: {
  13773. height: math.unit(4 + 11 / 12, "feet"),
  13774. weight: math.unit(100, "lb"),
  13775. name: "Front",
  13776. image: {
  13777. source: "./media/characters/luno/front.svg",
  13778. extra: 1535 / 1487,
  13779. bottom: 0.03
  13780. }
  13781. },
  13782. },
  13783. [
  13784. {
  13785. name: "Micro",
  13786. height: math.unit(3, "inches")
  13787. },
  13788. {
  13789. name: "Normal",
  13790. height: math.unit(4 + 11 / 12, "feet"),
  13791. default: true
  13792. },
  13793. {
  13794. name: "Macro",
  13795. height: math.unit(300, "feet")
  13796. },
  13797. {
  13798. name: "Megamacro",
  13799. height: math.unit(700, "miles")
  13800. },
  13801. ]
  13802. ))
  13803. characterMakers.push(() => makeCharacter(
  13804. { name: "Jamesy" },
  13805. {
  13806. front: {
  13807. height: math.unit(6 + 2 / 12, "feet"),
  13808. weight: math.unit(170, "lb"),
  13809. name: "Front",
  13810. image: {
  13811. source: "./media/characters/jamesy/front.svg",
  13812. extra: 440 / 382,
  13813. bottom: 0.005
  13814. }
  13815. },
  13816. },
  13817. [
  13818. {
  13819. name: "Micro",
  13820. height: math.unit(3, "inches")
  13821. },
  13822. {
  13823. name: "Normal",
  13824. height: math.unit(6 + 2 / 12, "feet"),
  13825. default: true
  13826. },
  13827. {
  13828. name: "Macro",
  13829. height: math.unit(300, "feet")
  13830. },
  13831. {
  13832. name: "Megamacro",
  13833. height: math.unit(700, "miles")
  13834. },
  13835. ]
  13836. ))
  13837. characterMakers.push(() => makeCharacter(
  13838. { name: "Mark" },
  13839. {
  13840. front: {
  13841. height: math.unit(6, "feet"),
  13842. weight: math.unit(160, "lb"),
  13843. name: "Front",
  13844. image: {
  13845. source: "./media/characters/mark/front.svg",
  13846. extra: 3300 / 3100,
  13847. bottom: 136.42 / 3440.47
  13848. }
  13849. },
  13850. },
  13851. [
  13852. {
  13853. name: "Macro",
  13854. height: math.unit(120, "meters")
  13855. },
  13856. {
  13857. name: "Bigger Macro",
  13858. height: math.unit(350, "meters")
  13859. },
  13860. {
  13861. name: "Megamacro",
  13862. height: math.unit(8, "km"),
  13863. default: true
  13864. },
  13865. {
  13866. name: "Continental",
  13867. height: math.unit(4550, "km")
  13868. },
  13869. {
  13870. name: "Planetary",
  13871. height: math.unit(65000, "km")
  13872. },
  13873. ]
  13874. ))
  13875. characterMakers.push(() => makeCharacter(
  13876. { name: "Mac" },
  13877. {
  13878. front: {
  13879. height: math.unit(6, "feet"),
  13880. weight: math.unit(400, "lb"),
  13881. name: "Front",
  13882. image: {
  13883. source: "./media/characters/mac/front.svg",
  13884. extra: 1048 / 987.7,
  13885. bottom: 60 / 1107.6,
  13886. }
  13887. },
  13888. },
  13889. [
  13890. {
  13891. name: "Macro",
  13892. height: math.unit(500, "feet"),
  13893. default: true
  13894. },
  13895. ]
  13896. ))
  13897. characterMakers.push(() => makeCharacter(
  13898. { name: "Bari" },
  13899. {
  13900. front: {
  13901. height: math.unit(5 + 2 / 12, "feet"),
  13902. weight: math.unit(190, "lb"),
  13903. name: "Front",
  13904. image: {
  13905. source: "./media/characters/bari/front.svg",
  13906. extra: 3156 / 2880,
  13907. bottom: 0.03
  13908. }
  13909. },
  13910. back: {
  13911. height: math.unit(5 + 2 / 12, "feet"),
  13912. weight: math.unit(190, "lb"),
  13913. name: "Back",
  13914. image: {
  13915. source: "./media/characters/bari/back.svg",
  13916. extra: 3260 / 2834,
  13917. bottom: 0.025
  13918. }
  13919. },
  13920. frontPlush: {
  13921. height: math.unit(5 + 2 / 12, "feet"),
  13922. weight: math.unit(190, "lb"),
  13923. name: "Front (Plush)",
  13924. image: {
  13925. source: "./media/characters/bari/front-plush.svg",
  13926. extra: 1112 / 1061,
  13927. bottom: 0.002
  13928. }
  13929. },
  13930. },
  13931. [
  13932. {
  13933. name: "Micro",
  13934. height: math.unit(3, "inches")
  13935. },
  13936. {
  13937. name: "Normal",
  13938. height: math.unit(5 + 2 / 12, "feet"),
  13939. default: true
  13940. },
  13941. {
  13942. name: "Macro",
  13943. height: math.unit(20, "feet")
  13944. },
  13945. ]
  13946. ))
  13947. characterMakers.push(() => makeCharacter(
  13948. { name: "Hunter Misha Raven" },
  13949. {
  13950. front: {
  13951. height: math.unit(6 + 1 / 12, "feet"),
  13952. weight: math.unit(275, "lb"),
  13953. name: "Front",
  13954. image: {
  13955. source: "./media/characters/hunter-misha-raven/front.svg"
  13956. }
  13957. },
  13958. },
  13959. [
  13960. {
  13961. name: "Mortal",
  13962. height: math.unit(6 + 1 / 12, "feet")
  13963. },
  13964. {
  13965. name: "Divine",
  13966. height: math.unit(1.12134e34, "parsecs"),
  13967. default: true
  13968. },
  13969. ]
  13970. ))
  13971. characterMakers.push(() => makeCharacter(
  13972. { name: "Max Calore" },
  13973. {
  13974. front: {
  13975. height: math.unit(6 + 3 / 12, "feet"),
  13976. weight: math.unit(220, "lb"),
  13977. name: "Front",
  13978. image: {
  13979. source: "./media/characters/max-calore/front.svg",
  13980. extra: 1700 / 1648,
  13981. bottom: 0.01
  13982. }
  13983. },
  13984. back: {
  13985. height: math.unit(6 + 3 / 12, "feet"),
  13986. weight: math.unit(220, "lb"),
  13987. name: "Back",
  13988. image: {
  13989. source: "./media/characters/max-calore/back.svg",
  13990. extra: 1700 / 1648,
  13991. bottom: 0.01
  13992. }
  13993. },
  13994. },
  13995. [
  13996. {
  13997. name: "Normal",
  13998. height: math.unit(6 + 3 / 12, "feet"),
  13999. default: true
  14000. },
  14001. ]
  14002. ))
  14003. characterMakers.push(() => makeCharacter(
  14004. { name: "Aspen" },
  14005. {
  14006. side: {
  14007. height: math.unit(2 + 8 / 12, "feet"),
  14008. weight: math.unit(99, "lb"),
  14009. name: "Side",
  14010. image: {
  14011. source: "./media/characters/aspen/side.svg",
  14012. extra: 152 / 138,
  14013. bottom: 0.032
  14014. }
  14015. },
  14016. },
  14017. [
  14018. {
  14019. name: "Normal",
  14020. height: math.unit(2 + 8 / 12, "feet"),
  14021. default: true
  14022. },
  14023. ]
  14024. ))
  14025. characterMakers.push(() => makeCharacter(
  14026. { name: "Sheila (Wolf)" },
  14027. {
  14028. side: {
  14029. height: math.unit(3 + 2 / 12, "feet"),
  14030. weight: math.unit(224, "lb"),
  14031. name: "Side",
  14032. image: {
  14033. source: "./media/characters/sheila-wolf/side.svg",
  14034. extra: 179 / 166,
  14035. bottom: 0.03
  14036. }
  14037. },
  14038. },
  14039. [
  14040. {
  14041. name: "Normal",
  14042. height: math.unit(3 + 2 / 12, "feet"),
  14043. default: true
  14044. },
  14045. ]
  14046. ))
  14047. characterMakers.push(() => makeCharacter(
  14048. { name: "Michelle" },
  14049. {
  14050. side: {
  14051. height: math.unit(1 + 9 / 12, "feet"),
  14052. weight: math.unit(38, "lb"),
  14053. name: "Side",
  14054. image: {
  14055. source: "./media/characters/michelle/side.svg",
  14056. extra: 147 / 136.7,
  14057. bottom: 0.03
  14058. }
  14059. },
  14060. },
  14061. [
  14062. {
  14063. name: "Normal",
  14064. height: math.unit(1 + 9 / 12, "feet"),
  14065. default: true
  14066. },
  14067. ]
  14068. ))
  14069. characterMakers.push(() => makeCharacter(
  14070. { name: "Nino" },
  14071. {
  14072. front: {
  14073. height: math.unit(1 + 1 / 12, "feet"),
  14074. weight: math.unit(18, "lb"),
  14075. name: "Front",
  14076. image: {
  14077. source: "./media/characters/nino/front.svg"
  14078. }
  14079. },
  14080. },
  14081. [
  14082. {
  14083. name: "Normal",
  14084. height: math.unit(1 + 1 / 12, "feet"),
  14085. default: true
  14086. },
  14087. ]
  14088. ))
  14089. characterMakers.push(() => makeCharacter(
  14090. { name: "Viola" },
  14091. {
  14092. front: {
  14093. height: math.unit(1, "feet"),
  14094. weight: math.unit(16, "lb"),
  14095. name: "Front",
  14096. image: {
  14097. source: "./media/characters/viola/front.svg"
  14098. }
  14099. },
  14100. },
  14101. [
  14102. {
  14103. name: "Normal",
  14104. height: math.unit(1, "feet"),
  14105. default: true
  14106. },
  14107. ]
  14108. ))
  14109. characterMakers.push(() => makeCharacter(
  14110. { name: "Atlas" },
  14111. {
  14112. front: {
  14113. height: math.unit(6 + 5 / 12, "feet"),
  14114. weight: math.unit(580, "lb"),
  14115. name: "Front",
  14116. image: {
  14117. source: "./media/characters/atlas/front.svg",
  14118. extra: 298.5 / 290,
  14119. bottom: 0.015
  14120. }
  14121. },
  14122. },
  14123. [
  14124. {
  14125. name: "Normal",
  14126. height: math.unit(6 + 5 / 12, "feet"),
  14127. default: true
  14128. },
  14129. ]
  14130. ))
  14131. characterMakers.push(() => makeCharacter(
  14132. { name: "Davy" },
  14133. {
  14134. side: {
  14135. height: math.unit(1 + 10 / 12, "feet"),
  14136. weight: math.unit(25, "lb"),
  14137. name: "Side",
  14138. image: {
  14139. source: "./media/characters/davy/side.svg",
  14140. extra: 200 / 170,
  14141. bottom: 0.01
  14142. }
  14143. },
  14144. },
  14145. [
  14146. {
  14147. name: "Normal",
  14148. height: math.unit(1 + 10 / 12, "feet"),
  14149. default: true
  14150. },
  14151. ]
  14152. ))
  14153. characterMakers.push(() => makeCharacter(
  14154. { name: "Fiona" },
  14155. {
  14156. side: {
  14157. height: math.unit(4 + 8 / 12, "feet"),
  14158. weight: math.unit(166, "lb"),
  14159. name: "Side",
  14160. image: {
  14161. source: "./media/characters/fiona/side.svg",
  14162. extra: 232 / 220,
  14163. bottom: 0.03
  14164. }
  14165. },
  14166. },
  14167. [
  14168. {
  14169. name: "Normal",
  14170. height: math.unit(4 + 8 / 12, "feet"),
  14171. default: true
  14172. },
  14173. ]
  14174. ))
  14175. characterMakers.push(() => makeCharacter(
  14176. { name: "Lyla" },
  14177. {
  14178. front: {
  14179. height: math.unit(2, "feet"),
  14180. weight: math.unit(62, "lb"),
  14181. name: "Front",
  14182. image: {
  14183. source: "./media/characters/lyla/front.svg",
  14184. bottom: 0.1
  14185. }
  14186. },
  14187. },
  14188. [
  14189. {
  14190. name: "Normal",
  14191. height: math.unit(2, "feet"),
  14192. default: true
  14193. },
  14194. ]
  14195. ))
  14196. characterMakers.push(() => makeCharacter(
  14197. { name: "Perseus" },
  14198. {
  14199. side: {
  14200. height: math.unit(1.8, "feet"),
  14201. weight: math.unit(44, "lb"),
  14202. name: "Side",
  14203. image: {
  14204. source: "./media/characters/perseus/side.svg",
  14205. bottom: 0.21
  14206. }
  14207. },
  14208. },
  14209. [
  14210. {
  14211. name: "Normal",
  14212. height: math.unit(1.8, "feet"),
  14213. default: true
  14214. },
  14215. ]
  14216. ))
  14217. characterMakers.push(() => makeCharacter(
  14218. { name: "Remus" },
  14219. {
  14220. side: {
  14221. height: math.unit(4 + 2 / 12, "feet"),
  14222. weight: math.unit(20, "lb"),
  14223. name: "Side",
  14224. image: {
  14225. source: "./media/characters/remus/side.svg"
  14226. }
  14227. },
  14228. },
  14229. [
  14230. {
  14231. name: "Normal",
  14232. height: math.unit(4 + 2 / 12, "feet"),
  14233. default: true
  14234. },
  14235. ]
  14236. ))
  14237. characterMakers.push(() => makeCharacter(
  14238. { name: "Raf" },
  14239. {
  14240. front: {
  14241. height: math.unit(4 + 11 / 12, "feet"),
  14242. weight: math.unit(114, "lb"),
  14243. name: "Front",
  14244. image: {
  14245. source: "./media/characters/raf/front.svg",
  14246. bottom: 0.01
  14247. }
  14248. },
  14249. side: {
  14250. height: math.unit(4 + 11 / 12, "feet"),
  14251. weight: math.unit(114, "lb"),
  14252. name: "Side",
  14253. image: {
  14254. source: "./media/characters/raf/side.svg",
  14255. bottom: 0.005
  14256. }
  14257. },
  14258. },
  14259. [
  14260. {
  14261. name: "Micro",
  14262. height: math.unit(2, "inches")
  14263. },
  14264. {
  14265. name: "Normal",
  14266. height: math.unit(4 + 11 / 12, "feet"),
  14267. default: true
  14268. },
  14269. {
  14270. name: "Macro",
  14271. height: math.unit(70, "feet")
  14272. },
  14273. ]
  14274. ))
  14275. characterMakers.push(() => makeCharacter(
  14276. { name: "Liam Einarr" },
  14277. {
  14278. front: {
  14279. height: math.unit(1.5, "meters"),
  14280. weight: math.unit(68, "kg"),
  14281. name: "Front",
  14282. image: {
  14283. source: "./media/characters/liam-einarr/front.svg",
  14284. extra: 2822 / 2666
  14285. }
  14286. },
  14287. back: {
  14288. height: math.unit(1.5, "meters"),
  14289. weight: math.unit(68, "kg"),
  14290. name: "Back",
  14291. image: {
  14292. source: "./media/characters/liam-einarr/back.svg",
  14293. extra: 2822 / 2666,
  14294. bottom: 0.015
  14295. }
  14296. },
  14297. },
  14298. [
  14299. {
  14300. name: "Normal",
  14301. height: math.unit(1.5, "meters"),
  14302. default: true
  14303. },
  14304. {
  14305. name: "Macro",
  14306. height: math.unit(150, "meters")
  14307. },
  14308. {
  14309. name: "Megamacro",
  14310. height: math.unit(35, "km")
  14311. },
  14312. ]
  14313. ))
  14314. characterMakers.push(() => makeCharacter(
  14315. { name: "Linda" },
  14316. {
  14317. front: {
  14318. height: math.unit(6, "feet"),
  14319. weight: math.unit(75, "kg"),
  14320. name: "Front",
  14321. image: {
  14322. source: "./media/characters/linda/front.svg",
  14323. extra: 930 / 874,
  14324. bottom: 0.004
  14325. }
  14326. },
  14327. },
  14328. [
  14329. {
  14330. name: "Normal",
  14331. height: math.unit(6, "feet"),
  14332. default: true
  14333. },
  14334. ]
  14335. ))
  14336. characterMakers.push(() => makeCharacter(
  14337. { name: "Caylex" },
  14338. {
  14339. front: {
  14340. height: math.unit(6 + 8 / 12, "feet"),
  14341. weight: math.unit(220, "lb"),
  14342. name: "Front",
  14343. image: {
  14344. source: "./media/characters/caylex/front.svg",
  14345. extra: 821 / 772,
  14346. bottom: 0.07
  14347. }
  14348. },
  14349. back: {
  14350. height: math.unit(6 + 8 / 12, "feet"),
  14351. weight: math.unit(220, "lb"),
  14352. name: "Back",
  14353. image: {
  14354. source: "./media/characters/caylex/back.svg",
  14355. extra: 821 / 772,
  14356. bottom: 0.022
  14357. }
  14358. },
  14359. hand: {
  14360. height: math.unit(1.25, "feet"),
  14361. name: "Hand",
  14362. image: {
  14363. source: "./media/characters/caylex/hand.svg"
  14364. }
  14365. },
  14366. foot: {
  14367. height: math.unit(1.6, "feet"),
  14368. name: "Foot",
  14369. image: {
  14370. source: "./media/characters/caylex/foot.svg"
  14371. }
  14372. },
  14373. armored: {
  14374. height: math.unit(6 + 8 / 12, "feet"),
  14375. weight: math.unit(250, "lb"),
  14376. name: "Armored",
  14377. image: {
  14378. source: "./media/characters/caylex/armored.svg",
  14379. extra: 1420 / 1310,
  14380. bottom: 0.045
  14381. }
  14382. },
  14383. },
  14384. [
  14385. {
  14386. name: "Normal",
  14387. height: math.unit(6 + 8 / 12, "feet"),
  14388. default: true
  14389. },
  14390. {
  14391. name: "Normal+",
  14392. height: math.unit(12, "feet")
  14393. },
  14394. ]
  14395. ))
  14396. characterMakers.push(() => makeCharacter(
  14397. { name: "Alana" },
  14398. {
  14399. front: {
  14400. height: math.unit(7 + 6 / 12, "feet"),
  14401. weight: math.unit(288, "lb"),
  14402. name: "Front",
  14403. image: {
  14404. source: "./media/characters/alana/front.svg",
  14405. extra: 679 / 653,
  14406. bottom: 22.5 / 701
  14407. }
  14408. },
  14409. },
  14410. [
  14411. {
  14412. name: "Normal",
  14413. height: math.unit(7 + 6 / 12, "feet")
  14414. },
  14415. {
  14416. name: "Large",
  14417. height: math.unit(50, "feet")
  14418. },
  14419. {
  14420. name: "Macro",
  14421. height: math.unit(100, "feet"),
  14422. default: true
  14423. },
  14424. {
  14425. name: "Macro+",
  14426. height: math.unit(200, "feet")
  14427. },
  14428. ]
  14429. ))
  14430. characterMakers.push(() => makeCharacter(
  14431. { name: "Hasani" },
  14432. {
  14433. front: {
  14434. height: math.unit(6 + 1 / 12, "feet"),
  14435. weight: math.unit(210, "lb"),
  14436. name: "Front",
  14437. image: {
  14438. source: "./media/characters/hasani/front.svg",
  14439. extra: 244 / 232,
  14440. bottom: 0.01
  14441. }
  14442. },
  14443. back: {
  14444. height: math.unit(6 + 1 / 12, "feet"),
  14445. weight: math.unit(210, "lb"),
  14446. name: "Back",
  14447. image: {
  14448. source: "./media/characters/hasani/back.svg",
  14449. extra: 244 / 232,
  14450. bottom: 0.01
  14451. }
  14452. },
  14453. },
  14454. [
  14455. {
  14456. name: "Normal",
  14457. height: math.unit(6 + 1 / 12, "feet")
  14458. },
  14459. {
  14460. name: "Macro",
  14461. height: math.unit(175, "feet"),
  14462. default: true
  14463. },
  14464. ]
  14465. ))
  14466. characterMakers.push(() => makeCharacter(
  14467. { name: "Nita" },
  14468. {
  14469. front: {
  14470. height: math.unit(1.82, "meters"),
  14471. weight: math.unit(140, "lb"),
  14472. name: "Front",
  14473. image: {
  14474. source: "./media/characters/nita/front.svg",
  14475. extra: 2473 / 2363,
  14476. bottom: 0.01
  14477. }
  14478. },
  14479. },
  14480. [
  14481. {
  14482. name: "Normal",
  14483. height: math.unit(1.82, "m")
  14484. },
  14485. {
  14486. name: "Macro",
  14487. height: math.unit(300, "m")
  14488. },
  14489. {
  14490. name: "Mistake Canon",
  14491. height: math.unit(0.5, "miles"),
  14492. default: true
  14493. },
  14494. {
  14495. name: "Big Mistake",
  14496. height: math.unit(13, "miles")
  14497. },
  14498. {
  14499. name: "Playing God",
  14500. height: math.unit(2450, "miles")
  14501. },
  14502. ]
  14503. ))
  14504. characterMakers.push(() => makeCharacter(
  14505. { name: "Shiriko" },
  14506. {
  14507. front: {
  14508. height: math.unit(4, "feet"),
  14509. weight: math.unit(120, "lb"),
  14510. name: "Front",
  14511. image: {
  14512. source: "./media/characters/shiriko/front.svg",
  14513. extra: 195 / 188
  14514. }
  14515. },
  14516. },
  14517. [
  14518. {
  14519. name: "Normal",
  14520. height: math.unit(4, "feet"),
  14521. default: true
  14522. },
  14523. ]
  14524. ))
  14525. characterMakers.push(() => makeCharacter(
  14526. { name: "Deja" },
  14527. {
  14528. front: {
  14529. height: math.unit(6, "feet"),
  14530. name: "front",
  14531. image: {
  14532. source: "./media/characters/deja/front.svg",
  14533. extra: 926 / 840,
  14534. bottom: 0.07
  14535. }
  14536. },
  14537. },
  14538. [
  14539. {
  14540. name: "Planck Length",
  14541. height: math.unit(1.6e-35, "meters")
  14542. },
  14543. {
  14544. name: "Normal",
  14545. height: math.unit(30.48, "meters"),
  14546. default: true
  14547. },
  14548. {
  14549. name: "Universal",
  14550. height: math.unit(8.8e26, "meters")
  14551. },
  14552. ]
  14553. ))
  14554. characterMakers.push(() => makeCharacter(
  14555. { name: "Anima" },
  14556. {
  14557. side: {
  14558. height: math.unit(8, "feet"),
  14559. weight: math.unit(6300, "lb"),
  14560. name: "Side",
  14561. image: {
  14562. source: "./media/characters/anima/side.svg",
  14563. bottom: 0.035
  14564. }
  14565. },
  14566. },
  14567. [
  14568. {
  14569. name: "Normal",
  14570. height: math.unit(8, "feet"),
  14571. default: true
  14572. },
  14573. ]
  14574. ))
  14575. characterMakers.push(() => makeCharacter(
  14576. { name: "Bianca" },
  14577. {
  14578. front: {
  14579. height: math.unit(8, "feet"),
  14580. weight: math.unit(350, "lb"),
  14581. name: "Front",
  14582. image: {
  14583. source: "./media/characters/bianca/front.svg",
  14584. extra: 234 / 225,
  14585. bottom: 0.03
  14586. }
  14587. },
  14588. },
  14589. [
  14590. {
  14591. name: "Normal",
  14592. height: math.unit(8, "feet"),
  14593. default: true
  14594. },
  14595. ]
  14596. ))
  14597. characterMakers.push(() => makeCharacter(
  14598. { name: "Adinia" },
  14599. {
  14600. front: {
  14601. height: math.unit(6, "feet"),
  14602. weight: math.unit(150, "lb"),
  14603. name: "Front",
  14604. image: {
  14605. source: "./media/characters/adinia/front.svg",
  14606. extra: 1845 / 1672,
  14607. bottom: 0.02
  14608. }
  14609. },
  14610. back: {
  14611. height: math.unit(6, "feet"),
  14612. weight: math.unit(150, "lb"),
  14613. name: "Back",
  14614. image: {
  14615. source: "./media/characters/adinia/back.svg",
  14616. extra: 1845 / 1672,
  14617. bottom: 0.002
  14618. }
  14619. },
  14620. },
  14621. [
  14622. {
  14623. name: "Normal",
  14624. height: math.unit(11 + 5 / 12, "feet"),
  14625. default: true
  14626. },
  14627. ]
  14628. ))
  14629. characterMakers.push(() => makeCharacter(
  14630. { name: "Lykasa" },
  14631. {
  14632. front: {
  14633. height: math.unit(3, "meters"),
  14634. weight: math.unit(200, "kg"),
  14635. name: "Front",
  14636. image: {
  14637. source: "./media/characters/lykasa/front.svg",
  14638. extra: 1076 / 976,
  14639. bottom: 0.06
  14640. }
  14641. },
  14642. },
  14643. [
  14644. {
  14645. name: "Normal",
  14646. height: math.unit(3, "meters")
  14647. },
  14648. {
  14649. name: "Kaiku",
  14650. height: math.unit(120, "meters"),
  14651. default: true
  14652. },
  14653. {
  14654. name: "Mega Kaiju",
  14655. height: math.unit(240, "km")
  14656. },
  14657. {
  14658. name: "Giga Kaiju",
  14659. height: math.unit(400, "megameters")
  14660. },
  14661. {
  14662. name: "Tera Kaiju",
  14663. height: math.unit(800, "gigameters")
  14664. },
  14665. {
  14666. name: "Kaiju Dragon Goddess",
  14667. height: math.unit(26, "zettaparsecs")
  14668. },
  14669. ]
  14670. ))
  14671. characterMakers.push(() => makeCharacter(
  14672. { name: "Malfaren" },
  14673. {
  14674. side: {
  14675. height: math.unit(283 / 124 * 6, "feet"),
  14676. weight: math.unit(35000, "lb"),
  14677. name: "Side",
  14678. image: {
  14679. source: "./media/characters/malfaren/side.svg",
  14680. extra: 2500 / 1010,
  14681. bottom: 0.01
  14682. }
  14683. },
  14684. front: {
  14685. height: math.unit(22.36, "feet"),
  14686. weight: math.unit(35000, "lb"),
  14687. name: "Front",
  14688. image: {
  14689. source: "./media/characters/malfaren/front.svg",
  14690. extra: 1631 / 1476,
  14691. bottom: 0.01
  14692. }
  14693. },
  14694. maw: {
  14695. height: math.unit(6.9, "feet"),
  14696. name: "Maw",
  14697. image: {
  14698. source: "./media/characters/malfaren/maw.svg"
  14699. }
  14700. },
  14701. },
  14702. [
  14703. {
  14704. name: "Big",
  14705. height: math.unit(283 / 162 * 6, "feet"),
  14706. },
  14707. {
  14708. name: "Bigger",
  14709. height: math.unit(283 / 124 * 6, "feet")
  14710. },
  14711. {
  14712. name: "Massive",
  14713. height: math.unit(283 / 92 * 6, "feet"),
  14714. default: true
  14715. },
  14716. {
  14717. name: "👀💦",
  14718. height: math.unit(283 / 73 * 6, "feet"),
  14719. },
  14720. ]
  14721. ))
  14722. characterMakers.push(() => makeCharacter(
  14723. { name: "Kernel" },
  14724. {
  14725. front: {
  14726. height: math.unit(1.7, "m"),
  14727. weight: math.unit(70, "kg"),
  14728. name: "Front",
  14729. image: {
  14730. source: "./media/characters/kernel/front.svg",
  14731. extra: 222 / 210,
  14732. bottom: 0.007
  14733. }
  14734. },
  14735. },
  14736. [
  14737. {
  14738. name: "Nano",
  14739. height: math.unit(17, "micrometers")
  14740. },
  14741. {
  14742. name: "Micro",
  14743. height: math.unit(1.7, "mm")
  14744. },
  14745. {
  14746. name: "Small",
  14747. height: math.unit(1.7, "cm")
  14748. },
  14749. {
  14750. name: "Normal",
  14751. height: math.unit(1.7, "m"),
  14752. default: true
  14753. },
  14754. ]
  14755. ))
  14756. characterMakers.push(() => makeCharacter(
  14757. { name: "Jayne Folest" },
  14758. {
  14759. front: {
  14760. height: math.unit(1.75, "meters"),
  14761. weight: math.unit(65, "kg"),
  14762. name: "Front",
  14763. image: {
  14764. source: "./media/characters/jayne-folest/front.svg",
  14765. extra: 2115 / 2007,
  14766. bottom: 0.02
  14767. }
  14768. },
  14769. back: {
  14770. height: math.unit(1.75, "meters"),
  14771. weight: math.unit(65, "kg"),
  14772. name: "Back",
  14773. image: {
  14774. source: "./media/characters/jayne-folest/back.svg",
  14775. extra: 2115 / 2007,
  14776. bottom: 0.005
  14777. }
  14778. },
  14779. frontClothed: {
  14780. height: math.unit(1.75, "meters"),
  14781. weight: math.unit(65, "kg"),
  14782. name: "Front (Clothed)",
  14783. image: {
  14784. source: "./media/characters/jayne-folest/front-clothed.svg",
  14785. extra: 2115 / 2007,
  14786. bottom: 0.035
  14787. }
  14788. },
  14789. hand: {
  14790. height: math.unit(1 / 1.260, "feet"),
  14791. name: "Hand",
  14792. image: {
  14793. source: "./media/characters/jayne-folest/hand.svg"
  14794. }
  14795. },
  14796. foot: {
  14797. height: math.unit(1 / 0.918, "feet"),
  14798. name: "Foot",
  14799. image: {
  14800. source: "./media/characters/jayne-folest/foot.svg"
  14801. }
  14802. },
  14803. },
  14804. [
  14805. {
  14806. name: "Micro",
  14807. height: math.unit(4, "cm")
  14808. },
  14809. {
  14810. name: "Normal",
  14811. height: math.unit(1.75, "meters")
  14812. },
  14813. {
  14814. name: "Macro",
  14815. height: math.unit(47.5, "meters"),
  14816. default: true
  14817. },
  14818. ]
  14819. ))
  14820. characterMakers.push(() => makeCharacter(
  14821. { name: "Algier" },
  14822. {
  14823. front: {
  14824. height: math.unit(180, "cm"),
  14825. weight: math.unit(70, "kg"),
  14826. name: "Front",
  14827. image: {
  14828. source: "./media/characters/algier/front.svg",
  14829. extra: 596 / 572,
  14830. bottom: 0.04
  14831. }
  14832. },
  14833. back: {
  14834. height: math.unit(180, "cm"),
  14835. weight: math.unit(70, "kg"),
  14836. name: "Back",
  14837. image: {
  14838. source: "./media/characters/algier/back.svg",
  14839. extra: 596 / 572,
  14840. bottom: 0.025
  14841. }
  14842. },
  14843. frontdressed: {
  14844. height: math.unit(180, "cm"),
  14845. weight: math.unit(150, "kg"),
  14846. name: "Front-dressed",
  14847. image: {
  14848. source: "./media/characters/algier/front-dressed.svg",
  14849. extra: 596 / 572,
  14850. bottom: 0.038
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Micro",
  14857. height: math.unit(5, "cm")
  14858. },
  14859. {
  14860. name: "Normal",
  14861. height: math.unit(180, "cm"),
  14862. default: true
  14863. },
  14864. {
  14865. name: "Macro",
  14866. height: math.unit(64, "m")
  14867. },
  14868. ]
  14869. ))
  14870. characterMakers.push(() => makeCharacter(
  14871. { name: "Pretzel" },
  14872. {
  14873. upright: {
  14874. height: math.unit(7, "feet"),
  14875. weight: math.unit(300, "lb"),
  14876. name: "Upright",
  14877. image: {
  14878. source: "./media/characters/pretzel/upright.svg",
  14879. extra: 534 / 522,
  14880. bottom: 0.065
  14881. }
  14882. },
  14883. sprawling: {
  14884. height: math.unit(3.75, "feet"),
  14885. weight: math.unit(300, "lb"),
  14886. name: "Sprawling",
  14887. image: {
  14888. source: "./media/characters/pretzel/sprawling.svg",
  14889. extra: 314 / 281,
  14890. bottom: 0.1
  14891. }
  14892. },
  14893. tongue: {
  14894. height: math.unit(2, "feet"),
  14895. name: "Tongue",
  14896. image: {
  14897. source: "./media/characters/pretzel/tongue.svg"
  14898. }
  14899. },
  14900. },
  14901. [
  14902. {
  14903. name: "Normal",
  14904. height: math.unit(7, "feet"),
  14905. default: true
  14906. },
  14907. {
  14908. name: "Oversized",
  14909. height: math.unit(15, "feet")
  14910. },
  14911. {
  14912. name: "Huge",
  14913. height: math.unit(30, "feet")
  14914. },
  14915. {
  14916. name: "Macro",
  14917. height: math.unit(250, "feet")
  14918. },
  14919. ]
  14920. ))
  14921. characterMakers.push(() => makeCharacter(
  14922. { name: "Roxi" },
  14923. {
  14924. sideFront: {
  14925. height: math.unit(5 + 2 / 12, "feet"),
  14926. weight: math.unit(120, "lb"),
  14927. name: "Front Side",
  14928. image: {
  14929. source: "./media/characters/roxi/side-front.svg",
  14930. extra: 2924 / 2717,
  14931. bottom: 0.08
  14932. }
  14933. },
  14934. sideBack: {
  14935. height: math.unit(5 + 2 / 12, "feet"),
  14936. weight: math.unit(120, "lb"),
  14937. name: "Back Side",
  14938. image: {
  14939. source: "./media/characters/roxi/side-back.svg",
  14940. extra: 2904 / 2693,
  14941. bottom: 0.06
  14942. }
  14943. },
  14944. front: {
  14945. height: math.unit(5 + 2 / 12, "feet"),
  14946. weight: math.unit(120, "lb"),
  14947. name: "Front",
  14948. image: {
  14949. source: "./media/characters/roxi/front.svg",
  14950. extra: 2028 / 1907,
  14951. bottom: 0.01
  14952. }
  14953. },
  14954. frontAlt: {
  14955. height: math.unit(5 + 2 / 12, "feet"),
  14956. weight: math.unit(120, "lb"),
  14957. name: "Front (Alt)",
  14958. image: {
  14959. source: "./media/characters/roxi/front-alt.svg",
  14960. extra: 1828 / 1798,
  14961. bottom: 0.01
  14962. }
  14963. },
  14964. sitting: {
  14965. height: math.unit(2.8, "feet"),
  14966. weight: math.unit(120, "lb"),
  14967. name: "Sitting",
  14968. image: {
  14969. source: "./media/characters/roxi/sitting.svg",
  14970. extra: 2660 / 2462,
  14971. bottom: 0.1
  14972. }
  14973. },
  14974. },
  14975. [
  14976. {
  14977. name: "Normal",
  14978. height: math.unit(5 + 2 / 12, "feet"),
  14979. default: true
  14980. },
  14981. ]
  14982. ))
  14983. characterMakers.push(() => makeCharacter(
  14984. { name: "Shadow" },
  14985. {
  14986. side: {
  14987. height: math.unit(55, "feet"),
  14988. weight: math.unit(153, "tons"),
  14989. name: "Side",
  14990. image: {
  14991. source: "./media/characters/shadow/side.svg",
  14992. extra: 701 / 628,
  14993. bottom: 0.02
  14994. }
  14995. },
  14996. flying: {
  14997. height: math.unit(145, "feet"),
  14998. weight: math.unit(153, "tons"),
  14999. name: "Flying",
  15000. image: {
  15001. source: "./media/characters/shadow/flying.svg"
  15002. }
  15003. },
  15004. },
  15005. [
  15006. {
  15007. name: "Normal",
  15008. height: math.unit(55, "feet"),
  15009. default: true
  15010. },
  15011. ]
  15012. ))
  15013. characterMakers.push(() => makeCharacter(
  15014. { name: "Marcie" },
  15015. {
  15016. front: {
  15017. height: math.unit(6, "feet"),
  15018. weight: math.unit(200, "lb"),
  15019. name: "Front",
  15020. image: {
  15021. source: "./media/characters/marcie/front.svg",
  15022. extra: 960 / 876,
  15023. bottom: 58 / 1017.87
  15024. }
  15025. },
  15026. },
  15027. [
  15028. {
  15029. name: "Macro",
  15030. height: math.unit(1, "mile"),
  15031. default: true
  15032. },
  15033. ]
  15034. ))
  15035. characterMakers.push(() => makeCharacter(
  15036. { name: "Kachina" },
  15037. {
  15038. front: {
  15039. height: math.unit(7, "feet"),
  15040. weight: math.unit(200, "lb"),
  15041. name: "Front",
  15042. image: {
  15043. source: "./media/characters/kachina/front.svg",
  15044. extra: 1290.68 / 1119,
  15045. bottom: 36.5 / 1327.18
  15046. }
  15047. },
  15048. },
  15049. [
  15050. {
  15051. name: "Normal",
  15052. height: math.unit(7, "feet"),
  15053. default: true
  15054. },
  15055. ]
  15056. ))
  15057. characterMakers.push(() => makeCharacter(
  15058. { name: "Kash" },
  15059. {
  15060. looking: {
  15061. height: math.unit(2, "meters"),
  15062. weight: math.unit(300, "kg"),
  15063. name: "Looking",
  15064. image: {
  15065. source: "./media/characters/kash/looking.svg",
  15066. extra: 474 / 344,
  15067. bottom: 0.03
  15068. }
  15069. },
  15070. side: {
  15071. height: math.unit(2, "meters"),
  15072. weight: math.unit(300, "kg"),
  15073. name: "Side",
  15074. image: {
  15075. source: "./media/characters/kash/side.svg",
  15076. extra: 302 / 251,
  15077. bottom: 0.03
  15078. }
  15079. },
  15080. front: {
  15081. height: math.unit(2, "meters"),
  15082. weight: math.unit(300, "kg"),
  15083. name: "Front",
  15084. image: {
  15085. source: "./media/characters/kash/front.svg",
  15086. extra: 495 / 360,
  15087. bottom: 0.015
  15088. }
  15089. },
  15090. },
  15091. [
  15092. {
  15093. name: "Normal",
  15094. height: math.unit(2, "meters"),
  15095. default: true
  15096. },
  15097. {
  15098. name: "Big",
  15099. height: math.unit(3, "meters")
  15100. },
  15101. {
  15102. name: "Large",
  15103. height: math.unit(5, "meters")
  15104. },
  15105. ]
  15106. ))
  15107. characterMakers.push(() => makeCharacter(
  15108. { name: "Lalim" },
  15109. {
  15110. feeding: {
  15111. height: math.unit(6.7, "feet"),
  15112. weight: math.unit(350, "lb"),
  15113. name: "Feeding",
  15114. image: {
  15115. source: "./media/characters/lalim/feeding.svg",
  15116. }
  15117. },
  15118. },
  15119. [
  15120. {
  15121. name: "Normal",
  15122. height: math.unit(6.7, "feet"),
  15123. default: true
  15124. },
  15125. ]
  15126. ))
  15127. characterMakers.push(() => makeCharacter(
  15128. { name: "De'Vout" },
  15129. {
  15130. front: {
  15131. height: math.unit(9.5, "feet"),
  15132. weight: math.unit(600, "lb"),
  15133. name: "Front",
  15134. image: {
  15135. source: "./media/characters/de'vout/front.svg",
  15136. extra: 1443 / 1328,
  15137. bottom: 0.025
  15138. }
  15139. },
  15140. back: {
  15141. height: math.unit(9.5, "feet"),
  15142. weight: math.unit(600, "lb"),
  15143. name: "Back",
  15144. image: {
  15145. source: "./media/characters/de'vout/back.svg",
  15146. extra: 1443 / 1328
  15147. }
  15148. },
  15149. frontDressed: {
  15150. height: math.unit(9.5, "feet"),
  15151. weight: math.unit(600, "lb"),
  15152. name: "Front (Dressed",
  15153. image: {
  15154. source: "./media/characters/de'vout/front-dressed.svg",
  15155. extra: 1443 / 1328,
  15156. bottom: 0.025
  15157. }
  15158. },
  15159. backDressed: {
  15160. height: math.unit(9.5, "feet"),
  15161. weight: math.unit(600, "lb"),
  15162. name: "Back (Dressed",
  15163. image: {
  15164. source: "./media/characters/de'vout/back-dressed.svg",
  15165. extra: 1443 / 1328
  15166. }
  15167. },
  15168. },
  15169. [
  15170. {
  15171. name: "Normal",
  15172. height: math.unit(9.5, "feet"),
  15173. default: true
  15174. },
  15175. ]
  15176. ))
  15177. characterMakers.push(() => makeCharacter(
  15178. { name: "Talana" },
  15179. {
  15180. front: {
  15181. height: math.unit(8, "feet"),
  15182. weight: math.unit(225, "lb"),
  15183. name: "Front",
  15184. image: {
  15185. source: "./media/characters/talana/front.svg",
  15186. extra: 1410 / 1300,
  15187. bottom: 0.015
  15188. }
  15189. },
  15190. frontDressed: {
  15191. height: math.unit(8, "feet"),
  15192. weight: math.unit(225, "lb"),
  15193. name: "Front (Dressed",
  15194. image: {
  15195. source: "./media/characters/talana/front-dressed.svg",
  15196. extra: 1410 / 1300,
  15197. bottom: 0.015
  15198. }
  15199. },
  15200. },
  15201. [
  15202. {
  15203. name: "Normal",
  15204. height: math.unit(8, "feet"),
  15205. default: true
  15206. },
  15207. ]
  15208. ))
  15209. characterMakers.push(() => makeCharacter(
  15210. { name: "Xeauvok" },
  15211. {
  15212. side: {
  15213. height: math.unit(7.2, "feet"),
  15214. weight: math.unit(150, "lb"),
  15215. name: "Side",
  15216. image: {
  15217. source: "./media/characters/xeauvok/side.svg",
  15218. extra: 1975 / 1523,
  15219. bottom: 0.07
  15220. }
  15221. },
  15222. },
  15223. [
  15224. {
  15225. name: "Normal",
  15226. height: math.unit(7.2, "feet"),
  15227. default: true
  15228. },
  15229. ]
  15230. ))
  15231. characterMakers.push(() => makeCharacter(
  15232. { name: "Zara" },
  15233. {
  15234. side: {
  15235. height: math.unit(10, "feet"),
  15236. weight: math.unit(900, "kg"),
  15237. name: "Side",
  15238. image: {
  15239. source: "./media/characters/zara/side.svg",
  15240. extra: 504 / 498
  15241. }
  15242. },
  15243. },
  15244. [
  15245. {
  15246. name: "Normal",
  15247. height: math.unit(10, "feet"),
  15248. default: true
  15249. },
  15250. ]
  15251. ))
  15252. characterMakers.push(() => makeCharacter(
  15253. { name: "Richard (Dragon)" },
  15254. {
  15255. side: {
  15256. height: math.unit(6, "feet"),
  15257. weight: math.unit(150, "lb"),
  15258. name: "Side",
  15259. image: {
  15260. source: "./media/characters/richard-dragon/side.svg",
  15261. extra: 845 / 340,
  15262. bottom: 0.017
  15263. }
  15264. },
  15265. maw: {
  15266. height: math.unit(2.97, "feet"),
  15267. name: "Maw",
  15268. image: {
  15269. source: "./media/characters/richard-dragon/maw.svg"
  15270. }
  15271. },
  15272. },
  15273. [
  15274. ]
  15275. ))
  15276. characterMakers.push(() => makeCharacter(
  15277. { name: "Richard (Smeargle)" },
  15278. {
  15279. front: {
  15280. height: math.unit(4, "feet"),
  15281. weight: math.unit(100, "lb"),
  15282. name: "Front",
  15283. image: {
  15284. source: "./media/characters/richard-smeargle/front.svg",
  15285. extra: 2952 / 2820,
  15286. bottom: 0.028
  15287. }
  15288. },
  15289. },
  15290. [
  15291. {
  15292. name: "Normal",
  15293. height: math.unit(4, "feet"),
  15294. default: true
  15295. },
  15296. {
  15297. name: "Dynamax",
  15298. height: math.unit(20, "meters")
  15299. },
  15300. ]
  15301. ))
  15302. characterMakers.push(() => makeCharacter(
  15303. { name: "Klay" },
  15304. {
  15305. front: {
  15306. height: math.unit(6, "feet"),
  15307. weight: math.unit(110, "lb"),
  15308. name: "Front",
  15309. image: {
  15310. source: "./media/characters/klay/front.svg",
  15311. extra: 962 / 883,
  15312. bottom: 0.04
  15313. }
  15314. },
  15315. back: {
  15316. height: math.unit(6, "feet"),
  15317. weight: math.unit(110, "lb"),
  15318. name: "Back",
  15319. image: {
  15320. source: "./media/characters/klay/back.svg",
  15321. extra: 962 / 883
  15322. }
  15323. },
  15324. beans: {
  15325. height: math.unit(1.15, "feet"),
  15326. name: "Beans",
  15327. image: {
  15328. source: "./media/characters/klay/beans.svg"
  15329. }
  15330. },
  15331. },
  15332. [
  15333. {
  15334. name: "Micro",
  15335. height: math.unit(6, "inches")
  15336. },
  15337. {
  15338. name: "Mini",
  15339. height: math.unit(3, "feet")
  15340. },
  15341. {
  15342. name: "Normal",
  15343. height: math.unit(6, "feet"),
  15344. default: true
  15345. },
  15346. {
  15347. name: "Big",
  15348. height: math.unit(25, "feet")
  15349. },
  15350. {
  15351. name: "Macro",
  15352. height: math.unit(100, "feet")
  15353. },
  15354. {
  15355. name: "Megamacro",
  15356. height: math.unit(400, "feet")
  15357. },
  15358. ]
  15359. ))
  15360. characterMakers.push(() => makeCharacter(
  15361. { name: "Marcus" },
  15362. {
  15363. front: {
  15364. height: math.unit(6, "feet"),
  15365. weight: math.unit(160, "lb"),
  15366. name: "Front",
  15367. image: {
  15368. source: "./media/characters/marcus/front.svg",
  15369. extra: 734 / 676,
  15370. bottom: 0.03
  15371. }
  15372. },
  15373. },
  15374. [
  15375. {
  15376. name: "Little",
  15377. height: math.unit(6, "feet")
  15378. },
  15379. {
  15380. name: "Normal",
  15381. height: math.unit(110, "feet"),
  15382. default: true
  15383. },
  15384. {
  15385. name: "Macro",
  15386. height: math.unit(250, "feet")
  15387. },
  15388. {
  15389. name: "Megamacro",
  15390. height: math.unit(1000, "feet")
  15391. },
  15392. ]
  15393. ))
  15394. characterMakers.push(() => makeCharacter(
  15395. { name: "Claude DelRoute" },
  15396. {
  15397. front: {
  15398. height: math.unit(7, "feet"),
  15399. weight: math.unit(275, "lb"),
  15400. name: "Front",
  15401. image: {
  15402. source: "./media/characters/claude-delroute/front.svg",
  15403. extra: 230 / 214,
  15404. bottom: 0.007
  15405. }
  15406. },
  15407. side: {
  15408. height: math.unit(7, "feet"),
  15409. weight: math.unit(275, "lb"),
  15410. name: "Side",
  15411. image: {
  15412. source: "./media/characters/claude-delroute/side.svg",
  15413. extra: 222 / 214,
  15414. bottom: 0.01
  15415. }
  15416. },
  15417. back: {
  15418. height: math.unit(7, "feet"),
  15419. weight: math.unit(275, "lb"),
  15420. name: "Back",
  15421. image: {
  15422. source: "./media/characters/claude-delroute/back.svg",
  15423. extra: 230 / 214,
  15424. bottom: 0.015
  15425. }
  15426. },
  15427. maw: {
  15428. height: math.unit(0.6407, "meters"),
  15429. name: "Maw",
  15430. image: {
  15431. source: "./media/characters/claude-delroute/maw.svg"
  15432. }
  15433. },
  15434. },
  15435. [
  15436. {
  15437. name: "Normal",
  15438. height: math.unit(7, "feet"),
  15439. default: true
  15440. },
  15441. {
  15442. name: "Lorge",
  15443. height: math.unit(20, "feet")
  15444. },
  15445. ]
  15446. ))
  15447. characterMakers.push(() => makeCharacter(
  15448. { name: "Dragonien" },
  15449. {
  15450. front: {
  15451. height: math.unit(8 + 4 / 12, "feet"),
  15452. weight: math.unit(600, "lb"),
  15453. name: "Front",
  15454. image: {
  15455. source: "./media/characters/dragonien/front.svg",
  15456. extra: 100 / 94,
  15457. bottom: 3.3 / 103.3445
  15458. }
  15459. },
  15460. back: {
  15461. height: math.unit(8 + 4 / 12, "feet"),
  15462. weight: math.unit(600, "lb"),
  15463. name: "Back",
  15464. image: {
  15465. source: "./media/characters/dragonien/back.svg",
  15466. extra: 776 / 746,
  15467. bottom: 6.4 / 782.0616
  15468. }
  15469. },
  15470. foot: {
  15471. height: math.unit(1.54, "feet"),
  15472. name: "Foot",
  15473. image: {
  15474. source: "./media/characters/dragonien/foot.svg",
  15475. }
  15476. },
  15477. },
  15478. [
  15479. {
  15480. name: "Normal",
  15481. height: math.unit(8 + 4 / 12, "feet"),
  15482. default: true
  15483. },
  15484. {
  15485. name: "Macro",
  15486. height: math.unit(200, "feet")
  15487. },
  15488. {
  15489. name: "Megamacro",
  15490. height: math.unit(1, "mile")
  15491. },
  15492. {
  15493. name: "Gigamacro",
  15494. height: math.unit(1000, "miles")
  15495. },
  15496. ]
  15497. ))
  15498. characterMakers.push(() => makeCharacter(
  15499. { name: "Desta" },
  15500. {
  15501. front: {
  15502. height: math.unit(5 + 2 / 12, "feet"),
  15503. weight: math.unit(110, "lb"),
  15504. name: "Front",
  15505. image: {
  15506. source: "./media/characters/desta/front.svg",
  15507. extra: 1482 / 1417
  15508. }
  15509. },
  15510. side: {
  15511. height: math.unit(5 + 2 / 12, "feet"),
  15512. weight: math.unit(110, "lb"),
  15513. name: "Side",
  15514. image: {
  15515. source: "./media/characters/desta/side.svg",
  15516. extra: 2579 / 2491,
  15517. bottom: 0.053
  15518. }
  15519. },
  15520. },
  15521. [
  15522. {
  15523. name: "Micro",
  15524. height: math.unit(6, "inches")
  15525. },
  15526. {
  15527. name: "Normal",
  15528. height: math.unit(5 + 2 / 12, "feet"),
  15529. default: true
  15530. },
  15531. {
  15532. name: "Macro",
  15533. height: math.unit(62, "feet")
  15534. },
  15535. {
  15536. name: "Megamacro",
  15537. height: math.unit(1800, "feet")
  15538. },
  15539. ]
  15540. ))
  15541. characterMakers.push(() => makeCharacter(
  15542. { name: "Storm Alystar" },
  15543. {
  15544. front: {
  15545. height: math.unit(10, "feet"),
  15546. weight: math.unit(700, "lb"),
  15547. name: "Front",
  15548. image: {
  15549. source: "./media/characters/storm-alystar/front.svg",
  15550. extra: 2112 / 1898,
  15551. bottom: 0.034
  15552. }
  15553. },
  15554. },
  15555. [
  15556. {
  15557. name: "Micro",
  15558. height: math.unit(3.5, "inches")
  15559. },
  15560. {
  15561. name: "Normal",
  15562. height: math.unit(10, "feet"),
  15563. default: true
  15564. },
  15565. {
  15566. name: "Macro",
  15567. height: math.unit(400, "feet")
  15568. },
  15569. {
  15570. name: "Deific",
  15571. height: math.unit(60, "miles")
  15572. },
  15573. ]
  15574. ))
  15575. characterMakers.push(() => makeCharacter(
  15576. { name: "Ilia" },
  15577. {
  15578. front: {
  15579. height: math.unit(2.35, "meters"),
  15580. weight: math.unit(119, "kg"),
  15581. name: "Front",
  15582. image: {
  15583. source: "./media/characters/ilia/front.svg",
  15584. extra: 1285 / 1255,
  15585. bottom: 0.06
  15586. }
  15587. },
  15588. },
  15589. [
  15590. {
  15591. name: "Normal",
  15592. height: math.unit(2.35, "meters")
  15593. },
  15594. {
  15595. name: "Macro",
  15596. height: math.unit(140, "meters"),
  15597. default: true
  15598. },
  15599. {
  15600. name: "Megamacro",
  15601. height: math.unit(100, "miles")
  15602. },
  15603. ]
  15604. ))
  15605. characterMakers.push(() => makeCharacter(
  15606. { name: "KingDead" },
  15607. {
  15608. front: {
  15609. height: math.unit(6 + 5 / 12, "feet"),
  15610. weight: math.unit(190, "lb"),
  15611. name: "Front",
  15612. image: {
  15613. source: "./media/characters/kingdead/front.svg",
  15614. extra: 1228 / 1177
  15615. }
  15616. },
  15617. },
  15618. [
  15619. {
  15620. name: "Micro",
  15621. height: math.unit(7, "inches")
  15622. },
  15623. {
  15624. name: "Normal",
  15625. height: math.unit(6 + 5 / 12, "feet")
  15626. },
  15627. {
  15628. name: "Macro",
  15629. height: math.unit(150, "feet"),
  15630. default: true
  15631. },
  15632. {
  15633. name: "Megamacro",
  15634. height: math.unit(200, "miles")
  15635. },
  15636. ]
  15637. ))
  15638. characterMakers.push(() => makeCharacter(
  15639. { name: "Kyrehx" },
  15640. {
  15641. front: {
  15642. height: math.unit(8, "feet"),
  15643. weight: math.unit(600, "lb"),
  15644. name: "Front",
  15645. image: {
  15646. source: "./media/characters/kyrehx/front.svg",
  15647. extra: 1195 / 1095,
  15648. bottom: 0.034
  15649. }
  15650. },
  15651. },
  15652. [
  15653. {
  15654. name: "Micro",
  15655. height: math.unit(2, "inches")
  15656. },
  15657. {
  15658. name: "Normal",
  15659. height: math.unit(8, "feet"),
  15660. default: true
  15661. },
  15662. {
  15663. name: "Macro",
  15664. height: math.unit(255, "feet")
  15665. },
  15666. ]
  15667. ))
  15668. characterMakers.push(() => makeCharacter(
  15669. { name: "Xang" },
  15670. {
  15671. front: {
  15672. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15673. weight: math.unit(184, "lb"),
  15674. name: "Front",
  15675. image: {
  15676. source: "./media/characters/xang/front.svg",
  15677. extra: 845 / 755
  15678. }
  15679. },
  15680. },
  15681. [
  15682. {
  15683. name: "Normal",
  15684. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15685. default: true
  15686. },
  15687. {
  15688. name: "Macro",
  15689. height: math.unit(0.935 * 146, "feet")
  15690. },
  15691. {
  15692. name: "Megamacro",
  15693. height: math.unit(0.935 * 3, "miles")
  15694. },
  15695. ]
  15696. ))
  15697. characterMakers.push(() => makeCharacter(
  15698. { name: "Doc Weardno" },
  15699. {
  15700. frontDressed: {
  15701. height: math.unit(5 + 7 / 12, "feet"),
  15702. weight: math.unit(140, "lb"),
  15703. name: "Front (Dressed)",
  15704. image: {
  15705. source: "./media/characters/doc-weardno/front-dressed.svg",
  15706. extra: 263 / 234
  15707. }
  15708. },
  15709. backDressed: {
  15710. height: math.unit(5 + 7 / 12, "feet"),
  15711. weight: math.unit(140, "lb"),
  15712. name: "Back (Dressed)",
  15713. image: {
  15714. source: "./media/characters/doc-weardno/back-dressed.svg",
  15715. extra: 266 / 238
  15716. }
  15717. },
  15718. front: {
  15719. height: math.unit(5 + 7 / 12, "feet"),
  15720. weight: math.unit(140, "lb"),
  15721. name: "Front",
  15722. image: {
  15723. source: "./media/characters/doc-weardno/front.svg",
  15724. extra: 254 / 233
  15725. }
  15726. },
  15727. },
  15728. [
  15729. {
  15730. name: "Micro",
  15731. height: math.unit(3, "inches")
  15732. },
  15733. {
  15734. name: "Normal",
  15735. height: math.unit(5 + 7 / 12, "feet"),
  15736. default: true
  15737. },
  15738. {
  15739. name: "Macro",
  15740. height: math.unit(25, "feet")
  15741. },
  15742. {
  15743. name: "Megamacro",
  15744. height: math.unit(2, "miles")
  15745. },
  15746. ]
  15747. ))
  15748. characterMakers.push(() => makeCharacter(
  15749. { name: "Seth Whilst" },
  15750. {
  15751. front: {
  15752. height: math.unit(6 + 2 / 12, "feet"),
  15753. weight: math.unit(153, "lb"),
  15754. name: "Front",
  15755. image: {
  15756. source: "./media/characters/seth-whilst/front.svg",
  15757. bottom: 0.07
  15758. }
  15759. },
  15760. },
  15761. [
  15762. {
  15763. name: "Micro",
  15764. height: math.unit(5, "inches")
  15765. },
  15766. {
  15767. name: "Normal",
  15768. height: math.unit(6 + 2 / 12, "feet"),
  15769. default: true
  15770. },
  15771. ]
  15772. ))
  15773. characterMakers.push(() => makeCharacter(
  15774. { name: "Pocket Jabari" },
  15775. {
  15776. front: {
  15777. height: math.unit(3, "inches"),
  15778. weight: math.unit(8, "grams"),
  15779. name: "Front",
  15780. image: {
  15781. source: "./media/characters/pocket-jabari/front.svg",
  15782. extra: 1024 / 974,
  15783. bottom: 0.039
  15784. }
  15785. },
  15786. },
  15787. [
  15788. {
  15789. name: "Minimicro",
  15790. height: math.unit(8, "mm")
  15791. },
  15792. {
  15793. name: "Micro",
  15794. height: math.unit(3, "inches"),
  15795. default: true
  15796. },
  15797. {
  15798. name: "Normal",
  15799. height: math.unit(3, "feet")
  15800. },
  15801. ]
  15802. ))
  15803. characterMakers.push(() => makeCharacter(
  15804. { name: "Sapphy" },
  15805. {
  15806. front: {
  15807. height: math.unit(15, "feet"),
  15808. weight: math.unit(3280, "lb"),
  15809. name: "Front",
  15810. image: {
  15811. source: "./media/characters/sapphy/front.svg",
  15812. extra: 671 / 577,
  15813. bottom: 0.085
  15814. }
  15815. },
  15816. back: {
  15817. height: math.unit(15, "feet"),
  15818. weight: math.unit(3280, "lb"),
  15819. name: "Back",
  15820. image: {
  15821. source: "./media/characters/sapphy/back.svg",
  15822. extra: 631 / 607,
  15823. bottom: 0.045
  15824. }
  15825. },
  15826. },
  15827. [
  15828. {
  15829. name: "Normal",
  15830. height: math.unit(15, "feet")
  15831. },
  15832. {
  15833. name: "Casual Macro",
  15834. height: math.unit(120, "feet")
  15835. },
  15836. {
  15837. name: "Macro",
  15838. height: math.unit(2150, "feet"),
  15839. default: true
  15840. },
  15841. {
  15842. name: "Megamacro",
  15843. height: math.unit(8, "miles")
  15844. },
  15845. {
  15846. name: "Galaxy Mom",
  15847. height: math.unit(6, "megalightyears")
  15848. },
  15849. ]
  15850. ))
  15851. characterMakers.push(() => makeCharacter(
  15852. { name: "Kiro" },
  15853. {
  15854. front: {
  15855. height: math.unit(6, "feet"),
  15856. weight: math.unit(170, "lb"),
  15857. name: "Front",
  15858. image: {
  15859. source: "./media/characters/kiro/front.svg",
  15860. extra: 1064 / 1012,
  15861. bottom: 0.052
  15862. }
  15863. },
  15864. },
  15865. [
  15866. {
  15867. name: "Micro",
  15868. height: math.unit(6, "inches")
  15869. },
  15870. {
  15871. name: "Normal",
  15872. height: math.unit(6, "feet"),
  15873. default: true
  15874. },
  15875. {
  15876. name: "Macro",
  15877. height: math.unit(72, "feet")
  15878. },
  15879. ]
  15880. ))
  15881. characterMakers.push(() => makeCharacter(
  15882. { name: "Irishfox" },
  15883. {
  15884. front: {
  15885. height: math.unit(5 + 9 / 12, "feet"),
  15886. weight: math.unit(175, "lb"),
  15887. name: "Front",
  15888. image: {
  15889. source: "./media/characters/irishfox/front.svg",
  15890. extra: 1912 / 1680,
  15891. bottom: 0.02
  15892. }
  15893. },
  15894. },
  15895. [
  15896. {
  15897. name: "Nano",
  15898. height: math.unit(1, "mm")
  15899. },
  15900. {
  15901. name: "Micro",
  15902. height: math.unit(2, "inches")
  15903. },
  15904. {
  15905. name: "Normal",
  15906. height: math.unit(5 + 9 / 12, "feet"),
  15907. default: true
  15908. },
  15909. {
  15910. name: "Macro",
  15911. height: math.unit(45, "feet")
  15912. },
  15913. ]
  15914. ))
  15915. characterMakers.push(() => makeCharacter(
  15916. { name: "Aronai Sieyes" },
  15917. {
  15918. front: {
  15919. height: math.unit(6 + 1 / 12, "feet"),
  15920. weight: math.unit(150, "lb"),
  15921. name: "Front",
  15922. image: {
  15923. source: "./media/characters/aronai-sieyes/front.svg",
  15924. extra: 1556 / 1480,
  15925. bottom: 0.015
  15926. }
  15927. },
  15928. side: {
  15929. height: math.unit(6 + 1 / 12, "feet"),
  15930. weight: math.unit(150, "lb"),
  15931. name: "Side",
  15932. image: {
  15933. source: "./media/characters/aronai-sieyes/side.svg",
  15934. extra: 1433 / 1390,
  15935. bottom: 0.0393
  15936. }
  15937. },
  15938. back: {
  15939. height: math.unit(6 + 1 / 12, "feet"),
  15940. weight: math.unit(150, "lb"),
  15941. name: "Back",
  15942. image: {
  15943. source: "./media/characters/aronai-sieyes/back.svg",
  15944. extra: 1544 / 1494,
  15945. bottom: 0.02
  15946. }
  15947. },
  15948. frontClothed: {
  15949. height: math.unit(6 + 1 / 12, "feet"),
  15950. weight: math.unit(150, "lb"),
  15951. name: "Front (Clothed)",
  15952. image: {
  15953. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  15954. extra: 1582 / 1527
  15955. }
  15956. },
  15957. feral: {
  15958. height: math.unit(18, "feet"),
  15959. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  15960. name: "Feral",
  15961. image: {
  15962. source: "./media/characters/aronai-sieyes/feral.svg",
  15963. extra: 1530 / 1240,
  15964. bottom: 0.035
  15965. }
  15966. },
  15967. },
  15968. [
  15969. {
  15970. name: "Micro",
  15971. height: math.unit(2, "inches")
  15972. },
  15973. {
  15974. name: "Normal",
  15975. height: math.unit(6 + 1 / 12, "feet"),
  15976. default: true
  15977. }
  15978. ]
  15979. ))
  15980. characterMakers.push(() => makeCharacter(
  15981. { name: "Xuna" },
  15982. {
  15983. front: {
  15984. height: math.unit(12, "feet"),
  15985. weight: math.unit(410, "kg"),
  15986. name: "Front",
  15987. image: {
  15988. source: "./media/characters/xuna/front.svg",
  15989. extra: 2184 / 1980
  15990. }
  15991. },
  15992. side: {
  15993. height: math.unit(12, "feet"),
  15994. weight: math.unit(410, "kg"),
  15995. name: "Side",
  15996. image: {
  15997. source: "./media/characters/xuna/side.svg",
  15998. extra: 2184 / 1980
  15999. }
  16000. },
  16001. back: {
  16002. height: math.unit(12, "feet"),
  16003. weight: math.unit(410, "kg"),
  16004. name: "Back",
  16005. image: {
  16006. source: "./media/characters/xuna/back.svg",
  16007. extra: 2184 / 1980
  16008. }
  16009. },
  16010. },
  16011. [
  16012. {
  16013. name: "Nano glow",
  16014. height: math.unit(10, "nm")
  16015. },
  16016. {
  16017. name: "Micro floof",
  16018. height: math.unit(0.3, "m")
  16019. },
  16020. {
  16021. name: "Huggable softy boi",
  16022. height: math.unit(3.6576, "m"),
  16023. default: true
  16024. },
  16025. {
  16026. name: "Admirable floof",
  16027. height: math.unit(80, "meters")
  16028. },
  16029. {
  16030. name: "Gentle macro",
  16031. height: math.unit(300, "meters")
  16032. },
  16033. {
  16034. name: "Very careful floof",
  16035. height: math.unit(3200, "meters")
  16036. },
  16037. {
  16038. name: "The mega floof",
  16039. height: math.unit(36000, "meters")
  16040. },
  16041. {
  16042. name: "Giga-fur-Wicker",
  16043. height: math.unit(4800000, "meters")
  16044. },
  16045. {
  16046. name: "Licky world",
  16047. height: math.unit(20000000, "meters")
  16048. },
  16049. {
  16050. name: "Floofy cyan sun",
  16051. height: math.unit(1500000000, "meters")
  16052. },
  16053. {
  16054. name: "Milky Wicker",
  16055. height: math.unit(1000000000000000000000, "meters")
  16056. },
  16057. {
  16058. name: "The observing Wicker",
  16059. height: math.unit(999999999999999999999999999, "meters")
  16060. },
  16061. ]
  16062. ))
  16063. characterMakers.push(() => makeCharacter(
  16064. { name: "Arokha Sieyes" },
  16065. {
  16066. front: {
  16067. height: math.unit(5 + 9 / 12, "feet"),
  16068. weight: math.unit(150, "lb"),
  16069. name: "Front",
  16070. image: {
  16071. source: "./media/characters/arokha-sieyes/front.svg",
  16072. extra: 1425 / 1284,
  16073. bottom: 0.05
  16074. }
  16075. },
  16076. },
  16077. [
  16078. {
  16079. name: "Normal",
  16080. height: math.unit(5 + 9 / 12, "feet")
  16081. },
  16082. {
  16083. name: "Macro",
  16084. height: math.unit(30, "meters"),
  16085. default: true
  16086. },
  16087. ]
  16088. ))
  16089. characterMakers.push(() => makeCharacter(
  16090. { name: "Arokh Sieyes" },
  16091. {
  16092. front: {
  16093. height: math.unit(6, "feet"),
  16094. weight: math.unit(180, "lb"),
  16095. name: "Front",
  16096. image: {
  16097. source: "./media/characters/arokh-sieyes/front.svg",
  16098. extra: 1830 / 1769,
  16099. bottom: 0.01
  16100. }
  16101. },
  16102. },
  16103. [
  16104. {
  16105. name: "Normal",
  16106. height: math.unit(6, "feet")
  16107. },
  16108. {
  16109. name: "Macro",
  16110. height: math.unit(30, "meters"),
  16111. default: true
  16112. },
  16113. ]
  16114. ))
  16115. characterMakers.push(() => makeCharacter(
  16116. { name: "Goldeneye" },
  16117. {
  16118. side: {
  16119. height: math.unit(13 + 1 / 12, "feet"),
  16120. weight: math.unit(8.5, "tonnes"),
  16121. name: "Side",
  16122. image: {
  16123. source: "./media/characters/goldeneye/side.svg",
  16124. extra: 1182 / 778,
  16125. bottom: 0.067
  16126. }
  16127. },
  16128. paw: {
  16129. height: math.unit(3.4, "feet"),
  16130. name: "Paw",
  16131. image: {
  16132. source: "./media/characters/goldeneye/paw.svg"
  16133. }
  16134. },
  16135. },
  16136. [
  16137. {
  16138. name: "Normal",
  16139. height: math.unit(13 + 1 / 12, "feet"),
  16140. default: true
  16141. },
  16142. ]
  16143. ))
  16144. characterMakers.push(() => makeCharacter(
  16145. { name: "Leonardo Lycheborne" },
  16146. {
  16147. front: {
  16148. height: math.unit(6 + 1 / 12, "feet"),
  16149. weight: math.unit(210, "lb"),
  16150. name: "Front",
  16151. image: {
  16152. source: "./media/characters/leonardo-lycheborne/front.svg",
  16153. extra: 390 / 365,
  16154. bottom: 0.032
  16155. }
  16156. },
  16157. side: {
  16158. height: math.unit(6 + 1 / 12, "feet"),
  16159. weight: math.unit(210, "lb"),
  16160. name: "Side",
  16161. image: {
  16162. source: "./media/characters/leonardo-lycheborne/side.svg",
  16163. extra: 390 / 365,
  16164. bottom: 0.005
  16165. }
  16166. },
  16167. back: {
  16168. height: math.unit(6 + 1 / 12, "feet"),
  16169. weight: math.unit(210, "lb"),
  16170. name: "Back",
  16171. image: {
  16172. source: "./media/characters/leonardo-lycheborne/back.svg",
  16173. extra: 392 / 366,
  16174. bottom: 0.01
  16175. }
  16176. },
  16177. hand: {
  16178. height: math.unit(1.08, "feet"),
  16179. name: "Hand",
  16180. image: {
  16181. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16182. }
  16183. },
  16184. foot: {
  16185. height: math.unit(1.32, "feet"),
  16186. name: "Foot",
  16187. image: {
  16188. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16189. }
  16190. },
  16191. were: {
  16192. height: math.unit(20, "feet"),
  16193. weight: math.unit(7800, "lb"),
  16194. name: "Were",
  16195. image: {
  16196. source: "./media/characters/leonardo-lycheborne/were.svg",
  16197. extra: 308 / 294,
  16198. bottom: 0.048
  16199. }
  16200. },
  16201. feral: {
  16202. height: math.unit(7.5, "feet"),
  16203. weight: math.unit(600, "lb"),
  16204. name: "Feral",
  16205. image: {
  16206. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16207. extra: 210 / 186,
  16208. bottom: 0.108
  16209. }
  16210. },
  16211. taur: {
  16212. height: math.unit(11, "feet"),
  16213. weight: math.unit(3300, "lb"),
  16214. name: "Taur",
  16215. image: {
  16216. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16217. extra: 320 / 303,
  16218. bottom: 0.025
  16219. }
  16220. },
  16221. barghest: {
  16222. height: math.unit(11, "feet"),
  16223. weight: math.unit(1300, "lb"),
  16224. name: "Barghest",
  16225. image: {
  16226. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16227. extra: 323 / 302,
  16228. bottom: 0.027
  16229. }
  16230. },
  16231. dick: {
  16232. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16233. name: "Dick",
  16234. image: {
  16235. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16236. }
  16237. },
  16238. dickWere: {
  16239. height: math.unit((20) / 3.8, "feet"),
  16240. name: "Dick (Were)",
  16241. image: {
  16242. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16243. }
  16244. },
  16245. },
  16246. [
  16247. {
  16248. name: "Normal",
  16249. height: math.unit(6 + 1 / 12, "feet"),
  16250. default: true
  16251. },
  16252. ]
  16253. ))
  16254. characterMakers.push(() => makeCharacter(
  16255. { name: "Jet" },
  16256. {
  16257. front: {
  16258. height: math.unit(10, "feet"),
  16259. weight: math.unit(350, "lb"),
  16260. name: "Front",
  16261. image: {
  16262. source: "./media/characters/jet/front.svg",
  16263. extra: 2050 / 1980,
  16264. bottom: 0.013
  16265. }
  16266. },
  16267. back: {
  16268. height: math.unit(10, "feet"),
  16269. weight: math.unit(350, "lb"),
  16270. name: "Back",
  16271. image: {
  16272. source: "./media/characters/jet/back.svg",
  16273. extra: 2050 / 1980,
  16274. bottom: 0.013
  16275. }
  16276. },
  16277. },
  16278. [
  16279. {
  16280. name: "Micro",
  16281. height: math.unit(6, "inches")
  16282. },
  16283. {
  16284. name: "Normal",
  16285. height: math.unit(10, "feet"),
  16286. default: true
  16287. },
  16288. {
  16289. name: "Macro",
  16290. height: math.unit(100, "feet")
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Tanarath" },
  16296. {
  16297. front: {
  16298. height: math.unit(15, "feet"),
  16299. weight: math.unit(2800, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/tanarath/front.svg",
  16303. extra: 2392 / 2220,
  16304. bottom: 0.03
  16305. }
  16306. },
  16307. back: {
  16308. height: math.unit(15, "feet"),
  16309. weight: math.unit(2800, "lb"),
  16310. name: "Back",
  16311. image: {
  16312. source: "./media/characters/tanarath/back.svg",
  16313. extra: 2392 / 2220,
  16314. bottom: 0.03
  16315. }
  16316. },
  16317. },
  16318. [
  16319. {
  16320. name: "Normal",
  16321. height: math.unit(15, "feet"),
  16322. default: true
  16323. },
  16324. ]
  16325. ))
  16326. characterMakers.push(() => makeCharacter(
  16327. { name: "Patty CattyBatty" },
  16328. {
  16329. front: {
  16330. height: math.unit(7 + 1 / 12, "feet"),
  16331. weight: math.unit(175, "lb"),
  16332. name: "Front",
  16333. image: {
  16334. source: "./media/characters/patty-cattybatty/front.svg",
  16335. extra: 908 / 874,
  16336. bottom: 0.025
  16337. }
  16338. },
  16339. },
  16340. [
  16341. {
  16342. name: "Micro",
  16343. height: math.unit(1, "inch")
  16344. },
  16345. {
  16346. name: "Normal",
  16347. height: math.unit(7 + 1 / 12, "feet")
  16348. },
  16349. {
  16350. name: "Mini Macro",
  16351. height: math.unit(155, "feet")
  16352. },
  16353. {
  16354. name: "Macro",
  16355. height: math.unit(1077, "feet")
  16356. },
  16357. {
  16358. name: "Mega Macro",
  16359. height: math.unit(47650, "feet"),
  16360. default: true
  16361. },
  16362. {
  16363. name: "Giga Macro",
  16364. height: math.unit(440, "miles")
  16365. },
  16366. {
  16367. name: "Tera Macro",
  16368. height: math.unit(8700, "miles")
  16369. },
  16370. {
  16371. name: "Planetary Macro",
  16372. height: math.unit(32700, "miles")
  16373. },
  16374. {
  16375. name: "Solar Macro",
  16376. height: math.unit(550000, "miles")
  16377. },
  16378. {
  16379. name: "Celestial Macro",
  16380. height: math.unit(2.5, "AU")
  16381. },
  16382. ]
  16383. ))
  16384. characterMakers.push(() => makeCharacter(
  16385. { name: "Cappu" },
  16386. {
  16387. front: {
  16388. height: math.unit(4 + 5 / 12, "feet"),
  16389. weight: math.unit(90, "lb"),
  16390. name: "Front",
  16391. image: {
  16392. source: "./media/characters/cappu/front.svg",
  16393. extra: 1247 / 1152,
  16394. bottom: 0.012
  16395. }
  16396. },
  16397. },
  16398. [
  16399. {
  16400. name: "Normal",
  16401. height: math.unit(4 + 5 / 12, "feet"),
  16402. default: true
  16403. },
  16404. ]
  16405. ))
  16406. characterMakers.push(() => makeCharacter(
  16407. { name: "Sebi" },
  16408. {
  16409. frontDressed: {
  16410. height: math.unit(70, "cm"),
  16411. weight: math.unit(6, "kg"),
  16412. name: "Front (Dressed)",
  16413. image: {
  16414. source: "./media/characters/sebi/front-dressed.svg",
  16415. extra: 713.5 / 686.5,
  16416. bottom: 0.003
  16417. }
  16418. },
  16419. front: {
  16420. height: math.unit(70, "cm"),
  16421. weight: math.unit(5, "kg"),
  16422. name: "Front",
  16423. image: {
  16424. source: "./media/characters/sebi/front.svg",
  16425. extra: 713.5 / 686.5,
  16426. bottom: 0.003
  16427. }
  16428. }
  16429. },
  16430. [
  16431. {
  16432. name: "Normal",
  16433. height: math.unit(70, "cm"),
  16434. default: true
  16435. },
  16436. {
  16437. name: "Macro",
  16438. height: math.unit(8, "meters")
  16439. },
  16440. ]
  16441. ))
  16442. characterMakers.push(() => makeCharacter(
  16443. { name: "Typhek" },
  16444. {
  16445. front: {
  16446. height: math.unit(6, "feet"),
  16447. weight: math.unit(150, "lb"),
  16448. name: "Front",
  16449. image: {
  16450. source: "./media/characters/typhek/front.svg",
  16451. extra: 1948 / 1929,
  16452. bottom: 0.025
  16453. }
  16454. },
  16455. side: {
  16456. height: math.unit(6, "feet"),
  16457. weight: math.unit(150, "lb"),
  16458. name: "Side",
  16459. image: {
  16460. source: "./media/characters/typhek/side.svg",
  16461. extra: 2034 / 2010,
  16462. bottom: 0.003
  16463. }
  16464. },
  16465. back: {
  16466. height: math.unit(6, "feet"),
  16467. weight: math.unit(150, "lb"),
  16468. name: "Back",
  16469. image: {
  16470. source: "./media/characters/typhek/back.svg",
  16471. extra: 2005 / 1978,
  16472. bottom: 0.004
  16473. }
  16474. },
  16475. palm: {
  16476. height: math.unit(1.2, "feet"),
  16477. name: "Palm",
  16478. image: {
  16479. source: "./media/characters/typhek/palm.svg"
  16480. }
  16481. },
  16482. fist: {
  16483. height: math.unit(1.1, "feet"),
  16484. name: "Fist",
  16485. image: {
  16486. source: "./media/characters/typhek/fist.svg"
  16487. }
  16488. },
  16489. foot: {
  16490. height: math.unit(1.57, "feet"),
  16491. name: "Foot",
  16492. image: {
  16493. source: "./media/characters/typhek/foot.svg"
  16494. }
  16495. },
  16496. sole: {
  16497. height: math.unit(2.05, "feet"),
  16498. name: "Sole",
  16499. image: {
  16500. source: "./media/characters/typhek/sole.svg"
  16501. }
  16502. },
  16503. },
  16504. [
  16505. {
  16506. name: "Macro",
  16507. height: math.unit(40, "stories"),
  16508. default: true
  16509. },
  16510. {
  16511. name: "Megamacro",
  16512. height: math.unit(1, "mile")
  16513. },
  16514. {
  16515. name: "Gigamacro",
  16516. height: math.unit(4000, "solarradii")
  16517. },
  16518. {
  16519. name: "Universal",
  16520. height: math.unit(1.1, "universes")
  16521. }
  16522. ]
  16523. ))
  16524. characterMakers.push(() => makeCharacter(
  16525. { name: "Kassy" },
  16526. {
  16527. side: {
  16528. height: math.unit(5 + 7 / 12, "feet"),
  16529. weight: math.unit(150, "lb"),
  16530. name: "Side",
  16531. image: {
  16532. source: "./media/characters/kassy/side.svg",
  16533. extra: 1280 / 1225,
  16534. bottom: 0.002
  16535. }
  16536. },
  16537. front: {
  16538. height: math.unit(5 + 7 / 12, "feet"),
  16539. weight: math.unit(150, "lb"),
  16540. name: "Front",
  16541. image: {
  16542. source: "./media/characters/kassy/front.svg",
  16543. extra: 1280 / 1225,
  16544. bottom: 0.025
  16545. }
  16546. },
  16547. back: {
  16548. height: math.unit(5 + 7 / 12, "feet"),
  16549. weight: math.unit(150, "lb"),
  16550. name: "Back",
  16551. image: {
  16552. source: "./media/characters/kassy/back.svg",
  16553. extra: 1280 / 1225,
  16554. bottom: 0.002
  16555. }
  16556. },
  16557. foot: {
  16558. height: math.unit(1.266, "feet"),
  16559. name: "Foot",
  16560. image: {
  16561. source: "./media/characters/kassy/foot.svg"
  16562. }
  16563. },
  16564. },
  16565. [
  16566. {
  16567. name: "Normal",
  16568. height: math.unit(5 + 7 / 12, "feet")
  16569. },
  16570. {
  16571. name: "Macro",
  16572. height: math.unit(137, "feet"),
  16573. default: true
  16574. },
  16575. {
  16576. name: "Megamacro",
  16577. height: math.unit(1, "mile")
  16578. },
  16579. ]
  16580. ))
  16581. characterMakers.push(() => makeCharacter(
  16582. { name: "Neil" },
  16583. {
  16584. front: {
  16585. height: math.unit(6 + 1 / 12, "feet"),
  16586. weight: math.unit(200, "lb"),
  16587. name: "Front",
  16588. image: {
  16589. source: "./media/characters/neil/front.svg",
  16590. extra: 1326 / 1250,
  16591. bottom: 0.023
  16592. }
  16593. },
  16594. },
  16595. [
  16596. {
  16597. name: "Normal",
  16598. height: math.unit(6 + 1 / 12, "feet"),
  16599. default: true
  16600. },
  16601. {
  16602. name: "Macro",
  16603. height: math.unit(200, "feet")
  16604. },
  16605. ]
  16606. ))
  16607. characterMakers.push(() => makeCharacter(
  16608. { name: "Atticus" },
  16609. {
  16610. front: {
  16611. height: math.unit(5 + 9 / 12, "feet"),
  16612. weight: math.unit(190, "lb"),
  16613. name: "Front",
  16614. image: {
  16615. source: "./media/characters/atticus/front.svg",
  16616. extra: 2934 / 2785,
  16617. bottom: 0.025
  16618. }
  16619. },
  16620. },
  16621. [
  16622. {
  16623. name: "Normal",
  16624. height: math.unit(5 + 9 / 12, "feet"),
  16625. default: true
  16626. },
  16627. {
  16628. name: "Macro",
  16629. height: math.unit(180, "feet")
  16630. },
  16631. ]
  16632. ))
  16633. characterMakers.push(() => makeCharacter(
  16634. { name: "Milo" },
  16635. {
  16636. side: {
  16637. height: math.unit(9, "feet"),
  16638. weight: math.unit(650, "lb"),
  16639. name: "Side",
  16640. image: {
  16641. source: "./media/characters/milo/side.svg",
  16642. extra: 2644 / 2310,
  16643. bottom: 0.032
  16644. }
  16645. },
  16646. },
  16647. [
  16648. {
  16649. name: "Normal",
  16650. height: math.unit(9, "feet"),
  16651. default: true
  16652. },
  16653. {
  16654. name: "Macro",
  16655. height: math.unit(300, "feet")
  16656. },
  16657. ]
  16658. ))
  16659. characterMakers.push(() => makeCharacter(
  16660. { name: "Ijzer" },
  16661. {
  16662. side: {
  16663. height: math.unit(8, "meters"),
  16664. weight: math.unit(90000, "kg"),
  16665. name: "Side",
  16666. image: {
  16667. source: "./media/characters/ijzer/side.svg",
  16668. extra: 2756 / 1600,
  16669. bottom: 0.01
  16670. }
  16671. },
  16672. },
  16673. [
  16674. {
  16675. name: "Small",
  16676. height: math.unit(3, "meters")
  16677. },
  16678. {
  16679. name: "Normal",
  16680. height: math.unit(8, "meters"),
  16681. default: true
  16682. },
  16683. {
  16684. name: "Normal+",
  16685. height: math.unit(10, "meters")
  16686. },
  16687. {
  16688. name: "Bigger",
  16689. height: math.unit(24, "meters")
  16690. },
  16691. {
  16692. name: "Huge",
  16693. height: math.unit(80, "meters")
  16694. },
  16695. ]
  16696. ))
  16697. characterMakers.push(() => makeCharacter(
  16698. { name: "Luca Cervicum" },
  16699. {
  16700. front: {
  16701. height: math.unit(6 + 2 / 12, "feet"),
  16702. weight: math.unit(153, "lb"),
  16703. name: "Front",
  16704. image: {
  16705. source: "./media/characters/luca-cervicum/front.svg",
  16706. extra: 370 / 327,
  16707. bottom: 0.015
  16708. }
  16709. },
  16710. back: {
  16711. height: math.unit(6 + 2 / 12, "feet"),
  16712. weight: math.unit(153, "lb"),
  16713. name: "Back",
  16714. image: {
  16715. source: "./media/characters/luca-cervicum/back.svg",
  16716. extra: 367 / 333,
  16717. bottom: 0.005
  16718. }
  16719. },
  16720. frontGear: {
  16721. height: math.unit(6 + 2 / 12, "feet"),
  16722. weight: math.unit(173, "lb"),
  16723. name: "Front (Gear)",
  16724. image: {
  16725. source: "./media/characters/luca-cervicum/front-gear.svg",
  16726. extra: 377 / 333,
  16727. bottom: 0.006
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(6 + 2 / 12, "feet"),
  16735. default: true
  16736. },
  16737. ]
  16738. ))
  16739. characterMakers.push(() => makeCharacter(
  16740. { name: "Oliver" },
  16741. {
  16742. front: {
  16743. height: math.unit(6 + 1 / 12, "feet"),
  16744. weight: math.unit(304, "lb"),
  16745. name: "Front",
  16746. image: {
  16747. source: "./media/characters/oliver/front.svg",
  16748. extra: 157 / 143,
  16749. bottom: 0.08
  16750. }
  16751. },
  16752. },
  16753. [
  16754. {
  16755. name: "Normal",
  16756. height: math.unit(6 + 1 / 12, "feet"),
  16757. default: true
  16758. },
  16759. ]
  16760. ))
  16761. characterMakers.push(() => makeCharacter(
  16762. { name: "Shane" },
  16763. {
  16764. front: {
  16765. height: math.unit(5 + 7 / 12, "feet"),
  16766. weight: math.unit(140, "lb"),
  16767. name: "Front",
  16768. image: {
  16769. source: "./media/characters/shane/front.svg",
  16770. extra: 304 / 289,
  16771. bottom: 0.005
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Normal",
  16778. height: math.unit(5 + 7 / 12, "feet"),
  16779. default: true
  16780. },
  16781. ]
  16782. ))
  16783. characterMakers.push(() => makeCharacter(
  16784. { name: "Shin" },
  16785. {
  16786. front: {
  16787. height: math.unit(5 + 9 / 12, "feet"),
  16788. weight: math.unit(178, "lb"),
  16789. name: "Front",
  16790. image: {
  16791. source: "./media/characters/shin/front.svg",
  16792. extra: 159 / 151,
  16793. bottom: 0.015
  16794. }
  16795. },
  16796. },
  16797. [
  16798. {
  16799. name: "Normal",
  16800. height: math.unit(5 + 9 / 12, "feet"),
  16801. default: true
  16802. },
  16803. ]
  16804. ))
  16805. characterMakers.push(() => makeCharacter(
  16806. { name: "Xerxes" },
  16807. {
  16808. front: {
  16809. height: math.unit(5 + 10 / 12, "feet"),
  16810. weight: math.unit(168, "lb"),
  16811. name: "Front",
  16812. image: {
  16813. source: "./media/characters/xerxes/front.svg",
  16814. extra: 282 / 260,
  16815. bottom: 0.045
  16816. }
  16817. },
  16818. },
  16819. [
  16820. {
  16821. name: "Normal",
  16822. height: math.unit(5 + 10 / 12, "feet"),
  16823. default: true
  16824. },
  16825. ]
  16826. ))
  16827. characterMakers.push(() => makeCharacter(
  16828. { name: "Chaska" },
  16829. {
  16830. front: {
  16831. height: math.unit(6 + 7 / 12, "feet"),
  16832. weight: math.unit(208, "lb"),
  16833. name: "Front",
  16834. image: {
  16835. source: "./media/characters/chaska/front.svg",
  16836. extra: 332 / 319,
  16837. bottom: 0.015
  16838. }
  16839. },
  16840. },
  16841. [
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(6 + 7 / 12, "feet"),
  16845. default: true
  16846. },
  16847. ]
  16848. ))
  16849. characterMakers.push(() => makeCharacter(
  16850. { name: "Enuk" },
  16851. {
  16852. front: {
  16853. height: math.unit(5 + 8 / 12, "feet"),
  16854. weight: math.unit(208, "lb"),
  16855. name: "Front",
  16856. image: {
  16857. source: "./media/characters/enuk/front.svg",
  16858. extra: 437 / 406,
  16859. bottom: 0.02
  16860. }
  16861. },
  16862. },
  16863. [
  16864. {
  16865. name: "Normal",
  16866. height: math.unit(5 + 8 / 12, "feet"),
  16867. default: true
  16868. },
  16869. ]
  16870. ))
  16871. characterMakers.push(() => makeCharacter(
  16872. { name: "Bruun" },
  16873. {
  16874. front: {
  16875. height: math.unit(5 + 10 / 12, "feet"),
  16876. weight: math.unit(252, "lb"),
  16877. name: "Front",
  16878. image: {
  16879. source: "./media/characters/bruun/front.svg",
  16880. extra: 197 / 187,
  16881. bottom: 0.012
  16882. }
  16883. },
  16884. },
  16885. [
  16886. {
  16887. name: "Normal",
  16888. height: math.unit(5 + 10 / 12, "feet"),
  16889. default: true
  16890. },
  16891. ]
  16892. ))
  16893. characterMakers.push(() => makeCharacter(
  16894. { name: "Alexeev" },
  16895. {
  16896. front: {
  16897. height: math.unit(6 + 10 / 12, "feet"),
  16898. weight: math.unit(255, "lb"),
  16899. name: "Front",
  16900. image: {
  16901. source: "./media/characters/alexeev/front.svg",
  16902. extra: 213 / 200,
  16903. bottom: 0.05
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Normal",
  16910. height: math.unit(6 + 10 / 12, "feet"),
  16911. default: true
  16912. },
  16913. ]
  16914. ))
  16915. characterMakers.push(() => makeCharacter(
  16916. { name: "Evelyn" },
  16917. {
  16918. front: {
  16919. height: math.unit(2 + 8 / 12, "feet"),
  16920. weight: math.unit(22, "lb"),
  16921. name: "Front",
  16922. image: {
  16923. source: "./media/characters/evelyn/front.svg",
  16924. extra: 208 / 180
  16925. }
  16926. },
  16927. },
  16928. [
  16929. {
  16930. name: "Normal",
  16931. height: math.unit(2 + 8 / 12, "feet"),
  16932. default: true
  16933. },
  16934. ]
  16935. ))
  16936. characterMakers.push(() => makeCharacter(
  16937. { name: "Inca" },
  16938. {
  16939. front: {
  16940. height: math.unit(5 + 9 / 12, "feet"),
  16941. weight: math.unit(139, "lb"),
  16942. name: "Front",
  16943. image: {
  16944. source: "./media/characters/inca/front.svg",
  16945. extra: 294 / 291,
  16946. bottom: 0.03
  16947. }
  16948. },
  16949. },
  16950. [
  16951. {
  16952. name: "Normal",
  16953. height: math.unit(5 + 9 / 12, "feet"),
  16954. default: true
  16955. },
  16956. ]
  16957. ))
  16958. characterMakers.push(() => makeCharacter(
  16959. { name: "Magdalene" },
  16960. {
  16961. front: {
  16962. height: math.unit(5 + 1 / 12, "feet"),
  16963. weight: math.unit(84, "lb"),
  16964. name: "Front",
  16965. image: {
  16966. source: "./media/characters/magdalene/front.svg",
  16967. extra: 293 / 273
  16968. }
  16969. },
  16970. },
  16971. [
  16972. {
  16973. name: "Normal",
  16974. height: math.unit(5 + 1 / 12, "feet"),
  16975. default: true
  16976. },
  16977. ]
  16978. ))
  16979. characterMakers.push(() => makeCharacter(
  16980. { name: "Mera" },
  16981. {
  16982. front: {
  16983. height: math.unit(6 + 3 / 12, "feet"),
  16984. weight: math.unit(185, "lb"),
  16985. name: "Front",
  16986. image: {
  16987. source: "./media/characters/mera/front.svg",
  16988. extra: 291 / 277,
  16989. bottom: 0.03
  16990. }
  16991. },
  16992. },
  16993. [
  16994. {
  16995. name: "Normal",
  16996. height: math.unit(6 + 3 / 12, "feet"),
  16997. default: true
  16998. },
  16999. ]
  17000. ))
  17001. characterMakers.push(() => makeCharacter(
  17002. { name: "Ceres" },
  17003. {
  17004. front: {
  17005. height: math.unit(6 + 7 / 12, "feet"),
  17006. weight: math.unit(160, "lb"),
  17007. name: "Front",
  17008. image: {
  17009. source: "./media/characters/ceres/front.svg",
  17010. extra: 1023 / 950,
  17011. bottom: 0.027
  17012. }
  17013. },
  17014. back: {
  17015. height: math.unit(6 + 7 / 12, "feet"),
  17016. weight: math.unit(160, "lb"),
  17017. name: "Back",
  17018. image: {
  17019. source: "./media/characters/ceres/back.svg",
  17020. extra: 1023 / 950
  17021. }
  17022. },
  17023. },
  17024. [
  17025. {
  17026. name: "Normal",
  17027. height: math.unit(6 + 7 / 12, "feet"),
  17028. default: true
  17029. },
  17030. ]
  17031. ))
  17032. characterMakers.push(() => makeCharacter(
  17033. { name: "Kris" },
  17034. {
  17035. front: {
  17036. height: math.unit(5 + 10 / 12, "feet"),
  17037. weight: math.unit(150, "lb"),
  17038. name: "Front",
  17039. image: {
  17040. source: "./media/characters/kris/front.svg",
  17041. extra: 885 / 803,
  17042. bottom: 0.03
  17043. }
  17044. },
  17045. },
  17046. [
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(5 + 10 / 12, "feet"),
  17050. default: true
  17051. },
  17052. ]
  17053. ))
  17054. characterMakers.push(() => makeCharacter(
  17055. { name: "Taluthus" },
  17056. {
  17057. front: {
  17058. height: math.unit(7, "feet"),
  17059. weight: math.unit(120, "kg"),
  17060. name: "Front",
  17061. image: {
  17062. source: "./media/characters/taluthus/front.svg",
  17063. extra: 903 / 833,
  17064. bottom: 0.015
  17065. }
  17066. },
  17067. },
  17068. [
  17069. {
  17070. name: "Normal",
  17071. height: math.unit(7, "feet"),
  17072. default: true
  17073. },
  17074. {
  17075. name: "Macro",
  17076. height: math.unit(300, "feet")
  17077. },
  17078. ]
  17079. ))
  17080. characterMakers.push(() => makeCharacter(
  17081. { name: "Dawn" },
  17082. {
  17083. front: {
  17084. height: math.unit(5 + 9 / 12, "feet"),
  17085. weight: math.unit(145, "lb"),
  17086. name: "Front",
  17087. image: {
  17088. source: "./media/characters/dawn/front.svg",
  17089. extra: 2094 / 2016,
  17090. bottom: 0.025
  17091. }
  17092. },
  17093. back: {
  17094. height: math.unit(5 + 9 / 12, "feet"),
  17095. weight: math.unit(160, "lb"),
  17096. name: "Back",
  17097. image: {
  17098. source: "./media/characters/dawn/back.svg",
  17099. extra: 2112 / 2080,
  17100. bottom: 0.005
  17101. }
  17102. },
  17103. },
  17104. [
  17105. {
  17106. name: "Normal",
  17107. height: math.unit(6 + 7 / 12, "feet"),
  17108. default: true
  17109. },
  17110. ]
  17111. ))
  17112. characterMakers.push(() => makeCharacter(
  17113. { name: "Arador" },
  17114. {
  17115. anthro: {
  17116. height: math.unit(8 + 3 / 12, "feet"),
  17117. weight: math.unit(450, "lb"),
  17118. name: "Anthro",
  17119. image: {
  17120. source: "./media/characters/arador/anthro.svg",
  17121. extra: 1835 / 1718,
  17122. bottom: 0.025
  17123. }
  17124. },
  17125. feral: {
  17126. height: math.unit(4, "feet"),
  17127. weight: math.unit(200, "lb"),
  17128. name: "Feral",
  17129. image: {
  17130. source: "./media/characters/arador/feral.svg",
  17131. extra: 1683 / 1514,
  17132. bottom: 0.07
  17133. }
  17134. },
  17135. },
  17136. [
  17137. {
  17138. name: "Normal",
  17139. height: math.unit(8 + 3 / 12, "feet")
  17140. },
  17141. {
  17142. name: "Macro",
  17143. height: math.unit(82.5, "feet"),
  17144. default: true
  17145. },
  17146. ]
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Dharsi" },
  17150. {
  17151. front: {
  17152. height: math.unit(5 + 10 / 12, "feet"),
  17153. weight: math.unit(125, "lb"),
  17154. name: "Front",
  17155. image: {
  17156. source: "./media/characters/dharsi/front.svg",
  17157. extra: 716 / 630,
  17158. bottom: 0.035
  17159. }
  17160. },
  17161. },
  17162. [
  17163. {
  17164. name: "Nano",
  17165. height: math.unit(100, "nm")
  17166. },
  17167. {
  17168. name: "Micro",
  17169. height: math.unit(2, "inches")
  17170. },
  17171. {
  17172. name: "Normal",
  17173. height: math.unit(5 + 10 / 12, "feet"),
  17174. default: true
  17175. },
  17176. {
  17177. name: "Macro",
  17178. height: math.unit(1000, "feet")
  17179. },
  17180. {
  17181. name: "Megamacro",
  17182. height: math.unit(10, "miles")
  17183. },
  17184. {
  17185. name: "Gigamacro",
  17186. height: math.unit(3000, "miles")
  17187. },
  17188. {
  17189. name: "Teramacro",
  17190. height: math.unit(500000, "miles")
  17191. },
  17192. {
  17193. name: "Teramacro+",
  17194. height: math.unit(30, "galaxies")
  17195. },
  17196. ]
  17197. ))
  17198. characterMakers.push(() => makeCharacter(
  17199. { name: "Deathy" },
  17200. {
  17201. front: {
  17202. height: math.unit(6, "feet"),
  17203. weight: math.unit(150, "lb"),
  17204. name: "Front",
  17205. image: {
  17206. source: "./media/characters/deathy/front.svg",
  17207. extra: 1552 / 1463,
  17208. bottom: 0.025
  17209. }
  17210. },
  17211. side: {
  17212. height: math.unit(6, "feet"),
  17213. weight: math.unit(150, "lb"),
  17214. name: "Side",
  17215. image: {
  17216. source: "./media/characters/deathy/side.svg",
  17217. extra: 1604 / 1455,
  17218. bottom: 0.025
  17219. }
  17220. },
  17221. back: {
  17222. height: math.unit(6, "feet"),
  17223. weight: math.unit(150, "lb"),
  17224. name: "Back",
  17225. image: {
  17226. source: "./media/characters/deathy/back.svg",
  17227. extra: 1580 / 1463,
  17228. bottom: 0.005
  17229. }
  17230. },
  17231. },
  17232. [
  17233. {
  17234. name: "Micro",
  17235. height: math.unit(5, "millimeters")
  17236. },
  17237. {
  17238. name: "Normal",
  17239. height: math.unit(6 + 5 / 12, "feet"),
  17240. default: true
  17241. },
  17242. ]
  17243. ))
  17244. characterMakers.push(() => makeCharacter(
  17245. { name: "Juniper" },
  17246. {
  17247. front: {
  17248. height: math.unit(16, "feet"),
  17249. weight: math.unit(4000, "lb"),
  17250. name: "Front",
  17251. image: {
  17252. source: "./media/characters/juniper/front.svg",
  17253. bottom: 0.04
  17254. }
  17255. },
  17256. },
  17257. [
  17258. {
  17259. name: "Normal",
  17260. height: math.unit(16, "feet"),
  17261. default: true
  17262. },
  17263. ]
  17264. ))
  17265. characterMakers.push(() => makeCharacter(
  17266. { name: "Hipster" },
  17267. {
  17268. front: {
  17269. height: math.unit(6, "feet"),
  17270. weight: math.unit(150, "lb"),
  17271. name: "Front",
  17272. image: {
  17273. source: "./media/characters/hipster/front.svg",
  17274. extra: 1312 / 1209,
  17275. bottom: 0.025
  17276. }
  17277. },
  17278. back: {
  17279. height: math.unit(6, "feet"),
  17280. weight: math.unit(150, "lb"),
  17281. name: "Back",
  17282. image: {
  17283. source: "./media/characters/hipster/back.svg",
  17284. extra: 1281 / 1196,
  17285. bottom: 0.01
  17286. }
  17287. },
  17288. },
  17289. [
  17290. {
  17291. name: "Micro",
  17292. height: math.unit(1, "mm")
  17293. },
  17294. {
  17295. name: "Normal",
  17296. height: math.unit(4, "inches"),
  17297. default: true
  17298. },
  17299. {
  17300. name: "Macro",
  17301. height: math.unit(500, "feet")
  17302. },
  17303. {
  17304. name: "Megamacro",
  17305. height: math.unit(1000, "miles")
  17306. },
  17307. ]
  17308. ))
  17309. characterMakers.push(() => makeCharacter(
  17310. { name: "Tendirmuldr" },
  17311. {
  17312. front: {
  17313. height: math.unit(6, "feet"),
  17314. weight: math.unit(150, "lb"),
  17315. name: "Front",
  17316. image: {
  17317. source: "./media/characters/tendirmuldr/front.svg",
  17318. extra: 1878 / 1772,
  17319. bottom: 0.015
  17320. }
  17321. },
  17322. },
  17323. [
  17324. {
  17325. name: "Megamacro",
  17326. height: math.unit(1500, "miles"),
  17327. default: true
  17328. },
  17329. ]
  17330. ))
  17331. characterMakers.push(() => makeCharacter(
  17332. { name: "Mort" },
  17333. {
  17334. front: {
  17335. height: math.unit(14, "feet"),
  17336. weight: math.unit(12000, "lb"),
  17337. name: "Front",
  17338. image: {
  17339. source: "./media/characters/mort/front.svg",
  17340. extra: 365 / 318,
  17341. bottom: 0.01
  17342. }
  17343. },
  17344. side: {
  17345. height: math.unit(14, "feet"),
  17346. weight: math.unit(12000, "lb"),
  17347. name: "Side",
  17348. image: {
  17349. source: "./media/characters/mort/side.svg",
  17350. extra: 365 / 318,
  17351. bottom: 0.052
  17352. },
  17353. default: true
  17354. },
  17355. back: {
  17356. height: math.unit(14, "feet"),
  17357. weight: math.unit(12000, "lb"),
  17358. name: "Back",
  17359. image: {
  17360. source: "./media/characters/mort/back.svg",
  17361. extra: 371 / 332,
  17362. bottom: 0.18
  17363. }
  17364. },
  17365. },
  17366. [
  17367. {
  17368. name: "Normal",
  17369. height: math.unit(14, "feet"),
  17370. default: true
  17371. },
  17372. ]
  17373. ))
  17374. characterMakers.push(() => makeCharacter(
  17375. { name: "Lycoa" },
  17376. {
  17377. front: {
  17378. height: math.unit(8, "feet"),
  17379. weight: math.unit(1, "ton"),
  17380. name: "Front",
  17381. image: {
  17382. source: "./media/characters/lycoa/front.svg",
  17383. extra: 1875 / 1789,
  17384. bottom: 0.022
  17385. }
  17386. },
  17387. back: {
  17388. height: math.unit(8, "feet"),
  17389. weight: math.unit(1, "ton"),
  17390. name: "Back",
  17391. image: {
  17392. source: "./media/characters/lycoa/back.svg",
  17393. extra: 1835 / 1781,
  17394. bottom: 0.03
  17395. }
  17396. },
  17397. },
  17398. [
  17399. {
  17400. name: "Normal",
  17401. height: math.unit(8, "feet"),
  17402. default: true
  17403. },
  17404. {
  17405. name: "Macro",
  17406. height: math.unit(30, "feet")
  17407. },
  17408. ]
  17409. ))
  17410. characterMakers.push(() => makeCharacter(
  17411. { name: "Naldara" },
  17412. {
  17413. front: {
  17414. height: math.unit(4 + 2 / 12, "feet"),
  17415. weight: math.unit(70, "lb"),
  17416. name: "Front",
  17417. image: {
  17418. source: "./media/characters/naldara/front.svg",
  17419. extra: 841 / 720,
  17420. bottom: 0.04
  17421. }
  17422. },
  17423. },
  17424. [
  17425. {
  17426. name: "Normal",
  17427. height: math.unit(4 + 2 / 12, "feet"),
  17428. default: true
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Briar" },
  17434. {
  17435. front: {
  17436. height: math.unit(13 + 7 / 12, "feet"),
  17437. weight: math.unit(1500, "lb"),
  17438. name: "Front",
  17439. image: {
  17440. source: "./media/characters/briar/front.svg",
  17441. extra: 626 / 596,
  17442. bottom: 0.08
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Normal",
  17449. height: math.unit(13 + 7 / 12, "feet"),
  17450. default: true
  17451. },
  17452. ]
  17453. ))
  17454. characterMakers.push(() => makeCharacter(
  17455. { name: "Vanguard" },
  17456. {
  17457. side: {
  17458. height: math.unit(10, "feet"),
  17459. weight: math.unit(500, "lb"),
  17460. name: "Side",
  17461. image: {
  17462. source: "./media/characters/vanguard/side.svg",
  17463. extra: 502 / 425,
  17464. bottom: 0.087
  17465. }
  17466. },
  17467. },
  17468. [
  17469. {
  17470. name: "Normal",
  17471. height: math.unit(10, "feet"),
  17472. default: true
  17473. },
  17474. ]
  17475. ))
  17476. characterMakers.push(() => makeCharacter(
  17477. { name: "Artemis" },
  17478. {
  17479. front: {
  17480. height: math.unit(7.5, "feet"),
  17481. weight: math.unit(2, "lb"),
  17482. name: "Front",
  17483. image: {
  17484. source: "./media/characters/artemis/front.svg",
  17485. extra: 1192 / 1075,
  17486. bottom: 0.07
  17487. }
  17488. },
  17489. },
  17490. [
  17491. {
  17492. name: "Normal",
  17493. height: math.unit(7.5, "feet"),
  17494. default: true
  17495. },
  17496. {
  17497. name: "Enlarged",
  17498. height: math.unit(12, "feet")
  17499. },
  17500. ]
  17501. ))
  17502. characterMakers.push(() => makeCharacter(
  17503. { name: "Kira" },
  17504. {
  17505. front: {
  17506. height: math.unit(5 + 3 / 12, "feet"),
  17507. weight: math.unit(160, "lb"),
  17508. name: "Front",
  17509. image: {
  17510. source: "./media/characters/kira/front.svg",
  17511. extra: 906 / 786,
  17512. bottom: 0.01
  17513. }
  17514. },
  17515. back: {
  17516. height: math.unit(5 + 3 / 12, "feet"),
  17517. weight: math.unit(160, "lb"),
  17518. name: "Back",
  17519. image: {
  17520. source: "./media/characters/kira/back.svg",
  17521. extra: 882 / 757,
  17522. bottom: 0.005
  17523. }
  17524. },
  17525. frontDressed: {
  17526. height: math.unit(5 + 3 / 12, "feet"),
  17527. weight: math.unit(160, "lb"),
  17528. name: "Front (Dressed)",
  17529. image: {
  17530. source: "./media/characters/kira/front-dressed.svg",
  17531. extra: 906 / 786,
  17532. bottom: 0.01
  17533. }
  17534. },
  17535. beans: {
  17536. height: math.unit(0.92, "feet"),
  17537. name: "Beans",
  17538. image: {
  17539. source: "./media/characters/kira/beans.svg"
  17540. }
  17541. },
  17542. },
  17543. [
  17544. {
  17545. name: "Normal",
  17546. height: math.unit(5 + 3 / 12, "feet"),
  17547. default: true
  17548. },
  17549. ]
  17550. ))
  17551. characterMakers.push(() => makeCharacter(
  17552. { name: "Scramble" },
  17553. {
  17554. front: {
  17555. height: math.unit(5 + 4 / 12, "feet"),
  17556. weight: math.unit(145, "lb"),
  17557. name: "Front",
  17558. image: {
  17559. source: "./media/characters/scramble/front.svg",
  17560. extra: 763 / 727,
  17561. bottom: 0.05
  17562. }
  17563. },
  17564. back: {
  17565. height: math.unit(5 + 4 / 12, "feet"),
  17566. weight: math.unit(145, "lb"),
  17567. name: "Back",
  17568. image: {
  17569. source: "./media/characters/scramble/back.svg",
  17570. extra: 826 / 737,
  17571. bottom: 0.002
  17572. }
  17573. },
  17574. },
  17575. [
  17576. {
  17577. name: "Normal",
  17578. height: math.unit(5 + 4 / 12, "feet"),
  17579. default: true
  17580. },
  17581. ]
  17582. ))
  17583. characterMakers.push(() => makeCharacter(
  17584. { name: "Biscuit" },
  17585. {
  17586. side: {
  17587. height: math.unit(6 + 2 / 12, "feet"),
  17588. weight: math.unit(190, "lb"),
  17589. name: "Side",
  17590. image: {
  17591. source: "./media/characters/biscuit/side.svg",
  17592. extra: 858 / 791,
  17593. bottom: 0.044
  17594. }
  17595. },
  17596. },
  17597. [
  17598. {
  17599. name: "Normal",
  17600. height: math.unit(6 + 2 / 12, "feet"),
  17601. default: true
  17602. },
  17603. ]
  17604. ))
  17605. characterMakers.push(() => makeCharacter(
  17606. { name: "Poffin" },
  17607. {
  17608. front: {
  17609. height: math.unit(5 + 2 / 12, "feet"),
  17610. weight: math.unit(120, "lb"),
  17611. name: "Front",
  17612. image: {
  17613. source: "./media/characters/poffin/front.svg",
  17614. extra: 786 / 680,
  17615. bottom: 0.005
  17616. }
  17617. },
  17618. },
  17619. [
  17620. {
  17621. name: "Normal",
  17622. height: math.unit(5 + 2 / 12, "feet"),
  17623. default: true
  17624. },
  17625. ]
  17626. ))
  17627. characterMakers.push(() => makeCharacter(
  17628. { name: "Dhari" },
  17629. {
  17630. front: {
  17631. height: math.unit(6 + 3 / 12, "feet"),
  17632. weight: math.unit(519, "lb"),
  17633. name: "Front",
  17634. image: {
  17635. source: "./media/characters/dhari/front.svg",
  17636. extra: 1048 / 946,
  17637. bottom: 0.015
  17638. }
  17639. },
  17640. back: {
  17641. height: math.unit(6 + 3 / 12, "feet"),
  17642. weight: math.unit(519, "lb"),
  17643. name: "Back",
  17644. image: {
  17645. source: "./media/characters/dhari/back.svg",
  17646. extra: 1048 / 931,
  17647. bottom: 0.005
  17648. }
  17649. },
  17650. frontDressed: {
  17651. height: math.unit(6 + 3 / 12, "feet"),
  17652. weight: math.unit(519, "lb"),
  17653. name: "Front (Dressed)",
  17654. image: {
  17655. source: "./media/characters/dhari/front-dressed.svg",
  17656. extra: 1713 / 1546,
  17657. bottom: 0.02
  17658. }
  17659. },
  17660. backDressed: {
  17661. height: math.unit(6 + 3 / 12, "feet"),
  17662. weight: math.unit(519, "lb"),
  17663. name: "Back (Dressed)",
  17664. image: {
  17665. source: "./media/characters/dhari/back-dressed.svg",
  17666. extra: 1699 / 1537,
  17667. bottom: 0.01
  17668. }
  17669. },
  17670. maw: {
  17671. height: math.unit(0.95, "feet"),
  17672. name: "Maw",
  17673. image: {
  17674. source: "./media/characters/dhari/maw.svg"
  17675. }
  17676. },
  17677. wereFront: {
  17678. height: math.unit(12 + 8 / 12, "feet"),
  17679. weight: math.unit(4000, "lb"),
  17680. name: "Front (Were)",
  17681. image: {
  17682. source: "./media/characters/dhari/were-front.svg",
  17683. extra: 1065 / 969,
  17684. bottom: 0.015
  17685. }
  17686. },
  17687. wereBack: {
  17688. height: math.unit(12 + 8 / 12, "feet"),
  17689. weight: math.unit(4000, "lb"),
  17690. name: "Back (Were)",
  17691. image: {
  17692. source: "./media/characters/dhari/were-back.svg",
  17693. extra: 1065 / 969,
  17694. bottom: 0.012
  17695. }
  17696. },
  17697. wereMaw: {
  17698. height: math.unit(0.625, "meters"),
  17699. name: "Maw (Were)",
  17700. image: {
  17701. source: "./media/characters/dhari/were-maw.svg"
  17702. }
  17703. },
  17704. },
  17705. [
  17706. {
  17707. name: "Normal",
  17708. height: math.unit(6 + 3 / 12, "feet"),
  17709. default: true
  17710. },
  17711. ]
  17712. ))
  17713. characterMakers.push(() => makeCharacter(
  17714. { name: "Rena Dyne" },
  17715. {
  17716. anthro: {
  17717. height: math.unit(5 + 7 / 12, "feet"),
  17718. weight: math.unit(175, "lb"),
  17719. name: "Anthro",
  17720. image: {
  17721. source: "./media/characters/rena-dyne/anthro.svg",
  17722. extra: 1849 / 1785,
  17723. bottom: 0.005
  17724. }
  17725. },
  17726. taur: {
  17727. height: math.unit(15 + 6 / 12, "feet"),
  17728. weight: math.unit(8000, "lb"),
  17729. name: "Taur",
  17730. image: {
  17731. source: "./media/characters/rena-dyne/taur.svg",
  17732. extra: 2315 / 2234,
  17733. bottom: 0.033
  17734. }
  17735. },
  17736. },
  17737. [
  17738. {
  17739. name: "Normal",
  17740. height: math.unit(5 + 7 / 12, "feet"),
  17741. default: true
  17742. },
  17743. ]
  17744. ))
  17745. characterMakers.push(() => makeCharacter(
  17746. { name: "Weremeep" },
  17747. {
  17748. front: {
  17749. height: math.unit(8, "feet"),
  17750. weight: math.unit(600, "lb"),
  17751. name: "Front",
  17752. image: {
  17753. source: "./media/characters/weremeep/front.svg",
  17754. extra: 967 / 862,
  17755. bottom: 0.01
  17756. }
  17757. },
  17758. },
  17759. [
  17760. {
  17761. name: "Normal",
  17762. height: math.unit(8, "feet"),
  17763. default: true
  17764. },
  17765. {
  17766. name: "Lorg",
  17767. height: math.unit(12, "feet")
  17768. },
  17769. {
  17770. name: "Oh Lawd She Comin'",
  17771. height: math.unit(20, "feet")
  17772. },
  17773. ]
  17774. ))
  17775. characterMakers.push(() => makeCharacter(
  17776. { name: "Reza" },
  17777. {
  17778. front: {
  17779. height: math.unit(4, "feet"),
  17780. weight: math.unit(90, "lb"),
  17781. name: "Front",
  17782. image: {
  17783. source: "./media/characters/reza/front.svg",
  17784. extra: 1183 / 1111,
  17785. bottom: 0.017
  17786. }
  17787. },
  17788. back: {
  17789. height: math.unit(4, "feet"),
  17790. weight: math.unit(90, "lb"),
  17791. name: "Back",
  17792. image: {
  17793. source: "./media/characters/reza/back.svg",
  17794. extra: 1183 / 1111,
  17795. bottom: 0.01
  17796. }
  17797. },
  17798. },
  17799. [
  17800. {
  17801. name: "Normal",
  17802. height: math.unit(4, "feet"),
  17803. default: true
  17804. },
  17805. ]
  17806. ))
  17807. characterMakers.push(() => makeCharacter(
  17808. { name: "Athea" },
  17809. {
  17810. side: {
  17811. height: math.unit(15, "feet"),
  17812. weight: math.unit(14, "tons"),
  17813. name: "Side",
  17814. image: {
  17815. source: "./media/characters/athea/side.svg",
  17816. extra: 960 / 540,
  17817. bottom: 0.003
  17818. }
  17819. },
  17820. sitting: {
  17821. height: math.unit(6 * 2.85, "feet"),
  17822. weight: math.unit(14, "tons"),
  17823. name: "Sitting",
  17824. image: {
  17825. source: "./media/characters/athea/sitting.svg",
  17826. extra: 621 / 581,
  17827. bottom: 0.075
  17828. }
  17829. },
  17830. maw: {
  17831. height: math.unit(7.59498031496063, "feet"),
  17832. name: "Maw",
  17833. image: {
  17834. source: "./media/characters/athea/maw.svg"
  17835. }
  17836. },
  17837. },
  17838. [
  17839. {
  17840. name: "Lap Cat",
  17841. height: math.unit(2.5, "feet")
  17842. },
  17843. {
  17844. name: "Minimacro",
  17845. height: math.unit(15, "feet"),
  17846. default: true
  17847. },
  17848. {
  17849. name: "Macro",
  17850. height: math.unit(120, "feet")
  17851. },
  17852. {
  17853. name: "Macro+",
  17854. height: math.unit(640, "feet")
  17855. },
  17856. {
  17857. name: "Colossus",
  17858. height: math.unit(2.2, "miles")
  17859. },
  17860. ]
  17861. ))
  17862. characterMakers.push(() => makeCharacter(
  17863. { name: "Seroko" },
  17864. {
  17865. front: {
  17866. height: math.unit(8 + 8 / 12, "feet"),
  17867. weight: math.unit(130, "kg"),
  17868. name: "Front",
  17869. image: {
  17870. source: "./media/characters/seroko/front.svg",
  17871. extra: 1385 / 1280,
  17872. bottom: 0.025
  17873. }
  17874. },
  17875. back: {
  17876. height: math.unit(8 + 8 / 12, "feet"),
  17877. weight: math.unit(130, "kg"),
  17878. name: "Back",
  17879. image: {
  17880. source: "./media/characters/seroko/back.svg",
  17881. extra: 1369 / 1238,
  17882. bottom: 0.018
  17883. }
  17884. },
  17885. frontDressed: {
  17886. height: math.unit(8 + 8 / 12, "feet"),
  17887. weight: math.unit(130, "kg"),
  17888. name: "Front (Dressed)",
  17889. image: {
  17890. source: "./media/characters/seroko/front-dressed.svg",
  17891. extra: 1366 / 1275,
  17892. bottom: 0.03
  17893. }
  17894. },
  17895. },
  17896. [
  17897. {
  17898. name: "Normal",
  17899. height: math.unit(8 + 8 / 12, "feet"),
  17900. default: true
  17901. },
  17902. ]
  17903. ))
  17904. characterMakers.push(() => makeCharacter(
  17905. { name: "Quatzi" },
  17906. {
  17907. front: {
  17908. height: math.unit(5.5, "feet"),
  17909. weight: math.unit(160, "lb"),
  17910. name: "Front",
  17911. image: {
  17912. source: "./media/characters/quatzi/front.svg",
  17913. extra: 2346 / 2242,
  17914. bottom: 0.015
  17915. }
  17916. },
  17917. },
  17918. [
  17919. {
  17920. name: "Normal",
  17921. height: math.unit(5.5, "feet"),
  17922. default: true
  17923. },
  17924. {
  17925. name: "Big",
  17926. height: math.unit(7.7, "feet")
  17927. },
  17928. ]
  17929. ))
  17930. characterMakers.push(() => makeCharacter(
  17931. { name: "Sen" },
  17932. {
  17933. front: {
  17934. height: math.unit(5 + 11 / 12, "feet"),
  17935. weight: math.unit(180, "lb"),
  17936. name: "Front",
  17937. image: {
  17938. source: "./media/characters/sen/front.svg",
  17939. extra: 1321 / 1254,
  17940. bottom: 0.015
  17941. }
  17942. },
  17943. side: {
  17944. height: math.unit(5 + 11 / 12, "feet"),
  17945. weight: math.unit(180, "lb"),
  17946. name: "Side",
  17947. image: {
  17948. source: "./media/characters/sen/side.svg",
  17949. extra: 1321 / 1254,
  17950. bottom: 0.007
  17951. }
  17952. },
  17953. back: {
  17954. height: math.unit(5 + 11 / 12, "feet"),
  17955. weight: math.unit(180, "lb"),
  17956. name: "Back",
  17957. image: {
  17958. source: "./media/characters/sen/back.svg",
  17959. extra: 1321 / 1254
  17960. }
  17961. },
  17962. },
  17963. [
  17964. {
  17965. name: "Normal",
  17966. height: math.unit(5 + 11 / 12, "feet"),
  17967. default: true
  17968. },
  17969. ]
  17970. ))
  17971. characterMakers.push(() => makeCharacter(
  17972. { name: "Fruity" },
  17973. {
  17974. front: {
  17975. height: math.unit(166.6, "cm"),
  17976. weight: math.unit(66.6, "kg"),
  17977. name: "Front",
  17978. image: {
  17979. source: "./media/characters/fruity/front.svg",
  17980. extra: 1510 / 1386,
  17981. bottom: 0.04
  17982. }
  17983. },
  17984. back: {
  17985. height: math.unit(166.6, "cm"),
  17986. weight: math.unit(66.6, "lb"),
  17987. name: "Back",
  17988. image: {
  17989. source: "./media/characters/fruity/back.svg",
  17990. extra: 1563 / 1435,
  17991. bottom: 0.005
  17992. }
  17993. },
  17994. },
  17995. [
  17996. {
  17997. name: "Normal",
  17998. height: math.unit(166.6, "cm"),
  17999. default: true
  18000. },
  18001. {
  18002. name: "Demonic",
  18003. height: math.unit(166.6, "feet")
  18004. },
  18005. ]
  18006. ))
  18007. characterMakers.push(() => makeCharacter(
  18008. { name: "Zost" },
  18009. {
  18010. side: {
  18011. height: math.unit(10, "feet"),
  18012. weight: math.unit(500, "lb"),
  18013. name: "Side",
  18014. image: {
  18015. source: "./media/characters/zost/side.svg",
  18016. extra: 966 / 880,
  18017. bottom: 0.075
  18018. }
  18019. },
  18020. mawFront: {
  18021. height: math.unit(1.08, "meters"),
  18022. name: "Maw (Front)",
  18023. image: {
  18024. source: "./media/characters/zost/maw-front.svg"
  18025. }
  18026. },
  18027. mawSide: {
  18028. height: math.unit(2.66, "feet"),
  18029. name: "Maw (Side)",
  18030. image: {
  18031. source: "./media/characters/zost/maw-side.svg"
  18032. }
  18033. },
  18034. },
  18035. [
  18036. {
  18037. name: "Normal",
  18038. height: math.unit(10, "feet"),
  18039. default: true
  18040. },
  18041. ]
  18042. ))
  18043. characterMakers.push(() => makeCharacter(
  18044. { name: "Luci" },
  18045. {
  18046. front: {
  18047. height: math.unit(5 + 4 / 12, "feet"),
  18048. weight: math.unit(120, "lb"),
  18049. name: "Front",
  18050. image: {
  18051. source: "./media/characters/luci/front.svg",
  18052. extra: 1985 / 1884,
  18053. bottom: 0.04
  18054. }
  18055. },
  18056. back: {
  18057. height: math.unit(5 + 4 / 12, "feet"),
  18058. weight: math.unit(120, "lb"),
  18059. name: "Back",
  18060. image: {
  18061. source: "./media/characters/luci/back.svg",
  18062. extra: 1892 / 1791,
  18063. bottom: 0.002
  18064. }
  18065. },
  18066. },
  18067. [
  18068. {
  18069. name: "Normal",
  18070. height: math.unit(5 + 4 / 12, "feet"),
  18071. default: true
  18072. },
  18073. ]
  18074. ))
  18075. characterMakers.push(() => makeCharacter(
  18076. { name: "2th" },
  18077. {
  18078. front: {
  18079. height: math.unit(1500, "feet"),
  18080. weight: math.unit(3.8e6, "tons"),
  18081. name: "Front",
  18082. image: {
  18083. source: "./media/characters/2th/front.svg",
  18084. extra: 3489 / 3350,
  18085. bottom: 0.1
  18086. }
  18087. },
  18088. foot: {
  18089. height: math.unit(461, "feet"),
  18090. name: "Foot",
  18091. image: {
  18092. source: "./media/characters/2th/foot.svg"
  18093. }
  18094. },
  18095. },
  18096. [
  18097. {
  18098. name: "\"Micro\"",
  18099. height: math.unit(15 + 7 / 12, "feet")
  18100. },
  18101. {
  18102. name: "Normal",
  18103. height: math.unit(1500, "feet"),
  18104. default: true
  18105. },
  18106. {
  18107. name: "Macro",
  18108. height: math.unit(5000, "feet")
  18109. },
  18110. {
  18111. name: "Megamacro",
  18112. height: math.unit(15, "miles")
  18113. },
  18114. {
  18115. name: "Gigamacro",
  18116. height: math.unit(4000, "miles")
  18117. },
  18118. {
  18119. name: "Galactic",
  18120. height: math.unit(50, "AU")
  18121. },
  18122. ]
  18123. ))
  18124. characterMakers.push(() => makeCharacter(
  18125. { name: "Amethyst" },
  18126. {
  18127. front: {
  18128. height: math.unit(5 + 6 / 12, "feet"),
  18129. weight: math.unit(220, "lb"),
  18130. name: "Front",
  18131. image: {
  18132. source: "./media/characters/amethyst/front.svg",
  18133. extra: 2078 / 2040,
  18134. bottom: 0.045
  18135. }
  18136. },
  18137. back: {
  18138. height: math.unit(5 + 6 / 12, "feet"),
  18139. weight: math.unit(220, "lb"),
  18140. name: "Back",
  18141. image: {
  18142. source: "./media/characters/amethyst/back.svg",
  18143. extra: 2021 / 1989,
  18144. bottom: 0.02
  18145. }
  18146. },
  18147. },
  18148. [
  18149. {
  18150. name: "Normal",
  18151. height: math.unit(5 + 6 / 12, "feet"),
  18152. default: true
  18153. },
  18154. ]
  18155. ))
  18156. characterMakers.push(() => makeCharacter(
  18157. { name: "Yumi Akiyama" },
  18158. {
  18159. front: {
  18160. height: math.unit(4 + 11 / 12, "feet"),
  18161. weight: math.unit(120, "lb"),
  18162. name: "Front",
  18163. image: {
  18164. source: "./media/characters/yumi-akiyama/front.svg",
  18165. extra: 1327 / 1235,
  18166. bottom: 0.02
  18167. }
  18168. },
  18169. back: {
  18170. height: math.unit(4 + 11 / 12, "feet"),
  18171. weight: math.unit(120, "lb"),
  18172. name: "Back",
  18173. image: {
  18174. source: "./media/characters/yumi-akiyama/back.svg",
  18175. extra: 1287 / 1245,
  18176. bottom: 0.002
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Galactic",
  18183. height: math.unit(50, "galaxies"),
  18184. default: true
  18185. },
  18186. {
  18187. name: "Universal",
  18188. height: math.unit(100, "universes")
  18189. },
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Rifter Yrmori" },
  18194. {
  18195. front: {
  18196. height: math.unit(8, "feet"),
  18197. weight: math.unit(500, "lb"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/rifter-yrmori/front.svg",
  18201. extra: 1180 / 1125,
  18202. bottom: 0.02
  18203. }
  18204. },
  18205. back: {
  18206. height: math.unit(8, "feet"),
  18207. weight: math.unit(500, "lb"),
  18208. name: "Back",
  18209. image: {
  18210. source: "./media/characters/rifter-yrmori/back.svg",
  18211. extra: 1190 / 1145,
  18212. bottom: 0.001
  18213. }
  18214. },
  18215. wings: {
  18216. height: math.unit(7.75, "feet"),
  18217. weight: math.unit(500, "lb"),
  18218. name: "Wings",
  18219. image: {
  18220. source: "./media/characters/rifter-yrmori/wings.svg",
  18221. extra: 1357 / 1285
  18222. }
  18223. },
  18224. maw: {
  18225. height: math.unit(0.8, "feet"),
  18226. name: "Maw",
  18227. image: {
  18228. source: "./media/characters/rifter-yrmori/maw.svg"
  18229. }
  18230. },
  18231. },
  18232. [
  18233. {
  18234. name: "Normal",
  18235. height: math.unit(8, "feet"),
  18236. default: true
  18237. },
  18238. {
  18239. name: "Macro",
  18240. height: math.unit(42, "meters")
  18241. },
  18242. ]
  18243. ))
  18244. characterMakers.push(() => makeCharacter(
  18245. { name: "Tahajin" },
  18246. {
  18247. were: {
  18248. height: math.unit(25 + 6 / 12, "feet"),
  18249. weight: math.unit(10000, "lb"),
  18250. name: "Were",
  18251. image: {
  18252. source: "./media/characters/tahajin/were.svg",
  18253. extra: 801 / 770,
  18254. bottom: 0.042
  18255. }
  18256. },
  18257. aquatic: {
  18258. height: math.unit(6 + 4 / 12, "feet"),
  18259. weight: math.unit(160, "lb"),
  18260. name: "Aquatic",
  18261. image: {
  18262. source: "./media/characters/tahajin/aquatic.svg",
  18263. extra: 572 / 542,
  18264. bottom: 0.04
  18265. }
  18266. },
  18267. chow: {
  18268. height: math.unit(8 + 11 / 12, "feet"),
  18269. weight: math.unit(450, "lb"),
  18270. name: "Chow",
  18271. image: {
  18272. source: "./media/characters/tahajin/chow.svg",
  18273. extra: 660 / 640,
  18274. bottom: 0.015
  18275. }
  18276. },
  18277. demiNaga: {
  18278. height: math.unit(6 + 8 / 12, "feet"),
  18279. weight: math.unit(300, "lb"),
  18280. name: "Demi Naga",
  18281. image: {
  18282. source: "./media/characters/tahajin/demi-naga.svg",
  18283. extra: 643 / 615,
  18284. bottom: 0.1
  18285. }
  18286. },
  18287. data: {
  18288. height: math.unit(5, "inches"),
  18289. weight: math.unit(0.1, "lb"),
  18290. name: "Data",
  18291. image: {
  18292. source: "./media/characters/tahajin/data.svg"
  18293. }
  18294. },
  18295. fluu: {
  18296. height: math.unit(5 + 7 / 12, "feet"),
  18297. weight: math.unit(140, "lb"),
  18298. name: "Fluu",
  18299. image: {
  18300. source: "./media/characters/tahajin/fluu.svg",
  18301. extra: 628 / 592,
  18302. bottom: 0.02
  18303. }
  18304. },
  18305. starWarrior: {
  18306. height: math.unit(4 + 5 / 12, "feet"),
  18307. weight: math.unit(50, "lb"),
  18308. name: "Star Warrior",
  18309. image: {
  18310. source: "./media/characters/tahajin/star-warrior.svg"
  18311. }
  18312. },
  18313. },
  18314. [
  18315. {
  18316. name: "Normal",
  18317. height: math.unit(25 + 6 / 12, "feet"),
  18318. default: true
  18319. },
  18320. ]
  18321. ))
  18322. characterMakers.push(() => makeCharacter(
  18323. { name: "Gabira" },
  18324. {
  18325. front: {
  18326. height: math.unit(8, "feet"),
  18327. weight: math.unit(350, "lb"),
  18328. name: "Front",
  18329. image: {
  18330. source: "./media/characters/gabira/front.svg",
  18331. extra: 608 / 580,
  18332. bottom: 0.03
  18333. }
  18334. },
  18335. back: {
  18336. height: math.unit(8, "feet"),
  18337. weight: math.unit(350, "lb"),
  18338. name: "Back",
  18339. image: {
  18340. source: "./media/characters/gabira/back.svg",
  18341. extra: 608 / 580,
  18342. bottom: 0.03
  18343. }
  18344. },
  18345. },
  18346. [
  18347. {
  18348. name: "Normal",
  18349. height: math.unit(8, "feet"),
  18350. default: true
  18351. },
  18352. ]
  18353. ))
  18354. characterMakers.push(() => makeCharacter(
  18355. { name: "Sasha Katraine" },
  18356. {
  18357. front: {
  18358. height: math.unit(5 + 3 / 12, "feet"),
  18359. weight: math.unit(137, "lb"),
  18360. name: "Front",
  18361. image: {
  18362. source: "./media/characters/sasha-katraine/front.svg",
  18363. bottom: 0.045
  18364. }
  18365. },
  18366. },
  18367. [
  18368. {
  18369. name: "Micro",
  18370. height: math.unit(5, "inches")
  18371. },
  18372. {
  18373. name: "Normal",
  18374. height: math.unit(5 + 3 / 12, "feet"),
  18375. default: true
  18376. },
  18377. ]
  18378. ))
  18379. characterMakers.push(() => makeCharacter(
  18380. { name: "Der" },
  18381. {
  18382. side: {
  18383. height: math.unit(4, "inches"),
  18384. weight: math.unit(200, "grams"),
  18385. name: "Side",
  18386. image: {
  18387. source: "./media/characters/der/side.svg",
  18388. extra: 719 / 400,
  18389. bottom: 30.6 / 749.9187
  18390. }
  18391. },
  18392. },
  18393. [
  18394. {
  18395. name: "Micro",
  18396. height: math.unit(4, "inches"),
  18397. default: true
  18398. },
  18399. ]
  18400. ))
  18401. characterMakers.push(() => makeCharacter(
  18402. { name: "Fixerdragon" },
  18403. {
  18404. side: {
  18405. height: math.unit(30, "meters"),
  18406. weight: math.unit(700, "tonnes"),
  18407. name: "Side",
  18408. image: {
  18409. source: "./media/characters/fixerdragon/side.svg",
  18410. extra: (1293.0514-116.03)/1106.86,
  18411. bottom: 116.03/1293.0514
  18412. }
  18413. },
  18414. },
  18415. [
  18416. {
  18417. name: "Planck",
  18418. height: math.unit(1.6e-35, "meters")
  18419. },
  18420. {
  18421. name: "Micro",
  18422. height: math.unit(0.4, "meters")
  18423. },
  18424. {
  18425. name: "Normal",
  18426. height: math.unit(30, "meters"),
  18427. default: true
  18428. },
  18429. {
  18430. name: "Megamacro",
  18431. height: math.unit(1.2, "megameters")
  18432. },
  18433. {
  18434. name: "Teramacro",
  18435. height: math.unit(130, "terameters")
  18436. },
  18437. {
  18438. name: "Yottamacro",
  18439. height: math.unit(6200, "yottameters")
  18440. },
  18441. ]
  18442. ));
  18443. characterMakers.push(() => makeCharacter(
  18444. { name: "Kite" },
  18445. {
  18446. front: {
  18447. height: math.unit(8, "feet"),
  18448. weight: math.unit(250, "lb"),
  18449. name: "Front",
  18450. image: {
  18451. source: "./media/characters/kite/front.svg",
  18452. extra: 2796/2659,
  18453. bottom: 0.002
  18454. }
  18455. },
  18456. },
  18457. [
  18458. {
  18459. name: "Normal",
  18460. height: math.unit(8, "feet"),
  18461. default: true
  18462. },
  18463. {
  18464. name: "Macro",
  18465. height: math.unit(360, "feet")
  18466. },
  18467. {
  18468. name: "Megamacro",
  18469. height: math.unit(1500, "feet")
  18470. },
  18471. ]
  18472. ))
  18473. characterMakers.push(() => makeCharacter(
  18474. { name: "Poojawa Vynar" },
  18475. {
  18476. front: {
  18477. height: math.unit(5 + 10/12, "feet"),
  18478. weight: math.unit(150, "lb"),
  18479. name: "Front",
  18480. image: {
  18481. source: "./media/characters/poojawa-vynar/front.svg",
  18482. extra: (1506.1547-55) / 1356.6,
  18483. bottom: 55/1506.1547
  18484. }
  18485. },
  18486. frontTailless: {
  18487. height: math.unit(5 + 10/12, "feet"),
  18488. weight: math.unit(150, "lb"),
  18489. name: "Front (Tailless)",
  18490. image: {
  18491. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18492. extra: (1506.1547-55) / 1356.6,
  18493. bottom: 55/1506.1547
  18494. }
  18495. },
  18496. },
  18497. [
  18498. {
  18499. name: "Normal",
  18500. height: math.unit(5 + 10/12, "feet"),
  18501. default: true
  18502. },
  18503. ]
  18504. ))
  18505. characterMakers.push(() => makeCharacter(
  18506. { name: "Violette" },
  18507. {
  18508. front: {
  18509. height: math.unit(293, "meters"),
  18510. weight: math.unit(70400, "tons"),
  18511. name: "Front",
  18512. image: {
  18513. source: "./media/characters/violette/front.svg",
  18514. extra: 1227/1180,
  18515. bottom: 0.005
  18516. }
  18517. },
  18518. back: {
  18519. height: math.unit(293, "meters"),
  18520. weight: math.unit(70400, "tons"),
  18521. name: "Back",
  18522. image: {
  18523. source: "./media/characters/violette/back.svg",
  18524. extra: 1227/1180,
  18525. bottom: 0.005
  18526. }
  18527. },
  18528. },
  18529. [
  18530. {
  18531. name: "Macro",
  18532. height: math.unit(293, "meters"),
  18533. default: true
  18534. },
  18535. ]
  18536. ))
  18537. characterMakers.push(() => makeCharacter(
  18538. { name: "Alessandra" },
  18539. {
  18540. front: {
  18541. height: math.unit(1050, "feet"),
  18542. weight: math.unit(200000, "tons"),
  18543. name: "Front",
  18544. image: {
  18545. source: "./media/characters/alessandra/front.svg",
  18546. extra: 960/912,
  18547. bottom: 0.06
  18548. }
  18549. },
  18550. },
  18551. [
  18552. {
  18553. name: "Macro",
  18554. height: math.unit(1050, "feet")
  18555. },
  18556. {
  18557. name: "Macro+",
  18558. height: math.unit(900, "meters"),
  18559. default: true
  18560. },
  18561. ]
  18562. ))
  18563. characterMakers.push(() => makeCharacter(
  18564. { name: "Person", species: "Catdragon" },
  18565. {
  18566. front: {
  18567. height: math.unit(5, "feet"),
  18568. weight: math.unit(187, "lb"),
  18569. name: "Front",
  18570. image: {
  18571. source: "./media/characters/person/front.svg",
  18572. extra: 3087/2945,
  18573. bottom: 91/3181
  18574. }
  18575. },
  18576. },
  18577. [
  18578. {
  18579. name: "Micro",
  18580. height: math.unit(3, "inches")
  18581. },
  18582. {
  18583. name: "Normal",
  18584. height: math.unit(5, "feet"),
  18585. default: true
  18586. },
  18587. {
  18588. name: "Macro",
  18589. height: math.unit(90, "feet")
  18590. },
  18591. {
  18592. name: "Max Size",
  18593. height: math.unit(280, "feet")
  18594. },
  18595. ]
  18596. ))
  18597. characterMakers.push(() => makeCharacter(
  18598. { name: "Ty" },
  18599. {
  18600. front: {
  18601. height: math.unit(4.5, "meters"),
  18602. weight: math.unit(3200, "lb"),
  18603. name: "Front",
  18604. image: {
  18605. source: "./media/characters/ty/front.svg",
  18606. extra: 1038/960,
  18607. bottom: 31.156/1068
  18608. }
  18609. },
  18610. back: {
  18611. height: math.unit(4.5, "meters"),
  18612. weight: math.unit(3200, "lb"),
  18613. name: "Back",
  18614. image: {
  18615. source: "./media/characters/ty/back.svg",
  18616. extra: 1044/966,
  18617. bottom: 7.48/1049
  18618. }
  18619. },
  18620. },
  18621. [
  18622. {
  18623. name: "Normal",
  18624. height: math.unit(4.5, "meters"),
  18625. default: true
  18626. },
  18627. ]
  18628. ))
  18629. characterMakers.push(() => makeCharacter(
  18630. { name: "Rocky" },
  18631. {
  18632. front: {
  18633. height: math.unit(5 + 4/12, "feet"),
  18634. weight: math.unit(115, "lb"),
  18635. name: "Front",
  18636. image: {
  18637. source: "./media/characters/rocky/front.svg",
  18638. extra: 1012/975,
  18639. bottom: 54/1066
  18640. }
  18641. },
  18642. },
  18643. [
  18644. {
  18645. name: "Normal",
  18646. height: math.unit(5 + 4/12, "feet"),
  18647. default: true
  18648. },
  18649. ]
  18650. ))
  18651. characterMakers.push(() => makeCharacter(
  18652. { name: "Ruin" },
  18653. {
  18654. upright: {
  18655. height: math.unit(6, "meters"),
  18656. weight: math.unit(4000, "kg"),
  18657. name: "Upright",
  18658. image: {
  18659. source: "./media/characters/ruin/upright.svg",
  18660. extra: 668/661,
  18661. bottom: 42/799.8396
  18662. }
  18663. },
  18664. },
  18665. [
  18666. {
  18667. name: "Normal",
  18668. height: math.unit(6, "meters")
  18669. },
  18670. ]
  18671. ))
  18672. characterMakers.push(() => makeCharacter(
  18673. { name: "Robin" },
  18674. {
  18675. front: {
  18676. height: math.unit(5, "feet"),
  18677. weight: math.unit(106, "lb"),
  18678. name: "Front",
  18679. image: {
  18680. source: "./media/characters/robin/front.svg",
  18681. extra: 862/799,
  18682. bottom: 42.4/914.8856
  18683. }
  18684. },
  18685. },
  18686. [
  18687. {
  18688. name: "Normal",
  18689. height: math.unit(5, "feet"),
  18690. default: true
  18691. },
  18692. ]
  18693. ))
  18694. characterMakers.push(() => makeCharacter(
  18695. { name: "Saian" },
  18696. {
  18697. side: {
  18698. height: math.unit(3, "feet"),
  18699. weight: math.unit(225, "lb"),
  18700. name: "Side",
  18701. image: {
  18702. source: "./media/characters/saian/side.svg",
  18703. extra: 566/356,
  18704. bottom: 79.7/643
  18705. }
  18706. },
  18707. maw: {
  18708. height: math.unit(2.85, "feet"),
  18709. name: "Maw",
  18710. image: {
  18711. source: "./media/characters/saian/maw.svg"
  18712. }
  18713. },
  18714. },
  18715. [
  18716. {
  18717. name: "Normal",
  18718. height: math.unit(3, "feet"),
  18719. default: true
  18720. },
  18721. ]
  18722. ))
  18723. characterMakers.push(() => makeCharacter(
  18724. { name: "Equus Silvermane" },
  18725. {
  18726. side: {
  18727. height: math.unit(8, "feet"),
  18728. weight: math.unit(300, "lb"),
  18729. name: "Side",
  18730. image: {
  18731. source: "./media/characters/equus-silvermane/side.svg",
  18732. extra: 2176/2050,
  18733. bottom: 65.7/2245
  18734. }
  18735. },
  18736. front: {
  18737. height: math.unit(8, "feet"),
  18738. weight: math.unit(300, "lb"),
  18739. name: "Front",
  18740. image: {
  18741. source: "./media/characters/equus-silvermane/front.svg",
  18742. extra: 4633/4400,
  18743. bottom: 71.3/4706.915
  18744. }
  18745. },
  18746. sideStepping: {
  18747. height: math.unit(8, "feet"),
  18748. weight: math.unit(300, "lb"),
  18749. name: "Side (Stepping)",
  18750. image: {
  18751. source: "./media/characters/equus-silvermane/side-stepping.svg",
  18752. extra: 1968/1860,
  18753. bottom: 16.4/1989
  18754. }
  18755. },
  18756. },
  18757. [
  18758. {
  18759. name: "Normal",
  18760. height: math.unit(8, "feet")
  18761. },
  18762. {
  18763. name: "Minimacro",
  18764. height: math.unit(75, "feet"),
  18765. default: true
  18766. },
  18767. {
  18768. name: "Macro",
  18769. height: math.unit(150, "feet")
  18770. },
  18771. {
  18772. name: "Macro+",
  18773. height: math.unit(1000, "feet")
  18774. },
  18775. {
  18776. name: "Megamacro",
  18777. height: math.unit(1, "mile")
  18778. },
  18779. ]
  18780. ))
  18781. characterMakers.push(() => makeCharacter(
  18782. { name: "Windar" },
  18783. {
  18784. side: {
  18785. height: math.unit(20, "feet"),
  18786. weight: math.unit(30000, "kg"),
  18787. name: "Side",
  18788. image: {
  18789. source: "./media/characters/windar/side.svg",
  18790. extra: 1491/1248,
  18791. bottom: 82.56/1568
  18792. }
  18793. },
  18794. },
  18795. [
  18796. {
  18797. name: "Normal",
  18798. height: math.unit(20, "feet"),
  18799. default: true
  18800. },
  18801. ]
  18802. ))
  18803. characterMakers.push(() => makeCharacter(
  18804. { name: "Melody" },
  18805. {
  18806. side: {
  18807. height: math.unit(15.66, "feet"),
  18808. weight: math.unit(150, "lb"),
  18809. name: "Side",
  18810. image: {
  18811. source: "./media/characters/melody/side.svg",
  18812. extra: 1097/944,
  18813. bottom: 11.8/1109
  18814. }
  18815. },
  18816. sideOutfit: {
  18817. height: math.unit(15.66, "feet"),
  18818. weight: math.unit(150, "lb"),
  18819. name: "Side (Outfit)",
  18820. image: {
  18821. source: "./media/characters/melody/side-outfit.svg",
  18822. extra: 1097/944,
  18823. bottom: 11.8/1109
  18824. }
  18825. },
  18826. },
  18827. [
  18828. {
  18829. name: "Normal",
  18830. height: math.unit(15.66, "feet"),
  18831. default: true
  18832. },
  18833. ]
  18834. ))
  18835. characterMakers.push(() => makeCharacter(
  18836. { name: "Windera" },
  18837. {
  18838. front: {
  18839. height: math.unit(8, "feet"),
  18840. weight: math.unit(325, "lb"),
  18841. name: "Front",
  18842. image: {
  18843. source: "./media/characters/windera/front.svg",
  18844. extra: 3180/2845,
  18845. bottom: 178/3365
  18846. }
  18847. },
  18848. },
  18849. [
  18850. {
  18851. name: "Normal",
  18852. height: math.unit(8, "feet"),
  18853. default: true
  18854. },
  18855. ]
  18856. ))
  18857. characterMakers.push(() => makeCharacter(
  18858. { name: "Sonear" },
  18859. {
  18860. front: {
  18861. height: math.unit(28.75, "feet"),
  18862. weight: math.unit(2000, "kg"),
  18863. name: "Front",
  18864. image: {
  18865. source: "./media/characters/sonear/front.svg",
  18866. extra: 1041.1/964.9,
  18867. bottom: 53.7/1096.6
  18868. }
  18869. },
  18870. },
  18871. [
  18872. {
  18873. name: "Normal",
  18874. height: math.unit(28.75, "feet"),
  18875. default: true
  18876. },
  18877. ]
  18878. ))
  18879. characterMakers.push(() => makeCharacter(
  18880. { name: "Kanara" },
  18881. {
  18882. side: {
  18883. height: math.unit(25.5, "feet"),
  18884. weight: math.unit(23000, "kg"),
  18885. name: "Side",
  18886. image: {
  18887. source: "./media/characters/kanara/side.svg"
  18888. }
  18889. },
  18890. },
  18891. [
  18892. {
  18893. name: "Normal",
  18894. height: math.unit(25.5, "feet"),
  18895. default: true
  18896. },
  18897. ]
  18898. ))
  18899. characterMakers.push(() => makeCharacter(
  18900. { name: "Ereus" },
  18901. {
  18902. side: {
  18903. height: math.unit(10, "feet"),
  18904. weight: math.unit(1000, "kg"),
  18905. name: "Side",
  18906. image: {
  18907. source: "./media/characters/ereus/side.svg",
  18908. extra: 1157/959,
  18909. bottom: 153/1312.5
  18910. }
  18911. },
  18912. },
  18913. [
  18914. {
  18915. name: "Normal",
  18916. height: math.unit(10, "feet"),
  18917. default: true
  18918. },
  18919. ]
  18920. ))
  18921. characterMakers.push(() => makeCharacter(
  18922. { name: "E-ter" },
  18923. {
  18924. side: {
  18925. height: math.unit(4.5, "feet"),
  18926. weight: math.unit(500, "lb"),
  18927. name: "Side",
  18928. image: {
  18929. source: "./media/characters/e-ter/side.svg",
  18930. extra: 1550/1248,
  18931. bottom: 146/1694
  18932. }
  18933. },
  18934. },
  18935. [
  18936. {
  18937. name: "Normal",
  18938. height: math.unit(4.5, "feet"),
  18939. default: true
  18940. },
  18941. ]
  18942. ))
  18943. characterMakers.push(() => makeCharacter(
  18944. { name: "Yamie" },
  18945. {
  18946. side: {
  18947. height: math.unit(9.7, "feet"),
  18948. weight: math.unit(4000, "kg"),
  18949. name: "Side",
  18950. image: {
  18951. source: "./media/characters/yamie/side.svg"
  18952. }
  18953. },
  18954. },
  18955. [
  18956. {
  18957. name: "Normal",
  18958. height: math.unit(9.7, "feet"),
  18959. default: true
  18960. },
  18961. ]
  18962. ))
  18963. characterMakers.push(() => makeCharacter(
  18964. { name: "Anders" },
  18965. {
  18966. front: {
  18967. height: math.unit(50, "feet"),
  18968. weight: math.unit(50000, "kg"),
  18969. name: "Front",
  18970. image: {
  18971. source: "./media/characters/anders/front.svg",
  18972. extra: 570/539,
  18973. bottom: 14.7/586.7
  18974. }
  18975. },
  18976. },
  18977. [
  18978. {
  18979. name: "Large",
  18980. height: math.unit(50, "feet")
  18981. },
  18982. {
  18983. name: "Macro",
  18984. height: math.unit(2000, "feet"),
  18985. default: true
  18986. },
  18987. {
  18988. name: "Megamacro",
  18989. height: math.unit(12, "miles")
  18990. },
  18991. ]
  18992. ))
  18993. characterMakers.push(() => makeCharacter(
  18994. { name: "Reban" },
  18995. {
  18996. front: {
  18997. height: math.unit(7 + 2/12, "feet"),
  18998. weight: math.unit(300, "lb"),
  18999. name: "Front",
  19000. image: {
  19001. source: "./media/characters/reban/front.svg",
  19002. extra: 516/487,
  19003. bottom: 42.82/558.356
  19004. }
  19005. },
  19006. dick: {
  19007. height: math.unit(7/5, "feet"),
  19008. name: "Dick",
  19009. image: {
  19010. source: "./media/characters/reban/dick.svg"
  19011. }
  19012. },
  19013. },
  19014. [
  19015. {
  19016. name: "Natural Height",
  19017. height: math.unit(7 + 2/12, "feet")
  19018. },
  19019. {
  19020. name: "Macro",
  19021. height: math.unit(500, "feet"),
  19022. default: true
  19023. },
  19024. {
  19025. name: "Canon Height",
  19026. height: math.unit(50, "AU")
  19027. },
  19028. ]
  19029. ))
  19030. characterMakers.push(() => makeCharacter(
  19031. { name: "Terrance Keayes" },
  19032. {
  19033. front: {
  19034. height: math.unit(6, "feet"),
  19035. weight: math.unit(150, "lb"),
  19036. name: "Front",
  19037. image: {
  19038. source: "./media/characters/terrance-keayes/front.svg",
  19039. extra: 1.005,
  19040. bottom: 151/1615
  19041. }
  19042. },
  19043. side: {
  19044. height: math.unit(6, "feet"),
  19045. weight: math.unit(150, "lb"),
  19046. name: "Side",
  19047. image: {
  19048. source: "./media/characters/terrance-keayes/side.svg",
  19049. extra: 1.005,
  19050. bottom: 129.4/1544
  19051. }
  19052. },
  19053. back: {
  19054. height: math.unit(6, "feet"),
  19055. weight: math.unit(150, "lb"),
  19056. name: "Back",
  19057. image: {
  19058. source: "./media/characters/terrance-keayes/back.svg",
  19059. extra: 1.005,
  19060. bottom: 58.4/1557.3
  19061. }
  19062. },
  19063. dick: {
  19064. height: math.unit(6*0.208, "feet"),
  19065. name: "Dick",
  19066. image: {
  19067. source: "./media/characters/terrance-keayes/dick.svg"
  19068. }
  19069. },
  19070. },
  19071. [
  19072. {
  19073. name: "Canon Height",
  19074. height: math.unit(35, "miles"),
  19075. default: true
  19076. },
  19077. ]
  19078. ))
  19079. characterMakers.push(() => makeCharacter(
  19080. { name: "Ofelia" },
  19081. {
  19082. front: {
  19083. height: math.unit(6, "feet"),
  19084. weight: math.unit(150, "lb"),
  19085. name: "Front",
  19086. image: {
  19087. source: "./media/characters/ofelia/front.svg",
  19088. extra: 546/541,
  19089. bottom: 39/583
  19090. }
  19091. },
  19092. back: {
  19093. height: math.unit(6, "feet"),
  19094. weight: math.unit(150, "lb"),
  19095. name: "Back",
  19096. image: {
  19097. source: "./media/characters/ofelia/back.svg",
  19098. extra: 564/559.5,
  19099. bottom: 8.69/573.02
  19100. }
  19101. },
  19102. maw: {
  19103. height: math.unit(1, "feet"),
  19104. name: "Maw",
  19105. image: {
  19106. source: "./media/characters/ofelia/maw.svg"
  19107. }
  19108. },
  19109. foot: {
  19110. height: math.unit(1.949, "feet"),
  19111. name: "Foot",
  19112. image: {
  19113. source: "./media/characters/ofelia/foot.svg"
  19114. }
  19115. },
  19116. },
  19117. [
  19118. {
  19119. name: "Canon Height",
  19120. height: math.unit(2000, "miles"),
  19121. default: true
  19122. },
  19123. ]
  19124. ))
  19125. characterMakers.push(() => makeCharacter(
  19126. { name: "Samuel" },
  19127. {
  19128. front: {
  19129. height: math.unit(6, "feet"),
  19130. weight: math.unit(150, "lb"),
  19131. name: "Front",
  19132. image: {
  19133. source: "./media/characters/samuel/front.svg",
  19134. extra: 265/258,
  19135. bottom: 2/266.1566
  19136. }
  19137. },
  19138. },
  19139. [
  19140. {
  19141. name: "Macro",
  19142. height: math.unit(100, "feet"),
  19143. default: true
  19144. },
  19145. {
  19146. name: "Full Size",
  19147. height: math.unit(1000, "miles")
  19148. },
  19149. ]
  19150. ))
  19151. characterMakers.push(() => makeCharacter(
  19152. { name: "Beishir Kiel" },
  19153. {
  19154. front: {
  19155. height: math.unit(6, "feet"),
  19156. weight: math.unit(300, "lb"),
  19157. name: "Front",
  19158. image: {
  19159. source: "./media/characters/beishir-kiel/front.svg",
  19160. extra: 569/547,
  19161. bottom: 41.9/609
  19162. }
  19163. },
  19164. maw: {
  19165. height: math.unit(6*0.202, "feet"),
  19166. name: "Maw",
  19167. image: {
  19168. source: "./media/characters/beishir-kiel/maw.svg"
  19169. }
  19170. },
  19171. },
  19172. [
  19173. {
  19174. name: "Macro",
  19175. height: math.unit(300, "feet"),
  19176. default: true
  19177. },
  19178. ]
  19179. ))
  19180. characterMakers.push(() => makeCharacter(
  19181. { name: "Logan Grey" },
  19182. {
  19183. front: {
  19184. height: math.unit(5 + 8/12, "feet"),
  19185. weight: math.unit(120, "lb"),
  19186. name: "Front",
  19187. image: {
  19188. source: "./media/characters/logan-grey/front.svg",
  19189. extra: 2539/2393,
  19190. bottom: 97.6/2636.37
  19191. }
  19192. },
  19193. frontAlt: {
  19194. height: math.unit(5 + 8/12, "feet"),
  19195. weight: math.unit(120, "lb"),
  19196. name: "Front (Alt)",
  19197. image: {
  19198. source: "./media/characters/logan-grey/front-alt.svg",
  19199. extra: 958/893,
  19200. bottom: 15/970.768
  19201. }
  19202. },
  19203. back: {
  19204. height: math.unit(5 + 8/12, "feet"),
  19205. weight: math.unit(120, "lb"),
  19206. name: "Back",
  19207. image: {
  19208. source: "./media/characters/logan-grey/back.svg",
  19209. extra: 958/893,
  19210. bottom: 2.1881/970.9788
  19211. }
  19212. },
  19213. dick: {
  19214. height: math.unit(1.437, "feet"),
  19215. name: "Dick",
  19216. image: {
  19217. source: "./media/characters/logan-grey/dick.svg"
  19218. }
  19219. },
  19220. },
  19221. [
  19222. {
  19223. name: "Normal",
  19224. height: math.unit(5 + 8/12, "feet")
  19225. },
  19226. {
  19227. name: "The 500 Foot Femboy",
  19228. height: math.unit(500, "feet"),
  19229. default: true
  19230. },
  19231. {
  19232. name: "Megmacro",
  19233. height: math.unit(20, "miles")
  19234. },
  19235. ]
  19236. ))
  19237. //characters
  19238. function makeCharacters() {
  19239. const results = [];
  19240. characterMakers.forEach(character => {
  19241. results.push(character());
  19242. });
  19243. return results;
  19244. }