less copy protection, more size visualization
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 

20736 рядки
494 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename
  18. }
  19. if (value.weight) {
  20. views[key].attributes.weight = {
  21. name: "Mass",
  22. power: 3,
  23. type: "mass",
  24. base: value.weight
  25. };
  26. }
  27. });
  28. return createEntityMaker(info, views, defaultSizes);
  29. }
  30. characterMakers.push(() => makeCharacter(
  31. {
  32. name: "Fen",
  33. species: "Crux",
  34. description: {
  35. title: "Bio",
  36. text: "Very furry. Sheds on everything."
  37. }
  38. },
  39. {
  40. back: {
  41. height: math.unit(2.2428, "meter"),
  42. weight: math.unit(124.738, "kg"),
  43. name: "Back",
  44. image: {
  45. source: "./media/characters/fen/back.svg",
  46. extra: 1025 / 935,
  47. bottom: 0.01
  48. },
  49. info: {
  50. description: {
  51. mode: "append",
  52. text: "\n\nHe is not currently looking at you."
  53. }
  54. }
  55. },
  56. full: {
  57. height: math.unit(1.34, "meter"),
  58. weight: math.unit(225, "kg"),
  59. name: "Full",
  60. image: {
  61. source: "./media/characters/fen/full.svg"
  62. },
  63. info: {
  64. description: {
  65. mode: "append",
  66. text: "\n\nMunch."
  67. }
  68. }
  69. },
  70. kneeling: {
  71. height: math.unit(5.4, "feet"),
  72. weight: math.unit(124.738, "kg"),
  73. name: "Kneeling",
  74. image: {
  75. source: "./media/characters/fen/kneeling.svg",
  76. extra: 563 / 507
  77. }
  78. },
  79. },
  80. [
  81. {
  82. name: "Normal",
  83. height: math.unit(2.2428, "meter")
  84. },
  85. {
  86. name: "Big",
  87. height: math.unit(12, "feet")
  88. },
  89. {
  90. name: "Minimacro",
  91. height: math.unit(30, "meter"),
  92. default: true,
  93. info: {
  94. description: {
  95. mode: "append",
  96. text: "\n\nTOO DAMN BIG"
  97. }
  98. }
  99. },
  100. {
  101. name: "Macro",
  102. height: math.unit(100, "meter"),
  103. info: {
  104. description: {
  105. mode: "append",
  106. text: "\n\nTOO DAMN BIG"
  107. }
  108. }
  109. },
  110. {
  111. name: "Macro+",
  112. height: math.unit(1000, "meter")
  113. },
  114. {
  115. name: "Megamacro",
  116. height: math.unit(10, "miles")
  117. }
  118. ]
  119. ))
  120. characterMakers.push(() => makeCharacter(
  121. { name: "Sofia Fluttertail" },
  122. {
  123. front: {
  124. height: math.unit(183, "cm"),
  125. weight: math.unit(80, "kg"),
  126. name: "Front",
  127. image: {
  128. source: "./media/characters/sofia-fluttertail/front.svg",
  129. bottom: 0.01,
  130. extra: 2154 / 2081
  131. }
  132. },
  133. frontAlt: {
  134. height: math.unit(183, "cm"),
  135. weight: math.unit(80, "kg"),
  136. name: "Front (alt)",
  137. image: {
  138. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  139. }
  140. },
  141. back: {
  142. height: math.unit(183, "cm"),
  143. weight: math.unit(80, "kg"),
  144. name: "Back",
  145. image: {
  146. source: "./media/characters/sofia-fluttertail/back.svg"
  147. }
  148. },
  149. kneeling: {
  150. height: math.unit(125, "cm"),
  151. weight: math.unit(80, "kg"),
  152. name: "Kneeling",
  153. image: {
  154. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  155. extra: 1033/977,
  156. bottom: 23.7/1057
  157. }
  158. },
  159. maw: {
  160. height: math.unit(183 / 5, "cm"),
  161. name: "Maw",
  162. image: {
  163. source: "./media/characters/sofia-fluttertail/maw.svg"
  164. }
  165. },
  166. mawcloseup: {
  167. height: math.unit(183 / 5 * 0.41, "cm"),
  168. name: "Maw (Closeup)",
  169. image: {
  170. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  171. }
  172. },
  173. },
  174. [
  175. {
  176. name: "Normal",
  177. height: math.unit(1.83, "meter")
  178. },
  179. {
  180. name: "Size Thief",
  181. height: math.unit(18, "feet")
  182. },
  183. {
  184. name: "50 Foot Collie",
  185. height: math.unit(50, "feet")
  186. },
  187. {
  188. name: "Macro",
  189. height: math.unit(96, "feet"),
  190. default: true
  191. },
  192. {
  193. name: "Megamerger",
  194. height: math.unit(650, "feet")
  195. },
  196. ]
  197. ))
  198. characterMakers.push(() => makeCharacter(
  199. { name: "March" },
  200. {
  201. front: {
  202. height: math.unit(7, "feet"),
  203. weight: math.unit(100, "kg"),
  204. name: "Front",
  205. image: {
  206. source: "./media/characters/march/front.svg",
  207. extra: 1,
  208. bottom: 0.015
  209. }
  210. },
  211. foot: {
  212. height: math.unit(0.9, "feet"),
  213. name: "Foot",
  214. image: {
  215. source: "./media/characters/march/foot.svg"
  216. }
  217. },
  218. },
  219. [
  220. {
  221. name: "Normal",
  222. height: math.unit(7.9, "feet")
  223. },
  224. {
  225. name: "Macro",
  226. height: math.unit(220, "meters")
  227. },
  228. {
  229. name: "Megamacro",
  230. height: math.unit(2.98, "km"),
  231. default: true
  232. },
  233. {
  234. name: "Gigamacro",
  235. height: math.unit(15963, "km")
  236. },
  237. {
  238. name: "Teramacro",
  239. height: math.unit(2980000000, "km")
  240. },
  241. {
  242. name: "Examacro",
  243. height: math.unit(250, "parsecs")
  244. },
  245. ]
  246. ))
  247. characterMakers.push(() => makeCharacter(
  248. { name: "Noir" },
  249. {
  250. front: {
  251. height: math.unit(6, "feet"),
  252. weight: math.unit(60, "kg"),
  253. name: "Front",
  254. image: {
  255. source: "./media/characters/noir/front.svg",
  256. extra: 1,
  257. bottom: 0.032
  258. }
  259. },
  260. },
  261. [
  262. {
  263. name: "Normal",
  264. height: math.unit(6.6, "feet")
  265. },
  266. {
  267. name: "Macro",
  268. height: math.unit(500, "feet")
  269. },
  270. {
  271. name: "Megamacro",
  272. height: math.unit(2.5, "km"),
  273. default: true
  274. },
  275. {
  276. name: "Gigamacro",
  277. height: math.unit(22500, "km")
  278. },
  279. {
  280. name: "Teramacro",
  281. height: math.unit(2500000000, "km")
  282. },
  283. {
  284. name: "Examacro",
  285. height: math.unit(200, "parsecs")
  286. },
  287. ]
  288. ))
  289. characterMakers.push(() => makeCharacter(
  290. { name: "Okuri" },
  291. {
  292. front: {
  293. height: math.unit(7, "feet"),
  294. weight: math.unit(100, "kg"),
  295. name: "Front",
  296. image: {
  297. source: "./media/characters/okuri/front.svg",
  298. extra: 1,
  299. bottom: 0.037
  300. }
  301. },
  302. back: {
  303. height: math.unit(7, "feet"),
  304. weight: math.unit(100, "kg"),
  305. name: "Back",
  306. image: {
  307. source: "./media/characters/okuri/back.svg",
  308. extra: 1,
  309. bottom: 0.007
  310. }
  311. },
  312. },
  313. [
  314. {
  315. name: "Megamacro",
  316. height: math.unit(100, "miles"),
  317. default: true
  318. },
  319. ]
  320. ))
  321. characterMakers.push(() => makeCharacter(
  322. { name: "Manny" },
  323. {
  324. front: {
  325. height: math.unit(7, "feet"),
  326. weight: math.unit(100, "kg"),
  327. name: "Front",
  328. image: {
  329. source: "./media/characters/manny/front.svg",
  330. extra: 1,
  331. bottom: 0.06
  332. }
  333. },
  334. back: {
  335. height: math.unit(7, "feet"),
  336. weight: math.unit(100, "kg"),
  337. name: "Back",
  338. image: {
  339. source: "./media/characters/manny/back.svg",
  340. extra: 1,
  341. bottom: 0.014
  342. }
  343. },
  344. },
  345. [
  346. {
  347. name: "Normal",
  348. height: math.unit(7, "feet"),
  349. },
  350. {
  351. name: "Macro",
  352. height: math.unit(78, "feet"),
  353. default: true
  354. },
  355. {
  356. name: "Macro+",
  357. height: math.unit(300, "meters")
  358. },
  359. {
  360. name: "Macro++",
  361. height: math.unit(2400, "meters")
  362. },
  363. {
  364. name: "Megamacro",
  365. height: math.unit(5167, "meters")
  366. },
  367. {
  368. name: "Gigamacro",
  369. height: math.unit(41769, "miles")
  370. },
  371. ]
  372. ))
  373. characterMakers.push(() => makeCharacter(
  374. { name: "Adake" },
  375. {
  376. front: {
  377. height: math.unit(7, "feet"),
  378. weight: math.unit(100, "kg"),
  379. name: "Front",
  380. image: {
  381. source: "./media/characters/adake/front-1.svg"
  382. }
  383. },
  384. frontAlt: {
  385. height: math.unit(7, "feet"),
  386. weight: math.unit(100, "kg"),
  387. name: "Front (Alt)",
  388. image: {
  389. source: "./media/characters/adake/front-2.svg",
  390. extra: 1,
  391. bottom: 0.01
  392. }
  393. },
  394. back: {
  395. height: math.unit(7, "feet"),
  396. weight: math.unit(100, "kg"),
  397. name: "Back",
  398. image: {
  399. source: "./media/characters/adake/back.svg",
  400. }
  401. },
  402. kneel: {
  403. height: math.unit(5.385, "feet"),
  404. weight: math.unit(100, "kg"),
  405. name: "Kneeling",
  406. image: {
  407. source: "./media/characters/adake/kneel.svg",
  408. bottom: 0.052
  409. }
  410. },
  411. },
  412. [
  413. {
  414. name: "Normal",
  415. height: math.unit(7, "feet"),
  416. },
  417. {
  418. name: "Macro",
  419. height: math.unit(78, "feet"),
  420. default: true
  421. },
  422. {
  423. name: "Macro+",
  424. height: math.unit(300, "meters")
  425. },
  426. {
  427. name: "Macro++",
  428. height: math.unit(2400, "meters")
  429. },
  430. {
  431. name: "Megamacro",
  432. height: math.unit(5167, "meters")
  433. },
  434. {
  435. name: "Gigamacro",
  436. height: math.unit(41769, "miles")
  437. },
  438. ]
  439. ))
  440. characterMakers.push(() => makeCharacter(
  441. { name: "Elijah" },
  442. {
  443. front: {
  444. height: math.unit(1.65, "meters"),
  445. weight: math.unit(50, "kg"),
  446. name: "Front",
  447. image: {
  448. source: "./media/characters/elijah/front.svg",
  449. extra: 639 / 626,
  450. bottom: 58.7 / 697.8
  451. }
  452. },
  453. side: {
  454. height: math.unit(1.65, "meters"),
  455. weight: math.unit(50, "kg"),
  456. name: "Side",
  457. image: {
  458. source: "./media/characters/elijah/side.svg",
  459. extra: 1840 / 1795,
  460. bottom: 106 / 1943
  461. }
  462. },
  463. back: {
  464. height: math.unit(1.65, "meters"),
  465. weight: math.unit(50, "kg"),
  466. name: "Back",
  467. image: {
  468. source: "./media/characters/elijah/back.svg",
  469. extra: 661.2 / 639.5,
  470. bottom: 21.2 / 682.5
  471. }
  472. },
  473. foot: {
  474. height: math.unit(1.4, "feet"),
  475. name: "Foot",
  476. image: {
  477. source: "./media/characters/elijah/foot.svg"
  478. }
  479. },
  480. footFlexing: {
  481. height: math.unit(1.243, "feet"),
  482. name: "Foot (Flexing)",
  483. image: {
  484. source: "./media/characters/elijah/foot-flexing.svg"
  485. }
  486. },
  487. footStepping: {
  488. height: math.unit(1.3, "feet"),
  489. name: "Foot (Stepping)",
  490. image: {
  491. source: "./media/characters/elijah/foot-stepping.svg"
  492. }
  493. },
  494. beak: {
  495. height: math.unit(0.666, "feet"),
  496. name: "Beak",
  497. image: {
  498. source: "./media/characters/elijah/beak.svg"
  499. }
  500. },
  501. dick: {
  502. height: math.unit(0.85, "feet"),
  503. name: "Dick",
  504. image: {
  505. source: "./media/characters/elijah/dick.svg"
  506. }
  507. },
  508. },
  509. [
  510. {
  511. name: "Normal",
  512. height: math.unit(1.65, "meters")
  513. },
  514. {
  515. name: "Macro",
  516. height: math.unit(55, "meters"),
  517. default: true
  518. },
  519. {
  520. name: "Macro+",
  521. height: math.unit(105, "meters")
  522. },
  523. ]
  524. ))
  525. characterMakers.push(() => makeCharacter(
  526. { name: "Rai" },
  527. {
  528. front: {
  529. height: math.unit(11, "feet"),
  530. weight: math.unit(80, "kg"),
  531. name: "Front",
  532. image: {
  533. source: "./media/characters/rai/front.svg",
  534. extra: 1,
  535. bottom: 0.03
  536. }
  537. },
  538. side: {
  539. height: math.unit(11, "feet"),
  540. weight: math.unit(80, "kg"),
  541. name: "Side",
  542. image: {
  543. source: "./media/characters/rai/side.svg"
  544. }
  545. },
  546. back: {
  547. height: math.unit(11, "feet"),
  548. weight: math.unit(80, "lb"),
  549. name: "Back",
  550. image: {
  551. source: "./media/characters/rai/back.svg",
  552. extra: 1,
  553. bottom: 0.01
  554. }
  555. },
  556. feral: {
  557. height: math.unit(11, "feet"),
  558. weight: math.unit(800, "lb"),
  559. name: "Feral",
  560. image: {
  561. source: "./media/characters/rai/feral.svg",
  562. extra: 1050 / 659,
  563. bottom: 0.07
  564. }
  565. },
  566. maw: {
  567. height: math.unit(6 / 3.81416, "feet"),
  568. name: "Maw",
  569. image: {
  570. source: "./media/characters/rai/maw.svg"
  571. }
  572. },
  573. },
  574. [
  575. {
  576. name: "Normal",
  577. height: math.unit(11, "feet")
  578. },
  579. {
  580. name: "Macro",
  581. height: math.unit(302, "feet"),
  582. default: true
  583. },
  584. ]
  585. ))
  586. characterMakers.push(() => makeCharacter(
  587. { name: "Jazzy" },
  588. {
  589. front: {
  590. height: math.unit(7, "feet"),
  591. weight: math.unit(80, "kg"),
  592. name: "Front",
  593. image: {
  594. source: "./media/characters/jazzy/front.svg",
  595. extra: 1,
  596. bottom: 0.01
  597. }
  598. },
  599. back: {
  600. height: math.unit(7, "feet"),
  601. weight: math.unit(80, "kg"),
  602. name: "Back",
  603. image: {
  604. source: "./media/characters/jazzy/back.svg",
  605. extra: 1,
  606. bottom: 0.01
  607. }
  608. },
  609. },
  610. [
  611. {
  612. name: "Macro",
  613. height: math.unit(216, "feet"),
  614. default: true
  615. },
  616. ]
  617. ))
  618. characterMakers.push(() => makeCharacter(
  619. { name: "Flamm" },
  620. {
  621. front: {
  622. height: math.unit(7, "feet"),
  623. weight: math.unit(80, "kg"),
  624. name: "Front",
  625. image: {
  626. source: "./media/characters/flamm/front.svg",
  627. extra: 1794 / 1677,
  628. bottom: 31.7 / 1828.5
  629. }
  630. },
  631. },
  632. [
  633. {
  634. name: "Normal",
  635. height: math.unit(9.5, "feet")
  636. },
  637. {
  638. name: "Macro",
  639. height: math.unit(200, "feet"),
  640. default: true
  641. },
  642. ]
  643. ))
  644. characterMakers.push(() => makeCharacter(
  645. { name: "Zephiro" },
  646. {
  647. front: {
  648. height: math.unit(7, "feet"),
  649. weight: math.unit(80, "kg"),
  650. name: "Front",
  651. image: {
  652. source: "./media/characters/zephiro/front.svg",
  653. extra: 2309 / 2162,
  654. bottom: 0.069
  655. }
  656. },
  657. side: {
  658. height: math.unit(7, "feet"),
  659. weight: math.unit(80, "kg"),
  660. name: "Side",
  661. image: {
  662. source: "./media/characters/zephiro/side.svg",
  663. extra: 2403 / 2279,
  664. bottom: 0.015
  665. }
  666. },
  667. back: {
  668. height: math.unit(7, "feet"),
  669. weight: math.unit(80, "kg"),
  670. name: "Back",
  671. image: {
  672. source: "./media/characters/zephiro/back.svg",
  673. extra: 2373 / 2244,
  674. bottom: 0.013
  675. }
  676. },
  677. },
  678. [
  679. {
  680. name: "Micro",
  681. height: math.unit(3, "inches")
  682. },
  683. {
  684. name: "Normal",
  685. height: math.unit(5 + 3 / 12, "feet"),
  686. default: true
  687. },
  688. {
  689. name: "Macro",
  690. height: math.unit(118, "feet")
  691. },
  692. ]
  693. ))
  694. characterMakers.push(() => makeCharacter(
  695. { name: "Fory" },
  696. {
  697. front: {
  698. height: math.unit(5, "feet"),
  699. weight: math.unit(90, "kg"),
  700. name: "Front",
  701. image: {
  702. source: "./media/characters/fory/front.svg",
  703. extra: 2862 / 2674,
  704. bottom: 180 / 3043.8
  705. }
  706. },
  707. back: {
  708. height: math.unit(5, "feet"),
  709. weight: math.unit(90, "kg"),
  710. name: "Back",
  711. image: {
  712. source: "./media/characters/fory/back.svg",
  713. extra: 2962 / 2791,
  714. bottom: 106 / 3071.8
  715. }
  716. },
  717. foot: {
  718. height: math.unit(2.14, "feet"),
  719. name: "Foot",
  720. image: {
  721. source: "./media/characters/fory/foot.svg"
  722. }
  723. },
  724. },
  725. [
  726. {
  727. name: "Normal",
  728. height: math.unit(5, "feet")
  729. },
  730. {
  731. name: "Macro",
  732. height: math.unit(50, "feet"),
  733. default: true
  734. },
  735. {
  736. name: "Megamacro",
  737. height: math.unit(10, "miles")
  738. },
  739. {
  740. name: "Gigamacro",
  741. height: math.unit(5, "earths")
  742. },
  743. ]
  744. ))
  745. characterMakers.push(() => makeCharacter(
  746. { name: "Kurrikage" },
  747. {
  748. front: {
  749. height: math.unit(7, "feet"),
  750. weight: math.unit(90, "kg"),
  751. name: "Front",
  752. image: {
  753. source: "./media/characters/kurrikage/front.svg",
  754. extra: 1,
  755. bottom: 0.035
  756. }
  757. },
  758. back: {
  759. height: math.unit(7, "feet"),
  760. weight: math.unit(90, "lb"),
  761. name: "Back",
  762. image: {
  763. source: "./media/characters/kurrikage/back.svg"
  764. }
  765. },
  766. paw: {
  767. height: math.unit(1.5, "feet"),
  768. name: "Paw",
  769. image: {
  770. source: "./media/characters/kurrikage/paw.svg"
  771. }
  772. },
  773. staff: {
  774. height: math.unit(6.7, "feet"),
  775. name: "Staff",
  776. image: {
  777. source: "./media/characters/kurrikage/staff.svg"
  778. }
  779. },
  780. peek: {
  781. height: math.unit(1.05, "feet"),
  782. name: "Peeking",
  783. image: {
  784. source: "./media/characters/kurrikage/peek.svg",
  785. bottom: 0.08
  786. }
  787. },
  788. },
  789. [
  790. {
  791. name: "Normal",
  792. height: math.unit(12, "feet"),
  793. default: true
  794. },
  795. {
  796. name: "Big",
  797. height: math.unit(20, "feet")
  798. },
  799. {
  800. name: "Macro",
  801. height: math.unit(500, "feet")
  802. },
  803. {
  804. name: "Megamacro",
  805. height: math.unit(20, "miles")
  806. },
  807. ]
  808. ))
  809. characterMakers.push(() => makeCharacter(
  810. { name: "Shingo" },
  811. {
  812. front: {
  813. height: math.unit(6, "feet"),
  814. weight: math.unit(75, "kg"),
  815. name: "Front",
  816. image: {
  817. source: "./media/characters/shingo/front.svg",
  818. extra: 3511 / 3338,
  819. bottom: 0.005
  820. }
  821. },
  822. },
  823. [
  824. {
  825. name: "Micro",
  826. height: math.unit(4, "inches")
  827. },
  828. {
  829. name: "Normal",
  830. height: math.unit(6, "feet"),
  831. default: true
  832. },
  833. {
  834. name: "Macro",
  835. height: math.unit(108, "feet")
  836. }
  837. ]
  838. ))
  839. characterMakers.push(() => makeCharacter(
  840. { name: "Aigey" },
  841. {
  842. side: {
  843. height: math.unit(6, "feet"),
  844. weight: math.unit(75, "kg"),
  845. name: "Side",
  846. image: {
  847. source: "./media/characters/aigey/side.svg"
  848. }
  849. },
  850. },
  851. [
  852. {
  853. name: "Macro",
  854. height: math.unit(200, "feet"),
  855. default: true
  856. },
  857. {
  858. name: "Megamacro",
  859. height: math.unit(100, "miles")
  860. },
  861. ]
  862. )
  863. )
  864. characterMakers.push(() => makeCharacter(
  865. { name: "Natasha" },
  866. {
  867. front: {
  868. height: math.unit(5 + 5 / 12, "feet"),
  869. weight: math.unit(75, "kg"),
  870. name: "Front",
  871. image: {
  872. source: "./media/characters/natasha/front.svg",
  873. extra: 859/824,
  874. bottom: 23/879.6
  875. }
  876. },
  877. frontNsfw: {
  878. height: math.unit(5 + 5 / 12, "feet"),
  879. weight: math.unit(75, "kg"),
  880. name: "Front (NSFW)",
  881. image: {
  882. source: "./media/characters/natasha/front-nsfw.svg",
  883. extra: 859/824,
  884. bottom: 23/879.6
  885. }
  886. },
  887. frontErect: {
  888. height: math.unit(5 + 5 / 12, "feet"),
  889. weight: math.unit(75, "kg"),
  890. name: "Front (Erect)",
  891. image: {
  892. source: "./media/characters/natasha/front-erect.svg",
  893. extra: 859/824,
  894. bottom: 23/879.6
  895. }
  896. },
  897. back: {
  898. height: math.unit(5 + 5 / 12, "feet"),
  899. weight: math.unit(75, "kg"),
  900. name: "Back",
  901. image: {
  902. source: "./media/characters/natasha/back.svg",
  903. extra: 887.9/852.6,
  904. bottom: 9.7/896.4
  905. }
  906. },
  907. backAlt: {
  908. height: math.unit(5 + 5 / 12, "feet"),
  909. weight: math.unit(75, "kg"),
  910. name: "Back (Alt)",
  911. image: {
  912. source: "./media/characters/natasha/back-alt.svg",
  913. extra: 1236.7/1192,
  914. bottom: 22.3/1258.2
  915. }
  916. },
  917. dick: {
  918. height: math.unit(1.772, "feet"),
  919. name: "Dick",
  920. image: {
  921. source: "./media/characters/natasha/dick.svg"
  922. }
  923. },
  924. },
  925. [
  926. {
  927. name: "Normal",
  928. height: math.unit(5 + 5 / 12, "feet")
  929. },
  930. {
  931. name: "Large",
  932. height: math.unit(12, "feet")
  933. },
  934. {
  935. name: "Macro",
  936. height: math.unit(100, "feet"),
  937. default: true
  938. },
  939. {
  940. name: "Macro+",
  941. height: math.unit(260, "feet")
  942. },
  943. {
  944. name: "Macro++",
  945. height: math.unit(1, "mile")
  946. },
  947. ]
  948. ))
  949. characterMakers.push(() => makeCharacter(
  950. { name: "Malik" },
  951. {
  952. front: {
  953. height: math.unit(6, "feet"),
  954. weight: math.unit(75, "kg"),
  955. name: "Front",
  956. image: {
  957. source: "./media/characters/malik/front.svg"
  958. }
  959. },
  960. side: {
  961. height: math.unit(6, "feet"),
  962. weight: math.unit(75, "kg"),
  963. name: "Side",
  964. image: {
  965. source: "./media/characters/malik/side.svg",
  966. extra: 1.1539
  967. }
  968. },
  969. back: {
  970. height: math.unit(6, "feet"),
  971. weight: math.unit(75, "kg"),
  972. name: "Back",
  973. image: {
  974. source: "./media/characters/malik/back.svg"
  975. }
  976. },
  977. },
  978. [
  979. {
  980. name: "Macro",
  981. height: math.unit(156, "feet"),
  982. default: true
  983. },
  984. {
  985. name: "Macro+",
  986. height: math.unit(1188, "feet")
  987. },
  988. ]
  989. ))
  990. characterMakers.push(() => makeCharacter(
  991. { name: "Sefer" },
  992. {
  993. front: {
  994. height: math.unit(6, "feet"),
  995. weight: math.unit(75, "kg"),
  996. name: "Front",
  997. image: {
  998. source: "./media/characters/sefer/front.svg"
  999. }
  1000. },
  1001. back: {
  1002. height: math.unit(6, "feet"),
  1003. weight: math.unit(75, "kg"),
  1004. name: "Back",
  1005. image: {
  1006. source: "./media/characters/sefer/back.svg"
  1007. }
  1008. },
  1009. },
  1010. [
  1011. {
  1012. name: "Normal",
  1013. height: math.unit(6, "feet"),
  1014. default: true
  1015. },
  1016. ]
  1017. ))
  1018. characterMakers.push(() => makeCharacter(
  1019. { name: "North" },
  1020. {
  1021. body: {
  1022. height: math.unit(2.2428, "meter"),
  1023. weight: math.unit(124.738, "kg"),
  1024. name: "Body",
  1025. image: {
  1026. extra: 1225 / 1050,
  1027. source: "./media/characters/north/front.svg"
  1028. }
  1029. }
  1030. },
  1031. [
  1032. {
  1033. name: "Micro",
  1034. height: math.unit(4, "inches")
  1035. },
  1036. {
  1037. name: "Macro",
  1038. height: math.unit(63, "meters")
  1039. },
  1040. {
  1041. name: "Megamacro",
  1042. height: math.unit(101, "miles"),
  1043. default: true
  1044. }
  1045. ]
  1046. ))
  1047. characterMakers.push(() => makeCharacter(
  1048. { name: "Talan" },
  1049. {
  1050. angled: {
  1051. height: math.unit(4, "meter"),
  1052. weight: math.unit(150, "kg"),
  1053. name: "Angled",
  1054. image: {
  1055. source: "./media/characters/talan/angled-sfw.svg",
  1056. bottom: 29 / 3734
  1057. }
  1058. },
  1059. angledNsfw: {
  1060. height: math.unit(4, "meter"),
  1061. weight: math.unit(150, "kg"),
  1062. name: "Angled (NSFW)",
  1063. image: {
  1064. source: "./media/characters/talan/angled-nsfw.svg",
  1065. bottom: 29 / 3734
  1066. }
  1067. },
  1068. frontNsfw: {
  1069. height: math.unit(4, "meter"),
  1070. weight: math.unit(150, "kg"),
  1071. name: "Front (NSFW)",
  1072. image: {
  1073. source: "./media/characters/talan/front-nsfw.svg",
  1074. bottom: 29 / 3734
  1075. }
  1076. },
  1077. sideNsfw: {
  1078. height: math.unit(4, "meter"),
  1079. weight: math.unit(150, "kg"),
  1080. name: "Side (NSFW)",
  1081. image: {
  1082. source: "./media/characters/talan/side-nsfw.svg",
  1083. bottom: 29 / 3734
  1084. }
  1085. },
  1086. back: {
  1087. height: math.unit(4, "meter"),
  1088. weight: math.unit(150, "kg"),
  1089. name: "Back",
  1090. image: {
  1091. source: "./media/characters/talan/back.svg"
  1092. }
  1093. },
  1094. dickBottom: {
  1095. height: math.unit(0.621, "meter"),
  1096. name: "Dick (Bottom)",
  1097. image: {
  1098. source: "./media/characters/talan/dick-bottom.svg"
  1099. }
  1100. },
  1101. dickTop: {
  1102. height: math.unit(0.621, "meter"),
  1103. name: "Dick (Top)",
  1104. image: {
  1105. source: "./media/characters/talan/dick-top.svg"
  1106. }
  1107. },
  1108. dickSide: {
  1109. height: math.unit(0.305, "meter"),
  1110. name: "Dick (Side)",
  1111. image: {
  1112. source: "./media/characters/talan/dick-side.svg"
  1113. }
  1114. },
  1115. dickFront: {
  1116. height: math.unit(0.305, "meter"),
  1117. name: "Dick (Front)",
  1118. image: {
  1119. source: "./media/characters/talan/dick-front.svg"
  1120. }
  1121. },
  1122. },
  1123. [
  1124. {
  1125. name: "Normal",
  1126. height: math.unit(4, "meters")
  1127. },
  1128. {
  1129. name: "Macro",
  1130. height: math.unit(100, "meters")
  1131. },
  1132. {
  1133. name: "Megamacro",
  1134. height: math.unit(2, "miles"),
  1135. default: true
  1136. },
  1137. {
  1138. name: "Gigamacro",
  1139. height: math.unit(5000, "miles")
  1140. },
  1141. {
  1142. name: "Teramacro",
  1143. height: math.unit(100, "parsecs")
  1144. }
  1145. ]
  1146. ))
  1147. characterMakers.push(() => makeCharacter(
  1148. { name: "Gael'Rathus" },
  1149. {
  1150. front: {
  1151. height: math.unit(2, "meter"),
  1152. weight: math.unit(90, "kg"),
  1153. name: "Front",
  1154. image: {
  1155. source: "./media/characters/gael'rathus/front.svg"
  1156. }
  1157. },
  1158. frontAlt: {
  1159. height: math.unit(2, "meter"),
  1160. weight: math.unit(90, "kg"),
  1161. name: "Front (alt)",
  1162. image: {
  1163. source: "./media/characters/gael'rathus/front-alt.svg"
  1164. }
  1165. },
  1166. frontAlt2: {
  1167. height: math.unit(2, "meter"),
  1168. weight: math.unit(90, "kg"),
  1169. name: "Front (alt 2)",
  1170. image: {
  1171. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1172. }
  1173. }
  1174. },
  1175. [
  1176. {
  1177. name: "Normal",
  1178. height: math.unit(9, "feet"),
  1179. default: true
  1180. },
  1181. {
  1182. name: "Large",
  1183. height: math.unit(25, "feet")
  1184. },
  1185. {
  1186. name: "Macro",
  1187. height: math.unit(0.25, "miles")
  1188. },
  1189. {
  1190. name: "Megamacro",
  1191. height: math.unit(10, "miles")
  1192. }
  1193. ]
  1194. ))
  1195. characterMakers.push(() => makeCharacter(
  1196. { name: "Sosha" },
  1197. {
  1198. side: {
  1199. height: math.unit(2, "meter"),
  1200. weight: math.unit(140, "kg"),
  1201. name: "Side",
  1202. image: {
  1203. source: "./media/characters/sosha/side.svg",
  1204. bottom: 0.042
  1205. }
  1206. },
  1207. },
  1208. [
  1209. {
  1210. name: "Normal",
  1211. height: math.unit(12, "feet"),
  1212. default: true
  1213. }
  1214. ]
  1215. ))
  1216. characterMakers.push(() => makeCharacter(
  1217. { name: "RuNNoLa" },
  1218. {
  1219. side: {
  1220. height: math.unit(5 + 5 / 12, "feet"),
  1221. weight: math.unit(170, "kg"),
  1222. name: "Side",
  1223. image: {
  1224. source: "./media/characters/runnola/side.svg",
  1225. extra: 741 / 448,
  1226. bottom: 0.05
  1227. }
  1228. },
  1229. },
  1230. [
  1231. {
  1232. name: "Small",
  1233. height: math.unit(3, "feet")
  1234. },
  1235. {
  1236. name: "Normal",
  1237. height: math.unit(5 + 5 / 12, "feet"),
  1238. default: true
  1239. },
  1240. {
  1241. name: "Big",
  1242. height: math.unit(10, "feet")
  1243. },
  1244. ]
  1245. ))
  1246. characterMakers.push(() => makeCharacter(
  1247. { name: "Kurribird" },
  1248. {
  1249. front: {
  1250. height: math.unit(2, "meter"),
  1251. weight: math.unit(50, "kg"),
  1252. name: "Front",
  1253. image: {
  1254. source: "./media/characters/kurribird/front.svg",
  1255. bottom: 0.015
  1256. }
  1257. },
  1258. frontAlt: {
  1259. height: math.unit(1.5, "meter"),
  1260. weight: math.unit(50, "kg"),
  1261. name: "Front (Alt)",
  1262. image: {
  1263. source: "./media/characters/kurribird/front-alt.svg",
  1264. extra: 1.45
  1265. }
  1266. },
  1267. },
  1268. [
  1269. {
  1270. name: "Normal",
  1271. height: math.unit(7, "feet")
  1272. },
  1273. {
  1274. name: "Big",
  1275. height: math.unit(12, "feet"),
  1276. default: true
  1277. },
  1278. {
  1279. name: "Macro",
  1280. height: math.unit(1500, "feet")
  1281. },
  1282. {
  1283. name: "Megamacro",
  1284. height: math.unit(2, "miles")
  1285. }
  1286. ]
  1287. ))
  1288. characterMakers.push(() => makeCharacter(
  1289. { name: "Elbial" },
  1290. {
  1291. front: {
  1292. height: math.unit(2, "meter"),
  1293. weight: math.unit(80, "kg"),
  1294. name: "Front",
  1295. image: {
  1296. source: "./media/characters/elbial/front.svg",
  1297. extra: 1643 / 1556,
  1298. bottom: 60.2 / 1696
  1299. }
  1300. },
  1301. side: {
  1302. height: math.unit(2, "meter"),
  1303. weight: math.unit(80, "kg"),
  1304. name: "Side",
  1305. image: {
  1306. source: "./media/characters/elbial/side.svg",
  1307. extra: 1630 / 1565,
  1308. bottom: 71.5 / 1697
  1309. }
  1310. },
  1311. back: {
  1312. height: math.unit(2, "meter"),
  1313. weight: math.unit(80, "kg"),
  1314. name: "Back",
  1315. image: {
  1316. source: "./media/characters/elbial/back.svg",
  1317. extra: 1668 / 1595,
  1318. bottom: 5.6 / 1672
  1319. }
  1320. },
  1321. frontDressed: {
  1322. height: math.unit(2, "meter"),
  1323. weight: math.unit(80, "kg"),
  1324. name: "Front (Dressed)",
  1325. image: {
  1326. source: "./media/characters/elbial/front-dressed.svg",
  1327. extra: 1653 / 1584,
  1328. bottom: 57 / 1708
  1329. }
  1330. },
  1331. genitals: {
  1332. height: math.unit(2 / 3.367, "meter"),
  1333. name: "Genitals",
  1334. image: {
  1335. source: "./media/characters/elbial/genitals.svg"
  1336. }
  1337. },
  1338. },
  1339. [
  1340. {
  1341. name: "Large",
  1342. height: math.unit(100, "feet")
  1343. },
  1344. {
  1345. name: "Macro",
  1346. height: math.unit(500, "feet"),
  1347. default: true
  1348. },
  1349. {
  1350. name: "Megamacro",
  1351. height: math.unit(10, "miles")
  1352. },
  1353. {
  1354. name: "Gigamacro",
  1355. height: math.unit(25000, "miles")
  1356. },
  1357. {
  1358. name: "Full-Size",
  1359. height: math.unit(8000000, "gigaparsecs")
  1360. }
  1361. ]
  1362. ))
  1363. characterMakers.push(() => makeCharacter(
  1364. { name: "Noah" },
  1365. {
  1366. front: {
  1367. height: math.unit(2, "meter"),
  1368. weight: math.unit(60, "kg"),
  1369. name: "Front",
  1370. image: {
  1371. source: "./media/characters/noah/front.svg"
  1372. }
  1373. },
  1374. talons: {
  1375. height: math.unit(0.315, "meter"),
  1376. name: "Talons",
  1377. image: {
  1378. source: "./media/characters/noah/talons.svg"
  1379. }
  1380. }
  1381. },
  1382. [
  1383. {
  1384. name: "Large",
  1385. height: math.unit(50, "feet")
  1386. },
  1387. {
  1388. name: "Macro",
  1389. height: math.unit(750, "feet"),
  1390. default: true
  1391. },
  1392. {
  1393. name: "Megamacro",
  1394. height: math.unit(50, "miles")
  1395. },
  1396. {
  1397. name: "Gigamacro",
  1398. height: math.unit(100000, "miles")
  1399. },
  1400. {
  1401. name: "Full-Size",
  1402. height: math.unit(3000000000, "miles")
  1403. }
  1404. ]
  1405. ))
  1406. characterMakers.push(() => makeCharacter(
  1407. { name: "Natalya" },
  1408. {
  1409. front: {
  1410. height: math.unit(2, "meter"),
  1411. weight: math.unit(80, "kg"),
  1412. name: "Front",
  1413. image: {
  1414. source: "./media/characters/natalya/front.svg"
  1415. }
  1416. },
  1417. back: {
  1418. height: math.unit(2, "meter"),
  1419. weight: math.unit(80, "kg"),
  1420. name: "Back",
  1421. image: {
  1422. source: "./media/characters/natalya/back.svg"
  1423. }
  1424. }
  1425. },
  1426. [
  1427. {
  1428. name: "Normal",
  1429. height: math.unit(150, "feet"),
  1430. default: true
  1431. },
  1432. {
  1433. name: "Megamacro",
  1434. height: math.unit(5, "miles")
  1435. },
  1436. {
  1437. name: "Full-Size",
  1438. height: math.unit(600, "kiloparsecs")
  1439. }
  1440. ]
  1441. ))
  1442. characterMakers.push(() => makeCharacter(
  1443. { name: "Erestrebah" },
  1444. {
  1445. front: {
  1446. height: math.unit(2, "meter"),
  1447. weight: math.unit(50, "kg"),
  1448. name: "Front",
  1449. image: {
  1450. source: "./media/characters/erestrebah/front.svg",
  1451. extra: 208 / 193,
  1452. bottom: 0.055
  1453. }
  1454. },
  1455. back: {
  1456. height: math.unit(2, "meter"),
  1457. weight: math.unit(50, "kg"),
  1458. name: "Back",
  1459. image: {
  1460. source: "./media/characters/erestrebah/back.svg",
  1461. extra: 1.3
  1462. }
  1463. }
  1464. },
  1465. [
  1466. {
  1467. name: "Normal",
  1468. height: math.unit(10, "feet")
  1469. },
  1470. {
  1471. name: "Large",
  1472. height: math.unit(50, "feet"),
  1473. default: true
  1474. },
  1475. {
  1476. name: "Macro",
  1477. height: math.unit(300, "feet")
  1478. },
  1479. {
  1480. name: "Macro+",
  1481. height: math.unit(750, "feet")
  1482. },
  1483. {
  1484. name: "Megamacro",
  1485. height: math.unit(3, "miles")
  1486. }
  1487. ]
  1488. ))
  1489. characterMakers.push(() => makeCharacter(
  1490. { name: "Jennifer" },
  1491. {
  1492. front: {
  1493. height: math.unit(2, "meter"),
  1494. weight: math.unit(80, "kg"),
  1495. name: "Front",
  1496. image: {
  1497. source: "./media/characters/jennifer/front.svg",
  1498. bottom: 0.11,
  1499. extra: 1.16
  1500. }
  1501. },
  1502. frontAlt: {
  1503. height: math.unit(2, "meter"),
  1504. weight: math.unit(80, "kg"),
  1505. name: "Front (Alt)",
  1506. image: {
  1507. source: "./media/characters/jennifer/front-alt.svg"
  1508. }
  1509. }
  1510. },
  1511. [
  1512. {
  1513. name: "Canon Height",
  1514. height: math.unit(120, "feet"),
  1515. default: true
  1516. },
  1517. {
  1518. name: "Macro+",
  1519. height: math.unit(300, "feet")
  1520. },
  1521. {
  1522. name: "Megamacro",
  1523. height: math.unit(20000, "feet")
  1524. }
  1525. ]
  1526. ))
  1527. characterMakers.push(() => makeCharacter(
  1528. { name: "Kalista" },
  1529. {
  1530. front: {
  1531. height: math.unit(2, "meter"),
  1532. weight: math.unit(50, "kg"),
  1533. name: "Front",
  1534. image: {
  1535. source: "./media/characters/kalista/front.svg",
  1536. extra: 1947 / 1700
  1537. }
  1538. },
  1539. back: {
  1540. height: math.unit(2, "meter"),
  1541. weight: math.unit(50, "kg"),
  1542. name: "Back",
  1543. image: {
  1544. source: "./media/characters/kalista/back.svg",
  1545. extra: 1366 / 1156
  1546. }
  1547. }
  1548. },
  1549. [
  1550. {
  1551. name: "Uncomfortably Small",
  1552. height: math.unit(10, "feet")
  1553. },
  1554. {
  1555. name: "Small",
  1556. height: math.unit(30, "feet")
  1557. },
  1558. {
  1559. name: "Macro",
  1560. height: math.unit(100, "feet"),
  1561. default: true
  1562. },
  1563. {
  1564. name: "Macro+",
  1565. height: math.unit(2000, "feet")
  1566. },
  1567. {
  1568. name: "True Form",
  1569. height: math.unit(8924, "miles")
  1570. }
  1571. ]
  1572. ))
  1573. characterMakers.push(() => makeCharacter(
  1574. { name: "GiantGrowingVixen" },
  1575. {
  1576. front: {
  1577. height: math.unit(2, "meter"),
  1578. weight: math.unit(120, "kg"),
  1579. name: "Front",
  1580. image: {
  1581. source: "./media/characters/ggv/front.svg"
  1582. }
  1583. },
  1584. side: {
  1585. height: math.unit(2, "meter"),
  1586. weight: math.unit(120, "kg"),
  1587. name: "Side",
  1588. image: {
  1589. source: "./media/characters/ggv/side.svg"
  1590. }
  1591. }
  1592. },
  1593. [
  1594. {
  1595. name: "Extremely Puny",
  1596. height: math.unit(9 + 5 / 12, "feet")
  1597. },
  1598. {
  1599. name: "Horribly Small",
  1600. height: math.unit(47.7, "miles"),
  1601. default: true
  1602. },
  1603. {
  1604. name: "Reasonably Sized",
  1605. height: math.unit(25000, "parsecs")
  1606. },
  1607. {
  1608. name: "Slightly Uncompressed",
  1609. height: math.unit(7.77e31, "parsecs")
  1610. },
  1611. {
  1612. name: "Omniversal",
  1613. height: math.unit(1e300, "meters")
  1614. },
  1615. ]
  1616. ))
  1617. characterMakers.push(() => makeCharacter(
  1618. { name: "Napalm" },
  1619. {
  1620. front: {
  1621. height: math.unit(2, "meter"),
  1622. weight: math.unit(75, "lb"),
  1623. name: "Front",
  1624. image: {
  1625. source: "./media/characters/napalm/front.svg"
  1626. }
  1627. },
  1628. back: {
  1629. height: math.unit(2, "meter"),
  1630. weight: math.unit(75, "lb"),
  1631. name: "Back",
  1632. image: {
  1633. source: "./media/characters/napalm/back.svg"
  1634. }
  1635. }
  1636. },
  1637. [
  1638. {
  1639. name: "Standard",
  1640. height: math.unit(55, "feet"),
  1641. default: true
  1642. }
  1643. ]
  1644. ))
  1645. characterMakers.push(() => makeCharacter(
  1646. { name: "Asana" },
  1647. {
  1648. front: {
  1649. height: math.unit(7 + 5 / 6, "feet"),
  1650. weight: math.unit(325, "lb"),
  1651. name: "Front",
  1652. image: {
  1653. source: "./media/characters/asana/front.svg",
  1654. extra: 1128 / 1068
  1655. }
  1656. },
  1657. back: {
  1658. height: math.unit(7 + 5 / 6, "feet"),
  1659. weight: math.unit(325, "lb"),
  1660. name: "Back",
  1661. image: {
  1662. source: "./media/characters/asana/back.svg",
  1663. extra: 1128 / 1068
  1664. }
  1665. },
  1666. },
  1667. [
  1668. {
  1669. name: "Standard",
  1670. height: math.unit(7 + 5 / 6, "feet"),
  1671. default: true
  1672. },
  1673. {
  1674. name: "Large",
  1675. height: math.unit(10, "meters")
  1676. },
  1677. {
  1678. name: "Macro",
  1679. height: math.unit(2500, "meters")
  1680. },
  1681. {
  1682. name: "Megamacro",
  1683. height: math.unit(5e6, "meters")
  1684. },
  1685. {
  1686. name: "Examacro",
  1687. height: math.unit(5e12, "lightyears")
  1688. },
  1689. {
  1690. name: "Max Size",
  1691. height: math.unit(1e31, "lightyears")
  1692. }
  1693. ]
  1694. ))
  1695. characterMakers.push(() => makeCharacter(
  1696. { name: "Ebony" },
  1697. {
  1698. front: {
  1699. height: math.unit(2, "meter"),
  1700. weight: math.unit(60, "kg"),
  1701. name: "Front",
  1702. image: {
  1703. source: "./media/characters/ebony/front.svg",
  1704. bottom: 0.03,
  1705. extra: 1045 / 810 + 0.03
  1706. }
  1707. },
  1708. side: {
  1709. height: math.unit(2, "meter"),
  1710. weight: math.unit(60, "kg"),
  1711. name: "Side",
  1712. image: {
  1713. source: "./media/characters/ebony/side.svg",
  1714. bottom: 0.03,
  1715. extra: 1045 / 810 + 0.03
  1716. }
  1717. },
  1718. back: {
  1719. height: math.unit(2, "meter"),
  1720. weight: math.unit(60, "kg"),
  1721. name: "Back",
  1722. image: {
  1723. source: "./media/characters/ebony/back.svg",
  1724. bottom: 0.01,
  1725. extra: 1045 / 810 + 0.01
  1726. }
  1727. },
  1728. },
  1729. [
  1730. // TODO check why I did this lol
  1731. {
  1732. name: "Standard",
  1733. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1734. default: true
  1735. },
  1736. {
  1737. name: "Macro",
  1738. height: math.unit(200, "feet")
  1739. },
  1740. {
  1741. name: "Gigamacro",
  1742. height: math.unit(13000, "km")
  1743. }
  1744. ]
  1745. ))
  1746. characterMakers.push(() => makeCharacter(
  1747. { name: "Mountain" },
  1748. {
  1749. front: {
  1750. height: math.unit(6, "feet"),
  1751. weight: math.unit(175, "lb"),
  1752. name: "Front",
  1753. image: {
  1754. source: "./media/characters/mountain/front.svg"
  1755. }
  1756. },
  1757. back: {
  1758. height: math.unit(6, "feet"),
  1759. weight: math.unit(175, "lb"),
  1760. name: "Back",
  1761. image: {
  1762. source: "./media/characters/mountain/back.svg"
  1763. }
  1764. },
  1765. },
  1766. [
  1767. {
  1768. name: "Large",
  1769. height: math.unit(20, "meters")
  1770. },
  1771. {
  1772. name: "Macro",
  1773. height: math.unit(300, "meters")
  1774. },
  1775. {
  1776. name: "Gigamacro",
  1777. height: math.unit(10000, "km"),
  1778. default: true
  1779. },
  1780. {
  1781. name: "Examacro",
  1782. height: math.unit(10e9, "lightyears")
  1783. }
  1784. ]
  1785. ))
  1786. characterMakers.push(() => makeCharacter(
  1787. { name: "Rick" },
  1788. {
  1789. front: {
  1790. height: math.unit(8, "feet"),
  1791. weight: math.unit(500, "lb"),
  1792. name: "Front",
  1793. image: {
  1794. source: "./media/characters/rick/front.svg"
  1795. }
  1796. }
  1797. },
  1798. [
  1799. {
  1800. name: "Normal",
  1801. height: math.unit(8, "feet"),
  1802. default: true
  1803. },
  1804. {
  1805. name: "Macro",
  1806. height: math.unit(5, "km")
  1807. }
  1808. ]
  1809. ))
  1810. characterMakers.push(() => makeCharacter(
  1811. { name: "Ona" },
  1812. {
  1813. front: {
  1814. height: math.unit(8, "feet"),
  1815. weight: math.unit(120, "lb"),
  1816. name: "Front",
  1817. image: {
  1818. source: "./media/characters/ona/front.svg"
  1819. }
  1820. },
  1821. frontAlt: {
  1822. height: math.unit(8, "feet"),
  1823. weight: math.unit(120, "lb"),
  1824. name: "Front (Alt)",
  1825. image: {
  1826. source: "./media/characters/ona/front-alt.svg"
  1827. }
  1828. },
  1829. back: {
  1830. height: math.unit(8, "feet"),
  1831. weight: math.unit(120, "lb"),
  1832. name: "Back",
  1833. image: {
  1834. source: "./media/characters/ona/back.svg"
  1835. }
  1836. },
  1837. foot: {
  1838. height: math.unit(1.1, "feet"),
  1839. name: "Foot",
  1840. image: {
  1841. source: "./media/characters/ona/foot.svg"
  1842. }
  1843. }
  1844. },
  1845. [
  1846. {
  1847. name: "Megamacro",
  1848. height: math.unit(70, "km"),
  1849. default: true
  1850. },
  1851. {
  1852. name: "Gigamacro",
  1853. height: math.unit(681818, "miles")
  1854. },
  1855. {
  1856. name: "Examacro",
  1857. height: math.unit(3800000, "lightyears")
  1858. },
  1859. ]
  1860. ))
  1861. characterMakers.push(() => makeCharacter(
  1862. { name: "Mech" },
  1863. {
  1864. front: {
  1865. height: math.unit(12, "feet"),
  1866. weight: math.unit(3000, "lb"),
  1867. name: "Front",
  1868. image: {
  1869. source: "./media/characters/mech/front.svg",
  1870. bottom: 0.025,
  1871. }
  1872. },
  1873. back: {
  1874. height: math.unit(12, "feet"),
  1875. weight: math.unit(3000, "lb"),
  1876. name: "Back",
  1877. image: {
  1878. source: "./media/characters/mech/back.svg",
  1879. bottom: 0.03,
  1880. }
  1881. }
  1882. },
  1883. [
  1884. {
  1885. name: "Normal",
  1886. height: math.unit(12, "feet")
  1887. },
  1888. {
  1889. name: "Macro",
  1890. height: math.unit(300, "feet"),
  1891. default: true
  1892. },
  1893. {
  1894. name: "Macro+",
  1895. height: math.unit(1500, "feet")
  1896. },
  1897. ]
  1898. ))
  1899. characterMakers.push(() => makeCharacter(
  1900. { name: "Gregory" },
  1901. {
  1902. front: {
  1903. height: math.unit(1.3, "meter"),
  1904. weight: math.unit(30, "kg"),
  1905. name: "Front",
  1906. image: {
  1907. source: "./media/characters/gregory/front.svg",
  1908. }
  1909. }
  1910. },
  1911. [
  1912. {
  1913. name: "Normal",
  1914. height: math.unit(1.3, "meter"),
  1915. default: true
  1916. },
  1917. {
  1918. name: "Macro",
  1919. height: math.unit(20, "meter")
  1920. }
  1921. ]
  1922. ))
  1923. characterMakers.push(() => makeCharacter(
  1924. { name: "Elory" },
  1925. {
  1926. front: {
  1927. height: math.unit(2.8, "meter"),
  1928. weight: math.unit(200, "kg"),
  1929. name: "Front",
  1930. image: {
  1931. source: "./media/characters/elory/front.svg",
  1932. }
  1933. }
  1934. },
  1935. [
  1936. {
  1937. name: "Normal",
  1938. height: math.unit(2.8, "meter"),
  1939. default: true
  1940. },
  1941. {
  1942. name: "Macro",
  1943. height: math.unit(38, "meter")
  1944. }
  1945. ]
  1946. ))
  1947. characterMakers.push(() => makeCharacter(
  1948. { name: "Angelpatamon" },
  1949. {
  1950. front: {
  1951. height: math.unit(470, "feet"),
  1952. weight: math.unit(924, "tons"),
  1953. name: "Front",
  1954. image: {
  1955. source: "./media/characters/angelpatamon/front.svg",
  1956. }
  1957. }
  1958. },
  1959. [
  1960. {
  1961. name: "Normal",
  1962. height: math.unit(470, "feet"),
  1963. default: true
  1964. },
  1965. {
  1966. name: "Deity Size I",
  1967. height: math.unit(28651.2, "km")
  1968. },
  1969. {
  1970. name: "Deity Size II",
  1971. height: math.unit(171907.2, "km")
  1972. }
  1973. ]
  1974. ))
  1975. characterMakers.push(() => makeCharacter(
  1976. { name: "Cryae" },
  1977. {
  1978. side: {
  1979. height: math.unit(7.2, "meter"),
  1980. weight: math.unit(8.2, "tons"),
  1981. name: "Side",
  1982. image: {
  1983. source: "./media/characters/cryae/side.svg",
  1984. extra: 3500 / 1500
  1985. }
  1986. }
  1987. },
  1988. [
  1989. {
  1990. name: "Normal",
  1991. height: math.unit(7.2, "meter"),
  1992. default: true
  1993. }
  1994. ]
  1995. ))
  1996. characterMakers.push(() => makeCharacter(
  1997. { name: "Xera" },
  1998. {
  1999. front: {
  2000. height: math.unit(6, "feet"),
  2001. weight: math.unit(175, "lb"),
  2002. name: "Front",
  2003. image: {
  2004. source: "./media/characters/xera/front.svg",
  2005. extra: 2300 / 2061
  2006. }
  2007. },
  2008. side: {
  2009. height: math.unit(6, "feet"),
  2010. weight: math.unit(175, "lb"),
  2011. name: "Side",
  2012. image: {
  2013. source: "./media/characters/xera/side.svg",
  2014. extra: 2300 / 2061
  2015. }
  2016. },
  2017. back: {
  2018. height: math.unit(6, "feet"),
  2019. weight: math.unit(175, "lb"),
  2020. name: "Back",
  2021. image: {
  2022. source: "./media/characters/xera/back.svg"
  2023. }
  2024. },
  2025. },
  2026. [
  2027. {
  2028. name: "Small",
  2029. height: math.unit(10, "feet")
  2030. },
  2031. {
  2032. name: "Macro",
  2033. height: math.unit(500, "meters"),
  2034. default: true
  2035. },
  2036. {
  2037. name: "Macro+",
  2038. height: math.unit(10, "km")
  2039. },
  2040. {
  2041. name: "Gigamacro",
  2042. height: math.unit(25000, "km")
  2043. },
  2044. {
  2045. name: "Teramacro",
  2046. height: math.unit(3e6, "km")
  2047. }
  2048. ]
  2049. ))
  2050. characterMakers.push(() => makeCharacter(
  2051. { name: "Nebula" },
  2052. {
  2053. front: {
  2054. height: math.unit(6, "feet"),
  2055. weight: math.unit(175, "lb"),
  2056. name: "Front",
  2057. image: {
  2058. source: "./media/characters/nebula/front.svg",
  2059. extra: 2600 / 2450
  2060. }
  2061. }
  2062. },
  2063. [
  2064. {
  2065. name: "Small",
  2066. height: math.unit(4.5, "meters")
  2067. },
  2068. {
  2069. name: "Macro",
  2070. height: math.unit(1500, "meters"),
  2071. default: true
  2072. },
  2073. {
  2074. name: "Megamacro",
  2075. height: math.unit(150, "km")
  2076. },
  2077. {
  2078. name: "Gigamacro",
  2079. height: math.unit(27000, "km")
  2080. }
  2081. ]
  2082. ))
  2083. characterMakers.push(() => makeCharacter(
  2084. { name: "Abysgar" },
  2085. {
  2086. front: {
  2087. height: math.unit(6, "feet"),
  2088. weight: math.unit(225, "lb"),
  2089. name: "Front",
  2090. image: {
  2091. source: "./media/characters/abysgar/front.svg"
  2092. }
  2093. }
  2094. },
  2095. [
  2096. {
  2097. name: "Small",
  2098. height: math.unit(4.5, "meters")
  2099. },
  2100. {
  2101. name: "Macro",
  2102. height: math.unit(1250, "meters"),
  2103. default: true
  2104. },
  2105. {
  2106. name: "Megamacro",
  2107. height: math.unit(125, "km")
  2108. },
  2109. {
  2110. name: "Gigamacro",
  2111. height: math.unit(26000, "km")
  2112. }
  2113. ]
  2114. ))
  2115. characterMakers.push(() => makeCharacter(
  2116. { name: "Yakuz" },
  2117. {
  2118. front: {
  2119. height: math.unit(6, "feet"),
  2120. weight: math.unit(180, "lb"),
  2121. name: "Front",
  2122. image: {
  2123. source: "./media/characters/yakuz/front.svg"
  2124. }
  2125. }
  2126. },
  2127. [
  2128. {
  2129. name: "Small",
  2130. height: math.unit(5, "meters")
  2131. },
  2132. {
  2133. name: "Macro",
  2134. height: math.unit(1500, "meters"),
  2135. default: true
  2136. },
  2137. {
  2138. name: "Megamacro",
  2139. height: math.unit(200, "km")
  2140. },
  2141. {
  2142. name: "Gigamacro",
  2143. height: math.unit(100000, "km")
  2144. }
  2145. ]
  2146. ))
  2147. characterMakers.push(() => makeCharacter(
  2148. { name: "Mirova" },
  2149. {
  2150. front: {
  2151. height: math.unit(6, "feet"),
  2152. weight: math.unit(175, "lb"),
  2153. name: "Front",
  2154. image: {
  2155. source: "./media/characters/mirova/front.svg"
  2156. }
  2157. }
  2158. },
  2159. [
  2160. {
  2161. name: "Small",
  2162. height: math.unit(5, "meters")
  2163. },
  2164. {
  2165. name: "Macro",
  2166. height: math.unit(900, "meters"),
  2167. default: true
  2168. },
  2169. {
  2170. name: "Megamacro",
  2171. height: math.unit(135, "km")
  2172. },
  2173. {
  2174. name: "Gigamacro",
  2175. height: math.unit(20000, "km")
  2176. }
  2177. ]
  2178. ))
  2179. characterMakers.push(() => makeCharacter(
  2180. { name: "Asana (Mech)" },
  2181. {
  2182. side: {
  2183. height: math.unit(28.35, "feet"),
  2184. weight: math.unit(99.75, "tons"),
  2185. name: "Side",
  2186. image: {
  2187. source: "./media/characters/asana-mech/side.svg"
  2188. }
  2189. }
  2190. },
  2191. [
  2192. {
  2193. name: "Normal",
  2194. height: math.unit(28.35, "feet"),
  2195. default: true
  2196. },
  2197. {
  2198. name: "Macro",
  2199. height: math.unit(2500, "feet")
  2200. },
  2201. {
  2202. name: "Megamacro",
  2203. height: math.unit(25, "miles")
  2204. },
  2205. {
  2206. name: "Examacro",
  2207. height: math.unit(6e8, "lightyears")
  2208. },
  2209. ]
  2210. ))
  2211. characterMakers.push(() => makeCharacter(
  2212. { name: "Ashtrek" },
  2213. {
  2214. front: {
  2215. height: math.unit(2, "meters"),
  2216. weight: math.unit(70, "kg"),
  2217. name: "Front",
  2218. image: {
  2219. source: "./media/characters/ashtrek/front.svg",
  2220. extra: 560 / 524,
  2221. bottom: 0.01
  2222. }
  2223. },
  2224. frontArmor: {
  2225. height: math.unit(2, "meters"),
  2226. weight: math.unit(76, "kg"),
  2227. name: "Front (Armor)",
  2228. image: {
  2229. source: "./media/characters/ashtrek/front-armor.svg",
  2230. extra: 561 / 527,
  2231. bottom: 0.01
  2232. }
  2233. },
  2234. side: {
  2235. height: math.unit(2, "meters"),
  2236. weight: math.unit(70, "kg"),
  2237. name: "Side",
  2238. image: {
  2239. source: "./media/characters/ashtrek/side.svg",
  2240. extra: 1717 / 1609,
  2241. bottom: 0.005
  2242. }
  2243. },
  2244. back: {
  2245. height: math.unit(2, "meters"),
  2246. weight: math.unit(70, "kg"),
  2247. name: "Back",
  2248. image: {
  2249. source: "./media/characters/ashtrek/back.svg",
  2250. extra: 1570 / 1501
  2251. }
  2252. },
  2253. },
  2254. [
  2255. {
  2256. name: "DEFCON 5",
  2257. height: math.unit(5, "meters")
  2258. },
  2259. {
  2260. name: "DEFCON 4",
  2261. height: math.unit(500, "meters"),
  2262. default: true
  2263. },
  2264. {
  2265. name: "DEFCON 3",
  2266. height: math.unit(5, "km")
  2267. },
  2268. {
  2269. name: "DEFCON 2",
  2270. height: math.unit(500, "km")
  2271. },
  2272. {
  2273. name: "DEFCON 1",
  2274. height: math.unit(500000, "km")
  2275. },
  2276. {
  2277. name: "DEFCON 0",
  2278. height: math.unit(3, "gigaparsecs")
  2279. },
  2280. ]
  2281. ))
  2282. characterMakers.push(() => makeCharacter(
  2283. { name: "Gale" },
  2284. {
  2285. front: {
  2286. height: math.unit(2, "meters"),
  2287. weight: math.unit(76, "kg"),
  2288. name: "Front",
  2289. image: {
  2290. source: "./media/characters/gale/front.svg"
  2291. }
  2292. },
  2293. frontAlt1: {
  2294. height: math.unit(2, "meters"),
  2295. weight: math.unit(76, "kg"),
  2296. name: "Front (Alt 1)",
  2297. image: {
  2298. source: "./media/characters/gale/front-alt-1.svg"
  2299. }
  2300. },
  2301. frontAlt2: {
  2302. height: math.unit(2, "meters"),
  2303. weight: math.unit(76, "kg"),
  2304. name: "Front (Alt 2)",
  2305. image: {
  2306. source: "./media/characters/gale/front-alt-2.svg"
  2307. }
  2308. },
  2309. },
  2310. [
  2311. {
  2312. name: "Normal",
  2313. height: math.unit(7, "feet")
  2314. },
  2315. {
  2316. name: "Macro",
  2317. height: math.unit(150, "feet"),
  2318. default: true
  2319. },
  2320. {
  2321. name: "Macro+",
  2322. height: math.unit(300, "feet")
  2323. },
  2324. ]
  2325. ))
  2326. characterMakers.push(() => makeCharacter(
  2327. { name: "Draylen" },
  2328. {
  2329. front: {
  2330. height: math.unit(2, "meters"),
  2331. weight: math.unit(76, "kg"),
  2332. name: "Front",
  2333. image: {
  2334. source: "./media/characters/draylen/front.svg"
  2335. }
  2336. }
  2337. },
  2338. [
  2339. {
  2340. name: "Macro",
  2341. height: math.unit(150, "feet"),
  2342. default: true
  2343. }
  2344. ]
  2345. ))
  2346. characterMakers.push(() => makeCharacter(
  2347. { name: "Chez" },
  2348. {
  2349. front: {
  2350. height: math.unit(7 + 9 / 12, "feet"),
  2351. weight: math.unit(379, "lbs"),
  2352. name: "Front",
  2353. image: {
  2354. source: "./media/characters/chez/front.svg"
  2355. }
  2356. },
  2357. side: {
  2358. height: math.unit(7 + 9 / 12, "feet"),
  2359. weight: math.unit(379, "lbs"),
  2360. name: "Side",
  2361. image: {
  2362. source: "./media/characters/chez/side.svg"
  2363. }
  2364. }
  2365. },
  2366. [
  2367. {
  2368. name: "Normal",
  2369. height: math.unit(7 + 9 / 12, "feet"),
  2370. default: true
  2371. },
  2372. {
  2373. name: "God King",
  2374. height: math.unit(9750000, "meters")
  2375. }
  2376. ]
  2377. ))
  2378. characterMakers.push(() => makeCharacter(
  2379. { name: "Kaylum" },
  2380. {
  2381. front: {
  2382. height: math.unit(6, "feet"),
  2383. weight: math.unit(275, "lbs"),
  2384. name: "Front",
  2385. image: {
  2386. source: "./media/characters/kaylum/front.svg",
  2387. bottom: 0.01,
  2388. extra: 1166 / 1031
  2389. }
  2390. },
  2391. frontWingless: {
  2392. height: math.unit(6, "feet"),
  2393. weight: math.unit(275, "lbs"),
  2394. name: "Front (Wingless)",
  2395. image: {
  2396. source: "./media/characters/kaylum/front-wingless.svg",
  2397. bottom: 0.01,
  2398. extra: 1117 / 1031
  2399. }
  2400. }
  2401. },
  2402. [
  2403. {
  2404. name: "Normal",
  2405. height: math.unit(3.05, "meters")
  2406. },
  2407. {
  2408. name: "Master",
  2409. height: math.unit(5.5, "meters")
  2410. },
  2411. {
  2412. name: "Rampage",
  2413. height: math.unit(19, "meters")
  2414. },
  2415. {
  2416. name: "Macro Lite",
  2417. height: math.unit(37, "meters")
  2418. },
  2419. {
  2420. name: "Hyper Predator",
  2421. height: math.unit(61, "meters")
  2422. },
  2423. {
  2424. name: "Macro",
  2425. height: math.unit(138, "meters"),
  2426. default: true
  2427. }
  2428. ]
  2429. ))
  2430. characterMakers.push(() => makeCharacter(
  2431. { name: "Geta" },
  2432. {
  2433. front: {
  2434. height: math.unit(6, "feet"),
  2435. weight: math.unit(150, "lbs"),
  2436. name: "Front",
  2437. image: {
  2438. source: "./media/characters/geta/front.svg"
  2439. }
  2440. }
  2441. },
  2442. [
  2443. {
  2444. name: "Micro",
  2445. height: math.unit(3, "inches"),
  2446. default: true
  2447. },
  2448. {
  2449. name: "Normal",
  2450. height: math.unit(5 + 5 / 12, "feet")
  2451. }
  2452. ]
  2453. ))
  2454. characterMakers.push(() => makeCharacter(
  2455. { name: "Tyrnn" },
  2456. {
  2457. front: {
  2458. height: math.unit(6, "feet"),
  2459. weight: math.unit(300, "lbs"),
  2460. name: "Front",
  2461. image: {
  2462. source: "./media/characters/tyrnn/front.svg"
  2463. }
  2464. }
  2465. },
  2466. [
  2467. {
  2468. name: "Main Height",
  2469. height: math.unit(355, "feet"),
  2470. default: true
  2471. },
  2472. {
  2473. name: "Fave. Height",
  2474. height: math.unit(2400, "feet")
  2475. }
  2476. ]
  2477. ))
  2478. characterMakers.push(() => makeCharacter(
  2479. { name: "Apple" },
  2480. {
  2481. front: {
  2482. height: math.unit(6, "feet"),
  2483. weight: math.unit(300, "lbs"),
  2484. name: "Front",
  2485. image: {
  2486. source: "./media/characters/appledectomy/front.svg"
  2487. }
  2488. }
  2489. },
  2490. [
  2491. {
  2492. name: "Macro",
  2493. height: math.unit(2500, "feet")
  2494. },
  2495. {
  2496. name: "Megamacro",
  2497. height: math.unit(50, "miles"),
  2498. default: true
  2499. },
  2500. {
  2501. name: "Gigamacro",
  2502. height: math.unit(5000, "miles")
  2503. },
  2504. {
  2505. name: "Teramacro",
  2506. height: math.unit(250000, "miles")
  2507. },
  2508. ]
  2509. ))
  2510. characterMakers.push(() => makeCharacter(
  2511. { name: "Vulpes" },
  2512. {
  2513. front: {
  2514. height: math.unit(6, "feet"),
  2515. weight: math.unit(200, "lbs"),
  2516. name: "Front",
  2517. image: {
  2518. source: "./media/characters/vulpes/front.svg",
  2519. extra: 573 / 543,
  2520. bottom: 0.033
  2521. }
  2522. },
  2523. side: {
  2524. height: math.unit(6, "feet"),
  2525. weight: math.unit(200, "lbs"),
  2526. name: "Side",
  2527. image: {
  2528. source: "./media/characters/vulpes/side.svg",
  2529. extra: 573 / 543,
  2530. bottom: 0.01
  2531. }
  2532. },
  2533. back: {
  2534. height: math.unit(6, "feet"),
  2535. weight: math.unit(200, "lbs"),
  2536. name: "Back",
  2537. image: {
  2538. source: "./media/characters/vulpes/back.svg",
  2539. extra: 573 / 543,
  2540. }
  2541. },
  2542. feet: {
  2543. height: math.unit(1.276, "feet"),
  2544. name: "Feet",
  2545. image: {
  2546. source: "./media/characters/vulpes/feet.svg"
  2547. }
  2548. },
  2549. maw: {
  2550. height: math.unit(1.18, "feet"),
  2551. name: "Maw",
  2552. image: {
  2553. source: "./media/characters/vulpes/maw.svg"
  2554. }
  2555. },
  2556. },
  2557. [
  2558. {
  2559. name: "Micro",
  2560. height: math.unit(2, "inches")
  2561. },
  2562. {
  2563. name: "Normal",
  2564. height: math.unit(6.3, "feet")
  2565. },
  2566. {
  2567. name: "Macro",
  2568. height: math.unit(850, "feet")
  2569. },
  2570. {
  2571. name: "Megamacro",
  2572. height: math.unit(7500, "feet"),
  2573. default: true
  2574. },
  2575. {
  2576. name: "Gigamacro",
  2577. height: math.unit(570000, "miles")
  2578. }
  2579. ]
  2580. ))
  2581. characterMakers.push(() => makeCharacter(
  2582. { name: "Rain Fallen" },
  2583. {
  2584. front: {
  2585. height: math.unit(6, "feet"),
  2586. weight: math.unit(210, "lbs"),
  2587. name: "Front",
  2588. image: {
  2589. source: "./media/characters/rain-fallen/front.svg"
  2590. }
  2591. },
  2592. side: {
  2593. height: math.unit(6, "feet"),
  2594. weight: math.unit(210, "lbs"),
  2595. name: "Side",
  2596. image: {
  2597. source: "./media/characters/rain-fallen/side.svg"
  2598. }
  2599. },
  2600. back: {
  2601. height: math.unit(6, "feet"),
  2602. weight: math.unit(210, "lbs"),
  2603. name: "Back",
  2604. image: {
  2605. source: "./media/characters/rain-fallen/back.svg"
  2606. }
  2607. },
  2608. feral: {
  2609. height: math.unit(9, "feet"),
  2610. weight: math.unit(700, "lbs"),
  2611. name: "Feral",
  2612. image: {
  2613. source: "./media/characters/rain-fallen/feral.svg"
  2614. }
  2615. },
  2616. },
  2617. [
  2618. {
  2619. name: "Normal",
  2620. height: math.unit(5, "meter")
  2621. },
  2622. {
  2623. name: "Macro",
  2624. height: math.unit(150, "meter"),
  2625. default: true
  2626. },
  2627. {
  2628. name: "Megamacro",
  2629. height: math.unit(278e6, "meter")
  2630. },
  2631. {
  2632. name: "Gigamacro",
  2633. height: math.unit(2e9, "meter")
  2634. },
  2635. {
  2636. name: "Teramacro",
  2637. height: math.unit(8e12, "meter")
  2638. },
  2639. {
  2640. name: "Devourer",
  2641. height: math.unit(14, "zettameters")
  2642. },
  2643. {
  2644. name: "Scarlet King",
  2645. height: math.unit(18, "yottameters")
  2646. },
  2647. {
  2648. name: "Void",
  2649. height: math.unit(6.66e66, "yottameters")
  2650. }
  2651. ]
  2652. ))
  2653. characterMakers.push(() => makeCharacter(
  2654. { name: "Zaakira" },
  2655. {
  2656. standing: {
  2657. height: math.unit(6, "feet"),
  2658. weight: math.unit(180, "lbs"),
  2659. name: "Standing",
  2660. image: {
  2661. source: "./media/characters/zaakira/standing.svg"
  2662. }
  2663. },
  2664. laying: {
  2665. height: math.unit(3, "feet"),
  2666. weight: math.unit(180, "lbs"),
  2667. name: "Laying",
  2668. image: {
  2669. source: "./media/characters/zaakira/laying.svg"
  2670. }
  2671. },
  2672. },
  2673. [
  2674. {
  2675. name: "Normal",
  2676. height: math.unit(12, "feet")
  2677. },
  2678. {
  2679. name: "Macro",
  2680. height: math.unit(279, "feet"),
  2681. default: true
  2682. }
  2683. ]
  2684. ))
  2685. characterMakers.push(() => makeCharacter(
  2686. { name: "Sigvald" },
  2687. {
  2688. front: {
  2689. height: math.unit(6, "feet"),
  2690. weight: math.unit(250, "lbs"),
  2691. name: "Front",
  2692. image: {
  2693. source: "./media/characters/sigvald/front.svg",
  2694. extra: 1000 / 850
  2695. }
  2696. },
  2697. back: {
  2698. height: math.unit(6, "feet"),
  2699. weight: math.unit(250, "lbs"),
  2700. name: "Back",
  2701. image: {
  2702. source: "./media/characters/sigvald/back.svg"
  2703. }
  2704. },
  2705. },
  2706. [
  2707. {
  2708. name: "Normal",
  2709. height: math.unit(8, "feet")
  2710. },
  2711. {
  2712. name: "Large",
  2713. height: math.unit(12, "feet")
  2714. },
  2715. {
  2716. name: "Larger",
  2717. height: math.unit(20, "feet")
  2718. },
  2719. {
  2720. name: "Macro",
  2721. height: math.unit(150, "feet")
  2722. },
  2723. {
  2724. name: "Macro+",
  2725. height: math.unit(200, "feet"),
  2726. default: true
  2727. },
  2728. ]
  2729. ))
  2730. characterMakers.push(() => makeCharacter(
  2731. { name: "Scott" },
  2732. {
  2733. side: {
  2734. height: math.unit(12, "feet"),
  2735. weight: math.unit(3000, "lbs"),
  2736. name: "Side",
  2737. image: {
  2738. source: "./media/characters/scott/side.svg",
  2739. extra: 1,
  2740. bottom: 0.069
  2741. }
  2742. },
  2743. upright: {
  2744. height: math.unit(12, "feet"),
  2745. weight: math.unit(3000, "lbs"),
  2746. name: "Upright",
  2747. image: {
  2748. source: "./media/characters/scott/upright.svg",
  2749. extra: 1,
  2750. bottom: 0.05
  2751. }
  2752. },
  2753. },
  2754. [
  2755. {
  2756. name: "Normal",
  2757. height: math.unit(12, "feet"),
  2758. default: true
  2759. },
  2760. ]
  2761. ))
  2762. characterMakers.push(() => makeCharacter(
  2763. { name: "Tobias" },
  2764. {
  2765. side: {
  2766. height: math.unit(8, "meters"),
  2767. weight: math.unit(84755, "lbs"),
  2768. name: "Side",
  2769. image: {
  2770. source: "./media/characters/tobias/side.svg",
  2771. extra: 1474 / 1096,
  2772. bottom: 38.9 / 1513.1235
  2773. }
  2774. },
  2775. },
  2776. [
  2777. {
  2778. name: "Normal",
  2779. height: math.unit(8, "meters"),
  2780. default: true
  2781. },
  2782. ]
  2783. ))
  2784. characterMakers.push(() => makeCharacter(
  2785. { name: "Kieran" },
  2786. {
  2787. front: {
  2788. height: math.unit(5.5, "feet"),
  2789. weight: math.unit(400, "lbs"),
  2790. name: "Front",
  2791. image: {
  2792. source: "./media/characters/kieran/front.svg",
  2793. extra: 2694/2364,
  2794. bottom: 217/2908
  2795. }
  2796. },
  2797. side: {
  2798. height: math.unit(5.5, "feet"),
  2799. weight: math.unit(400, "lbs"),
  2800. name: "Side",
  2801. image: {
  2802. source: "./media/characters/kieran/side.svg",
  2803. extra: 875/777,
  2804. bottom: 84.6/959
  2805. }
  2806. },
  2807. },
  2808. [
  2809. {
  2810. name: "Normal",
  2811. height: math.unit(5.5, "feet"),
  2812. default: true
  2813. },
  2814. ]
  2815. ))
  2816. characterMakers.push(() => makeCharacter(
  2817. { name: "Sanya" },
  2818. {
  2819. side: {
  2820. height: math.unit(2, "meters"),
  2821. weight: math.unit(70, "kg"),
  2822. name: "Side",
  2823. image: {
  2824. source: "./media/characters/sanya/side.svg",
  2825. bottom: 0.02,
  2826. extra: 1.02
  2827. }
  2828. },
  2829. },
  2830. [
  2831. {
  2832. name: "Small",
  2833. height: math.unit(2, "meters")
  2834. },
  2835. {
  2836. name: "Normal",
  2837. height: math.unit(3, "meters")
  2838. },
  2839. {
  2840. name: "Macro",
  2841. height: math.unit(16, "meters"),
  2842. default: true
  2843. },
  2844. ]
  2845. ))
  2846. characterMakers.push(() => makeCharacter(
  2847. { name: "Miranda" },
  2848. {
  2849. side: {
  2850. height: math.unit(2, "meters"),
  2851. weight: math.unit(120, "kg"),
  2852. name: "Front",
  2853. image: {
  2854. source: "./media/characters/miranda/front.svg",
  2855. extra: 10.6 / 10
  2856. }
  2857. },
  2858. },
  2859. [
  2860. {
  2861. name: "Normal",
  2862. height: math.unit(10, "feet"),
  2863. default: true
  2864. }
  2865. ]
  2866. ))
  2867. characterMakers.push(() => makeCharacter(
  2868. { name: "James" },
  2869. {
  2870. side: {
  2871. height: math.unit(2, "meters"),
  2872. weight: math.unit(100, "kg"),
  2873. name: "Front",
  2874. image: {
  2875. source: "./media/characters/james/front.svg",
  2876. extra: 10 / 8.5
  2877. }
  2878. },
  2879. },
  2880. [
  2881. {
  2882. name: "Normal",
  2883. height: math.unit(8.5, "feet"),
  2884. default: true
  2885. }
  2886. ]
  2887. ))
  2888. characterMakers.push(() => makeCharacter(
  2889. { name: "Heather" },
  2890. {
  2891. side: {
  2892. height: math.unit(9.5, "feet"),
  2893. weight: math.unit(2500, "lbs"),
  2894. name: "Side",
  2895. image: {
  2896. source: "./media/characters/heather/side.svg"
  2897. }
  2898. },
  2899. },
  2900. [
  2901. {
  2902. name: "Normal",
  2903. height: math.unit(9.5, "feet"),
  2904. default: true
  2905. }
  2906. ]
  2907. ))
  2908. characterMakers.push(() => makeCharacter(
  2909. { name: "Lukas" },
  2910. {
  2911. side: {
  2912. height: math.unit(6.5, "feet"),
  2913. weight: math.unit(400, "lbs"),
  2914. name: "Side",
  2915. image: {
  2916. source: "./media/characters/lukas/side.svg",
  2917. extra: 7.25 / 6.5
  2918. }
  2919. },
  2920. },
  2921. [
  2922. {
  2923. name: "Normal",
  2924. height: math.unit(6.5, "feet"),
  2925. default: true
  2926. }
  2927. ]
  2928. ))
  2929. characterMakers.push(() => makeCharacter(
  2930. { name: "Louise" },
  2931. {
  2932. side: {
  2933. height: math.unit(5, "feet"),
  2934. weight: math.unit(3000, "lbs"),
  2935. name: "Side",
  2936. image: {
  2937. source: "./media/characters/louise/side.svg"
  2938. }
  2939. },
  2940. },
  2941. [
  2942. {
  2943. name: "Normal",
  2944. height: math.unit(5, "feet"),
  2945. default: true
  2946. }
  2947. ]
  2948. ))
  2949. characterMakers.push(() => makeCharacter(
  2950. { name: "Ramona" },
  2951. {
  2952. side: {
  2953. height: math.unit(6, "feet"),
  2954. weight: math.unit(150, "lbs"),
  2955. name: "Side",
  2956. image: {
  2957. source: "./media/characters/ramona/side.svg"
  2958. }
  2959. },
  2960. },
  2961. [
  2962. {
  2963. name: "Normal",
  2964. height: math.unit(5.3, "meters"),
  2965. default: true
  2966. },
  2967. {
  2968. name: "Macro",
  2969. height: math.unit(20, "stories")
  2970. },
  2971. {
  2972. name: "Macro+",
  2973. height: math.unit(50, "stories")
  2974. },
  2975. ]
  2976. ))
  2977. characterMakers.push(() => makeCharacter(
  2978. { name: "Deerpuff" },
  2979. {
  2980. standing: {
  2981. height: math.unit(5.75, "feet"),
  2982. weight: math.unit(160, "lbs"),
  2983. name: "Standing",
  2984. image: {
  2985. source: "./media/characters/deerpuff/standing.svg",
  2986. extra: 682 / 624
  2987. }
  2988. },
  2989. sitting: {
  2990. height: math.unit(5.75 / 1.79, "feet"),
  2991. weight: math.unit(160, "lbs"),
  2992. name: "Sitting",
  2993. image: {
  2994. source: "./media/characters/deerpuff/sitting.svg",
  2995. bottom: 44 / 400,
  2996. extra: 1
  2997. }
  2998. },
  2999. taurLaying: {
  3000. height: math.unit(6, "feet"),
  3001. weight: math.unit(400, "lbs"),
  3002. name: "Taur (Laying)",
  3003. image: {
  3004. source: "./media/characters/deerpuff/taur-laying.svg"
  3005. }
  3006. },
  3007. },
  3008. [
  3009. {
  3010. name: "Puffball",
  3011. height: math.unit(6, "inches")
  3012. },
  3013. {
  3014. name: "Normalpuff",
  3015. height: math.unit(5.75, "feet")
  3016. },
  3017. {
  3018. name: "Macropuff",
  3019. height: math.unit(1500, "feet"),
  3020. default: true
  3021. },
  3022. {
  3023. name: "Megapuff",
  3024. height: math.unit(500, "miles")
  3025. },
  3026. {
  3027. name: "Gigapuff",
  3028. height: math.unit(250000, "miles")
  3029. },
  3030. {
  3031. name: "Omegapuff",
  3032. height: math.unit(1000, "lightyears")
  3033. },
  3034. ]
  3035. ))
  3036. characterMakers.push(() => makeCharacter(
  3037. { name: "Vivian" },
  3038. {
  3039. stomping: {
  3040. height: math.unit(6, "feet"),
  3041. weight: math.unit(170, "lbs"),
  3042. name: "Stomping",
  3043. image: {
  3044. source: "./media/characters/vivian/stomping.svg"
  3045. }
  3046. },
  3047. sitting: {
  3048. height: math.unit(6 / 1.75, "feet"),
  3049. weight: math.unit(170, "lbs"),
  3050. name: "Sitting",
  3051. image: {
  3052. source: "./media/characters/vivian/sitting.svg",
  3053. bottom: 1 / 6.4,
  3054. extra: 1,
  3055. }
  3056. },
  3057. },
  3058. [
  3059. {
  3060. name: "Normal",
  3061. height: math.unit(7, "feet"),
  3062. default: true
  3063. },
  3064. {
  3065. name: "Macro",
  3066. height: math.unit(10, "stories")
  3067. },
  3068. {
  3069. name: "Macro+",
  3070. height: math.unit(30, "stories")
  3071. },
  3072. {
  3073. name: "Megamacro",
  3074. height: math.unit(10, "miles")
  3075. },
  3076. {
  3077. name: "Megamacro+",
  3078. height: math.unit(2750000, "meters")
  3079. },
  3080. ]
  3081. ))
  3082. characterMakers.push(() => makeCharacter(
  3083. { name: "Prince" },
  3084. {
  3085. front: {
  3086. height: math.unit(6, "feet"),
  3087. weight: math.unit(160, "lbs"),
  3088. name: "Front",
  3089. image: {
  3090. source: "./media/characters/prince/front.svg",
  3091. extra: 3400 / 3000
  3092. }
  3093. },
  3094. jumping: {
  3095. height: math.unit(6, "feet"),
  3096. weight: math.unit(160, "lbs"),
  3097. name: "Jumping",
  3098. image: {
  3099. source: "./media/characters/prince/jump.svg",
  3100. extra: 2555 / 2134
  3101. }
  3102. },
  3103. },
  3104. [
  3105. {
  3106. name: "Normal",
  3107. height: math.unit(7.75, "feet"),
  3108. default: true
  3109. },
  3110. {
  3111. name: "Not cute",
  3112. height: math.unit(17, "feet")
  3113. },
  3114. {
  3115. name: "I said NOT",
  3116. height: math.unit(91, "feet")
  3117. },
  3118. {
  3119. name: "Please stop",
  3120. height: math.unit(560, "feet")
  3121. },
  3122. {
  3123. name: "What have you done",
  3124. height: math.unit(2200, "feet")
  3125. },
  3126. {
  3127. name: "Deer God",
  3128. height: math.unit(3.6, "miles")
  3129. },
  3130. ]
  3131. ))
  3132. characterMakers.push(() => makeCharacter(
  3133. { name: "Psymon" },
  3134. {
  3135. standing: {
  3136. height: math.unit(6, "feet"),
  3137. weight: math.unit(300, "lbs"),
  3138. name: "Standing",
  3139. image: {
  3140. source: "./media/characters/psymon/standing.svg",
  3141. extra: 1888 / 1810,
  3142. bottom: 0.05
  3143. }
  3144. },
  3145. slithering: {
  3146. height: math.unit(6, "feet"),
  3147. weight: math.unit(300, "lbs"),
  3148. name: "Slithering",
  3149. image: {
  3150. source: "./media/characters/psymon/slithering.svg",
  3151. extra: 1330 / 1224
  3152. }
  3153. },
  3154. slitheringAlt: {
  3155. height: math.unit(6, "feet"),
  3156. weight: math.unit(300, "lbs"),
  3157. name: "Slithering (Alt)",
  3158. image: {
  3159. source: "./media/characters/psymon/slithering-alt.svg",
  3160. extra: 1330 / 1224
  3161. }
  3162. },
  3163. },
  3164. [
  3165. {
  3166. name: "Normal",
  3167. height: math.unit(11.25, "feet"),
  3168. default: true
  3169. },
  3170. {
  3171. name: "Large",
  3172. height: math.unit(27, "feet")
  3173. },
  3174. {
  3175. name: "Giant",
  3176. height: math.unit(87, "feet")
  3177. },
  3178. {
  3179. name: "Macro",
  3180. height: math.unit(365, "feet")
  3181. },
  3182. {
  3183. name: "Megamacro",
  3184. height: math.unit(3, "miles")
  3185. },
  3186. {
  3187. name: "World Serpent",
  3188. height: math.unit(8000, "miles")
  3189. },
  3190. ]
  3191. ))
  3192. characterMakers.push(() => makeCharacter(
  3193. { name: "Daimos" },
  3194. {
  3195. front: {
  3196. height: math.unit(6, "feet"),
  3197. weight: math.unit(180, "lbs"),
  3198. name: "Front",
  3199. image: {
  3200. source: "./media/characters/daimos/front.svg",
  3201. extra: 4160 / 3897,
  3202. bottom: 0.021
  3203. }
  3204. }
  3205. },
  3206. [
  3207. {
  3208. name: "Normal",
  3209. height: math.unit(8, "feet"),
  3210. default: true
  3211. },
  3212. {
  3213. name: "Big Dog",
  3214. height: math.unit(22, "feet")
  3215. },
  3216. {
  3217. name: "Macro",
  3218. height: math.unit(127, "feet")
  3219. },
  3220. {
  3221. name: "Megamacro",
  3222. height: math.unit(3600, "feet")
  3223. },
  3224. ]
  3225. ))
  3226. characterMakers.push(() => makeCharacter(
  3227. { name: "Blake" },
  3228. {
  3229. side: {
  3230. height: math.unit(6, "feet"),
  3231. weight: math.unit(180, "lbs"),
  3232. name: "Side",
  3233. image: {
  3234. source: "./media/characters/blake/side.svg",
  3235. extra: 1212 / 1120,
  3236. bottom: 0.05
  3237. }
  3238. },
  3239. crouched: {
  3240. height: math.unit(6 * 0.57, "feet"),
  3241. weight: math.unit(180, "lbs"),
  3242. name: "Crouched",
  3243. image: {
  3244. source: "./media/characters/blake/crouched.svg",
  3245. extra: 840 / 587,
  3246. bottom: 0.04
  3247. }
  3248. },
  3249. bent: {
  3250. height: math.unit(6 * 0.75, "feet"),
  3251. weight: math.unit(180, "lbs"),
  3252. name: "Bent",
  3253. image: {
  3254. source: "./media/characters/blake/bent.svg",
  3255. extra: 592 / 544,
  3256. bottom: 0.035
  3257. }
  3258. },
  3259. },
  3260. [
  3261. {
  3262. name: "Normal",
  3263. height: math.unit(8 + 1 / 6, "feet"),
  3264. default: true
  3265. },
  3266. {
  3267. name: "Big Backside",
  3268. height: math.unit(37, "feet")
  3269. },
  3270. {
  3271. name: "Subway Shredder",
  3272. height: math.unit(72, "feet")
  3273. },
  3274. {
  3275. name: "City Carver",
  3276. height: math.unit(1675, "feet")
  3277. },
  3278. {
  3279. name: "Tectonic Tweaker",
  3280. height: math.unit(2300, "miles")
  3281. },
  3282. ]
  3283. ))
  3284. characterMakers.push(() => makeCharacter(
  3285. { name: "Guisetto" },
  3286. {
  3287. front: {
  3288. height: math.unit(6, "feet"),
  3289. weight: math.unit(180, "lbs"),
  3290. name: "Front",
  3291. image: {
  3292. source: "./media/characters/guisetto/front.svg",
  3293. extra: 856 / 817,
  3294. bottom: 0.06
  3295. }
  3296. },
  3297. airborne: {
  3298. height: math.unit(6, "feet"),
  3299. weight: math.unit(180, "lbs"),
  3300. name: "Airborne",
  3301. image: {
  3302. source: "./media/characters/guisetto/airborne.svg",
  3303. extra: 584 / 525
  3304. }
  3305. },
  3306. },
  3307. [
  3308. {
  3309. name: "Normal",
  3310. height: math.unit(10 + 11 / 12, "feet"),
  3311. default: true
  3312. },
  3313. {
  3314. name: "Large",
  3315. height: math.unit(35, "feet")
  3316. },
  3317. {
  3318. name: "Macro",
  3319. height: math.unit(475, "feet")
  3320. },
  3321. ]
  3322. ))
  3323. characterMakers.push(() => makeCharacter(
  3324. { name: "Luxor" },
  3325. {
  3326. front: {
  3327. height: math.unit(6, "feet"),
  3328. weight: math.unit(180, "lbs"),
  3329. name: "Front",
  3330. image: {
  3331. source: "./media/characters/luxor/front.svg",
  3332. extra: 2940 / 2152
  3333. }
  3334. },
  3335. back: {
  3336. height: math.unit(6, "feet"),
  3337. weight: math.unit(180, "lbs"),
  3338. name: "Back",
  3339. image: {
  3340. source: "./media/characters/luxor/back.svg",
  3341. extra: 1083 / 960
  3342. }
  3343. },
  3344. },
  3345. [
  3346. {
  3347. name: "Normal",
  3348. height: math.unit(5 + 5 / 6, "feet"),
  3349. default: true
  3350. },
  3351. {
  3352. name: "Lamp",
  3353. height: math.unit(50, "feet")
  3354. },
  3355. {
  3356. name: "Lämp",
  3357. height: math.unit(300, "feet")
  3358. },
  3359. {
  3360. name: "The sun is a lamp",
  3361. height: math.unit(250000, "miles")
  3362. },
  3363. ]
  3364. ))
  3365. characterMakers.push(() => makeCharacter(
  3366. { name: "Huoyan" },
  3367. {
  3368. front: {
  3369. height: math.unit(6, "feet"),
  3370. weight: math.unit(50, "lbs"),
  3371. name: "Front",
  3372. image: {
  3373. source: "./media/characters/huoyan/front.svg"
  3374. }
  3375. },
  3376. side: {
  3377. height: math.unit(6, "feet"),
  3378. weight: math.unit(180, "lbs"),
  3379. name: "Side",
  3380. image: {
  3381. source: "./media/characters/huoyan/side.svg"
  3382. }
  3383. },
  3384. },
  3385. [
  3386. {
  3387. name: "Chef",
  3388. height: math.unit(9, "feet")
  3389. },
  3390. {
  3391. name: "Normal",
  3392. height: math.unit(65, "feet"),
  3393. default: true
  3394. },
  3395. {
  3396. name: "Macro",
  3397. height: math.unit(780, "feet")
  3398. },
  3399. {
  3400. name: "Flaming Mountain",
  3401. height: math.unit(4.8, "miles")
  3402. },
  3403. {
  3404. name: "Celestial",
  3405. height: math.unit(765000, "miles")
  3406. },
  3407. ]
  3408. ))
  3409. characterMakers.push(() => makeCharacter(
  3410. { name: "Tails" },
  3411. {
  3412. front: {
  3413. height: math.unit(5 + 3 / 4, "feet"),
  3414. weight: math.unit(120, "lbs"),
  3415. name: "Front",
  3416. image: {
  3417. source: "./media/characters/tails/front.svg"
  3418. }
  3419. }
  3420. },
  3421. [
  3422. {
  3423. name: "Normal",
  3424. height: math.unit(5 + 3 / 4, "feet"),
  3425. default: true
  3426. }
  3427. ]
  3428. ))
  3429. characterMakers.push(() => makeCharacter(
  3430. { name: "Rainy" },
  3431. {
  3432. front: {
  3433. height: math.unit(4, "feet"),
  3434. weight: math.unit(50, "lbs"),
  3435. name: "Front",
  3436. image: {
  3437. source: "./media/characters/rainy/front.svg"
  3438. }
  3439. }
  3440. },
  3441. [
  3442. {
  3443. name: "Macro",
  3444. height: math.unit(800, "feet"),
  3445. default: true
  3446. }
  3447. ]
  3448. ))
  3449. characterMakers.push(() => makeCharacter(
  3450. { name: "Rainier" },
  3451. {
  3452. front: {
  3453. height: math.unit(6, "feet"),
  3454. weight: math.unit(150, "lbs"),
  3455. name: "Front",
  3456. image: {
  3457. source: "./media/characters/rainier/front.svg"
  3458. }
  3459. }
  3460. },
  3461. [
  3462. {
  3463. name: "Micro",
  3464. height: math.unit(2, "mm"),
  3465. default: true
  3466. }
  3467. ]
  3468. ))
  3469. characterMakers.push(() => makeCharacter(
  3470. { name: "Andy" },
  3471. {
  3472. front: {
  3473. height: math.unit(6, "feet"),
  3474. weight: math.unit(180, "lbs"),
  3475. name: "Front",
  3476. image: {
  3477. source: "./media/characters/andy/front.svg"
  3478. }
  3479. }
  3480. },
  3481. [
  3482. {
  3483. name: "Normal",
  3484. height: math.unit(8, "feet"),
  3485. default: true
  3486. },
  3487. {
  3488. name: "Macro",
  3489. height: math.unit(1000, "feet")
  3490. },
  3491. {
  3492. name: "Megamacro",
  3493. height: math.unit(5, "miles")
  3494. },
  3495. {
  3496. name: "Gigamacro",
  3497. height: math.unit(5000, "miles")
  3498. },
  3499. ]
  3500. ))
  3501. characterMakers.push(() => makeCharacter(
  3502. { name: "Cimmaron" },
  3503. {
  3504. front: {
  3505. height: math.unit(6, "feet"),
  3506. weight: math.unit(210, "lbs"),
  3507. name: "Front",
  3508. image: {
  3509. source: "./media/characters/cimmaron/front-sfw.svg",
  3510. extra: 701 / 676,
  3511. bottom: 0.046
  3512. }
  3513. },
  3514. back: {
  3515. height: math.unit(6, "feet"),
  3516. weight: math.unit(210, "lbs"),
  3517. name: "Back",
  3518. image: {
  3519. source: "./media/characters/cimmaron/back-sfw.svg",
  3520. extra: 701 / 676,
  3521. bottom: 0.046
  3522. }
  3523. },
  3524. frontNsfw: {
  3525. height: math.unit(6, "feet"),
  3526. weight: math.unit(210, "lbs"),
  3527. name: "Front (NSFW)",
  3528. image: {
  3529. source: "./media/characters/cimmaron/front-nsfw.svg",
  3530. extra: 701 / 676,
  3531. bottom: 0.046
  3532. }
  3533. },
  3534. backNsfw: {
  3535. height: math.unit(6, "feet"),
  3536. weight: math.unit(210, "lbs"),
  3537. name: "Back (NSFW)",
  3538. image: {
  3539. source: "./media/characters/cimmaron/back-nsfw.svg",
  3540. extra: 701 / 676,
  3541. bottom: 0.046
  3542. }
  3543. },
  3544. dick: {
  3545. height: math.unit(1.714, "feet"),
  3546. name: "Dick",
  3547. image: {
  3548. source: "./media/characters/cimmaron/dick.svg"
  3549. }
  3550. },
  3551. },
  3552. [
  3553. {
  3554. name: "Normal",
  3555. height: math.unit(6, "feet"),
  3556. default: true
  3557. },
  3558. {
  3559. name: "Macro Mayor",
  3560. height: math.unit(350, "meters")
  3561. },
  3562. ]
  3563. ))
  3564. characterMakers.push(() => makeCharacter(
  3565. { name: "Akari Kaen" },
  3566. {
  3567. front: {
  3568. height: math.unit(6, "feet"),
  3569. weight: math.unit(200, "lbs"),
  3570. name: "Front",
  3571. image: {
  3572. source: "./media/characters/akari/front.svg",
  3573. extra: 962 / 901,
  3574. bottom: 0.04
  3575. }
  3576. }
  3577. },
  3578. [
  3579. {
  3580. name: "Micro",
  3581. height: math.unit(5, "inches"),
  3582. default: true
  3583. },
  3584. {
  3585. name: "Normal",
  3586. height: math.unit(7, "feet")
  3587. },
  3588. ]
  3589. ))
  3590. characterMakers.push(() => makeCharacter(
  3591. { name: "Cynosura" },
  3592. {
  3593. front: {
  3594. height: math.unit(6, "feet"),
  3595. weight: math.unit(140, "lbs"),
  3596. name: "Front",
  3597. image: {
  3598. source: "./media/characters/cynosura/front.svg",
  3599. extra: 896 / 847
  3600. }
  3601. },
  3602. back: {
  3603. height: math.unit(6, "feet"),
  3604. weight: math.unit(140, "lbs"),
  3605. name: "Back",
  3606. image: {
  3607. source: "./media/characters/cynosura/back.svg",
  3608. extra: 1365 / 1250
  3609. }
  3610. },
  3611. },
  3612. [
  3613. {
  3614. name: "Micro",
  3615. height: math.unit(4, "inches")
  3616. },
  3617. {
  3618. name: "Normal",
  3619. height: math.unit(5.75, "feet"),
  3620. default: true
  3621. },
  3622. {
  3623. name: "Tall",
  3624. height: math.unit(10, "feet")
  3625. },
  3626. {
  3627. name: "Big",
  3628. height: math.unit(20, "feet")
  3629. },
  3630. {
  3631. name: "Macro",
  3632. height: math.unit(50, "feet")
  3633. },
  3634. ]
  3635. ))
  3636. characterMakers.push(() => makeCharacter(
  3637. { name: "Gin" },
  3638. {
  3639. front: {
  3640. height: math.unit(6, "feet"),
  3641. weight: math.unit(170, "lbs"),
  3642. name: "Front",
  3643. image: {
  3644. source: "./media/characters/gin/front.svg",
  3645. extra: 1.053,
  3646. bottom: 0.025
  3647. }
  3648. },
  3649. foot: {
  3650. height: math.unit(6 / 4.25, "feet"),
  3651. name: "Foot",
  3652. image: {
  3653. source: "./media/characters/gin/foot.svg"
  3654. }
  3655. },
  3656. sole: {
  3657. height: math.unit(6 / 4.40, "feet"),
  3658. name: "Sole",
  3659. image: {
  3660. source: "./media/characters/gin/sole.svg"
  3661. }
  3662. },
  3663. },
  3664. [
  3665. {
  3666. name: "Normal",
  3667. height: math.unit(9 + 4 / 12, "feet")
  3668. },
  3669. {
  3670. name: "Macro",
  3671. height: math.unit(1500, "feet")
  3672. },
  3673. {
  3674. name: "Megamacro",
  3675. height: math.unit(200, "miles"),
  3676. default: true
  3677. },
  3678. {
  3679. name: "Gigamacro",
  3680. height: math.unit(500, "megameters")
  3681. },
  3682. {
  3683. name: "Teramacro",
  3684. height: math.unit(15, "lightyears")
  3685. }
  3686. ]
  3687. ))
  3688. characterMakers.push(() => makeCharacter(
  3689. { name: "Guy" },
  3690. {
  3691. front: {
  3692. height: math.unit(6 + 1 / 6, "feet"),
  3693. weight: math.unit(178, "lbs"),
  3694. name: "Front",
  3695. image: {
  3696. source: "./media/characters/guy/front.svg"
  3697. }
  3698. }
  3699. },
  3700. [
  3701. {
  3702. name: "Normal",
  3703. height: math.unit(6 + 1 / 6, "feet"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Large",
  3708. height: math.unit(25 + 7 / 12, "feet")
  3709. },
  3710. {
  3711. name: "Macro",
  3712. height: math.unit(60 + 9 / 12, "feet")
  3713. },
  3714. {
  3715. name: "Macro+",
  3716. height: math.unit(246, "feet")
  3717. },
  3718. {
  3719. name: "Macro++",
  3720. height: math.unit(878, "feet")
  3721. }
  3722. ]
  3723. ))
  3724. characterMakers.push(() => makeCharacter(
  3725. { name: "Tiberius" },
  3726. {
  3727. front: {
  3728. height: math.unit(9, "feet"),
  3729. weight: math.unit(800, "lbs"),
  3730. name: "Front",
  3731. image: {
  3732. source: "./media/characters/tiberius/front.svg",
  3733. extra: 2295 / 2071
  3734. }
  3735. },
  3736. back: {
  3737. height: math.unit(9, "feet"),
  3738. weight: math.unit(800, "lbs"),
  3739. name: "Back",
  3740. image: {
  3741. source: "./media/characters/tiberius/back.svg",
  3742. extra: 2373 / 2160
  3743. }
  3744. },
  3745. },
  3746. [
  3747. {
  3748. name: "Normal",
  3749. height: math.unit(9, "feet"),
  3750. default: true
  3751. }
  3752. ]
  3753. ))
  3754. characterMakers.push(() => makeCharacter(
  3755. { name: "Surgo" },
  3756. {
  3757. front: {
  3758. height: math.unit(6, "feet"),
  3759. weight: math.unit(600, "lbs"),
  3760. name: "Front",
  3761. image: {
  3762. source: "./media/characters/surgo/front.svg",
  3763. extra: 3591 / 2227
  3764. }
  3765. },
  3766. back: {
  3767. height: math.unit(6, "feet"),
  3768. weight: math.unit(600, "lbs"),
  3769. name: "Back",
  3770. image: {
  3771. source: "./media/characters/surgo/back.svg",
  3772. extra: 3557 / 2228
  3773. }
  3774. },
  3775. laying: {
  3776. height: math.unit(6 * 0.85, "feet"),
  3777. weight: math.unit(600, "lbs"),
  3778. name: "Laying",
  3779. image: {
  3780. source: "./media/characters/surgo/laying.svg"
  3781. }
  3782. },
  3783. },
  3784. [
  3785. {
  3786. name: "Normal",
  3787. height: math.unit(6, "feet"),
  3788. default: true
  3789. }
  3790. ]
  3791. ))
  3792. characterMakers.push(() => makeCharacter(
  3793. { name: "Cibus" },
  3794. {
  3795. side: {
  3796. height: math.unit(6, "feet"),
  3797. weight: math.unit(150, "lbs"),
  3798. name: "Side",
  3799. image: {
  3800. source: "./media/characters/cibus/side.svg",
  3801. extra: 800 / 400
  3802. }
  3803. },
  3804. },
  3805. [
  3806. {
  3807. name: "Normal",
  3808. height: math.unit(6, "feet"),
  3809. default: true
  3810. }
  3811. ]
  3812. ))
  3813. characterMakers.push(() => makeCharacter(
  3814. { name: "Nibbles" },
  3815. {
  3816. front: {
  3817. height: math.unit(6, "feet"),
  3818. weight: math.unit(240, "lbs"),
  3819. name: "Front",
  3820. image: {
  3821. source: "./media/characters/nibbles/front.svg"
  3822. }
  3823. },
  3824. side: {
  3825. height: math.unit(6, "feet"),
  3826. weight: math.unit(240, "lbs"),
  3827. name: "Side",
  3828. image: {
  3829. source: "./media/characters/nibbles/side.svg"
  3830. }
  3831. },
  3832. },
  3833. [
  3834. {
  3835. name: "Normal",
  3836. height: math.unit(9, "feet"),
  3837. default: true
  3838. }
  3839. ]
  3840. ))
  3841. characterMakers.push(() => makeCharacter(
  3842. { name: "Rikky" },
  3843. {
  3844. side: {
  3845. height: math.unit(5 + 1 / 6, "feet"),
  3846. weight: math.unit(130, "lbs"),
  3847. name: "Side",
  3848. image: {
  3849. source: "./media/characters/rikky/side.svg"
  3850. }
  3851. },
  3852. },
  3853. [
  3854. {
  3855. name: "Normal",
  3856. height: math.unit(5 + 1 / 6, "feet")
  3857. },
  3858. {
  3859. name: "Macro",
  3860. height: math.unit(152, "feet"),
  3861. default: true
  3862. },
  3863. {
  3864. name: "Megamacro",
  3865. height: math.unit(7, "miles")
  3866. }
  3867. ]
  3868. ))
  3869. characterMakers.push(() => makeCharacter(
  3870. { name: "Malfressa" },
  3871. {
  3872. side: {
  3873. height: math.unit(370, "cm"),
  3874. weight: math.unit(350, "lbs"),
  3875. name: "Side",
  3876. image: {
  3877. source: "./media/characters/malfressa/side.svg"
  3878. }
  3879. },
  3880. walking: {
  3881. height: math.unit(370, "cm"),
  3882. weight: math.unit(350, "lbs"),
  3883. name: "Walking",
  3884. image: {
  3885. source: "./media/characters/malfressa/walking.svg"
  3886. }
  3887. },
  3888. feral: {
  3889. height: math.unit(2500, "cm"),
  3890. weight: math.unit(100000, "lbs"),
  3891. name: "Feral",
  3892. image: {
  3893. source: "./media/characters/malfressa/feral.svg",
  3894. extra: 2108 / 837,
  3895. bottom: 0.02
  3896. }
  3897. },
  3898. },
  3899. [
  3900. {
  3901. name: "Normal",
  3902. height: math.unit(370, "cm")
  3903. },
  3904. {
  3905. name: "Macro",
  3906. height: math.unit(300, "meters"),
  3907. default: true
  3908. }
  3909. ]
  3910. ))
  3911. characterMakers.push(() => makeCharacter(
  3912. { name: "Jaro" },
  3913. {
  3914. front: {
  3915. height: math.unit(6, "feet"),
  3916. weight: math.unit(60, "kg"),
  3917. name: "Front",
  3918. image: {
  3919. source: "./media/characters/jaro/front.svg"
  3920. }
  3921. },
  3922. back: {
  3923. height: math.unit(6, "feet"),
  3924. weight: math.unit(60, "kg"),
  3925. name: "Back",
  3926. image: {
  3927. source: "./media/characters/jaro/back.svg"
  3928. }
  3929. },
  3930. },
  3931. [
  3932. {
  3933. name: "Micro",
  3934. height: math.unit(7, "inches")
  3935. },
  3936. {
  3937. name: "Normal",
  3938. height: math.unit(5.5, "feet"),
  3939. default: true
  3940. },
  3941. {
  3942. name: "Minimacro",
  3943. height: math.unit(20, "feet")
  3944. },
  3945. {
  3946. name: "Macro",
  3947. height: math.unit(200, "meters")
  3948. }
  3949. ]
  3950. ))
  3951. characterMakers.push(() => makeCharacter(
  3952. { name: "Rogue" },
  3953. {
  3954. front: {
  3955. height: math.unit(6, "feet"),
  3956. weight: math.unit(195, "lb"),
  3957. name: "Front",
  3958. image: {
  3959. source: "./media/characters/rogue/front.svg"
  3960. }
  3961. },
  3962. },
  3963. [
  3964. {
  3965. name: "Macro",
  3966. height: math.unit(90, "feet"),
  3967. default: true
  3968. },
  3969. ]
  3970. ))
  3971. characterMakers.push(() => makeCharacter(
  3972. { name: "Piper" },
  3973. {
  3974. front: {
  3975. height: math.unit(5 + 8 / 12, "feet"),
  3976. weight: math.unit(140, "lb"),
  3977. name: "Front",
  3978. image: {
  3979. source: "./media/characters/piper/front.svg",
  3980. extra: 3928 / 3681
  3981. }
  3982. },
  3983. },
  3984. [
  3985. {
  3986. name: "Micro",
  3987. height: math.unit(2, "inches")
  3988. },
  3989. {
  3990. name: "Normal",
  3991. height: math.unit(5 + 8 / 12, "feet")
  3992. },
  3993. {
  3994. name: "Macro",
  3995. height: math.unit(250, "feet"),
  3996. default: true
  3997. },
  3998. {
  3999. name: "Megamacro",
  4000. height: math.unit(7, "miles")
  4001. },
  4002. ]
  4003. ))
  4004. characterMakers.push(() => makeCharacter(
  4005. { name: "Gemini" },
  4006. {
  4007. front: {
  4008. height: math.unit(6, "feet"),
  4009. weight: math.unit(220, "lb"),
  4010. name: "Front",
  4011. image: {
  4012. source: "./media/characters/gemini/front.svg"
  4013. }
  4014. },
  4015. back: {
  4016. height: math.unit(6, "feet"),
  4017. weight: math.unit(220, "lb"),
  4018. name: "Back",
  4019. image: {
  4020. source: "./media/characters/gemini/back.svg"
  4021. }
  4022. },
  4023. kneeling: {
  4024. height: math.unit(6 / 1.5, "feet"),
  4025. weight: math.unit(220, "lb"),
  4026. name: "Kneeling",
  4027. image: {
  4028. source: "./media/characters/gemini/kneeling.svg",
  4029. bottom: 0.02
  4030. }
  4031. },
  4032. },
  4033. [
  4034. {
  4035. name: "Macro",
  4036. height: math.unit(300, "meters"),
  4037. default: true
  4038. },
  4039. {
  4040. name: "Megamacro",
  4041. height: math.unit(6900, "meters")
  4042. },
  4043. ]
  4044. ))
  4045. characterMakers.push(() => makeCharacter(
  4046. { name: "Alicia" },
  4047. {
  4048. anthro: {
  4049. height: math.unit(2.35, "meters"),
  4050. weight: math.unit(73, "kg"),
  4051. name: "Anthro",
  4052. image: {
  4053. source: "./media/characters/alicia/anthro.svg"
  4054. }
  4055. },
  4056. feral: {
  4057. height: math.unit(1.69, "meters"),
  4058. weight: math.unit(73, "kg"),
  4059. name: "Feral",
  4060. image: {
  4061. source: "./media/characters/alicia/feral.svg"
  4062. }
  4063. },
  4064. },
  4065. [
  4066. {
  4067. name: "Normal",
  4068. height: math.unit(2.35, "meters")
  4069. },
  4070. {
  4071. name: "Macro",
  4072. height: math.unit(60, "meters"),
  4073. default: true
  4074. },
  4075. {
  4076. name: "Megamacro",
  4077. height: math.unit(10000, "kilometers")
  4078. },
  4079. ]
  4080. ))
  4081. characterMakers.push(() => makeCharacter(
  4082. { name: "Archy" },
  4083. {
  4084. front: {
  4085. height: math.unit(7, "feet"),
  4086. weight: math.unit(250, "lbs"),
  4087. name: "Front",
  4088. image: {
  4089. source: "./media/characters/archy/front.svg"
  4090. }
  4091. }
  4092. },
  4093. [
  4094. {
  4095. name: "Micro",
  4096. height: math.unit(1, "inch")
  4097. },
  4098. {
  4099. name: "Shorty",
  4100. height: math.unit(5, "feet")
  4101. },
  4102. {
  4103. name: "Normal",
  4104. height: math.unit(7, "feet")
  4105. },
  4106. {
  4107. name: "Macro",
  4108. height: math.unit(600, "meters"),
  4109. default: true
  4110. },
  4111. {
  4112. name: "Megamacro",
  4113. height: math.unit(1, "mile")
  4114. },
  4115. ]
  4116. ))
  4117. characterMakers.push(() => makeCharacter(
  4118. { name: "Berri" },
  4119. {
  4120. front: {
  4121. height: math.unit(1.65, "meters"),
  4122. weight: math.unit(74, "kg"),
  4123. name: "Front",
  4124. image: {
  4125. source: "./media/characters/berri/front.svg"
  4126. }
  4127. }
  4128. },
  4129. [
  4130. {
  4131. name: "Normal",
  4132. height: math.unit(1.65, "meters")
  4133. },
  4134. {
  4135. name: "Macro",
  4136. height: math.unit(60, "m"),
  4137. default: true
  4138. },
  4139. {
  4140. name: "Megamacro",
  4141. height: math.unit(9.213, "km")
  4142. },
  4143. {
  4144. name: "Planet Eater",
  4145. height: math.unit(489, "megameters")
  4146. },
  4147. {
  4148. name: "Teramacro",
  4149. height: math.unit(2471635000000, "meters")
  4150. },
  4151. {
  4152. name: "Examacro",
  4153. height: math.unit(8.0624e+26, "meters")
  4154. }
  4155. ]
  4156. ))
  4157. characterMakers.push(() => makeCharacter(
  4158. { name: "Lexi" },
  4159. {
  4160. front: {
  4161. height: math.unit(1.72, "meters"),
  4162. weight: math.unit(68, "kg"),
  4163. name: "Front",
  4164. image: {
  4165. source: "./media/characters/lexi/front.svg"
  4166. }
  4167. }
  4168. },
  4169. [
  4170. {
  4171. name: "Very Smol",
  4172. height: math.unit(10, "mm")
  4173. },
  4174. {
  4175. name: "Micro",
  4176. height: math.unit(6.8, "cm"),
  4177. default: true
  4178. },
  4179. {
  4180. name: "Normal",
  4181. height: math.unit(1.72, "m")
  4182. }
  4183. ]
  4184. ))
  4185. characterMakers.push(() => makeCharacter(
  4186. { name: "Martin" },
  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/martin/front.svg",
  4194. extra: 596 / 581
  4195. }
  4196. }
  4197. },
  4198. [
  4199. {
  4200. name: "Micro",
  4201. height: math.unit(6.85, "cm"),
  4202. default: true
  4203. },
  4204. {
  4205. name: "Normal",
  4206. height: math.unit(1.69, "m")
  4207. }
  4208. ]
  4209. ))
  4210. characterMakers.push(() => makeCharacter(
  4211. { name: "Juno" },
  4212. {
  4213. front: {
  4214. height: math.unit(1.69, "meters"),
  4215. weight: math.unit(68, "kg"),
  4216. name: "Front",
  4217. image: {
  4218. source: "./media/characters/juno/front.svg"
  4219. }
  4220. }
  4221. },
  4222. [
  4223. {
  4224. name: "Micro",
  4225. height: math.unit(7, "cm")
  4226. },
  4227. {
  4228. name: "Normal",
  4229. height: math.unit(1.89, "m")
  4230. },
  4231. {
  4232. name: "Macro",
  4233. height: math.unit(353, "meters"),
  4234. default: true
  4235. }
  4236. ]
  4237. ))
  4238. characterMakers.push(() => makeCharacter(
  4239. { name: "Samantha" },
  4240. {
  4241. front: {
  4242. height: math.unit(1.93, "meters"),
  4243. weight: math.unit(83, "kg"),
  4244. name: "Front",
  4245. image: {
  4246. source: "./media/characters/samantha/front.svg"
  4247. }
  4248. },
  4249. frontClothed: {
  4250. height: math.unit(1.93, "meters"),
  4251. weight: math.unit(83, "kg"),
  4252. name: "Front (Clothed)",
  4253. image: {
  4254. source: "./media/characters/samantha/front-clothed.svg"
  4255. }
  4256. },
  4257. back: {
  4258. height: math.unit(1.93, "meters"),
  4259. weight: math.unit(83, "kg"),
  4260. name: "Back",
  4261. image: {
  4262. source: "./media/characters/samantha/back.svg"
  4263. }
  4264. },
  4265. },
  4266. [
  4267. {
  4268. name: "Normal",
  4269. height: math.unit(1.93, "m")
  4270. },
  4271. {
  4272. name: "Macro",
  4273. height: math.unit(74, "meters"),
  4274. default: true
  4275. },
  4276. {
  4277. name: "Macro+",
  4278. height: math.unit(223, "meters"),
  4279. },
  4280. {
  4281. name: "Megamacro",
  4282. height: math.unit(8381, "meters"),
  4283. },
  4284. {
  4285. name: "Megamacro+",
  4286. height: math.unit(12000, "kilometers")
  4287. },
  4288. ]
  4289. ))
  4290. characterMakers.push(() => makeCharacter(
  4291. { name: "Dr. Clay" },
  4292. {
  4293. front: {
  4294. height: math.unit(1.92, "meters"),
  4295. weight: math.unit(80, "kg"),
  4296. name: "Front",
  4297. image: {
  4298. source: "./media/characters/dr-clay/front.svg"
  4299. }
  4300. },
  4301. frontClothed: {
  4302. height: math.unit(1.92, "meters"),
  4303. weight: math.unit(80, "kg"),
  4304. name: "Front (Clothed)",
  4305. image: {
  4306. source: "./media/characters/dr-clay/front-clothed.svg"
  4307. }
  4308. }
  4309. },
  4310. [
  4311. {
  4312. name: "Normal",
  4313. height: math.unit(1.92, "m")
  4314. },
  4315. {
  4316. name: "Macro",
  4317. height: math.unit(214, "meters"),
  4318. default: true
  4319. },
  4320. {
  4321. name: "Macro+",
  4322. height: math.unit(12.237, "meters"),
  4323. },
  4324. {
  4325. name: "Megamacro",
  4326. height: math.unit(557, "megameters"),
  4327. },
  4328. {
  4329. name: "Unimaginable",
  4330. height: math.unit(120e9, "lightyears")
  4331. },
  4332. ]
  4333. ))
  4334. characterMakers.push(() => makeCharacter(
  4335. { name: "Wyvrn Ripsnarl" },
  4336. {
  4337. front: {
  4338. height: math.unit(2, "meters"),
  4339. weight: math.unit(80, "kg"),
  4340. name: "Front",
  4341. image: {
  4342. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4343. }
  4344. }
  4345. },
  4346. [
  4347. {
  4348. name: "Teramacro",
  4349. height: math.unit(500000, "lightyears"),
  4350. default: true
  4351. },
  4352. ]
  4353. ))
  4354. characterMakers.push(() => makeCharacter(
  4355. { name: "Vemus" },
  4356. {
  4357. front: {
  4358. height: math.unit(2, "meters"),
  4359. weight: math.unit(150, "kg"),
  4360. name: "Front",
  4361. image: {
  4362. source: "./media/characters/vemus/front.svg",
  4363. extra: 2384 / 2084,
  4364. bottom: 0.0123
  4365. }
  4366. }
  4367. },
  4368. [
  4369. {
  4370. name: "Normal",
  4371. height: math.unit(3.75, "meters"),
  4372. default: true
  4373. },
  4374. {
  4375. name: "Big",
  4376. height: math.unit(8, "meters")
  4377. },
  4378. {
  4379. name: "Macro",
  4380. height: math.unit(100, "meters")
  4381. },
  4382. {
  4383. name: "Macro+",
  4384. height: math.unit(1500, "meters")
  4385. },
  4386. {
  4387. name: "Stellar",
  4388. height: math.unit(14e8, "meters")
  4389. },
  4390. ]
  4391. ))
  4392. characterMakers.push(() => makeCharacter(
  4393. { name: "Beherit" },
  4394. {
  4395. front: {
  4396. height: math.unit(2, "meters"),
  4397. weight: math.unit(70, "kg"),
  4398. name: "Front",
  4399. image: {
  4400. source: "./media/characters/beherit/front.svg",
  4401. extra: 1408 / 1242
  4402. }
  4403. }
  4404. },
  4405. [
  4406. {
  4407. name: "Normal",
  4408. height: math.unit(6, "feet")
  4409. },
  4410. {
  4411. name: "Lorg",
  4412. height: math.unit(25, "feet"),
  4413. default: true
  4414. },
  4415. {
  4416. name: "Lorger",
  4417. height: math.unit(75, "feet")
  4418. },
  4419. {
  4420. name: "Macro",
  4421. height: math.unit(200, "meters")
  4422. },
  4423. ]
  4424. ))
  4425. characterMakers.push(() => makeCharacter(
  4426. { name: "Everett" },
  4427. {
  4428. front: {
  4429. height: math.unit(2, "meters"),
  4430. weight: math.unit(150, "kg"),
  4431. name: "Front",
  4432. image: {
  4433. source: "./media/characters/everett/front.svg",
  4434. extra: 2038 / 1737,
  4435. bottom: 0.03
  4436. }
  4437. },
  4438. paw: {
  4439. height: math.unit(2 / 3.6, "meters"),
  4440. name: "Paw",
  4441. image: {
  4442. source: "./media/characters/everett/paw.svg"
  4443. }
  4444. },
  4445. },
  4446. [
  4447. {
  4448. name: "Normal",
  4449. height: math.unit(15, "feet"),
  4450. default: true
  4451. },
  4452. {
  4453. name: "Lorg",
  4454. height: math.unit(70, "feet"),
  4455. default: true
  4456. },
  4457. {
  4458. name: "Lorger",
  4459. height: math.unit(250, "feet")
  4460. },
  4461. {
  4462. name: "Macro",
  4463. height: math.unit(500, "meters")
  4464. },
  4465. ]
  4466. ))
  4467. characterMakers.push(() => makeCharacter(
  4468. { name: "Rose Lion" },
  4469. {
  4470. front: {
  4471. height: math.unit(2, "meters"),
  4472. weight: math.unit(86, "kg"),
  4473. name: "Front",
  4474. image: {
  4475. source: "./media/characters/rose-lion/front.svg"
  4476. }
  4477. },
  4478. bent: {
  4479. height: math.unit(2 / 1.4288, "meters"),
  4480. weight: math.unit(86, "kg"),
  4481. name: "Bent",
  4482. image: {
  4483. source: "./media/characters/rose-lion/bent.svg"
  4484. }
  4485. }
  4486. },
  4487. [
  4488. {
  4489. name: "Mini-Micro",
  4490. height: math.unit(1, "cm")
  4491. },
  4492. {
  4493. name: "Micro",
  4494. height: math.unit(3.5, "inches"),
  4495. default: true
  4496. },
  4497. {
  4498. name: "Normal",
  4499. height: math.unit(6 + 1 / 6, "feet")
  4500. },
  4501. {
  4502. name: "Mini-Macro",
  4503. height: math.unit(9 + 10 / 12, "feet")
  4504. },
  4505. ]
  4506. ))
  4507. characterMakers.push(() => makeCharacter(
  4508. { name: "Regal" },
  4509. {
  4510. front: {
  4511. height: math.unit(2, "meters"),
  4512. weight: math.unit(350, "lbs"),
  4513. name: "Front",
  4514. image: {
  4515. source: "./media/characters/regal/front.svg"
  4516. }
  4517. },
  4518. back: {
  4519. height: math.unit(2, "meters"),
  4520. weight: math.unit(350, "lbs"),
  4521. name: "Back",
  4522. image: {
  4523. source: "./media/characters/regal/back.svg"
  4524. }
  4525. },
  4526. },
  4527. [
  4528. {
  4529. name: "Macro",
  4530. height: math.unit(350, "feet"),
  4531. default: true
  4532. }
  4533. ]
  4534. ))
  4535. characterMakers.push(() => makeCharacter(
  4536. { name: "Opal" },
  4537. {
  4538. front: {
  4539. height: math.unit(4 + 11 / 12, "feet"),
  4540. weight: math.unit(100, "lbs"),
  4541. name: "Front",
  4542. image: {
  4543. source: "./media/characters/opal/front.svg"
  4544. }
  4545. },
  4546. frontAlt: {
  4547. height: math.unit(4 + 11 / 12, "feet"),
  4548. weight: math.unit(100, "lbs"),
  4549. name: "Front (Alt)",
  4550. image: {
  4551. source: "./media/characters/opal/front-alt.svg"
  4552. }
  4553. },
  4554. },
  4555. [
  4556. {
  4557. name: "Small",
  4558. height: math.unit(4 + 11 / 12, "feet")
  4559. },
  4560. {
  4561. name: "Normal",
  4562. height: math.unit(20, "feet"),
  4563. default: true
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(120, "feet")
  4568. },
  4569. {
  4570. name: "Megamacro",
  4571. height: math.unit(80, "miles")
  4572. },
  4573. {
  4574. name: "True Size",
  4575. height: math.unit(100000, "lightyears")
  4576. },
  4577. ]
  4578. ))
  4579. characterMakers.push(() => makeCharacter(
  4580. { name: "Vector Wuff" },
  4581. {
  4582. front: {
  4583. height: math.unit(6, "feet"),
  4584. weight: math.unit(200, "lbs"),
  4585. name: "Front",
  4586. image: {
  4587. source: "./media/characters/vector-wuff/front.svg"
  4588. }
  4589. }
  4590. },
  4591. [
  4592. {
  4593. name: "Normal",
  4594. height: math.unit(2.8, "meters")
  4595. },
  4596. {
  4597. name: "Macro",
  4598. height: math.unit(450, "meters"),
  4599. default: true
  4600. },
  4601. {
  4602. name: "Megamacro",
  4603. height: math.unit(15, "kilometers")
  4604. }
  4605. ]
  4606. ))
  4607. characterMakers.push(() => makeCharacter(
  4608. { name: "Dannik" },
  4609. {
  4610. front: {
  4611. height: math.unit(6, "feet"),
  4612. weight: math.unit(256, "lbs"),
  4613. name: "Front",
  4614. image: {
  4615. source: "./media/characters/dannik/front.svg"
  4616. }
  4617. }
  4618. },
  4619. [
  4620. {
  4621. name: "Macro",
  4622. height: math.unit(69.57, "meters"),
  4623. default: true
  4624. },
  4625. ]
  4626. ))
  4627. characterMakers.push(() => makeCharacter(
  4628. { name: "Azura Saharah" },
  4629. {
  4630. front: {
  4631. height: math.unit(6, "feet"),
  4632. weight: math.unit(120, "lbs"),
  4633. name: "Front",
  4634. image: {
  4635. source: "./media/characters/azura-saharah/front.svg"
  4636. }
  4637. },
  4638. back: {
  4639. height: math.unit(6, "feet"),
  4640. weight: math.unit(120, "lbs"),
  4641. name: "Back",
  4642. image: {
  4643. source: "./media/characters/azura-saharah/back.svg"
  4644. }
  4645. },
  4646. },
  4647. [
  4648. {
  4649. name: "Macro",
  4650. height: math.unit(100, "feet"),
  4651. default: true
  4652. },
  4653. ]
  4654. ))
  4655. characterMakers.push(() => makeCharacter(
  4656. { name: "Kennedy" },
  4657. {
  4658. side: {
  4659. height: math.unit(5 + 4 / 12, "feet"),
  4660. weight: math.unit(163, "lbs"),
  4661. name: "Side",
  4662. image: {
  4663. source: "./media/characters/kennedy/side.svg"
  4664. }
  4665. }
  4666. },
  4667. [
  4668. {
  4669. name: "Standard Doggo",
  4670. height: math.unit(5 + 4 / 12, "feet")
  4671. },
  4672. {
  4673. name: "Big Doggo",
  4674. height: math.unit(25 + 3 / 12, "feet"),
  4675. default: true
  4676. },
  4677. ]
  4678. ))
  4679. characterMakers.push(() => makeCharacter(
  4680. { name: "Odi Lunar" },
  4681. {
  4682. front: {
  4683. height: math.unit(6, "feet"),
  4684. weight: math.unit(90, "lbs"),
  4685. name: "Front",
  4686. image: {
  4687. source: "./media/characters/odi-lunar/front.svg"
  4688. }
  4689. }
  4690. },
  4691. [
  4692. {
  4693. name: "Micro",
  4694. height: math.unit(3, "inches"),
  4695. default: true
  4696. },
  4697. {
  4698. name: "Normal",
  4699. height: math.unit(5.5, "feet")
  4700. }
  4701. ]
  4702. ))
  4703. characterMakers.push(() => makeCharacter(
  4704. { name: "Mandake" },
  4705. {
  4706. back: {
  4707. height: math.unit(6, "feet"),
  4708. weight: math.unit(220, "lbs"),
  4709. name: "Back",
  4710. image: {
  4711. source: "./media/characters/mandake/back.svg"
  4712. }
  4713. }
  4714. },
  4715. [
  4716. {
  4717. name: "Normal",
  4718. height: math.unit(7, "feet"),
  4719. default: true
  4720. },
  4721. {
  4722. name: "Macro",
  4723. height: math.unit(78, "feet")
  4724. },
  4725. {
  4726. name: "Macro+",
  4727. height: math.unit(300, "meters")
  4728. },
  4729. {
  4730. name: "Macro++",
  4731. height: math.unit(2400, "feet")
  4732. },
  4733. {
  4734. name: "Megamacro",
  4735. height: math.unit(5167, "meters")
  4736. },
  4737. {
  4738. name: "Gigamacro",
  4739. height: math.unit(41769, "miles")
  4740. },
  4741. ]
  4742. ))
  4743. characterMakers.push(() => makeCharacter(
  4744. { name: "Yozey" },
  4745. {
  4746. front: {
  4747. height: math.unit(6, "feet"),
  4748. weight: math.unit(120, "lbs"),
  4749. name: "Front",
  4750. image: {
  4751. source: "./media/characters/yozey/front.svg"
  4752. }
  4753. },
  4754. frontAlt: {
  4755. height: math.unit(6, "feet"),
  4756. weight: math.unit(120, "lbs"),
  4757. name: "Front (Alt)",
  4758. image: {
  4759. source: "./media/characters/yozey/front-alt.svg"
  4760. }
  4761. },
  4762. side: {
  4763. height: math.unit(6, "feet"),
  4764. weight: math.unit(120, "lbs"),
  4765. name: "Side",
  4766. image: {
  4767. source: "./media/characters/yozey/side.svg"
  4768. }
  4769. },
  4770. },
  4771. [
  4772. {
  4773. name: "Micro",
  4774. height: math.unit(3, "inches"),
  4775. default: true
  4776. },
  4777. {
  4778. name: "Normal",
  4779. height: math.unit(6, "feet")
  4780. }
  4781. ]
  4782. ))
  4783. characterMakers.push(() => makeCharacter(
  4784. { name: "Valeska Voss" },
  4785. {
  4786. front: {
  4787. height: math.unit(6, "feet"),
  4788. weight: math.unit(103, "lbs"),
  4789. name: "Front",
  4790. image: {
  4791. source: "./media/characters/valeska-voss/front.svg"
  4792. }
  4793. }
  4794. },
  4795. [
  4796. {
  4797. name: "Mini-Sized Sub",
  4798. height: math.unit(3.1, "inches")
  4799. },
  4800. {
  4801. name: "Mid-Sized Sub",
  4802. height: math.unit(6.2, "inches")
  4803. },
  4804. {
  4805. name: "Full-Sized Sub",
  4806. height: math.unit(9.3, "inches")
  4807. },
  4808. {
  4809. name: "Normal",
  4810. height: math.unit(5 + 2 / 12, "foot"),
  4811. default: true
  4812. },
  4813. ]
  4814. ))
  4815. characterMakers.push(() => makeCharacter(
  4816. { name: "Gene Zeta" },
  4817. {
  4818. front: {
  4819. height: math.unit(6, "feet"),
  4820. weight: math.unit(160, "lbs"),
  4821. name: "Front",
  4822. image: {
  4823. source: "./media/characters/gene-zeta/front.svg",
  4824. bottom: 0.03,
  4825. extra: 1
  4826. }
  4827. }
  4828. },
  4829. [
  4830. {
  4831. name: "Normal",
  4832. height: math.unit(6.25, "foot"),
  4833. default: true
  4834. },
  4835. ]
  4836. ))
  4837. characterMakers.push(() => makeCharacter(
  4838. { name: "Razinox" },
  4839. {
  4840. front: {
  4841. height: math.unit(6, "feet"),
  4842. weight: math.unit(350, "lbs"),
  4843. name: "Front",
  4844. image: {
  4845. source: "./media/characters/razinox/front.svg",
  4846. extra: 1686 / 1548
  4847. }
  4848. },
  4849. back: {
  4850. height: math.unit(6, "feet"),
  4851. weight: math.unit(350, "lbs"),
  4852. name: "Back",
  4853. image: {
  4854. source: "./media/characters/razinox/back.svg",
  4855. extra: 1660 / 1590
  4856. }
  4857. },
  4858. },
  4859. [
  4860. {
  4861. name: "Normal",
  4862. height: math.unit(10 + 8 / 12, "foot")
  4863. },
  4864. {
  4865. name: "Minimacro",
  4866. height: math.unit(15, "foot")
  4867. },
  4868. {
  4869. name: "Macro",
  4870. height: math.unit(60, "foot"),
  4871. default: true
  4872. },
  4873. {
  4874. name: "Megamacro",
  4875. height: math.unit(5, "miles")
  4876. },
  4877. {
  4878. name: "Gigamacro",
  4879. height: math.unit(6000, "miles")
  4880. },
  4881. ]
  4882. ))
  4883. characterMakers.push(() => makeCharacter(
  4884. { name: "Cobalt" },
  4885. {
  4886. front: {
  4887. height: math.unit(6, "feet"),
  4888. weight: math.unit(150, "lbs"),
  4889. name: "Front",
  4890. image: {
  4891. source: "./media/characters/cobalt/front.svg"
  4892. }
  4893. }
  4894. },
  4895. [
  4896. {
  4897. name: "Normal",
  4898. height: math.unit(8 + 1 / 12, "foot")
  4899. },
  4900. {
  4901. name: "Macro",
  4902. height: math.unit(111, "foot"),
  4903. default: true
  4904. },
  4905. {
  4906. name: "Supracosmic",
  4907. height: math.unit(1e42, "feet")
  4908. },
  4909. ]
  4910. ))
  4911. characterMakers.push(() => makeCharacter(
  4912. { name: "Amanda" },
  4913. {
  4914. front: {
  4915. height: math.unit(6, "feet"),
  4916. weight: math.unit(140, "lbs"),
  4917. name: "Front",
  4918. image: {
  4919. source: "./media/characters/amanda/front.svg"
  4920. }
  4921. }
  4922. },
  4923. [
  4924. {
  4925. name: "Micro",
  4926. height: math.unit(5, "inches"),
  4927. default: true
  4928. },
  4929. ]
  4930. ))
  4931. characterMakers.push(() => makeCharacter(
  4932. { name: "Teal" },
  4933. {
  4934. front: {
  4935. height: math.unit(5.59, "feet"),
  4936. weight: math.unit(250, "lbs"),
  4937. name: "Front",
  4938. image: {
  4939. source: "./media/characters/teal/front.svg"
  4940. }
  4941. },
  4942. frontAlt: {
  4943. height: math.unit(6, "feet"),
  4944. weight: math.unit(250, "lbs"),
  4945. name: "Front (Alt)",
  4946. image: {
  4947. source: "./media/characters/teal/front-alt.svg",
  4948. bottom: 0.04,
  4949. extra: 1
  4950. }
  4951. },
  4952. },
  4953. [
  4954. {
  4955. name: "Normal",
  4956. height: math.unit(12, "feet"),
  4957. default: true
  4958. },
  4959. {
  4960. name: "Macro",
  4961. height: math.unit(300, "feet")
  4962. },
  4963. ]
  4964. ))
  4965. characterMakers.push(() => makeCharacter(
  4966. { name: "Ravin Amulet" },
  4967. {
  4968. frontCat: {
  4969. height: math.unit(6, "feet"),
  4970. weight: math.unit(180, "lbs"),
  4971. name: "Front (Cat)",
  4972. image: {
  4973. source: "./media/characters/ravin-amulet/front-cat.svg"
  4974. }
  4975. },
  4976. frontCatAlt: {
  4977. height: math.unit(6, "feet"),
  4978. weight: math.unit(180, "lbs"),
  4979. name: "Front (Alt, Cat)",
  4980. image: {
  4981. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  4982. }
  4983. },
  4984. frontWerewolf: {
  4985. height: math.unit(6 * 1.2, "feet"),
  4986. weight: math.unit(225, "lbs"),
  4987. name: "Front (Werewolf)",
  4988. image: {
  4989. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  4990. }
  4991. },
  4992. backWerewolf: {
  4993. height: math.unit(6 * 1.2, "feet"),
  4994. weight: math.unit(225, "lbs"),
  4995. name: "Back (Werewolf)",
  4996. image: {
  4997. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  4998. }
  4999. },
  5000. },
  5001. [
  5002. {
  5003. name: "Nano",
  5004. height: math.unit(1, "micrometer")
  5005. },
  5006. {
  5007. name: "Micro",
  5008. height: math.unit(1, "inch")
  5009. },
  5010. {
  5011. name: "Normal",
  5012. height: math.unit(6, "feet"),
  5013. default: true
  5014. },
  5015. {
  5016. name: "Macro",
  5017. height: math.unit(60, "feet")
  5018. }
  5019. ]
  5020. ))
  5021. characterMakers.push(() => makeCharacter(
  5022. { name: "Fluoresce" },
  5023. {
  5024. front: {
  5025. height: math.unit(6, "feet"),
  5026. weight: math.unit(165, "lbs"),
  5027. name: "Front",
  5028. image: {
  5029. source: "./media/characters/fluoresce/front.svg"
  5030. }
  5031. }
  5032. },
  5033. [
  5034. {
  5035. name: "Micro",
  5036. height: math.unit(6, "cm")
  5037. },
  5038. {
  5039. name: "Normal",
  5040. height: math.unit(5 + 7 / 12, "feet"),
  5041. default: true
  5042. },
  5043. {
  5044. name: "Macro",
  5045. height: math.unit(56, "feet")
  5046. },
  5047. {
  5048. name: "Megamacro",
  5049. height: math.unit(1.9, "miles")
  5050. },
  5051. ]
  5052. ))
  5053. characterMakers.push(() => makeCharacter(
  5054. { name: "Aurora" },
  5055. {
  5056. front: {
  5057. height: math.unit(9 + 6 / 12, "feet"),
  5058. weight: math.unit(523, "lbs"),
  5059. name: "Side",
  5060. image: {
  5061. source: "./media/characters/aurora/side.svg"
  5062. }
  5063. }
  5064. },
  5065. [
  5066. {
  5067. name: "Normal",
  5068. height: math.unit(9 + 6 / 12, "feet")
  5069. },
  5070. {
  5071. name: "Macro",
  5072. height: math.unit(96, "feet"),
  5073. default: true
  5074. },
  5075. {
  5076. name: "Macro+",
  5077. height: math.unit(243, "feet")
  5078. },
  5079. ]
  5080. ))
  5081. characterMakers.push(() => makeCharacter(
  5082. { name: "Ranek" },
  5083. {
  5084. front: {
  5085. height: math.unit(194, "cm"),
  5086. weight: math.unit(90, "kg"),
  5087. name: "Front",
  5088. image: {
  5089. source: "./media/characters/ranek/front.svg"
  5090. }
  5091. },
  5092. side: {
  5093. height: math.unit(194, "cm"),
  5094. weight: math.unit(90, "kg"),
  5095. name: "Side",
  5096. image: {
  5097. source: "./media/characters/ranek/side.svg"
  5098. }
  5099. },
  5100. back: {
  5101. height: math.unit(194, "cm"),
  5102. weight: math.unit(90, "kg"),
  5103. name: "Back",
  5104. image: {
  5105. source: "./media/characters/ranek/back.svg"
  5106. }
  5107. },
  5108. feral: {
  5109. height: math.unit(30, "cm"),
  5110. weight: math.unit(1.6, "lbs"),
  5111. name: "Feral",
  5112. image: {
  5113. source: "./media/characters/ranek/feral.svg"
  5114. }
  5115. },
  5116. },
  5117. [
  5118. {
  5119. name: "Normal",
  5120. height: math.unit(194, "cm"),
  5121. default: true
  5122. },
  5123. {
  5124. name: "Macro",
  5125. height: math.unit(100, "meters")
  5126. },
  5127. ]
  5128. ))
  5129. characterMakers.push(() => makeCharacter(
  5130. { name: "Andrew Cooper" },
  5131. {
  5132. front: {
  5133. height: math.unit(5 + 6 / 12, "feet"),
  5134. weight: math.unit(153, "lbs"),
  5135. name: "Front",
  5136. image: {
  5137. source: "./media/characters/andrew-cooper/front.svg"
  5138. }
  5139. },
  5140. },
  5141. [
  5142. {
  5143. name: "Nano",
  5144. height: math.unit(1, "mm")
  5145. },
  5146. {
  5147. name: "Micro",
  5148. height: math.unit(2, "inches")
  5149. },
  5150. {
  5151. name: "Normal",
  5152. height: math.unit(5 + 6 / 12, "feet"),
  5153. default: true
  5154. }
  5155. ]
  5156. ))
  5157. characterMakers.push(() => makeCharacter(
  5158. { name: "Akane Sato" },
  5159. {
  5160. front: {
  5161. height: math.unit(6, "feet"),
  5162. weight: math.unit(180, "lbs"),
  5163. name: "Front",
  5164. image: {
  5165. source: "./media/characters/akane-sato/front.svg",
  5166. extra: 1219 / 1140
  5167. }
  5168. },
  5169. back: {
  5170. height: math.unit(6, "feet"),
  5171. weight: math.unit(180, "lbs"),
  5172. name: "Back",
  5173. image: {
  5174. source: "./media/characters/akane-sato/back.svg",
  5175. extra: 1219 / 1170
  5176. }
  5177. },
  5178. },
  5179. [
  5180. {
  5181. name: "Normal",
  5182. height: math.unit(2.5, "meters")
  5183. },
  5184. {
  5185. name: "Macro",
  5186. height: math.unit(250, "meters"),
  5187. default: true
  5188. },
  5189. {
  5190. name: "Megamacro",
  5191. height: math.unit(25, "km")
  5192. },
  5193. ]
  5194. ))
  5195. characterMakers.push(() => makeCharacter(
  5196. { name: "Rook" },
  5197. {
  5198. front: {
  5199. height: math.unit(6, "feet"),
  5200. weight: math.unit(65, "kg"),
  5201. name: "Front",
  5202. image: {
  5203. source: "./media/characters/rook/front.svg",
  5204. extra: 960/950
  5205. }
  5206. }
  5207. },
  5208. [
  5209. {
  5210. name: "Normal",
  5211. height: math.unit(8.8, "feet")
  5212. },
  5213. {
  5214. name: "Macro",
  5215. height: math.unit(88, "feet"),
  5216. default: true
  5217. },
  5218. {
  5219. name: "Megamacro",
  5220. height: math.unit(8, "miles")
  5221. },
  5222. ]
  5223. ))
  5224. characterMakers.push(() => makeCharacter(
  5225. { name: "Prodigy" },
  5226. {
  5227. front: {
  5228. height: math.unit(12 + 2 / 12, "feet"),
  5229. weight: math.unit(808, "lbs"),
  5230. name: "Front",
  5231. image: {
  5232. source: "./media/characters/prodigy/front.svg"
  5233. }
  5234. }
  5235. },
  5236. [
  5237. {
  5238. name: "Normal",
  5239. height: math.unit(12 + 2 / 12, "feet"),
  5240. default: true
  5241. },
  5242. {
  5243. name: "Macro",
  5244. height: math.unit(143, "feet")
  5245. },
  5246. {
  5247. name: "Macro+",
  5248. height: math.unit(400, "feet")
  5249. },
  5250. ]
  5251. ))
  5252. characterMakers.push(() => makeCharacter(
  5253. { name: "Daniel" },
  5254. {
  5255. front: {
  5256. height: math.unit(6, "feet"),
  5257. weight: math.unit(225, "lbs"),
  5258. name: "Front",
  5259. image: {
  5260. source: "./media/characters/daniel/front.svg"
  5261. }
  5262. },
  5263. leaning: {
  5264. height: math.unit(6, "feet"),
  5265. weight: math.unit(225, "lbs"),
  5266. name: "Leaning",
  5267. image: {
  5268. source: "./media/characters/daniel/leaning.svg"
  5269. }
  5270. },
  5271. },
  5272. [
  5273. {
  5274. name: "Macro",
  5275. height: math.unit(1000, "feet"),
  5276. default: true
  5277. },
  5278. ]
  5279. ))
  5280. characterMakers.push(() => makeCharacter(
  5281. { name: "Chiros" },
  5282. {
  5283. front: {
  5284. height: math.unit(6, "feet"),
  5285. weight: math.unit(88, "lbs"),
  5286. name: "Front",
  5287. image: {
  5288. source: "./media/characters/chiros/front.svg",
  5289. extra: 306 / 226
  5290. }
  5291. },
  5292. side: {
  5293. height: math.unit(6, "feet"),
  5294. weight: math.unit(88, "lbs"),
  5295. name: "Side",
  5296. image: {
  5297. source: "./media/characters/chiros/side.svg",
  5298. extra: 306 / 226
  5299. }
  5300. },
  5301. },
  5302. [
  5303. {
  5304. name: "Normal",
  5305. height: math.unit(6, "cm"),
  5306. default: true
  5307. },
  5308. ]
  5309. ))
  5310. characterMakers.push(() => makeCharacter(
  5311. { name: "Selka" },
  5312. {
  5313. front: {
  5314. height: math.unit(6, "feet"),
  5315. weight: math.unit(100, "lbs"),
  5316. name: "Front",
  5317. image: {
  5318. source: "./media/characters/selka/front.svg",
  5319. extra: 947 / 887
  5320. }
  5321. }
  5322. },
  5323. [
  5324. {
  5325. name: "Normal",
  5326. height: math.unit(5, "cm"),
  5327. default: true
  5328. },
  5329. ]
  5330. ))
  5331. characterMakers.push(() => makeCharacter(
  5332. { name: "Verin" },
  5333. {
  5334. front: {
  5335. height: math.unit(8 + 3 / 12, "feet"),
  5336. weight: math.unit(424, "lbs"),
  5337. name: "Front",
  5338. image: {
  5339. source: "./media/characters/verin/front.svg",
  5340. extra: 1845 / 1550
  5341. }
  5342. },
  5343. frontArmored: {
  5344. height: math.unit(8 + 3 / 12, "feet"),
  5345. weight: math.unit(424, "lbs"),
  5346. name: "Front (Armored)",
  5347. image: {
  5348. source: "./media/characters/verin/front-armor.svg",
  5349. extra: 1845 / 1550,
  5350. bottom: 0.01
  5351. }
  5352. },
  5353. back: {
  5354. height: math.unit(8 + 3 / 12, "feet"),
  5355. weight: math.unit(424, "lbs"),
  5356. name: "Back",
  5357. image: {
  5358. source: "./media/characters/verin/back.svg",
  5359. bottom: 0.1,
  5360. extra: 1
  5361. }
  5362. },
  5363. foot: {
  5364. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5365. name: "Foot",
  5366. image: {
  5367. source: "./media/characters/verin/foot.svg"
  5368. }
  5369. },
  5370. },
  5371. [
  5372. {
  5373. name: "Normal",
  5374. height: math.unit(8 + 3 / 12, "feet")
  5375. },
  5376. {
  5377. name: "Minimacro",
  5378. height: math.unit(21, "feet"),
  5379. default: true
  5380. },
  5381. {
  5382. name: "Macro",
  5383. height: math.unit(626, "feet")
  5384. },
  5385. ]
  5386. ))
  5387. characterMakers.push(() => makeCharacter(
  5388. { name: "Sovrim Terraquian" },
  5389. {
  5390. front: {
  5391. height: math.unit(2.718, "meters"),
  5392. weight: math.unit(150, "lbs"),
  5393. name: "Front",
  5394. image: {
  5395. source: "./media/characters/sovrim-terraquian/front.svg"
  5396. }
  5397. },
  5398. back: {
  5399. height: math.unit(2.718, "meters"),
  5400. weight: math.unit(150, "lbs"),
  5401. name: "Back",
  5402. image: {
  5403. source: "./media/characters/sovrim-terraquian/back.svg"
  5404. }
  5405. }
  5406. },
  5407. [
  5408. {
  5409. name: "Micro",
  5410. height: math.unit(2, "inches")
  5411. },
  5412. {
  5413. name: "Small",
  5414. height: math.unit(1, "meter")
  5415. },
  5416. {
  5417. name: "Normal",
  5418. height: math.unit(Math.E, "meters"),
  5419. default: true
  5420. },
  5421. {
  5422. name: "Macro",
  5423. height: math.unit(20, "meters")
  5424. },
  5425. {
  5426. name: "Macro+",
  5427. height: math.unit(400, "meters")
  5428. },
  5429. ]
  5430. ))
  5431. characterMakers.push(() => makeCharacter(
  5432. { name: "Reece Silvermane" },
  5433. {
  5434. front: {
  5435. height: math.unit(7, "feet"),
  5436. weight: math.unit(489, "lbs"),
  5437. name: "Front",
  5438. image: {
  5439. source: "./media/characters/reece-silvermane/front.svg",
  5440. bottom: 0.02,
  5441. extra: 1
  5442. }
  5443. },
  5444. },
  5445. [
  5446. {
  5447. name: "Macro",
  5448. height: math.unit(1.5, "miles"),
  5449. default: true
  5450. },
  5451. ]
  5452. ))
  5453. characterMakers.push(() => makeCharacter(
  5454. { name: "Kane" },
  5455. {
  5456. front: {
  5457. height: math.unit(6, "feet"),
  5458. weight: math.unit(78, "kg"),
  5459. name: "Front",
  5460. image: {
  5461. source: "./media/characters/kane/front.svg",
  5462. extra: 978 / 899
  5463. }
  5464. },
  5465. },
  5466. [
  5467. {
  5468. name: "Normal",
  5469. height: math.unit(2.1, "m"),
  5470. },
  5471. {
  5472. name: "Macro",
  5473. height: math.unit(1, "km"),
  5474. default: true
  5475. },
  5476. ]
  5477. ))
  5478. characterMakers.push(() => makeCharacter(
  5479. { name: "Tegon" },
  5480. {
  5481. front: {
  5482. height: math.unit(6, "feet"),
  5483. weight: math.unit(200, "kg"),
  5484. name: "Front",
  5485. image: {
  5486. source: "./media/characters/tegon/front.svg",
  5487. bottom: 0.01,
  5488. extra: 1
  5489. }
  5490. },
  5491. },
  5492. [
  5493. {
  5494. name: "Micro",
  5495. height: math.unit(1, "inch")
  5496. },
  5497. {
  5498. name: "Normal",
  5499. height: math.unit(6 + 3 / 12, "feet"),
  5500. default: true
  5501. },
  5502. {
  5503. name: "Macro",
  5504. height: math.unit(300, "feet")
  5505. },
  5506. {
  5507. name: "Megamacro",
  5508. height: math.unit(69, "miles")
  5509. },
  5510. ]
  5511. ))
  5512. characterMakers.push(() => makeCharacter(
  5513. { name: "Arcturax" },
  5514. {
  5515. side: {
  5516. height: math.unit(6, "feet"),
  5517. weight: math.unit(2304, "lbs"),
  5518. name: "Side",
  5519. image: {
  5520. source: "./media/characters/arcturax/side.svg",
  5521. extra: 790 / 376,
  5522. bottom: 0.01
  5523. }
  5524. },
  5525. },
  5526. [
  5527. {
  5528. name: "Micro",
  5529. height: math.unit(2, "inch")
  5530. },
  5531. {
  5532. name: "Normal",
  5533. height: math.unit(6, "feet")
  5534. },
  5535. {
  5536. name: "Macro",
  5537. height: math.unit(39, "feet"),
  5538. default: true
  5539. },
  5540. {
  5541. name: "Megamacro",
  5542. height: math.unit(7, "miles")
  5543. },
  5544. ]
  5545. ))
  5546. characterMakers.push(() => makeCharacter(
  5547. { name: "Sentri" },
  5548. {
  5549. front: {
  5550. height: math.unit(6, "feet"),
  5551. weight: math.unit(50, "lbs"),
  5552. name: "Front",
  5553. image: {
  5554. source: "./media/characters/sentri/front.svg",
  5555. extra: 1750 / 1570,
  5556. bottom: 0.025
  5557. }
  5558. },
  5559. frontAlt: {
  5560. height: math.unit(6, "feet"),
  5561. weight: math.unit(50, "lbs"),
  5562. name: "Front (Alt)",
  5563. image: {
  5564. source: "./media/characters/sentri/front-alt.svg",
  5565. extra: 1750 / 1570,
  5566. bottom: 0.025
  5567. }
  5568. },
  5569. },
  5570. [
  5571. {
  5572. name: "Normal",
  5573. height: math.unit(15, "feet"),
  5574. default: true
  5575. },
  5576. {
  5577. name: "Macro",
  5578. height: math.unit(2500, "feet")
  5579. }
  5580. ]
  5581. ))
  5582. characterMakers.push(() => makeCharacter(
  5583. { name: "Corvin" },
  5584. {
  5585. front: {
  5586. height: math.unit(5 + 8 / 12, "feet"),
  5587. weight: math.unit(130, "lbs"),
  5588. name: "Front",
  5589. image: {
  5590. source: "./media/characters/corvin/front.svg",
  5591. extra: 1803 / 1629
  5592. }
  5593. },
  5594. frontShirt: {
  5595. height: math.unit(5 + 8 / 12, "feet"),
  5596. weight: math.unit(130, "lbs"),
  5597. name: "Front (Shirt)",
  5598. image: {
  5599. source: "./media/characters/corvin/front-shirt.svg",
  5600. extra: 1803 / 1629
  5601. }
  5602. },
  5603. frontPoncho: {
  5604. height: math.unit(5 + 8 / 12, "feet"),
  5605. weight: math.unit(130, "lbs"),
  5606. name: "Front (Poncho)",
  5607. image: {
  5608. source: "./media/characters/corvin/front-poncho.svg",
  5609. extra: 1803 / 1629
  5610. }
  5611. },
  5612. side: {
  5613. height: math.unit(5 + 8 / 12, "feet"),
  5614. weight: math.unit(130, "lbs"),
  5615. name: "Side",
  5616. image: {
  5617. source: "./media/characters/corvin/side.svg",
  5618. extra: 1012 / 945
  5619. }
  5620. },
  5621. back: {
  5622. height: math.unit(5 + 8 / 12, "feet"),
  5623. weight: math.unit(130, "lbs"),
  5624. name: "Back",
  5625. image: {
  5626. source: "./media/characters/corvin/back.svg",
  5627. extra: 1803 / 1629
  5628. }
  5629. },
  5630. },
  5631. [
  5632. {
  5633. name: "Micro",
  5634. height: math.unit(3, "inches")
  5635. },
  5636. {
  5637. name: "Normal",
  5638. height: math.unit(5 + 8 / 12, "feet")
  5639. },
  5640. {
  5641. name: "Macro",
  5642. height: math.unit(300, "feet"),
  5643. default: true
  5644. },
  5645. {
  5646. name: "Megamacro",
  5647. height: math.unit(500, "miles")
  5648. }
  5649. ]
  5650. ))
  5651. characterMakers.push(() => makeCharacter(
  5652. { name: "Q" },
  5653. {
  5654. front: {
  5655. height: math.unit(6, "feet"),
  5656. weight: math.unit(135, "lbs"),
  5657. name: "Front",
  5658. image: {
  5659. source: "./media/characters/q/front.svg",
  5660. extra: 854 / 752,
  5661. bottom: 0.005
  5662. }
  5663. },
  5664. back: {
  5665. height: math.unit(6, "feet"),
  5666. weight: math.unit(130, "lbs"),
  5667. name: "Back",
  5668. image: {
  5669. source: "./media/characters/q/back.svg",
  5670. extra: 854 / 752
  5671. }
  5672. },
  5673. },
  5674. [
  5675. {
  5676. name: "Macro",
  5677. height: math.unit(90, "feet"),
  5678. default: true
  5679. },
  5680. {
  5681. name: "Extra Macro",
  5682. height: math.unit(300, "feet"),
  5683. },
  5684. {
  5685. name: "BIG WALF",
  5686. height: math.unit(750, "feet"),
  5687. },
  5688. ]
  5689. ))
  5690. characterMakers.push(() => makeCharacter(
  5691. { name: "Carley" },
  5692. {
  5693. front: {
  5694. height: math.unit(6, "feet"),
  5695. weight: math.unit(150, "lbs"),
  5696. name: "Front",
  5697. image: {
  5698. source: "./media/characters/carley/front.svg",
  5699. extra: 3927 / 3540,
  5700. bottom: 0.03
  5701. }
  5702. }
  5703. },
  5704. [
  5705. {
  5706. name: "Normal",
  5707. height: math.unit(6 + 3 / 12, "feet")
  5708. },
  5709. {
  5710. name: "Macro",
  5711. height: math.unit(185, "feet"),
  5712. default: true
  5713. },
  5714. {
  5715. name: "Megamacro",
  5716. height: math.unit(8, "miles"),
  5717. },
  5718. ]
  5719. ))
  5720. characterMakers.push(() => makeCharacter(
  5721. { name: "Citrine" },
  5722. {
  5723. front: {
  5724. height: math.unit(3, "feet"),
  5725. weight: math.unit(28, "lbs"),
  5726. name: "Front",
  5727. image: {
  5728. source: "./media/characters/citrine/front.svg"
  5729. }
  5730. }
  5731. },
  5732. [
  5733. {
  5734. name: "Normal",
  5735. height: math.unit(3, "feet"),
  5736. default: true
  5737. }
  5738. ]
  5739. ))
  5740. characterMakers.push(() => makeCharacter(
  5741. { name: "Aura Starwind" },
  5742. {
  5743. front: {
  5744. height: math.unit(14, "feet"),
  5745. weight: math.unit(1450, "kg"),
  5746. name: "Front",
  5747. image: {
  5748. source: "./media/characters/aura-starwind/front.svg",
  5749. extra: 1455 / 1335
  5750. }
  5751. },
  5752. side: {
  5753. height: math.unit(14, "feet"),
  5754. weight: math.unit(1450, "kg"),
  5755. name: "Side",
  5756. image: {
  5757. source: "./media/characters/aura-starwind/side.svg",
  5758. extra: 1654 / 1497
  5759. }
  5760. },
  5761. taur: {
  5762. height: math.unit(18, "feet"),
  5763. weight: math.unit(5500, "kg"),
  5764. name: "Taur",
  5765. image: {
  5766. source: "./media/characters/aura-starwind/taur.svg",
  5767. extra: 1760 / 1650
  5768. }
  5769. },
  5770. feral: {
  5771. height: math.unit(46, "feet"),
  5772. weight: math.unit(25000, "kg"),
  5773. name: "Feral",
  5774. image: {
  5775. source: "./media/characters/aura-starwind/feral.svg"
  5776. }
  5777. },
  5778. },
  5779. [
  5780. {
  5781. name: "Normal",
  5782. height: math.unit(14, "feet"),
  5783. default: true
  5784. },
  5785. {
  5786. name: "Macro",
  5787. height: math.unit(50, "meters")
  5788. },
  5789. {
  5790. name: "Megamacro",
  5791. height: math.unit(5000, "meters")
  5792. },
  5793. {
  5794. name: "Gigamacro",
  5795. height: math.unit(100000, "kilometers")
  5796. },
  5797. ]
  5798. ))
  5799. characterMakers.push(() => makeCharacter(
  5800. { name: "Rivet" },
  5801. {
  5802. front: {
  5803. height: math.unit(2 + 7 / 12, "feet"),
  5804. weight: math.unit(32, "lbs"),
  5805. name: "Front",
  5806. image: {
  5807. source: "./media/characters/rivet/front.svg",
  5808. extra: 1716 / 1658,
  5809. bottom: 0.03
  5810. }
  5811. },
  5812. foot: {
  5813. height: math.unit(0.551, "feet"),
  5814. name: "Rivet's Foot",
  5815. image: {
  5816. source: "./media/characters/rivet/foot.svg"
  5817. },
  5818. rename: true
  5819. }
  5820. },
  5821. [
  5822. {
  5823. name: "Micro",
  5824. height: math.unit(1.5, "inches"),
  5825. },
  5826. {
  5827. name: "Normal",
  5828. height: math.unit(2 + 7 / 12, "feet"),
  5829. default: true
  5830. },
  5831. {
  5832. name: "Macro",
  5833. height: math.unit(85, "feet")
  5834. },
  5835. {
  5836. name: "Megamacro",
  5837. height: math.unit(2.2, "km")
  5838. }
  5839. ]
  5840. ))
  5841. characterMakers.push(() => makeCharacter(
  5842. { name: "Coffee" },
  5843. {
  5844. front: {
  5845. height: math.unit(5 + 9 / 12, "feet"),
  5846. weight: math.unit(150, "lbs"),
  5847. name: "Front",
  5848. image: {
  5849. source: "./media/characters/coffee/front.svg",
  5850. extra: 3666 / 3032,
  5851. bottom: 0.04
  5852. }
  5853. },
  5854. foot: {
  5855. height: math.unit(1.29, "feet"),
  5856. name: "Foot",
  5857. image: {
  5858. source: "./media/characters/coffee/foot.svg"
  5859. }
  5860. },
  5861. },
  5862. [
  5863. {
  5864. name: "Micro",
  5865. height: math.unit(2, "inches"),
  5866. },
  5867. {
  5868. name: "Normal",
  5869. height: math.unit(5 + 9 / 12, "feet"),
  5870. default: true
  5871. },
  5872. {
  5873. name: "Macro",
  5874. height: math.unit(800, "feet")
  5875. },
  5876. {
  5877. name: "Megamacro",
  5878. height: math.unit(25, "miles")
  5879. }
  5880. ]
  5881. ))
  5882. characterMakers.push(() => makeCharacter(
  5883. { name: "Chari-Gal" },
  5884. {
  5885. front: {
  5886. height: math.unit(6, "feet"),
  5887. weight: math.unit(200, "lbs"),
  5888. name: "Front",
  5889. image: {
  5890. source: "./media/characters/chari-gal/front.svg",
  5891. extra: 1568 / 1385,
  5892. bottom: 0.047
  5893. }
  5894. },
  5895. gigantamax: {
  5896. height: math.unit(6 * 16, "feet"),
  5897. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  5898. name: "Gigantamax",
  5899. image: {
  5900. source: "./media/characters/chari-gal/gigantamax.svg",
  5901. extra: 1124 / 888,
  5902. bottom: 0.03
  5903. }
  5904. },
  5905. },
  5906. [
  5907. {
  5908. name: "Normal",
  5909. height: math.unit(5 + 7 / 12, "feet")
  5910. },
  5911. {
  5912. name: "Macro",
  5913. height: math.unit(200, "feet"),
  5914. default: true
  5915. }
  5916. ]
  5917. ))
  5918. characterMakers.push(() => makeCharacter(
  5919. { name: "Nova" },
  5920. {
  5921. front: {
  5922. height: math.unit(6, "feet"),
  5923. weight: math.unit(150, "lbs"),
  5924. name: "Front",
  5925. image: {
  5926. source: "./media/characters/nova/front.svg",
  5927. extra: 5000 / 4722,
  5928. bottom: 0.02
  5929. }
  5930. }
  5931. },
  5932. [
  5933. {
  5934. name: "Micro-",
  5935. height: math.unit(0.8, "inches")
  5936. },
  5937. {
  5938. name: "Micro",
  5939. height: math.unit(2, "inches"),
  5940. default: true
  5941. },
  5942. ]
  5943. ))
  5944. characterMakers.push(() => makeCharacter(
  5945. { name: "Argent" },
  5946. {
  5947. front: {
  5948. height: math.unit(3 + 1 / 12, "feet"),
  5949. weight: math.unit(21.7, "lbs"),
  5950. name: "Front",
  5951. image: {
  5952. source: "./media/characters/argent/front.svg",
  5953. extra: 1565 / 1416,
  5954. bottom: 0.01
  5955. }
  5956. }
  5957. },
  5958. [
  5959. {
  5960. name: "Micro",
  5961. height: math.unit(2, "inches")
  5962. },
  5963. {
  5964. name: "Normal",
  5965. height: math.unit(3 + 1 / 12, "feet"),
  5966. default: true
  5967. },
  5968. {
  5969. name: "Macro",
  5970. height: math.unit(120, "feet")
  5971. },
  5972. ]
  5973. ))
  5974. characterMakers.push(() => makeCharacter(
  5975. { name: "Mira al-Cul" },
  5976. {
  5977. lamp: {
  5978. height: math.unit(7 * 1559 / 989, "feet"),
  5979. name: "Magic Lamp",
  5980. image: {
  5981. source: "./media/characters/mira-al-cul/lamp.svg",
  5982. extra: 1617 / 1559
  5983. }
  5984. },
  5985. front: {
  5986. height: math.unit(7, "feet"),
  5987. name: "Front",
  5988. image: {
  5989. source: "./media/characters/mira-al-cul/front.svg",
  5990. extra: 1044 / 990
  5991. }
  5992. },
  5993. },
  5994. [
  5995. {
  5996. name: "Heavily Restricted",
  5997. height: math.unit(7 * 1559 / 989, "feet")
  5998. },
  5999. {
  6000. name: "Freshly Freed",
  6001. height: math.unit(50 * 1559 / 989, "feet")
  6002. },
  6003. {
  6004. name: "World Encompassing",
  6005. height: math.unit(10000 * 1559 / 989, "miles")
  6006. },
  6007. {
  6008. name: "Galactic",
  6009. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6010. },
  6011. {
  6012. name: "Palmed Universe",
  6013. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6014. default: true
  6015. },
  6016. {
  6017. name: "Multiversal Matriarch",
  6018. height: math.unit(8.87e10, "yottameters")
  6019. },
  6020. {
  6021. name: "Void Mother",
  6022. height: math.unit(3.14e110, "yottaparsecs")
  6023. },
  6024. ]
  6025. ))
  6026. characterMakers.push(() => makeCharacter(
  6027. { name: "Kuro-shi Uchū" },
  6028. {
  6029. front: {
  6030. height: math.unit(17 + 1 / 12, "feet"),
  6031. weight: math.unit(476.2 * 5, "lbs"),
  6032. name: "Front",
  6033. image: {
  6034. source: "./media/characters/kuro-shi-uchū/front.svg",
  6035. extra: 2329 / 1835,
  6036. bottom: 0.02
  6037. }
  6038. },
  6039. },
  6040. [
  6041. {
  6042. name: "Micro",
  6043. height: math.unit(2, "inches")
  6044. },
  6045. {
  6046. name: "Normal",
  6047. height: math.unit(12, "meters")
  6048. },
  6049. {
  6050. name: "Planetary",
  6051. height: math.unit(0.00929, "AU"),
  6052. default: true
  6053. },
  6054. {
  6055. name: "Universal",
  6056. height: math.unit(20, "gigaparsecs")
  6057. },
  6058. ]
  6059. ))
  6060. characterMakers.push(() => makeCharacter(
  6061. { name: "Katherine" },
  6062. {
  6063. front: {
  6064. height: math.unit(5 + 2 / 12, "feet"),
  6065. weight: math.unit(120, "lbs"),
  6066. name: "Front",
  6067. image: {
  6068. source: "./media/characters/katherine/front.svg",
  6069. extra: 2075 / 1969
  6070. }
  6071. },
  6072. dress: {
  6073. height: math.unit(5 + 2 / 12, "feet"),
  6074. weight: math.unit(120, "lbs"),
  6075. name: "Dress",
  6076. image: {
  6077. source: "./media/characters/katherine/dress.svg",
  6078. extra: 2258 / 2064
  6079. }
  6080. },
  6081. },
  6082. [
  6083. {
  6084. name: "Micro",
  6085. height: math.unit(1, "inches"),
  6086. default: true
  6087. },
  6088. {
  6089. name: "Normal",
  6090. height: math.unit(5 + 2 / 12, "feet")
  6091. },
  6092. {
  6093. name: "Macro",
  6094. height: math.unit(100, "meters")
  6095. },
  6096. {
  6097. name: "Megamacro",
  6098. height: math.unit(80, "miles")
  6099. },
  6100. ]
  6101. ))
  6102. characterMakers.push(() => makeCharacter(
  6103. { name: "Yevis" },
  6104. {
  6105. front: {
  6106. height: math.unit(7 + 8 / 12, "feet"),
  6107. weight: math.unit(250, "lbs"),
  6108. name: "Front",
  6109. image: {
  6110. source: "./media/characters/yevis/front.svg",
  6111. extra: 1938 / 1755
  6112. }
  6113. }
  6114. },
  6115. [
  6116. {
  6117. name: "Mortal",
  6118. height: math.unit(7 + 8 / 12, "feet")
  6119. },
  6120. {
  6121. name: "Battle",
  6122. height: math.unit(25 + 11 / 12, "feet")
  6123. },
  6124. {
  6125. name: "Wrath",
  6126. height: math.unit(1654 + 11 / 12, "feet")
  6127. },
  6128. {
  6129. name: "Planet Destroyer",
  6130. height: math.unit(12000, "miles")
  6131. },
  6132. {
  6133. name: "Galaxy Conqueror",
  6134. height: math.unit(1.45, "zettameters"),
  6135. default: true
  6136. },
  6137. {
  6138. name: "Universal War",
  6139. height: math.unit(184, "gigaparsecs")
  6140. },
  6141. {
  6142. name: "Eternity War",
  6143. height: math.unit(1.98e55, "yottaparsecs")
  6144. },
  6145. ]
  6146. ))
  6147. characterMakers.push(() => makeCharacter(
  6148. { name: "Xavier" },
  6149. {
  6150. front: {
  6151. height: math.unit(5 + 8 / 12, "feet"),
  6152. weight: math.unit(63, "kg"),
  6153. name: "Front",
  6154. image: {
  6155. source: "./media/characters/xavier/front.svg",
  6156. extra: 944 / 883
  6157. }
  6158. },
  6159. frontStretch: {
  6160. height: math.unit(5 + 8 / 12, "feet"),
  6161. weight: math.unit(63, "kg"),
  6162. name: "Stretching",
  6163. image: {
  6164. source: "./media/characters/xavier/front-stretch.svg",
  6165. extra: 962 / 820
  6166. }
  6167. },
  6168. },
  6169. [
  6170. {
  6171. name: "Normal",
  6172. height: math.unit(5 + 8 / 12, "feet")
  6173. },
  6174. {
  6175. name: "Macro",
  6176. height: math.unit(100, "meters"),
  6177. default: true
  6178. },
  6179. {
  6180. name: "McLargeHuge",
  6181. height: math.unit(10, "miles")
  6182. },
  6183. ]
  6184. ))
  6185. characterMakers.push(() => makeCharacter(
  6186. { name: "Joshii" },
  6187. {
  6188. front: {
  6189. height: math.unit(5 + 5 / 12, "feet"),
  6190. weight: math.unit(150, "lb"),
  6191. name: "Front",
  6192. image: {
  6193. source: "./media/characters/joshii/front.svg"
  6194. }
  6195. },
  6196. foot: {
  6197. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6198. name: "Foot",
  6199. image: {
  6200. source: "./media/characters/joshii/foot.svg"
  6201. }
  6202. },
  6203. },
  6204. [
  6205. {
  6206. name: "Micro",
  6207. height: math.unit(2, "inches")
  6208. },
  6209. {
  6210. name: "Normal",
  6211. height: math.unit(5 + 5 / 12, "feet"),
  6212. default: true
  6213. },
  6214. {
  6215. name: "Macro",
  6216. height: math.unit(785, "feet")
  6217. },
  6218. {
  6219. name: "Megamacro",
  6220. height: math.unit(24.5, "miles")
  6221. },
  6222. ]
  6223. ))
  6224. characterMakers.push(() => makeCharacter(
  6225. { name: "Goddess Elizabeth" },
  6226. {
  6227. front: {
  6228. height: math.unit(6, "feet"),
  6229. weight: math.unit(150, "lb"),
  6230. name: "Front",
  6231. image: {
  6232. source: "./media/characters/goddess-elizabeth/front.svg",
  6233. extra: 1800 / 1525,
  6234. bottom: 0.005
  6235. }
  6236. },
  6237. foot: {
  6238. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6239. name: "Foot",
  6240. image: {
  6241. source: "./media/characters/goddess-elizabeth/foot.svg"
  6242. }
  6243. },
  6244. mouth: {
  6245. height: math.unit(6, "feet"),
  6246. name: "Mouth",
  6247. image: {
  6248. source: "./media/characters/goddess-elizabeth/mouth.svg"
  6249. }
  6250. },
  6251. },
  6252. [
  6253. {
  6254. name: "Micro",
  6255. height: math.unit(12, "feet")
  6256. },
  6257. {
  6258. name: "Normal",
  6259. height: math.unit(80, "miles"),
  6260. default: true
  6261. },
  6262. {
  6263. name: "Macro",
  6264. height: math.unit(15000, "parsecs")
  6265. },
  6266. ]
  6267. ))
  6268. characterMakers.push(() => makeCharacter(
  6269. { name: "Kara" },
  6270. {
  6271. front: {
  6272. height: math.unit(5 + 9 / 12, "feet"),
  6273. weight: math.unit(144, "lb"),
  6274. name: "Front",
  6275. image: {
  6276. source: "./media/characters/kara/front.svg"
  6277. }
  6278. },
  6279. feet: {
  6280. height: math.unit(6 / 6.765, "feet"),
  6281. name: "Kara's Feet",
  6282. rename: true,
  6283. image: {
  6284. source: "./media/characters/kara/feet.svg"
  6285. }
  6286. },
  6287. },
  6288. [
  6289. {
  6290. name: "Normal",
  6291. height: math.unit(5 + 9 / 12, "feet")
  6292. },
  6293. {
  6294. name: "Macro",
  6295. height: math.unit(174, "feet"),
  6296. default: true
  6297. },
  6298. ]
  6299. ))
  6300. characterMakers.push(() => makeCharacter(
  6301. { name: "Tyrone" },
  6302. {
  6303. front: {
  6304. height: math.unit(18, "feet"),
  6305. weight: math.unit(4050, "lb"),
  6306. name: "Front",
  6307. image: {
  6308. source: "./media/characters/tyrone/front.svg",
  6309. extra: 2520 / 2402,
  6310. bottom: 0.025
  6311. }
  6312. },
  6313. },
  6314. [
  6315. {
  6316. name: "Normal",
  6317. height: math.unit(18, "feet"),
  6318. default: true
  6319. },
  6320. {
  6321. name: "Macro",
  6322. height: math.unit(300, "feet")
  6323. },
  6324. ]
  6325. ))
  6326. characterMakers.push(() => makeCharacter(
  6327. { name: "Danny" },
  6328. {
  6329. front: {
  6330. height: math.unit(7 + 8 / 12, "feet"),
  6331. weight: math.unit(120, "lb"),
  6332. name: "Front",
  6333. image: {
  6334. source: "./media/characters/danny/front.svg",
  6335. extra: 1490 / 1350
  6336. }
  6337. },
  6338. back: {
  6339. height: math.unit(7 + 8 / 12, "feet"),
  6340. weight: math.unit(120, "lb"),
  6341. name: "Back",
  6342. image: {
  6343. source: "./media/characters/danny/back.svg",
  6344. extra: 1490 / 1350
  6345. }
  6346. },
  6347. },
  6348. [
  6349. {
  6350. name: "Normal",
  6351. height: math.unit(7 + 8 / 12, "feet"),
  6352. default: true
  6353. },
  6354. ]
  6355. ))
  6356. characterMakers.push(() => makeCharacter(
  6357. { name: "Mallow" },
  6358. {
  6359. front: {
  6360. height: math.unit(3.5, "inches"),
  6361. weight: math.unit(19, "grams"),
  6362. name: "Front",
  6363. image: {
  6364. source: "./media/characters/mallow/front.svg",
  6365. extra: 471 / 431
  6366. }
  6367. },
  6368. back: {
  6369. height: math.unit(3.5, "inches"),
  6370. weight: math.unit(19, "grams"),
  6371. name: "Back",
  6372. image: {
  6373. source: "./media/characters/mallow/back.svg",
  6374. extra: 471 / 431
  6375. }
  6376. },
  6377. },
  6378. [
  6379. {
  6380. name: "Normal",
  6381. height: math.unit(3.5, "inches"),
  6382. default: true
  6383. },
  6384. ]
  6385. ))
  6386. characterMakers.push(() => makeCharacter(
  6387. { name: "Starry Aqua" },
  6388. {
  6389. front: {
  6390. height: math.unit(9, "feet"),
  6391. weight: math.unit(230, "kg"),
  6392. name: "Front",
  6393. image: {
  6394. source: "./media/characters/starry-aqua/front.svg"
  6395. }
  6396. },
  6397. back: {
  6398. height: math.unit(9, "feet"),
  6399. weight: math.unit(230, "kg"),
  6400. name: "Back",
  6401. image: {
  6402. source: "./media/characters/starry-aqua/back.svg"
  6403. }
  6404. },
  6405. hand: {
  6406. height: math.unit(9 * 0.1168, "feet"),
  6407. name: "Hand",
  6408. image: {
  6409. source: "./media/characters/starry-aqua/hand.svg"
  6410. }
  6411. },
  6412. foot: {
  6413. height: math.unit(9 * 0.18, "feet"),
  6414. name: "Foot",
  6415. image: {
  6416. source: "./media/characters/starry-aqua/foot.svg"
  6417. }
  6418. }
  6419. },
  6420. [
  6421. {
  6422. name: "Micro",
  6423. height: math.unit(3, "inches")
  6424. },
  6425. {
  6426. name: "Normal",
  6427. height: math.unit(9, "feet")
  6428. },
  6429. {
  6430. name: "Macro",
  6431. height: math.unit(300, "feet"),
  6432. default: true
  6433. },
  6434. {
  6435. name: "Megamacro",
  6436. height: math.unit(3200, "feet")
  6437. }
  6438. ]
  6439. ))
  6440. characterMakers.push(() => makeCharacter(
  6441. { name: "Luka" },
  6442. {
  6443. front: {
  6444. height: math.unit(6, "feet"),
  6445. weight: math.unit(230, "lb"),
  6446. name: "Front",
  6447. image: {
  6448. source: "./media/characters/luka/front.svg",
  6449. extra: 1,
  6450. bottom: 0.025
  6451. }
  6452. },
  6453. },
  6454. [
  6455. {
  6456. name: "Normal",
  6457. height: math.unit(12 + 8 / 12, "feet"),
  6458. default: true
  6459. },
  6460. {
  6461. name: "Minimacro",
  6462. height: math.unit(20, "feet")
  6463. },
  6464. {
  6465. name: "Macro",
  6466. height: math.unit(250, "feet")
  6467. },
  6468. {
  6469. name: "Megamacro",
  6470. height: math.unit(5, "miles")
  6471. },
  6472. {
  6473. name: "Gigamacro",
  6474. height: math.unit(8000, "miles")
  6475. },
  6476. ]
  6477. ))
  6478. characterMakers.push(() => makeCharacter(
  6479. { name: "Natalie Nightring" },
  6480. {
  6481. front: {
  6482. height: math.unit(6, "feet"),
  6483. weight: math.unit(150, "lb"),
  6484. name: "Front",
  6485. image: {
  6486. source: "./media/characters/natalie-nightring/front.svg",
  6487. extra: 1,
  6488. bottom: 0.06
  6489. }
  6490. },
  6491. },
  6492. [
  6493. {
  6494. name: "Uh Oh",
  6495. height: math.unit(0.1, "mm")
  6496. },
  6497. {
  6498. name: "Small",
  6499. height: math.unit(3, "inches")
  6500. },
  6501. {
  6502. name: "Human Scale",
  6503. height: math.unit(6, "feet")
  6504. },
  6505. {
  6506. name: "Librarian",
  6507. height: math.unit(50, "feet"),
  6508. default: true
  6509. },
  6510. {
  6511. name: "Immense",
  6512. height: math.unit(200, "miles")
  6513. },
  6514. ]
  6515. ))
  6516. characterMakers.push(() => makeCharacter(
  6517. { name: "Danni Rosie" },
  6518. {
  6519. front: {
  6520. height: math.unit(6, "feet"),
  6521. weight: math.unit(180, "lbs"),
  6522. name: "Front",
  6523. image: {
  6524. source: "./media/characters/danni-rosie/front.svg",
  6525. extra: 1260 / 1128,
  6526. bottom: 0.022
  6527. }
  6528. },
  6529. },
  6530. [
  6531. {
  6532. name: "Micro",
  6533. height: math.unit(2, "inches"),
  6534. default: true
  6535. },
  6536. ]
  6537. ))
  6538. characterMakers.push(() => makeCharacter(
  6539. { name: "Samantha Kruse" },
  6540. {
  6541. front: {
  6542. height: math.unit(5 + 9 / 12, "feet"),
  6543. weight: math.unit(220, "lb"),
  6544. name: "Front",
  6545. image: {
  6546. source: "./media/characters/samantha-kruse/front.svg",
  6547. extra: (985 / 935),
  6548. bottom: 0.03
  6549. }
  6550. },
  6551. frontUndressed: {
  6552. height: math.unit(5 + 9 / 12, "feet"),
  6553. weight: math.unit(220, "lb"),
  6554. name: "Front (Undressed)",
  6555. image: {
  6556. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6557. extra: (973 / 923),
  6558. bottom: 0.025
  6559. }
  6560. },
  6561. fat: {
  6562. height: math.unit(5 + 9 / 12, "feet"),
  6563. weight: math.unit(900, "lb"),
  6564. name: "Front (Fat)",
  6565. image: {
  6566. source: "./media/characters/samantha-kruse/fat.svg",
  6567. extra: 2688 / 2561
  6568. }
  6569. },
  6570. },
  6571. [
  6572. {
  6573. name: "Normal",
  6574. height: math.unit(5 + 9 / 12, "feet"),
  6575. default: true
  6576. }
  6577. ]
  6578. ))
  6579. characterMakers.push(() => makeCharacter(
  6580. { name: "Amelia Rosie" },
  6581. {
  6582. back: {
  6583. height: math.unit(5 + 4 / 12, "feet"),
  6584. weight: math.unit(4963, "lb"),
  6585. name: "Back",
  6586. image: {
  6587. source: "./media/characters/amelia-rosie/back.svg",
  6588. extra: 1113 / 963,
  6589. bottom: 0.01
  6590. }
  6591. },
  6592. },
  6593. [
  6594. {
  6595. name: "Level 0",
  6596. height: math.unit(5 + 4 / 12, "feet")
  6597. },
  6598. {
  6599. name: "Level 1",
  6600. height: math.unit(164597, "feet"),
  6601. default: true
  6602. },
  6603. {
  6604. name: "Level 2",
  6605. height: math.unit(956243, "miles")
  6606. },
  6607. {
  6608. name: "Level 3",
  6609. height: math.unit(29421709423, "miles")
  6610. },
  6611. {
  6612. name: "Level 4",
  6613. height: math.unit(154, "lightyears")
  6614. },
  6615. {
  6616. name: "Level 5",
  6617. height: math.unit(4738272, "lightyears")
  6618. },
  6619. {
  6620. name: "Level 6",
  6621. height: math.unit(145787152896, "lightyears")
  6622. },
  6623. ]
  6624. ))
  6625. characterMakers.push(() => makeCharacter(
  6626. { name: "Rook Kitara" },
  6627. {
  6628. front: {
  6629. height: math.unit(5 + 11 / 12, "feet"),
  6630. weight: math.unit(65, "kg"),
  6631. name: "Front",
  6632. image: {
  6633. source: "./media/characters/rook-kitara/front.svg",
  6634. extra: 1347 / 1274,
  6635. bottom: 0.005
  6636. }
  6637. },
  6638. },
  6639. [
  6640. {
  6641. name: "Totally Unfair",
  6642. height: math.unit(1.8, "mm")
  6643. },
  6644. {
  6645. name: "Lap Rookie",
  6646. height: math.unit(1.4, "feet")
  6647. },
  6648. {
  6649. name: "Normal",
  6650. height: math.unit(5 + 11 / 12, "feet"),
  6651. default: true
  6652. },
  6653. {
  6654. name: "How Did This Happen",
  6655. height: math.unit(80, "miles")
  6656. }
  6657. ]
  6658. ))
  6659. characterMakers.push(() => makeCharacter(
  6660. { name: "Pisces" },
  6661. {
  6662. front: {
  6663. height: math.unit(7, "feet"),
  6664. weight: math.unit(300, "lb"),
  6665. name: "Front",
  6666. image: {
  6667. source: "./media/characters/pisces/front.svg",
  6668. extra: 2255 / 2115,
  6669. bottom: 0.03
  6670. }
  6671. },
  6672. back: {
  6673. height: math.unit(7, "feet"),
  6674. weight: math.unit(300, "lb"),
  6675. name: "Back",
  6676. image: {
  6677. source: "./media/characters/pisces/back.svg",
  6678. extra: 2146 / 2055,
  6679. bottom: 0.04
  6680. }
  6681. },
  6682. },
  6683. [
  6684. {
  6685. name: "Normal",
  6686. height: math.unit(7, "feet"),
  6687. default: true
  6688. },
  6689. {
  6690. name: "Swimming Pool",
  6691. height: math.unit(12.2, "meters")
  6692. },
  6693. {
  6694. name: "Olympic Swimming Pool",
  6695. height: math.unit(56.3, "meters")
  6696. },
  6697. {
  6698. name: "Lake Superior",
  6699. height: math.unit(93900, "meters")
  6700. },
  6701. {
  6702. name: "Mediterranean Sea",
  6703. height: math.unit(644457, "meters")
  6704. },
  6705. {
  6706. name: "World's Oceans",
  6707. height: math.unit(4567491, "meters")
  6708. },
  6709. ]
  6710. ))
  6711. characterMakers.push(() => makeCharacter(
  6712. { name: "Zelas" },
  6713. {
  6714. front: {
  6715. height: math.unit(2.3, "meters"),
  6716. weight: math.unit(120, "kg"),
  6717. name: "Front",
  6718. image: {
  6719. source: "./media/characters/zelas/front.svg"
  6720. }
  6721. },
  6722. side: {
  6723. height: math.unit(2.3, "meters"),
  6724. weight: math.unit(120, "kg"),
  6725. name: "Side",
  6726. image: {
  6727. source: "./media/characters/zelas/side.svg"
  6728. }
  6729. },
  6730. back: {
  6731. height: math.unit(2.3, "meters"),
  6732. weight: math.unit(120, "kg"),
  6733. name: "Back",
  6734. image: {
  6735. source: "./media/characters/zelas/back.svg"
  6736. }
  6737. },
  6738. foot: {
  6739. height: math.unit(1.116, "feet"),
  6740. name: "Foot",
  6741. image: {
  6742. source: "./media/characters/zelas/foot.svg"
  6743. }
  6744. },
  6745. },
  6746. [
  6747. {
  6748. name: "Normal",
  6749. height: math.unit(2.3, "meters")
  6750. },
  6751. {
  6752. name: "Macro",
  6753. height: math.unit(30, "meters"),
  6754. default: true
  6755. },
  6756. ]
  6757. ))
  6758. characterMakers.push(() => makeCharacter(
  6759. { name: "Talbot" },
  6760. {
  6761. front: {
  6762. height: math.unit(1, "inch"),
  6763. weight: math.unit(0.21, "grams"),
  6764. name: "Front",
  6765. image: {
  6766. source: "./media/characters/talbot/front.svg",
  6767. extra: 594 / 544
  6768. }
  6769. },
  6770. },
  6771. [
  6772. {
  6773. name: "Micro",
  6774. height: math.unit(1, "inch"),
  6775. default: true
  6776. },
  6777. ]
  6778. ))
  6779. characterMakers.push(() => makeCharacter(
  6780. { name: "Fliss" },
  6781. {
  6782. front: {
  6783. height: math.unit(3 + 3 / 12, "feet"),
  6784. weight: math.unit(51.8, "lb"),
  6785. name: "Front",
  6786. image: {
  6787. source: "./media/characters/fliss/front.svg",
  6788. extra: 840 / 640
  6789. }
  6790. },
  6791. },
  6792. [
  6793. {
  6794. name: "Teeny Tiny",
  6795. height: math.unit(1, "mm")
  6796. },
  6797. {
  6798. name: "Small",
  6799. height: math.unit(1, "inch"),
  6800. default: true
  6801. },
  6802. {
  6803. name: "Standard Sylveon",
  6804. height: math.unit(3 + 3 / 12, "feet")
  6805. },
  6806. {
  6807. name: "Large Nuisance",
  6808. height: math.unit(33, "feet")
  6809. },
  6810. {
  6811. name: "City Filler",
  6812. height: math.unit(3000, "feet")
  6813. },
  6814. {
  6815. name: "New Horizon",
  6816. height: math.unit(6000, "miles")
  6817. },
  6818. ]
  6819. ))
  6820. characterMakers.push(() => makeCharacter(
  6821. { name: "Fleta" },
  6822. {
  6823. front: {
  6824. height: math.unit(5, "cm"),
  6825. weight: math.unit(1.94, "g"),
  6826. name: "Front",
  6827. image: {
  6828. source: "./media/characters/fleta/front.svg",
  6829. extra: 835 / 803
  6830. }
  6831. },
  6832. back: {
  6833. height: math.unit(5, "cm"),
  6834. weight: math.unit(1.94, "g"),
  6835. name: "Back",
  6836. image: {
  6837. source: "./media/characters/fleta/back.svg",
  6838. extra: 835 / 803
  6839. }
  6840. },
  6841. },
  6842. [
  6843. {
  6844. name: "Micro",
  6845. height: math.unit(5, "cm"),
  6846. default: true
  6847. },
  6848. ]
  6849. ))
  6850. characterMakers.push(() => makeCharacter(
  6851. { name: "Dominic" },
  6852. {
  6853. front: {
  6854. height: math.unit(6, "feet"),
  6855. weight: math.unit(225, "lb"),
  6856. name: "Front",
  6857. image: {
  6858. source: "./media/characters/dominic/front.svg",
  6859. extra: 1770 / 1620,
  6860. bottom: 0.025
  6861. }
  6862. },
  6863. back: {
  6864. height: math.unit(6, "feet"),
  6865. weight: math.unit(225, "lb"),
  6866. name: "Back",
  6867. image: {
  6868. source: "./media/characters/dominic/back.svg",
  6869. extra: 1745 / 1620,
  6870. bottom: 0.065
  6871. }
  6872. },
  6873. },
  6874. [
  6875. {
  6876. name: "Nano",
  6877. height: math.unit(0.1, "mm")
  6878. },
  6879. {
  6880. name: "Micro-",
  6881. height: math.unit(1, "mm")
  6882. },
  6883. {
  6884. name: "Micro",
  6885. height: math.unit(4, "inches")
  6886. },
  6887. {
  6888. name: "Normal",
  6889. height: math.unit(6 + 4 / 12, "feet"),
  6890. default: true
  6891. },
  6892. {
  6893. name: "Macro",
  6894. height: math.unit(115, "feet")
  6895. },
  6896. {
  6897. name: "Macro+",
  6898. height: math.unit(955, "feet")
  6899. },
  6900. {
  6901. name: "Megamacro",
  6902. height: math.unit(8990, "feet")
  6903. },
  6904. {
  6905. name: "Gigmacro",
  6906. height: math.unit(9310, "miles")
  6907. },
  6908. {
  6909. name: "Teramacro",
  6910. height: math.unit(1567005010, "miles")
  6911. },
  6912. {
  6913. name: "Examacro",
  6914. height: math.unit(1425, "parsecs")
  6915. },
  6916. ]
  6917. ))
  6918. characterMakers.push(() => makeCharacter(
  6919. { name: "Major Colonel" },
  6920. {
  6921. front: {
  6922. height: math.unit(400, "feet"),
  6923. weight: math.unit(44444444, "lb"),
  6924. name: "Front",
  6925. image: {
  6926. source: "./media/characters/major-colonel/front.svg"
  6927. }
  6928. },
  6929. back: {
  6930. height: math.unit(400, "feet"),
  6931. weight: math.unit(44444444, "lb"),
  6932. name: "Back",
  6933. image: {
  6934. source: "./media/characters/major-colonel/back.svg"
  6935. }
  6936. },
  6937. },
  6938. [
  6939. {
  6940. name: "Macro",
  6941. height: math.unit(400, "feet"),
  6942. default: true
  6943. },
  6944. ]
  6945. ))
  6946. characterMakers.push(() => makeCharacter(
  6947. { name: "Axel Lycan" },
  6948. {
  6949. front: {
  6950. height: math.unit(6, "feet"),
  6951. weight: math.unit(120, "lb"),
  6952. name: "Front",
  6953. image: {
  6954. source: "./media/characters/axel-lycan/front.svg",
  6955. extra: 1,
  6956. bottom: 0.08
  6957. }
  6958. },
  6959. },
  6960. [
  6961. {
  6962. name: "Macro",
  6963. height: math.unit(1, "km"),
  6964. default: true
  6965. },
  6966. ]
  6967. ))
  6968. characterMakers.push(() => makeCharacter(
  6969. { name: "Vanrel (Hyena)" },
  6970. {
  6971. front: {
  6972. height: math.unit(5 + 9 / 12, "feet"),
  6973. weight: math.unit(175, "lb"),
  6974. name: "Front",
  6975. image: {
  6976. source: "./media/characters/vanrel-hyena/front.svg",
  6977. extra: 1086 / 1010,
  6978. bottom: 0.04
  6979. }
  6980. },
  6981. },
  6982. [
  6983. {
  6984. name: "Normal",
  6985. height: math.unit(5 + 9 / 12, "feet"),
  6986. default: true
  6987. },
  6988. ]
  6989. ))
  6990. characterMakers.push(() => makeCharacter(
  6991. { name: "Abbott Absol" },
  6992. {
  6993. front: {
  6994. height: math.unit(6, "feet"),
  6995. weight: math.unit(103, "lb"),
  6996. name: "Front",
  6997. image: {
  6998. source: "./media/characters/abbott-absol/front.svg",
  6999. extra: 2010 / 1842
  7000. }
  7001. },
  7002. },
  7003. [
  7004. {
  7005. name: "Megamicro",
  7006. height: math.unit(0.1, "mm")
  7007. },
  7008. {
  7009. name: "Micro",
  7010. height: math.unit(1, "inch")
  7011. },
  7012. {
  7013. name: "Normal",
  7014. height: math.unit(6, "feet"),
  7015. default: true
  7016. },
  7017. ]
  7018. ))
  7019. characterMakers.push(() => makeCharacter(
  7020. { name: "Hector" },
  7021. {
  7022. front: {
  7023. height: math.unit(6, "feet"),
  7024. weight: math.unit(264, "lb"),
  7025. name: "Front",
  7026. image: {
  7027. source: "./media/characters/hector/front.svg",
  7028. extra: 2280 / 2130,
  7029. bottom: 0.07
  7030. }
  7031. },
  7032. },
  7033. [
  7034. {
  7035. name: "Normal",
  7036. height: math.unit(12.25, "foot"),
  7037. default: true
  7038. },
  7039. {
  7040. name: "Macro",
  7041. height: math.unit(160, "feet")
  7042. },
  7043. ]
  7044. ))
  7045. characterMakers.push(() => makeCharacter(
  7046. { name: "Sal" },
  7047. {
  7048. front: {
  7049. height: math.unit(6, "feet"),
  7050. weight: math.unit(150, "lb"),
  7051. name: "Front",
  7052. image: {
  7053. source: "./media/characters/sal/front.svg",
  7054. extra: 1846 / 1699,
  7055. bottom: 0.04
  7056. }
  7057. },
  7058. },
  7059. [
  7060. {
  7061. name: "Megamacro",
  7062. height: math.unit(10, "miles"),
  7063. default: true
  7064. },
  7065. ]
  7066. ))
  7067. characterMakers.push(() => makeCharacter(
  7068. { name: "Ranger" },
  7069. {
  7070. front: {
  7071. height: math.unit(3, "meters"),
  7072. weight: math.unit(450, "kg"),
  7073. name: "front",
  7074. image: {
  7075. source: "./media/characters/ranger/front.svg",
  7076. extra: 2401 / 2243,
  7077. bottom: 0.05
  7078. }
  7079. },
  7080. },
  7081. [
  7082. {
  7083. name: "Normal",
  7084. height: math.unit(3, "meters"),
  7085. default: true
  7086. },
  7087. ]
  7088. ))
  7089. characterMakers.push(() => makeCharacter(
  7090. { name: "Theresa" },
  7091. {
  7092. front: {
  7093. height: math.unit(14, "feet"),
  7094. weight: math.unit(800, "kg"),
  7095. name: "Front",
  7096. image: {
  7097. source: "./media/characters/theresa/front.svg",
  7098. extra: 3575 / 3346,
  7099. bottom: 0.03
  7100. }
  7101. },
  7102. },
  7103. [
  7104. {
  7105. name: "Normal",
  7106. height: math.unit(14, "feet"),
  7107. default: true
  7108. },
  7109. ]
  7110. ))
  7111. characterMakers.push(() => makeCharacter(
  7112. { name: "Ine" },
  7113. {
  7114. front: {
  7115. height: math.unit(6, "feet"),
  7116. weight: math.unit(3, "kg"),
  7117. name: "Front",
  7118. image: {
  7119. source: "./media/characters/ine/front.svg",
  7120. extra: 678 / 539,
  7121. bottom: 0.023
  7122. }
  7123. },
  7124. },
  7125. [
  7126. {
  7127. name: "Normal",
  7128. height: math.unit(2.265, "feet"),
  7129. default: true
  7130. },
  7131. ]
  7132. ))
  7133. characterMakers.push(() => makeCharacter(
  7134. { name: "Vial" },
  7135. {
  7136. front: {
  7137. height: math.unit(5, "feet"),
  7138. weight: math.unit(30, "kg"),
  7139. name: "Front",
  7140. image: {
  7141. source: "./media/characters/vial/front.svg",
  7142. extra: 1365 / 1277,
  7143. bottom: 0.04
  7144. }
  7145. },
  7146. },
  7147. [
  7148. {
  7149. name: "Normal",
  7150. height: math.unit(5, "feet"),
  7151. default: true
  7152. },
  7153. ]
  7154. ))
  7155. characterMakers.push(() => makeCharacter(
  7156. { name: "Rovoska" },
  7157. {
  7158. side: {
  7159. height: math.unit(3.4, "meters"),
  7160. weight: math.unit(1000, "lb"),
  7161. name: "Side",
  7162. image: {
  7163. source: "./media/characters/rovoska/side.svg",
  7164. extra: 4403 / 1515
  7165. }
  7166. },
  7167. },
  7168. [
  7169. {
  7170. name: "Normal",
  7171. height: math.unit(3.4, "meters"),
  7172. default: true
  7173. },
  7174. ]
  7175. ))
  7176. characterMakers.push(() => makeCharacter(
  7177. { name: "Gunner Rotthbauer" },
  7178. {
  7179. front: {
  7180. height: math.unit(8, "feet"),
  7181. weight: math.unit(315, "lb"),
  7182. name: "Front",
  7183. image: {
  7184. source: "./media/characters/gunner-rotthbauer/front.svg"
  7185. }
  7186. },
  7187. back: {
  7188. height: math.unit(8, "feet"),
  7189. weight: math.unit(315, "lb"),
  7190. name: "Back",
  7191. image: {
  7192. source: "./media/characters/gunner-rotthbauer/back.svg"
  7193. }
  7194. },
  7195. },
  7196. [
  7197. {
  7198. name: "Micro",
  7199. height: math.unit(3.5, "inches")
  7200. },
  7201. {
  7202. name: "Normal",
  7203. height: math.unit(8, "feet"),
  7204. default: true
  7205. },
  7206. {
  7207. name: "Macro",
  7208. height: math.unit(250, "feet")
  7209. },
  7210. {
  7211. name: "Megamacro",
  7212. height: math.unit(1, "AU")
  7213. },
  7214. ]
  7215. ))
  7216. characterMakers.push(() => makeCharacter(
  7217. { name: "Allatia" },
  7218. {
  7219. front: {
  7220. height: math.unit(5 + 5 / 12, "feet"),
  7221. weight: math.unit(140, "lb"),
  7222. name: "Front",
  7223. image: {
  7224. source: "./media/characters/allatia/front.svg",
  7225. extra: 1227 / 1180,
  7226. bottom: 0.027
  7227. }
  7228. },
  7229. },
  7230. [
  7231. {
  7232. name: "Normal",
  7233. height: math.unit(5 + 5 / 12, "feet")
  7234. },
  7235. {
  7236. name: "Macro",
  7237. height: math.unit(250, "feet"),
  7238. default: true
  7239. },
  7240. {
  7241. name: "Megamacro",
  7242. height: math.unit(8, "miles")
  7243. }
  7244. ]
  7245. ))
  7246. characterMakers.push(() => makeCharacter(
  7247. { name: "Tene" },
  7248. {
  7249. front: {
  7250. height: math.unit(6, "feet"),
  7251. weight: math.unit(120, "lb"),
  7252. name: "Front",
  7253. image: {
  7254. source: "./media/characters/tene/front.svg",
  7255. extra: 1728 / 1578,
  7256. bottom: 0.022
  7257. }
  7258. },
  7259. stomping: {
  7260. height: math.unit(2.025, "meters"),
  7261. weight: math.unit(120, "lb"),
  7262. name: "Stomping",
  7263. image: {
  7264. source: "./media/characters/tene/stomping.svg",
  7265. extra: 938 / 873,
  7266. bottom: 0.01
  7267. }
  7268. },
  7269. sitting: {
  7270. height: math.unit(1, "meter"),
  7271. weight: math.unit(120, "lb"),
  7272. name: "Sitting",
  7273. image: {
  7274. source: "./media/characters/tene/sitting.svg",
  7275. extra: 437 / 415,
  7276. bottom: 0.1
  7277. }
  7278. },
  7279. feral: {
  7280. height: math.unit(3.9, "feet"),
  7281. weight: math.unit(250, "lb"),
  7282. name: "Feral",
  7283. image: {
  7284. source: "./media/characters/tene/feral.svg",
  7285. extra: 717 / 458,
  7286. bottom: 0.179
  7287. }
  7288. },
  7289. },
  7290. [
  7291. {
  7292. name: "Normal",
  7293. height: math.unit(6, "feet")
  7294. },
  7295. {
  7296. name: "Macro",
  7297. height: math.unit(300, "feet"),
  7298. default: true
  7299. },
  7300. {
  7301. name: "Megamacro",
  7302. height: math.unit(5, "miles")
  7303. },
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Evander" },
  7308. {
  7309. side: {
  7310. height: math.unit(6, "feet"),
  7311. name: "Side",
  7312. image: {
  7313. source: "./media/characters/evander/side.svg",
  7314. extra: 877 / 477
  7315. }
  7316. },
  7317. },
  7318. [
  7319. {
  7320. name: "Normal",
  7321. height: math.unit(0.83, "meters"),
  7322. default: true
  7323. },
  7324. ]
  7325. ))
  7326. characterMakers.push(() => makeCharacter(
  7327. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7328. {
  7329. front: {
  7330. height: math.unit(12, "feet"),
  7331. weight: math.unit(1000, "lb"),
  7332. name: "Front",
  7333. image: {
  7334. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7335. extra: 1762 / 1611
  7336. }
  7337. },
  7338. back: {
  7339. height: math.unit(12, "feet"),
  7340. weight: math.unit(1000, "lb"),
  7341. name: "Back",
  7342. image: {
  7343. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7344. extra: 1762 / 1611
  7345. }
  7346. },
  7347. },
  7348. [
  7349. {
  7350. name: "Normal",
  7351. height: math.unit(12, "feet"),
  7352. default: true
  7353. },
  7354. {
  7355. name: "Kaiju",
  7356. height: math.unit(150, "feet")
  7357. },
  7358. ]
  7359. ))
  7360. characterMakers.push(() => makeCharacter(
  7361. { name: "Zero Alurus" },
  7362. {
  7363. front: {
  7364. height: math.unit(6, "feet"),
  7365. weight: math.unit(150, "lb"),
  7366. name: "Front",
  7367. image: {
  7368. source: "./media/characters/zero-alurus/front.svg"
  7369. }
  7370. },
  7371. back: {
  7372. height: math.unit(6, "feet"),
  7373. weight: math.unit(150, "lb"),
  7374. name: "Back",
  7375. image: {
  7376. source: "./media/characters/zero-alurus/back.svg"
  7377. }
  7378. },
  7379. },
  7380. [
  7381. {
  7382. name: "Normal",
  7383. height: math.unit(5 + 10 / 12, "feet")
  7384. },
  7385. {
  7386. name: "Macro",
  7387. height: math.unit(60, "feet"),
  7388. default: true
  7389. },
  7390. {
  7391. name: "Macro+",
  7392. height: math.unit(450, "feet")
  7393. },
  7394. ]
  7395. ))
  7396. characterMakers.push(() => makeCharacter(
  7397. { name: "Mega Shi" },
  7398. {
  7399. front: {
  7400. height: math.unit(6, "feet"),
  7401. weight: math.unit(200, "lb"),
  7402. name: "Front",
  7403. image: {
  7404. source: "./media/characters/mega-shi/front.svg",
  7405. extra: 1279 / 1250,
  7406. bottom: 0.02
  7407. }
  7408. },
  7409. back: {
  7410. height: math.unit(6, "feet"),
  7411. weight: math.unit(200, "lb"),
  7412. name: "Back",
  7413. image: {
  7414. source: "./media/characters/mega-shi/back.svg",
  7415. extra: 1279 / 1250,
  7416. bottom: 0.02
  7417. }
  7418. },
  7419. },
  7420. [
  7421. {
  7422. name: "Micro",
  7423. height: math.unit(16 + 6 / 12, "feet")
  7424. },
  7425. {
  7426. name: "Normal",
  7427. height: math.unit(660, "feet"),
  7428. default: true
  7429. },
  7430. {
  7431. name: "Megamacro",
  7432. height: math.unit(10, "miles")
  7433. },
  7434. {
  7435. name: "Planetary Launch",
  7436. height: math.unit(500, "miles")
  7437. },
  7438. {
  7439. name: "Interstellar",
  7440. height: math.unit(1e9, "miles")
  7441. },
  7442. {
  7443. name: "Leaving the Universe",
  7444. height: math.unit(1, "gigaparsec")
  7445. },
  7446. {
  7447. name: "Travelling Universes",
  7448. height: math.unit(30e15, "parsecs")
  7449. },
  7450. ]
  7451. ))
  7452. characterMakers.push(() => makeCharacter(
  7453. { name: "Odyssey" },
  7454. {
  7455. front: {
  7456. height: math.unit(6, "feet"),
  7457. weight: math.unit(150, "lb"),
  7458. name: "Front",
  7459. image: {
  7460. source: "./media/characters/odyssey/front.svg",
  7461. extra: 1782 / 1582,
  7462. bottom: 0.01
  7463. }
  7464. },
  7465. side: {
  7466. height: math.unit(5.7, "feet"),
  7467. weight: math.unit(140, "lb"),
  7468. name: "Side",
  7469. image: {
  7470. source: "./media/characters/odyssey/side.svg",
  7471. extra: 6462 / 5700
  7472. }
  7473. },
  7474. },
  7475. [
  7476. {
  7477. name: "Normal",
  7478. height: math.unit(5 + 4 / 12, "feet")
  7479. },
  7480. {
  7481. name: "Macro",
  7482. height: math.unit(1, "km")
  7483. },
  7484. {
  7485. name: "Megamacro",
  7486. height: math.unit(3000, "km")
  7487. },
  7488. {
  7489. name: "Gigamacro",
  7490. height: math.unit(1, "AU"),
  7491. default: true
  7492. },
  7493. {
  7494. name: "Omniversal",
  7495. height: math.unit(100e14, "lightyears")
  7496. },
  7497. ]
  7498. ))
  7499. characterMakers.push(() => makeCharacter(
  7500. { name: "Mekuto" },
  7501. {
  7502. front: {
  7503. height: math.unit(6, "feet"),
  7504. weight: math.unit(300, "lb"),
  7505. name: "Front",
  7506. image: {
  7507. source: "./media/characters/mekuto/front.svg",
  7508. extra: 921 / 832,
  7509. bottom: 0.03
  7510. }
  7511. },
  7512. hand: {
  7513. height: math.unit(6 / 10.24, "feet"),
  7514. name: "Hand",
  7515. image: {
  7516. source: "./media/characters/mekuto/hand.svg"
  7517. }
  7518. },
  7519. foot: {
  7520. height: math.unit(6 / 5.05, "feet"),
  7521. name: "Foot",
  7522. image: {
  7523. source: "./media/characters/mekuto/foot.svg"
  7524. }
  7525. },
  7526. },
  7527. [
  7528. {
  7529. name: "Minimicro",
  7530. height: math.unit(0.2, "inches")
  7531. },
  7532. {
  7533. name: "Micro",
  7534. height: math.unit(1.5, "inches")
  7535. },
  7536. {
  7537. name: "Normal",
  7538. height: math.unit(5 + 11 / 12, "feet"),
  7539. default: true
  7540. },
  7541. {
  7542. name: "Minimacro",
  7543. height: math.unit(17 + 9 / 12, "feet")
  7544. },
  7545. {
  7546. name: "Macro",
  7547. height: math.unit(177.5, "feet")
  7548. },
  7549. {
  7550. name: "Megamacro",
  7551. height: math.unit(152, "miles")
  7552. },
  7553. ]
  7554. ))
  7555. characterMakers.push(() => makeCharacter(
  7556. { name: "Dafydd Tomos" },
  7557. {
  7558. front: {
  7559. height: math.unit(6.5, "inches"),
  7560. weight: math.unit(13, "oz"),
  7561. name: "Front",
  7562. image: {
  7563. source: "./media/characters/dafydd-tomos/front.svg",
  7564. extra: 2990 / 2603,
  7565. bottom: 0.03
  7566. }
  7567. },
  7568. },
  7569. [
  7570. {
  7571. name: "Micro",
  7572. height: math.unit(6.5, "inches"),
  7573. default: true
  7574. },
  7575. ]
  7576. ))
  7577. characterMakers.push(() => makeCharacter(
  7578. { name: "Splinter" },
  7579. {
  7580. front: {
  7581. height: math.unit(6, "feet"),
  7582. weight: math.unit(150, "lb"),
  7583. name: "Front",
  7584. image: {
  7585. source: "./media/characters/splinter/front.svg",
  7586. extra: 2990 / 2882,
  7587. bottom: 0.04
  7588. }
  7589. },
  7590. back: {
  7591. height: math.unit(6, "feet"),
  7592. weight: math.unit(150, "lb"),
  7593. name: "Back",
  7594. image: {
  7595. source: "./media/characters/splinter/back.svg",
  7596. extra: 2990 / 2882,
  7597. bottom: 0.04
  7598. }
  7599. },
  7600. },
  7601. [
  7602. {
  7603. name: "Normal",
  7604. height: math.unit(6, "feet")
  7605. },
  7606. {
  7607. name: "Macro",
  7608. height: math.unit(230, "meters"),
  7609. default: true
  7610. },
  7611. ]
  7612. ))
  7613. characterMakers.push(() => makeCharacter(
  7614. { name: "SnowGabumon" },
  7615. {
  7616. front: {
  7617. height: math.unit(4 + 10 / 12, "feet"),
  7618. weight: math.unit(480, "lb"),
  7619. name: "Front",
  7620. image: {
  7621. source: "./media/characters/snow-gabumon/front.svg",
  7622. extra: 1140 / 963,
  7623. bottom: 0.058
  7624. }
  7625. },
  7626. back: {
  7627. height: math.unit(4 + 10 / 12, "feet"),
  7628. weight: math.unit(480, "lb"),
  7629. name: "Back",
  7630. image: {
  7631. source: "./media/characters/snow-gabumon/back.svg",
  7632. extra: 1115 / 962,
  7633. bottom: 0.041
  7634. }
  7635. },
  7636. frontUndresed: {
  7637. height: math.unit(4 + 10 / 12, "feet"),
  7638. weight: math.unit(480, "lb"),
  7639. name: "Front (Undressed)",
  7640. image: {
  7641. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7642. extra: 1061 / 960,
  7643. bottom: 0.045
  7644. }
  7645. },
  7646. },
  7647. [
  7648. {
  7649. name: "Micro",
  7650. height: math.unit(1, "inch")
  7651. },
  7652. {
  7653. name: "Normal",
  7654. height: math.unit(4 + 10 / 12, "feet"),
  7655. default: true
  7656. },
  7657. {
  7658. name: "Macro",
  7659. height: math.unit(200, "feet")
  7660. },
  7661. {
  7662. name: "Megamacro",
  7663. height: math.unit(120, "miles")
  7664. },
  7665. {
  7666. name: "Gigamacro",
  7667. height: math.unit(9800, "miles")
  7668. },
  7669. ]
  7670. ))
  7671. characterMakers.push(() => makeCharacter(
  7672. { name: "Moody" },
  7673. {
  7674. front: {
  7675. height: math.unit(1.7, "meters"),
  7676. weight: math.unit(140, "lb"),
  7677. name: "Front",
  7678. image: {
  7679. source: "./media/characters/moody/front.svg",
  7680. extra: 3226 / 3007,
  7681. bottom: 0.087
  7682. }
  7683. },
  7684. },
  7685. [
  7686. {
  7687. name: "Micro",
  7688. height: math.unit(1, "mm")
  7689. },
  7690. {
  7691. name: "Normal",
  7692. height: math.unit(1.7, "meters"),
  7693. default: true
  7694. },
  7695. {
  7696. name: "Macro",
  7697. height: math.unit(80, "meters")
  7698. },
  7699. {
  7700. name: "Macro+",
  7701. height: math.unit(500, "meters")
  7702. },
  7703. ]
  7704. ))
  7705. characterMakers.push(() => makeCharacter(
  7706. { name: "Zyas" },
  7707. {
  7708. front: {
  7709. height: math.unit(6, "feet"),
  7710. weight: math.unit(150, "lb"),
  7711. name: "Front",
  7712. image: {
  7713. source: "./media/characters/zyas/front.svg",
  7714. extra: 1180 / 1120,
  7715. bottom: 0.045
  7716. }
  7717. },
  7718. },
  7719. [
  7720. {
  7721. name: "Normal",
  7722. height: math.unit(10, "feet"),
  7723. default: true
  7724. },
  7725. {
  7726. name: "Macro",
  7727. height: math.unit(500, "feet")
  7728. },
  7729. {
  7730. name: "Megamacro",
  7731. height: math.unit(5, "miles")
  7732. },
  7733. {
  7734. name: "Teramacro",
  7735. height: math.unit(150000, "miles")
  7736. },
  7737. ]
  7738. ))
  7739. characterMakers.push(() => makeCharacter(
  7740. { name: "Cuon" },
  7741. {
  7742. front: {
  7743. height: math.unit(6, "feet"),
  7744. weight: math.unit(150, "lb"),
  7745. name: "Front",
  7746. image: {
  7747. source: "./media/characters/cuon/front.svg",
  7748. extra: 1390 / 1320,
  7749. bottom: 0.008
  7750. }
  7751. },
  7752. },
  7753. [
  7754. {
  7755. name: "Micro",
  7756. height: math.unit(3, "inches")
  7757. },
  7758. {
  7759. name: "Normal",
  7760. height: math.unit(18 + 9 / 12, "feet"),
  7761. default: true
  7762. },
  7763. {
  7764. name: "Macro",
  7765. height: math.unit(360, "feet")
  7766. },
  7767. {
  7768. name: "Megamacro",
  7769. height: math.unit(360, "miles")
  7770. },
  7771. ]
  7772. ))
  7773. characterMakers.push(() => makeCharacter(
  7774. { name: "Nyanuxk" },
  7775. {
  7776. front: {
  7777. height: math.unit(2.4, "meters"),
  7778. weight: math.unit(70, "kg"),
  7779. name: "Front",
  7780. image: {
  7781. source: "./media/characters/nyanuxk/front.svg",
  7782. extra: 1172 / 1084,
  7783. bottom: 0.065
  7784. }
  7785. },
  7786. side: {
  7787. height: math.unit(2.4, "meters"),
  7788. weight: math.unit(70, "kg"),
  7789. name: "Side",
  7790. image: {
  7791. source: "./media/characters/nyanuxk/side.svg",
  7792. extra: 1190 / 1132,
  7793. bottom: 0.007
  7794. }
  7795. },
  7796. back: {
  7797. height: math.unit(2.4, "meters"),
  7798. weight: math.unit(70, "kg"),
  7799. name: "Back",
  7800. image: {
  7801. source: "./media/characters/nyanuxk/back.svg",
  7802. extra: 1200 / 1141,
  7803. bottom: 0.015
  7804. }
  7805. },
  7806. foot: {
  7807. height: math.unit(0.52, "meters"),
  7808. name: "Foot",
  7809. image: {
  7810. source: "./media/characters/nyanuxk/foot.svg"
  7811. }
  7812. },
  7813. },
  7814. [
  7815. {
  7816. name: "Micro",
  7817. height: math.unit(2, "cm")
  7818. },
  7819. {
  7820. name: "Normal",
  7821. height: math.unit(2.4, "meters"),
  7822. default: true
  7823. },
  7824. {
  7825. name: "Smaller Macro",
  7826. height: math.unit(120, "meters")
  7827. },
  7828. {
  7829. name: "Bigger Macro",
  7830. height: math.unit(1.2, "km")
  7831. },
  7832. {
  7833. name: "Megamacro",
  7834. height: math.unit(15, "kilometers")
  7835. },
  7836. {
  7837. name: "Gigamacro",
  7838. height: math.unit(2000, "km")
  7839. },
  7840. {
  7841. name: "Teramacro",
  7842. height: math.unit(500000, "km")
  7843. },
  7844. ]
  7845. ))
  7846. characterMakers.push(() => makeCharacter(
  7847. { name: "Ailbhe" },
  7848. {
  7849. side: {
  7850. height: math.unit(6, "feet"),
  7851. name: "Side",
  7852. image: {
  7853. source: "./media/characters/ailbhe/side.svg",
  7854. extra: 757 / 464,
  7855. bottom: 0.041
  7856. }
  7857. },
  7858. },
  7859. [
  7860. {
  7861. name: "Normal",
  7862. height: math.unit(1.07, "meters"),
  7863. default: true
  7864. },
  7865. ]
  7866. ))
  7867. characterMakers.push(() => makeCharacter(
  7868. { name: "Zevulfius" },
  7869. {
  7870. front: {
  7871. height: math.unit(6, "feet"),
  7872. weight: math.unit(120, "kg"),
  7873. name: "Front",
  7874. image: {
  7875. source: "./media/characters/zevulfius/front.svg",
  7876. extra: 965 / 903
  7877. }
  7878. },
  7879. side: {
  7880. height: math.unit(6, "feet"),
  7881. weight: math.unit(120, "kg"),
  7882. name: "Side",
  7883. image: {
  7884. source: "./media/characters/zevulfius/side.svg",
  7885. extra: 939 / 900
  7886. }
  7887. },
  7888. back: {
  7889. height: math.unit(6, "feet"),
  7890. weight: math.unit(120, "kg"),
  7891. name: "Back",
  7892. image: {
  7893. source: "./media/characters/zevulfius/back.svg",
  7894. extra: 918 / 854,
  7895. bottom: 0.005
  7896. }
  7897. },
  7898. foot: {
  7899. height: math.unit(6 / 3.72, "feet"),
  7900. name: "Foot",
  7901. image: {
  7902. source: "./media/characters/zevulfius/foot.svg"
  7903. }
  7904. },
  7905. },
  7906. [
  7907. {
  7908. name: "Macro",
  7909. height: math.unit(750, "meters")
  7910. },
  7911. {
  7912. name: "Megamacro",
  7913. height: math.unit(20, "km"),
  7914. default: true
  7915. },
  7916. {
  7917. name: "Gigamacro",
  7918. height: math.unit(2000, "km")
  7919. },
  7920. {
  7921. name: "Teramacro",
  7922. height: math.unit(250000, "km")
  7923. },
  7924. ]
  7925. ))
  7926. characterMakers.push(() => makeCharacter(
  7927. { name: "Rikes" },
  7928. {
  7929. front: {
  7930. height: math.unit(100, "feet"),
  7931. weight: math.unit(350, "kg"),
  7932. name: "Front",
  7933. image: {
  7934. source: "./media/characters/rikes/front.svg",
  7935. extra: 1565 / 1483,
  7936. bottom: 0.017
  7937. }
  7938. },
  7939. },
  7940. [
  7941. {
  7942. name: "Macro",
  7943. height: math.unit(100, "feet"),
  7944. default: true
  7945. },
  7946. ]
  7947. ))
  7948. characterMakers.push(() => makeCharacter(
  7949. { name: "Adam Silver-Mane" },
  7950. {
  7951. anthro: {
  7952. height: math.unit(8, "feet"),
  7953. weight: math.unit(120, "kg"),
  7954. name: "Anthro",
  7955. image: {
  7956. source: "./media/characters/adam-silver-mane/anthro.svg",
  7957. extra: 5743 / 5339,
  7958. bottom: 0.07
  7959. }
  7960. },
  7961. taur: {
  7962. height: math.unit(16, "feet"),
  7963. weight: math.unit(1500, "kg"),
  7964. name: "Taur",
  7965. image: {
  7966. source: "./media/characters/adam-silver-mane/taur.svg",
  7967. extra: 1713 / 1571,
  7968. bottom: 0.01
  7969. }
  7970. },
  7971. },
  7972. [
  7973. {
  7974. name: "Normal",
  7975. height: math.unit(8, "feet")
  7976. },
  7977. {
  7978. name: "Minimacro",
  7979. height: math.unit(80, "feet")
  7980. },
  7981. {
  7982. name: "Macro",
  7983. height: math.unit(800, "feet"),
  7984. default: true
  7985. },
  7986. {
  7987. name: "Megamacro",
  7988. height: math.unit(8000, "feet")
  7989. },
  7990. {
  7991. name: "Gigamacro",
  7992. height: math.unit(800, "miles")
  7993. },
  7994. {
  7995. name: "Teramacro",
  7996. height: math.unit(80000, "miles")
  7997. },
  7998. {
  7999. name: "Celestial",
  8000. height: math.unit(8e6, "miles")
  8001. },
  8002. {
  8003. name: "Star Dragon",
  8004. height: math.unit(800000, "parsecs")
  8005. },
  8006. {
  8007. name: "Godly",
  8008. height: math.unit(800, "teraparsecs")
  8009. },
  8010. ]
  8011. ))
  8012. characterMakers.push(() => makeCharacter(
  8013. { name: "Ky'owin" },
  8014. {
  8015. front: {
  8016. height: math.unit(6, "feet"),
  8017. weight: math.unit(150, "lb"),
  8018. name: "Front",
  8019. image: {
  8020. source: "./media/characters/ky'owin/front.svg",
  8021. extra: 3888 / 3068,
  8022. bottom: 0.015
  8023. }
  8024. },
  8025. },
  8026. [
  8027. {
  8028. name: "Normal",
  8029. height: math.unit(6 + 8 / 12, "feet")
  8030. },
  8031. {
  8032. name: "Large",
  8033. height: math.unit(68, "feet")
  8034. },
  8035. {
  8036. name: "Macro",
  8037. height: math.unit(132, "feet")
  8038. },
  8039. {
  8040. name: "Macro+",
  8041. height: math.unit(340, "feet")
  8042. },
  8043. {
  8044. name: "Macro++",
  8045. height: math.unit(680, "feet"),
  8046. default: true
  8047. },
  8048. {
  8049. name: "Megamacro",
  8050. height: math.unit(1, "mile")
  8051. },
  8052. {
  8053. name: "Megamacro+",
  8054. height: math.unit(10, "miles")
  8055. },
  8056. ]
  8057. ))
  8058. characterMakers.push(() => makeCharacter(
  8059. { name: "Mal" },
  8060. {
  8061. front: {
  8062. height: math.unit(4, "feet"),
  8063. weight: math.unit(50, "lb"),
  8064. name: "Front",
  8065. image: {
  8066. source: "./media/characters/mal/front.svg",
  8067. extra: 785 / 724,
  8068. bottom: 0.07
  8069. }
  8070. },
  8071. },
  8072. [
  8073. {
  8074. name: "Micro",
  8075. height: math.unit(4, "inches")
  8076. },
  8077. {
  8078. name: "Normal",
  8079. height: math.unit(4, "feet"),
  8080. default: true
  8081. },
  8082. {
  8083. name: "Macro",
  8084. height: math.unit(200, "feet")
  8085. },
  8086. ]
  8087. ))
  8088. characterMakers.push(() => makeCharacter(
  8089. { name: "Jordan Deware" },
  8090. {
  8091. front: {
  8092. height: math.unit(6, "feet"),
  8093. weight: math.unit(150, "lb"),
  8094. name: "Front",
  8095. image: {
  8096. source: "./media/characters/jordan-deware/front.svg",
  8097. extra: 1191 / 1012
  8098. }
  8099. },
  8100. },
  8101. [
  8102. {
  8103. name: "Nano",
  8104. height: math.unit(0.01, "mm")
  8105. },
  8106. {
  8107. name: "Minimicro",
  8108. height: math.unit(1, "mm")
  8109. },
  8110. {
  8111. name: "Micro",
  8112. height: math.unit(0.5, "inches")
  8113. },
  8114. {
  8115. name: "Normal",
  8116. height: math.unit(4, "feet"),
  8117. default: true
  8118. },
  8119. {
  8120. name: "Minimacro",
  8121. height: math.unit(40, "meters")
  8122. },
  8123. {
  8124. name: "Small Macro",
  8125. height: math.unit(400, "meters")
  8126. },
  8127. {
  8128. name: "Macro",
  8129. height: math.unit(4, "miles")
  8130. },
  8131. {
  8132. name: "Megamacro",
  8133. height: math.unit(40, "miles")
  8134. },
  8135. {
  8136. name: "Megamacro+",
  8137. height: math.unit(400, "miles")
  8138. },
  8139. {
  8140. name: "Gigamacro",
  8141. height: math.unit(400000, "miles")
  8142. },
  8143. ]
  8144. ))
  8145. characterMakers.push(() => makeCharacter(
  8146. { name: "Kimiko" },
  8147. {
  8148. side: {
  8149. height: math.unit(6, "feet"),
  8150. weight: math.unit(150, "lb"),
  8151. name: "Side",
  8152. image: {
  8153. source: "./media/characters/kimiko/side.svg",
  8154. extra: 600 / 358
  8155. }
  8156. },
  8157. },
  8158. [
  8159. {
  8160. name: "Normal",
  8161. height: math.unit(15, "feet"),
  8162. default: true
  8163. },
  8164. {
  8165. name: "Macro",
  8166. height: math.unit(220, "feet")
  8167. },
  8168. {
  8169. name: "Macro+",
  8170. height: math.unit(1450, "feet")
  8171. },
  8172. {
  8173. name: "Megamacro",
  8174. height: math.unit(11500, "feet")
  8175. },
  8176. {
  8177. name: "Gigamacro",
  8178. height: math.unit(9500, "miles")
  8179. },
  8180. {
  8181. name: "Teramacro",
  8182. height: math.unit(2208005005, "miles")
  8183. },
  8184. {
  8185. name: "Examacro",
  8186. height: math.unit(2750, "parsecs")
  8187. },
  8188. {
  8189. name: "Zettamacro",
  8190. height: math.unit(101500, "parsecs")
  8191. },
  8192. ]
  8193. ))
  8194. characterMakers.push(() => makeCharacter(
  8195. { name: "Andrew Sleepy" },
  8196. {
  8197. front: {
  8198. height: math.unit(6, "feet"),
  8199. weight: math.unit(70, "kg"),
  8200. name: "Front",
  8201. image: {
  8202. source: "./media/characters/andrew-sleepy/front.svg"
  8203. }
  8204. },
  8205. side: {
  8206. height: math.unit(6, "feet"),
  8207. weight: math.unit(70, "kg"),
  8208. name: "Side",
  8209. image: {
  8210. source: "./media/characters/andrew-sleepy/side.svg"
  8211. }
  8212. },
  8213. },
  8214. [
  8215. {
  8216. name: "Micro",
  8217. height: math.unit(1, "mm"),
  8218. default: true
  8219. },
  8220. ]
  8221. ))
  8222. characterMakers.push(() => makeCharacter(
  8223. { name: "Judio" },
  8224. {
  8225. front: {
  8226. height: math.unit(6, "feet"),
  8227. weight: math.unit(150, "lb"),
  8228. name: "Front",
  8229. image: {
  8230. source: "./media/characters/judio/front.svg",
  8231. extra: 1258 / 1110
  8232. }
  8233. },
  8234. },
  8235. [
  8236. {
  8237. name: "Normal",
  8238. height: math.unit(5 + 6 / 12, "feet")
  8239. },
  8240. {
  8241. name: "Macro",
  8242. height: math.unit(1000, "feet"),
  8243. default: true
  8244. },
  8245. {
  8246. name: "Megamacro",
  8247. height: math.unit(10, "miles")
  8248. },
  8249. ]
  8250. ))
  8251. characterMakers.push(() => makeCharacter(
  8252. { name: "Nomaxice" },
  8253. {
  8254. front: {
  8255. height: math.unit(6, "feet"),
  8256. weight: math.unit(68, "kg"),
  8257. name: "Front",
  8258. image: {
  8259. source: "./media/characters/nomaxice/front.svg",
  8260. extra: 1498 / 1073,
  8261. bottom: 0.075
  8262. }
  8263. },
  8264. foot: {
  8265. height: math.unit(1.1, "feet"),
  8266. name: "Foot",
  8267. image: {
  8268. source: "./media/characters/nomaxice/foot.svg"
  8269. }
  8270. },
  8271. },
  8272. [
  8273. {
  8274. name: "Micro",
  8275. height: math.unit(8, "cm")
  8276. },
  8277. {
  8278. name: "Norm",
  8279. height: math.unit(1.82, "m")
  8280. },
  8281. {
  8282. name: "Norm+",
  8283. height: math.unit(8.8, "feet")
  8284. },
  8285. {
  8286. name: "Big",
  8287. height: math.unit(8, "meters"),
  8288. default: true
  8289. },
  8290. {
  8291. name: "Macro",
  8292. height: math.unit(18, "meters")
  8293. },
  8294. {
  8295. name: "Macro+",
  8296. height: math.unit(88, "meters")
  8297. },
  8298. ]
  8299. ))
  8300. characterMakers.push(() => makeCharacter(
  8301. { name: "Dydros" },
  8302. {
  8303. front: {
  8304. height: math.unit(12, "feet"),
  8305. weight: math.unit(1.5, "tons"),
  8306. name: "Front",
  8307. image: {
  8308. source: "./media/characters/dydros/front.svg",
  8309. extra: 863 / 800,
  8310. bottom: 0.015
  8311. }
  8312. },
  8313. back: {
  8314. height: math.unit(12, "feet"),
  8315. weight: math.unit(1.5, "tons"),
  8316. name: "Back",
  8317. image: {
  8318. source: "./media/characters/dydros/back.svg",
  8319. extra: 900 / 843,
  8320. bottom: 0.005
  8321. }
  8322. },
  8323. },
  8324. [
  8325. {
  8326. name: "Normal",
  8327. height: math.unit(12, "feet"),
  8328. default: true
  8329. },
  8330. ]
  8331. ))
  8332. characterMakers.push(() => makeCharacter(
  8333. { name: "Riggi" },
  8334. {
  8335. front: {
  8336. height: math.unit(6, "feet"),
  8337. weight: math.unit(100, "kg"),
  8338. name: "Front",
  8339. image: {
  8340. source: "./media/characters/riggi/front.svg",
  8341. extra: 5787 / 5303
  8342. }
  8343. },
  8344. hyper: {
  8345. height: math.unit(6 * 5 / 3, "feet"),
  8346. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8347. name: "Hyper",
  8348. image: {
  8349. source: "./media/characters/riggi/hyper.svg",
  8350. extra: 3595 / 3485
  8351. }
  8352. },
  8353. },
  8354. [
  8355. {
  8356. name: "Small Macro",
  8357. height: math.unit(50, "feet")
  8358. },
  8359. {
  8360. name: "Default",
  8361. height: math.unit(200, "feet"),
  8362. default: true
  8363. },
  8364. {
  8365. name: "Loom",
  8366. height: math.unit(10000, "feet")
  8367. },
  8368. {
  8369. name: "Cruising Altitude",
  8370. height: math.unit(30000, "feet")
  8371. },
  8372. {
  8373. name: "Megamacro",
  8374. height: math.unit(100, "miles")
  8375. },
  8376. {
  8377. name: "Continent Sized",
  8378. height: math.unit(2800, "miles")
  8379. },
  8380. {
  8381. name: "Earth Sized",
  8382. height: math.unit(8000, "miles")
  8383. },
  8384. ]
  8385. ))
  8386. characterMakers.push(() => makeCharacter(
  8387. { name: "Alexi" },
  8388. {
  8389. front: {
  8390. height: math.unit(6, "feet"),
  8391. weight: math.unit(250, "lb"),
  8392. name: "Front",
  8393. image: {
  8394. source: "./media/characters/alexi/front.svg",
  8395. extra: 3483 / 3291,
  8396. bottom: 0.04
  8397. }
  8398. },
  8399. back: {
  8400. height: math.unit(6, "feet"),
  8401. weight: math.unit(250, "lb"),
  8402. name: "Back",
  8403. image: {
  8404. source: "./media/characters/alexi/back.svg",
  8405. extra: 3533 / 3356,
  8406. bottom: 0.021
  8407. }
  8408. },
  8409. frontTransformed: {
  8410. height: math.unit(12.5, "feet"),
  8411. weight: math.unit(4000, "lb"),
  8412. name: "Front (Transformed)",
  8413. image: {
  8414. source: "./media/characters/alexi/front-transformed.svg",
  8415. extra: 5345 / 5100,
  8416. bottom: 0.03
  8417. }
  8418. },
  8419. },
  8420. [
  8421. {
  8422. name: "Normal",
  8423. height: math.unit(3, "meters"),
  8424. default: true
  8425. },
  8426. {
  8427. name: "Minimacro",
  8428. height: math.unit(30, "meters")
  8429. },
  8430. {
  8431. name: "Macro",
  8432. height: math.unit(500, "meters")
  8433. },
  8434. {
  8435. name: "Megamacro",
  8436. height: math.unit(9000, "km")
  8437. },
  8438. {
  8439. name: "Teramacro",
  8440. height: math.unit(384000, "km")
  8441. },
  8442. ]
  8443. ))
  8444. characterMakers.push(() => makeCharacter(
  8445. { name: "Kayroo" },
  8446. {
  8447. front: {
  8448. height: math.unit(6, "feet"),
  8449. weight: math.unit(150, "lb"),
  8450. name: "Front",
  8451. image: {
  8452. source: "./media/characters/kayroo/front.svg",
  8453. extra: 1153 / 1038,
  8454. bottom: 0.06
  8455. }
  8456. },
  8457. foot: {
  8458. height: math.unit(6, "feet"),
  8459. weight: math.unit(150, "lb"),
  8460. name: "Foot",
  8461. image: {
  8462. source: "./media/characters/kayroo/foot.svg"
  8463. }
  8464. },
  8465. },
  8466. [
  8467. {
  8468. name: "Normal",
  8469. height: math.unit(8, "feet"),
  8470. default: true
  8471. },
  8472. {
  8473. name: "Minimacro",
  8474. height: math.unit(250, "feet")
  8475. },
  8476. {
  8477. name: "Macro",
  8478. height: math.unit(2800, "feet")
  8479. },
  8480. {
  8481. name: "Megamacro",
  8482. height: math.unit(5200, "feet")
  8483. },
  8484. {
  8485. name: "Gigamacro",
  8486. height: math.unit(27000, "feet")
  8487. },
  8488. {
  8489. name: "Omega",
  8490. height: math.unit(45000, "feet")
  8491. },
  8492. ]
  8493. ))
  8494. characterMakers.push(() => makeCharacter(
  8495. { name: "Rhys" },
  8496. {
  8497. front: {
  8498. height: math.unit(18, "feet"),
  8499. weight: math.unit(5800, "lb"),
  8500. name: "Front",
  8501. image: {
  8502. source: "./media/characters/rhys/front.svg",
  8503. extra: 3386 / 3090,
  8504. bottom: 0.07
  8505. }
  8506. },
  8507. },
  8508. [
  8509. {
  8510. name: "Normal",
  8511. height: math.unit(18, "feet"),
  8512. default: true
  8513. },
  8514. {
  8515. name: "Working Size",
  8516. height: math.unit(200, "feet")
  8517. },
  8518. {
  8519. name: "Demolition Size",
  8520. height: math.unit(2000, "feet")
  8521. },
  8522. {
  8523. name: "Maximum Licensed Size",
  8524. height: math.unit(5, "miles")
  8525. },
  8526. {
  8527. name: "Maximum Observed Size",
  8528. height: math.unit(10, "yottameters")
  8529. },
  8530. ]
  8531. ))
  8532. characterMakers.push(() => makeCharacter(
  8533. { name: "Toto" },
  8534. {
  8535. front: {
  8536. height: math.unit(6, "feet"),
  8537. weight: math.unit(250, "lb"),
  8538. name: "Front",
  8539. image: {
  8540. source: "./media/characters/toto/front.svg",
  8541. extra: 527 / 479,
  8542. bottom: 0.05
  8543. }
  8544. },
  8545. },
  8546. [
  8547. {
  8548. name: "Micro",
  8549. height: math.unit(3, "feet")
  8550. },
  8551. {
  8552. name: "Normal",
  8553. height: math.unit(10, "feet")
  8554. },
  8555. {
  8556. name: "Macro",
  8557. height: math.unit(150, "feet"),
  8558. default: true
  8559. },
  8560. {
  8561. name: "Megamacro",
  8562. height: math.unit(1200, "feet")
  8563. },
  8564. ]
  8565. ))
  8566. characterMakers.push(() => makeCharacter(
  8567. { name: "King" },
  8568. {
  8569. back: {
  8570. height: math.unit(6, "feet"),
  8571. weight: math.unit(150, "lb"),
  8572. name: "Back",
  8573. image: {
  8574. source: "./media/characters/king/back.svg"
  8575. }
  8576. },
  8577. },
  8578. [
  8579. {
  8580. name: "Micro",
  8581. height: math.unit(2, "inches")
  8582. },
  8583. {
  8584. name: "Normal",
  8585. height: math.unit(8, "feet")
  8586. },
  8587. {
  8588. name: "Macro",
  8589. height: math.unit(200, "feet"),
  8590. default: true
  8591. },
  8592. {
  8593. name: "Megamacro",
  8594. height: math.unit(50, "miles")
  8595. },
  8596. ]
  8597. ))
  8598. characterMakers.push(() => makeCharacter(
  8599. { name: "Cordite" },
  8600. {
  8601. anthro: {
  8602. height: math.unit(6 + 5 / 12, "feet"),
  8603. weight: math.unit(280, "lb"),
  8604. name: "Anthro",
  8605. image: {
  8606. source: "./media/characters/cordite/anthro.svg",
  8607. extra: 1986 / 1905,
  8608. bottom: 0.025
  8609. }
  8610. },
  8611. feral: {
  8612. height: math.unit(2, "feet"),
  8613. weight: math.unit(90, "lb"),
  8614. name: "Feral",
  8615. image: {
  8616. source: "./media/characters/cordite/feral.svg",
  8617. extra: 1260 / 755,
  8618. bottom: 0.05
  8619. }
  8620. },
  8621. },
  8622. [
  8623. {
  8624. name: "Normal",
  8625. height: math.unit(6 + 5 / 12, "feet"),
  8626. default: true
  8627. },
  8628. ]
  8629. ))
  8630. characterMakers.push(() => makeCharacter(
  8631. { name: "Pianostrong" },
  8632. {
  8633. front: {
  8634. height: math.unit(6, "feet"),
  8635. weight: math.unit(150, "lb"),
  8636. name: "Front",
  8637. image: {
  8638. source: "./media/characters/pianostrong/front.svg",
  8639. extra: 6577 / 6254,
  8640. bottom: 0.02
  8641. }
  8642. },
  8643. side: {
  8644. height: math.unit(6, "feet"),
  8645. weight: math.unit(150, "lb"),
  8646. name: "Side",
  8647. image: {
  8648. source: "./media/characters/pianostrong/side.svg",
  8649. extra: 6106 / 5730
  8650. }
  8651. },
  8652. back: {
  8653. height: math.unit(6, "feet"),
  8654. weight: math.unit(150, "lb"),
  8655. name: "Back",
  8656. image: {
  8657. source: "./media/characters/pianostrong/back.svg",
  8658. extra: 6085 / 5733,
  8659. bottom: 0.01
  8660. }
  8661. },
  8662. },
  8663. [
  8664. {
  8665. name: "Macro",
  8666. height: math.unit(100, "feet")
  8667. },
  8668. {
  8669. name: "Macro+",
  8670. height: math.unit(300, "feet"),
  8671. default: true
  8672. },
  8673. {
  8674. name: "Macro++",
  8675. height: math.unit(1000, "feet")
  8676. },
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "Kona" },
  8681. {
  8682. front: {
  8683. height: math.unit(6, "feet"),
  8684. weight: math.unit(150, "lb"),
  8685. name: "Front",
  8686. image: {
  8687. source: "./media/characters/kona/front.svg",
  8688. extra: 2960 / 2629,
  8689. bottom: 0.005
  8690. }
  8691. },
  8692. },
  8693. [
  8694. {
  8695. name: "Normal",
  8696. height: math.unit(11 + 8 / 12, "feet")
  8697. },
  8698. {
  8699. name: "Macro",
  8700. height: math.unit(850, "feet"),
  8701. default: true
  8702. },
  8703. {
  8704. name: "Macro+",
  8705. height: math.unit(1.5, "km"),
  8706. default: true
  8707. },
  8708. {
  8709. name: "Megamacro",
  8710. height: math.unit(80, "miles")
  8711. },
  8712. {
  8713. name: "Gigamacro",
  8714. height: math.unit(3500, "miles")
  8715. },
  8716. ]
  8717. ))
  8718. characterMakers.push(() => makeCharacter(
  8719. { name: "Levi" },
  8720. {
  8721. side: {
  8722. height: math.unit(1.9, "meters"),
  8723. weight: math.unit(326, "kg"),
  8724. name: "Side",
  8725. image: {
  8726. source: "./media/characters/levi/side.svg",
  8727. extra: 1704 / 1334,
  8728. bottom: 0.02
  8729. }
  8730. },
  8731. },
  8732. [
  8733. {
  8734. name: "Normal",
  8735. height: math.unit(1.9, "meters"),
  8736. default: true
  8737. },
  8738. {
  8739. name: "Macro",
  8740. height: math.unit(20, "meters")
  8741. },
  8742. {
  8743. name: "Macro+",
  8744. height: math.unit(200, "meters")
  8745. },
  8746. {
  8747. name: "Megamacro",
  8748. height: math.unit(2, "km")
  8749. },
  8750. {
  8751. name: "Megamacro+",
  8752. height: math.unit(20, "km")
  8753. },
  8754. {
  8755. name: "Gigamacro",
  8756. height: math.unit(2500, "km")
  8757. },
  8758. {
  8759. name: "Gigamacro+",
  8760. height: math.unit(120000, "km")
  8761. },
  8762. {
  8763. name: "Teramacro",
  8764. height: math.unit(7.77e6, "km")
  8765. },
  8766. ]
  8767. ))
  8768. characterMakers.push(() => makeCharacter(
  8769. { name: "BMC" },
  8770. {
  8771. front: {
  8772. height: math.unit(6 + 4 / 12, "feet"),
  8773. weight: math.unit(188, "lb"),
  8774. name: "Front",
  8775. image: {
  8776. source: "./media/characters/bmc/front.svg",
  8777. extra: 1067 / 1022,
  8778. bottom: 0.047
  8779. }
  8780. },
  8781. },
  8782. [
  8783. {
  8784. name: "Human-sized",
  8785. height: math.unit(6 + 4 / 12, "feet")
  8786. },
  8787. {
  8788. name: "Small",
  8789. height: math.unit(250, "feet")
  8790. },
  8791. {
  8792. name: "Normal",
  8793. height: math.unit(1250, "feet"),
  8794. default: true
  8795. },
  8796. {
  8797. name: "Good Day",
  8798. height: math.unit(88, "miles")
  8799. },
  8800. {
  8801. name: "Largest Measured Size",
  8802. height: math.unit(11.2e6, "lightyears")
  8803. },
  8804. ]
  8805. ))
  8806. characterMakers.push(() => makeCharacter(
  8807. { name: "Sven the Kaiju" },
  8808. {
  8809. front: {
  8810. height: math.unit(20, "feet"),
  8811. weight: math.unit(2016, "kg"),
  8812. name: "Front",
  8813. image: {
  8814. source: "./media/characters/sven-the-kaiju/front.svg",
  8815. extra: 1479 / 1449,
  8816. bottom: 0.05
  8817. }
  8818. },
  8819. },
  8820. [
  8821. {
  8822. name: "Fairy",
  8823. height: math.unit(6, "inches")
  8824. },
  8825. {
  8826. name: "Normal",
  8827. height: math.unit(20, "feet"),
  8828. default: true
  8829. },
  8830. {
  8831. name: "Rampage",
  8832. height: math.unit(200, "feet")
  8833. },
  8834. {
  8835. name: "Archfey Forest Guardian",
  8836. height: math.unit(1, "mile")
  8837. },
  8838. ]
  8839. ))
  8840. characterMakers.push(() => makeCharacter(
  8841. { name: "Marik" },
  8842. {
  8843. front: {
  8844. height: math.unit(4, "meters"),
  8845. weight: math.unit(2, "tons"),
  8846. name: "Front",
  8847. image: {
  8848. source: "./media/characters/marik/front.svg",
  8849. extra: 1057 / 1003,
  8850. bottom: 0.08
  8851. }
  8852. },
  8853. },
  8854. [
  8855. {
  8856. name: "Normal",
  8857. height: math.unit(4, "meters"),
  8858. default: true
  8859. },
  8860. {
  8861. name: "Macro",
  8862. height: math.unit(20, "meters")
  8863. },
  8864. {
  8865. name: "Megamacro",
  8866. height: math.unit(50, "km")
  8867. },
  8868. {
  8869. name: "Gigamacro",
  8870. height: math.unit(100, "km")
  8871. },
  8872. {
  8873. name: "Alpha Macro",
  8874. height: math.unit(7.88e7, "yottameters")
  8875. },
  8876. ]
  8877. ))
  8878. characterMakers.push(() => makeCharacter(
  8879. { name: "Mel" },
  8880. {
  8881. front: {
  8882. height: math.unit(6, "feet"),
  8883. weight: math.unit(110, "lb"),
  8884. name: "Front",
  8885. image: {
  8886. source: "./media/characters/mel/front.svg",
  8887. extra: 736 / 617,
  8888. bottom: 0.017
  8889. }
  8890. },
  8891. },
  8892. [
  8893. {
  8894. name: "Pico",
  8895. height: math.unit(3, "pm")
  8896. },
  8897. {
  8898. name: "Nano",
  8899. height: math.unit(3, "nm")
  8900. },
  8901. {
  8902. name: "Micro",
  8903. height: math.unit(0.3, "mm"),
  8904. default: true
  8905. },
  8906. {
  8907. name: "Micro+",
  8908. height: math.unit(3, "mm")
  8909. },
  8910. {
  8911. name: "Normal",
  8912. height: math.unit(5 + 10.5 / 12, "feet")
  8913. },
  8914. ]
  8915. ))
  8916. characterMakers.push(() => makeCharacter(
  8917. { name: "Lykonous" },
  8918. {
  8919. kaiju: {
  8920. height: math.unit(1.75, "meters"),
  8921. weight: math.unit(55, "kg"),
  8922. name: "Kaiju",
  8923. image: {
  8924. source: "./media/characters/lykonous/kaiju.svg",
  8925. extra: 1055 / 946,
  8926. bottom: 0.135
  8927. }
  8928. },
  8929. },
  8930. [
  8931. {
  8932. name: "Normal",
  8933. height: math.unit(2.5, "meters"),
  8934. default: true
  8935. },
  8936. {
  8937. name: "Kaiju Dragon",
  8938. height: math.unit(60, "meters")
  8939. },
  8940. {
  8941. name: "Mega Kaiju",
  8942. height: math.unit(120, "km")
  8943. },
  8944. {
  8945. name: "Giga Kaiju",
  8946. height: math.unit(200, "megameters")
  8947. },
  8948. {
  8949. name: "Terra Kaiju",
  8950. height: math.unit(400, "gigameters")
  8951. },
  8952. {
  8953. name: "Kaiju Dragon God",
  8954. height: math.unit(13000, "exaparsecs")
  8955. },
  8956. ]
  8957. ))
  8958. characterMakers.push(() => makeCharacter(
  8959. { name: "Blü" },
  8960. {
  8961. front: {
  8962. height: math.unit(6, "feet"),
  8963. weight: math.unit(150, "lb"),
  8964. name: "Front",
  8965. image: {
  8966. source: "./media/characters/blü/front.svg",
  8967. extra: 1883 / 1564,
  8968. bottom: 0.031
  8969. }
  8970. },
  8971. },
  8972. [
  8973. {
  8974. name: "Normal",
  8975. height: math.unit(13, "feet"),
  8976. default: true
  8977. },
  8978. {
  8979. name: "Big Boi",
  8980. height: math.unit(150, "meters")
  8981. },
  8982. {
  8983. name: "Mini Stomper",
  8984. height: math.unit(300, "meters")
  8985. },
  8986. {
  8987. name: "Macro",
  8988. height: math.unit(1000, "meters")
  8989. },
  8990. {
  8991. name: "Megamacro",
  8992. height: math.unit(11000, "meters")
  8993. },
  8994. {
  8995. name: "Gigamacro",
  8996. height: math.unit(11000, "km")
  8997. },
  8998. {
  8999. name: "Teramacro",
  9000. height: math.unit(420000, "km")
  9001. },
  9002. {
  9003. name: "Examacro",
  9004. height: math.unit(120, "parsecs")
  9005. },
  9006. {
  9007. name: "God Tho",
  9008. height: math.unit(98000000000, "parsecs")
  9009. },
  9010. ]
  9011. ))
  9012. characterMakers.push(() => makeCharacter(
  9013. { name: "Scales" },
  9014. {
  9015. taurFront: {
  9016. height: math.unit(6, "feet"),
  9017. weight: math.unit(200, "lb"),
  9018. name: "Taur (Front)",
  9019. image: {
  9020. source: "./media/characters/scales/taur-front.svg",
  9021. extra: 1,
  9022. bottom: 0.05
  9023. }
  9024. },
  9025. taurBack: {
  9026. height: math.unit(6, "feet"),
  9027. weight: math.unit(200, "lb"),
  9028. name: "Taur (Back)",
  9029. image: {
  9030. source: "./media/characters/scales/taur-back.svg",
  9031. extra: 1,
  9032. bottom: 0.08
  9033. }
  9034. },
  9035. anthro: {
  9036. height: math.unit(6 * 7 / 12, "feet"),
  9037. weight: math.unit(100, "lb"),
  9038. name: "Anthro",
  9039. image: {
  9040. source: "./media/characters/scales/anthro.svg",
  9041. extra: 1,
  9042. bottom: 0.06
  9043. }
  9044. },
  9045. },
  9046. [
  9047. {
  9048. name: "Normal",
  9049. height: math.unit(12, "feet"),
  9050. default: true
  9051. },
  9052. ]
  9053. ))
  9054. characterMakers.push(() => makeCharacter(
  9055. { name: "Koragos" },
  9056. {
  9057. front: {
  9058. height: math.unit(6, "feet"),
  9059. weight: math.unit(150, "lb"),
  9060. name: "Front",
  9061. image: {
  9062. source: "./media/characters/koragos/front.svg",
  9063. extra: 841 / 794,
  9064. bottom: 0.035
  9065. }
  9066. },
  9067. back: {
  9068. height: math.unit(6, "feet"),
  9069. weight: math.unit(150, "lb"),
  9070. name: "Back",
  9071. image: {
  9072. source: "./media/characters/koragos/back.svg",
  9073. extra: 841 / 810,
  9074. bottom: 0.022
  9075. }
  9076. },
  9077. },
  9078. [
  9079. {
  9080. name: "Normal",
  9081. height: math.unit(6 + 11 / 12, "feet"),
  9082. default: true
  9083. },
  9084. {
  9085. name: "Macro",
  9086. height: math.unit(490, "feet")
  9087. },
  9088. {
  9089. name: "Megamacro",
  9090. height: math.unit(10, "miles")
  9091. },
  9092. {
  9093. name: "Gigamacro",
  9094. height: math.unit(50, "miles")
  9095. },
  9096. ]
  9097. ))
  9098. characterMakers.push(() => makeCharacter(
  9099. { name: "Xylrem" },
  9100. {
  9101. front: {
  9102. height: math.unit(6, "feet"),
  9103. weight: math.unit(250, "lb"),
  9104. name: "Front",
  9105. image: {
  9106. source: "./media/characters/xylrem/front.svg",
  9107. extra: 3323 / 3050,
  9108. bottom: 0.065
  9109. }
  9110. },
  9111. },
  9112. [
  9113. {
  9114. name: "Micro",
  9115. height: math.unit(4, "feet")
  9116. },
  9117. {
  9118. name: "Normal",
  9119. height: math.unit(16, "feet"),
  9120. default: true
  9121. },
  9122. {
  9123. name: "Macro",
  9124. height: math.unit(2720, "feet")
  9125. },
  9126. {
  9127. name: "Megamacro",
  9128. height: math.unit(25000, "miles")
  9129. },
  9130. ]
  9131. ))
  9132. characterMakers.push(() => makeCharacter(
  9133. { name: "Ikideru" },
  9134. {
  9135. front: {
  9136. height: math.unit(8, "feet"),
  9137. weight: math.unit(250, "kg"),
  9138. name: "Front",
  9139. image: {
  9140. source: "./media/characters/ikideru/front.svg",
  9141. extra: 930 / 870,
  9142. bottom: 0.087
  9143. }
  9144. },
  9145. back: {
  9146. height: math.unit(8, "feet"),
  9147. weight: math.unit(250, "kg"),
  9148. name: "Back",
  9149. image: {
  9150. source: "./media/characters/ikideru/back.svg",
  9151. extra: 919 / 852,
  9152. bottom: 0.055
  9153. }
  9154. },
  9155. },
  9156. [
  9157. {
  9158. name: "Rare",
  9159. height: math.unit(8, "feet"),
  9160. default: true
  9161. },
  9162. {
  9163. name: "Playful Loom",
  9164. height: math.unit(80, "feet")
  9165. },
  9166. {
  9167. name: "City Leaner",
  9168. height: math.unit(230, "feet")
  9169. },
  9170. {
  9171. name: "Megamacro",
  9172. height: math.unit(2500, "feet")
  9173. },
  9174. {
  9175. name: "Gigamacro",
  9176. height: math.unit(26400, "feet")
  9177. },
  9178. {
  9179. name: "Tectonic Shifter",
  9180. height: math.unit(1.7, "megameters")
  9181. },
  9182. {
  9183. name: "Planet Carer",
  9184. height: math.unit(21, "megameters")
  9185. },
  9186. {
  9187. name: "God",
  9188. height: math.unit(11157.22, "parsecs")
  9189. },
  9190. ]
  9191. ))
  9192. characterMakers.push(() => makeCharacter(
  9193. { name: "Neo" },
  9194. {
  9195. front: {
  9196. height: math.unit(6, "feet"),
  9197. weight: math.unit(120, "lb"),
  9198. name: "Front",
  9199. image: {
  9200. source: "./media/characters/neo/front.svg"
  9201. }
  9202. },
  9203. },
  9204. [
  9205. {
  9206. name: "Micro",
  9207. height: math.unit(2, "inches"),
  9208. default: true
  9209. },
  9210. {
  9211. name: "Human Size",
  9212. height: math.unit(5 + 8 / 12, "feet")
  9213. },
  9214. ]
  9215. ))
  9216. characterMakers.push(() => makeCharacter(
  9217. { name: "Chauncey (Chantz)" },
  9218. {
  9219. front: {
  9220. height: math.unit(13 + 10 / 12, "feet"),
  9221. weight: math.unit(5320, "lb"),
  9222. name: "Front",
  9223. image: {
  9224. source: "./media/characters/chauncey-chantz/front.svg",
  9225. extra: 1587 / 1435,
  9226. bottom: 0.02
  9227. }
  9228. },
  9229. },
  9230. [
  9231. {
  9232. name: "Normal",
  9233. height: math.unit(13 + 10 / 12, "feet"),
  9234. default: true
  9235. },
  9236. {
  9237. name: "Macro",
  9238. height: math.unit(45, "feet")
  9239. },
  9240. {
  9241. name: "Megamacro",
  9242. height: math.unit(250, "miles")
  9243. },
  9244. {
  9245. name: "Planetary",
  9246. height: math.unit(10000, "miles")
  9247. },
  9248. {
  9249. name: "Galactic",
  9250. height: math.unit(40000, "parsecs")
  9251. },
  9252. {
  9253. name: "Universal",
  9254. height: math.unit(1, "yottameter")
  9255. },
  9256. ]
  9257. ))
  9258. characterMakers.push(() => makeCharacter(
  9259. { name: "Epifox" },
  9260. {
  9261. front: {
  9262. height: math.unit(6, "feet"),
  9263. weight: math.unit(150, "lb"),
  9264. name: "Front",
  9265. image: {
  9266. source: "./media/characters/epifox/front.svg",
  9267. extra: 1,
  9268. bottom: 0.075
  9269. }
  9270. },
  9271. },
  9272. [
  9273. {
  9274. name: "Micro",
  9275. height: math.unit(6, "inches")
  9276. },
  9277. {
  9278. name: "Normal",
  9279. height: math.unit(12, "feet"),
  9280. default: true
  9281. },
  9282. {
  9283. name: "Macro",
  9284. height: math.unit(3810, "feet")
  9285. },
  9286. {
  9287. name: "Megamacro",
  9288. height: math.unit(500, "miles")
  9289. },
  9290. ]
  9291. ))
  9292. characterMakers.push(() => makeCharacter(
  9293. { name: "Colin T." },
  9294. {
  9295. front: {
  9296. height: math.unit(1.8796, "m"),
  9297. weight: math.unit(230, "lb"),
  9298. name: "Front",
  9299. image: {
  9300. source: "./media/characters/colin-t/front.svg",
  9301. extra: 1272 / 1193,
  9302. bottom: 0.07
  9303. }
  9304. },
  9305. },
  9306. [
  9307. {
  9308. name: "Micro",
  9309. height: math.unit(0.571, "meters")
  9310. },
  9311. {
  9312. name: "Normal",
  9313. height: math.unit(1.8796, "meters"),
  9314. default: true
  9315. },
  9316. {
  9317. name: "Tall",
  9318. height: math.unit(4, "meters")
  9319. },
  9320. {
  9321. name: "Macro",
  9322. height: math.unit(67.241, "meters")
  9323. },
  9324. {
  9325. name: "Megamacro",
  9326. height: math.unit(371.856, "meters")
  9327. },
  9328. {
  9329. name: "Planetary",
  9330. height: math.unit(12631.5689, "km")
  9331. },
  9332. ]
  9333. ))
  9334. characterMakers.push(() => makeCharacter(
  9335. { name: "Matvei" },
  9336. {
  9337. front: {
  9338. height: math.unit(1.85, "meters"),
  9339. weight: math.unit(80, "kg"),
  9340. name: "Front",
  9341. image: {
  9342. source: "./media/characters/matvei/front.svg",
  9343. extra: 614 / 594,
  9344. bottom: 0.01
  9345. }
  9346. },
  9347. },
  9348. [
  9349. {
  9350. name: "Normal",
  9351. height: math.unit(1.85, "meters"),
  9352. default: true
  9353. },
  9354. ]
  9355. ))
  9356. characterMakers.push(() => makeCharacter(
  9357. { name: "Quincy" },
  9358. {
  9359. front: {
  9360. height: math.unit(5 + 9 / 12, "feet"),
  9361. weight: math.unit(70, "lb"),
  9362. name: "Front",
  9363. image: {
  9364. source: "./media/characters/quincy/front.svg",
  9365. extra: 3041 / 2751
  9366. }
  9367. },
  9368. back: {
  9369. height: math.unit(5 + 9 / 12, "feet"),
  9370. weight: math.unit(70, "lb"),
  9371. name: "Back",
  9372. image: {
  9373. source: "./media/characters/quincy/back.svg",
  9374. extra: 3041 / 2751
  9375. }
  9376. },
  9377. flying: {
  9378. height: math.unit(5 + 4 / 12, "feet"),
  9379. weight: math.unit(70, "lb"),
  9380. name: "Flying",
  9381. image: {
  9382. source: "./media/characters/quincy/flying.svg",
  9383. extra: 1044 / 930
  9384. }
  9385. },
  9386. },
  9387. [
  9388. {
  9389. name: "Micro",
  9390. height: math.unit(3, "cm")
  9391. },
  9392. {
  9393. name: "Normal",
  9394. height: math.unit(5 + 9 / 12, "feet")
  9395. },
  9396. {
  9397. name: "Macro",
  9398. height: math.unit(200, "meters"),
  9399. default: true
  9400. },
  9401. {
  9402. name: "Megamacro",
  9403. height: math.unit(1000, "meters")
  9404. },
  9405. ]
  9406. ))
  9407. characterMakers.push(() => makeCharacter(
  9408. { name: "Vanrel" },
  9409. {
  9410. front: {
  9411. height: math.unit(4 + 7 / 12, "feet"),
  9412. weight: math.unit(150, "lb"),
  9413. name: "Front",
  9414. image: {
  9415. source: "./media/characters/vanrel/front.svg",
  9416. extra: 1,
  9417. bottom: 0.02
  9418. }
  9419. },
  9420. elemental: {
  9421. height: math.unit(4 + 2 / 12, "feet"),
  9422. weight: math.unit(150, "lb"),
  9423. name: "Elemental",
  9424. image: {
  9425. source: "./media/characters/vanrel/elemental.svg"
  9426. }
  9427. },
  9428. side: {
  9429. height: math.unit(4 + 7 / 12, "feet"),
  9430. weight: math.unit(150, "lb"),
  9431. name: "Side",
  9432. image: {
  9433. source: "./media/characters/vanrel/side.svg",
  9434. extra: 1,
  9435. bottom: 0.025
  9436. }
  9437. },
  9438. tome: {
  9439. height: math.unit(1.35, "feet"),
  9440. weight: math.unit(10, "lb"),
  9441. name: "Vanrel's Tome",
  9442. rename: true,
  9443. image: {
  9444. source: "./media/characters/vanrel/tome.svg"
  9445. }
  9446. },
  9447. beans: {
  9448. height: math.unit(0.89, "feet"),
  9449. name: "Beans",
  9450. image: {
  9451. source: "./media/characters/vanrel/beans.svg"
  9452. }
  9453. },
  9454. },
  9455. [
  9456. {
  9457. name: "Normal",
  9458. height: math.unit(4 + 7 / 12, "feet"),
  9459. default: true
  9460. },
  9461. ]
  9462. ))
  9463. characterMakers.push(() => makeCharacter(
  9464. { name: "Kuiper Vanrel" },
  9465. {
  9466. front: {
  9467. height: math.unit(7 + 5 / 12, "feet"),
  9468. weight: math.unit(150, "lb"),
  9469. name: "Front",
  9470. image: {
  9471. source: "./media/characters/kuiper-vanrel/front.svg",
  9472. extra: 1118 / 1068,
  9473. bottom: 0.09
  9474. }
  9475. },
  9476. foot: {
  9477. height: math.unit(0.55, "meters"),
  9478. name: "Foot",
  9479. image: {
  9480. source: "./media/characters/kuiper-vanrel/foot.svg",
  9481. }
  9482. },
  9483. },
  9484. [
  9485. {
  9486. name: "Normal",
  9487. height: math.unit(7 + 5 / 12, "feet"),
  9488. default: true
  9489. },
  9490. ]
  9491. ))
  9492. characterMakers.push(() => makeCharacter(
  9493. { name: "Keset Vanrel" },
  9494. {
  9495. front: {
  9496. height: math.unit(8 + 5 / 12, "feet"),
  9497. weight: math.unit(150, "lb"),
  9498. name: "Front",
  9499. image: {
  9500. source: "./media/characters/keset-vanrel/front.svg",
  9501. extra: 1150 / 1084,
  9502. bottom: 0.05
  9503. }
  9504. },
  9505. hand: {
  9506. height: math.unit(0.6, "meters"),
  9507. name: "Hand",
  9508. image: {
  9509. source: "./media/characters/keset-vanrel/hand.svg"
  9510. }
  9511. },
  9512. foot: {
  9513. height: math.unit(0.94978, "meters"),
  9514. name: "Foot",
  9515. image: {
  9516. source: "./media/characters/keset-vanrel/foot.svg"
  9517. }
  9518. },
  9519. },
  9520. [
  9521. {
  9522. name: "Normal",
  9523. height: math.unit(8 + 5 / 12, "feet"),
  9524. default: true
  9525. },
  9526. ]
  9527. ))
  9528. characterMakers.push(() => makeCharacter(
  9529. { name: "Neos" },
  9530. {
  9531. front: {
  9532. height: math.unit(6, "feet"),
  9533. weight: math.unit(150, "lb"),
  9534. name: "Front",
  9535. image: {
  9536. source: "./media/characters/neos/front.svg",
  9537. extra: 1696 / 992,
  9538. bottom: 0.14
  9539. }
  9540. },
  9541. },
  9542. [
  9543. {
  9544. name: "Normal",
  9545. height: math.unit(54, "cm"),
  9546. default: true
  9547. },
  9548. {
  9549. name: "Macro",
  9550. height: math.unit(100, "m")
  9551. },
  9552. {
  9553. name: "Megamacro",
  9554. height: math.unit(10, "km")
  9555. },
  9556. {
  9557. name: "Megamacro+",
  9558. height: math.unit(100, "km")
  9559. },
  9560. {
  9561. name: "Gigamacro",
  9562. height: math.unit(100, "Mm")
  9563. },
  9564. {
  9565. name: "Teramacro",
  9566. height: math.unit(100, "Gm")
  9567. },
  9568. {
  9569. name: "Examacro",
  9570. height: math.unit(100, "Em")
  9571. },
  9572. {
  9573. name: "Godly",
  9574. height: math.unit(10000, "Ym")
  9575. },
  9576. {
  9577. name: "Beyond Godly",
  9578. height: math.unit(10000000, "Ym")
  9579. },
  9580. ]
  9581. ))
  9582. characterMakers.push(() => makeCharacter(
  9583. { name: "Sammy Mouse" },
  9584. {
  9585. feminine: {
  9586. height: math.unit(5, "feet"),
  9587. weight: math.unit(100, "lb"),
  9588. name: "Feminine",
  9589. image: {
  9590. source: "./media/characters/sammy-mouse/feminine.svg",
  9591. extra: 2526 / 2425,
  9592. bottom: 0.123
  9593. }
  9594. },
  9595. masculine: {
  9596. height: math.unit(5, "feet"),
  9597. weight: math.unit(100, "lb"),
  9598. name: "Masculine",
  9599. image: {
  9600. source: "./media/characters/sammy-mouse/masculine.svg",
  9601. extra: 2526 / 2425,
  9602. bottom: 0.123
  9603. }
  9604. },
  9605. },
  9606. [
  9607. {
  9608. name: "Micro",
  9609. height: math.unit(5, "inches")
  9610. },
  9611. {
  9612. name: "Normal",
  9613. height: math.unit(5, "feet"),
  9614. default: true
  9615. },
  9616. {
  9617. name: "Macro",
  9618. height: math.unit(60, "feet")
  9619. },
  9620. ]
  9621. ))
  9622. characterMakers.push(() => makeCharacter(
  9623. { name: "Kole" },
  9624. {
  9625. front: {
  9626. height: math.unit(4, "feet"),
  9627. weight: math.unit(50, "lb"),
  9628. name: "Front",
  9629. image: {
  9630. source: "./media/characters/kole/front.svg",
  9631. extra: 1423 / 1303,
  9632. bottom: 0.025
  9633. }
  9634. },
  9635. back: {
  9636. height: math.unit(4, "feet"),
  9637. weight: math.unit(50, "lb"),
  9638. name: "Back",
  9639. image: {
  9640. source: "./media/characters/kole/back.svg",
  9641. extra: 1426 / 1280,
  9642. bottom: 0.02
  9643. }
  9644. },
  9645. },
  9646. [
  9647. {
  9648. name: "Normal",
  9649. height: math.unit(4, "feet"),
  9650. default: true
  9651. },
  9652. ]
  9653. ))
  9654. characterMakers.push(() => makeCharacter(
  9655. { name: "Rufran" },
  9656. {
  9657. front: {
  9658. height: math.unit(2 + 6 / 12, "feet"),
  9659. weight: math.unit(20, "lb"),
  9660. name: "Front",
  9661. image: {
  9662. source: "./media/characters/rufran/front.svg",
  9663. extra: 2041 / 1839,
  9664. bottom: 0.055
  9665. }
  9666. },
  9667. back: {
  9668. height: math.unit(2 + 6 / 12, "feet"),
  9669. weight: math.unit(20, "lb"),
  9670. name: "Back",
  9671. image: {
  9672. source: "./media/characters/rufran/back.svg",
  9673. extra: 2054 / 1839,
  9674. bottom: 0.01
  9675. }
  9676. },
  9677. hand: {
  9678. height: math.unit(0.2166, "meters"),
  9679. name: "Hand",
  9680. image: {
  9681. source: "./media/characters/rufran/hand.svg"
  9682. }
  9683. },
  9684. foot: {
  9685. height: math.unit(0.185, "meters"),
  9686. name: "Foot",
  9687. image: {
  9688. source: "./media/characters/rufran/foot.svg"
  9689. }
  9690. },
  9691. },
  9692. [
  9693. {
  9694. name: "Micro",
  9695. height: math.unit(1, "inch")
  9696. },
  9697. {
  9698. name: "Normal",
  9699. height: math.unit(2 + 6 / 12, "feet"),
  9700. default: true
  9701. },
  9702. {
  9703. name: "Big",
  9704. height: math.unit(60, "feet")
  9705. },
  9706. {
  9707. name: "Macro",
  9708. height: math.unit(325, "feet")
  9709. },
  9710. ]
  9711. ))
  9712. characterMakers.push(() => makeCharacter(
  9713. { name: "Chip" },
  9714. {
  9715. front: {
  9716. height: math.unit(0.3, "meters"),
  9717. weight: math.unit(3.5, "kg"),
  9718. name: "Front",
  9719. image: {
  9720. source: "./media/characters/chip/front.svg",
  9721. extra: 748 / 674
  9722. }
  9723. },
  9724. },
  9725. [
  9726. {
  9727. name: "Micro",
  9728. height: math.unit(1, "inch"),
  9729. default: true
  9730. },
  9731. ]
  9732. ))
  9733. characterMakers.push(() => makeCharacter(
  9734. { name: "Torvid" },
  9735. {
  9736. side: {
  9737. height: math.unit(2.3, "meters"),
  9738. weight: math.unit(3500, "lb"),
  9739. name: "Side",
  9740. image: {
  9741. source: "./media/characters/torvid/side.svg",
  9742. extra: 1972 / 722,
  9743. bottom: 0.035
  9744. }
  9745. },
  9746. },
  9747. [
  9748. {
  9749. name: "Normal",
  9750. height: math.unit(2.3, "meters"),
  9751. default: true
  9752. },
  9753. ]
  9754. ))
  9755. characterMakers.push(() => makeCharacter(
  9756. { name: "Susan" },
  9757. {
  9758. front: {
  9759. height: math.unit(2, "meters"),
  9760. weight: math.unit(150.5, "kg"),
  9761. name: "Front",
  9762. image: {
  9763. source: "./media/characters/susan/front.svg",
  9764. extra: 693 / 635,
  9765. bottom: 0.05
  9766. }
  9767. },
  9768. },
  9769. [
  9770. {
  9771. name: "Megamacro",
  9772. height: math.unit(505, "miles"),
  9773. default: true
  9774. },
  9775. ]
  9776. ))
  9777. characterMakers.push(() => makeCharacter(
  9778. { name: "Raindrops" },
  9779. {
  9780. front: {
  9781. height: math.unit(6, "feet"),
  9782. weight: math.unit(150, "lb"),
  9783. name: "Front",
  9784. image: {
  9785. source: "./media/characters/raindrops/front.svg",
  9786. extra: 2655 / 2461,
  9787. bottom: 0.02
  9788. }
  9789. },
  9790. back: {
  9791. height: math.unit(6, "feet"),
  9792. weight: math.unit(150, "lb"),
  9793. name: "Back",
  9794. image: {
  9795. source: "./media/characters/raindrops/back.svg",
  9796. extra: 2574 / 2400,
  9797. bottom: 0.03
  9798. }
  9799. },
  9800. },
  9801. [
  9802. {
  9803. name: "Micro",
  9804. height: math.unit(6, "inches")
  9805. },
  9806. {
  9807. name: "Normal",
  9808. height: math.unit(6 + 2 / 12, "feet")
  9809. },
  9810. {
  9811. name: "Macro",
  9812. height: math.unit(131, "feet"),
  9813. default: true
  9814. },
  9815. {
  9816. name: "Megamacro",
  9817. height: math.unit(15, "miles")
  9818. },
  9819. {
  9820. name: "Gigamacro",
  9821. height: math.unit(4000, "miles")
  9822. },
  9823. {
  9824. name: "Teramacro",
  9825. height: math.unit(315000, "miles")
  9826. },
  9827. ]
  9828. ))
  9829. characterMakers.push(() => makeCharacter(
  9830. { name: "Tezwa" },
  9831. {
  9832. front: {
  9833. height: math.unit(2.794, "meters"),
  9834. weight: math.unit(325, "kg"),
  9835. name: "Front",
  9836. image: {
  9837. source: "./media/characters/tezwa/front.svg",
  9838. extra: 2083 / 1906,
  9839. bottom: 0.031
  9840. }
  9841. },
  9842. foot: {
  9843. height: math.unit(0.687, "meters"),
  9844. name: "Foot",
  9845. image: {
  9846. source: "./media/characters/tezwa/foot.svg"
  9847. }
  9848. },
  9849. },
  9850. [
  9851. {
  9852. name: "Normal",
  9853. height: math.unit(9 + 2 / 12, "feet"),
  9854. default: true
  9855. },
  9856. ]
  9857. ))
  9858. characterMakers.push(() => makeCharacter(
  9859. { name: "Typhus" },
  9860. {
  9861. front: {
  9862. height: math.unit(58, "feet"),
  9863. weight: math.unit(89000, "lb"),
  9864. name: "Front",
  9865. image: {
  9866. source: "./media/characters/typhus/front.svg",
  9867. extra: 816 / 800,
  9868. bottom: 0.065
  9869. }
  9870. },
  9871. },
  9872. [
  9873. {
  9874. name: "Macro",
  9875. height: math.unit(58, "feet"),
  9876. default: true
  9877. },
  9878. ]
  9879. ))
  9880. characterMakers.push(() => makeCharacter(
  9881. { name: "Lyra Von Wulf" },
  9882. {
  9883. front: {
  9884. height: math.unit(12, "feet"),
  9885. weight: math.unit(6, "tonnes"),
  9886. name: "Front",
  9887. image: {
  9888. source: "./media/characters/lyra-von-wulf/front.svg",
  9889. extra: 1,
  9890. bottom: 0.10
  9891. }
  9892. },
  9893. frontMecha: {
  9894. height: math.unit(12, "feet"),
  9895. weight: math.unit(12, "tonnes"),
  9896. name: "Front (Mecha)",
  9897. image: {
  9898. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  9899. extra: 1,
  9900. bottom: 0.042
  9901. }
  9902. },
  9903. maw: {
  9904. height: math.unit(2.2, "feet"),
  9905. name: "Maw",
  9906. image: {
  9907. source: "./media/characters/lyra-von-wulf/maw.svg"
  9908. }
  9909. },
  9910. },
  9911. [
  9912. {
  9913. name: "Normal",
  9914. height: math.unit(12, "feet"),
  9915. default: true
  9916. },
  9917. {
  9918. name: "Classic",
  9919. height: math.unit(50, "feet")
  9920. },
  9921. {
  9922. name: "Macro",
  9923. height: math.unit(500, "feet")
  9924. },
  9925. {
  9926. name: "Megamacro",
  9927. height: math.unit(1, "mile")
  9928. },
  9929. {
  9930. name: "Gigamacro",
  9931. height: math.unit(400, "miles")
  9932. },
  9933. {
  9934. name: "Teramacro",
  9935. height: math.unit(22000, "miles")
  9936. },
  9937. {
  9938. name: "Solarmacro",
  9939. height: math.unit(8600000, "miles")
  9940. },
  9941. {
  9942. name: "Galactic",
  9943. height: math.unit(1057000, "lightyears")
  9944. },
  9945. ]
  9946. ))
  9947. characterMakers.push(() => makeCharacter(
  9948. { name: "Dixon" },
  9949. {
  9950. front: {
  9951. height: math.unit(6 + 10 / 12, "feet"),
  9952. weight: math.unit(150, "lb"),
  9953. name: "Front",
  9954. image: {
  9955. source: "./media/characters/dixon/front.svg",
  9956. extra: 3361 / 3209,
  9957. bottom: 0.01
  9958. }
  9959. },
  9960. },
  9961. [
  9962. {
  9963. name: "Normal",
  9964. height: math.unit(6 + 10 / 12, "feet"),
  9965. default: true
  9966. },
  9967. {
  9968. name: "Big",
  9969. height: math.unit(12, "meters")
  9970. },
  9971. {
  9972. name: "Macro",
  9973. height: math.unit(500, "meters")
  9974. },
  9975. {
  9976. name: "Megamacro",
  9977. height: math.unit(2, "km")
  9978. },
  9979. ]
  9980. ))
  9981. characterMakers.push(() => makeCharacter(
  9982. { name: "Kauko" },
  9983. {
  9984. front: {
  9985. height: math.unit(185, "cm"),
  9986. weight: math.unit(68, "kg"),
  9987. name: "Front",
  9988. image: {
  9989. source: "./media/characters/kauko/front.svg",
  9990. extra: 1455 / 1421,
  9991. bottom: 0.03
  9992. }
  9993. },
  9994. back: {
  9995. height: math.unit(185, "cm"),
  9996. weight: math.unit(68, "kg"),
  9997. name: "Back",
  9998. image: {
  9999. source: "./media/characters/kauko/back.svg",
  10000. extra: 1455 / 1421,
  10001. bottom: 0.004
  10002. }
  10003. },
  10004. },
  10005. [
  10006. {
  10007. name: "Normal",
  10008. height: math.unit(185, "cm"),
  10009. default: true
  10010. },
  10011. ]
  10012. ))
  10013. characterMakers.push(() => makeCharacter(
  10014. { name: "Varg" },
  10015. {
  10016. front: {
  10017. height: math.unit(6, "feet"),
  10018. weight: math.unit(150, "kg"),
  10019. name: "Front",
  10020. image: {
  10021. source: "./media/characters/varg/front.svg",
  10022. extra: 1108 / 1018,
  10023. bottom: 0.0375
  10024. }
  10025. },
  10026. },
  10027. [
  10028. {
  10029. name: "Normal",
  10030. height: math.unit(5, "meters")
  10031. },
  10032. {
  10033. name: "Macro",
  10034. height: math.unit(200, "meters")
  10035. },
  10036. {
  10037. name: "Megamacro",
  10038. height: math.unit(20, "kilometers")
  10039. },
  10040. {
  10041. name: "True Size",
  10042. height: math.unit(211, "km"),
  10043. default: true
  10044. },
  10045. {
  10046. name: "Gigamacro",
  10047. height: math.unit(1000, "km")
  10048. },
  10049. {
  10050. name: "Gigamacro+",
  10051. height: math.unit(8000, "km")
  10052. },
  10053. {
  10054. name: "Teramacro",
  10055. height: math.unit(1000000, "km")
  10056. },
  10057. ]
  10058. ))
  10059. characterMakers.push(() => makeCharacter(
  10060. { name: "Dayza" },
  10061. {
  10062. front: {
  10063. height: math.unit(7 + 7 / 12, "feet"),
  10064. weight: math.unit(267, "lb"),
  10065. name: "Front",
  10066. image: {
  10067. source: "./media/characters/dayza/front.svg",
  10068. extra: 1262 / 1200,
  10069. bottom: 0.035
  10070. }
  10071. },
  10072. side: {
  10073. height: math.unit(7 + 7 / 12, "feet"),
  10074. weight: math.unit(267, "lb"),
  10075. name: "Side",
  10076. image: {
  10077. source: "./media/characters/dayza/side.svg",
  10078. extra: 1295 / 1245,
  10079. bottom: 0.05
  10080. }
  10081. },
  10082. back: {
  10083. height: math.unit(7 + 7 / 12, "feet"),
  10084. weight: math.unit(267, "lb"),
  10085. name: "Back",
  10086. image: {
  10087. source: "./media/characters/dayza/back.svg",
  10088. extra: 1241 / 1170
  10089. }
  10090. },
  10091. },
  10092. [
  10093. {
  10094. name: "Normal",
  10095. height: math.unit(7 + 7 / 12, "feet"),
  10096. default: true
  10097. },
  10098. {
  10099. name: "Macro",
  10100. height: math.unit(155, "feet")
  10101. },
  10102. ]
  10103. ))
  10104. characterMakers.push(() => makeCharacter(
  10105. { name: "Xanthos" },
  10106. {
  10107. front: {
  10108. height: math.unit(6 + 5 / 12, "feet"),
  10109. weight: math.unit(160, "lb"),
  10110. name: "Front",
  10111. image: {
  10112. source: "./media/characters/xanthos/front.svg",
  10113. extra: 1,
  10114. bottom: 0.04
  10115. }
  10116. },
  10117. back: {
  10118. height: math.unit(6 + 5 / 12, "feet"),
  10119. weight: math.unit(160, "lb"),
  10120. name: "Back",
  10121. image: {
  10122. source: "./media/characters/xanthos/back.svg",
  10123. extra: 1,
  10124. bottom: 0.03
  10125. }
  10126. },
  10127. hand: {
  10128. height: math.unit(0.928, "feet"),
  10129. name: "Hand",
  10130. image: {
  10131. source: "./media/characters/xanthos/hand.svg"
  10132. }
  10133. },
  10134. foot: {
  10135. height: math.unit(1.286, "feet"),
  10136. name: "Foot",
  10137. image: {
  10138. source: "./media/characters/xanthos/foot.svg"
  10139. }
  10140. },
  10141. },
  10142. [
  10143. {
  10144. name: "Normal",
  10145. height: math.unit(6 + 5 / 12, "feet"),
  10146. default: true
  10147. },
  10148. {
  10149. name: "Normal+",
  10150. height: math.unit(6, "meters")
  10151. },
  10152. {
  10153. name: "Macro",
  10154. height: math.unit(40, "feet")
  10155. },
  10156. {
  10157. name: "Macro+",
  10158. height: math.unit(200, "meters")
  10159. },
  10160. {
  10161. name: "Megamacro",
  10162. height: math.unit(20, "km")
  10163. },
  10164. {
  10165. name: "Megamacro+",
  10166. height: math.unit(100, "km")
  10167. },
  10168. ]
  10169. ))
  10170. characterMakers.push(() => makeCharacter(
  10171. { name: "Grynn" },
  10172. {
  10173. front: {
  10174. height: math.unit(6 + 3 / 12, "feet"),
  10175. weight: math.unit(215, "lb"),
  10176. name: "Front",
  10177. image: {
  10178. source: "./media/characters/grynn/front.svg",
  10179. extra: 4627 / 4209,
  10180. bottom: 0.047
  10181. }
  10182. },
  10183. },
  10184. [
  10185. {
  10186. name: "Micro",
  10187. height: math.unit(6, "inches")
  10188. },
  10189. {
  10190. name: "Normal",
  10191. height: math.unit(6 + 3 / 12, "feet"),
  10192. default: true
  10193. },
  10194. {
  10195. name: "Big",
  10196. height: math.unit(104, "feet")
  10197. },
  10198. {
  10199. name: "Macro",
  10200. height: math.unit(944, "feet")
  10201. },
  10202. {
  10203. name: "Macro+",
  10204. height: math.unit(9480, "feet")
  10205. },
  10206. {
  10207. name: "Megamacro",
  10208. height: math.unit(78752, "feet")
  10209. },
  10210. {
  10211. name: "Megamacro+",
  10212. height: math.unit(630128, "feet")
  10213. },
  10214. {
  10215. name: "Megamacro++",
  10216. height: math.unit(3150695, "feet")
  10217. },
  10218. ]
  10219. ))
  10220. characterMakers.push(() => makeCharacter(
  10221. { name: "Mocha Aura" },
  10222. {
  10223. front: {
  10224. height: math.unit(7 + 5 / 12, "feet"),
  10225. weight: math.unit(450, "lb"),
  10226. name: "Front",
  10227. image: {
  10228. source: "./media/characters/mocha-aura/front.svg",
  10229. extra: 1907 / 1817,
  10230. bottom: 0.04
  10231. }
  10232. },
  10233. back: {
  10234. height: math.unit(7 + 5 / 12, "feet"),
  10235. weight: math.unit(450, "lb"),
  10236. name: "Back",
  10237. image: {
  10238. source: "./media/characters/mocha-aura/back.svg",
  10239. extra: 1900 / 1825,
  10240. bottom: 0.045
  10241. }
  10242. },
  10243. },
  10244. [
  10245. {
  10246. name: "Nano",
  10247. height: math.unit(1, "nm")
  10248. },
  10249. {
  10250. name: "Megamicro",
  10251. height: math.unit(1, "mm")
  10252. },
  10253. {
  10254. name: "Micro",
  10255. height: math.unit(3, "inches")
  10256. },
  10257. {
  10258. name: "Normal",
  10259. height: math.unit(7 + 5 / 12, "feet"),
  10260. default: true
  10261. },
  10262. {
  10263. name: "Macro",
  10264. height: math.unit(30, "feet")
  10265. },
  10266. {
  10267. name: "Megamacro",
  10268. height: math.unit(3500, "feet")
  10269. },
  10270. {
  10271. name: "Teramacro",
  10272. height: math.unit(500000, "miles")
  10273. },
  10274. {
  10275. name: "Petamacro",
  10276. height: math.unit(50000000000000000, "parsecs")
  10277. },
  10278. ]
  10279. ))
  10280. characterMakers.push(() => makeCharacter(
  10281. { name: "Ilisha Devya" },
  10282. {
  10283. front: {
  10284. height: math.unit(6, "feet"),
  10285. weight: math.unit(150, "lb"),
  10286. name: "Front",
  10287. image: {
  10288. source: "./media/characters/ilisha-devya/front.svg",
  10289. extra: 1,
  10290. bottom: 0.175
  10291. }
  10292. },
  10293. back: {
  10294. height: math.unit(6, "feet"),
  10295. weight: math.unit(150, "lb"),
  10296. name: "Back",
  10297. image: {
  10298. source: "./media/characters/ilisha-devya/back.svg",
  10299. extra: 1,
  10300. bottom: 0.015
  10301. }
  10302. },
  10303. },
  10304. [
  10305. {
  10306. name: "Macro",
  10307. height: math.unit(500, "feet"),
  10308. default: true
  10309. },
  10310. {
  10311. name: "Megamacro",
  10312. height: math.unit(10, "miles")
  10313. },
  10314. {
  10315. name: "Gigamacro",
  10316. height: math.unit(100000, "miles")
  10317. },
  10318. {
  10319. name: "Examacro",
  10320. height: math.unit(1e9, "lightyears")
  10321. },
  10322. {
  10323. name: "Omniversal",
  10324. height: math.unit(1e33, "lightyears")
  10325. },
  10326. {
  10327. name: "Beyond Infinite",
  10328. height: math.unit(1e100, "lightyears")
  10329. },
  10330. ]
  10331. ))
  10332. characterMakers.push(() => makeCharacter(
  10333. { name: "Mira" },
  10334. {
  10335. Side: {
  10336. height: math.unit(6, "feet"),
  10337. weight: math.unit(150, "lb"),
  10338. name: "Side",
  10339. image: {
  10340. source: "./media/characters/mira/side.svg",
  10341. extra: 900 / 799,
  10342. bottom: 0.02
  10343. }
  10344. },
  10345. },
  10346. [
  10347. {
  10348. name: "Human Size",
  10349. height: math.unit(6, "feet")
  10350. },
  10351. {
  10352. name: "Macro",
  10353. height: math.unit(100, "feet"),
  10354. default: true
  10355. },
  10356. {
  10357. name: "Megamacro",
  10358. height: math.unit(10, "miles")
  10359. },
  10360. {
  10361. name: "Gigamacro",
  10362. height: math.unit(25000, "miles")
  10363. },
  10364. {
  10365. name: "Teramacro",
  10366. height: math.unit(300, "AU")
  10367. },
  10368. {
  10369. name: "Full Size",
  10370. height: math.unit(4.5e10, "lightyears")
  10371. },
  10372. ]
  10373. ))
  10374. characterMakers.push(() => makeCharacter(
  10375. { name: "Holly" },
  10376. {
  10377. front: {
  10378. height: math.unit(6, "feet"),
  10379. weight: math.unit(150, "lb"),
  10380. name: "Front",
  10381. image: {
  10382. source: "./media/characters/holly/front.svg",
  10383. extra: 639 / 606
  10384. }
  10385. },
  10386. back: {
  10387. height: math.unit(6, "feet"),
  10388. weight: math.unit(150, "lb"),
  10389. name: "Back",
  10390. image: {
  10391. source: "./media/characters/holly/back.svg",
  10392. extra: 623 / 598
  10393. }
  10394. },
  10395. frontWorking: {
  10396. height: math.unit(6, "feet"),
  10397. weight: math.unit(150, "lb"),
  10398. name: "Front (Working)",
  10399. image: {
  10400. source: "./media/characters/holly/front-working.svg",
  10401. extra: 607 / 577,
  10402. bottom: 0.048
  10403. }
  10404. },
  10405. },
  10406. [
  10407. {
  10408. name: "Normal",
  10409. height: math.unit(12 + 3 / 12, "feet"),
  10410. default: true
  10411. },
  10412. ]
  10413. ))
  10414. characterMakers.push(() => makeCharacter(
  10415. { name: "Porter" },
  10416. {
  10417. front: {
  10418. height: math.unit(6, "feet"),
  10419. weight: math.unit(150, "lb"),
  10420. name: "Front",
  10421. image: {
  10422. source: "./media/characters/porter/front.svg",
  10423. extra: 1,
  10424. bottom: 0.01
  10425. }
  10426. },
  10427. frontRobes: {
  10428. height: math.unit(6, "feet"),
  10429. weight: math.unit(150, "lb"),
  10430. name: "Front (Robes)",
  10431. image: {
  10432. source: "./media/characters/porter/front-robes.svg",
  10433. extra: 1.01,
  10434. bottom: 0.01
  10435. }
  10436. },
  10437. },
  10438. [
  10439. {
  10440. name: "Normal",
  10441. height: math.unit(11 + 9 / 12, "feet"),
  10442. default: true
  10443. },
  10444. ]
  10445. ))
  10446. characterMakers.push(() => makeCharacter(
  10447. { name: "Lucy" },
  10448. {
  10449. legendary: {
  10450. height: math.unit(6, "feet"),
  10451. weight: math.unit(150, "lb"),
  10452. name: "Legendary",
  10453. image: {
  10454. source: "./media/characters/lucy/legendary.svg",
  10455. extra: 1355 / 1100,
  10456. bottom: 0.045
  10457. }
  10458. },
  10459. },
  10460. [
  10461. {
  10462. name: "Legendary",
  10463. height: math.unit(86882 * 2, "miles"),
  10464. default: true
  10465. },
  10466. ]
  10467. ))
  10468. characterMakers.push(() => makeCharacter(
  10469. { name: "Drusilla" },
  10470. {
  10471. front: {
  10472. height: math.unit(6, "feet"),
  10473. weight: math.unit(150, "lb"),
  10474. name: "Front",
  10475. image: {
  10476. source: "./media/characters/drusilla/front.svg",
  10477. extra: 678 / 635,
  10478. bottom: 0.03
  10479. }
  10480. },
  10481. back: {
  10482. height: math.unit(6, "feet"),
  10483. weight: math.unit(150, "lb"),
  10484. name: "Back",
  10485. image: {
  10486. source: "./media/characters/drusilla/back.svg",
  10487. extra: 678 / 635,
  10488. bottom: 0.005
  10489. }
  10490. },
  10491. },
  10492. [
  10493. {
  10494. name: "Macro",
  10495. height: math.unit(100, "feet")
  10496. },
  10497. {
  10498. name: "Canon Height",
  10499. height: math.unit(2000, "feet"),
  10500. default: true
  10501. },
  10502. ]
  10503. ))
  10504. characterMakers.push(() => makeCharacter(
  10505. { name: "Renard Thatch" },
  10506. {
  10507. front: {
  10508. height: math.unit(6, "feet"),
  10509. weight: math.unit(180, "lb"),
  10510. name: "Front",
  10511. image: {
  10512. source: "./media/characters/renard-thatch/front.svg",
  10513. extra: 2411 / 2275,
  10514. bottom: 0.01
  10515. }
  10516. },
  10517. frontPosing: {
  10518. height: math.unit(6, "feet"),
  10519. weight: math.unit(180, "lb"),
  10520. name: "Front (Posing)",
  10521. image: {
  10522. source: "./media/characters/renard-thatch/front-posing.svg",
  10523. extra: 2381 / 2261,
  10524. bottom: 0.01
  10525. }
  10526. },
  10527. back: {
  10528. height: math.unit(6, "feet"),
  10529. weight: math.unit(180, "lb"),
  10530. name: "Back",
  10531. image: {
  10532. source: "./media/characters/renard-thatch/back.svg",
  10533. extra: 2428 / 2288
  10534. }
  10535. },
  10536. },
  10537. [
  10538. {
  10539. name: "Micro",
  10540. height: math.unit(3, "inches")
  10541. },
  10542. {
  10543. name: "Default",
  10544. height: math.unit(6, "feet"),
  10545. default: true
  10546. },
  10547. {
  10548. name: "Macro",
  10549. height: math.unit(75, "feet")
  10550. },
  10551. ]
  10552. ))
  10553. characterMakers.push(() => makeCharacter(
  10554. { name: "Sekvra" },
  10555. {
  10556. front: {
  10557. height: math.unit(1450, "feet"),
  10558. weight: math.unit(1.21e6, "tons"),
  10559. name: "Front",
  10560. image: {
  10561. source: "./media/characters/sekvra/front.svg",
  10562. extra: 1,
  10563. bottom: 0.03
  10564. }
  10565. },
  10566. frontClothed: {
  10567. height: math.unit(1450, "feet"),
  10568. weight: math.unit(1.21e6, "tons"),
  10569. name: "Front (Clothed)",
  10570. image: {
  10571. source: "./media/characters/sekvra/front-clothed.svg",
  10572. extra: 1,
  10573. bottom: 0.03
  10574. }
  10575. },
  10576. side: {
  10577. height: math.unit(1450, "feet"),
  10578. weight: math.unit(1.21e6, "tons"),
  10579. name: "Side",
  10580. image: {
  10581. source: "./media/characters/sekvra/side.svg",
  10582. extra: 1,
  10583. bottom: 0.025
  10584. }
  10585. },
  10586. back: {
  10587. height: math.unit(1450, "feet"),
  10588. weight: math.unit(1.21e6, "tons"),
  10589. name: "Back",
  10590. image: {
  10591. source: "./media/characters/sekvra/back.svg",
  10592. extra: 1,
  10593. bottom: 0.005
  10594. }
  10595. },
  10596. },
  10597. [
  10598. {
  10599. name: "Macro",
  10600. height: math.unit(1450, "feet"),
  10601. default: true
  10602. },
  10603. {
  10604. name: "Megamacro",
  10605. height: math.unit(15000, "feet")
  10606. },
  10607. ]
  10608. ))
  10609. characterMakers.push(() => makeCharacter(
  10610. { name: "Carmine" },
  10611. {
  10612. front: {
  10613. height: math.unit(6, "feet"),
  10614. weight: math.unit(150, "lb"),
  10615. name: "Front",
  10616. image: {
  10617. source: "./media/characters/carmine/front.svg",
  10618. extra: 1,
  10619. bottom: 0.035
  10620. }
  10621. },
  10622. frontArmor: {
  10623. height: math.unit(6, "feet"),
  10624. weight: math.unit(150, "lb"),
  10625. name: "Front (Armor)",
  10626. image: {
  10627. source: "./media/characters/carmine/front-armor.svg",
  10628. extra: 1,
  10629. bottom: 0.035
  10630. }
  10631. },
  10632. },
  10633. [
  10634. {
  10635. name: "Large",
  10636. height: math.unit(1, "mile")
  10637. },
  10638. {
  10639. name: "Huge",
  10640. height: math.unit(40, "miles"),
  10641. default: true
  10642. },
  10643. {
  10644. name: "Colossal",
  10645. height: math.unit(2500, "miles")
  10646. },
  10647. ]
  10648. ))
  10649. characterMakers.push(() => makeCharacter(
  10650. { name: "Elyssia" },
  10651. {
  10652. front: {
  10653. height: math.unit(6, "feet"),
  10654. weight: math.unit(150, "lb"),
  10655. name: "Front",
  10656. image: {
  10657. source: "./media/characters/elyssia/front.svg",
  10658. extra: 2201 / 2035,
  10659. bottom: 0.05
  10660. }
  10661. },
  10662. frontClothed: {
  10663. height: math.unit(6, "feet"),
  10664. weight: math.unit(150, "lb"),
  10665. name: "Front (Clothed)",
  10666. image: {
  10667. source: "./media/characters/elyssia/front-clothed.svg",
  10668. extra: 2201 / 2035,
  10669. bottom: 0.05
  10670. }
  10671. },
  10672. back: {
  10673. height: math.unit(6, "feet"),
  10674. weight: math.unit(150, "lb"),
  10675. name: "Back",
  10676. image: {
  10677. source: "./media/characters/elyssia/back.svg",
  10678. extra: 2201 / 2035,
  10679. bottom: 0.013
  10680. }
  10681. },
  10682. },
  10683. [
  10684. {
  10685. name: "Smaller",
  10686. height: math.unit(150, "feet")
  10687. },
  10688. {
  10689. name: "Standard",
  10690. height: math.unit(1400, "feet"),
  10691. default: true
  10692. },
  10693. {
  10694. name: "Distracted",
  10695. height: math.unit(15000, "feet")
  10696. },
  10697. ]
  10698. ))
  10699. characterMakers.push(() => makeCharacter(
  10700. { name: "Geno Maxwell" },
  10701. {
  10702. front: {
  10703. height: math.unit(7 + 4 / 12, "feet"),
  10704. weight: math.unit(500, "lb"),
  10705. name: "Front",
  10706. image: {
  10707. source: "./media/characters/geno-maxwell/front.svg",
  10708. extra: 2207 / 2040,
  10709. bottom: 0.015
  10710. }
  10711. },
  10712. },
  10713. [
  10714. {
  10715. name: "Micro",
  10716. height: math.unit(3, "inches")
  10717. },
  10718. {
  10719. name: "Normal",
  10720. height: math.unit(7 + 4 / 12, "feet"),
  10721. default: true
  10722. },
  10723. {
  10724. name: "Macro",
  10725. height: math.unit(220, "feet")
  10726. },
  10727. {
  10728. name: "Megamacro",
  10729. height: math.unit(11, "miles")
  10730. },
  10731. ]
  10732. ))
  10733. characterMakers.push(() => makeCharacter(
  10734. { name: "Regena Maxwell" },
  10735. {
  10736. front: {
  10737. height: math.unit(7 + 4 / 12, "feet"),
  10738. weight: math.unit(500, "lb"),
  10739. name: "Front",
  10740. image: {
  10741. source: "./media/characters/regena-maxwell/front.svg",
  10742. extra: 3115 / 2770,
  10743. bottom: 0.02
  10744. }
  10745. },
  10746. },
  10747. [
  10748. {
  10749. name: "Normal",
  10750. height: math.unit(7 + 4 / 12, "feet"),
  10751. default: true
  10752. },
  10753. {
  10754. name: "Macro",
  10755. height: math.unit(220, "feet")
  10756. },
  10757. {
  10758. name: "Megamacro",
  10759. height: math.unit(11, "miles")
  10760. },
  10761. ]
  10762. ))
  10763. characterMakers.push(() => makeCharacter(
  10764. { name: "XGlidingDragonX" },
  10765. {
  10766. front: {
  10767. height: math.unit(6, "feet"),
  10768. weight: math.unit(150, "lb"),
  10769. name: "Front",
  10770. image: {
  10771. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10772. extra: 860 / 690,
  10773. bottom: 0.03
  10774. }
  10775. },
  10776. },
  10777. [
  10778. {
  10779. name: "Normal",
  10780. height: math.unit(1.7, "meters"),
  10781. default: true
  10782. },
  10783. ]
  10784. ))
  10785. characterMakers.push(() => makeCharacter(
  10786. { name: "Quilly" },
  10787. {
  10788. front: {
  10789. height: math.unit(6, "feet"),
  10790. weight: math.unit(150, "lb"),
  10791. name: "Front",
  10792. image: {
  10793. source: "./media/characters/quilly/front.svg",
  10794. extra: 890 / 776
  10795. }
  10796. },
  10797. },
  10798. [
  10799. {
  10800. name: "Gigamacro",
  10801. height: math.unit(404090, "miles"),
  10802. default: true
  10803. },
  10804. ]
  10805. ))
  10806. characterMakers.push(() => makeCharacter(
  10807. { name: "Tempest" },
  10808. {
  10809. front: {
  10810. height: math.unit(7 + 8 / 12, "feet"),
  10811. weight: math.unit(350, "lb"),
  10812. name: "Front",
  10813. image: {
  10814. source: "./media/characters/tempest/front.svg",
  10815. extra: 1175 / 1086,
  10816. bottom: 0.02
  10817. }
  10818. },
  10819. },
  10820. [
  10821. {
  10822. name: "Normal",
  10823. height: math.unit(7 + 8 / 12, "feet"),
  10824. default: true
  10825. },
  10826. ]
  10827. ))
  10828. characterMakers.push(() => makeCharacter(
  10829. { name: "Rodger" },
  10830. {
  10831. side: {
  10832. height: math.unit(4 + 5 / 12, "feet"),
  10833. weight: math.unit(80, "lb"),
  10834. name: "Side",
  10835. image: {
  10836. source: "./media/characters/rodger/side.svg",
  10837. extra: 1235 / 1118
  10838. }
  10839. },
  10840. },
  10841. [
  10842. {
  10843. name: "Micro",
  10844. height: math.unit(1, "inch")
  10845. },
  10846. {
  10847. name: "Normal",
  10848. height: math.unit(4 + 5 / 12, "feet"),
  10849. default: true
  10850. },
  10851. {
  10852. name: "Macro",
  10853. height: math.unit(120, "feet")
  10854. },
  10855. ]
  10856. ))
  10857. characterMakers.push(() => makeCharacter(
  10858. { name: "Danyel" },
  10859. {
  10860. front: {
  10861. height: math.unit(6, "feet"),
  10862. weight: math.unit(150, "lb"),
  10863. name: "Front",
  10864. image: {
  10865. source: "./media/characters/danyel/front.svg",
  10866. extra: 1185 / 1123,
  10867. bottom: 0.05
  10868. }
  10869. },
  10870. },
  10871. [
  10872. {
  10873. name: "Shrunken",
  10874. height: math.unit(0.5, "mm")
  10875. },
  10876. {
  10877. name: "Micro",
  10878. height: math.unit(1, "mm"),
  10879. default: true
  10880. },
  10881. {
  10882. name: "Upsized",
  10883. height: math.unit(5 + 5 / 12, "feet")
  10884. },
  10885. ]
  10886. ))
  10887. characterMakers.push(() => makeCharacter(
  10888. { name: "Vivian Bijoux" },
  10889. {
  10890. front: {
  10891. height: math.unit(5 + 6 / 12, "feet"),
  10892. weight: math.unit(200, "lb"),
  10893. name: "Front",
  10894. image: {
  10895. source: "./media/characters/vivian-bijoux/front.svg",
  10896. extra: 1,
  10897. bottom: 0.072
  10898. }
  10899. },
  10900. },
  10901. [
  10902. {
  10903. name: "Normal",
  10904. height: math.unit(5 + 6 / 12, "feet"),
  10905. default: true
  10906. },
  10907. {
  10908. name: "Bad Dream",
  10909. height: math.unit(500, "feet")
  10910. },
  10911. {
  10912. name: "Nightmare",
  10913. height: math.unit(500, "miles")
  10914. },
  10915. ]
  10916. ))
  10917. characterMakers.push(() => makeCharacter(
  10918. { name: "Zeta" },
  10919. {
  10920. front: {
  10921. height: math.unit(6 + 1 / 12, "feet"),
  10922. weight: math.unit(260, "lb"),
  10923. name: "Front",
  10924. image: {
  10925. source: "./media/characters/zeta/front.svg",
  10926. extra: 1968 / 1889,
  10927. bottom: 0.06
  10928. }
  10929. },
  10930. back: {
  10931. height: math.unit(6 + 1 / 12, "feet"),
  10932. weight: math.unit(260, "lb"),
  10933. name: "Back",
  10934. image: {
  10935. source: "./media/characters/zeta/back.svg",
  10936. extra: 1944 / 1858,
  10937. bottom: 0.03
  10938. }
  10939. },
  10940. hand: {
  10941. height: math.unit(1.112, "feet"),
  10942. name: "Hand",
  10943. image: {
  10944. source: "./media/characters/zeta/hand.svg"
  10945. }
  10946. },
  10947. foot: {
  10948. height: math.unit(1.48, "feet"),
  10949. name: "Foot",
  10950. image: {
  10951. source: "./media/characters/zeta/foot.svg"
  10952. }
  10953. },
  10954. },
  10955. [
  10956. {
  10957. name: "Micro",
  10958. height: math.unit(6, "inches")
  10959. },
  10960. {
  10961. name: "Normal",
  10962. height: math.unit(6 + 1 / 12, "feet"),
  10963. default: true
  10964. },
  10965. {
  10966. name: "Macro",
  10967. height: math.unit(20, "feet")
  10968. },
  10969. ]
  10970. ))
  10971. characterMakers.push(() => makeCharacter(
  10972. { name: "Jamie Larsen" },
  10973. {
  10974. front: {
  10975. height: math.unit(6, "feet"),
  10976. weight: math.unit(150, "lb"),
  10977. name: "Front",
  10978. image: {
  10979. source: "./media/characters/jamie-larsen/front.svg",
  10980. extra: 962 / 933,
  10981. bottom: 0.02
  10982. }
  10983. },
  10984. back: {
  10985. height: math.unit(6, "feet"),
  10986. weight: math.unit(150, "lb"),
  10987. name: "Back",
  10988. image: {
  10989. source: "./media/characters/jamie-larsen/back.svg",
  10990. extra: 997 / 946
  10991. }
  10992. },
  10993. },
  10994. [
  10995. {
  10996. name: "Macro",
  10997. height: math.unit(28 + 7 / 12, "feet"),
  10998. default: true
  10999. },
  11000. {
  11001. name: "Macro+",
  11002. height: math.unit(180, "feet")
  11003. },
  11004. {
  11005. name: "Megamacro",
  11006. height: math.unit(10, "miles")
  11007. },
  11008. {
  11009. name: "Gigamacro",
  11010. height: math.unit(200000, "miles")
  11011. },
  11012. ]
  11013. ))
  11014. characterMakers.push(() => makeCharacter(
  11015. { name: "Vance" },
  11016. {
  11017. front: {
  11018. height: math.unit(6, "feet"),
  11019. weight: math.unit(120, "lb"),
  11020. name: "Front",
  11021. image: {
  11022. source: "./media/characters/vance/front.svg",
  11023. extra: 1980 / 1890,
  11024. bottom: 0.09
  11025. }
  11026. },
  11027. back: {
  11028. height: math.unit(6, "feet"),
  11029. weight: math.unit(120, "lb"),
  11030. name: "Back",
  11031. image: {
  11032. source: "./media/characters/vance/back.svg",
  11033. extra: 2081 / 1994,
  11034. bottom: 0.014
  11035. }
  11036. },
  11037. hand: {
  11038. height: math.unit(0.88, "feet"),
  11039. name: "Hand",
  11040. image: {
  11041. source: "./media/characters/vance/hand.svg"
  11042. }
  11043. },
  11044. foot: {
  11045. height: math.unit(0.64, "feet"),
  11046. name: "Foot",
  11047. image: {
  11048. source: "./media/characters/vance/foot.svg"
  11049. }
  11050. },
  11051. },
  11052. [
  11053. {
  11054. name: "Small",
  11055. height: math.unit(90, "feet"),
  11056. default: true
  11057. },
  11058. {
  11059. name: "Macro",
  11060. height: math.unit(100, "meters")
  11061. },
  11062. {
  11063. name: "Megamacro",
  11064. height: math.unit(15, "miles")
  11065. },
  11066. ]
  11067. ))
  11068. characterMakers.push(() => makeCharacter(
  11069. { name: "Xochitl" },
  11070. {
  11071. front: {
  11072. height: math.unit(6, "feet"),
  11073. weight: math.unit(180, "lb"),
  11074. name: "Front",
  11075. image: {
  11076. source: "./media/characters/xochitl/front.svg",
  11077. extra: 2297 / 2261,
  11078. bottom: 0.065
  11079. }
  11080. },
  11081. back: {
  11082. height: math.unit(6, "feet"),
  11083. weight: math.unit(180, "lb"),
  11084. name: "Back",
  11085. image: {
  11086. source: "./media/characters/xochitl/back.svg",
  11087. extra: 2386 / 2354,
  11088. bottom: 0.01
  11089. }
  11090. },
  11091. foot: {
  11092. height: math.unit(6 / 5 * 1.15, "feet"),
  11093. weight: math.unit(150, "lb"),
  11094. name: "Foot",
  11095. image: {
  11096. source: "./media/characters/xochitl/foot.svg"
  11097. }
  11098. },
  11099. },
  11100. [
  11101. {
  11102. name: "Macro",
  11103. height: math.unit(80, "feet")
  11104. },
  11105. {
  11106. name: "Macro+",
  11107. height: math.unit(400, "feet"),
  11108. default: true
  11109. },
  11110. {
  11111. name: "Gigamacro",
  11112. height: math.unit(80000, "miles")
  11113. },
  11114. {
  11115. name: "Gigamacro+",
  11116. height: math.unit(400000, "miles")
  11117. },
  11118. {
  11119. name: "Teramacro",
  11120. height: math.unit(300, "AU")
  11121. },
  11122. ]
  11123. ))
  11124. characterMakers.push(() => makeCharacter(
  11125. { name: "Vincent" },
  11126. {
  11127. front: {
  11128. height: math.unit(6, "feet"),
  11129. weight: math.unit(150, "lb"),
  11130. name: "Front",
  11131. image: {
  11132. source: "./media/characters/vincent/front.svg",
  11133. extra: 1130 / 1080,
  11134. bottom: 0.055
  11135. }
  11136. },
  11137. beak: {
  11138. height: math.unit(6 * 0.1, "feet"),
  11139. name: "Beak",
  11140. image: {
  11141. source: "./media/characters/vincent/beak.svg"
  11142. }
  11143. },
  11144. hand: {
  11145. height: math.unit(6 * 0.85, "feet"),
  11146. weight: math.unit(150, "lb"),
  11147. name: "Hand",
  11148. image: {
  11149. source: "./media/characters/vincent/hand.svg"
  11150. }
  11151. },
  11152. foot: {
  11153. height: math.unit(6 * 0.19, "feet"),
  11154. weight: math.unit(150, "lb"),
  11155. name: "Foot",
  11156. image: {
  11157. source: "./media/characters/vincent/foot.svg"
  11158. }
  11159. },
  11160. },
  11161. [
  11162. {
  11163. name: "Base",
  11164. height: math.unit(6 + 5 / 12, "feet"),
  11165. default: true
  11166. },
  11167. {
  11168. name: "Macro",
  11169. height: math.unit(300, "feet")
  11170. },
  11171. {
  11172. name: "Megamacro",
  11173. height: math.unit(2, "miles")
  11174. },
  11175. {
  11176. name: "Gigamacro",
  11177. height: math.unit(1000, "miles")
  11178. },
  11179. ]
  11180. ))
  11181. characterMakers.push(() => makeCharacter(
  11182. { name: "Jay" },
  11183. {
  11184. front: {
  11185. height: math.unit(6 + 2 / 12, "feet"),
  11186. weight: math.unit(65, "lb"),
  11187. name: "Front",
  11188. image: {
  11189. source: "./media/characters/jay/front.svg",
  11190. extra: 1510 / 1430,
  11191. bottom: 0.042
  11192. }
  11193. },
  11194. back: {
  11195. height: math.unit(6 + 2 / 12, "feet"),
  11196. weight: math.unit(65, "lb"),
  11197. name: "Back",
  11198. image: {
  11199. source: "./media/characters/jay/back.svg",
  11200. extra: 1510 / 1430,
  11201. bottom: 0.025
  11202. }
  11203. },
  11204. clothed: {
  11205. height: math.unit(6 + 2 / 12, "feet"),
  11206. weight: math.unit(65, "lb"),
  11207. name: "Front (Clothed)",
  11208. image: {
  11209. source: "./media/characters/jay/clothed.svg",
  11210. extra: 744 / 699,
  11211. bottom: 0.043
  11212. }
  11213. },
  11214. },
  11215. [
  11216. {
  11217. name: "Micro",
  11218. height: math.unit(1, "inch")
  11219. },
  11220. {
  11221. name: "Normal",
  11222. height: math.unit(6 + 2 / 12, "feet"),
  11223. default: true
  11224. },
  11225. {
  11226. name: "Macro",
  11227. height: math.unit(1, "mile")
  11228. },
  11229. {
  11230. name: "Megamacro",
  11231. height: math.unit(100, "miles")
  11232. },
  11233. ]
  11234. ))
  11235. characterMakers.push(() => makeCharacter(
  11236. { name: "Coatl" },
  11237. {
  11238. front: {
  11239. height: math.unit(2, "meters"),
  11240. weight: math.unit(500, "kg"),
  11241. name: "Front",
  11242. image: {
  11243. source: "./media/characters/coatl/front.svg",
  11244. extra: 3948 / 3500,
  11245. bottom: 0.082
  11246. }
  11247. },
  11248. },
  11249. [
  11250. {
  11251. name: "Normal",
  11252. height: math.unit(4, "meters")
  11253. },
  11254. {
  11255. name: "Macro",
  11256. height: math.unit(100, "meters"),
  11257. default: true
  11258. },
  11259. {
  11260. name: "Macro+",
  11261. height: math.unit(300, "meters")
  11262. },
  11263. {
  11264. name: "Megamacro",
  11265. height: math.unit(3, "gigameters")
  11266. },
  11267. {
  11268. name: "Megamacro+",
  11269. height: math.unit(300, "terameters")
  11270. },
  11271. {
  11272. name: "Megamacro++",
  11273. height: math.unit(3, "lightyears")
  11274. },
  11275. ]
  11276. ))
  11277. characterMakers.push(() => makeCharacter(
  11278. { name: "Shiroryu" },
  11279. {
  11280. front: {
  11281. height: math.unit(6, "feet"),
  11282. weight: math.unit(50, "kg"),
  11283. name: "front",
  11284. image: {
  11285. source: "./media/characters/shiroryu/front.svg",
  11286. extra: 1990 / 1935
  11287. }
  11288. },
  11289. },
  11290. [
  11291. {
  11292. name: "Mortal Mingling",
  11293. height: math.unit(3, "meters")
  11294. },
  11295. {
  11296. name: "Kaiju-ish",
  11297. height: math.unit(250, "meters")
  11298. },
  11299. {
  11300. name: "Somewhat Godly",
  11301. height: math.unit(400, "km"),
  11302. default: true
  11303. },
  11304. {
  11305. name: "Planetary",
  11306. height: math.unit(300, "megameters")
  11307. },
  11308. {
  11309. name: "Galaxy-dwarfing",
  11310. height: math.unit(450, "kiloparsecs")
  11311. },
  11312. {
  11313. name: "Universe Eater",
  11314. height: math.unit(150, "gigaparsecs")
  11315. },
  11316. {
  11317. name: "Almost Immeasurable",
  11318. height: math.unit(1.3e266, "yottaparsecs")
  11319. },
  11320. ]
  11321. ))
  11322. characterMakers.push(() => makeCharacter(
  11323. { name: "Umeko" },
  11324. {
  11325. front: {
  11326. height: math.unit(6, "feet"),
  11327. weight: math.unit(150, "lb"),
  11328. name: "Front",
  11329. image: {
  11330. source: "./media/characters/umeko/front.svg",
  11331. extra: 1,
  11332. bottom: 0.019
  11333. }
  11334. },
  11335. frontArmored: {
  11336. height: math.unit(6, "feet"),
  11337. weight: math.unit(150, "lb"),
  11338. name: "Front (Armored)",
  11339. image: {
  11340. source: "./media/characters/umeko/front-armored.svg",
  11341. extra: 1,
  11342. bottom: 0.021
  11343. }
  11344. },
  11345. },
  11346. [
  11347. {
  11348. name: "Macro",
  11349. height: math.unit(220, "feet"),
  11350. default: true
  11351. },
  11352. {
  11353. name: "Guardian Dragon",
  11354. height: math.unit(50, "miles")
  11355. },
  11356. {
  11357. name: "Cosmic",
  11358. height: math.unit(800000, "miles")
  11359. },
  11360. ]
  11361. ))
  11362. characterMakers.push(() => makeCharacter(
  11363. { name: "Cassidy" },
  11364. {
  11365. front: {
  11366. height: math.unit(6, "feet"),
  11367. weight: math.unit(150, "lb"),
  11368. name: "Front",
  11369. image: {
  11370. source: "./media/characters/cassidy/front.svg",
  11371. extra: 1,
  11372. bottom: 0.043
  11373. }
  11374. },
  11375. },
  11376. [
  11377. {
  11378. name: "Canon Height",
  11379. height: math.unit(120, "feet"),
  11380. default: true
  11381. },
  11382. {
  11383. name: "Macro+",
  11384. height: math.unit(400, "feet")
  11385. },
  11386. {
  11387. name: "Macro++",
  11388. height: math.unit(4000, "feet")
  11389. },
  11390. {
  11391. name: "Megamacro",
  11392. height: math.unit(3, "miles")
  11393. },
  11394. ]
  11395. ))
  11396. characterMakers.push(() => makeCharacter(
  11397. { name: "Isaac" },
  11398. {
  11399. front: {
  11400. height: math.unit(6, "feet"),
  11401. weight: math.unit(150, "lb"),
  11402. name: "Front",
  11403. image: {
  11404. source: "./media/characters/isaac/front.svg",
  11405. extra: 896 / 815,
  11406. bottom: 0.11
  11407. }
  11408. },
  11409. },
  11410. [
  11411. {
  11412. name: "Human Size",
  11413. height: math.unit(8, "feet"),
  11414. default: true
  11415. },
  11416. {
  11417. name: "Macro",
  11418. height: math.unit(400, "feet")
  11419. },
  11420. {
  11421. name: "Megamacro",
  11422. height: math.unit(50, "miles")
  11423. },
  11424. {
  11425. name: "Canon Height",
  11426. height: math.unit(200, "AU")
  11427. },
  11428. ]
  11429. ))
  11430. characterMakers.push(() => makeCharacter(
  11431. { name: "Sleekit" },
  11432. {
  11433. front: {
  11434. height: math.unit(6, "feet"),
  11435. weight: math.unit(72, "kg"),
  11436. name: "Front",
  11437. image: {
  11438. source: "./media/characters/sleekit/front.svg",
  11439. extra: 4693 / 4487,
  11440. bottom: 0.012
  11441. }
  11442. },
  11443. },
  11444. [
  11445. {
  11446. name: "Minimum Height",
  11447. height: math.unit(10, "meters")
  11448. },
  11449. {
  11450. name: "Smaller",
  11451. height: math.unit(25, "meters")
  11452. },
  11453. {
  11454. name: "Larger",
  11455. height: math.unit(38, "meters"),
  11456. default: true
  11457. },
  11458. {
  11459. name: "Maximum height",
  11460. height: math.unit(100, "meters")
  11461. },
  11462. ]
  11463. ))
  11464. characterMakers.push(() => makeCharacter(
  11465. { name: "Nillia" },
  11466. {
  11467. front: {
  11468. height: math.unit(6, "feet"),
  11469. weight: math.unit(150, "lb"),
  11470. name: "Front",
  11471. image: {
  11472. source: "./media/characters/nillia/front.svg",
  11473. extra: 2195 / 2037,
  11474. bottom: 0.005
  11475. }
  11476. },
  11477. back: {
  11478. height: math.unit(6, "feet"),
  11479. weight: math.unit(150, "lb"),
  11480. name: "Back",
  11481. image: {
  11482. source: "./media/characters/nillia/back.svg",
  11483. extra: 2195 / 2037,
  11484. bottom: 0.005
  11485. }
  11486. },
  11487. },
  11488. [
  11489. {
  11490. name: "Canon Height",
  11491. height: math.unit(489, "feet"),
  11492. default: true
  11493. }
  11494. ]
  11495. ))
  11496. characterMakers.push(() => makeCharacter(
  11497. { name: "Mesmyriza" },
  11498. {
  11499. front: {
  11500. height: math.unit(6, "feet"),
  11501. weight: math.unit(150, "lb"),
  11502. name: "Front",
  11503. image: {
  11504. source: "./media/characters/mesmyriza/front.svg",
  11505. extra: 2067 / 1784,
  11506. bottom: 0.035
  11507. }
  11508. },
  11509. foot: {
  11510. height: math.unit(6 / (250 / 35), "feet"),
  11511. name: "Foot",
  11512. image: {
  11513. source: "./media/characters/mesmyriza/foot.svg"
  11514. }
  11515. },
  11516. },
  11517. [
  11518. {
  11519. name: "Macro",
  11520. height: math.unit(457, "meters"),
  11521. default: true
  11522. },
  11523. {
  11524. name: "Megamacro",
  11525. height: math.unit(8, "megameters")
  11526. },
  11527. ]
  11528. ))
  11529. characterMakers.push(() => makeCharacter(
  11530. { name: "Saudade" },
  11531. {
  11532. front: {
  11533. height: math.unit(6, "feet"),
  11534. weight: math.unit(250, "lb"),
  11535. name: "Front",
  11536. image: {
  11537. source: "./media/characters/saudade/front.svg",
  11538. extra: 1172 / 1139,
  11539. bottom: 0.035
  11540. }
  11541. },
  11542. },
  11543. [
  11544. {
  11545. name: "Micro",
  11546. height: math.unit(3, "inches")
  11547. },
  11548. {
  11549. name: "Normal",
  11550. height: math.unit(6, "feet"),
  11551. default: true
  11552. },
  11553. {
  11554. name: "Macro",
  11555. height: math.unit(50, "feet")
  11556. },
  11557. {
  11558. name: "Megamacro",
  11559. height: math.unit(2800, "feet")
  11560. },
  11561. ]
  11562. ))
  11563. characterMakers.push(() => makeCharacter(
  11564. { name: "Keireer" },
  11565. {
  11566. front: {
  11567. height: math.unit(5 + 4 / 12, "feet"),
  11568. weight: math.unit(100, "lb"),
  11569. name: "Front",
  11570. image: {
  11571. source: "./media/characters/keireer/front.svg",
  11572. extra: 716 / 666,
  11573. bottom: 0.05
  11574. }
  11575. },
  11576. },
  11577. [
  11578. {
  11579. name: "Normal",
  11580. height: math.unit(5 + 4 / 12, "feet"),
  11581. default: true
  11582. },
  11583. ]
  11584. ))
  11585. characterMakers.push(() => makeCharacter(
  11586. { name: "Mirja" },
  11587. {
  11588. front: {
  11589. height: math.unit(6, "feet"),
  11590. weight: math.unit(90, "kg"),
  11591. name: "Front",
  11592. image: {
  11593. source: "./media/characters/mirja/front.svg",
  11594. extra: 1789 / 1683,
  11595. bottom: 0.05
  11596. }
  11597. },
  11598. frontDressed: {
  11599. height: math.unit(6, "feet"),
  11600. weight: math.unit(90, "lb"),
  11601. name: "Front (Dressed)",
  11602. image: {
  11603. source: "./media/characters/mirja/front-dressed.svg",
  11604. extra: 1789 / 1683,
  11605. bottom: 0.05
  11606. }
  11607. },
  11608. back: {
  11609. height: math.unit(6, "feet"),
  11610. weight: math.unit(90, "lb"),
  11611. name: "Back",
  11612. image: {
  11613. source: "./media/characters/mirja/back.svg",
  11614. extra: 953 / 917,
  11615. bottom: 0.017
  11616. }
  11617. },
  11618. },
  11619. [
  11620. {
  11621. name: "\"Incognito\"",
  11622. height: math.unit(3, "meters")
  11623. },
  11624. {
  11625. name: "Strolling Size",
  11626. height: math.unit(15, "km")
  11627. },
  11628. {
  11629. name: "Larger Strolling Size",
  11630. height: math.unit(400, "km")
  11631. },
  11632. {
  11633. name: "Preferred Size",
  11634. height: math.unit(5000, "km")
  11635. },
  11636. {
  11637. name: "True Size",
  11638. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11639. default: true
  11640. },
  11641. ]
  11642. ))
  11643. characterMakers.push(() => makeCharacter(
  11644. { name: "Nightraver" },
  11645. {
  11646. front: {
  11647. height: math.unit(15, "feet"),
  11648. weight: math.unit(880, "kg"),
  11649. name: "Front",
  11650. image: {
  11651. source: "./media/characters/nightraver/front.svg",
  11652. extra: 2444 / 2160,
  11653. bottom: 0.027
  11654. }
  11655. },
  11656. back: {
  11657. height: math.unit(15, "feet"),
  11658. weight: math.unit(880, "kg"),
  11659. name: "Back",
  11660. image: {
  11661. source: "./media/characters/nightraver/back.svg",
  11662. extra: 2309 / 2180,
  11663. bottom: 0.005
  11664. }
  11665. },
  11666. sole: {
  11667. height: math.unit(2.878, "feet"),
  11668. name: "Sole",
  11669. image: {
  11670. source: "./media/characters/nightraver/sole.svg"
  11671. }
  11672. },
  11673. foot: {
  11674. height: math.unit(2.285, "feet"),
  11675. name: "Foot",
  11676. image: {
  11677. source: "./media/characters/nightraver/foot.svg"
  11678. }
  11679. },
  11680. maw: {
  11681. height: math.unit(2.67, "feet"),
  11682. name: "Maw",
  11683. image: {
  11684. source: "./media/characters/nightraver/maw.svg"
  11685. }
  11686. },
  11687. },
  11688. [
  11689. {
  11690. name: "Micro",
  11691. height: math.unit(1, "cm")
  11692. },
  11693. {
  11694. name: "Normal",
  11695. height: math.unit(15, "feet"),
  11696. default: true
  11697. },
  11698. {
  11699. name: "Macro",
  11700. height: math.unit(300, "feet")
  11701. },
  11702. {
  11703. name: "Megamacro",
  11704. height: math.unit(300, "miles")
  11705. },
  11706. {
  11707. name: "Gigamacro",
  11708. height: math.unit(10000, "miles")
  11709. },
  11710. ]
  11711. ))
  11712. characterMakers.push(() => makeCharacter(
  11713. { name: "Arc" },
  11714. {
  11715. side: {
  11716. height: math.unit(2, "inches"),
  11717. weight: math.unit(5, "grams"),
  11718. name: "Side",
  11719. image: {
  11720. source: "./media/characters/arc/side.svg"
  11721. }
  11722. },
  11723. },
  11724. [
  11725. {
  11726. name: "Micro",
  11727. height: math.unit(2, "inches"),
  11728. default: true
  11729. },
  11730. ]
  11731. ))
  11732. characterMakers.push(() => makeCharacter(
  11733. { name: "Nebula Shahar" },
  11734. {
  11735. front: {
  11736. height: math.unit(1.1938, "meters"),
  11737. weight: math.unit(54, "kg"),
  11738. name: "Front",
  11739. image: {
  11740. source: "./media/characters/nebula-shahar/front.svg",
  11741. extra: 1642 / 1436,
  11742. bottom: 0.06
  11743. }
  11744. },
  11745. },
  11746. [
  11747. {
  11748. name: "Megamicro",
  11749. height: math.unit(0.3, "mm")
  11750. },
  11751. {
  11752. name: "Micro",
  11753. height: math.unit(3, "cm")
  11754. },
  11755. {
  11756. name: "Normal",
  11757. height: math.unit(138, "cm"),
  11758. default: true
  11759. },
  11760. {
  11761. name: "Macro",
  11762. height: math.unit(30, "m")
  11763. },
  11764. ]
  11765. ))
  11766. characterMakers.push(() => makeCharacter(
  11767. { name: "Shayla" },
  11768. {
  11769. front: {
  11770. height: math.unit(5.24, "feet"),
  11771. weight: math.unit(150, "lb"),
  11772. name: "Front",
  11773. image: {
  11774. source: "./media/characters/shayla/front.svg",
  11775. extra: 1512 / 1414,
  11776. bottom: 0.01
  11777. }
  11778. },
  11779. back: {
  11780. height: math.unit(5.24, "feet"),
  11781. weight: math.unit(150, "lb"),
  11782. name: "Back",
  11783. image: {
  11784. source: "./media/characters/shayla/back.svg",
  11785. extra: 1512 / 1414
  11786. }
  11787. },
  11788. hand: {
  11789. height: math.unit(0.7781496062992126, "feet"),
  11790. name: "Hand",
  11791. image: {
  11792. source: "./media/characters/shayla/hand.svg"
  11793. }
  11794. },
  11795. foot: {
  11796. height: math.unit(1.4206036745406823, "feet"),
  11797. name: "Foot",
  11798. image: {
  11799. source: "./media/characters/shayla/foot.svg"
  11800. }
  11801. },
  11802. },
  11803. [
  11804. {
  11805. name: "Micro",
  11806. height: math.unit(0.32, "feet")
  11807. },
  11808. {
  11809. name: "Normal",
  11810. height: math.unit(5.24, "feet"),
  11811. default: true
  11812. },
  11813. {
  11814. name: "Macro",
  11815. height: math.unit(492.12, "feet")
  11816. },
  11817. {
  11818. name: "Megamacro",
  11819. height: math.unit(186.41, "miles")
  11820. },
  11821. ]
  11822. ))
  11823. characterMakers.push(() => makeCharacter(
  11824. { name: "Pia Jr." },
  11825. {
  11826. front: {
  11827. height: math.unit(2.2, "m"),
  11828. weight: math.unit(120, "kg"),
  11829. name: "Front",
  11830. image: {
  11831. source: "./media/characters/pia-jr/front.svg",
  11832. extra: 1000 / 970,
  11833. bottom: 0.035
  11834. }
  11835. },
  11836. hand: {
  11837. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11838. name: "Hand",
  11839. image: {
  11840. source: "./media/characters/pia-jr/hand.svg"
  11841. }
  11842. },
  11843. paw: {
  11844. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11845. name: "Paw",
  11846. image: {
  11847. source: "./media/characters/pia-jr/paw.svg"
  11848. }
  11849. },
  11850. },
  11851. [
  11852. {
  11853. name: "Micro",
  11854. height: math.unit(1.2, "cm")
  11855. },
  11856. {
  11857. name: "Normal",
  11858. height: math.unit(2.2, "m"),
  11859. default: true
  11860. },
  11861. {
  11862. name: "Macro",
  11863. height: math.unit(180, "m")
  11864. },
  11865. {
  11866. name: "Megamacro",
  11867. height: math.unit(420, "km")
  11868. },
  11869. ]
  11870. ))
  11871. characterMakers.push(() => makeCharacter(
  11872. { name: "Pia Sr." },
  11873. {
  11874. front: {
  11875. height: math.unit(2, "m"),
  11876. weight: math.unit(115, "kg"),
  11877. name: "Front",
  11878. image: {
  11879. source: "./media/characters/pia-sr/front.svg",
  11880. extra: 760 / 730,
  11881. bottom: 0.015
  11882. }
  11883. },
  11884. back: {
  11885. height: math.unit(2, "m"),
  11886. weight: math.unit(115, "kg"),
  11887. name: "Back",
  11888. image: {
  11889. source: "./media/characters/pia-sr/back.svg",
  11890. extra: 760 / 730,
  11891. bottom: 0.01
  11892. }
  11893. },
  11894. hand: {
  11895. height: math.unit(0.89 * 6.56 / 6, "feet"),
  11896. name: "Hand",
  11897. image: {
  11898. source: "./media/characters/pia-sr/hand.svg"
  11899. }
  11900. },
  11901. foot: {
  11902. height: math.unit(1.83, "feet"),
  11903. name: "Foot",
  11904. image: {
  11905. source: "./media/characters/pia-sr/foot.svg"
  11906. }
  11907. },
  11908. },
  11909. [
  11910. {
  11911. name: "Micro",
  11912. height: math.unit(88, "mm")
  11913. },
  11914. {
  11915. name: "Normal",
  11916. height: math.unit(2, "m"),
  11917. default: true
  11918. },
  11919. {
  11920. name: "Macro",
  11921. height: math.unit(200, "m")
  11922. },
  11923. {
  11924. name: "Megamacro",
  11925. height: math.unit(420, "km")
  11926. },
  11927. ]
  11928. ))
  11929. characterMakers.push(() => makeCharacter(
  11930. { name: "KIBIBYTE" },
  11931. {
  11932. front: {
  11933. height: math.unit(8 + 2 / 12, "feet"),
  11934. weight: math.unit(300, "lb"),
  11935. name: "Front",
  11936. image: {
  11937. source: "./media/characters/kibibyte/front.svg",
  11938. extra: 2221 / 2098,
  11939. bottom: 0.04
  11940. }
  11941. },
  11942. },
  11943. [
  11944. {
  11945. name: "Normal",
  11946. height: math.unit(8 + 2 / 12, "feet"),
  11947. default: true
  11948. },
  11949. {
  11950. name: "Socialable Macro",
  11951. height: math.unit(50, "feet")
  11952. },
  11953. {
  11954. name: "Macro",
  11955. height: math.unit(300, "feet")
  11956. },
  11957. {
  11958. name: "Megamacro",
  11959. height: math.unit(500, "miles")
  11960. },
  11961. ]
  11962. ))
  11963. characterMakers.push(() => makeCharacter(
  11964. { name: "Felix" },
  11965. {
  11966. front: {
  11967. height: math.unit(6, "feet"),
  11968. weight: math.unit(150, "lb"),
  11969. name: "Front",
  11970. image: {
  11971. source: "./media/characters/felix/front.svg",
  11972. extra: 762 / 722,
  11973. bottom: 0.02
  11974. }
  11975. },
  11976. frontClothed: {
  11977. height: math.unit(6, "feet"),
  11978. weight: math.unit(150, "lb"),
  11979. name: "Front (Clothed)",
  11980. image: {
  11981. source: "./media/characters/felix/front-clothed.svg",
  11982. extra: 762 / 722,
  11983. bottom: 0.02
  11984. }
  11985. },
  11986. },
  11987. [
  11988. {
  11989. name: "Normal",
  11990. height: math.unit(6 + 8 / 12, "feet"),
  11991. default: true
  11992. },
  11993. {
  11994. name: "Macro",
  11995. height: math.unit(2600, "feet")
  11996. },
  11997. {
  11998. name: "Megamacro",
  11999. height: math.unit(450, "miles")
  12000. },
  12001. ]
  12002. ))
  12003. characterMakers.push(() => makeCharacter(
  12004. { name: "Tobo" },
  12005. {
  12006. front: {
  12007. height: math.unit(6 + 1 / 12, "feet"),
  12008. weight: math.unit(250, "lb"),
  12009. name: "Front",
  12010. image: {
  12011. source: "./media/characters/tobo/front.svg",
  12012. extra: 608 / 586,
  12013. bottom: 0.023
  12014. }
  12015. },
  12016. back: {
  12017. height: math.unit(6 + 1 / 12, "feet"),
  12018. weight: math.unit(250, "lb"),
  12019. name: "Back",
  12020. image: {
  12021. source: "./media/characters/tobo/back.svg",
  12022. extra: 608 / 586
  12023. }
  12024. },
  12025. },
  12026. [
  12027. {
  12028. name: "Nano",
  12029. height: math.unit(2, "nm")
  12030. },
  12031. {
  12032. name: "Megamicro",
  12033. height: math.unit(0.1, "mm")
  12034. },
  12035. {
  12036. name: "Micro",
  12037. height: math.unit(1, "inch"),
  12038. default: true
  12039. },
  12040. {
  12041. name: "Human-sized",
  12042. height: math.unit(6 + 1 / 12, "feet")
  12043. },
  12044. {
  12045. name: "Macro",
  12046. height: math.unit(250, "feet")
  12047. },
  12048. {
  12049. name: "Megamacro",
  12050. height: math.unit(75, "miles")
  12051. },
  12052. {
  12053. name: "Texas-sized",
  12054. height: math.unit(750, "miles")
  12055. },
  12056. {
  12057. name: "Teramacro",
  12058. height: math.unit(50000, "miles")
  12059. },
  12060. ]
  12061. ))
  12062. characterMakers.push(() => makeCharacter(
  12063. { name: "Danny Kapowsky" },
  12064. {
  12065. front: {
  12066. height: math.unit(6, "feet"),
  12067. weight: math.unit(269, "lb"),
  12068. name: "Front",
  12069. image: {
  12070. source: "./media/characters/danny-kapowsky/front.svg",
  12071. extra: 766 / 736,
  12072. bottom: 0.044
  12073. }
  12074. },
  12075. back: {
  12076. height: math.unit(6, "feet"),
  12077. weight: math.unit(269, "lb"),
  12078. name: "Back",
  12079. image: {
  12080. source: "./media/characters/danny-kapowsky/back.svg",
  12081. extra: 797 / 760,
  12082. bottom: 0.025
  12083. }
  12084. },
  12085. },
  12086. [
  12087. {
  12088. name: "Macro",
  12089. height: math.unit(150, "feet"),
  12090. default: true
  12091. },
  12092. {
  12093. name: "Macro+",
  12094. height: math.unit(200, "feet")
  12095. },
  12096. {
  12097. name: "Macro++",
  12098. height: math.unit(300, "feet")
  12099. },
  12100. {
  12101. name: "Macro+++",
  12102. height: math.unit(400, "feet")
  12103. },
  12104. ]
  12105. ))
  12106. characterMakers.push(() => makeCharacter(
  12107. { name: "Finn" },
  12108. {
  12109. side: {
  12110. height: math.unit(6, "feet"),
  12111. weight: math.unit(170, "lb"),
  12112. name: "Side",
  12113. image: {
  12114. source: "./media/characters/finn/side.svg",
  12115. extra: 1953 / 1807,
  12116. bottom: 0.057
  12117. }
  12118. },
  12119. },
  12120. [
  12121. {
  12122. name: "Megamacro",
  12123. height: math.unit(14445, "feet"),
  12124. default: true
  12125. },
  12126. ]
  12127. ))
  12128. characterMakers.push(() => makeCharacter(
  12129. { name: "Roy" },
  12130. {
  12131. front: {
  12132. height: math.unit(5 + 6 / 12, "feet"),
  12133. weight: math.unit(125, "lb"),
  12134. name: "Front",
  12135. image: {
  12136. source: "./media/characters/roy/front.svg",
  12137. extra: 1,
  12138. bottom: 0.11
  12139. }
  12140. },
  12141. },
  12142. [
  12143. {
  12144. name: "Micro",
  12145. height: math.unit(3, "inches"),
  12146. default: true
  12147. },
  12148. {
  12149. name: "Normal",
  12150. height: math.unit(5 + 6 / 12, "feet")
  12151. },
  12152. {
  12153. name: "Lesser Macro",
  12154. height: math.unit(60, "feet")
  12155. },
  12156. {
  12157. name: "Greater Macro",
  12158. height: math.unit(120, "feet")
  12159. },
  12160. ]
  12161. ))
  12162. characterMakers.push(() => makeCharacter(
  12163. { name: "Aevsivs" },
  12164. {
  12165. front: {
  12166. height: math.unit(6, "feet"),
  12167. weight: math.unit(100, "lb"),
  12168. name: "Front",
  12169. image: {
  12170. source: "./media/characters/aevsivs/front.svg",
  12171. extra: 1,
  12172. bottom: 0.03
  12173. }
  12174. },
  12175. back: {
  12176. height: math.unit(6, "feet"),
  12177. weight: math.unit(100, "lb"),
  12178. name: "Back",
  12179. image: {
  12180. source: "./media/characters/aevsivs/back.svg"
  12181. }
  12182. },
  12183. },
  12184. [
  12185. {
  12186. name: "Micro",
  12187. height: math.unit(2, "inches"),
  12188. default: true
  12189. },
  12190. {
  12191. name: "Normal",
  12192. height: math.unit(5, "feet")
  12193. },
  12194. ]
  12195. ))
  12196. characterMakers.push(() => makeCharacter(
  12197. { name: "Hildegard" },
  12198. {
  12199. front: {
  12200. height: math.unit(5 + 7 / 12, "feet"),
  12201. weight: math.unit(159, "lb"),
  12202. name: "Front",
  12203. image: {
  12204. source: "./media/characters/hildegard/front.svg",
  12205. extra: 312 / 286,
  12206. bottom: 0.005
  12207. }
  12208. },
  12209. },
  12210. [
  12211. {
  12212. name: "Normal",
  12213. height: math.unit(5 + 7 / 12, "feet"),
  12214. default: true
  12215. },
  12216. ]
  12217. ))
  12218. characterMakers.push(() => makeCharacter(
  12219. { name: "Bernard & Wilder" },
  12220. {
  12221. bernard: {
  12222. height: math.unit(2 + 7 / 12, "feet"),
  12223. weight: math.unit(66, "lb"),
  12224. name: "Bernard",
  12225. rename: true,
  12226. image: {
  12227. source: "./media/characters/bernard-wilder/bernard.svg",
  12228. extra: 192 / 128,
  12229. bottom: 0.05
  12230. }
  12231. },
  12232. wilder: {
  12233. height: math.unit(5 + 8 / 12, "feet"),
  12234. weight: math.unit(143, "lb"),
  12235. name: "Wilder",
  12236. rename: true,
  12237. image: {
  12238. source: "./media/characters/bernard-wilder/wilder.svg",
  12239. extra: 361 / 312,
  12240. bottom: 0.02
  12241. }
  12242. },
  12243. },
  12244. [
  12245. {
  12246. name: "Normal",
  12247. height: math.unit(2 + 7 / 12, "feet"),
  12248. default: true
  12249. },
  12250. ]
  12251. ))
  12252. characterMakers.push(() => makeCharacter(
  12253. { name: "Hearth" },
  12254. {
  12255. anthro: {
  12256. height: math.unit(6 + 1 / 12, "feet"),
  12257. weight: math.unit(155, "lb"),
  12258. name: "Anthro",
  12259. image: {
  12260. source: "./media/characters/hearth/anthro.svg",
  12261. extra: 260 / 250,
  12262. bottom: 0.02
  12263. }
  12264. },
  12265. feral: {
  12266. height: math.unit(3.78, "feet"),
  12267. weight: math.unit(35, "kg"),
  12268. name: "Feral",
  12269. image: {
  12270. source: "./media/characters/hearth/feral.svg",
  12271. extra: 153 / 135,
  12272. bottom: 0.03
  12273. }
  12274. },
  12275. },
  12276. [
  12277. {
  12278. name: "Normal",
  12279. height: math.unit(6 + 1 / 12, "feet"),
  12280. default: true
  12281. },
  12282. ]
  12283. ))
  12284. characterMakers.push(() => makeCharacter(
  12285. { name: "Ingrid" },
  12286. {
  12287. front: {
  12288. height: math.unit(6, "feet"),
  12289. weight: math.unit(182, "lb"),
  12290. name: "Front",
  12291. image: {
  12292. source: "./media/characters/ingrid/front.svg",
  12293. extra: 294 / 268,
  12294. bottom: 0.027
  12295. }
  12296. },
  12297. },
  12298. [
  12299. {
  12300. name: "Normal",
  12301. height: math.unit(6, "feet"),
  12302. default: true
  12303. },
  12304. ]
  12305. ))
  12306. characterMakers.push(() => makeCharacter(
  12307. { name: "Malgam" },
  12308. {
  12309. eevee: {
  12310. height: math.unit(2 + 10 / 12, "feet"),
  12311. weight: math.unit(86, "lb"),
  12312. name: "Malgam",
  12313. image: {
  12314. source: "./media/characters/malgam/eevee.svg",
  12315. extra: 218 / 180,
  12316. bottom: 0.2
  12317. }
  12318. },
  12319. sylveon: {
  12320. height: math.unit(4, "feet"),
  12321. weight: math.unit(101, "lb"),
  12322. name: "Future Malgam",
  12323. rename: true,
  12324. image: {
  12325. source: "./media/characters/malgam/sylveon.svg",
  12326. extra: 371 / 325,
  12327. bottom: 0.015
  12328. }
  12329. },
  12330. gigantamax: {
  12331. height: math.unit(50, "feet"),
  12332. name: "Gigantamax Malgam",
  12333. rename: true,
  12334. image: {
  12335. source: "./media/characters/malgam/gigantamax.svg"
  12336. }
  12337. },
  12338. },
  12339. [
  12340. {
  12341. name: "Normal",
  12342. height: math.unit(2 + 10 / 12, "feet"),
  12343. default: true
  12344. },
  12345. ]
  12346. ))
  12347. characterMakers.push(() => makeCharacter(
  12348. { name: "Fleur" },
  12349. {
  12350. front: {
  12351. height: math.unit(5 + 11 / 12, "feet"),
  12352. weight: math.unit(188, "lb"),
  12353. name: "Front",
  12354. image: {
  12355. source: "./media/characters/fleur/front.svg",
  12356. extra: 309 / 283,
  12357. bottom: 0.007
  12358. }
  12359. },
  12360. },
  12361. [
  12362. {
  12363. name: "Normal",
  12364. height: math.unit(5 + 11 / 12, "feet"),
  12365. default: true
  12366. },
  12367. ]
  12368. ))
  12369. characterMakers.push(() => makeCharacter(
  12370. { name: "Jude" },
  12371. {
  12372. front: {
  12373. height: math.unit(5 + 4 / 12, "feet"),
  12374. weight: math.unit(122, "lb"),
  12375. name: "Front",
  12376. image: {
  12377. source: "./media/characters/jude/front.svg",
  12378. extra: 288 / 273,
  12379. bottom: 0.03
  12380. }
  12381. },
  12382. },
  12383. [
  12384. {
  12385. name: "Normal",
  12386. height: math.unit(5 + 4 / 12, "feet"),
  12387. default: true
  12388. },
  12389. ]
  12390. ))
  12391. characterMakers.push(() => makeCharacter(
  12392. { name: "Seara" },
  12393. {
  12394. front: {
  12395. height: math.unit(5 + 11 / 12, "feet"),
  12396. weight: math.unit(190, "lb"),
  12397. name: "Front",
  12398. image: {
  12399. source: "./media/characters/seara/front.svg",
  12400. extra: 1,
  12401. bottom: 0.05
  12402. }
  12403. },
  12404. },
  12405. [
  12406. {
  12407. name: "Normal",
  12408. height: math.unit(5 + 11 / 12, "feet"),
  12409. default: true
  12410. },
  12411. ]
  12412. ))
  12413. characterMakers.push(() => makeCharacter(
  12414. { name: "Caspian" },
  12415. {
  12416. front: {
  12417. height: math.unit(16 + 5 / 12, "feet"),
  12418. weight: math.unit(524, "lb"),
  12419. name: "Front",
  12420. image: {
  12421. source: "./media/characters/caspian/front.svg",
  12422. extra: 1,
  12423. bottom: 0.04
  12424. }
  12425. },
  12426. },
  12427. [
  12428. {
  12429. name: "Normal",
  12430. height: math.unit(16 + 5 / 12, "feet"),
  12431. default: true
  12432. },
  12433. ]
  12434. ))
  12435. characterMakers.push(() => makeCharacter(
  12436. { name: "Mika" },
  12437. {
  12438. front: {
  12439. height: math.unit(5 + 7 / 12, "feet"),
  12440. weight: math.unit(170, "lb"),
  12441. name: "Front",
  12442. image: {
  12443. source: "./media/characters/mika/front.svg",
  12444. extra: 1,
  12445. bottom: 0.016
  12446. }
  12447. },
  12448. },
  12449. [
  12450. {
  12451. name: "Normal",
  12452. height: math.unit(5 + 7 / 12, "feet"),
  12453. default: true
  12454. },
  12455. ]
  12456. ))
  12457. characterMakers.push(() => makeCharacter(
  12458. { name: "Sol" },
  12459. {
  12460. front: {
  12461. height: math.unit(6 + 2 / 12, "feet"),
  12462. weight: math.unit(268, "lb"),
  12463. name: "Front",
  12464. image: {
  12465. source: "./media/characters/sol/front.svg",
  12466. extra: 247 / 231,
  12467. bottom: 0.05
  12468. }
  12469. },
  12470. },
  12471. [
  12472. {
  12473. name: "Normal",
  12474. height: math.unit(6 + 2 / 12, "feet"),
  12475. default: true
  12476. },
  12477. ]
  12478. ))
  12479. characterMakers.push(() => makeCharacter(
  12480. { name: "Umiko" },
  12481. {
  12482. buizel: {
  12483. height: math.unit(2 + 5 / 12, "feet"),
  12484. weight: math.unit(87, "lb"),
  12485. name: "Buizel",
  12486. image: {
  12487. source: "./media/characters/umiko/buizel.svg",
  12488. extra: 172 / 157,
  12489. bottom: 0.01
  12490. }
  12491. },
  12492. floatzel: {
  12493. height: math.unit(5 + 9 / 12, "feet"),
  12494. weight: math.unit(250, "lb"),
  12495. name: "Floatzel",
  12496. image: {
  12497. source: "./media/characters/umiko/floatzel.svg",
  12498. extra: 262 / 248
  12499. }
  12500. },
  12501. },
  12502. [
  12503. {
  12504. name: "Normal",
  12505. height: math.unit(2 + 5 / 12, "feet"),
  12506. default: true
  12507. },
  12508. ]
  12509. ))
  12510. characterMakers.push(() => makeCharacter(
  12511. { name: "Iliac" },
  12512. {
  12513. front: {
  12514. height: math.unit(6 + 2 / 12, "feet"),
  12515. weight: math.unit(146, "lb"),
  12516. name: "Front",
  12517. image: {
  12518. source: "./media/characters/iliac/front.svg",
  12519. extra: 389 / 365,
  12520. bottom: 0.035
  12521. }
  12522. },
  12523. },
  12524. [
  12525. {
  12526. name: "Normal",
  12527. height: math.unit(6 + 2 / 12, "feet"),
  12528. default: true
  12529. },
  12530. ]
  12531. ))
  12532. characterMakers.push(() => makeCharacter(
  12533. { name: "Topaz" },
  12534. {
  12535. front: {
  12536. height: math.unit(6, "feet"),
  12537. weight: math.unit(170, "lb"),
  12538. name: "Front",
  12539. image: {
  12540. source: "./media/characters/topaz/front.svg",
  12541. extra: 317 / 303,
  12542. bottom: 0.055
  12543. }
  12544. },
  12545. },
  12546. [
  12547. {
  12548. name: "Normal",
  12549. height: math.unit(6, "feet"),
  12550. default: true
  12551. },
  12552. ]
  12553. ))
  12554. characterMakers.push(() => makeCharacter(
  12555. { name: "Gabriel" },
  12556. {
  12557. front: {
  12558. height: math.unit(5 + 11 / 12, "feet"),
  12559. weight: math.unit(144, "lb"),
  12560. name: "Front",
  12561. image: {
  12562. source: "./media/characters/gabriel/front.svg",
  12563. extra: 285 / 262,
  12564. bottom: 0.004
  12565. }
  12566. },
  12567. },
  12568. [
  12569. {
  12570. name: "Normal",
  12571. height: math.unit(5 + 11 / 12, "feet"),
  12572. default: true
  12573. },
  12574. ]
  12575. ))
  12576. characterMakers.push(() => makeCharacter(
  12577. { name: "Tempest (Suicune)" },
  12578. {
  12579. side: {
  12580. height: math.unit(6 + 5 / 12, "feet"),
  12581. weight: math.unit(300, "lb"),
  12582. name: "Side",
  12583. image: {
  12584. source: "./media/characters/tempest-suicune/side.svg",
  12585. extra: 195 / 154,
  12586. bottom: 0.04
  12587. }
  12588. },
  12589. },
  12590. [
  12591. {
  12592. name: "Normal",
  12593. height: math.unit(6 + 5 / 12, "feet"),
  12594. default: true
  12595. },
  12596. ]
  12597. ))
  12598. characterMakers.push(() => makeCharacter(
  12599. { name: "Vulcan" },
  12600. {
  12601. front: {
  12602. height: math.unit(7 + 2 / 12, "feet"),
  12603. weight: math.unit(322, "lb"),
  12604. name: "Front",
  12605. image: {
  12606. source: "./media/characters/vulcan/front.svg",
  12607. extra: 154 / 147,
  12608. bottom: 0.04
  12609. }
  12610. },
  12611. },
  12612. [
  12613. {
  12614. name: "Normal",
  12615. height: math.unit(7 + 2 / 12, "feet"),
  12616. default: true
  12617. },
  12618. ]
  12619. ))
  12620. characterMakers.push(() => makeCharacter(
  12621. { name: "Gault" },
  12622. {
  12623. front: {
  12624. height: math.unit(5 + 10 / 12, "feet"),
  12625. weight: math.unit(264, "lb"),
  12626. name: "Front",
  12627. image: {
  12628. source: "./media/characters/gault/front.svg",
  12629. extra: 161 / 140,
  12630. bottom: 0.028
  12631. }
  12632. },
  12633. },
  12634. [
  12635. {
  12636. name: "Normal",
  12637. height: math.unit(5 + 10 / 12, "feet"),
  12638. default: true
  12639. },
  12640. ]
  12641. ))
  12642. characterMakers.push(() => makeCharacter(
  12643. { name: "Shard" },
  12644. {
  12645. front: {
  12646. height: math.unit(6, "feet"),
  12647. weight: math.unit(150, "lb"),
  12648. name: "Front",
  12649. image: {
  12650. source: "./media/characters/shard/front.svg",
  12651. extra: 273 / 238,
  12652. bottom: 0.02
  12653. }
  12654. },
  12655. },
  12656. [
  12657. {
  12658. name: "Normal",
  12659. height: math.unit(3 + 6 / 12, "feet"),
  12660. default: true
  12661. },
  12662. ]
  12663. ))
  12664. characterMakers.push(() => makeCharacter(
  12665. { name: "Ashe" },
  12666. {
  12667. front: {
  12668. height: math.unit(5 + 11 / 12, "feet"),
  12669. weight: math.unit(146, "lb"),
  12670. name: "Front",
  12671. image: {
  12672. source: "./media/characters/ashe/front.svg",
  12673. extra: 400 / 373,
  12674. bottom: 0.01
  12675. }
  12676. },
  12677. },
  12678. [
  12679. {
  12680. name: "Normal",
  12681. height: math.unit(5 + 11 / 12, "feet"),
  12682. default: true
  12683. },
  12684. ]
  12685. ))
  12686. characterMakers.push(() => makeCharacter(
  12687. { name: "Beatrix" },
  12688. {
  12689. front: {
  12690. height: math.unit(5 + 5 / 12, "feet"),
  12691. weight: math.unit(135, "lb"),
  12692. name: "Front",
  12693. image: {
  12694. source: "./media/characters/beatrix/front.svg",
  12695. extra: 392 / 379,
  12696. bottom: 0.01
  12697. }
  12698. },
  12699. },
  12700. [
  12701. {
  12702. name: "Normal",
  12703. height: math.unit(6, "feet"),
  12704. default: true
  12705. },
  12706. ]
  12707. ))
  12708. characterMakers.push(() => makeCharacter(
  12709. { name: "Ignatius" },
  12710. {
  12711. front: {
  12712. height: math.unit(6, "feet"),
  12713. weight: math.unit(150, "lb"),
  12714. name: "Front",
  12715. image: {
  12716. source: "./media/characters/ignatius/front.svg",
  12717. extra: 245 / 222,
  12718. bottom: 0.01
  12719. }
  12720. },
  12721. },
  12722. [
  12723. {
  12724. name: "Normal",
  12725. height: math.unit(5 + 5 / 12, "feet"),
  12726. default: true
  12727. },
  12728. ]
  12729. ))
  12730. characterMakers.push(() => makeCharacter(
  12731. { name: "Mei Li" },
  12732. {
  12733. front: {
  12734. height: math.unit(6 + 2 / 12, "feet"),
  12735. weight: math.unit(138, "lb"),
  12736. name: "Front",
  12737. image: {
  12738. source: "./media/characters/mei-li/front.svg",
  12739. extra: 237 / 229,
  12740. bottom: 0.03
  12741. }
  12742. },
  12743. },
  12744. [
  12745. {
  12746. name: "Normal",
  12747. height: math.unit(6 + 2 / 12, "feet"),
  12748. default: true
  12749. },
  12750. ]
  12751. ))
  12752. characterMakers.push(() => makeCharacter(
  12753. { name: "Puru" },
  12754. {
  12755. front: {
  12756. height: math.unit(2 + 4 / 12, "feet"),
  12757. weight: math.unit(62, "lb"),
  12758. name: "Front",
  12759. image: {
  12760. source: "./media/characters/puru/front.svg",
  12761. extra: 206 / 149,
  12762. bottom: 0.06
  12763. }
  12764. },
  12765. },
  12766. [
  12767. {
  12768. name: "Normal",
  12769. height: math.unit(2 + 4 / 12, "feet"),
  12770. default: true
  12771. },
  12772. ]
  12773. ))
  12774. characterMakers.push(() => makeCharacter(
  12775. { name: "Kee" },
  12776. {
  12777. taur: {
  12778. height: math.unit(11, "feet"),
  12779. weight: math.unit(500, "lb"),
  12780. name: "Taur",
  12781. image: {
  12782. source: "./media/characters/kee/taur.svg",
  12783. extra: 1,
  12784. bottom: 0.04
  12785. }
  12786. },
  12787. },
  12788. [
  12789. {
  12790. name: "Normal",
  12791. height: math.unit(11, "feet"),
  12792. default: true
  12793. },
  12794. ]
  12795. ))
  12796. characterMakers.push(() => makeCharacter(
  12797. { name: "Cobalt (Dracha)" },
  12798. {
  12799. anthro: {
  12800. height: math.unit(7, "feet"),
  12801. weight: math.unit(190, "lb"),
  12802. name: "Anthro",
  12803. image: {
  12804. source: "./media/characters/cobalt-dracha/anthro.svg",
  12805. extra: 231 / 225,
  12806. bottom: 0.04
  12807. }
  12808. },
  12809. feral: {
  12810. height: math.unit(9 + 7 / 12, "feet"),
  12811. weight: math.unit(294, "lb"),
  12812. name: "Feral",
  12813. image: {
  12814. source: "./media/characters/cobalt-dracha/feral.svg",
  12815. extra: 692 / 633,
  12816. bottom: 0.05
  12817. }
  12818. },
  12819. },
  12820. [
  12821. {
  12822. name: "Normal",
  12823. height: math.unit(7, "feet"),
  12824. default: true
  12825. },
  12826. ]
  12827. ))
  12828. characterMakers.push(() => makeCharacter(
  12829. { name: "Java" },
  12830. {
  12831. fallen: {
  12832. height: math.unit(11 + 8 / 12, "feet"),
  12833. weight: math.unit(485, "lb"),
  12834. name: "Java (Fallen)",
  12835. rename: true,
  12836. image: {
  12837. source: "./media/characters/java/fallen.svg",
  12838. extra: 226 / 208,
  12839. bottom: 0.005
  12840. }
  12841. },
  12842. godkin: {
  12843. height: math.unit(10 + 6 / 12, "feet"),
  12844. weight: math.unit(328, "lb"),
  12845. name: "Java (Godkin)",
  12846. rename: true,
  12847. image: {
  12848. source: "./media/characters/java/godkin.svg",
  12849. extra: 270 / 262,
  12850. bottom: 0.02
  12851. }
  12852. },
  12853. },
  12854. [
  12855. {
  12856. name: "Normal",
  12857. height: math.unit(11 + 8 / 12, "feet"),
  12858. default: true
  12859. },
  12860. ]
  12861. ))
  12862. characterMakers.push(() => makeCharacter(
  12863. { name: "Skoll" },
  12864. {
  12865. front: {
  12866. height: math.unit(7 + 8 / 12, "feet"),
  12867. weight: math.unit(320, "lb"),
  12868. name: "Front",
  12869. image: {
  12870. source: "./media/characters/skoll/front.svg",
  12871. extra: 232 / 220,
  12872. bottom: 0.02
  12873. }
  12874. },
  12875. },
  12876. [
  12877. {
  12878. name: "Normal",
  12879. height: math.unit(7 + 8 / 12, "feet"),
  12880. default: true
  12881. },
  12882. ]
  12883. ))
  12884. characterMakers.push(() => makeCharacter(
  12885. { name: "Purna" },
  12886. {
  12887. front: {
  12888. height: math.unit(5 + 9 / 12, "feet"),
  12889. weight: math.unit(170, "lb"),
  12890. name: "Front",
  12891. image: {
  12892. source: "./media/characters/purna/front.svg",
  12893. extra: 239 / 229,
  12894. bottom: 0.01
  12895. }
  12896. },
  12897. },
  12898. [
  12899. {
  12900. name: "Normal",
  12901. height: math.unit(5 + 9 / 12, "feet"),
  12902. default: true
  12903. },
  12904. ]
  12905. ))
  12906. characterMakers.push(() => makeCharacter(
  12907. { name: "Kuva" },
  12908. {
  12909. front: {
  12910. height: math.unit(5 + 9 / 12, "feet"),
  12911. weight: math.unit(142, "lb"),
  12912. name: "Front",
  12913. image: {
  12914. source: "./media/characters/kuva/front.svg",
  12915. extra: 281 / 271,
  12916. bottom: 0.006
  12917. }
  12918. },
  12919. },
  12920. [
  12921. {
  12922. name: "Normal",
  12923. height: math.unit(5 + 9 / 12, "feet"),
  12924. default: true
  12925. },
  12926. ]
  12927. ))
  12928. characterMakers.push(() => makeCharacter(
  12929. { name: "Embra" },
  12930. {
  12931. anthro: {
  12932. height: math.unit(9 + 2 / 12, "feet"),
  12933. weight: math.unit(270, "lb"),
  12934. name: "Anthro",
  12935. image: {
  12936. source: "./media/characters/embra/anthro.svg",
  12937. extra: 200 / 187,
  12938. bottom: 0.02
  12939. }
  12940. },
  12941. feral: {
  12942. height: math.unit(18 + 8 / 12, "feet"),
  12943. weight: math.unit(576, "lb"),
  12944. name: "Feral",
  12945. image: {
  12946. source: "./media/characters/embra/feral.svg",
  12947. extra: 152 / 137,
  12948. bottom: 0.037
  12949. }
  12950. },
  12951. },
  12952. [
  12953. {
  12954. name: "Normal",
  12955. height: math.unit(9 + 2 / 12, "feet"),
  12956. default: true
  12957. },
  12958. ]
  12959. ))
  12960. characterMakers.push(() => makeCharacter(
  12961. { name: "Grottos" },
  12962. {
  12963. anthro: {
  12964. height: math.unit(10 + 9 / 12, "feet"),
  12965. weight: math.unit(224, "lb"),
  12966. name: "Anthro",
  12967. image: {
  12968. source: "./media/characters/grottos/anthro.svg",
  12969. extra: 350 / 332,
  12970. bottom: 0.045
  12971. }
  12972. },
  12973. feral: {
  12974. height: math.unit(20 + 7 / 12, "feet"),
  12975. weight: math.unit(629, "lb"),
  12976. name: "Feral",
  12977. image: {
  12978. source: "./media/characters/grottos/feral.svg",
  12979. extra: 207 / 190,
  12980. bottom: 0.05
  12981. }
  12982. },
  12983. },
  12984. [
  12985. {
  12986. name: "Normal",
  12987. height: math.unit(10 + 9 / 12, "feet"),
  12988. default: true
  12989. },
  12990. ]
  12991. ))
  12992. characterMakers.push(() => makeCharacter(
  12993. { name: "Frifna" },
  12994. {
  12995. anthro: {
  12996. height: math.unit(9 + 6 / 12, "feet"),
  12997. weight: math.unit(298, "lb"),
  12998. name: "Anthro",
  12999. image: {
  13000. source: "./media/characters/frifna/anthro.svg",
  13001. extra: 282 / 269,
  13002. bottom: 0.015
  13003. }
  13004. },
  13005. feral: {
  13006. height: math.unit(16 + 2 / 12, "feet"),
  13007. weight: math.unit(624, "lb"),
  13008. name: "Feral",
  13009. image: {
  13010. source: "./media/characters/frifna/feral.svg"
  13011. }
  13012. },
  13013. },
  13014. [
  13015. {
  13016. name: "Normal",
  13017. height: math.unit(9 + 6 / 12, "feet"),
  13018. default: true
  13019. },
  13020. ]
  13021. ))
  13022. characterMakers.push(() => makeCharacter(
  13023. { name: "Elise" },
  13024. {
  13025. front: {
  13026. height: math.unit(6 + 2 / 12, "feet"),
  13027. weight: math.unit(168, "lb"),
  13028. name: "Front",
  13029. image: {
  13030. source: "./media/characters/elise/front.svg",
  13031. extra: 276 / 271
  13032. }
  13033. },
  13034. },
  13035. [
  13036. {
  13037. name: "Normal",
  13038. height: math.unit(6 + 2 / 12, "feet"),
  13039. default: true
  13040. },
  13041. ]
  13042. ))
  13043. characterMakers.push(() => makeCharacter(
  13044. { name: "Glade" },
  13045. {
  13046. front: {
  13047. height: math.unit(5 + 10 / 12, "feet"),
  13048. weight: math.unit(210, "lb"),
  13049. name: "Front",
  13050. image: {
  13051. source: "./media/characters/glade/front.svg",
  13052. extra: 258 / 247,
  13053. bottom: 0.008
  13054. }
  13055. },
  13056. },
  13057. [
  13058. {
  13059. name: "Normal",
  13060. height: math.unit(5 + 10 / 12, "feet"),
  13061. default: true
  13062. },
  13063. ]
  13064. ))
  13065. characterMakers.push(() => makeCharacter(
  13066. { name: "Rina" },
  13067. {
  13068. front: {
  13069. height: math.unit(5 + 10 / 12, "feet"),
  13070. weight: math.unit(129, "lb"),
  13071. name: "Front",
  13072. image: {
  13073. source: "./media/characters/rina/front.svg",
  13074. extra: 266 / 255,
  13075. bottom: 0.005
  13076. }
  13077. },
  13078. },
  13079. [
  13080. {
  13081. name: "Normal",
  13082. height: math.unit(5 + 10 / 12, "feet"),
  13083. default: true
  13084. },
  13085. ]
  13086. ))
  13087. characterMakers.push(() => makeCharacter(
  13088. { name: "Veronica" },
  13089. {
  13090. front: {
  13091. height: math.unit(6 + 1 / 12, "feet"),
  13092. weight: math.unit(192, "lb"),
  13093. name: "Front",
  13094. image: {
  13095. source: "./media/characters/veronica/front.svg",
  13096. extra: 319 / 309,
  13097. bottom: 0.005
  13098. }
  13099. },
  13100. },
  13101. [
  13102. {
  13103. name: "Normal",
  13104. height: math.unit(6 + 1 / 12, "feet"),
  13105. default: true
  13106. },
  13107. ]
  13108. ))
  13109. characterMakers.push(() => makeCharacter(
  13110. { name: "Braxton" },
  13111. {
  13112. front: {
  13113. height: math.unit(9 + 3 / 12, "feet"),
  13114. weight: math.unit(1100, "lb"),
  13115. name: "Front",
  13116. image: {
  13117. source: "./media/characters/braxton/front.svg",
  13118. extra: 1057 / 984,
  13119. bottom: 0.05
  13120. }
  13121. },
  13122. },
  13123. [
  13124. {
  13125. name: "Normal",
  13126. height: math.unit(9 + 3 / 12, "feet")
  13127. },
  13128. {
  13129. name: "Giant",
  13130. height: math.unit(300, "feet"),
  13131. default: true
  13132. },
  13133. {
  13134. name: "Macro",
  13135. height: math.unit(700, "feet")
  13136. },
  13137. {
  13138. name: "Megamacro",
  13139. height: math.unit(6000, "feet")
  13140. },
  13141. ]
  13142. ))
  13143. characterMakers.push(() => makeCharacter(
  13144. { name: "Blue Feyonics" },
  13145. {
  13146. front: {
  13147. height: math.unit(6 + 7 / 12, "feet"),
  13148. weight: math.unit(150, "lb"),
  13149. name: "Front",
  13150. image: {
  13151. source: "./media/characters/blue-feyonics/front.svg",
  13152. extra: 1403 / 1306,
  13153. bottom: 0.047
  13154. }
  13155. },
  13156. },
  13157. [
  13158. {
  13159. name: "Normal",
  13160. height: math.unit(6 + 7 / 12, "feet"),
  13161. default: true
  13162. },
  13163. ]
  13164. ))
  13165. characterMakers.push(() => makeCharacter(
  13166. { name: "Maxwell" },
  13167. {
  13168. front: {
  13169. height: math.unit(1.8, "meters"),
  13170. weight: math.unit(60, "kg"),
  13171. name: "Front",
  13172. image: {
  13173. source: "./media/characters/maxwell/front.svg",
  13174. extra: 2060 / 1873
  13175. }
  13176. },
  13177. },
  13178. [
  13179. {
  13180. name: "Micro",
  13181. height: math.unit(1, "mm")
  13182. },
  13183. {
  13184. name: "Normal",
  13185. height: math.unit(1.8, "meter"),
  13186. default: true
  13187. },
  13188. {
  13189. name: "Macro",
  13190. height: math.unit(30, "meters")
  13191. },
  13192. {
  13193. name: "Megamacro",
  13194. height: math.unit(10, "km")
  13195. },
  13196. ]
  13197. ))
  13198. characterMakers.push(() => makeCharacter(
  13199. { name: "Jack" },
  13200. {
  13201. front: {
  13202. height: math.unit(6, "feet"),
  13203. weight: math.unit(150, "lb"),
  13204. name: "Front",
  13205. image: {
  13206. source: "./media/characters/jack/front.svg",
  13207. extra: 1754 / 1640,
  13208. bottom: 0.01
  13209. }
  13210. },
  13211. },
  13212. [
  13213. {
  13214. name: "Normal",
  13215. height: math.unit(80000, "feet"),
  13216. default: true
  13217. },
  13218. {
  13219. name: "Max size",
  13220. height: math.unit(10, "lightyears")
  13221. },
  13222. ]
  13223. ))
  13224. characterMakers.push(() => makeCharacter(
  13225. { name: "Cafat" },
  13226. {
  13227. upright: {
  13228. height: math.unit(7, "feet"),
  13229. weight: math.unit(170, "lb"),
  13230. name: "Upright",
  13231. image: {
  13232. source: "./media/characters/cafat/upright.svg",
  13233. bottom: 0.01
  13234. }
  13235. },
  13236. uprightFull: {
  13237. height: math.unit(7, "feet"),
  13238. weight: math.unit(170, "lb"),
  13239. name: "Upright (Full)",
  13240. image: {
  13241. source: "./media/characters/cafat/upright-full.svg",
  13242. bottom: 0.01
  13243. }
  13244. },
  13245. side: {
  13246. height: math.unit(5, "feet"),
  13247. weight: math.unit(150, "lb"),
  13248. name: "Side",
  13249. image: {
  13250. source: "./media/characters/cafat/side.svg"
  13251. }
  13252. },
  13253. },
  13254. [
  13255. {
  13256. name: "Small",
  13257. height: math.unit(7, "feet"),
  13258. default: true
  13259. },
  13260. {
  13261. name: "Large",
  13262. height: math.unit(15.5, "feet")
  13263. },
  13264. ]
  13265. ))
  13266. characterMakers.push(() => makeCharacter(
  13267. { name: "Verin Raharra" },
  13268. {
  13269. front: {
  13270. height: math.unit(6, "feet"),
  13271. weight: math.unit(150, "lb"),
  13272. name: "Front",
  13273. image: {
  13274. source: "./media/characters/verin-raharra/front.svg",
  13275. extra: 5019 / 4835,
  13276. bottom: 0.023
  13277. }
  13278. },
  13279. },
  13280. [
  13281. {
  13282. name: "Normal",
  13283. height: math.unit(7 + 5 / 12, "feet"),
  13284. default: true
  13285. },
  13286. {
  13287. name: "Upsized",
  13288. height: math.unit(20, "feet")
  13289. },
  13290. ]
  13291. ))
  13292. characterMakers.push(() => makeCharacter(
  13293. { name: "Nakata" },
  13294. {
  13295. front: {
  13296. height: math.unit(7, "feet"),
  13297. weight: math.unit(230, "lb"),
  13298. name: "Front",
  13299. image: {
  13300. source: "./media/characters/nakata/front.svg",
  13301. extra: 1.005,
  13302. bottom: 0.01
  13303. }
  13304. },
  13305. },
  13306. [
  13307. {
  13308. name: "Normal",
  13309. height: math.unit(7, "feet"),
  13310. default: true
  13311. },
  13312. {
  13313. name: "Big",
  13314. height: math.unit(14, "feet")
  13315. },
  13316. {
  13317. name: "Macro",
  13318. height: math.unit(400, "feet")
  13319. },
  13320. ]
  13321. ))
  13322. characterMakers.push(() => makeCharacter(
  13323. { name: "Lily" },
  13324. {
  13325. front: {
  13326. height: math.unit(4.91, "feet"),
  13327. weight: math.unit(100, "lb"),
  13328. name: "Front",
  13329. image: {
  13330. source: "./media/characters/lily/front.svg",
  13331. extra: 1585 / 1415,
  13332. bottom: 0.02
  13333. }
  13334. },
  13335. },
  13336. [
  13337. {
  13338. name: "Normal",
  13339. height: math.unit(4.91, "feet"),
  13340. default: true
  13341. },
  13342. ]
  13343. ))
  13344. characterMakers.push(() => makeCharacter(
  13345. { name: "Sheila" },
  13346. {
  13347. laying: {
  13348. height: math.unit(4 + 4 / 12, "feet"),
  13349. weight: math.unit(600, "lb"),
  13350. name: "Laying",
  13351. image: {
  13352. source: "./media/characters/sheila/laying.svg",
  13353. extra: 1333 / 1265,
  13354. bottom: 0.16
  13355. }
  13356. },
  13357. },
  13358. [
  13359. {
  13360. name: "Normal",
  13361. height: math.unit(4 + 4 / 12, "feet"),
  13362. default: true
  13363. },
  13364. ]
  13365. ))
  13366. characterMakers.push(() => makeCharacter(
  13367. { name: "Sax" },
  13368. {
  13369. front: {
  13370. height: math.unit(6, "feet"),
  13371. weight: math.unit(190, "lb"),
  13372. name: "Front",
  13373. image: {
  13374. source: "./media/characters/sax/front.svg",
  13375. extra: 1187 / 973,
  13376. bottom: 0.042
  13377. }
  13378. },
  13379. },
  13380. [
  13381. {
  13382. name: "Micro",
  13383. height: math.unit(4, "inches"),
  13384. default: true
  13385. },
  13386. ]
  13387. ))
  13388. characterMakers.push(() => makeCharacter(
  13389. { name: "Pandora" },
  13390. {
  13391. front: {
  13392. height: math.unit(6, "feet"),
  13393. weight: math.unit(150, "lb"),
  13394. name: "Front",
  13395. image: {
  13396. source: "./media/characters/pandora/front.svg",
  13397. extra: 2720 / 2556,
  13398. bottom: 0.015
  13399. }
  13400. },
  13401. back: {
  13402. height: math.unit(6, "feet"),
  13403. weight: math.unit(150, "lb"),
  13404. name: "Back",
  13405. image: {
  13406. source: "./media/characters/pandora/back.svg",
  13407. extra: 2720 / 2556,
  13408. bottom: 0.01
  13409. }
  13410. },
  13411. beans: {
  13412. height: math.unit(6 / 8, "feet"),
  13413. name: "Beans",
  13414. image: {
  13415. source: "./media/characters/pandora/beans.svg"
  13416. }
  13417. },
  13418. skirt: {
  13419. height: math.unit(6, "feet"),
  13420. weight: math.unit(150, "lb"),
  13421. name: "Skirt",
  13422. image: {
  13423. source: "./media/characters/pandora/skirt.svg",
  13424. extra: 1622 / 1525,
  13425. bottom: 0.015
  13426. }
  13427. },
  13428. hoodie: {
  13429. height: math.unit(6, "feet"),
  13430. weight: math.unit(150, "lb"),
  13431. name: "Hoodie",
  13432. image: {
  13433. source: "./media/characters/pandora/hoodie.svg",
  13434. extra: 1622 / 1525,
  13435. bottom: 0.015
  13436. }
  13437. },
  13438. casual: {
  13439. height: math.unit(6, "feet"),
  13440. weight: math.unit(150, "lb"),
  13441. name: "Casual",
  13442. image: {
  13443. source: "./media/characters/pandora/casual.svg",
  13444. extra: 1622 / 1525,
  13445. bottom: 0.015
  13446. }
  13447. },
  13448. },
  13449. [
  13450. {
  13451. name: "Normal",
  13452. height: math.unit(6, "feet")
  13453. },
  13454. {
  13455. name: "Big Steppy",
  13456. height: math.unit(1, "km"),
  13457. default: true
  13458. },
  13459. ]
  13460. ))
  13461. characterMakers.push(() => makeCharacter(
  13462. { name: "Venio Darcony" },
  13463. {
  13464. side: {
  13465. height: math.unit(10, "feet"),
  13466. weight: math.unit(800, "kg"),
  13467. name: "Side",
  13468. image: {
  13469. source: "./media/characters/venio-darcony/side.svg",
  13470. extra: 1373 / 1003,
  13471. bottom: 0.037
  13472. }
  13473. },
  13474. front: {
  13475. height: math.unit(19, "feet"),
  13476. weight: math.unit(800, "kg"),
  13477. name: "Front",
  13478. image: {
  13479. source: "./media/characters/venio-darcony/front.svg"
  13480. }
  13481. },
  13482. back: {
  13483. height: math.unit(19, "feet"),
  13484. weight: math.unit(800, "kg"),
  13485. name: "Back",
  13486. image: {
  13487. source: "./media/characters/venio-darcony/back.svg"
  13488. }
  13489. },
  13490. },
  13491. [
  13492. {
  13493. name: "Normal",
  13494. height: math.unit(10, "feet")
  13495. },
  13496. {
  13497. name: "Macro",
  13498. height: math.unit(130, "feet"),
  13499. default: true
  13500. },
  13501. {
  13502. name: "Macro+",
  13503. height: math.unit(240, "feet")
  13504. },
  13505. ]
  13506. ))
  13507. characterMakers.push(() => makeCharacter(
  13508. { name: "Veski" },
  13509. {
  13510. front: {
  13511. height: math.unit(6, "feet"),
  13512. weight: math.unit(150, "lb"),
  13513. name: "Front",
  13514. image: {
  13515. source: "./media/characters/veski/front.svg",
  13516. extra: 1299 / 1225,
  13517. bottom: 0.04
  13518. }
  13519. },
  13520. back: {
  13521. height: math.unit(6, "feet"),
  13522. weight: math.unit(150, "lb"),
  13523. name: "Back",
  13524. image: {
  13525. source: "./media/characters/veski/back.svg",
  13526. extra: 1299 / 1225,
  13527. bottom: 0.008
  13528. }
  13529. },
  13530. maw: {
  13531. height: math.unit(1.5 * 1.21, "feet"),
  13532. name: "Maw",
  13533. image: {
  13534. source: "./media/characters/veski/maw.svg"
  13535. }
  13536. },
  13537. },
  13538. [
  13539. {
  13540. name: "Macro",
  13541. height: math.unit(2, "km"),
  13542. default: true
  13543. },
  13544. ]
  13545. ))
  13546. characterMakers.push(() => makeCharacter(
  13547. { name: "Isabelle" },
  13548. {
  13549. front: {
  13550. height: math.unit(5 + 7 / 12, "feet"),
  13551. name: "Front",
  13552. image: {
  13553. source: "./media/characters/isabelle/front.svg",
  13554. extra: 2130 / 1976,
  13555. bottom: 0.05
  13556. }
  13557. },
  13558. },
  13559. [
  13560. {
  13561. name: "Supermicro",
  13562. height: math.unit(10, "micrometers")
  13563. },
  13564. {
  13565. name: "Micro",
  13566. height: math.unit(1, "inch")
  13567. },
  13568. {
  13569. name: "Tiny",
  13570. height: math.unit(5, "inches")
  13571. },
  13572. {
  13573. name: "Standard",
  13574. height: math.unit(5 + 7 / 12, "inches")
  13575. },
  13576. {
  13577. name: "Macro",
  13578. height: math.unit(80, "meters"),
  13579. default: true
  13580. },
  13581. {
  13582. name: "Megamacro",
  13583. height: math.unit(250, "meters")
  13584. },
  13585. {
  13586. name: "Gigamacro",
  13587. height: math.unit(5, "km")
  13588. },
  13589. {
  13590. name: "Cosmic",
  13591. height: math.unit(2.5e6, "miles")
  13592. },
  13593. ]
  13594. ))
  13595. characterMakers.push(() => makeCharacter(
  13596. { name: "Hanzo" },
  13597. {
  13598. front: {
  13599. height: math.unit(6, "feet"),
  13600. weight: math.unit(150, "lb"),
  13601. name: "Front",
  13602. image: {
  13603. source: "./media/characters/hanzo/front.svg",
  13604. extra: 374 / 344,
  13605. bottom: 0.02
  13606. }
  13607. },
  13608. },
  13609. [
  13610. {
  13611. name: "Normal",
  13612. height: math.unit(8, "feet"),
  13613. default: true
  13614. },
  13615. ]
  13616. ))
  13617. characterMakers.push(() => makeCharacter(
  13618. { name: "Anna" },
  13619. {
  13620. front: {
  13621. height: math.unit(7, "feet"),
  13622. weight: math.unit(130, "lb"),
  13623. name: "Front",
  13624. image: {
  13625. source: "./media/characters/anna/front.svg",
  13626. extra: 169 / 145,
  13627. bottom: 0.06
  13628. }
  13629. },
  13630. full: {
  13631. height: math.unit(4.96, "feet"),
  13632. weight: math.unit(220, "lb"),
  13633. name: "Full",
  13634. image: {
  13635. source: "./media/characters/anna/full.svg",
  13636. extra: 138 / 114,
  13637. bottom: 0.15
  13638. }
  13639. },
  13640. tongue: {
  13641. height: math.unit(2.53, "feet"),
  13642. name: "Tongue",
  13643. image: {
  13644. source: "./media/characters/anna/tongue.svg"
  13645. }
  13646. },
  13647. },
  13648. [
  13649. {
  13650. name: "Normal",
  13651. height: math.unit(7, "feet"),
  13652. default: true
  13653. },
  13654. ]
  13655. ))
  13656. characterMakers.push(() => makeCharacter(
  13657. { name: "Ian Corvid" },
  13658. {
  13659. front: {
  13660. height: math.unit(7, "feet"),
  13661. weight: math.unit(150, "lb"),
  13662. name: "Front",
  13663. image: {
  13664. source: "./media/characters/ian-corvid/front.svg",
  13665. extra: 150 / 142,
  13666. bottom: 0.02
  13667. }
  13668. },
  13669. back: {
  13670. height: math.unit(7, "feet"),
  13671. weight: math.unit(150, "lb"),
  13672. name: "Back",
  13673. image: {
  13674. source: "./media/characters/ian-corvid/back.svg",
  13675. extra: 150 / 143,
  13676. bottom: 0.01
  13677. }
  13678. },
  13679. stomping: {
  13680. height: math.unit(7, "feet"),
  13681. weight: math.unit(150, "lb"),
  13682. name: "Stomping",
  13683. image: {
  13684. source: "./media/characters/ian-corvid/stomping.svg",
  13685. extra: 76 / 72
  13686. }
  13687. },
  13688. sitting: {
  13689. height: math.unit(7 / 1.8, "feet"),
  13690. weight: math.unit(150, "lb"),
  13691. name: "Sitting",
  13692. image: {
  13693. source: "./media/characters/ian-corvid/sitting.svg",
  13694. extra: 1400 / 1269,
  13695. bottom: 0.15
  13696. }
  13697. },
  13698. },
  13699. [
  13700. {
  13701. name: "Tiny Microw",
  13702. height: math.unit(1, "inch")
  13703. },
  13704. {
  13705. name: "Microw",
  13706. height: math.unit(6, "inches")
  13707. },
  13708. {
  13709. name: "Crow",
  13710. height: math.unit(7 + 1 / 12, "feet"),
  13711. default: true
  13712. },
  13713. {
  13714. name: "Macrow",
  13715. height: math.unit(176, "feet")
  13716. },
  13717. ]
  13718. ))
  13719. characterMakers.push(() => makeCharacter(
  13720. { name: "Natalie Kellon" },
  13721. {
  13722. front: {
  13723. height: math.unit(5 + 7 / 12, "feet"),
  13724. weight: math.unit(147, "lb"),
  13725. name: "Front",
  13726. image: {
  13727. source: "./media/characters/natalie-kellon/front.svg",
  13728. extra: 1214 / 1141,
  13729. bottom: 0.02
  13730. }
  13731. },
  13732. },
  13733. [
  13734. {
  13735. name: "Micro",
  13736. height: math.unit(1 / 16, "inch")
  13737. },
  13738. {
  13739. name: "Tiny",
  13740. height: math.unit(4, "inches")
  13741. },
  13742. {
  13743. name: "Normal",
  13744. height: math.unit(5 + 7 / 12, "feet"),
  13745. default: true
  13746. },
  13747. {
  13748. name: "Amazon",
  13749. height: math.unit(12, "feet")
  13750. },
  13751. {
  13752. name: "Giantess",
  13753. height: math.unit(160, "meters")
  13754. },
  13755. {
  13756. name: "Titaness",
  13757. height: math.unit(800, "meters")
  13758. },
  13759. ]
  13760. ))
  13761. characterMakers.push(() => makeCharacter(
  13762. { name: "Alluria" },
  13763. {
  13764. front: {
  13765. height: math.unit(6, "feet"),
  13766. weight: math.unit(150, "lb"),
  13767. name: "Front",
  13768. image: {
  13769. source: "./media/characters/alluria/front.svg",
  13770. extra: 806 / 738,
  13771. bottom: 0.01
  13772. }
  13773. },
  13774. side: {
  13775. height: math.unit(6, "feet"),
  13776. weight: math.unit(150, "lb"),
  13777. name: "Side",
  13778. image: {
  13779. source: "./media/characters/alluria/side.svg",
  13780. extra: 800 / 750,
  13781. }
  13782. },
  13783. back: {
  13784. height: math.unit(6, "feet"),
  13785. weight: math.unit(150, "lb"),
  13786. name: "Back",
  13787. image: {
  13788. source: "./media/characters/alluria/back.svg",
  13789. extra: 806 / 738,
  13790. }
  13791. },
  13792. frontMaid: {
  13793. height: math.unit(6, "feet"),
  13794. weight: math.unit(150, "lb"),
  13795. name: "Front (Maid)",
  13796. image: {
  13797. source: "./media/characters/alluria/front-maid.svg",
  13798. extra: 806 / 738,
  13799. bottom: 0.01
  13800. }
  13801. },
  13802. sideMaid: {
  13803. height: math.unit(6, "feet"),
  13804. weight: math.unit(150, "lb"),
  13805. name: "Side (Maid)",
  13806. image: {
  13807. source: "./media/characters/alluria/side-maid.svg",
  13808. extra: 800 / 750,
  13809. bottom: 0.005
  13810. }
  13811. },
  13812. backMaid: {
  13813. height: math.unit(6, "feet"),
  13814. weight: math.unit(150, "lb"),
  13815. name: "Back (Maid)",
  13816. image: {
  13817. source: "./media/characters/alluria/back-maid.svg",
  13818. extra: 806 / 738,
  13819. }
  13820. },
  13821. },
  13822. [
  13823. {
  13824. name: "Micro",
  13825. height: math.unit(6, "inches"),
  13826. default: true
  13827. },
  13828. ]
  13829. ))
  13830. characterMakers.push(() => makeCharacter(
  13831. { name: "Kyle" },
  13832. {
  13833. front: {
  13834. height: math.unit(6, "feet"),
  13835. weight: math.unit(150, "lb"),
  13836. name: "Front",
  13837. image: {
  13838. source: "./media/characters/kyle/front.svg",
  13839. extra: 1069 / 962,
  13840. bottom: 77.228 / 1727.45
  13841. }
  13842. },
  13843. },
  13844. [
  13845. {
  13846. name: "Macro",
  13847. height: math.unit(150, "feet"),
  13848. default: true
  13849. },
  13850. ]
  13851. ))
  13852. characterMakers.push(() => makeCharacter(
  13853. { name: "Duncan" },
  13854. {
  13855. front: {
  13856. height: math.unit(6, "feet"),
  13857. weight: math.unit(300, "lb"),
  13858. name: "Front",
  13859. image: {
  13860. source: "./media/characters/duncan/front.svg",
  13861. extra: 1650 / 1482,
  13862. bottom: 0.05
  13863. }
  13864. },
  13865. },
  13866. [
  13867. {
  13868. name: "Macro",
  13869. height: math.unit(100, "feet"),
  13870. default: true
  13871. },
  13872. ]
  13873. ))
  13874. characterMakers.push(() => makeCharacter(
  13875. { name: "Memory" },
  13876. {
  13877. front: {
  13878. height: math.unit(5 + 4 / 12, "feet"),
  13879. weight: math.unit(220, "lb"),
  13880. name: "Front",
  13881. image: {
  13882. source: "./media/characters/memory/front.svg",
  13883. extra: 3641 / 3545,
  13884. bottom: 0.03
  13885. }
  13886. },
  13887. back: {
  13888. height: math.unit(5 + 4 / 12, "feet"),
  13889. weight: math.unit(220, "lb"),
  13890. name: "Back",
  13891. image: {
  13892. source: "./media/characters/memory/back.svg",
  13893. extra: 3641 / 3545,
  13894. bottom: 0.025
  13895. }
  13896. },
  13897. frontSkirt: {
  13898. height: math.unit(5 + 4 / 12, "feet"),
  13899. weight: math.unit(220, "lb"),
  13900. name: "Front (Skirt)",
  13901. image: {
  13902. source: "./media/characters/memory/front-skirt.svg",
  13903. extra: 3641 / 3545,
  13904. bottom: 0.03
  13905. }
  13906. },
  13907. frontDress: {
  13908. height: math.unit(5 + 4 / 12, "feet"),
  13909. weight: math.unit(220, "lb"),
  13910. name: "Front (Dress)",
  13911. image: {
  13912. source: "./media/characters/memory/front-dress.svg",
  13913. extra: 3641 / 3545,
  13914. bottom: 0.03
  13915. }
  13916. },
  13917. },
  13918. [
  13919. {
  13920. name: "Micro",
  13921. height: math.unit(6, "inches"),
  13922. default: true
  13923. },
  13924. {
  13925. name: "Normal",
  13926. height: math.unit(5 + 4 / 12, "feet")
  13927. },
  13928. ]
  13929. ))
  13930. characterMakers.push(() => makeCharacter(
  13931. { name: "Luno" },
  13932. {
  13933. front: {
  13934. height: math.unit(4 + 11 / 12, "feet"),
  13935. weight: math.unit(100, "lb"),
  13936. name: "Front",
  13937. image: {
  13938. source: "./media/characters/luno/front.svg",
  13939. extra: 1535 / 1487,
  13940. bottom: 0.03
  13941. }
  13942. },
  13943. },
  13944. [
  13945. {
  13946. name: "Micro",
  13947. height: math.unit(3, "inches")
  13948. },
  13949. {
  13950. name: "Normal",
  13951. height: math.unit(4 + 11 / 12, "feet"),
  13952. default: true
  13953. },
  13954. {
  13955. name: "Macro",
  13956. height: math.unit(300, "feet")
  13957. },
  13958. {
  13959. name: "Megamacro",
  13960. height: math.unit(700, "miles")
  13961. },
  13962. ]
  13963. ))
  13964. characterMakers.push(() => makeCharacter(
  13965. { name: "Jamesy" },
  13966. {
  13967. front: {
  13968. height: math.unit(6 + 2 / 12, "feet"),
  13969. weight: math.unit(170, "lb"),
  13970. name: "Front",
  13971. image: {
  13972. source: "./media/characters/jamesy/front.svg",
  13973. extra: 440 / 382,
  13974. bottom: 0.005
  13975. }
  13976. },
  13977. },
  13978. [
  13979. {
  13980. name: "Micro",
  13981. height: math.unit(3, "inches")
  13982. },
  13983. {
  13984. name: "Normal",
  13985. height: math.unit(6 + 2 / 12, "feet"),
  13986. default: true
  13987. },
  13988. {
  13989. name: "Macro",
  13990. height: math.unit(300, "feet")
  13991. },
  13992. {
  13993. name: "Megamacro",
  13994. height: math.unit(700, "miles")
  13995. },
  13996. ]
  13997. ))
  13998. characterMakers.push(() => makeCharacter(
  13999. { name: "Mark" },
  14000. {
  14001. front: {
  14002. height: math.unit(6, "feet"),
  14003. weight: math.unit(160, "lb"),
  14004. name: "Front",
  14005. image: {
  14006. source: "./media/characters/mark/front.svg",
  14007. extra: 3300 / 3100,
  14008. bottom: 136.42 / 3440.47
  14009. }
  14010. },
  14011. },
  14012. [
  14013. {
  14014. name: "Macro",
  14015. height: math.unit(120, "meters")
  14016. },
  14017. {
  14018. name: "Bigger Macro",
  14019. height: math.unit(350, "meters")
  14020. },
  14021. {
  14022. name: "Megamacro",
  14023. height: math.unit(8, "km"),
  14024. default: true
  14025. },
  14026. {
  14027. name: "Continental",
  14028. height: math.unit(4550, "km")
  14029. },
  14030. {
  14031. name: "Planetary",
  14032. height: math.unit(65000, "km")
  14033. },
  14034. ]
  14035. ))
  14036. characterMakers.push(() => makeCharacter(
  14037. { name: "Mac" },
  14038. {
  14039. front: {
  14040. height: math.unit(6, "feet"),
  14041. weight: math.unit(400, "lb"),
  14042. name: "Front",
  14043. image: {
  14044. source: "./media/characters/mac/front.svg",
  14045. extra: 1048 / 987.7,
  14046. bottom: 60 / 1107.6,
  14047. }
  14048. },
  14049. },
  14050. [
  14051. {
  14052. name: "Macro",
  14053. height: math.unit(500, "feet"),
  14054. default: true
  14055. },
  14056. ]
  14057. ))
  14058. characterMakers.push(() => makeCharacter(
  14059. { name: "Bari" },
  14060. {
  14061. front: {
  14062. height: math.unit(5 + 2 / 12, "feet"),
  14063. weight: math.unit(190, "lb"),
  14064. name: "Front",
  14065. image: {
  14066. source: "./media/characters/bari/front.svg",
  14067. extra: 3156 / 2880,
  14068. bottom: 0.03
  14069. }
  14070. },
  14071. back: {
  14072. height: math.unit(5 + 2 / 12, "feet"),
  14073. weight: math.unit(190, "lb"),
  14074. name: "Back",
  14075. image: {
  14076. source: "./media/characters/bari/back.svg",
  14077. extra: 3260 / 2834,
  14078. bottom: 0.025
  14079. }
  14080. },
  14081. frontPlush: {
  14082. height: math.unit(5 + 2 / 12, "feet"),
  14083. weight: math.unit(190, "lb"),
  14084. name: "Front (Plush)",
  14085. image: {
  14086. source: "./media/characters/bari/front-plush.svg",
  14087. extra: 1112 / 1061,
  14088. bottom: 0.002
  14089. }
  14090. },
  14091. },
  14092. [
  14093. {
  14094. name: "Micro",
  14095. height: math.unit(3, "inches")
  14096. },
  14097. {
  14098. name: "Normal",
  14099. height: math.unit(5 + 2 / 12, "feet"),
  14100. default: true
  14101. },
  14102. {
  14103. name: "Macro",
  14104. height: math.unit(20, "feet")
  14105. },
  14106. ]
  14107. ))
  14108. characterMakers.push(() => makeCharacter(
  14109. { name: "Hunter Misha Raven" },
  14110. {
  14111. front: {
  14112. height: math.unit(6 + 1 / 12, "feet"),
  14113. weight: math.unit(275, "lb"),
  14114. name: "Front",
  14115. image: {
  14116. source: "./media/characters/hunter-misha-raven/front.svg"
  14117. }
  14118. },
  14119. },
  14120. [
  14121. {
  14122. name: "Mortal",
  14123. height: math.unit(6 + 1 / 12, "feet")
  14124. },
  14125. {
  14126. name: "Divine",
  14127. height: math.unit(1.12134e34, "parsecs"),
  14128. default: true
  14129. },
  14130. ]
  14131. ))
  14132. characterMakers.push(() => makeCharacter(
  14133. { name: "Max Calore" },
  14134. {
  14135. front: {
  14136. height: math.unit(6 + 3 / 12, "feet"),
  14137. weight: math.unit(220, "lb"),
  14138. name: "Front",
  14139. image: {
  14140. source: "./media/characters/max-calore/front.svg",
  14141. extra: 1700 / 1648,
  14142. bottom: 0.01
  14143. }
  14144. },
  14145. back: {
  14146. height: math.unit(6 + 3 / 12, "feet"),
  14147. weight: math.unit(220, "lb"),
  14148. name: "Back",
  14149. image: {
  14150. source: "./media/characters/max-calore/back.svg",
  14151. extra: 1700 / 1648,
  14152. bottom: 0.01
  14153. }
  14154. },
  14155. },
  14156. [
  14157. {
  14158. name: "Normal",
  14159. height: math.unit(6 + 3 / 12, "feet"),
  14160. default: true
  14161. },
  14162. ]
  14163. ))
  14164. characterMakers.push(() => makeCharacter(
  14165. { name: "Aspen" },
  14166. {
  14167. side: {
  14168. height: math.unit(2 + 8 / 12, "feet"),
  14169. weight: math.unit(99, "lb"),
  14170. name: "Side",
  14171. image: {
  14172. source: "./media/characters/aspen/side.svg",
  14173. extra: 152 / 138,
  14174. bottom: 0.032
  14175. }
  14176. },
  14177. },
  14178. [
  14179. {
  14180. name: "Normal",
  14181. height: math.unit(2 + 8 / 12, "feet"),
  14182. default: true
  14183. },
  14184. ]
  14185. ))
  14186. characterMakers.push(() => makeCharacter(
  14187. { name: "Sheila (Wolf)" },
  14188. {
  14189. side: {
  14190. height: math.unit(3 + 2 / 12, "feet"),
  14191. weight: math.unit(224, "lb"),
  14192. name: "Side",
  14193. image: {
  14194. source: "./media/characters/sheila-wolf/side.svg",
  14195. extra: 179 / 166,
  14196. bottom: 0.03
  14197. }
  14198. },
  14199. },
  14200. [
  14201. {
  14202. name: "Normal",
  14203. height: math.unit(3 + 2 / 12, "feet"),
  14204. default: true
  14205. },
  14206. ]
  14207. ))
  14208. characterMakers.push(() => makeCharacter(
  14209. { name: "Michelle" },
  14210. {
  14211. side: {
  14212. height: math.unit(1 + 9 / 12, "feet"),
  14213. weight: math.unit(38, "lb"),
  14214. name: "Side",
  14215. image: {
  14216. source: "./media/characters/michelle/side.svg",
  14217. extra: 147 / 136.7,
  14218. bottom: 0.03
  14219. }
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Normal",
  14225. height: math.unit(1 + 9 / 12, "feet"),
  14226. default: true
  14227. },
  14228. ]
  14229. ))
  14230. characterMakers.push(() => makeCharacter(
  14231. { name: "Nino" },
  14232. {
  14233. front: {
  14234. height: math.unit(1 + 1 / 12, "feet"),
  14235. weight: math.unit(18, "lb"),
  14236. name: "Front",
  14237. image: {
  14238. source: "./media/characters/nino/front.svg"
  14239. }
  14240. },
  14241. },
  14242. [
  14243. {
  14244. name: "Normal",
  14245. height: math.unit(1 + 1 / 12, "feet"),
  14246. default: true
  14247. },
  14248. ]
  14249. ))
  14250. characterMakers.push(() => makeCharacter(
  14251. { name: "Viola" },
  14252. {
  14253. front: {
  14254. height: math.unit(1, "feet"),
  14255. weight: math.unit(16, "lb"),
  14256. name: "Front",
  14257. image: {
  14258. source: "./media/characters/viola/front.svg"
  14259. }
  14260. },
  14261. },
  14262. [
  14263. {
  14264. name: "Normal",
  14265. height: math.unit(1, "feet"),
  14266. default: true
  14267. },
  14268. ]
  14269. ))
  14270. characterMakers.push(() => makeCharacter(
  14271. { name: "Atlas" },
  14272. {
  14273. front: {
  14274. height: math.unit(6 + 5 / 12, "feet"),
  14275. weight: math.unit(580, "lb"),
  14276. name: "Front",
  14277. image: {
  14278. source: "./media/characters/atlas/front.svg",
  14279. extra: 298.5 / 290,
  14280. bottom: 0.015
  14281. }
  14282. },
  14283. },
  14284. [
  14285. {
  14286. name: "Normal",
  14287. height: math.unit(6 + 5 / 12, "feet"),
  14288. default: true
  14289. },
  14290. ]
  14291. ))
  14292. characterMakers.push(() => makeCharacter(
  14293. { name: "Davy" },
  14294. {
  14295. side: {
  14296. height: math.unit(1 + 10 / 12, "feet"),
  14297. weight: math.unit(25, "lb"),
  14298. name: "Side",
  14299. image: {
  14300. source: "./media/characters/davy/side.svg",
  14301. extra: 200 / 170,
  14302. bottom: 0.01
  14303. }
  14304. },
  14305. },
  14306. [
  14307. {
  14308. name: "Normal",
  14309. height: math.unit(1 + 10 / 12, "feet"),
  14310. default: true
  14311. },
  14312. ]
  14313. ))
  14314. characterMakers.push(() => makeCharacter(
  14315. { name: "Fiona" },
  14316. {
  14317. side: {
  14318. height: math.unit(4 + 8 / 12, "feet"),
  14319. weight: math.unit(166, "lb"),
  14320. name: "Side",
  14321. image: {
  14322. source: "./media/characters/fiona/side.svg",
  14323. extra: 232 / 220,
  14324. bottom: 0.03
  14325. }
  14326. },
  14327. },
  14328. [
  14329. {
  14330. name: "Normal",
  14331. height: math.unit(4 + 8 / 12, "feet"),
  14332. default: true
  14333. },
  14334. ]
  14335. ))
  14336. characterMakers.push(() => makeCharacter(
  14337. { name: "Lyla" },
  14338. {
  14339. front: {
  14340. height: math.unit(2, "feet"),
  14341. weight: math.unit(62, "lb"),
  14342. name: "Front",
  14343. image: {
  14344. source: "./media/characters/lyla/front.svg",
  14345. bottom: 0.1
  14346. }
  14347. },
  14348. },
  14349. [
  14350. {
  14351. name: "Normal",
  14352. height: math.unit(2, "feet"),
  14353. default: true
  14354. },
  14355. ]
  14356. ))
  14357. characterMakers.push(() => makeCharacter(
  14358. { name: "Perseus" },
  14359. {
  14360. side: {
  14361. height: math.unit(1.8, "feet"),
  14362. weight: math.unit(44, "lb"),
  14363. name: "Side",
  14364. image: {
  14365. source: "./media/characters/perseus/side.svg",
  14366. bottom: 0.21
  14367. }
  14368. },
  14369. },
  14370. [
  14371. {
  14372. name: "Normal",
  14373. height: math.unit(1.8, "feet"),
  14374. default: true
  14375. },
  14376. ]
  14377. ))
  14378. characterMakers.push(() => makeCharacter(
  14379. { name: "Remus" },
  14380. {
  14381. side: {
  14382. height: math.unit(4 + 2 / 12, "feet"),
  14383. weight: math.unit(20, "lb"),
  14384. name: "Side",
  14385. image: {
  14386. source: "./media/characters/remus/side.svg"
  14387. }
  14388. },
  14389. },
  14390. [
  14391. {
  14392. name: "Normal",
  14393. height: math.unit(4 + 2 / 12, "feet"),
  14394. default: true
  14395. },
  14396. ]
  14397. ))
  14398. characterMakers.push(() => makeCharacter(
  14399. { name: "Raf" },
  14400. {
  14401. front: {
  14402. height: math.unit(4 + 11 / 12, "feet"),
  14403. weight: math.unit(114, "lb"),
  14404. name: "Front",
  14405. image: {
  14406. source: "./media/characters/raf/front.svg",
  14407. bottom: 0.01
  14408. }
  14409. },
  14410. side: {
  14411. height: math.unit(4 + 11 / 12, "feet"),
  14412. weight: math.unit(114, "lb"),
  14413. name: "Side",
  14414. image: {
  14415. source: "./media/characters/raf/side.svg",
  14416. bottom: 0.005
  14417. }
  14418. },
  14419. },
  14420. [
  14421. {
  14422. name: "Micro",
  14423. height: math.unit(2, "inches")
  14424. },
  14425. {
  14426. name: "Normal",
  14427. height: math.unit(4 + 11 / 12, "feet"),
  14428. default: true
  14429. },
  14430. {
  14431. name: "Macro",
  14432. height: math.unit(70, "feet")
  14433. },
  14434. ]
  14435. ))
  14436. characterMakers.push(() => makeCharacter(
  14437. { name: "Liam Einarr" },
  14438. {
  14439. front: {
  14440. height: math.unit(1.5, "meters"),
  14441. weight: math.unit(68, "kg"),
  14442. name: "Front",
  14443. image: {
  14444. source: "./media/characters/liam-einarr/front.svg",
  14445. extra: 2822 / 2666
  14446. }
  14447. },
  14448. back: {
  14449. height: math.unit(1.5, "meters"),
  14450. weight: math.unit(68, "kg"),
  14451. name: "Back",
  14452. image: {
  14453. source: "./media/characters/liam-einarr/back.svg",
  14454. extra: 2822 / 2666,
  14455. bottom: 0.015
  14456. }
  14457. },
  14458. },
  14459. [
  14460. {
  14461. name: "Normal",
  14462. height: math.unit(1.5, "meters"),
  14463. default: true
  14464. },
  14465. {
  14466. name: "Macro",
  14467. height: math.unit(150, "meters")
  14468. },
  14469. {
  14470. name: "Megamacro",
  14471. height: math.unit(35, "km")
  14472. },
  14473. ]
  14474. ))
  14475. characterMakers.push(() => makeCharacter(
  14476. { name: "Linda" },
  14477. {
  14478. front: {
  14479. height: math.unit(6, "feet"),
  14480. weight: math.unit(75, "kg"),
  14481. name: "Front",
  14482. image: {
  14483. source: "./media/characters/linda/front.svg",
  14484. extra: 930 / 874,
  14485. bottom: 0.004
  14486. }
  14487. },
  14488. },
  14489. [
  14490. {
  14491. name: "Normal",
  14492. height: math.unit(6, "feet"),
  14493. default: true
  14494. },
  14495. ]
  14496. ))
  14497. characterMakers.push(() => makeCharacter(
  14498. { name: "Caylex" },
  14499. {
  14500. front: {
  14501. height: math.unit(6 + 8 / 12, "feet"),
  14502. weight: math.unit(220, "lb"),
  14503. name: "Front",
  14504. image: {
  14505. source: "./media/characters/caylex/front.svg",
  14506. extra: 821 / 772,
  14507. bottom: 0.07
  14508. }
  14509. },
  14510. back: {
  14511. height: math.unit(6 + 8 / 12, "feet"),
  14512. weight: math.unit(220, "lb"),
  14513. name: "Back",
  14514. image: {
  14515. source: "./media/characters/caylex/back.svg",
  14516. extra: 821 / 772,
  14517. bottom: 0.022
  14518. }
  14519. },
  14520. hand: {
  14521. height: math.unit(1.25, "feet"),
  14522. name: "Hand",
  14523. image: {
  14524. source: "./media/characters/caylex/hand.svg"
  14525. }
  14526. },
  14527. foot: {
  14528. height: math.unit(1.6, "feet"),
  14529. name: "Foot",
  14530. image: {
  14531. source: "./media/characters/caylex/foot.svg"
  14532. }
  14533. },
  14534. armored: {
  14535. height: math.unit(6 + 8 / 12, "feet"),
  14536. weight: math.unit(250, "lb"),
  14537. name: "Armored",
  14538. image: {
  14539. source: "./media/characters/caylex/armored.svg",
  14540. extra: 1420 / 1310,
  14541. bottom: 0.045
  14542. }
  14543. },
  14544. },
  14545. [
  14546. {
  14547. name: "Normal",
  14548. height: math.unit(6 + 8 / 12, "feet"),
  14549. default: true
  14550. },
  14551. {
  14552. name: "Normal+",
  14553. height: math.unit(12, "feet")
  14554. },
  14555. ]
  14556. ))
  14557. characterMakers.push(() => makeCharacter(
  14558. { name: "Alana" },
  14559. {
  14560. front: {
  14561. height: math.unit(7 + 6 / 12, "feet"),
  14562. weight: math.unit(288, "lb"),
  14563. name: "Front",
  14564. image: {
  14565. source: "./media/characters/alana/front.svg",
  14566. extra: 679 / 653,
  14567. bottom: 22.5 / 701
  14568. }
  14569. },
  14570. },
  14571. [
  14572. {
  14573. name: "Normal",
  14574. height: math.unit(7 + 6 / 12, "feet")
  14575. },
  14576. {
  14577. name: "Large",
  14578. height: math.unit(50, "feet")
  14579. },
  14580. {
  14581. name: "Macro",
  14582. height: math.unit(100, "feet"),
  14583. default: true
  14584. },
  14585. {
  14586. name: "Macro+",
  14587. height: math.unit(200, "feet")
  14588. },
  14589. ]
  14590. ))
  14591. characterMakers.push(() => makeCharacter(
  14592. { name: "Hasani" },
  14593. {
  14594. front: {
  14595. height: math.unit(6 + 1 / 12, "feet"),
  14596. weight: math.unit(210, "lb"),
  14597. name: "Front",
  14598. image: {
  14599. source: "./media/characters/hasani/front.svg",
  14600. extra: 244 / 232,
  14601. bottom: 0.01
  14602. }
  14603. },
  14604. back: {
  14605. height: math.unit(6 + 1 / 12, "feet"),
  14606. weight: math.unit(210, "lb"),
  14607. name: "Back",
  14608. image: {
  14609. source: "./media/characters/hasani/back.svg",
  14610. extra: 244 / 232,
  14611. bottom: 0.01
  14612. }
  14613. },
  14614. },
  14615. [
  14616. {
  14617. name: "Normal",
  14618. height: math.unit(6 + 1 / 12, "feet")
  14619. },
  14620. {
  14621. name: "Macro",
  14622. height: math.unit(175, "feet"),
  14623. default: true
  14624. },
  14625. ]
  14626. ))
  14627. characterMakers.push(() => makeCharacter(
  14628. { name: "Nita" },
  14629. {
  14630. front: {
  14631. height: math.unit(1.82, "meters"),
  14632. weight: math.unit(140, "lb"),
  14633. name: "Front",
  14634. image: {
  14635. source: "./media/characters/nita/front.svg",
  14636. extra: 2473 / 2363,
  14637. bottom: 0.01
  14638. }
  14639. },
  14640. },
  14641. [
  14642. {
  14643. name: "Normal",
  14644. height: math.unit(1.82, "m")
  14645. },
  14646. {
  14647. name: "Macro",
  14648. height: math.unit(300, "m")
  14649. },
  14650. {
  14651. name: "Mistake Canon",
  14652. height: math.unit(0.5, "miles"),
  14653. default: true
  14654. },
  14655. {
  14656. name: "Big Mistake",
  14657. height: math.unit(13, "miles")
  14658. },
  14659. {
  14660. name: "Playing God",
  14661. height: math.unit(2450, "miles")
  14662. },
  14663. ]
  14664. ))
  14665. characterMakers.push(() => makeCharacter(
  14666. { name: "Shiriko" },
  14667. {
  14668. front: {
  14669. height: math.unit(4, "feet"),
  14670. weight: math.unit(120, "lb"),
  14671. name: "Front",
  14672. image: {
  14673. source: "./media/characters/shiriko/front.svg",
  14674. extra: 195 / 188
  14675. }
  14676. },
  14677. },
  14678. [
  14679. {
  14680. name: "Normal",
  14681. height: math.unit(4, "feet"),
  14682. default: true
  14683. },
  14684. ]
  14685. ))
  14686. characterMakers.push(() => makeCharacter(
  14687. { name: "Deja" },
  14688. {
  14689. front: {
  14690. height: math.unit(6, "feet"),
  14691. name: "front",
  14692. image: {
  14693. source: "./media/characters/deja/front.svg",
  14694. extra: 926 / 840,
  14695. bottom: 0.07
  14696. }
  14697. },
  14698. },
  14699. [
  14700. {
  14701. name: "Planck Length",
  14702. height: math.unit(1.6e-35, "meters")
  14703. },
  14704. {
  14705. name: "Normal",
  14706. height: math.unit(30.48, "meters"),
  14707. default: true
  14708. },
  14709. {
  14710. name: "Universal",
  14711. height: math.unit(8.8e26, "meters")
  14712. },
  14713. ]
  14714. ))
  14715. characterMakers.push(() => makeCharacter(
  14716. { name: "Anima" },
  14717. {
  14718. side: {
  14719. height: math.unit(8, "feet"),
  14720. weight: math.unit(6300, "lb"),
  14721. name: "Side",
  14722. image: {
  14723. source: "./media/characters/anima/side.svg",
  14724. bottom: 0.035
  14725. }
  14726. },
  14727. },
  14728. [
  14729. {
  14730. name: "Normal",
  14731. height: math.unit(8, "feet"),
  14732. default: true
  14733. },
  14734. ]
  14735. ))
  14736. characterMakers.push(() => makeCharacter(
  14737. { name: "Bianca" },
  14738. {
  14739. front: {
  14740. height: math.unit(8, "feet"),
  14741. weight: math.unit(350, "lb"),
  14742. name: "Front",
  14743. image: {
  14744. source: "./media/characters/bianca/front.svg",
  14745. extra: 234 / 225,
  14746. bottom: 0.03
  14747. }
  14748. },
  14749. },
  14750. [
  14751. {
  14752. name: "Normal",
  14753. height: math.unit(8, "feet"),
  14754. default: true
  14755. },
  14756. ]
  14757. ))
  14758. characterMakers.push(() => makeCharacter(
  14759. { name: "Adinia" },
  14760. {
  14761. front: {
  14762. height: math.unit(6, "feet"),
  14763. weight: math.unit(150, "lb"),
  14764. name: "Front",
  14765. image: {
  14766. source: "./media/characters/adinia/front.svg",
  14767. extra: 1845 / 1672,
  14768. bottom: 0.02
  14769. }
  14770. },
  14771. back: {
  14772. height: math.unit(6, "feet"),
  14773. weight: math.unit(150, "lb"),
  14774. name: "Back",
  14775. image: {
  14776. source: "./media/characters/adinia/back.svg",
  14777. extra: 1845 / 1672,
  14778. bottom: 0.002
  14779. }
  14780. },
  14781. },
  14782. [
  14783. {
  14784. name: "Normal",
  14785. height: math.unit(11 + 5 / 12, "feet"),
  14786. default: true
  14787. },
  14788. ]
  14789. ))
  14790. characterMakers.push(() => makeCharacter(
  14791. { name: "Lykasa" },
  14792. {
  14793. front: {
  14794. height: math.unit(3, "meters"),
  14795. weight: math.unit(200, "kg"),
  14796. name: "Front",
  14797. image: {
  14798. source: "./media/characters/lykasa/front.svg",
  14799. extra: 1076 / 976,
  14800. bottom: 0.06
  14801. }
  14802. },
  14803. },
  14804. [
  14805. {
  14806. name: "Normal",
  14807. height: math.unit(3, "meters")
  14808. },
  14809. {
  14810. name: "Kaiku",
  14811. height: math.unit(120, "meters"),
  14812. default: true
  14813. },
  14814. {
  14815. name: "Mega Kaiju",
  14816. height: math.unit(240, "km")
  14817. },
  14818. {
  14819. name: "Giga Kaiju",
  14820. height: math.unit(400, "megameters")
  14821. },
  14822. {
  14823. name: "Tera Kaiju",
  14824. height: math.unit(800, "gigameters")
  14825. },
  14826. {
  14827. name: "Kaiju Dragon Goddess",
  14828. height: math.unit(26, "zettaparsecs")
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Malfaren" },
  14834. {
  14835. side: {
  14836. height: math.unit(283 / 124 * 6, "feet"),
  14837. weight: math.unit(35000, "lb"),
  14838. name: "Side",
  14839. image: {
  14840. source: "./media/characters/malfaren/side.svg",
  14841. extra: 2500 / 1010,
  14842. bottom: 0.01
  14843. }
  14844. },
  14845. front: {
  14846. height: math.unit(22.36, "feet"),
  14847. weight: math.unit(35000, "lb"),
  14848. name: "Front",
  14849. image: {
  14850. source: "./media/characters/malfaren/front.svg",
  14851. extra: 1631 / 1476,
  14852. bottom: 0.01
  14853. }
  14854. },
  14855. maw: {
  14856. height: math.unit(6.9, "feet"),
  14857. name: "Maw",
  14858. image: {
  14859. source: "./media/characters/malfaren/maw.svg"
  14860. }
  14861. },
  14862. },
  14863. [
  14864. {
  14865. name: "Big",
  14866. height: math.unit(283 / 162 * 6, "feet"),
  14867. },
  14868. {
  14869. name: "Bigger",
  14870. height: math.unit(283 / 124 * 6, "feet")
  14871. },
  14872. {
  14873. name: "Massive",
  14874. height: math.unit(283 / 92 * 6, "feet"),
  14875. default: true
  14876. },
  14877. {
  14878. name: "👀💦",
  14879. height: math.unit(283 / 73 * 6, "feet"),
  14880. },
  14881. ]
  14882. ))
  14883. characterMakers.push(() => makeCharacter(
  14884. { name: "Kernel" },
  14885. {
  14886. front: {
  14887. height: math.unit(1.7, "m"),
  14888. weight: math.unit(70, "kg"),
  14889. name: "Front",
  14890. image: {
  14891. source: "./media/characters/kernel/front.svg",
  14892. extra: 222 / 210,
  14893. bottom: 0.007
  14894. }
  14895. },
  14896. },
  14897. [
  14898. {
  14899. name: "Nano",
  14900. height: math.unit(17, "micrometers")
  14901. },
  14902. {
  14903. name: "Micro",
  14904. height: math.unit(1.7, "mm")
  14905. },
  14906. {
  14907. name: "Small",
  14908. height: math.unit(1.7, "cm")
  14909. },
  14910. {
  14911. name: "Normal",
  14912. height: math.unit(1.7, "m"),
  14913. default: true
  14914. },
  14915. ]
  14916. ))
  14917. characterMakers.push(() => makeCharacter(
  14918. { name: "Jayne Folest" },
  14919. {
  14920. front: {
  14921. height: math.unit(1.75, "meters"),
  14922. weight: math.unit(65, "kg"),
  14923. name: "Front",
  14924. image: {
  14925. source: "./media/characters/jayne-folest/front.svg",
  14926. extra: 2115 / 2007,
  14927. bottom: 0.02
  14928. }
  14929. },
  14930. back: {
  14931. height: math.unit(1.75, "meters"),
  14932. weight: math.unit(65, "kg"),
  14933. name: "Back",
  14934. image: {
  14935. source: "./media/characters/jayne-folest/back.svg",
  14936. extra: 2115 / 2007,
  14937. bottom: 0.005
  14938. }
  14939. },
  14940. frontClothed: {
  14941. height: math.unit(1.75, "meters"),
  14942. weight: math.unit(65, "kg"),
  14943. name: "Front (Clothed)",
  14944. image: {
  14945. source: "./media/characters/jayne-folest/front-clothed.svg",
  14946. extra: 2115 / 2007,
  14947. bottom: 0.035
  14948. }
  14949. },
  14950. hand: {
  14951. height: math.unit(1 / 1.260, "feet"),
  14952. name: "Hand",
  14953. image: {
  14954. source: "./media/characters/jayne-folest/hand.svg"
  14955. }
  14956. },
  14957. foot: {
  14958. height: math.unit(1 / 0.918, "feet"),
  14959. name: "Foot",
  14960. image: {
  14961. source: "./media/characters/jayne-folest/foot.svg"
  14962. }
  14963. },
  14964. },
  14965. [
  14966. {
  14967. name: "Micro",
  14968. height: math.unit(4, "cm")
  14969. },
  14970. {
  14971. name: "Normal",
  14972. height: math.unit(1.75, "meters")
  14973. },
  14974. {
  14975. name: "Macro",
  14976. height: math.unit(47.5, "meters"),
  14977. default: true
  14978. },
  14979. ]
  14980. ))
  14981. characterMakers.push(() => makeCharacter(
  14982. { name: "Algier" },
  14983. {
  14984. front: {
  14985. height: math.unit(180, "cm"),
  14986. weight: math.unit(70, "kg"),
  14987. name: "Front",
  14988. image: {
  14989. source: "./media/characters/algier/front.svg",
  14990. extra: 596 / 572,
  14991. bottom: 0.04
  14992. }
  14993. },
  14994. back: {
  14995. height: math.unit(180, "cm"),
  14996. weight: math.unit(70, "kg"),
  14997. name: "Back",
  14998. image: {
  14999. source: "./media/characters/algier/back.svg",
  15000. extra: 596 / 572,
  15001. bottom: 0.025
  15002. }
  15003. },
  15004. frontdressed: {
  15005. height: math.unit(180, "cm"),
  15006. weight: math.unit(150, "kg"),
  15007. name: "Front-dressed",
  15008. image: {
  15009. source: "./media/characters/algier/front-dressed.svg",
  15010. extra: 596 / 572,
  15011. bottom: 0.038
  15012. }
  15013. },
  15014. },
  15015. [
  15016. {
  15017. name: "Micro",
  15018. height: math.unit(5, "cm")
  15019. },
  15020. {
  15021. name: "Normal",
  15022. height: math.unit(180, "cm"),
  15023. default: true
  15024. },
  15025. {
  15026. name: "Macro",
  15027. height: math.unit(64, "m")
  15028. },
  15029. ]
  15030. ))
  15031. characterMakers.push(() => makeCharacter(
  15032. { name: "Pretzel" },
  15033. {
  15034. upright: {
  15035. height: math.unit(7, "feet"),
  15036. weight: math.unit(300, "lb"),
  15037. name: "Upright",
  15038. image: {
  15039. source: "./media/characters/pretzel/upright.svg",
  15040. extra: 534 / 522,
  15041. bottom: 0.065
  15042. }
  15043. },
  15044. sprawling: {
  15045. height: math.unit(3.75, "feet"),
  15046. weight: math.unit(300, "lb"),
  15047. name: "Sprawling",
  15048. image: {
  15049. source: "./media/characters/pretzel/sprawling.svg",
  15050. extra: 314 / 281,
  15051. bottom: 0.1
  15052. }
  15053. },
  15054. tongue: {
  15055. height: math.unit(2, "feet"),
  15056. name: "Tongue",
  15057. image: {
  15058. source: "./media/characters/pretzel/tongue.svg"
  15059. }
  15060. },
  15061. },
  15062. [
  15063. {
  15064. name: "Normal",
  15065. height: math.unit(7, "feet"),
  15066. default: true
  15067. },
  15068. {
  15069. name: "Oversized",
  15070. height: math.unit(15, "feet")
  15071. },
  15072. {
  15073. name: "Huge",
  15074. height: math.unit(30, "feet")
  15075. },
  15076. {
  15077. name: "Macro",
  15078. height: math.unit(250, "feet")
  15079. },
  15080. ]
  15081. ))
  15082. characterMakers.push(() => makeCharacter(
  15083. { name: "Roxi" },
  15084. {
  15085. sideFront: {
  15086. height: math.unit(5 + 2 / 12, "feet"),
  15087. weight: math.unit(120, "lb"),
  15088. name: "Front Side",
  15089. image: {
  15090. source: "./media/characters/roxi/side-front.svg",
  15091. extra: 2924 / 2717,
  15092. bottom: 0.08
  15093. }
  15094. },
  15095. sideBack: {
  15096. height: math.unit(5 + 2 / 12, "feet"),
  15097. weight: math.unit(120, "lb"),
  15098. name: "Back Side",
  15099. image: {
  15100. source: "./media/characters/roxi/side-back.svg",
  15101. extra: 2904 / 2693,
  15102. bottom: 0.06
  15103. }
  15104. },
  15105. front: {
  15106. height: math.unit(5 + 2 / 12, "feet"),
  15107. weight: math.unit(120, "lb"),
  15108. name: "Front",
  15109. image: {
  15110. source: "./media/characters/roxi/front.svg",
  15111. extra: 2028 / 1907,
  15112. bottom: 0.01
  15113. }
  15114. },
  15115. frontAlt: {
  15116. height: math.unit(5 + 2 / 12, "feet"),
  15117. weight: math.unit(120, "lb"),
  15118. name: "Front (Alt)",
  15119. image: {
  15120. source: "./media/characters/roxi/front-alt.svg",
  15121. extra: 1828 / 1798,
  15122. bottom: 0.01
  15123. }
  15124. },
  15125. sitting: {
  15126. height: math.unit(2.8, "feet"),
  15127. weight: math.unit(120, "lb"),
  15128. name: "Sitting",
  15129. image: {
  15130. source: "./media/characters/roxi/sitting.svg",
  15131. extra: 2660 / 2462,
  15132. bottom: 0.1
  15133. }
  15134. },
  15135. },
  15136. [
  15137. {
  15138. name: "Normal",
  15139. height: math.unit(5 + 2 / 12, "feet"),
  15140. default: true
  15141. },
  15142. ]
  15143. ))
  15144. characterMakers.push(() => makeCharacter(
  15145. { name: "Shadow" },
  15146. {
  15147. side: {
  15148. height: math.unit(55, "feet"),
  15149. weight: math.unit(153, "tons"),
  15150. name: "Side",
  15151. image: {
  15152. source: "./media/characters/shadow/side.svg",
  15153. extra: 701 / 628,
  15154. bottom: 0.02
  15155. }
  15156. },
  15157. flying: {
  15158. height: math.unit(145, "feet"),
  15159. weight: math.unit(153, "tons"),
  15160. name: "Flying",
  15161. image: {
  15162. source: "./media/characters/shadow/flying.svg"
  15163. }
  15164. },
  15165. },
  15166. [
  15167. {
  15168. name: "Normal",
  15169. height: math.unit(55, "feet"),
  15170. default: true
  15171. },
  15172. ]
  15173. ))
  15174. characterMakers.push(() => makeCharacter(
  15175. { name: "Marcie" },
  15176. {
  15177. front: {
  15178. height: math.unit(6, "feet"),
  15179. weight: math.unit(200, "lb"),
  15180. name: "Front",
  15181. image: {
  15182. source: "./media/characters/marcie/front.svg",
  15183. extra: 960 / 876,
  15184. bottom: 58 / 1017.87
  15185. }
  15186. },
  15187. },
  15188. [
  15189. {
  15190. name: "Macro",
  15191. height: math.unit(1, "mile"),
  15192. default: true
  15193. },
  15194. ]
  15195. ))
  15196. characterMakers.push(() => makeCharacter(
  15197. { name: "Kachina" },
  15198. {
  15199. front: {
  15200. height: math.unit(7, "feet"),
  15201. weight: math.unit(200, "lb"),
  15202. name: "Front",
  15203. image: {
  15204. source: "./media/characters/kachina/front.svg",
  15205. extra: 1290.68 / 1119,
  15206. bottom: 36.5 / 1327.18
  15207. }
  15208. },
  15209. },
  15210. [
  15211. {
  15212. name: "Normal",
  15213. height: math.unit(7, "feet"),
  15214. default: true
  15215. },
  15216. ]
  15217. ))
  15218. characterMakers.push(() => makeCharacter(
  15219. { name: "Kash" },
  15220. {
  15221. looking: {
  15222. height: math.unit(2, "meters"),
  15223. weight: math.unit(300, "kg"),
  15224. name: "Looking",
  15225. image: {
  15226. source: "./media/characters/kash/looking.svg",
  15227. extra: 474 / 344,
  15228. bottom: 0.03
  15229. }
  15230. },
  15231. side: {
  15232. height: math.unit(2, "meters"),
  15233. weight: math.unit(300, "kg"),
  15234. name: "Side",
  15235. image: {
  15236. source: "./media/characters/kash/side.svg",
  15237. extra: 302 / 251,
  15238. bottom: 0.03
  15239. }
  15240. },
  15241. front: {
  15242. height: math.unit(2, "meters"),
  15243. weight: math.unit(300, "kg"),
  15244. name: "Front",
  15245. image: {
  15246. source: "./media/characters/kash/front.svg",
  15247. extra: 495 / 360,
  15248. bottom: 0.015
  15249. }
  15250. },
  15251. },
  15252. [
  15253. {
  15254. name: "Normal",
  15255. height: math.unit(2, "meters"),
  15256. default: true
  15257. },
  15258. {
  15259. name: "Big",
  15260. height: math.unit(3, "meters")
  15261. },
  15262. {
  15263. name: "Large",
  15264. height: math.unit(5, "meters")
  15265. },
  15266. ]
  15267. ))
  15268. characterMakers.push(() => makeCharacter(
  15269. { name: "Lalim" },
  15270. {
  15271. feeding: {
  15272. height: math.unit(6.7, "feet"),
  15273. weight: math.unit(350, "lb"),
  15274. name: "Feeding",
  15275. image: {
  15276. source: "./media/characters/lalim/feeding.svg",
  15277. }
  15278. },
  15279. },
  15280. [
  15281. {
  15282. name: "Normal",
  15283. height: math.unit(6.7, "feet"),
  15284. default: true
  15285. },
  15286. ]
  15287. ))
  15288. characterMakers.push(() => makeCharacter(
  15289. { name: "De'Vout" },
  15290. {
  15291. front: {
  15292. height: math.unit(9.5, "feet"),
  15293. weight: math.unit(600, "lb"),
  15294. name: "Front",
  15295. image: {
  15296. source: "./media/characters/de'vout/front.svg",
  15297. extra: 1443 / 1328,
  15298. bottom: 0.025
  15299. }
  15300. },
  15301. back: {
  15302. height: math.unit(9.5, "feet"),
  15303. weight: math.unit(600, "lb"),
  15304. name: "Back",
  15305. image: {
  15306. source: "./media/characters/de'vout/back.svg",
  15307. extra: 1443 / 1328
  15308. }
  15309. },
  15310. frontDressed: {
  15311. height: math.unit(9.5, "feet"),
  15312. weight: math.unit(600, "lb"),
  15313. name: "Front (Dressed",
  15314. image: {
  15315. source: "./media/characters/de'vout/front-dressed.svg",
  15316. extra: 1443 / 1328,
  15317. bottom: 0.025
  15318. }
  15319. },
  15320. backDressed: {
  15321. height: math.unit(9.5, "feet"),
  15322. weight: math.unit(600, "lb"),
  15323. name: "Back (Dressed",
  15324. image: {
  15325. source: "./media/characters/de'vout/back-dressed.svg",
  15326. extra: 1443 / 1328
  15327. }
  15328. },
  15329. },
  15330. [
  15331. {
  15332. name: "Normal",
  15333. height: math.unit(9.5, "feet"),
  15334. default: true
  15335. },
  15336. ]
  15337. ))
  15338. characterMakers.push(() => makeCharacter(
  15339. { name: "Talana" },
  15340. {
  15341. front: {
  15342. height: math.unit(8, "feet"),
  15343. weight: math.unit(225, "lb"),
  15344. name: "Front",
  15345. image: {
  15346. source: "./media/characters/talana/front.svg",
  15347. extra: 1410 / 1300,
  15348. bottom: 0.015
  15349. }
  15350. },
  15351. frontDressed: {
  15352. height: math.unit(8, "feet"),
  15353. weight: math.unit(225, "lb"),
  15354. name: "Front (Dressed",
  15355. image: {
  15356. source: "./media/characters/talana/front-dressed.svg",
  15357. extra: 1410 / 1300,
  15358. bottom: 0.015
  15359. }
  15360. },
  15361. },
  15362. [
  15363. {
  15364. name: "Normal",
  15365. height: math.unit(8, "feet"),
  15366. default: true
  15367. },
  15368. ]
  15369. ))
  15370. characterMakers.push(() => makeCharacter(
  15371. { name: "Xeauvok" },
  15372. {
  15373. side: {
  15374. height: math.unit(7.2, "feet"),
  15375. weight: math.unit(150, "lb"),
  15376. name: "Side",
  15377. image: {
  15378. source: "./media/characters/xeauvok/side.svg",
  15379. extra: 1975 / 1523,
  15380. bottom: 0.07
  15381. }
  15382. },
  15383. },
  15384. [
  15385. {
  15386. name: "Normal",
  15387. height: math.unit(7.2, "feet"),
  15388. default: true
  15389. },
  15390. ]
  15391. ))
  15392. characterMakers.push(() => makeCharacter(
  15393. { name: "Zara" },
  15394. {
  15395. side: {
  15396. height: math.unit(10, "feet"),
  15397. weight: math.unit(900, "kg"),
  15398. name: "Side",
  15399. image: {
  15400. source: "./media/characters/zara/side.svg",
  15401. extra: 504 / 498
  15402. }
  15403. },
  15404. },
  15405. [
  15406. {
  15407. name: "Normal",
  15408. height: math.unit(10, "feet"),
  15409. default: true
  15410. },
  15411. ]
  15412. ))
  15413. characterMakers.push(() => makeCharacter(
  15414. { name: "Richard (Dragon)" },
  15415. {
  15416. side: {
  15417. height: math.unit(6, "feet"),
  15418. weight: math.unit(150, "lb"),
  15419. name: "Side",
  15420. image: {
  15421. source: "./media/characters/richard-dragon/side.svg",
  15422. extra: 845 / 340,
  15423. bottom: 0.017
  15424. }
  15425. },
  15426. maw: {
  15427. height: math.unit(2.97, "feet"),
  15428. name: "Maw",
  15429. image: {
  15430. source: "./media/characters/richard-dragon/maw.svg"
  15431. }
  15432. },
  15433. },
  15434. [
  15435. ]
  15436. ))
  15437. characterMakers.push(() => makeCharacter(
  15438. { name: "Richard (Smeargle)" },
  15439. {
  15440. front: {
  15441. height: math.unit(4, "feet"),
  15442. weight: math.unit(100, "lb"),
  15443. name: "Front",
  15444. image: {
  15445. source: "./media/characters/richard-smeargle/front.svg",
  15446. extra: 2952 / 2820,
  15447. bottom: 0.028
  15448. }
  15449. },
  15450. },
  15451. [
  15452. {
  15453. name: "Normal",
  15454. height: math.unit(4, "feet"),
  15455. default: true
  15456. },
  15457. {
  15458. name: "Dynamax",
  15459. height: math.unit(20, "meters")
  15460. },
  15461. ]
  15462. ))
  15463. characterMakers.push(() => makeCharacter(
  15464. { name: "Klay" },
  15465. {
  15466. front: {
  15467. height: math.unit(6, "feet"),
  15468. weight: math.unit(110, "lb"),
  15469. name: "Front",
  15470. image: {
  15471. source: "./media/characters/klay/front.svg",
  15472. extra: 962 / 883,
  15473. bottom: 0.04
  15474. }
  15475. },
  15476. back: {
  15477. height: math.unit(6, "feet"),
  15478. weight: math.unit(110, "lb"),
  15479. name: "Back",
  15480. image: {
  15481. source: "./media/characters/klay/back.svg",
  15482. extra: 962 / 883
  15483. }
  15484. },
  15485. beans: {
  15486. height: math.unit(1.15, "feet"),
  15487. name: "Beans",
  15488. image: {
  15489. source: "./media/characters/klay/beans.svg"
  15490. }
  15491. },
  15492. },
  15493. [
  15494. {
  15495. name: "Micro",
  15496. height: math.unit(6, "inches")
  15497. },
  15498. {
  15499. name: "Mini",
  15500. height: math.unit(3, "feet")
  15501. },
  15502. {
  15503. name: "Normal",
  15504. height: math.unit(6, "feet"),
  15505. default: true
  15506. },
  15507. {
  15508. name: "Big",
  15509. height: math.unit(25, "feet")
  15510. },
  15511. {
  15512. name: "Macro",
  15513. height: math.unit(100, "feet")
  15514. },
  15515. {
  15516. name: "Megamacro",
  15517. height: math.unit(400, "feet")
  15518. },
  15519. ]
  15520. ))
  15521. characterMakers.push(() => makeCharacter(
  15522. { name: "Marcus" },
  15523. {
  15524. front: {
  15525. height: math.unit(6, "feet"),
  15526. weight: math.unit(160, "lb"),
  15527. name: "Front",
  15528. image: {
  15529. source: "./media/characters/marcus/front.svg",
  15530. extra: 734 / 676,
  15531. bottom: 0.03
  15532. }
  15533. },
  15534. },
  15535. [
  15536. {
  15537. name: "Little",
  15538. height: math.unit(6, "feet")
  15539. },
  15540. {
  15541. name: "Normal",
  15542. height: math.unit(110, "feet"),
  15543. default: true
  15544. },
  15545. {
  15546. name: "Macro",
  15547. height: math.unit(250, "feet")
  15548. },
  15549. {
  15550. name: "Megamacro",
  15551. height: math.unit(1000, "feet")
  15552. },
  15553. ]
  15554. ))
  15555. characterMakers.push(() => makeCharacter(
  15556. { name: "Claude DelRoute" },
  15557. {
  15558. front: {
  15559. height: math.unit(7, "feet"),
  15560. weight: math.unit(275, "lb"),
  15561. name: "Front",
  15562. image: {
  15563. source: "./media/characters/claude-delroute/front.svg",
  15564. extra: 230 / 214,
  15565. bottom: 0.007
  15566. }
  15567. },
  15568. side: {
  15569. height: math.unit(7, "feet"),
  15570. weight: math.unit(275, "lb"),
  15571. name: "Side",
  15572. image: {
  15573. source: "./media/characters/claude-delroute/side.svg",
  15574. extra: 222 / 214,
  15575. bottom: 0.01
  15576. }
  15577. },
  15578. back: {
  15579. height: math.unit(7, "feet"),
  15580. weight: math.unit(275, "lb"),
  15581. name: "Back",
  15582. image: {
  15583. source: "./media/characters/claude-delroute/back.svg",
  15584. extra: 230 / 214,
  15585. bottom: 0.015
  15586. }
  15587. },
  15588. maw: {
  15589. height: math.unit(0.6407, "meters"),
  15590. name: "Maw",
  15591. image: {
  15592. source: "./media/characters/claude-delroute/maw.svg"
  15593. }
  15594. },
  15595. },
  15596. [
  15597. {
  15598. name: "Normal",
  15599. height: math.unit(7, "feet"),
  15600. default: true
  15601. },
  15602. {
  15603. name: "Lorge",
  15604. height: math.unit(20, "feet")
  15605. },
  15606. ]
  15607. ))
  15608. characterMakers.push(() => makeCharacter(
  15609. { name: "Dragonien" },
  15610. {
  15611. front: {
  15612. height: math.unit(8 + 4 / 12, "feet"),
  15613. weight: math.unit(600, "lb"),
  15614. name: "Front",
  15615. image: {
  15616. source: "./media/characters/dragonien/front.svg",
  15617. extra: 100 / 94,
  15618. bottom: 3.3 / 103.3445
  15619. }
  15620. },
  15621. back: {
  15622. height: math.unit(8 + 4 / 12, "feet"),
  15623. weight: math.unit(600, "lb"),
  15624. name: "Back",
  15625. image: {
  15626. source: "./media/characters/dragonien/back.svg",
  15627. extra: 776 / 746,
  15628. bottom: 6.4 / 782.0616
  15629. }
  15630. },
  15631. foot: {
  15632. height: math.unit(1.54, "feet"),
  15633. name: "Foot",
  15634. image: {
  15635. source: "./media/characters/dragonien/foot.svg",
  15636. }
  15637. },
  15638. },
  15639. [
  15640. {
  15641. name: "Normal",
  15642. height: math.unit(8 + 4 / 12, "feet"),
  15643. default: true
  15644. },
  15645. {
  15646. name: "Macro",
  15647. height: math.unit(200, "feet")
  15648. },
  15649. {
  15650. name: "Megamacro",
  15651. height: math.unit(1, "mile")
  15652. },
  15653. {
  15654. name: "Gigamacro",
  15655. height: math.unit(1000, "miles")
  15656. },
  15657. ]
  15658. ))
  15659. characterMakers.push(() => makeCharacter(
  15660. { name: "Desta" },
  15661. {
  15662. front: {
  15663. height: math.unit(5 + 2 / 12, "feet"),
  15664. weight: math.unit(110, "lb"),
  15665. name: "Front",
  15666. image: {
  15667. source: "./media/characters/desta/front.svg",
  15668. extra: 1482 / 1417
  15669. }
  15670. },
  15671. side: {
  15672. height: math.unit(5 + 2 / 12, "feet"),
  15673. weight: math.unit(110, "lb"),
  15674. name: "Side",
  15675. image: {
  15676. source: "./media/characters/desta/side.svg",
  15677. extra: 2579 / 2491,
  15678. bottom: 0.053
  15679. }
  15680. },
  15681. },
  15682. [
  15683. {
  15684. name: "Micro",
  15685. height: math.unit(6, "inches")
  15686. },
  15687. {
  15688. name: "Normal",
  15689. height: math.unit(5 + 2 / 12, "feet"),
  15690. default: true
  15691. },
  15692. {
  15693. name: "Macro",
  15694. height: math.unit(62, "feet")
  15695. },
  15696. {
  15697. name: "Megamacro",
  15698. height: math.unit(1800, "feet")
  15699. },
  15700. ]
  15701. ))
  15702. characterMakers.push(() => makeCharacter(
  15703. { name: "Storm Alystar" },
  15704. {
  15705. front: {
  15706. height: math.unit(10, "feet"),
  15707. weight: math.unit(700, "lb"),
  15708. name: "Front",
  15709. image: {
  15710. source: "./media/characters/storm-alystar/front.svg",
  15711. extra: 2112 / 1898,
  15712. bottom: 0.034
  15713. }
  15714. },
  15715. },
  15716. [
  15717. {
  15718. name: "Micro",
  15719. height: math.unit(3.5, "inches")
  15720. },
  15721. {
  15722. name: "Normal",
  15723. height: math.unit(10, "feet"),
  15724. default: true
  15725. },
  15726. {
  15727. name: "Macro",
  15728. height: math.unit(400, "feet")
  15729. },
  15730. {
  15731. name: "Deific",
  15732. height: math.unit(60, "miles")
  15733. },
  15734. ]
  15735. ))
  15736. characterMakers.push(() => makeCharacter(
  15737. { name: "Ilia" },
  15738. {
  15739. front: {
  15740. height: math.unit(2.35, "meters"),
  15741. weight: math.unit(119, "kg"),
  15742. name: "Front",
  15743. image: {
  15744. source: "./media/characters/ilia/front.svg",
  15745. extra: 1285 / 1255,
  15746. bottom: 0.06
  15747. }
  15748. },
  15749. },
  15750. [
  15751. {
  15752. name: "Normal",
  15753. height: math.unit(2.35, "meters")
  15754. },
  15755. {
  15756. name: "Macro",
  15757. height: math.unit(140, "meters"),
  15758. default: true
  15759. },
  15760. {
  15761. name: "Megamacro",
  15762. height: math.unit(100, "miles")
  15763. },
  15764. ]
  15765. ))
  15766. characterMakers.push(() => makeCharacter(
  15767. { name: "KingDead" },
  15768. {
  15769. front: {
  15770. height: math.unit(6 + 5 / 12, "feet"),
  15771. weight: math.unit(190, "lb"),
  15772. name: "Front",
  15773. image: {
  15774. source: "./media/characters/kingdead/front.svg",
  15775. extra: 1228 / 1177
  15776. }
  15777. },
  15778. },
  15779. [
  15780. {
  15781. name: "Micro",
  15782. height: math.unit(7, "inches")
  15783. },
  15784. {
  15785. name: "Normal",
  15786. height: math.unit(6 + 5 / 12, "feet")
  15787. },
  15788. {
  15789. name: "Macro",
  15790. height: math.unit(150, "feet"),
  15791. default: true
  15792. },
  15793. {
  15794. name: "Megamacro",
  15795. height: math.unit(200, "miles")
  15796. },
  15797. ]
  15798. ))
  15799. characterMakers.push(() => makeCharacter(
  15800. { name: "Kyrehx" },
  15801. {
  15802. front: {
  15803. height: math.unit(8, "feet"),
  15804. weight: math.unit(600, "lb"),
  15805. name: "Front",
  15806. image: {
  15807. source: "./media/characters/kyrehx/front.svg",
  15808. extra: 1195 / 1095,
  15809. bottom: 0.034
  15810. }
  15811. },
  15812. },
  15813. [
  15814. {
  15815. name: "Micro",
  15816. height: math.unit(2, "inches")
  15817. },
  15818. {
  15819. name: "Normal",
  15820. height: math.unit(8, "feet"),
  15821. default: true
  15822. },
  15823. {
  15824. name: "Macro",
  15825. height: math.unit(255, "feet")
  15826. },
  15827. ]
  15828. ))
  15829. characterMakers.push(() => makeCharacter(
  15830. { name: "Xang" },
  15831. {
  15832. front: {
  15833. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15834. weight: math.unit(184, "lb"),
  15835. name: "Front",
  15836. image: {
  15837. source: "./media/characters/xang/front.svg",
  15838. extra: 845 / 755
  15839. }
  15840. },
  15841. },
  15842. [
  15843. {
  15844. name: "Normal",
  15845. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15846. default: true
  15847. },
  15848. {
  15849. name: "Macro",
  15850. height: math.unit(0.935 * 146, "feet")
  15851. },
  15852. {
  15853. name: "Megamacro",
  15854. height: math.unit(0.935 * 3, "miles")
  15855. },
  15856. ]
  15857. ))
  15858. characterMakers.push(() => makeCharacter(
  15859. { name: "Doc Weardno" },
  15860. {
  15861. frontDressed: {
  15862. height: math.unit(5 + 7 / 12, "feet"),
  15863. weight: math.unit(140, "lb"),
  15864. name: "Front (Dressed)",
  15865. image: {
  15866. source: "./media/characters/doc-weardno/front-dressed.svg",
  15867. extra: 263 / 234
  15868. }
  15869. },
  15870. backDressed: {
  15871. height: math.unit(5 + 7 / 12, "feet"),
  15872. weight: math.unit(140, "lb"),
  15873. name: "Back (Dressed)",
  15874. image: {
  15875. source: "./media/characters/doc-weardno/back-dressed.svg",
  15876. extra: 266 / 238
  15877. }
  15878. },
  15879. front: {
  15880. height: math.unit(5 + 7 / 12, "feet"),
  15881. weight: math.unit(140, "lb"),
  15882. name: "Front",
  15883. image: {
  15884. source: "./media/characters/doc-weardno/front.svg",
  15885. extra: 254 / 233
  15886. }
  15887. },
  15888. },
  15889. [
  15890. {
  15891. name: "Micro",
  15892. height: math.unit(3, "inches")
  15893. },
  15894. {
  15895. name: "Normal",
  15896. height: math.unit(5 + 7 / 12, "feet"),
  15897. default: true
  15898. },
  15899. {
  15900. name: "Macro",
  15901. height: math.unit(25, "feet")
  15902. },
  15903. {
  15904. name: "Megamacro",
  15905. height: math.unit(2, "miles")
  15906. },
  15907. ]
  15908. ))
  15909. characterMakers.push(() => makeCharacter(
  15910. { name: "Seth Whilst" },
  15911. {
  15912. front: {
  15913. height: math.unit(6 + 2 / 12, "feet"),
  15914. weight: math.unit(153, "lb"),
  15915. name: "Front",
  15916. image: {
  15917. source: "./media/characters/seth-whilst/front.svg",
  15918. bottom: 0.07
  15919. }
  15920. },
  15921. },
  15922. [
  15923. {
  15924. name: "Micro",
  15925. height: math.unit(5, "inches")
  15926. },
  15927. {
  15928. name: "Normal",
  15929. height: math.unit(6 + 2 / 12, "feet"),
  15930. default: true
  15931. },
  15932. ]
  15933. ))
  15934. characterMakers.push(() => makeCharacter(
  15935. { name: "Pocket Jabari" },
  15936. {
  15937. front: {
  15938. height: math.unit(3, "inches"),
  15939. weight: math.unit(8, "grams"),
  15940. name: "Front",
  15941. image: {
  15942. source: "./media/characters/pocket-jabari/front.svg",
  15943. extra: 1024 / 974,
  15944. bottom: 0.039
  15945. }
  15946. },
  15947. },
  15948. [
  15949. {
  15950. name: "Minimicro",
  15951. height: math.unit(8, "mm")
  15952. },
  15953. {
  15954. name: "Micro",
  15955. height: math.unit(3, "inches"),
  15956. default: true
  15957. },
  15958. {
  15959. name: "Normal",
  15960. height: math.unit(3, "feet")
  15961. },
  15962. ]
  15963. ))
  15964. characterMakers.push(() => makeCharacter(
  15965. { name: "Sapphy" },
  15966. {
  15967. front: {
  15968. height: math.unit(15, "feet"),
  15969. weight: math.unit(3280, "lb"),
  15970. name: "Front",
  15971. image: {
  15972. source: "./media/characters/sapphy/front.svg",
  15973. extra: 671 / 577,
  15974. bottom: 0.085
  15975. }
  15976. },
  15977. back: {
  15978. height: math.unit(15, "feet"),
  15979. weight: math.unit(3280, "lb"),
  15980. name: "Back",
  15981. image: {
  15982. source: "./media/characters/sapphy/back.svg",
  15983. extra: 631 / 607,
  15984. bottom: 0.045
  15985. }
  15986. },
  15987. },
  15988. [
  15989. {
  15990. name: "Normal",
  15991. height: math.unit(15, "feet")
  15992. },
  15993. {
  15994. name: "Casual Macro",
  15995. height: math.unit(120, "feet")
  15996. },
  15997. {
  15998. name: "Macro",
  15999. height: math.unit(2150, "feet"),
  16000. default: true
  16001. },
  16002. {
  16003. name: "Megamacro",
  16004. height: math.unit(8, "miles")
  16005. },
  16006. {
  16007. name: "Galaxy Mom",
  16008. height: math.unit(6, "megalightyears")
  16009. },
  16010. ]
  16011. ))
  16012. characterMakers.push(() => makeCharacter(
  16013. { name: "Kiro" },
  16014. {
  16015. front: {
  16016. height: math.unit(6, "feet"),
  16017. weight: math.unit(170, "lb"),
  16018. name: "Front",
  16019. image: {
  16020. source: "./media/characters/kiro/front.svg",
  16021. extra: 1064 / 1012,
  16022. bottom: 0.052
  16023. }
  16024. },
  16025. },
  16026. [
  16027. {
  16028. name: "Micro",
  16029. height: math.unit(6, "inches")
  16030. },
  16031. {
  16032. name: "Normal",
  16033. height: math.unit(6, "feet"),
  16034. default: true
  16035. },
  16036. {
  16037. name: "Macro",
  16038. height: math.unit(72, "feet")
  16039. },
  16040. ]
  16041. ))
  16042. characterMakers.push(() => makeCharacter(
  16043. { name: "Irishfox" },
  16044. {
  16045. front: {
  16046. height: math.unit(5 + 9 / 12, "feet"),
  16047. weight: math.unit(175, "lb"),
  16048. name: "Front",
  16049. image: {
  16050. source: "./media/characters/irishfox/front.svg",
  16051. extra: 1912 / 1680,
  16052. bottom: 0.02
  16053. }
  16054. },
  16055. },
  16056. [
  16057. {
  16058. name: "Nano",
  16059. height: math.unit(1, "mm")
  16060. },
  16061. {
  16062. name: "Micro",
  16063. height: math.unit(2, "inches")
  16064. },
  16065. {
  16066. name: "Normal",
  16067. height: math.unit(5 + 9 / 12, "feet"),
  16068. default: true
  16069. },
  16070. {
  16071. name: "Macro",
  16072. height: math.unit(45, "feet")
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Aronai Sieyes" },
  16078. {
  16079. front: {
  16080. height: math.unit(6 + 1 / 12, "feet"),
  16081. weight: math.unit(150, "lb"),
  16082. name: "Front",
  16083. image: {
  16084. source: "./media/characters/aronai-sieyes/front.svg",
  16085. extra: 1556 / 1480,
  16086. bottom: 0.015
  16087. }
  16088. },
  16089. side: {
  16090. height: math.unit(6 + 1 / 12, "feet"),
  16091. weight: math.unit(150, "lb"),
  16092. name: "Side",
  16093. image: {
  16094. source: "./media/characters/aronai-sieyes/side.svg",
  16095. extra: 1433 / 1390,
  16096. bottom: 0.0393
  16097. }
  16098. },
  16099. back: {
  16100. height: math.unit(6 + 1 / 12, "feet"),
  16101. weight: math.unit(150, "lb"),
  16102. name: "Back",
  16103. image: {
  16104. source: "./media/characters/aronai-sieyes/back.svg",
  16105. extra: 1544 / 1494,
  16106. bottom: 0.02
  16107. }
  16108. },
  16109. frontClothed: {
  16110. height: math.unit(6 + 1 / 12, "feet"),
  16111. weight: math.unit(150, "lb"),
  16112. name: "Front (Clothed)",
  16113. image: {
  16114. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16115. extra: 1582 / 1527
  16116. }
  16117. },
  16118. feral: {
  16119. height: math.unit(18, "feet"),
  16120. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16121. name: "Feral",
  16122. image: {
  16123. source: "./media/characters/aronai-sieyes/feral.svg",
  16124. extra: 1530 / 1240,
  16125. bottom: 0.035
  16126. }
  16127. },
  16128. },
  16129. [
  16130. {
  16131. name: "Micro",
  16132. height: math.unit(2, "inches")
  16133. },
  16134. {
  16135. name: "Normal",
  16136. height: math.unit(6 + 1 / 12, "feet"),
  16137. default: true
  16138. }
  16139. ]
  16140. ))
  16141. characterMakers.push(() => makeCharacter(
  16142. { name: "Xuna" },
  16143. {
  16144. front: {
  16145. height: math.unit(12, "feet"),
  16146. weight: math.unit(410, "kg"),
  16147. name: "Front",
  16148. image: {
  16149. source: "./media/characters/xuna/front.svg",
  16150. extra: 2184 / 1980
  16151. }
  16152. },
  16153. side: {
  16154. height: math.unit(12, "feet"),
  16155. weight: math.unit(410, "kg"),
  16156. name: "Side",
  16157. image: {
  16158. source: "./media/characters/xuna/side.svg",
  16159. extra: 2184 / 1980
  16160. }
  16161. },
  16162. back: {
  16163. height: math.unit(12, "feet"),
  16164. weight: math.unit(410, "kg"),
  16165. name: "Back",
  16166. image: {
  16167. source: "./media/characters/xuna/back.svg",
  16168. extra: 2184 / 1980
  16169. }
  16170. },
  16171. },
  16172. [
  16173. {
  16174. name: "Nano glow",
  16175. height: math.unit(10, "nm")
  16176. },
  16177. {
  16178. name: "Micro floof",
  16179. height: math.unit(0.3, "m")
  16180. },
  16181. {
  16182. name: "Huggable softy boi",
  16183. height: math.unit(3.6576, "m"),
  16184. default: true
  16185. },
  16186. {
  16187. name: "Admirable floof",
  16188. height: math.unit(80, "meters")
  16189. },
  16190. {
  16191. name: "Gentle macro",
  16192. height: math.unit(300, "meters")
  16193. },
  16194. {
  16195. name: "Very careful floof",
  16196. height: math.unit(3200, "meters")
  16197. },
  16198. {
  16199. name: "The mega floof",
  16200. height: math.unit(36000, "meters")
  16201. },
  16202. {
  16203. name: "Giga-fur-Wicker",
  16204. height: math.unit(4800000, "meters")
  16205. },
  16206. {
  16207. name: "Licky world",
  16208. height: math.unit(20000000, "meters")
  16209. },
  16210. {
  16211. name: "Floofy cyan sun",
  16212. height: math.unit(1500000000, "meters")
  16213. },
  16214. {
  16215. name: "Milky Wicker",
  16216. height: math.unit(1000000000000000000000, "meters")
  16217. },
  16218. {
  16219. name: "The observing Wicker",
  16220. height: math.unit(999999999999999999999999999, "meters")
  16221. },
  16222. ]
  16223. ))
  16224. characterMakers.push(() => makeCharacter(
  16225. { name: "Arokha Sieyes" },
  16226. {
  16227. front: {
  16228. height: math.unit(5 + 9 / 12, "feet"),
  16229. weight: math.unit(150, "lb"),
  16230. name: "Front",
  16231. image: {
  16232. source: "./media/characters/arokha-sieyes/front.svg",
  16233. extra: 1425 / 1284,
  16234. bottom: 0.05
  16235. }
  16236. },
  16237. },
  16238. [
  16239. {
  16240. name: "Normal",
  16241. height: math.unit(5 + 9 / 12, "feet")
  16242. },
  16243. {
  16244. name: "Macro",
  16245. height: math.unit(30, "meters"),
  16246. default: true
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Arokh Sieyes" },
  16252. {
  16253. front: {
  16254. height: math.unit(6, "feet"),
  16255. weight: math.unit(180, "lb"),
  16256. name: "Front",
  16257. image: {
  16258. source: "./media/characters/arokh-sieyes/front.svg",
  16259. extra: 1830 / 1769,
  16260. bottom: 0.01
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Normal",
  16267. height: math.unit(6, "feet")
  16268. },
  16269. {
  16270. name: "Macro",
  16271. height: math.unit(30, "meters"),
  16272. default: true
  16273. },
  16274. ]
  16275. ))
  16276. characterMakers.push(() => makeCharacter(
  16277. { name: "Goldeneye" },
  16278. {
  16279. side: {
  16280. height: math.unit(13 + 1 / 12, "feet"),
  16281. weight: math.unit(8.5, "tonnes"),
  16282. name: "Side",
  16283. image: {
  16284. source: "./media/characters/goldeneye/side.svg",
  16285. extra: 1182 / 778,
  16286. bottom: 0.067
  16287. }
  16288. },
  16289. paw: {
  16290. height: math.unit(3.4, "feet"),
  16291. name: "Paw",
  16292. image: {
  16293. source: "./media/characters/goldeneye/paw.svg"
  16294. }
  16295. },
  16296. },
  16297. [
  16298. {
  16299. name: "Normal",
  16300. height: math.unit(13 + 1 / 12, "feet"),
  16301. default: true
  16302. },
  16303. ]
  16304. ))
  16305. characterMakers.push(() => makeCharacter(
  16306. { name: "Leonardo Lycheborne" },
  16307. {
  16308. front: {
  16309. height: math.unit(6 + 1 / 12, "feet"),
  16310. weight: math.unit(210, "lb"),
  16311. name: "Front",
  16312. image: {
  16313. source: "./media/characters/leonardo-lycheborne/front.svg",
  16314. extra: 390 / 365,
  16315. bottom: 0.032
  16316. }
  16317. },
  16318. side: {
  16319. height: math.unit(6 + 1 / 12, "feet"),
  16320. weight: math.unit(210, "lb"),
  16321. name: "Side",
  16322. image: {
  16323. source: "./media/characters/leonardo-lycheborne/side.svg",
  16324. extra: 390 / 365,
  16325. bottom: 0.005
  16326. }
  16327. },
  16328. back: {
  16329. height: math.unit(6 + 1 / 12, "feet"),
  16330. weight: math.unit(210, "lb"),
  16331. name: "Back",
  16332. image: {
  16333. source: "./media/characters/leonardo-lycheborne/back.svg",
  16334. extra: 392 / 366,
  16335. bottom: 0.01
  16336. }
  16337. },
  16338. hand: {
  16339. height: math.unit(1.08, "feet"),
  16340. name: "Hand",
  16341. image: {
  16342. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16343. }
  16344. },
  16345. foot: {
  16346. height: math.unit(1.32, "feet"),
  16347. name: "Foot",
  16348. image: {
  16349. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16350. }
  16351. },
  16352. were: {
  16353. height: math.unit(20, "feet"),
  16354. weight: math.unit(7800, "lb"),
  16355. name: "Were",
  16356. image: {
  16357. source: "./media/characters/leonardo-lycheborne/were.svg",
  16358. extra: 308 / 294,
  16359. bottom: 0.048
  16360. }
  16361. },
  16362. feral: {
  16363. height: math.unit(7.5, "feet"),
  16364. weight: math.unit(600, "lb"),
  16365. name: "Feral",
  16366. image: {
  16367. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16368. extra: 210 / 186,
  16369. bottom: 0.108
  16370. }
  16371. },
  16372. taur: {
  16373. height: math.unit(11, "feet"),
  16374. weight: math.unit(3300, "lb"),
  16375. name: "Taur",
  16376. image: {
  16377. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16378. extra: 320 / 303,
  16379. bottom: 0.025
  16380. }
  16381. },
  16382. barghest: {
  16383. height: math.unit(11, "feet"),
  16384. weight: math.unit(1300, "lb"),
  16385. name: "Barghest",
  16386. image: {
  16387. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16388. extra: 323 / 302,
  16389. bottom: 0.027
  16390. }
  16391. },
  16392. dick: {
  16393. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16394. name: "Dick",
  16395. image: {
  16396. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16397. }
  16398. },
  16399. dickWere: {
  16400. height: math.unit((20) / 3.8, "feet"),
  16401. name: "Dick (Were)",
  16402. image: {
  16403. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16404. }
  16405. },
  16406. },
  16407. [
  16408. {
  16409. name: "Normal",
  16410. height: math.unit(6 + 1 / 12, "feet"),
  16411. default: true
  16412. },
  16413. ]
  16414. ))
  16415. characterMakers.push(() => makeCharacter(
  16416. { name: "Jet" },
  16417. {
  16418. front: {
  16419. height: math.unit(10, "feet"),
  16420. weight: math.unit(350, "lb"),
  16421. name: "Front",
  16422. image: {
  16423. source: "./media/characters/jet/front.svg",
  16424. extra: 2050 / 1980,
  16425. bottom: 0.013
  16426. }
  16427. },
  16428. back: {
  16429. height: math.unit(10, "feet"),
  16430. weight: math.unit(350, "lb"),
  16431. name: "Back",
  16432. image: {
  16433. source: "./media/characters/jet/back.svg",
  16434. extra: 2050 / 1980,
  16435. bottom: 0.013
  16436. }
  16437. },
  16438. },
  16439. [
  16440. {
  16441. name: "Micro",
  16442. height: math.unit(6, "inches")
  16443. },
  16444. {
  16445. name: "Normal",
  16446. height: math.unit(10, "feet"),
  16447. default: true
  16448. },
  16449. {
  16450. name: "Macro",
  16451. height: math.unit(100, "feet")
  16452. },
  16453. ]
  16454. ))
  16455. characterMakers.push(() => makeCharacter(
  16456. { name: "Tanarath" },
  16457. {
  16458. front: {
  16459. height: math.unit(15, "feet"),
  16460. weight: math.unit(2800, "lb"),
  16461. name: "Front",
  16462. image: {
  16463. source: "./media/characters/tanarath/front.svg",
  16464. extra: 2392 / 2220,
  16465. bottom: 0.03
  16466. }
  16467. },
  16468. back: {
  16469. height: math.unit(15, "feet"),
  16470. weight: math.unit(2800, "lb"),
  16471. name: "Back",
  16472. image: {
  16473. source: "./media/characters/tanarath/back.svg",
  16474. extra: 2392 / 2220,
  16475. bottom: 0.03
  16476. }
  16477. },
  16478. },
  16479. [
  16480. {
  16481. name: "Normal",
  16482. height: math.unit(15, "feet"),
  16483. default: true
  16484. },
  16485. ]
  16486. ))
  16487. characterMakers.push(() => makeCharacter(
  16488. { name: "Patty CattyBatty" },
  16489. {
  16490. front: {
  16491. height: math.unit(7 + 1 / 12, "feet"),
  16492. weight: math.unit(175, "lb"),
  16493. name: "Front",
  16494. image: {
  16495. source: "./media/characters/patty-cattybatty/front.svg",
  16496. extra: 908 / 874,
  16497. bottom: 0.025
  16498. }
  16499. },
  16500. },
  16501. [
  16502. {
  16503. name: "Micro",
  16504. height: math.unit(1, "inch")
  16505. },
  16506. {
  16507. name: "Normal",
  16508. height: math.unit(7 + 1 / 12, "feet")
  16509. },
  16510. {
  16511. name: "Mini Macro",
  16512. height: math.unit(155, "feet")
  16513. },
  16514. {
  16515. name: "Macro",
  16516. height: math.unit(1077, "feet")
  16517. },
  16518. {
  16519. name: "Mega Macro",
  16520. height: math.unit(47650, "feet"),
  16521. default: true
  16522. },
  16523. {
  16524. name: "Giga Macro",
  16525. height: math.unit(440, "miles")
  16526. },
  16527. {
  16528. name: "Tera Macro",
  16529. height: math.unit(8700, "miles")
  16530. },
  16531. {
  16532. name: "Planetary Macro",
  16533. height: math.unit(32700, "miles")
  16534. },
  16535. {
  16536. name: "Solar Macro",
  16537. height: math.unit(550000, "miles")
  16538. },
  16539. {
  16540. name: "Celestial Macro",
  16541. height: math.unit(2.5, "AU")
  16542. },
  16543. ]
  16544. ))
  16545. characterMakers.push(() => makeCharacter(
  16546. { name: "Cappu" },
  16547. {
  16548. front: {
  16549. height: math.unit(4 + 5 / 12, "feet"),
  16550. weight: math.unit(90, "lb"),
  16551. name: "Front",
  16552. image: {
  16553. source: "./media/characters/cappu/front.svg",
  16554. extra: 1247 / 1152,
  16555. bottom: 0.012
  16556. }
  16557. },
  16558. },
  16559. [
  16560. {
  16561. name: "Normal",
  16562. height: math.unit(4 + 5 / 12, "feet"),
  16563. default: true
  16564. },
  16565. ]
  16566. ))
  16567. characterMakers.push(() => makeCharacter(
  16568. { name: "Sebi" },
  16569. {
  16570. frontDressed: {
  16571. height: math.unit(70, "cm"),
  16572. weight: math.unit(6, "kg"),
  16573. name: "Front (Dressed)",
  16574. image: {
  16575. source: "./media/characters/sebi/front-dressed.svg",
  16576. extra: 713.5 / 686.5,
  16577. bottom: 0.003
  16578. }
  16579. },
  16580. front: {
  16581. height: math.unit(70, "cm"),
  16582. weight: math.unit(5, "kg"),
  16583. name: "Front",
  16584. image: {
  16585. source: "./media/characters/sebi/front.svg",
  16586. extra: 713.5 / 686.5,
  16587. bottom: 0.003
  16588. }
  16589. }
  16590. },
  16591. [
  16592. {
  16593. name: "Normal",
  16594. height: math.unit(70, "cm"),
  16595. default: true
  16596. },
  16597. {
  16598. name: "Macro",
  16599. height: math.unit(8, "meters")
  16600. },
  16601. ]
  16602. ))
  16603. characterMakers.push(() => makeCharacter(
  16604. { name: "Typhek" },
  16605. {
  16606. front: {
  16607. height: math.unit(6, "feet"),
  16608. weight: math.unit(150, "lb"),
  16609. name: "Front",
  16610. image: {
  16611. source: "./media/characters/typhek/front.svg",
  16612. extra: 1948 / 1929,
  16613. bottom: 0.025
  16614. }
  16615. },
  16616. side: {
  16617. height: math.unit(6, "feet"),
  16618. weight: math.unit(150, "lb"),
  16619. name: "Side",
  16620. image: {
  16621. source: "./media/characters/typhek/side.svg",
  16622. extra: 2034 / 2010,
  16623. bottom: 0.003
  16624. }
  16625. },
  16626. back: {
  16627. height: math.unit(6, "feet"),
  16628. weight: math.unit(150, "lb"),
  16629. name: "Back",
  16630. image: {
  16631. source: "./media/characters/typhek/back.svg",
  16632. extra: 2005 / 1978,
  16633. bottom: 0.004
  16634. }
  16635. },
  16636. palm: {
  16637. height: math.unit(1.2, "feet"),
  16638. name: "Palm",
  16639. image: {
  16640. source: "./media/characters/typhek/palm.svg"
  16641. }
  16642. },
  16643. fist: {
  16644. height: math.unit(1.1, "feet"),
  16645. name: "Fist",
  16646. image: {
  16647. source: "./media/characters/typhek/fist.svg"
  16648. }
  16649. },
  16650. foot: {
  16651. height: math.unit(1.57, "feet"),
  16652. name: "Foot",
  16653. image: {
  16654. source: "./media/characters/typhek/foot.svg"
  16655. }
  16656. },
  16657. sole: {
  16658. height: math.unit(2.05, "feet"),
  16659. name: "Sole",
  16660. image: {
  16661. source: "./media/characters/typhek/sole.svg"
  16662. }
  16663. },
  16664. },
  16665. [
  16666. {
  16667. name: "Macro",
  16668. height: math.unit(40, "stories"),
  16669. default: true
  16670. },
  16671. {
  16672. name: "Megamacro",
  16673. height: math.unit(1, "mile")
  16674. },
  16675. {
  16676. name: "Gigamacro",
  16677. height: math.unit(4000, "solarradii")
  16678. },
  16679. {
  16680. name: "Universal",
  16681. height: math.unit(1.1, "universes")
  16682. }
  16683. ]
  16684. ))
  16685. characterMakers.push(() => makeCharacter(
  16686. { name: "Kassy" },
  16687. {
  16688. side: {
  16689. height: math.unit(5 + 7 / 12, "feet"),
  16690. weight: math.unit(150, "lb"),
  16691. name: "Side",
  16692. image: {
  16693. source: "./media/characters/kassy/side.svg",
  16694. extra: 1280 / 1225,
  16695. bottom: 0.002
  16696. }
  16697. },
  16698. front: {
  16699. height: math.unit(5 + 7 / 12, "feet"),
  16700. weight: math.unit(150, "lb"),
  16701. name: "Front",
  16702. image: {
  16703. source: "./media/characters/kassy/front.svg",
  16704. extra: 1280 / 1225,
  16705. bottom: 0.025
  16706. }
  16707. },
  16708. back: {
  16709. height: math.unit(5 + 7 / 12, "feet"),
  16710. weight: math.unit(150, "lb"),
  16711. name: "Back",
  16712. image: {
  16713. source: "./media/characters/kassy/back.svg",
  16714. extra: 1280 / 1225,
  16715. bottom: 0.002
  16716. }
  16717. },
  16718. foot: {
  16719. height: math.unit(1.266, "feet"),
  16720. name: "Foot",
  16721. image: {
  16722. source: "./media/characters/kassy/foot.svg"
  16723. }
  16724. },
  16725. },
  16726. [
  16727. {
  16728. name: "Normal",
  16729. height: math.unit(5 + 7 / 12, "feet")
  16730. },
  16731. {
  16732. name: "Macro",
  16733. height: math.unit(137, "feet"),
  16734. default: true
  16735. },
  16736. {
  16737. name: "Megamacro",
  16738. height: math.unit(1, "mile")
  16739. },
  16740. ]
  16741. ))
  16742. characterMakers.push(() => makeCharacter(
  16743. { name: "Neil" },
  16744. {
  16745. front: {
  16746. height: math.unit(6 + 1 / 12, "feet"),
  16747. weight: math.unit(200, "lb"),
  16748. name: "Front",
  16749. image: {
  16750. source: "./media/characters/neil/front.svg",
  16751. extra: 1326 / 1250,
  16752. bottom: 0.023
  16753. }
  16754. },
  16755. },
  16756. [
  16757. {
  16758. name: "Normal",
  16759. height: math.unit(6 + 1 / 12, "feet"),
  16760. default: true
  16761. },
  16762. {
  16763. name: "Macro",
  16764. height: math.unit(200, "feet")
  16765. },
  16766. ]
  16767. ))
  16768. characterMakers.push(() => makeCharacter(
  16769. { name: "Atticus" },
  16770. {
  16771. front: {
  16772. height: math.unit(5 + 9 / 12, "feet"),
  16773. weight: math.unit(190, "lb"),
  16774. name: "Front",
  16775. image: {
  16776. source: "./media/characters/atticus/front.svg",
  16777. extra: 2934 / 2785,
  16778. bottom: 0.025
  16779. }
  16780. },
  16781. },
  16782. [
  16783. {
  16784. name: "Normal",
  16785. height: math.unit(5 + 9 / 12, "feet"),
  16786. default: true
  16787. },
  16788. {
  16789. name: "Macro",
  16790. height: math.unit(180, "feet")
  16791. },
  16792. ]
  16793. ))
  16794. characterMakers.push(() => makeCharacter(
  16795. { name: "Milo" },
  16796. {
  16797. side: {
  16798. height: math.unit(9, "feet"),
  16799. weight: math.unit(650, "lb"),
  16800. name: "Side",
  16801. image: {
  16802. source: "./media/characters/milo/side.svg",
  16803. extra: 2644 / 2310,
  16804. bottom: 0.032
  16805. }
  16806. },
  16807. },
  16808. [
  16809. {
  16810. name: "Normal",
  16811. height: math.unit(9, "feet"),
  16812. default: true
  16813. },
  16814. {
  16815. name: "Macro",
  16816. height: math.unit(300, "feet")
  16817. },
  16818. ]
  16819. ))
  16820. characterMakers.push(() => makeCharacter(
  16821. { name: "Ijzer" },
  16822. {
  16823. side: {
  16824. height: math.unit(8, "meters"),
  16825. weight: math.unit(90000, "kg"),
  16826. name: "Side",
  16827. image: {
  16828. source: "./media/characters/ijzer/side.svg",
  16829. extra: 2756 / 1600,
  16830. bottom: 0.01
  16831. }
  16832. },
  16833. },
  16834. [
  16835. {
  16836. name: "Small",
  16837. height: math.unit(3, "meters")
  16838. },
  16839. {
  16840. name: "Normal",
  16841. height: math.unit(8, "meters"),
  16842. default: true
  16843. },
  16844. {
  16845. name: "Normal+",
  16846. height: math.unit(10, "meters")
  16847. },
  16848. {
  16849. name: "Bigger",
  16850. height: math.unit(24, "meters")
  16851. },
  16852. {
  16853. name: "Huge",
  16854. height: math.unit(80, "meters")
  16855. },
  16856. ]
  16857. ))
  16858. characterMakers.push(() => makeCharacter(
  16859. { name: "Luca Cervicum" },
  16860. {
  16861. front: {
  16862. height: math.unit(6 + 2 / 12, "feet"),
  16863. weight: math.unit(153, "lb"),
  16864. name: "Front",
  16865. image: {
  16866. source: "./media/characters/luca-cervicum/front.svg",
  16867. extra: 370 / 327,
  16868. bottom: 0.015
  16869. }
  16870. },
  16871. back: {
  16872. height: math.unit(6 + 2 / 12, "feet"),
  16873. weight: math.unit(153, "lb"),
  16874. name: "Back",
  16875. image: {
  16876. source: "./media/characters/luca-cervicum/back.svg",
  16877. extra: 367 / 333,
  16878. bottom: 0.005
  16879. }
  16880. },
  16881. frontGear: {
  16882. height: math.unit(6 + 2 / 12, "feet"),
  16883. weight: math.unit(173, "lb"),
  16884. name: "Front (Gear)",
  16885. image: {
  16886. source: "./media/characters/luca-cervicum/front-gear.svg",
  16887. extra: 377 / 333,
  16888. bottom: 0.006
  16889. }
  16890. },
  16891. },
  16892. [
  16893. {
  16894. name: "Normal",
  16895. height: math.unit(6 + 2 / 12, "feet"),
  16896. default: true
  16897. },
  16898. ]
  16899. ))
  16900. characterMakers.push(() => makeCharacter(
  16901. { name: "Oliver" },
  16902. {
  16903. front: {
  16904. height: math.unit(6 + 1 / 12, "feet"),
  16905. weight: math.unit(304, "lb"),
  16906. name: "Front",
  16907. image: {
  16908. source: "./media/characters/oliver/front.svg",
  16909. extra: 157 / 143,
  16910. bottom: 0.08
  16911. }
  16912. },
  16913. },
  16914. [
  16915. {
  16916. name: "Normal",
  16917. height: math.unit(6 + 1 / 12, "feet"),
  16918. default: true
  16919. },
  16920. ]
  16921. ))
  16922. characterMakers.push(() => makeCharacter(
  16923. { name: "Shane" },
  16924. {
  16925. front: {
  16926. height: math.unit(5 + 7 / 12, "feet"),
  16927. weight: math.unit(140, "lb"),
  16928. name: "Front",
  16929. image: {
  16930. source: "./media/characters/shane/front.svg",
  16931. extra: 304 / 289,
  16932. bottom: 0.005
  16933. }
  16934. },
  16935. },
  16936. [
  16937. {
  16938. name: "Normal",
  16939. height: math.unit(5 + 7 / 12, "feet"),
  16940. default: true
  16941. },
  16942. ]
  16943. ))
  16944. characterMakers.push(() => makeCharacter(
  16945. { name: "Shin" },
  16946. {
  16947. front: {
  16948. height: math.unit(5 + 9 / 12, "feet"),
  16949. weight: math.unit(178, "lb"),
  16950. name: "Front",
  16951. image: {
  16952. source: "./media/characters/shin/front.svg",
  16953. extra: 159 / 151,
  16954. bottom: 0.015
  16955. }
  16956. },
  16957. },
  16958. [
  16959. {
  16960. name: "Normal",
  16961. height: math.unit(5 + 9 / 12, "feet"),
  16962. default: true
  16963. },
  16964. ]
  16965. ))
  16966. characterMakers.push(() => makeCharacter(
  16967. { name: "Xerxes" },
  16968. {
  16969. front: {
  16970. height: math.unit(5 + 10 / 12, "feet"),
  16971. weight: math.unit(168, "lb"),
  16972. name: "Front",
  16973. image: {
  16974. source: "./media/characters/xerxes/front.svg",
  16975. extra: 282 / 260,
  16976. bottom: 0.045
  16977. }
  16978. },
  16979. },
  16980. [
  16981. {
  16982. name: "Normal",
  16983. height: math.unit(5 + 10 / 12, "feet"),
  16984. default: true
  16985. },
  16986. ]
  16987. ))
  16988. characterMakers.push(() => makeCharacter(
  16989. { name: "Chaska" },
  16990. {
  16991. front: {
  16992. height: math.unit(6 + 7 / 12, "feet"),
  16993. weight: math.unit(208, "lb"),
  16994. name: "Front",
  16995. image: {
  16996. source: "./media/characters/chaska/front.svg",
  16997. extra: 332 / 319,
  16998. bottom: 0.015
  16999. }
  17000. },
  17001. },
  17002. [
  17003. {
  17004. name: "Normal",
  17005. height: math.unit(6 + 7 / 12, "feet"),
  17006. default: true
  17007. },
  17008. ]
  17009. ))
  17010. characterMakers.push(() => makeCharacter(
  17011. { name: "Enuk" },
  17012. {
  17013. front: {
  17014. height: math.unit(5 + 8 / 12, "feet"),
  17015. weight: math.unit(208, "lb"),
  17016. name: "Front",
  17017. image: {
  17018. source: "./media/characters/enuk/front.svg",
  17019. extra: 437 / 406,
  17020. bottom: 0.02
  17021. }
  17022. },
  17023. },
  17024. [
  17025. {
  17026. name: "Normal",
  17027. height: math.unit(5 + 8 / 12, "feet"),
  17028. default: true
  17029. },
  17030. ]
  17031. ))
  17032. characterMakers.push(() => makeCharacter(
  17033. { name: "Bruun" },
  17034. {
  17035. front: {
  17036. height: math.unit(5 + 10 / 12, "feet"),
  17037. weight: math.unit(252, "lb"),
  17038. name: "Front",
  17039. image: {
  17040. source: "./media/characters/bruun/front.svg",
  17041. extra: 197 / 187,
  17042. bottom: 0.012
  17043. }
  17044. },
  17045. },
  17046. [
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(5 + 10 / 12, "feet"),
  17050. default: true
  17051. },
  17052. ]
  17053. ))
  17054. characterMakers.push(() => makeCharacter(
  17055. { name: "Alexeev" },
  17056. {
  17057. front: {
  17058. height: math.unit(6 + 10 / 12, "feet"),
  17059. weight: math.unit(255, "lb"),
  17060. name: "Front",
  17061. image: {
  17062. source: "./media/characters/alexeev/front.svg",
  17063. extra: 213 / 200,
  17064. bottom: 0.05
  17065. }
  17066. },
  17067. },
  17068. [
  17069. {
  17070. name: "Normal",
  17071. height: math.unit(6 + 10 / 12, "feet"),
  17072. default: true
  17073. },
  17074. ]
  17075. ))
  17076. characterMakers.push(() => makeCharacter(
  17077. { name: "Evelyn" },
  17078. {
  17079. front: {
  17080. height: math.unit(2 + 8 / 12, "feet"),
  17081. weight: math.unit(22, "lb"),
  17082. name: "Front",
  17083. image: {
  17084. source: "./media/characters/evelyn/front.svg",
  17085. extra: 208 / 180
  17086. }
  17087. },
  17088. },
  17089. [
  17090. {
  17091. name: "Normal",
  17092. height: math.unit(2 + 8 / 12, "feet"),
  17093. default: true
  17094. },
  17095. ]
  17096. ))
  17097. characterMakers.push(() => makeCharacter(
  17098. { name: "Inca" },
  17099. {
  17100. front: {
  17101. height: math.unit(5 + 9 / 12, "feet"),
  17102. weight: math.unit(139, "lb"),
  17103. name: "Front",
  17104. image: {
  17105. source: "./media/characters/inca/front.svg",
  17106. extra: 294 / 291,
  17107. bottom: 0.03
  17108. }
  17109. },
  17110. },
  17111. [
  17112. {
  17113. name: "Normal",
  17114. height: math.unit(5 + 9 / 12, "feet"),
  17115. default: true
  17116. },
  17117. ]
  17118. ))
  17119. characterMakers.push(() => makeCharacter(
  17120. { name: "Magdalene" },
  17121. {
  17122. front: {
  17123. height: math.unit(5 + 1 / 12, "feet"),
  17124. weight: math.unit(84, "lb"),
  17125. name: "Front",
  17126. image: {
  17127. source: "./media/characters/magdalene/front.svg",
  17128. extra: 293 / 273
  17129. }
  17130. },
  17131. },
  17132. [
  17133. {
  17134. name: "Normal",
  17135. height: math.unit(5 + 1 / 12, "feet"),
  17136. default: true
  17137. },
  17138. ]
  17139. ))
  17140. characterMakers.push(() => makeCharacter(
  17141. { name: "Mera" },
  17142. {
  17143. front: {
  17144. height: math.unit(6 + 3 / 12, "feet"),
  17145. weight: math.unit(185, "lb"),
  17146. name: "Front",
  17147. image: {
  17148. source: "./media/characters/mera/front.svg",
  17149. extra: 291 / 277,
  17150. bottom: 0.03
  17151. }
  17152. },
  17153. },
  17154. [
  17155. {
  17156. name: "Normal",
  17157. height: math.unit(6 + 3 / 12, "feet"),
  17158. default: true
  17159. },
  17160. ]
  17161. ))
  17162. characterMakers.push(() => makeCharacter(
  17163. { name: "Ceres" },
  17164. {
  17165. front: {
  17166. height: math.unit(6 + 7 / 12, "feet"),
  17167. weight: math.unit(160, "lb"),
  17168. name: "Front",
  17169. image: {
  17170. source: "./media/characters/ceres/front.svg",
  17171. extra: 1023 / 950,
  17172. bottom: 0.027
  17173. }
  17174. },
  17175. back: {
  17176. height: math.unit(6 + 7 / 12, "feet"),
  17177. weight: math.unit(160, "lb"),
  17178. name: "Back",
  17179. image: {
  17180. source: "./media/characters/ceres/back.svg",
  17181. extra: 1023 / 950
  17182. }
  17183. },
  17184. },
  17185. [
  17186. {
  17187. name: "Normal",
  17188. height: math.unit(6 + 7 / 12, "feet"),
  17189. default: true
  17190. },
  17191. ]
  17192. ))
  17193. characterMakers.push(() => makeCharacter(
  17194. { name: "Kris" },
  17195. {
  17196. front: {
  17197. height: math.unit(5 + 10 / 12, "feet"),
  17198. weight: math.unit(150, "lb"),
  17199. name: "Front",
  17200. image: {
  17201. source: "./media/characters/kris/front.svg",
  17202. extra: 885 / 803,
  17203. bottom: 0.03
  17204. }
  17205. },
  17206. },
  17207. [
  17208. {
  17209. name: "Normal",
  17210. height: math.unit(5 + 10 / 12, "feet"),
  17211. default: true
  17212. },
  17213. ]
  17214. ))
  17215. characterMakers.push(() => makeCharacter(
  17216. { name: "Taluthus" },
  17217. {
  17218. front: {
  17219. height: math.unit(7, "feet"),
  17220. weight: math.unit(120, "kg"),
  17221. name: "Front",
  17222. image: {
  17223. source: "./media/characters/taluthus/front.svg",
  17224. extra: 903 / 833,
  17225. bottom: 0.015
  17226. }
  17227. },
  17228. },
  17229. [
  17230. {
  17231. name: "Normal",
  17232. height: math.unit(7, "feet"),
  17233. default: true
  17234. },
  17235. {
  17236. name: "Macro",
  17237. height: math.unit(300, "feet")
  17238. },
  17239. ]
  17240. ))
  17241. characterMakers.push(() => makeCharacter(
  17242. { name: "Dawn" },
  17243. {
  17244. front: {
  17245. height: math.unit(5 + 9 / 12, "feet"),
  17246. weight: math.unit(145, "lb"),
  17247. name: "Front",
  17248. image: {
  17249. source: "./media/characters/dawn/front.svg",
  17250. extra: 2094 / 2016,
  17251. bottom: 0.025
  17252. }
  17253. },
  17254. back: {
  17255. height: math.unit(5 + 9 / 12, "feet"),
  17256. weight: math.unit(160, "lb"),
  17257. name: "Back",
  17258. image: {
  17259. source: "./media/characters/dawn/back.svg",
  17260. extra: 2112 / 2080,
  17261. bottom: 0.005
  17262. }
  17263. },
  17264. },
  17265. [
  17266. {
  17267. name: "Normal",
  17268. height: math.unit(6 + 7 / 12, "feet"),
  17269. default: true
  17270. },
  17271. ]
  17272. ))
  17273. characterMakers.push(() => makeCharacter(
  17274. { name: "Arador" },
  17275. {
  17276. anthro: {
  17277. height: math.unit(8 + 3 / 12, "feet"),
  17278. weight: math.unit(450, "lb"),
  17279. name: "Anthro",
  17280. image: {
  17281. source: "./media/characters/arador/anthro.svg",
  17282. extra: 1835 / 1718,
  17283. bottom: 0.025
  17284. }
  17285. },
  17286. feral: {
  17287. height: math.unit(4, "feet"),
  17288. weight: math.unit(200, "lb"),
  17289. name: "Feral",
  17290. image: {
  17291. source: "./media/characters/arador/feral.svg",
  17292. extra: 1683 / 1514,
  17293. bottom: 0.07
  17294. }
  17295. },
  17296. },
  17297. [
  17298. {
  17299. name: "Normal",
  17300. height: math.unit(8 + 3 / 12, "feet")
  17301. },
  17302. {
  17303. name: "Macro",
  17304. height: math.unit(82.5, "feet"),
  17305. default: true
  17306. },
  17307. ]
  17308. ))
  17309. characterMakers.push(() => makeCharacter(
  17310. { name: "Dharsi" },
  17311. {
  17312. front: {
  17313. height: math.unit(5 + 10 / 12, "feet"),
  17314. weight: math.unit(125, "lb"),
  17315. name: "Front",
  17316. image: {
  17317. source: "./media/characters/dharsi/front.svg",
  17318. extra: 716 / 630,
  17319. bottom: 0.035
  17320. }
  17321. },
  17322. },
  17323. [
  17324. {
  17325. name: "Nano",
  17326. height: math.unit(100, "nm")
  17327. },
  17328. {
  17329. name: "Micro",
  17330. height: math.unit(2, "inches")
  17331. },
  17332. {
  17333. name: "Normal",
  17334. height: math.unit(5 + 10 / 12, "feet"),
  17335. default: true
  17336. },
  17337. {
  17338. name: "Macro",
  17339. height: math.unit(1000, "feet")
  17340. },
  17341. {
  17342. name: "Megamacro",
  17343. height: math.unit(10, "miles")
  17344. },
  17345. {
  17346. name: "Gigamacro",
  17347. height: math.unit(3000, "miles")
  17348. },
  17349. {
  17350. name: "Teramacro",
  17351. height: math.unit(500000, "miles")
  17352. },
  17353. {
  17354. name: "Teramacro+",
  17355. height: math.unit(30, "galaxies")
  17356. },
  17357. ]
  17358. ))
  17359. characterMakers.push(() => makeCharacter(
  17360. { name: "Deathy" },
  17361. {
  17362. front: {
  17363. height: math.unit(6, "feet"),
  17364. weight: math.unit(150, "lb"),
  17365. name: "Front",
  17366. image: {
  17367. source: "./media/characters/deathy/front.svg",
  17368. extra: 1552 / 1463,
  17369. bottom: 0.025
  17370. }
  17371. },
  17372. side: {
  17373. height: math.unit(6, "feet"),
  17374. weight: math.unit(150, "lb"),
  17375. name: "Side",
  17376. image: {
  17377. source: "./media/characters/deathy/side.svg",
  17378. extra: 1604 / 1455,
  17379. bottom: 0.025
  17380. }
  17381. },
  17382. back: {
  17383. height: math.unit(6, "feet"),
  17384. weight: math.unit(150, "lb"),
  17385. name: "Back",
  17386. image: {
  17387. source: "./media/characters/deathy/back.svg",
  17388. extra: 1580 / 1463,
  17389. bottom: 0.005
  17390. }
  17391. },
  17392. },
  17393. [
  17394. {
  17395. name: "Micro",
  17396. height: math.unit(5, "millimeters")
  17397. },
  17398. {
  17399. name: "Normal",
  17400. height: math.unit(6 + 5 / 12, "feet"),
  17401. default: true
  17402. },
  17403. ]
  17404. ))
  17405. characterMakers.push(() => makeCharacter(
  17406. { name: "Juniper" },
  17407. {
  17408. front: {
  17409. height: math.unit(16, "feet"),
  17410. weight: math.unit(4000, "lb"),
  17411. name: "Front",
  17412. image: {
  17413. source: "./media/characters/juniper/front.svg",
  17414. bottom: 0.04
  17415. }
  17416. },
  17417. },
  17418. [
  17419. {
  17420. name: "Normal",
  17421. height: math.unit(16, "feet"),
  17422. default: true
  17423. },
  17424. ]
  17425. ))
  17426. characterMakers.push(() => makeCharacter(
  17427. { name: "Hipster" },
  17428. {
  17429. front: {
  17430. height: math.unit(6, "feet"),
  17431. weight: math.unit(150, "lb"),
  17432. name: "Front",
  17433. image: {
  17434. source: "./media/characters/hipster/front.svg",
  17435. extra: 1312 / 1209,
  17436. bottom: 0.025
  17437. }
  17438. },
  17439. back: {
  17440. height: math.unit(6, "feet"),
  17441. weight: math.unit(150, "lb"),
  17442. name: "Back",
  17443. image: {
  17444. source: "./media/characters/hipster/back.svg",
  17445. extra: 1281 / 1196,
  17446. bottom: 0.01
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Micro",
  17453. height: math.unit(1, "mm")
  17454. },
  17455. {
  17456. name: "Normal",
  17457. height: math.unit(4, "inches"),
  17458. default: true
  17459. },
  17460. {
  17461. name: "Macro",
  17462. height: math.unit(500, "feet")
  17463. },
  17464. {
  17465. name: "Megamacro",
  17466. height: math.unit(1000, "miles")
  17467. },
  17468. ]
  17469. ))
  17470. characterMakers.push(() => makeCharacter(
  17471. { name: "Tendirmuldr" },
  17472. {
  17473. front: {
  17474. height: math.unit(6, "feet"),
  17475. weight: math.unit(150, "lb"),
  17476. name: "Front",
  17477. image: {
  17478. source: "./media/characters/tendirmuldr/front.svg",
  17479. extra: 1878 / 1772,
  17480. bottom: 0.015
  17481. }
  17482. },
  17483. },
  17484. [
  17485. {
  17486. name: "Megamacro",
  17487. height: math.unit(1500, "miles"),
  17488. default: true
  17489. },
  17490. ]
  17491. ))
  17492. characterMakers.push(() => makeCharacter(
  17493. { name: "Mort" },
  17494. {
  17495. front: {
  17496. height: math.unit(14, "feet"),
  17497. weight: math.unit(12000, "lb"),
  17498. name: "Front",
  17499. image: {
  17500. source: "./media/characters/mort/front.svg",
  17501. extra: 365 / 318,
  17502. bottom: 0.01
  17503. }
  17504. },
  17505. side: {
  17506. height: math.unit(14, "feet"),
  17507. weight: math.unit(12000, "lb"),
  17508. name: "Side",
  17509. image: {
  17510. source: "./media/characters/mort/side.svg",
  17511. extra: 365 / 318,
  17512. bottom: 0.052
  17513. },
  17514. default: true
  17515. },
  17516. back: {
  17517. height: math.unit(14, "feet"),
  17518. weight: math.unit(12000, "lb"),
  17519. name: "Back",
  17520. image: {
  17521. source: "./media/characters/mort/back.svg",
  17522. extra: 371 / 332,
  17523. bottom: 0.18
  17524. }
  17525. },
  17526. },
  17527. [
  17528. {
  17529. name: "Normal",
  17530. height: math.unit(14, "feet"),
  17531. default: true
  17532. },
  17533. ]
  17534. ))
  17535. characterMakers.push(() => makeCharacter(
  17536. { name: "Lycoa" },
  17537. {
  17538. front: {
  17539. height: math.unit(8, "feet"),
  17540. weight: math.unit(1, "ton"),
  17541. name: "Front",
  17542. image: {
  17543. source: "./media/characters/lycoa/front.svg",
  17544. extra: 1875 / 1789,
  17545. bottom: 0.022
  17546. }
  17547. },
  17548. back: {
  17549. height: math.unit(8, "feet"),
  17550. weight: math.unit(1, "ton"),
  17551. name: "Back",
  17552. image: {
  17553. source: "./media/characters/lycoa/back.svg",
  17554. extra: 1835 / 1781,
  17555. bottom: 0.03
  17556. }
  17557. },
  17558. },
  17559. [
  17560. {
  17561. name: "Normal",
  17562. height: math.unit(8, "feet"),
  17563. default: true
  17564. },
  17565. {
  17566. name: "Macro",
  17567. height: math.unit(30, "feet")
  17568. },
  17569. ]
  17570. ))
  17571. characterMakers.push(() => makeCharacter(
  17572. { name: "Naldara" },
  17573. {
  17574. front: {
  17575. height: math.unit(4 + 2 / 12, "feet"),
  17576. weight: math.unit(70, "lb"),
  17577. name: "Front",
  17578. image: {
  17579. source: "./media/characters/naldara/front.svg",
  17580. extra: 841 / 720,
  17581. bottom: 0.04
  17582. }
  17583. },
  17584. },
  17585. [
  17586. {
  17587. name: "Normal",
  17588. height: math.unit(4 + 2 / 12, "feet"),
  17589. default: true
  17590. },
  17591. ]
  17592. ))
  17593. characterMakers.push(() => makeCharacter(
  17594. { name: "Briar" },
  17595. {
  17596. front: {
  17597. height: math.unit(13 + 7 / 12, "feet"),
  17598. weight: math.unit(1500, "lb"),
  17599. name: "Front",
  17600. image: {
  17601. source: "./media/characters/briar/front.svg",
  17602. extra: 626 / 596,
  17603. bottom: 0.08
  17604. }
  17605. },
  17606. },
  17607. [
  17608. {
  17609. name: "Normal",
  17610. height: math.unit(13 + 7 / 12, "feet"),
  17611. default: true
  17612. },
  17613. ]
  17614. ))
  17615. characterMakers.push(() => makeCharacter(
  17616. { name: "Vanguard" },
  17617. {
  17618. side: {
  17619. height: math.unit(10, "feet"),
  17620. weight: math.unit(500, "lb"),
  17621. name: "Side",
  17622. image: {
  17623. source: "./media/characters/vanguard/side.svg",
  17624. extra: 502 / 425,
  17625. bottom: 0.087
  17626. }
  17627. },
  17628. },
  17629. [
  17630. {
  17631. name: "Normal",
  17632. height: math.unit(10, "feet"),
  17633. default: true
  17634. },
  17635. ]
  17636. ))
  17637. characterMakers.push(() => makeCharacter(
  17638. { name: "Artemis" },
  17639. {
  17640. front: {
  17641. height: math.unit(7.5, "feet"),
  17642. weight: math.unit(2, "lb"),
  17643. name: "Front",
  17644. image: {
  17645. source: "./media/characters/artemis/front.svg",
  17646. extra: 1192 / 1075,
  17647. bottom: 0.07
  17648. }
  17649. },
  17650. },
  17651. [
  17652. {
  17653. name: "Normal",
  17654. height: math.unit(7.5, "feet"),
  17655. default: true
  17656. },
  17657. {
  17658. name: "Enlarged",
  17659. height: math.unit(12, "feet")
  17660. },
  17661. ]
  17662. ))
  17663. characterMakers.push(() => makeCharacter(
  17664. { name: "Kira" },
  17665. {
  17666. front: {
  17667. height: math.unit(5 + 3 / 12, "feet"),
  17668. weight: math.unit(160, "lb"),
  17669. name: "Front",
  17670. image: {
  17671. source: "./media/characters/kira/front.svg",
  17672. extra: 906 / 786,
  17673. bottom: 0.01
  17674. }
  17675. },
  17676. back: {
  17677. height: math.unit(5 + 3 / 12, "feet"),
  17678. weight: math.unit(160, "lb"),
  17679. name: "Back",
  17680. image: {
  17681. source: "./media/characters/kira/back.svg",
  17682. extra: 882 / 757,
  17683. bottom: 0.005
  17684. }
  17685. },
  17686. frontDressed: {
  17687. height: math.unit(5 + 3 / 12, "feet"),
  17688. weight: math.unit(160, "lb"),
  17689. name: "Front (Dressed)",
  17690. image: {
  17691. source: "./media/characters/kira/front-dressed.svg",
  17692. extra: 906 / 786,
  17693. bottom: 0.01
  17694. }
  17695. },
  17696. beans: {
  17697. height: math.unit(0.92, "feet"),
  17698. name: "Beans",
  17699. image: {
  17700. source: "./media/characters/kira/beans.svg"
  17701. }
  17702. },
  17703. },
  17704. [
  17705. {
  17706. name: "Normal",
  17707. height: math.unit(5 + 3 / 12, "feet"),
  17708. default: true
  17709. },
  17710. ]
  17711. ))
  17712. characterMakers.push(() => makeCharacter(
  17713. { name: "Scramble" },
  17714. {
  17715. front: {
  17716. height: math.unit(5 + 4 / 12, "feet"),
  17717. weight: math.unit(145, "lb"),
  17718. name: "Front",
  17719. image: {
  17720. source: "./media/characters/scramble/front.svg",
  17721. extra: 763 / 727,
  17722. bottom: 0.05
  17723. }
  17724. },
  17725. back: {
  17726. height: math.unit(5 + 4 / 12, "feet"),
  17727. weight: math.unit(145, "lb"),
  17728. name: "Back",
  17729. image: {
  17730. source: "./media/characters/scramble/back.svg",
  17731. extra: 826 / 737,
  17732. bottom: 0.002
  17733. }
  17734. },
  17735. },
  17736. [
  17737. {
  17738. name: "Normal",
  17739. height: math.unit(5 + 4 / 12, "feet"),
  17740. default: true
  17741. },
  17742. ]
  17743. ))
  17744. characterMakers.push(() => makeCharacter(
  17745. { name: "Biscuit" },
  17746. {
  17747. side: {
  17748. height: math.unit(6 + 2 / 12, "feet"),
  17749. weight: math.unit(190, "lb"),
  17750. name: "Side",
  17751. image: {
  17752. source: "./media/characters/biscuit/side.svg",
  17753. extra: 858 / 791,
  17754. bottom: 0.044
  17755. }
  17756. },
  17757. },
  17758. [
  17759. {
  17760. name: "Normal",
  17761. height: math.unit(6 + 2 / 12, "feet"),
  17762. default: true
  17763. },
  17764. ]
  17765. ))
  17766. characterMakers.push(() => makeCharacter(
  17767. { name: "Poffin" },
  17768. {
  17769. front: {
  17770. height: math.unit(5 + 2 / 12, "feet"),
  17771. weight: math.unit(120, "lb"),
  17772. name: "Front",
  17773. image: {
  17774. source: "./media/characters/poffin/front.svg",
  17775. extra: 786 / 680,
  17776. bottom: 0.005
  17777. }
  17778. },
  17779. },
  17780. [
  17781. {
  17782. name: "Normal",
  17783. height: math.unit(5 + 2 / 12, "feet"),
  17784. default: true
  17785. },
  17786. ]
  17787. ))
  17788. characterMakers.push(() => makeCharacter(
  17789. { name: "Dhari" },
  17790. {
  17791. front: {
  17792. height: math.unit(6 + 3 / 12, "feet"),
  17793. weight: math.unit(519, "lb"),
  17794. name: "Front",
  17795. image: {
  17796. source: "./media/characters/dhari/front.svg",
  17797. extra: 1048 / 946,
  17798. bottom: 0.015
  17799. }
  17800. },
  17801. back: {
  17802. height: math.unit(6 + 3 / 12, "feet"),
  17803. weight: math.unit(519, "lb"),
  17804. name: "Back",
  17805. image: {
  17806. source: "./media/characters/dhari/back.svg",
  17807. extra: 1048 / 931,
  17808. bottom: 0.005
  17809. }
  17810. },
  17811. frontDressed: {
  17812. height: math.unit(6 + 3 / 12, "feet"),
  17813. weight: math.unit(519, "lb"),
  17814. name: "Front (Dressed)",
  17815. image: {
  17816. source: "./media/characters/dhari/front-dressed.svg",
  17817. extra: 1713 / 1546,
  17818. bottom: 0.02
  17819. }
  17820. },
  17821. backDressed: {
  17822. height: math.unit(6 + 3 / 12, "feet"),
  17823. weight: math.unit(519, "lb"),
  17824. name: "Back (Dressed)",
  17825. image: {
  17826. source: "./media/characters/dhari/back-dressed.svg",
  17827. extra: 1699 / 1537,
  17828. bottom: 0.01
  17829. }
  17830. },
  17831. maw: {
  17832. height: math.unit(0.95, "feet"),
  17833. name: "Maw",
  17834. image: {
  17835. source: "./media/characters/dhari/maw.svg"
  17836. }
  17837. },
  17838. wereFront: {
  17839. height: math.unit(12 + 8 / 12, "feet"),
  17840. weight: math.unit(4000, "lb"),
  17841. name: "Front (Were)",
  17842. image: {
  17843. source: "./media/characters/dhari/were-front.svg",
  17844. extra: 1065 / 969,
  17845. bottom: 0.015
  17846. }
  17847. },
  17848. wereBack: {
  17849. height: math.unit(12 + 8 / 12, "feet"),
  17850. weight: math.unit(4000, "lb"),
  17851. name: "Back (Were)",
  17852. image: {
  17853. source: "./media/characters/dhari/were-back.svg",
  17854. extra: 1065 / 969,
  17855. bottom: 0.012
  17856. }
  17857. },
  17858. wereMaw: {
  17859. height: math.unit(0.625, "meters"),
  17860. name: "Maw (Were)",
  17861. image: {
  17862. source: "./media/characters/dhari/were-maw.svg"
  17863. }
  17864. },
  17865. },
  17866. [
  17867. {
  17868. name: "Normal",
  17869. height: math.unit(6 + 3 / 12, "feet"),
  17870. default: true
  17871. },
  17872. ]
  17873. ))
  17874. characterMakers.push(() => makeCharacter(
  17875. { name: "Rena Dyne" },
  17876. {
  17877. anthro: {
  17878. height: math.unit(5 + 7 / 12, "feet"),
  17879. weight: math.unit(175, "lb"),
  17880. name: "Anthro",
  17881. image: {
  17882. source: "./media/characters/rena-dyne/anthro.svg",
  17883. extra: 1849 / 1785,
  17884. bottom: 0.005
  17885. }
  17886. },
  17887. taur: {
  17888. height: math.unit(15 + 6 / 12, "feet"),
  17889. weight: math.unit(8000, "lb"),
  17890. name: "Taur",
  17891. image: {
  17892. source: "./media/characters/rena-dyne/taur.svg",
  17893. extra: 2315 / 2234,
  17894. bottom: 0.033
  17895. }
  17896. },
  17897. },
  17898. [
  17899. {
  17900. name: "Normal",
  17901. height: math.unit(5 + 7 / 12, "feet"),
  17902. default: true
  17903. },
  17904. ]
  17905. ))
  17906. characterMakers.push(() => makeCharacter(
  17907. { name: "Weremeep" },
  17908. {
  17909. front: {
  17910. height: math.unit(8, "feet"),
  17911. weight: math.unit(600, "lb"),
  17912. name: "Front",
  17913. image: {
  17914. source: "./media/characters/weremeep/front.svg",
  17915. extra: 967 / 862,
  17916. bottom: 0.01
  17917. }
  17918. },
  17919. },
  17920. [
  17921. {
  17922. name: "Normal",
  17923. height: math.unit(8, "feet"),
  17924. default: true
  17925. },
  17926. {
  17927. name: "Lorg",
  17928. height: math.unit(12, "feet")
  17929. },
  17930. {
  17931. name: "Oh Lawd She Comin'",
  17932. height: math.unit(20, "feet")
  17933. },
  17934. ]
  17935. ))
  17936. characterMakers.push(() => makeCharacter(
  17937. { name: "Reza" },
  17938. {
  17939. front: {
  17940. height: math.unit(4, "feet"),
  17941. weight: math.unit(90, "lb"),
  17942. name: "Front",
  17943. image: {
  17944. source: "./media/characters/reza/front.svg",
  17945. extra: 1183 / 1111,
  17946. bottom: 0.017
  17947. }
  17948. },
  17949. back: {
  17950. height: math.unit(4, "feet"),
  17951. weight: math.unit(90, "lb"),
  17952. name: "Back",
  17953. image: {
  17954. source: "./media/characters/reza/back.svg",
  17955. extra: 1183 / 1111,
  17956. bottom: 0.01
  17957. }
  17958. },
  17959. },
  17960. [
  17961. {
  17962. name: "Normal",
  17963. height: math.unit(4, "feet"),
  17964. default: true
  17965. },
  17966. ]
  17967. ))
  17968. characterMakers.push(() => makeCharacter(
  17969. { name: "Athea" },
  17970. {
  17971. side: {
  17972. height: math.unit(15, "feet"),
  17973. weight: math.unit(14, "tons"),
  17974. name: "Side",
  17975. image: {
  17976. source: "./media/characters/athea/side.svg",
  17977. extra: 960 / 540,
  17978. bottom: 0.003
  17979. }
  17980. },
  17981. sitting: {
  17982. height: math.unit(6 * 2.85, "feet"),
  17983. weight: math.unit(14, "tons"),
  17984. name: "Sitting",
  17985. image: {
  17986. source: "./media/characters/athea/sitting.svg",
  17987. extra: 621 / 581,
  17988. bottom: 0.075
  17989. }
  17990. },
  17991. maw: {
  17992. height: math.unit(7.59498031496063, "feet"),
  17993. name: "Maw",
  17994. image: {
  17995. source: "./media/characters/athea/maw.svg"
  17996. }
  17997. },
  17998. },
  17999. [
  18000. {
  18001. name: "Lap Cat",
  18002. height: math.unit(2.5, "feet")
  18003. },
  18004. {
  18005. name: "Minimacro",
  18006. height: math.unit(15, "feet"),
  18007. default: true
  18008. },
  18009. {
  18010. name: "Macro",
  18011. height: math.unit(120, "feet")
  18012. },
  18013. {
  18014. name: "Macro+",
  18015. height: math.unit(640, "feet")
  18016. },
  18017. {
  18018. name: "Colossus",
  18019. height: math.unit(2.2, "miles")
  18020. },
  18021. ]
  18022. ))
  18023. characterMakers.push(() => makeCharacter(
  18024. { name: "Seroko" },
  18025. {
  18026. front: {
  18027. height: math.unit(8 + 8 / 12, "feet"),
  18028. weight: math.unit(130, "kg"),
  18029. name: "Front",
  18030. image: {
  18031. source: "./media/characters/seroko/front.svg",
  18032. extra: 1385 / 1280,
  18033. bottom: 0.025
  18034. }
  18035. },
  18036. back: {
  18037. height: math.unit(8 + 8 / 12, "feet"),
  18038. weight: math.unit(130, "kg"),
  18039. name: "Back",
  18040. image: {
  18041. source: "./media/characters/seroko/back.svg",
  18042. extra: 1369 / 1238,
  18043. bottom: 0.018
  18044. }
  18045. },
  18046. frontDressed: {
  18047. height: math.unit(8 + 8 / 12, "feet"),
  18048. weight: math.unit(130, "kg"),
  18049. name: "Front (Dressed)",
  18050. image: {
  18051. source: "./media/characters/seroko/front-dressed.svg",
  18052. extra: 1366 / 1275,
  18053. bottom: 0.03
  18054. }
  18055. },
  18056. },
  18057. [
  18058. {
  18059. name: "Normal",
  18060. height: math.unit(8 + 8 / 12, "feet"),
  18061. default: true
  18062. },
  18063. ]
  18064. ))
  18065. characterMakers.push(() => makeCharacter(
  18066. { name: "Quatzi" },
  18067. {
  18068. front: {
  18069. height: math.unit(5.5, "feet"),
  18070. weight: math.unit(160, "lb"),
  18071. name: "Front",
  18072. image: {
  18073. source: "./media/characters/quatzi/front.svg",
  18074. extra: 2346 / 2242,
  18075. bottom: 0.015
  18076. }
  18077. },
  18078. },
  18079. [
  18080. {
  18081. name: "Normal",
  18082. height: math.unit(5.5, "feet"),
  18083. default: true
  18084. },
  18085. {
  18086. name: "Big",
  18087. height: math.unit(7.7, "feet")
  18088. },
  18089. ]
  18090. ))
  18091. characterMakers.push(() => makeCharacter(
  18092. { name: "Sen" },
  18093. {
  18094. front: {
  18095. height: math.unit(5 + 11 / 12, "feet"),
  18096. weight: math.unit(180, "lb"),
  18097. name: "Front",
  18098. image: {
  18099. source: "./media/characters/sen/front.svg",
  18100. extra: 1321 / 1254,
  18101. bottom: 0.015
  18102. }
  18103. },
  18104. side: {
  18105. height: math.unit(5 + 11 / 12, "feet"),
  18106. weight: math.unit(180, "lb"),
  18107. name: "Side",
  18108. image: {
  18109. source: "./media/characters/sen/side.svg",
  18110. extra: 1321 / 1254,
  18111. bottom: 0.007
  18112. }
  18113. },
  18114. back: {
  18115. height: math.unit(5 + 11 / 12, "feet"),
  18116. weight: math.unit(180, "lb"),
  18117. name: "Back",
  18118. image: {
  18119. source: "./media/characters/sen/back.svg",
  18120. extra: 1321 / 1254
  18121. }
  18122. },
  18123. },
  18124. [
  18125. {
  18126. name: "Normal",
  18127. height: math.unit(5 + 11 / 12, "feet"),
  18128. default: true
  18129. },
  18130. ]
  18131. ))
  18132. characterMakers.push(() => makeCharacter(
  18133. { name: "Fruity" },
  18134. {
  18135. front: {
  18136. height: math.unit(166.6, "cm"),
  18137. weight: math.unit(66.6, "kg"),
  18138. name: "Front",
  18139. image: {
  18140. source: "./media/characters/fruity/front.svg",
  18141. extra: 1510 / 1386,
  18142. bottom: 0.04
  18143. }
  18144. },
  18145. back: {
  18146. height: math.unit(166.6, "cm"),
  18147. weight: math.unit(66.6, "lb"),
  18148. name: "Back",
  18149. image: {
  18150. source: "./media/characters/fruity/back.svg",
  18151. extra: 1563 / 1435,
  18152. bottom: 0.005
  18153. }
  18154. },
  18155. },
  18156. [
  18157. {
  18158. name: "Normal",
  18159. height: math.unit(166.6, "cm"),
  18160. default: true
  18161. },
  18162. {
  18163. name: "Demonic",
  18164. height: math.unit(166.6, "feet")
  18165. },
  18166. ]
  18167. ))
  18168. characterMakers.push(() => makeCharacter(
  18169. { name: "Zost" },
  18170. {
  18171. side: {
  18172. height: math.unit(10, "feet"),
  18173. weight: math.unit(500, "lb"),
  18174. name: "Side",
  18175. image: {
  18176. source: "./media/characters/zost/side.svg",
  18177. extra: 966 / 880,
  18178. bottom: 0.075
  18179. }
  18180. },
  18181. mawFront: {
  18182. height: math.unit(1.08, "meters"),
  18183. name: "Maw (Front)",
  18184. image: {
  18185. source: "./media/characters/zost/maw-front.svg"
  18186. }
  18187. },
  18188. mawSide: {
  18189. height: math.unit(2.66, "feet"),
  18190. name: "Maw (Side)",
  18191. image: {
  18192. source: "./media/characters/zost/maw-side.svg"
  18193. }
  18194. },
  18195. },
  18196. [
  18197. {
  18198. name: "Normal",
  18199. height: math.unit(10, "feet"),
  18200. default: true
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Luci" },
  18206. {
  18207. front: {
  18208. height: math.unit(5 + 4 / 12, "feet"),
  18209. weight: math.unit(120, "lb"),
  18210. name: "Front",
  18211. image: {
  18212. source: "./media/characters/luci/front.svg",
  18213. extra: 1985 / 1884,
  18214. bottom: 0.04
  18215. }
  18216. },
  18217. back: {
  18218. height: math.unit(5 + 4 / 12, "feet"),
  18219. weight: math.unit(120, "lb"),
  18220. name: "Back",
  18221. image: {
  18222. source: "./media/characters/luci/back.svg",
  18223. extra: 1892 / 1791,
  18224. bottom: 0.002
  18225. }
  18226. },
  18227. },
  18228. [
  18229. {
  18230. name: "Normal",
  18231. height: math.unit(5 + 4 / 12, "feet"),
  18232. default: true
  18233. },
  18234. ]
  18235. ))
  18236. characterMakers.push(() => makeCharacter(
  18237. { name: "2th" },
  18238. {
  18239. front: {
  18240. height: math.unit(1500, "feet"),
  18241. weight: math.unit(3.8e6, "tons"),
  18242. name: "Front",
  18243. image: {
  18244. source: "./media/characters/2th/front.svg",
  18245. extra: 3489 / 3350,
  18246. bottom: 0.1
  18247. }
  18248. },
  18249. foot: {
  18250. height: math.unit(461, "feet"),
  18251. name: "Foot",
  18252. image: {
  18253. source: "./media/characters/2th/foot.svg"
  18254. }
  18255. },
  18256. },
  18257. [
  18258. {
  18259. name: "\"Micro\"",
  18260. height: math.unit(15 + 7 / 12, "feet")
  18261. },
  18262. {
  18263. name: "Normal",
  18264. height: math.unit(1500, "feet"),
  18265. default: true
  18266. },
  18267. {
  18268. name: "Macro",
  18269. height: math.unit(5000, "feet")
  18270. },
  18271. {
  18272. name: "Megamacro",
  18273. height: math.unit(15, "miles")
  18274. },
  18275. {
  18276. name: "Gigamacro",
  18277. height: math.unit(4000, "miles")
  18278. },
  18279. {
  18280. name: "Galactic",
  18281. height: math.unit(50, "AU")
  18282. },
  18283. ]
  18284. ))
  18285. characterMakers.push(() => makeCharacter(
  18286. { name: "Amethyst" },
  18287. {
  18288. front: {
  18289. height: math.unit(5 + 6 / 12, "feet"),
  18290. weight: math.unit(220, "lb"),
  18291. name: "Front",
  18292. image: {
  18293. source: "./media/characters/amethyst/front.svg",
  18294. extra: 2078 / 2040,
  18295. bottom: 0.045
  18296. }
  18297. },
  18298. back: {
  18299. height: math.unit(5 + 6 / 12, "feet"),
  18300. weight: math.unit(220, "lb"),
  18301. name: "Back",
  18302. image: {
  18303. source: "./media/characters/amethyst/back.svg",
  18304. extra: 2021 / 1989,
  18305. bottom: 0.02
  18306. }
  18307. },
  18308. },
  18309. [
  18310. {
  18311. name: "Normal",
  18312. height: math.unit(5 + 6 / 12, "feet"),
  18313. default: true
  18314. },
  18315. ]
  18316. ))
  18317. characterMakers.push(() => makeCharacter(
  18318. { name: "Yumi Akiyama" },
  18319. {
  18320. front: {
  18321. height: math.unit(4 + 11 / 12, "feet"),
  18322. weight: math.unit(120, "lb"),
  18323. name: "Front",
  18324. image: {
  18325. source: "./media/characters/yumi-akiyama/front.svg",
  18326. extra: 1327 / 1235,
  18327. bottom: 0.02
  18328. }
  18329. },
  18330. back: {
  18331. height: math.unit(4 + 11 / 12, "feet"),
  18332. weight: math.unit(120, "lb"),
  18333. name: "Back",
  18334. image: {
  18335. source: "./media/characters/yumi-akiyama/back.svg",
  18336. extra: 1287 / 1245,
  18337. bottom: 0.002
  18338. }
  18339. },
  18340. },
  18341. [
  18342. {
  18343. name: "Galactic",
  18344. height: math.unit(50, "galaxies"),
  18345. default: true
  18346. },
  18347. {
  18348. name: "Universal",
  18349. height: math.unit(100, "universes")
  18350. },
  18351. ]
  18352. ))
  18353. characterMakers.push(() => makeCharacter(
  18354. { name: "Rifter Yrmori" },
  18355. {
  18356. front: {
  18357. height: math.unit(8, "feet"),
  18358. weight: math.unit(500, "lb"),
  18359. name: "Front",
  18360. image: {
  18361. source: "./media/characters/rifter-yrmori/front.svg",
  18362. extra: 1180 / 1125,
  18363. bottom: 0.02
  18364. }
  18365. },
  18366. back: {
  18367. height: math.unit(8, "feet"),
  18368. weight: math.unit(500, "lb"),
  18369. name: "Back",
  18370. image: {
  18371. source: "./media/characters/rifter-yrmori/back.svg",
  18372. extra: 1190 / 1145,
  18373. bottom: 0.001
  18374. }
  18375. },
  18376. wings: {
  18377. height: math.unit(7.75, "feet"),
  18378. weight: math.unit(500, "lb"),
  18379. name: "Wings",
  18380. image: {
  18381. source: "./media/characters/rifter-yrmori/wings.svg",
  18382. extra: 1357 / 1285
  18383. }
  18384. },
  18385. maw: {
  18386. height: math.unit(0.8, "feet"),
  18387. name: "Maw",
  18388. image: {
  18389. source: "./media/characters/rifter-yrmori/maw.svg"
  18390. }
  18391. },
  18392. },
  18393. [
  18394. {
  18395. name: "Normal",
  18396. height: math.unit(8, "feet"),
  18397. default: true
  18398. },
  18399. {
  18400. name: "Macro",
  18401. height: math.unit(42, "meters")
  18402. },
  18403. ]
  18404. ))
  18405. characterMakers.push(() => makeCharacter(
  18406. { name: "Tahajin" },
  18407. {
  18408. were: {
  18409. height: math.unit(25 + 6 / 12, "feet"),
  18410. weight: math.unit(10000, "lb"),
  18411. name: "Were",
  18412. image: {
  18413. source: "./media/characters/tahajin/were.svg",
  18414. extra: 801 / 770,
  18415. bottom: 0.042
  18416. }
  18417. },
  18418. aquatic: {
  18419. height: math.unit(6 + 4 / 12, "feet"),
  18420. weight: math.unit(160, "lb"),
  18421. name: "Aquatic",
  18422. image: {
  18423. source: "./media/characters/tahajin/aquatic.svg",
  18424. extra: 572 / 542,
  18425. bottom: 0.04
  18426. }
  18427. },
  18428. chow: {
  18429. height: math.unit(8 + 11 / 12, "feet"),
  18430. weight: math.unit(450, "lb"),
  18431. name: "Chow",
  18432. image: {
  18433. source: "./media/characters/tahajin/chow.svg",
  18434. extra: 660 / 640,
  18435. bottom: 0.015
  18436. }
  18437. },
  18438. demiNaga: {
  18439. height: math.unit(6 + 8 / 12, "feet"),
  18440. weight: math.unit(300, "lb"),
  18441. name: "Demi Naga",
  18442. image: {
  18443. source: "./media/characters/tahajin/demi-naga.svg",
  18444. extra: 643 / 615,
  18445. bottom: 0.1
  18446. }
  18447. },
  18448. data: {
  18449. height: math.unit(5, "inches"),
  18450. weight: math.unit(0.1, "lb"),
  18451. name: "Data",
  18452. image: {
  18453. source: "./media/characters/tahajin/data.svg"
  18454. }
  18455. },
  18456. fluu: {
  18457. height: math.unit(5 + 7 / 12, "feet"),
  18458. weight: math.unit(140, "lb"),
  18459. name: "Fluu",
  18460. image: {
  18461. source: "./media/characters/tahajin/fluu.svg",
  18462. extra: 628 / 592,
  18463. bottom: 0.02
  18464. }
  18465. },
  18466. starWarrior: {
  18467. height: math.unit(4 + 5 / 12, "feet"),
  18468. weight: math.unit(50, "lb"),
  18469. name: "Star Warrior",
  18470. image: {
  18471. source: "./media/characters/tahajin/star-warrior.svg"
  18472. }
  18473. },
  18474. },
  18475. [
  18476. {
  18477. name: "Normal",
  18478. height: math.unit(25 + 6 / 12, "feet"),
  18479. default: true
  18480. },
  18481. ]
  18482. ))
  18483. characterMakers.push(() => makeCharacter(
  18484. { name: "Gabira" },
  18485. {
  18486. front: {
  18487. height: math.unit(8, "feet"),
  18488. weight: math.unit(350, "lb"),
  18489. name: "Front",
  18490. image: {
  18491. source: "./media/characters/gabira/front.svg",
  18492. extra: 608 / 580,
  18493. bottom: 0.03
  18494. }
  18495. },
  18496. back: {
  18497. height: math.unit(8, "feet"),
  18498. weight: math.unit(350, "lb"),
  18499. name: "Back",
  18500. image: {
  18501. source: "./media/characters/gabira/back.svg",
  18502. extra: 608 / 580,
  18503. bottom: 0.03
  18504. }
  18505. },
  18506. },
  18507. [
  18508. {
  18509. name: "Normal",
  18510. height: math.unit(8, "feet"),
  18511. default: true
  18512. },
  18513. ]
  18514. ))
  18515. characterMakers.push(() => makeCharacter(
  18516. { name: "Sasha Katraine" },
  18517. {
  18518. front: {
  18519. height: math.unit(5 + 3 / 12, "feet"),
  18520. weight: math.unit(137, "lb"),
  18521. name: "Front",
  18522. image: {
  18523. source: "./media/characters/sasha-katraine/front.svg",
  18524. bottom: 0.045
  18525. }
  18526. },
  18527. },
  18528. [
  18529. {
  18530. name: "Micro",
  18531. height: math.unit(5, "inches")
  18532. },
  18533. {
  18534. name: "Normal",
  18535. height: math.unit(5 + 3 / 12, "feet"),
  18536. default: true
  18537. },
  18538. ]
  18539. ))
  18540. characterMakers.push(() => makeCharacter(
  18541. { name: "Der" },
  18542. {
  18543. side: {
  18544. height: math.unit(4, "inches"),
  18545. weight: math.unit(200, "grams"),
  18546. name: "Side",
  18547. image: {
  18548. source: "./media/characters/der/side.svg",
  18549. extra: 719 / 400,
  18550. bottom: 30.6 / 749.9187
  18551. }
  18552. },
  18553. },
  18554. [
  18555. {
  18556. name: "Micro",
  18557. height: math.unit(4, "inches"),
  18558. default: true
  18559. },
  18560. ]
  18561. ))
  18562. characterMakers.push(() => makeCharacter(
  18563. { name: "Fixerdragon" },
  18564. {
  18565. side: {
  18566. height: math.unit(30, "meters"),
  18567. weight: math.unit(700, "tonnes"),
  18568. name: "Side",
  18569. image: {
  18570. source: "./media/characters/fixerdragon/side.svg",
  18571. extra: (1293.0514 - 116.03) / 1106.86,
  18572. bottom: 116.03 / 1293.0514
  18573. }
  18574. },
  18575. },
  18576. [
  18577. {
  18578. name: "Planck",
  18579. height: math.unit(1.6e-35, "meters")
  18580. },
  18581. {
  18582. name: "Micro",
  18583. height: math.unit(0.4, "meters")
  18584. },
  18585. {
  18586. name: "Normal",
  18587. height: math.unit(30, "meters"),
  18588. default: true
  18589. },
  18590. {
  18591. name: "Megamacro",
  18592. height: math.unit(1.2, "megameters")
  18593. },
  18594. {
  18595. name: "Teramacro",
  18596. height: math.unit(130, "terameters")
  18597. },
  18598. {
  18599. name: "Yottamacro",
  18600. height: math.unit(6200, "yottameters")
  18601. },
  18602. ]
  18603. ));
  18604. characterMakers.push(() => makeCharacter(
  18605. { name: "Kite" },
  18606. {
  18607. front: {
  18608. height: math.unit(8, "feet"),
  18609. weight: math.unit(250, "lb"),
  18610. name: "Front",
  18611. image: {
  18612. source: "./media/characters/kite/front.svg",
  18613. extra: 2796 / 2659,
  18614. bottom: 0.002
  18615. }
  18616. },
  18617. },
  18618. [
  18619. {
  18620. name: "Normal",
  18621. height: math.unit(8, "feet"),
  18622. default: true
  18623. },
  18624. {
  18625. name: "Macro",
  18626. height: math.unit(360, "feet")
  18627. },
  18628. {
  18629. name: "Megamacro",
  18630. height: math.unit(1500, "feet")
  18631. },
  18632. ]
  18633. ))
  18634. characterMakers.push(() => makeCharacter(
  18635. { name: "Poojawa Vynar" },
  18636. {
  18637. front: {
  18638. height: math.unit(5 + 10 / 12, "feet"),
  18639. weight: math.unit(150, "lb"),
  18640. name: "Front",
  18641. image: {
  18642. source: "./media/characters/poojawa-vynar/front.svg",
  18643. extra: (1506.1547 - 55) / 1356.6,
  18644. bottom: 55 / 1506.1547
  18645. }
  18646. },
  18647. frontTailless: {
  18648. height: math.unit(5 + 10 / 12, "feet"),
  18649. weight: math.unit(150, "lb"),
  18650. name: "Front (Tailless)",
  18651. image: {
  18652. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18653. extra: (1506.1547 - 55) / 1356.6,
  18654. bottom: 55 / 1506.1547
  18655. }
  18656. },
  18657. },
  18658. [
  18659. {
  18660. name: "Normal",
  18661. height: math.unit(5 + 10 / 12, "feet"),
  18662. default: true
  18663. },
  18664. ]
  18665. ))
  18666. characterMakers.push(() => makeCharacter(
  18667. { name: "Violette" },
  18668. {
  18669. front: {
  18670. height: math.unit(293, "meters"),
  18671. weight: math.unit(70400, "tons"),
  18672. name: "Front",
  18673. image: {
  18674. source: "./media/characters/violette/front.svg",
  18675. extra: 1227 / 1180,
  18676. bottom: 0.005
  18677. }
  18678. },
  18679. back: {
  18680. height: math.unit(293, "meters"),
  18681. weight: math.unit(70400, "tons"),
  18682. name: "Back",
  18683. image: {
  18684. source: "./media/characters/violette/back.svg",
  18685. extra: 1227 / 1180,
  18686. bottom: 0.005
  18687. }
  18688. },
  18689. },
  18690. [
  18691. {
  18692. name: "Macro",
  18693. height: math.unit(293, "meters"),
  18694. default: true
  18695. },
  18696. ]
  18697. ))
  18698. characterMakers.push(() => makeCharacter(
  18699. { name: "Alessandra" },
  18700. {
  18701. front: {
  18702. height: math.unit(1050, "feet"),
  18703. weight: math.unit(200000, "tons"),
  18704. name: "Front",
  18705. image: {
  18706. source: "./media/characters/alessandra/front.svg",
  18707. extra: 960 / 912,
  18708. bottom: 0.06
  18709. }
  18710. },
  18711. },
  18712. [
  18713. {
  18714. name: "Macro",
  18715. height: math.unit(1050, "feet")
  18716. },
  18717. {
  18718. name: "Macro+",
  18719. height: math.unit(900, "meters"),
  18720. default: true
  18721. },
  18722. ]
  18723. ))
  18724. characterMakers.push(() => makeCharacter(
  18725. { name: "Person", species: "Catdragon" },
  18726. {
  18727. front: {
  18728. height: math.unit(5, "feet"),
  18729. weight: math.unit(187, "lb"),
  18730. name: "Front",
  18731. image: {
  18732. source: "./media/characters/person/front.svg",
  18733. extra: 3087 / 2945,
  18734. bottom: 91 / 3181
  18735. }
  18736. },
  18737. },
  18738. [
  18739. {
  18740. name: "Micro",
  18741. height: math.unit(3, "inches")
  18742. },
  18743. {
  18744. name: "Normal",
  18745. height: math.unit(5, "feet"),
  18746. default: true
  18747. },
  18748. {
  18749. name: "Macro",
  18750. height: math.unit(90, "feet")
  18751. },
  18752. {
  18753. name: "Max Size",
  18754. height: math.unit(280, "feet")
  18755. },
  18756. ]
  18757. ))
  18758. characterMakers.push(() => makeCharacter(
  18759. { name: "Ty" },
  18760. {
  18761. front: {
  18762. height: math.unit(4.5, "meters"),
  18763. weight: math.unit(3200, "lb"),
  18764. name: "Front",
  18765. image: {
  18766. source: "./media/characters/ty/front.svg",
  18767. extra: 1038 / 960,
  18768. bottom: 31.156 / 1068
  18769. }
  18770. },
  18771. back: {
  18772. height: math.unit(4.5, "meters"),
  18773. weight: math.unit(3200, "lb"),
  18774. name: "Back",
  18775. image: {
  18776. source: "./media/characters/ty/back.svg",
  18777. extra: 1044 / 966,
  18778. bottom: 7.48 / 1049
  18779. }
  18780. },
  18781. },
  18782. [
  18783. {
  18784. name: "Normal",
  18785. height: math.unit(4.5, "meters"),
  18786. default: true
  18787. },
  18788. ]
  18789. ))
  18790. characterMakers.push(() => makeCharacter(
  18791. { name: "Rocky" },
  18792. {
  18793. front: {
  18794. height: math.unit(5 + 4 / 12, "feet"),
  18795. weight: math.unit(115, "lb"),
  18796. name: "Front",
  18797. image: {
  18798. source: "./media/characters/rocky/front.svg",
  18799. extra: 1012 / 975,
  18800. bottom: 54 / 1066
  18801. }
  18802. },
  18803. },
  18804. [
  18805. {
  18806. name: "Normal",
  18807. height: math.unit(5 + 4 / 12, "feet"),
  18808. default: true
  18809. },
  18810. ]
  18811. ))
  18812. characterMakers.push(() => makeCharacter(
  18813. { name: "Ruin" },
  18814. {
  18815. upright: {
  18816. height: math.unit(6, "meters"),
  18817. weight: math.unit(4000, "kg"),
  18818. name: "Upright",
  18819. image: {
  18820. source: "./media/characters/ruin/upright.svg",
  18821. extra: 668 / 661,
  18822. bottom: 42 / 799.8396
  18823. }
  18824. },
  18825. },
  18826. [
  18827. {
  18828. name: "Normal",
  18829. height: math.unit(6, "meters"),
  18830. default: true
  18831. },
  18832. ]
  18833. ))
  18834. characterMakers.push(() => makeCharacter(
  18835. { name: "Robin" },
  18836. {
  18837. front: {
  18838. height: math.unit(5, "feet"),
  18839. weight: math.unit(106, "lb"),
  18840. name: "Front",
  18841. image: {
  18842. source: "./media/characters/robin/front.svg",
  18843. extra: 862 / 799,
  18844. bottom: 42.4 / 914.8856
  18845. }
  18846. },
  18847. },
  18848. [
  18849. {
  18850. name: "Normal",
  18851. height: math.unit(5, "feet"),
  18852. default: true
  18853. },
  18854. ]
  18855. ))
  18856. characterMakers.push(() => makeCharacter(
  18857. { name: "Saian" },
  18858. {
  18859. side: {
  18860. height: math.unit(3, "feet"),
  18861. weight: math.unit(225, "lb"),
  18862. name: "Side",
  18863. image: {
  18864. source: "./media/characters/saian/side.svg",
  18865. extra: 566 / 356,
  18866. bottom: 79.7 / 643
  18867. }
  18868. },
  18869. maw: {
  18870. height: math.unit(2.85, "feet"),
  18871. name: "Maw",
  18872. image: {
  18873. source: "./media/characters/saian/maw.svg"
  18874. }
  18875. },
  18876. },
  18877. [
  18878. {
  18879. name: "Normal",
  18880. height: math.unit(3, "feet"),
  18881. default: true
  18882. },
  18883. ]
  18884. ))
  18885. characterMakers.push(() => makeCharacter(
  18886. { name: "Equus Silvermane" },
  18887. {
  18888. side: {
  18889. height: math.unit(8, "feet"),
  18890. weight: math.unit(300, "lb"),
  18891. name: "Side",
  18892. image: {
  18893. source: "./media/characters/equus-silvermane/side.svg",
  18894. extra: 2176 / 2050,
  18895. bottom: 65.7 / 2245
  18896. }
  18897. },
  18898. front: {
  18899. height: math.unit(8, "feet"),
  18900. weight: math.unit(300, "lb"),
  18901. name: "Front",
  18902. image: {
  18903. source: "./media/characters/equus-silvermane/front.svg",
  18904. extra: 4633 / 4400,
  18905. bottom: 71.3 / 4706.915
  18906. }
  18907. },
  18908. sideStepping: {
  18909. height: math.unit(8, "feet"),
  18910. weight: math.unit(300, "lb"),
  18911. name: "Side (Stepping)",
  18912. image: {
  18913. source: "./media/characters/equus-silvermane/side-stepping.svg",
  18914. extra: 1968 / 1860,
  18915. bottom: 16.4 / 1989
  18916. }
  18917. },
  18918. },
  18919. [
  18920. {
  18921. name: "Normal",
  18922. height: math.unit(8, "feet")
  18923. },
  18924. {
  18925. name: "Minimacro",
  18926. height: math.unit(75, "feet"),
  18927. default: true
  18928. },
  18929. {
  18930. name: "Macro",
  18931. height: math.unit(150, "feet")
  18932. },
  18933. {
  18934. name: "Macro+",
  18935. height: math.unit(1000, "feet")
  18936. },
  18937. {
  18938. name: "Megamacro",
  18939. height: math.unit(1, "mile")
  18940. },
  18941. ]
  18942. ))
  18943. characterMakers.push(() => makeCharacter(
  18944. { name: "Windar" },
  18945. {
  18946. side: {
  18947. height: math.unit(20, "feet"),
  18948. weight: math.unit(30000, "kg"),
  18949. name: "Side",
  18950. image: {
  18951. source: "./media/characters/windar/side.svg",
  18952. extra: 1491 / 1248,
  18953. bottom: 82.56 / 1568
  18954. }
  18955. },
  18956. },
  18957. [
  18958. {
  18959. name: "Normal",
  18960. height: math.unit(20, "feet"),
  18961. default: true
  18962. },
  18963. ]
  18964. ))
  18965. characterMakers.push(() => makeCharacter(
  18966. { name: "Melody" },
  18967. {
  18968. side: {
  18969. height: math.unit(15.66, "feet"),
  18970. weight: math.unit(150, "lb"),
  18971. name: "Side",
  18972. image: {
  18973. source: "./media/characters/melody/side.svg",
  18974. extra: 1097 / 944,
  18975. bottom: 11.8 / 1109
  18976. }
  18977. },
  18978. sideOutfit: {
  18979. height: math.unit(15.66, "feet"),
  18980. weight: math.unit(150, "lb"),
  18981. name: "Side (Outfit)",
  18982. image: {
  18983. source: "./media/characters/melody/side-outfit.svg",
  18984. extra: 1097 / 944,
  18985. bottom: 11.8 / 1109
  18986. }
  18987. },
  18988. },
  18989. [
  18990. {
  18991. name: "Normal",
  18992. height: math.unit(15.66, "feet"),
  18993. default: true
  18994. },
  18995. ]
  18996. ))
  18997. characterMakers.push(() => makeCharacter(
  18998. { name: "Windera" },
  18999. {
  19000. front: {
  19001. height: math.unit(8, "feet"),
  19002. weight: math.unit(325, "lb"),
  19003. name: "Front",
  19004. image: {
  19005. source: "./media/characters/windera/front.svg",
  19006. extra: 3180 / 2845,
  19007. bottom: 178 / 3365
  19008. }
  19009. },
  19010. },
  19011. [
  19012. {
  19013. name: "Normal",
  19014. height: math.unit(8, "feet"),
  19015. default: true
  19016. },
  19017. ]
  19018. ))
  19019. characterMakers.push(() => makeCharacter(
  19020. { name: "Sonear" },
  19021. {
  19022. front: {
  19023. height: math.unit(28.75, "feet"),
  19024. weight: math.unit(2000, "kg"),
  19025. name: "Front",
  19026. image: {
  19027. source: "./media/characters/sonear/front.svg",
  19028. extra: 1041.1 / 964.9,
  19029. bottom: 53.7 / 1096.6
  19030. }
  19031. },
  19032. },
  19033. [
  19034. {
  19035. name: "Normal",
  19036. height: math.unit(28.75, "feet"),
  19037. default: true
  19038. },
  19039. ]
  19040. ))
  19041. characterMakers.push(() => makeCharacter(
  19042. { name: "Kanara" },
  19043. {
  19044. side: {
  19045. height: math.unit(25.5, "feet"),
  19046. weight: math.unit(23000, "kg"),
  19047. name: "Side",
  19048. image: {
  19049. source: "./media/characters/kanara/side.svg"
  19050. }
  19051. },
  19052. },
  19053. [
  19054. {
  19055. name: "Normal",
  19056. height: math.unit(25.5, "feet"),
  19057. default: true
  19058. },
  19059. ]
  19060. ))
  19061. characterMakers.push(() => makeCharacter(
  19062. { name: "Ereus" },
  19063. {
  19064. side: {
  19065. height: math.unit(10, "feet"),
  19066. weight: math.unit(1000, "kg"),
  19067. name: "Side",
  19068. image: {
  19069. source: "./media/characters/ereus/side.svg",
  19070. extra: 1157 / 959,
  19071. bottom: 153 / 1312.5
  19072. }
  19073. },
  19074. },
  19075. [
  19076. {
  19077. name: "Normal",
  19078. height: math.unit(10, "feet"),
  19079. default: true
  19080. },
  19081. ]
  19082. ))
  19083. characterMakers.push(() => makeCharacter(
  19084. { name: "E-ter" },
  19085. {
  19086. side: {
  19087. height: math.unit(4.5, "feet"),
  19088. weight: math.unit(500, "lb"),
  19089. name: "Side",
  19090. image: {
  19091. source: "./media/characters/e-ter/side.svg",
  19092. extra: 1550 / 1248,
  19093. bottom: 146 / 1694
  19094. }
  19095. },
  19096. },
  19097. [
  19098. {
  19099. name: "Normal",
  19100. height: math.unit(4.5, "feet"),
  19101. default: true
  19102. },
  19103. ]
  19104. ))
  19105. characterMakers.push(() => makeCharacter(
  19106. { name: "Yamie" },
  19107. {
  19108. side: {
  19109. height: math.unit(9.7, "feet"),
  19110. weight: math.unit(4000, "kg"),
  19111. name: "Side",
  19112. image: {
  19113. source: "./media/characters/yamie/side.svg"
  19114. }
  19115. },
  19116. },
  19117. [
  19118. {
  19119. name: "Normal",
  19120. height: math.unit(9.7, "feet"),
  19121. default: true
  19122. },
  19123. ]
  19124. ))
  19125. characterMakers.push(() => makeCharacter(
  19126. { name: "Anders" },
  19127. {
  19128. front: {
  19129. height: math.unit(50, "feet"),
  19130. weight: math.unit(50000, "kg"),
  19131. name: "Front",
  19132. image: {
  19133. source: "./media/characters/anders/front.svg",
  19134. extra: 570 / 539,
  19135. bottom: 14.7 / 586.7
  19136. }
  19137. },
  19138. },
  19139. [
  19140. {
  19141. name: "Large",
  19142. height: math.unit(50, "feet")
  19143. },
  19144. {
  19145. name: "Macro",
  19146. height: math.unit(2000, "feet"),
  19147. default: true
  19148. },
  19149. {
  19150. name: "Megamacro",
  19151. height: math.unit(12, "miles")
  19152. },
  19153. ]
  19154. ))
  19155. characterMakers.push(() => makeCharacter(
  19156. { name: "Reban" },
  19157. {
  19158. front: {
  19159. height: math.unit(7 + 2 / 12, "feet"),
  19160. weight: math.unit(300, "lb"),
  19161. name: "Front",
  19162. image: {
  19163. source: "./media/characters/reban/front.svg",
  19164. extra: 516 / 487,
  19165. bottom: 42.82 / 558.356
  19166. }
  19167. },
  19168. dick: {
  19169. height: math.unit(7 / 5, "feet"),
  19170. name: "Dick",
  19171. image: {
  19172. source: "./media/characters/reban/dick.svg"
  19173. }
  19174. },
  19175. },
  19176. [
  19177. {
  19178. name: "Natural Height",
  19179. height: math.unit(7 + 2 / 12, "feet")
  19180. },
  19181. {
  19182. name: "Macro",
  19183. height: math.unit(500, "feet"),
  19184. default: true
  19185. },
  19186. {
  19187. name: "Canon Height",
  19188. height: math.unit(50, "AU")
  19189. },
  19190. ]
  19191. ))
  19192. characterMakers.push(() => makeCharacter(
  19193. { name: "Terrance Keayes" },
  19194. {
  19195. front: {
  19196. height: math.unit(6, "feet"),
  19197. weight: math.unit(150, "lb"),
  19198. name: "Front",
  19199. image: {
  19200. source: "./media/characters/terrance-keayes/front.svg",
  19201. extra: 1.005,
  19202. bottom: 151 / 1615
  19203. }
  19204. },
  19205. side: {
  19206. height: math.unit(6, "feet"),
  19207. weight: math.unit(150, "lb"),
  19208. name: "Side",
  19209. image: {
  19210. source: "./media/characters/terrance-keayes/side.svg",
  19211. extra: 1.005,
  19212. bottom: 129.4 / 1544
  19213. }
  19214. },
  19215. back: {
  19216. height: math.unit(6, "feet"),
  19217. weight: math.unit(150, "lb"),
  19218. name: "Back",
  19219. image: {
  19220. source: "./media/characters/terrance-keayes/back.svg",
  19221. extra: 1.005,
  19222. bottom: 58.4 / 1557.3
  19223. }
  19224. },
  19225. dick: {
  19226. height: math.unit(6 * 0.208, "feet"),
  19227. name: "Dick",
  19228. image: {
  19229. source: "./media/characters/terrance-keayes/dick.svg"
  19230. }
  19231. },
  19232. },
  19233. [
  19234. {
  19235. name: "Canon Height",
  19236. height: math.unit(35, "miles"),
  19237. default: true
  19238. },
  19239. ]
  19240. ))
  19241. characterMakers.push(() => makeCharacter(
  19242. { name: "Ofelia" },
  19243. {
  19244. front: {
  19245. height: math.unit(6, "feet"),
  19246. weight: math.unit(150, "lb"),
  19247. name: "Front",
  19248. image: {
  19249. source: "./media/characters/ofelia/front.svg",
  19250. extra: 546 / 541,
  19251. bottom: 39 / 583
  19252. }
  19253. },
  19254. back: {
  19255. height: math.unit(6, "feet"),
  19256. weight: math.unit(150, "lb"),
  19257. name: "Back",
  19258. image: {
  19259. source: "./media/characters/ofelia/back.svg",
  19260. extra: 564 / 559.5,
  19261. bottom: 8.69 / 573.02
  19262. }
  19263. },
  19264. maw: {
  19265. height: math.unit(1, "feet"),
  19266. name: "Maw",
  19267. image: {
  19268. source: "./media/characters/ofelia/maw.svg"
  19269. }
  19270. },
  19271. foot: {
  19272. height: math.unit(1.949, "feet"),
  19273. name: "Foot",
  19274. image: {
  19275. source: "./media/characters/ofelia/foot.svg"
  19276. }
  19277. },
  19278. },
  19279. [
  19280. {
  19281. name: "Canon Height",
  19282. height: math.unit(2000, "miles"),
  19283. default: true
  19284. },
  19285. ]
  19286. ))
  19287. characterMakers.push(() => makeCharacter(
  19288. { name: "Samuel" },
  19289. {
  19290. front: {
  19291. height: math.unit(6, "feet"),
  19292. weight: math.unit(150, "lb"),
  19293. name: "Front",
  19294. image: {
  19295. source: "./media/characters/samuel/front.svg",
  19296. extra: 265 / 258,
  19297. bottom: 2 / 266.1566
  19298. }
  19299. },
  19300. },
  19301. [
  19302. {
  19303. name: "Macro",
  19304. height: math.unit(100, "feet"),
  19305. default: true
  19306. },
  19307. {
  19308. name: "Full Size",
  19309. height: math.unit(1000, "miles")
  19310. },
  19311. ]
  19312. ))
  19313. characterMakers.push(() => makeCharacter(
  19314. { name: "Beishir Kiel" },
  19315. {
  19316. front: {
  19317. height: math.unit(6, "feet"),
  19318. weight: math.unit(300, "lb"),
  19319. name: "Front",
  19320. image: {
  19321. source: "./media/characters/beishir-kiel/front.svg",
  19322. extra: 569 / 547,
  19323. bottom: 41.9 / 609
  19324. }
  19325. },
  19326. maw: {
  19327. height: math.unit(6 * 0.202, "feet"),
  19328. name: "Maw",
  19329. image: {
  19330. source: "./media/characters/beishir-kiel/maw.svg"
  19331. }
  19332. },
  19333. },
  19334. [
  19335. {
  19336. name: "Macro",
  19337. height: math.unit(300, "feet"),
  19338. default: true
  19339. },
  19340. ]
  19341. ))
  19342. characterMakers.push(() => makeCharacter(
  19343. { name: "Logan Grey" },
  19344. {
  19345. front: {
  19346. height: math.unit(5 + 8 / 12, "feet"),
  19347. weight: math.unit(120, "lb"),
  19348. name: "Front",
  19349. image: {
  19350. source: "./media/characters/logan-grey/front.svg",
  19351. extra: 2539 / 2393,
  19352. bottom: 97.6 / 2636.37
  19353. }
  19354. },
  19355. frontAlt: {
  19356. height: math.unit(5 + 8 / 12, "feet"),
  19357. weight: math.unit(120, "lb"),
  19358. name: "Front (Alt)",
  19359. image: {
  19360. source: "./media/characters/logan-grey/front-alt.svg",
  19361. extra: 958 / 893,
  19362. bottom: 15 / 970.768
  19363. }
  19364. },
  19365. back: {
  19366. height: math.unit(5 + 8 / 12, "feet"),
  19367. weight: math.unit(120, "lb"),
  19368. name: "Back",
  19369. image: {
  19370. source: "./media/characters/logan-grey/back.svg",
  19371. extra: 958 / 893,
  19372. bottom: 2.1881 / 970.9788
  19373. }
  19374. },
  19375. dick: {
  19376. height: math.unit(1.437, "feet"),
  19377. name: "Dick",
  19378. image: {
  19379. source: "./media/characters/logan-grey/dick.svg"
  19380. }
  19381. },
  19382. },
  19383. [
  19384. {
  19385. name: "Normal",
  19386. height: math.unit(5 + 8 / 12, "feet")
  19387. },
  19388. {
  19389. name: "The 500 Foot Femboy",
  19390. height: math.unit(500, "feet"),
  19391. default: true
  19392. },
  19393. {
  19394. name: "Megmacro",
  19395. height: math.unit(20, "miles")
  19396. },
  19397. ]
  19398. ))
  19399. characterMakers.push(() => makeCharacter(
  19400. { name: "Draganta" },
  19401. {
  19402. front: {
  19403. height: math.unit(8 + 2 / 12, "feet"),
  19404. weight: math.unit(275, "lb"),
  19405. name: "Front",
  19406. image: {
  19407. source: "./media/characters/draganta/front.svg",
  19408. extra: 1177 / 1135,
  19409. bottom: 33.46 / 1212.1
  19410. }
  19411. },
  19412. },
  19413. [
  19414. {
  19415. name: "Normal",
  19416. height: math.unit(8 + 6 / 12, "feet"),
  19417. default: true
  19418. },
  19419. {
  19420. name: "Macro",
  19421. height: math.unit(150, "feet")
  19422. },
  19423. {
  19424. name: "Megamacro",
  19425. height: math.unit(1000, "miles")
  19426. },
  19427. ]
  19428. ))
  19429. characterMakers.push(() => makeCharacter(
  19430. { name: "Voski", species: "Corvid" },
  19431. {
  19432. front: {
  19433. height: math.unit(1.72, "m"),
  19434. weight: math.unit(80, "lb"),
  19435. name: "Front",
  19436. image: {
  19437. source: "./media/characters/voski/front.svg",
  19438. extra: 2076.22 / 2022.4,
  19439. bottom: 102.7 / 2177.3866
  19440. }
  19441. },
  19442. back: {
  19443. height: math.unit(1.72, "m"),
  19444. weight: math.unit(80, "lb"),
  19445. name: "Back",
  19446. image: {
  19447. source: "./media/characters/voski/back.svg",
  19448. extra: 2104 / 2051,
  19449. bottom: 10.45 / 2113.63
  19450. }
  19451. },
  19452. },
  19453. [
  19454. {
  19455. name: "Normal",
  19456. height: math.unit(1.72, "m")
  19457. },
  19458. {
  19459. name: "Macro",
  19460. height: math.unit(55, "m"),
  19461. default: true
  19462. },
  19463. {
  19464. name: "Macro+",
  19465. height: math.unit(300, "m")
  19466. },
  19467. {
  19468. name: "Macro++",
  19469. height: math.unit(700, "m")
  19470. },
  19471. {
  19472. name: "Macro+++",
  19473. height: math.unit(4500, "m")
  19474. },
  19475. {
  19476. name: "Macro++++",
  19477. height: math.unit(45, "km")
  19478. },
  19479. {
  19480. name: "Macro+++++",
  19481. height: math.unit(1220, "km")
  19482. },
  19483. ]
  19484. ))
  19485. characterMakers.push(() => makeCharacter(
  19486. { name: "Icowom Lee" },
  19487. {
  19488. front: {
  19489. height: math.unit(2.3, "m"),
  19490. weight: math.unit(304, "kg"),
  19491. name: "Front",
  19492. image: {
  19493. source: "./media/characters/icowom-lee/front.svg",
  19494. extra: 3076 / 2933,
  19495. bottom: 51.4 / 3125.1889
  19496. }
  19497. },
  19498. },
  19499. [
  19500. {
  19501. name: "Normal",
  19502. height: math.unit(2.3, "meters"),
  19503. default: true
  19504. },
  19505. {
  19506. name: "Macro",
  19507. height: math.unit(94, "meters"),
  19508. default: true
  19509. },
  19510. ]
  19511. ))
  19512. characterMakers.push(() => makeCharacter(
  19513. { name: "Shock Diamond", species: "Aeromorphic Synthetic Pharaoh Hound" },
  19514. {
  19515. front: {
  19516. height: math.unit(22, "meters"),
  19517. weight: math.unit(21000, "kg"),
  19518. name: "Front",
  19519. image: {
  19520. source: "./media/characters/shock-diamond/front.svg",
  19521. extra: 2204 / 2053,
  19522. bottom: 65 / 2239.47
  19523. }
  19524. },
  19525. frontNude: {
  19526. height: math.unit(22, "meters"),
  19527. weight: math.unit(21000, "kg"),
  19528. name: "Front (Nude)",
  19529. image: {
  19530. source: "./media/characters/shock-diamond/front-nude.svg",
  19531. extra: 2514 / 2285,
  19532. bottom: 13 / 2527.56
  19533. }
  19534. },
  19535. },
  19536. [
  19537. {
  19538. name: "Normal",
  19539. height: math.unit(3, "meters")
  19540. },
  19541. {
  19542. name: "Macro",
  19543. height: math.unit(22, "meters"),
  19544. default: true
  19545. },
  19546. ]
  19547. ))
  19548. characterMakers.push(() => makeCharacter(
  19549. { name: "Rory" },
  19550. {
  19551. front: {
  19552. height: math.unit(5 + 4 / 12, "feet"),
  19553. weight: math.unit(120, "lb"),
  19554. name: "Front",
  19555. image: {
  19556. source: "./media/characters/rory/front.svg",
  19557. extra: 589 / 556,
  19558. bottom: 45.7 / 635.76
  19559. }
  19560. },
  19561. frontNude: {
  19562. height: math.unit(5 + 4 / 12, "feet"),
  19563. weight: math.unit(120, "lb"),
  19564. name: "Front (Nude)",
  19565. image: {
  19566. source: "./media/characters/rory/front-nude.svg",
  19567. extra: 589 / 556,
  19568. bottom: 45.7 / 635.76
  19569. }
  19570. },
  19571. side: {
  19572. height: math.unit(5 + 4 / 12, "feet"),
  19573. weight: math.unit(120, "lb"),
  19574. name: "Side",
  19575. image: {
  19576. source: "./media/characters/rory/side.svg",
  19577. extra: 597 / 564,
  19578. bottom: 55 / 653
  19579. }
  19580. },
  19581. back: {
  19582. height: math.unit(5 + 4 / 12, "feet"),
  19583. weight: math.unit(120, "lb"),
  19584. name: "Back",
  19585. image: {
  19586. source: "./media/characters/rory/back.svg",
  19587. extra: 620 / 585,
  19588. bottom: 8.86 / 630.43
  19589. }
  19590. },
  19591. dick: {
  19592. height: math.unit(0.86, "feet"),
  19593. name: "Dick",
  19594. image: {
  19595. source: "./media/characters/rory/dick.svg"
  19596. }
  19597. },
  19598. },
  19599. [
  19600. {
  19601. name: "Normal",
  19602. height: math.unit(5 + 4 / 12, "feet"),
  19603. default: true
  19604. },
  19605. {
  19606. name: "Macro",
  19607. height: math.unit(100, "feet")
  19608. },
  19609. {
  19610. name: "Macro+",
  19611. height: math.unit(140, "feet")
  19612. },
  19613. {
  19614. name: "Macro++",
  19615. height: math.unit(300, "feet")
  19616. },
  19617. ]
  19618. ))
  19619. characterMakers.push(() => makeCharacter(
  19620. { name: "Sprisk" },
  19621. {
  19622. front: {
  19623. height: math.unit(5 + 9 / 12, "feet"),
  19624. weight: math.unit(190, "lb"),
  19625. name: "Front",
  19626. image: {
  19627. source: "./media/characters/sprisk/front.svg",
  19628. extra: 1225 / 1180,
  19629. bottom: 42.7 / 1266.4
  19630. }
  19631. },
  19632. frontNsfw: {
  19633. height: math.unit(5 + 9 / 12, "feet"),
  19634. weight: math.unit(190, "lb"),
  19635. name: "Front (NSFW)",
  19636. image: {
  19637. source: "./media/characters/sprisk/front-nsfw.svg",
  19638. extra: 1225 / 1180,
  19639. bottom: 42.7 / 1266.4
  19640. }
  19641. },
  19642. back: {
  19643. height: math.unit(5 + 9 / 12, "feet"),
  19644. weight: math.unit(190, "lb"),
  19645. name: "Back",
  19646. image: {
  19647. source: "./media/characters/sprisk/back.svg",
  19648. extra: 1247 / 1200,
  19649. bottom: 5.6 / 1253.04
  19650. }
  19651. },
  19652. },
  19653. [
  19654. {
  19655. name: "Tiny",
  19656. height: math.unit(2, "inches")
  19657. },
  19658. {
  19659. name: "Normal",
  19660. height: math.unit(5 + 9 / 12, "feet"),
  19661. default: true
  19662. },
  19663. {
  19664. name: "Mini Macro",
  19665. height: math.unit(18, "feet")
  19666. },
  19667. {
  19668. name: "Macro",
  19669. height: math.unit(100, "feet")
  19670. },
  19671. {
  19672. name: "MACRO",
  19673. height: math.unit(50, "miles")
  19674. },
  19675. {
  19676. name: "M A C R O",
  19677. height: math.unit(300, "miles")
  19678. },
  19679. ]
  19680. ))
  19681. characterMakers.push(() => makeCharacter(
  19682. { name: "Bunsen" },
  19683. {
  19684. side: {
  19685. height: math.unit(15.6, "meters"),
  19686. weight: math.unit(700000, "kg"),
  19687. name: "Side",
  19688. image: {
  19689. source: "./media/characters/bunsen/side.svg",
  19690. extra: 1644 / 358
  19691. }
  19692. },
  19693. foot: {
  19694. height: math.unit(1.611 * 1644 / 358, "meter"),
  19695. name: "Foot",
  19696. image: {
  19697. source: "./media/characters/bunsen/foot.svg"
  19698. }
  19699. },
  19700. },
  19701. [
  19702. {
  19703. name: "Small",
  19704. height: math.unit(10, "feet")
  19705. },
  19706. {
  19707. name: "Normal",
  19708. height: math.unit(15.6, "meters"),
  19709. default: true
  19710. },
  19711. ]
  19712. ))
  19713. characterMakers.push(() => makeCharacter(
  19714. { name: "Sesh" },
  19715. {
  19716. front: {
  19717. height: math.unit(4 + 11 / 12, "feet"),
  19718. weight: math.unit(140, "lb"),
  19719. name: "Front",
  19720. image: {
  19721. source: "./media/characters/sesh/front.svg",
  19722. extra: 3420 / 3231,
  19723. bottom: 72 / 3949.5
  19724. }
  19725. },
  19726. },
  19727. [
  19728. {
  19729. name: "Normal",
  19730. height: math.unit(4 + 11 / 12, "feet")
  19731. },
  19732. {
  19733. name: "Grown",
  19734. height: math.unit(15, "feet"),
  19735. default: true
  19736. },
  19737. {
  19738. name: "Macro",
  19739. height: math.unit(1500, "feet")
  19740. },
  19741. {
  19742. name: "Megamacro",
  19743. height: math.unit(30, "miles")
  19744. },
  19745. {
  19746. name: "Continental",
  19747. height: math.unit(3000, "miles")
  19748. },
  19749. {
  19750. name: "Gravity Mass",
  19751. height: math.unit(300000, "miles")
  19752. },
  19753. {
  19754. name: "Planet Buster",
  19755. height: math.unit(30000000, "miles")
  19756. },
  19757. {
  19758. name: "Big",
  19759. height: math.unit(3000000000, "miles")
  19760. },
  19761. ]
  19762. ))
  19763. characterMakers.push(() => makeCharacter(
  19764. { name: "Pepper" },
  19765. {
  19766. front: {
  19767. height: math.unit(9, "feet"),
  19768. weight: math.unit(350, "lb"),
  19769. name: "Front",
  19770. image: {
  19771. source: "./media/characters/pepper/front.svg",
  19772. extra: 1448/1312,
  19773. bottom: 9.4/1457.88
  19774. }
  19775. },
  19776. back: {
  19777. height: math.unit(9, "feet"),
  19778. weight: math.unit(350, "lb"),
  19779. name: "Back",
  19780. image: {
  19781. source: "./media/characters/pepper/back.svg",
  19782. extra: 1423/1300,
  19783. bottom: 4.6/1429
  19784. }
  19785. },
  19786. maw: {
  19787. height: math.unit(0.932, "feet"),
  19788. name: "Maw",
  19789. image: {
  19790. source: "./media/characters/pepper/maw.svg"
  19791. }
  19792. },
  19793. },
  19794. [
  19795. {
  19796. name: "Normal",
  19797. height: math.unit(9, "feet"),
  19798. default: true
  19799. },
  19800. ]
  19801. ))
  19802. characterMakers.push(() => makeCharacter(
  19803. { name: "Maelstrom" },
  19804. {
  19805. front: {
  19806. height: math.unit(6, "feet"),
  19807. weight: math.unit(150, "lb"),
  19808. name: "Front",
  19809. image: {
  19810. source: "./media/characters/maelstrom/front.svg",
  19811. extra: 2100/1883,
  19812. bottom: 94/2196.7
  19813. }
  19814. },
  19815. },
  19816. [
  19817. {
  19818. name: "Less Kaiju",
  19819. height: math.unit(200, "feet")
  19820. },
  19821. {
  19822. name: "Kaiju",
  19823. height: math.unit(400, "feet"),
  19824. default: true
  19825. },
  19826. {
  19827. name: "Kaiju-er",
  19828. height: math.unit(600, "feet")
  19829. },
  19830. ]
  19831. ))
  19832. characterMakers.push(() => makeCharacter(
  19833. { name: "Lexir" },
  19834. {
  19835. front: {
  19836. height: math.unit(6 + 5/12, "feet"),
  19837. weight: math.unit(180, "lb"),
  19838. name: "Front",
  19839. image: {
  19840. source: "./media/characters/lexir/front.svg",
  19841. extra: 180/172,
  19842. bottom: 12/192
  19843. }
  19844. },
  19845. back: {
  19846. height: math.unit(6 + 5/12, "feet"),
  19847. weight: math.unit(180, "lb"),
  19848. name: "Back",
  19849. image: {
  19850. source: "./media/characters/lexir/back.svg",
  19851. extra: 183.84/175.5,
  19852. bottom: 3.1/187
  19853. }
  19854. },
  19855. },
  19856. [
  19857. {
  19858. name: "Very Smal",
  19859. height: math.unit(1, "nm")
  19860. },
  19861. {
  19862. name: "Normal",
  19863. height: math.unit(6 + 5/12, "feet"),
  19864. default: true
  19865. },
  19866. {
  19867. name: "Macro",
  19868. height: math.unit(1, "mile")
  19869. },
  19870. {
  19871. name: "Megamacro",
  19872. height: math.unit(50, "miles")
  19873. },
  19874. ]
  19875. ))
  19876. characterMakers.push(() => makeCharacter(
  19877. { name: "Maksio" },
  19878. {
  19879. front: {
  19880. height: math.unit(1.5, "meters"),
  19881. weight: math.unit(100, "lb"),
  19882. name: "Front",
  19883. image: {
  19884. source: "./media/characters/maksio/front.svg",
  19885. extra: 1549/1531,
  19886. bottom: 123.7/1674.5429
  19887. }
  19888. },
  19889. back: {
  19890. height: math.unit(1.5, "meters"),
  19891. weight: math.unit(100, "lb"),
  19892. name: "Back",
  19893. image: {
  19894. source: "./media/characters/maksio/back.svg",
  19895. extra: 1541/1509,
  19896. bottom: 97/1639
  19897. }
  19898. },
  19899. hand: {
  19900. height: math.unit(0.621, "feet"),
  19901. name: "Hand",
  19902. image: {
  19903. source: "./media/characters/maksio/hand.svg"
  19904. }
  19905. },
  19906. foot: {
  19907. height: math.unit(1.611, "feet"),
  19908. name: "Foot",
  19909. image: {
  19910. source: "./media/characters/maksio/foot.svg"
  19911. }
  19912. },
  19913. },
  19914. [
  19915. {
  19916. name: "Shrunken",
  19917. height: math.unit(10, "cm")
  19918. },
  19919. {
  19920. name: "Normal",
  19921. height: math.unit(150, "cm"),
  19922. default: true
  19923. },
  19924. ]
  19925. ))
  19926. characterMakers.push(() => makeCharacter(
  19927. { name: "Erza Bear" },
  19928. {
  19929. front: {
  19930. height: math.unit(100, "feet"),
  19931. name: "Front",
  19932. image: {
  19933. source: "./media/characters/erza-bear/front.svg",
  19934. extra: 2449/2390,
  19935. bottom: 46/2494
  19936. }
  19937. },
  19938. back: {
  19939. height: math.unit(100, "feet"),
  19940. name: "Back",
  19941. image: {
  19942. source: "./media/characters/erza-bear/back.svg",
  19943. extra: 2489/2430,
  19944. bottom: 85.4/2480
  19945. }
  19946. },
  19947. tail: {
  19948. height: math.unit(42, "feet"),
  19949. name: "Tail",
  19950. image: {
  19951. source: "./media/characters/erza-bear/tail.svg"
  19952. }
  19953. },
  19954. tongue: {
  19955. height: math.unit(8, "feet"),
  19956. name: "Tongue",
  19957. image: {
  19958. source: "./media/characters/erza-bear/tongue.svg"
  19959. }
  19960. },
  19961. dick: {
  19962. height: math.unit(10.5, "feet"),
  19963. name: "Dick",
  19964. image: {
  19965. source: "./media/characters/erza-bear/dick.svg"
  19966. }
  19967. },
  19968. dickVertical: {
  19969. height: math.unit(16.9, "feet"),
  19970. name: "Dick (Vertical)",
  19971. image: {
  19972. source: "./media/characters/erza-bear/dick-vertical.svg"
  19973. }
  19974. },
  19975. },
  19976. [
  19977. {
  19978. name: "Macro",
  19979. height: math.unit(100, "feet"),
  19980. default: true
  19981. },
  19982. ]
  19983. ))
  19984. characterMakers.push(() => makeCharacter(
  19985. { name: "Violet Flor", species: "Skunk" },
  19986. {
  19987. front: {
  19988. height: math.unit(172, "cm"),
  19989. weight: math.unit(73, "kg"),
  19990. name: "Front",
  19991. image: {
  19992. source: "./media/characters/violet-flor/front.svg",
  19993. extra: 1530/1442,
  19994. bottom: 61.9/1588.8
  19995. }
  19996. },
  19997. back: {
  19998. height: math.unit(180, "cm"),
  19999. weight: math.unit(73, "kg"),
  20000. name: "Back",
  20001. image: {
  20002. source: "./media/characters/violet-flor/back.svg",
  20003. extra: 1692/1630,
  20004. bottom: 20/1712
  20005. }
  20006. },
  20007. },
  20008. [
  20009. {
  20010. name: "Normal",
  20011. height: math.unit(172, "cm"),
  20012. default: true
  20013. },
  20014. ]
  20015. ))
  20016. characterMakers.push(() => makeCharacter(
  20017. { name: "Lynn Rhea", species: "Shark" },
  20018. {
  20019. front: {
  20020. height: math.unit(6, "feet"),
  20021. weight: math.unit(220, "lb"),
  20022. name: "Front",
  20023. image: {
  20024. source: "./media/characters/lynn-rhea/front.svg",
  20025. extra: 310/273
  20026. }
  20027. },
  20028. back: {
  20029. height: math.unit(6, "feet"),
  20030. weight: math.unit(220, "lb"),
  20031. name: "Back",
  20032. image: {
  20033. source: "./media/characters/lynn-rhea/back.svg",
  20034. extra: 310/273
  20035. }
  20036. },
  20037. dicks: {
  20038. height: math.unit(0.9, "feet"),
  20039. name: "Dicks",
  20040. image: {
  20041. source: "./media/characters/lynn-rhea/dicks.svg"
  20042. }
  20043. },
  20044. slit: {
  20045. height: math.unit(0.4, "feet"),
  20046. name: "Slit",
  20047. image: {
  20048. source: "./media/characters/lynn-rhea/slit.svg"
  20049. }
  20050. },
  20051. },
  20052. [
  20053. {
  20054. name: "Micro",
  20055. height: math.unit(1, "inch")
  20056. },
  20057. {
  20058. name: "Macro",
  20059. height: math.unit(60, "feet"),
  20060. default: true
  20061. },
  20062. {
  20063. name: "Megamacro",
  20064. height: math.unit(2, "miles")
  20065. },
  20066. {
  20067. name: "Gigamacro",
  20068. height: math.unit(3, "earths")
  20069. },
  20070. {
  20071. name: "Galactic",
  20072. height: math.unit(0.8, "galaxies")
  20073. },
  20074. ]
  20075. ))
  20076. characterMakers.push(() => makeCharacter(
  20077. { name: "Valathos" },
  20078. {
  20079. front: {
  20080. height: math.unit(1600, "feet"),
  20081. weight: math.unit(85758785169, "kg"),
  20082. name: "Front",
  20083. image: {
  20084. source: "./media/characters/valathos/front.svg",
  20085. extra: 1451/1339
  20086. }
  20087. },
  20088. },
  20089. [
  20090. {
  20091. name: "Macro",
  20092. height: math.unit(1600, "feet"),
  20093. default: true
  20094. },
  20095. ]
  20096. ))
  20097. characterMakers.push(() => makeCharacter(
  20098. { name: "Azula" },
  20099. {
  20100. front: {
  20101. height: math.unit(7 + 5/12, "feet"),
  20102. weight: math.unit(300, "lb"),
  20103. name: "Front",
  20104. image: {
  20105. source: "./media/characters/azula/front.svg",
  20106. extra: 3208/2880,
  20107. bottom: 80.2/3277
  20108. }
  20109. },
  20110. back: {
  20111. height: math.unit(7 + 5/12, "feet"),
  20112. weight: math.unit(300, "lb"),
  20113. name: "Back",
  20114. image: {
  20115. source: "./media/characters/azula/back.svg",
  20116. extra: 3169/2822,
  20117. bottom: 150.6/3321
  20118. }
  20119. },
  20120. },
  20121. [
  20122. {
  20123. name: "Normal",
  20124. height: math.unit(7 + 5/12, "feet"),
  20125. default: true
  20126. },
  20127. {
  20128. name: "Big",
  20129. height: math.unit(20, "feet")
  20130. },
  20131. ]
  20132. ))
  20133. characterMakers.push(() => makeCharacter(
  20134. { name: "Rupert" },
  20135. {
  20136. front: {
  20137. height: math.unit(5 + 1/12, "feet"),
  20138. weight: math.unit(110, "lb"),
  20139. name: "Front",
  20140. image: {
  20141. source: "./media/characters/rupert/front.svg",
  20142. extra: 1549/1495,
  20143. bottom: 54.2/1604.4
  20144. }
  20145. },
  20146. },
  20147. [
  20148. {
  20149. name: "Normal",
  20150. height: math.unit(5 + 1/12, "feet"),
  20151. default: true
  20152. },
  20153. ]
  20154. ))
  20155. //characters
  20156. function makeCharacters() {
  20157. const results = [];
  20158. characterMakers.forEach(character => {
  20159. results.push(character());
  20160. });
  20161. return results;
  20162. }