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

20561 satır
490 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename
  18. }
  19. if (value.weight) {
  20. views[key].attributes.weight = {
  21. name: "Mass",
  22. power: 3,
  23. type: "mass",
  24. base: value.weight
  25. };
  26. }
  27. });
  28. return createEntityMaker(info, views, defaultSizes);
  29. }
  30. characterMakers.push(() => makeCharacter(
  31. {
  32. name: "Fen",
  33. species: "Crux",
  34. description: {
  35. title: "Bio",
  36. text: "Very furry. Sheds on everything."
  37. }
  38. },
  39. {
  40. back: {
  41. height: math.unit(2.2428, "meter"),
  42. weight: math.unit(124.738, "kg"),
  43. name: "Back",
  44. image: {
  45. source: "./media/characters/fen/back.svg",
  46. extra: 1025 / 935,
  47. bottom: 0.01
  48. },
  49. info: {
  50. description: {
  51. mode: "append",
  52. text: "\n\nHe is not currently looking at you."
  53. }
  54. }
  55. },
  56. full: {
  57. height: math.unit(1.34, "meter"),
  58. weight: math.unit(225, "kg"),
  59. name: "Full",
  60. image: {
  61. source: "./media/characters/fen/full.svg"
  62. },
  63. info: {
  64. description: {
  65. mode: "append",
  66. text: "\n\nMunch."
  67. }
  68. }
  69. },
  70. kneeling: {
  71. height: math.unit(5.4, "feet"),
  72. weight: math.unit(124.738, "kg"),
  73. name: "Kneeling",
  74. image: {
  75. source: "./media/characters/fen/kneeling.svg",
  76. extra: 563 / 507
  77. }
  78. },
  79. },
  80. [
  81. {
  82. name: "Normal",
  83. height: math.unit(2.2428, "meter")
  84. },
  85. {
  86. name: "Big",
  87. height: math.unit(12, "feet")
  88. },
  89. {
  90. name: "Minimacro",
  91. height: math.unit(30, "meter"),
  92. default: true,
  93. info: {
  94. description: {
  95. mode: "append",
  96. text: "\n\nTOO DAMN BIG"
  97. }
  98. }
  99. },
  100. {
  101. name: "Macro",
  102. height: math.unit(100, "meter"),
  103. info: {
  104. description: {
  105. mode: "append",
  106. text: "\n\nTOO DAMN BIG"
  107. }
  108. }
  109. },
  110. {
  111. name: "Macro+",
  112. height: math.unit(1000, "meter")
  113. },
  114. {
  115. name: "Megamacro",
  116. height: math.unit(10, "miles")
  117. }
  118. ]
  119. ))
  120. characterMakers.push(() => makeCharacter(
  121. { name: "Sofia Fluttertail" },
  122. {
  123. front: {
  124. height: math.unit(183, "cm"),
  125. weight: math.unit(80, "kg"),
  126. name: "Front",
  127. image: {
  128. source: "./media/characters/sofia-fluttertail/front.svg",
  129. bottom: 0.01,
  130. extra: 2154 / 2081
  131. }
  132. },
  133. frontAlt: {
  134. height: math.unit(183, "cm"),
  135. weight: math.unit(80, "kg"),
  136. name: "Front (alt)",
  137. image: {
  138. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  139. }
  140. },
  141. back: {
  142. height: math.unit(183, "cm"),
  143. weight: math.unit(80, "kg"),
  144. name: "Back",
  145. image: {
  146. source: "./media/characters/sofia-fluttertail/back.svg"
  147. }
  148. },
  149. maw: {
  150. height: math.unit(183 / 5, "cm"),
  151. name: "Maw",
  152. image: {
  153. source: "./media/characters/sofia-fluttertail/maw.svg"
  154. }
  155. },
  156. },
  157. [
  158. {
  159. name: "Normal",
  160. height: math.unit(1.83, "meter")
  161. },
  162. {
  163. name: "Macro",
  164. height: math.unit(96, "feet"),
  165. default: true
  166. },
  167. {
  168. name: "Megamerger",
  169. height: math.unit(650, "feet")
  170. },
  171. ]
  172. ))
  173. characterMakers.push(() => makeCharacter(
  174. { name: "March" },
  175. {
  176. front: {
  177. height: math.unit(7, "feet"),
  178. weight: math.unit(100, "kg"),
  179. name: "Front",
  180. image: {
  181. source: "./media/characters/march/front.svg",
  182. extra: 1,
  183. bottom: 0.015
  184. }
  185. },
  186. foot: {
  187. height: math.unit(0.9, "feet"),
  188. name: "Foot",
  189. image: {
  190. source: "./media/characters/march/foot.svg"
  191. }
  192. },
  193. },
  194. [
  195. {
  196. name: "Normal",
  197. height: math.unit(7.9, "feet")
  198. },
  199. {
  200. name: "Macro",
  201. height: math.unit(220, "meters")
  202. },
  203. {
  204. name: "Megamacro",
  205. height: math.unit(2.98, "km"),
  206. default: true
  207. },
  208. {
  209. name: "Gigamacro",
  210. height: math.unit(15963, "km")
  211. },
  212. {
  213. name: "Teramacro",
  214. height: math.unit(2980000000, "km")
  215. },
  216. {
  217. name: "Examacro",
  218. height: math.unit(250, "parsecs")
  219. },
  220. ]
  221. ))
  222. characterMakers.push(() => makeCharacter(
  223. { name: "Noir" },
  224. {
  225. front: {
  226. height: math.unit(6, "feet"),
  227. weight: math.unit(60, "kg"),
  228. name: "Front",
  229. image: {
  230. source: "./media/characters/noir/front.svg",
  231. extra: 1,
  232. bottom: 0.032
  233. }
  234. },
  235. },
  236. [
  237. {
  238. name: "Normal",
  239. height: math.unit(6.6, "feet")
  240. },
  241. {
  242. name: "Macro",
  243. height: math.unit(500, "feet")
  244. },
  245. {
  246. name: "Megamacro",
  247. height: math.unit(2.5, "km"),
  248. default: true
  249. },
  250. {
  251. name: "Gigamacro",
  252. height: math.unit(22500, "km")
  253. },
  254. {
  255. name: "Teramacro",
  256. height: math.unit(2500000000, "km")
  257. },
  258. {
  259. name: "Examacro",
  260. height: math.unit(200, "parsecs")
  261. },
  262. ]
  263. ))
  264. characterMakers.push(() => makeCharacter(
  265. { name: "Okuri" },
  266. {
  267. front: {
  268. height: math.unit(7, "feet"),
  269. weight: math.unit(100, "kg"),
  270. name: "Front",
  271. image: {
  272. source: "./media/characters/okuri/front.svg",
  273. extra: 1,
  274. bottom: 0.037
  275. }
  276. },
  277. back: {
  278. height: math.unit(7, "feet"),
  279. weight: math.unit(100, "kg"),
  280. name: "Back",
  281. image: {
  282. source: "./media/characters/okuri/back.svg",
  283. extra: 1,
  284. bottom: 0.007
  285. }
  286. },
  287. },
  288. [
  289. {
  290. name: "Megamacro",
  291. height: math.unit(100, "miles"),
  292. default: true
  293. },
  294. ]
  295. ))
  296. characterMakers.push(() => makeCharacter(
  297. { name: "Manny" },
  298. {
  299. front: {
  300. height: math.unit(7, "feet"),
  301. weight: math.unit(100, "kg"),
  302. name: "Front",
  303. image: {
  304. source: "./media/characters/manny/front.svg",
  305. extra: 1,
  306. bottom: 0.06
  307. }
  308. },
  309. back: {
  310. height: math.unit(7, "feet"),
  311. weight: math.unit(100, "kg"),
  312. name: "Back",
  313. image: {
  314. source: "./media/characters/manny/back.svg",
  315. extra: 1,
  316. bottom: 0.014
  317. }
  318. },
  319. },
  320. [
  321. {
  322. name: "Normal",
  323. height: math.unit(7, "feet"),
  324. },
  325. {
  326. name: "Macro",
  327. height: math.unit(78, "feet"),
  328. default: true
  329. },
  330. {
  331. name: "Macro+",
  332. height: math.unit(300, "meters")
  333. },
  334. {
  335. name: "Macro++",
  336. height: math.unit(2400, "meters")
  337. },
  338. {
  339. name: "Megamacro",
  340. height: math.unit(5167, "meters")
  341. },
  342. {
  343. name: "Gigamacro",
  344. height: math.unit(41769, "miles")
  345. },
  346. ]
  347. ))
  348. characterMakers.push(() => makeCharacter(
  349. { name: "Adake" },
  350. {
  351. front: {
  352. height: math.unit(7, "feet"),
  353. weight: math.unit(100, "kg"),
  354. name: "Front",
  355. image: {
  356. source: "./media/characters/adake/front-1.svg"
  357. }
  358. },
  359. frontAlt: {
  360. height: math.unit(7, "feet"),
  361. weight: math.unit(100, "kg"),
  362. name: "Front (Alt)",
  363. image: {
  364. source: "./media/characters/adake/front-2.svg",
  365. extra: 1,
  366. bottom: 0.01
  367. }
  368. },
  369. back: {
  370. height: math.unit(7, "feet"),
  371. weight: math.unit(100, "kg"),
  372. name: "Back",
  373. image: {
  374. source: "./media/characters/adake/back.svg",
  375. }
  376. },
  377. kneel: {
  378. height: math.unit(5.385, "feet"),
  379. weight: math.unit(100, "kg"),
  380. name: "Kneeling",
  381. image: {
  382. source: "./media/characters/adake/kneel.svg",
  383. bottom: 0.052
  384. }
  385. },
  386. },
  387. [
  388. {
  389. name: "Normal",
  390. height: math.unit(7, "feet"),
  391. },
  392. {
  393. name: "Macro",
  394. height: math.unit(78, "feet"),
  395. default: true
  396. },
  397. {
  398. name: "Macro+",
  399. height: math.unit(300, "meters")
  400. },
  401. {
  402. name: "Macro++",
  403. height: math.unit(2400, "meters")
  404. },
  405. {
  406. name: "Megamacro",
  407. height: math.unit(5167, "meters")
  408. },
  409. {
  410. name: "Gigamacro",
  411. height: math.unit(41769, "miles")
  412. },
  413. ]
  414. ))
  415. characterMakers.push(() => makeCharacter(
  416. { name: "Elijah" },
  417. {
  418. front: {
  419. height: math.unit(1.65, "meters"),
  420. weight: math.unit(50, "kg"),
  421. name: "Front",
  422. image: {
  423. source: "./media/characters/elijah/front.svg",
  424. extra: 639 / 626,
  425. bottom: 58.7 / 697.8
  426. }
  427. },
  428. side: {
  429. height: math.unit(1.65, "meters"),
  430. weight: math.unit(50, "kg"),
  431. name: "Side",
  432. image: {
  433. source: "./media/characters/elijah/side.svg",
  434. extra: 1840 / 1795,
  435. bottom: 106 / 1943
  436. }
  437. },
  438. back: {
  439. height: math.unit(1.65, "meters"),
  440. weight: math.unit(50, "kg"),
  441. name: "Back",
  442. image: {
  443. source: "./media/characters/elijah/back.svg",
  444. extra: 661.2 / 639.5,
  445. bottom: 21.2 / 682.5
  446. }
  447. },
  448. foot: {
  449. height: math.unit(1.4, "feet"),
  450. name: "Foot",
  451. image: {
  452. source: "./media/characters/elijah/foot.svg"
  453. }
  454. },
  455. footFlexing: {
  456. height: math.unit(1.243, "feet"),
  457. name: "Foot (Flexing)",
  458. image: {
  459. source: "./media/characters/elijah/foot-flexing.svg"
  460. }
  461. },
  462. footStepping: {
  463. height: math.unit(1.3, "feet"),
  464. name: "Foot (Stepping)",
  465. image: {
  466. source: "./media/characters/elijah/foot-stepping.svg"
  467. }
  468. },
  469. beak: {
  470. height: math.unit(0.666, "feet"),
  471. name: "Beak",
  472. image: {
  473. source: "./media/characters/elijah/beak.svg"
  474. }
  475. },
  476. dick: {
  477. height: math.unit(0.85, "feet"),
  478. name: "Dick",
  479. image: {
  480. source: "./media/characters/elijah/dick.svg"
  481. }
  482. },
  483. },
  484. [
  485. {
  486. name: "Normal",
  487. height: math.unit(1.65, "meters")
  488. },
  489. {
  490. name: "Macro",
  491. height: math.unit(55, "meters"),
  492. default: true
  493. },
  494. {
  495. name: "Macro+",
  496. height: math.unit(105, "meters")
  497. },
  498. ]
  499. ))
  500. characterMakers.push(() => makeCharacter(
  501. { name: "Rai" },
  502. {
  503. front: {
  504. height: math.unit(11, "feet"),
  505. weight: math.unit(80, "kg"),
  506. name: "Front",
  507. image: {
  508. source: "./media/characters/rai/front.svg",
  509. extra: 1,
  510. bottom: 0.03
  511. }
  512. },
  513. side: {
  514. height: math.unit(11, "feet"),
  515. weight: math.unit(80, "kg"),
  516. name: "Side",
  517. image: {
  518. source: "./media/characters/rai/side.svg"
  519. }
  520. },
  521. back: {
  522. height: math.unit(11, "feet"),
  523. weight: math.unit(80, "lb"),
  524. name: "Back",
  525. image: {
  526. source: "./media/characters/rai/back.svg",
  527. extra: 1,
  528. bottom: 0.01
  529. }
  530. },
  531. feral: {
  532. height: math.unit(11, "feet"),
  533. weight: math.unit(800, "lb"),
  534. name: "Feral",
  535. image: {
  536. source: "./media/characters/rai/feral.svg",
  537. extra: 1050 / 659,
  538. bottom: 0.07
  539. }
  540. },
  541. maw: {
  542. height: math.unit(6 / 3.81416, "feet"),
  543. name: "Maw",
  544. image: {
  545. source: "./media/characters/rai/maw.svg"
  546. }
  547. },
  548. },
  549. [
  550. {
  551. name: "Normal",
  552. height: math.unit(11, "feet")
  553. },
  554. {
  555. name: "Macro",
  556. height: math.unit(302, "feet"),
  557. default: true
  558. },
  559. ]
  560. ))
  561. characterMakers.push(() => makeCharacter(
  562. { name: "Jazzy" },
  563. {
  564. front: {
  565. height: math.unit(7, "feet"),
  566. weight: math.unit(80, "kg"),
  567. name: "Front",
  568. image: {
  569. source: "./media/characters/jazzy/front.svg",
  570. extra: 1,
  571. bottom: 0.01
  572. }
  573. },
  574. back: {
  575. height: math.unit(7, "feet"),
  576. weight: math.unit(80, "kg"),
  577. name: "Back",
  578. image: {
  579. source: "./media/characters/jazzy/back.svg",
  580. extra: 1,
  581. bottom: 0.01
  582. }
  583. },
  584. },
  585. [
  586. {
  587. name: "Macro",
  588. height: math.unit(216, "feet"),
  589. default: true
  590. },
  591. ]
  592. ))
  593. characterMakers.push(() => makeCharacter(
  594. { name: "Flamm" },
  595. {
  596. front: {
  597. height: math.unit(7, "feet"),
  598. weight: math.unit(80, "kg"),
  599. name: "Front",
  600. image: {
  601. source: "./media/characters/flamm/front.svg",
  602. extra: 1794 / 1677,
  603. bottom: 31.7 / 1828.5
  604. }
  605. },
  606. },
  607. [
  608. {
  609. name: "Normal",
  610. height: math.unit(9.5, "feet")
  611. },
  612. {
  613. name: "Macro",
  614. height: math.unit(200, "feet"),
  615. default: true
  616. },
  617. ]
  618. ))
  619. characterMakers.push(() => makeCharacter(
  620. { name: "Zephiro" },
  621. {
  622. front: {
  623. height: math.unit(7, "feet"),
  624. weight: math.unit(80, "kg"),
  625. name: "Front",
  626. image: {
  627. source: "./media/characters/zephiro/front.svg",
  628. extra: 2309 / 2162,
  629. bottom: 0.069
  630. }
  631. },
  632. side: {
  633. height: math.unit(7, "feet"),
  634. weight: math.unit(80, "kg"),
  635. name: "Side",
  636. image: {
  637. source: "./media/characters/zephiro/side.svg",
  638. extra: 2403 / 2279,
  639. bottom: 0.015
  640. }
  641. },
  642. back: {
  643. height: math.unit(7, "feet"),
  644. weight: math.unit(80, "kg"),
  645. name: "Back",
  646. image: {
  647. source: "./media/characters/zephiro/back.svg",
  648. extra: 2373 / 2244,
  649. bottom: 0.013
  650. }
  651. },
  652. },
  653. [
  654. {
  655. name: "Micro",
  656. height: math.unit(3, "inches")
  657. },
  658. {
  659. name: "Normal",
  660. height: math.unit(5 + 3 / 12, "feet"),
  661. default: true
  662. },
  663. {
  664. name: "Macro",
  665. height: math.unit(118, "feet")
  666. },
  667. ]
  668. ))
  669. characterMakers.push(() => makeCharacter(
  670. { name: "Fory" },
  671. {
  672. front: {
  673. height: math.unit(5, "feet"),
  674. weight: math.unit(90, "kg"),
  675. name: "Front",
  676. image: {
  677. source: "./media/characters/fory/front.svg",
  678. extra: 2862 / 2674,
  679. bottom: 180 / 3043.8
  680. }
  681. },
  682. back: {
  683. height: math.unit(5, "feet"),
  684. weight: math.unit(90, "kg"),
  685. name: "Back",
  686. image: {
  687. source: "./media/characters/fory/back.svg",
  688. extra: 2962 / 2791,
  689. bottom: 106 / 3071.8
  690. }
  691. },
  692. foot: {
  693. height: math.unit(2.14, "feet"),
  694. name: "Foot",
  695. image: {
  696. source: "./media/characters/fory/foot.svg"
  697. }
  698. },
  699. },
  700. [
  701. {
  702. name: "Normal",
  703. height: math.unit(5, "feet")
  704. },
  705. {
  706. name: "Macro",
  707. height: math.unit(50, "feet"),
  708. default: true
  709. },
  710. {
  711. name: "Megamacro",
  712. height: math.unit(10, "miles")
  713. },
  714. {
  715. name: "Gigamacro",
  716. height: math.unit(5, "earths")
  717. },
  718. ]
  719. ))
  720. characterMakers.push(() => makeCharacter(
  721. { name: "Kurrikage" },
  722. {
  723. front: {
  724. height: math.unit(7, "feet"),
  725. weight: math.unit(90, "kg"),
  726. name: "Front",
  727. image: {
  728. source: "./media/characters/kurrikage/front.svg",
  729. extra: 1,
  730. bottom: 0.035
  731. }
  732. },
  733. back: {
  734. height: math.unit(7, "feet"),
  735. weight: math.unit(90, "lb"),
  736. name: "Back",
  737. image: {
  738. source: "./media/characters/kurrikage/back.svg"
  739. }
  740. },
  741. paw: {
  742. height: math.unit(1.5, "feet"),
  743. name: "Paw",
  744. image: {
  745. source: "./media/characters/kurrikage/paw.svg"
  746. }
  747. },
  748. staff: {
  749. height: math.unit(6.7, "feet"),
  750. name: "Staff",
  751. image: {
  752. source: "./media/characters/kurrikage/staff.svg"
  753. }
  754. },
  755. peek: {
  756. height: math.unit(1.05, "feet"),
  757. name: "Peeking",
  758. image: {
  759. source: "./media/characters/kurrikage/peek.svg",
  760. bottom: 0.08
  761. }
  762. },
  763. },
  764. [
  765. {
  766. name: "Normal",
  767. height: math.unit(12, "feet"),
  768. default: true
  769. },
  770. {
  771. name: "Big",
  772. height: math.unit(20, "feet")
  773. },
  774. {
  775. name: "Macro",
  776. height: math.unit(500, "feet")
  777. },
  778. {
  779. name: "Megamacro",
  780. height: math.unit(20, "miles")
  781. },
  782. ]
  783. ))
  784. characterMakers.push(() => makeCharacter(
  785. { name: "Shingo" },
  786. {
  787. front: {
  788. height: math.unit(6, "feet"),
  789. weight: math.unit(75, "kg"),
  790. name: "Front",
  791. image: {
  792. source: "./media/characters/shingo/front.svg",
  793. extra: 3511 / 3338,
  794. bottom: 0.005
  795. }
  796. },
  797. },
  798. [
  799. {
  800. name: "Micro",
  801. height: math.unit(4, "inches")
  802. },
  803. {
  804. name: "Normal",
  805. height: math.unit(6, "feet"),
  806. default: true
  807. },
  808. {
  809. name: "Macro",
  810. height: math.unit(108, "feet")
  811. }
  812. ]
  813. ))
  814. characterMakers.push(() => makeCharacter(
  815. { name: "Aigey" },
  816. {
  817. side: {
  818. height: math.unit(6, "feet"),
  819. weight: math.unit(75, "kg"),
  820. name: "Side",
  821. image: {
  822. source: "./media/characters/aigey/side.svg"
  823. }
  824. },
  825. },
  826. [
  827. {
  828. name: "Macro",
  829. height: math.unit(200, "feet"),
  830. default: true
  831. },
  832. {
  833. name: "Megamacro",
  834. height: math.unit(100, "miles")
  835. },
  836. ]
  837. )
  838. )
  839. characterMakers.push(() => makeCharacter(
  840. { name: "Natasha" },
  841. {
  842. front: {
  843. height: math.unit(5 + 5 / 12, "feet"),
  844. weight: math.unit(75, "kg"),
  845. name: "Front",
  846. image: {
  847. source: "./media/characters/natasha/front.svg",
  848. extra: 859/824,
  849. bottom: 23/879.6
  850. }
  851. },
  852. frontNsfw: {
  853. height: math.unit(5 + 5 / 12, "feet"),
  854. weight: math.unit(75, "kg"),
  855. name: "Front (NSFW)",
  856. image: {
  857. source: "./media/characters/natasha/front-nsfw.svg",
  858. extra: 859/824,
  859. bottom: 23/879.6
  860. }
  861. },
  862. frontErect: {
  863. height: math.unit(5 + 5 / 12, "feet"),
  864. weight: math.unit(75, "kg"),
  865. name: "Front (Erect)",
  866. image: {
  867. source: "./media/characters/natasha/front-erect.svg",
  868. extra: 859/824,
  869. bottom: 23/879.6
  870. }
  871. },
  872. back: {
  873. height: math.unit(5 + 5 / 12, "feet"),
  874. weight: math.unit(75, "kg"),
  875. name: "Back",
  876. image: {
  877. source: "./media/characters/natasha/back.svg",
  878. extra: 887.9/852.6,
  879. bottom: 9.7/896.4
  880. }
  881. },
  882. backAlt: {
  883. height: math.unit(5 + 5 / 12, "feet"),
  884. weight: math.unit(75, "kg"),
  885. name: "Back (Alt)",
  886. image: {
  887. source: "./media/characters/natasha/back-alt.svg",
  888. extra: 1236.7/1192,
  889. bottom: 22.3/1258.2
  890. }
  891. },
  892. dick: {
  893. height: math.unit(1.772, "feet"),
  894. name: "Dick",
  895. image: {
  896. source: "./media/characters/natasha/dick.svg"
  897. }
  898. },
  899. },
  900. [
  901. {
  902. name: "Normal",
  903. height: math.unit(5 + 5 / 12, "feet")
  904. },
  905. {
  906. name: "Large",
  907. height: math.unit(12, "feet")
  908. },
  909. {
  910. name: "Macro",
  911. height: math.unit(100, "feet"),
  912. default: true
  913. },
  914. {
  915. name: "Macro+",
  916. height: math.unit(260, "feet")
  917. },
  918. {
  919. name: "Macro++",
  920. height: math.unit(1, "mile")
  921. },
  922. ]
  923. ))
  924. characterMakers.push(() => makeCharacter(
  925. { name: "Malik" },
  926. {
  927. front: {
  928. height: math.unit(6, "feet"),
  929. weight: math.unit(75, "kg"),
  930. name: "Front",
  931. image: {
  932. source: "./media/characters/malik/front.svg"
  933. }
  934. },
  935. side: {
  936. height: math.unit(6, "feet"),
  937. weight: math.unit(75, "kg"),
  938. name: "Side",
  939. image: {
  940. source: "./media/characters/malik/side.svg",
  941. extra: 1.1539
  942. }
  943. },
  944. back: {
  945. height: math.unit(6, "feet"),
  946. weight: math.unit(75, "kg"),
  947. name: "Back",
  948. image: {
  949. source: "./media/characters/malik/back.svg"
  950. }
  951. },
  952. },
  953. [
  954. {
  955. name: "Macro",
  956. height: math.unit(156, "feet"),
  957. default: true
  958. },
  959. {
  960. name: "Macro+",
  961. height: math.unit(1188, "feet")
  962. },
  963. ]
  964. ))
  965. characterMakers.push(() => makeCharacter(
  966. { name: "Sefer" },
  967. {
  968. front: {
  969. height: math.unit(6, "feet"),
  970. weight: math.unit(75, "kg"),
  971. name: "Front",
  972. image: {
  973. source: "./media/characters/sefer/front.svg"
  974. }
  975. },
  976. back: {
  977. height: math.unit(6, "feet"),
  978. weight: math.unit(75, "kg"),
  979. name: "Back",
  980. image: {
  981. source: "./media/characters/sefer/back.svg"
  982. }
  983. },
  984. },
  985. [
  986. {
  987. name: "Normal",
  988. height: math.unit(6, "feet"),
  989. default: true
  990. },
  991. ]
  992. ))
  993. characterMakers.push(() => makeCharacter(
  994. { name: "North" },
  995. {
  996. body: {
  997. height: math.unit(2.2428, "meter"),
  998. weight: math.unit(124.738, "kg"),
  999. name: "Body",
  1000. image: {
  1001. extra: 1225 / 1050,
  1002. source: "./media/characters/north/front.svg"
  1003. }
  1004. }
  1005. },
  1006. [
  1007. {
  1008. name: "Micro",
  1009. height: math.unit(4, "inches")
  1010. },
  1011. {
  1012. name: "Macro",
  1013. height: math.unit(63, "meters")
  1014. },
  1015. {
  1016. name: "Megamacro",
  1017. height: math.unit(101, "miles"),
  1018. default: true
  1019. }
  1020. ]
  1021. ))
  1022. characterMakers.push(() => makeCharacter(
  1023. { name: "Talan" },
  1024. {
  1025. angled: {
  1026. height: math.unit(4, "meter"),
  1027. weight: math.unit(150, "kg"),
  1028. name: "Angled",
  1029. image: {
  1030. source: "./media/characters/talan/angled-sfw.svg",
  1031. bottom: 29 / 3734
  1032. }
  1033. },
  1034. angledNsfw: {
  1035. height: math.unit(4, "meter"),
  1036. weight: math.unit(150, "kg"),
  1037. name: "Angled (NSFW)",
  1038. image: {
  1039. source: "./media/characters/talan/angled-nsfw.svg",
  1040. bottom: 29 / 3734
  1041. }
  1042. },
  1043. frontNsfw: {
  1044. height: math.unit(4, "meter"),
  1045. weight: math.unit(150, "kg"),
  1046. name: "Front (NSFW)",
  1047. image: {
  1048. source: "./media/characters/talan/front-nsfw.svg",
  1049. bottom: 29 / 3734
  1050. }
  1051. },
  1052. sideNsfw: {
  1053. height: math.unit(4, "meter"),
  1054. weight: math.unit(150, "kg"),
  1055. name: "Side (NSFW)",
  1056. image: {
  1057. source: "./media/characters/talan/side-nsfw.svg",
  1058. bottom: 29 / 3734
  1059. }
  1060. },
  1061. back: {
  1062. height: math.unit(4, "meter"),
  1063. weight: math.unit(150, "kg"),
  1064. name: "Back",
  1065. image: {
  1066. source: "./media/characters/talan/back.svg"
  1067. }
  1068. },
  1069. dickBottom: {
  1070. height: math.unit(0.621, "meter"),
  1071. name: "Dick (Bottom)",
  1072. image: {
  1073. source: "./media/characters/talan/dick-bottom.svg"
  1074. }
  1075. },
  1076. dickTop: {
  1077. height: math.unit(0.621, "meter"),
  1078. name: "Dick (Top)",
  1079. image: {
  1080. source: "./media/characters/talan/dick-top.svg"
  1081. }
  1082. },
  1083. dickSide: {
  1084. height: math.unit(0.305, "meter"),
  1085. name: "Dick (Side)",
  1086. image: {
  1087. source: "./media/characters/talan/dick-side.svg"
  1088. }
  1089. },
  1090. dickFront: {
  1091. height: math.unit(0.305, "meter"),
  1092. name: "Dick (Front)",
  1093. image: {
  1094. source: "./media/characters/talan/dick-front.svg"
  1095. }
  1096. },
  1097. },
  1098. [
  1099. {
  1100. name: "Normal",
  1101. height: math.unit(4, "meters")
  1102. },
  1103. {
  1104. name: "Macro",
  1105. height: math.unit(100, "meters")
  1106. },
  1107. {
  1108. name: "Megamacro",
  1109. height: math.unit(2, "miles"),
  1110. default: true
  1111. },
  1112. {
  1113. name: "Gigamacro",
  1114. height: math.unit(5000, "miles")
  1115. },
  1116. {
  1117. name: "Teramacro",
  1118. height: math.unit(100, "parsecs")
  1119. }
  1120. ]
  1121. ))
  1122. characterMakers.push(() => makeCharacter(
  1123. { name: "Gael'Rathus" },
  1124. {
  1125. front: {
  1126. height: math.unit(2, "meter"),
  1127. weight: math.unit(90, "kg"),
  1128. name: "Front",
  1129. image: {
  1130. source: "./media/characters/gael'rathus/front.svg"
  1131. }
  1132. },
  1133. frontAlt: {
  1134. height: math.unit(2, "meter"),
  1135. weight: math.unit(90, "kg"),
  1136. name: "Front (alt)",
  1137. image: {
  1138. source: "./media/characters/gael'rathus/front-alt.svg"
  1139. }
  1140. },
  1141. frontAlt2: {
  1142. height: math.unit(2, "meter"),
  1143. weight: math.unit(90, "kg"),
  1144. name: "Front (alt 2)",
  1145. image: {
  1146. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1147. }
  1148. }
  1149. },
  1150. [
  1151. {
  1152. name: "Normal",
  1153. height: math.unit(9, "feet"),
  1154. default: true
  1155. },
  1156. {
  1157. name: "Large",
  1158. height: math.unit(25, "feet")
  1159. },
  1160. {
  1161. name: "Macro",
  1162. height: math.unit(0.25, "miles")
  1163. },
  1164. {
  1165. name: "Megamacro",
  1166. height: math.unit(10, "miles")
  1167. }
  1168. ]
  1169. ))
  1170. characterMakers.push(() => makeCharacter(
  1171. { name: "Sosha" },
  1172. {
  1173. side: {
  1174. height: math.unit(2, "meter"),
  1175. weight: math.unit(140, "kg"),
  1176. name: "Side",
  1177. image: {
  1178. source: "./media/characters/sosha/side.svg",
  1179. bottom: 0.042
  1180. }
  1181. },
  1182. },
  1183. [
  1184. {
  1185. name: "Normal",
  1186. height: math.unit(12, "feet"),
  1187. default: true
  1188. }
  1189. ]
  1190. ))
  1191. characterMakers.push(() => makeCharacter(
  1192. { name: "RuNNoLa" },
  1193. {
  1194. side: {
  1195. height: math.unit(5 + 5 / 12, "feet"),
  1196. weight: math.unit(170, "kg"),
  1197. name: "Side",
  1198. image: {
  1199. source: "./media/characters/runnola/side.svg",
  1200. extra: 741 / 448,
  1201. bottom: 0.05
  1202. }
  1203. },
  1204. },
  1205. [
  1206. {
  1207. name: "Small",
  1208. height: math.unit(3, "feet")
  1209. },
  1210. {
  1211. name: "Normal",
  1212. height: math.unit(5 + 5 / 12, "feet"),
  1213. default: true
  1214. },
  1215. {
  1216. name: "Big",
  1217. height: math.unit(10, "feet")
  1218. },
  1219. ]
  1220. ))
  1221. characterMakers.push(() => makeCharacter(
  1222. { name: "Kurribird" },
  1223. {
  1224. front: {
  1225. height: math.unit(2, "meter"),
  1226. weight: math.unit(50, "kg"),
  1227. name: "Front",
  1228. image: {
  1229. source: "./media/characters/kurribird/front.svg",
  1230. bottom: 0.015
  1231. }
  1232. },
  1233. frontAlt: {
  1234. height: math.unit(1.5, "meter"),
  1235. weight: math.unit(50, "kg"),
  1236. name: "Front (Alt)",
  1237. image: {
  1238. source: "./media/characters/kurribird/front-alt.svg",
  1239. extra: 1.45
  1240. }
  1241. },
  1242. },
  1243. [
  1244. {
  1245. name: "Normal",
  1246. height: math.unit(7, "feet")
  1247. },
  1248. {
  1249. name: "Big",
  1250. height: math.unit(12, "feet"),
  1251. default: true
  1252. },
  1253. {
  1254. name: "Macro",
  1255. height: math.unit(1500, "feet")
  1256. },
  1257. {
  1258. name: "Megamacro",
  1259. height: math.unit(2, "miles")
  1260. }
  1261. ]
  1262. ))
  1263. characterMakers.push(() => makeCharacter(
  1264. { name: "Elbial" },
  1265. {
  1266. front: {
  1267. height: math.unit(2, "meter"),
  1268. weight: math.unit(80, "kg"),
  1269. name: "Front",
  1270. image: {
  1271. source: "./media/characters/elbial/front.svg",
  1272. extra: 1643 / 1556,
  1273. bottom: 60.2 / 1696
  1274. }
  1275. },
  1276. side: {
  1277. height: math.unit(2, "meter"),
  1278. weight: math.unit(80, "kg"),
  1279. name: "Side",
  1280. image: {
  1281. source: "./media/characters/elbial/side.svg",
  1282. extra: 1630 / 1565,
  1283. bottom: 71.5 / 1697
  1284. }
  1285. },
  1286. back: {
  1287. height: math.unit(2, "meter"),
  1288. weight: math.unit(80, "kg"),
  1289. name: "Back",
  1290. image: {
  1291. source: "./media/characters/elbial/back.svg",
  1292. extra: 1668 / 1595,
  1293. bottom: 5.6 / 1672
  1294. }
  1295. },
  1296. frontDressed: {
  1297. height: math.unit(2, "meter"),
  1298. weight: math.unit(80, "kg"),
  1299. name: "Front (Dressed)",
  1300. image: {
  1301. source: "./media/characters/elbial/front-dressed.svg",
  1302. extra: 1653 / 1584,
  1303. bottom: 57 / 1708
  1304. }
  1305. },
  1306. genitals: {
  1307. height: math.unit(2 / 3.367, "meter"),
  1308. name: "Genitals",
  1309. image: {
  1310. source: "./media/characters/elbial/genitals.svg"
  1311. }
  1312. },
  1313. },
  1314. [
  1315. {
  1316. name: "Large",
  1317. height: math.unit(100, "feet")
  1318. },
  1319. {
  1320. name: "Macro",
  1321. height: math.unit(500, "feet"),
  1322. default: true
  1323. },
  1324. {
  1325. name: "Megamacro",
  1326. height: math.unit(10, "miles")
  1327. },
  1328. {
  1329. name: "Gigamacro",
  1330. height: math.unit(25000, "miles")
  1331. },
  1332. {
  1333. name: "Full-Size",
  1334. height: math.unit(8000000, "gigaparsecs")
  1335. }
  1336. ]
  1337. ))
  1338. characterMakers.push(() => makeCharacter(
  1339. { name: "Noah" },
  1340. {
  1341. front: {
  1342. height: math.unit(2, "meter"),
  1343. weight: math.unit(60, "kg"),
  1344. name: "Front",
  1345. image: {
  1346. source: "./media/characters/noah/front.svg"
  1347. }
  1348. },
  1349. talons: {
  1350. height: math.unit(0.315, "meter"),
  1351. name: "Talons",
  1352. image: {
  1353. source: "./media/characters/noah/talons.svg"
  1354. }
  1355. }
  1356. },
  1357. [
  1358. {
  1359. name: "Large",
  1360. height: math.unit(50, "feet")
  1361. },
  1362. {
  1363. name: "Macro",
  1364. height: math.unit(750, "feet"),
  1365. default: true
  1366. },
  1367. {
  1368. name: "Megamacro",
  1369. height: math.unit(50, "miles")
  1370. },
  1371. {
  1372. name: "Gigamacro",
  1373. height: math.unit(100000, "miles")
  1374. },
  1375. {
  1376. name: "Full-Size",
  1377. height: math.unit(3000000000, "miles")
  1378. }
  1379. ]
  1380. ))
  1381. characterMakers.push(() => makeCharacter(
  1382. { name: "Natalya" },
  1383. {
  1384. front: {
  1385. height: math.unit(2, "meter"),
  1386. weight: math.unit(80, "kg"),
  1387. name: "Front",
  1388. image: {
  1389. source: "./media/characters/natalya/front.svg"
  1390. }
  1391. },
  1392. back: {
  1393. height: math.unit(2, "meter"),
  1394. weight: math.unit(80, "kg"),
  1395. name: "Back",
  1396. image: {
  1397. source: "./media/characters/natalya/back.svg"
  1398. }
  1399. }
  1400. },
  1401. [
  1402. {
  1403. name: "Normal",
  1404. height: math.unit(150, "feet"),
  1405. default: true
  1406. },
  1407. {
  1408. name: "Megamacro",
  1409. height: math.unit(5, "miles")
  1410. },
  1411. {
  1412. name: "Full-Size",
  1413. height: math.unit(600, "kiloparsecs")
  1414. }
  1415. ]
  1416. ))
  1417. characterMakers.push(() => makeCharacter(
  1418. { name: "Erestrebah" },
  1419. {
  1420. front: {
  1421. height: math.unit(2, "meter"),
  1422. weight: math.unit(50, "kg"),
  1423. name: "Front",
  1424. image: {
  1425. source: "./media/characters/erestrebah/front.svg",
  1426. extra: 208 / 193,
  1427. bottom: 0.055
  1428. }
  1429. },
  1430. back: {
  1431. height: math.unit(2, "meter"),
  1432. weight: math.unit(50, "kg"),
  1433. name: "Back",
  1434. image: {
  1435. source: "./media/characters/erestrebah/back.svg",
  1436. extra: 1.3
  1437. }
  1438. }
  1439. },
  1440. [
  1441. {
  1442. name: "Normal",
  1443. height: math.unit(10, "feet")
  1444. },
  1445. {
  1446. name: "Large",
  1447. height: math.unit(50, "feet"),
  1448. default: true
  1449. },
  1450. {
  1451. name: "Macro",
  1452. height: math.unit(300, "feet")
  1453. },
  1454. {
  1455. name: "Macro+",
  1456. height: math.unit(750, "feet")
  1457. },
  1458. {
  1459. name: "Megamacro",
  1460. height: math.unit(3, "miles")
  1461. }
  1462. ]
  1463. ))
  1464. characterMakers.push(() => makeCharacter(
  1465. { name: "Jennifer" },
  1466. {
  1467. front: {
  1468. height: math.unit(2, "meter"),
  1469. weight: math.unit(80, "kg"),
  1470. name: "Front",
  1471. image: {
  1472. source: "./media/characters/jennifer/front.svg",
  1473. bottom: 0.11,
  1474. extra: 1.16
  1475. }
  1476. },
  1477. frontAlt: {
  1478. height: math.unit(2, "meter"),
  1479. weight: math.unit(80, "kg"),
  1480. name: "Front (Alt)",
  1481. image: {
  1482. source: "./media/characters/jennifer/front-alt.svg"
  1483. }
  1484. }
  1485. },
  1486. [
  1487. {
  1488. name: "Canon Height",
  1489. height: math.unit(120, "feet"),
  1490. default: true
  1491. },
  1492. {
  1493. name: "Macro+",
  1494. height: math.unit(300, "feet")
  1495. },
  1496. {
  1497. name: "Megamacro",
  1498. height: math.unit(20000, "feet")
  1499. }
  1500. ]
  1501. ))
  1502. characterMakers.push(() => makeCharacter(
  1503. { name: "Kalista" },
  1504. {
  1505. front: {
  1506. height: math.unit(2, "meter"),
  1507. weight: math.unit(50, "kg"),
  1508. name: "Front",
  1509. image: {
  1510. source: "./media/characters/kalista/front.svg",
  1511. extra: 1947 / 1700
  1512. }
  1513. },
  1514. back: {
  1515. height: math.unit(2, "meter"),
  1516. weight: math.unit(50, "kg"),
  1517. name: "Back",
  1518. image: {
  1519. source: "./media/characters/kalista/back.svg",
  1520. extra: 1366 / 1156
  1521. }
  1522. }
  1523. },
  1524. [
  1525. {
  1526. name: "Uncomfortably Small",
  1527. height: math.unit(10, "feet")
  1528. },
  1529. {
  1530. name: "Small",
  1531. height: math.unit(30, "feet")
  1532. },
  1533. {
  1534. name: "Macro",
  1535. height: math.unit(100, "feet"),
  1536. default: true
  1537. },
  1538. {
  1539. name: "Macro+",
  1540. height: math.unit(2000, "feet")
  1541. },
  1542. {
  1543. name: "True Form",
  1544. height: math.unit(8924, "miles")
  1545. }
  1546. ]
  1547. ))
  1548. characterMakers.push(() => makeCharacter(
  1549. { name: "GiantGrowingVixen" },
  1550. {
  1551. front: {
  1552. height: math.unit(2, "meter"),
  1553. weight: math.unit(120, "kg"),
  1554. name: "Front",
  1555. image: {
  1556. source: "./media/characters/ggv/front.svg"
  1557. }
  1558. },
  1559. side: {
  1560. height: math.unit(2, "meter"),
  1561. weight: math.unit(120, "kg"),
  1562. name: "Side",
  1563. image: {
  1564. source: "./media/characters/ggv/side.svg"
  1565. }
  1566. }
  1567. },
  1568. [
  1569. {
  1570. name: "Extremely Puny",
  1571. height: math.unit(9 + 5 / 12, "feet")
  1572. },
  1573. {
  1574. name: "Horribly Small",
  1575. height: math.unit(47.7, "miles"),
  1576. default: true
  1577. },
  1578. {
  1579. name: "Reasonably Sized",
  1580. height: math.unit(25000, "parsecs")
  1581. },
  1582. {
  1583. name: "Slightly Uncompressed",
  1584. height: math.unit(7.77e31, "parsecs")
  1585. },
  1586. {
  1587. name: "Omniversal",
  1588. height: math.unit(1e300, "meters")
  1589. },
  1590. ]
  1591. ))
  1592. characterMakers.push(() => makeCharacter(
  1593. { name: "Napalm" },
  1594. {
  1595. front: {
  1596. height: math.unit(2, "meter"),
  1597. weight: math.unit(75, "lb"),
  1598. name: "Front",
  1599. image: {
  1600. source: "./media/characters/napalm/front.svg"
  1601. }
  1602. },
  1603. back: {
  1604. height: math.unit(2, "meter"),
  1605. weight: math.unit(75, "lb"),
  1606. name: "Back",
  1607. image: {
  1608. source: "./media/characters/napalm/back.svg"
  1609. }
  1610. }
  1611. },
  1612. [
  1613. {
  1614. name: "Standard",
  1615. height: math.unit(55, "feet"),
  1616. default: true
  1617. }
  1618. ]
  1619. ))
  1620. characterMakers.push(() => makeCharacter(
  1621. { name: "Asana" },
  1622. {
  1623. front: {
  1624. height: math.unit(7 + 5 / 6, "feet"),
  1625. weight: math.unit(325, "lb"),
  1626. name: "Front",
  1627. image: {
  1628. source: "./media/characters/asana/front.svg",
  1629. extra: 1128 / 1068
  1630. }
  1631. },
  1632. back: {
  1633. height: math.unit(7 + 5 / 6, "feet"),
  1634. weight: math.unit(325, "lb"),
  1635. name: "Back",
  1636. image: {
  1637. source: "./media/characters/asana/back.svg",
  1638. extra: 1128 / 1068
  1639. }
  1640. },
  1641. },
  1642. [
  1643. {
  1644. name: "Standard",
  1645. height: math.unit(7 + 5 / 6, "feet"),
  1646. default: true
  1647. },
  1648. {
  1649. name: "Large",
  1650. height: math.unit(10, "meters")
  1651. },
  1652. {
  1653. name: "Macro",
  1654. height: math.unit(2500, "meters")
  1655. },
  1656. {
  1657. name: "Megamacro",
  1658. height: math.unit(5e6, "meters")
  1659. },
  1660. {
  1661. name: "Examacro",
  1662. height: math.unit(5e12, "lightyears")
  1663. },
  1664. {
  1665. name: "Max Size",
  1666. height: math.unit(1e31, "lightyears")
  1667. }
  1668. ]
  1669. ))
  1670. characterMakers.push(() => makeCharacter(
  1671. { name: "Ebony" },
  1672. {
  1673. front: {
  1674. height: math.unit(2, "meter"),
  1675. weight: math.unit(60, "kg"),
  1676. name: "Front",
  1677. image: {
  1678. source: "./media/characters/ebony/front.svg",
  1679. bottom: 0.03,
  1680. extra: 1045 / 810 + 0.03
  1681. }
  1682. },
  1683. side: {
  1684. height: math.unit(2, "meter"),
  1685. weight: math.unit(60, "kg"),
  1686. name: "Side",
  1687. image: {
  1688. source: "./media/characters/ebony/side.svg",
  1689. bottom: 0.03,
  1690. extra: 1045 / 810 + 0.03
  1691. }
  1692. },
  1693. back: {
  1694. height: math.unit(2, "meter"),
  1695. weight: math.unit(60, "kg"),
  1696. name: "Back",
  1697. image: {
  1698. source: "./media/characters/ebony/back.svg",
  1699. bottom: 0.01,
  1700. extra: 1045 / 810 + 0.01
  1701. }
  1702. },
  1703. },
  1704. [
  1705. // TODO check why I did this lol
  1706. {
  1707. name: "Standard",
  1708. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1709. default: true
  1710. },
  1711. {
  1712. name: "Macro",
  1713. height: math.unit(200, "feet")
  1714. },
  1715. {
  1716. name: "Gigamacro",
  1717. height: math.unit(13000, "km")
  1718. }
  1719. ]
  1720. ))
  1721. characterMakers.push(() => makeCharacter(
  1722. { name: "Mountain" },
  1723. {
  1724. front: {
  1725. height: math.unit(6, "feet"),
  1726. weight: math.unit(175, "lb"),
  1727. name: "Front",
  1728. image: {
  1729. source: "./media/characters/mountain/front.svg"
  1730. }
  1731. },
  1732. back: {
  1733. height: math.unit(6, "feet"),
  1734. weight: math.unit(175, "lb"),
  1735. name: "Back",
  1736. image: {
  1737. source: "./media/characters/mountain/back.svg"
  1738. }
  1739. },
  1740. },
  1741. [
  1742. {
  1743. name: "Large",
  1744. height: math.unit(20, "meters")
  1745. },
  1746. {
  1747. name: "Macro",
  1748. height: math.unit(300, "meters")
  1749. },
  1750. {
  1751. name: "Gigamacro",
  1752. height: math.unit(10000, "km"),
  1753. default: true
  1754. },
  1755. {
  1756. name: "Examacro",
  1757. height: math.unit(10e9, "lightyears")
  1758. }
  1759. ]
  1760. ))
  1761. characterMakers.push(() => makeCharacter(
  1762. { name: "Rick" },
  1763. {
  1764. front: {
  1765. height: math.unit(8, "feet"),
  1766. weight: math.unit(500, "lb"),
  1767. name: "Front",
  1768. image: {
  1769. source: "./media/characters/rick/front.svg"
  1770. }
  1771. }
  1772. },
  1773. [
  1774. {
  1775. name: "Normal",
  1776. height: math.unit(8, "feet"),
  1777. default: true
  1778. },
  1779. {
  1780. name: "Macro",
  1781. height: math.unit(5, "km")
  1782. }
  1783. ]
  1784. ))
  1785. characterMakers.push(() => makeCharacter(
  1786. { name: "Ona" },
  1787. {
  1788. front: {
  1789. height: math.unit(8, "feet"),
  1790. weight: math.unit(120, "lb"),
  1791. name: "Front",
  1792. image: {
  1793. source: "./media/characters/ona/front.svg"
  1794. }
  1795. },
  1796. frontAlt: {
  1797. height: math.unit(8, "feet"),
  1798. weight: math.unit(120, "lb"),
  1799. name: "Front (Alt)",
  1800. image: {
  1801. source: "./media/characters/ona/front-alt.svg"
  1802. }
  1803. },
  1804. back: {
  1805. height: math.unit(8, "feet"),
  1806. weight: math.unit(120, "lb"),
  1807. name: "Back",
  1808. image: {
  1809. source: "./media/characters/ona/back.svg"
  1810. }
  1811. },
  1812. foot: {
  1813. height: math.unit(1.1, "feet"),
  1814. name: "Foot",
  1815. image: {
  1816. source: "./media/characters/ona/foot.svg"
  1817. }
  1818. }
  1819. },
  1820. [
  1821. {
  1822. name: "Megamacro",
  1823. height: math.unit(70, "km"),
  1824. default: true
  1825. },
  1826. {
  1827. name: "Gigamacro",
  1828. height: math.unit(681818, "miles")
  1829. },
  1830. {
  1831. name: "Examacro",
  1832. height: math.unit(3800000, "lightyears")
  1833. },
  1834. ]
  1835. ))
  1836. characterMakers.push(() => makeCharacter(
  1837. { name: "Mech" },
  1838. {
  1839. front: {
  1840. height: math.unit(12, "feet"),
  1841. weight: math.unit(3000, "lb"),
  1842. name: "Front",
  1843. image: {
  1844. source: "./media/characters/mech/front.svg",
  1845. bottom: 0.025,
  1846. }
  1847. },
  1848. back: {
  1849. height: math.unit(12, "feet"),
  1850. weight: math.unit(3000, "lb"),
  1851. name: "Back",
  1852. image: {
  1853. source: "./media/characters/mech/back.svg",
  1854. bottom: 0.03,
  1855. }
  1856. }
  1857. },
  1858. [
  1859. {
  1860. name: "Normal",
  1861. height: math.unit(12, "feet")
  1862. },
  1863. {
  1864. name: "Macro",
  1865. height: math.unit(300, "feet"),
  1866. default: true
  1867. },
  1868. {
  1869. name: "Macro+",
  1870. height: math.unit(1500, "feet")
  1871. },
  1872. ]
  1873. ))
  1874. characterMakers.push(() => makeCharacter(
  1875. { name: "Gregory" },
  1876. {
  1877. front: {
  1878. height: math.unit(1.3, "meter"),
  1879. weight: math.unit(30, "kg"),
  1880. name: "Front",
  1881. image: {
  1882. source: "./media/characters/gregory/front.svg",
  1883. }
  1884. }
  1885. },
  1886. [
  1887. {
  1888. name: "Normal",
  1889. height: math.unit(1.3, "meter"),
  1890. default: true
  1891. },
  1892. {
  1893. name: "Macro",
  1894. height: math.unit(20, "meter")
  1895. }
  1896. ]
  1897. ))
  1898. characterMakers.push(() => makeCharacter(
  1899. { name: "Elory" },
  1900. {
  1901. front: {
  1902. height: math.unit(2.8, "meter"),
  1903. weight: math.unit(200, "kg"),
  1904. name: "Front",
  1905. image: {
  1906. source: "./media/characters/elory/front.svg",
  1907. }
  1908. }
  1909. },
  1910. [
  1911. {
  1912. name: "Normal",
  1913. height: math.unit(2.8, "meter"),
  1914. default: true
  1915. },
  1916. {
  1917. name: "Macro",
  1918. height: math.unit(38, "meter")
  1919. }
  1920. ]
  1921. ))
  1922. characterMakers.push(() => makeCharacter(
  1923. { name: "Angelpatamon" },
  1924. {
  1925. front: {
  1926. height: math.unit(470, "feet"),
  1927. weight: math.unit(924, "tons"),
  1928. name: "Front",
  1929. image: {
  1930. source: "./media/characters/angelpatamon/front.svg",
  1931. }
  1932. }
  1933. },
  1934. [
  1935. {
  1936. name: "Normal",
  1937. height: math.unit(470, "feet"),
  1938. default: true
  1939. },
  1940. {
  1941. name: "Deity Size I",
  1942. height: math.unit(28651.2, "km")
  1943. },
  1944. {
  1945. name: "Deity Size II",
  1946. height: math.unit(171907.2, "km")
  1947. }
  1948. ]
  1949. ))
  1950. characterMakers.push(() => makeCharacter(
  1951. { name: "Cryae" },
  1952. {
  1953. side: {
  1954. height: math.unit(7.2, "meter"),
  1955. weight: math.unit(8.2, "tons"),
  1956. name: "Side",
  1957. image: {
  1958. source: "./media/characters/cryae/side.svg",
  1959. extra: 3500 / 1500
  1960. }
  1961. }
  1962. },
  1963. [
  1964. {
  1965. name: "Normal",
  1966. height: math.unit(7.2, "meter"),
  1967. default: true
  1968. }
  1969. ]
  1970. ))
  1971. characterMakers.push(() => makeCharacter(
  1972. { name: "Xera" },
  1973. {
  1974. front: {
  1975. height: math.unit(6, "feet"),
  1976. weight: math.unit(175, "lb"),
  1977. name: "Front",
  1978. image: {
  1979. source: "./media/characters/xera/front.svg",
  1980. extra: 2300 / 2061
  1981. }
  1982. },
  1983. side: {
  1984. height: math.unit(6, "feet"),
  1985. weight: math.unit(175, "lb"),
  1986. name: "Side",
  1987. image: {
  1988. source: "./media/characters/xera/side.svg",
  1989. extra: 2300 / 2061
  1990. }
  1991. },
  1992. back: {
  1993. height: math.unit(6, "feet"),
  1994. weight: math.unit(175, "lb"),
  1995. name: "Back",
  1996. image: {
  1997. source: "./media/characters/xera/back.svg"
  1998. }
  1999. },
  2000. },
  2001. [
  2002. {
  2003. name: "Small",
  2004. height: math.unit(10, "feet")
  2005. },
  2006. {
  2007. name: "Macro",
  2008. height: math.unit(500, "meters"),
  2009. default: true
  2010. },
  2011. {
  2012. name: "Macro+",
  2013. height: math.unit(10, "km")
  2014. },
  2015. {
  2016. name: "Gigamacro",
  2017. height: math.unit(25000, "km")
  2018. },
  2019. {
  2020. name: "Teramacro",
  2021. height: math.unit(3e6, "km")
  2022. }
  2023. ]
  2024. ))
  2025. characterMakers.push(() => makeCharacter(
  2026. { name: "Nebula" },
  2027. {
  2028. front: {
  2029. height: math.unit(6, "feet"),
  2030. weight: math.unit(175, "lb"),
  2031. name: "Front",
  2032. image: {
  2033. source: "./media/characters/nebula/front.svg",
  2034. extra: 2600 / 2450
  2035. }
  2036. }
  2037. },
  2038. [
  2039. {
  2040. name: "Small",
  2041. height: math.unit(4.5, "meters")
  2042. },
  2043. {
  2044. name: "Macro",
  2045. height: math.unit(1500, "meters"),
  2046. default: true
  2047. },
  2048. {
  2049. name: "Megamacro",
  2050. height: math.unit(150, "km")
  2051. },
  2052. {
  2053. name: "Gigamacro",
  2054. height: math.unit(27000, "km")
  2055. }
  2056. ]
  2057. ))
  2058. characterMakers.push(() => makeCharacter(
  2059. { name: "Abysgar" },
  2060. {
  2061. front: {
  2062. height: math.unit(6, "feet"),
  2063. weight: math.unit(225, "lb"),
  2064. name: "Front",
  2065. image: {
  2066. source: "./media/characters/abysgar/front.svg"
  2067. }
  2068. }
  2069. },
  2070. [
  2071. {
  2072. name: "Small",
  2073. height: math.unit(4.5, "meters")
  2074. },
  2075. {
  2076. name: "Macro",
  2077. height: math.unit(1250, "meters"),
  2078. default: true
  2079. },
  2080. {
  2081. name: "Megamacro",
  2082. height: math.unit(125, "km")
  2083. },
  2084. {
  2085. name: "Gigamacro",
  2086. height: math.unit(26000, "km")
  2087. }
  2088. ]
  2089. ))
  2090. characterMakers.push(() => makeCharacter(
  2091. { name: "Yakuz" },
  2092. {
  2093. front: {
  2094. height: math.unit(6, "feet"),
  2095. weight: math.unit(180, "lb"),
  2096. name: "Front",
  2097. image: {
  2098. source: "./media/characters/yakuz/front.svg"
  2099. }
  2100. }
  2101. },
  2102. [
  2103. {
  2104. name: "Small",
  2105. height: math.unit(5, "meters")
  2106. },
  2107. {
  2108. name: "Macro",
  2109. height: math.unit(1500, "meters"),
  2110. default: true
  2111. },
  2112. {
  2113. name: "Megamacro",
  2114. height: math.unit(200, "km")
  2115. },
  2116. {
  2117. name: "Gigamacro",
  2118. height: math.unit(100000, "km")
  2119. }
  2120. ]
  2121. ))
  2122. characterMakers.push(() => makeCharacter(
  2123. { name: "Mirova" },
  2124. {
  2125. front: {
  2126. height: math.unit(6, "feet"),
  2127. weight: math.unit(175, "lb"),
  2128. name: "Front",
  2129. image: {
  2130. source: "./media/characters/mirova/front.svg"
  2131. }
  2132. }
  2133. },
  2134. [
  2135. {
  2136. name: "Small",
  2137. height: math.unit(5, "meters")
  2138. },
  2139. {
  2140. name: "Macro",
  2141. height: math.unit(900, "meters"),
  2142. default: true
  2143. },
  2144. {
  2145. name: "Megamacro",
  2146. height: math.unit(135, "km")
  2147. },
  2148. {
  2149. name: "Gigamacro",
  2150. height: math.unit(20000, "km")
  2151. }
  2152. ]
  2153. ))
  2154. characterMakers.push(() => makeCharacter(
  2155. { name: "Asana (Mech)" },
  2156. {
  2157. side: {
  2158. height: math.unit(28.35, "feet"),
  2159. weight: math.unit(99.75, "tons"),
  2160. name: "Side",
  2161. image: {
  2162. source: "./media/characters/asana-mech/side.svg"
  2163. }
  2164. }
  2165. },
  2166. [
  2167. {
  2168. name: "Normal",
  2169. height: math.unit(28.35, "feet"),
  2170. default: true
  2171. },
  2172. {
  2173. name: "Macro",
  2174. height: math.unit(2500, "feet")
  2175. },
  2176. {
  2177. name: "Megamacro",
  2178. height: math.unit(25, "miles")
  2179. },
  2180. {
  2181. name: "Examacro",
  2182. height: math.unit(6e8, "lightyears")
  2183. },
  2184. ]
  2185. ))
  2186. characterMakers.push(() => makeCharacter(
  2187. { name: "Ashtrek" },
  2188. {
  2189. front: {
  2190. height: math.unit(2, "meters"),
  2191. weight: math.unit(70, "kg"),
  2192. name: "Front",
  2193. image: {
  2194. source: "./media/characters/ashtrek/front.svg",
  2195. extra: 560 / 524,
  2196. bottom: 0.01
  2197. }
  2198. },
  2199. frontArmor: {
  2200. height: math.unit(2, "meters"),
  2201. weight: math.unit(76, "kg"),
  2202. name: "Front (Armor)",
  2203. image: {
  2204. source: "./media/characters/ashtrek/front-armor.svg",
  2205. extra: 561 / 527,
  2206. bottom: 0.01
  2207. }
  2208. },
  2209. side: {
  2210. height: math.unit(2, "meters"),
  2211. weight: math.unit(70, "kg"),
  2212. name: "Side",
  2213. image: {
  2214. source: "./media/characters/ashtrek/side.svg",
  2215. extra: 1717 / 1609,
  2216. bottom: 0.005
  2217. }
  2218. },
  2219. back: {
  2220. height: math.unit(2, "meters"),
  2221. weight: math.unit(70, "kg"),
  2222. name: "Back",
  2223. image: {
  2224. source: "./media/characters/ashtrek/back.svg",
  2225. extra: 1570 / 1501
  2226. }
  2227. },
  2228. },
  2229. [
  2230. {
  2231. name: "DEFCON 5",
  2232. height: math.unit(5, "meters")
  2233. },
  2234. {
  2235. name: "DEFCON 4",
  2236. height: math.unit(500, "meters"),
  2237. default: true
  2238. },
  2239. {
  2240. name: "DEFCON 3",
  2241. height: math.unit(5, "km")
  2242. },
  2243. {
  2244. name: "DEFCON 2",
  2245. height: math.unit(500, "km")
  2246. },
  2247. {
  2248. name: "DEFCON 1",
  2249. height: math.unit(500000, "km")
  2250. },
  2251. {
  2252. name: "DEFCON 0",
  2253. height: math.unit(3, "gigaparsecs")
  2254. },
  2255. ]
  2256. ))
  2257. characterMakers.push(() => makeCharacter(
  2258. { name: "Gale" },
  2259. {
  2260. front: {
  2261. height: math.unit(2, "meters"),
  2262. weight: math.unit(76, "kg"),
  2263. name: "Front",
  2264. image: {
  2265. source: "./media/characters/gale/front.svg"
  2266. }
  2267. },
  2268. frontAlt1: {
  2269. height: math.unit(2, "meters"),
  2270. weight: math.unit(76, "kg"),
  2271. name: "Front (Alt 1)",
  2272. image: {
  2273. source: "./media/characters/gale/front-alt-1.svg"
  2274. }
  2275. },
  2276. frontAlt2: {
  2277. height: math.unit(2, "meters"),
  2278. weight: math.unit(76, "kg"),
  2279. name: "Front (Alt 2)",
  2280. image: {
  2281. source: "./media/characters/gale/front-alt-2.svg"
  2282. }
  2283. },
  2284. },
  2285. [
  2286. {
  2287. name: "Normal",
  2288. height: math.unit(7, "feet")
  2289. },
  2290. {
  2291. name: "Macro",
  2292. height: math.unit(150, "feet"),
  2293. default: true
  2294. },
  2295. {
  2296. name: "Macro+",
  2297. height: math.unit(300, "feet")
  2298. },
  2299. ]
  2300. ))
  2301. characterMakers.push(() => makeCharacter(
  2302. { name: "Draylen" },
  2303. {
  2304. front: {
  2305. height: math.unit(2, "meters"),
  2306. weight: math.unit(76, "kg"),
  2307. name: "Front",
  2308. image: {
  2309. source: "./media/characters/draylen/front.svg"
  2310. }
  2311. }
  2312. },
  2313. [
  2314. {
  2315. name: "Macro",
  2316. height: math.unit(150, "feet"),
  2317. default: true
  2318. }
  2319. ]
  2320. ))
  2321. characterMakers.push(() => makeCharacter(
  2322. { name: "Chez" },
  2323. {
  2324. front: {
  2325. height: math.unit(7 + 9 / 12, "feet"),
  2326. weight: math.unit(379, "lbs"),
  2327. name: "Front",
  2328. image: {
  2329. source: "./media/characters/chez/front.svg"
  2330. }
  2331. },
  2332. side: {
  2333. height: math.unit(7 + 9 / 12, "feet"),
  2334. weight: math.unit(379, "lbs"),
  2335. name: "Side",
  2336. image: {
  2337. source: "./media/characters/chez/side.svg"
  2338. }
  2339. }
  2340. },
  2341. [
  2342. {
  2343. name: "Normal",
  2344. height: math.unit(7 + 9 / 12, "feet"),
  2345. default: true
  2346. },
  2347. {
  2348. name: "God King",
  2349. height: math.unit(9750000, "meters")
  2350. }
  2351. ]
  2352. ))
  2353. characterMakers.push(() => makeCharacter(
  2354. { name: "Kaylum" },
  2355. {
  2356. front: {
  2357. height: math.unit(6, "feet"),
  2358. weight: math.unit(275, "lbs"),
  2359. name: "Front",
  2360. image: {
  2361. source: "./media/characters/kaylum/front.svg",
  2362. bottom: 0.01,
  2363. extra: 1166 / 1031
  2364. }
  2365. },
  2366. frontWingless: {
  2367. height: math.unit(6, "feet"),
  2368. weight: math.unit(275, "lbs"),
  2369. name: "Front (Wingless)",
  2370. image: {
  2371. source: "./media/characters/kaylum/front-wingless.svg",
  2372. bottom: 0.01,
  2373. extra: 1117 / 1031
  2374. }
  2375. }
  2376. },
  2377. [
  2378. {
  2379. name: "Normal",
  2380. height: math.unit(3.05, "meters")
  2381. },
  2382. {
  2383. name: "Master",
  2384. height: math.unit(5.5, "meters")
  2385. },
  2386. {
  2387. name: "Rampage",
  2388. height: math.unit(19, "meters")
  2389. },
  2390. {
  2391. name: "Macro Lite",
  2392. height: math.unit(37, "meters")
  2393. },
  2394. {
  2395. name: "Hyper Predator",
  2396. height: math.unit(61, "meters")
  2397. },
  2398. {
  2399. name: "Macro",
  2400. height: math.unit(138, "meters"),
  2401. default: true
  2402. }
  2403. ]
  2404. ))
  2405. characterMakers.push(() => makeCharacter(
  2406. { name: "Geta" },
  2407. {
  2408. front: {
  2409. height: math.unit(6, "feet"),
  2410. weight: math.unit(150, "lbs"),
  2411. name: "Front",
  2412. image: {
  2413. source: "./media/characters/geta/front.svg"
  2414. }
  2415. }
  2416. },
  2417. [
  2418. {
  2419. name: "Micro",
  2420. height: math.unit(3, "inches"),
  2421. default: true
  2422. },
  2423. {
  2424. name: "Normal",
  2425. height: math.unit(5 + 5 / 12, "feet")
  2426. }
  2427. ]
  2428. ))
  2429. characterMakers.push(() => makeCharacter(
  2430. { name: "Tyrnn" },
  2431. {
  2432. front: {
  2433. height: math.unit(6, "feet"),
  2434. weight: math.unit(300, "lbs"),
  2435. name: "Front",
  2436. image: {
  2437. source: "./media/characters/tyrnn/front.svg"
  2438. }
  2439. }
  2440. },
  2441. [
  2442. {
  2443. name: "Main Height",
  2444. height: math.unit(355, "feet"),
  2445. default: true
  2446. },
  2447. {
  2448. name: "Fave. Height",
  2449. height: math.unit(2400, "feet")
  2450. }
  2451. ]
  2452. ))
  2453. characterMakers.push(() => makeCharacter(
  2454. { name: "Apple" },
  2455. {
  2456. front: {
  2457. height: math.unit(6, "feet"),
  2458. weight: math.unit(300, "lbs"),
  2459. name: "Front",
  2460. image: {
  2461. source: "./media/characters/appledectomy/front.svg"
  2462. }
  2463. }
  2464. },
  2465. [
  2466. {
  2467. name: "Macro",
  2468. height: math.unit(2500, "feet")
  2469. },
  2470. {
  2471. name: "Megamacro",
  2472. height: math.unit(50, "miles"),
  2473. default: true
  2474. },
  2475. {
  2476. name: "Gigamacro",
  2477. height: math.unit(5000, "miles")
  2478. },
  2479. {
  2480. name: "Teramacro",
  2481. height: math.unit(250000, "miles")
  2482. },
  2483. ]
  2484. ))
  2485. characterMakers.push(() => makeCharacter(
  2486. { name: "Vulpes" },
  2487. {
  2488. front: {
  2489. height: math.unit(6, "feet"),
  2490. weight: math.unit(200, "lbs"),
  2491. name: "Front",
  2492. image: {
  2493. source: "./media/characters/vulpes/front.svg",
  2494. extra: 573 / 543,
  2495. bottom: 0.033
  2496. }
  2497. },
  2498. side: {
  2499. height: math.unit(6, "feet"),
  2500. weight: math.unit(200, "lbs"),
  2501. name: "Side",
  2502. image: {
  2503. source: "./media/characters/vulpes/side.svg",
  2504. extra: 573 / 543,
  2505. bottom: 0.01
  2506. }
  2507. },
  2508. back: {
  2509. height: math.unit(6, "feet"),
  2510. weight: math.unit(200, "lbs"),
  2511. name: "Back",
  2512. image: {
  2513. source: "./media/characters/vulpes/back.svg",
  2514. extra: 573 / 543,
  2515. }
  2516. },
  2517. feet: {
  2518. height: math.unit(1.276, "feet"),
  2519. name: "Feet",
  2520. image: {
  2521. source: "./media/characters/vulpes/feet.svg"
  2522. }
  2523. },
  2524. maw: {
  2525. height: math.unit(1.18, "feet"),
  2526. name: "Maw",
  2527. image: {
  2528. source: "./media/characters/vulpes/maw.svg"
  2529. }
  2530. },
  2531. },
  2532. [
  2533. {
  2534. name: "Micro",
  2535. height: math.unit(2, "inches")
  2536. },
  2537. {
  2538. name: "Normal",
  2539. height: math.unit(6.3, "feet")
  2540. },
  2541. {
  2542. name: "Macro",
  2543. height: math.unit(850, "feet")
  2544. },
  2545. {
  2546. name: "Megamacro",
  2547. height: math.unit(7500, "feet"),
  2548. default: true
  2549. },
  2550. {
  2551. name: "Gigamacro",
  2552. height: math.unit(570000, "miles")
  2553. }
  2554. ]
  2555. ))
  2556. characterMakers.push(() => makeCharacter(
  2557. { name: "Rain Fallen" },
  2558. {
  2559. front: {
  2560. height: math.unit(6, "feet"),
  2561. weight: math.unit(210, "lbs"),
  2562. name: "Front",
  2563. image: {
  2564. source: "./media/characters/rain-fallen/front.svg"
  2565. }
  2566. },
  2567. side: {
  2568. height: math.unit(6, "feet"),
  2569. weight: math.unit(210, "lbs"),
  2570. name: "Side",
  2571. image: {
  2572. source: "./media/characters/rain-fallen/side.svg"
  2573. }
  2574. },
  2575. back: {
  2576. height: math.unit(6, "feet"),
  2577. weight: math.unit(210, "lbs"),
  2578. name: "Back",
  2579. image: {
  2580. source: "./media/characters/rain-fallen/back.svg"
  2581. }
  2582. },
  2583. feral: {
  2584. height: math.unit(9, "feet"),
  2585. weight: math.unit(700, "lbs"),
  2586. name: "Feral",
  2587. image: {
  2588. source: "./media/characters/rain-fallen/feral.svg"
  2589. }
  2590. },
  2591. },
  2592. [
  2593. {
  2594. name: "Normal",
  2595. height: math.unit(5, "meter")
  2596. },
  2597. {
  2598. name: "Macro",
  2599. height: math.unit(150, "meter"),
  2600. default: true
  2601. },
  2602. {
  2603. name: "Megamacro",
  2604. height: math.unit(278e6, "meter")
  2605. },
  2606. {
  2607. name: "Gigamacro",
  2608. height: math.unit(2e9, "meter")
  2609. },
  2610. {
  2611. name: "Teramacro",
  2612. height: math.unit(8e12, "meter")
  2613. },
  2614. {
  2615. name: "Devourer",
  2616. height: math.unit(14, "zettameters")
  2617. },
  2618. {
  2619. name: "Scarlet King",
  2620. height: math.unit(18, "yottameters")
  2621. },
  2622. {
  2623. name: "Void",
  2624. height: math.unit(6.66e66, "yottameters")
  2625. }
  2626. ]
  2627. ))
  2628. characterMakers.push(() => makeCharacter(
  2629. { name: "Zaakira" },
  2630. {
  2631. standing: {
  2632. height: math.unit(6, "feet"),
  2633. weight: math.unit(180, "lbs"),
  2634. name: "Standing",
  2635. image: {
  2636. source: "./media/characters/zaakira/standing.svg"
  2637. }
  2638. },
  2639. laying: {
  2640. height: math.unit(3, "feet"),
  2641. weight: math.unit(180, "lbs"),
  2642. name: "Laying",
  2643. image: {
  2644. source: "./media/characters/zaakira/laying.svg"
  2645. }
  2646. },
  2647. },
  2648. [
  2649. {
  2650. name: "Normal",
  2651. height: math.unit(12, "feet")
  2652. },
  2653. {
  2654. name: "Macro",
  2655. height: math.unit(279, "feet"),
  2656. default: true
  2657. }
  2658. ]
  2659. ))
  2660. characterMakers.push(() => makeCharacter(
  2661. { name: "Sigvald" },
  2662. {
  2663. front: {
  2664. height: math.unit(6, "feet"),
  2665. weight: math.unit(250, "lbs"),
  2666. name: "Front",
  2667. image: {
  2668. source: "./media/characters/sigvald/front.svg",
  2669. extra: 1000 / 850
  2670. }
  2671. },
  2672. back: {
  2673. height: math.unit(6, "feet"),
  2674. weight: math.unit(250, "lbs"),
  2675. name: "Back",
  2676. image: {
  2677. source: "./media/characters/sigvald/back.svg"
  2678. }
  2679. },
  2680. },
  2681. [
  2682. {
  2683. name: "Normal",
  2684. height: math.unit(8, "feet")
  2685. },
  2686. {
  2687. name: "Large",
  2688. height: math.unit(12, "feet")
  2689. },
  2690. {
  2691. name: "Larger",
  2692. height: math.unit(20, "feet")
  2693. },
  2694. {
  2695. name: "Macro",
  2696. height: math.unit(150, "feet")
  2697. },
  2698. {
  2699. name: "Macro+",
  2700. height: math.unit(200, "feet"),
  2701. default: true
  2702. },
  2703. ]
  2704. ))
  2705. characterMakers.push(() => makeCharacter(
  2706. { name: "Scott" },
  2707. {
  2708. side: {
  2709. height: math.unit(12, "feet"),
  2710. weight: math.unit(3000, "lbs"),
  2711. name: "Side",
  2712. image: {
  2713. source: "./media/characters/scott/side.svg",
  2714. extra: 1,
  2715. bottom: 0.069
  2716. }
  2717. },
  2718. upright: {
  2719. height: math.unit(12, "feet"),
  2720. weight: math.unit(3000, "lbs"),
  2721. name: "Upright",
  2722. image: {
  2723. source: "./media/characters/scott/upright.svg",
  2724. extra: 1,
  2725. bottom: 0.05
  2726. }
  2727. },
  2728. },
  2729. [
  2730. {
  2731. name: "Normal",
  2732. height: math.unit(12, "feet"),
  2733. default: true
  2734. },
  2735. ]
  2736. ))
  2737. characterMakers.push(() => makeCharacter(
  2738. { name: "Tobias" },
  2739. {
  2740. side: {
  2741. height: math.unit(8, "meters"),
  2742. weight: math.unit(84755, "lbs"),
  2743. name: "Side",
  2744. image: {
  2745. source: "./media/characters/tobias/side.svg",
  2746. extra: 1474 / 1096,
  2747. bottom: 38.9 / 1513.1235
  2748. }
  2749. },
  2750. },
  2751. [
  2752. {
  2753. name: "Normal",
  2754. height: math.unit(8, "meters"),
  2755. default: true
  2756. },
  2757. ]
  2758. ))
  2759. characterMakers.push(() => makeCharacter(
  2760. { name: "Kieran" },
  2761. {
  2762. front: {
  2763. height: math.unit(5.5, "feet"),
  2764. weight: math.unit(400, "lbs"),
  2765. name: "Front",
  2766. image: {
  2767. source: "./media/characters/kieran/front.svg",
  2768. extra: 2694/2364,
  2769. bottom: 217/2908
  2770. }
  2771. },
  2772. side: {
  2773. height: math.unit(5.5, "feet"),
  2774. weight: math.unit(400, "lbs"),
  2775. name: "Side",
  2776. image: {
  2777. source: "./media/characters/kieran/side.svg",
  2778. extra: 875/777,
  2779. bottom: 84.6/959
  2780. }
  2781. },
  2782. },
  2783. [
  2784. {
  2785. name: "Normal",
  2786. height: math.unit(5.5, "feet"),
  2787. default: true
  2788. },
  2789. ]
  2790. ))
  2791. characterMakers.push(() => makeCharacter(
  2792. { name: "Sanya" },
  2793. {
  2794. side: {
  2795. height: math.unit(2, "meters"),
  2796. weight: math.unit(70, "kg"),
  2797. name: "Side",
  2798. image: {
  2799. source: "./media/characters/sanya/side.svg",
  2800. bottom: 0.02,
  2801. extra: 1.02
  2802. }
  2803. },
  2804. },
  2805. [
  2806. {
  2807. name: "Small",
  2808. height: math.unit(2, "meters")
  2809. },
  2810. {
  2811. name: "Normal",
  2812. height: math.unit(3, "meters")
  2813. },
  2814. {
  2815. name: "Macro",
  2816. height: math.unit(16, "meters"),
  2817. default: true
  2818. },
  2819. ]
  2820. ))
  2821. characterMakers.push(() => makeCharacter(
  2822. { name: "Miranda" },
  2823. {
  2824. side: {
  2825. height: math.unit(2, "meters"),
  2826. weight: math.unit(120, "kg"),
  2827. name: "Front",
  2828. image: {
  2829. source: "./media/characters/miranda/front.svg",
  2830. extra: 10.6 / 10
  2831. }
  2832. },
  2833. },
  2834. [
  2835. {
  2836. name: "Normal",
  2837. height: math.unit(10, "feet"),
  2838. default: true
  2839. }
  2840. ]
  2841. ))
  2842. characterMakers.push(() => makeCharacter(
  2843. { name: "James" },
  2844. {
  2845. side: {
  2846. height: math.unit(2, "meters"),
  2847. weight: math.unit(100, "kg"),
  2848. name: "Front",
  2849. image: {
  2850. source: "./media/characters/james/front.svg",
  2851. extra: 10 / 8.5
  2852. }
  2853. },
  2854. },
  2855. [
  2856. {
  2857. name: "Normal",
  2858. height: math.unit(8.5, "feet"),
  2859. default: true
  2860. }
  2861. ]
  2862. ))
  2863. characterMakers.push(() => makeCharacter(
  2864. { name: "Heather" },
  2865. {
  2866. side: {
  2867. height: math.unit(9.5, "feet"),
  2868. weight: math.unit(2500, "lbs"),
  2869. name: "Side",
  2870. image: {
  2871. source: "./media/characters/heather/side.svg"
  2872. }
  2873. },
  2874. },
  2875. [
  2876. {
  2877. name: "Normal",
  2878. height: math.unit(9.5, "feet"),
  2879. default: true
  2880. }
  2881. ]
  2882. ))
  2883. characterMakers.push(() => makeCharacter(
  2884. { name: "Lukas" },
  2885. {
  2886. side: {
  2887. height: math.unit(6.5, "feet"),
  2888. weight: math.unit(400, "lbs"),
  2889. name: "Side",
  2890. image: {
  2891. source: "./media/characters/lukas/side.svg",
  2892. extra: 7.25 / 6.5
  2893. }
  2894. },
  2895. },
  2896. [
  2897. {
  2898. name: "Normal",
  2899. height: math.unit(6.5, "feet"),
  2900. default: true
  2901. }
  2902. ]
  2903. ))
  2904. characterMakers.push(() => makeCharacter(
  2905. { name: "Louise" },
  2906. {
  2907. side: {
  2908. height: math.unit(5, "feet"),
  2909. weight: math.unit(3000, "lbs"),
  2910. name: "Side",
  2911. image: {
  2912. source: "./media/characters/louise/side.svg"
  2913. }
  2914. },
  2915. },
  2916. [
  2917. {
  2918. name: "Normal",
  2919. height: math.unit(5, "feet"),
  2920. default: true
  2921. }
  2922. ]
  2923. ))
  2924. characterMakers.push(() => makeCharacter(
  2925. { name: "Ramona" },
  2926. {
  2927. side: {
  2928. height: math.unit(6, "feet"),
  2929. weight: math.unit(150, "lbs"),
  2930. name: "Side",
  2931. image: {
  2932. source: "./media/characters/ramona/side.svg"
  2933. }
  2934. },
  2935. },
  2936. [
  2937. {
  2938. name: "Normal",
  2939. height: math.unit(5.3, "meters"),
  2940. default: true
  2941. },
  2942. {
  2943. name: "Macro",
  2944. height: math.unit(20, "stories")
  2945. },
  2946. {
  2947. name: "Macro+",
  2948. height: math.unit(50, "stories")
  2949. },
  2950. ]
  2951. ))
  2952. characterMakers.push(() => makeCharacter(
  2953. { name: "Deerpuff" },
  2954. {
  2955. standing: {
  2956. height: math.unit(5.75, "feet"),
  2957. weight: math.unit(160, "lbs"),
  2958. name: "Standing",
  2959. image: {
  2960. source: "./media/characters/deerpuff/standing.svg",
  2961. extra: 682 / 624
  2962. }
  2963. },
  2964. sitting: {
  2965. height: math.unit(5.75 / 1.79, "feet"),
  2966. weight: math.unit(160, "lbs"),
  2967. name: "Sitting",
  2968. image: {
  2969. source: "./media/characters/deerpuff/sitting.svg",
  2970. bottom: 44 / 400,
  2971. extra: 1
  2972. }
  2973. },
  2974. taurLaying: {
  2975. height: math.unit(6, "feet"),
  2976. weight: math.unit(400, "lbs"),
  2977. name: "Taur (Laying)",
  2978. image: {
  2979. source: "./media/characters/deerpuff/taur-laying.svg"
  2980. }
  2981. },
  2982. },
  2983. [
  2984. {
  2985. name: "Puffball",
  2986. height: math.unit(6, "inches")
  2987. },
  2988. {
  2989. name: "Normalpuff",
  2990. height: math.unit(5.75, "feet")
  2991. },
  2992. {
  2993. name: "Macropuff",
  2994. height: math.unit(1500, "feet"),
  2995. default: true
  2996. },
  2997. {
  2998. name: "Megapuff",
  2999. height: math.unit(500, "miles")
  3000. },
  3001. {
  3002. name: "Gigapuff",
  3003. height: math.unit(250000, "miles")
  3004. },
  3005. {
  3006. name: "Omegapuff",
  3007. height: math.unit(1000, "lightyears")
  3008. },
  3009. ]
  3010. ))
  3011. characterMakers.push(() => makeCharacter(
  3012. { name: "Vivian" },
  3013. {
  3014. stomping: {
  3015. height: math.unit(6, "feet"),
  3016. weight: math.unit(170, "lbs"),
  3017. name: "Stomping",
  3018. image: {
  3019. source: "./media/characters/vivian/stomping.svg"
  3020. }
  3021. },
  3022. sitting: {
  3023. height: math.unit(6 / 1.75, "feet"),
  3024. weight: math.unit(170, "lbs"),
  3025. name: "Sitting",
  3026. image: {
  3027. source: "./media/characters/vivian/sitting.svg",
  3028. bottom: 1 / 6.4,
  3029. extra: 1,
  3030. }
  3031. },
  3032. },
  3033. [
  3034. {
  3035. name: "Normal",
  3036. height: math.unit(7, "feet"),
  3037. default: true
  3038. },
  3039. {
  3040. name: "Macro",
  3041. height: math.unit(10, "stories")
  3042. },
  3043. {
  3044. name: "Macro+",
  3045. height: math.unit(30, "stories")
  3046. },
  3047. {
  3048. name: "Megamacro",
  3049. height: math.unit(10, "miles")
  3050. },
  3051. {
  3052. name: "Megamacro+",
  3053. height: math.unit(2750000, "meters")
  3054. },
  3055. ]
  3056. ))
  3057. characterMakers.push(() => makeCharacter(
  3058. { name: "Prince" },
  3059. {
  3060. front: {
  3061. height: math.unit(6, "feet"),
  3062. weight: math.unit(160, "lbs"),
  3063. name: "Front",
  3064. image: {
  3065. source: "./media/characters/prince/front.svg",
  3066. extra: 3400 / 3000
  3067. }
  3068. },
  3069. jumping: {
  3070. height: math.unit(6, "feet"),
  3071. weight: math.unit(160, "lbs"),
  3072. name: "Jumping",
  3073. image: {
  3074. source: "./media/characters/prince/jump.svg",
  3075. extra: 2555 / 2134
  3076. }
  3077. },
  3078. },
  3079. [
  3080. {
  3081. name: "Normal",
  3082. height: math.unit(7.75, "feet"),
  3083. default: true
  3084. },
  3085. {
  3086. name: "Not cute",
  3087. height: math.unit(17, "feet")
  3088. },
  3089. {
  3090. name: "I said NOT",
  3091. height: math.unit(91, "feet")
  3092. },
  3093. {
  3094. name: "Please stop",
  3095. height: math.unit(560, "feet")
  3096. },
  3097. {
  3098. name: "What have you done",
  3099. height: math.unit(2200, "feet")
  3100. },
  3101. {
  3102. name: "Deer God",
  3103. height: math.unit(3.6, "miles")
  3104. },
  3105. ]
  3106. ))
  3107. characterMakers.push(() => makeCharacter(
  3108. { name: "Psymon" },
  3109. {
  3110. standing: {
  3111. height: math.unit(6, "feet"),
  3112. weight: math.unit(300, "lbs"),
  3113. name: "Standing",
  3114. image: {
  3115. source: "./media/characters/psymon/standing.svg",
  3116. extra: 1888 / 1810,
  3117. bottom: 0.05
  3118. }
  3119. },
  3120. slithering: {
  3121. height: math.unit(6, "feet"),
  3122. weight: math.unit(300, "lbs"),
  3123. name: "Slithering",
  3124. image: {
  3125. source: "./media/characters/psymon/slithering.svg",
  3126. extra: 1330 / 1224
  3127. }
  3128. },
  3129. slitheringAlt: {
  3130. height: math.unit(6, "feet"),
  3131. weight: math.unit(300, "lbs"),
  3132. name: "Slithering (Alt)",
  3133. image: {
  3134. source: "./media/characters/psymon/slithering-alt.svg",
  3135. extra: 1330 / 1224
  3136. }
  3137. },
  3138. },
  3139. [
  3140. {
  3141. name: "Normal",
  3142. height: math.unit(11.25, "feet"),
  3143. default: true
  3144. },
  3145. {
  3146. name: "Large",
  3147. height: math.unit(27, "feet")
  3148. },
  3149. {
  3150. name: "Giant",
  3151. height: math.unit(87, "feet")
  3152. },
  3153. {
  3154. name: "Macro",
  3155. height: math.unit(365, "feet")
  3156. },
  3157. {
  3158. name: "Megamacro",
  3159. height: math.unit(3, "miles")
  3160. },
  3161. {
  3162. name: "World Serpent",
  3163. height: math.unit(8000, "miles")
  3164. },
  3165. ]
  3166. ))
  3167. characterMakers.push(() => makeCharacter(
  3168. { name: "Daimos" },
  3169. {
  3170. front: {
  3171. height: math.unit(6, "feet"),
  3172. weight: math.unit(180, "lbs"),
  3173. name: "Front",
  3174. image: {
  3175. source: "./media/characters/daimos/front.svg",
  3176. extra: 4160 / 3897,
  3177. bottom: 0.021
  3178. }
  3179. }
  3180. },
  3181. [
  3182. {
  3183. name: "Normal",
  3184. height: math.unit(8, "feet"),
  3185. default: true
  3186. },
  3187. {
  3188. name: "Big Dog",
  3189. height: math.unit(22, "feet")
  3190. },
  3191. {
  3192. name: "Macro",
  3193. height: math.unit(127, "feet")
  3194. },
  3195. {
  3196. name: "Megamacro",
  3197. height: math.unit(3600, "feet")
  3198. },
  3199. ]
  3200. ))
  3201. characterMakers.push(() => makeCharacter(
  3202. { name: "Blake" },
  3203. {
  3204. side: {
  3205. height: math.unit(6, "feet"),
  3206. weight: math.unit(180, "lbs"),
  3207. name: "Side",
  3208. image: {
  3209. source: "./media/characters/blake/side.svg",
  3210. extra: 1212 / 1120,
  3211. bottom: 0.05
  3212. }
  3213. },
  3214. crouched: {
  3215. height: math.unit(6 * 0.57, "feet"),
  3216. weight: math.unit(180, "lbs"),
  3217. name: "Crouched",
  3218. image: {
  3219. source: "./media/characters/blake/crouched.svg",
  3220. extra: 840 / 587,
  3221. bottom: 0.04
  3222. }
  3223. },
  3224. bent: {
  3225. height: math.unit(6 * 0.75, "feet"),
  3226. weight: math.unit(180, "lbs"),
  3227. name: "Bent",
  3228. image: {
  3229. source: "./media/characters/blake/bent.svg",
  3230. extra: 592 / 544,
  3231. bottom: 0.035
  3232. }
  3233. },
  3234. },
  3235. [
  3236. {
  3237. name: "Normal",
  3238. height: math.unit(8 + 1 / 6, "feet"),
  3239. default: true
  3240. },
  3241. {
  3242. name: "Big Backside",
  3243. height: math.unit(37, "feet")
  3244. },
  3245. {
  3246. name: "Subway Shredder",
  3247. height: math.unit(72, "feet")
  3248. },
  3249. {
  3250. name: "City Carver",
  3251. height: math.unit(1675, "feet")
  3252. },
  3253. {
  3254. name: "Tectonic Tweaker",
  3255. height: math.unit(2300, "miles")
  3256. },
  3257. ]
  3258. ))
  3259. characterMakers.push(() => makeCharacter(
  3260. { name: "Guisetto" },
  3261. {
  3262. front: {
  3263. height: math.unit(6, "feet"),
  3264. weight: math.unit(180, "lbs"),
  3265. name: "Front",
  3266. image: {
  3267. source: "./media/characters/guisetto/front.svg",
  3268. extra: 856 / 817,
  3269. bottom: 0.06
  3270. }
  3271. },
  3272. airborne: {
  3273. height: math.unit(6, "feet"),
  3274. weight: math.unit(180, "lbs"),
  3275. name: "Airborne",
  3276. image: {
  3277. source: "./media/characters/guisetto/airborne.svg",
  3278. extra: 584 / 525
  3279. }
  3280. },
  3281. },
  3282. [
  3283. {
  3284. name: "Normal",
  3285. height: math.unit(10 + 11 / 12, "feet"),
  3286. default: true
  3287. },
  3288. {
  3289. name: "Large",
  3290. height: math.unit(35, "feet")
  3291. },
  3292. {
  3293. name: "Macro",
  3294. height: math.unit(475, "feet")
  3295. },
  3296. ]
  3297. ))
  3298. characterMakers.push(() => makeCharacter(
  3299. { name: "Luxor" },
  3300. {
  3301. front: {
  3302. height: math.unit(6, "feet"),
  3303. weight: math.unit(180, "lbs"),
  3304. name: "Front",
  3305. image: {
  3306. source: "./media/characters/luxor/front.svg",
  3307. extra: 2940 / 2152
  3308. }
  3309. },
  3310. back: {
  3311. height: math.unit(6, "feet"),
  3312. weight: math.unit(180, "lbs"),
  3313. name: "Back",
  3314. image: {
  3315. source: "./media/characters/luxor/back.svg",
  3316. extra: 1083 / 960
  3317. }
  3318. },
  3319. },
  3320. [
  3321. {
  3322. name: "Normal",
  3323. height: math.unit(5 + 5 / 6, "feet"),
  3324. default: true
  3325. },
  3326. {
  3327. name: "Lamp",
  3328. height: math.unit(50, "feet")
  3329. },
  3330. {
  3331. name: "Lämp",
  3332. height: math.unit(300, "feet")
  3333. },
  3334. {
  3335. name: "The sun is a lamp",
  3336. height: math.unit(250000, "miles")
  3337. },
  3338. ]
  3339. ))
  3340. characterMakers.push(() => makeCharacter(
  3341. { name: "Huoyan" },
  3342. {
  3343. front: {
  3344. height: math.unit(6, "feet"),
  3345. weight: math.unit(50, "lbs"),
  3346. name: "Front",
  3347. image: {
  3348. source: "./media/characters/huoyan/front.svg"
  3349. }
  3350. },
  3351. side: {
  3352. height: math.unit(6, "feet"),
  3353. weight: math.unit(180, "lbs"),
  3354. name: "Side",
  3355. image: {
  3356. source: "./media/characters/huoyan/side.svg"
  3357. }
  3358. },
  3359. },
  3360. [
  3361. {
  3362. name: "Chef",
  3363. height: math.unit(9, "feet")
  3364. },
  3365. {
  3366. name: "Normal",
  3367. height: math.unit(65, "feet"),
  3368. default: true
  3369. },
  3370. {
  3371. name: "Macro",
  3372. height: math.unit(780, "feet")
  3373. },
  3374. {
  3375. name: "Flaming Mountain",
  3376. height: math.unit(4.8, "miles")
  3377. },
  3378. {
  3379. name: "Celestial",
  3380. height: math.unit(765000, "miles")
  3381. },
  3382. ]
  3383. ))
  3384. characterMakers.push(() => makeCharacter(
  3385. { name: "Tails" },
  3386. {
  3387. front: {
  3388. height: math.unit(5 + 3 / 4, "feet"),
  3389. weight: math.unit(120, "lbs"),
  3390. name: "Front",
  3391. image: {
  3392. source: "./media/characters/tails/front.svg"
  3393. }
  3394. }
  3395. },
  3396. [
  3397. {
  3398. name: "Normal",
  3399. height: math.unit(5 + 3 / 4, "feet"),
  3400. default: true
  3401. }
  3402. ]
  3403. ))
  3404. characterMakers.push(() => makeCharacter(
  3405. { name: "Rainy" },
  3406. {
  3407. front: {
  3408. height: math.unit(4, "feet"),
  3409. weight: math.unit(50, "lbs"),
  3410. name: "Front",
  3411. image: {
  3412. source: "./media/characters/rainy/front.svg"
  3413. }
  3414. }
  3415. },
  3416. [
  3417. {
  3418. name: "Macro",
  3419. height: math.unit(800, "feet"),
  3420. default: true
  3421. }
  3422. ]
  3423. ))
  3424. characterMakers.push(() => makeCharacter(
  3425. { name: "Rainier" },
  3426. {
  3427. front: {
  3428. height: math.unit(6, "feet"),
  3429. weight: math.unit(150, "lbs"),
  3430. name: "Front",
  3431. image: {
  3432. source: "./media/characters/rainier/front.svg"
  3433. }
  3434. }
  3435. },
  3436. [
  3437. {
  3438. name: "Micro",
  3439. height: math.unit(2, "mm"),
  3440. default: true
  3441. }
  3442. ]
  3443. ))
  3444. characterMakers.push(() => makeCharacter(
  3445. { name: "Andy" },
  3446. {
  3447. front: {
  3448. height: math.unit(6, "feet"),
  3449. weight: math.unit(180, "lbs"),
  3450. name: "Front",
  3451. image: {
  3452. source: "./media/characters/andy/front.svg"
  3453. }
  3454. }
  3455. },
  3456. [
  3457. {
  3458. name: "Normal",
  3459. height: math.unit(8, "feet"),
  3460. default: true
  3461. },
  3462. {
  3463. name: "Macro",
  3464. height: math.unit(1000, "feet")
  3465. },
  3466. {
  3467. name: "Megamacro",
  3468. height: math.unit(5, "miles")
  3469. },
  3470. {
  3471. name: "Gigamacro",
  3472. height: math.unit(5000, "miles")
  3473. },
  3474. ]
  3475. ))
  3476. characterMakers.push(() => makeCharacter(
  3477. { name: "Cimmaron" },
  3478. {
  3479. front: {
  3480. height: math.unit(6, "feet"),
  3481. weight: math.unit(210, "lbs"),
  3482. name: "Front",
  3483. image: {
  3484. source: "./media/characters/cimmaron/front-sfw.svg",
  3485. extra: 701 / 676,
  3486. bottom: 0.046
  3487. }
  3488. },
  3489. back: {
  3490. height: math.unit(6, "feet"),
  3491. weight: math.unit(210, "lbs"),
  3492. name: "Back",
  3493. image: {
  3494. source: "./media/characters/cimmaron/back-sfw.svg",
  3495. extra: 701 / 676,
  3496. bottom: 0.046
  3497. }
  3498. },
  3499. frontNsfw: {
  3500. height: math.unit(6, "feet"),
  3501. weight: math.unit(210, "lbs"),
  3502. name: "Front (NSFW)",
  3503. image: {
  3504. source: "./media/characters/cimmaron/front-nsfw.svg",
  3505. extra: 701 / 676,
  3506. bottom: 0.046
  3507. }
  3508. },
  3509. backNsfw: {
  3510. height: math.unit(6, "feet"),
  3511. weight: math.unit(210, "lbs"),
  3512. name: "Back (NSFW)",
  3513. image: {
  3514. source: "./media/characters/cimmaron/back-nsfw.svg",
  3515. extra: 701 / 676,
  3516. bottom: 0.046
  3517. }
  3518. },
  3519. dick: {
  3520. height: math.unit(1.714, "feet"),
  3521. name: "Dick",
  3522. image: {
  3523. source: "./media/characters/cimmaron/dick.svg"
  3524. }
  3525. },
  3526. },
  3527. [
  3528. {
  3529. name: "Normal",
  3530. height: math.unit(6, "feet"),
  3531. default: true
  3532. },
  3533. {
  3534. name: "Macro Mayor",
  3535. height: math.unit(350, "meters")
  3536. },
  3537. ]
  3538. ))
  3539. characterMakers.push(() => makeCharacter(
  3540. { name: "Akari Kaen" },
  3541. {
  3542. front: {
  3543. height: math.unit(6, "feet"),
  3544. weight: math.unit(200, "lbs"),
  3545. name: "Front",
  3546. image: {
  3547. source: "./media/characters/akari/front.svg",
  3548. extra: 962 / 901,
  3549. bottom: 0.04
  3550. }
  3551. }
  3552. },
  3553. [
  3554. {
  3555. name: "Micro",
  3556. height: math.unit(5, "inches"),
  3557. default: true
  3558. },
  3559. {
  3560. name: "Normal",
  3561. height: math.unit(7, "feet")
  3562. },
  3563. ]
  3564. ))
  3565. characterMakers.push(() => makeCharacter(
  3566. { name: "Cynosura" },
  3567. {
  3568. front: {
  3569. height: math.unit(6, "feet"),
  3570. weight: math.unit(140, "lbs"),
  3571. name: "Front",
  3572. image: {
  3573. source: "./media/characters/cynosura/front.svg",
  3574. extra: 896 / 847
  3575. }
  3576. },
  3577. back: {
  3578. height: math.unit(6, "feet"),
  3579. weight: math.unit(140, "lbs"),
  3580. name: "Back",
  3581. image: {
  3582. source: "./media/characters/cynosura/back.svg",
  3583. extra: 1365 / 1250
  3584. }
  3585. },
  3586. },
  3587. [
  3588. {
  3589. name: "Micro",
  3590. height: math.unit(4, "inches")
  3591. },
  3592. {
  3593. name: "Normal",
  3594. height: math.unit(5.75, "feet"),
  3595. default: true
  3596. },
  3597. {
  3598. name: "Tall",
  3599. height: math.unit(10, "feet")
  3600. },
  3601. {
  3602. name: "Big",
  3603. height: math.unit(20, "feet")
  3604. },
  3605. {
  3606. name: "Macro",
  3607. height: math.unit(50, "feet")
  3608. },
  3609. ]
  3610. ))
  3611. characterMakers.push(() => makeCharacter(
  3612. { name: "Gin" },
  3613. {
  3614. front: {
  3615. height: math.unit(6, "feet"),
  3616. weight: math.unit(170, "lbs"),
  3617. name: "Front",
  3618. image: {
  3619. source: "./media/characters/gin/front.svg",
  3620. extra: 1.053,
  3621. bottom: 0.025
  3622. }
  3623. },
  3624. foot: {
  3625. height: math.unit(6 / 4.25, "feet"),
  3626. name: "Foot",
  3627. image: {
  3628. source: "./media/characters/gin/foot.svg"
  3629. }
  3630. },
  3631. sole: {
  3632. height: math.unit(6 / 4.40, "feet"),
  3633. name: "Sole",
  3634. image: {
  3635. source: "./media/characters/gin/sole.svg"
  3636. }
  3637. },
  3638. },
  3639. [
  3640. {
  3641. name: "Normal",
  3642. height: math.unit(9 + 4 / 12, "feet")
  3643. },
  3644. {
  3645. name: "Macro",
  3646. height: math.unit(1500, "feet")
  3647. },
  3648. {
  3649. name: "Megamacro",
  3650. height: math.unit(200, "miles"),
  3651. default: true
  3652. },
  3653. {
  3654. name: "Gigamacro",
  3655. height: math.unit(500, "megameters")
  3656. },
  3657. {
  3658. name: "Teramacro",
  3659. height: math.unit(15, "lightyears")
  3660. }
  3661. ]
  3662. ))
  3663. characterMakers.push(() => makeCharacter(
  3664. { name: "Guy" },
  3665. {
  3666. front: {
  3667. height: math.unit(6 + 1 / 6, "feet"),
  3668. weight: math.unit(178, "lbs"),
  3669. name: "Front",
  3670. image: {
  3671. source: "./media/characters/guy/front.svg"
  3672. }
  3673. }
  3674. },
  3675. [
  3676. {
  3677. name: "Normal",
  3678. height: math.unit(6 + 1 / 6, "feet"),
  3679. default: true
  3680. },
  3681. {
  3682. name: "Large",
  3683. height: math.unit(25 + 7 / 12, "feet")
  3684. },
  3685. {
  3686. name: "Macro",
  3687. height: math.unit(60 + 9 / 12, "feet")
  3688. },
  3689. {
  3690. name: "Macro+",
  3691. height: math.unit(246, "feet")
  3692. },
  3693. {
  3694. name: "Macro++",
  3695. height: math.unit(878, "feet")
  3696. }
  3697. ]
  3698. ))
  3699. characterMakers.push(() => makeCharacter(
  3700. { name: "Tiberius" },
  3701. {
  3702. front: {
  3703. height: math.unit(9, "feet"),
  3704. weight: math.unit(800, "lbs"),
  3705. name: "Front",
  3706. image: {
  3707. source: "./media/characters/tiberius/front.svg",
  3708. extra: 2295 / 2071
  3709. }
  3710. },
  3711. back: {
  3712. height: math.unit(9, "feet"),
  3713. weight: math.unit(800, "lbs"),
  3714. name: "Back",
  3715. image: {
  3716. source: "./media/characters/tiberius/back.svg",
  3717. extra: 2373 / 2160
  3718. }
  3719. },
  3720. },
  3721. [
  3722. {
  3723. name: "Normal",
  3724. height: math.unit(9, "feet"),
  3725. default: true
  3726. }
  3727. ]
  3728. ))
  3729. characterMakers.push(() => makeCharacter(
  3730. { name: "Surgo" },
  3731. {
  3732. front: {
  3733. height: math.unit(6, "feet"),
  3734. weight: math.unit(600, "lbs"),
  3735. name: "Front",
  3736. image: {
  3737. source: "./media/characters/surgo/front.svg",
  3738. extra: 3591 / 2227
  3739. }
  3740. },
  3741. back: {
  3742. height: math.unit(6, "feet"),
  3743. weight: math.unit(600, "lbs"),
  3744. name: "Back",
  3745. image: {
  3746. source: "./media/characters/surgo/back.svg",
  3747. extra: 3557 / 2228
  3748. }
  3749. },
  3750. laying: {
  3751. height: math.unit(6 * 0.85, "feet"),
  3752. weight: math.unit(600, "lbs"),
  3753. name: "Laying",
  3754. image: {
  3755. source: "./media/characters/surgo/laying.svg"
  3756. }
  3757. },
  3758. },
  3759. [
  3760. {
  3761. name: "Normal",
  3762. height: math.unit(6, "feet"),
  3763. default: true
  3764. }
  3765. ]
  3766. ))
  3767. characterMakers.push(() => makeCharacter(
  3768. { name: "Cibus" },
  3769. {
  3770. side: {
  3771. height: math.unit(6, "feet"),
  3772. weight: math.unit(150, "lbs"),
  3773. name: "Side",
  3774. image: {
  3775. source: "./media/characters/cibus/side.svg",
  3776. extra: 800 / 400
  3777. }
  3778. },
  3779. },
  3780. [
  3781. {
  3782. name: "Normal",
  3783. height: math.unit(6, "feet"),
  3784. default: true
  3785. }
  3786. ]
  3787. ))
  3788. characterMakers.push(() => makeCharacter(
  3789. { name: "Nibbles" },
  3790. {
  3791. front: {
  3792. height: math.unit(6, "feet"),
  3793. weight: math.unit(240, "lbs"),
  3794. name: "Front",
  3795. image: {
  3796. source: "./media/characters/nibbles/front.svg"
  3797. }
  3798. },
  3799. side: {
  3800. height: math.unit(6, "feet"),
  3801. weight: math.unit(240, "lbs"),
  3802. name: "Side",
  3803. image: {
  3804. source: "./media/characters/nibbles/side.svg"
  3805. }
  3806. },
  3807. },
  3808. [
  3809. {
  3810. name: "Normal",
  3811. height: math.unit(9, "feet"),
  3812. default: true
  3813. }
  3814. ]
  3815. ))
  3816. characterMakers.push(() => makeCharacter(
  3817. { name: "Rikky" },
  3818. {
  3819. side: {
  3820. height: math.unit(5 + 1 / 6, "feet"),
  3821. weight: math.unit(130, "lbs"),
  3822. name: "Side",
  3823. image: {
  3824. source: "./media/characters/rikky/side.svg"
  3825. }
  3826. },
  3827. },
  3828. [
  3829. {
  3830. name: "Normal",
  3831. height: math.unit(5 + 1 / 6, "feet")
  3832. },
  3833. {
  3834. name: "Macro",
  3835. height: math.unit(152, "feet"),
  3836. default: true
  3837. },
  3838. {
  3839. name: "Megamacro",
  3840. height: math.unit(7, "miles")
  3841. }
  3842. ]
  3843. ))
  3844. characterMakers.push(() => makeCharacter(
  3845. { name: "Malfressa" },
  3846. {
  3847. side: {
  3848. height: math.unit(370, "cm"),
  3849. weight: math.unit(350, "lbs"),
  3850. name: "Side",
  3851. image: {
  3852. source: "./media/characters/malfressa/side.svg"
  3853. }
  3854. },
  3855. walking: {
  3856. height: math.unit(370, "cm"),
  3857. weight: math.unit(350, "lbs"),
  3858. name: "Walking",
  3859. image: {
  3860. source: "./media/characters/malfressa/walking.svg"
  3861. }
  3862. },
  3863. feral: {
  3864. height: math.unit(2500, "cm"),
  3865. weight: math.unit(100000, "lbs"),
  3866. name: "Feral",
  3867. image: {
  3868. source: "./media/characters/malfressa/feral.svg",
  3869. extra: 2108 / 837,
  3870. bottom: 0.02
  3871. }
  3872. },
  3873. },
  3874. [
  3875. {
  3876. name: "Normal",
  3877. height: math.unit(370, "cm")
  3878. },
  3879. {
  3880. name: "Macro",
  3881. height: math.unit(300, "meters"),
  3882. default: true
  3883. }
  3884. ]
  3885. ))
  3886. characterMakers.push(() => makeCharacter(
  3887. { name: "Jaro" },
  3888. {
  3889. front: {
  3890. height: math.unit(6, "feet"),
  3891. weight: math.unit(60, "kg"),
  3892. name: "Front",
  3893. image: {
  3894. source: "./media/characters/jaro/front.svg"
  3895. }
  3896. },
  3897. back: {
  3898. height: math.unit(6, "feet"),
  3899. weight: math.unit(60, "kg"),
  3900. name: "Back",
  3901. image: {
  3902. source: "./media/characters/jaro/back.svg"
  3903. }
  3904. },
  3905. },
  3906. [
  3907. {
  3908. name: "Micro",
  3909. height: math.unit(7, "inches")
  3910. },
  3911. {
  3912. name: "Normal",
  3913. height: math.unit(5.5, "feet"),
  3914. default: true
  3915. },
  3916. {
  3917. name: "Minimacro",
  3918. height: math.unit(20, "feet")
  3919. },
  3920. {
  3921. name: "Macro",
  3922. height: math.unit(200, "meters")
  3923. }
  3924. ]
  3925. ))
  3926. characterMakers.push(() => makeCharacter(
  3927. { name: "Rogue" },
  3928. {
  3929. front: {
  3930. height: math.unit(6, "feet"),
  3931. weight: math.unit(195, "lb"),
  3932. name: "Front",
  3933. image: {
  3934. source: "./media/characters/rogue/front.svg"
  3935. }
  3936. },
  3937. },
  3938. [
  3939. {
  3940. name: "Macro",
  3941. height: math.unit(90, "feet"),
  3942. default: true
  3943. },
  3944. ]
  3945. ))
  3946. characterMakers.push(() => makeCharacter(
  3947. { name: "Piper" },
  3948. {
  3949. front: {
  3950. height: math.unit(5 + 8 / 12, "feet"),
  3951. weight: math.unit(140, "lb"),
  3952. name: "Front",
  3953. image: {
  3954. source: "./media/characters/piper/front.svg",
  3955. extra: 3928 / 3681
  3956. }
  3957. },
  3958. },
  3959. [
  3960. {
  3961. name: "Micro",
  3962. height: math.unit(2, "inches")
  3963. },
  3964. {
  3965. name: "Normal",
  3966. height: math.unit(5 + 8 / 12, "feet")
  3967. },
  3968. {
  3969. name: "Macro",
  3970. height: math.unit(250, "feet"),
  3971. default: true
  3972. },
  3973. {
  3974. name: "Megamacro",
  3975. height: math.unit(7, "miles")
  3976. },
  3977. ]
  3978. ))
  3979. characterMakers.push(() => makeCharacter(
  3980. { name: "Gemini" },
  3981. {
  3982. front: {
  3983. height: math.unit(6, "feet"),
  3984. weight: math.unit(220, "lb"),
  3985. name: "Front",
  3986. image: {
  3987. source: "./media/characters/gemini/front.svg"
  3988. }
  3989. },
  3990. back: {
  3991. height: math.unit(6, "feet"),
  3992. weight: math.unit(220, "lb"),
  3993. name: "Back",
  3994. image: {
  3995. source: "./media/characters/gemini/back.svg"
  3996. }
  3997. },
  3998. kneeling: {
  3999. height: math.unit(6 / 1.5, "feet"),
  4000. weight: math.unit(220, "lb"),
  4001. name: "Kneeling",
  4002. image: {
  4003. source: "./media/characters/gemini/kneeling.svg",
  4004. bottom: 0.02
  4005. }
  4006. },
  4007. },
  4008. [
  4009. {
  4010. name: "Macro",
  4011. height: math.unit(300, "meters"),
  4012. default: true
  4013. },
  4014. {
  4015. name: "Megamacro",
  4016. height: math.unit(6900, "meters")
  4017. },
  4018. ]
  4019. ))
  4020. characterMakers.push(() => makeCharacter(
  4021. { name: "Alicia" },
  4022. {
  4023. anthro: {
  4024. height: math.unit(2.35, "meters"),
  4025. weight: math.unit(73, "kg"),
  4026. name: "Anthro",
  4027. image: {
  4028. source: "./media/characters/alicia/anthro.svg"
  4029. }
  4030. },
  4031. feral: {
  4032. height: math.unit(1.69, "meters"),
  4033. weight: math.unit(73, "kg"),
  4034. name: "Feral",
  4035. image: {
  4036. source: "./media/characters/alicia/feral.svg"
  4037. }
  4038. },
  4039. },
  4040. [
  4041. {
  4042. name: "Normal",
  4043. height: math.unit(2.35, "meters")
  4044. },
  4045. {
  4046. name: "Macro",
  4047. height: math.unit(60, "meters"),
  4048. default: true
  4049. },
  4050. {
  4051. name: "Megamacro",
  4052. height: math.unit(10000, "kilometers")
  4053. },
  4054. ]
  4055. ))
  4056. characterMakers.push(() => makeCharacter(
  4057. { name: "Archy" },
  4058. {
  4059. front: {
  4060. height: math.unit(7, "feet"),
  4061. weight: math.unit(250, "lbs"),
  4062. name: "Front",
  4063. image: {
  4064. source: "./media/characters/archy/front.svg"
  4065. }
  4066. }
  4067. },
  4068. [
  4069. {
  4070. name: "Micro",
  4071. height: math.unit(1, "inch")
  4072. },
  4073. {
  4074. name: "Shorty",
  4075. height: math.unit(5, "feet")
  4076. },
  4077. {
  4078. name: "Normal",
  4079. height: math.unit(7, "feet")
  4080. },
  4081. {
  4082. name: "Macro",
  4083. height: math.unit(600, "meters"),
  4084. default: true
  4085. },
  4086. {
  4087. name: "Megamacro",
  4088. height: math.unit(1, "mile")
  4089. },
  4090. ]
  4091. ))
  4092. characterMakers.push(() => makeCharacter(
  4093. { name: "Berri" },
  4094. {
  4095. front: {
  4096. height: math.unit(1.65, "meters"),
  4097. weight: math.unit(74, "kg"),
  4098. name: "Front",
  4099. image: {
  4100. source: "./media/characters/berri/front.svg"
  4101. }
  4102. }
  4103. },
  4104. [
  4105. {
  4106. name: "Normal",
  4107. height: math.unit(1.65, "meters")
  4108. },
  4109. {
  4110. name: "Macro",
  4111. height: math.unit(60, "m"),
  4112. default: true
  4113. },
  4114. {
  4115. name: "Megamacro",
  4116. height: math.unit(9.213, "km")
  4117. },
  4118. {
  4119. name: "Planet Eater",
  4120. height: math.unit(489, "megameters")
  4121. },
  4122. {
  4123. name: "Teramacro",
  4124. height: math.unit(2471635000000, "meters")
  4125. },
  4126. {
  4127. name: "Examacro",
  4128. height: math.unit(8.0624e+26, "meters")
  4129. }
  4130. ]
  4131. ))
  4132. characterMakers.push(() => makeCharacter(
  4133. { name: "Lexi" },
  4134. {
  4135. front: {
  4136. height: math.unit(1.72, "meters"),
  4137. weight: math.unit(68, "kg"),
  4138. name: "Front",
  4139. image: {
  4140. source: "./media/characters/lexi/front.svg"
  4141. }
  4142. }
  4143. },
  4144. [
  4145. {
  4146. name: "Very Smol",
  4147. height: math.unit(10, "mm")
  4148. },
  4149. {
  4150. name: "Micro",
  4151. height: math.unit(6.8, "cm"),
  4152. default: true
  4153. },
  4154. {
  4155. name: "Normal",
  4156. height: math.unit(1.72, "m")
  4157. }
  4158. ]
  4159. ))
  4160. characterMakers.push(() => makeCharacter(
  4161. { name: "Martin" },
  4162. {
  4163. front: {
  4164. height: math.unit(1.69, "meters"),
  4165. weight: math.unit(68, "kg"),
  4166. name: "Front",
  4167. image: {
  4168. source: "./media/characters/martin/front.svg",
  4169. extra: 596 / 581
  4170. }
  4171. }
  4172. },
  4173. [
  4174. {
  4175. name: "Micro",
  4176. height: math.unit(6.85, "cm"),
  4177. default: true
  4178. },
  4179. {
  4180. name: "Normal",
  4181. height: math.unit(1.69, "m")
  4182. }
  4183. ]
  4184. ))
  4185. characterMakers.push(() => makeCharacter(
  4186. { name: "Juno" },
  4187. {
  4188. front: {
  4189. height: math.unit(1.69, "meters"),
  4190. weight: math.unit(68, "kg"),
  4191. name: "Front",
  4192. image: {
  4193. source: "./media/characters/juno/front.svg"
  4194. }
  4195. }
  4196. },
  4197. [
  4198. {
  4199. name: "Micro",
  4200. height: math.unit(7, "cm")
  4201. },
  4202. {
  4203. name: "Normal",
  4204. height: math.unit(1.89, "m")
  4205. },
  4206. {
  4207. name: "Macro",
  4208. height: math.unit(353, "meters"),
  4209. default: true
  4210. }
  4211. ]
  4212. ))
  4213. characterMakers.push(() => makeCharacter(
  4214. { name: "Samantha" },
  4215. {
  4216. front: {
  4217. height: math.unit(1.93, "meters"),
  4218. weight: math.unit(83, "kg"),
  4219. name: "Front",
  4220. image: {
  4221. source: "./media/characters/samantha/front.svg"
  4222. }
  4223. },
  4224. frontClothed: {
  4225. height: math.unit(1.93, "meters"),
  4226. weight: math.unit(83, "kg"),
  4227. name: "Front (Clothed)",
  4228. image: {
  4229. source: "./media/characters/samantha/front-clothed.svg"
  4230. }
  4231. },
  4232. back: {
  4233. height: math.unit(1.93, "meters"),
  4234. weight: math.unit(83, "kg"),
  4235. name: "Back",
  4236. image: {
  4237. source: "./media/characters/samantha/back.svg"
  4238. }
  4239. },
  4240. },
  4241. [
  4242. {
  4243. name: "Normal",
  4244. height: math.unit(1.93, "m")
  4245. },
  4246. {
  4247. name: "Macro",
  4248. height: math.unit(74, "meters"),
  4249. default: true
  4250. },
  4251. {
  4252. name: "Macro+",
  4253. height: math.unit(223, "meters"),
  4254. },
  4255. {
  4256. name: "Megamacro",
  4257. height: math.unit(8381, "meters"),
  4258. },
  4259. {
  4260. name: "Megamacro+",
  4261. height: math.unit(12000, "kilometers")
  4262. },
  4263. ]
  4264. ))
  4265. characterMakers.push(() => makeCharacter(
  4266. { name: "Dr. Clay" },
  4267. {
  4268. front: {
  4269. height: math.unit(1.92, "meters"),
  4270. weight: math.unit(80, "kg"),
  4271. name: "Front",
  4272. image: {
  4273. source: "./media/characters/dr-clay/front.svg"
  4274. }
  4275. },
  4276. frontClothed: {
  4277. height: math.unit(1.92, "meters"),
  4278. weight: math.unit(80, "kg"),
  4279. name: "Front (Clothed)",
  4280. image: {
  4281. source: "./media/characters/dr-clay/front-clothed.svg"
  4282. }
  4283. }
  4284. },
  4285. [
  4286. {
  4287. name: "Normal",
  4288. height: math.unit(1.92, "m")
  4289. },
  4290. {
  4291. name: "Macro",
  4292. height: math.unit(214, "meters"),
  4293. default: true
  4294. },
  4295. {
  4296. name: "Macro+",
  4297. height: math.unit(12.237, "meters"),
  4298. },
  4299. {
  4300. name: "Megamacro",
  4301. height: math.unit(557, "megameters"),
  4302. },
  4303. {
  4304. name: "Unimaginable",
  4305. height: math.unit(120e9, "lightyears")
  4306. },
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Wyvrn Ripsnarl" },
  4311. {
  4312. front: {
  4313. height: math.unit(2, "meters"),
  4314. weight: math.unit(80, "kg"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4318. }
  4319. }
  4320. },
  4321. [
  4322. {
  4323. name: "Teramacro",
  4324. height: math.unit(500000, "lightyears"),
  4325. default: true
  4326. },
  4327. ]
  4328. ))
  4329. characterMakers.push(() => makeCharacter(
  4330. { name: "Vemus" },
  4331. {
  4332. front: {
  4333. height: math.unit(2, "meters"),
  4334. weight: math.unit(150, "kg"),
  4335. name: "Front",
  4336. image: {
  4337. source: "./media/characters/vemus/front.svg",
  4338. extra: 2384 / 2084,
  4339. bottom: 0.0123
  4340. }
  4341. }
  4342. },
  4343. [
  4344. {
  4345. name: "Normal",
  4346. height: math.unit(3.75, "meters"),
  4347. default: true
  4348. },
  4349. {
  4350. name: "Big",
  4351. height: math.unit(8, "meters")
  4352. },
  4353. {
  4354. name: "Macro",
  4355. height: math.unit(100, "meters")
  4356. },
  4357. {
  4358. name: "Macro+",
  4359. height: math.unit(1500, "meters")
  4360. },
  4361. {
  4362. name: "Stellar",
  4363. height: math.unit(14e8, "meters")
  4364. },
  4365. ]
  4366. ))
  4367. characterMakers.push(() => makeCharacter(
  4368. { name: "Beherit" },
  4369. {
  4370. front: {
  4371. height: math.unit(2, "meters"),
  4372. weight: math.unit(70, "kg"),
  4373. name: "Front",
  4374. image: {
  4375. source: "./media/characters/beherit/front.svg",
  4376. extra: 1408 / 1242
  4377. }
  4378. }
  4379. },
  4380. [
  4381. {
  4382. name: "Normal",
  4383. height: math.unit(6, "feet")
  4384. },
  4385. {
  4386. name: "Lorg",
  4387. height: math.unit(25, "feet"),
  4388. default: true
  4389. },
  4390. {
  4391. name: "Lorger",
  4392. height: math.unit(75, "feet")
  4393. },
  4394. {
  4395. name: "Macro",
  4396. height: math.unit(200, "meters")
  4397. },
  4398. ]
  4399. ))
  4400. characterMakers.push(() => makeCharacter(
  4401. { name: "Everett" },
  4402. {
  4403. front: {
  4404. height: math.unit(2, "meters"),
  4405. weight: math.unit(150, "kg"),
  4406. name: "Front",
  4407. image: {
  4408. source: "./media/characters/everett/front.svg",
  4409. extra: 2038 / 1737,
  4410. bottom: 0.03
  4411. }
  4412. },
  4413. paw: {
  4414. height: math.unit(2 / 3.6, "meters"),
  4415. name: "Paw",
  4416. image: {
  4417. source: "./media/characters/everett/paw.svg"
  4418. }
  4419. },
  4420. },
  4421. [
  4422. {
  4423. name: "Normal",
  4424. height: math.unit(15, "feet"),
  4425. default: true
  4426. },
  4427. {
  4428. name: "Lorg",
  4429. height: math.unit(70, "feet"),
  4430. default: true
  4431. },
  4432. {
  4433. name: "Lorger",
  4434. height: math.unit(250, "feet")
  4435. },
  4436. {
  4437. name: "Macro",
  4438. height: math.unit(500, "meters")
  4439. },
  4440. ]
  4441. ))
  4442. characterMakers.push(() => makeCharacter(
  4443. { name: "Rose Lion" },
  4444. {
  4445. front: {
  4446. height: math.unit(2, "meters"),
  4447. weight: math.unit(86, "kg"),
  4448. name: "Front",
  4449. image: {
  4450. source: "./media/characters/rose-lion/front.svg"
  4451. }
  4452. },
  4453. bent: {
  4454. height: math.unit(2 / 1.4288, "meters"),
  4455. weight: math.unit(86, "kg"),
  4456. name: "Bent",
  4457. image: {
  4458. source: "./media/characters/rose-lion/bent.svg"
  4459. }
  4460. }
  4461. },
  4462. [
  4463. {
  4464. name: "Mini-Micro",
  4465. height: math.unit(1, "cm")
  4466. },
  4467. {
  4468. name: "Micro",
  4469. height: math.unit(3.5, "inches"),
  4470. default: true
  4471. },
  4472. {
  4473. name: "Normal",
  4474. height: math.unit(6 + 1 / 6, "feet")
  4475. },
  4476. {
  4477. name: "Mini-Macro",
  4478. height: math.unit(9 + 10 / 12, "feet")
  4479. },
  4480. ]
  4481. ))
  4482. characterMakers.push(() => makeCharacter(
  4483. { name: "Regal" },
  4484. {
  4485. front: {
  4486. height: math.unit(2, "meters"),
  4487. weight: math.unit(350, "lbs"),
  4488. name: "Front",
  4489. image: {
  4490. source: "./media/characters/regal/front.svg"
  4491. }
  4492. },
  4493. back: {
  4494. height: math.unit(2, "meters"),
  4495. weight: math.unit(350, "lbs"),
  4496. name: "Back",
  4497. image: {
  4498. source: "./media/characters/regal/back.svg"
  4499. }
  4500. },
  4501. },
  4502. [
  4503. {
  4504. name: "Macro",
  4505. height: math.unit(350, "feet"),
  4506. default: true
  4507. }
  4508. ]
  4509. ))
  4510. characterMakers.push(() => makeCharacter(
  4511. { name: "Opal" },
  4512. {
  4513. front: {
  4514. height: math.unit(4 + 11 / 12, "feet"),
  4515. weight: math.unit(100, "lbs"),
  4516. name: "Front",
  4517. image: {
  4518. source: "./media/characters/opal/front.svg"
  4519. }
  4520. },
  4521. frontAlt: {
  4522. height: math.unit(4 + 11 / 12, "feet"),
  4523. weight: math.unit(100, "lbs"),
  4524. name: "Front (Alt)",
  4525. image: {
  4526. source: "./media/characters/opal/front-alt.svg"
  4527. }
  4528. },
  4529. },
  4530. [
  4531. {
  4532. name: "Small",
  4533. height: math.unit(4 + 11 / 12, "feet")
  4534. },
  4535. {
  4536. name: "Normal",
  4537. height: math.unit(20, "feet"),
  4538. default: true
  4539. },
  4540. {
  4541. name: "Macro",
  4542. height: math.unit(120, "feet")
  4543. },
  4544. {
  4545. name: "Megamacro",
  4546. height: math.unit(80, "miles")
  4547. },
  4548. {
  4549. name: "True Size",
  4550. height: math.unit(100000, "lightyears")
  4551. },
  4552. ]
  4553. ))
  4554. characterMakers.push(() => makeCharacter(
  4555. { name: "Vector Wuff" },
  4556. {
  4557. front: {
  4558. height: math.unit(6, "feet"),
  4559. weight: math.unit(200, "lbs"),
  4560. name: "Front",
  4561. image: {
  4562. source: "./media/characters/vector-wuff/front.svg"
  4563. }
  4564. }
  4565. },
  4566. [
  4567. {
  4568. name: "Normal",
  4569. height: math.unit(2.8, "meters")
  4570. },
  4571. {
  4572. name: "Macro",
  4573. height: math.unit(450, "meters"),
  4574. default: true
  4575. },
  4576. {
  4577. name: "Megamacro",
  4578. height: math.unit(15, "kilometers")
  4579. }
  4580. ]
  4581. ))
  4582. characterMakers.push(() => makeCharacter(
  4583. { name: "Dannik" },
  4584. {
  4585. front: {
  4586. height: math.unit(6, "feet"),
  4587. weight: math.unit(256, "lbs"),
  4588. name: "Front",
  4589. image: {
  4590. source: "./media/characters/dannik/front.svg"
  4591. }
  4592. }
  4593. },
  4594. [
  4595. {
  4596. name: "Macro",
  4597. height: math.unit(69.57, "meters"),
  4598. default: true
  4599. },
  4600. ]
  4601. ))
  4602. characterMakers.push(() => makeCharacter(
  4603. { name: "Azura Saharah" },
  4604. {
  4605. front: {
  4606. height: math.unit(6, "feet"),
  4607. weight: math.unit(120, "lbs"),
  4608. name: "Front",
  4609. image: {
  4610. source: "./media/characters/azura-saharah/front.svg"
  4611. }
  4612. },
  4613. back: {
  4614. height: math.unit(6, "feet"),
  4615. weight: math.unit(120, "lbs"),
  4616. name: "Back",
  4617. image: {
  4618. source: "./media/characters/azura-saharah/back.svg"
  4619. }
  4620. },
  4621. },
  4622. [
  4623. {
  4624. name: "Macro",
  4625. height: math.unit(100, "feet"),
  4626. default: true
  4627. },
  4628. ]
  4629. ))
  4630. characterMakers.push(() => makeCharacter(
  4631. { name: "Kennedy" },
  4632. {
  4633. side: {
  4634. height: math.unit(5 + 4 / 12, "feet"),
  4635. weight: math.unit(163, "lbs"),
  4636. name: "Side",
  4637. image: {
  4638. source: "./media/characters/kennedy/side.svg"
  4639. }
  4640. }
  4641. },
  4642. [
  4643. {
  4644. name: "Standard Doggo",
  4645. height: math.unit(5 + 4 / 12, "feet")
  4646. },
  4647. {
  4648. name: "Big Doggo",
  4649. height: math.unit(25 + 3 / 12, "feet"),
  4650. default: true
  4651. },
  4652. ]
  4653. ))
  4654. characterMakers.push(() => makeCharacter(
  4655. { name: "Odi Lunar" },
  4656. {
  4657. front: {
  4658. height: math.unit(6, "feet"),
  4659. weight: math.unit(90, "lbs"),
  4660. name: "Front",
  4661. image: {
  4662. source: "./media/characters/odi-lunar/front.svg"
  4663. }
  4664. }
  4665. },
  4666. [
  4667. {
  4668. name: "Micro",
  4669. height: math.unit(3, "inches"),
  4670. default: true
  4671. },
  4672. {
  4673. name: "Normal",
  4674. height: math.unit(5.5, "feet")
  4675. }
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Mandake" },
  4680. {
  4681. back: {
  4682. height: math.unit(6, "feet"),
  4683. weight: math.unit(220, "lbs"),
  4684. name: "Back",
  4685. image: {
  4686. source: "./media/characters/mandake/back.svg"
  4687. }
  4688. }
  4689. },
  4690. [
  4691. {
  4692. name: "Normal",
  4693. height: math.unit(7, "feet"),
  4694. default: true
  4695. },
  4696. {
  4697. name: "Macro",
  4698. height: math.unit(78, "feet")
  4699. },
  4700. {
  4701. name: "Macro+",
  4702. height: math.unit(300, "meters")
  4703. },
  4704. {
  4705. name: "Macro++",
  4706. height: math.unit(2400, "feet")
  4707. },
  4708. {
  4709. name: "Megamacro",
  4710. height: math.unit(5167, "meters")
  4711. },
  4712. {
  4713. name: "Gigamacro",
  4714. height: math.unit(41769, "miles")
  4715. },
  4716. ]
  4717. ))
  4718. characterMakers.push(() => makeCharacter(
  4719. { name: "Yozey" },
  4720. {
  4721. front: {
  4722. height: math.unit(6, "feet"),
  4723. weight: math.unit(120, "lbs"),
  4724. name: "Front",
  4725. image: {
  4726. source: "./media/characters/yozey/front.svg"
  4727. }
  4728. },
  4729. frontAlt: {
  4730. height: math.unit(6, "feet"),
  4731. weight: math.unit(120, "lbs"),
  4732. name: "Front (Alt)",
  4733. image: {
  4734. source: "./media/characters/yozey/front-alt.svg"
  4735. }
  4736. },
  4737. side: {
  4738. height: math.unit(6, "feet"),
  4739. weight: math.unit(120, "lbs"),
  4740. name: "Side",
  4741. image: {
  4742. source: "./media/characters/yozey/side.svg"
  4743. }
  4744. },
  4745. },
  4746. [
  4747. {
  4748. name: "Micro",
  4749. height: math.unit(3, "inches"),
  4750. default: true
  4751. },
  4752. {
  4753. name: "Normal",
  4754. height: math.unit(6, "feet")
  4755. }
  4756. ]
  4757. ))
  4758. characterMakers.push(() => makeCharacter(
  4759. { name: "Valeska Voss" },
  4760. {
  4761. front: {
  4762. height: math.unit(6, "feet"),
  4763. weight: math.unit(103, "lbs"),
  4764. name: "Front",
  4765. image: {
  4766. source: "./media/characters/valeska-voss/front.svg"
  4767. }
  4768. }
  4769. },
  4770. [
  4771. {
  4772. name: "Mini-Sized Sub",
  4773. height: math.unit(3.1, "inches")
  4774. },
  4775. {
  4776. name: "Mid-Sized Sub",
  4777. height: math.unit(6.2, "inches")
  4778. },
  4779. {
  4780. name: "Full-Sized Sub",
  4781. height: math.unit(9.3, "inches")
  4782. },
  4783. {
  4784. name: "Normal",
  4785. height: math.unit(5 + 2 / 12, "foot"),
  4786. default: true
  4787. },
  4788. ]
  4789. ))
  4790. characterMakers.push(() => makeCharacter(
  4791. { name: "Gene Zeta" },
  4792. {
  4793. front: {
  4794. height: math.unit(6, "feet"),
  4795. weight: math.unit(160, "lbs"),
  4796. name: "Front",
  4797. image: {
  4798. source: "./media/characters/gene-zeta/front.svg",
  4799. bottom: 0.03,
  4800. extra: 1
  4801. }
  4802. }
  4803. },
  4804. [
  4805. {
  4806. name: "Normal",
  4807. height: math.unit(6.25, "foot"),
  4808. default: true
  4809. },
  4810. ]
  4811. ))
  4812. characterMakers.push(() => makeCharacter(
  4813. { name: "Razinox" },
  4814. {
  4815. front: {
  4816. height: math.unit(6, "feet"),
  4817. weight: math.unit(350, "lbs"),
  4818. name: "Front",
  4819. image: {
  4820. source: "./media/characters/razinox/front.svg",
  4821. extra: 1686 / 1548
  4822. }
  4823. },
  4824. back: {
  4825. height: math.unit(6, "feet"),
  4826. weight: math.unit(350, "lbs"),
  4827. name: "Back",
  4828. image: {
  4829. source: "./media/characters/razinox/back.svg",
  4830. extra: 1660 / 1590
  4831. }
  4832. },
  4833. },
  4834. [
  4835. {
  4836. name: "Normal",
  4837. height: math.unit(10 + 8 / 12, "foot")
  4838. },
  4839. {
  4840. name: "Minimacro",
  4841. height: math.unit(15, "foot")
  4842. },
  4843. {
  4844. name: "Macro",
  4845. height: math.unit(60, "foot"),
  4846. default: true
  4847. },
  4848. {
  4849. name: "Megamacro",
  4850. height: math.unit(5, "miles")
  4851. },
  4852. {
  4853. name: "Gigamacro",
  4854. height: math.unit(6000, "miles")
  4855. },
  4856. ]
  4857. ))
  4858. characterMakers.push(() => makeCharacter(
  4859. { name: "Cobalt" },
  4860. {
  4861. front: {
  4862. height: math.unit(6, "feet"),
  4863. weight: math.unit(150, "lbs"),
  4864. name: "Front",
  4865. image: {
  4866. source: "./media/characters/cobalt/front.svg"
  4867. }
  4868. }
  4869. },
  4870. [
  4871. {
  4872. name: "Normal",
  4873. height: math.unit(8 + 1 / 12, "foot")
  4874. },
  4875. {
  4876. name: "Macro",
  4877. height: math.unit(111, "foot"),
  4878. default: true
  4879. },
  4880. {
  4881. name: "Supracosmic",
  4882. height: math.unit(1e42, "feet")
  4883. },
  4884. ]
  4885. ))
  4886. characterMakers.push(() => makeCharacter(
  4887. { name: "Amanda" },
  4888. {
  4889. front: {
  4890. height: math.unit(6, "feet"),
  4891. weight: math.unit(140, "lbs"),
  4892. name: "Front",
  4893. image: {
  4894. source: "./media/characters/amanda/front.svg"
  4895. }
  4896. }
  4897. },
  4898. [
  4899. {
  4900. name: "Micro",
  4901. height: math.unit(5, "inches"),
  4902. default: true
  4903. },
  4904. ]
  4905. ))
  4906. characterMakers.push(() => makeCharacter(
  4907. { name: "Teal" },
  4908. {
  4909. front: {
  4910. height: math.unit(5.59, "feet"),
  4911. weight: math.unit(250, "lbs"),
  4912. name: "Front",
  4913. image: {
  4914. source: "./media/characters/teal/front.svg"
  4915. }
  4916. },
  4917. frontAlt: {
  4918. height: math.unit(6, "feet"),
  4919. weight: math.unit(250, "lbs"),
  4920. name: "Front (Alt)",
  4921. image: {
  4922. source: "./media/characters/teal/front-alt.svg",
  4923. bottom: 0.04,
  4924. extra: 1
  4925. }
  4926. },
  4927. },
  4928. [
  4929. {
  4930. name: "Normal",
  4931. height: math.unit(12, "feet"),
  4932. default: true
  4933. },
  4934. {
  4935. name: "Macro",
  4936. height: math.unit(300, "feet")
  4937. },
  4938. ]
  4939. ))
  4940. characterMakers.push(() => makeCharacter(
  4941. { name: "Ravin Amulet" },
  4942. {
  4943. frontCat: {
  4944. height: math.unit(6, "feet"),
  4945. weight: math.unit(180, "lbs"),
  4946. name: "Front (Cat)",
  4947. image: {
  4948. source: "./media/characters/ravin-amulet/front-cat.svg"
  4949. }
  4950. },
  4951. frontCatAlt: {
  4952. height: math.unit(6, "feet"),
  4953. weight: math.unit(180, "lbs"),
  4954. name: "Front (Alt, Cat)",
  4955. image: {
  4956. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  4957. }
  4958. },
  4959. frontWerewolf: {
  4960. height: math.unit(6 * 1.2, "feet"),
  4961. weight: math.unit(225, "lbs"),
  4962. name: "Front (Werewolf)",
  4963. image: {
  4964. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  4965. }
  4966. },
  4967. backWerewolf: {
  4968. height: math.unit(6 * 1.2, "feet"),
  4969. weight: math.unit(225, "lbs"),
  4970. name: "Back (Werewolf)",
  4971. image: {
  4972. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  4973. }
  4974. },
  4975. },
  4976. [
  4977. {
  4978. name: "Nano",
  4979. height: math.unit(1, "micrometer")
  4980. },
  4981. {
  4982. name: "Micro",
  4983. height: math.unit(1, "inch")
  4984. },
  4985. {
  4986. name: "Normal",
  4987. height: math.unit(6, "feet"),
  4988. default: true
  4989. },
  4990. {
  4991. name: "Macro",
  4992. height: math.unit(60, "feet")
  4993. }
  4994. ]
  4995. ))
  4996. characterMakers.push(() => makeCharacter(
  4997. { name: "Fluoresce" },
  4998. {
  4999. front: {
  5000. height: math.unit(6, "feet"),
  5001. weight: math.unit(165, "lbs"),
  5002. name: "Front",
  5003. image: {
  5004. source: "./media/characters/fluoresce/front.svg"
  5005. }
  5006. }
  5007. },
  5008. [
  5009. {
  5010. name: "Micro",
  5011. height: math.unit(6, "cm")
  5012. },
  5013. {
  5014. name: "Normal",
  5015. height: math.unit(5 + 7 / 12, "feet"),
  5016. default: true
  5017. },
  5018. {
  5019. name: "Macro",
  5020. height: math.unit(56, "feet")
  5021. },
  5022. {
  5023. name: "Megamacro",
  5024. height: math.unit(1.9, "miles")
  5025. },
  5026. ]
  5027. ))
  5028. characterMakers.push(() => makeCharacter(
  5029. { name: "Aurora" },
  5030. {
  5031. front: {
  5032. height: math.unit(9 + 6 / 12, "feet"),
  5033. weight: math.unit(523, "lbs"),
  5034. name: "Side",
  5035. image: {
  5036. source: "./media/characters/aurora/side.svg"
  5037. }
  5038. }
  5039. },
  5040. [
  5041. {
  5042. name: "Normal",
  5043. height: math.unit(9 + 6 / 12, "feet")
  5044. },
  5045. {
  5046. name: "Macro",
  5047. height: math.unit(96, "feet"),
  5048. default: true
  5049. },
  5050. {
  5051. name: "Macro+",
  5052. height: math.unit(243, "feet")
  5053. },
  5054. ]
  5055. ))
  5056. characterMakers.push(() => makeCharacter(
  5057. { name: "Ranek" },
  5058. {
  5059. front: {
  5060. height: math.unit(194, "cm"),
  5061. weight: math.unit(90, "kg"),
  5062. name: "Front",
  5063. image: {
  5064. source: "./media/characters/ranek/front.svg"
  5065. }
  5066. },
  5067. side: {
  5068. height: math.unit(194, "cm"),
  5069. weight: math.unit(90, "kg"),
  5070. name: "Side",
  5071. image: {
  5072. source: "./media/characters/ranek/side.svg"
  5073. }
  5074. },
  5075. back: {
  5076. height: math.unit(194, "cm"),
  5077. weight: math.unit(90, "kg"),
  5078. name: "Back",
  5079. image: {
  5080. source: "./media/characters/ranek/back.svg"
  5081. }
  5082. },
  5083. feral: {
  5084. height: math.unit(30, "cm"),
  5085. weight: math.unit(1.6, "lbs"),
  5086. name: "Feral",
  5087. image: {
  5088. source: "./media/characters/ranek/feral.svg"
  5089. }
  5090. },
  5091. },
  5092. [
  5093. {
  5094. name: "Normal",
  5095. height: math.unit(194, "cm"),
  5096. default: true
  5097. },
  5098. {
  5099. name: "Macro",
  5100. height: math.unit(100, "meters")
  5101. },
  5102. ]
  5103. ))
  5104. characterMakers.push(() => makeCharacter(
  5105. { name: "Andrew Cooper" },
  5106. {
  5107. front: {
  5108. height: math.unit(5 + 6 / 12, "feet"),
  5109. weight: math.unit(153, "lbs"),
  5110. name: "Front",
  5111. image: {
  5112. source: "./media/characters/andrew-cooper/front.svg"
  5113. }
  5114. },
  5115. },
  5116. [
  5117. {
  5118. name: "Nano",
  5119. height: math.unit(1, "mm")
  5120. },
  5121. {
  5122. name: "Micro",
  5123. height: math.unit(2, "inches")
  5124. },
  5125. {
  5126. name: "Normal",
  5127. height: math.unit(5 + 6 / 12, "feet"),
  5128. default: true
  5129. }
  5130. ]
  5131. ))
  5132. characterMakers.push(() => makeCharacter(
  5133. { name: "Akane Sato" },
  5134. {
  5135. front: {
  5136. height: math.unit(6, "feet"),
  5137. weight: math.unit(180, "lbs"),
  5138. name: "Front",
  5139. image: {
  5140. source: "./media/characters/akane-sato/front.svg",
  5141. extra: 1219 / 1140
  5142. }
  5143. },
  5144. back: {
  5145. height: math.unit(6, "feet"),
  5146. weight: math.unit(180, "lbs"),
  5147. name: "Back",
  5148. image: {
  5149. source: "./media/characters/akane-sato/back.svg",
  5150. extra: 1219 / 1170
  5151. }
  5152. },
  5153. },
  5154. [
  5155. {
  5156. name: "Normal",
  5157. height: math.unit(2.5, "meters")
  5158. },
  5159. {
  5160. name: "Macro",
  5161. height: math.unit(250, "meters"),
  5162. default: true
  5163. },
  5164. {
  5165. name: "Megamacro",
  5166. height: math.unit(25, "km")
  5167. },
  5168. ]
  5169. ))
  5170. characterMakers.push(() => makeCharacter(
  5171. { name: "Rook" },
  5172. {
  5173. front: {
  5174. height: math.unit(6, "feet"),
  5175. weight: math.unit(65, "kg"),
  5176. name: "Front",
  5177. image: {
  5178. source: "./media/characters/rook/front.svg",
  5179. extra: 960/950
  5180. }
  5181. }
  5182. },
  5183. [
  5184. {
  5185. name: "Normal",
  5186. height: math.unit(8.8, "feet")
  5187. },
  5188. {
  5189. name: "Macro",
  5190. height: math.unit(88, "feet"),
  5191. default: true
  5192. },
  5193. {
  5194. name: "Megamacro",
  5195. height: math.unit(8, "miles")
  5196. },
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Prodigy" },
  5201. {
  5202. front: {
  5203. height: math.unit(12 + 2 / 12, "feet"),
  5204. weight: math.unit(808, "lbs"),
  5205. name: "Front",
  5206. image: {
  5207. source: "./media/characters/prodigy/front.svg"
  5208. }
  5209. }
  5210. },
  5211. [
  5212. {
  5213. name: "Normal",
  5214. height: math.unit(12 + 2 / 12, "feet"),
  5215. default: true
  5216. },
  5217. {
  5218. name: "Macro",
  5219. height: math.unit(143, "feet")
  5220. },
  5221. {
  5222. name: "Macro+",
  5223. height: math.unit(400, "feet")
  5224. },
  5225. ]
  5226. ))
  5227. characterMakers.push(() => makeCharacter(
  5228. { name: "Daniel" },
  5229. {
  5230. front: {
  5231. height: math.unit(6, "feet"),
  5232. weight: math.unit(225, "lbs"),
  5233. name: "Front",
  5234. image: {
  5235. source: "./media/characters/daniel/front.svg"
  5236. }
  5237. },
  5238. leaning: {
  5239. height: math.unit(6, "feet"),
  5240. weight: math.unit(225, "lbs"),
  5241. name: "Leaning",
  5242. image: {
  5243. source: "./media/characters/daniel/leaning.svg"
  5244. }
  5245. },
  5246. },
  5247. [
  5248. {
  5249. name: "Macro",
  5250. height: math.unit(1000, "feet"),
  5251. default: true
  5252. },
  5253. ]
  5254. ))
  5255. characterMakers.push(() => makeCharacter(
  5256. { name: "Chiros" },
  5257. {
  5258. front: {
  5259. height: math.unit(6, "feet"),
  5260. weight: math.unit(88, "lbs"),
  5261. name: "Front",
  5262. image: {
  5263. source: "./media/characters/chiros/front.svg",
  5264. extra: 306 / 226
  5265. }
  5266. },
  5267. side: {
  5268. height: math.unit(6, "feet"),
  5269. weight: math.unit(88, "lbs"),
  5270. name: "Side",
  5271. image: {
  5272. source: "./media/characters/chiros/side.svg",
  5273. extra: 306 / 226
  5274. }
  5275. },
  5276. },
  5277. [
  5278. {
  5279. name: "Normal",
  5280. height: math.unit(6, "cm"),
  5281. default: true
  5282. },
  5283. ]
  5284. ))
  5285. characterMakers.push(() => makeCharacter(
  5286. { name: "Selka" },
  5287. {
  5288. front: {
  5289. height: math.unit(6, "feet"),
  5290. weight: math.unit(100, "lbs"),
  5291. name: "Front",
  5292. image: {
  5293. source: "./media/characters/selka/front.svg",
  5294. extra: 947 / 887
  5295. }
  5296. }
  5297. },
  5298. [
  5299. {
  5300. name: "Normal",
  5301. height: math.unit(5, "cm"),
  5302. default: true
  5303. },
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Verin" },
  5308. {
  5309. front: {
  5310. height: math.unit(8 + 3 / 12, "feet"),
  5311. weight: math.unit(424, "lbs"),
  5312. name: "Front",
  5313. image: {
  5314. source: "./media/characters/verin/front.svg",
  5315. extra: 1845 / 1550
  5316. }
  5317. },
  5318. frontArmored: {
  5319. height: math.unit(8 + 3 / 12, "feet"),
  5320. weight: math.unit(424, "lbs"),
  5321. name: "Front (Armored)",
  5322. image: {
  5323. source: "./media/characters/verin/front-armor.svg",
  5324. extra: 1845 / 1550,
  5325. bottom: 0.01
  5326. }
  5327. },
  5328. back: {
  5329. height: math.unit(8 + 3 / 12, "feet"),
  5330. weight: math.unit(424, "lbs"),
  5331. name: "Back",
  5332. image: {
  5333. source: "./media/characters/verin/back.svg",
  5334. bottom: 0.1,
  5335. extra: 1
  5336. }
  5337. },
  5338. foot: {
  5339. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5340. name: "Foot",
  5341. image: {
  5342. source: "./media/characters/verin/foot.svg"
  5343. }
  5344. },
  5345. },
  5346. [
  5347. {
  5348. name: "Normal",
  5349. height: math.unit(8 + 3 / 12, "feet")
  5350. },
  5351. {
  5352. name: "Minimacro",
  5353. height: math.unit(21, "feet"),
  5354. default: true
  5355. },
  5356. {
  5357. name: "Macro",
  5358. height: math.unit(626, "feet")
  5359. },
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Sovrim Terraquian" },
  5364. {
  5365. front: {
  5366. height: math.unit(2.718, "meters"),
  5367. weight: math.unit(150, "lbs"),
  5368. name: "Front",
  5369. image: {
  5370. source: "./media/characters/sovrim-terraquian/front.svg"
  5371. }
  5372. },
  5373. back: {
  5374. height: math.unit(2.718, "meters"),
  5375. weight: math.unit(150, "lbs"),
  5376. name: "Back",
  5377. image: {
  5378. source: "./media/characters/sovrim-terraquian/back.svg"
  5379. }
  5380. }
  5381. },
  5382. [
  5383. {
  5384. name: "Micro",
  5385. height: math.unit(2, "inches")
  5386. },
  5387. {
  5388. name: "Small",
  5389. height: math.unit(1, "meter")
  5390. },
  5391. {
  5392. name: "Normal",
  5393. height: math.unit(Math.E, "meters"),
  5394. default: true
  5395. },
  5396. {
  5397. name: "Macro",
  5398. height: math.unit(20, "meters")
  5399. },
  5400. {
  5401. name: "Macro+",
  5402. height: math.unit(400, "meters")
  5403. },
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Reece Silvermane" },
  5408. {
  5409. front: {
  5410. height: math.unit(7, "feet"),
  5411. weight: math.unit(489, "lbs"),
  5412. name: "Front",
  5413. image: {
  5414. source: "./media/characters/reece-silvermane/front.svg",
  5415. bottom: 0.02,
  5416. extra: 1
  5417. }
  5418. },
  5419. },
  5420. [
  5421. {
  5422. name: "Macro",
  5423. height: math.unit(1.5, "miles"),
  5424. default: true
  5425. },
  5426. ]
  5427. ))
  5428. characterMakers.push(() => makeCharacter(
  5429. { name: "Kane" },
  5430. {
  5431. front: {
  5432. height: math.unit(6, "feet"),
  5433. weight: math.unit(78, "kg"),
  5434. name: "Front",
  5435. image: {
  5436. source: "./media/characters/kane/front.svg",
  5437. extra: 978 / 899
  5438. }
  5439. },
  5440. },
  5441. [
  5442. {
  5443. name: "Normal",
  5444. height: math.unit(2.1, "m"),
  5445. },
  5446. {
  5447. name: "Macro",
  5448. height: math.unit(1, "km"),
  5449. default: true
  5450. },
  5451. ]
  5452. ))
  5453. characterMakers.push(() => makeCharacter(
  5454. { name: "Tegon" },
  5455. {
  5456. front: {
  5457. height: math.unit(6, "feet"),
  5458. weight: math.unit(200, "kg"),
  5459. name: "Front",
  5460. image: {
  5461. source: "./media/characters/tegon/front.svg",
  5462. bottom: 0.01,
  5463. extra: 1
  5464. }
  5465. },
  5466. },
  5467. [
  5468. {
  5469. name: "Micro",
  5470. height: math.unit(1, "inch")
  5471. },
  5472. {
  5473. name: "Normal",
  5474. height: math.unit(6 + 3 / 12, "feet"),
  5475. default: true
  5476. },
  5477. {
  5478. name: "Macro",
  5479. height: math.unit(300, "feet")
  5480. },
  5481. {
  5482. name: "Megamacro",
  5483. height: math.unit(69, "miles")
  5484. },
  5485. ]
  5486. ))
  5487. characterMakers.push(() => makeCharacter(
  5488. { name: "Arcturax" },
  5489. {
  5490. side: {
  5491. height: math.unit(6, "feet"),
  5492. weight: math.unit(2304, "lbs"),
  5493. name: "Side",
  5494. image: {
  5495. source: "./media/characters/arcturax/side.svg",
  5496. extra: 790 / 376,
  5497. bottom: 0.01
  5498. }
  5499. },
  5500. },
  5501. [
  5502. {
  5503. name: "Micro",
  5504. height: math.unit(2, "inch")
  5505. },
  5506. {
  5507. name: "Normal",
  5508. height: math.unit(6, "feet")
  5509. },
  5510. {
  5511. name: "Macro",
  5512. height: math.unit(39, "feet"),
  5513. default: true
  5514. },
  5515. {
  5516. name: "Megamacro",
  5517. height: math.unit(7, "miles")
  5518. },
  5519. ]
  5520. ))
  5521. characterMakers.push(() => makeCharacter(
  5522. { name: "Sentri" },
  5523. {
  5524. front: {
  5525. height: math.unit(6, "feet"),
  5526. weight: math.unit(50, "lbs"),
  5527. name: "Front",
  5528. image: {
  5529. source: "./media/characters/sentri/front.svg",
  5530. extra: 1750 / 1570,
  5531. bottom: 0.025
  5532. }
  5533. },
  5534. frontAlt: {
  5535. height: math.unit(6, "feet"),
  5536. weight: math.unit(50, "lbs"),
  5537. name: "Front (Alt)",
  5538. image: {
  5539. source: "./media/characters/sentri/front-alt.svg",
  5540. extra: 1750 / 1570,
  5541. bottom: 0.025
  5542. }
  5543. },
  5544. },
  5545. [
  5546. {
  5547. name: "Normal",
  5548. height: math.unit(15, "feet"),
  5549. default: true
  5550. },
  5551. {
  5552. name: "Macro",
  5553. height: math.unit(2500, "feet")
  5554. }
  5555. ]
  5556. ))
  5557. characterMakers.push(() => makeCharacter(
  5558. { name: "Corvin" },
  5559. {
  5560. front: {
  5561. height: math.unit(5 + 8 / 12, "feet"),
  5562. weight: math.unit(130, "lbs"),
  5563. name: "Front",
  5564. image: {
  5565. source: "./media/characters/corvin/front.svg",
  5566. extra: 1803 / 1629
  5567. }
  5568. },
  5569. frontShirt: {
  5570. height: math.unit(5 + 8 / 12, "feet"),
  5571. weight: math.unit(130, "lbs"),
  5572. name: "Front (Shirt)",
  5573. image: {
  5574. source: "./media/characters/corvin/front-shirt.svg",
  5575. extra: 1803 / 1629
  5576. }
  5577. },
  5578. frontPoncho: {
  5579. height: math.unit(5 + 8 / 12, "feet"),
  5580. weight: math.unit(130, "lbs"),
  5581. name: "Front (Poncho)",
  5582. image: {
  5583. source: "./media/characters/corvin/front-poncho.svg",
  5584. extra: 1803 / 1629
  5585. }
  5586. },
  5587. side: {
  5588. height: math.unit(5 + 8 / 12, "feet"),
  5589. weight: math.unit(130, "lbs"),
  5590. name: "Side",
  5591. image: {
  5592. source: "./media/characters/corvin/side.svg",
  5593. extra: 1012 / 945
  5594. }
  5595. },
  5596. back: {
  5597. height: math.unit(5 + 8 / 12, "feet"),
  5598. weight: math.unit(130, "lbs"),
  5599. name: "Back",
  5600. image: {
  5601. source: "./media/characters/corvin/back.svg",
  5602. extra: 1803 / 1629
  5603. }
  5604. },
  5605. },
  5606. [
  5607. {
  5608. name: "Micro",
  5609. height: math.unit(3, "inches")
  5610. },
  5611. {
  5612. name: "Normal",
  5613. height: math.unit(5 + 8 / 12, "feet")
  5614. },
  5615. {
  5616. name: "Macro",
  5617. height: math.unit(300, "feet"),
  5618. default: true
  5619. },
  5620. {
  5621. name: "Megamacro",
  5622. height: math.unit(500, "miles")
  5623. }
  5624. ]
  5625. ))
  5626. characterMakers.push(() => makeCharacter(
  5627. { name: "Q" },
  5628. {
  5629. front: {
  5630. height: math.unit(6, "feet"),
  5631. weight: math.unit(135, "lbs"),
  5632. name: "Front",
  5633. image: {
  5634. source: "./media/characters/q/front.svg",
  5635. extra: 854 / 752,
  5636. bottom: 0.005
  5637. }
  5638. },
  5639. back: {
  5640. height: math.unit(6, "feet"),
  5641. weight: math.unit(130, "lbs"),
  5642. name: "Back",
  5643. image: {
  5644. source: "./media/characters/q/back.svg",
  5645. extra: 854 / 752
  5646. }
  5647. },
  5648. },
  5649. [
  5650. {
  5651. name: "Macro",
  5652. height: math.unit(90, "feet"),
  5653. default: true
  5654. },
  5655. {
  5656. name: "Extra Macro",
  5657. height: math.unit(300, "feet"),
  5658. },
  5659. {
  5660. name: "BIG WALF",
  5661. height: math.unit(750, "feet"),
  5662. },
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Carley" },
  5667. {
  5668. front: {
  5669. height: math.unit(6, "feet"),
  5670. weight: math.unit(150, "lbs"),
  5671. name: "Front",
  5672. image: {
  5673. source: "./media/characters/carley/front.svg",
  5674. extra: 3927 / 3540,
  5675. bottom: 0.03
  5676. }
  5677. }
  5678. },
  5679. [
  5680. {
  5681. name: "Normal",
  5682. height: math.unit(6 + 3 / 12, "feet")
  5683. },
  5684. {
  5685. name: "Macro",
  5686. height: math.unit(185, "feet"),
  5687. default: true
  5688. },
  5689. {
  5690. name: "Megamacro",
  5691. height: math.unit(8, "miles"),
  5692. },
  5693. ]
  5694. ))
  5695. characterMakers.push(() => makeCharacter(
  5696. { name: "Citrine" },
  5697. {
  5698. front: {
  5699. height: math.unit(3, "feet"),
  5700. weight: math.unit(28, "lbs"),
  5701. name: "Front",
  5702. image: {
  5703. source: "./media/characters/citrine/front.svg"
  5704. }
  5705. }
  5706. },
  5707. [
  5708. {
  5709. name: "Normal",
  5710. height: math.unit(3, "feet"),
  5711. default: true
  5712. }
  5713. ]
  5714. ))
  5715. characterMakers.push(() => makeCharacter(
  5716. { name: "Aura Starwind" },
  5717. {
  5718. front: {
  5719. height: math.unit(14, "feet"),
  5720. weight: math.unit(1450, "kg"),
  5721. name: "Front",
  5722. image: {
  5723. source: "./media/characters/aura-starwind/front.svg",
  5724. extra: 1455 / 1335
  5725. }
  5726. },
  5727. side: {
  5728. height: math.unit(14, "feet"),
  5729. weight: math.unit(1450, "kg"),
  5730. name: "Side",
  5731. image: {
  5732. source: "./media/characters/aura-starwind/side.svg",
  5733. extra: 1654 / 1497
  5734. }
  5735. },
  5736. taur: {
  5737. height: math.unit(18, "feet"),
  5738. weight: math.unit(5500, "kg"),
  5739. name: "Taur",
  5740. image: {
  5741. source: "./media/characters/aura-starwind/taur.svg",
  5742. extra: 1760 / 1650
  5743. }
  5744. },
  5745. feral: {
  5746. height: math.unit(46, "feet"),
  5747. weight: math.unit(25000, "kg"),
  5748. name: "Feral",
  5749. image: {
  5750. source: "./media/characters/aura-starwind/feral.svg"
  5751. }
  5752. },
  5753. },
  5754. [
  5755. {
  5756. name: "Normal",
  5757. height: math.unit(14, "feet"),
  5758. default: true
  5759. },
  5760. {
  5761. name: "Macro",
  5762. height: math.unit(50, "meters")
  5763. },
  5764. {
  5765. name: "Megamacro",
  5766. height: math.unit(5000, "meters")
  5767. },
  5768. {
  5769. name: "Gigamacro",
  5770. height: math.unit(100000, "kilometers")
  5771. },
  5772. ]
  5773. ))
  5774. characterMakers.push(() => makeCharacter(
  5775. { name: "Rivet" },
  5776. {
  5777. front: {
  5778. height: math.unit(2 + 7 / 12, "feet"),
  5779. weight: math.unit(32, "lbs"),
  5780. name: "Front",
  5781. image: {
  5782. source: "./media/characters/rivet/front.svg",
  5783. extra: 1716 / 1658,
  5784. bottom: 0.03
  5785. }
  5786. },
  5787. foot: {
  5788. height: math.unit(0.551, "feet"),
  5789. name: "Rivet's Foot",
  5790. image: {
  5791. source: "./media/characters/rivet/foot.svg"
  5792. },
  5793. rename: true
  5794. }
  5795. },
  5796. [
  5797. {
  5798. name: "Micro",
  5799. height: math.unit(1.5, "inches"),
  5800. },
  5801. {
  5802. name: "Normal",
  5803. height: math.unit(2 + 7 / 12, "feet"),
  5804. default: true
  5805. },
  5806. {
  5807. name: "Macro",
  5808. height: math.unit(85, "feet")
  5809. },
  5810. {
  5811. name: "Megamacro",
  5812. height: math.unit(2.2, "km")
  5813. }
  5814. ]
  5815. ))
  5816. characterMakers.push(() => makeCharacter(
  5817. { name: "Coffee" },
  5818. {
  5819. front: {
  5820. height: math.unit(5 + 9 / 12, "feet"),
  5821. weight: math.unit(150, "lbs"),
  5822. name: "Front",
  5823. image: {
  5824. source: "./media/characters/coffee/front.svg",
  5825. extra: 3666 / 3032,
  5826. bottom: 0.04
  5827. }
  5828. },
  5829. foot: {
  5830. height: math.unit(1.29, "feet"),
  5831. name: "Foot",
  5832. image: {
  5833. source: "./media/characters/coffee/foot.svg"
  5834. }
  5835. },
  5836. },
  5837. [
  5838. {
  5839. name: "Micro",
  5840. height: math.unit(2, "inches"),
  5841. },
  5842. {
  5843. name: "Normal",
  5844. height: math.unit(5 + 9 / 12, "feet"),
  5845. default: true
  5846. },
  5847. {
  5848. name: "Macro",
  5849. height: math.unit(800, "feet")
  5850. },
  5851. {
  5852. name: "Megamacro",
  5853. height: math.unit(25, "miles")
  5854. }
  5855. ]
  5856. ))
  5857. characterMakers.push(() => makeCharacter(
  5858. { name: "Chari-Gal" },
  5859. {
  5860. front: {
  5861. height: math.unit(6, "feet"),
  5862. weight: math.unit(200, "lbs"),
  5863. name: "Front",
  5864. image: {
  5865. source: "./media/characters/chari-gal/front.svg",
  5866. extra: 1568 / 1385,
  5867. bottom: 0.047
  5868. }
  5869. },
  5870. gigantamax: {
  5871. height: math.unit(6 * 16, "feet"),
  5872. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  5873. name: "Gigantamax",
  5874. image: {
  5875. source: "./media/characters/chari-gal/gigantamax.svg",
  5876. extra: 1124 / 888,
  5877. bottom: 0.03
  5878. }
  5879. },
  5880. },
  5881. [
  5882. {
  5883. name: "Normal",
  5884. height: math.unit(5 + 7 / 12, "feet")
  5885. },
  5886. {
  5887. name: "Macro",
  5888. height: math.unit(200, "feet"),
  5889. default: true
  5890. }
  5891. ]
  5892. ))
  5893. characterMakers.push(() => makeCharacter(
  5894. { name: "Nova" },
  5895. {
  5896. front: {
  5897. height: math.unit(6, "feet"),
  5898. weight: math.unit(150, "lbs"),
  5899. name: "Front",
  5900. image: {
  5901. source: "./media/characters/nova/front.svg",
  5902. extra: 5000 / 4722,
  5903. bottom: 0.02
  5904. }
  5905. }
  5906. },
  5907. [
  5908. {
  5909. name: "Micro-",
  5910. height: math.unit(0.8, "inches")
  5911. },
  5912. {
  5913. name: "Micro",
  5914. height: math.unit(2, "inches"),
  5915. default: true
  5916. },
  5917. ]
  5918. ))
  5919. characterMakers.push(() => makeCharacter(
  5920. { name: "Argent" },
  5921. {
  5922. front: {
  5923. height: math.unit(3 + 1 / 12, "feet"),
  5924. weight: math.unit(21.7, "lbs"),
  5925. name: "Front",
  5926. image: {
  5927. source: "./media/characters/argent/front.svg",
  5928. extra: 1565 / 1416,
  5929. bottom: 0.01
  5930. }
  5931. }
  5932. },
  5933. [
  5934. {
  5935. name: "Micro",
  5936. height: math.unit(2, "inches")
  5937. },
  5938. {
  5939. name: "Normal",
  5940. height: math.unit(3 + 1 / 12, "feet"),
  5941. default: true
  5942. },
  5943. {
  5944. name: "Macro",
  5945. height: math.unit(120, "feet")
  5946. },
  5947. ]
  5948. ))
  5949. characterMakers.push(() => makeCharacter(
  5950. { name: "Mira al-Cul" },
  5951. {
  5952. lamp: {
  5953. height: math.unit(7 * 1559 / 989, "feet"),
  5954. name: "Magic Lamp",
  5955. image: {
  5956. source: "./media/characters/mira-al-cul/lamp.svg",
  5957. extra: 1617 / 1559
  5958. }
  5959. },
  5960. front: {
  5961. height: math.unit(7, "feet"),
  5962. name: "Front",
  5963. image: {
  5964. source: "./media/characters/mira-al-cul/front.svg",
  5965. extra: 1044 / 990
  5966. }
  5967. },
  5968. },
  5969. [
  5970. {
  5971. name: "Heavily Restricted",
  5972. height: math.unit(7 * 1559 / 989, "feet")
  5973. },
  5974. {
  5975. name: "Freshly Freed",
  5976. height: math.unit(50 * 1559 / 989, "feet")
  5977. },
  5978. {
  5979. name: "World Encompassing",
  5980. height: math.unit(10000 * 1559 / 989, "miles")
  5981. },
  5982. {
  5983. name: "Galactic",
  5984. height: math.unit(1.433 * 1559 / 989, "zettameters")
  5985. },
  5986. {
  5987. name: "Palmed Universe",
  5988. height: math.unit(6000 * 1559 / 989, "yottameters"),
  5989. default: true
  5990. },
  5991. {
  5992. name: "Multiversal Matriarch",
  5993. height: math.unit(8.87e10, "yottameters")
  5994. },
  5995. {
  5996. name: "Void Mother",
  5997. height: math.unit(3.14e110, "yottaparsecs")
  5998. },
  5999. ]
  6000. ))
  6001. characterMakers.push(() => makeCharacter(
  6002. { name: "Kuro-shi Uchū" },
  6003. {
  6004. front: {
  6005. height: math.unit(17 + 1 / 12, "feet"),
  6006. weight: math.unit(476.2 * 5, "lbs"),
  6007. name: "Front",
  6008. image: {
  6009. source: "./media/characters/kuro-shi-uchū/front.svg",
  6010. extra: 2329 / 1835,
  6011. bottom: 0.02
  6012. }
  6013. },
  6014. },
  6015. [
  6016. {
  6017. name: "Micro",
  6018. height: math.unit(2, "inches")
  6019. },
  6020. {
  6021. name: "Normal",
  6022. height: math.unit(12, "meters")
  6023. },
  6024. {
  6025. name: "Planetary",
  6026. height: math.unit(0.00929, "AU"),
  6027. default: true
  6028. },
  6029. {
  6030. name: "Universal",
  6031. height: math.unit(20, "gigaparsecs")
  6032. },
  6033. ]
  6034. ))
  6035. characterMakers.push(() => makeCharacter(
  6036. { name: "Katherine" },
  6037. {
  6038. front: {
  6039. height: math.unit(5 + 2 / 12, "feet"),
  6040. weight: math.unit(120, "lbs"),
  6041. name: "Front",
  6042. image: {
  6043. source: "./media/characters/katherine/front.svg",
  6044. extra: 2075 / 1969
  6045. }
  6046. },
  6047. dress: {
  6048. height: math.unit(5 + 2 / 12, "feet"),
  6049. weight: math.unit(120, "lbs"),
  6050. name: "Dress",
  6051. image: {
  6052. source: "./media/characters/katherine/dress.svg",
  6053. extra: 2258 / 2064
  6054. }
  6055. },
  6056. },
  6057. [
  6058. {
  6059. name: "Micro",
  6060. height: math.unit(1, "inches"),
  6061. default: true
  6062. },
  6063. {
  6064. name: "Normal",
  6065. height: math.unit(5 + 2 / 12, "feet")
  6066. },
  6067. {
  6068. name: "Macro",
  6069. height: math.unit(100, "meters")
  6070. },
  6071. {
  6072. name: "Megamacro",
  6073. height: math.unit(80, "miles")
  6074. },
  6075. ]
  6076. ))
  6077. characterMakers.push(() => makeCharacter(
  6078. { name: "Yevis" },
  6079. {
  6080. front: {
  6081. height: math.unit(7 + 8 / 12, "feet"),
  6082. weight: math.unit(250, "lbs"),
  6083. name: "Front",
  6084. image: {
  6085. source: "./media/characters/yevis/front.svg",
  6086. extra: 1938 / 1755
  6087. }
  6088. }
  6089. },
  6090. [
  6091. {
  6092. name: "Mortal",
  6093. height: math.unit(7 + 8 / 12, "feet")
  6094. },
  6095. {
  6096. name: "Battle",
  6097. height: math.unit(25 + 11 / 12, "feet")
  6098. },
  6099. {
  6100. name: "Wrath",
  6101. height: math.unit(1654 + 11 / 12, "feet")
  6102. },
  6103. {
  6104. name: "Planet Destroyer",
  6105. height: math.unit(12000, "miles")
  6106. },
  6107. {
  6108. name: "Galaxy Conqueror",
  6109. height: math.unit(1.45, "zettameters"),
  6110. default: true
  6111. },
  6112. {
  6113. name: "Universal War",
  6114. height: math.unit(184, "gigaparsecs")
  6115. },
  6116. {
  6117. name: "Eternity War",
  6118. height: math.unit(1.98e55, "yottaparsecs")
  6119. },
  6120. ]
  6121. ))
  6122. characterMakers.push(() => makeCharacter(
  6123. { name: "Xavier" },
  6124. {
  6125. front: {
  6126. height: math.unit(5 + 8 / 12, "feet"),
  6127. weight: math.unit(63, "kg"),
  6128. name: "Front",
  6129. image: {
  6130. source: "./media/characters/xavier/front.svg",
  6131. extra: 944 / 883
  6132. }
  6133. },
  6134. frontStretch: {
  6135. height: math.unit(5 + 8 / 12, "feet"),
  6136. weight: math.unit(63, "kg"),
  6137. name: "Stretching",
  6138. image: {
  6139. source: "./media/characters/xavier/front-stretch.svg",
  6140. extra: 962 / 820
  6141. }
  6142. },
  6143. },
  6144. [
  6145. {
  6146. name: "Normal",
  6147. height: math.unit(5 + 8 / 12, "feet")
  6148. },
  6149. {
  6150. name: "Macro",
  6151. height: math.unit(100, "meters"),
  6152. default: true
  6153. },
  6154. {
  6155. name: "McLargeHuge",
  6156. height: math.unit(10, "miles")
  6157. },
  6158. ]
  6159. ))
  6160. characterMakers.push(() => makeCharacter(
  6161. { name: "Joshii" },
  6162. {
  6163. front: {
  6164. height: math.unit(5 + 5 / 12, "feet"),
  6165. weight: math.unit(150, "lb"),
  6166. name: "Front",
  6167. image: {
  6168. source: "./media/characters/joshii/front.svg"
  6169. }
  6170. },
  6171. foot: {
  6172. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6173. name: "Foot",
  6174. image: {
  6175. source: "./media/characters/joshii/foot.svg"
  6176. }
  6177. },
  6178. },
  6179. [
  6180. {
  6181. name: "Micro",
  6182. height: math.unit(2, "inches")
  6183. },
  6184. {
  6185. name: "Normal",
  6186. height: math.unit(5 + 5 / 12, "feet"),
  6187. default: true
  6188. },
  6189. {
  6190. name: "Macro",
  6191. height: math.unit(785, "feet")
  6192. },
  6193. {
  6194. name: "Megamacro",
  6195. height: math.unit(24.5, "miles")
  6196. },
  6197. ]
  6198. ))
  6199. characterMakers.push(() => makeCharacter(
  6200. { name: "Goddess Elizabeth" },
  6201. {
  6202. front: {
  6203. height: math.unit(6, "feet"),
  6204. weight: math.unit(150, "lb"),
  6205. name: "Front",
  6206. image: {
  6207. source: "./media/characters/goddess-elizabeth/front.svg",
  6208. extra: 1800 / 1525,
  6209. bottom: 0.005
  6210. }
  6211. },
  6212. foot: {
  6213. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6214. name: "Foot",
  6215. image: {
  6216. source: "./media/characters/goddess-elizabeth/foot.svg"
  6217. }
  6218. },
  6219. },
  6220. [
  6221. {
  6222. name: "Micro",
  6223. height: math.unit(12, "feet")
  6224. },
  6225. {
  6226. name: "Normal",
  6227. height: math.unit(80, "miles"),
  6228. default: true
  6229. },
  6230. {
  6231. name: "Macro",
  6232. height: math.unit(15000, "parsecs")
  6233. },
  6234. ]
  6235. ))
  6236. characterMakers.push(() => makeCharacter(
  6237. { name: "Kara" },
  6238. {
  6239. front: {
  6240. height: math.unit(5 + 9 / 12, "feet"),
  6241. weight: math.unit(144, "lb"),
  6242. name: "Front",
  6243. image: {
  6244. source: "./media/characters/kara/front.svg"
  6245. }
  6246. },
  6247. feet: {
  6248. height: math.unit(6 / 6.765, "feet"),
  6249. name: "Kara's Feet",
  6250. rename: true,
  6251. image: {
  6252. source: "./media/characters/kara/feet.svg"
  6253. }
  6254. },
  6255. },
  6256. [
  6257. {
  6258. name: "Normal",
  6259. height: math.unit(5 + 9 / 12, "feet")
  6260. },
  6261. {
  6262. name: "Macro",
  6263. height: math.unit(174, "feet"),
  6264. default: true
  6265. },
  6266. ]
  6267. ))
  6268. characterMakers.push(() => makeCharacter(
  6269. { name: "Tyrone" },
  6270. {
  6271. front: {
  6272. height: math.unit(18, "feet"),
  6273. weight: math.unit(4050, "lb"),
  6274. name: "Front",
  6275. image: {
  6276. source: "./media/characters/tyrone/front.svg",
  6277. extra: 2520 / 2402,
  6278. bottom: 0.025
  6279. }
  6280. },
  6281. },
  6282. [
  6283. {
  6284. name: "Normal",
  6285. height: math.unit(18, "feet"),
  6286. default: true
  6287. },
  6288. {
  6289. name: "Macro",
  6290. height: math.unit(300, "feet")
  6291. },
  6292. ]
  6293. ))
  6294. characterMakers.push(() => makeCharacter(
  6295. { name: "Danny" },
  6296. {
  6297. front: {
  6298. height: math.unit(7 + 8 / 12, "feet"),
  6299. weight: math.unit(120, "lb"),
  6300. name: "Front",
  6301. image: {
  6302. source: "./media/characters/danny/front.svg",
  6303. extra: 1490 / 1350
  6304. }
  6305. },
  6306. back: {
  6307. height: math.unit(7 + 8 / 12, "feet"),
  6308. weight: math.unit(120, "lb"),
  6309. name: "Back",
  6310. image: {
  6311. source: "./media/characters/danny/back.svg",
  6312. extra: 1490 / 1350
  6313. }
  6314. },
  6315. },
  6316. [
  6317. {
  6318. name: "Normal",
  6319. height: math.unit(7 + 8 / 12, "feet"),
  6320. default: true
  6321. },
  6322. ]
  6323. ))
  6324. characterMakers.push(() => makeCharacter(
  6325. { name: "Mallow" },
  6326. {
  6327. front: {
  6328. height: math.unit(3.5, "inches"),
  6329. weight: math.unit(19, "grams"),
  6330. name: "Front",
  6331. image: {
  6332. source: "./media/characters/mallow/front.svg",
  6333. extra: 471 / 431
  6334. }
  6335. },
  6336. back: {
  6337. height: math.unit(3.5, "inches"),
  6338. weight: math.unit(19, "grams"),
  6339. name: "Back",
  6340. image: {
  6341. source: "./media/characters/mallow/back.svg",
  6342. extra: 471 / 431
  6343. }
  6344. },
  6345. },
  6346. [
  6347. {
  6348. name: "Normal",
  6349. height: math.unit(3.5, "inches"),
  6350. default: true
  6351. },
  6352. ]
  6353. ))
  6354. characterMakers.push(() => makeCharacter(
  6355. { name: "Starry Aqua" },
  6356. {
  6357. front: {
  6358. height: math.unit(9, "feet"),
  6359. weight: math.unit(230, "kg"),
  6360. name: "Front",
  6361. image: {
  6362. source: "./media/characters/starry-aqua/front.svg"
  6363. }
  6364. },
  6365. back: {
  6366. height: math.unit(9, "feet"),
  6367. weight: math.unit(230, "kg"),
  6368. name: "Back",
  6369. image: {
  6370. source: "./media/characters/starry-aqua/back.svg"
  6371. }
  6372. },
  6373. hand: {
  6374. height: math.unit(9 * 0.1168, "feet"),
  6375. name: "Hand",
  6376. image: {
  6377. source: "./media/characters/starry-aqua/hand.svg"
  6378. }
  6379. },
  6380. foot: {
  6381. height: math.unit(9 * 0.18, "feet"),
  6382. name: "Foot",
  6383. image: {
  6384. source: "./media/characters/starry-aqua/foot.svg"
  6385. }
  6386. }
  6387. },
  6388. [
  6389. {
  6390. name: "Micro",
  6391. height: math.unit(3, "inches")
  6392. },
  6393. {
  6394. name: "Normal",
  6395. height: math.unit(9, "feet")
  6396. },
  6397. {
  6398. name: "Macro",
  6399. height: math.unit(300, "feet"),
  6400. default: true
  6401. },
  6402. {
  6403. name: "Megamacro",
  6404. height: math.unit(3200, "feet")
  6405. }
  6406. ]
  6407. ))
  6408. characterMakers.push(() => makeCharacter(
  6409. { name: "Luka" },
  6410. {
  6411. front: {
  6412. height: math.unit(6, "feet"),
  6413. weight: math.unit(230, "lb"),
  6414. name: "Front",
  6415. image: {
  6416. source: "./media/characters/luka/front.svg",
  6417. extra: 1,
  6418. bottom: 0.025
  6419. }
  6420. },
  6421. },
  6422. [
  6423. {
  6424. name: "Normal",
  6425. height: math.unit(12 + 8 / 12, "feet"),
  6426. default: true
  6427. },
  6428. {
  6429. name: "Minimacro",
  6430. height: math.unit(20, "feet")
  6431. },
  6432. {
  6433. name: "Macro",
  6434. height: math.unit(250, "feet")
  6435. },
  6436. {
  6437. name: "Megamacro",
  6438. height: math.unit(5, "miles")
  6439. },
  6440. {
  6441. name: "Gigamacro",
  6442. height: math.unit(8000, "miles")
  6443. },
  6444. ]
  6445. ))
  6446. characterMakers.push(() => makeCharacter(
  6447. { name: "Natalie Nightring" },
  6448. {
  6449. front: {
  6450. height: math.unit(6, "feet"),
  6451. weight: math.unit(150, "lb"),
  6452. name: "Front",
  6453. image: {
  6454. source: "./media/characters/natalie-nightring/front.svg",
  6455. extra: 1,
  6456. bottom: 0.06
  6457. }
  6458. },
  6459. },
  6460. [
  6461. {
  6462. name: "Uh Oh",
  6463. height: math.unit(0.1, "mm")
  6464. },
  6465. {
  6466. name: "Small",
  6467. height: math.unit(3, "inches")
  6468. },
  6469. {
  6470. name: "Human Scale",
  6471. height: math.unit(6, "feet")
  6472. },
  6473. {
  6474. name: "Librarian",
  6475. height: math.unit(50, "feet"),
  6476. default: true
  6477. },
  6478. {
  6479. name: "Immense",
  6480. height: math.unit(200, "miles")
  6481. },
  6482. ]
  6483. ))
  6484. characterMakers.push(() => makeCharacter(
  6485. { name: "Danni Rosie" },
  6486. {
  6487. front: {
  6488. height: math.unit(6, "feet"),
  6489. weight: math.unit(180, "lbs"),
  6490. name: "Front",
  6491. image: {
  6492. source: "./media/characters/danni-rosie/front.svg",
  6493. extra: 1260 / 1128,
  6494. bottom: 0.022
  6495. }
  6496. },
  6497. },
  6498. [
  6499. {
  6500. name: "Micro",
  6501. height: math.unit(2, "inches"),
  6502. default: true
  6503. },
  6504. ]
  6505. ))
  6506. characterMakers.push(() => makeCharacter(
  6507. { name: "Samantha Kruse" },
  6508. {
  6509. front: {
  6510. height: math.unit(5 + 9 / 12, "feet"),
  6511. weight: math.unit(220, "lb"),
  6512. name: "Front",
  6513. image: {
  6514. source: "./media/characters/samantha-kruse/front.svg",
  6515. extra: (985 / 935),
  6516. bottom: 0.03
  6517. }
  6518. },
  6519. frontUndressed: {
  6520. height: math.unit(5 + 9 / 12, "feet"),
  6521. weight: math.unit(220, "lb"),
  6522. name: "Front (Undressed)",
  6523. image: {
  6524. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6525. extra: (973 / 923),
  6526. bottom: 0.025
  6527. }
  6528. },
  6529. fat: {
  6530. height: math.unit(5 + 9 / 12, "feet"),
  6531. weight: math.unit(900, "lb"),
  6532. name: "Front (Fat)",
  6533. image: {
  6534. source: "./media/characters/samantha-kruse/fat.svg",
  6535. extra: 2688 / 2561
  6536. }
  6537. },
  6538. },
  6539. [
  6540. {
  6541. name: "Normal",
  6542. height: math.unit(5 + 9 / 12, "feet"),
  6543. default: true
  6544. }
  6545. ]
  6546. ))
  6547. characterMakers.push(() => makeCharacter(
  6548. { name: "Amelia Rosie" },
  6549. {
  6550. back: {
  6551. height: math.unit(5 + 4 / 12, "feet"),
  6552. weight: math.unit(4963, "lb"),
  6553. name: "Back",
  6554. image: {
  6555. source: "./media/characters/amelia-rosie/back.svg",
  6556. extra: 1113 / 963,
  6557. bottom: 0.01
  6558. }
  6559. },
  6560. },
  6561. [
  6562. {
  6563. name: "Level 0",
  6564. height: math.unit(5 + 4 / 12, "feet")
  6565. },
  6566. {
  6567. name: "Level 1",
  6568. height: math.unit(164597, "feet"),
  6569. default: true
  6570. },
  6571. {
  6572. name: "Level 2",
  6573. height: math.unit(956243, "miles")
  6574. },
  6575. {
  6576. name: "Level 3",
  6577. height: math.unit(29421709423, "miles")
  6578. },
  6579. {
  6580. name: "Level 4",
  6581. height: math.unit(154, "lightyears")
  6582. },
  6583. {
  6584. name: "Level 5",
  6585. height: math.unit(4738272, "lightyears")
  6586. },
  6587. {
  6588. name: "Level 6",
  6589. height: math.unit(145787152896, "lightyears")
  6590. },
  6591. ]
  6592. ))
  6593. characterMakers.push(() => makeCharacter(
  6594. { name: "Rook Kitara" },
  6595. {
  6596. front: {
  6597. height: math.unit(5 + 11 / 12, "feet"),
  6598. weight: math.unit(65, "kg"),
  6599. name: "Front",
  6600. image: {
  6601. source: "./media/characters/rook-kitara/front.svg",
  6602. extra: 1347 / 1274,
  6603. bottom: 0.005
  6604. }
  6605. },
  6606. },
  6607. [
  6608. {
  6609. name: "Totally Unfair",
  6610. height: math.unit(1.8, "mm")
  6611. },
  6612. {
  6613. name: "Lap Rookie",
  6614. height: math.unit(1.4, "feet")
  6615. },
  6616. {
  6617. name: "Normal",
  6618. height: math.unit(5 + 11 / 12, "feet"),
  6619. default: true
  6620. },
  6621. {
  6622. name: "How Did This Happen",
  6623. height: math.unit(80, "miles")
  6624. }
  6625. ]
  6626. ))
  6627. characterMakers.push(() => makeCharacter(
  6628. { name: "Pisces" },
  6629. {
  6630. front: {
  6631. height: math.unit(7, "feet"),
  6632. weight: math.unit(300, "lb"),
  6633. name: "Front",
  6634. image: {
  6635. source: "./media/characters/pisces/front.svg",
  6636. extra: 2255 / 2115,
  6637. bottom: 0.03
  6638. }
  6639. },
  6640. back: {
  6641. height: math.unit(7, "feet"),
  6642. weight: math.unit(300, "lb"),
  6643. name: "Back",
  6644. image: {
  6645. source: "./media/characters/pisces/back.svg",
  6646. extra: 2146 / 2055,
  6647. bottom: 0.04
  6648. }
  6649. },
  6650. },
  6651. [
  6652. {
  6653. name: "Normal",
  6654. height: math.unit(7, "feet"),
  6655. default: true
  6656. },
  6657. {
  6658. name: "Swimming Pool",
  6659. height: math.unit(12.2, "meters")
  6660. },
  6661. {
  6662. name: "Olympic Swimming Pool",
  6663. height: math.unit(56.3, "meters")
  6664. },
  6665. {
  6666. name: "Lake Superior",
  6667. height: math.unit(93900, "meters")
  6668. },
  6669. {
  6670. name: "Mediterranean Sea",
  6671. height: math.unit(644457, "meters")
  6672. },
  6673. {
  6674. name: "World's Oceans",
  6675. height: math.unit(4567491, "meters")
  6676. },
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Zelas" },
  6681. {
  6682. front: {
  6683. height: math.unit(2.3, "meters"),
  6684. weight: math.unit(120, "kg"),
  6685. name: "Front",
  6686. image: {
  6687. source: "./media/characters/zelas/front.svg"
  6688. }
  6689. },
  6690. side: {
  6691. height: math.unit(2.3, "meters"),
  6692. weight: math.unit(120, "kg"),
  6693. name: "Side",
  6694. image: {
  6695. source: "./media/characters/zelas/side.svg"
  6696. }
  6697. },
  6698. back: {
  6699. height: math.unit(2.3, "meters"),
  6700. weight: math.unit(120, "kg"),
  6701. name: "Back",
  6702. image: {
  6703. source: "./media/characters/zelas/back.svg"
  6704. }
  6705. },
  6706. foot: {
  6707. height: math.unit(1.116, "feet"),
  6708. name: "Foot",
  6709. image: {
  6710. source: "./media/characters/zelas/foot.svg"
  6711. }
  6712. },
  6713. },
  6714. [
  6715. {
  6716. name: "Normal",
  6717. height: math.unit(2.3, "meters")
  6718. },
  6719. {
  6720. name: "Macro",
  6721. height: math.unit(30, "meters"),
  6722. default: true
  6723. },
  6724. ]
  6725. ))
  6726. characterMakers.push(() => makeCharacter(
  6727. { name: "Talbot" },
  6728. {
  6729. front: {
  6730. height: math.unit(1, "inch"),
  6731. weight: math.unit(0.21, "grams"),
  6732. name: "Front",
  6733. image: {
  6734. source: "./media/characters/talbot/front.svg",
  6735. extra: 594 / 544
  6736. }
  6737. },
  6738. },
  6739. [
  6740. {
  6741. name: "Micro",
  6742. height: math.unit(1, "inch"),
  6743. default: true
  6744. },
  6745. ]
  6746. ))
  6747. characterMakers.push(() => makeCharacter(
  6748. { name: "Fliss" },
  6749. {
  6750. front: {
  6751. height: math.unit(3 + 3 / 12, "feet"),
  6752. weight: math.unit(51.8, "lb"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/fliss/front.svg",
  6756. extra: 840 / 640
  6757. }
  6758. },
  6759. },
  6760. [
  6761. {
  6762. name: "Teeny Tiny",
  6763. height: math.unit(1, "mm")
  6764. },
  6765. {
  6766. name: "Small",
  6767. height: math.unit(1, "inch"),
  6768. default: true
  6769. },
  6770. {
  6771. name: "Standard Sylveon",
  6772. height: math.unit(3 + 3 / 12, "feet")
  6773. },
  6774. {
  6775. name: "Large Nuisance",
  6776. height: math.unit(33, "feet")
  6777. },
  6778. {
  6779. name: "City Filler",
  6780. height: math.unit(3000, "feet")
  6781. },
  6782. {
  6783. name: "New Horizon",
  6784. height: math.unit(6000, "miles")
  6785. },
  6786. ]
  6787. ))
  6788. characterMakers.push(() => makeCharacter(
  6789. { name: "Fleta" },
  6790. {
  6791. front: {
  6792. height: math.unit(5, "cm"),
  6793. weight: math.unit(1.94, "g"),
  6794. name: "Front",
  6795. image: {
  6796. source: "./media/characters/fleta/front.svg",
  6797. extra: 835 / 803
  6798. }
  6799. },
  6800. back: {
  6801. height: math.unit(5, "cm"),
  6802. weight: math.unit(1.94, "g"),
  6803. name: "Back",
  6804. image: {
  6805. source: "./media/characters/fleta/back.svg",
  6806. extra: 835 / 803
  6807. }
  6808. },
  6809. },
  6810. [
  6811. {
  6812. name: "Micro",
  6813. height: math.unit(5, "cm"),
  6814. default: true
  6815. },
  6816. ]
  6817. ))
  6818. characterMakers.push(() => makeCharacter(
  6819. { name: "Dominic" },
  6820. {
  6821. front: {
  6822. height: math.unit(6, "feet"),
  6823. weight: math.unit(225, "lb"),
  6824. name: "Front",
  6825. image: {
  6826. source: "./media/characters/dominic/front.svg",
  6827. extra: 1770 / 1620,
  6828. bottom: 0.025
  6829. }
  6830. },
  6831. back: {
  6832. height: math.unit(6, "feet"),
  6833. weight: math.unit(225, "lb"),
  6834. name: "Back",
  6835. image: {
  6836. source: "./media/characters/dominic/back.svg",
  6837. extra: 1745 / 1620,
  6838. bottom: 0.065
  6839. }
  6840. },
  6841. },
  6842. [
  6843. {
  6844. name: "Nano",
  6845. height: math.unit(0.1, "mm")
  6846. },
  6847. {
  6848. name: "Micro-",
  6849. height: math.unit(1, "mm")
  6850. },
  6851. {
  6852. name: "Micro",
  6853. height: math.unit(4, "inches")
  6854. },
  6855. {
  6856. name: "Normal",
  6857. height: math.unit(6 + 4 / 12, "feet"),
  6858. default: true
  6859. },
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(115, "feet")
  6863. },
  6864. {
  6865. name: "Macro+",
  6866. height: math.unit(955, "feet")
  6867. },
  6868. {
  6869. name: "Megamacro",
  6870. height: math.unit(8990, "feet")
  6871. },
  6872. {
  6873. name: "Gigmacro",
  6874. height: math.unit(9310, "miles")
  6875. },
  6876. {
  6877. name: "Teramacro",
  6878. height: math.unit(1567005010, "miles")
  6879. },
  6880. {
  6881. name: "Examacro",
  6882. height: math.unit(1425, "parsecs")
  6883. },
  6884. ]
  6885. ))
  6886. characterMakers.push(() => makeCharacter(
  6887. { name: "Major Colonel" },
  6888. {
  6889. front: {
  6890. height: math.unit(400, "feet"),
  6891. weight: math.unit(44444444, "lb"),
  6892. name: "Front",
  6893. image: {
  6894. source: "./media/characters/major-colonel/front.svg"
  6895. }
  6896. },
  6897. back: {
  6898. height: math.unit(400, "feet"),
  6899. weight: math.unit(44444444, "lb"),
  6900. name: "Back",
  6901. image: {
  6902. source: "./media/characters/major-colonel/back.svg"
  6903. }
  6904. },
  6905. },
  6906. [
  6907. {
  6908. name: "Macro",
  6909. height: math.unit(400, "feet"),
  6910. default: true
  6911. },
  6912. ]
  6913. ))
  6914. characterMakers.push(() => makeCharacter(
  6915. { name: "Axel Lycan" },
  6916. {
  6917. front: {
  6918. height: math.unit(6, "feet"),
  6919. weight: math.unit(120, "lb"),
  6920. name: "Front",
  6921. image: {
  6922. source: "./media/characters/axel-lycan/front.svg",
  6923. extra: 1,
  6924. bottom: 0.08
  6925. }
  6926. },
  6927. },
  6928. [
  6929. {
  6930. name: "Macro",
  6931. height: math.unit(1, "km"),
  6932. default: true
  6933. },
  6934. ]
  6935. ))
  6936. characterMakers.push(() => makeCharacter(
  6937. { name: "Vanrel (Hyena)" },
  6938. {
  6939. front: {
  6940. height: math.unit(5 + 9 / 12, "feet"),
  6941. weight: math.unit(175, "lb"),
  6942. name: "Front",
  6943. image: {
  6944. source: "./media/characters/vanrel-hyena/front.svg",
  6945. extra: 1086 / 1010,
  6946. bottom: 0.04
  6947. }
  6948. },
  6949. },
  6950. [
  6951. {
  6952. name: "Normal",
  6953. height: math.unit(5 + 9 / 12, "feet"),
  6954. default: true
  6955. },
  6956. ]
  6957. ))
  6958. characterMakers.push(() => makeCharacter(
  6959. { name: "Abbott Absol" },
  6960. {
  6961. front: {
  6962. height: math.unit(6, "feet"),
  6963. weight: math.unit(103, "lb"),
  6964. name: "Front",
  6965. image: {
  6966. source: "./media/characters/abbott-absol/front.svg",
  6967. extra: 2010 / 1842
  6968. }
  6969. },
  6970. },
  6971. [
  6972. {
  6973. name: "Megamicro",
  6974. height: math.unit(0.1, "mm")
  6975. },
  6976. {
  6977. name: "Micro",
  6978. height: math.unit(1, "inch")
  6979. },
  6980. {
  6981. name: "Normal",
  6982. height: math.unit(6, "feet"),
  6983. default: true
  6984. },
  6985. ]
  6986. ))
  6987. characterMakers.push(() => makeCharacter(
  6988. { name: "Hector" },
  6989. {
  6990. front: {
  6991. height: math.unit(6, "feet"),
  6992. weight: math.unit(264, "lb"),
  6993. name: "Front",
  6994. image: {
  6995. source: "./media/characters/hector/front.svg",
  6996. extra: 2280 / 2130,
  6997. bottom: 0.07
  6998. }
  6999. },
  7000. },
  7001. [
  7002. {
  7003. name: "Normal",
  7004. height: math.unit(12.25, "foot"),
  7005. default: true
  7006. },
  7007. {
  7008. name: "Macro",
  7009. height: math.unit(160, "feet")
  7010. },
  7011. ]
  7012. ))
  7013. characterMakers.push(() => makeCharacter(
  7014. { name: "Sal" },
  7015. {
  7016. front: {
  7017. height: math.unit(6, "feet"),
  7018. weight: math.unit(150, "lb"),
  7019. name: "Front",
  7020. image: {
  7021. source: "./media/characters/sal/front.svg",
  7022. extra: 1846 / 1699,
  7023. bottom: 0.04
  7024. }
  7025. },
  7026. },
  7027. [
  7028. {
  7029. name: "Megamacro",
  7030. height: math.unit(10, "miles"),
  7031. default: true
  7032. },
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Ranger" },
  7037. {
  7038. front: {
  7039. height: math.unit(3, "meters"),
  7040. weight: math.unit(450, "kg"),
  7041. name: "front",
  7042. image: {
  7043. source: "./media/characters/ranger/front.svg",
  7044. extra: 2401 / 2243,
  7045. bottom: 0.05
  7046. }
  7047. },
  7048. },
  7049. [
  7050. {
  7051. name: "Normal",
  7052. height: math.unit(3, "meters"),
  7053. default: true
  7054. },
  7055. ]
  7056. ))
  7057. characterMakers.push(() => makeCharacter(
  7058. { name: "Theresa" },
  7059. {
  7060. front: {
  7061. height: math.unit(14, "feet"),
  7062. weight: math.unit(800, "kg"),
  7063. name: "Front",
  7064. image: {
  7065. source: "./media/characters/theresa/front.svg",
  7066. extra: 3575 / 3346,
  7067. bottom: 0.03
  7068. }
  7069. },
  7070. },
  7071. [
  7072. {
  7073. name: "Normal",
  7074. height: math.unit(14, "feet"),
  7075. default: true
  7076. },
  7077. ]
  7078. ))
  7079. characterMakers.push(() => makeCharacter(
  7080. { name: "Ine" },
  7081. {
  7082. front: {
  7083. height: math.unit(6, "feet"),
  7084. weight: math.unit(3, "kg"),
  7085. name: "Front",
  7086. image: {
  7087. source: "./media/characters/ine/front.svg",
  7088. extra: 678 / 539,
  7089. bottom: 0.023
  7090. }
  7091. },
  7092. },
  7093. [
  7094. {
  7095. name: "Normal",
  7096. height: math.unit(2.265, "feet"),
  7097. default: true
  7098. },
  7099. ]
  7100. ))
  7101. characterMakers.push(() => makeCharacter(
  7102. { name: "Vial" },
  7103. {
  7104. front: {
  7105. height: math.unit(5, "feet"),
  7106. weight: math.unit(30, "kg"),
  7107. name: "Front",
  7108. image: {
  7109. source: "./media/characters/vial/front.svg",
  7110. extra: 1365 / 1277,
  7111. bottom: 0.04
  7112. }
  7113. },
  7114. },
  7115. [
  7116. {
  7117. name: "Normal",
  7118. height: math.unit(5, "feet"),
  7119. default: true
  7120. },
  7121. ]
  7122. ))
  7123. characterMakers.push(() => makeCharacter(
  7124. { name: "Rovoska" },
  7125. {
  7126. side: {
  7127. height: math.unit(3.4, "meters"),
  7128. weight: math.unit(1000, "lb"),
  7129. name: "Side",
  7130. image: {
  7131. source: "./media/characters/rovoska/side.svg",
  7132. extra: 4403 / 1515
  7133. }
  7134. },
  7135. },
  7136. [
  7137. {
  7138. name: "Normal",
  7139. height: math.unit(3.4, "meters"),
  7140. default: true
  7141. },
  7142. ]
  7143. ))
  7144. characterMakers.push(() => makeCharacter(
  7145. { name: "Gunner Rotthbauer" },
  7146. {
  7147. front: {
  7148. height: math.unit(8, "feet"),
  7149. weight: math.unit(315, "lb"),
  7150. name: "Front",
  7151. image: {
  7152. source: "./media/characters/gunner-rotthbauer/front.svg"
  7153. }
  7154. },
  7155. back: {
  7156. height: math.unit(8, "feet"),
  7157. weight: math.unit(315, "lb"),
  7158. name: "Back",
  7159. image: {
  7160. source: "./media/characters/gunner-rotthbauer/back.svg"
  7161. }
  7162. },
  7163. },
  7164. [
  7165. {
  7166. name: "Micro",
  7167. height: math.unit(3.5, "inches")
  7168. },
  7169. {
  7170. name: "Normal",
  7171. height: math.unit(8, "feet"),
  7172. default: true
  7173. },
  7174. {
  7175. name: "Macro",
  7176. height: math.unit(250, "feet")
  7177. },
  7178. {
  7179. name: "Megamacro",
  7180. height: math.unit(1, "AU")
  7181. },
  7182. ]
  7183. ))
  7184. characterMakers.push(() => makeCharacter(
  7185. { name: "Allatia" },
  7186. {
  7187. front: {
  7188. height: math.unit(5 + 5 / 12, "feet"),
  7189. weight: math.unit(140, "lb"),
  7190. name: "Front",
  7191. image: {
  7192. source: "./media/characters/allatia/front.svg",
  7193. extra: 1227 / 1180,
  7194. bottom: 0.027
  7195. }
  7196. },
  7197. },
  7198. [
  7199. {
  7200. name: "Normal",
  7201. height: math.unit(5 + 5 / 12, "feet")
  7202. },
  7203. {
  7204. name: "Macro",
  7205. height: math.unit(250, "feet"),
  7206. default: true
  7207. },
  7208. {
  7209. name: "Megamacro",
  7210. height: math.unit(8, "miles")
  7211. }
  7212. ]
  7213. ))
  7214. characterMakers.push(() => makeCharacter(
  7215. { name: "Tene" },
  7216. {
  7217. front: {
  7218. height: math.unit(6, "feet"),
  7219. weight: math.unit(120, "lb"),
  7220. name: "Front",
  7221. image: {
  7222. source: "./media/characters/tene/front.svg",
  7223. extra: 1728 / 1578,
  7224. bottom: 0.022
  7225. }
  7226. },
  7227. stomping: {
  7228. height: math.unit(2.025, "meters"),
  7229. weight: math.unit(120, "lb"),
  7230. name: "Stomping",
  7231. image: {
  7232. source: "./media/characters/tene/stomping.svg",
  7233. extra: 938 / 873,
  7234. bottom: 0.01
  7235. }
  7236. },
  7237. sitting: {
  7238. height: math.unit(1, "meter"),
  7239. weight: math.unit(120, "lb"),
  7240. name: "Sitting",
  7241. image: {
  7242. source: "./media/characters/tene/sitting.svg",
  7243. extra: 437 / 415,
  7244. bottom: 0.1
  7245. }
  7246. },
  7247. feral: {
  7248. height: math.unit(3.9, "feet"),
  7249. weight: math.unit(250, "lb"),
  7250. name: "Feral",
  7251. image: {
  7252. source: "./media/characters/tene/feral.svg",
  7253. extra: 717 / 458,
  7254. bottom: 0.179
  7255. }
  7256. },
  7257. },
  7258. [
  7259. {
  7260. name: "Normal",
  7261. height: math.unit(6, "feet")
  7262. },
  7263. {
  7264. name: "Macro",
  7265. height: math.unit(300, "feet"),
  7266. default: true
  7267. },
  7268. {
  7269. name: "Megamacro",
  7270. height: math.unit(5, "miles")
  7271. },
  7272. ]
  7273. ))
  7274. characterMakers.push(() => makeCharacter(
  7275. { name: "Evander" },
  7276. {
  7277. side: {
  7278. height: math.unit(6, "feet"),
  7279. name: "Side",
  7280. image: {
  7281. source: "./media/characters/evander/side.svg",
  7282. extra: 877 / 477
  7283. }
  7284. },
  7285. },
  7286. [
  7287. {
  7288. name: "Normal",
  7289. height: math.unit(0.83, "meters"),
  7290. default: true
  7291. },
  7292. ]
  7293. ))
  7294. characterMakers.push(() => makeCharacter(
  7295. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7296. {
  7297. front: {
  7298. height: math.unit(12, "feet"),
  7299. weight: math.unit(1000, "lb"),
  7300. name: "Front",
  7301. image: {
  7302. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7303. extra: 1762 / 1611
  7304. }
  7305. },
  7306. back: {
  7307. height: math.unit(12, "feet"),
  7308. weight: math.unit(1000, "lb"),
  7309. name: "Back",
  7310. image: {
  7311. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7312. extra: 1762 / 1611
  7313. }
  7314. },
  7315. },
  7316. [
  7317. {
  7318. name: "Normal",
  7319. height: math.unit(12, "feet"),
  7320. default: true
  7321. },
  7322. {
  7323. name: "Kaiju",
  7324. height: math.unit(150, "feet")
  7325. },
  7326. ]
  7327. ))
  7328. characterMakers.push(() => makeCharacter(
  7329. { name: "Zero Alurus" },
  7330. {
  7331. front: {
  7332. height: math.unit(6, "feet"),
  7333. weight: math.unit(150, "lb"),
  7334. name: "Front",
  7335. image: {
  7336. source: "./media/characters/zero-alurus/front.svg"
  7337. }
  7338. },
  7339. back: {
  7340. height: math.unit(6, "feet"),
  7341. weight: math.unit(150, "lb"),
  7342. name: "Back",
  7343. image: {
  7344. source: "./media/characters/zero-alurus/back.svg"
  7345. }
  7346. },
  7347. },
  7348. [
  7349. {
  7350. name: "Normal",
  7351. height: math.unit(5 + 10 / 12, "feet")
  7352. },
  7353. {
  7354. name: "Macro",
  7355. height: math.unit(60, "feet"),
  7356. default: true
  7357. },
  7358. {
  7359. name: "Macro+",
  7360. height: math.unit(450, "feet")
  7361. },
  7362. ]
  7363. ))
  7364. characterMakers.push(() => makeCharacter(
  7365. { name: "Mega Shi" },
  7366. {
  7367. front: {
  7368. height: math.unit(6, "feet"),
  7369. weight: math.unit(200, "lb"),
  7370. name: "Front",
  7371. image: {
  7372. source: "./media/characters/mega-shi/front.svg",
  7373. extra: 1279 / 1250,
  7374. bottom: 0.02
  7375. }
  7376. },
  7377. back: {
  7378. height: math.unit(6, "feet"),
  7379. weight: math.unit(200, "lb"),
  7380. name: "Back",
  7381. image: {
  7382. source: "./media/characters/mega-shi/back.svg",
  7383. extra: 1279 / 1250,
  7384. bottom: 0.02
  7385. }
  7386. },
  7387. },
  7388. [
  7389. {
  7390. name: "Micro",
  7391. height: math.unit(16 + 6 / 12, "feet")
  7392. },
  7393. {
  7394. name: "Normal",
  7395. height: math.unit(660, "feet"),
  7396. default: true
  7397. },
  7398. {
  7399. name: "Megamacro",
  7400. height: math.unit(10, "miles")
  7401. },
  7402. {
  7403. name: "Planetary Launch",
  7404. height: math.unit(500, "miles")
  7405. },
  7406. {
  7407. name: "Interstellar",
  7408. height: math.unit(1e9, "miles")
  7409. },
  7410. {
  7411. name: "Leaving the Universe",
  7412. height: math.unit(1, "gigaparsec")
  7413. },
  7414. {
  7415. name: "Travelling Universes",
  7416. height: math.unit(30e15, "parsecs")
  7417. },
  7418. ]
  7419. ))
  7420. characterMakers.push(() => makeCharacter(
  7421. { name: "Odyssey" },
  7422. {
  7423. front: {
  7424. height: math.unit(6, "feet"),
  7425. weight: math.unit(150, "lb"),
  7426. name: "Front",
  7427. image: {
  7428. source: "./media/characters/odyssey/front.svg",
  7429. extra: 1782 / 1582,
  7430. bottom: 0.01
  7431. }
  7432. },
  7433. side: {
  7434. height: math.unit(5.7, "feet"),
  7435. weight: math.unit(140, "lb"),
  7436. name: "Side",
  7437. image: {
  7438. source: "./media/characters/odyssey/side.svg",
  7439. extra: 6462 / 5700
  7440. }
  7441. },
  7442. },
  7443. [
  7444. {
  7445. name: "Normal",
  7446. height: math.unit(5 + 4 / 12, "feet")
  7447. },
  7448. {
  7449. name: "Macro",
  7450. height: math.unit(1, "km")
  7451. },
  7452. {
  7453. name: "Megamacro",
  7454. height: math.unit(3000, "km")
  7455. },
  7456. {
  7457. name: "Gigamacro",
  7458. height: math.unit(1, "AU"),
  7459. default: true
  7460. },
  7461. {
  7462. name: "Omniversal",
  7463. height: math.unit(100e14, "lightyears")
  7464. },
  7465. ]
  7466. ))
  7467. characterMakers.push(() => makeCharacter(
  7468. { name: "Mekuto" },
  7469. {
  7470. front: {
  7471. height: math.unit(6, "feet"),
  7472. weight: math.unit(300, "lb"),
  7473. name: "Front",
  7474. image: {
  7475. source: "./media/characters/mekuto/front.svg",
  7476. extra: 921 / 832,
  7477. bottom: 0.03
  7478. }
  7479. },
  7480. hand: {
  7481. height: math.unit(6 / 10.24, "feet"),
  7482. name: "Hand",
  7483. image: {
  7484. source: "./media/characters/mekuto/hand.svg"
  7485. }
  7486. },
  7487. foot: {
  7488. height: math.unit(6 / 5.05, "feet"),
  7489. name: "Foot",
  7490. image: {
  7491. source: "./media/characters/mekuto/foot.svg"
  7492. }
  7493. },
  7494. },
  7495. [
  7496. {
  7497. name: "Minimicro",
  7498. height: math.unit(0.2, "inches")
  7499. },
  7500. {
  7501. name: "Micro",
  7502. height: math.unit(1.5, "inches")
  7503. },
  7504. {
  7505. name: "Normal",
  7506. height: math.unit(5 + 11 / 12, "feet"),
  7507. default: true
  7508. },
  7509. {
  7510. name: "Minimacro",
  7511. height: math.unit(17 + 9 / 12, "feet")
  7512. },
  7513. {
  7514. name: "Macro",
  7515. height: math.unit(177.5, "feet")
  7516. },
  7517. {
  7518. name: "Megamacro",
  7519. height: math.unit(152, "miles")
  7520. },
  7521. ]
  7522. ))
  7523. characterMakers.push(() => makeCharacter(
  7524. { name: "Dafydd Tomos" },
  7525. {
  7526. front: {
  7527. height: math.unit(6.5, "inches"),
  7528. weight: math.unit(13, "oz"),
  7529. name: "Front",
  7530. image: {
  7531. source: "./media/characters/dafydd-tomos/front.svg",
  7532. extra: 2990 / 2603,
  7533. bottom: 0.03
  7534. }
  7535. },
  7536. },
  7537. [
  7538. {
  7539. name: "Micro",
  7540. height: math.unit(6.5, "inches"),
  7541. default: true
  7542. },
  7543. ]
  7544. ))
  7545. characterMakers.push(() => makeCharacter(
  7546. { name: "Splinter" },
  7547. {
  7548. front: {
  7549. height: math.unit(6, "feet"),
  7550. weight: math.unit(150, "lb"),
  7551. name: "Front",
  7552. image: {
  7553. source: "./media/characters/splinter/front.svg",
  7554. extra: 2990 / 2882,
  7555. bottom: 0.04
  7556. }
  7557. },
  7558. back: {
  7559. height: math.unit(6, "feet"),
  7560. weight: math.unit(150, "lb"),
  7561. name: "Back",
  7562. image: {
  7563. source: "./media/characters/splinter/back.svg",
  7564. extra: 2990 / 2882,
  7565. bottom: 0.04
  7566. }
  7567. },
  7568. },
  7569. [
  7570. {
  7571. name: "Normal",
  7572. height: math.unit(6, "feet")
  7573. },
  7574. {
  7575. name: "Macro",
  7576. height: math.unit(230, "meters"),
  7577. default: true
  7578. },
  7579. ]
  7580. ))
  7581. characterMakers.push(() => makeCharacter(
  7582. { name: "SnowGabumon" },
  7583. {
  7584. front: {
  7585. height: math.unit(4 + 10 / 12, "feet"),
  7586. weight: math.unit(480, "lb"),
  7587. name: "Front",
  7588. image: {
  7589. source: "./media/characters/snow-gabumon/front.svg",
  7590. extra: 1140 / 963,
  7591. bottom: 0.058
  7592. }
  7593. },
  7594. back: {
  7595. height: math.unit(4 + 10 / 12, "feet"),
  7596. weight: math.unit(480, "lb"),
  7597. name: "Back",
  7598. image: {
  7599. source: "./media/characters/snow-gabumon/back.svg",
  7600. extra: 1115 / 962,
  7601. bottom: 0.041
  7602. }
  7603. },
  7604. frontUndresed: {
  7605. height: math.unit(4 + 10 / 12, "feet"),
  7606. weight: math.unit(480, "lb"),
  7607. name: "Front (Undressed)",
  7608. image: {
  7609. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7610. extra: 1061 / 960,
  7611. bottom: 0.045
  7612. }
  7613. },
  7614. },
  7615. [
  7616. {
  7617. name: "Micro",
  7618. height: math.unit(1, "inch")
  7619. },
  7620. {
  7621. name: "Normal",
  7622. height: math.unit(4 + 10 / 12, "feet"),
  7623. default: true
  7624. },
  7625. {
  7626. name: "Macro",
  7627. height: math.unit(200, "feet")
  7628. },
  7629. {
  7630. name: "Megamacro",
  7631. height: math.unit(120, "miles")
  7632. },
  7633. {
  7634. name: "Gigamacro",
  7635. height: math.unit(9800, "miles")
  7636. },
  7637. ]
  7638. ))
  7639. characterMakers.push(() => makeCharacter(
  7640. { name: "Moody" },
  7641. {
  7642. front: {
  7643. height: math.unit(1.7, "meters"),
  7644. weight: math.unit(140, "lb"),
  7645. name: "Front",
  7646. image: {
  7647. source: "./media/characters/moody/front.svg",
  7648. extra: 3226 / 3007,
  7649. bottom: 0.087
  7650. }
  7651. },
  7652. },
  7653. [
  7654. {
  7655. name: "Micro",
  7656. height: math.unit(1, "mm")
  7657. },
  7658. {
  7659. name: "Normal",
  7660. height: math.unit(1.7, "meters"),
  7661. default: true
  7662. },
  7663. {
  7664. name: "Macro",
  7665. height: math.unit(80, "meters")
  7666. },
  7667. {
  7668. name: "Macro+",
  7669. height: math.unit(500, "meters")
  7670. },
  7671. ]
  7672. ))
  7673. characterMakers.push(() => makeCharacter(
  7674. { name: "Zyas" },
  7675. {
  7676. front: {
  7677. height: math.unit(6, "feet"),
  7678. weight: math.unit(150, "lb"),
  7679. name: "Front",
  7680. image: {
  7681. source: "./media/characters/zyas/front.svg",
  7682. extra: 1180 / 1120,
  7683. bottom: 0.045
  7684. }
  7685. },
  7686. },
  7687. [
  7688. {
  7689. name: "Normal",
  7690. height: math.unit(10, "feet"),
  7691. default: true
  7692. },
  7693. {
  7694. name: "Macro",
  7695. height: math.unit(500, "feet")
  7696. },
  7697. {
  7698. name: "Megamacro",
  7699. height: math.unit(5, "miles")
  7700. },
  7701. {
  7702. name: "Teramacro",
  7703. height: math.unit(150000, "miles")
  7704. },
  7705. ]
  7706. ))
  7707. characterMakers.push(() => makeCharacter(
  7708. { name: "Cuon" },
  7709. {
  7710. front: {
  7711. height: math.unit(6, "feet"),
  7712. weight: math.unit(150, "lb"),
  7713. name: "Front",
  7714. image: {
  7715. source: "./media/characters/cuon/front.svg",
  7716. extra: 1390 / 1320,
  7717. bottom: 0.008
  7718. }
  7719. },
  7720. },
  7721. [
  7722. {
  7723. name: "Micro",
  7724. height: math.unit(3, "inches")
  7725. },
  7726. {
  7727. name: "Normal",
  7728. height: math.unit(18 + 9 / 12, "feet"),
  7729. default: true
  7730. },
  7731. {
  7732. name: "Macro",
  7733. height: math.unit(360, "feet")
  7734. },
  7735. {
  7736. name: "Megamacro",
  7737. height: math.unit(360, "miles")
  7738. },
  7739. ]
  7740. ))
  7741. characterMakers.push(() => makeCharacter(
  7742. { name: "Nyanuxk" },
  7743. {
  7744. front: {
  7745. height: math.unit(2.4, "meters"),
  7746. weight: math.unit(70, "kg"),
  7747. name: "Front",
  7748. image: {
  7749. source: "./media/characters/nyanuxk/front.svg",
  7750. extra: 1172 / 1084,
  7751. bottom: 0.065
  7752. }
  7753. },
  7754. side: {
  7755. height: math.unit(2.4, "meters"),
  7756. weight: math.unit(70, "kg"),
  7757. name: "Side",
  7758. image: {
  7759. source: "./media/characters/nyanuxk/side.svg",
  7760. extra: 1190 / 1132,
  7761. bottom: 0.007
  7762. }
  7763. },
  7764. back: {
  7765. height: math.unit(2.4, "meters"),
  7766. weight: math.unit(70, "kg"),
  7767. name: "Back",
  7768. image: {
  7769. source: "./media/characters/nyanuxk/back.svg",
  7770. extra: 1200 / 1141,
  7771. bottom: 0.015
  7772. }
  7773. },
  7774. foot: {
  7775. height: math.unit(0.52, "meters"),
  7776. name: "Foot",
  7777. image: {
  7778. source: "./media/characters/nyanuxk/foot.svg"
  7779. }
  7780. },
  7781. },
  7782. [
  7783. {
  7784. name: "Micro",
  7785. height: math.unit(2, "cm")
  7786. },
  7787. {
  7788. name: "Normal",
  7789. height: math.unit(2.4, "meters"),
  7790. default: true
  7791. },
  7792. {
  7793. name: "Smaller Macro",
  7794. height: math.unit(120, "meters")
  7795. },
  7796. {
  7797. name: "Bigger Macro",
  7798. height: math.unit(1.2, "km")
  7799. },
  7800. {
  7801. name: "Megamacro",
  7802. height: math.unit(15, "kilometers")
  7803. },
  7804. {
  7805. name: "Gigamacro",
  7806. height: math.unit(2000, "km")
  7807. },
  7808. {
  7809. name: "Teramacro",
  7810. height: math.unit(500000, "km")
  7811. },
  7812. ]
  7813. ))
  7814. characterMakers.push(() => makeCharacter(
  7815. { name: "Ailbhe" },
  7816. {
  7817. side: {
  7818. height: math.unit(6, "feet"),
  7819. name: "Side",
  7820. image: {
  7821. source: "./media/characters/ailbhe/side.svg",
  7822. extra: 757 / 464,
  7823. bottom: 0.041
  7824. }
  7825. },
  7826. },
  7827. [
  7828. {
  7829. name: "Normal",
  7830. height: math.unit(1.07, "meters"),
  7831. default: true
  7832. },
  7833. ]
  7834. ))
  7835. characterMakers.push(() => makeCharacter(
  7836. { name: "Zevulfius" },
  7837. {
  7838. front: {
  7839. height: math.unit(6, "feet"),
  7840. weight: math.unit(120, "kg"),
  7841. name: "Front",
  7842. image: {
  7843. source: "./media/characters/zevulfius/front.svg",
  7844. extra: 965 / 903
  7845. }
  7846. },
  7847. side: {
  7848. height: math.unit(6, "feet"),
  7849. weight: math.unit(120, "kg"),
  7850. name: "Side",
  7851. image: {
  7852. source: "./media/characters/zevulfius/side.svg",
  7853. extra: 939 / 900
  7854. }
  7855. },
  7856. back: {
  7857. height: math.unit(6, "feet"),
  7858. weight: math.unit(120, "kg"),
  7859. name: "Back",
  7860. image: {
  7861. source: "./media/characters/zevulfius/back.svg",
  7862. extra: 918 / 854,
  7863. bottom: 0.005
  7864. }
  7865. },
  7866. foot: {
  7867. height: math.unit(6 / 3.72, "feet"),
  7868. name: "Foot",
  7869. image: {
  7870. source: "./media/characters/zevulfius/foot.svg"
  7871. }
  7872. },
  7873. },
  7874. [
  7875. {
  7876. name: "Macro",
  7877. height: math.unit(750, "meters")
  7878. },
  7879. {
  7880. name: "Megamacro",
  7881. height: math.unit(20, "km"),
  7882. default: true
  7883. },
  7884. {
  7885. name: "Gigamacro",
  7886. height: math.unit(2000, "km")
  7887. },
  7888. {
  7889. name: "Teramacro",
  7890. height: math.unit(250000, "km")
  7891. },
  7892. ]
  7893. ))
  7894. characterMakers.push(() => makeCharacter(
  7895. { name: "Rikes" },
  7896. {
  7897. front: {
  7898. height: math.unit(100, "feet"),
  7899. weight: math.unit(350, "kg"),
  7900. name: "Front",
  7901. image: {
  7902. source: "./media/characters/rikes/front.svg",
  7903. extra: 1565 / 1483,
  7904. bottom: 0.017
  7905. }
  7906. },
  7907. },
  7908. [
  7909. {
  7910. name: "Macro",
  7911. height: math.unit(100, "feet"),
  7912. default: true
  7913. },
  7914. ]
  7915. ))
  7916. characterMakers.push(() => makeCharacter(
  7917. { name: "Adam Silver-Mane" },
  7918. {
  7919. anthro: {
  7920. height: math.unit(8, "feet"),
  7921. weight: math.unit(120, "kg"),
  7922. name: "Anthro",
  7923. image: {
  7924. source: "./media/characters/adam-silver-mane/anthro.svg",
  7925. extra: 5743 / 5339,
  7926. bottom: 0.07
  7927. }
  7928. },
  7929. taur: {
  7930. height: math.unit(16, "feet"),
  7931. weight: math.unit(1500, "kg"),
  7932. name: "Taur",
  7933. image: {
  7934. source: "./media/characters/adam-silver-mane/taur.svg",
  7935. extra: 1713 / 1571,
  7936. bottom: 0.01
  7937. }
  7938. },
  7939. },
  7940. [
  7941. {
  7942. name: "Normal",
  7943. height: math.unit(8, "feet")
  7944. },
  7945. {
  7946. name: "Minimacro",
  7947. height: math.unit(80, "feet")
  7948. },
  7949. {
  7950. name: "Macro",
  7951. height: math.unit(800, "feet"),
  7952. default: true
  7953. },
  7954. {
  7955. name: "Megamacro",
  7956. height: math.unit(8000, "feet")
  7957. },
  7958. {
  7959. name: "Gigamacro",
  7960. height: math.unit(800, "miles")
  7961. },
  7962. {
  7963. name: "Teramacro",
  7964. height: math.unit(80000, "miles")
  7965. },
  7966. {
  7967. name: "Celestial",
  7968. height: math.unit(8e6, "miles")
  7969. },
  7970. {
  7971. name: "Star Dragon",
  7972. height: math.unit(800000, "parsecs")
  7973. },
  7974. {
  7975. name: "Godly",
  7976. height: math.unit(800, "teraparsecs")
  7977. },
  7978. ]
  7979. ))
  7980. characterMakers.push(() => makeCharacter(
  7981. { name: "Ky'owin" },
  7982. {
  7983. front: {
  7984. height: math.unit(6, "feet"),
  7985. weight: math.unit(150, "lb"),
  7986. name: "Front",
  7987. image: {
  7988. source: "./media/characters/ky'owin/front.svg",
  7989. extra: 3888 / 3068,
  7990. bottom: 0.015
  7991. }
  7992. },
  7993. },
  7994. [
  7995. {
  7996. name: "Normal",
  7997. height: math.unit(6 + 8 / 12, "feet")
  7998. },
  7999. {
  8000. name: "Large",
  8001. height: math.unit(68, "feet")
  8002. },
  8003. {
  8004. name: "Macro",
  8005. height: math.unit(132, "feet")
  8006. },
  8007. {
  8008. name: "Macro+",
  8009. height: math.unit(340, "feet")
  8010. },
  8011. {
  8012. name: "Macro++",
  8013. height: math.unit(680, "feet"),
  8014. default: true
  8015. },
  8016. {
  8017. name: "Megamacro",
  8018. height: math.unit(1, "mile")
  8019. },
  8020. {
  8021. name: "Megamacro+",
  8022. height: math.unit(10, "miles")
  8023. },
  8024. ]
  8025. ))
  8026. characterMakers.push(() => makeCharacter(
  8027. { name: "Mal" },
  8028. {
  8029. front: {
  8030. height: math.unit(4, "feet"),
  8031. weight: math.unit(50, "lb"),
  8032. name: "Front",
  8033. image: {
  8034. source: "./media/characters/mal/front.svg",
  8035. extra: 785 / 724,
  8036. bottom: 0.07
  8037. }
  8038. },
  8039. },
  8040. [
  8041. {
  8042. name: "Micro",
  8043. height: math.unit(4, "inches")
  8044. },
  8045. {
  8046. name: "Normal",
  8047. height: math.unit(4, "feet"),
  8048. default: true
  8049. },
  8050. {
  8051. name: "Macro",
  8052. height: math.unit(200, "feet")
  8053. },
  8054. ]
  8055. ))
  8056. characterMakers.push(() => makeCharacter(
  8057. { name: "Jordan Deware" },
  8058. {
  8059. front: {
  8060. height: math.unit(6, "feet"),
  8061. weight: math.unit(150, "lb"),
  8062. name: "Front",
  8063. image: {
  8064. source: "./media/characters/jordan-deware/front.svg",
  8065. extra: 1191 / 1012
  8066. }
  8067. },
  8068. },
  8069. [
  8070. {
  8071. name: "Nano",
  8072. height: math.unit(0.01, "mm")
  8073. },
  8074. {
  8075. name: "Minimicro",
  8076. height: math.unit(1, "mm")
  8077. },
  8078. {
  8079. name: "Micro",
  8080. height: math.unit(0.5, "inches")
  8081. },
  8082. {
  8083. name: "Normal",
  8084. height: math.unit(4, "feet"),
  8085. default: true
  8086. },
  8087. {
  8088. name: "Minimacro",
  8089. height: math.unit(40, "meters")
  8090. },
  8091. {
  8092. name: "Small Macro",
  8093. height: math.unit(400, "meters")
  8094. },
  8095. {
  8096. name: "Macro",
  8097. height: math.unit(4, "miles")
  8098. },
  8099. {
  8100. name: "Megamacro",
  8101. height: math.unit(40, "miles")
  8102. },
  8103. {
  8104. name: "Megamacro+",
  8105. height: math.unit(400, "miles")
  8106. },
  8107. {
  8108. name: "Gigamacro",
  8109. height: math.unit(400000, "miles")
  8110. },
  8111. ]
  8112. ))
  8113. characterMakers.push(() => makeCharacter(
  8114. { name: "Kimiko" },
  8115. {
  8116. side: {
  8117. height: math.unit(6, "feet"),
  8118. weight: math.unit(150, "lb"),
  8119. name: "Side",
  8120. image: {
  8121. source: "./media/characters/kimiko/side.svg",
  8122. extra: 600 / 358
  8123. }
  8124. },
  8125. },
  8126. [
  8127. {
  8128. name: "Normal",
  8129. height: math.unit(15, "feet"),
  8130. default: true
  8131. },
  8132. {
  8133. name: "Macro",
  8134. height: math.unit(220, "feet")
  8135. },
  8136. {
  8137. name: "Macro+",
  8138. height: math.unit(1450, "feet")
  8139. },
  8140. {
  8141. name: "Megamacro",
  8142. height: math.unit(11500, "feet")
  8143. },
  8144. {
  8145. name: "Gigamacro",
  8146. height: math.unit(9500, "miles")
  8147. },
  8148. {
  8149. name: "Teramacro",
  8150. height: math.unit(2208005005, "miles")
  8151. },
  8152. {
  8153. name: "Examacro",
  8154. height: math.unit(2750, "parsecs")
  8155. },
  8156. {
  8157. name: "Zettamacro",
  8158. height: math.unit(101500, "parsecs")
  8159. },
  8160. ]
  8161. ))
  8162. characterMakers.push(() => makeCharacter(
  8163. { name: "Andrew Sleepy" },
  8164. {
  8165. front: {
  8166. height: math.unit(6, "feet"),
  8167. weight: math.unit(70, "kg"),
  8168. name: "Front",
  8169. image: {
  8170. source: "./media/characters/andrew-sleepy/front.svg"
  8171. }
  8172. },
  8173. side: {
  8174. height: math.unit(6, "feet"),
  8175. weight: math.unit(70, "kg"),
  8176. name: "Side",
  8177. image: {
  8178. source: "./media/characters/andrew-sleepy/side.svg"
  8179. }
  8180. },
  8181. },
  8182. [
  8183. {
  8184. name: "Micro",
  8185. height: math.unit(1, "mm"),
  8186. default: true
  8187. },
  8188. ]
  8189. ))
  8190. characterMakers.push(() => makeCharacter(
  8191. { name: "Judio" },
  8192. {
  8193. front: {
  8194. height: math.unit(6, "feet"),
  8195. weight: math.unit(150, "lb"),
  8196. name: "Front",
  8197. image: {
  8198. source: "./media/characters/judio/front.svg",
  8199. extra: 1258 / 1110
  8200. }
  8201. },
  8202. },
  8203. [
  8204. {
  8205. name: "Normal",
  8206. height: math.unit(5 + 6 / 12, "feet")
  8207. },
  8208. {
  8209. name: "Macro",
  8210. height: math.unit(1000, "feet"),
  8211. default: true
  8212. },
  8213. {
  8214. name: "Megamacro",
  8215. height: math.unit(10, "miles")
  8216. },
  8217. ]
  8218. ))
  8219. characterMakers.push(() => makeCharacter(
  8220. { name: "Nomaxice" },
  8221. {
  8222. front: {
  8223. height: math.unit(6, "feet"),
  8224. weight: math.unit(68, "kg"),
  8225. name: "Front",
  8226. image: {
  8227. source: "./media/characters/nomaxice/front.svg",
  8228. extra: 1498 / 1073,
  8229. bottom: 0.075
  8230. }
  8231. },
  8232. foot: {
  8233. height: math.unit(1.1, "feet"),
  8234. name: "Foot",
  8235. image: {
  8236. source: "./media/characters/nomaxice/foot.svg"
  8237. }
  8238. },
  8239. },
  8240. [
  8241. {
  8242. name: "Micro",
  8243. height: math.unit(8, "cm")
  8244. },
  8245. {
  8246. name: "Norm",
  8247. height: math.unit(1.82, "m")
  8248. },
  8249. {
  8250. name: "Norm+",
  8251. height: math.unit(8.8, "feet")
  8252. },
  8253. {
  8254. name: "Big",
  8255. height: math.unit(8, "meters"),
  8256. default: true
  8257. },
  8258. {
  8259. name: "Macro",
  8260. height: math.unit(18, "meters")
  8261. },
  8262. {
  8263. name: "Macro+",
  8264. height: math.unit(88, "meters")
  8265. },
  8266. ]
  8267. ))
  8268. characterMakers.push(() => makeCharacter(
  8269. { name: "Dydros" },
  8270. {
  8271. front: {
  8272. height: math.unit(12, "feet"),
  8273. weight: math.unit(1.5, "tons"),
  8274. name: "Front",
  8275. image: {
  8276. source: "./media/characters/dydros/front.svg",
  8277. extra: 863 / 800,
  8278. bottom: 0.015
  8279. }
  8280. },
  8281. back: {
  8282. height: math.unit(12, "feet"),
  8283. weight: math.unit(1.5, "tons"),
  8284. name: "Back",
  8285. image: {
  8286. source: "./media/characters/dydros/back.svg",
  8287. extra: 900 / 843,
  8288. bottom: 0.005
  8289. }
  8290. },
  8291. },
  8292. [
  8293. {
  8294. name: "Normal",
  8295. height: math.unit(12, "feet"),
  8296. default: true
  8297. },
  8298. ]
  8299. ))
  8300. characterMakers.push(() => makeCharacter(
  8301. { name: "Riggi" },
  8302. {
  8303. front: {
  8304. height: math.unit(6, "feet"),
  8305. weight: math.unit(100, "kg"),
  8306. name: "Front",
  8307. image: {
  8308. source: "./media/characters/riggi/front.svg",
  8309. extra: 5787 / 5303
  8310. }
  8311. },
  8312. hyper: {
  8313. height: math.unit(6 * 5 / 3, "feet"),
  8314. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8315. name: "Hyper",
  8316. image: {
  8317. source: "./media/characters/riggi/hyper.svg",
  8318. extra: 3595 / 3485
  8319. }
  8320. },
  8321. },
  8322. [
  8323. {
  8324. name: "Small Macro",
  8325. height: math.unit(50, "feet")
  8326. },
  8327. {
  8328. name: "Default",
  8329. height: math.unit(200, "feet"),
  8330. default: true
  8331. },
  8332. {
  8333. name: "Loom",
  8334. height: math.unit(10000, "feet")
  8335. },
  8336. {
  8337. name: "Cruising Altitude",
  8338. height: math.unit(30000, "feet")
  8339. },
  8340. {
  8341. name: "Megamacro",
  8342. height: math.unit(100, "miles")
  8343. },
  8344. {
  8345. name: "Continent Sized",
  8346. height: math.unit(2800, "miles")
  8347. },
  8348. {
  8349. name: "Earth Sized",
  8350. height: math.unit(8000, "miles")
  8351. },
  8352. ]
  8353. ))
  8354. characterMakers.push(() => makeCharacter(
  8355. { name: "Alexi" },
  8356. {
  8357. front: {
  8358. height: math.unit(6, "feet"),
  8359. weight: math.unit(250, "lb"),
  8360. name: "Front",
  8361. image: {
  8362. source: "./media/characters/alexi/front.svg",
  8363. extra: 3483 / 3291,
  8364. bottom: 0.04
  8365. }
  8366. },
  8367. back: {
  8368. height: math.unit(6, "feet"),
  8369. weight: math.unit(250, "lb"),
  8370. name: "Back",
  8371. image: {
  8372. source: "./media/characters/alexi/back.svg",
  8373. extra: 3533 / 3356,
  8374. bottom: 0.021
  8375. }
  8376. },
  8377. frontTransformed: {
  8378. height: math.unit(12.5, "feet"),
  8379. weight: math.unit(4000, "lb"),
  8380. name: "Front (Transformed)",
  8381. image: {
  8382. source: "./media/characters/alexi/front-transformed.svg",
  8383. extra: 5345 / 5100,
  8384. bottom: 0.03
  8385. }
  8386. },
  8387. },
  8388. [
  8389. {
  8390. name: "Normal",
  8391. height: math.unit(3, "meters"),
  8392. default: true
  8393. },
  8394. {
  8395. name: "Minimacro",
  8396. height: math.unit(30, "meters")
  8397. },
  8398. {
  8399. name: "Macro",
  8400. height: math.unit(500, "meters")
  8401. },
  8402. {
  8403. name: "Megamacro",
  8404. height: math.unit(9000, "km")
  8405. },
  8406. {
  8407. name: "Teramacro",
  8408. height: math.unit(384000, "km")
  8409. },
  8410. ]
  8411. ))
  8412. characterMakers.push(() => makeCharacter(
  8413. { name: "Kayroo" },
  8414. {
  8415. front: {
  8416. height: math.unit(6, "feet"),
  8417. weight: math.unit(150, "lb"),
  8418. name: "Front",
  8419. image: {
  8420. source: "./media/characters/kayroo/front.svg",
  8421. extra: 1153 / 1038,
  8422. bottom: 0.06
  8423. }
  8424. },
  8425. foot: {
  8426. height: math.unit(6, "feet"),
  8427. weight: math.unit(150, "lb"),
  8428. name: "Foot",
  8429. image: {
  8430. source: "./media/characters/kayroo/foot.svg"
  8431. }
  8432. },
  8433. },
  8434. [
  8435. {
  8436. name: "Normal",
  8437. height: math.unit(8, "feet"),
  8438. default: true
  8439. },
  8440. {
  8441. name: "Minimacro",
  8442. height: math.unit(250, "feet")
  8443. },
  8444. {
  8445. name: "Macro",
  8446. height: math.unit(2800, "feet")
  8447. },
  8448. {
  8449. name: "Megamacro",
  8450. height: math.unit(5200, "feet")
  8451. },
  8452. {
  8453. name: "Gigamacro",
  8454. height: math.unit(27000, "feet")
  8455. },
  8456. {
  8457. name: "Omega",
  8458. height: math.unit(45000, "feet")
  8459. },
  8460. ]
  8461. ))
  8462. characterMakers.push(() => makeCharacter(
  8463. { name: "Rhys" },
  8464. {
  8465. front: {
  8466. height: math.unit(18, "feet"),
  8467. weight: math.unit(5800, "lb"),
  8468. name: "Front",
  8469. image: {
  8470. source: "./media/characters/rhys/front.svg",
  8471. extra: 3386 / 3090,
  8472. bottom: 0.07
  8473. }
  8474. },
  8475. },
  8476. [
  8477. {
  8478. name: "Normal",
  8479. height: math.unit(18, "feet"),
  8480. default: true
  8481. },
  8482. {
  8483. name: "Working Size",
  8484. height: math.unit(200, "feet")
  8485. },
  8486. {
  8487. name: "Demolition Size",
  8488. height: math.unit(2000, "feet")
  8489. },
  8490. {
  8491. name: "Maximum Licensed Size",
  8492. height: math.unit(5, "miles")
  8493. },
  8494. {
  8495. name: "Maximum Observed Size",
  8496. height: math.unit(10, "yottameters")
  8497. },
  8498. ]
  8499. ))
  8500. characterMakers.push(() => makeCharacter(
  8501. { name: "Toto" },
  8502. {
  8503. front: {
  8504. height: math.unit(6, "feet"),
  8505. weight: math.unit(250, "lb"),
  8506. name: "Front",
  8507. image: {
  8508. source: "./media/characters/toto/front.svg",
  8509. extra: 527 / 479,
  8510. bottom: 0.05
  8511. }
  8512. },
  8513. },
  8514. [
  8515. {
  8516. name: "Micro",
  8517. height: math.unit(3, "feet")
  8518. },
  8519. {
  8520. name: "Normal",
  8521. height: math.unit(10, "feet")
  8522. },
  8523. {
  8524. name: "Macro",
  8525. height: math.unit(150, "feet"),
  8526. default: true
  8527. },
  8528. {
  8529. name: "Megamacro",
  8530. height: math.unit(1200, "feet")
  8531. },
  8532. ]
  8533. ))
  8534. characterMakers.push(() => makeCharacter(
  8535. { name: "King" },
  8536. {
  8537. back: {
  8538. height: math.unit(6, "feet"),
  8539. weight: math.unit(150, "lb"),
  8540. name: "Back",
  8541. image: {
  8542. source: "./media/characters/king/back.svg"
  8543. }
  8544. },
  8545. },
  8546. [
  8547. {
  8548. name: "Micro",
  8549. height: math.unit(2, "inches")
  8550. },
  8551. {
  8552. name: "Normal",
  8553. height: math.unit(8, "feet")
  8554. },
  8555. {
  8556. name: "Macro",
  8557. height: math.unit(200, "feet"),
  8558. default: true
  8559. },
  8560. {
  8561. name: "Megamacro",
  8562. height: math.unit(50, "miles")
  8563. },
  8564. ]
  8565. ))
  8566. characterMakers.push(() => makeCharacter(
  8567. { name: "Cordite" },
  8568. {
  8569. anthro: {
  8570. height: math.unit(6 + 5 / 12, "feet"),
  8571. weight: math.unit(280, "lb"),
  8572. name: "Anthro",
  8573. image: {
  8574. source: "./media/characters/cordite/anthro.svg",
  8575. extra: 1986 / 1905,
  8576. bottom: 0.025
  8577. }
  8578. },
  8579. feral: {
  8580. height: math.unit(2, "feet"),
  8581. weight: math.unit(90, "lb"),
  8582. name: "Feral",
  8583. image: {
  8584. source: "./media/characters/cordite/feral.svg",
  8585. extra: 1260 / 755,
  8586. bottom: 0.05
  8587. }
  8588. },
  8589. },
  8590. [
  8591. {
  8592. name: "Normal",
  8593. height: math.unit(6 + 5 / 12, "feet"),
  8594. default: true
  8595. },
  8596. ]
  8597. ))
  8598. characterMakers.push(() => makeCharacter(
  8599. { name: "Pianostrong" },
  8600. {
  8601. front: {
  8602. height: math.unit(6, "feet"),
  8603. weight: math.unit(150, "lb"),
  8604. name: "Front",
  8605. image: {
  8606. source: "./media/characters/pianostrong/front.svg",
  8607. extra: 6577 / 6254,
  8608. bottom: 0.02
  8609. }
  8610. },
  8611. side: {
  8612. height: math.unit(6, "feet"),
  8613. weight: math.unit(150, "lb"),
  8614. name: "Side",
  8615. image: {
  8616. source: "./media/characters/pianostrong/side.svg",
  8617. extra: 6106 / 5730
  8618. }
  8619. },
  8620. back: {
  8621. height: math.unit(6, "feet"),
  8622. weight: math.unit(150, "lb"),
  8623. name: "Back",
  8624. image: {
  8625. source: "./media/characters/pianostrong/back.svg",
  8626. extra: 6085 / 5733,
  8627. bottom: 0.01
  8628. }
  8629. },
  8630. },
  8631. [
  8632. {
  8633. name: "Macro",
  8634. height: math.unit(100, "feet")
  8635. },
  8636. {
  8637. name: "Macro+",
  8638. height: math.unit(300, "feet"),
  8639. default: true
  8640. },
  8641. {
  8642. name: "Macro++",
  8643. height: math.unit(1000, "feet")
  8644. },
  8645. ]
  8646. ))
  8647. characterMakers.push(() => makeCharacter(
  8648. { name: "Kona" },
  8649. {
  8650. front: {
  8651. height: math.unit(6, "feet"),
  8652. weight: math.unit(150, "lb"),
  8653. name: "Front",
  8654. image: {
  8655. source: "./media/characters/kona/front.svg",
  8656. extra: 2960 / 2629,
  8657. bottom: 0.005
  8658. }
  8659. },
  8660. },
  8661. [
  8662. {
  8663. name: "Normal",
  8664. height: math.unit(11 + 8 / 12, "feet")
  8665. },
  8666. {
  8667. name: "Macro",
  8668. height: math.unit(850, "feet"),
  8669. default: true
  8670. },
  8671. {
  8672. name: "Macro+",
  8673. height: math.unit(1.5, "km"),
  8674. default: true
  8675. },
  8676. {
  8677. name: "Megamacro",
  8678. height: math.unit(80, "miles")
  8679. },
  8680. {
  8681. name: "Gigamacro",
  8682. height: math.unit(3500, "miles")
  8683. },
  8684. ]
  8685. ))
  8686. characterMakers.push(() => makeCharacter(
  8687. { name: "Levi" },
  8688. {
  8689. side: {
  8690. height: math.unit(1.9, "meters"),
  8691. weight: math.unit(326, "kg"),
  8692. name: "Side",
  8693. image: {
  8694. source: "./media/characters/levi/side.svg",
  8695. extra: 1704 / 1334,
  8696. bottom: 0.02
  8697. }
  8698. },
  8699. },
  8700. [
  8701. {
  8702. name: "Normal",
  8703. height: math.unit(1.9, "meters"),
  8704. default: true
  8705. },
  8706. {
  8707. name: "Macro",
  8708. height: math.unit(20, "meters")
  8709. },
  8710. {
  8711. name: "Macro+",
  8712. height: math.unit(200, "meters")
  8713. },
  8714. {
  8715. name: "Megamacro",
  8716. height: math.unit(2, "km")
  8717. },
  8718. {
  8719. name: "Megamacro+",
  8720. height: math.unit(20, "km")
  8721. },
  8722. {
  8723. name: "Gigamacro",
  8724. height: math.unit(2500, "km")
  8725. },
  8726. {
  8727. name: "Gigamacro+",
  8728. height: math.unit(120000, "km")
  8729. },
  8730. {
  8731. name: "Teramacro",
  8732. height: math.unit(7.77e6, "km")
  8733. },
  8734. ]
  8735. ))
  8736. characterMakers.push(() => makeCharacter(
  8737. { name: "BMC" },
  8738. {
  8739. front: {
  8740. height: math.unit(6 + 4 / 12, "feet"),
  8741. weight: math.unit(188, "lb"),
  8742. name: "Front",
  8743. image: {
  8744. source: "./media/characters/bmc/front.svg",
  8745. extra: 1067 / 1022,
  8746. bottom: 0.047
  8747. }
  8748. },
  8749. },
  8750. [
  8751. {
  8752. name: "Human-sized",
  8753. height: math.unit(6 + 4 / 12, "feet")
  8754. },
  8755. {
  8756. name: "Small",
  8757. height: math.unit(250, "feet")
  8758. },
  8759. {
  8760. name: "Normal",
  8761. height: math.unit(1250, "feet"),
  8762. default: true
  8763. },
  8764. {
  8765. name: "Good Day",
  8766. height: math.unit(88, "miles")
  8767. },
  8768. {
  8769. name: "Largest Measured Size",
  8770. height: math.unit(11.2e6, "lightyears")
  8771. },
  8772. ]
  8773. ))
  8774. characterMakers.push(() => makeCharacter(
  8775. { name: "Sven the Kaiju" },
  8776. {
  8777. front: {
  8778. height: math.unit(20, "feet"),
  8779. weight: math.unit(2016, "kg"),
  8780. name: "Front",
  8781. image: {
  8782. source: "./media/characters/sven-the-kaiju/front.svg",
  8783. extra: 1479 / 1449,
  8784. bottom: 0.05
  8785. }
  8786. },
  8787. },
  8788. [
  8789. {
  8790. name: "Fairy",
  8791. height: math.unit(6, "inches")
  8792. },
  8793. {
  8794. name: "Normal",
  8795. height: math.unit(20, "feet"),
  8796. default: true
  8797. },
  8798. {
  8799. name: "Rampage",
  8800. height: math.unit(200, "feet")
  8801. },
  8802. {
  8803. name: "Archfey Forest Guardian",
  8804. height: math.unit(1, "mile")
  8805. },
  8806. ]
  8807. ))
  8808. characterMakers.push(() => makeCharacter(
  8809. { name: "Marik" },
  8810. {
  8811. front: {
  8812. height: math.unit(4, "meters"),
  8813. weight: math.unit(2, "tons"),
  8814. name: "Front",
  8815. image: {
  8816. source: "./media/characters/marik/front.svg",
  8817. extra: 1057 / 1003,
  8818. bottom: 0.08
  8819. }
  8820. },
  8821. },
  8822. [
  8823. {
  8824. name: "Normal",
  8825. height: math.unit(4, "meters"),
  8826. default: true
  8827. },
  8828. {
  8829. name: "Macro",
  8830. height: math.unit(20, "meters")
  8831. },
  8832. {
  8833. name: "Megamacro",
  8834. height: math.unit(50, "km")
  8835. },
  8836. {
  8837. name: "Gigamacro",
  8838. height: math.unit(100, "km")
  8839. },
  8840. {
  8841. name: "Alpha Macro",
  8842. height: math.unit(7.88e7, "yottameters")
  8843. },
  8844. ]
  8845. ))
  8846. characterMakers.push(() => makeCharacter(
  8847. { name: "Mel" },
  8848. {
  8849. front: {
  8850. height: math.unit(6, "feet"),
  8851. weight: math.unit(110, "lb"),
  8852. name: "Front",
  8853. image: {
  8854. source: "./media/characters/mel/front.svg",
  8855. extra: 736 / 617,
  8856. bottom: 0.017
  8857. }
  8858. },
  8859. },
  8860. [
  8861. {
  8862. name: "Pico",
  8863. height: math.unit(3, "pm")
  8864. },
  8865. {
  8866. name: "Nano",
  8867. height: math.unit(3, "nm")
  8868. },
  8869. {
  8870. name: "Micro",
  8871. height: math.unit(0.3, "mm"),
  8872. default: true
  8873. },
  8874. {
  8875. name: "Micro+",
  8876. height: math.unit(3, "mm")
  8877. },
  8878. {
  8879. name: "Normal",
  8880. height: math.unit(5 + 10.5 / 12, "feet")
  8881. },
  8882. ]
  8883. ))
  8884. characterMakers.push(() => makeCharacter(
  8885. { name: "Lykonous" },
  8886. {
  8887. kaiju: {
  8888. height: math.unit(1.75, "meters"),
  8889. weight: math.unit(55, "kg"),
  8890. name: "Kaiju",
  8891. image: {
  8892. source: "./media/characters/lykonous/kaiju.svg",
  8893. extra: 1055 / 946,
  8894. bottom: 0.135
  8895. }
  8896. },
  8897. },
  8898. [
  8899. {
  8900. name: "Normal",
  8901. height: math.unit(2.5, "meters"),
  8902. default: true
  8903. },
  8904. {
  8905. name: "Kaiju Dragon",
  8906. height: math.unit(60, "meters")
  8907. },
  8908. {
  8909. name: "Mega Kaiju",
  8910. height: math.unit(120, "km")
  8911. },
  8912. {
  8913. name: "Giga Kaiju",
  8914. height: math.unit(200, "megameters")
  8915. },
  8916. {
  8917. name: "Terra Kaiju",
  8918. height: math.unit(400, "gigameters")
  8919. },
  8920. {
  8921. name: "Kaiju Dragon God",
  8922. height: math.unit(13000, "exaparsecs")
  8923. },
  8924. ]
  8925. ))
  8926. characterMakers.push(() => makeCharacter(
  8927. { name: "Blü" },
  8928. {
  8929. front: {
  8930. height: math.unit(6, "feet"),
  8931. weight: math.unit(150, "lb"),
  8932. name: "Front",
  8933. image: {
  8934. source: "./media/characters/blü/front.svg",
  8935. extra: 1883 / 1564,
  8936. bottom: 0.031
  8937. }
  8938. },
  8939. },
  8940. [
  8941. {
  8942. name: "Normal",
  8943. height: math.unit(13, "feet"),
  8944. default: true
  8945. },
  8946. {
  8947. name: "Big Boi",
  8948. height: math.unit(150, "meters")
  8949. },
  8950. {
  8951. name: "Mini Stomper",
  8952. height: math.unit(300, "meters")
  8953. },
  8954. {
  8955. name: "Macro",
  8956. height: math.unit(1000, "meters")
  8957. },
  8958. {
  8959. name: "Megamacro",
  8960. height: math.unit(11000, "meters")
  8961. },
  8962. {
  8963. name: "Gigamacro",
  8964. height: math.unit(11000, "km")
  8965. },
  8966. {
  8967. name: "Teramacro",
  8968. height: math.unit(420000, "km")
  8969. },
  8970. {
  8971. name: "Examacro",
  8972. height: math.unit(120, "parsecs")
  8973. },
  8974. {
  8975. name: "God Tho",
  8976. height: math.unit(98000000000, "parsecs")
  8977. },
  8978. ]
  8979. ))
  8980. characterMakers.push(() => makeCharacter(
  8981. { name: "Scales" },
  8982. {
  8983. taurFront: {
  8984. height: math.unit(6, "feet"),
  8985. weight: math.unit(200, "lb"),
  8986. name: "Taur (Front)",
  8987. image: {
  8988. source: "./media/characters/scales/taur-front.svg",
  8989. extra: 1,
  8990. bottom: 0.05
  8991. }
  8992. },
  8993. taurBack: {
  8994. height: math.unit(6, "feet"),
  8995. weight: math.unit(200, "lb"),
  8996. name: "Taur (Back)",
  8997. image: {
  8998. source: "./media/characters/scales/taur-back.svg",
  8999. extra: 1,
  9000. bottom: 0.08
  9001. }
  9002. },
  9003. anthro: {
  9004. height: math.unit(6 * 7 / 12, "feet"),
  9005. weight: math.unit(100, "lb"),
  9006. name: "Anthro",
  9007. image: {
  9008. source: "./media/characters/scales/anthro.svg",
  9009. extra: 1,
  9010. bottom: 0.06
  9011. }
  9012. },
  9013. },
  9014. [
  9015. {
  9016. name: "Normal",
  9017. height: math.unit(12, "feet"),
  9018. default: true
  9019. },
  9020. ]
  9021. ))
  9022. characterMakers.push(() => makeCharacter(
  9023. { name: "Koragos" },
  9024. {
  9025. front: {
  9026. height: math.unit(6, "feet"),
  9027. weight: math.unit(150, "lb"),
  9028. name: "Front",
  9029. image: {
  9030. source: "./media/characters/koragos/front.svg",
  9031. extra: 841 / 794,
  9032. bottom: 0.035
  9033. }
  9034. },
  9035. back: {
  9036. height: math.unit(6, "feet"),
  9037. weight: math.unit(150, "lb"),
  9038. name: "Back",
  9039. image: {
  9040. source: "./media/characters/koragos/back.svg",
  9041. extra: 841 / 810,
  9042. bottom: 0.022
  9043. }
  9044. },
  9045. },
  9046. [
  9047. {
  9048. name: "Normal",
  9049. height: math.unit(6 + 11 / 12, "feet"),
  9050. default: true
  9051. },
  9052. {
  9053. name: "Macro",
  9054. height: math.unit(490, "feet")
  9055. },
  9056. {
  9057. name: "Megamacro",
  9058. height: math.unit(10, "miles")
  9059. },
  9060. {
  9061. name: "Gigamacro",
  9062. height: math.unit(50, "miles")
  9063. },
  9064. ]
  9065. ))
  9066. characterMakers.push(() => makeCharacter(
  9067. { name: "Xylrem" },
  9068. {
  9069. front: {
  9070. height: math.unit(6, "feet"),
  9071. weight: math.unit(250, "lb"),
  9072. name: "Front",
  9073. image: {
  9074. source: "./media/characters/xylrem/front.svg",
  9075. extra: 3323 / 3050,
  9076. bottom: 0.065
  9077. }
  9078. },
  9079. },
  9080. [
  9081. {
  9082. name: "Micro",
  9083. height: math.unit(4, "feet")
  9084. },
  9085. {
  9086. name: "Normal",
  9087. height: math.unit(16, "feet"),
  9088. default: true
  9089. },
  9090. {
  9091. name: "Macro",
  9092. height: math.unit(2720, "feet")
  9093. },
  9094. {
  9095. name: "Megamacro",
  9096. height: math.unit(25000, "miles")
  9097. },
  9098. ]
  9099. ))
  9100. characterMakers.push(() => makeCharacter(
  9101. { name: "Ikideru" },
  9102. {
  9103. front: {
  9104. height: math.unit(8, "feet"),
  9105. weight: math.unit(250, "kg"),
  9106. name: "Front",
  9107. image: {
  9108. source: "./media/characters/ikideru/front.svg",
  9109. extra: 930 / 870,
  9110. bottom: 0.087
  9111. }
  9112. },
  9113. back: {
  9114. height: math.unit(8, "feet"),
  9115. weight: math.unit(250, "kg"),
  9116. name: "Back",
  9117. image: {
  9118. source: "./media/characters/ikideru/back.svg",
  9119. extra: 919 / 852,
  9120. bottom: 0.055
  9121. }
  9122. },
  9123. },
  9124. [
  9125. {
  9126. name: "Rare",
  9127. height: math.unit(8, "feet"),
  9128. default: true
  9129. },
  9130. {
  9131. name: "Playful Loom",
  9132. height: math.unit(80, "feet")
  9133. },
  9134. {
  9135. name: "City Leaner",
  9136. height: math.unit(230, "feet")
  9137. },
  9138. {
  9139. name: "Megamacro",
  9140. height: math.unit(2500, "feet")
  9141. },
  9142. {
  9143. name: "Gigamacro",
  9144. height: math.unit(26400, "feet")
  9145. },
  9146. {
  9147. name: "Tectonic Shifter",
  9148. height: math.unit(1.7, "megameters")
  9149. },
  9150. {
  9151. name: "Planet Carer",
  9152. height: math.unit(21, "megameters")
  9153. },
  9154. {
  9155. name: "God",
  9156. height: math.unit(11157.22, "parsecs")
  9157. },
  9158. ]
  9159. ))
  9160. characterMakers.push(() => makeCharacter(
  9161. { name: "Neo" },
  9162. {
  9163. front: {
  9164. height: math.unit(6, "feet"),
  9165. weight: math.unit(120, "lb"),
  9166. name: "Front",
  9167. image: {
  9168. source: "./media/characters/neo/front.svg"
  9169. }
  9170. },
  9171. },
  9172. [
  9173. {
  9174. name: "Micro",
  9175. height: math.unit(2, "inches"),
  9176. default: true
  9177. },
  9178. {
  9179. name: "Human Size",
  9180. height: math.unit(5 + 8 / 12, "feet")
  9181. },
  9182. ]
  9183. ))
  9184. characterMakers.push(() => makeCharacter(
  9185. { name: "Chauncey (Chantz)" },
  9186. {
  9187. front: {
  9188. height: math.unit(13 + 10 / 12, "feet"),
  9189. weight: math.unit(5320, "lb"),
  9190. name: "Front",
  9191. image: {
  9192. source: "./media/characters/chauncey-chantz/front.svg",
  9193. extra: 1587 / 1435,
  9194. bottom: 0.02
  9195. }
  9196. },
  9197. },
  9198. [
  9199. {
  9200. name: "Normal",
  9201. height: math.unit(13 + 10 / 12, "feet"),
  9202. default: true
  9203. },
  9204. {
  9205. name: "Macro",
  9206. height: math.unit(45, "feet")
  9207. },
  9208. {
  9209. name: "Megamacro",
  9210. height: math.unit(250, "miles")
  9211. },
  9212. {
  9213. name: "Planetary",
  9214. height: math.unit(10000, "miles")
  9215. },
  9216. {
  9217. name: "Galactic",
  9218. height: math.unit(40000, "parsecs")
  9219. },
  9220. {
  9221. name: "Universal",
  9222. height: math.unit(1, "yottameter")
  9223. },
  9224. ]
  9225. ))
  9226. characterMakers.push(() => makeCharacter(
  9227. { name: "Epifox" },
  9228. {
  9229. front: {
  9230. height: math.unit(6, "feet"),
  9231. weight: math.unit(150, "lb"),
  9232. name: "Front",
  9233. image: {
  9234. source: "./media/characters/epifox/front.svg",
  9235. extra: 1,
  9236. bottom: 0.075
  9237. }
  9238. },
  9239. },
  9240. [
  9241. {
  9242. name: "Micro",
  9243. height: math.unit(6, "inches")
  9244. },
  9245. {
  9246. name: "Normal",
  9247. height: math.unit(12, "feet"),
  9248. default: true
  9249. },
  9250. {
  9251. name: "Macro",
  9252. height: math.unit(3810, "feet")
  9253. },
  9254. {
  9255. name: "Megamacro",
  9256. height: math.unit(500, "miles")
  9257. },
  9258. ]
  9259. ))
  9260. characterMakers.push(() => makeCharacter(
  9261. { name: "Colin T." },
  9262. {
  9263. front: {
  9264. height: math.unit(1.8796, "m"),
  9265. weight: math.unit(230, "lb"),
  9266. name: "Front",
  9267. image: {
  9268. source: "./media/characters/colin-t/front.svg",
  9269. extra: 1272 / 1193,
  9270. bottom: 0.07
  9271. }
  9272. },
  9273. },
  9274. [
  9275. {
  9276. name: "Micro",
  9277. height: math.unit(0.571, "meters")
  9278. },
  9279. {
  9280. name: "Normal",
  9281. height: math.unit(1.8796, "meters"),
  9282. default: true
  9283. },
  9284. {
  9285. name: "Tall",
  9286. height: math.unit(4, "meters")
  9287. },
  9288. {
  9289. name: "Macro",
  9290. height: math.unit(67.241, "meters")
  9291. },
  9292. {
  9293. name: "Megamacro",
  9294. height: math.unit(371.856, "meters")
  9295. },
  9296. {
  9297. name: "Planetary",
  9298. height: math.unit(12631.5689, "km")
  9299. },
  9300. ]
  9301. ))
  9302. characterMakers.push(() => makeCharacter(
  9303. { name: "Matvei" },
  9304. {
  9305. front: {
  9306. height: math.unit(1.85, "meters"),
  9307. weight: math.unit(80, "kg"),
  9308. name: "Front",
  9309. image: {
  9310. source: "./media/characters/matvei/front.svg",
  9311. extra: 614 / 594,
  9312. bottom: 0.01
  9313. }
  9314. },
  9315. },
  9316. [
  9317. {
  9318. name: "Normal",
  9319. height: math.unit(1.85, "meters"),
  9320. default: true
  9321. },
  9322. ]
  9323. ))
  9324. characterMakers.push(() => makeCharacter(
  9325. { name: "Quincy" },
  9326. {
  9327. front: {
  9328. height: math.unit(5 + 9 / 12, "feet"),
  9329. weight: math.unit(70, "lb"),
  9330. name: "Front",
  9331. image: {
  9332. source: "./media/characters/quincy/front.svg",
  9333. extra: 3041 / 2751
  9334. }
  9335. },
  9336. back: {
  9337. height: math.unit(5 + 9 / 12, "feet"),
  9338. weight: math.unit(70, "lb"),
  9339. name: "Back",
  9340. image: {
  9341. source: "./media/characters/quincy/back.svg",
  9342. extra: 3041 / 2751
  9343. }
  9344. },
  9345. flying: {
  9346. height: math.unit(5 + 4 / 12, "feet"),
  9347. weight: math.unit(70, "lb"),
  9348. name: "Flying",
  9349. image: {
  9350. source: "./media/characters/quincy/flying.svg",
  9351. extra: 1044 / 930
  9352. }
  9353. },
  9354. },
  9355. [
  9356. {
  9357. name: "Micro",
  9358. height: math.unit(3, "cm")
  9359. },
  9360. {
  9361. name: "Normal",
  9362. height: math.unit(5 + 9 / 12, "feet")
  9363. },
  9364. {
  9365. name: "Macro",
  9366. height: math.unit(200, "meters"),
  9367. default: true
  9368. },
  9369. {
  9370. name: "Megamacro",
  9371. height: math.unit(1000, "meters")
  9372. },
  9373. ]
  9374. ))
  9375. characterMakers.push(() => makeCharacter(
  9376. { name: "Vanrel" },
  9377. {
  9378. front: {
  9379. height: math.unit(4 + 7 / 12, "feet"),
  9380. weight: math.unit(150, "lb"),
  9381. name: "Front",
  9382. image: {
  9383. source: "./media/characters/vanrel/front.svg",
  9384. extra: 1,
  9385. bottom: 0.02
  9386. }
  9387. },
  9388. elemental: {
  9389. height: math.unit(4 + 2 / 12, "feet"),
  9390. weight: math.unit(150, "lb"),
  9391. name: "Elemental",
  9392. image: {
  9393. source: "./media/characters/vanrel/elemental.svg"
  9394. }
  9395. },
  9396. side: {
  9397. height: math.unit(4 + 7 / 12, "feet"),
  9398. weight: math.unit(150, "lb"),
  9399. name: "Side",
  9400. image: {
  9401. source: "./media/characters/vanrel/side.svg",
  9402. extra: 1,
  9403. bottom: 0.025
  9404. }
  9405. },
  9406. tome: {
  9407. height: math.unit(1.35, "feet"),
  9408. weight: math.unit(10, "lb"),
  9409. name: "Vanrel's Tome",
  9410. rename: true,
  9411. image: {
  9412. source: "./media/characters/vanrel/tome.svg"
  9413. }
  9414. },
  9415. beans: {
  9416. height: math.unit(0.89, "feet"),
  9417. name: "Beans",
  9418. image: {
  9419. source: "./media/characters/vanrel/beans.svg"
  9420. }
  9421. },
  9422. },
  9423. [
  9424. {
  9425. name: "Normal",
  9426. height: math.unit(4 + 7 / 12, "feet"),
  9427. default: true
  9428. },
  9429. ]
  9430. ))
  9431. characterMakers.push(() => makeCharacter(
  9432. { name: "Kuiper Vanrel" },
  9433. {
  9434. front: {
  9435. height: math.unit(7 + 5 / 12, "feet"),
  9436. weight: math.unit(150, "lb"),
  9437. name: "Front",
  9438. image: {
  9439. source: "./media/characters/kuiper-vanrel/front.svg",
  9440. extra: 1118 / 1068,
  9441. bottom: 0.09
  9442. }
  9443. },
  9444. foot: {
  9445. height: math.unit(0.55, "meters"),
  9446. name: "Foot",
  9447. image: {
  9448. source: "./media/characters/kuiper-vanrel/foot.svg",
  9449. }
  9450. },
  9451. },
  9452. [
  9453. {
  9454. name: "Normal",
  9455. height: math.unit(7 + 5 / 12, "feet"),
  9456. default: true
  9457. },
  9458. ]
  9459. ))
  9460. characterMakers.push(() => makeCharacter(
  9461. { name: "Keset Vanrel" },
  9462. {
  9463. front: {
  9464. height: math.unit(8 + 5 / 12, "feet"),
  9465. weight: math.unit(150, "lb"),
  9466. name: "Front",
  9467. image: {
  9468. source: "./media/characters/keset-vanrel/front.svg",
  9469. extra: 1150 / 1084,
  9470. bottom: 0.05
  9471. }
  9472. },
  9473. hand: {
  9474. height: math.unit(0.6, "meters"),
  9475. name: "Hand",
  9476. image: {
  9477. source: "./media/characters/keset-vanrel/hand.svg"
  9478. }
  9479. },
  9480. foot: {
  9481. height: math.unit(0.94978, "meters"),
  9482. name: "Foot",
  9483. image: {
  9484. source: "./media/characters/keset-vanrel/foot.svg"
  9485. }
  9486. },
  9487. },
  9488. [
  9489. {
  9490. name: "Normal",
  9491. height: math.unit(8 + 5 / 12, "feet"),
  9492. default: true
  9493. },
  9494. ]
  9495. ))
  9496. characterMakers.push(() => makeCharacter(
  9497. { name: "Neos" },
  9498. {
  9499. front: {
  9500. height: math.unit(6, "feet"),
  9501. weight: math.unit(150, "lb"),
  9502. name: "Front",
  9503. image: {
  9504. source: "./media/characters/neos/front.svg",
  9505. extra: 1696 / 992,
  9506. bottom: 0.14
  9507. }
  9508. },
  9509. },
  9510. [
  9511. {
  9512. name: "Normal",
  9513. height: math.unit(54, "cm"),
  9514. default: true
  9515. },
  9516. {
  9517. name: "Macro",
  9518. height: math.unit(100, "m")
  9519. },
  9520. {
  9521. name: "Megamacro",
  9522. height: math.unit(10, "km")
  9523. },
  9524. {
  9525. name: "Megamacro+",
  9526. height: math.unit(100, "km")
  9527. },
  9528. {
  9529. name: "Gigamacro",
  9530. height: math.unit(100, "Mm")
  9531. },
  9532. {
  9533. name: "Teramacro",
  9534. height: math.unit(100, "Gm")
  9535. },
  9536. {
  9537. name: "Examacro",
  9538. height: math.unit(100, "Em")
  9539. },
  9540. {
  9541. name: "Godly",
  9542. height: math.unit(10000, "Ym")
  9543. },
  9544. {
  9545. name: "Beyond Godly",
  9546. height: math.unit(10000000, "Ym")
  9547. },
  9548. ]
  9549. ))
  9550. characterMakers.push(() => makeCharacter(
  9551. { name: "Sammy Mouse" },
  9552. {
  9553. feminine: {
  9554. height: math.unit(5, "feet"),
  9555. weight: math.unit(100, "lb"),
  9556. name: "Feminine",
  9557. image: {
  9558. source: "./media/characters/sammy-mouse/feminine.svg",
  9559. extra: 2526 / 2425,
  9560. bottom: 0.123
  9561. }
  9562. },
  9563. masculine: {
  9564. height: math.unit(5, "feet"),
  9565. weight: math.unit(100, "lb"),
  9566. name: "Masculine",
  9567. image: {
  9568. source: "./media/characters/sammy-mouse/masculine.svg",
  9569. extra: 2526 / 2425,
  9570. bottom: 0.123
  9571. }
  9572. },
  9573. },
  9574. [
  9575. {
  9576. name: "Micro",
  9577. height: math.unit(5, "inches")
  9578. },
  9579. {
  9580. name: "Normal",
  9581. height: math.unit(5, "feet"),
  9582. default: true
  9583. },
  9584. {
  9585. name: "Macro",
  9586. height: math.unit(60, "feet")
  9587. },
  9588. ]
  9589. ))
  9590. characterMakers.push(() => makeCharacter(
  9591. { name: "Kole" },
  9592. {
  9593. front: {
  9594. height: math.unit(4, "feet"),
  9595. weight: math.unit(50, "lb"),
  9596. name: "Front",
  9597. image: {
  9598. source: "./media/characters/kole/front.svg",
  9599. extra: 1423 / 1303,
  9600. bottom: 0.025
  9601. }
  9602. },
  9603. back: {
  9604. height: math.unit(4, "feet"),
  9605. weight: math.unit(50, "lb"),
  9606. name: "Back",
  9607. image: {
  9608. source: "./media/characters/kole/back.svg",
  9609. extra: 1426 / 1280,
  9610. bottom: 0.02
  9611. }
  9612. },
  9613. },
  9614. [
  9615. {
  9616. name: "Normal",
  9617. height: math.unit(4, "feet"),
  9618. default: true
  9619. },
  9620. ]
  9621. ))
  9622. characterMakers.push(() => makeCharacter(
  9623. { name: "Rufran" },
  9624. {
  9625. front: {
  9626. height: math.unit(2 + 6 / 12, "feet"),
  9627. weight: math.unit(20, "lb"),
  9628. name: "Front",
  9629. image: {
  9630. source: "./media/characters/rufran/front.svg",
  9631. extra: 2041 / 1839,
  9632. bottom: 0.055
  9633. }
  9634. },
  9635. back: {
  9636. height: math.unit(2 + 6 / 12, "feet"),
  9637. weight: math.unit(20, "lb"),
  9638. name: "Back",
  9639. image: {
  9640. source: "./media/characters/rufran/back.svg",
  9641. extra: 2054 / 1839,
  9642. bottom: 0.01
  9643. }
  9644. },
  9645. hand: {
  9646. height: math.unit(0.2166, "meters"),
  9647. name: "Hand",
  9648. image: {
  9649. source: "./media/characters/rufran/hand.svg"
  9650. }
  9651. },
  9652. foot: {
  9653. height: math.unit(0.185, "meters"),
  9654. name: "Foot",
  9655. image: {
  9656. source: "./media/characters/rufran/foot.svg"
  9657. }
  9658. },
  9659. },
  9660. [
  9661. {
  9662. name: "Micro",
  9663. height: math.unit(1, "inch")
  9664. },
  9665. {
  9666. name: "Normal",
  9667. height: math.unit(2 + 6 / 12, "feet"),
  9668. default: true
  9669. },
  9670. {
  9671. name: "Big",
  9672. height: math.unit(60, "feet")
  9673. },
  9674. {
  9675. name: "Macro",
  9676. height: math.unit(325, "feet")
  9677. },
  9678. ]
  9679. ))
  9680. characterMakers.push(() => makeCharacter(
  9681. { name: "Chip" },
  9682. {
  9683. front: {
  9684. height: math.unit(0.3, "meters"),
  9685. weight: math.unit(3.5, "kg"),
  9686. name: "Front",
  9687. image: {
  9688. source: "./media/characters/chip/front.svg",
  9689. extra: 748 / 674
  9690. }
  9691. },
  9692. },
  9693. [
  9694. {
  9695. name: "Micro",
  9696. height: math.unit(1, "inch"),
  9697. default: true
  9698. },
  9699. ]
  9700. ))
  9701. characterMakers.push(() => makeCharacter(
  9702. { name: "Torvid" },
  9703. {
  9704. side: {
  9705. height: math.unit(2.3, "meters"),
  9706. weight: math.unit(3500, "lb"),
  9707. name: "Side",
  9708. image: {
  9709. source: "./media/characters/torvid/side.svg",
  9710. extra: 1972 / 722,
  9711. bottom: 0.035
  9712. }
  9713. },
  9714. },
  9715. [
  9716. {
  9717. name: "Normal",
  9718. height: math.unit(2.3, "meters"),
  9719. default: true
  9720. },
  9721. ]
  9722. ))
  9723. characterMakers.push(() => makeCharacter(
  9724. { name: "Susan" },
  9725. {
  9726. front: {
  9727. height: math.unit(2, "meters"),
  9728. weight: math.unit(150.5, "kg"),
  9729. name: "Front",
  9730. image: {
  9731. source: "./media/characters/susan/front.svg",
  9732. extra: 693 / 635,
  9733. bottom: 0.05
  9734. }
  9735. },
  9736. },
  9737. [
  9738. {
  9739. name: "Megamacro",
  9740. height: math.unit(505, "miles"),
  9741. default: true
  9742. },
  9743. ]
  9744. ))
  9745. characterMakers.push(() => makeCharacter(
  9746. { name: "Raindrops" },
  9747. {
  9748. front: {
  9749. height: math.unit(6, "feet"),
  9750. weight: math.unit(150, "lb"),
  9751. name: "Front",
  9752. image: {
  9753. source: "./media/characters/raindrops/front.svg",
  9754. extra: 2655 / 2461,
  9755. bottom: 0.02
  9756. }
  9757. },
  9758. back: {
  9759. height: math.unit(6, "feet"),
  9760. weight: math.unit(150, "lb"),
  9761. name: "Back",
  9762. image: {
  9763. source: "./media/characters/raindrops/back.svg",
  9764. extra: 2574 / 2400,
  9765. bottom: 0.03
  9766. }
  9767. },
  9768. },
  9769. [
  9770. {
  9771. name: "Micro",
  9772. height: math.unit(6, "inches")
  9773. },
  9774. {
  9775. name: "Normal",
  9776. height: math.unit(6 + 2 / 12, "feet")
  9777. },
  9778. {
  9779. name: "Macro",
  9780. height: math.unit(131, "feet"),
  9781. default: true
  9782. },
  9783. {
  9784. name: "Megamacro",
  9785. height: math.unit(15, "miles")
  9786. },
  9787. {
  9788. name: "Gigamacro",
  9789. height: math.unit(4000, "miles")
  9790. },
  9791. {
  9792. name: "Teramacro",
  9793. height: math.unit(315000, "miles")
  9794. },
  9795. ]
  9796. ))
  9797. characterMakers.push(() => makeCharacter(
  9798. { name: "Tezwa" },
  9799. {
  9800. front: {
  9801. height: math.unit(2.794, "meters"),
  9802. weight: math.unit(325, "kg"),
  9803. name: "Front",
  9804. image: {
  9805. source: "./media/characters/tezwa/front.svg",
  9806. extra: 2083 / 1906,
  9807. bottom: 0.031
  9808. }
  9809. },
  9810. foot: {
  9811. height: math.unit(0.687, "meters"),
  9812. name: "Foot",
  9813. image: {
  9814. source: "./media/characters/tezwa/foot.svg"
  9815. }
  9816. },
  9817. },
  9818. [
  9819. {
  9820. name: "Normal",
  9821. height: math.unit(9 + 2 / 12, "feet"),
  9822. default: true
  9823. },
  9824. ]
  9825. ))
  9826. characterMakers.push(() => makeCharacter(
  9827. { name: "Typhus" },
  9828. {
  9829. front: {
  9830. height: math.unit(58, "feet"),
  9831. weight: math.unit(89000, "lb"),
  9832. name: "Front",
  9833. image: {
  9834. source: "./media/characters/typhus/front.svg",
  9835. extra: 816 / 800,
  9836. bottom: 0.065
  9837. }
  9838. },
  9839. },
  9840. [
  9841. {
  9842. name: "Macro",
  9843. height: math.unit(58, "feet"),
  9844. default: true
  9845. },
  9846. ]
  9847. ))
  9848. characterMakers.push(() => makeCharacter(
  9849. { name: "Lyra Von Wulf" },
  9850. {
  9851. front: {
  9852. height: math.unit(12, "feet"),
  9853. weight: math.unit(6, "tonnes"),
  9854. name: "Front",
  9855. image: {
  9856. source: "./media/characters/lyra-von-wulf/front.svg",
  9857. extra: 1,
  9858. bottom: 0.10
  9859. }
  9860. },
  9861. frontMecha: {
  9862. height: math.unit(12, "feet"),
  9863. weight: math.unit(12, "tonnes"),
  9864. name: "Front (Mecha)",
  9865. image: {
  9866. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  9867. extra: 1,
  9868. bottom: 0.042
  9869. }
  9870. },
  9871. maw: {
  9872. height: math.unit(2.2, "feet"),
  9873. name: "Maw",
  9874. image: {
  9875. source: "./media/characters/lyra-von-wulf/maw.svg"
  9876. }
  9877. },
  9878. },
  9879. [
  9880. {
  9881. name: "Normal",
  9882. height: math.unit(12, "feet"),
  9883. default: true
  9884. },
  9885. {
  9886. name: "Classic",
  9887. height: math.unit(50, "feet")
  9888. },
  9889. {
  9890. name: "Macro",
  9891. height: math.unit(500, "feet")
  9892. },
  9893. {
  9894. name: "Megamacro",
  9895. height: math.unit(1, "mile")
  9896. },
  9897. {
  9898. name: "Gigamacro",
  9899. height: math.unit(400, "miles")
  9900. },
  9901. {
  9902. name: "Teramacro",
  9903. height: math.unit(22000, "miles")
  9904. },
  9905. {
  9906. name: "Solarmacro",
  9907. height: math.unit(8600000, "miles")
  9908. },
  9909. {
  9910. name: "Galactic",
  9911. height: math.unit(1057000, "lightyears")
  9912. },
  9913. ]
  9914. ))
  9915. characterMakers.push(() => makeCharacter(
  9916. { name: "Dixon" },
  9917. {
  9918. front: {
  9919. height: math.unit(6 + 10 / 12, "feet"),
  9920. weight: math.unit(150, "lb"),
  9921. name: "Front",
  9922. image: {
  9923. source: "./media/characters/dixon/front.svg",
  9924. extra: 3361 / 3209,
  9925. bottom: 0.01
  9926. }
  9927. },
  9928. },
  9929. [
  9930. {
  9931. name: "Normal",
  9932. height: math.unit(6 + 10 / 12, "feet"),
  9933. default: true
  9934. },
  9935. {
  9936. name: "Big",
  9937. height: math.unit(12, "meters")
  9938. },
  9939. {
  9940. name: "Macro",
  9941. height: math.unit(500, "meters")
  9942. },
  9943. {
  9944. name: "Megamacro",
  9945. height: math.unit(2, "km")
  9946. },
  9947. ]
  9948. ))
  9949. characterMakers.push(() => makeCharacter(
  9950. { name: "Kauko" },
  9951. {
  9952. front: {
  9953. height: math.unit(185, "cm"),
  9954. weight: math.unit(68, "kg"),
  9955. name: "Front",
  9956. image: {
  9957. source: "./media/characters/kauko/front.svg",
  9958. extra: 1455 / 1421,
  9959. bottom: 0.03
  9960. }
  9961. },
  9962. back: {
  9963. height: math.unit(185, "cm"),
  9964. weight: math.unit(68, "kg"),
  9965. name: "Back",
  9966. image: {
  9967. source: "./media/characters/kauko/back.svg",
  9968. extra: 1455 / 1421,
  9969. bottom: 0.004
  9970. }
  9971. },
  9972. },
  9973. [
  9974. {
  9975. name: "Normal",
  9976. height: math.unit(185, "cm"),
  9977. default: true
  9978. },
  9979. ]
  9980. ))
  9981. characterMakers.push(() => makeCharacter(
  9982. { name: "Varg" },
  9983. {
  9984. front: {
  9985. height: math.unit(6, "feet"),
  9986. weight: math.unit(150, "kg"),
  9987. name: "Front",
  9988. image: {
  9989. source: "./media/characters/varg/front.svg",
  9990. extra: 1108 / 1018,
  9991. bottom: 0.0375
  9992. }
  9993. },
  9994. },
  9995. [
  9996. {
  9997. name: "Normal",
  9998. height: math.unit(5, "meters")
  9999. },
  10000. {
  10001. name: "Macro",
  10002. height: math.unit(200, "meters")
  10003. },
  10004. {
  10005. name: "Megamacro",
  10006. height: math.unit(20, "kilometers")
  10007. },
  10008. {
  10009. name: "True Size",
  10010. height: math.unit(211, "km"),
  10011. default: true
  10012. },
  10013. {
  10014. name: "Gigamacro",
  10015. height: math.unit(1000, "km")
  10016. },
  10017. {
  10018. name: "Gigamacro+",
  10019. height: math.unit(8000, "km")
  10020. },
  10021. {
  10022. name: "Teramacro",
  10023. height: math.unit(1000000, "km")
  10024. },
  10025. ]
  10026. ))
  10027. characterMakers.push(() => makeCharacter(
  10028. { name: "Dayza" },
  10029. {
  10030. front: {
  10031. height: math.unit(7 + 7 / 12, "feet"),
  10032. weight: math.unit(267, "lb"),
  10033. name: "Front",
  10034. image: {
  10035. source: "./media/characters/dayza/front.svg",
  10036. extra: 1262 / 1200,
  10037. bottom: 0.035
  10038. }
  10039. },
  10040. side: {
  10041. height: math.unit(7 + 7 / 12, "feet"),
  10042. weight: math.unit(267, "lb"),
  10043. name: "Side",
  10044. image: {
  10045. source: "./media/characters/dayza/side.svg",
  10046. extra: 1295 / 1245,
  10047. bottom: 0.05
  10048. }
  10049. },
  10050. back: {
  10051. height: math.unit(7 + 7 / 12, "feet"),
  10052. weight: math.unit(267, "lb"),
  10053. name: "Back",
  10054. image: {
  10055. source: "./media/characters/dayza/back.svg",
  10056. extra: 1241 / 1170
  10057. }
  10058. },
  10059. },
  10060. [
  10061. {
  10062. name: "Normal",
  10063. height: math.unit(7 + 7 / 12, "feet"),
  10064. default: true
  10065. },
  10066. {
  10067. name: "Macro",
  10068. height: math.unit(155, "feet")
  10069. },
  10070. ]
  10071. ))
  10072. characterMakers.push(() => makeCharacter(
  10073. { name: "Xanthos" },
  10074. {
  10075. front: {
  10076. height: math.unit(6 + 5 / 12, "feet"),
  10077. weight: math.unit(160, "lb"),
  10078. name: "Front",
  10079. image: {
  10080. source: "./media/characters/xanthos/front.svg",
  10081. extra: 1,
  10082. bottom: 0.04
  10083. }
  10084. },
  10085. back: {
  10086. height: math.unit(6 + 5 / 12, "feet"),
  10087. weight: math.unit(160, "lb"),
  10088. name: "Back",
  10089. image: {
  10090. source: "./media/characters/xanthos/back.svg",
  10091. extra: 1,
  10092. bottom: 0.03
  10093. }
  10094. },
  10095. hand: {
  10096. height: math.unit(0.928, "feet"),
  10097. name: "Hand",
  10098. image: {
  10099. source: "./media/characters/xanthos/hand.svg"
  10100. }
  10101. },
  10102. foot: {
  10103. height: math.unit(1.286, "feet"),
  10104. name: "Foot",
  10105. image: {
  10106. source: "./media/characters/xanthos/foot.svg"
  10107. }
  10108. },
  10109. },
  10110. [
  10111. {
  10112. name: "Normal",
  10113. height: math.unit(6 + 5 / 12, "feet"),
  10114. default: true
  10115. },
  10116. {
  10117. name: "Normal+",
  10118. height: math.unit(6, "meters")
  10119. },
  10120. {
  10121. name: "Macro",
  10122. height: math.unit(40, "feet")
  10123. },
  10124. {
  10125. name: "Macro+",
  10126. height: math.unit(200, "meters")
  10127. },
  10128. {
  10129. name: "Megamacro",
  10130. height: math.unit(20, "km")
  10131. },
  10132. {
  10133. name: "Megamacro+",
  10134. height: math.unit(100, "km")
  10135. },
  10136. ]
  10137. ))
  10138. characterMakers.push(() => makeCharacter(
  10139. { name: "Grynn" },
  10140. {
  10141. front: {
  10142. height: math.unit(6 + 3 / 12, "feet"),
  10143. weight: math.unit(215, "lb"),
  10144. name: "Front",
  10145. image: {
  10146. source: "./media/characters/grynn/front.svg",
  10147. extra: 4627 / 4209,
  10148. bottom: 0.047
  10149. }
  10150. },
  10151. },
  10152. [
  10153. {
  10154. name: "Micro",
  10155. height: math.unit(6, "inches")
  10156. },
  10157. {
  10158. name: "Normal",
  10159. height: math.unit(6 + 3 / 12, "feet"),
  10160. default: true
  10161. },
  10162. {
  10163. name: "Big",
  10164. height: math.unit(104, "feet")
  10165. },
  10166. {
  10167. name: "Macro",
  10168. height: math.unit(944, "feet")
  10169. },
  10170. {
  10171. name: "Macro+",
  10172. height: math.unit(9480, "feet")
  10173. },
  10174. {
  10175. name: "Megamacro",
  10176. height: math.unit(78752, "feet")
  10177. },
  10178. {
  10179. name: "Megamacro+",
  10180. height: math.unit(630128, "feet")
  10181. },
  10182. {
  10183. name: "Megamacro++",
  10184. height: math.unit(3150695, "feet")
  10185. },
  10186. ]
  10187. ))
  10188. characterMakers.push(() => makeCharacter(
  10189. { name: "Mocha Aura" },
  10190. {
  10191. front: {
  10192. height: math.unit(7 + 5 / 12, "feet"),
  10193. weight: math.unit(450, "lb"),
  10194. name: "Front",
  10195. image: {
  10196. source: "./media/characters/mocha-aura/front.svg",
  10197. extra: 1907 / 1817,
  10198. bottom: 0.04
  10199. }
  10200. },
  10201. back: {
  10202. height: math.unit(7 + 5 / 12, "feet"),
  10203. weight: math.unit(450, "lb"),
  10204. name: "Back",
  10205. image: {
  10206. source: "./media/characters/mocha-aura/back.svg",
  10207. extra: 1900 / 1825,
  10208. bottom: 0.045
  10209. }
  10210. },
  10211. },
  10212. [
  10213. {
  10214. name: "Nano",
  10215. height: math.unit(1, "nm")
  10216. },
  10217. {
  10218. name: "Megamicro",
  10219. height: math.unit(1, "mm")
  10220. },
  10221. {
  10222. name: "Micro",
  10223. height: math.unit(3, "inches")
  10224. },
  10225. {
  10226. name: "Normal",
  10227. height: math.unit(7 + 5 / 12, "feet"),
  10228. default: true
  10229. },
  10230. {
  10231. name: "Macro",
  10232. height: math.unit(30, "feet")
  10233. },
  10234. {
  10235. name: "Megamacro",
  10236. height: math.unit(3500, "feet")
  10237. },
  10238. {
  10239. name: "Teramacro",
  10240. height: math.unit(500000, "miles")
  10241. },
  10242. {
  10243. name: "Petamacro",
  10244. height: math.unit(50000000000000000, "parsecs")
  10245. },
  10246. ]
  10247. ))
  10248. characterMakers.push(() => makeCharacter(
  10249. { name: "Ilisha Devya" },
  10250. {
  10251. front: {
  10252. height: math.unit(6, "feet"),
  10253. weight: math.unit(150, "lb"),
  10254. name: "Front",
  10255. image: {
  10256. source: "./media/characters/ilisha-devya/front.svg",
  10257. extra: 1,
  10258. bottom: 0.175
  10259. }
  10260. },
  10261. back: {
  10262. height: math.unit(6, "feet"),
  10263. weight: math.unit(150, "lb"),
  10264. name: "Back",
  10265. image: {
  10266. source: "./media/characters/ilisha-devya/back.svg",
  10267. extra: 1,
  10268. bottom: 0.015
  10269. }
  10270. },
  10271. },
  10272. [
  10273. {
  10274. name: "Macro",
  10275. height: math.unit(500, "feet"),
  10276. default: true
  10277. },
  10278. {
  10279. name: "Megamacro",
  10280. height: math.unit(10, "miles")
  10281. },
  10282. {
  10283. name: "Gigamacro",
  10284. height: math.unit(100000, "miles")
  10285. },
  10286. {
  10287. name: "Examacro",
  10288. height: math.unit(1e9, "lightyears")
  10289. },
  10290. {
  10291. name: "Omniversal",
  10292. height: math.unit(1e33, "lightyears")
  10293. },
  10294. {
  10295. name: "Beyond Infinite",
  10296. height: math.unit(1e100, "lightyears")
  10297. },
  10298. ]
  10299. ))
  10300. characterMakers.push(() => makeCharacter(
  10301. { name: "Mira" },
  10302. {
  10303. Side: {
  10304. height: math.unit(6, "feet"),
  10305. weight: math.unit(150, "lb"),
  10306. name: "Side",
  10307. image: {
  10308. source: "./media/characters/mira/side.svg",
  10309. extra: 900 / 799,
  10310. bottom: 0.02
  10311. }
  10312. },
  10313. },
  10314. [
  10315. {
  10316. name: "Human Size",
  10317. height: math.unit(6, "feet")
  10318. },
  10319. {
  10320. name: "Macro",
  10321. height: math.unit(100, "feet"),
  10322. default: true
  10323. },
  10324. {
  10325. name: "Megamacro",
  10326. height: math.unit(10, "miles")
  10327. },
  10328. {
  10329. name: "Gigamacro",
  10330. height: math.unit(25000, "miles")
  10331. },
  10332. {
  10333. name: "Teramacro",
  10334. height: math.unit(300, "AU")
  10335. },
  10336. {
  10337. name: "Full Size",
  10338. height: math.unit(4.5e10, "lightyears")
  10339. },
  10340. ]
  10341. ))
  10342. characterMakers.push(() => makeCharacter(
  10343. { name: "Holly" },
  10344. {
  10345. front: {
  10346. height: math.unit(6, "feet"),
  10347. weight: math.unit(150, "lb"),
  10348. name: "Front",
  10349. image: {
  10350. source: "./media/characters/holly/front.svg",
  10351. extra: 639 / 606
  10352. }
  10353. },
  10354. back: {
  10355. height: math.unit(6, "feet"),
  10356. weight: math.unit(150, "lb"),
  10357. name: "Back",
  10358. image: {
  10359. source: "./media/characters/holly/back.svg",
  10360. extra: 623 / 598
  10361. }
  10362. },
  10363. frontWorking: {
  10364. height: math.unit(6, "feet"),
  10365. weight: math.unit(150, "lb"),
  10366. name: "Front (Working)",
  10367. image: {
  10368. source: "./media/characters/holly/front-working.svg",
  10369. extra: 607 / 577,
  10370. bottom: 0.048
  10371. }
  10372. },
  10373. },
  10374. [
  10375. {
  10376. name: "Normal",
  10377. height: math.unit(12 + 3 / 12, "feet"),
  10378. default: true
  10379. },
  10380. ]
  10381. ))
  10382. characterMakers.push(() => makeCharacter(
  10383. { name: "Porter" },
  10384. {
  10385. front: {
  10386. height: math.unit(6, "feet"),
  10387. weight: math.unit(150, "lb"),
  10388. name: "Front",
  10389. image: {
  10390. source: "./media/characters/porter/front.svg",
  10391. extra: 1,
  10392. bottom: 0.01
  10393. }
  10394. },
  10395. frontRobes: {
  10396. height: math.unit(6, "feet"),
  10397. weight: math.unit(150, "lb"),
  10398. name: "Front (Robes)",
  10399. image: {
  10400. source: "./media/characters/porter/front-robes.svg",
  10401. extra: 1.01,
  10402. bottom: 0.01
  10403. }
  10404. },
  10405. },
  10406. [
  10407. {
  10408. name: "Normal",
  10409. height: math.unit(11 + 9 / 12, "feet"),
  10410. default: true
  10411. },
  10412. ]
  10413. ))
  10414. characterMakers.push(() => makeCharacter(
  10415. { name: "Lucy" },
  10416. {
  10417. legendary: {
  10418. height: math.unit(6, "feet"),
  10419. weight: math.unit(150, "lb"),
  10420. name: "Legendary",
  10421. image: {
  10422. source: "./media/characters/lucy/legendary.svg",
  10423. extra: 1355 / 1100,
  10424. bottom: 0.045
  10425. }
  10426. },
  10427. },
  10428. [
  10429. {
  10430. name: "Legendary",
  10431. height: math.unit(86882 * 2, "miles"),
  10432. default: true
  10433. },
  10434. ]
  10435. ))
  10436. characterMakers.push(() => makeCharacter(
  10437. { name: "Drusilla" },
  10438. {
  10439. front: {
  10440. height: math.unit(6, "feet"),
  10441. weight: math.unit(150, "lb"),
  10442. name: "Front",
  10443. image: {
  10444. source: "./media/characters/drusilla/front.svg",
  10445. extra: 678 / 635,
  10446. bottom: 0.03
  10447. }
  10448. },
  10449. back: {
  10450. height: math.unit(6, "feet"),
  10451. weight: math.unit(150, "lb"),
  10452. name: "Back",
  10453. image: {
  10454. source: "./media/characters/drusilla/back.svg",
  10455. extra: 678 / 635,
  10456. bottom: 0.005
  10457. }
  10458. },
  10459. },
  10460. [
  10461. {
  10462. name: "Macro",
  10463. height: math.unit(100, "feet")
  10464. },
  10465. {
  10466. name: "Canon Height",
  10467. height: math.unit(2000, "feet"),
  10468. default: true
  10469. },
  10470. ]
  10471. ))
  10472. characterMakers.push(() => makeCharacter(
  10473. { name: "Renard Thatch" },
  10474. {
  10475. front: {
  10476. height: math.unit(6, "feet"),
  10477. weight: math.unit(180, "lb"),
  10478. name: "Front",
  10479. image: {
  10480. source: "./media/characters/renard-thatch/front.svg",
  10481. extra: 2411 / 2275,
  10482. bottom: 0.01
  10483. }
  10484. },
  10485. frontPosing: {
  10486. height: math.unit(6, "feet"),
  10487. weight: math.unit(180, "lb"),
  10488. name: "Front (Posing)",
  10489. image: {
  10490. source: "./media/characters/renard-thatch/front-posing.svg",
  10491. extra: 2381 / 2261,
  10492. bottom: 0.01
  10493. }
  10494. },
  10495. back: {
  10496. height: math.unit(6, "feet"),
  10497. weight: math.unit(180, "lb"),
  10498. name: "Back",
  10499. image: {
  10500. source: "./media/characters/renard-thatch/back.svg",
  10501. extra: 2428 / 2288
  10502. }
  10503. },
  10504. },
  10505. [
  10506. {
  10507. name: "Micro",
  10508. height: math.unit(3, "inches")
  10509. },
  10510. {
  10511. name: "Default",
  10512. height: math.unit(6, "feet"),
  10513. default: true
  10514. },
  10515. {
  10516. name: "Macro",
  10517. height: math.unit(75, "feet")
  10518. },
  10519. ]
  10520. ))
  10521. characterMakers.push(() => makeCharacter(
  10522. { name: "Sekvra" },
  10523. {
  10524. front: {
  10525. height: math.unit(1450, "feet"),
  10526. weight: math.unit(1.21e6, "tons"),
  10527. name: "Front",
  10528. image: {
  10529. source: "./media/characters/sekvra/front.svg",
  10530. extra: 1,
  10531. bottom: 0.03
  10532. }
  10533. },
  10534. frontClothed: {
  10535. height: math.unit(1450, "feet"),
  10536. weight: math.unit(1.21e6, "tons"),
  10537. name: "Front (Clothed)",
  10538. image: {
  10539. source: "./media/characters/sekvra/front-clothed.svg",
  10540. extra: 1,
  10541. bottom: 0.03
  10542. }
  10543. },
  10544. side: {
  10545. height: math.unit(1450, "feet"),
  10546. weight: math.unit(1.21e6, "tons"),
  10547. name: "Side",
  10548. image: {
  10549. source: "./media/characters/sekvra/side.svg",
  10550. extra: 1,
  10551. bottom: 0.025
  10552. }
  10553. },
  10554. back: {
  10555. height: math.unit(1450, "feet"),
  10556. weight: math.unit(1.21e6, "tons"),
  10557. name: "Back",
  10558. image: {
  10559. source: "./media/characters/sekvra/back.svg",
  10560. extra: 1,
  10561. bottom: 0.005
  10562. }
  10563. },
  10564. },
  10565. [
  10566. {
  10567. name: "Macro",
  10568. height: math.unit(1450, "feet"),
  10569. default: true
  10570. },
  10571. {
  10572. name: "Megamacro",
  10573. height: math.unit(15000, "feet")
  10574. },
  10575. ]
  10576. ))
  10577. characterMakers.push(() => makeCharacter(
  10578. { name: "Carmine" },
  10579. {
  10580. front: {
  10581. height: math.unit(6, "feet"),
  10582. weight: math.unit(150, "lb"),
  10583. name: "Front",
  10584. image: {
  10585. source: "./media/characters/carmine/front.svg",
  10586. extra: 1,
  10587. bottom: 0.035
  10588. }
  10589. },
  10590. frontArmor: {
  10591. height: math.unit(6, "feet"),
  10592. weight: math.unit(150, "lb"),
  10593. name: "Front (Armor)",
  10594. image: {
  10595. source: "./media/characters/carmine/front-armor.svg",
  10596. extra: 1,
  10597. bottom: 0.035
  10598. }
  10599. },
  10600. },
  10601. [
  10602. {
  10603. name: "Large",
  10604. height: math.unit(1, "mile")
  10605. },
  10606. {
  10607. name: "Huge",
  10608. height: math.unit(40, "miles"),
  10609. default: true
  10610. },
  10611. {
  10612. name: "Colossal",
  10613. height: math.unit(2500, "miles")
  10614. },
  10615. ]
  10616. ))
  10617. characterMakers.push(() => makeCharacter(
  10618. { name: "Elyssia" },
  10619. {
  10620. front: {
  10621. height: math.unit(6, "feet"),
  10622. weight: math.unit(150, "lb"),
  10623. name: "Front",
  10624. image: {
  10625. source: "./media/characters/elyssia/front.svg",
  10626. extra: 2201 / 2035,
  10627. bottom: 0.05
  10628. }
  10629. },
  10630. frontClothed: {
  10631. height: math.unit(6, "feet"),
  10632. weight: math.unit(150, "lb"),
  10633. name: "Front (Clothed)",
  10634. image: {
  10635. source: "./media/characters/elyssia/front-clothed.svg",
  10636. extra: 2201 / 2035,
  10637. bottom: 0.05
  10638. }
  10639. },
  10640. back: {
  10641. height: math.unit(6, "feet"),
  10642. weight: math.unit(150, "lb"),
  10643. name: "Back",
  10644. image: {
  10645. source: "./media/characters/elyssia/back.svg",
  10646. extra: 2201 / 2035,
  10647. bottom: 0.013
  10648. }
  10649. },
  10650. },
  10651. [
  10652. {
  10653. name: "Smaller",
  10654. height: math.unit(150, "feet")
  10655. },
  10656. {
  10657. name: "Standard",
  10658. height: math.unit(1400, "feet"),
  10659. default: true
  10660. },
  10661. {
  10662. name: "Distracted",
  10663. height: math.unit(15000, "feet")
  10664. },
  10665. ]
  10666. ))
  10667. characterMakers.push(() => makeCharacter(
  10668. { name: "Geno Maxwell" },
  10669. {
  10670. front: {
  10671. height: math.unit(7 + 4 / 12, "feet"),
  10672. weight: math.unit(500, "lb"),
  10673. name: "Front",
  10674. image: {
  10675. source: "./media/characters/geno-maxwell/front.svg",
  10676. extra: 2207 / 2040,
  10677. bottom: 0.015
  10678. }
  10679. },
  10680. },
  10681. [
  10682. {
  10683. name: "Micro",
  10684. height: math.unit(3, "inches")
  10685. },
  10686. {
  10687. name: "Normal",
  10688. height: math.unit(7 + 4 / 12, "feet"),
  10689. default: true
  10690. },
  10691. {
  10692. name: "Macro",
  10693. height: math.unit(220, "feet")
  10694. },
  10695. {
  10696. name: "Megamacro",
  10697. height: math.unit(11, "miles")
  10698. },
  10699. ]
  10700. ))
  10701. characterMakers.push(() => makeCharacter(
  10702. { name: "Regena Maxwell" },
  10703. {
  10704. front: {
  10705. height: math.unit(7 + 4 / 12, "feet"),
  10706. weight: math.unit(500, "lb"),
  10707. name: "Front",
  10708. image: {
  10709. source: "./media/characters/regena-maxwell/front.svg",
  10710. extra: 3115 / 2770,
  10711. bottom: 0.02
  10712. }
  10713. },
  10714. },
  10715. [
  10716. {
  10717. name: "Normal",
  10718. height: math.unit(7 + 4 / 12, "feet"),
  10719. default: true
  10720. },
  10721. {
  10722. name: "Macro",
  10723. height: math.unit(220, "feet")
  10724. },
  10725. {
  10726. name: "Megamacro",
  10727. height: math.unit(11, "miles")
  10728. },
  10729. ]
  10730. ))
  10731. characterMakers.push(() => makeCharacter(
  10732. { name: "XGlidingDragonX" },
  10733. {
  10734. front: {
  10735. height: math.unit(6, "feet"),
  10736. weight: math.unit(150, "lb"),
  10737. name: "Front",
  10738. image: {
  10739. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10740. extra: 860 / 690,
  10741. bottom: 0.03
  10742. }
  10743. },
  10744. },
  10745. [
  10746. {
  10747. name: "Normal",
  10748. height: math.unit(1.7, "meters"),
  10749. default: true
  10750. },
  10751. ]
  10752. ))
  10753. characterMakers.push(() => makeCharacter(
  10754. { name: "Quilly" },
  10755. {
  10756. front: {
  10757. height: math.unit(6, "feet"),
  10758. weight: math.unit(150, "lb"),
  10759. name: "Front",
  10760. image: {
  10761. source: "./media/characters/quilly/front.svg",
  10762. extra: 890 / 776
  10763. }
  10764. },
  10765. },
  10766. [
  10767. {
  10768. name: "Gigamacro",
  10769. height: math.unit(404090, "miles"),
  10770. default: true
  10771. },
  10772. ]
  10773. ))
  10774. characterMakers.push(() => makeCharacter(
  10775. { name: "Tempest" },
  10776. {
  10777. front: {
  10778. height: math.unit(7 + 8 / 12, "feet"),
  10779. weight: math.unit(350, "lb"),
  10780. name: "Front",
  10781. image: {
  10782. source: "./media/characters/tempest/front.svg",
  10783. extra: 1175 / 1086,
  10784. bottom: 0.02
  10785. }
  10786. },
  10787. },
  10788. [
  10789. {
  10790. name: "Normal",
  10791. height: math.unit(7 + 8 / 12, "feet"),
  10792. default: true
  10793. },
  10794. ]
  10795. ))
  10796. characterMakers.push(() => makeCharacter(
  10797. { name: "Rodger" },
  10798. {
  10799. side: {
  10800. height: math.unit(4 + 5 / 12, "feet"),
  10801. weight: math.unit(80, "lb"),
  10802. name: "Side",
  10803. image: {
  10804. source: "./media/characters/rodger/side.svg",
  10805. extra: 1235 / 1118
  10806. }
  10807. },
  10808. },
  10809. [
  10810. {
  10811. name: "Micro",
  10812. height: math.unit(1, "inch")
  10813. },
  10814. {
  10815. name: "Normal",
  10816. height: math.unit(4 + 5 / 12, "feet"),
  10817. default: true
  10818. },
  10819. {
  10820. name: "Macro",
  10821. height: math.unit(120, "feet")
  10822. },
  10823. ]
  10824. ))
  10825. characterMakers.push(() => makeCharacter(
  10826. { name: "Danyel" },
  10827. {
  10828. front: {
  10829. height: math.unit(6, "feet"),
  10830. weight: math.unit(150, "lb"),
  10831. name: "Front",
  10832. image: {
  10833. source: "./media/characters/danyel/front.svg",
  10834. extra: 1185 / 1123,
  10835. bottom: 0.05
  10836. }
  10837. },
  10838. },
  10839. [
  10840. {
  10841. name: "Shrunken",
  10842. height: math.unit(0.5, "mm")
  10843. },
  10844. {
  10845. name: "Micro",
  10846. height: math.unit(1, "mm"),
  10847. default: true
  10848. },
  10849. {
  10850. name: "Upsized",
  10851. height: math.unit(5 + 5 / 12, "feet")
  10852. },
  10853. ]
  10854. ))
  10855. characterMakers.push(() => makeCharacter(
  10856. { name: "Vivian Bijoux" },
  10857. {
  10858. front: {
  10859. height: math.unit(5 + 6 / 12, "feet"),
  10860. weight: math.unit(200, "lb"),
  10861. name: "Front",
  10862. image: {
  10863. source: "./media/characters/vivian-bijoux/front.svg",
  10864. extra: 1,
  10865. bottom: 0.072
  10866. }
  10867. },
  10868. },
  10869. [
  10870. {
  10871. name: "Normal",
  10872. height: math.unit(5 + 6 / 12, "feet"),
  10873. default: true
  10874. },
  10875. {
  10876. name: "Bad Dream",
  10877. height: math.unit(500, "feet")
  10878. },
  10879. {
  10880. name: "Nightmare",
  10881. height: math.unit(500, "miles")
  10882. },
  10883. ]
  10884. ))
  10885. characterMakers.push(() => makeCharacter(
  10886. { name: "Zeta" },
  10887. {
  10888. front: {
  10889. height: math.unit(6 + 1 / 12, "feet"),
  10890. weight: math.unit(260, "lb"),
  10891. name: "Front",
  10892. image: {
  10893. source: "./media/characters/zeta/front.svg",
  10894. extra: 1968 / 1889,
  10895. bottom: 0.06
  10896. }
  10897. },
  10898. back: {
  10899. height: math.unit(6 + 1 / 12, "feet"),
  10900. weight: math.unit(260, "lb"),
  10901. name: "Back",
  10902. image: {
  10903. source: "./media/characters/zeta/back.svg",
  10904. extra: 1944 / 1858,
  10905. bottom: 0.03
  10906. }
  10907. },
  10908. hand: {
  10909. height: math.unit(1.112, "feet"),
  10910. name: "Hand",
  10911. image: {
  10912. source: "./media/characters/zeta/hand.svg"
  10913. }
  10914. },
  10915. foot: {
  10916. height: math.unit(1.48, "feet"),
  10917. name: "Foot",
  10918. image: {
  10919. source: "./media/characters/zeta/foot.svg"
  10920. }
  10921. },
  10922. },
  10923. [
  10924. {
  10925. name: "Micro",
  10926. height: math.unit(6, "inches")
  10927. },
  10928. {
  10929. name: "Normal",
  10930. height: math.unit(6 + 1 / 12, "feet"),
  10931. default: true
  10932. },
  10933. {
  10934. name: "Macro",
  10935. height: math.unit(20, "feet")
  10936. },
  10937. ]
  10938. ))
  10939. characterMakers.push(() => makeCharacter(
  10940. { name: "Jamie Larsen" },
  10941. {
  10942. front: {
  10943. height: math.unit(6, "feet"),
  10944. weight: math.unit(150, "lb"),
  10945. name: "Front",
  10946. image: {
  10947. source: "./media/characters/jamie-larsen/front.svg",
  10948. extra: 962 / 933,
  10949. bottom: 0.02
  10950. }
  10951. },
  10952. back: {
  10953. height: math.unit(6, "feet"),
  10954. weight: math.unit(150, "lb"),
  10955. name: "Back",
  10956. image: {
  10957. source: "./media/characters/jamie-larsen/back.svg",
  10958. extra: 997 / 946
  10959. }
  10960. },
  10961. },
  10962. [
  10963. {
  10964. name: "Macro",
  10965. height: math.unit(28 + 7 / 12, "feet"),
  10966. default: true
  10967. },
  10968. {
  10969. name: "Macro+",
  10970. height: math.unit(180, "feet")
  10971. },
  10972. {
  10973. name: "Megamacro",
  10974. height: math.unit(10, "miles")
  10975. },
  10976. {
  10977. name: "Gigamacro",
  10978. height: math.unit(200000, "miles")
  10979. },
  10980. ]
  10981. ))
  10982. characterMakers.push(() => makeCharacter(
  10983. { name: "Vance" },
  10984. {
  10985. front: {
  10986. height: math.unit(6, "feet"),
  10987. weight: math.unit(120, "lb"),
  10988. name: "Front",
  10989. image: {
  10990. source: "./media/characters/vance/front.svg",
  10991. extra: 1980 / 1890,
  10992. bottom: 0.09
  10993. }
  10994. },
  10995. back: {
  10996. height: math.unit(6, "feet"),
  10997. weight: math.unit(120, "lb"),
  10998. name: "Back",
  10999. image: {
  11000. source: "./media/characters/vance/back.svg",
  11001. extra: 2081 / 1994,
  11002. bottom: 0.014
  11003. }
  11004. },
  11005. hand: {
  11006. height: math.unit(0.88, "feet"),
  11007. name: "Hand",
  11008. image: {
  11009. source: "./media/characters/vance/hand.svg"
  11010. }
  11011. },
  11012. foot: {
  11013. height: math.unit(0.64, "feet"),
  11014. name: "Foot",
  11015. image: {
  11016. source: "./media/characters/vance/foot.svg"
  11017. }
  11018. },
  11019. },
  11020. [
  11021. {
  11022. name: "Small",
  11023. height: math.unit(90, "feet"),
  11024. default: true
  11025. },
  11026. {
  11027. name: "Macro",
  11028. height: math.unit(100, "meters")
  11029. },
  11030. {
  11031. name: "Megamacro",
  11032. height: math.unit(15, "miles")
  11033. },
  11034. ]
  11035. ))
  11036. characterMakers.push(() => makeCharacter(
  11037. { name: "Xochitl" },
  11038. {
  11039. front: {
  11040. height: math.unit(6, "feet"),
  11041. weight: math.unit(180, "lb"),
  11042. name: "Front",
  11043. image: {
  11044. source: "./media/characters/xochitl/front.svg",
  11045. extra: 2297 / 2261,
  11046. bottom: 0.065
  11047. }
  11048. },
  11049. back: {
  11050. height: math.unit(6, "feet"),
  11051. weight: math.unit(180, "lb"),
  11052. name: "Back",
  11053. image: {
  11054. source: "./media/characters/xochitl/back.svg",
  11055. extra: 2386 / 2354,
  11056. bottom: 0.01
  11057. }
  11058. },
  11059. foot: {
  11060. height: math.unit(6 / 5 * 1.15, "feet"),
  11061. weight: math.unit(150, "lb"),
  11062. name: "Foot",
  11063. image: {
  11064. source: "./media/characters/xochitl/foot.svg"
  11065. }
  11066. },
  11067. },
  11068. [
  11069. {
  11070. name: "Macro",
  11071. height: math.unit(80, "feet")
  11072. },
  11073. {
  11074. name: "Macro+",
  11075. height: math.unit(400, "feet"),
  11076. default: true
  11077. },
  11078. {
  11079. name: "Gigamacro",
  11080. height: math.unit(80000, "miles")
  11081. },
  11082. {
  11083. name: "Gigamacro+",
  11084. height: math.unit(400000, "miles")
  11085. },
  11086. {
  11087. name: "Teramacro",
  11088. height: math.unit(300, "AU")
  11089. },
  11090. ]
  11091. ))
  11092. characterMakers.push(() => makeCharacter(
  11093. { name: "Vincent" },
  11094. {
  11095. front: {
  11096. height: math.unit(6, "feet"),
  11097. weight: math.unit(150, "lb"),
  11098. name: "Front",
  11099. image: {
  11100. source: "./media/characters/vincent/front.svg",
  11101. extra: 1130 / 1080,
  11102. bottom: 0.055
  11103. }
  11104. },
  11105. beak: {
  11106. height: math.unit(6 * 0.1, "feet"),
  11107. name: "Beak",
  11108. image: {
  11109. source: "./media/characters/vincent/beak.svg"
  11110. }
  11111. },
  11112. hand: {
  11113. height: math.unit(6 * 0.85, "feet"),
  11114. weight: math.unit(150, "lb"),
  11115. name: "Hand",
  11116. image: {
  11117. source: "./media/characters/vincent/hand.svg"
  11118. }
  11119. },
  11120. foot: {
  11121. height: math.unit(6 * 0.19, "feet"),
  11122. weight: math.unit(150, "lb"),
  11123. name: "Foot",
  11124. image: {
  11125. source: "./media/characters/vincent/foot.svg"
  11126. }
  11127. },
  11128. },
  11129. [
  11130. {
  11131. name: "Base",
  11132. height: math.unit(6 + 5 / 12, "feet"),
  11133. default: true
  11134. },
  11135. {
  11136. name: "Macro",
  11137. height: math.unit(300, "feet")
  11138. },
  11139. {
  11140. name: "Megamacro",
  11141. height: math.unit(2, "miles")
  11142. },
  11143. {
  11144. name: "Gigamacro",
  11145. height: math.unit(1000, "miles")
  11146. },
  11147. ]
  11148. ))
  11149. characterMakers.push(() => makeCharacter(
  11150. { name: "Jay" },
  11151. {
  11152. front: {
  11153. height: math.unit(6 + 2 / 12, "feet"),
  11154. weight: math.unit(65, "lb"),
  11155. name: "Front",
  11156. image: {
  11157. source: "./media/characters/jay/front.svg",
  11158. extra: 1510 / 1430,
  11159. bottom: 0.042
  11160. }
  11161. },
  11162. back: {
  11163. height: math.unit(6 + 2 / 12, "feet"),
  11164. weight: math.unit(65, "lb"),
  11165. name: "Back",
  11166. image: {
  11167. source: "./media/characters/jay/back.svg",
  11168. extra: 1510 / 1430,
  11169. bottom: 0.025
  11170. }
  11171. },
  11172. clothed: {
  11173. height: math.unit(6 + 2 / 12, "feet"),
  11174. weight: math.unit(65, "lb"),
  11175. name: "Front (Clothed)",
  11176. image: {
  11177. source: "./media/characters/jay/clothed.svg",
  11178. extra: 744 / 699,
  11179. bottom: 0.043
  11180. }
  11181. },
  11182. },
  11183. [
  11184. {
  11185. name: "Micro",
  11186. height: math.unit(1, "inch")
  11187. },
  11188. {
  11189. name: "Normal",
  11190. height: math.unit(6 + 2 / 12, "feet"),
  11191. default: true
  11192. },
  11193. {
  11194. name: "Macro",
  11195. height: math.unit(1, "mile")
  11196. },
  11197. {
  11198. name: "Megamacro",
  11199. height: math.unit(100, "miles")
  11200. },
  11201. ]
  11202. ))
  11203. characterMakers.push(() => makeCharacter(
  11204. { name: "Coatl" },
  11205. {
  11206. front: {
  11207. height: math.unit(2, "meters"),
  11208. weight: math.unit(500, "kg"),
  11209. name: "Front",
  11210. image: {
  11211. source: "./media/characters/coatl/front.svg",
  11212. extra: 3948 / 3500,
  11213. bottom: 0.082
  11214. }
  11215. },
  11216. },
  11217. [
  11218. {
  11219. name: "Normal",
  11220. height: math.unit(4, "meters")
  11221. },
  11222. {
  11223. name: "Macro",
  11224. height: math.unit(100, "meters"),
  11225. default: true
  11226. },
  11227. {
  11228. name: "Macro+",
  11229. height: math.unit(300, "meters")
  11230. },
  11231. {
  11232. name: "Megamacro",
  11233. height: math.unit(3, "gigameters")
  11234. },
  11235. {
  11236. name: "Megamacro+",
  11237. height: math.unit(300, "terameters")
  11238. },
  11239. {
  11240. name: "Megamacro++",
  11241. height: math.unit(3, "lightyears")
  11242. },
  11243. ]
  11244. ))
  11245. characterMakers.push(() => makeCharacter(
  11246. { name: "Shiroryu" },
  11247. {
  11248. front: {
  11249. height: math.unit(6, "feet"),
  11250. weight: math.unit(50, "kg"),
  11251. name: "front",
  11252. image: {
  11253. source: "./media/characters/shiroryu/front.svg",
  11254. extra: 1990 / 1935
  11255. }
  11256. },
  11257. },
  11258. [
  11259. {
  11260. name: "Mortal Mingling",
  11261. height: math.unit(3, "meters")
  11262. },
  11263. {
  11264. name: "Kaiju-ish",
  11265. height: math.unit(250, "meters")
  11266. },
  11267. {
  11268. name: "Somewhat Godly",
  11269. height: math.unit(400, "km"),
  11270. default: true
  11271. },
  11272. {
  11273. name: "Planetary",
  11274. height: math.unit(300, "megameters")
  11275. },
  11276. {
  11277. name: "Galaxy-dwarfing",
  11278. height: math.unit(450, "kiloparsecs")
  11279. },
  11280. {
  11281. name: "Universe Eater",
  11282. height: math.unit(150, "gigaparsecs")
  11283. },
  11284. {
  11285. name: "Almost Immeasurable",
  11286. height: math.unit(1.3e266, "yottaparsecs")
  11287. },
  11288. ]
  11289. ))
  11290. characterMakers.push(() => makeCharacter(
  11291. { name: "Umeko" },
  11292. {
  11293. front: {
  11294. height: math.unit(6, "feet"),
  11295. weight: math.unit(150, "lb"),
  11296. name: "Front",
  11297. image: {
  11298. source: "./media/characters/umeko/front.svg",
  11299. extra: 1,
  11300. bottom: 0.019
  11301. }
  11302. },
  11303. frontArmored: {
  11304. height: math.unit(6, "feet"),
  11305. weight: math.unit(150, "lb"),
  11306. name: "Front (Armored)",
  11307. image: {
  11308. source: "./media/characters/umeko/front-armored.svg",
  11309. extra: 1,
  11310. bottom: 0.021
  11311. }
  11312. },
  11313. },
  11314. [
  11315. {
  11316. name: "Macro",
  11317. height: math.unit(220, "feet"),
  11318. default: true
  11319. },
  11320. {
  11321. name: "Guardian Dragon",
  11322. height: math.unit(50, "miles")
  11323. },
  11324. {
  11325. name: "Cosmic",
  11326. height: math.unit(800000, "miles")
  11327. },
  11328. ]
  11329. ))
  11330. characterMakers.push(() => makeCharacter(
  11331. { name: "Cassidy" },
  11332. {
  11333. front: {
  11334. height: math.unit(6, "feet"),
  11335. weight: math.unit(150, "lb"),
  11336. name: "Front",
  11337. image: {
  11338. source: "./media/characters/cassidy/front.svg",
  11339. extra: 1,
  11340. bottom: 0.043
  11341. }
  11342. },
  11343. },
  11344. [
  11345. {
  11346. name: "Canon Height",
  11347. height: math.unit(120, "feet"),
  11348. default: true
  11349. },
  11350. {
  11351. name: "Macro+",
  11352. height: math.unit(400, "feet")
  11353. },
  11354. {
  11355. name: "Macro++",
  11356. height: math.unit(4000, "feet")
  11357. },
  11358. {
  11359. name: "Megamacro",
  11360. height: math.unit(3, "miles")
  11361. },
  11362. ]
  11363. ))
  11364. characterMakers.push(() => makeCharacter(
  11365. { name: "Isaac" },
  11366. {
  11367. front: {
  11368. height: math.unit(6, "feet"),
  11369. weight: math.unit(150, "lb"),
  11370. name: "Front",
  11371. image: {
  11372. source: "./media/characters/isaac/front.svg",
  11373. extra: 896 / 815,
  11374. bottom: 0.11
  11375. }
  11376. },
  11377. },
  11378. [
  11379. {
  11380. name: "Human Size",
  11381. height: math.unit(8, "feet"),
  11382. default: true
  11383. },
  11384. {
  11385. name: "Macro",
  11386. height: math.unit(400, "feet")
  11387. },
  11388. {
  11389. name: "Megamacro",
  11390. height: math.unit(50, "miles")
  11391. },
  11392. {
  11393. name: "Canon Height",
  11394. height: math.unit(200, "AU")
  11395. },
  11396. ]
  11397. ))
  11398. characterMakers.push(() => makeCharacter(
  11399. { name: "Sleekit" },
  11400. {
  11401. front: {
  11402. height: math.unit(6, "feet"),
  11403. weight: math.unit(72, "kg"),
  11404. name: "Front",
  11405. image: {
  11406. source: "./media/characters/sleekit/front.svg",
  11407. extra: 4693 / 4487,
  11408. bottom: 0.012
  11409. }
  11410. },
  11411. },
  11412. [
  11413. {
  11414. name: "Minimum Height",
  11415. height: math.unit(10, "meters")
  11416. },
  11417. {
  11418. name: "Smaller",
  11419. height: math.unit(25, "meters")
  11420. },
  11421. {
  11422. name: "Larger",
  11423. height: math.unit(38, "meters"),
  11424. default: true
  11425. },
  11426. {
  11427. name: "Maximum height",
  11428. height: math.unit(100, "meters")
  11429. },
  11430. ]
  11431. ))
  11432. characterMakers.push(() => makeCharacter(
  11433. { name: "Nillia" },
  11434. {
  11435. front: {
  11436. height: math.unit(6, "feet"),
  11437. weight: math.unit(150, "lb"),
  11438. name: "Front",
  11439. image: {
  11440. source: "./media/characters/nillia/front.svg",
  11441. extra: 2195 / 2037,
  11442. bottom: 0.005
  11443. }
  11444. },
  11445. back: {
  11446. height: math.unit(6, "feet"),
  11447. weight: math.unit(150, "lb"),
  11448. name: "Back",
  11449. image: {
  11450. source: "./media/characters/nillia/back.svg",
  11451. extra: 2195 / 2037,
  11452. bottom: 0.005
  11453. }
  11454. },
  11455. },
  11456. [
  11457. {
  11458. name: "Canon Height",
  11459. height: math.unit(489, "feet"),
  11460. default: true
  11461. }
  11462. ]
  11463. ))
  11464. characterMakers.push(() => makeCharacter(
  11465. { name: "Mesmyriza" },
  11466. {
  11467. front: {
  11468. height: math.unit(6, "feet"),
  11469. weight: math.unit(150, "lb"),
  11470. name: "Front",
  11471. image: {
  11472. source: "./media/characters/mesmyriza/front.svg",
  11473. extra: 2067 / 1784,
  11474. bottom: 0.035
  11475. }
  11476. },
  11477. foot: {
  11478. height: math.unit(6 / (250 / 35), "feet"),
  11479. name: "Foot",
  11480. image: {
  11481. source: "./media/characters/mesmyriza/foot.svg"
  11482. }
  11483. },
  11484. },
  11485. [
  11486. {
  11487. name: "Macro",
  11488. height: math.unit(457, "meters"),
  11489. default: true
  11490. },
  11491. {
  11492. name: "Megamacro",
  11493. height: math.unit(8, "megameters")
  11494. },
  11495. ]
  11496. ))
  11497. characterMakers.push(() => makeCharacter(
  11498. { name: "Saudade" },
  11499. {
  11500. front: {
  11501. height: math.unit(6, "feet"),
  11502. weight: math.unit(250, "lb"),
  11503. name: "Front",
  11504. image: {
  11505. source: "./media/characters/saudade/front.svg",
  11506. extra: 1172 / 1139,
  11507. bottom: 0.035
  11508. }
  11509. },
  11510. },
  11511. [
  11512. {
  11513. name: "Micro",
  11514. height: math.unit(3, "inches")
  11515. },
  11516. {
  11517. name: "Normal",
  11518. height: math.unit(6, "feet"),
  11519. default: true
  11520. },
  11521. {
  11522. name: "Macro",
  11523. height: math.unit(50, "feet")
  11524. },
  11525. {
  11526. name: "Megamacro",
  11527. height: math.unit(2800, "feet")
  11528. },
  11529. ]
  11530. ))
  11531. characterMakers.push(() => makeCharacter(
  11532. { name: "Keireer" },
  11533. {
  11534. front: {
  11535. height: math.unit(5 + 4 / 12, "feet"),
  11536. weight: math.unit(100, "lb"),
  11537. name: "Front",
  11538. image: {
  11539. source: "./media/characters/keireer/front.svg",
  11540. extra: 716 / 666,
  11541. bottom: 0.05
  11542. }
  11543. },
  11544. },
  11545. [
  11546. {
  11547. name: "Normal",
  11548. height: math.unit(5 + 4 / 12, "feet"),
  11549. default: true
  11550. },
  11551. ]
  11552. ))
  11553. characterMakers.push(() => makeCharacter(
  11554. { name: "Mirja" },
  11555. {
  11556. front: {
  11557. height: math.unit(6, "feet"),
  11558. weight: math.unit(90, "kg"),
  11559. name: "Front",
  11560. image: {
  11561. source: "./media/characters/mirja/front.svg",
  11562. extra: 1789 / 1683,
  11563. bottom: 0.05
  11564. }
  11565. },
  11566. frontDressed: {
  11567. height: math.unit(6, "feet"),
  11568. weight: math.unit(90, "lb"),
  11569. name: "Front (Dressed)",
  11570. image: {
  11571. source: "./media/characters/mirja/front-dressed.svg",
  11572. extra: 1789 / 1683,
  11573. bottom: 0.05
  11574. }
  11575. },
  11576. back: {
  11577. height: math.unit(6, "feet"),
  11578. weight: math.unit(90, "lb"),
  11579. name: "Back",
  11580. image: {
  11581. source: "./media/characters/mirja/back.svg",
  11582. extra: 953 / 917,
  11583. bottom: 0.017
  11584. }
  11585. },
  11586. },
  11587. [
  11588. {
  11589. name: "\"Incognito\"",
  11590. height: math.unit(3, "meters")
  11591. },
  11592. {
  11593. name: "Strolling Size",
  11594. height: math.unit(15, "km")
  11595. },
  11596. {
  11597. name: "Larger Strolling Size",
  11598. height: math.unit(400, "km")
  11599. },
  11600. {
  11601. name: "Preferred Size",
  11602. height: math.unit(5000, "km")
  11603. },
  11604. {
  11605. name: "True Size",
  11606. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11607. default: true
  11608. },
  11609. ]
  11610. ))
  11611. characterMakers.push(() => makeCharacter(
  11612. { name: "Nightraver" },
  11613. {
  11614. front: {
  11615. height: math.unit(15, "feet"),
  11616. weight: math.unit(880, "kg"),
  11617. name: "Front",
  11618. image: {
  11619. source: "./media/characters/nightraver/front.svg",
  11620. extra: 2444 / 2160,
  11621. bottom: 0.027
  11622. }
  11623. },
  11624. back: {
  11625. height: math.unit(15, "feet"),
  11626. weight: math.unit(880, "kg"),
  11627. name: "Back",
  11628. image: {
  11629. source: "./media/characters/nightraver/back.svg",
  11630. extra: 2309 / 2180,
  11631. bottom: 0.005
  11632. }
  11633. },
  11634. sole: {
  11635. height: math.unit(2.878, "feet"),
  11636. name: "Sole",
  11637. image: {
  11638. source: "./media/characters/nightraver/sole.svg"
  11639. }
  11640. },
  11641. foot: {
  11642. height: math.unit(2.285, "feet"),
  11643. name: "Foot",
  11644. image: {
  11645. source: "./media/characters/nightraver/foot.svg"
  11646. }
  11647. },
  11648. maw: {
  11649. height: math.unit(2.67, "feet"),
  11650. name: "Maw",
  11651. image: {
  11652. source: "./media/characters/nightraver/maw.svg"
  11653. }
  11654. },
  11655. },
  11656. [
  11657. {
  11658. name: "Micro",
  11659. height: math.unit(1, "cm")
  11660. },
  11661. {
  11662. name: "Normal",
  11663. height: math.unit(15, "feet"),
  11664. default: true
  11665. },
  11666. {
  11667. name: "Macro",
  11668. height: math.unit(300, "feet")
  11669. },
  11670. {
  11671. name: "Megamacro",
  11672. height: math.unit(300, "miles")
  11673. },
  11674. {
  11675. name: "Gigamacro",
  11676. height: math.unit(10000, "miles")
  11677. },
  11678. ]
  11679. ))
  11680. characterMakers.push(() => makeCharacter(
  11681. { name: "Arc" },
  11682. {
  11683. side: {
  11684. height: math.unit(2, "inches"),
  11685. weight: math.unit(5, "grams"),
  11686. name: "Side",
  11687. image: {
  11688. source: "./media/characters/arc/side.svg"
  11689. }
  11690. },
  11691. },
  11692. [
  11693. {
  11694. name: "Micro",
  11695. height: math.unit(2, "inches"),
  11696. default: true
  11697. },
  11698. ]
  11699. ))
  11700. characterMakers.push(() => makeCharacter(
  11701. { name: "Nebula Shahar" },
  11702. {
  11703. front: {
  11704. height: math.unit(1.1938, "meters"),
  11705. weight: math.unit(54, "kg"),
  11706. name: "Front",
  11707. image: {
  11708. source: "./media/characters/nebula-shahar/front.svg",
  11709. extra: 1642 / 1436,
  11710. bottom: 0.06
  11711. }
  11712. },
  11713. },
  11714. [
  11715. {
  11716. name: "Megamicro",
  11717. height: math.unit(0.3, "mm")
  11718. },
  11719. {
  11720. name: "Micro",
  11721. height: math.unit(3, "cm")
  11722. },
  11723. {
  11724. name: "Normal",
  11725. height: math.unit(138, "cm"),
  11726. default: true
  11727. },
  11728. {
  11729. name: "Macro",
  11730. height: math.unit(30, "m")
  11731. },
  11732. ]
  11733. ))
  11734. characterMakers.push(() => makeCharacter(
  11735. { name: "Shayla" },
  11736. {
  11737. front: {
  11738. height: math.unit(5.24, "feet"),
  11739. weight: math.unit(150, "lb"),
  11740. name: "Front",
  11741. image: {
  11742. source: "./media/characters/shayla/front.svg",
  11743. extra: 1512 / 1414,
  11744. bottom: 0.01
  11745. }
  11746. },
  11747. back: {
  11748. height: math.unit(5.24, "feet"),
  11749. weight: math.unit(150, "lb"),
  11750. name: "Back",
  11751. image: {
  11752. source: "./media/characters/shayla/back.svg",
  11753. extra: 1512 / 1414
  11754. }
  11755. },
  11756. hand: {
  11757. height: math.unit(0.7781496062992126, "feet"),
  11758. name: "Hand",
  11759. image: {
  11760. source: "./media/characters/shayla/hand.svg"
  11761. }
  11762. },
  11763. foot: {
  11764. height: math.unit(1.4206036745406823, "feet"),
  11765. name: "Foot",
  11766. image: {
  11767. source: "./media/characters/shayla/foot.svg"
  11768. }
  11769. },
  11770. },
  11771. [
  11772. {
  11773. name: "Micro",
  11774. height: math.unit(0.32, "feet")
  11775. },
  11776. {
  11777. name: "Normal",
  11778. height: math.unit(5.24, "feet"),
  11779. default: true
  11780. },
  11781. {
  11782. name: "Macro",
  11783. height: math.unit(492.12, "feet")
  11784. },
  11785. {
  11786. name: "Megamacro",
  11787. height: math.unit(186.41, "miles")
  11788. },
  11789. ]
  11790. ))
  11791. characterMakers.push(() => makeCharacter(
  11792. { name: "Pia Jr." },
  11793. {
  11794. front: {
  11795. height: math.unit(2.2, "m"),
  11796. weight: math.unit(120, "kg"),
  11797. name: "Front",
  11798. image: {
  11799. source: "./media/characters/pia-jr/front.svg",
  11800. extra: 1000 / 970,
  11801. bottom: 0.035
  11802. }
  11803. },
  11804. hand: {
  11805. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11806. name: "Hand",
  11807. image: {
  11808. source: "./media/characters/pia-jr/hand.svg"
  11809. }
  11810. },
  11811. paw: {
  11812. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11813. name: "Paw",
  11814. image: {
  11815. source: "./media/characters/pia-jr/paw.svg"
  11816. }
  11817. },
  11818. },
  11819. [
  11820. {
  11821. name: "Micro",
  11822. height: math.unit(1.2, "cm")
  11823. },
  11824. {
  11825. name: "Normal",
  11826. height: math.unit(2.2, "m"),
  11827. default: true
  11828. },
  11829. {
  11830. name: "Macro",
  11831. height: math.unit(180, "m")
  11832. },
  11833. {
  11834. name: "Megamacro",
  11835. height: math.unit(420, "km")
  11836. },
  11837. ]
  11838. ))
  11839. characterMakers.push(() => makeCharacter(
  11840. { name: "Pia Sr." },
  11841. {
  11842. front: {
  11843. height: math.unit(2, "m"),
  11844. weight: math.unit(115, "kg"),
  11845. name: "Front",
  11846. image: {
  11847. source: "./media/characters/pia-sr/front.svg",
  11848. extra: 760 / 730,
  11849. bottom: 0.015
  11850. }
  11851. },
  11852. back: {
  11853. height: math.unit(2, "m"),
  11854. weight: math.unit(115, "kg"),
  11855. name: "Back",
  11856. image: {
  11857. source: "./media/characters/pia-sr/back.svg",
  11858. extra: 760 / 730,
  11859. bottom: 0.01
  11860. }
  11861. },
  11862. hand: {
  11863. height: math.unit(0.89 * 6.56 / 6, "feet"),
  11864. name: "Hand",
  11865. image: {
  11866. source: "./media/characters/pia-sr/hand.svg"
  11867. }
  11868. },
  11869. foot: {
  11870. height: math.unit(1.83, "feet"),
  11871. name: "Foot",
  11872. image: {
  11873. source: "./media/characters/pia-sr/foot.svg"
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Micro",
  11880. height: math.unit(88, "mm")
  11881. },
  11882. {
  11883. name: "Normal",
  11884. height: math.unit(2, "m"),
  11885. default: true
  11886. },
  11887. {
  11888. name: "Macro",
  11889. height: math.unit(200, "m")
  11890. },
  11891. {
  11892. name: "Megamacro",
  11893. height: math.unit(420, "km")
  11894. },
  11895. ]
  11896. ))
  11897. characterMakers.push(() => makeCharacter(
  11898. { name: "KIBIBYTE" },
  11899. {
  11900. front: {
  11901. height: math.unit(8 + 2 / 12, "feet"),
  11902. weight: math.unit(300, "lb"),
  11903. name: "Front",
  11904. image: {
  11905. source: "./media/characters/kibibyte/front.svg",
  11906. extra: 2221 / 2098,
  11907. bottom: 0.04
  11908. }
  11909. },
  11910. },
  11911. [
  11912. {
  11913. name: "Normal",
  11914. height: math.unit(8 + 2 / 12, "feet"),
  11915. default: true
  11916. },
  11917. {
  11918. name: "Socialable Macro",
  11919. height: math.unit(50, "feet")
  11920. },
  11921. {
  11922. name: "Macro",
  11923. height: math.unit(300, "feet")
  11924. },
  11925. {
  11926. name: "Megamacro",
  11927. height: math.unit(500, "miles")
  11928. },
  11929. ]
  11930. ))
  11931. characterMakers.push(() => makeCharacter(
  11932. { name: "Felix" },
  11933. {
  11934. front: {
  11935. height: math.unit(6, "feet"),
  11936. weight: math.unit(150, "lb"),
  11937. name: "Front",
  11938. image: {
  11939. source: "./media/characters/felix/front.svg",
  11940. extra: 762 / 722,
  11941. bottom: 0.02
  11942. }
  11943. },
  11944. frontClothed: {
  11945. height: math.unit(6, "feet"),
  11946. weight: math.unit(150, "lb"),
  11947. name: "Front (Clothed)",
  11948. image: {
  11949. source: "./media/characters/felix/front-clothed.svg",
  11950. extra: 762 / 722,
  11951. bottom: 0.02
  11952. }
  11953. },
  11954. },
  11955. [
  11956. {
  11957. name: "Normal",
  11958. height: math.unit(6 + 8 / 12, "feet"),
  11959. default: true
  11960. },
  11961. {
  11962. name: "Macro",
  11963. height: math.unit(2600, "feet")
  11964. },
  11965. {
  11966. name: "Megamacro",
  11967. height: math.unit(450, "miles")
  11968. },
  11969. ]
  11970. ))
  11971. characterMakers.push(() => makeCharacter(
  11972. { name: "Tobo" },
  11973. {
  11974. front: {
  11975. height: math.unit(6 + 1 / 12, "feet"),
  11976. weight: math.unit(250, "lb"),
  11977. name: "Front",
  11978. image: {
  11979. source: "./media/characters/tobo/front.svg",
  11980. extra: 608 / 586,
  11981. bottom: 0.023
  11982. }
  11983. },
  11984. back: {
  11985. height: math.unit(6 + 1 / 12, "feet"),
  11986. weight: math.unit(250, "lb"),
  11987. name: "Back",
  11988. image: {
  11989. source: "./media/characters/tobo/back.svg",
  11990. extra: 608 / 586
  11991. }
  11992. },
  11993. },
  11994. [
  11995. {
  11996. name: "Nano",
  11997. height: math.unit(2, "nm")
  11998. },
  11999. {
  12000. name: "Megamicro",
  12001. height: math.unit(0.1, "mm")
  12002. },
  12003. {
  12004. name: "Micro",
  12005. height: math.unit(1, "inch"),
  12006. default: true
  12007. },
  12008. {
  12009. name: "Human-sized",
  12010. height: math.unit(6 + 1 / 12, "feet")
  12011. },
  12012. {
  12013. name: "Macro",
  12014. height: math.unit(250, "feet")
  12015. },
  12016. {
  12017. name: "Megamacro",
  12018. height: math.unit(75, "miles")
  12019. },
  12020. {
  12021. name: "Texas-sized",
  12022. height: math.unit(750, "miles")
  12023. },
  12024. {
  12025. name: "Teramacro",
  12026. height: math.unit(50000, "miles")
  12027. },
  12028. ]
  12029. ))
  12030. characterMakers.push(() => makeCharacter(
  12031. { name: "Danny Kapowsky" },
  12032. {
  12033. front: {
  12034. height: math.unit(6, "feet"),
  12035. weight: math.unit(269, "lb"),
  12036. name: "Front",
  12037. image: {
  12038. source: "./media/characters/danny-kapowsky/front.svg",
  12039. extra: 766 / 736,
  12040. bottom: 0.044
  12041. }
  12042. },
  12043. back: {
  12044. height: math.unit(6, "feet"),
  12045. weight: math.unit(269, "lb"),
  12046. name: "Back",
  12047. image: {
  12048. source: "./media/characters/danny-kapowsky/back.svg",
  12049. extra: 797 / 760,
  12050. bottom: 0.025
  12051. }
  12052. },
  12053. },
  12054. [
  12055. {
  12056. name: "Macro",
  12057. height: math.unit(150, "feet"),
  12058. default: true
  12059. },
  12060. {
  12061. name: "Macro+",
  12062. height: math.unit(200, "feet")
  12063. },
  12064. {
  12065. name: "Macro++",
  12066. height: math.unit(300, "feet")
  12067. },
  12068. {
  12069. name: "Macro+++",
  12070. height: math.unit(400, "feet")
  12071. },
  12072. ]
  12073. ))
  12074. characterMakers.push(() => makeCharacter(
  12075. { name: "Finn" },
  12076. {
  12077. side: {
  12078. height: math.unit(6, "feet"),
  12079. weight: math.unit(170, "lb"),
  12080. name: "Side",
  12081. image: {
  12082. source: "./media/characters/finn/side.svg",
  12083. extra: 1953 / 1807,
  12084. bottom: 0.057
  12085. }
  12086. },
  12087. },
  12088. [
  12089. {
  12090. name: "Megamacro",
  12091. height: math.unit(14445, "feet"),
  12092. default: true
  12093. },
  12094. ]
  12095. ))
  12096. characterMakers.push(() => makeCharacter(
  12097. { name: "Roy" },
  12098. {
  12099. front: {
  12100. height: math.unit(5 + 6 / 12, "feet"),
  12101. weight: math.unit(125, "lb"),
  12102. name: "Front",
  12103. image: {
  12104. source: "./media/characters/roy/front.svg",
  12105. extra: 1,
  12106. bottom: 0.11
  12107. }
  12108. },
  12109. },
  12110. [
  12111. {
  12112. name: "Micro",
  12113. height: math.unit(3, "inches"),
  12114. default: true
  12115. },
  12116. {
  12117. name: "Normal",
  12118. height: math.unit(5 + 6 / 12, "feet")
  12119. },
  12120. {
  12121. name: "Lesser Macro",
  12122. height: math.unit(60, "feet")
  12123. },
  12124. {
  12125. name: "Greater Macro",
  12126. height: math.unit(120, "feet")
  12127. },
  12128. ]
  12129. ))
  12130. characterMakers.push(() => makeCharacter(
  12131. { name: "Aevsivs" },
  12132. {
  12133. front: {
  12134. height: math.unit(6, "feet"),
  12135. weight: math.unit(100, "lb"),
  12136. name: "Front",
  12137. image: {
  12138. source: "./media/characters/aevsivs/front.svg",
  12139. extra: 1,
  12140. bottom: 0.03
  12141. }
  12142. },
  12143. back: {
  12144. height: math.unit(6, "feet"),
  12145. weight: math.unit(100, "lb"),
  12146. name: "Back",
  12147. image: {
  12148. source: "./media/characters/aevsivs/back.svg"
  12149. }
  12150. },
  12151. },
  12152. [
  12153. {
  12154. name: "Micro",
  12155. height: math.unit(2, "inches"),
  12156. default: true
  12157. },
  12158. {
  12159. name: "Normal",
  12160. height: math.unit(5, "feet")
  12161. },
  12162. ]
  12163. ))
  12164. characterMakers.push(() => makeCharacter(
  12165. { name: "Hildegard" },
  12166. {
  12167. front: {
  12168. height: math.unit(5 + 7 / 12, "feet"),
  12169. weight: math.unit(159, "lb"),
  12170. name: "Front",
  12171. image: {
  12172. source: "./media/characters/hildegard/front.svg",
  12173. extra: 312 / 286,
  12174. bottom: 0.005
  12175. }
  12176. },
  12177. },
  12178. [
  12179. {
  12180. name: "Normal",
  12181. height: math.unit(5 + 7 / 12, "feet"),
  12182. default: true
  12183. },
  12184. ]
  12185. ))
  12186. characterMakers.push(() => makeCharacter(
  12187. { name: "Bernard & Wilder" },
  12188. {
  12189. bernard: {
  12190. height: math.unit(2 + 7 / 12, "feet"),
  12191. weight: math.unit(66, "lb"),
  12192. name: "Bernard",
  12193. rename: true,
  12194. image: {
  12195. source: "./media/characters/bernard-wilder/bernard.svg",
  12196. extra: 192 / 128,
  12197. bottom: 0.05
  12198. }
  12199. },
  12200. wilder: {
  12201. height: math.unit(5 + 8 / 12, "feet"),
  12202. weight: math.unit(143, "lb"),
  12203. name: "Wilder",
  12204. rename: true,
  12205. image: {
  12206. source: "./media/characters/bernard-wilder/wilder.svg",
  12207. extra: 361 / 312,
  12208. bottom: 0.02
  12209. }
  12210. },
  12211. },
  12212. [
  12213. {
  12214. name: "Normal",
  12215. height: math.unit(2 + 7 / 12, "feet"),
  12216. default: true
  12217. },
  12218. ]
  12219. ))
  12220. characterMakers.push(() => makeCharacter(
  12221. { name: "Hearth" },
  12222. {
  12223. anthro: {
  12224. height: math.unit(6 + 1 / 12, "feet"),
  12225. weight: math.unit(155, "lb"),
  12226. name: "Anthro",
  12227. image: {
  12228. source: "./media/characters/hearth/anthro.svg",
  12229. extra: 260 / 250,
  12230. bottom: 0.02
  12231. }
  12232. },
  12233. feral: {
  12234. height: math.unit(3.78, "feet"),
  12235. weight: math.unit(35, "kg"),
  12236. name: "Feral",
  12237. image: {
  12238. source: "./media/characters/hearth/feral.svg",
  12239. extra: 153 / 135,
  12240. bottom: 0.03
  12241. }
  12242. },
  12243. },
  12244. [
  12245. {
  12246. name: "Normal",
  12247. height: math.unit(6 + 1 / 12, "feet"),
  12248. default: true
  12249. },
  12250. ]
  12251. ))
  12252. characterMakers.push(() => makeCharacter(
  12253. { name: "Ingrid" },
  12254. {
  12255. front: {
  12256. height: math.unit(6, "feet"),
  12257. weight: math.unit(182, "lb"),
  12258. name: "Front",
  12259. image: {
  12260. source: "./media/characters/ingrid/front.svg",
  12261. extra: 294 / 268,
  12262. bottom: 0.027
  12263. }
  12264. },
  12265. },
  12266. [
  12267. {
  12268. name: "Normal",
  12269. height: math.unit(6, "feet"),
  12270. default: true
  12271. },
  12272. ]
  12273. ))
  12274. characterMakers.push(() => makeCharacter(
  12275. { name: "Malgam" },
  12276. {
  12277. eevee: {
  12278. height: math.unit(2 + 10 / 12, "feet"),
  12279. weight: math.unit(86, "lb"),
  12280. name: "Malgam",
  12281. image: {
  12282. source: "./media/characters/malgam/eevee.svg",
  12283. extra: 218 / 180,
  12284. bottom: 0.2
  12285. }
  12286. },
  12287. sylveon: {
  12288. height: math.unit(4, "feet"),
  12289. weight: math.unit(101, "lb"),
  12290. name: "Future Malgam",
  12291. rename: true,
  12292. image: {
  12293. source: "./media/characters/malgam/sylveon.svg",
  12294. extra: 371 / 325,
  12295. bottom: 0.015
  12296. }
  12297. },
  12298. gigantamax: {
  12299. height: math.unit(50, "feet"),
  12300. name: "Gigantamax Malgam",
  12301. rename: true,
  12302. image: {
  12303. source: "./media/characters/malgam/gigantamax.svg"
  12304. }
  12305. },
  12306. },
  12307. [
  12308. {
  12309. name: "Normal",
  12310. height: math.unit(2 + 10 / 12, "feet"),
  12311. default: true
  12312. },
  12313. ]
  12314. ))
  12315. characterMakers.push(() => makeCharacter(
  12316. { name: "Fleur" },
  12317. {
  12318. front: {
  12319. height: math.unit(5 + 11 / 12, "feet"),
  12320. weight: math.unit(188, "lb"),
  12321. name: "Front",
  12322. image: {
  12323. source: "./media/characters/fleur/front.svg",
  12324. extra: 309 / 283,
  12325. bottom: 0.007
  12326. }
  12327. },
  12328. },
  12329. [
  12330. {
  12331. name: "Normal",
  12332. height: math.unit(5 + 11 / 12, "feet"),
  12333. default: true
  12334. },
  12335. ]
  12336. ))
  12337. characterMakers.push(() => makeCharacter(
  12338. { name: "Jude" },
  12339. {
  12340. front: {
  12341. height: math.unit(5 + 4 / 12, "feet"),
  12342. weight: math.unit(122, "lb"),
  12343. name: "Front",
  12344. image: {
  12345. source: "./media/characters/jude/front.svg",
  12346. extra: 288 / 273,
  12347. bottom: 0.03
  12348. }
  12349. },
  12350. },
  12351. [
  12352. {
  12353. name: "Normal",
  12354. height: math.unit(5 + 4 / 12, "feet"),
  12355. default: true
  12356. },
  12357. ]
  12358. ))
  12359. characterMakers.push(() => makeCharacter(
  12360. { name: "Seara" },
  12361. {
  12362. front: {
  12363. height: math.unit(5 + 11 / 12, "feet"),
  12364. weight: math.unit(190, "lb"),
  12365. name: "Front",
  12366. image: {
  12367. source: "./media/characters/seara/front.svg",
  12368. extra: 1,
  12369. bottom: 0.05
  12370. }
  12371. },
  12372. },
  12373. [
  12374. {
  12375. name: "Normal",
  12376. height: math.unit(5 + 11 / 12, "feet"),
  12377. default: true
  12378. },
  12379. ]
  12380. ))
  12381. characterMakers.push(() => makeCharacter(
  12382. { name: "Caspian" },
  12383. {
  12384. front: {
  12385. height: math.unit(16 + 5 / 12, "feet"),
  12386. weight: math.unit(524, "lb"),
  12387. name: "Front",
  12388. image: {
  12389. source: "./media/characters/caspian/front.svg",
  12390. extra: 1,
  12391. bottom: 0.04
  12392. }
  12393. },
  12394. },
  12395. [
  12396. {
  12397. name: "Normal",
  12398. height: math.unit(16 + 5 / 12, "feet"),
  12399. default: true
  12400. },
  12401. ]
  12402. ))
  12403. characterMakers.push(() => makeCharacter(
  12404. { name: "Mika" },
  12405. {
  12406. front: {
  12407. height: math.unit(5 + 7 / 12, "feet"),
  12408. weight: math.unit(170, "lb"),
  12409. name: "Front",
  12410. image: {
  12411. source: "./media/characters/mika/front.svg",
  12412. extra: 1,
  12413. bottom: 0.016
  12414. }
  12415. },
  12416. },
  12417. [
  12418. {
  12419. name: "Normal",
  12420. height: math.unit(5 + 7 / 12, "feet"),
  12421. default: true
  12422. },
  12423. ]
  12424. ))
  12425. characterMakers.push(() => makeCharacter(
  12426. { name: "Sol" },
  12427. {
  12428. front: {
  12429. height: math.unit(6 + 2 / 12, "feet"),
  12430. weight: math.unit(268, "lb"),
  12431. name: "Front",
  12432. image: {
  12433. source: "./media/characters/sol/front.svg",
  12434. extra: 247 / 231,
  12435. bottom: 0.05
  12436. }
  12437. },
  12438. },
  12439. [
  12440. {
  12441. name: "Normal",
  12442. height: math.unit(6 + 2 / 12, "feet"),
  12443. default: true
  12444. },
  12445. ]
  12446. ))
  12447. characterMakers.push(() => makeCharacter(
  12448. { name: "Umiko" },
  12449. {
  12450. buizel: {
  12451. height: math.unit(2 + 5 / 12, "feet"),
  12452. weight: math.unit(87, "lb"),
  12453. name: "Buizel",
  12454. image: {
  12455. source: "./media/characters/umiko/buizel.svg",
  12456. extra: 172 / 157,
  12457. bottom: 0.01
  12458. }
  12459. },
  12460. floatzel: {
  12461. height: math.unit(5 + 9 / 12, "feet"),
  12462. weight: math.unit(250, "lb"),
  12463. name: "Floatzel",
  12464. image: {
  12465. source: "./media/characters/umiko/floatzel.svg",
  12466. extra: 262 / 248
  12467. }
  12468. },
  12469. },
  12470. [
  12471. {
  12472. name: "Normal",
  12473. height: math.unit(2 + 5 / 12, "feet"),
  12474. default: true
  12475. },
  12476. ]
  12477. ))
  12478. characterMakers.push(() => makeCharacter(
  12479. { name: "Iliac" },
  12480. {
  12481. front: {
  12482. height: math.unit(6 + 2 / 12, "feet"),
  12483. weight: math.unit(146, "lb"),
  12484. name: "Front",
  12485. image: {
  12486. source: "./media/characters/iliac/front.svg",
  12487. extra: 389 / 365,
  12488. bottom: 0.035
  12489. }
  12490. },
  12491. },
  12492. [
  12493. {
  12494. name: "Normal",
  12495. height: math.unit(6 + 2 / 12, "feet"),
  12496. default: true
  12497. },
  12498. ]
  12499. ))
  12500. characterMakers.push(() => makeCharacter(
  12501. { name: "Topaz" },
  12502. {
  12503. front: {
  12504. height: math.unit(6, "feet"),
  12505. weight: math.unit(170, "lb"),
  12506. name: "Front",
  12507. image: {
  12508. source: "./media/characters/topaz/front.svg",
  12509. extra: 317 / 303,
  12510. bottom: 0.055
  12511. }
  12512. },
  12513. },
  12514. [
  12515. {
  12516. name: "Normal",
  12517. height: math.unit(6, "feet"),
  12518. default: true
  12519. },
  12520. ]
  12521. ))
  12522. characterMakers.push(() => makeCharacter(
  12523. { name: "Gabriel" },
  12524. {
  12525. front: {
  12526. height: math.unit(5 + 11 / 12, "feet"),
  12527. weight: math.unit(144, "lb"),
  12528. name: "Front",
  12529. image: {
  12530. source: "./media/characters/gabriel/front.svg",
  12531. extra: 285 / 262,
  12532. bottom: 0.004
  12533. }
  12534. },
  12535. },
  12536. [
  12537. {
  12538. name: "Normal",
  12539. height: math.unit(5 + 11 / 12, "feet"),
  12540. default: true
  12541. },
  12542. ]
  12543. ))
  12544. characterMakers.push(() => makeCharacter(
  12545. { name: "Tempest (Suicune)" },
  12546. {
  12547. side: {
  12548. height: math.unit(6 + 5 / 12, "feet"),
  12549. weight: math.unit(300, "lb"),
  12550. name: "Side",
  12551. image: {
  12552. source: "./media/characters/tempest-suicune/side.svg",
  12553. extra: 195 / 154,
  12554. bottom: 0.04
  12555. }
  12556. },
  12557. },
  12558. [
  12559. {
  12560. name: "Normal",
  12561. height: math.unit(6 + 5 / 12, "feet"),
  12562. default: true
  12563. },
  12564. ]
  12565. ))
  12566. characterMakers.push(() => makeCharacter(
  12567. { name: "Vulcan" },
  12568. {
  12569. front: {
  12570. height: math.unit(7 + 2 / 12, "feet"),
  12571. weight: math.unit(322, "lb"),
  12572. name: "Front",
  12573. image: {
  12574. source: "./media/characters/vulcan/front.svg",
  12575. extra: 154 / 147,
  12576. bottom: 0.04
  12577. }
  12578. },
  12579. },
  12580. [
  12581. {
  12582. name: "Normal",
  12583. height: math.unit(7 + 2 / 12, "feet"),
  12584. default: true
  12585. },
  12586. ]
  12587. ))
  12588. characterMakers.push(() => makeCharacter(
  12589. { name: "Gault" },
  12590. {
  12591. front: {
  12592. height: math.unit(5 + 10 / 12, "feet"),
  12593. weight: math.unit(264, "lb"),
  12594. name: "Front",
  12595. image: {
  12596. source: "./media/characters/gault/front.svg",
  12597. extra: 161 / 140,
  12598. bottom: 0.028
  12599. }
  12600. },
  12601. },
  12602. [
  12603. {
  12604. name: "Normal",
  12605. height: math.unit(5 + 10 / 12, "feet"),
  12606. default: true
  12607. },
  12608. ]
  12609. ))
  12610. characterMakers.push(() => makeCharacter(
  12611. { name: "Shard" },
  12612. {
  12613. front: {
  12614. height: math.unit(6, "feet"),
  12615. weight: math.unit(150, "lb"),
  12616. name: "Front",
  12617. image: {
  12618. source: "./media/characters/shard/front.svg",
  12619. extra: 273 / 238,
  12620. bottom: 0.02
  12621. }
  12622. },
  12623. },
  12624. [
  12625. {
  12626. name: "Normal",
  12627. height: math.unit(3 + 6 / 12, "feet"),
  12628. default: true
  12629. },
  12630. ]
  12631. ))
  12632. characterMakers.push(() => makeCharacter(
  12633. { name: "Ashe" },
  12634. {
  12635. front: {
  12636. height: math.unit(5 + 11 / 12, "feet"),
  12637. weight: math.unit(146, "lb"),
  12638. name: "Front",
  12639. image: {
  12640. source: "./media/characters/ashe/front.svg",
  12641. extra: 400 / 373,
  12642. bottom: 0.01
  12643. }
  12644. },
  12645. },
  12646. [
  12647. {
  12648. name: "Normal",
  12649. height: math.unit(5 + 11 / 12, "feet"),
  12650. default: true
  12651. },
  12652. ]
  12653. ))
  12654. characterMakers.push(() => makeCharacter(
  12655. { name: "Beatrix" },
  12656. {
  12657. front: {
  12658. height: math.unit(5 + 5 / 12, "feet"),
  12659. weight: math.unit(135, "lb"),
  12660. name: "Front",
  12661. image: {
  12662. source: "./media/characters/beatrix/front.svg",
  12663. extra: 392 / 379,
  12664. bottom: 0.01
  12665. }
  12666. },
  12667. },
  12668. [
  12669. {
  12670. name: "Normal",
  12671. height: math.unit(6, "feet"),
  12672. default: true
  12673. },
  12674. ]
  12675. ))
  12676. characterMakers.push(() => makeCharacter(
  12677. { name: "Ignatius" },
  12678. {
  12679. front: {
  12680. height: math.unit(6, "feet"),
  12681. weight: math.unit(150, "lb"),
  12682. name: "Front",
  12683. image: {
  12684. source: "./media/characters/ignatius/front.svg",
  12685. extra: 245 / 222,
  12686. bottom: 0.01
  12687. }
  12688. },
  12689. },
  12690. [
  12691. {
  12692. name: "Normal",
  12693. height: math.unit(5 + 5 / 12, "feet"),
  12694. default: true
  12695. },
  12696. ]
  12697. ))
  12698. characterMakers.push(() => makeCharacter(
  12699. { name: "Mei Li" },
  12700. {
  12701. front: {
  12702. height: math.unit(6 + 2 / 12, "feet"),
  12703. weight: math.unit(138, "lb"),
  12704. name: "Front",
  12705. image: {
  12706. source: "./media/characters/mei-li/front.svg",
  12707. extra: 237 / 229,
  12708. bottom: 0.03
  12709. }
  12710. },
  12711. },
  12712. [
  12713. {
  12714. name: "Normal",
  12715. height: math.unit(6 + 2 / 12, "feet"),
  12716. default: true
  12717. },
  12718. ]
  12719. ))
  12720. characterMakers.push(() => makeCharacter(
  12721. { name: "Puru" },
  12722. {
  12723. front: {
  12724. height: math.unit(2 + 4 / 12, "feet"),
  12725. weight: math.unit(62, "lb"),
  12726. name: "Front",
  12727. image: {
  12728. source: "./media/characters/puru/front.svg",
  12729. extra: 206 / 149,
  12730. bottom: 0.06
  12731. }
  12732. },
  12733. },
  12734. [
  12735. {
  12736. name: "Normal",
  12737. height: math.unit(2 + 4 / 12, "feet"),
  12738. default: true
  12739. },
  12740. ]
  12741. ))
  12742. characterMakers.push(() => makeCharacter(
  12743. { name: "Kee" },
  12744. {
  12745. taur: {
  12746. height: math.unit(11, "feet"),
  12747. weight: math.unit(500, "lb"),
  12748. name: "Taur",
  12749. image: {
  12750. source: "./media/characters/kee/taur.svg",
  12751. extra: 1,
  12752. bottom: 0.04
  12753. }
  12754. },
  12755. },
  12756. [
  12757. {
  12758. name: "Normal",
  12759. height: math.unit(11, "feet"),
  12760. default: true
  12761. },
  12762. ]
  12763. ))
  12764. characterMakers.push(() => makeCharacter(
  12765. { name: "Cobalt (Dracha)" },
  12766. {
  12767. anthro: {
  12768. height: math.unit(7, "feet"),
  12769. weight: math.unit(190, "lb"),
  12770. name: "Anthro",
  12771. image: {
  12772. source: "./media/characters/cobalt-dracha/anthro.svg",
  12773. extra: 231 / 225,
  12774. bottom: 0.04
  12775. }
  12776. },
  12777. feral: {
  12778. height: math.unit(9 + 7 / 12, "feet"),
  12779. weight: math.unit(294, "lb"),
  12780. name: "Feral",
  12781. image: {
  12782. source: "./media/characters/cobalt-dracha/feral.svg",
  12783. extra: 692 / 633,
  12784. bottom: 0.05
  12785. }
  12786. },
  12787. },
  12788. [
  12789. {
  12790. name: "Normal",
  12791. height: math.unit(7, "feet"),
  12792. default: true
  12793. },
  12794. ]
  12795. ))
  12796. characterMakers.push(() => makeCharacter(
  12797. { name: "Java" },
  12798. {
  12799. fallen: {
  12800. height: math.unit(11 + 8 / 12, "feet"),
  12801. weight: math.unit(485, "lb"),
  12802. name: "Java (Fallen)",
  12803. rename: true,
  12804. image: {
  12805. source: "./media/characters/java/fallen.svg",
  12806. extra: 226 / 208,
  12807. bottom: 0.005
  12808. }
  12809. },
  12810. godkin: {
  12811. height: math.unit(10 + 6 / 12, "feet"),
  12812. weight: math.unit(328, "lb"),
  12813. name: "Java (Godkin)",
  12814. rename: true,
  12815. image: {
  12816. source: "./media/characters/java/godkin.svg",
  12817. extra: 270 / 262,
  12818. bottom: 0.02
  12819. }
  12820. },
  12821. },
  12822. [
  12823. {
  12824. name: "Normal",
  12825. height: math.unit(11 + 8 / 12, "feet"),
  12826. default: true
  12827. },
  12828. ]
  12829. ))
  12830. characterMakers.push(() => makeCharacter(
  12831. { name: "Skoll" },
  12832. {
  12833. front: {
  12834. height: math.unit(7 + 8 / 12, "feet"),
  12835. weight: math.unit(320, "lb"),
  12836. name: "Front",
  12837. image: {
  12838. source: "./media/characters/skoll/front.svg",
  12839. extra: 232 / 220,
  12840. bottom: 0.02
  12841. }
  12842. },
  12843. },
  12844. [
  12845. {
  12846. name: "Normal",
  12847. height: math.unit(7 + 8 / 12, "feet"),
  12848. default: true
  12849. },
  12850. ]
  12851. ))
  12852. characterMakers.push(() => makeCharacter(
  12853. { name: "Purna" },
  12854. {
  12855. front: {
  12856. height: math.unit(5 + 9 / 12, "feet"),
  12857. weight: math.unit(170, "lb"),
  12858. name: "Front",
  12859. image: {
  12860. source: "./media/characters/purna/front.svg",
  12861. extra: 239 / 229,
  12862. bottom: 0.01
  12863. }
  12864. },
  12865. },
  12866. [
  12867. {
  12868. name: "Normal",
  12869. height: math.unit(5 + 9 / 12, "feet"),
  12870. default: true
  12871. },
  12872. ]
  12873. ))
  12874. characterMakers.push(() => makeCharacter(
  12875. { name: "Kuva" },
  12876. {
  12877. front: {
  12878. height: math.unit(5 + 9 / 12, "feet"),
  12879. weight: math.unit(142, "lb"),
  12880. name: "Front",
  12881. image: {
  12882. source: "./media/characters/kuva/front.svg",
  12883. extra: 281 / 271,
  12884. bottom: 0.006
  12885. }
  12886. },
  12887. },
  12888. [
  12889. {
  12890. name: "Normal",
  12891. height: math.unit(5 + 9 / 12, "feet"),
  12892. default: true
  12893. },
  12894. ]
  12895. ))
  12896. characterMakers.push(() => makeCharacter(
  12897. { name: "Embra" },
  12898. {
  12899. anthro: {
  12900. height: math.unit(9 + 2 / 12, "feet"),
  12901. weight: math.unit(270, "lb"),
  12902. name: "Anthro",
  12903. image: {
  12904. source: "./media/characters/embra/anthro.svg",
  12905. extra: 200 / 187,
  12906. bottom: 0.02
  12907. }
  12908. },
  12909. feral: {
  12910. height: math.unit(18 + 8 / 12, "feet"),
  12911. weight: math.unit(576, "lb"),
  12912. name: "Feral",
  12913. image: {
  12914. source: "./media/characters/embra/feral.svg",
  12915. extra: 152 / 137,
  12916. bottom: 0.037
  12917. }
  12918. },
  12919. },
  12920. [
  12921. {
  12922. name: "Normal",
  12923. height: math.unit(9 + 2 / 12, "feet"),
  12924. default: true
  12925. },
  12926. ]
  12927. ))
  12928. characterMakers.push(() => makeCharacter(
  12929. { name: "Grottos" },
  12930. {
  12931. anthro: {
  12932. height: math.unit(10 + 9 / 12, "feet"),
  12933. weight: math.unit(224, "lb"),
  12934. name: "Anthro",
  12935. image: {
  12936. source: "./media/characters/grottos/anthro.svg",
  12937. extra: 350 / 332,
  12938. bottom: 0.045
  12939. }
  12940. },
  12941. feral: {
  12942. height: math.unit(20 + 7 / 12, "feet"),
  12943. weight: math.unit(629, "lb"),
  12944. name: "Feral",
  12945. image: {
  12946. source: "./media/characters/grottos/feral.svg",
  12947. extra: 207 / 190,
  12948. bottom: 0.05
  12949. }
  12950. },
  12951. },
  12952. [
  12953. {
  12954. name: "Normal",
  12955. height: math.unit(10 + 9 / 12, "feet"),
  12956. default: true
  12957. },
  12958. ]
  12959. ))
  12960. characterMakers.push(() => makeCharacter(
  12961. { name: "Frifna" },
  12962. {
  12963. anthro: {
  12964. height: math.unit(9 + 6 / 12, "feet"),
  12965. weight: math.unit(298, "lb"),
  12966. name: "Anthro",
  12967. image: {
  12968. source: "./media/characters/frifna/anthro.svg",
  12969. extra: 282 / 269,
  12970. bottom: 0.015
  12971. }
  12972. },
  12973. feral: {
  12974. height: math.unit(16 + 2 / 12, "feet"),
  12975. weight: math.unit(624, "lb"),
  12976. name: "Feral",
  12977. image: {
  12978. source: "./media/characters/frifna/feral.svg"
  12979. }
  12980. },
  12981. },
  12982. [
  12983. {
  12984. name: "Normal",
  12985. height: math.unit(9 + 6 / 12, "feet"),
  12986. default: true
  12987. },
  12988. ]
  12989. ))
  12990. characterMakers.push(() => makeCharacter(
  12991. { name: "Elise" },
  12992. {
  12993. front: {
  12994. height: math.unit(6 + 2 / 12, "feet"),
  12995. weight: math.unit(168, "lb"),
  12996. name: "Front",
  12997. image: {
  12998. source: "./media/characters/elise/front.svg",
  12999. extra: 276 / 271
  13000. }
  13001. },
  13002. },
  13003. [
  13004. {
  13005. name: "Normal",
  13006. height: math.unit(6 + 2 / 12, "feet"),
  13007. default: true
  13008. },
  13009. ]
  13010. ))
  13011. characterMakers.push(() => makeCharacter(
  13012. { name: "Glade" },
  13013. {
  13014. front: {
  13015. height: math.unit(5 + 10 / 12, "feet"),
  13016. weight: math.unit(210, "lb"),
  13017. name: "Front",
  13018. image: {
  13019. source: "./media/characters/glade/front.svg",
  13020. extra: 258 / 247,
  13021. bottom: 0.008
  13022. }
  13023. },
  13024. },
  13025. [
  13026. {
  13027. name: "Normal",
  13028. height: math.unit(5 + 10 / 12, "feet"),
  13029. default: true
  13030. },
  13031. ]
  13032. ))
  13033. characterMakers.push(() => makeCharacter(
  13034. { name: "Rina" },
  13035. {
  13036. front: {
  13037. height: math.unit(5 + 10 / 12, "feet"),
  13038. weight: math.unit(129, "lb"),
  13039. name: "Front",
  13040. image: {
  13041. source: "./media/characters/rina/front.svg",
  13042. extra: 266 / 255,
  13043. bottom: 0.005
  13044. }
  13045. },
  13046. },
  13047. [
  13048. {
  13049. name: "Normal",
  13050. height: math.unit(5 + 10 / 12, "feet"),
  13051. default: true
  13052. },
  13053. ]
  13054. ))
  13055. characterMakers.push(() => makeCharacter(
  13056. { name: "Veronica" },
  13057. {
  13058. front: {
  13059. height: math.unit(6 + 1 / 12, "feet"),
  13060. weight: math.unit(192, "lb"),
  13061. name: "Front",
  13062. image: {
  13063. source: "./media/characters/veronica/front.svg",
  13064. extra: 319 / 309,
  13065. bottom: 0.005
  13066. }
  13067. },
  13068. },
  13069. [
  13070. {
  13071. name: "Normal",
  13072. height: math.unit(6 + 1 / 12, "feet"),
  13073. default: true
  13074. },
  13075. ]
  13076. ))
  13077. characterMakers.push(() => makeCharacter(
  13078. { name: "Braxton" },
  13079. {
  13080. front: {
  13081. height: math.unit(9 + 3 / 12, "feet"),
  13082. weight: math.unit(1100, "lb"),
  13083. name: "Front",
  13084. image: {
  13085. source: "./media/characters/braxton/front.svg",
  13086. extra: 1057 / 984,
  13087. bottom: 0.05
  13088. }
  13089. },
  13090. },
  13091. [
  13092. {
  13093. name: "Normal",
  13094. height: math.unit(9 + 3 / 12, "feet")
  13095. },
  13096. {
  13097. name: "Giant",
  13098. height: math.unit(300, "feet"),
  13099. default: true
  13100. },
  13101. {
  13102. name: "Macro",
  13103. height: math.unit(700, "feet")
  13104. },
  13105. {
  13106. name: "Megamacro",
  13107. height: math.unit(6000, "feet")
  13108. },
  13109. ]
  13110. ))
  13111. characterMakers.push(() => makeCharacter(
  13112. { name: "Blue Feyonics" },
  13113. {
  13114. front: {
  13115. height: math.unit(6 + 7 / 12, "feet"),
  13116. weight: math.unit(150, "lb"),
  13117. name: "Front",
  13118. image: {
  13119. source: "./media/characters/blue-feyonics/front.svg",
  13120. extra: 1403 / 1306,
  13121. bottom: 0.047
  13122. }
  13123. },
  13124. },
  13125. [
  13126. {
  13127. name: "Normal",
  13128. height: math.unit(6 + 7 / 12, "feet"),
  13129. default: true
  13130. },
  13131. ]
  13132. ))
  13133. characterMakers.push(() => makeCharacter(
  13134. { name: "Maxwell" },
  13135. {
  13136. front: {
  13137. height: math.unit(1.8, "meters"),
  13138. weight: math.unit(60, "kg"),
  13139. name: "Front",
  13140. image: {
  13141. source: "./media/characters/maxwell/front.svg",
  13142. extra: 2060 / 1873
  13143. }
  13144. },
  13145. },
  13146. [
  13147. {
  13148. name: "Micro",
  13149. height: math.unit(1, "mm")
  13150. },
  13151. {
  13152. name: "Normal",
  13153. height: math.unit(1.8, "meter"),
  13154. default: true
  13155. },
  13156. {
  13157. name: "Macro",
  13158. height: math.unit(30, "meters")
  13159. },
  13160. {
  13161. name: "Megamacro",
  13162. height: math.unit(10, "km")
  13163. },
  13164. ]
  13165. ))
  13166. characterMakers.push(() => makeCharacter(
  13167. { name: "Jack" },
  13168. {
  13169. front: {
  13170. height: math.unit(6, "feet"),
  13171. weight: math.unit(150, "lb"),
  13172. name: "Front",
  13173. image: {
  13174. source: "./media/characters/jack/front.svg",
  13175. extra: 1754 / 1640,
  13176. bottom: 0.01
  13177. }
  13178. },
  13179. },
  13180. [
  13181. {
  13182. name: "Normal",
  13183. height: math.unit(80000, "feet"),
  13184. default: true
  13185. },
  13186. {
  13187. name: "Max size",
  13188. height: math.unit(10, "lightyears")
  13189. },
  13190. ]
  13191. ))
  13192. characterMakers.push(() => makeCharacter(
  13193. { name: "Cafat" },
  13194. {
  13195. upright: {
  13196. height: math.unit(7, "feet"),
  13197. weight: math.unit(170, "lb"),
  13198. name: "Upright",
  13199. image: {
  13200. source: "./media/characters/cafat/upright.svg",
  13201. bottom: 0.01
  13202. }
  13203. },
  13204. uprightFull: {
  13205. height: math.unit(7, "feet"),
  13206. weight: math.unit(170, "lb"),
  13207. name: "Upright (Full)",
  13208. image: {
  13209. source: "./media/characters/cafat/upright-full.svg",
  13210. bottom: 0.01
  13211. }
  13212. },
  13213. side: {
  13214. height: math.unit(5, "feet"),
  13215. weight: math.unit(150, "lb"),
  13216. name: "Side",
  13217. image: {
  13218. source: "./media/characters/cafat/side.svg"
  13219. }
  13220. },
  13221. },
  13222. [
  13223. {
  13224. name: "Small",
  13225. height: math.unit(7, "feet"),
  13226. default: true
  13227. },
  13228. {
  13229. name: "Large",
  13230. height: math.unit(15.5, "feet")
  13231. },
  13232. ]
  13233. ))
  13234. characterMakers.push(() => makeCharacter(
  13235. { name: "Verin Raharra" },
  13236. {
  13237. front: {
  13238. height: math.unit(6, "feet"),
  13239. weight: math.unit(150, "lb"),
  13240. name: "Front",
  13241. image: {
  13242. source: "./media/characters/verin-raharra/front.svg",
  13243. extra: 5019 / 4835,
  13244. bottom: 0.023
  13245. }
  13246. },
  13247. },
  13248. [
  13249. {
  13250. name: "Normal",
  13251. height: math.unit(7 + 5 / 12, "feet"),
  13252. default: true
  13253. },
  13254. {
  13255. name: "Upsized",
  13256. height: math.unit(20, "feet")
  13257. },
  13258. ]
  13259. ))
  13260. characterMakers.push(() => makeCharacter(
  13261. { name: "Nakata" },
  13262. {
  13263. front: {
  13264. height: math.unit(7, "feet"),
  13265. weight: math.unit(230, "lb"),
  13266. name: "Front",
  13267. image: {
  13268. source: "./media/characters/nakata/front.svg",
  13269. extra: 1.005,
  13270. bottom: 0.01
  13271. }
  13272. },
  13273. },
  13274. [
  13275. {
  13276. name: "Normal",
  13277. height: math.unit(7, "feet"),
  13278. default: true
  13279. },
  13280. {
  13281. name: "Big",
  13282. height: math.unit(14, "feet")
  13283. },
  13284. {
  13285. name: "Macro",
  13286. height: math.unit(400, "feet")
  13287. },
  13288. ]
  13289. ))
  13290. characterMakers.push(() => makeCharacter(
  13291. { name: "Lily" },
  13292. {
  13293. front: {
  13294. height: math.unit(4.91, "feet"),
  13295. weight: math.unit(100, "lb"),
  13296. name: "Front",
  13297. image: {
  13298. source: "./media/characters/lily/front.svg",
  13299. extra: 1585 / 1415,
  13300. bottom: 0.02
  13301. }
  13302. },
  13303. },
  13304. [
  13305. {
  13306. name: "Normal",
  13307. height: math.unit(4.91, "feet"),
  13308. default: true
  13309. },
  13310. ]
  13311. ))
  13312. characterMakers.push(() => makeCharacter(
  13313. { name: "Sheila" },
  13314. {
  13315. laying: {
  13316. height: math.unit(4 + 4 / 12, "feet"),
  13317. weight: math.unit(600, "lb"),
  13318. name: "Laying",
  13319. image: {
  13320. source: "./media/characters/sheila/laying.svg",
  13321. extra: 1333 / 1265,
  13322. bottom: 0.16
  13323. }
  13324. },
  13325. },
  13326. [
  13327. {
  13328. name: "Normal",
  13329. height: math.unit(4 + 4 / 12, "feet"),
  13330. default: true
  13331. },
  13332. ]
  13333. ))
  13334. characterMakers.push(() => makeCharacter(
  13335. { name: "Sax" },
  13336. {
  13337. front: {
  13338. height: math.unit(6, "feet"),
  13339. weight: math.unit(190, "lb"),
  13340. name: "Front",
  13341. image: {
  13342. source: "./media/characters/sax/front.svg",
  13343. extra: 1187 / 973,
  13344. bottom: 0.042
  13345. }
  13346. },
  13347. },
  13348. [
  13349. {
  13350. name: "Micro",
  13351. height: math.unit(4, "inches"),
  13352. default: true
  13353. },
  13354. ]
  13355. ))
  13356. characterMakers.push(() => makeCharacter(
  13357. { name: "Pandora" },
  13358. {
  13359. front: {
  13360. height: math.unit(6, "feet"),
  13361. weight: math.unit(150, "lb"),
  13362. name: "Front",
  13363. image: {
  13364. source: "./media/characters/pandora/front.svg",
  13365. extra: 2720 / 2556,
  13366. bottom: 0.015
  13367. }
  13368. },
  13369. back: {
  13370. height: math.unit(6, "feet"),
  13371. weight: math.unit(150, "lb"),
  13372. name: "Back",
  13373. image: {
  13374. source: "./media/characters/pandora/back.svg",
  13375. extra: 2720 / 2556,
  13376. bottom: 0.01
  13377. }
  13378. },
  13379. beans: {
  13380. height: math.unit(6 / 8, "feet"),
  13381. name: "Beans",
  13382. image: {
  13383. source: "./media/characters/pandora/beans.svg"
  13384. }
  13385. },
  13386. skirt: {
  13387. height: math.unit(6, "feet"),
  13388. weight: math.unit(150, "lb"),
  13389. name: "Skirt",
  13390. image: {
  13391. source: "./media/characters/pandora/skirt.svg",
  13392. extra: 1622 / 1525,
  13393. bottom: 0.015
  13394. }
  13395. },
  13396. hoodie: {
  13397. height: math.unit(6, "feet"),
  13398. weight: math.unit(150, "lb"),
  13399. name: "Hoodie",
  13400. image: {
  13401. source: "./media/characters/pandora/hoodie.svg",
  13402. extra: 1622 / 1525,
  13403. bottom: 0.015
  13404. }
  13405. },
  13406. casual: {
  13407. height: math.unit(6, "feet"),
  13408. weight: math.unit(150, "lb"),
  13409. name: "Casual",
  13410. image: {
  13411. source: "./media/characters/pandora/casual.svg",
  13412. extra: 1622 / 1525,
  13413. bottom: 0.015
  13414. }
  13415. },
  13416. },
  13417. [
  13418. {
  13419. name: "Normal",
  13420. height: math.unit(6, "feet")
  13421. },
  13422. {
  13423. name: "Big Steppy",
  13424. height: math.unit(1, "km"),
  13425. default: true
  13426. },
  13427. ]
  13428. ))
  13429. characterMakers.push(() => makeCharacter(
  13430. { name: "Venio Darcony" },
  13431. {
  13432. side: {
  13433. height: math.unit(10, "feet"),
  13434. weight: math.unit(800, "kg"),
  13435. name: "Side",
  13436. image: {
  13437. source: "./media/characters/venio-darcony/side.svg",
  13438. extra: 1373 / 1003,
  13439. bottom: 0.037
  13440. }
  13441. },
  13442. front: {
  13443. height: math.unit(19, "feet"),
  13444. weight: math.unit(800, "kg"),
  13445. name: "Front",
  13446. image: {
  13447. source: "./media/characters/venio-darcony/front.svg"
  13448. }
  13449. },
  13450. back: {
  13451. height: math.unit(19, "feet"),
  13452. weight: math.unit(800, "kg"),
  13453. name: "Back",
  13454. image: {
  13455. source: "./media/characters/venio-darcony/back.svg"
  13456. }
  13457. },
  13458. },
  13459. [
  13460. {
  13461. name: "Normal",
  13462. height: math.unit(10, "feet")
  13463. },
  13464. {
  13465. name: "Macro",
  13466. height: math.unit(130, "feet"),
  13467. default: true
  13468. },
  13469. {
  13470. name: "Macro+",
  13471. height: math.unit(240, "feet")
  13472. },
  13473. ]
  13474. ))
  13475. characterMakers.push(() => makeCharacter(
  13476. { name: "Veski" },
  13477. {
  13478. front: {
  13479. height: math.unit(6, "feet"),
  13480. weight: math.unit(150, "lb"),
  13481. name: "Front",
  13482. image: {
  13483. source: "./media/characters/veski/front.svg",
  13484. extra: 1299 / 1225,
  13485. bottom: 0.04
  13486. }
  13487. },
  13488. back: {
  13489. height: math.unit(6, "feet"),
  13490. weight: math.unit(150, "lb"),
  13491. name: "Back",
  13492. image: {
  13493. source: "./media/characters/veski/back.svg",
  13494. extra: 1299 / 1225,
  13495. bottom: 0.008
  13496. }
  13497. },
  13498. maw: {
  13499. height: math.unit(1.5 * 1.21, "feet"),
  13500. name: "Maw",
  13501. image: {
  13502. source: "./media/characters/veski/maw.svg"
  13503. }
  13504. },
  13505. },
  13506. [
  13507. {
  13508. name: "Macro",
  13509. height: math.unit(2, "km"),
  13510. default: true
  13511. },
  13512. ]
  13513. ))
  13514. characterMakers.push(() => makeCharacter(
  13515. { name: "Isabelle" },
  13516. {
  13517. front: {
  13518. height: math.unit(5 + 7 / 12, "feet"),
  13519. name: "Front",
  13520. image: {
  13521. source: "./media/characters/isabelle/front.svg",
  13522. extra: 2130 / 1976,
  13523. bottom: 0.05
  13524. }
  13525. },
  13526. },
  13527. [
  13528. {
  13529. name: "Supermicro",
  13530. height: math.unit(10, "micrometers")
  13531. },
  13532. {
  13533. name: "Micro",
  13534. height: math.unit(1, "inch")
  13535. },
  13536. {
  13537. name: "Tiny",
  13538. height: math.unit(5, "inches")
  13539. },
  13540. {
  13541. name: "Standard",
  13542. height: math.unit(5 + 7 / 12, "inches")
  13543. },
  13544. {
  13545. name: "Macro",
  13546. height: math.unit(80, "meters"),
  13547. default: true
  13548. },
  13549. {
  13550. name: "Megamacro",
  13551. height: math.unit(250, "meters")
  13552. },
  13553. {
  13554. name: "Gigamacro",
  13555. height: math.unit(5, "km")
  13556. },
  13557. {
  13558. name: "Cosmic",
  13559. height: math.unit(2.5e6, "miles")
  13560. },
  13561. ]
  13562. ))
  13563. characterMakers.push(() => makeCharacter(
  13564. { name: "Hanzo" },
  13565. {
  13566. front: {
  13567. height: math.unit(6, "feet"),
  13568. weight: math.unit(150, "lb"),
  13569. name: "Front",
  13570. image: {
  13571. source: "./media/characters/hanzo/front.svg",
  13572. extra: 374 / 344,
  13573. bottom: 0.02
  13574. }
  13575. },
  13576. },
  13577. [
  13578. {
  13579. name: "Normal",
  13580. height: math.unit(8, "feet"),
  13581. default: true
  13582. },
  13583. ]
  13584. ))
  13585. characterMakers.push(() => makeCharacter(
  13586. { name: "Anna" },
  13587. {
  13588. front: {
  13589. height: math.unit(7, "feet"),
  13590. weight: math.unit(130, "lb"),
  13591. name: "Front",
  13592. image: {
  13593. source: "./media/characters/anna/front.svg",
  13594. extra: 169 / 145,
  13595. bottom: 0.06
  13596. }
  13597. },
  13598. full: {
  13599. height: math.unit(4.96, "feet"),
  13600. weight: math.unit(220, "lb"),
  13601. name: "Full",
  13602. image: {
  13603. source: "./media/characters/anna/full.svg",
  13604. extra: 138 / 114,
  13605. bottom: 0.15
  13606. }
  13607. },
  13608. tongue: {
  13609. height: math.unit(2.53, "feet"),
  13610. name: "Tongue",
  13611. image: {
  13612. source: "./media/characters/anna/tongue.svg"
  13613. }
  13614. },
  13615. },
  13616. [
  13617. {
  13618. name: "Normal",
  13619. height: math.unit(7, "feet"),
  13620. default: true
  13621. },
  13622. ]
  13623. ))
  13624. characterMakers.push(() => makeCharacter(
  13625. { name: "Ian Corvid" },
  13626. {
  13627. front: {
  13628. height: math.unit(7, "feet"),
  13629. weight: math.unit(150, "lb"),
  13630. name: "Front",
  13631. image: {
  13632. source: "./media/characters/ian-corvid/front.svg",
  13633. extra: 150 / 142,
  13634. bottom: 0.02
  13635. }
  13636. },
  13637. back: {
  13638. height: math.unit(7, "feet"),
  13639. weight: math.unit(150, "lb"),
  13640. name: "Back",
  13641. image: {
  13642. source: "./media/characters/ian-corvid/back.svg",
  13643. extra: 150 / 143,
  13644. bottom: 0.01
  13645. }
  13646. },
  13647. stomping: {
  13648. height: math.unit(7, "feet"),
  13649. weight: math.unit(150, "lb"),
  13650. name: "Stomping",
  13651. image: {
  13652. source: "./media/characters/ian-corvid/stomping.svg",
  13653. extra: 76 / 72
  13654. }
  13655. },
  13656. sitting: {
  13657. height: math.unit(7 / 1.8, "feet"),
  13658. weight: math.unit(150, "lb"),
  13659. name: "Sitting",
  13660. image: {
  13661. source: "./media/characters/ian-corvid/sitting.svg",
  13662. extra: 1400 / 1269,
  13663. bottom: 0.15
  13664. }
  13665. },
  13666. },
  13667. [
  13668. {
  13669. name: "Tiny Microw",
  13670. height: math.unit(1, "inch")
  13671. },
  13672. {
  13673. name: "Microw",
  13674. height: math.unit(6, "inches")
  13675. },
  13676. {
  13677. name: "Crow",
  13678. height: math.unit(7 + 1 / 12, "feet"),
  13679. default: true
  13680. },
  13681. {
  13682. name: "Macrow",
  13683. height: math.unit(176, "feet")
  13684. },
  13685. ]
  13686. ))
  13687. characterMakers.push(() => makeCharacter(
  13688. { name: "Natalie Kellon" },
  13689. {
  13690. front: {
  13691. height: math.unit(5 + 7 / 12, "feet"),
  13692. weight: math.unit(147, "lb"),
  13693. name: "Front",
  13694. image: {
  13695. source: "./media/characters/natalie-kellon/front.svg",
  13696. extra: 1214 / 1141,
  13697. bottom: 0.02
  13698. }
  13699. },
  13700. },
  13701. [
  13702. {
  13703. name: "Micro",
  13704. height: math.unit(1 / 16, "inch")
  13705. },
  13706. {
  13707. name: "Tiny",
  13708. height: math.unit(4, "inches")
  13709. },
  13710. {
  13711. name: "Normal",
  13712. height: math.unit(5 + 7 / 12, "feet"),
  13713. default: true
  13714. },
  13715. {
  13716. name: "Amazon",
  13717. height: math.unit(12, "feet")
  13718. },
  13719. {
  13720. name: "Giantess",
  13721. height: math.unit(160, "meters")
  13722. },
  13723. {
  13724. name: "Titaness",
  13725. height: math.unit(800, "meters")
  13726. },
  13727. ]
  13728. ))
  13729. characterMakers.push(() => makeCharacter(
  13730. { name: "Alluria" },
  13731. {
  13732. front: {
  13733. height: math.unit(6, "feet"),
  13734. weight: math.unit(150, "lb"),
  13735. name: "Front",
  13736. image: {
  13737. source: "./media/characters/alluria/front.svg",
  13738. extra: 806 / 738,
  13739. bottom: 0.01
  13740. }
  13741. },
  13742. side: {
  13743. height: math.unit(6, "feet"),
  13744. weight: math.unit(150, "lb"),
  13745. name: "Side",
  13746. image: {
  13747. source: "./media/characters/alluria/side.svg",
  13748. extra: 800 / 750,
  13749. }
  13750. },
  13751. back: {
  13752. height: math.unit(6, "feet"),
  13753. weight: math.unit(150, "lb"),
  13754. name: "Back",
  13755. image: {
  13756. source: "./media/characters/alluria/back.svg",
  13757. extra: 806 / 738,
  13758. }
  13759. },
  13760. frontMaid: {
  13761. height: math.unit(6, "feet"),
  13762. weight: math.unit(150, "lb"),
  13763. name: "Front (Maid)",
  13764. image: {
  13765. source: "./media/characters/alluria/front-maid.svg",
  13766. extra: 806 / 738,
  13767. bottom: 0.01
  13768. }
  13769. },
  13770. sideMaid: {
  13771. height: math.unit(6, "feet"),
  13772. weight: math.unit(150, "lb"),
  13773. name: "Side (Maid)",
  13774. image: {
  13775. source: "./media/characters/alluria/side-maid.svg",
  13776. extra: 800 / 750,
  13777. bottom: 0.005
  13778. }
  13779. },
  13780. backMaid: {
  13781. height: math.unit(6, "feet"),
  13782. weight: math.unit(150, "lb"),
  13783. name: "Back (Maid)",
  13784. image: {
  13785. source: "./media/characters/alluria/back-maid.svg",
  13786. extra: 806 / 738,
  13787. }
  13788. },
  13789. },
  13790. [
  13791. {
  13792. name: "Micro",
  13793. height: math.unit(6, "inches"),
  13794. default: true
  13795. },
  13796. ]
  13797. ))
  13798. characterMakers.push(() => makeCharacter(
  13799. { name: "Kyle" },
  13800. {
  13801. front: {
  13802. height: math.unit(6, "feet"),
  13803. weight: math.unit(150, "lb"),
  13804. name: "Front",
  13805. image: {
  13806. source: "./media/characters/kyle/front.svg",
  13807. extra: 1069 / 962,
  13808. bottom: 77.228 / 1727.45
  13809. }
  13810. },
  13811. },
  13812. [
  13813. {
  13814. name: "Macro",
  13815. height: math.unit(150, "feet"),
  13816. default: true
  13817. },
  13818. ]
  13819. ))
  13820. characterMakers.push(() => makeCharacter(
  13821. { name: "Duncan" },
  13822. {
  13823. front: {
  13824. height: math.unit(6, "feet"),
  13825. weight: math.unit(300, "lb"),
  13826. name: "Front",
  13827. image: {
  13828. source: "./media/characters/duncan/front.svg",
  13829. extra: 1650 / 1482,
  13830. bottom: 0.05
  13831. }
  13832. },
  13833. },
  13834. [
  13835. {
  13836. name: "Macro",
  13837. height: math.unit(100, "feet"),
  13838. default: true
  13839. },
  13840. ]
  13841. ))
  13842. characterMakers.push(() => makeCharacter(
  13843. { name: "Memory" },
  13844. {
  13845. front: {
  13846. height: math.unit(5 + 4 / 12, "feet"),
  13847. weight: math.unit(220, "lb"),
  13848. name: "Front",
  13849. image: {
  13850. source: "./media/characters/memory/front.svg",
  13851. extra: 3641 / 3545,
  13852. bottom: 0.03
  13853. }
  13854. },
  13855. back: {
  13856. height: math.unit(5 + 4 / 12, "feet"),
  13857. weight: math.unit(220, "lb"),
  13858. name: "Back",
  13859. image: {
  13860. source: "./media/characters/memory/back.svg",
  13861. extra: 3641 / 3545,
  13862. bottom: 0.025
  13863. }
  13864. },
  13865. frontSkirt: {
  13866. height: math.unit(5 + 4 / 12, "feet"),
  13867. weight: math.unit(220, "lb"),
  13868. name: "Front (Skirt)",
  13869. image: {
  13870. source: "./media/characters/memory/front-skirt.svg",
  13871. extra: 3641 / 3545,
  13872. bottom: 0.03
  13873. }
  13874. },
  13875. frontDress: {
  13876. height: math.unit(5 + 4 / 12, "feet"),
  13877. weight: math.unit(220, "lb"),
  13878. name: "Front (Dress)",
  13879. image: {
  13880. source: "./media/characters/memory/front-dress.svg",
  13881. extra: 3641 / 3545,
  13882. bottom: 0.03
  13883. }
  13884. },
  13885. },
  13886. [
  13887. {
  13888. name: "Micro",
  13889. height: math.unit(6, "inches"),
  13890. default: true
  13891. },
  13892. {
  13893. name: "Normal",
  13894. height: math.unit(5 + 4 / 12, "feet")
  13895. },
  13896. ]
  13897. ))
  13898. characterMakers.push(() => makeCharacter(
  13899. { name: "Luno" },
  13900. {
  13901. front: {
  13902. height: math.unit(4 + 11 / 12, "feet"),
  13903. weight: math.unit(100, "lb"),
  13904. name: "Front",
  13905. image: {
  13906. source: "./media/characters/luno/front.svg",
  13907. extra: 1535 / 1487,
  13908. bottom: 0.03
  13909. }
  13910. },
  13911. },
  13912. [
  13913. {
  13914. name: "Micro",
  13915. height: math.unit(3, "inches")
  13916. },
  13917. {
  13918. name: "Normal",
  13919. height: math.unit(4 + 11 / 12, "feet"),
  13920. default: true
  13921. },
  13922. {
  13923. name: "Macro",
  13924. height: math.unit(300, "feet")
  13925. },
  13926. {
  13927. name: "Megamacro",
  13928. height: math.unit(700, "miles")
  13929. },
  13930. ]
  13931. ))
  13932. characterMakers.push(() => makeCharacter(
  13933. { name: "Jamesy" },
  13934. {
  13935. front: {
  13936. height: math.unit(6 + 2 / 12, "feet"),
  13937. weight: math.unit(170, "lb"),
  13938. name: "Front",
  13939. image: {
  13940. source: "./media/characters/jamesy/front.svg",
  13941. extra: 440 / 382,
  13942. bottom: 0.005
  13943. }
  13944. },
  13945. },
  13946. [
  13947. {
  13948. name: "Micro",
  13949. height: math.unit(3, "inches")
  13950. },
  13951. {
  13952. name: "Normal",
  13953. height: math.unit(6 + 2 / 12, "feet"),
  13954. default: true
  13955. },
  13956. {
  13957. name: "Macro",
  13958. height: math.unit(300, "feet")
  13959. },
  13960. {
  13961. name: "Megamacro",
  13962. height: math.unit(700, "miles")
  13963. },
  13964. ]
  13965. ))
  13966. characterMakers.push(() => makeCharacter(
  13967. { name: "Mark" },
  13968. {
  13969. front: {
  13970. height: math.unit(6, "feet"),
  13971. weight: math.unit(160, "lb"),
  13972. name: "Front",
  13973. image: {
  13974. source: "./media/characters/mark/front.svg",
  13975. extra: 3300 / 3100,
  13976. bottom: 136.42 / 3440.47
  13977. }
  13978. },
  13979. },
  13980. [
  13981. {
  13982. name: "Macro",
  13983. height: math.unit(120, "meters")
  13984. },
  13985. {
  13986. name: "Bigger Macro",
  13987. height: math.unit(350, "meters")
  13988. },
  13989. {
  13990. name: "Megamacro",
  13991. height: math.unit(8, "km"),
  13992. default: true
  13993. },
  13994. {
  13995. name: "Continental",
  13996. height: math.unit(4550, "km")
  13997. },
  13998. {
  13999. name: "Planetary",
  14000. height: math.unit(65000, "km")
  14001. },
  14002. ]
  14003. ))
  14004. characterMakers.push(() => makeCharacter(
  14005. { name: "Mac" },
  14006. {
  14007. front: {
  14008. height: math.unit(6, "feet"),
  14009. weight: math.unit(400, "lb"),
  14010. name: "Front",
  14011. image: {
  14012. source: "./media/characters/mac/front.svg",
  14013. extra: 1048 / 987.7,
  14014. bottom: 60 / 1107.6,
  14015. }
  14016. },
  14017. },
  14018. [
  14019. {
  14020. name: "Macro",
  14021. height: math.unit(500, "feet"),
  14022. default: true
  14023. },
  14024. ]
  14025. ))
  14026. characterMakers.push(() => makeCharacter(
  14027. { name: "Bari" },
  14028. {
  14029. front: {
  14030. height: math.unit(5 + 2 / 12, "feet"),
  14031. weight: math.unit(190, "lb"),
  14032. name: "Front",
  14033. image: {
  14034. source: "./media/characters/bari/front.svg",
  14035. extra: 3156 / 2880,
  14036. bottom: 0.03
  14037. }
  14038. },
  14039. back: {
  14040. height: math.unit(5 + 2 / 12, "feet"),
  14041. weight: math.unit(190, "lb"),
  14042. name: "Back",
  14043. image: {
  14044. source: "./media/characters/bari/back.svg",
  14045. extra: 3260 / 2834,
  14046. bottom: 0.025
  14047. }
  14048. },
  14049. frontPlush: {
  14050. height: math.unit(5 + 2 / 12, "feet"),
  14051. weight: math.unit(190, "lb"),
  14052. name: "Front (Plush)",
  14053. image: {
  14054. source: "./media/characters/bari/front-plush.svg",
  14055. extra: 1112 / 1061,
  14056. bottom: 0.002
  14057. }
  14058. },
  14059. },
  14060. [
  14061. {
  14062. name: "Micro",
  14063. height: math.unit(3, "inches")
  14064. },
  14065. {
  14066. name: "Normal",
  14067. height: math.unit(5 + 2 / 12, "feet"),
  14068. default: true
  14069. },
  14070. {
  14071. name: "Macro",
  14072. height: math.unit(20, "feet")
  14073. },
  14074. ]
  14075. ))
  14076. characterMakers.push(() => makeCharacter(
  14077. { name: "Hunter Misha Raven" },
  14078. {
  14079. front: {
  14080. height: math.unit(6 + 1 / 12, "feet"),
  14081. weight: math.unit(275, "lb"),
  14082. name: "Front",
  14083. image: {
  14084. source: "./media/characters/hunter-misha-raven/front.svg"
  14085. }
  14086. },
  14087. },
  14088. [
  14089. {
  14090. name: "Mortal",
  14091. height: math.unit(6 + 1 / 12, "feet")
  14092. },
  14093. {
  14094. name: "Divine",
  14095. height: math.unit(1.12134e34, "parsecs"),
  14096. default: true
  14097. },
  14098. ]
  14099. ))
  14100. characterMakers.push(() => makeCharacter(
  14101. { name: "Max Calore" },
  14102. {
  14103. front: {
  14104. height: math.unit(6 + 3 / 12, "feet"),
  14105. weight: math.unit(220, "lb"),
  14106. name: "Front",
  14107. image: {
  14108. source: "./media/characters/max-calore/front.svg",
  14109. extra: 1700 / 1648,
  14110. bottom: 0.01
  14111. }
  14112. },
  14113. back: {
  14114. height: math.unit(6 + 3 / 12, "feet"),
  14115. weight: math.unit(220, "lb"),
  14116. name: "Back",
  14117. image: {
  14118. source: "./media/characters/max-calore/back.svg",
  14119. extra: 1700 / 1648,
  14120. bottom: 0.01
  14121. }
  14122. },
  14123. },
  14124. [
  14125. {
  14126. name: "Normal",
  14127. height: math.unit(6 + 3 / 12, "feet"),
  14128. default: true
  14129. },
  14130. ]
  14131. ))
  14132. characterMakers.push(() => makeCharacter(
  14133. { name: "Aspen" },
  14134. {
  14135. side: {
  14136. height: math.unit(2 + 8 / 12, "feet"),
  14137. weight: math.unit(99, "lb"),
  14138. name: "Side",
  14139. image: {
  14140. source: "./media/characters/aspen/side.svg",
  14141. extra: 152 / 138,
  14142. bottom: 0.032
  14143. }
  14144. },
  14145. },
  14146. [
  14147. {
  14148. name: "Normal",
  14149. height: math.unit(2 + 8 / 12, "feet"),
  14150. default: true
  14151. },
  14152. ]
  14153. ))
  14154. characterMakers.push(() => makeCharacter(
  14155. { name: "Sheila (Wolf)" },
  14156. {
  14157. side: {
  14158. height: math.unit(3 + 2 / 12, "feet"),
  14159. weight: math.unit(224, "lb"),
  14160. name: "Side",
  14161. image: {
  14162. source: "./media/characters/sheila-wolf/side.svg",
  14163. extra: 179 / 166,
  14164. bottom: 0.03
  14165. }
  14166. },
  14167. },
  14168. [
  14169. {
  14170. name: "Normal",
  14171. height: math.unit(3 + 2 / 12, "feet"),
  14172. default: true
  14173. },
  14174. ]
  14175. ))
  14176. characterMakers.push(() => makeCharacter(
  14177. { name: "Michelle" },
  14178. {
  14179. side: {
  14180. height: math.unit(1 + 9 / 12, "feet"),
  14181. weight: math.unit(38, "lb"),
  14182. name: "Side",
  14183. image: {
  14184. source: "./media/characters/michelle/side.svg",
  14185. extra: 147 / 136.7,
  14186. bottom: 0.03
  14187. }
  14188. },
  14189. },
  14190. [
  14191. {
  14192. name: "Normal",
  14193. height: math.unit(1 + 9 / 12, "feet"),
  14194. default: true
  14195. },
  14196. ]
  14197. ))
  14198. characterMakers.push(() => makeCharacter(
  14199. { name: "Nino" },
  14200. {
  14201. front: {
  14202. height: math.unit(1 + 1 / 12, "feet"),
  14203. weight: math.unit(18, "lb"),
  14204. name: "Front",
  14205. image: {
  14206. source: "./media/characters/nino/front.svg"
  14207. }
  14208. },
  14209. },
  14210. [
  14211. {
  14212. name: "Normal",
  14213. height: math.unit(1 + 1 / 12, "feet"),
  14214. default: true
  14215. },
  14216. ]
  14217. ))
  14218. characterMakers.push(() => makeCharacter(
  14219. { name: "Viola" },
  14220. {
  14221. front: {
  14222. height: math.unit(1, "feet"),
  14223. weight: math.unit(16, "lb"),
  14224. name: "Front",
  14225. image: {
  14226. source: "./media/characters/viola/front.svg"
  14227. }
  14228. },
  14229. },
  14230. [
  14231. {
  14232. name: "Normal",
  14233. height: math.unit(1, "feet"),
  14234. default: true
  14235. },
  14236. ]
  14237. ))
  14238. characterMakers.push(() => makeCharacter(
  14239. { name: "Atlas" },
  14240. {
  14241. front: {
  14242. height: math.unit(6 + 5 / 12, "feet"),
  14243. weight: math.unit(580, "lb"),
  14244. name: "Front",
  14245. image: {
  14246. source: "./media/characters/atlas/front.svg",
  14247. extra: 298.5 / 290,
  14248. bottom: 0.015
  14249. }
  14250. },
  14251. },
  14252. [
  14253. {
  14254. name: "Normal",
  14255. height: math.unit(6 + 5 / 12, "feet"),
  14256. default: true
  14257. },
  14258. ]
  14259. ))
  14260. characterMakers.push(() => makeCharacter(
  14261. { name: "Davy" },
  14262. {
  14263. side: {
  14264. height: math.unit(1 + 10 / 12, "feet"),
  14265. weight: math.unit(25, "lb"),
  14266. name: "Side",
  14267. image: {
  14268. source: "./media/characters/davy/side.svg",
  14269. extra: 200 / 170,
  14270. bottom: 0.01
  14271. }
  14272. },
  14273. },
  14274. [
  14275. {
  14276. name: "Normal",
  14277. height: math.unit(1 + 10 / 12, "feet"),
  14278. default: true
  14279. },
  14280. ]
  14281. ))
  14282. characterMakers.push(() => makeCharacter(
  14283. { name: "Fiona" },
  14284. {
  14285. side: {
  14286. height: math.unit(4 + 8 / 12, "feet"),
  14287. weight: math.unit(166, "lb"),
  14288. name: "Side",
  14289. image: {
  14290. source: "./media/characters/fiona/side.svg",
  14291. extra: 232 / 220,
  14292. bottom: 0.03
  14293. }
  14294. },
  14295. },
  14296. [
  14297. {
  14298. name: "Normal",
  14299. height: math.unit(4 + 8 / 12, "feet"),
  14300. default: true
  14301. },
  14302. ]
  14303. ))
  14304. characterMakers.push(() => makeCharacter(
  14305. { name: "Lyla" },
  14306. {
  14307. front: {
  14308. height: math.unit(2, "feet"),
  14309. weight: math.unit(62, "lb"),
  14310. name: "Front",
  14311. image: {
  14312. source: "./media/characters/lyla/front.svg",
  14313. bottom: 0.1
  14314. }
  14315. },
  14316. },
  14317. [
  14318. {
  14319. name: "Normal",
  14320. height: math.unit(2, "feet"),
  14321. default: true
  14322. },
  14323. ]
  14324. ))
  14325. characterMakers.push(() => makeCharacter(
  14326. { name: "Perseus" },
  14327. {
  14328. side: {
  14329. height: math.unit(1.8, "feet"),
  14330. weight: math.unit(44, "lb"),
  14331. name: "Side",
  14332. image: {
  14333. source: "./media/characters/perseus/side.svg",
  14334. bottom: 0.21
  14335. }
  14336. },
  14337. },
  14338. [
  14339. {
  14340. name: "Normal",
  14341. height: math.unit(1.8, "feet"),
  14342. default: true
  14343. },
  14344. ]
  14345. ))
  14346. characterMakers.push(() => makeCharacter(
  14347. { name: "Remus" },
  14348. {
  14349. side: {
  14350. height: math.unit(4 + 2 / 12, "feet"),
  14351. weight: math.unit(20, "lb"),
  14352. name: "Side",
  14353. image: {
  14354. source: "./media/characters/remus/side.svg"
  14355. }
  14356. },
  14357. },
  14358. [
  14359. {
  14360. name: "Normal",
  14361. height: math.unit(4 + 2 / 12, "feet"),
  14362. default: true
  14363. },
  14364. ]
  14365. ))
  14366. characterMakers.push(() => makeCharacter(
  14367. { name: "Raf" },
  14368. {
  14369. front: {
  14370. height: math.unit(4 + 11 / 12, "feet"),
  14371. weight: math.unit(114, "lb"),
  14372. name: "Front",
  14373. image: {
  14374. source: "./media/characters/raf/front.svg",
  14375. bottom: 0.01
  14376. }
  14377. },
  14378. side: {
  14379. height: math.unit(4 + 11 / 12, "feet"),
  14380. weight: math.unit(114, "lb"),
  14381. name: "Side",
  14382. image: {
  14383. source: "./media/characters/raf/side.svg",
  14384. bottom: 0.005
  14385. }
  14386. },
  14387. },
  14388. [
  14389. {
  14390. name: "Micro",
  14391. height: math.unit(2, "inches")
  14392. },
  14393. {
  14394. name: "Normal",
  14395. height: math.unit(4 + 11 / 12, "feet"),
  14396. default: true
  14397. },
  14398. {
  14399. name: "Macro",
  14400. height: math.unit(70, "feet")
  14401. },
  14402. ]
  14403. ))
  14404. characterMakers.push(() => makeCharacter(
  14405. { name: "Liam Einarr" },
  14406. {
  14407. front: {
  14408. height: math.unit(1.5, "meters"),
  14409. weight: math.unit(68, "kg"),
  14410. name: "Front",
  14411. image: {
  14412. source: "./media/characters/liam-einarr/front.svg",
  14413. extra: 2822 / 2666
  14414. }
  14415. },
  14416. back: {
  14417. height: math.unit(1.5, "meters"),
  14418. weight: math.unit(68, "kg"),
  14419. name: "Back",
  14420. image: {
  14421. source: "./media/characters/liam-einarr/back.svg",
  14422. extra: 2822 / 2666,
  14423. bottom: 0.015
  14424. }
  14425. },
  14426. },
  14427. [
  14428. {
  14429. name: "Normal",
  14430. height: math.unit(1.5, "meters"),
  14431. default: true
  14432. },
  14433. {
  14434. name: "Macro",
  14435. height: math.unit(150, "meters")
  14436. },
  14437. {
  14438. name: "Megamacro",
  14439. height: math.unit(35, "km")
  14440. },
  14441. ]
  14442. ))
  14443. characterMakers.push(() => makeCharacter(
  14444. { name: "Linda" },
  14445. {
  14446. front: {
  14447. height: math.unit(6, "feet"),
  14448. weight: math.unit(75, "kg"),
  14449. name: "Front",
  14450. image: {
  14451. source: "./media/characters/linda/front.svg",
  14452. extra: 930 / 874,
  14453. bottom: 0.004
  14454. }
  14455. },
  14456. },
  14457. [
  14458. {
  14459. name: "Normal",
  14460. height: math.unit(6, "feet"),
  14461. default: true
  14462. },
  14463. ]
  14464. ))
  14465. characterMakers.push(() => makeCharacter(
  14466. { name: "Caylex" },
  14467. {
  14468. front: {
  14469. height: math.unit(6 + 8 / 12, "feet"),
  14470. weight: math.unit(220, "lb"),
  14471. name: "Front",
  14472. image: {
  14473. source: "./media/characters/caylex/front.svg",
  14474. extra: 821 / 772,
  14475. bottom: 0.07
  14476. }
  14477. },
  14478. back: {
  14479. height: math.unit(6 + 8 / 12, "feet"),
  14480. weight: math.unit(220, "lb"),
  14481. name: "Back",
  14482. image: {
  14483. source: "./media/characters/caylex/back.svg",
  14484. extra: 821 / 772,
  14485. bottom: 0.022
  14486. }
  14487. },
  14488. hand: {
  14489. height: math.unit(1.25, "feet"),
  14490. name: "Hand",
  14491. image: {
  14492. source: "./media/characters/caylex/hand.svg"
  14493. }
  14494. },
  14495. foot: {
  14496. height: math.unit(1.6, "feet"),
  14497. name: "Foot",
  14498. image: {
  14499. source: "./media/characters/caylex/foot.svg"
  14500. }
  14501. },
  14502. armored: {
  14503. height: math.unit(6 + 8 / 12, "feet"),
  14504. weight: math.unit(250, "lb"),
  14505. name: "Armored",
  14506. image: {
  14507. source: "./media/characters/caylex/armored.svg",
  14508. extra: 1420 / 1310,
  14509. bottom: 0.045
  14510. }
  14511. },
  14512. },
  14513. [
  14514. {
  14515. name: "Normal",
  14516. height: math.unit(6 + 8 / 12, "feet"),
  14517. default: true
  14518. },
  14519. {
  14520. name: "Normal+",
  14521. height: math.unit(12, "feet")
  14522. },
  14523. ]
  14524. ))
  14525. characterMakers.push(() => makeCharacter(
  14526. { name: "Alana" },
  14527. {
  14528. front: {
  14529. height: math.unit(7 + 6 / 12, "feet"),
  14530. weight: math.unit(288, "lb"),
  14531. name: "Front",
  14532. image: {
  14533. source: "./media/characters/alana/front.svg",
  14534. extra: 679 / 653,
  14535. bottom: 22.5 / 701
  14536. }
  14537. },
  14538. },
  14539. [
  14540. {
  14541. name: "Normal",
  14542. height: math.unit(7 + 6 / 12, "feet")
  14543. },
  14544. {
  14545. name: "Large",
  14546. height: math.unit(50, "feet")
  14547. },
  14548. {
  14549. name: "Macro",
  14550. height: math.unit(100, "feet"),
  14551. default: true
  14552. },
  14553. {
  14554. name: "Macro+",
  14555. height: math.unit(200, "feet")
  14556. },
  14557. ]
  14558. ))
  14559. characterMakers.push(() => makeCharacter(
  14560. { name: "Hasani" },
  14561. {
  14562. front: {
  14563. height: math.unit(6 + 1 / 12, "feet"),
  14564. weight: math.unit(210, "lb"),
  14565. name: "Front",
  14566. image: {
  14567. source: "./media/characters/hasani/front.svg",
  14568. extra: 244 / 232,
  14569. bottom: 0.01
  14570. }
  14571. },
  14572. back: {
  14573. height: math.unit(6 + 1 / 12, "feet"),
  14574. weight: math.unit(210, "lb"),
  14575. name: "Back",
  14576. image: {
  14577. source: "./media/characters/hasani/back.svg",
  14578. extra: 244 / 232,
  14579. bottom: 0.01
  14580. }
  14581. },
  14582. },
  14583. [
  14584. {
  14585. name: "Normal",
  14586. height: math.unit(6 + 1 / 12, "feet")
  14587. },
  14588. {
  14589. name: "Macro",
  14590. height: math.unit(175, "feet"),
  14591. default: true
  14592. },
  14593. ]
  14594. ))
  14595. characterMakers.push(() => makeCharacter(
  14596. { name: "Nita" },
  14597. {
  14598. front: {
  14599. height: math.unit(1.82, "meters"),
  14600. weight: math.unit(140, "lb"),
  14601. name: "Front",
  14602. image: {
  14603. source: "./media/characters/nita/front.svg",
  14604. extra: 2473 / 2363,
  14605. bottom: 0.01
  14606. }
  14607. },
  14608. },
  14609. [
  14610. {
  14611. name: "Normal",
  14612. height: math.unit(1.82, "m")
  14613. },
  14614. {
  14615. name: "Macro",
  14616. height: math.unit(300, "m")
  14617. },
  14618. {
  14619. name: "Mistake Canon",
  14620. height: math.unit(0.5, "miles"),
  14621. default: true
  14622. },
  14623. {
  14624. name: "Big Mistake",
  14625. height: math.unit(13, "miles")
  14626. },
  14627. {
  14628. name: "Playing God",
  14629. height: math.unit(2450, "miles")
  14630. },
  14631. ]
  14632. ))
  14633. characterMakers.push(() => makeCharacter(
  14634. { name: "Shiriko" },
  14635. {
  14636. front: {
  14637. height: math.unit(4, "feet"),
  14638. weight: math.unit(120, "lb"),
  14639. name: "Front",
  14640. image: {
  14641. source: "./media/characters/shiriko/front.svg",
  14642. extra: 195 / 188
  14643. }
  14644. },
  14645. },
  14646. [
  14647. {
  14648. name: "Normal",
  14649. height: math.unit(4, "feet"),
  14650. default: true
  14651. },
  14652. ]
  14653. ))
  14654. characterMakers.push(() => makeCharacter(
  14655. { name: "Deja" },
  14656. {
  14657. front: {
  14658. height: math.unit(6, "feet"),
  14659. name: "front",
  14660. image: {
  14661. source: "./media/characters/deja/front.svg",
  14662. extra: 926 / 840,
  14663. bottom: 0.07
  14664. }
  14665. },
  14666. },
  14667. [
  14668. {
  14669. name: "Planck Length",
  14670. height: math.unit(1.6e-35, "meters")
  14671. },
  14672. {
  14673. name: "Normal",
  14674. height: math.unit(30.48, "meters"),
  14675. default: true
  14676. },
  14677. {
  14678. name: "Universal",
  14679. height: math.unit(8.8e26, "meters")
  14680. },
  14681. ]
  14682. ))
  14683. characterMakers.push(() => makeCharacter(
  14684. { name: "Anima" },
  14685. {
  14686. side: {
  14687. height: math.unit(8, "feet"),
  14688. weight: math.unit(6300, "lb"),
  14689. name: "Side",
  14690. image: {
  14691. source: "./media/characters/anima/side.svg",
  14692. bottom: 0.035
  14693. }
  14694. },
  14695. },
  14696. [
  14697. {
  14698. name: "Normal",
  14699. height: math.unit(8, "feet"),
  14700. default: true
  14701. },
  14702. ]
  14703. ))
  14704. characterMakers.push(() => makeCharacter(
  14705. { name: "Bianca" },
  14706. {
  14707. front: {
  14708. height: math.unit(8, "feet"),
  14709. weight: math.unit(350, "lb"),
  14710. name: "Front",
  14711. image: {
  14712. source: "./media/characters/bianca/front.svg",
  14713. extra: 234 / 225,
  14714. bottom: 0.03
  14715. }
  14716. },
  14717. },
  14718. [
  14719. {
  14720. name: "Normal",
  14721. height: math.unit(8, "feet"),
  14722. default: true
  14723. },
  14724. ]
  14725. ))
  14726. characterMakers.push(() => makeCharacter(
  14727. { name: "Adinia" },
  14728. {
  14729. front: {
  14730. height: math.unit(6, "feet"),
  14731. weight: math.unit(150, "lb"),
  14732. name: "Front",
  14733. image: {
  14734. source: "./media/characters/adinia/front.svg",
  14735. extra: 1845 / 1672,
  14736. bottom: 0.02
  14737. }
  14738. },
  14739. back: {
  14740. height: math.unit(6, "feet"),
  14741. weight: math.unit(150, "lb"),
  14742. name: "Back",
  14743. image: {
  14744. source: "./media/characters/adinia/back.svg",
  14745. extra: 1845 / 1672,
  14746. bottom: 0.002
  14747. }
  14748. },
  14749. },
  14750. [
  14751. {
  14752. name: "Normal",
  14753. height: math.unit(11 + 5 / 12, "feet"),
  14754. default: true
  14755. },
  14756. ]
  14757. ))
  14758. characterMakers.push(() => makeCharacter(
  14759. { name: "Lykasa" },
  14760. {
  14761. front: {
  14762. height: math.unit(3, "meters"),
  14763. weight: math.unit(200, "kg"),
  14764. name: "Front",
  14765. image: {
  14766. source: "./media/characters/lykasa/front.svg",
  14767. extra: 1076 / 976,
  14768. bottom: 0.06
  14769. }
  14770. },
  14771. },
  14772. [
  14773. {
  14774. name: "Normal",
  14775. height: math.unit(3, "meters")
  14776. },
  14777. {
  14778. name: "Kaiku",
  14779. height: math.unit(120, "meters"),
  14780. default: true
  14781. },
  14782. {
  14783. name: "Mega Kaiju",
  14784. height: math.unit(240, "km")
  14785. },
  14786. {
  14787. name: "Giga Kaiju",
  14788. height: math.unit(400, "megameters")
  14789. },
  14790. {
  14791. name: "Tera Kaiju",
  14792. height: math.unit(800, "gigameters")
  14793. },
  14794. {
  14795. name: "Kaiju Dragon Goddess",
  14796. height: math.unit(26, "zettaparsecs")
  14797. },
  14798. ]
  14799. ))
  14800. characterMakers.push(() => makeCharacter(
  14801. { name: "Malfaren" },
  14802. {
  14803. side: {
  14804. height: math.unit(283 / 124 * 6, "feet"),
  14805. weight: math.unit(35000, "lb"),
  14806. name: "Side",
  14807. image: {
  14808. source: "./media/characters/malfaren/side.svg",
  14809. extra: 2500 / 1010,
  14810. bottom: 0.01
  14811. }
  14812. },
  14813. front: {
  14814. height: math.unit(22.36, "feet"),
  14815. weight: math.unit(35000, "lb"),
  14816. name: "Front",
  14817. image: {
  14818. source: "./media/characters/malfaren/front.svg",
  14819. extra: 1631 / 1476,
  14820. bottom: 0.01
  14821. }
  14822. },
  14823. maw: {
  14824. height: math.unit(6.9, "feet"),
  14825. name: "Maw",
  14826. image: {
  14827. source: "./media/characters/malfaren/maw.svg"
  14828. }
  14829. },
  14830. },
  14831. [
  14832. {
  14833. name: "Big",
  14834. height: math.unit(283 / 162 * 6, "feet"),
  14835. },
  14836. {
  14837. name: "Bigger",
  14838. height: math.unit(283 / 124 * 6, "feet")
  14839. },
  14840. {
  14841. name: "Massive",
  14842. height: math.unit(283 / 92 * 6, "feet"),
  14843. default: true
  14844. },
  14845. {
  14846. name: "👀💦",
  14847. height: math.unit(283 / 73 * 6, "feet"),
  14848. },
  14849. ]
  14850. ))
  14851. characterMakers.push(() => makeCharacter(
  14852. { name: "Kernel" },
  14853. {
  14854. front: {
  14855. height: math.unit(1.7, "m"),
  14856. weight: math.unit(70, "kg"),
  14857. name: "Front",
  14858. image: {
  14859. source: "./media/characters/kernel/front.svg",
  14860. extra: 222 / 210,
  14861. bottom: 0.007
  14862. }
  14863. },
  14864. },
  14865. [
  14866. {
  14867. name: "Nano",
  14868. height: math.unit(17, "micrometers")
  14869. },
  14870. {
  14871. name: "Micro",
  14872. height: math.unit(1.7, "mm")
  14873. },
  14874. {
  14875. name: "Small",
  14876. height: math.unit(1.7, "cm")
  14877. },
  14878. {
  14879. name: "Normal",
  14880. height: math.unit(1.7, "m"),
  14881. default: true
  14882. },
  14883. ]
  14884. ))
  14885. characterMakers.push(() => makeCharacter(
  14886. { name: "Jayne Folest" },
  14887. {
  14888. front: {
  14889. height: math.unit(1.75, "meters"),
  14890. weight: math.unit(65, "kg"),
  14891. name: "Front",
  14892. image: {
  14893. source: "./media/characters/jayne-folest/front.svg",
  14894. extra: 2115 / 2007,
  14895. bottom: 0.02
  14896. }
  14897. },
  14898. back: {
  14899. height: math.unit(1.75, "meters"),
  14900. weight: math.unit(65, "kg"),
  14901. name: "Back",
  14902. image: {
  14903. source: "./media/characters/jayne-folest/back.svg",
  14904. extra: 2115 / 2007,
  14905. bottom: 0.005
  14906. }
  14907. },
  14908. frontClothed: {
  14909. height: math.unit(1.75, "meters"),
  14910. weight: math.unit(65, "kg"),
  14911. name: "Front (Clothed)",
  14912. image: {
  14913. source: "./media/characters/jayne-folest/front-clothed.svg",
  14914. extra: 2115 / 2007,
  14915. bottom: 0.035
  14916. }
  14917. },
  14918. hand: {
  14919. height: math.unit(1 / 1.260, "feet"),
  14920. name: "Hand",
  14921. image: {
  14922. source: "./media/characters/jayne-folest/hand.svg"
  14923. }
  14924. },
  14925. foot: {
  14926. height: math.unit(1 / 0.918, "feet"),
  14927. name: "Foot",
  14928. image: {
  14929. source: "./media/characters/jayne-folest/foot.svg"
  14930. }
  14931. },
  14932. },
  14933. [
  14934. {
  14935. name: "Micro",
  14936. height: math.unit(4, "cm")
  14937. },
  14938. {
  14939. name: "Normal",
  14940. height: math.unit(1.75, "meters")
  14941. },
  14942. {
  14943. name: "Macro",
  14944. height: math.unit(47.5, "meters"),
  14945. default: true
  14946. },
  14947. ]
  14948. ))
  14949. characterMakers.push(() => makeCharacter(
  14950. { name: "Algier" },
  14951. {
  14952. front: {
  14953. height: math.unit(180, "cm"),
  14954. weight: math.unit(70, "kg"),
  14955. name: "Front",
  14956. image: {
  14957. source: "./media/characters/algier/front.svg",
  14958. extra: 596 / 572,
  14959. bottom: 0.04
  14960. }
  14961. },
  14962. back: {
  14963. height: math.unit(180, "cm"),
  14964. weight: math.unit(70, "kg"),
  14965. name: "Back",
  14966. image: {
  14967. source: "./media/characters/algier/back.svg",
  14968. extra: 596 / 572,
  14969. bottom: 0.025
  14970. }
  14971. },
  14972. frontdressed: {
  14973. height: math.unit(180, "cm"),
  14974. weight: math.unit(150, "kg"),
  14975. name: "Front-dressed",
  14976. image: {
  14977. source: "./media/characters/algier/front-dressed.svg",
  14978. extra: 596 / 572,
  14979. bottom: 0.038
  14980. }
  14981. },
  14982. },
  14983. [
  14984. {
  14985. name: "Micro",
  14986. height: math.unit(5, "cm")
  14987. },
  14988. {
  14989. name: "Normal",
  14990. height: math.unit(180, "cm"),
  14991. default: true
  14992. },
  14993. {
  14994. name: "Macro",
  14995. height: math.unit(64, "m")
  14996. },
  14997. ]
  14998. ))
  14999. characterMakers.push(() => makeCharacter(
  15000. { name: "Pretzel" },
  15001. {
  15002. upright: {
  15003. height: math.unit(7, "feet"),
  15004. weight: math.unit(300, "lb"),
  15005. name: "Upright",
  15006. image: {
  15007. source: "./media/characters/pretzel/upright.svg",
  15008. extra: 534 / 522,
  15009. bottom: 0.065
  15010. }
  15011. },
  15012. sprawling: {
  15013. height: math.unit(3.75, "feet"),
  15014. weight: math.unit(300, "lb"),
  15015. name: "Sprawling",
  15016. image: {
  15017. source: "./media/characters/pretzel/sprawling.svg",
  15018. extra: 314 / 281,
  15019. bottom: 0.1
  15020. }
  15021. },
  15022. tongue: {
  15023. height: math.unit(2, "feet"),
  15024. name: "Tongue",
  15025. image: {
  15026. source: "./media/characters/pretzel/tongue.svg"
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Normal",
  15033. height: math.unit(7, "feet"),
  15034. default: true
  15035. },
  15036. {
  15037. name: "Oversized",
  15038. height: math.unit(15, "feet")
  15039. },
  15040. {
  15041. name: "Huge",
  15042. height: math.unit(30, "feet")
  15043. },
  15044. {
  15045. name: "Macro",
  15046. height: math.unit(250, "feet")
  15047. },
  15048. ]
  15049. ))
  15050. characterMakers.push(() => makeCharacter(
  15051. { name: "Roxi" },
  15052. {
  15053. sideFront: {
  15054. height: math.unit(5 + 2 / 12, "feet"),
  15055. weight: math.unit(120, "lb"),
  15056. name: "Front Side",
  15057. image: {
  15058. source: "./media/characters/roxi/side-front.svg",
  15059. extra: 2924 / 2717,
  15060. bottom: 0.08
  15061. }
  15062. },
  15063. sideBack: {
  15064. height: math.unit(5 + 2 / 12, "feet"),
  15065. weight: math.unit(120, "lb"),
  15066. name: "Back Side",
  15067. image: {
  15068. source: "./media/characters/roxi/side-back.svg",
  15069. extra: 2904 / 2693,
  15070. bottom: 0.06
  15071. }
  15072. },
  15073. front: {
  15074. height: math.unit(5 + 2 / 12, "feet"),
  15075. weight: math.unit(120, "lb"),
  15076. name: "Front",
  15077. image: {
  15078. source: "./media/characters/roxi/front.svg",
  15079. extra: 2028 / 1907,
  15080. bottom: 0.01
  15081. }
  15082. },
  15083. frontAlt: {
  15084. height: math.unit(5 + 2 / 12, "feet"),
  15085. weight: math.unit(120, "lb"),
  15086. name: "Front (Alt)",
  15087. image: {
  15088. source: "./media/characters/roxi/front-alt.svg",
  15089. extra: 1828 / 1798,
  15090. bottom: 0.01
  15091. }
  15092. },
  15093. sitting: {
  15094. height: math.unit(2.8, "feet"),
  15095. weight: math.unit(120, "lb"),
  15096. name: "Sitting",
  15097. image: {
  15098. source: "./media/characters/roxi/sitting.svg",
  15099. extra: 2660 / 2462,
  15100. bottom: 0.1
  15101. }
  15102. },
  15103. },
  15104. [
  15105. {
  15106. name: "Normal",
  15107. height: math.unit(5 + 2 / 12, "feet"),
  15108. default: true
  15109. },
  15110. ]
  15111. ))
  15112. characterMakers.push(() => makeCharacter(
  15113. { name: "Shadow" },
  15114. {
  15115. side: {
  15116. height: math.unit(55, "feet"),
  15117. weight: math.unit(153, "tons"),
  15118. name: "Side",
  15119. image: {
  15120. source: "./media/characters/shadow/side.svg",
  15121. extra: 701 / 628,
  15122. bottom: 0.02
  15123. }
  15124. },
  15125. flying: {
  15126. height: math.unit(145, "feet"),
  15127. weight: math.unit(153, "tons"),
  15128. name: "Flying",
  15129. image: {
  15130. source: "./media/characters/shadow/flying.svg"
  15131. }
  15132. },
  15133. },
  15134. [
  15135. {
  15136. name: "Normal",
  15137. height: math.unit(55, "feet"),
  15138. default: true
  15139. },
  15140. ]
  15141. ))
  15142. characterMakers.push(() => makeCharacter(
  15143. { name: "Marcie" },
  15144. {
  15145. front: {
  15146. height: math.unit(6, "feet"),
  15147. weight: math.unit(200, "lb"),
  15148. name: "Front",
  15149. image: {
  15150. source: "./media/characters/marcie/front.svg",
  15151. extra: 960 / 876,
  15152. bottom: 58 / 1017.87
  15153. }
  15154. },
  15155. },
  15156. [
  15157. {
  15158. name: "Macro",
  15159. height: math.unit(1, "mile"),
  15160. default: true
  15161. },
  15162. ]
  15163. ))
  15164. characterMakers.push(() => makeCharacter(
  15165. { name: "Kachina" },
  15166. {
  15167. front: {
  15168. height: math.unit(7, "feet"),
  15169. weight: math.unit(200, "lb"),
  15170. name: "Front",
  15171. image: {
  15172. source: "./media/characters/kachina/front.svg",
  15173. extra: 1290.68 / 1119,
  15174. bottom: 36.5 / 1327.18
  15175. }
  15176. },
  15177. },
  15178. [
  15179. {
  15180. name: "Normal",
  15181. height: math.unit(7, "feet"),
  15182. default: true
  15183. },
  15184. ]
  15185. ))
  15186. characterMakers.push(() => makeCharacter(
  15187. { name: "Kash" },
  15188. {
  15189. looking: {
  15190. height: math.unit(2, "meters"),
  15191. weight: math.unit(300, "kg"),
  15192. name: "Looking",
  15193. image: {
  15194. source: "./media/characters/kash/looking.svg",
  15195. extra: 474 / 344,
  15196. bottom: 0.03
  15197. }
  15198. },
  15199. side: {
  15200. height: math.unit(2, "meters"),
  15201. weight: math.unit(300, "kg"),
  15202. name: "Side",
  15203. image: {
  15204. source: "./media/characters/kash/side.svg",
  15205. extra: 302 / 251,
  15206. bottom: 0.03
  15207. }
  15208. },
  15209. front: {
  15210. height: math.unit(2, "meters"),
  15211. weight: math.unit(300, "kg"),
  15212. name: "Front",
  15213. image: {
  15214. source: "./media/characters/kash/front.svg",
  15215. extra: 495 / 360,
  15216. bottom: 0.015
  15217. }
  15218. },
  15219. },
  15220. [
  15221. {
  15222. name: "Normal",
  15223. height: math.unit(2, "meters"),
  15224. default: true
  15225. },
  15226. {
  15227. name: "Big",
  15228. height: math.unit(3, "meters")
  15229. },
  15230. {
  15231. name: "Large",
  15232. height: math.unit(5, "meters")
  15233. },
  15234. ]
  15235. ))
  15236. characterMakers.push(() => makeCharacter(
  15237. { name: "Lalim" },
  15238. {
  15239. feeding: {
  15240. height: math.unit(6.7, "feet"),
  15241. weight: math.unit(350, "lb"),
  15242. name: "Feeding",
  15243. image: {
  15244. source: "./media/characters/lalim/feeding.svg",
  15245. }
  15246. },
  15247. },
  15248. [
  15249. {
  15250. name: "Normal",
  15251. height: math.unit(6.7, "feet"),
  15252. default: true
  15253. },
  15254. ]
  15255. ))
  15256. characterMakers.push(() => makeCharacter(
  15257. { name: "De'Vout" },
  15258. {
  15259. front: {
  15260. height: math.unit(9.5, "feet"),
  15261. weight: math.unit(600, "lb"),
  15262. name: "Front",
  15263. image: {
  15264. source: "./media/characters/de'vout/front.svg",
  15265. extra: 1443 / 1328,
  15266. bottom: 0.025
  15267. }
  15268. },
  15269. back: {
  15270. height: math.unit(9.5, "feet"),
  15271. weight: math.unit(600, "lb"),
  15272. name: "Back",
  15273. image: {
  15274. source: "./media/characters/de'vout/back.svg",
  15275. extra: 1443 / 1328
  15276. }
  15277. },
  15278. frontDressed: {
  15279. height: math.unit(9.5, "feet"),
  15280. weight: math.unit(600, "lb"),
  15281. name: "Front (Dressed",
  15282. image: {
  15283. source: "./media/characters/de'vout/front-dressed.svg",
  15284. extra: 1443 / 1328,
  15285. bottom: 0.025
  15286. }
  15287. },
  15288. backDressed: {
  15289. height: math.unit(9.5, "feet"),
  15290. weight: math.unit(600, "lb"),
  15291. name: "Back (Dressed",
  15292. image: {
  15293. source: "./media/characters/de'vout/back-dressed.svg",
  15294. extra: 1443 / 1328
  15295. }
  15296. },
  15297. },
  15298. [
  15299. {
  15300. name: "Normal",
  15301. height: math.unit(9.5, "feet"),
  15302. default: true
  15303. },
  15304. ]
  15305. ))
  15306. characterMakers.push(() => makeCharacter(
  15307. { name: "Talana" },
  15308. {
  15309. front: {
  15310. height: math.unit(8, "feet"),
  15311. weight: math.unit(225, "lb"),
  15312. name: "Front",
  15313. image: {
  15314. source: "./media/characters/talana/front.svg",
  15315. extra: 1410 / 1300,
  15316. bottom: 0.015
  15317. }
  15318. },
  15319. frontDressed: {
  15320. height: math.unit(8, "feet"),
  15321. weight: math.unit(225, "lb"),
  15322. name: "Front (Dressed",
  15323. image: {
  15324. source: "./media/characters/talana/front-dressed.svg",
  15325. extra: 1410 / 1300,
  15326. bottom: 0.015
  15327. }
  15328. },
  15329. },
  15330. [
  15331. {
  15332. name: "Normal",
  15333. height: math.unit(8, "feet"),
  15334. default: true
  15335. },
  15336. ]
  15337. ))
  15338. characterMakers.push(() => makeCharacter(
  15339. { name: "Xeauvok" },
  15340. {
  15341. side: {
  15342. height: math.unit(7.2, "feet"),
  15343. weight: math.unit(150, "lb"),
  15344. name: "Side",
  15345. image: {
  15346. source: "./media/characters/xeauvok/side.svg",
  15347. extra: 1975 / 1523,
  15348. bottom: 0.07
  15349. }
  15350. },
  15351. },
  15352. [
  15353. {
  15354. name: "Normal",
  15355. height: math.unit(7.2, "feet"),
  15356. default: true
  15357. },
  15358. ]
  15359. ))
  15360. characterMakers.push(() => makeCharacter(
  15361. { name: "Zara" },
  15362. {
  15363. side: {
  15364. height: math.unit(10, "feet"),
  15365. weight: math.unit(900, "kg"),
  15366. name: "Side",
  15367. image: {
  15368. source: "./media/characters/zara/side.svg",
  15369. extra: 504 / 498
  15370. }
  15371. },
  15372. },
  15373. [
  15374. {
  15375. name: "Normal",
  15376. height: math.unit(10, "feet"),
  15377. default: true
  15378. },
  15379. ]
  15380. ))
  15381. characterMakers.push(() => makeCharacter(
  15382. { name: "Richard (Dragon)" },
  15383. {
  15384. side: {
  15385. height: math.unit(6, "feet"),
  15386. weight: math.unit(150, "lb"),
  15387. name: "Side",
  15388. image: {
  15389. source: "./media/characters/richard-dragon/side.svg",
  15390. extra: 845 / 340,
  15391. bottom: 0.017
  15392. }
  15393. },
  15394. maw: {
  15395. height: math.unit(2.97, "feet"),
  15396. name: "Maw",
  15397. image: {
  15398. source: "./media/characters/richard-dragon/maw.svg"
  15399. }
  15400. },
  15401. },
  15402. [
  15403. ]
  15404. ))
  15405. characterMakers.push(() => makeCharacter(
  15406. { name: "Richard (Smeargle)" },
  15407. {
  15408. front: {
  15409. height: math.unit(4, "feet"),
  15410. weight: math.unit(100, "lb"),
  15411. name: "Front",
  15412. image: {
  15413. source: "./media/characters/richard-smeargle/front.svg",
  15414. extra: 2952 / 2820,
  15415. bottom: 0.028
  15416. }
  15417. },
  15418. },
  15419. [
  15420. {
  15421. name: "Normal",
  15422. height: math.unit(4, "feet"),
  15423. default: true
  15424. },
  15425. {
  15426. name: "Dynamax",
  15427. height: math.unit(20, "meters")
  15428. },
  15429. ]
  15430. ))
  15431. characterMakers.push(() => makeCharacter(
  15432. { name: "Klay" },
  15433. {
  15434. front: {
  15435. height: math.unit(6, "feet"),
  15436. weight: math.unit(110, "lb"),
  15437. name: "Front",
  15438. image: {
  15439. source: "./media/characters/klay/front.svg",
  15440. extra: 962 / 883,
  15441. bottom: 0.04
  15442. }
  15443. },
  15444. back: {
  15445. height: math.unit(6, "feet"),
  15446. weight: math.unit(110, "lb"),
  15447. name: "Back",
  15448. image: {
  15449. source: "./media/characters/klay/back.svg",
  15450. extra: 962 / 883
  15451. }
  15452. },
  15453. beans: {
  15454. height: math.unit(1.15, "feet"),
  15455. name: "Beans",
  15456. image: {
  15457. source: "./media/characters/klay/beans.svg"
  15458. }
  15459. },
  15460. },
  15461. [
  15462. {
  15463. name: "Micro",
  15464. height: math.unit(6, "inches")
  15465. },
  15466. {
  15467. name: "Mini",
  15468. height: math.unit(3, "feet")
  15469. },
  15470. {
  15471. name: "Normal",
  15472. height: math.unit(6, "feet"),
  15473. default: true
  15474. },
  15475. {
  15476. name: "Big",
  15477. height: math.unit(25, "feet")
  15478. },
  15479. {
  15480. name: "Macro",
  15481. height: math.unit(100, "feet")
  15482. },
  15483. {
  15484. name: "Megamacro",
  15485. height: math.unit(400, "feet")
  15486. },
  15487. ]
  15488. ))
  15489. characterMakers.push(() => makeCharacter(
  15490. { name: "Marcus" },
  15491. {
  15492. front: {
  15493. height: math.unit(6, "feet"),
  15494. weight: math.unit(160, "lb"),
  15495. name: "Front",
  15496. image: {
  15497. source: "./media/characters/marcus/front.svg",
  15498. extra: 734 / 676,
  15499. bottom: 0.03
  15500. }
  15501. },
  15502. },
  15503. [
  15504. {
  15505. name: "Little",
  15506. height: math.unit(6, "feet")
  15507. },
  15508. {
  15509. name: "Normal",
  15510. height: math.unit(110, "feet"),
  15511. default: true
  15512. },
  15513. {
  15514. name: "Macro",
  15515. height: math.unit(250, "feet")
  15516. },
  15517. {
  15518. name: "Megamacro",
  15519. height: math.unit(1000, "feet")
  15520. },
  15521. ]
  15522. ))
  15523. characterMakers.push(() => makeCharacter(
  15524. { name: "Claude DelRoute" },
  15525. {
  15526. front: {
  15527. height: math.unit(7, "feet"),
  15528. weight: math.unit(275, "lb"),
  15529. name: "Front",
  15530. image: {
  15531. source: "./media/characters/claude-delroute/front.svg",
  15532. extra: 230 / 214,
  15533. bottom: 0.007
  15534. }
  15535. },
  15536. side: {
  15537. height: math.unit(7, "feet"),
  15538. weight: math.unit(275, "lb"),
  15539. name: "Side",
  15540. image: {
  15541. source: "./media/characters/claude-delroute/side.svg",
  15542. extra: 222 / 214,
  15543. bottom: 0.01
  15544. }
  15545. },
  15546. back: {
  15547. height: math.unit(7, "feet"),
  15548. weight: math.unit(275, "lb"),
  15549. name: "Back",
  15550. image: {
  15551. source: "./media/characters/claude-delroute/back.svg",
  15552. extra: 230 / 214,
  15553. bottom: 0.015
  15554. }
  15555. },
  15556. maw: {
  15557. height: math.unit(0.6407, "meters"),
  15558. name: "Maw",
  15559. image: {
  15560. source: "./media/characters/claude-delroute/maw.svg"
  15561. }
  15562. },
  15563. },
  15564. [
  15565. {
  15566. name: "Normal",
  15567. height: math.unit(7, "feet"),
  15568. default: true
  15569. },
  15570. {
  15571. name: "Lorge",
  15572. height: math.unit(20, "feet")
  15573. },
  15574. ]
  15575. ))
  15576. characterMakers.push(() => makeCharacter(
  15577. { name: "Dragonien" },
  15578. {
  15579. front: {
  15580. height: math.unit(8 + 4 / 12, "feet"),
  15581. weight: math.unit(600, "lb"),
  15582. name: "Front",
  15583. image: {
  15584. source: "./media/characters/dragonien/front.svg",
  15585. extra: 100 / 94,
  15586. bottom: 3.3 / 103.3445
  15587. }
  15588. },
  15589. back: {
  15590. height: math.unit(8 + 4 / 12, "feet"),
  15591. weight: math.unit(600, "lb"),
  15592. name: "Back",
  15593. image: {
  15594. source: "./media/characters/dragonien/back.svg",
  15595. extra: 776 / 746,
  15596. bottom: 6.4 / 782.0616
  15597. }
  15598. },
  15599. foot: {
  15600. height: math.unit(1.54, "feet"),
  15601. name: "Foot",
  15602. image: {
  15603. source: "./media/characters/dragonien/foot.svg",
  15604. }
  15605. },
  15606. },
  15607. [
  15608. {
  15609. name: "Normal",
  15610. height: math.unit(8 + 4 / 12, "feet"),
  15611. default: true
  15612. },
  15613. {
  15614. name: "Macro",
  15615. height: math.unit(200, "feet")
  15616. },
  15617. {
  15618. name: "Megamacro",
  15619. height: math.unit(1, "mile")
  15620. },
  15621. {
  15622. name: "Gigamacro",
  15623. height: math.unit(1000, "miles")
  15624. },
  15625. ]
  15626. ))
  15627. characterMakers.push(() => makeCharacter(
  15628. { name: "Desta" },
  15629. {
  15630. front: {
  15631. height: math.unit(5 + 2 / 12, "feet"),
  15632. weight: math.unit(110, "lb"),
  15633. name: "Front",
  15634. image: {
  15635. source: "./media/characters/desta/front.svg",
  15636. extra: 1482 / 1417
  15637. }
  15638. },
  15639. side: {
  15640. height: math.unit(5 + 2 / 12, "feet"),
  15641. weight: math.unit(110, "lb"),
  15642. name: "Side",
  15643. image: {
  15644. source: "./media/characters/desta/side.svg",
  15645. extra: 2579 / 2491,
  15646. bottom: 0.053
  15647. }
  15648. },
  15649. },
  15650. [
  15651. {
  15652. name: "Micro",
  15653. height: math.unit(6, "inches")
  15654. },
  15655. {
  15656. name: "Normal",
  15657. height: math.unit(5 + 2 / 12, "feet"),
  15658. default: true
  15659. },
  15660. {
  15661. name: "Macro",
  15662. height: math.unit(62, "feet")
  15663. },
  15664. {
  15665. name: "Megamacro",
  15666. height: math.unit(1800, "feet")
  15667. },
  15668. ]
  15669. ))
  15670. characterMakers.push(() => makeCharacter(
  15671. { name: "Storm Alystar" },
  15672. {
  15673. front: {
  15674. height: math.unit(10, "feet"),
  15675. weight: math.unit(700, "lb"),
  15676. name: "Front",
  15677. image: {
  15678. source: "./media/characters/storm-alystar/front.svg",
  15679. extra: 2112 / 1898,
  15680. bottom: 0.034
  15681. }
  15682. },
  15683. },
  15684. [
  15685. {
  15686. name: "Micro",
  15687. height: math.unit(3.5, "inches")
  15688. },
  15689. {
  15690. name: "Normal",
  15691. height: math.unit(10, "feet"),
  15692. default: true
  15693. },
  15694. {
  15695. name: "Macro",
  15696. height: math.unit(400, "feet")
  15697. },
  15698. {
  15699. name: "Deific",
  15700. height: math.unit(60, "miles")
  15701. },
  15702. ]
  15703. ))
  15704. characterMakers.push(() => makeCharacter(
  15705. { name: "Ilia" },
  15706. {
  15707. front: {
  15708. height: math.unit(2.35, "meters"),
  15709. weight: math.unit(119, "kg"),
  15710. name: "Front",
  15711. image: {
  15712. source: "./media/characters/ilia/front.svg",
  15713. extra: 1285 / 1255,
  15714. bottom: 0.06
  15715. }
  15716. },
  15717. },
  15718. [
  15719. {
  15720. name: "Normal",
  15721. height: math.unit(2.35, "meters")
  15722. },
  15723. {
  15724. name: "Macro",
  15725. height: math.unit(140, "meters"),
  15726. default: true
  15727. },
  15728. {
  15729. name: "Megamacro",
  15730. height: math.unit(100, "miles")
  15731. },
  15732. ]
  15733. ))
  15734. characterMakers.push(() => makeCharacter(
  15735. { name: "KingDead" },
  15736. {
  15737. front: {
  15738. height: math.unit(6 + 5 / 12, "feet"),
  15739. weight: math.unit(190, "lb"),
  15740. name: "Front",
  15741. image: {
  15742. source: "./media/characters/kingdead/front.svg",
  15743. extra: 1228 / 1177
  15744. }
  15745. },
  15746. },
  15747. [
  15748. {
  15749. name: "Micro",
  15750. height: math.unit(7, "inches")
  15751. },
  15752. {
  15753. name: "Normal",
  15754. height: math.unit(6 + 5 / 12, "feet")
  15755. },
  15756. {
  15757. name: "Macro",
  15758. height: math.unit(150, "feet"),
  15759. default: true
  15760. },
  15761. {
  15762. name: "Megamacro",
  15763. height: math.unit(200, "miles")
  15764. },
  15765. ]
  15766. ))
  15767. characterMakers.push(() => makeCharacter(
  15768. { name: "Kyrehx" },
  15769. {
  15770. front: {
  15771. height: math.unit(8, "feet"),
  15772. weight: math.unit(600, "lb"),
  15773. name: "Front",
  15774. image: {
  15775. source: "./media/characters/kyrehx/front.svg",
  15776. extra: 1195 / 1095,
  15777. bottom: 0.034
  15778. }
  15779. },
  15780. },
  15781. [
  15782. {
  15783. name: "Micro",
  15784. height: math.unit(2, "inches")
  15785. },
  15786. {
  15787. name: "Normal",
  15788. height: math.unit(8, "feet"),
  15789. default: true
  15790. },
  15791. {
  15792. name: "Macro",
  15793. height: math.unit(255, "feet")
  15794. },
  15795. ]
  15796. ))
  15797. characterMakers.push(() => makeCharacter(
  15798. { name: "Xang" },
  15799. {
  15800. front: {
  15801. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15802. weight: math.unit(184, "lb"),
  15803. name: "Front",
  15804. image: {
  15805. source: "./media/characters/xang/front.svg",
  15806. extra: 845 / 755
  15807. }
  15808. },
  15809. },
  15810. [
  15811. {
  15812. name: "Normal",
  15813. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15814. default: true
  15815. },
  15816. {
  15817. name: "Macro",
  15818. height: math.unit(0.935 * 146, "feet")
  15819. },
  15820. {
  15821. name: "Megamacro",
  15822. height: math.unit(0.935 * 3, "miles")
  15823. },
  15824. ]
  15825. ))
  15826. characterMakers.push(() => makeCharacter(
  15827. { name: "Doc Weardno" },
  15828. {
  15829. frontDressed: {
  15830. height: math.unit(5 + 7 / 12, "feet"),
  15831. weight: math.unit(140, "lb"),
  15832. name: "Front (Dressed)",
  15833. image: {
  15834. source: "./media/characters/doc-weardno/front-dressed.svg",
  15835. extra: 263 / 234
  15836. }
  15837. },
  15838. backDressed: {
  15839. height: math.unit(5 + 7 / 12, "feet"),
  15840. weight: math.unit(140, "lb"),
  15841. name: "Back (Dressed)",
  15842. image: {
  15843. source: "./media/characters/doc-weardno/back-dressed.svg",
  15844. extra: 266 / 238
  15845. }
  15846. },
  15847. front: {
  15848. height: math.unit(5 + 7 / 12, "feet"),
  15849. weight: math.unit(140, "lb"),
  15850. name: "Front",
  15851. image: {
  15852. source: "./media/characters/doc-weardno/front.svg",
  15853. extra: 254 / 233
  15854. }
  15855. },
  15856. },
  15857. [
  15858. {
  15859. name: "Micro",
  15860. height: math.unit(3, "inches")
  15861. },
  15862. {
  15863. name: "Normal",
  15864. height: math.unit(5 + 7 / 12, "feet"),
  15865. default: true
  15866. },
  15867. {
  15868. name: "Macro",
  15869. height: math.unit(25, "feet")
  15870. },
  15871. {
  15872. name: "Megamacro",
  15873. height: math.unit(2, "miles")
  15874. },
  15875. ]
  15876. ))
  15877. characterMakers.push(() => makeCharacter(
  15878. { name: "Seth Whilst" },
  15879. {
  15880. front: {
  15881. height: math.unit(6 + 2 / 12, "feet"),
  15882. weight: math.unit(153, "lb"),
  15883. name: "Front",
  15884. image: {
  15885. source: "./media/characters/seth-whilst/front.svg",
  15886. bottom: 0.07
  15887. }
  15888. },
  15889. },
  15890. [
  15891. {
  15892. name: "Micro",
  15893. height: math.unit(5, "inches")
  15894. },
  15895. {
  15896. name: "Normal",
  15897. height: math.unit(6 + 2 / 12, "feet"),
  15898. default: true
  15899. },
  15900. ]
  15901. ))
  15902. characterMakers.push(() => makeCharacter(
  15903. { name: "Pocket Jabari" },
  15904. {
  15905. front: {
  15906. height: math.unit(3, "inches"),
  15907. weight: math.unit(8, "grams"),
  15908. name: "Front",
  15909. image: {
  15910. source: "./media/characters/pocket-jabari/front.svg",
  15911. extra: 1024 / 974,
  15912. bottom: 0.039
  15913. }
  15914. },
  15915. },
  15916. [
  15917. {
  15918. name: "Minimicro",
  15919. height: math.unit(8, "mm")
  15920. },
  15921. {
  15922. name: "Micro",
  15923. height: math.unit(3, "inches"),
  15924. default: true
  15925. },
  15926. {
  15927. name: "Normal",
  15928. height: math.unit(3, "feet")
  15929. },
  15930. ]
  15931. ))
  15932. characterMakers.push(() => makeCharacter(
  15933. { name: "Sapphy" },
  15934. {
  15935. front: {
  15936. height: math.unit(15, "feet"),
  15937. weight: math.unit(3280, "lb"),
  15938. name: "Front",
  15939. image: {
  15940. source: "./media/characters/sapphy/front.svg",
  15941. extra: 671 / 577,
  15942. bottom: 0.085
  15943. }
  15944. },
  15945. back: {
  15946. height: math.unit(15, "feet"),
  15947. weight: math.unit(3280, "lb"),
  15948. name: "Back",
  15949. image: {
  15950. source: "./media/characters/sapphy/back.svg",
  15951. extra: 631 / 607,
  15952. bottom: 0.045
  15953. }
  15954. },
  15955. },
  15956. [
  15957. {
  15958. name: "Normal",
  15959. height: math.unit(15, "feet")
  15960. },
  15961. {
  15962. name: "Casual Macro",
  15963. height: math.unit(120, "feet")
  15964. },
  15965. {
  15966. name: "Macro",
  15967. height: math.unit(2150, "feet"),
  15968. default: true
  15969. },
  15970. {
  15971. name: "Megamacro",
  15972. height: math.unit(8, "miles")
  15973. },
  15974. {
  15975. name: "Galaxy Mom",
  15976. height: math.unit(6, "megalightyears")
  15977. },
  15978. ]
  15979. ))
  15980. characterMakers.push(() => makeCharacter(
  15981. { name: "Kiro" },
  15982. {
  15983. front: {
  15984. height: math.unit(6, "feet"),
  15985. weight: math.unit(170, "lb"),
  15986. name: "Front",
  15987. image: {
  15988. source: "./media/characters/kiro/front.svg",
  15989. extra: 1064 / 1012,
  15990. bottom: 0.052
  15991. }
  15992. },
  15993. },
  15994. [
  15995. {
  15996. name: "Micro",
  15997. height: math.unit(6, "inches")
  15998. },
  15999. {
  16000. name: "Normal",
  16001. height: math.unit(6, "feet"),
  16002. default: true
  16003. },
  16004. {
  16005. name: "Macro",
  16006. height: math.unit(72, "feet")
  16007. },
  16008. ]
  16009. ))
  16010. characterMakers.push(() => makeCharacter(
  16011. { name: "Irishfox" },
  16012. {
  16013. front: {
  16014. height: math.unit(5 + 9 / 12, "feet"),
  16015. weight: math.unit(175, "lb"),
  16016. name: "Front",
  16017. image: {
  16018. source: "./media/characters/irishfox/front.svg",
  16019. extra: 1912 / 1680,
  16020. bottom: 0.02
  16021. }
  16022. },
  16023. },
  16024. [
  16025. {
  16026. name: "Nano",
  16027. height: math.unit(1, "mm")
  16028. },
  16029. {
  16030. name: "Micro",
  16031. height: math.unit(2, "inches")
  16032. },
  16033. {
  16034. name: "Normal",
  16035. height: math.unit(5 + 9 / 12, "feet"),
  16036. default: true
  16037. },
  16038. {
  16039. name: "Macro",
  16040. height: math.unit(45, "feet")
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Aronai Sieyes" },
  16046. {
  16047. front: {
  16048. height: math.unit(6 + 1 / 12, "feet"),
  16049. weight: math.unit(150, "lb"),
  16050. name: "Front",
  16051. image: {
  16052. source: "./media/characters/aronai-sieyes/front.svg",
  16053. extra: 1556 / 1480,
  16054. bottom: 0.015
  16055. }
  16056. },
  16057. side: {
  16058. height: math.unit(6 + 1 / 12, "feet"),
  16059. weight: math.unit(150, "lb"),
  16060. name: "Side",
  16061. image: {
  16062. source: "./media/characters/aronai-sieyes/side.svg",
  16063. extra: 1433 / 1390,
  16064. bottom: 0.0393
  16065. }
  16066. },
  16067. back: {
  16068. height: math.unit(6 + 1 / 12, "feet"),
  16069. weight: math.unit(150, "lb"),
  16070. name: "Back",
  16071. image: {
  16072. source: "./media/characters/aronai-sieyes/back.svg",
  16073. extra: 1544 / 1494,
  16074. bottom: 0.02
  16075. }
  16076. },
  16077. frontClothed: {
  16078. height: math.unit(6 + 1 / 12, "feet"),
  16079. weight: math.unit(150, "lb"),
  16080. name: "Front (Clothed)",
  16081. image: {
  16082. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16083. extra: 1582 / 1527
  16084. }
  16085. },
  16086. feral: {
  16087. height: math.unit(18, "feet"),
  16088. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16089. name: "Feral",
  16090. image: {
  16091. source: "./media/characters/aronai-sieyes/feral.svg",
  16092. extra: 1530 / 1240,
  16093. bottom: 0.035
  16094. }
  16095. },
  16096. },
  16097. [
  16098. {
  16099. name: "Micro",
  16100. height: math.unit(2, "inches")
  16101. },
  16102. {
  16103. name: "Normal",
  16104. height: math.unit(6 + 1 / 12, "feet"),
  16105. default: true
  16106. }
  16107. ]
  16108. ))
  16109. characterMakers.push(() => makeCharacter(
  16110. { name: "Xuna" },
  16111. {
  16112. front: {
  16113. height: math.unit(12, "feet"),
  16114. weight: math.unit(410, "kg"),
  16115. name: "Front",
  16116. image: {
  16117. source: "./media/characters/xuna/front.svg",
  16118. extra: 2184 / 1980
  16119. }
  16120. },
  16121. side: {
  16122. height: math.unit(12, "feet"),
  16123. weight: math.unit(410, "kg"),
  16124. name: "Side",
  16125. image: {
  16126. source: "./media/characters/xuna/side.svg",
  16127. extra: 2184 / 1980
  16128. }
  16129. },
  16130. back: {
  16131. height: math.unit(12, "feet"),
  16132. weight: math.unit(410, "kg"),
  16133. name: "Back",
  16134. image: {
  16135. source: "./media/characters/xuna/back.svg",
  16136. extra: 2184 / 1980
  16137. }
  16138. },
  16139. },
  16140. [
  16141. {
  16142. name: "Nano glow",
  16143. height: math.unit(10, "nm")
  16144. },
  16145. {
  16146. name: "Micro floof",
  16147. height: math.unit(0.3, "m")
  16148. },
  16149. {
  16150. name: "Huggable softy boi",
  16151. height: math.unit(3.6576, "m"),
  16152. default: true
  16153. },
  16154. {
  16155. name: "Admirable floof",
  16156. height: math.unit(80, "meters")
  16157. },
  16158. {
  16159. name: "Gentle macro",
  16160. height: math.unit(300, "meters")
  16161. },
  16162. {
  16163. name: "Very careful floof",
  16164. height: math.unit(3200, "meters")
  16165. },
  16166. {
  16167. name: "The mega floof",
  16168. height: math.unit(36000, "meters")
  16169. },
  16170. {
  16171. name: "Giga-fur-Wicker",
  16172. height: math.unit(4800000, "meters")
  16173. },
  16174. {
  16175. name: "Licky world",
  16176. height: math.unit(20000000, "meters")
  16177. },
  16178. {
  16179. name: "Floofy cyan sun",
  16180. height: math.unit(1500000000, "meters")
  16181. },
  16182. {
  16183. name: "Milky Wicker",
  16184. height: math.unit(1000000000000000000000, "meters")
  16185. },
  16186. {
  16187. name: "The observing Wicker",
  16188. height: math.unit(999999999999999999999999999, "meters")
  16189. },
  16190. ]
  16191. ))
  16192. characterMakers.push(() => makeCharacter(
  16193. { name: "Arokha Sieyes" },
  16194. {
  16195. front: {
  16196. height: math.unit(5 + 9 / 12, "feet"),
  16197. weight: math.unit(150, "lb"),
  16198. name: "Front",
  16199. image: {
  16200. source: "./media/characters/arokha-sieyes/front.svg",
  16201. extra: 1425 / 1284,
  16202. bottom: 0.05
  16203. }
  16204. },
  16205. },
  16206. [
  16207. {
  16208. name: "Normal",
  16209. height: math.unit(5 + 9 / 12, "feet")
  16210. },
  16211. {
  16212. name: "Macro",
  16213. height: math.unit(30, "meters"),
  16214. default: true
  16215. },
  16216. ]
  16217. ))
  16218. characterMakers.push(() => makeCharacter(
  16219. { name: "Arokh Sieyes" },
  16220. {
  16221. front: {
  16222. height: math.unit(6, "feet"),
  16223. weight: math.unit(180, "lb"),
  16224. name: "Front",
  16225. image: {
  16226. source: "./media/characters/arokh-sieyes/front.svg",
  16227. extra: 1830 / 1769,
  16228. bottom: 0.01
  16229. }
  16230. },
  16231. },
  16232. [
  16233. {
  16234. name: "Normal",
  16235. height: math.unit(6, "feet")
  16236. },
  16237. {
  16238. name: "Macro",
  16239. height: math.unit(30, "meters"),
  16240. default: true
  16241. },
  16242. ]
  16243. ))
  16244. characterMakers.push(() => makeCharacter(
  16245. { name: "Goldeneye" },
  16246. {
  16247. side: {
  16248. height: math.unit(13 + 1 / 12, "feet"),
  16249. weight: math.unit(8.5, "tonnes"),
  16250. name: "Side",
  16251. image: {
  16252. source: "./media/characters/goldeneye/side.svg",
  16253. extra: 1182 / 778,
  16254. bottom: 0.067
  16255. }
  16256. },
  16257. paw: {
  16258. height: math.unit(3.4, "feet"),
  16259. name: "Paw",
  16260. image: {
  16261. source: "./media/characters/goldeneye/paw.svg"
  16262. }
  16263. },
  16264. },
  16265. [
  16266. {
  16267. name: "Normal",
  16268. height: math.unit(13 + 1 / 12, "feet"),
  16269. default: true
  16270. },
  16271. ]
  16272. ))
  16273. characterMakers.push(() => makeCharacter(
  16274. { name: "Leonardo Lycheborne" },
  16275. {
  16276. front: {
  16277. height: math.unit(6 + 1 / 12, "feet"),
  16278. weight: math.unit(210, "lb"),
  16279. name: "Front",
  16280. image: {
  16281. source: "./media/characters/leonardo-lycheborne/front.svg",
  16282. extra: 390 / 365,
  16283. bottom: 0.032
  16284. }
  16285. },
  16286. side: {
  16287. height: math.unit(6 + 1 / 12, "feet"),
  16288. weight: math.unit(210, "lb"),
  16289. name: "Side",
  16290. image: {
  16291. source: "./media/characters/leonardo-lycheborne/side.svg",
  16292. extra: 390 / 365,
  16293. bottom: 0.005
  16294. }
  16295. },
  16296. back: {
  16297. height: math.unit(6 + 1 / 12, "feet"),
  16298. weight: math.unit(210, "lb"),
  16299. name: "Back",
  16300. image: {
  16301. source: "./media/characters/leonardo-lycheborne/back.svg",
  16302. extra: 392 / 366,
  16303. bottom: 0.01
  16304. }
  16305. },
  16306. hand: {
  16307. height: math.unit(1.08, "feet"),
  16308. name: "Hand",
  16309. image: {
  16310. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16311. }
  16312. },
  16313. foot: {
  16314. height: math.unit(1.32, "feet"),
  16315. name: "Foot",
  16316. image: {
  16317. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16318. }
  16319. },
  16320. were: {
  16321. height: math.unit(20, "feet"),
  16322. weight: math.unit(7800, "lb"),
  16323. name: "Were",
  16324. image: {
  16325. source: "./media/characters/leonardo-lycheborne/were.svg",
  16326. extra: 308 / 294,
  16327. bottom: 0.048
  16328. }
  16329. },
  16330. feral: {
  16331. height: math.unit(7.5, "feet"),
  16332. weight: math.unit(600, "lb"),
  16333. name: "Feral",
  16334. image: {
  16335. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16336. extra: 210 / 186,
  16337. bottom: 0.108
  16338. }
  16339. },
  16340. taur: {
  16341. height: math.unit(11, "feet"),
  16342. weight: math.unit(3300, "lb"),
  16343. name: "Taur",
  16344. image: {
  16345. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16346. extra: 320 / 303,
  16347. bottom: 0.025
  16348. }
  16349. },
  16350. barghest: {
  16351. height: math.unit(11, "feet"),
  16352. weight: math.unit(1300, "lb"),
  16353. name: "Barghest",
  16354. image: {
  16355. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16356. extra: 323 / 302,
  16357. bottom: 0.027
  16358. }
  16359. },
  16360. dick: {
  16361. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16362. name: "Dick",
  16363. image: {
  16364. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16365. }
  16366. },
  16367. dickWere: {
  16368. height: math.unit((20) / 3.8, "feet"),
  16369. name: "Dick (Were)",
  16370. image: {
  16371. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16372. }
  16373. },
  16374. },
  16375. [
  16376. {
  16377. name: "Normal",
  16378. height: math.unit(6 + 1 / 12, "feet"),
  16379. default: true
  16380. },
  16381. ]
  16382. ))
  16383. characterMakers.push(() => makeCharacter(
  16384. { name: "Jet" },
  16385. {
  16386. front: {
  16387. height: math.unit(10, "feet"),
  16388. weight: math.unit(350, "lb"),
  16389. name: "Front",
  16390. image: {
  16391. source: "./media/characters/jet/front.svg",
  16392. extra: 2050 / 1980,
  16393. bottom: 0.013
  16394. }
  16395. },
  16396. back: {
  16397. height: math.unit(10, "feet"),
  16398. weight: math.unit(350, "lb"),
  16399. name: "Back",
  16400. image: {
  16401. source: "./media/characters/jet/back.svg",
  16402. extra: 2050 / 1980,
  16403. bottom: 0.013
  16404. }
  16405. },
  16406. },
  16407. [
  16408. {
  16409. name: "Micro",
  16410. height: math.unit(6, "inches")
  16411. },
  16412. {
  16413. name: "Normal",
  16414. height: math.unit(10, "feet"),
  16415. default: true
  16416. },
  16417. {
  16418. name: "Macro",
  16419. height: math.unit(100, "feet")
  16420. },
  16421. ]
  16422. ))
  16423. characterMakers.push(() => makeCharacter(
  16424. { name: "Tanarath" },
  16425. {
  16426. front: {
  16427. height: math.unit(15, "feet"),
  16428. weight: math.unit(2800, "lb"),
  16429. name: "Front",
  16430. image: {
  16431. source: "./media/characters/tanarath/front.svg",
  16432. extra: 2392 / 2220,
  16433. bottom: 0.03
  16434. }
  16435. },
  16436. back: {
  16437. height: math.unit(15, "feet"),
  16438. weight: math.unit(2800, "lb"),
  16439. name: "Back",
  16440. image: {
  16441. source: "./media/characters/tanarath/back.svg",
  16442. extra: 2392 / 2220,
  16443. bottom: 0.03
  16444. }
  16445. },
  16446. },
  16447. [
  16448. {
  16449. name: "Normal",
  16450. height: math.unit(15, "feet"),
  16451. default: true
  16452. },
  16453. ]
  16454. ))
  16455. characterMakers.push(() => makeCharacter(
  16456. { name: "Patty CattyBatty" },
  16457. {
  16458. front: {
  16459. height: math.unit(7 + 1 / 12, "feet"),
  16460. weight: math.unit(175, "lb"),
  16461. name: "Front",
  16462. image: {
  16463. source: "./media/characters/patty-cattybatty/front.svg",
  16464. extra: 908 / 874,
  16465. bottom: 0.025
  16466. }
  16467. },
  16468. },
  16469. [
  16470. {
  16471. name: "Micro",
  16472. height: math.unit(1, "inch")
  16473. },
  16474. {
  16475. name: "Normal",
  16476. height: math.unit(7 + 1 / 12, "feet")
  16477. },
  16478. {
  16479. name: "Mini Macro",
  16480. height: math.unit(155, "feet")
  16481. },
  16482. {
  16483. name: "Macro",
  16484. height: math.unit(1077, "feet")
  16485. },
  16486. {
  16487. name: "Mega Macro",
  16488. height: math.unit(47650, "feet"),
  16489. default: true
  16490. },
  16491. {
  16492. name: "Giga Macro",
  16493. height: math.unit(440, "miles")
  16494. },
  16495. {
  16496. name: "Tera Macro",
  16497. height: math.unit(8700, "miles")
  16498. },
  16499. {
  16500. name: "Planetary Macro",
  16501. height: math.unit(32700, "miles")
  16502. },
  16503. {
  16504. name: "Solar Macro",
  16505. height: math.unit(550000, "miles")
  16506. },
  16507. {
  16508. name: "Celestial Macro",
  16509. height: math.unit(2.5, "AU")
  16510. },
  16511. ]
  16512. ))
  16513. characterMakers.push(() => makeCharacter(
  16514. { name: "Cappu" },
  16515. {
  16516. front: {
  16517. height: math.unit(4 + 5 / 12, "feet"),
  16518. weight: math.unit(90, "lb"),
  16519. name: "Front",
  16520. image: {
  16521. source: "./media/characters/cappu/front.svg",
  16522. extra: 1247 / 1152,
  16523. bottom: 0.012
  16524. }
  16525. },
  16526. },
  16527. [
  16528. {
  16529. name: "Normal",
  16530. height: math.unit(4 + 5 / 12, "feet"),
  16531. default: true
  16532. },
  16533. ]
  16534. ))
  16535. characterMakers.push(() => makeCharacter(
  16536. { name: "Sebi" },
  16537. {
  16538. frontDressed: {
  16539. height: math.unit(70, "cm"),
  16540. weight: math.unit(6, "kg"),
  16541. name: "Front (Dressed)",
  16542. image: {
  16543. source: "./media/characters/sebi/front-dressed.svg",
  16544. extra: 713.5 / 686.5,
  16545. bottom: 0.003
  16546. }
  16547. },
  16548. front: {
  16549. height: math.unit(70, "cm"),
  16550. weight: math.unit(5, "kg"),
  16551. name: "Front",
  16552. image: {
  16553. source: "./media/characters/sebi/front.svg",
  16554. extra: 713.5 / 686.5,
  16555. bottom: 0.003
  16556. }
  16557. }
  16558. },
  16559. [
  16560. {
  16561. name: "Normal",
  16562. height: math.unit(70, "cm"),
  16563. default: true
  16564. },
  16565. {
  16566. name: "Macro",
  16567. height: math.unit(8, "meters")
  16568. },
  16569. ]
  16570. ))
  16571. characterMakers.push(() => makeCharacter(
  16572. { name: "Typhek" },
  16573. {
  16574. front: {
  16575. height: math.unit(6, "feet"),
  16576. weight: math.unit(150, "lb"),
  16577. name: "Front",
  16578. image: {
  16579. source: "./media/characters/typhek/front.svg",
  16580. extra: 1948 / 1929,
  16581. bottom: 0.025
  16582. }
  16583. },
  16584. side: {
  16585. height: math.unit(6, "feet"),
  16586. weight: math.unit(150, "lb"),
  16587. name: "Side",
  16588. image: {
  16589. source: "./media/characters/typhek/side.svg",
  16590. extra: 2034 / 2010,
  16591. bottom: 0.003
  16592. }
  16593. },
  16594. back: {
  16595. height: math.unit(6, "feet"),
  16596. weight: math.unit(150, "lb"),
  16597. name: "Back",
  16598. image: {
  16599. source: "./media/characters/typhek/back.svg",
  16600. extra: 2005 / 1978,
  16601. bottom: 0.004
  16602. }
  16603. },
  16604. palm: {
  16605. height: math.unit(1.2, "feet"),
  16606. name: "Palm",
  16607. image: {
  16608. source: "./media/characters/typhek/palm.svg"
  16609. }
  16610. },
  16611. fist: {
  16612. height: math.unit(1.1, "feet"),
  16613. name: "Fist",
  16614. image: {
  16615. source: "./media/characters/typhek/fist.svg"
  16616. }
  16617. },
  16618. foot: {
  16619. height: math.unit(1.57, "feet"),
  16620. name: "Foot",
  16621. image: {
  16622. source: "./media/characters/typhek/foot.svg"
  16623. }
  16624. },
  16625. sole: {
  16626. height: math.unit(2.05, "feet"),
  16627. name: "Sole",
  16628. image: {
  16629. source: "./media/characters/typhek/sole.svg"
  16630. }
  16631. },
  16632. },
  16633. [
  16634. {
  16635. name: "Macro",
  16636. height: math.unit(40, "stories"),
  16637. default: true
  16638. },
  16639. {
  16640. name: "Megamacro",
  16641. height: math.unit(1, "mile")
  16642. },
  16643. {
  16644. name: "Gigamacro",
  16645. height: math.unit(4000, "solarradii")
  16646. },
  16647. {
  16648. name: "Universal",
  16649. height: math.unit(1.1, "universes")
  16650. }
  16651. ]
  16652. ))
  16653. characterMakers.push(() => makeCharacter(
  16654. { name: "Kassy" },
  16655. {
  16656. side: {
  16657. height: math.unit(5 + 7 / 12, "feet"),
  16658. weight: math.unit(150, "lb"),
  16659. name: "Side",
  16660. image: {
  16661. source: "./media/characters/kassy/side.svg",
  16662. extra: 1280 / 1225,
  16663. bottom: 0.002
  16664. }
  16665. },
  16666. front: {
  16667. height: math.unit(5 + 7 / 12, "feet"),
  16668. weight: math.unit(150, "lb"),
  16669. name: "Front",
  16670. image: {
  16671. source: "./media/characters/kassy/front.svg",
  16672. extra: 1280 / 1225,
  16673. bottom: 0.025
  16674. }
  16675. },
  16676. back: {
  16677. height: math.unit(5 + 7 / 12, "feet"),
  16678. weight: math.unit(150, "lb"),
  16679. name: "Back",
  16680. image: {
  16681. source: "./media/characters/kassy/back.svg",
  16682. extra: 1280 / 1225,
  16683. bottom: 0.002
  16684. }
  16685. },
  16686. foot: {
  16687. height: math.unit(1.266, "feet"),
  16688. name: "Foot",
  16689. image: {
  16690. source: "./media/characters/kassy/foot.svg"
  16691. }
  16692. },
  16693. },
  16694. [
  16695. {
  16696. name: "Normal",
  16697. height: math.unit(5 + 7 / 12, "feet")
  16698. },
  16699. {
  16700. name: "Macro",
  16701. height: math.unit(137, "feet"),
  16702. default: true
  16703. },
  16704. {
  16705. name: "Megamacro",
  16706. height: math.unit(1, "mile")
  16707. },
  16708. ]
  16709. ))
  16710. characterMakers.push(() => makeCharacter(
  16711. { name: "Neil" },
  16712. {
  16713. front: {
  16714. height: math.unit(6 + 1 / 12, "feet"),
  16715. weight: math.unit(200, "lb"),
  16716. name: "Front",
  16717. image: {
  16718. source: "./media/characters/neil/front.svg",
  16719. extra: 1326 / 1250,
  16720. bottom: 0.023
  16721. }
  16722. },
  16723. },
  16724. [
  16725. {
  16726. name: "Normal",
  16727. height: math.unit(6 + 1 / 12, "feet"),
  16728. default: true
  16729. },
  16730. {
  16731. name: "Macro",
  16732. height: math.unit(200, "feet")
  16733. },
  16734. ]
  16735. ))
  16736. characterMakers.push(() => makeCharacter(
  16737. { name: "Atticus" },
  16738. {
  16739. front: {
  16740. height: math.unit(5 + 9 / 12, "feet"),
  16741. weight: math.unit(190, "lb"),
  16742. name: "Front",
  16743. image: {
  16744. source: "./media/characters/atticus/front.svg",
  16745. extra: 2934 / 2785,
  16746. bottom: 0.025
  16747. }
  16748. },
  16749. },
  16750. [
  16751. {
  16752. name: "Normal",
  16753. height: math.unit(5 + 9 / 12, "feet"),
  16754. default: true
  16755. },
  16756. {
  16757. name: "Macro",
  16758. height: math.unit(180, "feet")
  16759. },
  16760. ]
  16761. ))
  16762. characterMakers.push(() => makeCharacter(
  16763. { name: "Milo" },
  16764. {
  16765. side: {
  16766. height: math.unit(9, "feet"),
  16767. weight: math.unit(650, "lb"),
  16768. name: "Side",
  16769. image: {
  16770. source: "./media/characters/milo/side.svg",
  16771. extra: 2644 / 2310,
  16772. bottom: 0.032
  16773. }
  16774. },
  16775. },
  16776. [
  16777. {
  16778. name: "Normal",
  16779. height: math.unit(9, "feet"),
  16780. default: true
  16781. },
  16782. {
  16783. name: "Macro",
  16784. height: math.unit(300, "feet")
  16785. },
  16786. ]
  16787. ))
  16788. characterMakers.push(() => makeCharacter(
  16789. { name: "Ijzer" },
  16790. {
  16791. side: {
  16792. height: math.unit(8, "meters"),
  16793. weight: math.unit(90000, "kg"),
  16794. name: "Side",
  16795. image: {
  16796. source: "./media/characters/ijzer/side.svg",
  16797. extra: 2756 / 1600,
  16798. bottom: 0.01
  16799. }
  16800. },
  16801. },
  16802. [
  16803. {
  16804. name: "Small",
  16805. height: math.unit(3, "meters")
  16806. },
  16807. {
  16808. name: "Normal",
  16809. height: math.unit(8, "meters"),
  16810. default: true
  16811. },
  16812. {
  16813. name: "Normal+",
  16814. height: math.unit(10, "meters")
  16815. },
  16816. {
  16817. name: "Bigger",
  16818. height: math.unit(24, "meters")
  16819. },
  16820. {
  16821. name: "Huge",
  16822. height: math.unit(80, "meters")
  16823. },
  16824. ]
  16825. ))
  16826. characterMakers.push(() => makeCharacter(
  16827. { name: "Luca Cervicum" },
  16828. {
  16829. front: {
  16830. height: math.unit(6 + 2 / 12, "feet"),
  16831. weight: math.unit(153, "lb"),
  16832. name: "Front",
  16833. image: {
  16834. source: "./media/characters/luca-cervicum/front.svg",
  16835. extra: 370 / 327,
  16836. bottom: 0.015
  16837. }
  16838. },
  16839. back: {
  16840. height: math.unit(6 + 2 / 12, "feet"),
  16841. weight: math.unit(153, "lb"),
  16842. name: "Back",
  16843. image: {
  16844. source: "./media/characters/luca-cervicum/back.svg",
  16845. extra: 367 / 333,
  16846. bottom: 0.005
  16847. }
  16848. },
  16849. frontGear: {
  16850. height: math.unit(6 + 2 / 12, "feet"),
  16851. weight: math.unit(173, "lb"),
  16852. name: "Front (Gear)",
  16853. image: {
  16854. source: "./media/characters/luca-cervicum/front-gear.svg",
  16855. extra: 377 / 333,
  16856. bottom: 0.006
  16857. }
  16858. },
  16859. },
  16860. [
  16861. {
  16862. name: "Normal",
  16863. height: math.unit(6 + 2 / 12, "feet"),
  16864. default: true
  16865. },
  16866. ]
  16867. ))
  16868. characterMakers.push(() => makeCharacter(
  16869. { name: "Oliver" },
  16870. {
  16871. front: {
  16872. height: math.unit(6 + 1 / 12, "feet"),
  16873. weight: math.unit(304, "lb"),
  16874. name: "Front",
  16875. image: {
  16876. source: "./media/characters/oliver/front.svg",
  16877. extra: 157 / 143,
  16878. bottom: 0.08
  16879. }
  16880. },
  16881. },
  16882. [
  16883. {
  16884. name: "Normal",
  16885. height: math.unit(6 + 1 / 12, "feet"),
  16886. default: true
  16887. },
  16888. ]
  16889. ))
  16890. characterMakers.push(() => makeCharacter(
  16891. { name: "Shane" },
  16892. {
  16893. front: {
  16894. height: math.unit(5 + 7 / 12, "feet"),
  16895. weight: math.unit(140, "lb"),
  16896. name: "Front",
  16897. image: {
  16898. source: "./media/characters/shane/front.svg",
  16899. extra: 304 / 289,
  16900. bottom: 0.005
  16901. }
  16902. },
  16903. },
  16904. [
  16905. {
  16906. name: "Normal",
  16907. height: math.unit(5 + 7 / 12, "feet"),
  16908. default: true
  16909. },
  16910. ]
  16911. ))
  16912. characterMakers.push(() => makeCharacter(
  16913. { name: "Shin" },
  16914. {
  16915. front: {
  16916. height: math.unit(5 + 9 / 12, "feet"),
  16917. weight: math.unit(178, "lb"),
  16918. name: "Front",
  16919. image: {
  16920. source: "./media/characters/shin/front.svg",
  16921. extra: 159 / 151,
  16922. bottom: 0.015
  16923. }
  16924. },
  16925. },
  16926. [
  16927. {
  16928. name: "Normal",
  16929. height: math.unit(5 + 9 / 12, "feet"),
  16930. default: true
  16931. },
  16932. ]
  16933. ))
  16934. characterMakers.push(() => makeCharacter(
  16935. { name: "Xerxes" },
  16936. {
  16937. front: {
  16938. height: math.unit(5 + 10 / 12, "feet"),
  16939. weight: math.unit(168, "lb"),
  16940. name: "Front",
  16941. image: {
  16942. source: "./media/characters/xerxes/front.svg",
  16943. extra: 282 / 260,
  16944. bottom: 0.045
  16945. }
  16946. },
  16947. },
  16948. [
  16949. {
  16950. name: "Normal",
  16951. height: math.unit(5 + 10 / 12, "feet"),
  16952. default: true
  16953. },
  16954. ]
  16955. ))
  16956. characterMakers.push(() => makeCharacter(
  16957. { name: "Chaska" },
  16958. {
  16959. front: {
  16960. height: math.unit(6 + 7 / 12, "feet"),
  16961. weight: math.unit(208, "lb"),
  16962. name: "Front",
  16963. image: {
  16964. source: "./media/characters/chaska/front.svg",
  16965. extra: 332 / 319,
  16966. bottom: 0.015
  16967. }
  16968. },
  16969. },
  16970. [
  16971. {
  16972. name: "Normal",
  16973. height: math.unit(6 + 7 / 12, "feet"),
  16974. default: true
  16975. },
  16976. ]
  16977. ))
  16978. characterMakers.push(() => makeCharacter(
  16979. { name: "Enuk" },
  16980. {
  16981. front: {
  16982. height: math.unit(5 + 8 / 12, "feet"),
  16983. weight: math.unit(208, "lb"),
  16984. name: "Front",
  16985. image: {
  16986. source: "./media/characters/enuk/front.svg",
  16987. extra: 437 / 406,
  16988. bottom: 0.02
  16989. }
  16990. },
  16991. },
  16992. [
  16993. {
  16994. name: "Normal",
  16995. height: math.unit(5 + 8 / 12, "feet"),
  16996. default: true
  16997. },
  16998. ]
  16999. ))
  17000. characterMakers.push(() => makeCharacter(
  17001. { name: "Bruun" },
  17002. {
  17003. front: {
  17004. height: math.unit(5 + 10 / 12, "feet"),
  17005. weight: math.unit(252, "lb"),
  17006. name: "Front",
  17007. image: {
  17008. source: "./media/characters/bruun/front.svg",
  17009. extra: 197 / 187,
  17010. bottom: 0.012
  17011. }
  17012. },
  17013. },
  17014. [
  17015. {
  17016. name: "Normal",
  17017. height: math.unit(5 + 10 / 12, "feet"),
  17018. default: true
  17019. },
  17020. ]
  17021. ))
  17022. characterMakers.push(() => makeCharacter(
  17023. { name: "Alexeev" },
  17024. {
  17025. front: {
  17026. height: math.unit(6 + 10 / 12, "feet"),
  17027. weight: math.unit(255, "lb"),
  17028. name: "Front",
  17029. image: {
  17030. source: "./media/characters/alexeev/front.svg",
  17031. extra: 213 / 200,
  17032. bottom: 0.05
  17033. }
  17034. },
  17035. },
  17036. [
  17037. {
  17038. name: "Normal",
  17039. height: math.unit(6 + 10 / 12, "feet"),
  17040. default: true
  17041. },
  17042. ]
  17043. ))
  17044. characterMakers.push(() => makeCharacter(
  17045. { name: "Evelyn" },
  17046. {
  17047. front: {
  17048. height: math.unit(2 + 8 / 12, "feet"),
  17049. weight: math.unit(22, "lb"),
  17050. name: "Front",
  17051. image: {
  17052. source: "./media/characters/evelyn/front.svg",
  17053. extra: 208 / 180
  17054. }
  17055. },
  17056. },
  17057. [
  17058. {
  17059. name: "Normal",
  17060. height: math.unit(2 + 8 / 12, "feet"),
  17061. default: true
  17062. },
  17063. ]
  17064. ))
  17065. characterMakers.push(() => makeCharacter(
  17066. { name: "Inca" },
  17067. {
  17068. front: {
  17069. height: math.unit(5 + 9 / 12, "feet"),
  17070. weight: math.unit(139, "lb"),
  17071. name: "Front",
  17072. image: {
  17073. source: "./media/characters/inca/front.svg",
  17074. extra: 294 / 291,
  17075. bottom: 0.03
  17076. }
  17077. },
  17078. },
  17079. [
  17080. {
  17081. name: "Normal",
  17082. height: math.unit(5 + 9 / 12, "feet"),
  17083. default: true
  17084. },
  17085. ]
  17086. ))
  17087. characterMakers.push(() => makeCharacter(
  17088. { name: "Magdalene" },
  17089. {
  17090. front: {
  17091. height: math.unit(5 + 1 / 12, "feet"),
  17092. weight: math.unit(84, "lb"),
  17093. name: "Front",
  17094. image: {
  17095. source: "./media/characters/magdalene/front.svg",
  17096. extra: 293 / 273
  17097. }
  17098. },
  17099. },
  17100. [
  17101. {
  17102. name: "Normal",
  17103. height: math.unit(5 + 1 / 12, "feet"),
  17104. default: true
  17105. },
  17106. ]
  17107. ))
  17108. characterMakers.push(() => makeCharacter(
  17109. { name: "Mera" },
  17110. {
  17111. front: {
  17112. height: math.unit(6 + 3 / 12, "feet"),
  17113. weight: math.unit(185, "lb"),
  17114. name: "Front",
  17115. image: {
  17116. source: "./media/characters/mera/front.svg",
  17117. extra: 291 / 277,
  17118. bottom: 0.03
  17119. }
  17120. },
  17121. },
  17122. [
  17123. {
  17124. name: "Normal",
  17125. height: math.unit(6 + 3 / 12, "feet"),
  17126. default: true
  17127. },
  17128. ]
  17129. ))
  17130. characterMakers.push(() => makeCharacter(
  17131. { name: "Ceres" },
  17132. {
  17133. front: {
  17134. height: math.unit(6 + 7 / 12, "feet"),
  17135. weight: math.unit(160, "lb"),
  17136. name: "Front",
  17137. image: {
  17138. source: "./media/characters/ceres/front.svg",
  17139. extra: 1023 / 950,
  17140. bottom: 0.027
  17141. }
  17142. },
  17143. back: {
  17144. height: math.unit(6 + 7 / 12, "feet"),
  17145. weight: math.unit(160, "lb"),
  17146. name: "Back",
  17147. image: {
  17148. source: "./media/characters/ceres/back.svg",
  17149. extra: 1023 / 950
  17150. }
  17151. },
  17152. },
  17153. [
  17154. {
  17155. name: "Normal",
  17156. height: math.unit(6 + 7 / 12, "feet"),
  17157. default: true
  17158. },
  17159. ]
  17160. ))
  17161. characterMakers.push(() => makeCharacter(
  17162. { name: "Kris" },
  17163. {
  17164. front: {
  17165. height: math.unit(5 + 10 / 12, "feet"),
  17166. weight: math.unit(150, "lb"),
  17167. name: "Front",
  17168. image: {
  17169. source: "./media/characters/kris/front.svg",
  17170. extra: 885 / 803,
  17171. bottom: 0.03
  17172. }
  17173. },
  17174. },
  17175. [
  17176. {
  17177. name: "Normal",
  17178. height: math.unit(5 + 10 / 12, "feet"),
  17179. default: true
  17180. },
  17181. ]
  17182. ))
  17183. characterMakers.push(() => makeCharacter(
  17184. { name: "Taluthus" },
  17185. {
  17186. front: {
  17187. height: math.unit(7, "feet"),
  17188. weight: math.unit(120, "kg"),
  17189. name: "Front",
  17190. image: {
  17191. source: "./media/characters/taluthus/front.svg",
  17192. extra: 903 / 833,
  17193. bottom: 0.015
  17194. }
  17195. },
  17196. },
  17197. [
  17198. {
  17199. name: "Normal",
  17200. height: math.unit(7, "feet"),
  17201. default: true
  17202. },
  17203. {
  17204. name: "Macro",
  17205. height: math.unit(300, "feet")
  17206. },
  17207. ]
  17208. ))
  17209. characterMakers.push(() => makeCharacter(
  17210. { name: "Dawn" },
  17211. {
  17212. front: {
  17213. height: math.unit(5 + 9 / 12, "feet"),
  17214. weight: math.unit(145, "lb"),
  17215. name: "Front",
  17216. image: {
  17217. source: "./media/characters/dawn/front.svg",
  17218. extra: 2094 / 2016,
  17219. bottom: 0.025
  17220. }
  17221. },
  17222. back: {
  17223. height: math.unit(5 + 9 / 12, "feet"),
  17224. weight: math.unit(160, "lb"),
  17225. name: "Back",
  17226. image: {
  17227. source: "./media/characters/dawn/back.svg",
  17228. extra: 2112 / 2080,
  17229. bottom: 0.005
  17230. }
  17231. },
  17232. },
  17233. [
  17234. {
  17235. name: "Normal",
  17236. height: math.unit(6 + 7 / 12, "feet"),
  17237. default: true
  17238. },
  17239. ]
  17240. ))
  17241. characterMakers.push(() => makeCharacter(
  17242. { name: "Arador" },
  17243. {
  17244. anthro: {
  17245. height: math.unit(8 + 3 / 12, "feet"),
  17246. weight: math.unit(450, "lb"),
  17247. name: "Anthro",
  17248. image: {
  17249. source: "./media/characters/arador/anthro.svg",
  17250. extra: 1835 / 1718,
  17251. bottom: 0.025
  17252. }
  17253. },
  17254. feral: {
  17255. height: math.unit(4, "feet"),
  17256. weight: math.unit(200, "lb"),
  17257. name: "Feral",
  17258. image: {
  17259. source: "./media/characters/arador/feral.svg",
  17260. extra: 1683 / 1514,
  17261. bottom: 0.07
  17262. }
  17263. },
  17264. },
  17265. [
  17266. {
  17267. name: "Normal",
  17268. height: math.unit(8 + 3 / 12, "feet")
  17269. },
  17270. {
  17271. name: "Macro",
  17272. height: math.unit(82.5, "feet"),
  17273. default: true
  17274. },
  17275. ]
  17276. ))
  17277. characterMakers.push(() => makeCharacter(
  17278. { name: "Dharsi" },
  17279. {
  17280. front: {
  17281. height: math.unit(5 + 10 / 12, "feet"),
  17282. weight: math.unit(125, "lb"),
  17283. name: "Front",
  17284. image: {
  17285. source: "./media/characters/dharsi/front.svg",
  17286. extra: 716 / 630,
  17287. bottom: 0.035
  17288. }
  17289. },
  17290. },
  17291. [
  17292. {
  17293. name: "Nano",
  17294. height: math.unit(100, "nm")
  17295. },
  17296. {
  17297. name: "Micro",
  17298. height: math.unit(2, "inches")
  17299. },
  17300. {
  17301. name: "Normal",
  17302. height: math.unit(5 + 10 / 12, "feet"),
  17303. default: true
  17304. },
  17305. {
  17306. name: "Macro",
  17307. height: math.unit(1000, "feet")
  17308. },
  17309. {
  17310. name: "Megamacro",
  17311. height: math.unit(10, "miles")
  17312. },
  17313. {
  17314. name: "Gigamacro",
  17315. height: math.unit(3000, "miles")
  17316. },
  17317. {
  17318. name: "Teramacro",
  17319. height: math.unit(500000, "miles")
  17320. },
  17321. {
  17322. name: "Teramacro+",
  17323. height: math.unit(30, "galaxies")
  17324. },
  17325. ]
  17326. ))
  17327. characterMakers.push(() => makeCharacter(
  17328. { name: "Deathy" },
  17329. {
  17330. front: {
  17331. height: math.unit(6, "feet"),
  17332. weight: math.unit(150, "lb"),
  17333. name: "Front",
  17334. image: {
  17335. source: "./media/characters/deathy/front.svg",
  17336. extra: 1552 / 1463,
  17337. bottom: 0.025
  17338. }
  17339. },
  17340. side: {
  17341. height: math.unit(6, "feet"),
  17342. weight: math.unit(150, "lb"),
  17343. name: "Side",
  17344. image: {
  17345. source: "./media/characters/deathy/side.svg",
  17346. extra: 1604 / 1455,
  17347. bottom: 0.025
  17348. }
  17349. },
  17350. back: {
  17351. height: math.unit(6, "feet"),
  17352. weight: math.unit(150, "lb"),
  17353. name: "Back",
  17354. image: {
  17355. source: "./media/characters/deathy/back.svg",
  17356. extra: 1580 / 1463,
  17357. bottom: 0.005
  17358. }
  17359. },
  17360. },
  17361. [
  17362. {
  17363. name: "Micro",
  17364. height: math.unit(5, "millimeters")
  17365. },
  17366. {
  17367. name: "Normal",
  17368. height: math.unit(6 + 5 / 12, "feet"),
  17369. default: true
  17370. },
  17371. ]
  17372. ))
  17373. characterMakers.push(() => makeCharacter(
  17374. { name: "Juniper" },
  17375. {
  17376. front: {
  17377. height: math.unit(16, "feet"),
  17378. weight: math.unit(4000, "lb"),
  17379. name: "Front",
  17380. image: {
  17381. source: "./media/characters/juniper/front.svg",
  17382. bottom: 0.04
  17383. }
  17384. },
  17385. },
  17386. [
  17387. {
  17388. name: "Normal",
  17389. height: math.unit(16, "feet"),
  17390. default: true
  17391. },
  17392. ]
  17393. ))
  17394. characterMakers.push(() => makeCharacter(
  17395. { name: "Hipster" },
  17396. {
  17397. front: {
  17398. height: math.unit(6, "feet"),
  17399. weight: math.unit(150, "lb"),
  17400. name: "Front",
  17401. image: {
  17402. source: "./media/characters/hipster/front.svg",
  17403. extra: 1312 / 1209,
  17404. bottom: 0.025
  17405. }
  17406. },
  17407. back: {
  17408. height: math.unit(6, "feet"),
  17409. weight: math.unit(150, "lb"),
  17410. name: "Back",
  17411. image: {
  17412. source: "./media/characters/hipster/back.svg",
  17413. extra: 1281 / 1196,
  17414. bottom: 0.01
  17415. }
  17416. },
  17417. },
  17418. [
  17419. {
  17420. name: "Micro",
  17421. height: math.unit(1, "mm")
  17422. },
  17423. {
  17424. name: "Normal",
  17425. height: math.unit(4, "inches"),
  17426. default: true
  17427. },
  17428. {
  17429. name: "Macro",
  17430. height: math.unit(500, "feet")
  17431. },
  17432. {
  17433. name: "Megamacro",
  17434. height: math.unit(1000, "miles")
  17435. },
  17436. ]
  17437. ))
  17438. characterMakers.push(() => makeCharacter(
  17439. { name: "Tendirmuldr" },
  17440. {
  17441. front: {
  17442. height: math.unit(6, "feet"),
  17443. weight: math.unit(150, "lb"),
  17444. name: "Front",
  17445. image: {
  17446. source: "./media/characters/tendirmuldr/front.svg",
  17447. extra: 1878 / 1772,
  17448. bottom: 0.015
  17449. }
  17450. },
  17451. },
  17452. [
  17453. {
  17454. name: "Megamacro",
  17455. height: math.unit(1500, "miles"),
  17456. default: true
  17457. },
  17458. ]
  17459. ))
  17460. characterMakers.push(() => makeCharacter(
  17461. { name: "Mort" },
  17462. {
  17463. front: {
  17464. height: math.unit(14, "feet"),
  17465. weight: math.unit(12000, "lb"),
  17466. name: "Front",
  17467. image: {
  17468. source: "./media/characters/mort/front.svg",
  17469. extra: 365 / 318,
  17470. bottom: 0.01
  17471. }
  17472. },
  17473. side: {
  17474. height: math.unit(14, "feet"),
  17475. weight: math.unit(12000, "lb"),
  17476. name: "Side",
  17477. image: {
  17478. source: "./media/characters/mort/side.svg",
  17479. extra: 365 / 318,
  17480. bottom: 0.052
  17481. },
  17482. default: true
  17483. },
  17484. back: {
  17485. height: math.unit(14, "feet"),
  17486. weight: math.unit(12000, "lb"),
  17487. name: "Back",
  17488. image: {
  17489. source: "./media/characters/mort/back.svg",
  17490. extra: 371 / 332,
  17491. bottom: 0.18
  17492. }
  17493. },
  17494. },
  17495. [
  17496. {
  17497. name: "Normal",
  17498. height: math.unit(14, "feet"),
  17499. default: true
  17500. },
  17501. ]
  17502. ))
  17503. characterMakers.push(() => makeCharacter(
  17504. { name: "Lycoa" },
  17505. {
  17506. front: {
  17507. height: math.unit(8, "feet"),
  17508. weight: math.unit(1, "ton"),
  17509. name: "Front",
  17510. image: {
  17511. source: "./media/characters/lycoa/front.svg",
  17512. extra: 1875 / 1789,
  17513. bottom: 0.022
  17514. }
  17515. },
  17516. back: {
  17517. height: math.unit(8, "feet"),
  17518. weight: math.unit(1, "ton"),
  17519. name: "Back",
  17520. image: {
  17521. source: "./media/characters/lycoa/back.svg",
  17522. extra: 1835 / 1781,
  17523. bottom: 0.03
  17524. }
  17525. },
  17526. },
  17527. [
  17528. {
  17529. name: "Normal",
  17530. height: math.unit(8, "feet"),
  17531. default: true
  17532. },
  17533. {
  17534. name: "Macro",
  17535. height: math.unit(30, "feet")
  17536. },
  17537. ]
  17538. ))
  17539. characterMakers.push(() => makeCharacter(
  17540. { name: "Naldara" },
  17541. {
  17542. front: {
  17543. height: math.unit(4 + 2 / 12, "feet"),
  17544. weight: math.unit(70, "lb"),
  17545. name: "Front",
  17546. image: {
  17547. source: "./media/characters/naldara/front.svg",
  17548. extra: 841 / 720,
  17549. bottom: 0.04
  17550. }
  17551. },
  17552. },
  17553. [
  17554. {
  17555. name: "Normal",
  17556. height: math.unit(4 + 2 / 12, "feet"),
  17557. default: true
  17558. },
  17559. ]
  17560. ))
  17561. characterMakers.push(() => makeCharacter(
  17562. { name: "Briar" },
  17563. {
  17564. front: {
  17565. height: math.unit(13 + 7 / 12, "feet"),
  17566. weight: math.unit(1500, "lb"),
  17567. name: "Front",
  17568. image: {
  17569. source: "./media/characters/briar/front.svg",
  17570. extra: 626 / 596,
  17571. bottom: 0.08
  17572. }
  17573. },
  17574. },
  17575. [
  17576. {
  17577. name: "Normal",
  17578. height: math.unit(13 + 7 / 12, "feet"),
  17579. default: true
  17580. },
  17581. ]
  17582. ))
  17583. characterMakers.push(() => makeCharacter(
  17584. { name: "Vanguard" },
  17585. {
  17586. side: {
  17587. height: math.unit(10, "feet"),
  17588. weight: math.unit(500, "lb"),
  17589. name: "Side",
  17590. image: {
  17591. source: "./media/characters/vanguard/side.svg",
  17592. extra: 502 / 425,
  17593. bottom: 0.087
  17594. }
  17595. },
  17596. },
  17597. [
  17598. {
  17599. name: "Normal",
  17600. height: math.unit(10, "feet"),
  17601. default: true
  17602. },
  17603. ]
  17604. ))
  17605. characterMakers.push(() => makeCharacter(
  17606. { name: "Artemis" },
  17607. {
  17608. front: {
  17609. height: math.unit(7.5, "feet"),
  17610. weight: math.unit(2, "lb"),
  17611. name: "Front",
  17612. image: {
  17613. source: "./media/characters/artemis/front.svg",
  17614. extra: 1192 / 1075,
  17615. bottom: 0.07
  17616. }
  17617. },
  17618. },
  17619. [
  17620. {
  17621. name: "Normal",
  17622. height: math.unit(7.5, "feet"),
  17623. default: true
  17624. },
  17625. {
  17626. name: "Enlarged",
  17627. height: math.unit(12, "feet")
  17628. },
  17629. ]
  17630. ))
  17631. characterMakers.push(() => makeCharacter(
  17632. { name: "Kira" },
  17633. {
  17634. front: {
  17635. height: math.unit(5 + 3 / 12, "feet"),
  17636. weight: math.unit(160, "lb"),
  17637. name: "Front",
  17638. image: {
  17639. source: "./media/characters/kira/front.svg",
  17640. extra: 906 / 786,
  17641. bottom: 0.01
  17642. }
  17643. },
  17644. back: {
  17645. height: math.unit(5 + 3 / 12, "feet"),
  17646. weight: math.unit(160, "lb"),
  17647. name: "Back",
  17648. image: {
  17649. source: "./media/characters/kira/back.svg",
  17650. extra: 882 / 757,
  17651. bottom: 0.005
  17652. }
  17653. },
  17654. frontDressed: {
  17655. height: math.unit(5 + 3 / 12, "feet"),
  17656. weight: math.unit(160, "lb"),
  17657. name: "Front (Dressed)",
  17658. image: {
  17659. source: "./media/characters/kira/front-dressed.svg",
  17660. extra: 906 / 786,
  17661. bottom: 0.01
  17662. }
  17663. },
  17664. beans: {
  17665. height: math.unit(0.92, "feet"),
  17666. name: "Beans",
  17667. image: {
  17668. source: "./media/characters/kira/beans.svg"
  17669. }
  17670. },
  17671. },
  17672. [
  17673. {
  17674. name: "Normal",
  17675. height: math.unit(5 + 3 / 12, "feet"),
  17676. default: true
  17677. },
  17678. ]
  17679. ))
  17680. characterMakers.push(() => makeCharacter(
  17681. { name: "Scramble" },
  17682. {
  17683. front: {
  17684. height: math.unit(5 + 4 / 12, "feet"),
  17685. weight: math.unit(145, "lb"),
  17686. name: "Front",
  17687. image: {
  17688. source: "./media/characters/scramble/front.svg",
  17689. extra: 763 / 727,
  17690. bottom: 0.05
  17691. }
  17692. },
  17693. back: {
  17694. height: math.unit(5 + 4 / 12, "feet"),
  17695. weight: math.unit(145, "lb"),
  17696. name: "Back",
  17697. image: {
  17698. source: "./media/characters/scramble/back.svg",
  17699. extra: 826 / 737,
  17700. bottom: 0.002
  17701. }
  17702. },
  17703. },
  17704. [
  17705. {
  17706. name: "Normal",
  17707. height: math.unit(5 + 4 / 12, "feet"),
  17708. default: true
  17709. },
  17710. ]
  17711. ))
  17712. characterMakers.push(() => makeCharacter(
  17713. { name: "Biscuit" },
  17714. {
  17715. side: {
  17716. height: math.unit(6 + 2 / 12, "feet"),
  17717. weight: math.unit(190, "lb"),
  17718. name: "Side",
  17719. image: {
  17720. source: "./media/characters/biscuit/side.svg",
  17721. extra: 858 / 791,
  17722. bottom: 0.044
  17723. }
  17724. },
  17725. },
  17726. [
  17727. {
  17728. name: "Normal",
  17729. height: math.unit(6 + 2 / 12, "feet"),
  17730. default: true
  17731. },
  17732. ]
  17733. ))
  17734. characterMakers.push(() => makeCharacter(
  17735. { name: "Poffin" },
  17736. {
  17737. front: {
  17738. height: math.unit(5 + 2 / 12, "feet"),
  17739. weight: math.unit(120, "lb"),
  17740. name: "Front",
  17741. image: {
  17742. source: "./media/characters/poffin/front.svg",
  17743. extra: 786 / 680,
  17744. bottom: 0.005
  17745. }
  17746. },
  17747. },
  17748. [
  17749. {
  17750. name: "Normal",
  17751. height: math.unit(5 + 2 / 12, "feet"),
  17752. default: true
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "Dhari" },
  17758. {
  17759. front: {
  17760. height: math.unit(6 + 3 / 12, "feet"),
  17761. weight: math.unit(519, "lb"),
  17762. name: "Front",
  17763. image: {
  17764. source: "./media/characters/dhari/front.svg",
  17765. extra: 1048 / 946,
  17766. bottom: 0.015
  17767. }
  17768. },
  17769. back: {
  17770. height: math.unit(6 + 3 / 12, "feet"),
  17771. weight: math.unit(519, "lb"),
  17772. name: "Back",
  17773. image: {
  17774. source: "./media/characters/dhari/back.svg",
  17775. extra: 1048 / 931,
  17776. bottom: 0.005
  17777. }
  17778. },
  17779. frontDressed: {
  17780. height: math.unit(6 + 3 / 12, "feet"),
  17781. weight: math.unit(519, "lb"),
  17782. name: "Front (Dressed)",
  17783. image: {
  17784. source: "./media/characters/dhari/front-dressed.svg",
  17785. extra: 1713 / 1546,
  17786. bottom: 0.02
  17787. }
  17788. },
  17789. backDressed: {
  17790. height: math.unit(6 + 3 / 12, "feet"),
  17791. weight: math.unit(519, "lb"),
  17792. name: "Back (Dressed)",
  17793. image: {
  17794. source: "./media/characters/dhari/back-dressed.svg",
  17795. extra: 1699 / 1537,
  17796. bottom: 0.01
  17797. }
  17798. },
  17799. maw: {
  17800. height: math.unit(0.95, "feet"),
  17801. name: "Maw",
  17802. image: {
  17803. source: "./media/characters/dhari/maw.svg"
  17804. }
  17805. },
  17806. wereFront: {
  17807. height: math.unit(12 + 8 / 12, "feet"),
  17808. weight: math.unit(4000, "lb"),
  17809. name: "Front (Were)",
  17810. image: {
  17811. source: "./media/characters/dhari/were-front.svg",
  17812. extra: 1065 / 969,
  17813. bottom: 0.015
  17814. }
  17815. },
  17816. wereBack: {
  17817. height: math.unit(12 + 8 / 12, "feet"),
  17818. weight: math.unit(4000, "lb"),
  17819. name: "Back (Were)",
  17820. image: {
  17821. source: "./media/characters/dhari/were-back.svg",
  17822. extra: 1065 / 969,
  17823. bottom: 0.012
  17824. }
  17825. },
  17826. wereMaw: {
  17827. height: math.unit(0.625, "meters"),
  17828. name: "Maw (Were)",
  17829. image: {
  17830. source: "./media/characters/dhari/were-maw.svg"
  17831. }
  17832. },
  17833. },
  17834. [
  17835. {
  17836. name: "Normal",
  17837. height: math.unit(6 + 3 / 12, "feet"),
  17838. default: true
  17839. },
  17840. ]
  17841. ))
  17842. characterMakers.push(() => makeCharacter(
  17843. { name: "Rena Dyne" },
  17844. {
  17845. anthro: {
  17846. height: math.unit(5 + 7 / 12, "feet"),
  17847. weight: math.unit(175, "lb"),
  17848. name: "Anthro",
  17849. image: {
  17850. source: "./media/characters/rena-dyne/anthro.svg",
  17851. extra: 1849 / 1785,
  17852. bottom: 0.005
  17853. }
  17854. },
  17855. taur: {
  17856. height: math.unit(15 + 6 / 12, "feet"),
  17857. weight: math.unit(8000, "lb"),
  17858. name: "Taur",
  17859. image: {
  17860. source: "./media/characters/rena-dyne/taur.svg",
  17861. extra: 2315 / 2234,
  17862. bottom: 0.033
  17863. }
  17864. },
  17865. },
  17866. [
  17867. {
  17868. name: "Normal",
  17869. height: math.unit(5 + 7 / 12, "feet"),
  17870. default: true
  17871. },
  17872. ]
  17873. ))
  17874. characterMakers.push(() => makeCharacter(
  17875. { name: "Weremeep" },
  17876. {
  17877. front: {
  17878. height: math.unit(8, "feet"),
  17879. weight: math.unit(600, "lb"),
  17880. name: "Front",
  17881. image: {
  17882. source: "./media/characters/weremeep/front.svg",
  17883. extra: 967 / 862,
  17884. bottom: 0.01
  17885. }
  17886. },
  17887. },
  17888. [
  17889. {
  17890. name: "Normal",
  17891. height: math.unit(8, "feet"),
  17892. default: true
  17893. },
  17894. {
  17895. name: "Lorg",
  17896. height: math.unit(12, "feet")
  17897. },
  17898. {
  17899. name: "Oh Lawd She Comin'",
  17900. height: math.unit(20, "feet")
  17901. },
  17902. ]
  17903. ))
  17904. characterMakers.push(() => makeCharacter(
  17905. { name: "Reza" },
  17906. {
  17907. front: {
  17908. height: math.unit(4, "feet"),
  17909. weight: math.unit(90, "lb"),
  17910. name: "Front",
  17911. image: {
  17912. source: "./media/characters/reza/front.svg",
  17913. extra: 1183 / 1111,
  17914. bottom: 0.017
  17915. }
  17916. },
  17917. back: {
  17918. height: math.unit(4, "feet"),
  17919. weight: math.unit(90, "lb"),
  17920. name: "Back",
  17921. image: {
  17922. source: "./media/characters/reza/back.svg",
  17923. extra: 1183 / 1111,
  17924. bottom: 0.01
  17925. }
  17926. },
  17927. },
  17928. [
  17929. {
  17930. name: "Normal",
  17931. height: math.unit(4, "feet"),
  17932. default: true
  17933. },
  17934. ]
  17935. ))
  17936. characterMakers.push(() => makeCharacter(
  17937. { name: "Athea" },
  17938. {
  17939. side: {
  17940. height: math.unit(15, "feet"),
  17941. weight: math.unit(14, "tons"),
  17942. name: "Side",
  17943. image: {
  17944. source: "./media/characters/athea/side.svg",
  17945. extra: 960 / 540,
  17946. bottom: 0.003
  17947. }
  17948. },
  17949. sitting: {
  17950. height: math.unit(6 * 2.85, "feet"),
  17951. weight: math.unit(14, "tons"),
  17952. name: "Sitting",
  17953. image: {
  17954. source: "./media/characters/athea/sitting.svg",
  17955. extra: 621 / 581,
  17956. bottom: 0.075
  17957. }
  17958. },
  17959. maw: {
  17960. height: math.unit(7.59498031496063, "feet"),
  17961. name: "Maw",
  17962. image: {
  17963. source: "./media/characters/athea/maw.svg"
  17964. }
  17965. },
  17966. },
  17967. [
  17968. {
  17969. name: "Lap Cat",
  17970. height: math.unit(2.5, "feet")
  17971. },
  17972. {
  17973. name: "Minimacro",
  17974. height: math.unit(15, "feet"),
  17975. default: true
  17976. },
  17977. {
  17978. name: "Macro",
  17979. height: math.unit(120, "feet")
  17980. },
  17981. {
  17982. name: "Macro+",
  17983. height: math.unit(640, "feet")
  17984. },
  17985. {
  17986. name: "Colossus",
  17987. height: math.unit(2.2, "miles")
  17988. },
  17989. ]
  17990. ))
  17991. characterMakers.push(() => makeCharacter(
  17992. { name: "Seroko" },
  17993. {
  17994. front: {
  17995. height: math.unit(8 + 8 / 12, "feet"),
  17996. weight: math.unit(130, "kg"),
  17997. name: "Front",
  17998. image: {
  17999. source: "./media/characters/seroko/front.svg",
  18000. extra: 1385 / 1280,
  18001. bottom: 0.025
  18002. }
  18003. },
  18004. back: {
  18005. height: math.unit(8 + 8 / 12, "feet"),
  18006. weight: math.unit(130, "kg"),
  18007. name: "Back",
  18008. image: {
  18009. source: "./media/characters/seroko/back.svg",
  18010. extra: 1369 / 1238,
  18011. bottom: 0.018
  18012. }
  18013. },
  18014. frontDressed: {
  18015. height: math.unit(8 + 8 / 12, "feet"),
  18016. weight: math.unit(130, "kg"),
  18017. name: "Front (Dressed)",
  18018. image: {
  18019. source: "./media/characters/seroko/front-dressed.svg",
  18020. extra: 1366 / 1275,
  18021. bottom: 0.03
  18022. }
  18023. },
  18024. },
  18025. [
  18026. {
  18027. name: "Normal",
  18028. height: math.unit(8 + 8 / 12, "feet"),
  18029. default: true
  18030. },
  18031. ]
  18032. ))
  18033. characterMakers.push(() => makeCharacter(
  18034. { name: "Quatzi" },
  18035. {
  18036. front: {
  18037. height: math.unit(5.5, "feet"),
  18038. weight: math.unit(160, "lb"),
  18039. name: "Front",
  18040. image: {
  18041. source: "./media/characters/quatzi/front.svg",
  18042. extra: 2346 / 2242,
  18043. bottom: 0.015
  18044. }
  18045. },
  18046. },
  18047. [
  18048. {
  18049. name: "Normal",
  18050. height: math.unit(5.5, "feet"),
  18051. default: true
  18052. },
  18053. {
  18054. name: "Big",
  18055. height: math.unit(7.7, "feet")
  18056. },
  18057. ]
  18058. ))
  18059. characterMakers.push(() => makeCharacter(
  18060. { name: "Sen" },
  18061. {
  18062. front: {
  18063. height: math.unit(5 + 11 / 12, "feet"),
  18064. weight: math.unit(180, "lb"),
  18065. name: "Front",
  18066. image: {
  18067. source: "./media/characters/sen/front.svg",
  18068. extra: 1321 / 1254,
  18069. bottom: 0.015
  18070. }
  18071. },
  18072. side: {
  18073. height: math.unit(5 + 11 / 12, "feet"),
  18074. weight: math.unit(180, "lb"),
  18075. name: "Side",
  18076. image: {
  18077. source: "./media/characters/sen/side.svg",
  18078. extra: 1321 / 1254,
  18079. bottom: 0.007
  18080. }
  18081. },
  18082. back: {
  18083. height: math.unit(5 + 11 / 12, "feet"),
  18084. weight: math.unit(180, "lb"),
  18085. name: "Back",
  18086. image: {
  18087. source: "./media/characters/sen/back.svg",
  18088. extra: 1321 / 1254
  18089. }
  18090. },
  18091. },
  18092. [
  18093. {
  18094. name: "Normal",
  18095. height: math.unit(5 + 11 / 12, "feet"),
  18096. default: true
  18097. },
  18098. ]
  18099. ))
  18100. characterMakers.push(() => makeCharacter(
  18101. { name: "Fruity" },
  18102. {
  18103. front: {
  18104. height: math.unit(166.6, "cm"),
  18105. weight: math.unit(66.6, "kg"),
  18106. name: "Front",
  18107. image: {
  18108. source: "./media/characters/fruity/front.svg",
  18109. extra: 1510 / 1386,
  18110. bottom: 0.04
  18111. }
  18112. },
  18113. back: {
  18114. height: math.unit(166.6, "cm"),
  18115. weight: math.unit(66.6, "lb"),
  18116. name: "Back",
  18117. image: {
  18118. source: "./media/characters/fruity/back.svg",
  18119. extra: 1563 / 1435,
  18120. bottom: 0.005
  18121. }
  18122. },
  18123. },
  18124. [
  18125. {
  18126. name: "Normal",
  18127. height: math.unit(166.6, "cm"),
  18128. default: true
  18129. },
  18130. {
  18131. name: "Demonic",
  18132. height: math.unit(166.6, "feet")
  18133. },
  18134. ]
  18135. ))
  18136. characterMakers.push(() => makeCharacter(
  18137. { name: "Zost" },
  18138. {
  18139. side: {
  18140. height: math.unit(10, "feet"),
  18141. weight: math.unit(500, "lb"),
  18142. name: "Side",
  18143. image: {
  18144. source: "./media/characters/zost/side.svg",
  18145. extra: 966 / 880,
  18146. bottom: 0.075
  18147. }
  18148. },
  18149. mawFront: {
  18150. height: math.unit(1.08, "meters"),
  18151. name: "Maw (Front)",
  18152. image: {
  18153. source: "./media/characters/zost/maw-front.svg"
  18154. }
  18155. },
  18156. mawSide: {
  18157. height: math.unit(2.66, "feet"),
  18158. name: "Maw (Side)",
  18159. image: {
  18160. source: "./media/characters/zost/maw-side.svg"
  18161. }
  18162. },
  18163. },
  18164. [
  18165. {
  18166. name: "Normal",
  18167. height: math.unit(10, "feet"),
  18168. default: true
  18169. },
  18170. ]
  18171. ))
  18172. characterMakers.push(() => makeCharacter(
  18173. { name: "Luci" },
  18174. {
  18175. front: {
  18176. height: math.unit(5 + 4 / 12, "feet"),
  18177. weight: math.unit(120, "lb"),
  18178. name: "Front",
  18179. image: {
  18180. source: "./media/characters/luci/front.svg",
  18181. extra: 1985 / 1884,
  18182. bottom: 0.04
  18183. }
  18184. },
  18185. back: {
  18186. height: math.unit(5 + 4 / 12, "feet"),
  18187. weight: math.unit(120, "lb"),
  18188. name: "Back",
  18189. image: {
  18190. source: "./media/characters/luci/back.svg",
  18191. extra: 1892 / 1791,
  18192. bottom: 0.002
  18193. }
  18194. },
  18195. },
  18196. [
  18197. {
  18198. name: "Normal",
  18199. height: math.unit(5 + 4 / 12, "feet"),
  18200. default: true
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "2th" },
  18206. {
  18207. front: {
  18208. height: math.unit(1500, "feet"),
  18209. weight: math.unit(3.8e6, "tons"),
  18210. name: "Front",
  18211. image: {
  18212. source: "./media/characters/2th/front.svg",
  18213. extra: 3489 / 3350,
  18214. bottom: 0.1
  18215. }
  18216. },
  18217. foot: {
  18218. height: math.unit(461, "feet"),
  18219. name: "Foot",
  18220. image: {
  18221. source: "./media/characters/2th/foot.svg"
  18222. }
  18223. },
  18224. },
  18225. [
  18226. {
  18227. name: "\"Micro\"",
  18228. height: math.unit(15 + 7 / 12, "feet")
  18229. },
  18230. {
  18231. name: "Normal",
  18232. height: math.unit(1500, "feet"),
  18233. default: true
  18234. },
  18235. {
  18236. name: "Macro",
  18237. height: math.unit(5000, "feet")
  18238. },
  18239. {
  18240. name: "Megamacro",
  18241. height: math.unit(15, "miles")
  18242. },
  18243. {
  18244. name: "Gigamacro",
  18245. height: math.unit(4000, "miles")
  18246. },
  18247. {
  18248. name: "Galactic",
  18249. height: math.unit(50, "AU")
  18250. },
  18251. ]
  18252. ))
  18253. characterMakers.push(() => makeCharacter(
  18254. { name: "Amethyst" },
  18255. {
  18256. front: {
  18257. height: math.unit(5 + 6 / 12, "feet"),
  18258. weight: math.unit(220, "lb"),
  18259. name: "Front",
  18260. image: {
  18261. source: "./media/characters/amethyst/front.svg",
  18262. extra: 2078 / 2040,
  18263. bottom: 0.045
  18264. }
  18265. },
  18266. back: {
  18267. height: math.unit(5 + 6 / 12, "feet"),
  18268. weight: math.unit(220, "lb"),
  18269. name: "Back",
  18270. image: {
  18271. source: "./media/characters/amethyst/back.svg",
  18272. extra: 2021 / 1989,
  18273. bottom: 0.02
  18274. }
  18275. },
  18276. },
  18277. [
  18278. {
  18279. name: "Normal",
  18280. height: math.unit(5 + 6 / 12, "feet"),
  18281. default: true
  18282. },
  18283. ]
  18284. ))
  18285. characterMakers.push(() => makeCharacter(
  18286. { name: "Yumi Akiyama" },
  18287. {
  18288. front: {
  18289. height: math.unit(4 + 11 / 12, "feet"),
  18290. weight: math.unit(120, "lb"),
  18291. name: "Front",
  18292. image: {
  18293. source: "./media/characters/yumi-akiyama/front.svg",
  18294. extra: 1327 / 1235,
  18295. bottom: 0.02
  18296. }
  18297. },
  18298. back: {
  18299. height: math.unit(4 + 11 / 12, "feet"),
  18300. weight: math.unit(120, "lb"),
  18301. name: "Back",
  18302. image: {
  18303. source: "./media/characters/yumi-akiyama/back.svg",
  18304. extra: 1287 / 1245,
  18305. bottom: 0.002
  18306. }
  18307. },
  18308. },
  18309. [
  18310. {
  18311. name: "Galactic",
  18312. height: math.unit(50, "galaxies"),
  18313. default: true
  18314. },
  18315. {
  18316. name: "Universal",
  18317. height: math.unit(100, "universes")
  18318. },
  18319. ]
  18320. ))
  18321. characterMakers.push(() => makeCharacter(
  18322. { name: "Rifter Yrmori" },
  18323. {
  18324. front: {
  18325. height: math.unit(8, "feet"),
  18326. weight: math.unit(500, "lb"),
  18327. name: "Front",
  18328. image: {
  18329. source: "./media/characters/rifter-yrmori/front.svg",
  18330. extra: 1180 / 1125,
  18331. bottom: 0.02
  18332. }
  18333. },
  18334. back: {
  18335. height: math.unit(8, "feet"),
  18336. weight: math.unit(500, "lb"),
  18337. name: "Back",
  18338. image: {
  18339. source: "./media/characters/rifter-yrmori/back.svg",
  18340. extra: 1190 / 1145,
  18341. bottom: 0.001
  18342. }
  18343. },
  18344. wings: {
  18345. height: math.unit(7.75, "feet"),
  18346. weight: math.unit(500, "lb"),
  18347. name: "Wings",
  18348. image: {
  18349. source: "./media/characters/rifter-yrmori/wings.svg",
  18350. extra: 1357 / 1285
  18351. }
  18352. },
  18353. maw: {
  18354. height: math.unit(0.8, "feet"),
  18355. name: "Maw",
  18356. image: {
  18357. source: "./media/characters/rifter-yrmori/maw.svg"
  18358. }
  18359. },
  18360. },
  18361. [
  18362. {
  18363. name: "Normal",
  18364. height: math.unit(8, "feet"),
  18365. default: true
  18366. },
  18367. {
  18368. name: "Macro",
  18369. height: math.unit(42, "meters")
  18370. },
  18371. ]
  18372. ))
  18373. characterMakers.push(() => makeCharacter(
  18374. { name: "Tahajin" },
  18375. {
  18376. were: {
  18377. height: math.unit(25 + 6 / 12, "feet"),
  18378. weight: math.unit(10000, "lb"),
  18379. name: "Were",
  18380. image: {
  18381. source: "./media/characters/tahajin/were.svg",
  18382. extra: 801 / 770,
  18383. bottom: 0.042
  18384. }
  18385. },
  18386. aquatic: {
  18387. height: math.unit(6 + 4 / 12, "feet"),
  18388. weight: math.unit(160, "lb"),
  18389. name: "Aquatic",
  18390. image: {
  18391. source: "./media/characters/tahajin/aquatic.svg",
  18392. extra: 572 / 542,
  18393. bottom: 0.04
  18394. }
  18395. },
  18396. chow: {
  18397. height: math.unit(8 + 11 / 12, "feet"),
  18398. weight: math.unit(450, "lb"),
  18399. name: "Chow",
  18400. image: {
  18401. source: "./media/characters/tahajin/chow.svg",
  18402. extra: 660 / 640,
  18403. bottom: 0.015
  18404. }
  18405. },
  18406. demiNaga: {
  18407. height: math.unit(6 + 8 / 12, "feet"),
  18408. weight: math.unit(300, "lb"),
  18409. name: "Demi Naga",
  18410. image: {
  18411. source: "./media/characters/tahajin/demi-naga.svg",
  18412. extra: 643 / 615,
  18413. bottom: 0.1
  18414. }
  18415. },
  18416. data: {
  18417. height: math.unit(5, "inches"),
  18418. weight: math.unit(0.1, "lb"),
  18419. name: "Data",
  18420. image: {
  18421. source: "./media/characters/tahajin/data.svg"
  18422. }
  18423. },
  18424. fluu: {
  18425. height: math.unit(5 + 7 / 12, "feet"),
  18426. weight: math.unit(140, "lb"),
  18427. name: "Fluu",
  18428. image: {
  18429. source: "./media/characters/tahajin/fluu.svg",
  18430. extra: 628 / 592,
  18431. bottom: 0.02
  18432. }
  18433. },
  18434. starWarrior: {
  18435. height: math.unit(4 + 5 / 12, "feet"),
  18436. weight: math.unit(50, "lb"),
  18437. name: "Star Warrior",
  18438. image: {
  18439. source: "./media/characters/tahajin/star-warrior.svg"
  18440. }
  18441. },
  18442. },
  18443. [
  18444. {
  18445. name: "Normal",
  18446. height: math.unit(25 + 6 / 12, "feet"),
  18447. default: true
  18448. },
  18449. ]
  18450. ))
  18451. characterMakers.push(() => makeCharacter(
  18452. { name: "Gabira" },
  18453. {
  18454. front: {
  18455. height: math.unit(8, "feet"),
  18456. weight: math.unit(350, "lb"),
  18457. name: "Front",
  18458. image: {
  18459. source: "./media/characters/gabira/front.svg",
  18460. extra: 608 / 580,
  18461. bottom: 0.03
  18462. }
  18463. },
  18464. back: {
  18465. height: math.unit(8, "feet"),
  18466. weight: math.unit(350, "lb"),
  18467. name: "Back",
  18468. image: {
  18469. source: "./media/characters/gabira/back.svg",
  18470. extra: 608 / 580,
  18471. bottom: 0.03
  18472. }
  18473. },
  18474. },
  18475. [
  18476. {
  18477. name: "Normal",
  18478. height: math.unit(8, "feet"),
  18479. default: true
  18480. },
  18481. ]
  18482. ))
  18483. characterMakers.push(() => makeCharacter(
  18484. { name: "Sasha Katraine" },
  18485. {
  18486. front: {
  18487. height: math.unit(5 + 3 / 12, "feet"),
  18488. weight: math.unit(137, "lb"),
  18489. name: "Front",
  18490. image: {
  18491. source: "./media/characters/sasha-katraine/front.svg",
  18492. bottom: 0.045
  18493. }
  18494. },
  18495. },
  18496. [
  18497. {
  18498. name: "Micro",
  18499. height: math.unit(5, "inches")
  18500. },
  18501. {
  18502. name: "Normal",
  18503. height: math.unit(5 + 3 / 12, "feet"),
  18504. default: true
  18505. },
  18506. ]
  18507. ))
  18508. characterMakers.push(() => makeCharacter(
  18509. { name: "Der" },
  18510. {
  18511. side: {
  18512. height: math.unit(4, "inches"),
  18513. weight: math.unit(200, "grams"),
  18514. name: "Side",
  18515. image: {
  18516. source: "./media/characters/der/side.svg",
  18517. extra: 719 / 400,
  18518. bottom: 30.6 / 749.9187
  18519. }
  18520. },
  18521. },
  18522. [
  18523. {
  18524. name: "Micro",
  18525. height: math.unit(4, "inches"),
  18526. default: true
  18527. },
  18528. ]
  18529. ))
  18530. characterMakers.push(() => makeCharacter(
  18531. { name: "Fixerdragon" },
  18532. {
  18533. side: {
  18534. height: math.unit(30, "meters"),
  18535. weight: math.unit(700, "tonnes"),
  18536. name: "Side",
  18537. image: {
  18538. source: "./media/characters/fixerdragon/side.svg",
  18539. extra: (1293.0514 - 116.03) / 1106.86,
  18540. bottom: 116.03 / 1293.0514
  18541. }
  18542. },
  18543. },
  18544. [
  18545. {
  18546. name: "Planck",
  18547. height: math.unit(1.6e-35, "meters")
  18548. },
  18549. {
  18550. name: "Micro",
  18551. height: math.unit(0.4, "meters")
  18552. },
  18553. {
  18554. name: "Normal",
  18555. height: math.unit(30, "meters"),
  18556. default: true
  18557. },
  18558. {
  18559. name: "Megamacro",
  18560. height: math.unit(1.2, "megameters")
  18561. },
  18562. {
  18563. name: "Teramacro",
  18564. height: math.unit(130, "terameters")
  18565. },
  18566. {
  18567. name: "Yottamacro",
  18568. height: math.unit(6200, "yottameters")
  18569. },
  18570. ]
  18571. ));
  18572. characterMakers.push(() => makeCharacter(
  18573. { name: "Kite" },
  18574. {
  18575. front: {
  18576. height: math.unit(8, "feet"),
  18577. weight: math.unit(250, "lb"),
  18578. name: "Front",
  18579. image: {
  18580. source: "./media/characters/kite/front.svg",
  18581. extra: 2796 / 2659,
  18582. bottom: 0.002
  18583. }
  18584. },
  18585. },
  18586. [
  18587. {
  18588. name: "Normal",
  18589. height: math.unit(8, "feet"),
  18590. default: true
  18591. },
  18592. {
  18593. name: "Macro",
  18594. height: math.unit(360, "feet")
  18595. },
  18596. {
  18597. name: "Megamacro",
  18598. height: math.unit(1500, "feet")
  18599. },
  18600. ]
  18601. ))
  18602. characterMakers.push(() => makeCharacter(
  18603. { name: "Poojawa Vynar" },
  18604. {
  18605. front: {
  18606. height: math.unit(5 + 10 / 12, "feet"),
  18607. weight: math.unit(150, "lb"),
  18608. name: "Front",
  18609. image: {
  18610. source: "./media/characters/poojawa-vynar/front.svg",
  18611. extra: (1506.1547 - 55) / 1356.6,
  18612. bottom: 55 / 1506.1547
  18613. }
  18614. },
  18615. frontTailless: {
  18616. height: math.unit(5 + 10 / 12, "feet"),
  18617. weight: math.unit(150, "lb"),
  18618. name: "Front (Tailless)",
  18619. image: {
  18620. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18621. extra: (1506.1547 - 55) / 1356.6,
  18622. bottom: 55 / 1506.1547
  18623. }
  18624. },
  18625. },
  18626. [
  18627. {
  18628. name: "Normal",
  18629. height: math.unit(5 + 10 / 12, "feet"),
  18630. default: true
  18631. },
  18632. ]
  18633. ))
  18634. characterMakers.push(() => makeCharacter(
  18635. { name: "Violette" },
  18636. {
  18637. front: {
  18638. height: math.unit(293, "meters"),
  18639. weight: math.unit(70400, "tons"),
  18640. name: "Front",
  18641. image: {
  18642. source: "./media/characters/violette/front.svg",
  18643. extra: 1227 / 1180,
  18644. bottom: 0.005
  18645. }
  18646. },
  18647. back: {
  18648. height: math.unit(293, "meters"),
  18649. weight: math.unit(70400, "tons"),
  18650. name: "Back",
  18651. image: {
  18652. source: "./media/characters/violette/back.svg",
  18653. extra: 1227 / 1180,
  18654. bottom: 0.005
  18655. }
  18656. },
  18657. },
  18658. [
  18659. {
  18660. name: "Macro",
  18661. height: math.unit(293, "meters"),
  18662. default: true
  18663. },
  18664. ]
  18665. ))
  18666. characterMakers.push(() => makeCharacter(
  18667. { name: "Alessandra" },
  18668. {
  18669. front: {
  18670. height: math.unit(1050, "feet"),
  18671. weight: math.unit(200000, "tons"),
  18672. name: "Front",
  18673. image: {
  18674. source: "./media/characters/alessandra/front.svg",
  18675. extra: 960 / 912,
  18676. bottom: 0.06
  18677. }
  18678. },
  18679. },
  18680. [
  18681. {
  18682. name: "Macro",
  18683. height: math.unit(1050, "feet")
  18684. },
  18685. {
  18686. name: "Macro+",
  18687. height: math.unit(900, "meters"),
  18688. default: true
  18689. },
  18690. ]
  18691. ))
  18692. characterMakers.push(() => makeCharacter(
  18693. { name: "Person", species: "Catdragon" },
  18694. {
  18695. front: {
  18696. height: math.unit(5, "feet"),
  18697. weight: math.unit(187, "lb"),
  18698. name: "Front",
  18699. image: {
  18700. source: "./media/characters/person/front.svg",
  18701. extra: 3087 / 2945,
  18702. bottom: 91 / 3181
  18703. }
  18704. },
  18705. },
  18706. [
  18707. {
  18708. name: "Micro",
  18709. height: math.unit(3, "inches")
  18710. },
  18711. {
  18712. name: "Normal",
  18713. height: math.unit(5, "feet"),
  18714. default: true
  18715. },
  18716. {
  18717. name: "Macro",
  18718. height: math.unit(90, "feet")
  18719. },
  18720. {
  18721. name: "Max Size",
  18722. height: math.unit(280, "feet")
  18723. },
  18724. ]
  18725. ))
  18726. characterMakers.push(() => makeCharacter(
  18727. { name: "Ty" },
  18728. {
  18729. front: {
  18730. height: math.unit(4.5, "meters"),
  18731. weight: math.unit(3200, "lb"),
  18732. name: "Front",
  18733. image: {
  18734. source: "./media/characters/ty/front.svg",
  18735. extra: 1038 / 960,
  18736. bottom: 31.156 / 1068
  18737. }
  18738. },
  18739. back: {
  18740. height: math.unit(4.5, "meters"),
  18741. weight: math.unit(3200, "lb"),
  18742. name: "Back",
  18743. image: {
  18744. source: "./media/characters/ty/back.svg",
  18745. extra: 1044 / 966,
  18746. bottom: 7.48 / 1049
  18747. }
  18748. },
  18749. },
  18750. [
  18751. {
  18752. name: "Normal",
  18753. height: math.unit(4.5, "meters"),
  18754. default: true
  18755. },
  18756. ]
  18757. ))
  18758. characterMakers.push(() => makeCharacter(
  18759. { name: "Rocky" },
  18760. {
  18761. front: {
  18762. height: math.unit(5 + 4 / 12, "feet"),
  18763. weight: math.unit(115, "lb"),
  18764. name: "Front",
  18765. image: {
  18766. source: "./media/characters/rocky/front.svg",
  18767. extra: 1012 / 975,
  18768. bottom: 54 / 1066
  18769. }
  18770. },
  18771. },
  18772. [
  18773. {
  18774. name: "Normal",
  18775. height: math.unit(5 + 4 / 12, "feet"),
  18776. default: true
  18777. },
  18778. ]
  18779. ))
  18780. characterMakers.push(() => makeCharacter(
  18781. { name: "Ruin" },
  18782. {
  18783. upright: {
  18784. height: math.unit(6, "meters"),
  18785. weight: math.unit(4000, "kg"),
  18786. name: "Upright",
  18787. image: {
  18788. source: "./media/characters/ruin/upright.svg",
  18789. extra: 668 / 661,
  18790. bottom: 42 / 799.8396
  18791. }
  18792. },
  18793. },
  18794. [
  18795. {
  18796. name: "Normal",
  18797. height: math.unit(6, "meters"),
  18798. default: true
  18799. },
  18800. ]
  18801. ))
  18802. characterMakers.push(() => makeCharacter(
  18803. { name: "Robin" },
  18804. {
  18805. front: {
  18806. height: math.unit(5, "feet"),
  18807. weight: math.unit(106, "lb"),
  18808. name: "Front",
  18809. image: {
  18810. source: "./media/characters/robin/front.svg",
  18811. extra: 862 / 799,
  18812. bottom: 42.4 / 914.8856
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(5, "feet"),
  18820. default: true
  18821. },
  18822. ]
  18823. ))
  18824. characterMakers.push(() => makeCharacter(
  18825. { name: "Saian" },
  18826. {
  18827. side: {
  18828. height: math.unit(3, "feet"),
  18829. weight: math.unit(225, "lb"),
  18830. name: "Side",
  18831. image: {
  18832. source: "./media/characters/saian/side.svg",
  18833. extra: 566 / 356,
  18834. bottom: 79.7 / 643
  18835. }
  18836. },
  18837. maw: {
  18838. height: math.unit(2.85, "feet"),
  18839. name: "Maw",
  18840. image: {
  18841. source: "./media/characters/saian/maw.svg"
  18842. }
  18843. },
  18844. },
  18845. [
  18846. {
  18847. name: "Normal",
  18848. height: math.unit(3, "feet"),
  18849. default: true
  18850. },
  18851. ]
  18852. ))
  18853. characterMakers.push(() => makeCharacter(
  18854. { name: "Equus Silvermane" },
  18855. {
  18856. side: {
  18857. height: math.unit(8, "feet"),
  18858. weight: math.unit(300, "lb"),
  18859. name: "Side",
  18860. image: {
  18861. source: "./media/characters/equus-silvermane/side.svg",
  18862. extra: 2176 / 2050,
  18863. bottom: 65.7 / 2245
  18864. }
  18865. },
  18866. front: {
  18867. height: math.unit(8, "feet"),
  18868. weight: math.unit(300, "lb"),
  18869. name: "Front",
  18870. image: {
  18871. source: "./media/characters/equus-silvermane/front.svg",
  18872. extra: 4633 / 4400,
  18873. bottom: 71.3 / 4706.915
  18874. }
  18875. },
  18876. sideStepping: {
  18877. height: math.unit(8, "feet"),
  18878. weight: math.unit(300, "lb"),
  18879. name: "Side (Stepping)",
  18880. image: {
  18881. source: "./media/characters/equus-silvermane/side-stepping.svg",
  18882. extra: 1968 / 1860,
  18883. bottom: 16.4 / 1989
  18884. }
  18885. },
  18886. },
  18887. [
  18888. {
  18889. name: "Normal",
  18890. height: math.unit(8, "feet")
  18891. },
  18892. {
  18893. name: "Minimacro",
  18894. height: math.unit(75, "feet"),
  18895. default: true
  18896. },
  18897. {
  18898. name: "Macro",
  18899. height: math.unit(150, "feet")
  18900. },
  18901. {
  18902. name: "Macro+",
  18903. height: math.unit(1000, "feet")
  18904. },
  18905. {
  18906. name: "Megamacro",
  18907. height: math.unit(1, "mile")
  18908. },
  18909. ]
  18910. ))
  18911. characterMakers.push(() => makeCharacter(
  18912. { name: "Windar" },
  18913. {
  18914. side: {
  18915. height: math.unit(20, "feet"),
  18916. weight: math.unit(30000, "kg"),
  18917. name: "Side",
  18918. image: {
  18919. source: "./media/characters/windar/side.svg",
  18920. extra: 1491 / 1248,
  18921. bottom: 82.56 / 1568
  18922. }
  18923. },
  18924. },
  18925. [
  18926. {
  18927. name: "Normal",
  18928. height: math.unit(20, "feet"),
  18929. default: true
  18930. },
  18931. ]
  18932. ))
  18933. characterMakers.push(() => makeCharacter(
  18934. { name: "Melody" },
  18935. {
  18936. side: {
  18937. height: math.unit(15.66, "feet"),
  18938. weight: math.unit(150, "lb"),
  18939. name: "Side",
  18940. image: {
  18941. source: "./media/characters/melody/side.svg",
  18942. extra: 1097 / 944,
  18943. bottom: 11.8 / 1109
  18944. }
  18945. },
  18946. sideOutfit: {
  18947. height: math.unit(15.66, "feet"),
  18948. weight: math.unit(150, "lb"),
  18949. name: "Side (Outfit)",
  18950. image: {
  18951. source: "./media/characters/melody/side-outfit.svg",
  18952. extra: 1097 / 944,
  18953. bottom: 11.8 / 1109
  18954. }
  18955. },
  18956. },
  18957. [
  18958. {
  18959. name: "Normal",
  18960. height: math.unit(15.66, "feet"),
  18961. default: true
  18962. },
  18963. ]
  18964. ))
  18965. characterMakers.push(() => makeCharacter(
  18966. { name: "Windera" },
  18967. {
  18968. front: {
  18969. height: math.unit(8, "feet"),
  18970. weight: math.unit(325, "lb"),
  18971. name: "Front",
  18972. image: {
  18973. source: "./media/characters/windera/front.svg",
  18974. extra: 3180 / 2845,
  18975. bottom: 178 / 3365
  18976. }
  18977. },
  18978. },
  18979. [
  18980. {
  18981. name: "Normal",
  18982. height: math.unit(8, "feet"),
  18983. default: true
  18984. },
  18985. ]
  18986. ))
  18987. characterMakers.push(() => makeCharacter(
  18988. { name: "Sonear" },
  18989. {
  18990. front: {
  18991. height: math.unit(28.75, "feet"),
  18992. weight: math.unit(2000, "kg"),
  18993. name: "Front",
  18994. image: {
  18995. source: "./media/characters/sonear/front.svg",
  18996. extra: 1041.1 / 964.9,
  18997. bottom: 53.7 / 1096.6
  18998. }
  18999. },
  19000. },
  19001. [
  19002. {
  19003. name: "Normal",
  19004. height: math.unit(28.75, "feet"),
  19005. default: true
  19006. },
  19007. ]
  19008. ))
  19009. characterMakers.push(() => makeCharacter(
  19010. { name: "Kanara" },
  19011. {
  19012. side: {
  19013. height: math.unit(25.5, "feet"),
  19014. weight: math.unit(23000, "kg"),
  19015. name: "Side",
  19016. image: {
  19017. source: "./media/characters/kanara/side.svg"
  19018. }
  19019. },
  19020. },
  19021. [
  19022. {
  19023. name: "Normal",
  19024. height: math.unit(25.5, "feet"),
  19025. default: true
  19026. },
  19027. ]
  19028. ))
  19029. characterMakers.push(() => makeCharacter(
  19030. { name: "Ereus" },
  19031. {
  19032. side: {
  19033. height: math.unit(10, "feet"),
  19034. weight: math.unit(1000, "kg"),
  19035. name: "Side",
  19036. image: {
  19037. source: "./media/characters/ereus/side.svg",
  19038. extra: 1157 / 959,
  19039. bottom: 153 / 1312.5
  19040. }
  19041. },
  19042. },
  19043. [
  19044. {
  19045. name: "Normal",
  19046. height: math.unit(10, "feet"),
  19047. default: true
  19048. },
  19049. ]
  19050. ))
  19051. characterMakers.push(() => makeCharacter(
  19052. { name: "E-ter" },
  19053. {
  19054. side: {
  19055. height: math.unit(4.5, "feet"),
  19056. weight: math.unit(500, "lb"),
  19057. name: "Side",
  19058. image: {
  19059. source: "./media/characters/e-ter/side.svg",
  19060. extra: 1550 / 1248,
  19061. bottom: 146 / 1694
  19062. }
  19063. },
  19064. },
  19065. [
  19066. {
  19067. name: "Normal",
  19068. height: math.unit(4.5, "feet"),
  19069. default: true
  19070. },
  19071. ]
  19072. ))
  19073. characterMakers.push(() => makeCharacter(
  19074. { name: "Yamie" },
  19075. {
  19076. side: {
  19077. height: math.unit(9.7, "feet"),
  19078. weight: math.unit(4000, "kg"),
  19079. name: "Side",
  19080. image: {
  19081. source: "./media/characters/yamie/side.svg"
  19082. }
  19083. },
  19084. },
  19085. [
  19086. {
  19087. name: "Normal",
  19088. height: math.unit(9.7, "feet"),
  19089. default: true
  19090. },
  19091. ]
  19092. ))
  19093. characterMakers.push(() => makeCharacter(
  19094. { name: "Anders" },
  19095. {
  19096. front: {
  19097. height: math.unit(50, "feet"),
  19098. weight: math.unit(50000, "kg"),
  19099. name: "Front",
  19100. image: {
  19101. source: "./media/characters/anders/front.svg",
  19102. extra: 570 / 539,
  19103. bottom: 14.7 / 586.7
  19104. }
  19105. },
  19106. },
  19107. [
  19108. {
  19109. name: "Large",
  19110. height: math.unit(50, "feet")
  19111. },
  19112. {
  19113. name: "Macro",
  19114. height: math.unit(2000, "feet"),
  19115. default: true
  19116. },
  19117. {
  19118. name: "Megamacro",
  19119. height: math.unit(12, "miles")
  19120. },
  19121. ]
  19122. ))
  19123. characterMakers.push(() => makeCharacter(
  19124. { name: "Reban" },
  19125. {
  19126. front: {
  19127. height: math.unit(7 + 2 / 12, "feet"),
  19128. weight: math.unit(300, "lb"),
  19129. name: "Front",
  19130. image: {
  19131. source: "./media/characters/reban/front.svg",
  19132. extra: 516 / 487,
  19133. bottom: 42.82 / 558.356
  19134. }
  19135. },
  19136. dick: {
  19137. height: math.unit(7 / 5, "feet"),
  19138. name: "Dick",
  19139. image: {
  19140. source: "./media/characters/reban/dick.svg"
  19141. }
  19142. },
  19143. },
  19144. [
  19145. {
  19146. name: "Natural Height",
  19147. height: math.unit(7 + 2 / 12, "feet")
  19148. },
  19149. {
  19150. name: "Macro",
  19151. height: math.unit(500, "feet"),
  19152. default: true
  19153. },
  19154. {
  19155. name: "Canon Height",
  19156. height: math.unit(50, "AU")
  19157. },
  19158. ]
  19159. ))
  19160. characterMakers.push(() => makeCharacter(
  19161. { name: "Terrance Keayes" },
  19162. {
  19163. front: {
  19164. height: math.unit(6, "feet"),
  19165. weight: math.unit(150, "lb"),
  19166. name: "Front",
  19167. image: {
  19168. source: "./media/characters/terrance-keayes/front.svg",
  19169. extra: 1.005,
  19170. bottom: 151 / 1615
  19171. }
  19172. },
  19173. side: {
  19174. height: math.unit(6, "feet"),
  19175. weight: math.unit(150, "lb"),
  19176. name: "Side",
  19177. image: {
  19178. source: "./media/characters/terrance-keayes/side.svg",
  19179. extra: 1.005,
  19180. bottom: 129.4 / 1544
  19181. }
  19182. },
  19183. back: {
  19184. height: math.unit(6, "feet"),
  19185. weight: math.unit(150, "lb"),
  19186. name: "Back",
  19187. image: {
  19188. source: "./media/characters/terrance-keayes/back.svg",
  19189. extra: 1.005,
  19190. bottom: 58.4 / 1557.3
  19191. }
  19192. },
  19193. dick: {
  19194. height: math.unit(6 * 0.208, "feet"),
  19195. name: "Dick",
  19196. image: {
  19197. source: "./media/characters/terrance-keayes/dick.svg"
  19198. }
  19199. },
  19200. },
  19201. [
  19202. {
  19203. name: "Canon Height",
  19204. height: math.unit(35, "miles"),
  19205. default: true
  19206. },
  19207. ]
  19208. ))
  19209. characterMakers.push(() => makeCharacter(
  19210. { name: "Ofelia" },
  19211. {
  19212. front: {
  19213. height: math.unit(6, "feet"),
  19214. weight: math.unit(150, "lb"),
  19215. name: "Front",
  19216. image: {
  19217. source: "./media/characters/ofelia/front.svg",
  19218. extra: 546 / 541,
  19219. bottom: 39 / 583
  19220. }
  19221. },
  19222. back: {
  19223. height: math.unit(6, "feet"),
  19224. weight: math.unit(150, "lb"),
  19225. name: "Back",
  19226. image: {
  19227. source: "./media/characters/ofelia/back.svg",
  19228. extra: 564 / 559.5,
  19229. bottom: 8.69 / 573.02
  19230. }
  19231. },
  19232. maw: {
  19233. height: math.unit(1, "feet"),
  19234. name: "Maw",
  19235. image: {
  19236. source: "./media/characters/ofelia/maw.svg"
  19237. }
  19238. },
  19239. foot: {
  19240. height: math.unit(1.949, "feet"),
  19241. name: "Foot",
  19242. image: {
  19243. source: "./media/characters/ofelia/foot.svg"
  19244. }
  19245. },
  19246. },
  19247. [
  19248. {
  19249. name: "Canon Height",
  19250. height: math.unit(2000, "miles"),
  19251. default: true
  19252. },
  19253. ]
  19254. ))
  19255. characterMakers.push(() => makeCharacter(
  19256. { name: "Samuel" },
  19257. {
  19258. front: {
  19259. height: math.unit(6, "feet"),
  19260. weight: math.unit(150, "lb"),
  19261. name: "Front",
  19262. image: {
  19263. source: "./media/characters/samuel/front.svg",
  19264. extra: 265 / 258,
  19265. bottom: 2 / 266.1566
  19266. }
  19267. },
  19268. },
  19269. [
  19270. {
  19271. name: "Macro",
  19272. height: math.unit(100, "feet"),
  19273. default: true
  19274. },
  19275. {
  19276. name: "Full Size",
  19277. height: math.unit(1000, "miles")
  19278. },
  19279. ]
  19280. ))
  19281. characterMakers.push(() => makeCharacter(
  19282. { name: "Beishir Kiel" },
  19283. {
  19284. front: {
  19285. height: math.unit(6, "feet"),
  19286. weight: math.unit(300, "lb"),
  19287. name: "Front",
  19288. image: {
  19289. source: "./media/characters/beishir-kiel/front.svg",
  19290. extra: 569 / 547,
  19291. bottom: 41.9 / 609
  19292. }
  19293. },
  19294. maw: {
  19295. height: math.unit(6 * 0.202, "feet"),
  19296. name: "Maw",
  19297. image: {
  19298. source: "./media/characters/beishir-kiel/maw.svg"
  19299. }
  19300. },
  19301. },
  19302. [
  19303. {
  19304. name: "Macro",
  19305. height: math.unit(300, "feet"),
  19306. default: true
  19307. },
  19308. ]
  19309. ))
  19310. characterMakers.push(() => makeCharacter(
  19311. { name: "Logan Grey" },
  19312. {
  19313. front: {
  19314. height: math.unit(5 + 8 / 12, "feet"),
  19315. weight: math.unit(120, "lb"),
  19316. name: "Front",
  19317. image: {
  19318. source: "./media/characters/logan-grey/front.svg",
  19319. extra: 2539 / 2393,
  19320. bottom: 97.6 / 2636.37
  19321. }
  19322. },
  19323. frontAlt: {
  19324. height: math.unit(5 + 8 / 12, "feet"),
  19325. weight: math.unit(120, "lb"),
  19326. name: "Front (Alt)",
  19327. image: {
  19328. source: "./media/characters/logan-grey/front-alt.svg",
  19329. extra: 958 / 893,
  19330. bottom: 15 / 970.768
  19331. }
  19332. },
  19333. back: {
  19334. height: math.unit(5 + 8 / 12, "feet"),
  19335. weight: math.unit(120, "lb"),
  19336. name: "Back",
  19337. image: {
  19338. source: "./media/characters/logan-grey/back.svg",
  19339. extra: 958 / 893,
  19340. bottom: 2.1881 / 970.9788
  19341. }
  19342. },
  19343. dick: {
  19344. height: math.unit(1.437, "feet"),
  19345. name: "Dick",
  19346. image: {
  19347. source: "./media/characters/logan-grey/dick.svg"
  19348. }
  19349. },
  19350. },
  19351. [
  19352. {
  19353. name: "Normal",
  19354. height: math.unit(5 + 8 / 12, "feet")
  19355. },
  19356. {
  19357. name: "The 500 Foot Femboy",
  19358. height: math.unit(500, "feet"),
  19359. default: true
  19360. },
  19361. {
  19362. name: "Megmacro",
  19363. height: math.unit(20, "miles")
  19364. },
  19365. ]
  19366. ))
  19367. characterMakers.push(() => makeCharacter(
  19368. { name: "Draganta" },
  19369. {
  19370. front: {
  19371. height: math.unit(8 + 2 / 12, "feet"),
  19372. weight: math.unit(275, "lb"),
  19373. name: "Front",
  19374. image: {
  19375. source: "./media/characters/draganta/front.svg",
  19376. extra: 1177 / 1135,
  19377. bottom: 33.46 / 1212.1
  19378. }
  19379. },
  19380. },
  19381. [
  19382. {
  19383. name: "Normal",
  19384. height: math.unit(8 + 6 / 12, "feet"),
  19385. default: true
  19386. },
  19387. {
  19388. name: "Macro",
  19389. height: math.unit(150, "feet")
  19390. },
  19391. {
  19392. name: "Megamacro",
  19393. height: math.unit(1000, "miles")
  19394. },
  19395. ]
  19396. ))
  19397. characterMakers.push(() => makeCharacter(
  19398. { name: "Voski", species: "Corvid" },
  19399. {
  19400. front: {
  19401. height: math.unit(1.72, "m"),
  19402. weight: math.unit(80, "lb"),
  19403. name: "Front",
  19404. image: {
  19405. source: "./media/characters/voski/front.svg",
  19406. extra: 2076.22 / 2022.4,
  19407. bottom: 102.7 / 2177.3866
  19408. }
  19409. },
  19410. back: {
  19411. height: math.unit(1.72, "m"),
  19412. weight: math.unit(80, "lb"),
  19413. name: "Back",
  19414. image: {
  19415. source: "./media/characters/voski/back.svg",
  19416. extra: 2104 / 2051,
  19417. bottom: 10.45 / 2113.63
  19418. }
  19419. },
  19420. },
  19421. [
  19422. {
  19423. name: "Normal",
  19424. height: math.unit(1.72, "m")
  19425. },
  19426. {
  19427. name: "Macro",
  19428. height: math.unit(55, "m"),
  19429. default: true
  19430. },
  19431. {
  19432. name: "Macro+",
  19433. height: math.unit(300, "m")
  19434. },
  19435. {
  19436. name: "Macro++",
  19437. height: math.unit(700, "m")
  19438. },
  19439. {
  19440. name: "Macro+++",
  19441. height: math.unit(4500, "m")
  19442. },
  19443. {
  19444. name: "Macro++++",
  19445. height: math.unit(45, "km")
  19446. },
  19447. {
  19448. name: "Macro+++++",
  19449. height: math.unit(1220, "km")
  19450. },
  19451. ]
  19452. ))
  19453. characterMakers.push(() => makeCharacter(
  19454. { name: "Icowom Lee" },
  19455. {
  19456. front: {
  19457. height: math.unit(2.3, "m"),
  19458. weight: math.unit(304, "kg"),
  19459. name: "Front",
  19460. image: {
  19461. source: "./media/characters/icowom-lee/front.svg",
  19462. extra: 3076 / 2933,
  19463. bottom: 51.4 / 3125.1889
  19464. }
  19465. },
  19466. },
  19467. [
  19468. {
  19469. name: "Normal",
  19470. height: math.unit(2.3, "meters"),
  19471. default: true
  19472. },
  19473. {
  19474. name: "Macro",
  19475. height: math.unit(94, "meters"),
  19476. default: true
  19477. },
  19478. ]
  19479. ))
  19480. characterMakers.push(() => makeCharacter(
  19481. { name: "Shock Diamond", species: "Aeromorphic Synthetic Pharaoh Hound" },
  19482. {
  19483. front: {
  19484. height: math.unit(22, "meters"),
  19485. weight: math.unit(21000, "kg"),
  19486. name: "Front",
  19487. image: {
  19488. source: "./media/characters/shock-diamond/front.svg",
  19489. extra: 2204 / 2053,
  19490. bottom: 65 / 2239.47
  19491. }
  19492. },
  19493. frontNude: {
  19494. height: math.unit(22, "meters"),
  19495. weight: math.unit(21000, "kg"),
  19496. name: "Front (Nude)",
  19497. image: {
  19498. source: "./media/characters/shock-diamond/front-nude.svg",
  19499. extra: 2514 / 2285,
  19500. bottom: 13 / 2527.56
  19501. }
  19502. },
  19503. },
  19504. [
  19505. {
  19506. name: "Normal",
  19507. height: math.unit(3, "meters")
  19508. },
  19509. {
  19510. name: "Macro",
  19511. height: math.unit(22, "meters"),
  19512. default: true
  19513. },
  19514. ]
  19515. ))
  19516. characterMakers.push(() => makeCharacter(
  19517. { name: "Rory" },
  19518. {
  19519. front: {
  19520. height: math.unit(5 + 4 / 12, "feet"),
  19521. weight: math.unit(120, "lb"),
  19522. name: "Front",
  19523. image: {
  19524. source: "./media/characters/rory/front.svg",
  19525. extra: 589 / 556,
  19526. bottom: 45.7 / 635.76
  19527. }
  19528. },
  19529. frontNude: {
  19530. height: math.unit(5 + 4 / 12, "feet"),
  19531. weight: math.unit(120, "lb"),
  19532. name: "Front (Nude)",
  19533. image: {
  19534. source: "./media/characters/rory/front-nude.svg",
  19535. extra: 589 / 556,
  19536. bottom: 45.7 / 635.76
  19537. }
  19538. },
  19539. side: {
  19540. height: math.unit(5 + 4 / 12, "feet"),
  19541. weight: math.unit(120, "lb"),
  19542. name: "Side",
  19543. image: {
  19544. source: "./media/characters/rory/side.svg",
  19545. extra: 597 / 564,
  19546. bottom: 55 / 653
  19547. }
  19548. },
  19549. back: {
  19550. height: math.unit(5 + 4 / 12, "feet"),
  19551. weight: math.unit(120, "lb"),
  19552. name: "Back",
  19553. image: {
  19554. source: "./media/characters/rory/back.svg",
  19555. extra: 620 / 585,
  19556. bottom: 8.86 / 630.43
  19557. }
  19558. },
  19559. dick: {
  19560. height: math.unit(0.86, "feet"),
  19561. name: "Dick",
  19562. image: {
  19563. source: "./media/characters/rory/dick.svg"
  19564. }
  19565. },
  19566. },
  19567. [
  19568. {
  19569. name: "Normal",
  19570. height: math.unit(5 + 4 / 12, "feet"),
  19571. default: true
  19572. },
  19573. {
  19574. name: "Macro",
  19575. height: math.unit(100, "feet")
  19576. },
  19577. {
  19578. name: "Macro+",
  19579. height: math.unit(140, "feet")
  19580. },
  19581. {
  19582. name: "Macro++",
  19583. height: math.unit(300, "feet")
  19584. },
  19585. ]
  19586. ))
  19587. characterMakers.push(() => makeCharacter(
  19588. { name: "Sprisk" },
  19589. {
  19590. front: {
  19591. height: math.unit(5 + 9 / 12, "feet"),
  19592. weight: math.unit(190, "lb"),
  19593. name: "Front",
  19594. image: {
  19595. source: "./media/characters/sprisk/front.svg",
  19596. extra: 1225 / 1180,
  19597. bottom: 42.7 / 1266.4
  19598. }
  19599. },
  19600. frontNsfw: {
  19601. height: math.unit(5 + 9 / 12, "feet"),
  19602. weight: math.unit(190, "lb"),
  19603. name: "Front (NSFW)",
  19604. image: {
  19605. source: "./media/characters/sprisk/front-nsfw.svg",
  19606. extra: 1225 / 1180,
  19607. bottom: 42.7 / 1266.4
  19608. }
  19609. },
  19610. back: {
  19611. height: math.unit(5 + 9 / 12, "feet"),
  19612. weight: math.unit(190, "lb"),
  19613. name: "Back",
  19614. image: {
  19615. source: "./media/characters/sprisk/back.svg",
  19616. extra: 1247 / 1200,
  19617. bottom: 5.6 / 1253.04
  19618. }
  19619. },
  19620. },
  19621. [
  19622. {
  19623. name: "Tiny",
  19624. height: math.unit(2, "inches")
  19625. },
  19626. {
  19627. name: "Normal",
  19628. height: math.unit(5 + 9 / 12, "feet"),
  19629. default: true
  19630. },
  19631. {
  19632. name: "Mini Macro",
  19633. height: math.unit(18, "feet")
  19634. },
  19635. {
  19636. name: "Macro",
  19637. height: math.unit(100, "feet")
  19638. },
  19639. {
  19640. name: "MACRO",
  19641. height: math.unit(50, "miles")
  19642. },
  19643. {
  19644. name: "M A C R O",
  19645. height: math.unit(300, "miles")
  19646. },
  19647. ]
  19648. ))
  19649. characterMakers.push(() => makeCharacter(
  19650. { name: "Bunsen" },
  19651. {
  19652. side: {
  19653. height: math.unit(15.6, "meters"),
  19654. weight: math.unit(700000, "kg"),
  19655. name: "Side",
  19656. image: {
  19657. source: "./media/characters/bunsen/side.svg",
  19658. extra: 1644 / 358
  19659. }
  19660. },
  19661. foot: {
  19662. height: math.unit(1.611 * 1644 / 358, "meter"),
  19663. name: "Foot",
  19664. image: {
  19665. source: "./media/characters/bunsen/foot.svg"
  19666. }
  19667. },
  19668. },
  19669. [
  19670. {
  19671. name: "Small",
  19672. height: math.unit(10, "feet")
  19673. },
  19674. {
  19675. name: "Normal",
  19676. height: math.unit(15.6, "meters"),
  19677. default: true
  19678. },
  19679. ]
  19680. ))
  19681. characterMakers.push(() => makeCharacter(
  19682. { name: "Sesh" },
  19683. {
  19684. front: {
  19685. height: math.unit(4 + 11 / 12, "feet"),
  19686. weight: math.unit(140, "lb"),
  19687. name: "Front",
  19688. image: {
  19689. source: "./media/characters/sesh/front.svg",
  19690. extra: 3420 / 3231,
  19691. bottom: 72 / 3949.5
  19692. }
  19693. },
  19694. },
  19695. [
  19696. {
  19697. name: "Normal",
  19698. height: math.unit(4 + 11 / 12, "feet")
  19699. },
  19700. {
  19701. name: "Grown",
  19702. height: math.unit(15, "feet"),
  19703. default: true
  19704. },
  19705. {
  19706. name: "Macro",
  19707. height: math.unit(1500, "feet")
  19708. },
  19709. {
  19710. name: "Megamacro",
  19711. height: math.unit(30, "miles")
  19712. },
  19713. {
  19714. name: "Continental",
  19715. height: math.unit(3000, "miles")
  19716. },
  19717. {
  19718. name: "Gravity Mass",
  19719. height: math.unit(300000, "miles")
  19720. },
  19721. {
  19722. name: "Planet Buster",
  19723. height: math.unit(30000000, "miles")
  19724. },
  19725. {
  19726. name: "Big",
  19727. height: math.unit(3000000000, "miles")
  19728. },
  19729. ]
  19730. ))
  19731. characterMakers.push(() => makeCharacter(
  19732. { name: "Pepper" },
  19733. {
  19734. front: {
  19735. height: math.unit(9, "feet"),
  19736. weight: math.unit(350, "lb"),
  19737. name: "Front",
  19738. image: {
  19739. source: "./media/characters/pepper/front.svg",
  19740. extra: 1448/1312,
  19741. bottom: 9.4/1457.88
  19742. }
  19743. },
  19744. back: {
  19745. height: math.unit(9, "feet"),
  19746. weight: math.unit(350, "lb"),
  19747. name: "Back",
  19748. image: {
  19749. source: "./media/characters/pepper/back.svg",
  19750. extra: 1423/1300,
  19751. bottom: 4.6/1429
  19752. }
  19753. },
  19754. maw: {
  19755. height: math.unit(0.932, "feet"),
  19756. name: "Maw",
  19757. image: {
  19758. source: "./media/characters/pepper/maw.svg"
  19759. }
  19760. },
  19761. },
  19762. [
  19763. {
  19764. name: "Normal",
  19765. height: math.unit(9, "feet"),
  19766. default: true
  19767. },
  19768. ]
  19769. ))
  19770. characterMakers.push(() => makeCharacter(
  19771. { name: "Maelstrom" },
  19772. {
  19773. front: {
  19774. height: math.unit(6, "feet"),
  19775. weight: math.unit(150, "lb"),
  19776. name: "Front",
  19777. image: {
  19778. source: "./media/characters/maelstrom/front.svg",
  19779. extra: 2100/1883,
  19780. bottom: 94/2196.7
  19781. }
  19782. },
  19783. },
  19784. [
  19785. {
  19786. name: "Less Kaiju",
  19787. height: math.unit(200, "feet")
  19788. },
  19789. {
  19790. name: "Kaiju",
  19791. height: math.unit(400, "feet"),
  19792. default: true
  19793. },
  19794. {
  19795. name: "Kaiju-er",
  19796. height: math.unit(600, "feet")
  19797. },
  19798. ]
  19799. ))
  19800. characterMakers.push(() => makeCharacter(
  19801. { name: "Lexir" },
  19802. {
  19803. front: {
  19804. height: math.unit(6 + 5/12, "feet"),
  19805. weight: math.unit(180, "lb"),
  19806. name: "Front",
  19807. image: {
  19808. source: "./media/characters/lexir/front.svg",
  19809. extra: 180/172,
  19810. bottom: 12/192
  19811. }
  19812. },
  19813. back: {
  19814. height: math.unit(6 + 5/12, "feet"),
  19815. weight: math.unit(180, "lb"),
  19816. name: "Back",
  19817. image: {
  19818. source: "./media/characters/lexir/back.svg",
  19819. extra: 183.84/175.5,
  19820. bottom: 3.1/187
  19821. }
  19822. },
  19823. },
  19824. [
  19825. {
  19826. name: "Very Smal",
  19827. height: math.unit(1, "nm")
  19828. },
  19829. {
  19830. name: "Normal",
  19831. height: math.unit(6 + 5/12, "feet"),
  19832. default: true
  19833. },
  19834. {
  19835. name: "Macro",
  19836. height: math.unit(1, "mile")
  19837. },
  19838. {
  19839. name: "Megamacro",
  19840. height: math.unit(50, "miles")
  19841. },
  19842. ]
  19843. ))
  19844. characterMakers.push(() => makeCharacter(
  19845. { name: "Maksio" },
  19846. {
  19847. front: {
  19848. height: math.unit(1.5, "meters"),
  19849. weight: math.unit(100, "lb"),
  19850. name: "Front",
  19851. image: {
  19852. source: "./media/characters/maksio/front.svg",
  19853. extra: 1549/1531,
  19854. bottom: 123.7/1674.5429
  19855. }
  19856. },
  19857. back: {
  19858. height: math.unit(1.5, "meters"),
  19859. weight: math.unit(100, "lb"),
  19860. name: "Back",
  19861. image: {
  19862. source: "./media/characters/maksio/back.svg",
  19863. extra: 1541/1509,
  19864. bottom: 97/1639
  19865. }
  19866. },
  19867. hand: {
  19868. height: math.unit(0.621, "feet"),
  19869. name: "Hand",
  19870. image: {
  19871. source: "./media/characters/maksio/hand.svg"
  19872. }
  19873. },
  19874. foot: {
  19875. height: math.unit(1.611, "feet"),
  19876. name: "Foot",
  19877. image: {
  19878. source: "./media/characters/maksio/foot.svg"
  19879. }
  19880. },
  19881. },
  19882. [
  19883. {
  19884. name: "Shrunken",
  19885. height: math.unit(10, "cm")
  19886. },
  19887. {
  19888. name: "Normal",
  19889. height: math.unit(150, "cm"),
  19890. default: true
  19891. },
  19892. ]
  19893. ))
  19894. characterMakers.push(() => makeCharacter(
  19895. { name: "Erza Bear" },
  19896. {
  19897. front: {
  19898. height: math.unit(100, "feet"),
  19899. name: "Front",
  19900. image: {
  19901. source: "./media/characters/erza-bear/front.svg",
  19902. extra: 2449/2390,
  19903. bottom: 46/2494
  19904. }
  19905. },
  19906. back: {
  19907. height: math.unit(100, "feet"),
  19908. name: "Back",
  19909. image: {
  19910. source: "./media/characters/erza-bear/back.svg",
  19911. extra: 2489/2430,
  19912. bottom: 85.4/2480
  19913. }
  19914. },
  19915. tail: {
  19916. height: math.unit(42, "feet"),
  19917. name: "Tail",
  19918. image: {
  19919. source: "./media/characters/erza-bear/tail.svg"
  19920. }
  19921. },
  19922. tongue: {
  19923. height: math.unit(8, "feet"),
  19924. name: "Tongue",
  19925. image: {
  19926. source: "./media/characters/erza-bear/tongue.svg"
  19927. }
  19928. },
  19929. dick: {
  19930. height: math.unit(10.5, "feet"),
  19931. name: "Dick",
  19932. image: {
  19933. source: "./media/characters/erza-bear/dick.svg"
  19934. }
  19935. },
  19936. dickVertical: {
  19937. height: math.unit(16.9, "feet"),
  19938. name: "Dick (Vertical)",
  19939. image: {
  19940. source: "./media/characters/erza-bear/dick-vertical.svg"
  19941. }
  19942. },
  19943. },
  19944. [
  19945. {
  19946. name: "Macro",
  19947. height: math.unit(100, "feet"),
  19948. default: true
  19949. },
  19950. ]
  19951. ))
  19952. characterMakers.push(() => makeCharacter(
  19953. { name: "Violet Flor", species: "Skunk" },
  19954. {
  19955. front: {
  19956. height: math.unit(172, "cm"),
  19957. weight: math.unit(73, "kg"),
  19958. name: "Front",
  19959. image: {
  19960. source: "./media/characters/violet-flor/front.svg",
  19961. extra: 1530/1442,
  19962. bottom: 61.9/1588.8
  19963. }
  19964. },
  19965. back: {
  19966. height: math.unit(180, "cm"),
  19967. weight: math.unit(73, "kg"),
  19968. name: "Back",
  19969. image: {
  19970. source: "./media/characters/violet-flor/back.svg",
  19971. extra: 1692/1630,
  19972. bottom: 20/1712
  19973. }
  19974. },
  19975. },
  19976. [
  19977. {
  19978. name: "Normal",
  19979. height: math.unit(172, "cm"),
  19980. default: true
  19981. },
  19982. ]
  19983. ))
  19984. //characters
  19985. function makeCharacters() {
  19986. const results = [];
  19987. characterMakers.forEach(character => {
  19988. results.push(character());
  19989. });
  19990. return results;
  19991. }