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

18812 строки
446 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename
  18. }
  19. if (value.weight) {
  20. views[key].attributes.weight = {
  21. name: "Mass",
  22. power: 3,
  23. type: "mass",
  24. base: value.weight
  25. };
  26. }
  27. });
  28. return createEntityMaker(info, views, defaultSizes);
  29. }
  30. characterMakers.push(() => makeCharacter(
  31. {
  32. name: "Fen",
  33. species: "Crux",
  34. description: {
  35. title: "Bio",
  36. text: "Very furry. Sheds on everything."
  37. }
  38. },
  39. {
  40. back: {
  41. height: math.unit(2.2428, "meter"),
  42. weight: math.unit(124.738, "kg"),
  43. name: "Back",
  44. image: {
  45. source: "./media/characters/fen/back.svg",
  46. extra: 1025 / 935
  47. },
  48. info: {
  49. description: {
  50. mode: "append",
  51. text: "\n\nHe is not currently looking at you."
  52. }
  53. }
  54. },
  55. full: {
  56. height: math.unit(1.34, "meter"),
  57. weight: math.unit(225, "kg"),
  58. name: "Full",
  59. image: {
  60. source: "./media/characters/fen/full.svg"
  61. },
  62. info: {
  63. description: {
  64. mode: "append",
  65. text: "\n\nMunch."
  66. }
  67. }
  68. },
  69. kneeling: {
  70. height: math.unit(5.4, "feet"),
  71. weight: math.unit(124.738, "kg"),
  72. name: "Kneeling",
  73. image: {
  74. source: "./media/characters/fen/kneeling.svg",
  75. extra: 563 / 507
  76. }
  77. },
  78. },
  79. [
  80. {
  81. name: "Normal",
  82. height: math.unit(2.2428, "meter")
  83. },
  84. {
  85. name: "Big",
  86. height: math.unit(12, "feet")
  87. },
  88. {
  89. name: "Minimacro",
  90. height: math.unit(30, "meter"),
  91. default: true,
  92. info: {
  93. description: {
  94. mode: "append",
  95. text: "\n\nTOO DAMN BIG"
  96. }
  97. }
  98. },
  99. {
  100. name: "Macro",
  101. height: math.unit(100, "meter"),
  102. info: {
  103. description: {
  104. mode: "append",
  105. text: "\n\nTOO DAMN BIG"
  106. }
  107. }
  108. },
  109. {
  110. name: "Macro+",
  111. height: math.unit(1000, "meter")
  112. },
  113. {
  114. name: "Megamacro",
  115. height: math.unit(10, "miles")
  116. }
  117. ]
  118. ))
  119. characterMakers.push(() => makeCharacter(
  120. { name: "Sofia Fluttertail" },
  121. {
  122. front: {
  123. height: math.unit(183, "cm"),
  124. weight: math.unit(80, "kg"),
  125. name: "Front",
  126. image: {
  127. source: "./media/characters/sofia-fluttertail/front.svg",
  128. bottom: 0.01,
  129. extra: 2154 / 2081
  130. }
  131. },
  132. frontAlt: {
  133. height: math.unit(183, "cm"),
  134. weight: math.unit(80, "kg"),
  135. name: "Front (alt)",
  136. image: {
  137. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  138. }
  139. },
  140. back: {
  141. height: math.unit(183, "cm"),
  142. weight: math.unit(80, "kg"),
  143. name: "Back",
  144. image: {
  145. source: "./media/characters/sofia-fluttertail/back.svg"
  146. }
  147. },
  148. maw: {
  149. height: math.unit(183 / 5, "cm"),
  150. name: "Maw",
  151. image: {
  152. source: "./media/characters/sofia-fluttertail/maw.svg"
  153. }
  154. },
  155. },
  156. [
  157. {
  158. name: "Normal",
  159. height: math.unit(1.83, "meter")
  160. },
  161. {
  162. name: "Macro",
  163. height: math.unit(96, "feet"),
  164. default: true
  165. },
  166. {
  167. name: "Megamerger",
  168. height: math.unit(650, "feet")
  169. },
  170. ]
  171. ))
  172. characterMakers.push(() => makeCharacter(
  173. { name: "March" },
  174. {
  175. front: {
  176. height: math.unit(7, "feet"),
  177. weight: math.unit(100, "kg"),
  178. name: "Front",
  179. image: {
  180. source: "./media/characters/march/front.svg",
  181. extra: 1,
  182. bottom: 0.015
  183. }
  184. },
  185. foot: {
  186. height: math.unit(0.9, "feet"),
  187. name: "Foot",
  188. image: {
  189. source: "./media/characters/march/foot.svg"
  190. }
  191. },
  192. },
  193. [
  194. {
  195. name: "Normal",
  196. height: math.unit(7.9, "feet")
  197. },
  198. {
  199. name: "Macro",
  200. height: math.unit(220, "meters")
  201. },
  202. {
  203. name: "Megamacro",
  204. height: math.unit(2.98, "km"),
  205. default: true
  206. },
  207. {
  208. name: "Gigamacro",
  209. height: math.unit(15963, "km")
  210. },
  211. {
  212. name: "Teramacro",
  213. height: math.unit(2980000000, "km")
  214. },
  215. {
  216. name: "Examacro",
  217. height: math.unit(250, "parsecs")
  218. },
  219. ]
  220. ))
  221. characterMakers.push(() => makeCharacter(
  222. { name: "Noir" },
  223. {
  224. front: {
  225. height: math.unit(6, "feet"),
  226. weight: math.unit(60, "kg"),
  227. name: "Front",
  228. image: {
  229. source: "./media/characters/noir/front.svg",
  230. extra: 1,
  231. bottom: 0.032
  232. }
  233. },
  234. },
  235. [
  236. {
  237. name: "Normal",
  238. height: math.unit(6.6, "feet")
  239. },
  240. {
  241. name: "Macro",
  242. height: math.unit(500, "feet")
  243. },
  244. {
  245. name: "Megamacro",
  246. height: math.unit(2.5, "km"),
  247. default: true
  248. },
  249. {
  250. name: "Gigamacro",
  251. height: math.unit(22500, "km")
  252. },
  253. {
  254. name: "Teramacro",
  255. height: math.unit(2500000000, "km")
  256. },
  257. {
  258. name: "Examacro",
  259. height: math.unit(200, "parsecs")
  260. },
  261. ]
  262. ))
  263. characterMakers.push(() => makeCharacter(
  264. { name: "Okuri" },
  265. {
  266. front: {
  267. height: math.unit(7, "feet"),
  268. weight: math.unit(100, "kg"),
  269. name: "Front",
  270. image: {
  271. source: "./media/characters/okuri/front.svg",
  272. extra: 1,
  273. bottom: 0.037
  274. }
  275. },
  276. back: {
  277. height: math.unit(7, "feet"),
  278. weight: math.unit(100, "kg"),
  279. name: "Back",
  280. image: {
  281. source: "./media/characters/okuri/back.svg",
  282. extra: 1,
  283. bottom: 0.007
  284. }
  285. },
  286. },
  287. [
  288. {
  289. name: "Megamacro",
  290. height: math.unit(100, "miles"),
  291. default: true
  292. },
  293. ]
  294. ))
  295. characterMakers.push(() => makeCharacter(
  296. { name: "Manny" },
  297. {
  298. front: {
  299. height: math.unit(7, "feet"),
  300. weight: math.unit(100, "kg"),
  301. name: "Front",
  302. image: {
  303. source: "./media/characters/manny/front.svg",
  304. extra: 1,
  305. bottom: 0.06
  306. }
  307. },
  308. back: {
  309. height: math.unit(7, "feet"),
  310. weight: math.unit(100, "kg"),
  311. name: "Back",
  312. image: {
  313. source: "./media/characters/manny/back.svg",
  314. extra: 1,
  315. bottom: 0.014
  316. }
  317. },
  318. },
  319. [
  320. {
  321. name: "Normal",
  322. height: math.unit(7, "feet"),
  323. },
  324. {
  325. name: "Macro",
  326. height: math.unit(78, "feet"),
  327. default: true
  328. },
  329. {
  330. name: "Macro+",
  331. height: math.unit(300, "meters")
  332. },
  333. {
  334. name: "Macro++",
  335. height: math.unit(2400, "meters")
  336. },
  337. {
  338. name: "Megamacro",
  339. height: math.unit(5167, "meters")
  340. },
  341. {
  342. name: "Gigamacro",
  343. height: math.unit(41769, "miles")
  344. },
  345. ]
  346. ))
  347. characterMakers.push(() => makeCharacter(
  348. { name: "Adake" },
  349. {
  350. front: {
  351. height: math.unit(7, "feet"),
  352. weight: math.unit(100, "kg"),
  353. name: "Front",
  354. image: {
  355. source: "./media/characters/adake/front-1.svg"
  356. }
  357. },
  358. frontAlt: {
  359. height: math.unit(7, "feet"),
  360. weight: math.unit(100, "kg"),
  361. name: "Front (Alt)",
  362. image: {
  363. source: "./media/characters/adake/front-2.svg",
  364. extra: 1,
  365. bottom: 0.01
  366. }
  367. },
  368. back: {
  369. height: math.unit(7, "feet"),
  370. weight: math.unit(100, "kg"),
  371. name: "Back",
  372. image: {
  373. source: "./media/characters/adake/back.svg",
  374. }
  375. },
  376. kneel: {
  377. height: math.unit(5.385, "feet"),
  378. weight: math.unit(100, "kg"),
  379. name: "Kneeling",
  380. image: {
  381. source: "./media/characters/adake/kneel.svg",
  382. bottom: 0.052
  383. }
  384. },
  385. },
  386. [
  387. {
  388. name: "Normal",
  389. height: math.unit(7, "feet"),
  390. },
  391. {
  392. name: "Macro",
  393. height: math.unit(78, "feet"),
  394. default: true
  395. },
  396. {
  397. name: "Macro+",
  398. height: math.unit(300, "meters")
  399. },
  400. {
  401. name: "Macro++",
  402. height: math.unit(2400, "meters")
  403. },
  404. {
  405. name: "Megamacro",
  406. height: math.unit(5167, "meters")
  407. },
  408. {
  409. name: "Gigamacro",
  410. height: math.unit(41769, "miles")
  411. },
  412. ]
  413. ))
  414. characterMakers.push(() => makeCharacter(
  415. { name: "Elijah" },
  416. {
  417. side: {
  418. height: math.unit(7, "feet"),
  419. weight: math.unit(50, "kg"),
  420. name: "Side",
  421. image: {
  422. source: "./media/characters/elijah/side.svg",
  423. extra: 1,
  424. bottom: 0.065
  425. }
  426. },
  427. foot: {
  428. height: math.unit(2.05, "feet"),
  429. name: "Foot",
  430. image: {
  431. source: "./media/characters/elijah/foot.svg"
  432. }
  433. },
  434. },
  435. [
  436. {
  437. name: "Normal",
  438. height: math.unit(1.65, "meters")
  439. },
  440. {
  441. name: "Macro",
  442. height: math.unit(55, "meters"),
  443. default: true
  444. },
  445. {
  446. name: "Macro+",
  447. height: math.unit(105, "meters")
  448. },
  449. ]
  450. ))
  451. characterMakers.push(() => makeCharacter(
  452. { name: "Rai" },
  453. {
  454. front: {
  455. height: math.unit(11, "feet"),
  456. weight: math.unit(80, "kg"),
  457. name: "Front",
  458. image: {
  459. source: "./media/characters/rai/front.svg",
  460. extra: 1,
  461. bottom: 0.03
  462. }
  463. },
  464. side: {
  465. height: math.unit(11, "feet"),
  466. weight: math.unit(80, "kg"),
  467. name: "Side",
  468. image: {
  469. source: "./media/characters/rai/side.svg"
  470. }
  471. },
  472. back: {
  473. height: math.unit(11, "feet"),
  474. weight: math.unit(80, "lb"),
  475. name: "Back",
  476. image: {
  477. source: "./media/characters/rai/back.svg",
  478. extra: 1,
  479. bottom: 0.01
  480. }
  481. },
  482. feral: {
  483. height: math.unit(11, "feet"),
  484. weight: math.unit(800, "lb"),
  485. name: "Feral",
  486. image: {
  487. source: "./media/characters/rai/feral.svg",
  488. extra: 1050 / 659,
  489. bottom: 0.07
  490. }
  491. },
  492. maw: {
  493. height: math.unit(6 / 3.81416, "feet"),
  494. name: "Maw",
  495. image: {
  496. source: "./media/characters/rai/maw.svg"
  497. }
  498. },
  499. },
  500. [
  501. {
  502. name: "Normal",
  503. height: math.unit(11, "feet")
  504. },
  505. {
  506. name: "Macro",
  507. height: math.unit(302, "feet"),
  508. default: true
  509. },
  510. ]
  511. ))
  512. characterMakers.push(() => makeCharacter(
  513. { name: "Jazzy" },
  514. {
  515. front: {
  516. height: math.unit(7, "feet"),
  517. weight: math.unit(80, "kg"),
  518. name: "Front",
  519. image: {
  520. source: "./media/characters/jazzy/front.svg",
  521. extra: 1,
  522. bottom: 0.01
  523. }
  524. },
  525. back: {
  526. height: math.unit(7, "feet"),
  527. weight: math.unit(80, "kg"),
  528. name: "Back",
  529. image: {
  530. source: "./media/characters/jazzy/back.svg",
  531. extra: 1,
  532. bottom: 0.01
  533. }
  534. },
  535. },
  536. [
  537. {
  538. name: "Macro",
  539. height: math.unit(216, "feet"),
  540. default: true
  541. },
  542. ]
  543. ))
  544. characterMakers.push(() => makeCharacter(
  545. { name: "Flamm" },
  546. {
  547. front: {
  548. height: math.unit(7, "feet"),
  549. weight: math.unit(80, "kg"),
  550. name: "Front",
  551. image: {
  552. source: "./media/characters/flamm/front.svg",
  553. extra: 1,
  554. bottom: 0.02
  555. }
  556. },
  557. },
  558. [
  559. {
  560. name: "Normal",
  561. height: math.unit(9.5, "feet")
  562. },
  563. {
  564. name: "Macro",
  565. height: math.unit(200, "feet"),
  566. default: true
  567. },
  568. ]
  569. ))
  570. characterMakers.push(() => makeCharacter(
  571. { name: "Zephiro" },
  572. {
  573. front: {
  574. height: math.unit(7, "feet"),
  575. weight: math.unit(80, "kg"),
  576. name: "Front",
  577. image: {
  578. source: "./media/characters/zephiro/front.svg",
  579. extra: 2309 / 2162,
  580. bottom: 0.069
  581. }
  582. },
  583. side: {
  584. height: math.unit(7, "feet"),
  585. weight: math.unit(80, "kg"),
  586. name: "Side",
  587. image: {
  588. source: "./media/characters/zephiro/side.svg",
  589. extra: 2403 / 2279,
  590. bottom: 0.015
  591. }
  592. },
  593. back: {
  594. height: math.unit(7, "feet"),
  595. weight: math.unit(80, "kg"),
  596. name: "Back",
  597. image: {
  598. source: "./media/characters/zephiro/back.svg",
  599. extra: 2373 / 2244,
  600. bottom: 0.013
  601. }
  602. },
  603. },
  604. [
  605. {
  606. name: "Micro",
  607. height: math.unit(3, "inches")
  608. },
  609. {
  610. name: "Normal",
  611. height: math.unit(5 + 3 / 12, "feet"),
  612. default: true
  613. },
  614. {
  615. name: "Macro",
  616. height: math.unit(118, "feet")
  617. },
  618. ]
  619. ))
  620. characterMakers.push(() => makeCharacter(
  621. { name: "Fory" },
  622. {
  623. front: {
  624. height: math.unit(7, "feet"),
  625. weight: math.unit(90, "kg"),
  626. name: "Front",
  627. image: {
  628. source: "./media/characters/fory/front.svg",
  629. extra: 1,
  630. bottom: 0.03
  631. }
  632. },
  633. },
  634. [
  635. {
  636. name: "Normal",
  637. height: math.unit(5, "feet")
  638. },
  639. {
  640. name: "Macro",
  641. height: math.unit(50, "feet"),
  642. default: true
  643. },
  644. ]
  645. ))
  646. characterMakers.push(() => makeCharacter(
  647. { name: "Kurrikage" },
  648. {
  649. front: {
  650. height: math.unit(7, "feet"),
  651. weight: math.unit(90, "kg"),
  652. name: "Front",
  653. image: {
  654. source: "./media/characters/kurrikage/front.svg",
  655. extra: 1,
  656. bottom: 0.035
  657. }
  658. },
  659. back: {
  660. height: math.unit(7, "feet"),
  661. weight: math.unit(90, "lb"),
  662. name: "Back",
  663. image: {
  664. source: "./media/characters/kurrikage/back.svg"
  665. }
  666. },
  667. paw: {
  668. height: math.unit(1.5, "feet"),
  669. name: "Paw",
  670. image: {
  671. source: "./media/characters/kurrikage/paw.svg"
  672. }
  673. },
  674. staff: {
  675. height: math.unit(6.7, "feet"),
  676. name: "Staff",
  677. image: {
  678. source: "./media/characters/kurrikage/staff.svg"
  679. }
  680. },
  681. peek: {
  682. height: math.unit(1.05, "feet"),
  683. name: "Peeking",
  684. image: {
  685. source: "./media/characters/kurrikage/peek.svg",
  686. bottom: 0.08
  687. }
  688. },
  689. },
  690. [
  691. {
  692. name: "Normal",
  693. height: math.unit(12, "feet"),
  694. default: true
  695. },
  696. {
  697. name: "Big",
  698. height: math.unit(20, "feet")
  699. },
  700. {
  701. name: "Macro",
  702. height: math.unit(500, "feet")
  703. },
  704. {
  705. name: "Megamacro",
  706. height: math.unit(20, "miles")
  707. },
  708. ]
  709. ))
  710. characterMakers.push(() => makeCharacter(
  711. { name: "Shingo" },
  712. {
  713. front: {
  714. height: math.unit(6, "feet"),
  715. weight: math.unit(75, "kg"),
  716. name: "Front",
  717. image: {
  718. source: "./media/characters/shingo/front.svg",
  719. extra: 3511 / 3338,
  720. bottom: 0.005
  721. }
  722. },
  723. },
  724. [
  725. {
  726. name: "Micro",
  727. height: math.unit(4, "inches")
  728. },
  729. {
  730. name: "Normal",
  731. height: math.unit(6, "feet"),
  732. default: true
  733. },
  734. {
  735. name: "Macro",
  736. height: math.unit(108, "feet")
  737. }
  738. ]
  739. ))
  740. characterMakers.push(() => makeCharacter(
  741. { name: "Aigey" },
  742. {
  743. side: {
  744. height: math.unit(6, "feet"),
  745. weight: math.unit(75, "kg"),
  746. name: "Side",
  747. image: {
  748. source: "./media/characters/aigey/side.svg"
  749. }
  750. },
  751. },
  752. [
  753. {
  754. name: "Macro",
  755. height: math.unit(200, "feet"),
  756. default: true
  757. },
  758. {
  759. name: "Megamacro",
  760. height: math.unit(100, "miles")
  761. },
  762. ]
  763. )
  764. )
  765. characterMakers.push(() => makeCharacter(
  766. { name: "Natasha" },
  767. {
  768. front: {
  769. height: math.unit(5 + 5 / 12, "feet"),
  770. weight: math.unit(75, "kg"),
  771. name: "Front",
  772. image: {
  773. source: "./media/characters/natasha/front.svg",
  774. extra: 875 / 846,
  775. bottom: 0.01
  776. }
  777. },
  778. },
  779. [
  780. {
  781. name: "Normal",
  782. height: math.unit(5 + 5 / 12, "feet")
  783. },
  784. {
  785. name: "Large",
  786. height: math.unit(12, "feet")
  787. },
  788. {
  789. name: "Macro",
  790. height: math.unit(100, "feet"),
  791. default: true
  792. },
  793. {
  794. name: "Macro+",
  795. height: math.unit(260, "feet")
  796. },
  797. {
  798. name: "Macro++",
  799. height: math.unit(1, "mile")
  800. },
  801. ]
  802. ))
  803. characterMakers.push(() => makeCharacter(
  804. { name: "Malik" },
  805. {
  806. front: {
  807. height: math.unit(6, "feet"),
  808. weight: math.unit(75, "kg"),
  809. name: "Front",
  810. image: {
  811. source: "./media/characters/malik/front.svg"
  812. }
  813. },
  814. side: {
  815. height: math.unit(6, "feet"),
  816. weight: math.unit(75, "kg"),
  817. name: "Side",
  818. image: {
  819. source: "./media/characters/malik/side.svg",
  820. extra: 1.1539
  821. }
  822. },
  823. back: {
  824. height: math.unit(6, "feet"),
  825. weight: math.unit(75, "kg"),
  826. name: "Back",
  827. image: {
  828. source: "./media/characters/malik/back.svg"
  829. }
  830. },
  831. },
  832. [
  833. {
  834. name: "Macro",
  835. height: math.unit(156, "feet"),
  836. default: true
  837. },
  838. {
  839. name: "Macro+",
  840. height: math.unit(1188, "feet")
  841. },
  842. ]
  843. ))
  844. characterMakers.push(() => makeCharacter(
  845. { name: "Sefer" },
  846. {
  847. front: {
  848. height: math.unit(6, "feet"),
  849. weight: math.unit(75, "kg"),
  850. name: "Front",
  851. image: {
  852. source: "./media/characters/sefer/front.svg"
  853. }
  854. },
  855. back: {
  856. height: math.unit(6, "feet"),
  857. weight: math.unit(75, "kg"),
  858. name: "Back",
  859. image: {
  860. source: "./media/characters/sefer/back.svg"
  861. }
  862. },
  863. },
  864. [
  865. {
  866. name: "Normal",
  867. height: math.unit(6, "feet"),
  868. default: true
  869. },
  870. ]
  871. ))
  872. characterMakers.push(() => makeCharacter(
  873. { name: "North" },
  874. {
  875. body: {
  876. height: math.unit(2.2428, "meter"),
  877. weight: math.unit(124.738, "kg"),
  878. name: "Body",
  879. image: {
  880. extra: 1225 / 1050,
  881. source: "./media/characters/north/front.svg"
  882. }
  883. }
  884. },
  885. [
  886. {
  887. name: "Micro",
  888. height: math.unit(4, "inches")
  889. },
  890. {
  891. name: "Macro",
  892. height: math.unit(63, "meters")
  893. },
  894. {
  895. name: "Megamacro",
  896. height: math.unit(101, "miles"),
  897. default: true
  898. }
  899. ]
  900. ))
  901. characterMakers.push(() => makeCharacter(
  902. { name: "Talan" },
  903. {
  904. body: {
  905. height: math.unit(2, "meter"),
  906. weight: math.unit(70, "kg"),
  907. name: "Body",
  908. image: {
  909. bottom: 0.02,
  910. source: "./media/characters/talan/front.svg"
  911. }
  912. }
  913. },
  914. [
  915. {
  916. name: "Normal",
  917. height: math.unit(4, "meters")
  918. },
  919. {
  920. name: "Macro",
  921. height: math.unit(100, "meters")
  922. },
  923. {
  924. name: "Megamacro",
  925. height: math.unit(2, "miles"),
  926. default: true
  927. },
  928. {
  929. name: "Gigamacro",
  930. height: math.unit(5000, "miles")
  931. },
  932. {
  933. name: "Teramacro",
  934. height: math.unit(100, "parsecs")
  935. }
  936. ]
  937. ))
  938. characterMakers.push(() => makeCharacter(
  939. { name: "Gael'Rathus" },
  940. {
  941. front: {
  942. height: math.unit(2, "meter"),
  943. weight: math.unit(90, "kg"),
  944. name: "Front",
  945. image: {
  946. source: "./media/characters/gael'rathus/front.svg"
  947. }
  948. },
  949. frontAlt: {
  950. height: math.unit(2, "meter"),
  951. weight: math.unit(90, "kg"),
  952. name: "Front (alt)",
  953. image: {
  954. source: "./media/characters/gael'rathus/front-alt.svg"
  955. }
  956. },
  957. frontAlt2: {
  958. height: math.unit(2, "meter"),
  959. weight: math.unit(90, "kg"),
  960. name: "Front (alt 2)",
  961. image: {
  962. source: "./media/characters/gael'rathus/front-alt-2.svg"
  963. }
  964. }
  965. },
  966. [
  967. {
  968. name: "Normal",
  969. height: math.unit(9, "feet"),
  970. default: true
  971. },
  972. {
  973. name: "Large",
  974. height: math.unit(25, "feet")
  975. },
  976. {
  977. name: "Macro",
  978. height: math.unit(0.25, "miles")
  979. },
  980. {
  981. name: "Megamacro",
  982. height: math.unit(10, "miles")
  983. }
  984. ]
  985. ))
  986. characterMakers.push(() => makeCharacter(
  987. { name: "Sosha" },
  988. {
  989. side: {
  990. height: math.unit(2, "meter"),
  991. weight: math.unit(140, "kg"),
  992. name: "Side",
  993. image: {
  994. source: "./media/characters/sosha/side.svg",
  995. bottom: 0.042
  996. }
  997. },
  998. },
  999. [
  1000. {
  1001. name: "Normal",
  1002. height: math.unit(12, "feet"),
  1003. default: true
  1004. }
  1005. ]
  1006. ))
  1007. characterMakers.push(() => makeCharacter(
  1008. { name: "RuNNoLa" },
  1009. {
  1010. side: {
  1011. height: math.unit(5 + 5 / 12, "feet"),
  1012. weight: math.unit(170, "kg"),
  1013. name: "Side",
  1014. image: {
  1015. source: "./media/characters/runnola/side.svg",
  1016. extra: 741 / 448,
  1017. bottom: 0.05
  1018. }
  1019. },
  1020. },
  1021. [
  1022. {
  1023. name: "Small",
  1024. height: math.unit(3, "feet")
  1025. },
  1026. {
  1027. name: "Normal",
  1028. height: math.unit(5 + 5 / 12, "feet"),
  1029. default: true
  1030. },
  1031. {
  1032. name: "Big",
  1033. height: math.unit(10, "feet")
  1034. },
  1035. ]
  1036. ))
  1037. characterMakers.push(() => makeCharacter(
  1038. { name: "Kurribird" },
  1039. {
  1040. front: {
  1041. height: math.unit(2, "meter"),
  1042. weight: math.unit(50, "kg"),
  1043. name: "Front",
  1044. image: {
  1045. source: "./media/characters/kurribird/front.svg",
  1046. bottom: 0.015
  1047. }
  1048. },
  1049. frontAlt: {
  1050. height: math.unit(1.5, "meter"),
  1051. weight: math.unit(50, "kg"),
  1052. name: "Front (Alt)",
  1053. image: {
  1054. source: "./media/characters/kurribird/front-alt.svg",
  1055. extra: 1.45
  1056. }
  1057. },
  1058. },
  1059. [
  1060. {
  1061. name: "Normal",
  1062. height: math.unit(7, "feet")
  1063. },
  1064. {
  1065. name: "Big",
  1066. height: math.unit(12, "feet"),
  1067. default: true
  1068. },
  1069. {
  1070. name: "Macro",
  1071. height: math.unit(1500, "feet")
  1072. },
  1073. {
  1074. name: "Megamacro",
  1075. height: math.unit(2, "miles")
  1076. }
  1077. ]
  1078. ))
  1079. characterMakers.push(() => makeCharacter(
  1080. { name: "Elbial" },
  1081. {
  1082. front: {
  1083. height: math.unit(2, "meter"),
  1084. weight: math.unit(80, "kg"),
  1085. name: "Front",
  1086. image: {
  1087. source: "./media/characters/elbial/front.svg"
  1088. }
  1089. },
  1090. side: {
  1091. height: math.unit(2, "meter"),
  1092. weight: math.unit(80, "kg"),
  1093. name: "Side",
  1094. image: {
  1095. source: "./media/characters/elbial/side.svg"
  1096. }
  1097. },
  1098. back: {
  1099. height: math.unit(2, "meter"),
  1100. weight: math.unit(80, "kg"),
  1101. name: "Back",
  1102. image: {
  1103. source: "./media/characters/elbial/back.svg"
  1104. }
  1105. },
  1106. },
  1107. [
  1108. {
  1109. name: "Large",
  1110. height: math.unit(100, "feet")
  1111. },
  1112. {
  1113. name: "Macro",
  1114. height: math.unit(500, "feet"),
  1115. default: true
  1116. },
  1117. {
  1118. name: "Megamacro",
  1119. height: math.unit(10, "miles")
  1120. },
  1121. {
  1122. name: "Gigamacro",
  1123. height: math.unit(25000, "miles")
  1124. },
  1125. {
  1126. name: "Full-Size",
  1127. height: math.unit(8000000, "gigaparsecs")
  1128. }
  1129. ]
  1130. ))
  1131. characterMakers.push(() => makeCharacter(
  1132. { name: "Noah" },
  1133. {
  1134. front: {
  1135. height: math.unit(2, "meter"),
  1136. weight: math.unit(60, "kg"),
  1137. name: "Front",
  1138. image: {
  1139. source: "./media/characters/noah/front.svg"
  1140. }
  1141. },
  1142. talons: {
  1143. height: math.unit(0.315, "meter"),
  1144. name: "Talons",
  1145. image: {
  1146. source: "./media/characters/noah/talons.svg"
  1147. }
  1148. }
  1149. },
  1150. [
  1151. {
  1152. name: "Large",
  1153. height: math.unit(50, "feet")
  1154. },
  1155. {
  1156. name: "Macro",
  1157. height: math.unit(750, "feet"),
  1158. default: true
  1159. },
  1160. {
  1161. name: "Megamacro",
  1162. height: math.unit(50, "miles")
  1163. },
  1164. {
  1165. name: "Gigamacro",
  1166. height: math.unit(100000, "miles")
  1167. },
  1168. {
  1169. name: "Full-Size",
  1170. height: math.unit(3000000000, "miles")
  1171. }
  1172. ]
  1173. ))
  1174. characterMakers.push(() => makeCharacter(
  1175. { name: "Natalya" },
  1176. {
  1177. front: {
  1178. height: math.unit(2, "meter"),
  1179. weight: math.unit(80, "kg"),
  1180. name: "Front",
  1181. image: {
  1182. source: "./media/characters/natalya/front.svg"
  1183. }
  1184. },
  1185. back: {
  1186. height: math.unit(2, "meter"),
  1187. weight: math.unit(80, "kg"),
  1188. name: "Back",
  1189. image: {
  1190. source: "./media/characters/natalya/back.svg"
  1191. }
  1192. }
  1193. },
  1194. [
  1195. {
  1196. name: "Normal",
  1197. height: math.unit(150, "feet"),
  1198. default: true
  1199. },
  1200. {
  1201. name: "Megamacro",
  1202. height: math.unit(5, "miles")
  1203. },
  1204. {
  1205. name: "Full-Size",
  1206. height: math.unit(600, "kiloparsecs")
  1207. }
  1208. ]
  1209. ))
  1210. characterMakers.push(() => makeCharacter(
  1211. { name: "Erestrebah" },
  1212. {
  1213. front: {
  1214. height: math.unit(2, "meter"),
  1215. weight: math.unit(50, "kg"),
  1216. name: "Front",
  1217. image: {
  1218. source: "./media/characters/erestrebah/front.svg",
  1219. extra: 208 / 193,
  1220. bottom: 0.055
  1221. }
  1222. },
  1223. back: {
  1224. height: math.unit(2, "meter"),
  1225. weight: math.unit(50, "kg"),
  1226. name: "Back",
  1227. image: {
  1228. source: "./media/characters/erestrebah/back.svg",
  1229. extra: 1.3
  1230. }
  1231. }
  1232. },
  1233. [
  1234. {
  1235. name: "Normal",
  1236. height: math.unit(10, "feet")
  1237. },
  1238. {
  1239. name: "Large",
  1240. height: math.unit(50, "feet"),
  1241. default: true
  1242. },
  1243. {
  1244. name: "Macro",
  1245. height: math.unit(300, "feet")
  1246. },
  1247. {
  1248. name: "Macro+",
  1249. height: math.unit(750, "feet")
  1250. },
  1251. {
  1252. name: "Megamacro",
  1253. height: math.unit(3, "miles")
  1254. }
  1255. ]
  1256. ))
  1257. characterMakers.push(() => makeCharacter(
  1258. { name: "Jennifer" },
  1259. {
  1260. front: {
  1261. height: math.unit(2, "meter"),
  1262. weight: math.unit(80, "kg"),
  1263. name: "Front",
  1264. image: {
  1265. source: "./media/characters/jennifer/front.svg",
  1266. bottom: 0.11,
  1267. extra: 1.16
  1268. }
  1269. },
  1270. frontAlt: {
  1271. height: math.unit(2, "meter"),
  1272. weight: math.unit(80, "kg"),
  1273. name: "Front (Alt)",
  1274. image: {
  1275. source: "./media/characters/jennifer/front-alt.svg"
  1276. }
  1277. }
  1278. },
  1279. [
  1280. {
  1281. name: "Canon Height",
  1282. height: math.unit(120, "feet"),
  1283. default: true
  1284. },
  1285. {
  1286. name: "Macro+",
  1287. height: math.unit(300, "feet")
  1288. },
  1289. {
  1290. name: "Megamacro",
  1291. height: math.unit(20000, "feet")
  1292. }
  1293. ]
  1294. ))
  1295. characterMakers.push(() => makeCharacter(
  1296. { name: "Kalista" },
  1297. {
  1298. front: {
  1299. height: math.unit(2, "meter"),
  1300. weight: math.unit(50, "kg"),
  1301. name: "Front",
  1302. image: {
  1303. source: "./media/characters/kalista/front.svg",
  1304. extra: 1947 / 1700
  1305. }
  1306. },
  1307. back: {
  1308. height: math.unit(2, "meter"),
  1309. weight: math.unit(50, "kg"),
  1310. name: "Back",
  1311. image: {
  1312. source: "./media/characters/kalista/back.svg",
  1313. extra: 1366 / 1156
  1314. }
  1315. }
  1316. },
  1317. [
  1318. {
  1319. name: "Uncomfortably Small",
  1320. height: math.unit(10, "feet")
  1321. },
  1322. {
  1323. name: "Small",
  1324. height: math.unit(30, "feet")
  1325. },
  1326. {
  1327. name: "Macro",
  1328. height: math.unit(100, "feet"),
  1329. default: true
  1330. },
  1331. {
  1332. name: "Macro+",
  1333. height: math.unit(2000, "feet")
  1334. },
  1335. {
  1336. name: "True Form",
  1337. height: math.unit(8924, "miles")
  1338. }
  1339. ]
  1340. ))
  1341. characterMakers.push(() => makeCharacter(
  1342. { name: "GiantGrowingVixen" },
  1343. {
  1344. front: {
  1345. height: math.unit(2, "meter"),
  1346. weight: math.unit(120, "kg"),
  1347. name: "Front",
  1348. image: {
  1349. source: "./media/characters/ggv/front.svg"
  1350. }
  1351. },
  1352. side: {
  1353. height: math.unit(2, "meter"),
  1354. weight: math.unit(120, "kg"),
  1355. name: "Side",
  1356. image: {
  1357. source: "./media/characters/ggv/side.svg"
  1358. }
  1359. }
  1360. },
  1361. [
  1362. {
  1363. name: "Extremely Puny",
  1364. height: math.unit(9 + 5 / 12, "feet")
  1365. },
  1366. {
  1367. name: "Horribly Small",
  1368. height: math.unit(47.7, "miles"),
  1369. default: true
  1370. },
  1371. {
  1372. name: "Reasonably Sized",
  1373. height: math.unit(25000, "parsecs")
  1374. },
  1375. {
  1376. name: "Slightly Uncompressed",
  1377. height: math.unit(7.77e31, "parsecs")
  1378. },
  1379. {
  1380. name: "Omniversal",
  1381. height: math.unit(1e300, "meters")
  1382. },
  1383. ]
  1384. ))
  1385. characterMakers.push(() => makeCharacter(
  1386. { name: "Napalm" },
  1387. {
  1388. front: {
  1389. height: math.unit(2, "meter"),
  1390. weight: math.unit(75, "lb"),
  1391. name: "Front",
  1392. image: {
  1393. source: "./media/characters/napalm/front.svg"
  1394. }
  1395. },
  1396. back: {
  1397. height: math.unit(2, "meter"),
  1398. weight: math.unit(75, "lb"),
  1399. name: "Back",
  1400. image: {
  1401. source: "./media/characters/napalm/back.svg"
  1402. }
  1403. }
  1404. },
  1405. [
  1406. {
  1407. name: "Standard",
  1408. height: math.unit(55, "feet"),
  1409. default: true
  1410. }
  1411. ]
  1412. ))
  1413. characterMakers.push(() => makeCharacter(
  1414. { name: "Asana" },
  1415. {
  1416. front: {
  1417. height: math.unit(7 + 5 / 6, "feet"),
  1418. weight: math.unit(325, "lb"),
  1419. name: "Front",
  1420. image: {
  1421. source: "./media/characters/asana/front.svg",
  1422. extra: 1128 / 1068
  1423. }
  1424. },
  1425. back: {
  1426. height: math.unit(7 + 5 / 6, "feet"),
  1427. weight: math.unit(325, "lb"),
  1428. name: "Back",
  1429. image: {
  1430. source: "./media/characters/asana/back.svg",
  1431. extra: 1128 / 1068
  1432. }
  1433. },
  1434. },
  1435. [
  1436. {
  1437. name: "Standard",
  1438. height: math.unit(7 + 5 / 6, "feet"),
  1439. default: true
  1440. },
  1441. {
  1442. name: "Large",
  1443. height: math.unit(10, "meters")
  1444. },
  1445. {
  1446. name: "Macro",
  1447. height: math.unit(2500, "meters")
  1448. },
  1449. {
  1450. name: "Megamacro",
  1451. height: math.unit(5e6, "meters")
  1452. },
  1453. {
  1454. name: "Examacro",
  1455. height: math.unit(5e12, "lightyears")
  1456. },
  1457. {
  1458. name: "Max Size",
  1459. height: math.unit(1e31, "lightyears")
  1460. }
  1461. ]
  1462. ))
  1463. characterMakers.push(() => makeCharacter(
  1464. { name: "Ebony" },
  1465. {
  1466. front: {
  1467. height: math.unit(2, "meter"),
  1468. weight: math.unit(60, "kg"),
  1469. name: "Front",
  1470. image: {
  1471. source: "./media/characters/ebony/front.svg",
  1472. bottom: 0.03,
  1473. extra: 1045 / 810 + 0.03
  1474. }
  1475. },
  1476. side: {
  1477. height: math.unit(2, "meter"),
  1478. weight: math.unit(60, "kg"),
  1479. name: "Side",
  1480. image: {
  1481. source: "./media/characters/ebony/side.svg",
  1482. bottom: 0.03,
  1483. extra: 1045 / 810 + 0.03
  1484. }
  1485. },
  1486. back: {
  1487. height: math.unit(2, "meter"),
  1488. weight: math.unit(60, "kg"),
  1489. name: "Back",
  1490. image: {
  1491. source: "./media/characters/ebony/back.svg",
  1492. bottom: 0.01,
  1493. extra: 1045 / 810 + 0.01
  1494. }
  1495. },
  1496. },
  1497. [
  1498. // TODO check why I did this lol
  1499. {
  1500. name: "Standard",
  1501. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1502. default: true
  1503. },
  1504. {
  1505. name: "Macro",
  1506. height: math.unit(200, "feet")
  1507. },
  1508. {
  1509. name: "Gigamacro",
  1510. height: math.unit(13000, "km")
  1511. }
  1512. ]
  1513. ))
  1514. characterMakers.push(() => makeCharacter(
  1515. { name: "Mountain" },
  1516. {
  1517. front: {
  1518. height: math.unit(6, "feet"),
  1519. weight: math.unit(175, "lb"),
  1520. name: "Front",
  1521. image: {
  1522. source: "./media/characters/mountain/front.svg"
  1523. }
  1524. },
  1525. back: {
  1526. height: math.unit(6, "feet"),
  1527. weight: math.unit(175, "lb"),
  1528. name: "Back",
  1529. image: {
  1530. source: "./media/characters/mountain/back.svg"
  1531. }
  1532. },
  1533. },
  1534. [
  1535. {
  1536. name: "Large",
  1537. height: math.unit(20, "meters")
  1538. },
  1539. {
  1540. name: "Macro",
  1541. height: math.unit(300, "meters")
  1542. },
  1543. {
  1544. name: "Gigamacro",
  1545. height: math.unit(10000, "km"),
  1546. default: true
  1547. },
  1548. {
  1549. name: "Examacro",
  1550. height: math.unit(10e9, "lightyears")
  1551. }
  1552. ]
  1553. ))
  1554. characterMakers.push(() => makeCharacter(
  1555. { name: "Rick" },
  1556. {
  1557. front: {
  1558. height: math.unit(8, "feet"),
  1559. weight: math.unit(500, "lb"),
  1560. name: "Front",
  1561. image: {
  1562. source: "./media/characters/rick/front.svg"
  1563. }
  1564. }
  1565. },
  1566. [
  1567. {
  1568. name: "Normal",
  1569. height: math.unit(8, "feet"),
  1570. default: true
  1571. },
  1572. {
  1573. name: "Macro",
  1574. height: math.unit(5, "km")
  1575. }
  1576. ]
  1577. ))
  1578. characterMakers.push(() => makeCharacter(
  1579. { name: "Ona" },
  1580. {
  1581. front: {
  1582. height: math.unit(8, "feet"),
  1583. weight: math.unit(120, "lb"),
  1584. name: "Front",
  1585. image: {
  1586. source: "./media/characters/ona/front.svg"
  1587. }
  1588. },
  1589. frontAlt: {
  1590. height: math.unit(8, "feet"),
  1591. weight: math.unit(120, "lb"),
  1592. name: "Front (Alt)",
  1593. image: {
  1594. source: "./media/characters/ona/front-alt.svg"
  1595. }
  1596. },
  1597. back: {
  1598. height: math.unit(8, "feet"),
  1599. weight: math.unit(120, "lb"),
  1600. name: "Back",
  1601. image: {
  1602. source: "./media/characters/ona/back.svg"
  1603. }
  1604. },
  1605. foot: {
  1606. height: math.unit(1.1, "feet"),
  1607. name: "Foot",
  1608. image: {
  1609. source: "./media/characters/ona/foot.svg"
  1610. }
  1611. }
  1612. },
  1613. [
  1614. {
  1615. name: "Megamacro",
  1616. height: math.unit(70, "km"),
  1617. default: true
  1618. },
  1619. {
  1620. name: "Gigamacro",
  1621. height: math.unit(681818, "miles")
  1622. },
  1623. {
  1624. name: "Examacro",
  1625. height: math.unit(3800000, "lightyears")
  1626. },
  1627. ]
  1628. ))
  1629. characterMakers.push(() => makeCharacter(
  1630. { name: "Mech" },
  1631. {
  1632. front: {
  1633. height: math.unit(12, "feet"),
  1634. weight: math.unit(3000, "lb"),
  1635. name: "Front",
  1636. image: {
  1637. source: "./media/characters/mech/front.svg",
  1638. bottom: 0.025,
  1639. }
  1640. },
  1641. back: {
  1642. height: math.unit(12, "feet"),
  1643. weight: math.unit(3000, "lb"),
  1644. name: "Back",
  1645. image: {
  1646. source: "./media/characters/mech/back.svg",
  1647. bottom: 0.03,
  1648. }
  1649. }
  1650. },
  1651. [
  1652. {
  1653. name: "Normal",
  1654. height: math.unit(12, "feet")
  1655. },
  1656. {
  1657. name: "Macro",
  1658. height: math.unit(300, "feet"),
  1659. default: true
  1660. },
  1661. {
  1662. name: "Macro+",
  1663. height: math.unit(1500, "feet")
  1664. },
  1665. ]
  1666. ))
  1667. characterMakers.push(() => makeCharacter(
  1668. { name: "Gregory" },
  1669. {
  1670. front: {
  1671. height: math.unit(1.3, "meter"),
  1672. weight: math.unit(30, "kg"),
  1673. name: "Front",
  1674. image: {
  1675. source: "./media/characters/gregory/front.svg",
  1676. }
  1677. }
  1678. },
  1679. [
  1680. {
  1681. name: "Normal",
  1682. height: math.unit(1.3, "meter"),
  1683. default: true
  1684. },
  1685. {
  1686. name: "Macro",
  1687. height: math.unit(20, "meter")
  1688. }
  1689. ]
  1690. ))
  1691. characterMakers.push(() => makeCharacter(
  1692. { name: "Elory" },
  1693. {
  1694. front: {
  1695. height: math.unit(2.8, "meter"),
  1696. weight: math.unit(200, "kg"),
  1697. name: "Front",
  1698. image: {
  1699. source: "./media/characters/elory/front.svg",
  1700. }
  1701. }
  1702. },
  1703. [
  1704. {
  1705. name: "Normal",
  1706. height: math.unit(2.8, "meter"),
  1707. default: true
  1708. },
  1709. {
  1710. name: "Macro",
  1711. height: math.unit(38, "meter")
  1712. }
  1713. ]
  1714. ))
  1715. characterMakers.push(() => makeCharacter(
  1716. { name: "Angelpatamon" },
  1717. {
  1718. front: {
  1719. height: math.unit(470, "feet"),
  1720. weight: math.unit(924, "tons"),
  1721. name: "Front",
  1722. image: {
  1723. source: "./media/characters/angelpatamon/front.svg",
  1724. }
  1725. }
  1726. },
  1727. [
  1728. {
  1729. name: "Normal",
  1730. height: math.unit(470, "feet"),
  1731. default: true
  1732. },
  1733. {
  1734. name: "Deity Size I",
  1735. height: math.unit(28651.2, "km")
  1736. },
  1737. {
  1738. name: "Deity Size II",
  1739. height: math.unit(171907.2, "km")
  1740. }
  1741. ]
  1742. ))
  1743. characterMakers.push(() => makeCharacter(
  1744. { name: "Cryae" },
  1745. {
  1746. side: {
  1747. height: math.unit(7.2, "meter"),
  1748. weight: math.unit(8.2, "tons"),
  1749. name: "Side",
  1750. image: {
  1751. source: "./media/characters/cryae/side.svg",
  1752. extra: 3500 / 1500
  1753. }
  1754. }
  1755. },
  1756. [
  1757. {
  1758. name: "Normal",
  1759. height: math.unit(7.2, "meter"),
  1760. default: true
  1761. }
  1762. ]
  1763. ))
  1764. characterMakers.push(() => makeCharacter(
  1765. { name: "Xera" },
  1766. {
  1767. front: {
  1768. height: math.unit(6, "feet"),
  1769. weight: math.unit(175, "lb"),
  1770. name: "Front",
  1771. image: {
  1772. source: "./media/characters/xera/front.svg",
  1773. extra: 2300 / 2061
  1774. }
  1775. },
  1776. side: {
  1777. height: math.unit(6, "feet"),
  1778. weight: math.unit(175, "lb"),
  1779. name: "Side",
  1780. image: {
  1781. source: "./media/characters/xera/side.svg",
  1782. extra: 2300 / 2061
  1783. }
  1784. },
  1785. back: {
  1786. height: math.unit(6, "feet"),
  1787. weight: math.unit(175, "lb"),
  1788. name: "Back",
  1789. image: {
  1790. source: "./media/characters/xera/back.svg"
  1791. }
  1792. },
  1793. },
  1794. [
  1795. {
  1796. name: "Small",
  1797. height: math.unit(10, "feet")
  1798. },
  1799. {
  1800. name: "Macro",
  1801. height: math.unit(500, "meters"),
  1802. default: true
  1803. },
  1804. {
  1805. name: "Macro+",
  1806. height: math.unit(10, "km")
  1807. },
  1808. {
  1809. name: "Gigamacro",
  1810. height: math.unit(25000, "km")
  1811. },
  1812. {
  1813. name: "Teramacro",
  1814. height: math.unit(3e6, "km")
  1815. }
  1816. ]
  1817. ))
  1818. characterMakers.push(() => makeCharacter(
  1819. { name: "Nebula" },
  1820. {
  1821. front: {
  1822. height: math.unit(6, "feet"),
  1823. weight: math.unit(175, "lb"),
  1824. name: "Front",
  1825. image: {
  1826. source: "./media/characters/nebula/front.svg",
  1827. extra: 2600 / 2450
  1828. }
  1829. }
  1830. },
  1831. [
  1832. {
  1833. name: "Small",
  1834. height: math.unit(4.5, "meters")
  1835. },
  1836. {
  1837. name: "Macro",
  1838. height: math.unit(1500, "meters"),
  1839. default: true
  1840. },
  1841. {
  1842. name: "Megamacro",
  1843. height: math.unit(150, "km")
  1844. },
  1845. {
  1846. name: "Gigamacro",
  1847. height: math.unit(27000, "km")
  1848. }
  1849. ]
  1850. ))
  1851. characterMakers.push(() => makeCharacter(
  1852. { name: "Abysgar" },
  1853. {
  1854. front: {
  1855. height: math.unit(6, "feet"),
  1856. weight: math.unit(225, "lb"),
  1857. name: "Front",
  1858. image: {
  1859. source: "./media/characters/abysgar/front.svg"
  1860. }
  1861. }
  1862. },
  1863. [
  1864. {
  1865. name: "Small",
  1866. height: math.unit(4.5, "meters")
  1867. },
  1868. {
  1869. name: "Macro",
  1870. height: math.unit(1250, "meters"),
  1871. default: true
  1872. },
  1873. {
  1874. name: "Megamacro",
  1875. height: math.unit(125, "km")
  1876. },
  1877. {
  1878. name: "Gigamacro",
  1879. height: math.unit(26000, "km")
  1880. }
  1881. ]
  1882. ))
  1883. characterMakers.push(() => makeCharacter(
  1884. { name: "Yakuz" },
  1885. {
  1886. front: {
  1887. height: math.unit(6, "feet"),
  1888. weight: math.unit(180, "lb"),
  1889. name: "Front",
  1890. image: {
  1891. source: "./media/characters/yakuz/front.svg"
  1892. }
  1893. }
  1894. },
  1895. [
  1896. {
  1897. name: "Small",
  1898. height: math.unit(5, "meters")
  1899. },
  1900. {
  1901. name: "Macro",
  1902. height: math.unit(1500, "meters"),
  1903. default: true
  1904. },
  1905. {
  1906. name: "Megamacro",
  1907. height: math.unit(200, "km")
  1908. },
  1909. {
  1910. name: "Gigamacro",
  1911. height: math.unit(100000, "km")
  1912. }
  1913. ]
  1914. ))
  1915. characterMakers.push(() => makeCharacter(
  1916. { name: "Mirova" },
  1917. {
  1918. front: {
  1919. height: math.unit(6, "feet"),
  1920. weight: math.unit(175, "lb"),
  1921. name: "Front",
  1922. image: {
  1923. source: "./media/characters/mirova/front.svg"
  1924. }
  1925. }
  1926. },
  1927. [
  1928. {
  1929. name: "Small",
  1930. height: math.unit(5, "meters")
  1931. },
  1932. {
  1933. name: "Macro",
  1934. height: math.unit(900, "meters"),
  1935. default: true
  1936. },
  1937. {
  1938. name: "Megamacro",
  1939. height: math.unit(135, "km")
  1940. },
  1941. {
  1942. name: "Gigamacro",
  1943. height: math.unit(20000, "km")
  1944. }
  1945. ]
  1946. ))
  1947. characterMakers.push(() => makeCharacter(
  1948. { name: "Asana (Mech)" },
  1949. {
  1950. side: {
  1951. height: math.unit(28.35, "feet"),
  1952. weight: math.unit(99.75, "tons"),
  1953. name: "Side",
  1954. image: {
  1955. source: "./media/characters/asana-mech/side.svg"
  1956. }
  1957. }
  1958. },
  1959. [
  1960. {
  1961. name: "Normal",
  1962. height: math.unit(28.35, "feet"),
  1963. default: true
  1964. },
  1965. {
  1966. name: "Macro",
  1967. height: math.unit(2500, "feet")
  1968. },
  1969. {
  1970. name: "Megamacro",
  1971. height: math.unit(25, "miles")
  1972. },
  1973. {
  1974. name: "Examacro",
  1975. height: math.unit(6e8, "lightyears")
  1976. },
  1977. ]
  1978. ))
  1979. characterMakers.push(() => makeCharacter(
  1980. { name: "Ashtrek" },
  1981. {
  1982. front: {
  1983. height: math.unit(2, "meters"),
  1984. weight: math.unit(70, "kg"),
  1985. name: "Front",
  1986. image: {
  1987. source: "./media/characters/ashtrek/front.svg",
  1988. extra: 560 / 524,
  1989. bottom: 0.01
  1990. }
  1991. },
  1992. frontArmor: {
  1993. height: math.unit(2, "meters"),
  1994. weight: math.unit(76, "kg"),
  1995. name: "Front (Armor)",
  1996. image: {
  1997. source: "./media/characters/ashtrek/front-armor.svg",
  1998. extra: 561 / 527,
  1999. bottom: 0.01
  2000. }
  2001. },
  2002. side: {
  2003. height: math.unit(2, "meters"),
  2004. weight: math.unit(70, "kg"),
  2005. name: "Side",
  2006. image: {
  2007. source: "./media/characters/ashtrek/side.svg",
  2008. extra: 1717 / 1609,
  2009. bottom: 0.005
  2010. }
  2011. },
  2012. back: {
  2013. height: math.unit(2, "meters"),
  2014. weight: math.unit(70, "kg"),
  2015. name: "Back",
  2016. image: {
  2017. source: "./media/characters/ashtrek/back.svg",
  2018. extra: 1570 / 1501
  2019. }
  2020. },
  2021. },
  2022. [
  2023. {
  2024. name: "DEFCON 5",
  2025. height: math.unit(5, "meters")
  2026. },
  2027. {
  2028. name: "DEFCON 4",
  2029. height: math.unit(500, "meters"),
  2030. default: true
  2031. },
  2032. {
  2033. name: "DEFCON 3",
  2034. height: math.unit(5, "km")
  2035. },
  2036. {
  2037. name: "DEFCON 2",
  2038. height: math.unit(500, "km")
  2039. },
  2040. {
  2041. name: "DEFCON 1",
  2042. height: math.unit(500000, "km")
  2043. },
  2044. {
  2045. name: "DEFCON 0",
  2046. height: math.unit(3, "gigaparsecs")
  2047. },
  2048. ]
  2049. ))
  2050. characterMakers.push(() => makeCharacter(
  2051. { name: "Gale" },
  2052. {
  2053. front: {
  2054. height: math.unit(2, "meters"),
  2055. weight: math.unit(76, "kg"),
  2056. name: "Front",
  2057. image: {
  2058. source: "./media/characters/gale/front.svg"
  2059. }
  2060. },
  2061. frontAlt1: {
  2062. height: math.unit(2, "meters"),
  2063. weight: math.unit(76, "kg"),
  2064. name: "Front (Alt 1)",
  2065. image: {
  2066. source: "./media/characters/gale/front-alt-1.svg"
  2067. }
  2068. },
  2069. frontAlt2: {
  2070. height: math.unit(2, "meters"),
  2071. weight: math.unit(76, "kg"),
  2072. name: "Front (Alt 2)",
  2073. image: {
  2074. source: "./media/characters/gale/front-alt-2.svg"
  2075. }
  2076. },
  2077. },
  2078. [
  2079. {
  2080. name: "Normal",
  2081. height: math.unit(7, "feet")
  2082. },
  2083. {
  2084. name: "Macro",
  2085. height: math.unit(150, "feet"),
  2086. default: true
  2087. },
  2088. {
  2089. name: "Macro+",
  2090. height: math.unit(300, "feet")
  2091. },
  2092. ]
  2093. ))
  2094. characterMakers.push(() => makeCharacter(
  2095. { name: "Draylen" },
  2096. {
  2097. front: {
  2098. height: math.unit(2, "meters"),
  2099. weight: math.unit(76, "kg"),
  2100. name: "Front",
  2101. image: {
  2102. source: "./media/characters/draylen/front.svg"
  2103. }
  2104. }
  2105. },
  2106. [
  2107. {
  2108. name: "Macro",
  2109. height: math.unit(150, "feet"),
  2110. default: true
  2111. }
  2112. ]
  2113. ))
  2114. characterMakers.push(() => makeCharacter(
  2115. { name: "Chez" },
  2116. {
  2117. front: {
  2118. height: math.unit(7 + 9 / 12, "feet"),
  2119. weight: math.unit(379, "lbs"),
  2120. name: "Front",
  2121. image: {
  2122. source: "./media/characters/chez/front.svg"
  2123. }
  2124. },
  2125. side: {
  2126. height: math.unit(7 + 9 / 12, "feet"),
  2127. weight: math.unit(379, "lbs"),
  2128. name: "Side",
  2129. image: {
  2130. source: "./media/characters/chez/side.svg"
  2131. }
  2132. }
  2133. },
  2134. [
  2135. {
  2136. name: "Normal",
  2137. height: math.unit(7 + 9 / 12, "feet"),
  2138. default: true
  2139. },
  2140. {
  2141. name: "God King",
  2142. height: math.unit(9750000, "meters")
  2143. }
  2144. ]
  2145. ))
  2146. characterMakers.push(() => makeCharacter(
  2147. { name: "Kaylum" },
  2148. {
  2149. front: {
  2150. height: math.unit(6, "feet"),
  2151. weight: math.unit(275, "lbs"),
  2152. name: "Front",
  2153. image: {
  2154. source: "./media/characters/kaylum/front.svg",
  2155. bottom: 0.01,
  2156. extra: 1166 / 1031
  2157. }
  2158. },
  2159. frontWingless: {
  2160. height: math.unit(6, "feet"),
  2161. weight: math.unit(275, "lbs"),
  2162. name: "Front (Wingless)",
  2163. image: {
  2164. source: "./media/characters/kaylum/front-wingless.svg",
  2165. bottom: 0.01,
  2166. extra: 1117 / 1031
  2167. }
  2168. }
  2169. },
  2170. [
  2171. {
  2172. name: "Normal",
  2173. height: math.unit(3.05, "meters")
  2174. },
  2175. {
  2176. name: "Master",
  2177. height: math.unit(5.5, "meters")
  2178. },
  2179. {
  2180. name: "Rampage",
  2181. height: math.unit(19, "meters")
  2182. },
  2183. {
  2184. name: "Macro Lite",
  2185. height: math.unit(37, "meters")
  2186. },
  2187. {
  2188. name: "Hyper Predator",
  2189. height: math.unit(61, "meters")
  2190. },
  2191. {
  2192. name: "Macro",
  2193. height: math.unit(138, "meters"),
  2194. default: true
  2195. }
  2196. ]
  2197. ))
  2198. characterMakers.push(() => makeCharacter(
  2199. { name: "Geta" },
  2200. {
  2201. front: {
  2202. height: math.unit(6, "feet"),
  2203. weight: math.unit(150, "lbs"),
  2204. name: "Front",
  2205. image: {
  2206. source: "./media/characters/geta/front.svg"
  2207. }
  2208. }
  2209. },
  2210. [
  2211. {
  2212. name: "Micro",
  2213. height: math.unit(3, "inches"),
  2214. default: true
  2215. },
  2216. {
  2217. name: "Normal",
  2218. height: math.unit(5 + 5 / 12, "feet")
  2219. }
  2220. ]
  2221. ))
  2222. characterMakers.push(() => makeCharacter(
  2223. { name: "Tyrnn" },
  2224. {
  2225. front: {
  2226. height: math.unit(6, "feet"),
  2227. weight: math.unit(300, "lbs"),
  2228. name: "Front",
  2229. image: {
  2230. source: "./media/characters/tyrnn/front.svg"
  2231. }
  2232. }
  2233. },
  2234. [
  2235. {
  2236. name: "Main Height",
  2237. height: math.unit(355, "feet"),
  2238. default: true
  2239. },
  2240. {
  2241. name: "Fave. Height",
  2242. height: math.unit(2400, "feet")
  2243. }
  2244. ]
  2245. ))
  2246. characterMakers.push(() => makeCharacter(
  2247. { name: "Apple" },
  2248. {
  2249. front: {
  2250. height: math.unit(6, "feet"),
  2251. weight: math.unit(300, "lbs"),
  2252. name: "Front",
  2253. image: {
  2254. source: "./media/characters/appledectomy/front.svg"
  2255. }
  2256. }
  2257. },
  2258. [
  2259. {
  2260. name: "Macro",
  2261. height: math.unit(2500, "feet")
  2262. },
  2263. {
  2264. name: "Megamacro",
  2265. height: math.unit(50, "miles"),
  2266. default: true
  2267. },
  2268. {
  2269. name: "Gigamacro",
  2270. height: math.unit(5000, "miles")
  2271. },
  2272. {
  2273. name: "Teramacro",
  2274. height: math.unit(250000, "miles")
  2275. },
  2276. ]
  2277. ))
  2278. characterMakers.push(() => makeCharacter(
  2279. { name: "Vulpes" },
  2280. {
  2281. front: {
  2282. height: math.unit(6, "feet"),
  2283. weight: math.unit(200, "lbs"),
  2284. name: "Front",
  2285. image: {
  2286. source: "./media/characters/vulpes/front.svg",
  2287. extra: 573 / 543,
  2288. bottom: 0.033
  2289. }
  2290. },
  2291. side: {
  2292. height: math.unit(6, "feet"),
  2293. weight: math.unit(200, "lbs"),
  2294. name: "Side",
  2295. image: {
  2296. source: "./media/characters/vulpes/side.svg",
  2297. extra: 573 / 543,
  2298. bottom: 0.01
  2299. }
  2300. },
  2301. back: {
  2302. height: math.unit(6, "feet"),
  2303. weight: math.unit(200, "lbs"),
  2304. name: "Back",
  2305. image: {
  2306. source: "./media/characters/vulpes/back.svg",
  2307. extra: 573 / 543,
  2308. }
  2309. },
  2310. feet: {
  2311. height: math.unit(1.276, "feet"),
  2312. name: "Feet",
  2313. image: {
  2314. source: "./media/characters/vulpes/feet.svg"
  2315. }
  2316. },
  2317. maw: {
  2318. height: math.unit(1.18, "feet"),
  2319. name: "Maw",
  2320. image: {
  2321. source: "./media/characters/vulpes/maw.svg"
  2322. }
  2323. },
  2324. },
  2325. [
  2326. {
  2327. name: "Micro",
  2328. height: math.unit(2, "inches")
  2329. },
  2330. {
  2331. name: "Normal",
  2332. height: math.unit(6.3, "feet")
  2333. },
  2334. {
  2335. name: "Macro",
  2336. height: math.unit(850, "feet")
  2337. },
  2338. {
  2339. name: "Megamacro",
  2340. height: math.unit(7500, "feet"),
  2341. default: true
  2342. },
  2343. {
  2344. name: "Gigamacro",
  2345. height: math.unit(570000, "miles")
  2346. }
  2347. ]
  2348. ))
  2349. characterMakers.push(() => makeCharacter(
  2350. { name: "Rain Fallen" },
  2351. {
  2352. front: {
  2353. height: math.unit(6, "feet"),
  2354. weight: math.unit(210, "lbs"),
  2355. name: "Front",
  2356. image: {
  2357. source: "./media/characters/rain-fallen/front.svg"
  2358. }
  2359. },
  2360. side: {
  2361. height: math.unit(6, "feet"),
  2362. weight: math.unit(210, "lbs"),
  2363. name: "Side",
  2364. image: {
  2365. source: "./media/characters/rain-fallen/side.svg"
  2366. }
  2367. },
  2368. back: {
  2369. height: math.unit(6, "feet"),
  2370. weight: math.unit(210, "lbs"),
  2371. name: "Back",
  2372. image: {
  2373. source: "./media/characters/rain-fallen/back.svg"
  2374. }
  2375. },
  2376. feral: {
  2377. height: math.unit(9, "feet"),
  2378. weight: math.unit(700, "lbs"),
  2379. name: "Feral",
  2380. image: {
  2381. source: "./media/characters/rain-fallen/feral.svg"
  2382. }
  2383. },
  2384. },
  2385. [
  2386. {
  2387. name: "Normal",
  2388. height: math.unit(5, "meter")
  2389. },
  2390. {
  2391. name: "Macro",
  2392. height: math.unit(150, "meter"),
  2393. default: true
  2394. },
  2395. {
  2396. name: "Megamacro",
  2397. height: math.unit(278e6, "meter")
  2398. },
  2399. {
  2400. name: "Gigamacro",
  2401. height: math.unit(2e9, "meter")
  2402. },
  2403. {
  2404. name: "Teramacro",
  2405. height: math.unit(8e12, "meter")
  2406. },
  2407. {
  2408. name: "Devourer",
  2409. height: math.unit(14, "zettameters")
  2410. },
  2411. {
  2412. name: "Scarlet King",
  2413. height: math.unit(18, "yottameters")
  2414. },
  2415. {
  2416. name: "Void",
  2417. height: math.unit(6.66e66, "yottameters")
  2418. }
  2419. ]
  2420. ))
  2421. characterMakers.push(() => makeCharacter(
  2422. { name: "Zaakira" },
  2423. {
  2424. standing: {
  2425. height: math.unit(6, "feet"),
  2426. weight: math.unit(180, "lbs"),
  2427. name: "Standing",
  2428. image: {
  2429. source: "./media/characters/zaakira/standing.svg"
  2430. }
  2431. },
  2432. laying: {
  2433. height: math.unit(3, "feet"),
  2434. weight: math.unit(180, "lbs"),
  2435. name: "Laying",
  2436. image: {
  2437. source: "./media/characters/zaakira/laying.svg"
  2438. }
  2439. },
  2440. },
  2441. [
  2442. {
  2443. name: "Normal",
  2444. height: math.unit(12, "feet")
  2445. },
  2446. {
  2447. name: "Macro",
  2448. height: math.unit(279, "feet"),
  2449. default: true
  2450. }
  2451. ]
  2452. ))
  2453. characterMakers.push(() => makeCharacter(
  2454. { name: "Sigvald" },
  2455. {
  2456. front: {
  2457. height: math.unit(6, "feet"),
  2458. weight: math.unit(250, "lbs"),
  2459. name: "Front",
  2460. image: {
  2461. source: "./media/characters/sigvald/front.svg",
  2462. extra: 1000 / 850
  2463. }
  2464. },
  2465. back: {
  2466. height: math.unit(6, "feet"),
  2467. weight: math.unit(250, "lbs"),
  2468. name: "Back",
  2469. image: {
  2470. source: "./media/characters/sigvald/back.svg"
  2471. }
  2472. },
  2473. },
  2474. [
  2475. {
  2476. name: "Normal",
  2477. height: math.unit(8, "feet")
  2478. },
  2479. {
  2480. name: "Large",
  2481. height: math.unit(12, "feet")
  2482. },
  2483. {
  2484. name: "Larger",
  2485. height: math.unit(20, "feet")
  2486. },
  2487. {
  2488. name: "Macro",
  2489. height: math.unit(150, "feet")
  2490. },
  2491. {
  2492. name: "Macro+",
  2493. height: math.unit(200, "feet"),
  2494. default: true
  2495. },
  2496. ]
  2497. ))
  2498. characterMakers.push(() => makeCharacter(
  2499. { name: "Scott" },
  2500. {
  2501. side: {
  2502. height: math.unit(12, "feet"),
  2503. weight: math.unit(3000, "lbs"),
  2504. name: "Side",
  2505. image: {
  2506. source: "./media/characters/scott/side.svg",
  2507. extra: 1,
  2508. bottom: 0.069
  2509. }
  2510. },
  2511. upright: {
  2512. height: math.unit(12, "feet"),
  2513. weight: math.unit(3000, "lbs"),
  2514. name: "Upright",
  2515. image: {
  2516. source: "./media/characters/scott/upright.svg",
  2517. extra: 1,
  2518. bottom: 0.05
  2519. }
  2520. },
  2521. },
  2522. [
  2523. {
  2524. name: "Normal",
  2525. height: math.unit(12, "feet"),
  2526. default: true
  2527. },
  2528. ]
  2529. ))
  2530. characterMakers.push(() => makeCharacter(
  2531. { name: "Tobias" },
  2532. {
  2533. side: {
  2534. height: math.unit(8, "meters"),
  2535. weight: math.unit(84755, "lbs"),
  2536. name: "Side",
  2537. image: {
  2538. source: "./media/characters/tobias/side.svg",
  2539. extra: 5 / 4
  2540. }
  2541. },
  2542. },
  2543. [
  2544. {
  2545. name: "Normal",
  2546. height: math.unit(8, "meters"),
  2547. default: true
  2548. },
  2549. ]
  2550. ))
  2551. characterMakers.push(() => makeCharacter(
  2552. { name: "Kieran" },
  2553. {
  2554. front: {
  2555. height: math.unit(5.5, "feet"),
  2556. weight: math.unit(400, "lbs"),
  2557. name: "Front",
  2558. image: {
  2559. source: "./media/characters/kieran/front.svg",
  2560. extra: 1.05
  2561. }
  2562. },
  2563. side: {
  2564. height: math.unit(5.5, "feet"),
  2565. weight: math.unit(400, "lbs"),
  2566. name: "Side",
  2567. image: {
  2568. source: "./media/characters/kieran/side.svg",
  2569. extra: 950 / 850
  2570. }
  2571. },
  2572. },
  2573. [
  2574. {
  2575. name: "Normal",
  2576. height: math.unit(5.5, "feet"),
  2577. default: true
  2578. },
  2579. ]
  2580. ))
  2581. characterMakers.push(() => makeCharacter(
  2582. { name: "Sanya" },
  2583. {
  2584. side: {
  2585. height: math.unit(2, "meters"),
  2586. weight: math.unit(70, "kg"),
  2587. name: "Side",
  2588. image: {
  2589. source: "./media/characters/sanya/side.svg",
  2590. bottom: 0.02,
  2591. extra: 1.02
  2592. }
  2593. },
  2594. },
  2595. [
  2596. {
  2597. name: "Small",
  2598. height: math.unit(2, "meters")
  2599. },
  2600. {
  2601. name: "Normal",
  2602. height: math.unit(3, "meters")
  2603. },
  2604. {
  2605. name: "Macro",
  2606. height: math.unit(16, "meters"),
  2607. default: true
  2608. },
  2609. ]
  2610. ))
  2611. characterMakers.push(() => makeCharacter(
  2612. { name: "Miranda" },
  2613. {
  2614. side: {
  2615. height: math.unit(2, "meters"),
  2616. weight: math.unit(120, "kg"),
  2617. name: "Front",
  2618. image: {
  2619. source: "./media/characters/miranda/front.svg",
  2620. extra: 10.6 / 10
  2621. }
  2622. },
  2623. },
  2624. [
  2625. {
  2626. name: "Normal",
  2627. height: math.unit(10, "feet"),
  2628. default: true
  2629. }
  2630. ]
  2631. ))
  2632. characterMakers.push(() => makeCharacter(
  2633. { name: "James" },
  2634. {
  2635. side: {
  2636. height: math.unit(2, "meters"),
  2637. weight: math.unit(100, "kg"),
  2638. name: "Front",
  2639. image: {
  2640. source: "./media/characters/james/front.svg",
  2641. extra: 10 / 8.5
  2642. }
  2643. },
  2644. },
  2645. [
  2646. {
  2647. name: "Normal",
  2648. height: math.unit(8.5, "feet"),
  2649. default: true
  2650. }
  2651. ]
  2652. ))
  2653. characterMakers.push(() => makeCharacter(
  2654. { name: "Heather" },
  2655. {
  2656. side: {
  2657. height: math.unit(9.5, "feet"),
  2658. weight: math.unit(2500, "lbs"),
  2659. name: "Side",
  2660. image: {
  2661. source: "./media/characters/heather/side.svg"
  2662. }
  2663. },
  2664. },
  2665. [
  2666. {
  2667. name: "Normal",
  2668. height: math.unit(9.5, "feet"),
  2669. default: true
  2670. }
  2671. ]
  2672. ))
  2673. characterMakers.push(() => makeCharacter(
  2674. { name: "Lukas" },
  2675. {
  2676. side: {
  2677. height: math.unit(6.5, "feet"),
  2678. weight: math.unit(400, "lbs"),
  2679. name: "Side",
  2680. image: {
  2681. source: "./media/characters/lukas/side.svg",
  2682. extra: 7.25 / 6.5
  2683. }
  2684. },
  2685. },
  2686. [
  2687. {
  2688. name: "Normal",
  2689. height: math.unit(6.5, "feet"),
  2690. default: true
  2691. }
  2692. ]
  2693. ))
  2694. characterMakers.push(() => makeCharacter(
  2695. { name: "Louise" },
  2696. {
  2697. side: {
  2698. height: math.unit(5, "feet"),
  2699. weight: math.unit(3000, "lbs"),
  2700. name: "Side",
  2701. image: {
  2702. source: "./media/characters/louise/side.svg"
  2703. }
  2704. },
  2705. },
  2706. [
  2707. {
  2708. name: "Normal",
  2709. height: math.unit(5, "feet"),
  2710. default: true
  2711. }
  2712. ]
  2713. ))
  2714. characterMakers.push(() => makeCharacter(
  2715. { name: "Ramona" },
  2716. {
  2717. side: {
  2718. height: math.unit(6, "feet"),
  2719. weight: math.unit(150, "lbs"),
  2720. name: "Side",
  2721. image: {
  2722. source: "./media/characters/ramona/side.svg"
  2723. }
  2724. },
  2725. },
  2726. [
  2727. {
  2728. name: "Normal",
  2729. height: math.unit(5.3, "meters"),
  2730. default: true
  2731. },
  2732. {
  2733. name: "Macro",
  2734. height: math.unit(20, "stories")
  2735. },
  2736. {
  2737. name: "Macro+",
  2738. height: math.unit(50, "stories")
  2739. },
  2740. ]
  2741. ))
  2742. characterMakers.push(() => makeCharacter(
  2743. { name: "Deerpuff" },
  2744. {
  2745. standing: {
  2746. height: math.unit(5.75, "feet"),
  2747. weight: math.unit(160, "lbs"),
  2748. name: "Standing",
  2749. image: {
  2750. source: "./media/characters/deerpuff/standing.svg",
  2751. extra: 682 / 624
  2752. }
  2753. },
  2754. sitting: {
  2755. height: math.unit(5.75 / 1.79, "feet"),
  2756. weight: math.unit(160, "lbs"),
  2757. name: "Sitting",
  2758. image: {
  2759. source: "./media/characters/deerpuff/sitting.svg",
  2760. bottom: 44 / 400,
  2761. extra: 1
  2762. }
  2763. },
  2764. taurLaying: {
  2765. height: math.unit(6, "feet"),
  2766. weight: math.unit(400, "lbs"),
  2767. name: "Taur (Laying)",
  2768. image: {
  2769. source: "./media/characters/deerpuff/taur-laying.svg"
  2770. }
  2771. },
  2772. },
  2773. [
  2774. {
  2775. name: "Puffball",
  2776. height: math.unit(6, "inches")
  2777. },
  2778. {
  2779. name: "Normalpuff",
  2780. height: math.unit(5.75, "feet")
  2781. },
  2782. {
  2783. name: "Macropuff",
  2784. height: math.unit(1500, "feet"),
  2785. default: true
  2786. },
  2787. {
  2788. name: "Megapuff",
  2789. height: math.unit(500, "miles")
  2790. },
  2791. {
  2792. name: "Gigapuff",
  2793. height: math.unit(250000, "miles")
  2794. },
  2795. {
  2796. name: "Omegapuff",
  2797. height: math.unit(1000, "lightyears")
  2798. },
  2799. ]
  2800. ))
  2801. characterMakers.push(() => makeCharacter(
  2802. { name: "Vivian" },
  2803. {
  2804. stomping: {
  2805. height: math.unit(6, "feet"),
  2806. weight: math.unit(170, "lbs"),
  2807. name: "Stomping",
  2808. image: {
  2809. source: "./media/characters/vivian/stomping.svg"
  2810. }
  2811. },
  2812. sitting: {
  2813. height: math.unit(6 / 1.75, "feet"),
  2814. weight: math.unit(170, "lbs"),
  2815. name: "Sitting",
  2816. image: {
  2817. source: "./media/characters/vivian/sitting.svg",
  2818. bottom: 1 / 6.4,
  2819. extra: 1,
  2820. }
  2821. },
  2822. },
  2823. [
  2824. {
  2825. name: "Normal",
  2826. height: math.unit(7, "feet"),
  2827. default: true
  2828. },
  2829. {
  2830. name: "Macro",
  2831. height: math.unit(10, "stories")
  2832. },
  2833. {
  2834. name: "Macro+",
  2835. height: math.unit(30, "stories")
  2836. },
  2837. {
  2838. name: "Megamacro",
  2839. height: math.unit(10, "miles")
  2840. },
  2841. {
  2842. name: "Megamacro+",
  2843. height: math.unit(2750000, "meters")
  2844. },
  2845. ]
  2846. ))
  2847. characterMakers.push(() => makeCharacter(
  2848. { name: "Prince" },
  2849. {
  2850. front: {
  2851. height: math.unit(6, "feet"),
  2852. weight: math.unit(160, "lbs"),
  2853. name: "Front",
  2854. image: {
  2855. source: "./media/characters/prince/front.svg",
  2856. extra: 3400 / 3000
  2857. }
  2858. },
  2859. jumping: {
  2860. height: math.unit(6, "feet"),
  2861. weight: math.unit(160, "lbs"),
  2862. name: "Jumping",
  2863. image: {
  2864. source: "./media/characters/prince/jump.svg",
  2865. extra: 2555 / 2134
  2866. }
  2867. },
  2868. },
  2869. [
  2870. {
  2871. name: "Normal",
  2872. height: math.unit(7.75, "feet"),
  2873. default: true
  2874. },
  2875. {
  2876. name: "Not cute",
  2877. height: math.unit(17, "feet")
  2878. },
  2879. {
  2880. name: "I said NOT",
  2881. height: math.unit(91, "feet")
  2882. },
  2883. {
  2884. name: "Please stop",
  2885. height: math.unit(560, "feet")
  2886. },
  2887. {
  2888. name: "What have you done",
  2889. height: math.unit(2200, "feet")
  2890. },
  2891. {
  2892. name: "Deer God",
  2893. height: math.unit(3.6, "miles")
  2894. },
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Psymon" },
  2899. {
  2900. standing: {
  2901. height: math.unit(6, "feet"),
  2902. weight: math.unit(300, "lbs"),
  2903. name: "Standing",
  2904. image: {
  2905. source: "./media/characters/psymon/standing.svg",
  2906. extra: 1888 / 1810,
  2907. bottom: 0.05
  2908. }
  2909. },
  2910. slithering: {
  2911. height: math.unit(6, "feet"),
  2912. weight: math.unit(300, "lbs"),
  2913. name: "Slithering",
  2914. image: {
  2915. source: "./media/characters/psymon/slithering.svg",
  2916. extra: 1330 / 1224
  2917. }
  2918. },
  2919. slitheringAlt: {
  2920. height: math.unit(6, "feet"),
  2921. weight: math.unit(300, "lbs"),
  2922. name: "Slithering (Alt)",
  2923. image: {
  2924. source: "./media/characters/psymon/slithering-alt.svg",
  2925. extra: 1330 / 1224
  2926. }
  2927. },
  2928. },
  2929. [
  2930. {
  2931. name: "Normal",
  2932. height: math.unit(11.25, "feet"),
  2933. default: true
  2934. },
  2935. {
  2936. name: "Large",
  2937. height: math.unit(27, "feet")
  2938. },
  2939. {
  2940. name: "Giant",
  2941. height: math.unit(87, "feet")
  2942. },
  2943. {
  2944. name: "Macro",
  2945. height: math.unit(365, "feet")
  2946. },
  2947. {
  2948. name: "Megamacro",
  2949. height: math.unit(3, "miles")
  2950. },
  2951. {
  2952. name: "World Serpent",
  2953. height: math.unit(8000, "miles")
  2954. },
  2955. ]
  2956. ))
  2957. characterMakers.push(() => makeCharacter(
  2958. { name: "Daimos" },
  2959. {
  2960. front: {
  2961. height: math.unit(6, "feet"),
  2962. weight: math.unit(180, "lbs"),
  2963. name: "Front",
  2964. image: {
  2965. source: "./media/characters/daimos/front.svg",
  2966. extra: 4160 / 3897,
  2967. bottom: 0.021
  2968. }
  2969. }
  2970. },
  2971. [
  2972. {
  2973. name: "Normal",
  2974. height: math.unit(8, "feet"),
  2975. default: true
  2976. },
  2977. {
  2978. name: "Big Dog",
  2979. height: math.unit(22, "feet")
  2980. },
  2981. {
  2982. name: "Macro",
  2983. height: math.unit(127, "feet")
  2984. },
  2985. {
  2986. name: "Megamacro",
  2987. height: math.unit(3600, "feet")
  2988. },
  2989. ]
  2990. ))
  2991. characterMakers.push(() => makeCharacter(
  2992. { name: "Blake" },
  2993. {
  2994. side: {
  2995. height: math.unit(6, "feet"),
  2996. weight: math.unit(180, "lbs"),
  2997. name: "Side",
  2998. image: {
  2999. source: "./media/characters/blake/side.svg",
  3000. extra: 1212 / 1120,
  3001. bottom: 0.05
  3002. }
  3003. },
  3004. crouched: {
  3005. height: math.unit(6 * 0.57, "feet"),
  3006. weight: math.unit(180, "lbs"),
  3007. name: "Crouched",
  3008. image: {
  3009. source: "./media/characters/blake/crouched.svg",
  3010. extra: 840 / 587,
  3011. bottom: 0.04
  3012. }
  3013. },
  3014. bent: {
  3015. height: math.unit(6 * 0.75, "feet"),
  3016. weight: math.unit(180, "lbs"),
  3017. name: "Bent",
  3018. image: {
  3019. source: "./media/characters/blake/bent.svg",
  3020. extra: 592 / 544,
  3021. bottom: 0.035
  3022. }
  3023. },
  3024. },
  3025. [
  3026. {
  3027. name: "Normal",
  3028. height: math.unit(8 + 1 / 6, "feet"),
  3029. default: true
  3030. },
  3031. {
  3032. name: "Big Backside",
  3033. height: math.unit(37, "feet")
  3034. },
  3035. {
  3036. name: "Subway Shredder",
  3037. height: math.unit(72, "feet")
  3038. },
  3039. {
  3040. name: "City Carver",
  3041. height: math.unit(1675, "feet")
  3042. },
  3043. {
  3044. name: "Tectonic Tweaker",
  3045. height: math.unit(2300, "miles")
  3046. },
  3047. ]
  3048. ))
  3049. characterMakers.push(() => makeCharacter(
  3050. { name: "Guisetto" },
  3051. {
  3052. front: {
  3053. height: math.unit(6, "feet"),
  3054. weight: math.unit(180, "lbs"),
  3055. name: "Front",
  3056. image: {
  3057. source: "./media/characters/guisetto/front.svg",
  3058. extra: 856 / 817,
  3059. bottom: 0.06
  3060. }
  3061. },
  3062. airborne: {
  3063. height: math.unit(6, "feet"),
  3064. weight: math.unit(180, "lbs"),
  3065. name: "Airborne",
  3066. image: {
  3067. source: "./media/characters/guisetto/airborne.svg",
  3068. extra: 584 / 525
  3069. }
  3070. },
  3071. },
  3072. [
  3073. {
  3074. name: "Normal",
  3075. height: math.unit(10 + 11 / 12, "feet"),
  3076. default: true
  3077. },
  3078. {
  3079. name: "Large",
  3080. height: math.unit(35, "feet")
  3081. },
  3082. {
  3083. name: "Macro",
  3084. height: math.unit(475, "feet")
  3085. },
  3086. ]
  3087. ))
  3088. characterMakers.push(() => makeCharacter(
  3089. { name: "Luxor" },
  3090. {
  3091. front: {
  3092. height: math.unit(6, "feet"),
  3093. weight: math.unit(180, "lbs"),
  3094. name: "Front",
  3095. image: {
  3096. source: "./media/characters/luxor/front.svg",
  3097. extra: 2940 / 2152
  3098. }
  3099. },
  3100. back: {
  3101. height: math.unit(6, "feet"),
  3102. weight: math.unit(180, "lbs"),
  3103. name: "Back",
  3104. image: {
  3105. source: "./media/characters/luxor/back.svg",
  3106. extra: 1083 / 960
  3107. }
  3108. },
  3109. },
  3110. [
  3111. {
  3112. name: "Normal",
  3113. height: math.unit(5 + 5 / 6, "feet"),
  3114. default: true
  3115. },
  3116. {
  3117. name: "Lamp",
  3118. height: math.unit(50, "feet")
  3119. },
  3120. {
  3121. name: "Lämp",
  3122. height: math.unit(300, "feet")
  3123. },
  3124. {
  3125. name: "The sun is a lamp",
  3126. height: math.unit(250000, "miles")
  3127. },
  3128. ]
  3129. ))
  3130. characterMakers.push(() => makeCharacter(
  3131. { name: "Huoyan" },
  3132. {
  3133. front: {
  3134. height: math.unit(6, "feet"),
  3135. weight: math.unit(50, "lbs"),
  3136. name: "Front",
  3137. image: {
  3138. source: "./media/characters/huoyan/front.svg"
  3139. }
  3140. },
  3141. side: {
  3142. height: math.unit(6, "feet"),
  3143. weight: math.unit(180, "lbs"),
  3144. name: "Side",
  3145. image: {
  3146. source: "./media/characters/huoyan/side.svg"
  3147. }
  3148. },
  3149. },
  3150. [
  3151. {
  3152. name: "Chef",
  3153. height: math.unit(9, "feet")
  3154. },
  3155. {
  3156. name: "Normal",
  3157. height: math.unit(65, "feet"),
  3158. default: true
  3159. },
  3160. {
  3161. name: "Macro",
  3162. height: math.unit(780, "feet")
  3163. },
  3164. {
  3165. name: "Flaming Mountain",
  3166. height: math.unit(4.8, "miles")
  3167. },
  3168. {
  3169. name: "Celestial",
  3170. height: math.unit(765000, "miles")
  3171. },
  3172. ]
  3173. ))
  3174. characterMakers.push(() => makeCharacter(
  3175. { name: "Tails" },
  3176. {
  3177. front: {
  3178. height: math.unit(5 + 3 / 4, "feet"),
  3179. weight: math.unit(120, "lbs"),
  3180. name: "Front",
  3181. image: {
  3182. source: "./media/characters/tails/front.svg"
  3183. }
  3184. }
  3185. },
  3186. [
  3187. {
  3188. name: "Normal",
  3189. height: math.unit(5 + 3 / 4, "feet"),
  3190. default: true
  3191. }
  3192. ]
  3193. ))
  3194. characterMakers.push(() => makeCharacter(
  3195. { name: "Rainy" },
  3196. {
  3197. front: {
  3198. height: math.unit(4, "feet"),
  3199. weight: math.unit(50, "lbs"),
  3200. name: "Front",
  3201. image: {
  3202. source: "./media/characters/rainy/front.svg"
  3203. }
  3204. }
  3205. },
  3206. [
  3207. {
  3208. name: "Macro",
  3209. height: math.unit(800, "feet"),
  3210. default: true
  3211. }
  3212. ]
  3213. ))
  3214. characterMakers.push(() => makeCharacter(
  3215. { name: "Rainier" },
  3216. {
  3217. front: {
  3218. height: math.unit(6, "feet"),
  3219. weight: math.unit(150, "lbs"),
  3220. name: "Front",
  3221. image: {
  3222. source: "./media/characters/rainier/front.svg"
  3223. }
  3224. }
  3225. },
  3226. [
  3227. {
  3228. name: "Micro",
  3229. height: math.unit(2, "mm"),
  3230. default: true
  3231. }
  3232. ]
  3233. ))
  3234. characterMakers.push(() => makeCharacter(
  3235. { name: "Andy" },
  3236. {
  3237. front: {
  3238. height: math.unit(6, "feet"),
  3239. weight: math.unit(180, "lbs"),
  3240. name: "Front",
  3241. image: {
  3242. source: "./media/characters/andy/front.svg"
  3243. }
  3244. }
  3245. },
  3246. [
  3247. {
  3248. name: "Normal",
  3249. height: math.unit(8, "feet"),
  3250. default: true
  3251. },
  3252. {
  3253. name: "Macro",
  3254. height: math.unit(1000, "feet")
  3255. },
  3256. {
  3257. name: "Megamacro",
  3258. height: math.unit(5, "miles")
  3259. },
  3260. {
  3261. name: "Gigamacro",
  3262. height: math.unit(5000, "miles")
  3263. },
  3264. ]
  3265. ))
  3266. characterMakers.push(() => makeCharacter(
  3267. { name: "Cimmaron" },
  3268. {
  3269. frontClothed: {
  3270. height: math.unit(6, "feet"),
  3271. weight: math.unit(210, "lbs"),
  3272. name: "Front (Clothed)",
  3273. image: {
  3274. source: "./media/characters/cimmaron/front-clothed.svg",
  3275. extra: 701 / 676,
  3276. bottom: 0.046
  3277. }
  3278. },
  3279. backClothed: {
  3280. height: math.unit(6, "feet"),
  3281. weight: math.unit(210, "lbs"),
  3282. name: "Back (Clothed)",
  3283. image: {
  3284. source: "./media/characters/cimmaron/back-clothed.svg",
  3285. extra: 701 / 676,
  3286. bottom: 0.046
  3287. }
  3288. },
  3289. frontNude: {
  3290. height: math.unit(6, "feet"),
  3291. weight: math.unit(210, "lbs"),
  3292. name: "Front (Nude)",
  3293. image: {
  3294. source: "./media/characters/cimmaron/front-nude.svg",
  3295. extra: 701 / 676,
  3296. bottom: 0.046
  3297. }
  3298. },
  3299. backNude: {
  3300. height: math.unit(6, "feet"),
  3301. weight: math.unit(210, "lbs"),
  3302. name: "Back (Nude)",
  3303. image: {
  3304. source: "./media/characters/cimmaron/back-nude.svg",
  3305. extra: 701 / 676,
  3306. bottom: 0.046
  3307. }
  3308. }
  3309. },
  3310. [
  3311. {
  3312. name: "Normal",
  3313. height: math.unit(6, "feet"),
  3314. default: true
  3315. },
  3316. {
  3317. name: "Macro Mayor",
  3318. height: math.unit(350, "meters")
  3319. },
  3320. ]
  3321. ))
  3322. characterMakers.push(() => makeCharacter(
  3323. { name: "Akari Kaen" },
  3324. {
  3325. front: {
  3326. height: math.unit(6, "feet"),
  3327. weight: math.unit(200, "lbs"),
  3328. name: "Front",
  3329. image: {
  3330. source: "./media/characters/akari/front.svg",
  3331. extra: 962 / 901,
  3332. bottom: 0.04
  3333. }
  3334. }
  3335. },
  3336. [
  3337. {
  3338. name: "Micro",
  3339. height: math.unit(5, "inches"),
  3340. default: true
  3341. },
  3342. {
  3343. name: "Normal",
  3344. height: math.unit(7, "feet")
  3345. },
  3346. ]
  3347. ))
  3348. characterMakers.push(() => makeCharacter(
  3349. { name: "Cynosura" },
  3350. {
  3351. front: {
  3352. height: math.unit(6, "feet"),
  3353. weight: math.unit(140, "lbs"),
  3354. name: "Front",
  3355. image: {
  3356. source: "./media/characters/cynosura/front.svg",
  3357. extra: 896 / 847
  3358. }
  3359. },
  3360. back: {
  3361. height: math.unit(6, "feet"),
  3362. weight: math.unit(140, "lbs"),
  3363. name: "Back",
  3364. image: {
  3365. source: "./media/characters/cynosura/back.svg",
  3366. extra: 1365 / 1250
  3367. }
  3368. },
  3369. },
  3370. [
  3371. {
  3372. name: "Micro",
  3373. height: math.unit(4, "inches")
  3374. },
  3375. {
  3376. name: "Normal",
  3377. height: math.unit(5.75, "feet"),
  3378. default: true
  3379. },
  3380. {
  3381. name: "Tall",
  3382. height: math.unit(10, "feet")
  3383. },
  3384. {
  3385. name: "Big",
  3386. height: math.unit(20, "feet")
  3387. },
  3388. {
  3389. name: "Macro",
  3390. height: math.unit(50, "feet")
  3391. },
  3392. ]
  3393. ))
  3394. characterMakers.push(() => makeCharacter(
  3395. { name: "Gin" },
  3396. {
  3397. front: {
  3398. height: math.unit(6, "feet"),
  3399. weight: math.unit(170, "lbs"),
  3400. name: "Front",
  3401. image: {
  3402. source: "./media/characters/gin/front.svg",
  3403. extra: 1.053,
  3404. bottom: 0.025
  3405. }
  3406. },
  3407. foot: {
  3408. height: math.unit(6 / 4.25, "feet"),
  3409. name: "Foot",
  3410. image: {
  3411. source: "./media/characters/gin/foot.svg"
  3412. }
  3413. },
  3414. sole: {
  3415. height: math.unit(6 / 4.40, "feet"),
  3416. name: "Sole",
  3417. image: {
  3418. source: "./media/characters/gin/sole.svg"
  3419. }
  3420. },
  3421. },
  3422. [
  3423. {
  3424. name: "Normal",
  3425. height: math.unit(9 + 4 / 12, "feet")
  3426. },
  3427. {
  3428. name: "Macro",
  3429. height: math.unit(1500, "feet")
  3430. },
  3431. {
  3432. name: "Megamacro",
  3433. height: math.unit(200, "miles"),
  3434. default: true
  3435. },
  3436. {
  3437. name: "Gigamacro",
  3438. height: math.unit(500, "megameters")
  3439. },
  3440. {
  3441. name: "Teramacro",
  3442. height: math.unit(15, "lightyears")
  3443. }
  3444. ]
  3445. ))
  3446. characterMakers.push(() => makeCharacter(
  3447. { name: "Guy" },
  3448. {
  3449. front: {
  3450. height: math.unit(6 + 1 / 6, "feet"),
  3451. weight: math.unit(178, "lbs"),
  3452. name: "Front",
  3453. image: {
  3454. source: "./media/characters/guy/front.svg"
  3455. }
  3456. }
  3457. },
  3458. [
  3459. {
  3460. name: "Normal",
  3461. height: math.unit(6 + 1 / 6, "feet"),
  3462. default: true
  3463. },
  3464. {
  3465. name: "Large",
  3466. height: math.unit(25 + 7 / 12, "feet")
  3467. },
  3468. {
  3469. name: "Macro",
  3470. height: math.unit(60 + 9 / 12, "feet")
  3471. },
  3472. {
  3473. name: "Macro+",
  3474. height: math.unit(246, "feet")
  3475. },
  3476. {
  3477. name: "Macro++",
  3478. height: math.unit(878, "feet")
  3479. }
  3480. ]
  3481. ))
  3482. characterMakers.push(() => makeCharacter(
  3483. { name: "Tiberius" },
  3484. {
  3485. front: {
  3486. height: math.unit(9, "feet"),
  3487. weight: math.unit(800, "lbs"),
  3488. name: "Front",
  3489. image: {
  3490. source: "./media/characters/tiberius/front.svg",
  3491. extra: 2295 / 2071
  3492. }
  3493. },
  3494. back: {
  3495. height: math.unit(9, "feet"),
  3496. weight: math.unit(800, "lbs"),
  3497. name: "Back",
  3498. image: {
  3499. source: "./media/characters/tiberius/back.svg",
  3500. extra: 2373 / 2160
  3501. }
  3502. },
  3503. },
  3504. [
  3505. {
  3506. name: "Normal",
  3507. height: math.unit(9, "feet"),
  3508. default: true
  3509. }
  3510. ]
  3511. ))
  3512. characterMakers.push(() => makeCharacter(
  3513. { name: "Surgo" },
  3514. {
  3515. front: {
  3516. height: math.unit(6, "feet"),
  3517. weight: math.unit(600, "lbs"),
  3518. name: "Front",
  3519. image: {
  3520. source: "./media/characters/surgo/front.svg",
  3521. extra: 3591 / 2227
  3522. }
  3523. },
  3524. back: {
  3525. height: math.unit(6, "feet"),
  3526. weight: math.unit(600, "lbs"),
  3527. name: "Back",
  3528. image: {
  3529. source: "./media/characters/surgo/back.svg",
  3530. extra: 3557 / 2228
  3531. }
  3532. },
  3533. laying: {
  3534. height: math.unit(6 * 0.85, "feet"),
  3535. weight: math.unit(600, "lbs"),
  3536. name: "Laying",
  3537. image: {
  3538. source: "./media/characters/surgo/laying.svg"
  3539. }
  3540. },
  3541. },
  3542. [
  3543. {
  3544. name: "Normal",
  3545. height: math.unit(6, "feet"),
  3546. default: true
  3547. }
  3548. ]
  3549. ))
  3550. characterMakers.push(() => makeCharacter(
  3551. { name: "Cibus" },
  3552. {
  3553. side: {
  3554. height: math.unit(6, "feet"),
  3555. weight: math.unit(150, "lbs"),
  3556. name: "Side",
  3557. image: {
  3558. source: "./media/characters/cibus/side.svg",
  3559. extra: 800 / 400
  3560. }
  3561. },
  3562. },
  3563. [
  3564. {
  3565. name: "Normal",
  3566. height: math.unit(6, "feet"),
  3567. default: true
  3568. }
  3569. ]
  3570. ))
  3571. characterMakers.push(() => makeCharacter(
  3572. { name: "Nibbles" },
  3573. {
  3574. front: {
  3575. height: math.unit(6, "feet"),
  3576. weight: math.unit(240, "lbs"),
  3577. name: "Front",
  3578. image: {
  3579. source: "./media/characters/nibbles/front.svg"
  3580. }
  3581. },
  3582. side: {
  3583. height: math.unit(6, "feet"),
  3584. weight: math.unit(240, "lbs"),
  3585. name: "Side",
  3586. image: {
  3587. source: "./media/characters/nibbles/side.svg"
  3588. }
  3589. },
  3590. },
  3591. [
  3592. {
  3593. name: "Normal",
  3594. height: math.unit(9, "feet"),
  3595. default: true
  3596. }
  3597. ]
  3598. ))
  3599. characterMakers.push(() => makeCharacter(
  3600. { name: "Rikky" },
  3601. {
  3602. side: {
  3603. height: math.unit(5 + 1 / 6, "feet"),
  3604. weight: math.unit(130, "lbs"),
  3605. name: "Side",
  3606. image: {
  3607. source: "./media/characters/rikky/side.svg"
  3608. }
  3609. },
  3610. },
  3611. [
  3612. {
  3613. name: "Normal",
  3614. height: math.unit(5 + 1 / 6, "feet")
  3615. },
  3616. {
  3617. name: "Macro",
  3618. height: math.unit(152, "feet"),
  3619. default: true
  3620. },
  3621. {
  3622. name: "Megamacro",
  3623. height: math.unit(7, "miles")
  3624. }
  3625. ]
  3626. ))
  3627. characterMakers.push(() => makeCharacter(
  3628. { name: "Malfressa" },
  3629. {
  3630. side: {
  3631. height: math.unit(370, "cm"),
  3632. weight: math.unit(350, "lbs"),
  3633. name: "Side",
  3634. image: {
  3635. source: "./media/characters/malfressa/side.svg"
  3636. }
  3637. },
  3638. walking: {
  3639. height: math.unit(370, "cm"),
  3640. weight: math.unit(350, "lbs"),
  3641. name: "Walking",
  3642. image: {
  3643. source: "./media/characters/malfressa/walking.svg"
  3644. }
  3645. },
  3646. feral: {
  3647. height: math.unit(2500, "cm"),
  3648. weight: math.unit(100000, "lbs"),
  3649. name: "Feral",
  3650. image: {
  3651. source: "./media/characters/malfressa/feral.svg",
  3652. extra: 2108 / 837,
  3653. bottom: 0.02
  3654. }
  3655. },
  3656. },
  3657. [
  3658. {
  3659. name: "Normal",
  3660. height: math.unit(370, "cm")
  3661. },
  3662. {
  3663. name: "Macro",
  3664. height: math.unit(300, "meters"),
  3665. default: true
  3666. }
  3667. ]
  3668. ))
  3669. characterMakers.push(() => makeCharacter(
  3670. { name: "Jaro" },
  3671. {
  3672. front: {
  3673. height: math.unit(6, "feet"),
  3674. weight: math.unit(60, "kg"),
  3675. name: "Front",
  3676. image: {
  3677. source: "./media/characters/jaro/front.svg"
  3678. }
  3679. },
  3680. back: {
  3681. height: math.unit(6, "feet"),
  3682. weight: math.unit(60, "kg"),
  3683. name: "Back",
  3684. image: {
  3685. source: "./media/characters/jaro/back.svg"
  3686. }
  3687. },
  3688. },
  3689. [
  3690. {
  3691. name: "Micro",
  3692. height: math.unit(7, "inches")
  3693. },
  3694. {
  3695. name: "Normal",
  3696. height: math.unit(5.5, "feet"),
  3697. default: true
  3698. },
  3699. {
  3700. name: "Minimacro",
  3701. height: math.unit(20, "feet")
  3702. },
  3703. {
  3704. name: "Macro",
  3705. height: math.unit(200, "meters")
  3706. }
  3707. ]
  3708. ))
  3709. characterMakers.push(() => makeCharacter(
  3710. { name: "Rogue" },
  3711. {
  3712. front: {
  3713. height: math.unit(6, "feet"),
  3714. weight: math.unit(195, "lb"),
  3715. name: "Front",
  3716. image: {
  3717. source: "./media/characters/rogue/front.svg"
  3718. }
  3719. },
  3720. },
  3721. [
  3722. {
  3723. name: "Macro",
  3724. height: math.unit(90, "feet"),
  3725. default: true
  3726. },
  3727. ]
  3728. ))
  3729. characterMakers.push(() => makeCharacter(
  3730. { name: "Piper" },
  3731. {
  3732. front: {
  3733. height: math.unit(5 + 8 / 12, "feet"),
  3734. weight: math.unit(140, "lb"),
  3735. name: "Front",
  3736. image: {
  3737. source: "./media/characters/piper/front.svg",
  3738. extra: 3928 / 3681
  3739. }
  3740. },
  3741. },
  3742. [
  3743. {
  3744. name: "Micro",
  3745. height: math.unit(2, "inches")
  3746. },
  3747. {
  3748. name: "Normal",
  3749. height: math.unit(5 + 8 / 12, "feet")
  3750. },
  3751. {
  3752. name: "Macro",
  3753. height: math.unit(250, "feet"),
  3754. default: true
  3755. },
  3756. {
  3757. name: "Megamacro",
  3758. height: math.unit(7, "miles")
  3759. },
  3760. ]
  3761. ))
  3762. characterMakers.push(() => makeCharacter(
  3763. { name: "Gemini" },
  3764. {
  3765. front: {
  3766. height: math.unit(6, "feet"),
  3767. weight: math.unit(220, "lb"),
  3768. name: "Front",
  3769. image: {
  3770. source: "./media/characters/gemini/front.svg"
  3771. }
  3772. },
  3773. back: {
  3774. height: math.unit(6, "feet"),
  3775. weight: math.unit(220, "lb"),
  3776. name: "Back",
  3777. image: {
  3778. source: "./media/characters/gemini/back.svg"
  3779. }
  3780. },
  3781. kneeling: {
  3782. height: math.unit(6 / 1.5, "feet"),
  3783. weight: math.unit(220, "lb"),
  3784. name: "Kneeling",
  3785. image: {
  3786. source: "./media/characters/gemini/kneeling.svg",
  3787. bottom: 0.02
  3788. }
  3789. },
  3790. },
  3791. [
  3792. {
  3793. name: "Macro",
  3794. height: math.unit(300, "meters"),
  3795. default: true
  3796. },
  3797. {
  3798. name: "Megamacro",
  3799. height: math.unit(6900, "meters")
  3800. },
  3801. ]
  3802. ))
  3803. characterMakers.push(() => makeCharacter(
  3804. { name: "Alicia" },
  3805. {
  3806. anthro: {
  3807. height: math.unit(2.35, "meters"),
  3808. weight: math.unit(73, "kg"),
  3809. name: "Anthro",
  3810. image: {
  3811. source: "./media/characters/alicia/anthro.svg"
  3812. }
  3813. },
  3814. feral: {
  3815. height: math.unit(1.69, "meters"),
  3816. weight: math.unit(73, "kg"),
  3817. name: "Feral",
  3818. image: {
  3819. source: "./media/characters/alicia/feral.svg"
  3820. }
  3821. },
  3822. },
  3823. [
  3824. {
  3825. name: "Normal",
  3826. height: math.unit(2.35, "meters")
  3827. },
  3828. {
  3829. name: "Macro",
  3830. height: math.unit(60, "meters"),
  3831. default: true
  3832. },
  3833. {
  3834. name: "Megamacro",
  3835. height: math.unit(10000, "kilometers")
  3836. },
  3837. ]
  3838. ))
  3839. characterMakers.push(() => makeCharacter(
  3840. { name: "Archy" },
  3841. {
  3842. front: {
  3843. height: math.unit(7, "feet"),
  3844. weight: math.unit(250, "lbs"),
  3845. name: "Front",
  3846. image: {
  3847. source: "./media/characters/archy/front.svg"
  3848. }
  3849. }
  3850. },
  3851. [
  3852. {
  3853. name: "Micro",
  3854. height: math.unit(1, "inch")
  3855. },
  3856. {
  3857. name: "Shorty",
  3858. height: math.unit(5, "feet")
  3859. },
  3860. {
  3861. name: "Normal",
  3862. height: math.unit(7, "feet")
  3863. },
  3864. {
  3865. name: "Macro",
  3866. height: math.unit(600, "meters"),
  3867. default: true
  3868. },
  3869. {
  3870. name: "Megamacro",
  3871. height: math.unit(1, "mile")
  3872. },
  3873. ]
  3874. ))
  3875. characterMakers.push(() => makeCharacter(
  3876. { name: "Berri" },
  3877. {
  3878. front: {
  3879. height: math.unit(1.65, "meters"),
  3880. weight: math.unit(74, "kg"),
  3881. name: "Front",
  3882. image: {
  3883. source: "./media/characters/berri/front.svg"
  3884. }
  3885. }
  3886. },
  3887. [
  3888. {
  3889. name: "Normal",
  3890. height: math.unit(1.65, "meters")
  3891. },
  3892. {
  3893. name: "Macro",
  3894. height: math.unit(60, "m"),
  3895. default: true
  3896. },
  3897. {
  3898. name: "Megamacro",
  3899. height: math.unit(9.213, "km")
  3900. },
  3901. {
  3902. name: "Planet Eater",
  3903. height: math.unit(489, "megameters")
  3904. },
  3905. {
  3906. name: "Teramacro",
  3907. height: math.unit(2471635000000, "meters")
  3908. },
  3909. {
  3910. name: "Examacro",
  3911. height: math.unit(8.0624e+26, "meters")
  3912. }
  3913. ]
  3914. ))
  3915. characterMakers.push(() => makeCharacter(
  3916. { name: "Lexi" },
  3917. {
  3918. front: {
  3919. height: math.unit(1.72, "meters"),
  3920. weight: math.unit(68, "kg"),
  3921. name: "Front",
  3922. image: {
  3923. source: "./media/characters/lexi/front.svg"
  3924. }
  3925. }
  3926. },
  3927. [
  3928. {
  3929. name: "Very Smol",
  3930. height: math.unit(10, "mm")
  3931. },
  3932. {
  3933. name: "Micro",
  3934. height: math.unit(6.8, "cm"),
  3935. default: true
  3936. },
  3937. {
  3938. name: "Normal",
  3939. height: math.unit(1.72, "m")
  3940. }
  3941. ]
  3942. ))
  3943. characterMakers.push(() => makeCharacter(
  3944. { name: "Martin" },
  3945. {
  3946. front: {
  3947. height: math.unit(1.69, "meters"),
  3948. weight: math.unit(68, "kg"),
  3949. name: "Front",
  3950. image: {
  3951. source: "./media/characters/martin/front.svg",
  3952. extra: 596 / 581
  3953. }
  3954. }
  3955. },
  3956. [
  3957. {
  3958. name: "Micro",
  3959. height: math.unit(6.85, "cm"),
  3960. default: true
  3961. },
  3962. {
  3963. name: "Normal",
  3964. height: math.unit(1.69, "m")
  3965. }
  3966. ]
  3967. ))
  3968. characterMakers.push(() => makeCharacter(
  3969. { name: "Juno" },
  3970. {
  3971. front: {
  3972. height: math.unit(1.69, "meters"),
  3973. weight: math.unit(68, "kg"),
  3974. name: "Front",
  3975. image: {
  3976. source: "./media/characters/juno/front.svg"
  3977. }
  3978. }
  3979. },
  3980. [
  3981. {
  3982. name: "Micro",
  3983. height: math.unit(7, "cm")
  3984. },
  3985. {
  3986. name: "Normal",
  3987. height: math.unit(1.89, "m")
  3988. },
  3989. {
  3990. name: "Macro",
  3991. height: math.unit(353, "meters"),
  3992. default: true
  3993. }
  3994. ]
  3995. ))
  3996. characterMakers.push(() => makeCharacter(
  3997. { name: "Samantha" },
  3998. {
  3999. front: {
  4000. height: math.unit(1.93, "meters"),
  4001. weight: math.unit(83, "kg"),
  4002. name: "Front",
  4003. image: {
  4004. source: "./media/characters/samantha/front.svg"
  4005. }
  4006. },
  4007. frontClothed: {
  4008. height: math.unit(1.93, "meters"),
  4009. weight: math.unit(83, "kg"),
  4010. name: "Front (Clothed)",
  4011. image: {
  4012. source: "./media/characters/samantha/front-clothed.svg"
  4013. }
  4014. },
  4015. back: {
  4016. height: math.unit(1.93, "meters"),
  4017. weight: math.unit(83, "kg"),
  4018. name: "Back",
  4019. image: {
  4020. source: "./media/characters/samantha/back.svg"
  4021. }
  4022. },
  4023. },
  4024. [
  4025. {
  4026. name: "Normal",
  4027. height: math.unit(1.93, "m")
  4028. },
  4029. {
  4030. name: "Macro",
  4031. height: math.unit(74, "meters"),
  4032. default: true
  4033. },
  4034. {
  4035. name: "Macro+",
  4036. height: math.unit(223, "meters"),
  4037. },
  4038. {
  4039. name: "Megamacro",
  4040. height: math.unit(8381, "meters"),
  4041. },
  4042. {
  4043. name: "Megamacro+",
  4044. height: math.unit(12000, "kilometers")
  4045. },
  4046. ]
  4047. ))
  4048. characterMakers.push(() => makeCharacter(
  4049. { name: "Dr. Clay" },
  4050. {
  4051. front: {
  4052. height: math.unit(1.92, "meters"),
  4053. weight: math.unit(80, "kg"),
  4054. name: "Front",
  4055. image: {
  4056. source: "./media/characters/dr-clay/front.svg"
  4057. }
  4058. },
  4059. frontClothed: {
  4060. height: math.unit(1.92, "meters"),
  4061. weight: math.unit(80, "kg"),
  4062. name: "Front (Clothed)",
  4063. image: {
  4064. source: "./media/characters/dr-clay/front-clothed.svg"
  4065. }
  4066. }
  4067. },
  4068. [
  4069. {
  4070. name: "Normal",
  4071. height: math.unit(1.92, "m")
  4072. },
  4073. {
  4074. name: "Macro",
  4075. height: math.unit(214, "meters"),
  4076. default: true
  4077. },
  4078. {
  4079. name: "Macro+",
  4080. height: math.unit(12.237, "meters"),
  4081. },
  4082. {
  4083. name: "Megamacro",
  4084. height: math.unit(557, "megameters"),
  4085. },
  4086. {
  4087. name: "Unimaginable",
  4088. height: math.unit(120e9, "lightyears")
  4089. },
  4090. ]
  4091. ))
  4092. characterMakers.push(() => makeCharacter(
  4093. { name: "Wyvrn Ripsnarl" },
  4094. {
  4095. front: {
  4096. height: math.unit(2, "meters"),
  4097. weight: math.unit(80, "kg"),
  4098. name: "Front",
  4099. image: {
  4100. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4101. }
  4102. }
  4103. },
  4104. [
  4105. {
  4106. name: "Teramacro",
  4107. height: math.unit(500000, "lightyears"),
  4108. default: true
  4109. },
  4110. ]
  4111. ))
  4112. characterMakers.push(() => makeCharacter(
  4113. { name: "Vemus" },
  4114. {
  4115. front: {
  4116. height: math.unit(2, "meters"),
  4117. weight: math.unit(150, "kg"),
  4118. name: "Front",
  4119. image: {
  4120. source: "./media/characters/vemus/front.svg",
  4121. extra: 2384 / 2084,
  4122. bottom: 0.0123
  4123. }
  4124. }
  4125. },
  4126. [
  4127. {
  4128. name: "Normal",
  4129. height: math.unit(3.75, "meters"),
  4130. default: true
  4131. },
  4132. {
  4133. name: "Big",
  4134. height: math.unit(8, "meters")
  4135. },
  4136. {
  4137. name: "Macro",
  4138. height: math.unit(100, "meters")
  4139. },
  4140. {
  4141. name: "Macro+",
  4142. height: math.unit(1500, "meters")
  4143. },
  4144. {
  4145. name: "Stellar",
  4146. height: math.unit(14e8, "meters")
  4147. },
  4148. ]
  4149. ))
  4150. characterMakers.push(() => makeCharacter(
  4151. { name: "Beherit" },
  4152. {
  4153. front: {
  4154. height: math.unit(2, "meters"),
  4155. weight: math.unit(70, "kg"),
  4156. name: "Front",
  4157. image: {
  4158. source: "./media/characters/beherit/front.svg",
  4159. extra: 1408 / 1242
  4160. }
  4161. }
  4162. },
  4163. [
  4164. {
  4165. name: "Normal",
  4166. height: math.unit(6, "feet")
  4167. },
  4168. {
  4169. name: "Lorg",
  4170. height: math.unit(25, "feet"),
  4171. default: true
  4172. },
  4173. {
  4174. name: "Lorger",
  4175. height: math.unit(75, "feet")
  4176. },
  4177. {
  4178. name: "Macro",
  4179. height: math.unit(200, "meters")
  4180. },
  4181. ]
  4182. ))
  4183. characterMakers.push(() => makeCharacter(
  4184. { name: "Everett" },
  4185. {
  4186. front: {
  4187. height: math.unit(2, "meters"),
  4188. weight: math.unit(150, "kg"),
  4189. name: "Front",
  4190. image: {
  4191. source: "./media/characters/everett/front.svg",
  4192. extra: 2038 / 1737,
  4193. bottom: 0.03
  4194. }
  4195. },
  4196. paw: {
  4197. height: math.unit(2 / 3.6, "meters"),
  4198. name: "Paw",
  4199. image: {
  4200. source: "./media/characters/everett/paw.svg"
  4201. }
  4202. },
  4203. },
  4204. [
  4205. {
  4206. name: "Normal",
  4207. height: math.unit(15, "feet"),
  4208. default: true
  4209. },
  4210. {
  4211. name: "Lorg",
  4212. height: math.unit(70, "feet"),
  4213. default: true
  4214. },
  4215. {
  4216. name: "Lorger",
  4217. height: math.unit(250, "feet")
  4218. },
  4219. {
  4220. name: "Macro",
  4221. height: math.unit(500, "meters")
  4222. },
  4223. ]
  4224. ))
  4225. characterMakers.push(() => makeCharacter(
  4226. { name: "Rose Lion" },
  4227. {
  4228. front: {
  4229. height: math.unit(2, "meters"),
  4230. weight: math.unit(86, "kg"),
  4231. name: "Front",
  4232. image: {
  4233. source: "./media/characters/rose-lion/front.svg"
  4234. }
  4235. },
  4236. bent: {
  4237. height: math.unit(2 / 1.4288, "meters"),
  4238. weight: math.unit(86, "kg"),
  4239. name: "Bent",
  4240. image: {
  4241. source: "./media/characters/rose-lion/bent.svg"
  4242. }
  4243. }
  4244. },
  4245. [
  4246. {
  4247. name: "Mini-Micro",
  4248. height: math.unit(1, "cm")
  4249. },
  4250. {
  4251. name: "Micro",
  4252. height: math.unit(3.5, "inches"),
  4253. default: true
  4254. },
  4255. {
  4256. name: "Normal",
  4257. height: math.unit(6 + 1 / 6, "feet")
  4258. },
  4259. {
  4260. name: "Mini-Macro",
  4261. height: math.unit(9 + 10 / 12, "feet")
  4262. },
  4263. ]
  4264. ))
  4265. characterMakers.push(() => makeCharacter(
  4266. { name: "Regal" },
  4267. {
  4268. front: {
  4269. height: math.unit(2, "meters"),
  4270. weight: math.unit(350, "lbs"),
  4271. name: "Front",
  4272. image: {
  4273. source: "./media/characters/regal/front.svg"
  4274. }
  4275. },
  4276. back: {
  4277. height: math.unit(2, "meters"),
  4278. weight: math.unit(350, "lbs"),
  4279. name: "Back",
  4280. image: {
  4281. source: "./media/characters/regal/back.svg"
  4282. }
  4283. },
  4284. },
  4285. [
  4286. {
  4287. name: "Macro",
  4288. height: math.unit(350, "feet"),
  4289. default: true
  4290. }
  4291. ]
  4292. ))
  4293. characterMakers.push(() => makeCharacter(
  4294. { name: "Opal" },
  4295. {
  4296. front: {
  4297. height: math.unit(4 + 11 / 12, "feet"),
  4298. weight: math.unit(100, "lbs"),
  4299. name: "Front",
  4300. image: {
  4301. source: "./media/characters/opal/front.svg"
  4302. }
  4303. },
  4304. frontAlt: {
  4305. height: math.unit(4 + 11 / 12, "feet"),
  4306. weight: math.unit(100, "lbs"),
  4307. name: "Front (Alt)",
  4308. image: {
  4309. source: "./media/characters/opal/front-alt.svg"
  4310. }
  4311. },
  4312. },
  4313. [
  4314. {
  4315. name: "Small",
  4316. height: math.unit(4 + 11 / 12, "feet")
  4317. },
  4318. {
  4319. name: "Normal",
  4320. height: math.unit(20, "feet"),
  4321. default: true
  4322. },
  4323. {
  4324. name: "Macro",
  4325. height: math.unit(120, "feet")
  4326. },
  4327. {
  4328. name: "Megamacro",
  4329. height: math.unit(80, "miles")
  4330. },
  4331. {
  4332. name: "True Size",
  4333. height: math.unit(100000, "lightyears")
  4334. },
  4335. ]
  4336. ))
  4337. characterMakers.push(() => makeCharacter(
  4338. { name: "Vector Wuff" },
  4339. {
  4340. front: {
  4341. height: math.unit(6, "feet"),
  4342. weight: math.unit(200, "lbs"),
  4343. name: "Front",
  4344. image: {
  4345. source: "./media/characters/vector-wuff/front.svg"
  4346. }
  4347. }
  4348. },
  4349. [
  4350. {
  4351. name: "Normal",
  4352. height: math.unit(2.8, "meters")
  4353. },
  4354. {
  4355. name: "Macro",
  4356. height: math.unit(450, "meters"),
  4357. default: true
  4358. },
  4359. {
  4360. name: "Megamacro",
  4361. height: math.unit(15, "kilometers")
  4362. }
  4363. ]
  4364. ))
  4365. characterMakers.push(() => makeCharacter(
  4366. { name: "Dannik" },
  4367. {
  4368. front: {
  4369. height: math.unit(6, "feet"),
  4370. weight: math.unit(256, "lbs"),
  4371. name: "Front",
  4372. image: {
  4373. source: "./media/characters/dannik/front.svg"
  4374. }
  4375. }
  4376. },
  4377. [
  4378. {
  4379. name: "Macro",
  4380. height: math.unit(69.57, "meters"),
  4381. default: true
  4382. },
  4383. ]
  4384. ))
  4385. characterMakers.push(() => makeCharacter(
  4386. { name: "Azura Saharah" },
  4387. {
  4388. front: {
  4389. height: math.unit(6, "feet"),
  4390. weight: math.unit(120, "lbs"),
  4391. name: "Front",
  4392. image: {
  4393. source: "./media/characters/azura-saharah/front.svg"
  4394. }
  4395. },
  4396. back: {
  4397. height: math.unit(6, "feet"),
  4398. weight: math.unit(120, "lbs"),
  4399. name: "Back",
  4400. image: {
  4401. source: "./media/characters/azura-saharah/back.svg"
  4402. }
  4403. },
  4404. },
  4405. [
  4406. {
  4407. name: "Macro",
  4408. height: math.unit(100, "feet"),
  4409. default: true
  4410. },
  4411. ]
  4412. ))
  4413. characterMakers.push(() => makeCharacter(
  4414. { name: "Kennedy" },
  4415. {
  4416. side: {
  4417. height: math.unit(5 + 4 / 12, "feet"),
  4418. weight: math.unit(163, "lbs"),
  4419. name: "Side",
  4420. image: {
  4421. source: "./media/characters/kennedy/side.svg"
  4422. }
  4423. }
  4424. },
  4425. [
  4426. {
  4427. name: "Standard Doggo",
  4428. height: math.unit(5 + 4 / 12, "feet")
  4429. },
  4430. {
  4431. name: "Big Doggo",
  4432. height: math.unit(25 + 3 / 12, "feet"),
  4433. default: true
  4434. },
  4435. ]
  4436. ))
  4437. characterMakers.push(() => makeCharacter(
  4438. { name: "Odi Lunar" },
  4439. {
  4440. front: {
  4441. height: math.unit(6, "feet"),
  4442. weight: math.unit(90, "lbs"),
  4443. name: "Front",
  4444. image: {
  4445. source: "./media/characters/odi-lunar/front.svg"
  4446. }
  4447. }
  4448. },
  4449. [
  4450. {
  4451. name: "Micro",
  4452. height: math.unit(3, "inches"),
  4453. default: true
  4454. },
  4455. {
  4456. name: "Normal",
  4457. height: math.unit(5.5, "feet")
  4458. }
  4459. ]
  4460. ))
  4461. characterMakers.push(() => makeCharacter(
  4462. { name: "Mandake" },
  4463. {
  4464. back: {
  4465. height: math.unit(6, "feet"),
  4466. weight: math.unit(220, "lbs"),
  4467. name: "Back",
  4468. image: {
  4469. source: "./media/characters/mandake/back.svg"
  4470. }
  4471. }
  4472. },
  4473. [
  4474. {
  4475. name: "Normal",
  4476. height: math.unit(7, "feet"),
  4477. default: true
  4478. },
  4479. {
  4480. name: "Macro",
  4481. height: math.unit(78, "feet")
  4482. },
  4483. {
  4484. name: "Macro+",
  4485. height: math.unit(300, "meters")
  4486. },
  4487. {
  4488. name: "Macro++",
  4489. height: math.unit(2400, "feet")
  4490. },
  4491. {
  4492. name: "Megamacro",
  4493. height: math.unit(5167, "meters")
  4494. },
  4495. {
  4496. name: "Gigamacro",
  4497. height: math.unit(41769, "miles")
  4498. },
  4499. ]
  4500. ))
  4501. characterMakers.push(() => makeCharacter(
  4502. { name: "Yozey" },
  4503. {
  4504. front: {
  4505. height: math.unit(6, "feet"),
  4506. weight: math.unit(120, "lbs"),
  4507. name: "Front",
  4508. image: {
  4509. source: "./media/characters/yozey/front.svg"
  4510. }
  4511. },
  4512. frontAlt: {
  4513. height: math.unit(6, "feet"),
  4514. weight: math.unit(120, "lbs"),
  4515. name: "Front (Alt)",
  4516. image: {
  4517. source: "./media/characters/yozey/front-alt.svg"
  4518. }
  4519. },
  4520. side: {
  4521. height: math.unit(6, "feet"),
  4522. weight: math.unit(120, "lbs"),
  4523. name: "Side",
  4524. image: {
  4525. source: "./media/characters/yozey/side.svg"
  4526. }
  4527. },
  4528. },
  4529. [
  4530. {
  4531. name: "Micro",
  4532. height: math.unit(3, "inches"),
  4533. default: true
  4534. },
  4535. {
  4536. name: "Normal",
  4537. height: math.unit(6, "feet")
  4538. }
  4539. ]
  4540. ))
  4541. characterMakers.push(() => makeCharacter(
  4542. { name: "Valeska Voss" },
  4543. {
  4544. front: {
  4545. height: math.unit(6, "feet"),
  4546. weight: math.unit(103, "lbs"),
  4547. name: "Front",
  4548. image: {
  4549. source: "./media/characters/valeska-voss/front.svg"
  4550. }
  4551. }
  4552. },
  4553. [
  4554. {
  4555. name: "Mini-Sized Sub",
  4556. height: math.unit(3.1, "inches")
  4557. },
  4558. {
  4559. name: "Mid-Sized Sub",
  4560. height: math.unit(6.2, "inches")
  4561. },
  4562. {
  4563. name: "Full-Sized Sub",
  4564. height: math.unit(9.3, "inches")
  4565. },
  4566. {
  4567. name: "Normal",
  4568. height: math.unit(5 + 2 / 12, "foot"),
  4569. default: true
  4570. },
  4571. ]
  4572. ))
  4573. characterMakers.push(() => makeCharacter(
  4574. { name: "Gene Zeta" },
  4575. {
  4576. front: {
  4577. height: math.unit(6, "feet"),
  4578. weight: math.unit(160, "lbs"),
  4579. name: "Front",
  4580. image: {
  4581. source: "./media/characters/gene-zeta/front.svg",
  4582. bottom: 0.03,
  4583. extra: 1
  4584. }
  4585. }
  4586. },
  4587. [
  4588. {
  4589. name: "Normal",
  4590. height: math.unit(6.25, "foot"),
  4591. default: true
  4592. },
  4593. ]
  4594. ))
  4595. characterMakers.push(() => makeCharacter(
  4596. { name: "Razinox" },
  4597. {
  4598. front: {
  4599. height: math.unit(6, "feet"),
  4600. weight: math.unit(350, "lbs"),
  4601. name: "Front",
  4602. image: {
  4603. source: "./media/characters/razinox/front.svg",
  4604. extra: 1686 / 1548
  4605. }
  4606. },
  4607. back: {
  4608. height: math.unit(6, "feet"),
  4609. weight: math.unit(350, "lbs"),
  4610. name: "Back",
  4611. image: {
  4612. source: "./media/characters/razinox/back.svg",
  4613. extra: 1660 / 1590
  4614. }
  4615. },
  4616. },
  4617. [
  4618. {
  4619. name: "Normal",
  4620. height: math.unit(10 + 8 / 12, "foot")
  4621. },
  4622. {
  4623. name: "Minimacro",
  4624. height: math.unit(15, "foot")
  4625. },
  4626. {
  4627. name: "Macro",
  4628. height: math.unit(60, "foot"),
  4629. default: true
  4630. },
  4631. {
  4632. name: "Megamacro",
  4633. height: math.unit(5, "miles")
  4634. },
  4635. {
  4636. name: "Gigamacro",
  4637. height: math.unit(6000, "miles")
  4638. },
  4639. ]
  4640. ))
  4641. characterMakers.push(() => makeCharacter(
  4642. { name: "Cobalt" },
  4643. {
  4644. front: {
  4645. height: math.unit(6, "feet"),
  4646. weight: math.unit(150, "lbs"),
  4647. name: "Front",
  4648. image: {
  4649. source: "./media/characters/cobalt/front.svg"
  4650. }
  4651. }
  4652. },
  4653. [
  4654. {
  4655. name: "Normal",
  4656. height: math.unit(8 + 1 / 12, "foot")
  4657. },
  4658. {
  4659. name: "Macro",
  4660. height: math.unit(111, "foot"),
  4661. default: true
  4662. },
  4663. {
  4664. name: "Supracosmic",
  4665. height: math.unit(1e42, "feet")
  4666. },
  4667. ]
  4668. ))
  4669. characterMakers.push(() => makeCharacter(
  4670. { name: "Amanda" },
  4671. {
  4672. front: {
  4673. height: math.unit(6, "feet"),
  4674. weight: math.unit(140, "lbs"),
  4675. name: "Front",
  4676. image: {
  4677. source: "./media/characters/amanda/front.svg"
  4678. }
  4679. }
  4680. },
  4681. [
  4682. {
  4683. name: "Micro",
  4684. height: math.unit(5, "inches"),
  4685. default: true
  4686. },
  4687. ]
  4688. ))
  4689. characterMakers.push(() => makeCharacter(
  4690. { name: "Teal" },
  4691. {
  4692. front: {
  4693. height: math.unit(5.59, "feet"),
  4694. weight: math.unit(250, "lbs"),
  4695. name: "Front",
  4696. image: {
  4697. source: "./media/characters/teal/front.svg"
  4698. }
  4699. },
  4700. frontAlt: {
  4701. height: math.unit(6, "feet"),
  4702. weight: math.unit(250, "lbs"),
  4703. name: "Front (Alt)",
  4704. image: {
  4705. source: "./media/characters/teal/front-alt.svg",
  4706. bottom: 0.04,
  4707. extra: 1
  4708. }
  4709. },
  4710. },
  4711. [
  4712. {
  4713. name: "Normal",
  4714. height: math.unit(12, "feet"),
  4715. default: true
  4716. },
  4717. {
  4718. name: "Macro",
  4719. height: math.unit(300, "feet")
  4720. },
  4721. ]
  4722. ))
  4723. characterMakers.push(() => makeCharacter(
  4724. { name: "Ravin Amulet" },
  4725. {
  4726. frontCat: {
  4727. height: math.unit(6, "feet"),
  4728. weight: math.unit(180, "lbs"),
  4729. name: "Front (Cat)",
  4730. image: {
  4731. source: "./media/characters/ravin-amulet/front-cat.svg"
  4732. }
  4733. },
  4734. frontCatAlt: {
  4735. height: math.unit(6, "feet"),
  4736. weight: math.unit(180, "lbs"),
  4737. name: "Front (Alt, Cat)",
  4738. image: {
  4739. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  4740. }
  4741. },
  4742. frontWerewolf: {
  4743. height: math.unit(6 * 1.2, "feet"),
  4744. weight: math.unit(225, "lbs"),
  4745. name: "Front (Werewolf)",
  4746. image: {
  4747. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  4748. }
  4749. },
  4750. backWerewolf: {
  4751. height: math.unit(6 * 1.2, "feet"),
  4752. weight: math.unit(225, "lbs"),
  4753. name: "Back (Werewolf)",
  4754. image: {
  4755. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  4756. }
  4757. },
  4758. },
  4759. [
  4760. {
  4761. name: "Nano",
  4762. height: math.unit(1, "micrometer")
  4763. },
  4764. {
  4765. name: "Micro",
  4766. height: math.unit(1, "inch")
  4767. },
  4768. {
  4769. name: "Normal",
  4770. height: math.unit(6, "feet"),
  4771. default: true
  4772. },
  4773. {
  4774. name: "Macro",
  4775. height: math.unit(60, "feet")
  4776. }
  4777. ]
  4778. ))
  4779. characterMakers.push(() => makeCharacter(
  4780. { name: "Fluoresce" },
  4781. {
  4782. front: {
  4783. height: math.unit(6, "feet"),
  4784. weight: math.unit(165, "lbs"),
  4785. name: "Front",
  4786. image: {
  4787. source: "./media/characters/fluoresce/front.svg"
  4788. }
  4789. }
  4790. },
  4791. [
  4792. {
  4793. name: "Micro",
  4794. height: math.unit(6, "cm")
  4795. },
  4796. {
  4797. name: "Normal",
  4798. height: math.unit(5 + 7 / 12, "feet"),
  4799. default: true
  4800. },
  4801. {
  4802. name: "Macro",
  4803. height: math.unit(56, "feet")
  4804. },
  4805. {
  4806. name: "Megamacro",
  4807. height: math.unit(1.9, "miles")
  4808. },
  4809. ]
  4810. ))
  4811. characterMakers.push(() => makeCharacter(
  4812. { name: "Aurora" },
  4813. {
  4814. front: {
  4815. height: math.unit(9 + 6 / 12, "feet"),
  4816. weight: math.unit(523, "lbs"),
  4817. name: "Side",
  4818. image: {
  4819. source: "./media/characters/aurora/side.svg"
  4820. }
  4821. }
  4822. },
  4823. [
  4824. {
  4825. name: "Normal",
  4826. height: math.unit(9 + 6 / 12, "feet")
  4827. },
  4828. {
  4829. name: "Macro",
  4830. height: math.unit(96, "feet"),
  4831. default: true
  4832. },
  4833. {
  4834. name: "Macro+",
  4835. height: math.unit(243, "feet")
  4836. },
  4837. ]
  4838. ))
  4839. characterMakers.push(() => makeCharacter(
  4840. { name: "Ranek" },
  4841. {
  4842. front: {
  4843. height: math.unit(194, "cm"),
  4844. weight: math.unit(90, "kg"),
  4845. name: "Front",
  4846. image: {
  4847. source: "./media/characters/ranek/front.svg"
  4848. }
  4849. },
  4850. side: {
  4851. height: math.unit(194, "cm"),
  4852. weight: math.unit(90, "kg"),
  4853. name: "Side",
  4854. image: {
  4855. source: "./media/characters/ranek/side.svg"
  4856. }
  4857. },
  4858. back: {
  4859. height: math.unit(194, "cm"),
  4860. weight: math.unit(90, "kg"),
  4861. name: "Back",
  4862. image: {
  4863. source: "./media/characters/ranek/back.svg"
  4864. }
  4865. },
  4866. feral: {
  4867. height: math.unit(30, "cm"),
  4868. weight: math.unit(1.6, "lbs"),
  4869. name: "Feral",
  4870. image: {
  4871. source: "./media/characters/ranek/feral.svg"
  4872. }
  4873. },
  4874. },
  4875. [
  4876. {
  4877. name: "Normal",
  4878. height: math.unit(194, "cm"),
  4879. default: true
  4880. },
  4881. {
  4882. name: "Macro",
  4883. height: math.unit(100, "meters")
  4884. },
  4885. ]
  4886. ))
  4887. characterMakers.push(() => makeCharacter(
  4888. { name: "Andrew Cooper" },
  4889. {
  4890. front: {
  4891. height: math.unit(5 + 6 / 12, "feet"),
  4892. weight: math.unit(153, "lbs"),
  4893. name: "Front",
  4894. image: {
  4895. source: "./media/characters/andrew-cooper/front.svg"
  4896. }
  4897. },
  4898. },
  4899. [
  4900. {
  4901. name: "Nano",
  4902. height: math.unit(1, "mm")
  4903. },
  4904. {
  4905. name: "Micro",
  4906. height: math.unit(2, "inches")
  4907. },
  4908. {
  4909. name: "Normal",
  4910. height: math.unit(5 + 6 / 12, "feet"),
  4911. default: true
  4912. }
  4913. ]
  4914. ))
  4915. characterMakers.push(() => makeCharacter(
  4916. { name: "Akane Sato" },
  4917. {
  4918. front: {
  4919. height: math.unit(6, "feet"),
  4920. weight: math.unit(180, "lbs"),
  4921. name: "Front",
  4922. image: {
  4923. source: "./media/characters/akane-sato/front.svg",
  4924. extra: 1219 / 1140
  4925. }
  4926. },
  4927. back: {
  4928. height: math.unit(6, "feet"),
  4929. weight: math.unit(180, "lbs"),
  4930. name: "Back",
  4931. image: {
  4932. source: "./media/characters/akane-sato/back.svg",
  4933. extra: 1219 / 1170
  4934. }
  4935. },
  4936. },
  4937. [
  4938. {
  4939. name: "Normal",
  4940. height: math.unit(2.5, "meters")
  4941. },
  4942. {
  4943. name: "Macro",
  4944. height: math.unit(250, "meters"),
  4945. default: true
  4946. },
  4947. {
  4948. name: "Megamacro",
  4949. height: math.unit(25, "km")
  4950. },
  4951. ]
  4952. ))
  4953. characterMakers.push(() => makeCharacter(
  4954. { name: "Rook" },
  4955. {
  4956. front: {
  4957. height: math.unit(6, "feet"),
  4958. weight: math.unit(65, "kg"),
  4959. name: "Front",
  4960. image: {
  4961. source: "./media/characters/rook/front.svg"
  4962. }
  4963. }
  4964. },
  4965. [
  4966. {
  4967. name: "Normal",
  4968. height: math.unit(8.8, "feet")
  4969. },
  4970. {
  4971. name: "Macro",
  4972. height: math.unit(88, "feet"),
  4973. default: true
  4974. },
  4975. {
  4976. name: "Megamacro",
  4977. height: math.unit(8, "miles")
  4978. },
  4979. ]
  4980. ))
  4981. characterMakers.push(() => makeCharacter(
  4982. { name: "Prodigy" },
  4983. {
  4984. front: {
  4985. height: math.unit(12 + 2 / 12, "feet"),
  4986. weight: math.unit(808, "lbs"),
  4987. name: "Front",
  4988. image: {
  4989. source: "./media/characters/prodigy/front.svg"
  4990. }
  4991. }
  4992. },
  4993. [
  4994. {
  4995. name: "Normal",
  4996. height: math.unit(12 + 2 / 12, "feet"),
  4997. default: true
  4998. },
  4999. {
  5000. name: "Macro",
  5001. height: math.unit(143, "feet")
  5002. },
  5003. {
  5004. name: "Macro+",
  5005. height: math.unit(400, "feet")
  5006. },
  5007. ]
  5008. ))
  5009. characterMakers.push(() => makeCharacter(
  5010. { name: "Daniel" },
  5011. {
  5012. front: {
  5013. height: math.unit(6, "feet"),
  5014. weight: math.unit(225, "lbs"),
  5015. name: "Front",
  5016. image: {
  5017. source: "./media/characters/daniel/front.svg"
  5018. }
  5019. },
  5020. leaning: {
  5021. height: math.unit(6, "feet"),
  5022. weight: math.unit(225, "lbs"),
  5023. name: "Leaning",
  5024. image: {
  5025. source: "./media/characters/daniel/leaning.svg"
  5026. }
  5027. },
  5028. },
  5029. [
  5030. {
  5031. name: "Macro",
  5032. height: math.unit(1000, "feet"),
  5033. default: true
  5034. },
  5035. ]
  5036. ))
  5037. characterMakers.push(() => makeCharacter(
  5038. { name: "Chiros" },
  5039. {
  5040. front: {
  5041. height: math.unit(6, "feet"),
  5042. weight: math.unit(88, "lbs"),
  5043. name: "Front",
  5044. image: {
  5045. source: "./media/characters/chiros/front.svg",
  5046. extra: 306 / 226
  5047. }
  5048. },
  5049. side: {
  5050. height: math.unit(6, "feet"),
  5051. weight: math.unit(88, "lbs"),
  5052. name: "Side",
  5053. image: {
  5054. source: "./media/characters/chiros/side.svg",
  5055. extra: 306 / 226
  5056. }
  5057. },
  5058. },
  5059. [
  5060. {
  5061. name: "Normal",
  5062. height: math.unit(6, "cm"),
  5063. default: true
  5064. },
  5065. ]
  5066. ))
  5067. characterMakers.push(() => makeCharacter(
  5068. { name: "Selka" },
  5069. {
  5070. front: {
  5071. height: math.unit(6, "feet"),
  5072. weight: math.unit(100, "lbs"),
  5073. name: "Front",
  5074. image: {
  5075. source: "./media/characters/selka/front.svg",
  5076. extra: 947 / 887
  5077. }
  5078. }
  5079. },
  5080. [
  5081. {
  5082. name: "Normal",
  5083. height: math.unit(5, "cm"),
  5084. default: true
  5085. },
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Verin" },
  5090. {
  5091. front: {
  5092. height: math.unit(8 + 3 / 12, "feet"),
  5093. weight: math.unit(424, "lbs"),
  5094. name: "Front",
  5095. image: {
  5096. source: "./media/characters/verin/front.svg",
  5097. extra: 1845 / 1550
  5098. }
  5099. },
  5100. frontArmored: {
  5101. height: math.unit(8 + 3 / 12, "feet"),
  5102. weight: math.unit(424, "lbs"),
  5103. name: "Front (Armored)",
  5104. image: {
  5105. source: "./media/characters/verin/front-armor.svg",
  5106. extra: 1845 / 1550,
  5107. bottom: 0.01
  5108. }
  5109. },
  5110. back: {
  5111. height: math.unit(8 + 3 / 12, "feet"),
  5112. weight: math.unit(424, "lbs"),
  5113. name: "Back",
  5114. image: {
  5115. source: "./media/characters/verin/back.svg",
  5116. bottom: 0.1,
  5117. extra: 1
  5118. }
  5119. },
  5120. foot: {
  5121. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5122. name: "Foot",
  5123. image: {
  5124. source: "./media/characters/verin/foot.svg"
  5125. }
  5126. },
  5127. },
  5128. [
  5129. {
  5130. name: "Normal",
  5131. height: math.unit(8 + 3 / 12, "feet")
  5132. },
  5133. {
  5134. name: "Minimacro",
  5135. height: math.unit(21, "feet"),
  5136. default: true
  5137. },
  5138. {
  5139. name: "Macro",
  5140. height: math.unit(626, "feet")
  5141. },
  5142. ]
  5143. ))
  5144. characterMakers.push(() => makeCharacter(
  5145. { name: "Sovrim Terraquian" },
  5146. {
  5147. front: {
  5148. height: math.unit(2.718, "meters"),
  5149. weight: math.unit(150, "lbs"),
  5150. name: "Front",
  5151. image: {
  5152. source: "./media/characters/sovrim-terraquian/front.svg"
  5153. }
  5154. },
  5155. back: {
  5156. height: math.unit(2.718, "meters"),
  5157. weight: math.unit(150, "lbs"),
  5158. name: "Back",
  5159. image: {
  5160. source: "./media/characters/sovrim-terraquian/back.svg"
  5161. }
  5162. }
  5163. },
  5164. [
  5165. {
  5166. name: "Micro",
  5167. height: math.unit(2, "inches")
  5168. },
  5169. {
  5170. name: "Small",
  5171. height: math.unit(1, "meter")
  5172. },
  5173. {
  5174. name: "Normal",
  5175. height: math.unit(Math.E, "meters"),
  5176. default: true
  5177. },
  5178. {
  5179. name: "Macro",
  5180. height: math.unit(20, "meters")
  5181. },
  5182. {
  5183. name: "Macro+",
  5184. height: math.unit(400, "meters")
  5185. },
  5186. ]
  5187. ))
  5188. characterMakers.push(() => makeCharacter(
  5189. { name: "Reece Silvermane" },
  5190. {
  5191. front: {
  5192. height: math.unit(7, "feet"),
  5193. weight: math.unit(489, "lbs"),
  5194. name: "Front",
  5195. image: {
  5196. source: "./media/characters/reece-silvermane/front.svg",
  5197. bottom: 0.02,
  5198. extra: 1
  5199. }
  5200. },
  5201. },
  5202. [
  5203. {
  5204. name: "Macro",
  5205. height: math.unit(1.5, "miles"),
  5206. default: true
  5207. },
  5208. ]
  5209. ))
  5210. characterMakers.push(() => makeCharacter(
  5211. { name: "Kane" },
  5212. {
  5213. front: {
  5214. height: math.unit(6, "feet"),
  5215. weight: math.unit(78, "kg"),
  5216. name: "Front",
  5217. image: {
  5218. source: "./media/characters/kane/front.svg",
  5219. extra: 978 / 899
  5220. }
  5221. },
  5222. },
  5223. [
  5224. {
  5225. name: "Normal",
  5226. height: math.unit(2.1, "m"),
  5227. },
  5228. {
  5229. name: "Macro",
  5230. height: math.unit(1, "km"),
  5231. default: true
  5232. },
  5233. ]
  5234. ))
  5235. characterMakers.push(() => makeCharacter(
  5236. { name: "Tegon" },
  5237. {
  5238. front: {
  5239. height: math.unit(6, "feet"),
  5240. weight: math.unit(200, "kg"),
  5241. name: "Front",
  5242. image: {
  5243. source: "./media/characters/tegon/front.svg",
  5244. bottom: 0.01,
  5245. extra: 1
  5246. }
  5247. },
  5248. },
  5249. [
  5250. {
  5251. name: "Micro",
  5252. height: math.unit(1, "inch")
  5253. },
  5254. {
  5255. name: "Normal",
  5256. height: math.unit(6 + 3 / 12, "feet"),
  5257. default: true
  5258. },
  5259. {
  5260. name: "Macro",
  5261. height: math.unit(300, "feet")
  5262. },
  5263. {
  5264. name: "Megamacro",
  5265. height: math.unit(69, "miles")
  5266. },
  5267. ]
  5268. ))
  5269. characterMakers.push(() => makeCharacter(
  5270. { name: "Arcturax" },
  5271. {
  5272. side: {
  5273. height: math.unit(6, "feet"),
  5274. weight: math.unit(2304, "lbs"),
  5275. name: "Side",
  5276. image: {
  5277. source: "./media/characters/arcturax/side.svg",
  5278. extra: 790 / 376,
  5279. bottom: 0.01
  5280. }
  5281. },
  5282. },
  5283. [
  5284. {
  5285. name: "Micro",
  5286. height: math.unit(2, "inch")
  5287. },
  5288. {
  5289. name: "Normal",
  5290. height: math.unit(6, "feet")
  5291. },
  5292. {
  5293. name: "Macro",
  5294. height: math.unit(39, "feet"),
  5295. default: true
  5296. },
  5297. {
  5298. name: "Megamacro",
  5299. height: math.unit(7, "miles")
  5300. },
  5301. ]
  5302. ))
  5303. characterMakers.push(() => makeCharacter(
  5304. { name: "Sentri" },
  5305. {
  5306. front: {
  5307. height: math.unit(6, "feet"),
  5308. weight: math.unit(50, "lbs"),
  5309. name: "Front",
  5310. image: {
  5311. source: "./media/characters/sentri/front.svg",
  5312. extra: 1750 / 1570,
  5313. bottom: 0.025
  5314. }
  5315. },
  5316. frontAlt: {
  5317. height: math.unit(6, "feet"),
  5318. weight: math.unit(50, "lbs"),
  5319. name: "Front (Alt)",
  5320. image: {
  5321. source: "./media/characters/sentri/front-alt.svg",
  5322. extra: 1750 / 1570,
  5323. bottom: 0.025
  5324. }
  5325. },
  5326. },
  5327. [
  5328. {
  5329. name: "Normal",
  5330. height: math.unit(15, "feet"),
  5331. default: true
  5332. },
  5333. {
  5334. name: "Macro",
  5335. height: math.unit(2500, "feet")
  5336. }
  5337. ]
  5338. ))
  5339. characterMakers.push(() => makeCharacter(
  5340. { name: "Corvin" },
  5341. {
  5342. front: {
  5343. height: math.unit(5 + 8 / 12, "feet"),
  5344. weight: math.unit(130, "lbs"),
  5345. name: "Front",
  5346. image: {
  5347. source: "./media/characters/corvin/front.svg",
  5348. extra: 1803 / 1629
  5349. }
  5350. },
  5351. frontShirt: {
  5352. height: math.unit(5 + 8 / 12, "feet"),
  5353. weight: math.unit(130, "lbs"),
  5354. name: "Front (Shirt)",
  5355. image: {
  5356. source: "./media/characters/corvin/front-shirt.svg",
  5357. extra: 1803 / 1629
  5358. }
  5359. },
  5360. frontPoncho: {
  5361. height: math.unit(5 + 8 / 12, "feet"),
  5362. weight: math.unit(130, "lbs"),
  5363. name: "Front (Poncho)",
  5364. image: {
  5365. source: "./media/characters/corvin/front-poncho.svg",
  5366. extra: 1803 / 1629
  5367. }
  5368. },
  5369. side: {
  5370. height: math.unit(5 + 8 / 12, "feet"),
  5371. weight: math.unit(130, "lbs"),
  5372. name: "Side",
  5373. image: {
  5374. source: "./media/characters/corvin/side.svg",
  5375. extra: 1012 / 945
  5376. }
  5377. },
  5378. back: {
  5379. height: math.unit(5 + 8 / 12, "feet"),
  5380. weight: math.unit(130, "lbs"),
  5381. name: "Back",
  5382. image: {
  5383. source: "./media/characters/corvin/back.svg",
  5384. extra: 1803 / 1629
  5385. }
  5386. },
  5387. },
  5388. [
  5389. {
  5390. name: "Micro",
  5391. height: math.unit(3, "inches")
  5392. },
  5393. {
  5394. name: "Normal",
  5395. height: math.unit(5 + 8 / 12, "feet")
  5396. },
  5397. {
  5398. name: "Macro",
  5399. height: math.unit(300, "feet"),
  5400. default: true
  5401. },
  5402. {
  5403. name: "Megamacro",
  5404. height: math.unit(500, "miles")
  5405. }
  5406. ]
  5407. ))
  5408. characterMakers.push(() => makeCharacter(
  5409. { name: "Q" },
  5410. {
  5411. front: {
  5412. height: math.unit(6, "feet"),
  5413. weight: math.unit(135, "lbs"),
  5414. name: "Front",
  5415. image: {
  5416. source: "./media/characters/q/front.svg",
  5417. extra: 854 / 752,
  5418. bottom: 0.005
  5419. }
  5420. },
  5421. back: {
  5422. height: math.unit(6, "feet"),
  5423. weight: math.unit(130, "lbs"),
  5424. name: "Back",
  5425. image: {
  5426. source: "./media/characters/q/back.svg",
  5427. extra: 854 / 752
  5428. }
  5429. },
  5430. },
  5431. [
  5432. {
  5433. name: "Macro",
  5434. height: math.unit(90, "feet"),
  5435. default: true
  5436. },
  5437. {
  5438. name: "Extra Macro",
  5439. height: math.unit(300, "feet"),
  5440. },
  5441. {
  5442. name: "BIG WALF",
  5443. height: math.unit(750, "feet"),
  5444. },
  5445. ]
  5446. ))
  5447. characterMakers.push(() => makeCharacter(
  5448. { name: "Carley" },
  5449. {
  5450. front: {
  5451. height: math.unit(6, "feet"),
  5452. weight: math.unit(150, "lbs"),
  5453. name: "Front",
  5454. image: {
  5455. source: "./media/characters/carley/front.svg",
  5456. extra: 3927 / 3540,
  5457. bottom: 0.03
  5458. }
  5459. }
  5460. },
  5461. [
  5462. {
  5463. name: "Normal",
  5464. height: math.unit(6 + 3 / 12, "feet")
  5465. },
  5466. {
  5467. name: "Macro",
  5468. height: math.unit(185, "feet"),
  5469. default: true
  5470. },
  5471. {
  5472. name: "Megamacro",
  5473. height: math.unit(8, "miles"),
  5474. },
  5475. ]
  5476. ))
  5477. characterMakers.push(() => makeCharacter(
  5478. { name: "Citrine" },
  5479. {
  5480. front: {
  5481. height: math.unit(3, "feet"),
  5482. weight: math.unit(28, "lbs"),
  5483. name: "Front",
  5484. image: {
  5485. source: "./media/characters/citrine/front.svg"
  5486. }
  5487. }
  5488. },
  5489. [
  5490. {
  5491. name: "Normal",
  5492. height: math.unit(3, "feet"),
  5493. default: true
  5494. }
  5495. ]
  5496. ))
  5497. characterMakers.push(() => makeCharacter(
  5498. { name: "Aura Starwind" },
  5499. {
  5500. front: {
  5501. height: math.unit(14, "feet"),
  5502. weight: math.unit(1450, "kg"),
  5503. name: "Front",
  5504. image: {
  5505. source: "./media/characters/aura-starwind/front.svg",
  5506. extra: 1455 / 1335
  5507. }
  5508. },
  5509. side: {
  5510. height: math.unit(14, "feet"),
  5511. weight: math.unit(1450, "kg"),
  5512. name: "Side",
  5513. image: {
  5514. source: "./media/characters/aura-starwind/side.svg",
  5515. extra: 1654 / 1497
  5516. }
  5517. },
  5518. taur: {
  5519. height: math.unit(18, "feet"),
  5520. weight: math.unit(5500, "kg"),
  5521. name: "Taur",
  5522. image: {
  5523. source: "./media/characters/aura-starwind/taur.svg",
  5524. extra: 1760 / 1650
  5525. }
  5526. },
  5527. feral: {
  5528. height: math.unit(46, "feet"),
  5529. weight: math.unit(25000, "kg"),
  5530. name: "Feral",
  5531. image: {
  5532. source: "./media/characters/aura-starwind/feral.svg"
  5533. }
  5534. },
  5535. },
  5536. [
  5537. {
  5538. name: "Normal",
  5539. height: math.unit(14, "feet"),
  5540. default: true
  5541. },
  5542. {
  5543. name: "Macro",
  5544. height: math.unit(50, "meters")
  5545. },
  5546. {
  5547. name: "Megamacro",
  5548. height: math.unit(5000, "meters")
  5549. },
  5550. {
  5551. name: "Gigamacro",
  5552. height: math.unit(100000, "kilometers")
  5553. },
  5554. ]
  5555. ))
  5556. characterMakers.push(() => makeCharacter(
  5557. { name: "Rivet" },
  5558. {
  5559. front: {
  5560. height: math.unit(2 + 7 / 12, "feet"),
  5561. weight: math.unit(32, "lbs"),
  5562. name: "Front",
  5563. image: {
  5564. source: "./media/characters/rivet/front.svg",
  5565. extra: 1716 / 1658,
  5566. bottom: 0.03
  5567. }
  5568. },
  5569. foot: {
  5570. height: math.unit(0.551, "feet"),
  5571. name: "Rivet's Foot",
  5572. image: {
  5573. source: "./media/characters/rivet/foot.svg"
  5574. },
  5575. rename: true
  5576. }
  5577. },
  5578. [
  5579. {
  5580. name: "Micro",
  5581. height: math.unit(1.5, "inches"),
  5582. },
  5583. {
  5584. name: "Normal",
  5585. height: math.unit(2 + 7 / 12, "feet"),
  5586. default: true
  5587. },
  5588. {
  5589. name: "Macro",
  5590. height: math.unit(85, "feet")
  5591. },
  5592. {
  5593. name: "Megamacro",
  5594. height: math.unit(2.2, "km")
  5595. }
  5596. ]
  5597. ))
  5598. characterMakers.push(() => makeCharacter(
  5599. { name: "Coffee" },
  5600. {
  5601. front: {
  5602. height: math.unit(5 + 9 / 12, "feet"),
  5603. weight: math.unit(150, "lbs"),
  5604. name: "Front",
  5605. image: {
  5606. source: "./media/characters/coffee/front.svg",
  5607. extra: 3666 / 3032,
  5608. bottom: 0.04
  5609. }
  5610. },
  5611. foot: {
  5612. height: math.unit(1.29, "feet"),
  5613. name: "Foot",
  5614. image: {
  5615. source: "./media/characters/coffee/foot.svg"
  5616. }
  5617. },
  5618. },
  5619. [
  5620. {
  5621. name: "Micro",
  5622. height: math.unit(2, "inches"),
  5623. },
  5624. {
  5625. name: "Normal",
  5626. height: math.unit(5 + 9 / 12, "feet"),
  5627. default: true
  5628. },
  5629. {
  5630. name: "Macro",
  5631. height: math.unit(800, "feet")
  5632. },
  5633. {
  5634. name: "Megamacro",
  5635. height: math.unit(25, "miles")
  5636. }
  5637. ]
  5638. ))
  5639. characterMakers.push(() => makeCharacter(
  5640. { name: "Chari-Gal" },
  5641. {
  5642. front: {
  5643. height: math.unit(6, "feet"),
  5644. weight: math.unit(200, "lbs"),
  5645. name: "Front",
  5646. image: {
  5647. source: "./media/characters/chari-gal/front.svg",
  5648. extra: 1568 / 1385,
  5649. bottom: 0.047
  5650. }
  5651. },
  5652. gigantamax: {
  5653. height: math.unit(6 * 16, "feet"),
  5654. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  5655. name: "Gigantamax",
  5656. image: {
  5657. source: "./media/characters/chari-gal/gigantamax.svg",
  5658. extra: 1124 / 888,
  5659. bottom: 0.03
  5660. }
  5661. },
  5662. },
  5663. [
  5664. {
  5665. name: "Normal",
  5666. height: math.unit(5 + 7 / 12, "feet")
  5667. },
  5668. {
  5669. name: "Macro",
  5670. height: math.unit(200, "feet"),
  5671. default: true
  5672. }
  5673. ]
  5674. ))
  5675. characterMakers.push(() => makeCharacter(
  5676. { name: "Nova" },
  5677. {
  5678. front: {
  5679. height: math.unit(6, "feet"),
  5680. weight: math.unit(150, "lbs"),
  5681. name: "Front",
  5682. image: {
  5683. source: "./media/characters/nova/front.svg",
  5684. extra: 5000 / 4722,
  5685. bottom: 0.02
  5686. }
  5687. }
  5688. },
  5689. [
  5690. {
  5691. name: "Micro-",
  5692. height: math.unit(0.8, "inches")
  5693. },
  5694. {
  5695. name: "Micro",
  5696. height: math.unit(2, "inches"),
  5697. default: true
  5698. },
  5699. ]
  5700. ))
  5701. characterMakers.push(() => makeCharacter(
  5702. { name: "Argent" },
  5703. {
  5704. front: {
  5705. height: math.unit(3 + 1 / 12, "feet"),
  5706. weight: math.unit(21.7, "lbs"),
  5707. name: "Front",
  5708. image: {
  5709. source: "./media/characters/argent/front.svg",
  5710. extra: 1565 / 1416,
  5711. bottom: 0.01
  5712. }
  5713. }
  5714. },
  5715. [
  5716. {
  5717. name: "Micro",
  5718. height: math.unit(2, "inches")
  5719. },
  5720. {
  5721. name: "Normal",
  5722. height: math.unit(3 + 1 / 12, "feet"),
  5723. default: true
  5724. },
  5725. {
  5726. name: "Macro",
  5727. height: math.unit(120, "feet")
  5728. },
  5729. ]
  5730. ))
  5731. characterMakers.push(() => makeCharacter(
  5732. { name: "Mira al-Cul" },
  5733. {
  5734. lamp: {
  5735. height: math.unit(7 * 1559 / 989, "feet"),
  5736. name: "Magic Lamp",
  5737. image: {
  5738. source: "./media/characters/mira-al-cul/lamp.svg",
  5739. extra: 1617 / 1559
  5740. }
  5741. },
  5742. front: {
  5743. height: math.unit(7, "feet"),
  5744. name: "Front",
  5745. image: {
  5746. source: "./media/characters/mira-al-cul/front.svg",
  5747. extra: 1044 / 990
  5748. }
  5749. },
  5750. },
  5751. [
  5752. {
  5753. name: "Heavily Restricted",
  5754. height: math.unit(7 * 1559 / 989, "feet")
  5755. },
  5756. {
  5757. name: "Freshly Freed",
  5758. height: math.unit(50 * 1559 / 989, "feet")
  5759. },
  5760. {
  5761. name: "World Encompassing",
  5762. height: math.unit(10000 * 1559 / 989, "miles")
  5763. },
  5764. {
  5765. name: "Galactic",
  5766. height: math.unit(1.433 * 1559 / 989, "zettameters")
  5767. },
  5768. {
  5769. name: "Palmed Universe",
  5770. height: math.unit(6000 * 1559 / 989, "yottameters"),
  5771. default: true
  5772. },
  5773. {
  5774. name: "Multiversal Matriarch",
  5775. height: math.unit(8.87e10, "yottameters")
  5776. },
  5777. {
  5778. name: "Void Mother",
  5779. height: math.unit(3.14e110, "yottaparsecs")
  5780. },
  5781. ]
  5782. ))
  5783. characterMakers.push(() => makeCharacter(
  5784. { name: "Kuro-shi Uchū" },
  5785. {
  5786. front: {
  5787. height: math.unit(17 + 1 / 12, "feet"),
  5788. weight: math.unit(476.2 * 5, "lbs"),
  5789. name: "Front",
  5790. image: {
  5791. source: "./media/characters/kuro-shi-uchū/front.svg",
  5792. extra: 2329 / 1835,
  5793. bottom: 0.02
  5794. }
  5795. },
  5796. },
  5797. [
  5798. {
  5799. name: "Micro",
  5800. height: math.unit(2, "inches")
  5801. },
  5802. {
  5803. name: "Normal",
  5804. height: math.unit(12, "meters")
  5805. },
  5806. {
  5807. name: "Planetary",
  5808. height: math.unit(0.00929, "AU"),
  5809. default: true
  5810. },
  5811. {
  5812. name: "Universal",
  5813. height: math.unit(20, "gigaparsecs")
  5814. },
  5815. ]
  5816. ))
  5817. characterMakers.push(() => makeCharacter(
  5818. { name: "Katherine" },
  5819. {
  5820. front: {
  5821. height: math.unit(5 + 2 / 12, "feet"),
  5822. weight: math.unit(120, "lbs"),
  5823. name: "Front",
  5824. image: {
  5825. source: "./media/characters/katherine/front.svg",
  5826. extra: 2075 / 1969
  5827. }
  5828. },
  5829. dress: {
  5830. height: math.unit(5 + 2 / 12, "feet"),
  5831. weight: math.unit(120, "lbs"),
  5832. name: "Dress",
  5833. image: {
  5834. source: "./media/characters/katherine/dress.svg",
  5835. extra: 2258 / 2064
  5836. }
  5837. },
  5838. },
  5839. [
  5840. {
  5841. name: "Micro",
  5842. height: math.unit(1, "inches"),
  5843. default: true
  5844. },
  5845. {
  5846. name: "Normal",
  5847. height: math.unit(5 + 2 / 12, "feet")
  5848. },
  5849. {
  5850. name: "Macro",
  5851. height: math.unit(100, "meters")
  5852. },
  5853. {
  5854. name: "Megamacro",
  5855. height: math.unit(80, "miles")
  5856. },
  5857. ]
  5858. ))
  5859. characterMakers.push(() => makeCharacter(
  5860. { name: "Yevis" },
  5861. {
  5862. front: {
  5863. height: math.unit(7 + 8 / 12, "feet"),
  5864. weight: math.unit(250, "lbs"),
  5865. name: "Front",
  5866. image: {
  5867. source: "./media/characters/yevis/front.svg",
  5868. extra: 1938 / 1755
  5869. }
  5870. }
  5871. },
  5872. [
  5873. {
  5874. name: "Mortal",
  5875. height: math.unit(7 + 8 / 12, "feet")
  5876. },
  5877. {
  5878. name: "Battle",
  5879. height: math.unit(25 + 11 / 12, "feet")
  5880. },
  5881. {
  5882. name: "Wrath",
  5883. height: math.unit(1654 + 11 / 12, "feet")
  5884. },
  5885. {
  5886. name: "Planet Destroyer",
  5887. height: math.unit(12000, "miles")
  5888. },
  5889. {
  5890. name: "Galaxy Conqueror",
  5891. height: math.unit(1.45, "zettameters"),
  5892. default: true
  5893. },
  5894. {
  5895. name: "Universal War",
  5896. height: math.unit(184, "gigaparsecs")
  5897. },
  5898. {
  5899. name: "Eternity War",
  5900. height: math.unit(1.98e55, "yottaparsecs")
  5901. },
  5902. ]
  5903. ))
  5904. characterMakers.push(() => makeCharacter(
  5905. { name: "Xavier" },
  5906. {
  5907. front: {
  5908. height: math.unit(5 + 8 / 12, "feet"),
  5909. weight: math.unit(63, "kg"),
  5910. name: "Front",
  5911. image: {
  5912. source: "./media/characters/xavier/front.svg",
  5913. extra: 944 / 883
  5914. }
  5915. },
  5916. frontStretch: {
  5917. height: math.unit(5 + 8 / 12, "feet"),
  5918. weight: math.unit(63, "kg"),
  5919. name: "Stretching",
  5920. image: {
  5921. source: "./media/characters/xavier/front-stretch.svg",
  5922. extra: 962 / 820
  5923. }
  5924. },
  5925. },
  5926. [
  5927. {
  5928. name: "Normal",
  5929. height: math.unit(5 + 8 / 12, "feet")
  5930. },
  5931. {
  5932. name: "Macro",
  5933. height: math.unit(100, "meters"),
  5934. default: true
  5935. },
  5936. {
  5937. name: "McLargeHuge",
  5938. height: math.unit(10, "miles")
  5939. },
  5940. ]
  5941. ))
  5942. characterMakers.push(() => makeCharacter(
  5943. { name: "Joshii" },
  5944. {
  5945. front: {
  5946. height: math.unit(5 + 5 / 12, "feet"),
  5947. weight: math.unit(150, "lb"),
  5948. name: "Front",
  5949. image: {
  5950. source: "./media/characters/joshii/front.svg"
  5951. }
  5952. },
  5953. foot: {
  5954. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  5955. name: "Foot",
  5956. image: {
  5957. source: "./media/characters/joshii/foot.svg"
  5958. }
  5959. },
  5960. },
  5961. [
  5962. {
  5963. name: "Micro",
  5964. height: math.unit(2, "inches")
  5965. },
  5966. {
  5967. name: "Normal",
  5968. height: math.unit(5 + 5 / 12, "feet"),
  5969. default: true
  5970. },
  5971. {
  5972. name: "Macro",
  5973. height: math.unit(785, "feet")
  5974. },
  5975. {
  5976. name: "Megamacro",
  5977. height: math.unit(24.5, "miles")
  5978. },
  5979. ]
  5980. ))
  5981. characterMakers.push(() => makeCharacter(
  5982. { name: "Goddess Elizabeth" },
  5983. {
  5984. front: {
  5985. height: math.unit(6, "feet"),
  5986. weight: math.unit(150, "lb"),
  5987. name: "Front",
  5988. image: {
  5989. source: "./media/characters/goddess-elizabeth/front.svg",
  5990. extra: 1800 / 1525,
  5991. bottom: 0.005
  5992. }
  5993. },
  5994. foot: {
  5995. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  5996. name: "Foot",
  5997. image: {
  5998. source: "./media/characters/goddess-elizabeth/foot.svg"
  5999. }
  6000. },
  6001. },
  6002. [
  6003. {
  6004. name: "Micro",
  6005. height: math.unit(12, "feet")
  6006. },
  6007. {
  6008. name: "Normal",
  6009. height: math.unit(80, "miles"),
  6010. default: true
  6011. },
  6012. {
  6013. name: "Macro",
  6014. height: math.unit(15000, "parsecs")
  6015. },
  6016. ]
  6017. ))
  6018. characterMakers.push(() => makeCharacter(
  6019. { name: "Kara" },
  6020. {
  6021. front: {
  6022. height: math.unit(5 + 9 / 12, "feet"),
  6023. weight: math.unit(144, "lb"),
  6024. name: "Front",
  6025. image: {
  6026. source: "./media/characters/kara/front.svg"
  6027. }
  6028. },
  6029. feet: {
  6030. height: math.unit(6 / 6.765, "feet"),
  6031. name: "Kara's Feet",
  6032. rename: true,
  6033. image: {
  6034. source: "./media/characters/kara/feet.svg"
  6035. }
  6036. },
  6037. },
  6038. [
  6039. {
  6040. name: "Normal",
  6041. height: math.unit(5 + 9 / 12, "feet")
  6042. },
  6043. {
  6044. name: "Macro",
  6045. height: math.unit(174, "feet"),
  6046. default: true
  6047. },
  6048. ]
  6049. ))
  6050. characterMakers.push(() => makeCharacter(
  6051. { name: "Tyrone" },
  6052. {
  6053. front: {
  6054. height: math.unit(18, "feet"),
  6055. weight: math.unit(4050, "lb"),
  6056. name: "Front",
  6057. image: {
  6058. source: "./media/characters/tyrone/front.svg",
  6059. extra: 2520 / 2402,
  6060. bottom: 0.025
  6061. }
  6062. },
  6063. },
  6064. [
  6065. {
  6066. name: "Normal",
  6067. height: math.unit(18, "feet"),
  6068. default: true
  6069. },
  6070. {
  6071. name: "Macro",
  6072. height: math.unit(300, "feet")
  6073. },
  6074. ]
  6075. ))
  6076. characterMakers.push(() => makeCharacter(
  6077. { name: "Danny" },
  6078. {
  6079. front: {
  6080. height: math.unit(7 + 8 / 12, "feet"),
  6081. weight: math.unit(120, "lb"),
  6082. name: "Front",
  6083. image: {
  6084. source: "./media/characters/danny/front.svg",
  6085. extra: 1490 / 1350
  6086. }
  6087. },
  6088. back: {
  6089. height: math.unit(7 + 8 / 12, "feet"),
  6090. weight: math.unit(120, "lb"),
  6091. name: "Back",
  6092. image: {
  6093. source: "./media/characters/danny/back.svg",
  6094. extra: 1490 / 1350
  6095. }
  6096. },
  6097. },
  6098. [
  6099. {
  6100. name: "Normal",
  6101. height: math.unit(7 + 8 / 12, "feet"),
  6102. default: true
  6103. },
  6104. ]
  6105. ))
  6106. characterMakers.push(() => makeCharacter(
  6107. { name: "Mallow" },
  6108. {
  6109. front: {
  6110. height: math.unit(3.5, "inches"),
  6111. weight: math.unit(19, "grams"),
  6112. name: "Front",
  6113. image: {
  6114. source: "./media/characters/mallow/front.svg",
  6115. extra: 471 / 431
  6116. }
  6117. },
  6118. back: {
  6119. height: math.unit(3.5, "inches"),
  6120. weight: math.unit(19, "grams"),
  6121. name: "Back",
  6122. image: {
  6123. source: "./media/characters/mallow/back.svg",
  6124. extra: 471 / 431
  6125. }
  6126. },
  6127. },
  6128. [
  6129. {
  6130. name: "Normal",
  6131. height: math.unit(3.5, "inches"),
  6132. default: true
  6133. },
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Starry Aqua" },
  6138. {
  6139. front: {
  6140. height: math.unit(9, "feet"),
  6141. weight: math.unit(230, "kg"),
  6142. name: "Front",
  6143. image: {
  6144. source: "./media/characters/starry-aqua/front.svg"
  6145. }
  6146. },
  6147. back: {
  6148. height: math.unit(9, "feet"),
  6149. weight: math.unit(230, "kg"),
  6150. name: "Back",
  6151. image: {
  6152. source: "./media/characters/starry-aqua/back.svg"
  6153. }
  6154. },
  6155. hand: {
  6156. height: math.unit(9 * 0.1168, "feet"),
  6157. name: "Hand",
  6158. image: {
  6159. source: "./media/characters/starry-aqua/hand.svg"
  6160. }
  6161. },
  6162. foot: {
  6163. height: math.unit(9 * 0.18, "feet"),
  6164. name: "Foot",
  6165. image: {
  6166. source: "./media/characters/starry-aqua/foot.svg"
  6167. }
  6168. }
  6169. },
  6170. [
  6171. {
  6172. name: "Micro",
  6173. height: math.unit(3, "inches")
  6174. },
  6175. {
  6176. name: "Normal",
  6177. height: math.unit(9, "feet")
  6178. },
  6179. {
  6180. name: "Macro",
  6181. height: math.unit(300, "feet"),
  6182. default: true
  6183. },
  6184. {
  6185. name: "Megamacro",
  6186. height: math.unit(3200, "feet")
  6187. }
  6188. ]
  6189. ))
  6190. characterMakers.push(() => makeCharacter(
  6191. { name: "Luka" },
  6192. {
  6193. front: {
  6194. height: math.unit(6, "feet"),
  6195. weight: math.unit(230, "lb"),
  6196. name: "Front",
  6197. image: {
  6198. source: "./media/characters/luka/front.svg",
  6199. extra: 1,
  6200. bottom: 0.025
  6201. }
  6202. },
  6203. },
  6204. [
  6205. {
  6206. name: "Normal",
  6207. height: math.unit(12 + 8 / 12, "feet"),
  6208. default: true
  6209. },
  6210. {
  6211. name: "Minimacro",
  6212. height: math.unit(20, "feet")
  6213. },
  6214. {
  6215. name: "Macro",
  6216. height: math.unit(250, "feet")
  6217. },
  6218. {
  6219. name: "Megamacro",
  6220. height: math.unit(5, "miles")
  6221. },
  6222. {
  6223. name: "Gigamacro",
  6224. height: math.unit(8000, "miles")
  6225. },
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Natalie Nightring" },
  6230. {
  6231. front: {
  6232. height: math.unit(6, "feet"),
  6233. weight: math.unit(150, "lb"),
  6234. name: "Front",
  6235. image: {
  6236. source: "./media/characters/natalie-nightring/front.svg",
  6237. extra: 1,
  6238. bottom: 0.06
  6239. }
  6240. },
  6241. },
  6242. [
  6243. {
  6244. name: "Uh Oh",
  6245. height: math.unit(0.1, "mm")
  6246. },
  6247. {
  6248. name: "Small",
  6249. height: math.unit(3, "inches")
  6250. },
  6251. {
  6252. name: "Human Scale",
  6253. height: math.unit(6, "feet")
  6254. },
  6255. {
  6256. name: "Librarian",
  6257. height: math.unit(50, "feet"),
  6258. default: true
  6259. },
  6260. {
  6261. name: "Immense",
  6262. height: math.unit(200, "miles")
  6263. },
  6264. ]
  6265. ))
  6266. characterMakers.push(() => makeCharacter(
  6267. { name: "Danni Rosie" },
  6268. {
  6269. front: {
  6270. height: math.unit(6, "feet"),
  6271. weight: math.unit(180, "lbs"),
  6272. name: "Front",
  6273. image: {
  6274. source: "./media/characters/danni-rosie/front.svg",
  6275. extra: 1260 / 1128,
  6276. bottom: 0.022
  6277. }
  6278. },
  6279. },
  6280. [
  6281. {
  6282. name: "Micro",
  6283. height: math.unit(2, "inches"),
  6284. default: true
  6285. },
  6286. ]
  6287. ))
  6288. characterMakers.push(() => makeCharacter(
  6289. { name: "Samantha Kruse" },
  6290. {
  6291. front: {
  6292. height: math.unit(5 + 9 / 12, "feet"),
  6293. weight: math.unit(220, "lb"),
  6294. name: "Front",
  6295. image: {
  6296. source: "./media/characters/samantha-kruse/front.svg",
  6297. extra: (985 / 935),
  6298. bottom: 0.03
  6299. }
  6300. },
  6301. frontUndressed: {
  6302. height: math.unit(5 + 9 / 12, "feet"),
  6303. weight: math.unit(220, "lb"),
  6304. name: "Front (Undressed)",
  6305. image: {
  6306. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6307. extra: (973 / 923),
  6308. bottom: 0.025
  6309. }
  6310. },
  6311. fat: {
  6312. height: math.unit(5 + 9 / 12, "feet"),
  6313. weight: math.unit(900, "lb"),
  6314. name: "Front (Fat)",
  6315. image: {
  6316. source: "./media/characters/samantha-kruse/fat.svg",
  6317. extra: 2688 / 2561
  6318. }
  6319. },
  6320. },
  6321. [
  6322. {
  6323. name: "Normal",
  6324. height: math.unit(5 + 9 / 12, "feet"),
  6325. default: true
  6326. }
  6327. ]
  6328. ))
  6329. characterMakers.push(() => makeCharacter(
  6330. { name: "Amelia Rosie" },
  6331. {
  6332. back: {
  6333. height: math.unit(5 + 4 / 12, "feet"),
  6334. weight: math.unit(4963, "lb"),
  6335. name: "Back",
  6336. image: {
  6337. source: "./media/characters/amelia-rosie/back.svg",
  6338. extra: 1113 / 963,
  6339. bottom: 0.01
  6340. }
  6341. },
  6342. },
  6343. [
  6344. {
  6345. name: "Level 0",
  6346. height: math.unit(5 + 4 / 12, "feet")
  6347. },
  6348. {
  6349. name: "Level 1",
  6350. height: math.unit(164597, "feet"),
  6351. default: true
  6352. },
  6353. {
  6354. name: "Level 2",
  6355. height: math.unit(956243, "miles")
  6356. },
  6357. {
  6358. name: "Level 3",
  6359. height: math.unit(29421709423, "miles")
  6360. },
  6361. {
  6362. name: "Level 4",
  6363. height: math.unit(154, "lightyears")
  6364. },
  6365. {
  6366. name: "Level 5",
  6367. height: math.unit(4738272, "lightyears")
  6368. },
  6369. {
  6370. name: "Level 6",
  6371. height: math.unit(145787152896, "lightyears")
  6372. },
  6373. ]
  6374. ))
  6375. characterMakers.push(() => makeCharacter(
  6376. { name: "Rook Kitara" },
  6377. {
  6378. front: {
  6379. height: math.unit(5 + 11 / 12, "feet"),
  6380. weight: math.unit(65, "kg"),
  6381. name: "Front",
  6382. image: {
  6383. source: "./media/characters/rook-kitara/front.svg",
  6384. extra: 1347 / 1274,
  6385. bottom: 0.005
  6386. }
  6387. },
  6388. },
  6389. [
  6390. {
  6391. name: "Totally Unfair",
  6392. height: math.unit(1.8, "mm")
  6393. },
  6394. {
  6395. name: "Lap Rookie",
  6396. height: math.unit(1.4, "feet")
  6397. },
  6398. {
  6399. name: "Normal",
  6400. height: math.unit(5 + 11 / 12, "feet"),
  6401. default: true
  6402. },
  6403. {
  6404. name: "How Did This Happen",
  6405. height: math.unit(80, "miles")
  6406. }
  6407. ]
  6408. ))
  6409. characterMakers.push(() => makeCharacter(
  6410. { name: "Pisces" },
  6411. {
  6412. front: {
  6413. height: math.unit(7, "feet"),
  6414. weight: math.unit(300, "lb"),
  6415. name: "Front",
  6416. image: {
  6417. source: "./media/characters/pisces/front.svg",
  6418. extra: 2255 / 2115,
  6419. bottom: 0.03
  6420. }
  6421. },
  6422. back: {
  6423. height: math.unit(7, "feet"),
  6424. weight: math.unit(300, "lb"),
  6425. name: "Back",
  6426. image: {
  6427. source: "./media/characters/pisces/back.svg",
  6428. extra: 2146 / 2055,
  6429. bottom: 0.04
  6430. }
  6431. },
  6432. },
  6433. [
  6434. {
  6435. name: "Normal",
  6436. height: math.unit(7, "feet"),
  6437. default: true
  6438. },
  6439. {
  6440. name: "Swimming Pool",
  6441. height: math.unit(12.2, "meters")
  6442. },
  6443. {
  6444. name: "Olympic Swimming Pool",
  6445. height: math.unit(56.3, "meters")
  6446. },
  6447. {
  6448. name: "Lake Superior",
  6449. height: math.unit(93900, "meters")
  6450. },
  6451. {
  6452. name: "Mediterranean Sea",
  6453. height: math.unit(644457, "meters")
  6454. },
  6455. {
  6456. name: "World's Oceans",
  6457. height: math.unit(4567491, "meters")
  6458. },
  6459. ]
  6460. ))
  6461. characterMakers.push(() => makeCharacter(
  6462. { name: "Zelas" },
  6463. {
  6464. front: {
  6465. height: math.unit(2.3, "meters"),
  6466. weight: math.unit(120, "kg"),
  6467. name: "Front",
  6468. image: {
  6469. source: "./media/characters/zelas/front.svg"
  6470. }
  6471. },
  6472. side: {
  6473. height: math.unit(2.3, "meters"),
  6474. weight: math.unit(120, "kg"),
  6475. name: "Side",
  6476. image: {
  6477. source: "./media/characters/zelas/side.svg"
  6478. }
  6479. },
  6480. back: {
  6481. height: math.unit(2.3, "meters"),
  6482. weight: math.unit(120, "kg"),
  6483. name: "Back",
  6484. image: {
  6485. source: "./media/characters/zelas/back.svg"
  6486. }
  6487. },
  6488. foot: {
  6489. height: math.unit(1.116, "feet"),
  6490. name: "Foot",
  6491. image: {
  6492. source: "./media/characters/zelas/foot.svg"
  6493. }
  6494. },
  6495. },
  6496. [
  6497. {
  6498. name: "Normal",
  6499. height: math.unit(2.3, "meters")
  6500. },
  6501. {
  6502. name: "Macro",
  6503. height: math.unit(30, "meters"),
  6504. default: true
  6505. },
  6506. ]
  6507. ))
  6508. characterMakers.push(() => makeCharacter(
  6509. { name: "Talbot" },
  6510. {
  6511. front: {
  6512. height: math.unit(1, "inch"),
  6513. weight: math.unit(0.21, "grams"),
  6514. name: "Front",
  6515. image: {
  6516. source: "./media/characters/talbot/front.svg",
  6517. extra: 594 / 544
  6518. }
  6519. },
  6520. },
  6521. [
  6522. {
  6523. name: "Micro",
  6524. height: math.unit(1, "inch"),
  6525. default: true
  6526. },
  6527. ]
  6528. ))
  6529. characterMakers.push(() => makeCharacter(
  6530. { name: "Fliss" },
  6531. {
  6532. front: {
  6533. height: math.unit(3 + 3 / 12, "feet"),
  6534. weight: math.unit(51.8, "lb"),
  6535. name: "Front",
  6536. image: {
  6537. source: "./media/characters/fliss/front.svg",
  6538. extra: 840 / 640
  6539. }
  6540. },
  6541. },
  6542. [
  6543. {
  6544. name: "Teeny Tiny",
  6545. height: math.unit(1, "mm")
  6546. },
  6547. {
  6548. name: "Small",
  6549. height: math.unit(1, "inch"),
  6550. default: true
  6551. },
  6552. {
  6553. name: "Standard Sylveon",
  6554. height: math.unit(3 + 3 / 12, "feet")
  6555. },
  6556. {
  6557. name: "Large Nuisance",
  6558. height: math.unit(33, "feet")
  6559. },
  6560. {
  6561. name: "City Filler",
  6562. height: math.unit(3000, "feet")
  6563. },
  6564. {
  6565. name: "New Horizon",
  6566. height: math.unit(6000, "miles")
  6567. },
  6568. ]
  6569. ))
  6570. characterMakers.push(() => makeCharacter(
  6571. { name: "Fleta" },
  6572. {
  6573. front: {
  6574. height: math.unit(5, "cm"),
  6575. weight: math.unit(1.94, "g"),
  6576. name: "Front",
  6577. image: {
  6578. source: "./media/characters/fleta/front.svg",
  6579. extra: 835 / 803
  6580. }
  6581. },
  6582. back: {
  6583. height: math.unit(5, "cm"),
  6584. weight: math.unit(1.94, "g"),
  6585. name: "Back",
  6586. image: {
  6587. source: "./media/characters/fleta/back.svg",
  6588. extra: 835 / 803
  6589. }
  6590. },
  6591. },
  6592. [
  6593. {
  6594. name: "Micro",
  6595. height: math.unit(5, "cm"),
  6596. default: true
  6597. },
  6598. ]
  6599. ))
  6600. characterMakers.push(() => makeCharacter(
  6601. { name: "Dominic" },
  6602. {
  6603. front: {
  6604. height: math.unit(6, "feet"),
  6605. weight: math.unit(225, "lb"),
  6606. name: "Front",
  6607. image: {
  6608. source: "./media/characters/dominic/front.svg",
  6609. extra: 1770 / 1620,
  6610. bottom: 0.025
  6611. }
  6612. },
  6613. back: {
  6614. height: math.unit(6, "feet"),
  6615. weight: math.unit(225, "lb"),
  6616. name: "Back",
  6617. image: {
  6618. source: "./media/characters/dominic/back.svg",
  6619. extra: 1745 / 1620,
  6620. bottom: 0.065
  6621. }
  6622. },
  6623. },
  6624. [
  6625. {
  6626. name: "Nano",
  6627. height: math.unit(0.1, "mm")
  6628. },
  6629. {
  6630. name: "Micro-",
  6631. height: math.unit(1, "mm")
  6632. },
  6633. {
  6634. name: "Micro",
  6635. height: math.unit(4, "inches")
  6636. },
  6637. {
  6638. name: "Normal",
  6639. height: math.unit(6 + 4 / 12, "feet"),
  6640. default: true
  6641. },
  6642. {
  6643. name: "Macro",
  6644. height: math.unit(115, "feet")
  6645. },
  6646. {
  6647. name: "Macro+",
  6648. height: math.unit(955, "feet")
  6649. },
  6650. {
  6651. name: "Megamacro",
  6652. height: math.unit(8990, "feet")
  6653. },
  6654. {
  6655. name: "Gigmacro",
  6656. height: math.unit(9310, "miles")
  6657. },
  6658. {
  6659. name: "Teramacro",
  6660. height: math.unit(1567005010, "miles")
  6661. },
  6662. {
  6663. name: "Examacro",
  6664. height: math.unit(1425, "parsecs")
  6665. },
  6666. ]
  6667. ))
  6668. characterMakers.push(() => makeCharacter(
  6669. { name: "Major Colonel" },
  6670. {
  6671. front: {
  6672. height: math.unit(400, "feet"),
  6673. weight: math.unit(44444444, "lb"),
  6674. name: "Front",
  6675. image: {
  6676. source: "./media/characters/major-colonel/front.svg"
  6677. }
  6678. },
  6679. back: {
  6680. height: math.unit(400, "feet"),
  6681. weight: math.unit(44444444, "lb"),
  6682. name: "Back",
  6683. image: {
  6684. source: "./media/characters/major-colonel/back.svg"
  6685. }
  6686. },
  6687. },
  6688. [
  6689. {
  6690. name: "Macro",
  6691. height: math.unit(400, "feet"),
  6692. default: true
  6693. },
  6694. ]
  6695. ))
  6696. characterMakers.push(() => makeCharacter(
  6697. { name: "Axel Lycan" },
  6698. {
  6699. front: {
  6700. height: math.unit(6, "feet"),
  6701. weight: math.unit(120, "lb"),
  6702. name: "Front",
  6703. image: {
  6704. source: "./media/characters/axel-lycan/front.svg",
  6705. extra: 1,
  6706. bottom: 0.08
  6707. }
  6708. },
  6709. },
  6710. [
  6711. {
  6712. name: "Macro",
  6713. height: math.unit(1, "km"),
  6714. default: true
  6715. },
  6716. ]
  6717. ))
  6718. characterMakers.push(() => makeCharacter(
  6719. { name: "Vanrel (Hyena)" },
  6720. {
  6721. front: {
  6722. height: math.unit(5 + 9 / 12, "feet"),
  6723. weight: math.unit(175, "lb"),
  6724. name: "Front",
  6725. image: {
  6726. source: "./media/characters/vanrel-hyena/front.svg",
  6727. extra: 1086 / 1010,
  6728. bottom: 0.04
  6729. }
  6730. },
  6731. },
  6732. [
  6733. {
  6734. name: "Normal",
  6735. height: math.unit(5 + 9 / 12, "feet"),
  6736. default: true
  6737. },
  6738. ]
  6739. ))
  6740. characterMakers.push(() => makeCharacter(
  6741. { name: "Abbott Absol" },
  6742. {
  6743. front: {
  6744. height: math.unit(6, "feet"),
  6745. weight: math.unit(103, "lb"),
  6746. name: "Front",
  6747. image: {
  6748. source: "./media/characters/abbott-absol/front.svg",
  6749. extra: 2010 / 1842
  6750. }
  6751. },
  6752. },
  6753. [
  6754. {
  6755. name: "Megamicro",
  6756. height: math.unit(0.1, "mm")
  6757. },
  6758. {
  6759. name: "Micro",
  6760. height: math.unit(1, "inch")
  6761. },
  6762. {
  6763. name: "Normal",
  6764. height: math.unit(6, "feet"),
  6765. default: true
  6766. },
  6767. ]
  6768. ))
  6769. characterMakers.push(() => makeCharacter(
  6770. { name: "Hector" },
  6771. {
  6772. front: {
  6773. height: math.unit(6, "feet"),
  6774. weight: math.unit(264, "lb"),
  6775. name: "Front",
  6776. image: {
  6777. source: "./media/characters/hector/front.svg",
  6778. extra: 2280 / 2130,
  6779. bottom: 0.07
  6780. }
  6781. },
  6782. },
  6783. [
  6784. {
  6785. name: "Normal",
  6786. height: math.unit(12.25, "foot"),
  6787. default: true
  6788. },
  6789. {
  6790. name: "Macro",
  6791. height: math.unit(160, "feet")
  6792. },
  6793. ]
  6794. ))
  6795. characterMakers.push(() => makeCharacter(
  6796. { name: "Sal" },
  6797. {
  6798. front: {
  6799. height: math.unit(6, "feet"),
  6800. weight: math.unit(150, "lb"),
  6801. name: "Front",
  6802. image: {
  6803. source: "./media/characters/sal/front.svg",
  6804. extra: 1846 / 1699,
  6805. bottom: 0.04
  6806. }
  6807. },
  6808. },
  6809. [
  6810. {
  6811. name: "Megamacro",
  6812. height: math.unit(10, "miles"),
  6813. default: true
  6814. },
  6815. ]
  6816. ))
  6817. characterMakers.push(() => makeCharacter(
  6818. { name: "Ranger" },
  6819. {
  6820. front: {
  6821. height: math.unit(3, "meters"),
  6822. weight: math.unit(450, "kg"),
  6823. name: "front",
  6824. image: {
  6825. source: "./media/characters/ranger/front.svg",
  6826. extra: 2401 / 2243,
  6827. bottom: 0.05
  6828. }
  6829. },
  6830. },
  6831. [
  6832. {
  6833. name: "Normal",
  6834. height: math.unit(3, "meters"),
  6835. default: true
  6836. },
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Theresa" },
  6841. {
  6842. front: {
  6843. height: math.unit(14, "feet"),
  6844. weight: math.unit(800, "kg"),
  6845. name: "Front",
  6846. image: {
  6847. source: "./media/characters/theresa/front.svg",
  6848. extra: 3575 / 3346,
  6849. bottom: 0.03
  6850. }
  6851. },
  6852. },
  6853. [
  6854. {
  6855. name: "Normal",
  6856. height: math.unit(14, "feet"),
  6857. default: true
  6858. },
  6859. ]
  6860. ))
  6861. characterMakers.push(() => makeCharacter(
  6862. { name: "Ine" },
  6863. {
  6864. front: {
  6865. height: math.unit(6, "feet"),
  6866. weight: math.unit(3, "kg"),
  6867. name: "Front",
  6868. image: {
  6869. source: "./media/characters/ine/front.svg",
  6870. extra: 678 / 539,
  6871. bottom: 0.023
  6872. }
  6873. },
  6874. },
  6875. [
  6876. {
  6877. name: "Normal",
  6878. height: math.unit(2.265, "feet"),
  6879. default: true
  6880. },
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Vial" },
  6885. {
  6886. front: {
  6887. height: math.unit(5, "feet"),
  6888. weight: math.unit(30, "kg"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/vial/front.svg",
  6892. extra: 1365 / 1277,
  6893. bottom: 0.04
  6894. }
  6895. },
  6896. },
  6897. [
  6898. {
  6899. name: "Normal",
  6900. height: math.unit(5, "feet"),
  6901. default: true
  6902. },
  6903. ]
  6904. ))
  6905. characterMakers.push(() => makeCharacter(
  6906. { name: "Rovoska" },
  6907. {
  6908. side: {
  6909. height: math.unit(3.4, "meters"),
  6910. weight: math.unit(1000, "lb"),
  6911. name: "Side",
  6912. image: {
  6913. source: "./media/characters/rovoska/side.svg",
  6914. extra: 4403 / 1515
  6915. }
  6916. },
  6917. },
  6918. [
  6919. {
  6920. name: "Normal",
  6921. height: math.unit(3.4, "meters"),
  6922. default: true
  6923. },
  6924. ]
  6925. ))
  6926. characterMakers.push(() => makeCharacter(
  6927. { name: "Gunner Rotthbauer" },
  6928. {
  6929. front: {
  6930. height: math.unit(8, "feet"),
  6931. weight: math.unit(315, "lb"),
  6932. name: "Front",
  6933. image: {
  6934. source: "./media/characters/gunner-rotthbauer/front.svg"
  6935. }
  6936. },
  6937. back: {
  6938. height: math.unit(8, "feet"),
  6939. weight: math.unit(315, "lb"),
  6940. name: "Back",
  6941. image: {
  6942. source: "./media/characters/gunner-rotthbauer/back.svg"
  6943. }
  6944. },
  6945. },
  6946. [
  6947. {
  6948. name: "Micro",
  6949. height: math.unit(3.5, "inches")
  6950. },
  6951. {
  6952. name: "Normal",
  6953. height: math.unit(8, "feet"),
  6954. default: true
  6955. },
  6956. {
  6957. name: "Macro",
  6958. height: math.unit(250, "feet")
  6959. },
  6960. {
  6961. name: "Megamacro",
  6962. height: math.unit(1, "AU")
  6963. },
  6964. ]
  6965. ))
  6966. characterMakers.push(() => makeCharacter(
  6967. { name: "Allatia" },
  6968. {
  6969. front: {
  6970. height: math.unit(5 + 5 / 12, "feet"),
  6971. weight: math.unit(140, "lb"),
  6972. name: "Front",
  6973. image: {
  6974. source: "./media/characters/allatia/front.svg",
  6975. extra: 1227 / 1180,
  6976. bottom: 0.027
  6977. }
  6978. },
  6979. },
  6980. [
  6981. {
  6982. name: "Normal",
  6983. height: math.unit(5 + 5 / 12, "feet")
  6984. },
  6985. {
  6986. name: "Macro",
  6987. height: math.unit(250, "feet"),
  6988. default: true
  6989. },
  6990. {
  6991. name: "Megamacro",
  6992. height: math.unit(8, "miles")
  6993. }
  6994. ]
  6995. ))
  6996. characterMakers.push(() => makeCharacter(
  6997. { name: "Tene" },
  6998. {
  6999. front: {
  7000. height: math.unit(6, "feet"),
  7001. weight: math.unit(120, "lb"),
  7002. name: "Front",
  7003. image: {
  7004. source: "./media/characters/tene/front.svg",
  7005. extra: 1728 / 1578,
  7006. bottom: 0.022
  7007. }
  7008. },
  7009. stomping: {
  7010. height: math.unit(2.025, "meters"),
  7011. weight: math.unit(120, "lb"),
  7012. name: "Stomping",
  7013. image: {
  7014. source: "./media/characters/tene/stomping.svg",
  7015. extra: 938 / 873,
  7016. bottom: 0.01
  7017. }
  7018. },
  7019. sitting: {
  7020. height: math.unit(1, "meter"),
  7021. weight: math.unit(120, "lb"),
  7022. name: "Sitting",
  7023. image: {
  7024. source: "./media/characters/tene/sitting.svg",
  7025. extra: 437 / 415,
  7026. bottom: 0.1
  7027. }
  7028. },
  7029. feral: {
  7030. height: math.unit(3.9, "feet"),
  7031. weight: math.unit(250, "lb"),
  7032. name: "Feral",
  7033. image: {
  7034. source: "./media/characters/tene/feral.svg",
  7035. extra: 717 / 458,
  7036. bottom: 0.179
  7037. }
  7038. },
  7039. },
  7040. [
  7041. {
  7042. name: "Normal",
  7043. height: math.unit(6, "feet")
  7044. },
  7045. {
  7046. name: "Macro",
  7047. height: math.unit(300, "feet"),
  7048. default: true
  7049. },
  7050. {
  7051. name: "Megamacro",
  7052. height: math.unit(5, "miles")
  7053. },
  7054. ]
  7055. ))
  7056. characterMakers.push(() => makeCharacter(
  7057. { name: "Evander" },
  7058. {
  7059. side: {
  7060. height: math.unit(6, "feet"),
  7061. name: "Side",
  7062. image: {
  7063. source: "./media/characters/evander/side.svg",
  7064. extra: 877 / 477
  7065. }
  7066. },
  7067. },
  7068. [
  7069. {
  7070. name: "Normal",
  7071. height: math.unit(0.83, "meters"),
  7072. default: true
  7073. },
  7074. ]
  7075. ))
  7076. characterMakers.push(() => makeCharacter(
  7077. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7078. {
  7079. front: {
  7080. height: math.unit(12, "feet"),
  7081. weight: math.unit(1000, "lb"),
  7082. name: "Front",
  7083. image: {
  7084. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7085. extra: 1762 / 1611
  7086. }
  7087. },
  7088. back: {
  7089. height: math.unit(12, "feet"),
  7090. weight: math.unit(1000, "lb"),
  7091. name: "Back",
  7092. image: {
  7093. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7094. extra: 1762 / 1611
  7095. }
  7096. },
  7097. },
  7098. [
  7099. {
  7100. name: "Normal",
  7101. height: math.unit(12, "feet"),
  7102. default: true
  7103. },
  7104. {
  7105. name: "Kaiju",
  7106. height: math.unit(150, "feet")
  7107. },
  7108. ]
  7109. ))
  7110. characterMakers.push(() => makeCharacter(
  7111. { name: "Zero Alurus" },
  7112. {
  7113. front: {
  7114. height: math.unit(6, "feet"),
  7115. weight: math.unit(150, "lb"),
  7116. name: "Front",
  7117. image: {
  7118. source: "./media/characters/zero-alurus/front.svg"
  7119. }
  7120. },
  7121. back: {
  7122. height: math.unit(6, "feet"),
  7123. weight: math.unit(150, "lb"),
  7124. name: "Back",
  7125. image: {
  7126. source: "./media/characters/zero-alurus/back.svg"
  7127. }
  7128. },
  7129. },
  7130. [
  7131. {
  7132. name: "Normal",
  7133. height: math.unit(5 + 10 / 12, "feet")
  7134. },
  7135. {
  7136. name: "Macro",
  7137. height: math.unit(60, "feet"),
  7138. default: true
  7139. },
  7140. {
  7141. name: "Macro+",
  7142. height: math.unit(450, "feet")
  7143. },
  7144. ]
  7145. ))
  7146. characterMakers.push(() => makeCharacter(
  7147. { name: "Mega Shi" },
  7148. {
  7149. front: {
  7150. height: math.unit(6, "feet"),
  7151. weight: math.unit(200, "lb"),
  7152. name: "Front",
  7153. image: {
  7154. source: "./media/characters/mega-shi/front.svg",
  7155. extra: 1279 / 1250,
  7156. bottom: 0.02
  7157. }
  7158. },
  7159. back: {
  7160. height: math.unit(6, "feet"),
  7161. weight: math.unit(200, "lb"),
  7162. name: "Back",
  7163. image: {
  7164. source: "./media/characters/mega-shi/back.svg",
  7165. extra: 1279 / 1250,
  7166. bottom: 0.02
  7167. }
  7168. },
  7169. },
  7170. [
  7171. {
  7172. name: "Micro",
  7173. height: math.unit(16 + 6 / 12, "feet")
  7174. },
  7175. {
  7176. name: "Normal",
  7177. height: math.unit(660, "feet"),
  7178. default: true
  7179. },
  7180. {
  7181. name: "Megamacro",
  7182. height: math.unit(10, "miles")
  7183. },
  7184. {
  7185. name: "Planetary Launch",
  7186. height: math.unit(500, "miles")
  7187. },
  7188. {
  7189. name: "Interstellar",
  7190. height: math.unit(1e9, "miles")
  7191. },
  7192. {
  7193. name: "Leaving the Universe",
  7194. height: math.unit(1, "gigaparsec")
  7195. },
  7196. {
  7197. name: "Travelling Universes",
  7198. height: math.unit(30e15, "parsecs")
  7199. },
  7200. ]
  7201. ))
  7202. characterMakers.push(() => makeCharacter(
  7203. { name: "Odyssey" },
  7204. {
  7205. front: {
  7206. height: math.unit(6, "feet"),
  7207. weight: math.unit(150, "lb"),
  7208. name: "Front",
  7209. image: {
  7210. source: "./media/characters/odyssey/front.svg",
  7211. extra: 1782 / 1582,
  7212. bottom: 0.01
  7213. }
  7214. },
  7215. side: {
  7216. height: math.unit(5.6, "feet"),
  7217. weight: math.unit(140, "lb"),
  7218. name: "Side",
  7219. image: {
  7220. source: "./media/characters/odyssey/side.svg",
  7221. extra: 6462 / 5700
  7222. }
  7223. },
  7224. },
  7225. [
  7226. {
  7227. name: "Normal",
  7228. height: math.unit(5 + 4 / 12, "feet")
  7229. },
  7230. {
  7231. name: "Macro",
  7232. height: math.unit(1, "km")
  7233. },
  7234. {
  7235. name: "Megamacro",
  7236. height: math.unit(3000, "km")
  7237. },
  7238. {
  7239. name: "Gigamacro",
  7240. height: math.unit(1, "AU"),
  7241. default: true
  7242. },
  7243. {
  7244. name: "Omniversal",
  7245. height: math.unit(100e14, "lightyears")
  7246. },
  7247. ]
  7248. ))
  7249. characterMakers.push(() => makeCharacter(
  7250. { name: "Mekuto" },
  7251. {
  7252. front: {
  7253. height: math.unit(6, "feet"),
  7254. weight: math.unit(300, "lb"),
  7255. name: "Front",
  7256. image: {
  7257. source: "./media/characters/mekuto/front.svg",
  7258. extra: 921 / 832,
  7259. bottom: 0.03
  7260. }
  7261. },
  7262. hand: {
  7263. height: math.unit(6 / 10.24, "feet"),
  7264. name: "Hand",
  7265. image: {
  7266. source: "./media/characters/mekuto/hand.svg"
  7267. }
  7268. },
  7269. foot: {
  7270. height: math.unit(6 / 5.05, "feet"),
  7271. name: "Foot",
  7272. image: {
  7273. source: "./media/characters/mekuto/foot.svg"
  7274. }
  7275. },
  7276. },
  7277. [
  7278. {
  7279. name: "Minimicro",
  7280. height: math.unit(0.2, "inches")
  7281. },
  7282. {
  7283. name: "Micro",
  7284. height: math.unit(1.5, "inches")
  7285. },
  7286. {
  7287. name: "Normal",
  7288. height: math.unit(5 + 11 / 12, "feet"),
  7289. default: true
  7290. },
  7291. {
  7292. name: "Minimacro",
  7293. height: math.unit(17 + 9 / 12, "feet")
  7294. },
  7295. {
  7296. name: "Macro",
  7297. height: math.unit(177.5, "feet")
  7298. },
  7299. {
  7300. name: "Megamacro",
  7301. height: math.unit(152, "miles")
  7302. },
  7303. ]
  7304. ))
  7305. characterMakers.push(() => makeCharacter(
  7306. { name: "Dafydd Tomos" },
  7307. {
  7308. front: {
  7309. height: math.unit(6.5, "inches"),
  7310. weight: math.unit(13, "oz"),
  7311. name: "Front",
  7312. image: {
  7313. source: "./media/characters/dafydd-tomos/front.svg",
  7314. extra: 2990 / 2603,
  7315. bottom: 0.03
  7316. }
  7317. },
  7318. },
  7319. [
  7320. {
  7321. name: "Micro",
  7322. height: math.unit(6.5, "inches"),
  7323. default: true
  7324. },
  7325. ]
  7326. ))
  7327. characterMakers.push(() => makeCharacter(
  7328. { name: "Splinter" },
  7329. {
  7330. front: {
  7331. height: math.unit(6, "feet"),
  7332. weight: math.unit(150, "lb"),
  7333. name: "Front",
  7334. image: {
  7335. source: "./media/characters/splinter/front.svg",
  7336. extra: 2990 / 2882,
  7337. bottom: 0.04
  7338. }
  7339. },
  7340. back: {
  7341. height: math.unit(6, "feet"),
  7342. weight: math.unit(150, "lb"),
  7343. name: "Back",
  7344. image: {
  7345. source: "./media/characters/splinter/back.svg",
  7346. extra: 2990 / 2882,
  7347. bottom: 0.04
  7348. }
  7349. },
  7350. },
  7351. [
  7352. {
  7353. name: "Normal",
  7354. height: math.unit(6, "feet")
  7355. },
  7356. {
  7357. name: "Macro",
  7358. height: math.unit(230, "meters"),
  7359. default: true
  7360. },
  7361. ]
  7362. ))
  7363. characterMakers.push(() => makeCharacter(
  7364. { name: "SnowGabumon" },
  7365. {
  7366. front: {
  7367. height: math.unit(4 + 10 / 12, "feet"),
  7368. weight: math.unit(480, "lb"),
  7369. name: "Front",
  7370. image: {
  7371. source: "./media/characters/snow-gabumon/front.svg",
  7372. extra: 1140 / 963,
  7373. bottom: 0.058
  7374. }
  7375. },
  7376. back: {
  7377. height: math.unit(4 + 10 / 12, "feet"),
  7378. weight: math.unit(480, "lb"),
  7379. name: "Back",
  7380. image: {
  7381. source: "./media/characters/snow-gabumon/back.svg",
  7382. extra: 1115 / 962,
  7383. bottom: 0.041
  7384. }
  7385. },
  7386. frontUndresed: {
  7387. height: math.unit(4 + 10 / 12, "feet"),
  7388. weight: math.unit(480, "lb"),
  7389. name: "Front (Undressed)",
  7390. image: {
  7391. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7392. extra: 1061 / 960,
  7393. bottom: 0.045
  7394. }
  7395. },
  7396. },
  7397. [
  7398. {
  7399. name: "Micro",
  7400. height: math.unit(1, "inch")
  7401. },
  7402. {
  7403. name: "Normal",
  7404. height: math.unit(4 + 10 / 12, "feet"),
  7405. default: true
  7406. },
  7407. {
  7408. name: "Macro",
  7409. height: math.unit(200, "feet")
  7410. },
  7411. {
  7412. name: "Megamacro",
  7413. height: math.unit(120, "miles")
  7414. },
  7415. {
  7416. name: "Gigamacro",
  7417. height: math.unit(9800, "miles")
  7418. },
  7419. ]
  7420. ))
  7421. characterMakers.push(() => makeCharacter(
  7422. { name: "Moody" },
  7423. {
  7424. front: {
  7425. height: math.unit(1.7, "meters"),
  7426. weight: math.unit(140, "lb"),
  7427. name: "Front",
  7428. image: {
  7429. source: "./media/characters/moody/front.svg",
  7430. extra: 3226 / 3007,
  7431. bottom: 0.087
  7432. }
  7433. },
  7434. },
  7435. [
  7436. {
  7437. name: "Micro",
  7438. height: math.unit(1, "mm")
  7439. },
  7440. {
  7441. name: "Normal",
  7442. height: math.unit(1.7, "meters"),
  7443. default: true
  7444. },
  7445. {
  7446. name: "Macro",
  7447. height: math.unit(80, "meters")
  7448. },
  7449. {
  7450. name: "Macro+",
  7451. height: math.unit(500, "meters")
  7452. },
  7453. ]
  7454. ))
  7455. characterMakers.push(() => makeCharacter(
  7456. { name: "Zyas" },
  7457. {
  7458. front: {
  7459. height: math.unit(6, "feet"),
  7460. weight: math.unit(150, "lb"),
  7461. name: "Front",
  7462. image: {
  7463. source: "./media/characters/zyas/front.svg",
  7464. extra: 1180 / 1120,
  7465. bottom: 0.045
  7466. }
  7467. },
  7468. },
  7469. [
  7470. {
  7471. name: "Normal",
  7472. height: math.unit(10, "feet"),
  7473. default: true
  7474. },
  7475. {
  7476. name: "Macro",
  7477. height: math.unit(500, "feet")
  7478. },
  7479. {
  7480. name: "Megamacro",
  7481. height: math.unit(5, "miles")
  7482. },
  7483. {
  7484. name: "Teramacro",
  7485. height: math.unit(150000, "miles")
  7486. },
  7487. ]
  7488. ))
  7489. characterMakers.push(() => makeCharacter(
  7490. { name: "Cuon" },
  7491. {
  7492. front: {
  7493. height: math.unit(6, "feet"),
  7494. weight: math.unit(150, "lb"),
  7495. name: "Front",
  7496. image: {
  7497. source: "./media/characters/cuon/front.svg",
  7498. extra: 1390 / 1320,
  7499. bottom: 0.008
  7500. }
  7501. },
  7502. },
  7503. [
  7504. {
  7505. name: "Micro",
  7506. height: math.unit(3, "inches")
  7507. },
  7508. {
  7509. name: "Normal",
  7510. height: math.unit(18 + 9 / 12, "feet"),
  7511. default: true
  7512. },
  7513. {
  7514. name: "Macro",
  7515. height: math.unit(360, "feet")
  7516. },
  7517. {
  7518. name: "Megamacro",
  7519. height: math.unit(360, "miles")
  7520. },
  7521. ]
  7522. ))
  7523. characterMakers.push(() => makeCharacter(
  7524. { name: "Nyanuxk" },
  7525. {
  7526. front: {
  7527. height: math.unit(2.4, "meters"),
  7528. weight: math.unit(70, "kg"),
  7529. name: "Front",
  7530. image: {
  7531. source: "./media/characters/nyanuxk/front.svg",
  7532. extra: 1172 / 1084,
  7533. bottom: 0.065
  7534. }
  7535. },
  7536. side: {
  7537. height: math.unit(2.4, "meters"),
  7538. weight: math.unit(70, "kg"),
  7539. name: "Side",
  7540. image: {
  7541. source: "./media/characters/nyanuxk/side.svg",
  7542. extra: 1190 / 1132,
  7543. bottom: 0.007
  7544. }
  7545. },
  7546. back: {
  7547. height: math.unit(2.4, "meters"),
  7548. weight: math.unit(70, "kg"),
  7549. name: "Back",
  7550. image: {
  7551. source: "./media/characters/nyanuxk/back.svg",
  7552. extra: 1200 / 1141,
  7553. bottom: 0.015
  7554. }
  7555. },
  7556. foot: {
  7557. height: math.unit(0.52, "meters"),
  7558. name: "Foot",
  7559. image: {
  7560. source: "./media/characters/nyanuxk/foot.svg"
  7561. }
  7562. },
  7563. },
  7564. [
  7565. {
  7566. name: "Micro",
  7567. height: math.unit(2, "cm")
  7568. },
  7569. {
  7570. name: "Normal",
  7571. height: math.unit(2.4, "meters"),
  7572. default: true
  7573. },
  7574. {
  7575. name: "Smaller Macro",
  7576. height: math.unit(120, "meters")
  7577. },
  7578. {
  7579. name: "Bigger Macro",
  7580. height: math.unit(1.2, "km")
  7581. },
  7582. {
  7583. name: "Megamacro",
  7584. height: math.unit(15, "kilometers")
  7585. },
  7586. {
  7587. name: "Gigamacro",
  7588. height: math.unit(2000, "km")
  7589. },
  7590. {
  7591. name: "Teramacro",
  7592. height: math.unit(500000, "km")
  7593. },
  7594. ]
  7595. ))
  7596. characterMakers.push(() => makeCharacter(
  7597. { name: "Ailbhe" },
  7598. {
  7599. side: {
  7600. height: math.unit(6, "feet"),
  7601. name: "Side",
  7602. image: {
  7603. source: "./media/characters/ailbhe/side.svg",
  7604. extra: 757 / 464,
  7605. bottom: 0.041
  7606. }
  7607. },
  7608. },
  7609. [
  7610. {
  7611. name: "Normal",
  7612. height: math.unit(1.07, "meters"),
  7613. default: true
  7614. },
  7615. ]
  7616. ))
  7617. characterMakers.push(() => makeCharacter(
  7618. { name: "Zevulfius" },
  7619. {
  7620. front: {
  7621. height: math.unit(6, "feet"),
  7622. weight: math.unit(120, "kg"),
  7623. name: "Front",
  7624. image: {
  7625. source: "./media/characters/zevulfius/front.svg",
  7626. extra: 965 / 903
  7627. }
  7628. },
  7629. side: {
  7630. height: math.unit(6, "feet"),
  7631. weight: math.unit(120, "kg"),
  7632. name: "Side",
  7633. image: {
  7634. source: "./media/characters/zevulfius/side.svg",
  7635. extra: 939 / 900
  7636. }
  7637. },
  7638. back: {
  7639. height: math.unit(6, "feet"),
  7640. weight: math.unit(120, "kg"),
  7641. name: "Back",
  7642. image: {
  7643. source: "./media/characters/zevulfius/back.svg",
  7644. extra: 918 / 854,
  7645. bottom: 0.005
  7646. }
  7647. },
  7648. foot: {
  7649. height: math.unit(6 / 3.72, "feet"),
  7650. name: "Foot",
  7651. image: {
  7652. source: "./media/characters/zevulfius/foot.svg"
  7653. }
  7654. },
  7655. },
  7656. [
  7657. {
  7658. name: "Macro",
  7659. height: math.unit(750, "meters")
  7660. },
  7661. {
  7662. name: "Megamacro",
  7663. height: math.unit(20, "km"),
  7664. default: true
  7665. },
  7666. {
  7667. name: "Gigamacro",
  7668. height: math.unit(2000, "km")
  7669. },
  7670. {
  7671. name: "Teramacro",
  7672. height: math.unit(250000, "km")
  7673. },
  7674. ]
  7675. ))
  7676. characterMakers.push(() => makeCharacter(
  7677. { name: "Rikes" },
  7678. {
  7679. front: {
  7680. height: math.unit(100, "feet"),
  7681. weight: math.unit(350, "kg"),
  7682. name: "Front",
  7683. image: {
  7684. source: "./media/characters/rikes/front.svg",
  7685. extra: 1565 / 1483,
  7686. bottom: 0.017
  7687. }
  7688. },
  7689. },
  7690. [
  7691. {
  7692. name: "Macro",
  7693. height: math.unit(100, "feet"),
  7694. default: true
  7695. },
  7696. ]
  7697. ))
  7698. characterMakers.push(() => makeCharacter(
  7699. { name: "Adam Silver-Mane" },
  7700. {
  7701. anthro: {
  7702. height: math.unit(8, "feet"),
  7703. weight: math.unit(120, "kg"),
  7704. name: "Anthro",
  7705. image: {
  7706. source: "./media/characters/adam-silver-mane/anthro.svg",
  7707. extra: 5743 / 5339,
  7708. bottom: 0.07
  7709. }
  7710. },
  7711. taur: {
  7712. height: math.unit(16, "feet"),
  7713. weight: math.unit(1500, "kg"),
  7714. name: "Taur",
  7715. image: {
  7716. source: "./media/characters/adam-silver-mane/taur.svg",
  7717. extra: 1713 / 1571,
  7718. bottom: 0.01
  7719. }
  7720. },
  7721. },
  7722. [
  7723. {
  7724. name: "Normal",
  7725. height: math.unit(8, "feet")
  7726. },
  7727. {
  7728. name: "Minimacro",
  7729. height: math.unit(80, "feet")
  7730. },
  7731. {
  7732. name: "Macro",
  7733. height: math.unit(800, "feet"),
  7734. default: true
  7735. },
  7736. {
  7737. name: "Megamacro",
  7738. height: math.unit(8000, "feet")
  7739. },
  7740. {
  7741. name: "Gigamacro",
  7742. height: math.unit(800, "miles")
  7743. },
  7744. {
  7745. name: "Teramacro",
  7746. height: math.unit(80000, "miles")
  7747. },
  7748. {
  7749. name: "Celestial",
  7750. height: math.unit(8e6, "miles")
  7751. },
  7752. {
  7753. name: "Star Dragon",
  7754. height: math.unit(800000, "parsecs")
  7755. },
  7756. {
  7757. name: "Godly",
  7758. height: math.unit(800, "teraparsecs")
  7759. },
  7760. ]
  7761. ))
  7762. characterMakers.push(() => makeCharacter(
  7763. { name: "Ky'owin" },
  7764. {
  7765. front: {
  7766. height: math.unit(6, "feet"),
  7767. weight: math.unit(150, "lb"),
  7768. name: "Front",
  7769. image: {
  7770. source: "./media/characters/ky'owin/front.svg",
  7771. extra: 3888 / 3068,
  7772. bottom: 0.015
  7773. }
  7774. },
  7775. },
  7776. [
  7777. {
  7778. name: "Normal",
  7779. height: math.unit(6 + 8 / 12, "feet")
  7780. },
  7781. {
  7782. name: "Large",
  7783. height: math.unit(68, "feet")
  7784. },
  7785. {
  7786. name: "Macro",
  7787. height: math.unit(132, "feet")
  7788. },
  7789. {
  7790. name: "Macro+",
  7791. height: math.unit(340, "feet")
  7792. },
  7793. {
  7794. name: "Macro++",
  7795. height: math.unit(680, "feet"),
  7796. default: true
  7797. },
  7798. {
  7799. name: "Megamacro",
  7800. height: math.unit(1, "mile")
  7801. },
  7802. {
  7803. name: "Megamacro+",
  7804. height: math.unit(10, "miles")
  7805. },
  7806. ]
  7807. ))
  7808. characterMakers.push(() => makeCharacter(
  7809. { name: "Mal" },
  7810. {
  7811. front: {
  7812. height: math.unit(4, "feet"),
  7813. weight: math.unit(50, "lb"),
  7814. name: "Front",
  7815. image: {
  7816. source: "./media/characters/mal/front.svg",
  7817. extra: 785 / 724,
  7818. bottom: 0.07
  7819. }
  7820. },
  7821. },
  7822. [
  7823. {
  7824. name: "Micro",
  7825. height: math.unit(4, "inches")
  7826. },
  7827. {
  7828. name: "Normal",
  7829. height: math.unit(4, "feet"),
  7830. default: true
  7831. },
  7832. {
  7833. name: "Macro",
  7834. height: math.unit(200, "feet")
  7835. },
  7836. ]
  7837. ))
  7838. characterMakers.push(() => makeCharacter(
  7839. { name: "Jordan Deware" },
  7840. {
  7841. front: {
  7842. height: math.unit(6, "feet"),
  7843. weight: math.unit(150, "lb"),
  7844. name: "Front",
  7845. image: {
  7846. source: "./media/characters/jordan-deware/front.svg",
  7847. extra: 1191 / 1012
  7848. }
  7849. },
  7850. },
  7851. [
  7852. {
  7853. name: "Nano",
  7854. height: math.unit(0.01, "mm")
  7855. },
  7856. {
  7857. name: "Minimicro",
  7858. height: math.unit(1, "mm")
  7859. },
  7860. {
  7861. name: "Micro",
  7862. height: math.unit(0.5, "inches")
  7863. },
  7864. {
  7865. name: "Normal",
  7866. height: math.unit(4, "feet"),
  7867. default: true
  7868. },
  7869. {
  7870. name: "Minimacro",
  7871. height: math.unit(40, "meters")
  7872. },
  7873. {
  7874. name: "Small Macro",
  7875. height: math.unit(400, "meters")
  7876. },
  7877. {
  7878. name: "Macro",
  7879. height: math.unit(4, "miles")
  7880. },
  7881. {
  7882. name: "Megamacro",
  7883. height: math.unit(40, "miles")
  7884. },
  7885. {
  7886. name: "Megamacro+",
  7887. height: math.unit(400, "miles")
  7888. },
  7889. {
  7890. name: "Gigamacro",
  7891. height: math.unit(400000, "miles")
  7892. },
  7893. ]
  7894. ))
  7895. characterMakers.push(() => makeCharacter(
  7896. { name: "Kimiko" },
  7897. {
  7898. side: {
  7899. height: math.unit(6, "feet"),
  7900. weight: math.unit(150, "lb"),
  7901. name: "Side",
  7902. image: {
  7903. source: "./media/characters/kimiko/side.svg",
  7904. extra: 600 / 358
  7905. }
  7906. },
  7907. },
  7908. [
  7909. {
  7910. name: "Normal",
  7911. height: math.unit(15, "feet"),
  7912. default: true
  7913. },
  7914. {
  7915. name: "Macro",
  7916. height: math.unit(220, "feet")
  7917. },
  7918. {
  7919. name: "Macro+",
  7920. height: math.unit(1450, "feet")
  7921. },
  7922. {
  7923. name: "Megamacro",
  7924. height: math.unit(11500, "feet")
  7925. },
  7926. {
  7927. name: "Gigamacro",
  7928. height: math.unit(9500, "miles")
  7929. },
  7930. {
  7931. name: "Teramacro",
  7932. height: math.unit(2208005005, "miles")
  7933. },
  7934. {
  7935. name: "Examacro",
  7936. height: math.unit(2750, "parsecs")
  7937. },
  7938. {
  7939. name: "Zettamacro",
  7940. height: math.unit(101500, "parsecs")
  7941. },
  7942. ]
  7943. ))
  7944. characterMakers.push(() => makeCharacter(
  7945. { name: "Andrew Sleepy" },
  7946. {
  7947. front: {
  7948. height: math.unit(6, "feet"),
  7949. weight: math.unit(70, "kg"),
  7950. name: "Front",
  7951. image: {
  7952. source: "./media/characters/andrew-sleepy/front.svg"
  7953. }
  7954. },
  7955. side: {
  7956. height: math.unit(6, "feet"),
  7957. weight: math.unit(70, "kg"),
  7958. name: "Side",
  7959. image: {
  7960. source: "./media/characters/andrew-sleepy/side.svg"
  7961. }
  7962. },
  7963. },
  7964. [
  7965. {
  7966. name: "Micro",
  7967. height: math.unit(1, "mm"),
  7968. default: true
  7969. },
  7970. ]
  7971. ))
  7972. characterMakers.push(() => makeCharacter(
  7973. { name: "Judio" },
  7974. {
  7975. front: {
  7976. height: math.unit(6, "feet"),
  7977. weight: math.unit(150, "lb"),
  7978. name: "Front",
  7979. image: {
  7980. source: "./media/characters/judio/front.svg",
  7981. extra: 1258 / 1110
  7982. }
  7983. },
  7984. },
  7985. [
  7986. {
  7987. name: "Normal",
  7988. height: math.unit(5 + 6 / 12, "feet")
  7989. },
  7990. {
  7991. name: "Macro",
  7992. height: math.unit(1000, "feet"),
  7993. default: true
  7994. },
  7995. {
  7996. name: "Megamacro",
  7997. height: math.unit(10, "miles")
  7998. },
  7999. ]
  8000. ))
  8001. characterMakers.push(() => makeCharacter(
  8002. { name: "Nomaxice" },
  8003. {
  8004. front: {
  8005. height: math.unit(6, "feet"),
  8006. weight: math.unit(68, "kg"),
  8007. name: "Front",
  8008. image: {
  8009. source: "./media/characters/nomaxice/front.svg",
  8010. extra: 1498 / 1073,
  8011. bottom: 0.075
  8012. }
  8013. },
  8014. foot: {
  8015. height: math.unit(1.1, "feet"),
  8016. name: "Foot",
  8017. image: {
  8018. source: "./media/characters/nomaxice/foot.svg"
  8019. }
  8020. },
  8021. },
  8022. [
  8023. {
  8024. name: "Micro",
  8025. height: math.unit(8, "cm")
  8026. },
  8027. {
  8028. name: "Norm",
  8029. height: math.unit(1.82, "m")
  8030. },
  8031. {
  8032. name: "Norm+",
  8033. height: math.unit(8.8, "feet")
  8034. },
  8035. {
  8036. name: "Big",
  8037. height: math.unit(8, "meters"),
  8038. default: true
  8039. },
  8040. {
  8041. name: "Macro",
  8042. height: math.unit(18, "meters")
  8043. },
  8044. {
  8045. name: "Macro+",
  8046. height: math.unit(88, "meters")
  8047. },
  8048. ]
  8049. ))
  8050. characterMakers.push(() => makeCharacter(
  8051. { name: "Dydros" },
  8052. {
  8053. front: {
  8054. height: math.unit(12, "feet"),
  8055. weight: math.unit(1.5, "tons"),
  8056. name: "Front",
  8057. image: {
  8058. source: "./media/characters/dydros/front.svg",
  8059. extra: 863 / 800,
  8060. bottom: 0.015
  8061. }
  8062. },
  8063. back: {
  8064. height: math.unit(12, "feet"),
  8065. weight: math.unit(1.5, "tons"),
  8066. name: "Back",
  8067. image: {
  8068. source: "./media/characters/dydros/back.svg",
  8069. extra: 900 / 843,
  8070. bottom: 0.005
  8071. }
  8072. },
  8073. },
  8074. [
  8075. {
  8076. name: "Normal",
  8077. height: math.unit(12, "feet"),
  8078. default: true
  8079. },
  8080. ]
  8081. ))
  8082. characterMakers.push(() => makeCharacter(
  8083. { name: "Riggi" },
  8084. {
  8085. front: {
  8086. height: math.unit(6, "feet"),
  8087. weight: math.unit(100, "kg"),
  8088. name: "Front",
  8089. image: {
  8090. source: "./media/characters/riggi/front.svg",
  8091. extra: 5787 / 5303
  8092. }
  8093. },
  8094. hyper: {
  8095. height: math.unit(6 * 5 / 3, "feet"),
  8096. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8097. name: "Hyper",
  8098. image: {
  8099. source: "./media/characters/riggi/hyper.svg",
  8100. extra: 3595 / 3485
  8101. }
  8102. },
  8103. },
  8104. [
  8105. {
  8106. name: "Small Macro",
  8107. height: math.unit(50, "feet")
  8108. },
  8109. {
  8110. name: "Default",
  8111. height: math.unit(200, "feet"),
  8112. default: true
  8113. },
  8114. {
  8115. name: "Loom",
  8116. height: math.unit(10000, "feet")
  8117. },
  8118. {
  8119. name: "Cruising Altitude",
  8120. height: math.unit(30000, "feet")
  8121. },
  8122. {
  8123. name: "Megamacro",
  8124. height: math.unit(100, "miles")
  8125. },
  8126. {
  8127. name: "Continent Sized",
  8128. height: math.unit(2800, "miles")
  8129. },
  8130. {
  8131. name: "Earth Sized",
  8132. height: math.unit(8000, "miles")
  8133. },
  8134. ]
  8135. ))
  8136. characterMakers.push(() => makeCharacter(
  8137. { name: "Alexi" },
  8138. {
  8139. front: {
  8140. height: math.unit(6, "feet"),
  8141. weight: math.unit(250, "lb"),
  8142. name: "Front",
  8143. image: {
  8144. source: "./media/characters/alexi/front.svg",
  8145. extra: 3483 / 3291,
  8146. bottom: 0.04
  8147. }
  8148. },
  8149. back: {
  8150. height: math.unit(6, "feet"),
  8151. weight: math.unit(250, "lb"),
  8152. name: "Back",
  8153. image: {
  8154. source: "./media/characters/alexi/back.svg",
  8155. extra: 3533 / 3356,
  8156. bottom: 0.021
  8157. }
  8158. },
  8159. frontTransformed: {
  8160. height: math.unit(12.5, "feet"),
  8161. weight: math.unit(4000, "lb"),
  8162. name: "Front (Transformed)",
  8163. image: {
  8164. source: "./media/characters/alexi/front-transformed.svg",
  8165. extra: 5345 / 5100,
  8166. bottom: 0.03
  8167. }
  8168. },
  8169. },
  8170. [
  8171. {
  8172. name: "Normal",
  8173. height: math.unit(3, "meters"),
  8174. default: true
  8175. },
  8176. {
  8177. name: "Minimacro",
  8178. height: math.unit(30, "meters")
  8179. },
  8180. {
  8181. name: "Macro",
  8182. height: math.unit(500, "meters")
  8183. },
  8184. {
  8185. name: "Megamacro",
  8186. height: math.unit(9000, "km")
  8187. },
  8188. {
  8189. name: "Teramacro",
  8190. height: math.unit(384000, "km")
  8191. },
  8192. ]
  8193. ))
  8194. characterMakers.push(() => makeCharacter(
  8195. { name: "Kayroo" },
  8196. {
  8197. front: {
  8198. height: math.unit(6, "feet"),
  8199. weight: math.unit(150, "lb"),
  8200. name: "Front",
  8201. image: {
  8202. source: "./media/characters/kayroo/front.svg",
  8203. extra: 1153 / 1038,
  8204. bottom: 0.06
  8205. }
  8206. },
  8207. foot: {
  8208. height: math.unit(6, "feet"),
  8209. weight: math.unit(150, "lb"),
  8210. name: "Foot",
  8211. image: {
  8212. source: "./media/characters/kayroo/foot.svg"
  8213. }
  8214. },
  8215. },
  8216. [
  8217. {
  8218. name: "Normal",
  8219. height: math.unit(8, "feet"),
  8220. default: true
  8221. },
  8222. {
  8223. name: "Minimacro",
  8224. height: math.unit(250, "feet")
  8225. },
  8226. {
  8227. name: "Macro",
  8228. height: math.unit(2800, "feet")
  8229. },
  8230. {
  8231. name: "Megamacro",
  8232. height: math.unit(5200, "feet")
  8233. },
  8234. {
  8235. name: "Gigamacro",
  8236. height: math.unit(27000, "feet")
  8237. },
  8238. {
  8239. name: "Omega",
  8240. height: math.unit(45000, "feet")
  8241. },
  8242. ]
  8243. ))
  8244. characterMakers.push(() => makeCharacter(
  8245. { name: "Rhys" },
  8246. {
  8247. front: {
  8248. height: math.unit(18, "feet"),
  8249. weight: math.unit(5800, "lb"),
  8250. name: "Front",
  8251. image: {
  8252. source: "./media/characters/rhys/front.svg",
  8253. extra: 3386 / 3090,
  8254. bottom: 0.07
  8255. }
  8256. },
  8257. },
  8258. [
  8259. {
  8260. name: "Normal",
  8261. height: math.unit(18, "feet"),
  8262. default: true
  8263. },
  8264. {
  8265. name: "Working Size",
  8266. height: math.unit(200, "feet")
  8267. },
  8268. {
  8269. name: "Demolition Size",
  8270. height: math.unit(2000, "feet")
  8271. },
  8272. {
  8273. name: "Maximum Licensed Size",
  8274. height: math.unit(5, "miles")
  8275. },
  8276. {
  8277. name: "Maximum Observed Size",
  8278. height: math.unit(10, "yottameters")
  8279. },
  8280. ]
  8281. ))
  8282. characterMakers.push(() => makeCharacter(
  8283. { name: "Toto" },
  8284. {
  8285. front: {
  8286. height: math.unit(6, "feet"),
  8287. weight: math.unit(250, "lb"),
  8288. name: "Front",
  8289. image: {
  8290. source: "./media/characters/toto/front.svg",
  8291. extra: 527 / 479,
  8292. bottom: 0.05
  8293. }
  8294. },
  8295. },
  8296. [
  8297. {
  8298. name: "Micro",
  8299. height: math.unit(3, "feet")
  8300. },
  8301. {
  8302. name: "Normal",
  8303. height: math.unit(10, "feet")
  8304. },
  8305. {
  8306. name: "Macro",
  8307. height: math.unit(150, "feet"),
  8308. default: true
  8309. },
  8310. {
  8311. name: "Megamacro",
  8312. height: math.unit(1200, "feet")
  8313. },
  8314. ]
  8315. ))
  8316. characterMakers.push(() => makeCharacter(
  8317. { name: "King" },
  8318. {
  8319. back: {
  8320. height: math.unit(6, "feet"),
  8321. weight: math.unit(150, "lb"),
  8322. name: "Back",
  8323. image: {
  8324. source: "./media/characters/king/back.svg"
  8325. }
  8326. },
  8327. },
  8328. [
  8329. {
  8330. name: "Micro",
  8331. height: math.unit(2, "inches")
  8332. },
  8333. {
  8334. name: "Normal",
  8335. height: math.unit(8, "feet")
  8336. },
  8337. {
  8338. name: "Macro",
  8339. height: math.unit(200, "feet"),
  8340. default: true
  8341. },
  8342. {
  8343. name: "Megamacro",
  8344. height: math.unit(50, "miles")
  8345. },
  8346. ]
  8347. ))
  8348. characterMakers.push(() => makeCharacter(
  8349. { name: "Cordite" },
  8350. {
  8351. anthro: {
  8352. height: math.unit(6 + 5 / 12, "feet"),
  8353. weight: math.unit(280, "lb"),
  8354. name: "Anthro",
  8355. image: {
  8356. source: "./media/characters/cordite/anthro.svg",
  8357. extra: 1986 / 1905,
  8358. bottom: 0.025
  8359. }
  8360. },
  8361. feral: {
  8362. height: math.unit(2, "feet"),
  8363. weight: math.unit(90, "lb"),
  8364. name: "Feral",
  8365. image: {
  8366. source: "./media/characters/cordite/feral.svg",
  8367. extra: 1260 / 755,
  8368. bottom: 0.05
  8369. }
  8370. },
  8371. },
  8372. [
  8373. {
  8374. name: "Normal",
  8375. height: math.unit(6 + 5 / 12, "feet"),
  8376. default: true
  8377. },
  8378. ]
  8379. ))
  8380. characterMakers.push(() => makeCharacter(
  8381. { name: "Pianostrong" },
  8382. {
  8383. front: {
  8384. height: math.unit(6, "feet"),
  8385. weight: math.unit(150, "lb"),
  8386. name: "Front",
  8387. image: {
  8388. source: "./media/characters/pianostrong/front.svg",
  8389. extra: 6577 / 6254,
  8390. bottom: 0.02
  8391. }
  8392. },
  8393. side: {
  8394. height: math.unit(6, "feet"),
  8395. weight: math.unit(150, "lb"),
  8396. name: "Side",
  8397. image: {
  8398. source: "./media/characters/pianostrong/side.svg",
  8399. extra: 6106 / 5730
  8400. }
  8401. },
  8402. back: {
  8403. height: math.unit(6, "feet"),
  8404. weight: math.unit(150, "lb"),
  8405. name: "Back",
  8406. image: {
  8407. source: "./media/characters/pianostrong/back.svg",
  8408. extra: 6085 / 5733,
  8409. bottom: 0.01
  8410. }
  8411. },
  8412. },
  8413. [
  8414. {
  8415. name: "Macro",
  8416. height: math.unit(100, "feet")
  8417. },
  8418. {
  8419. name: "Macro+",
  8420. height: math.unit(300, "feet"),
  8421. default: true
  8422. },
  8423. {
  8424. name: "Macro++",
  8425. height: math.unit(1000, "feet")
  8426. },
  8427. ]
  8428. ))
  8429. characterMakers.push(() => makeCharacter(
  8430. { name: "Kona" },
  8431. {
  8432. front: {
  8433. height: math.unit(6, "feet"),
  8434. weight: math.unit(150, "lb"),
  8435. name: "Front",
  8436. image: {
  8437. source: "./media/characters/kona/front.svg",
  8438. extra: 2960 / 2629,
  8439. bottom: 0.005
  8440. }
  8441. },
  8442. },
  8443. [
  8444. {
  8445. name: "Normal",
  8446. height: math.unit(11 + 8 / 12, "feet")
  8447. },
  8448. {
  8449. name: "Macro",
  8450. height: math.unit(850, "feet"),
  8451. default: true
  8452. },
  8453. {
  8454. name: "Macro+",
  8455. height: math.unit(1.5, "km"),
  8456. default: true
  8457. },
  8458. {
  8459. name: "Megamacro",
  8460. height: math.unit(80, "miles")
  8461. },
  8462. {
  8463. name: "Gigamacro",
  8464. height: math.unit(3500, "miles")
  8465. },
  8466. ]
  8467. ))
  8468. characterMakers.push(() => makeCharacter(
  8469. { name: "Levi" },
  8470. {
  8471. side: {
  8472. height: math.unit(1.9, "meters"),
  8473. weight: math.unit(326, "kg"),
  8474. name: "Side",
  8475. image: {
  8476. source: "./media/characters/levi/side.svg",
  8477. extra: 1704 / 1334,
  8478. bottom: 0.02
  8479. }
  8480. },
  8481. },
  8482. [
  8483. {
  8484. name: "Normal",
  8485. height: math.unit(1.9, "meters"),
  8486. default: true
  8487. },
  8488. {
  8489. name: "Macro",
  8490. height: math.unit(20, "meters")
  8491. },
  8492. {
  8493. name: "Macro+",
  8494. height: math.unit(200, "meters")
  8495. },
  8496. {
  8497. name: "Megamacro",
  8498. height: math.unit(2, "km")
  8499. },
  8500. {
  8501. name: "Megamacro+",
  8502. height: math.unit(20, "km")
  8503. },
  8504. {
  8505. name: "Gigamacro",
  8506. height: math.unit(2500, "km")
  8507. },
  8508. {
  8509. name: "Gigamacro+",
  8510. height: math.unit(120000, "km")
  8511. },
  8512. {
  8513. name: "Teramacro",
  8514. height: math.unit(7.77e6, "km")
  8515. },
  8516. ]
  8517. ))
  8518. characterMakers.push(() => makeCharacter(
  8519. { name: "BMC" },
  8520. {
  8521. front: {
  8522. height: math.unit(6 + 4 / 12, "feet"),
  8523. weight: math.unit(188, "lb"),
  8524. name: "Front",
  8525. image: {
  8526. source: "./media/characters/bmc/front.svg",
  8527. extra: 1067 / 1022,
  8528. bottom: 0.047
  8529. }
  8530. },
  8531. },
  8532. [
  8533. {
  8534. name: "Human-sized",
  8535. height: math.unit(6 + 4 / 12, "feet")
  8536. },
  8537. {
  8538. name: "Small",
  8539. height: math.unit(250, "feet")
  8540. },
  8541. {
  8542. name: "Normal",
  8543. height: math.unit(1250, "feet"),
  8544. default: true
  8545. },
  8546. {
  8547. name: "Good Day",
  8548. height: math.unit(88, "miles")
  8549. },
  8550. {
  8551. name: "Largest Measured Size",
  8552. height: math.unit(11.2e6, "lightyears")
  8553. },
  8554. ]
  8555. ))
  8556. characterMakers.push(() => makeCharacter(
  8557. { name: "Sven the Kaiju" },
  8558. {
  8559. front: {
  8560. height: math.unit(20, "feet"),
  8561. weight: math.unit(2016, "kg"),
  8562. name: "Front",
  8563. image: {
  8564. source: "./media/characters/sven-the-kaiju/front.svg",
  8565. extra: 1479 / 1449,
  8566. bottom: 0.05
  8567. }
  8568. },
  8569. },
  8570. [
  8571. {
  8572. name: "Fairy",
  8573. height: math.unit(6, "inches")
  8574. },
  8575. {
  8576. name: "Normal",
  8577. height: math.unit(20, "feet"),
  8578. default: true
  8579. },
  8580. {
  8581. name: "Rampage",
  8582. height: math.unit(200, "feet")
  8583. },
  8584. {
  8585. name: "Archfey Forest Guardian",
  8586. height: math.unit(1, "mile")
  8587. },
  8588. ]
  8589. ))
  8590. characterMakers.push(() => makeCharacter(
  8591. { name: "Marik" },
  8592. {
  8593. front: {
  8594. height: math.unit(4, "meters"),
  8595. weight: math.unit(2, "tons"),
  8596. name: "Front",
  8597. image: {
  8598. source: "./media/characters/marik/front.svg",
  8599. extra: 1057 / 1003,
  8600. bottom: 0.08
  8601. }
  8602. },
  8603. },
  8604. [
  8605. {
  8606. name: "Normal",
  8607. height: math.unit(4, "meters"),
  8608. default: true
  8609. },
  8610. {
  8611. name: "Macro",
  8612. height: math.unit(20, "meters")
  8613. },
  8614. {
  8615. name: "Megamacro",
  8616. height: math.unit(50, "km")
  8617. },
  8618. {
  8619. name: "Gigamacro",
  8620. height: math.unit(100, "km")
  8621. },
  8622. {
  8623. name: "Alpha Macro",
  8624. height: math.unit(7.88e7, "yottameters")
  8625. },
  8626. ]
  8627. ))
  8628. characterMakers.push(() => makeCharacter(
  8629. { name: "Mel" },
  8630. {
  8631. front: {
  8632. height: math.unit(6, "feet"),
  8633. weight: math.unit(110, "lb"),
  8634. name: "Front",
  8635. image: {
  8636. source: "./media/characters/mel/front.svg",
  8637. extra: 736 / 617,
  8638. bottom: 0.017
  8639. }
  8640. },
  8641. },
  8642. [
  8643. {
  8644. name: "Pico",
  8645. height: math.unit(3, "pm")
  8646. },
  8647. {
  8648. name: "Nano",
  8649. height: math.unit(3, "nm")
  8650. },
  8651. {
  8652. name: "Micro",
  8653. height: math.unit(0.3, "mm"),
  8654. default: true
  8655. },
  8656. {
  8657. name: "Micro+",
  8658. height: math.unit(3, "mm")
  8659. },
  8660. {
  8661. name: "Normal",
  8662. height: math.unit(5 + 10.5 / 12, "feet")
  8663. },
  8664. ]
  8665. ))
  8666. characterMakers.push(() => makeCharacter(
  8667. { name: "Lykonous" },
  8668. {
  8669. kaiju: {
  8670. height: math.unit(1.75, "meters"),
  8671. weight: math.unit(55, "kg"),
  8672. name: "Kaiju",
  8673. image: {
  8674. source: "./media/characters/lykonous/kaiju.svg",
  8675. extra: 1055 / 946,
  8676. bottom: 0.135
  8677. }
  8678. },
  8679. },
  8680. [
  8681. {
  8682. name: "Normal",
  8683. height: math.unit(2.5, "meters"),
  8684. default: true
  8685. },
  8686. {
  8687. name: "Kaiju Dragon",
  8688. height: math.unit(60, "meters")
  8689. },
  8690. {
  8691. name: "Mega Kaiju",
  8692. height: math.unit(120, "km")
  8693. },
  8694. {
  8695. name: "Giga Kaiju",
  8696. height: math.unit(200, "megameters")
  8697. },
  8698. {
  8699. name: "Terra Kaiju",
  8700. height: math.unit(400, "gigameters")
  8701. },
  8702. {
  8703. name: "Kaiju Dragon God",
  8704. height: math.unit(13000, "exaparsecs")
  8705. },
  8706. ]
  8707. ))
  8708. characterMakers.push(() => makeCharacter(
  8709. { name: "Blü" },
  8710. {
  8711. front: {
  8712. height: math.unit(6, "feet"),
  8713. weight: math.unit(150, "lb"),
  8714. name: "Front",
  8715. image: {
  8716. source: "./media/characters/blü/front.svg",
  8717. extra: 1883 / 1564,
  8718. bottom: 0.031
  8719. }
  8720. },
  8721. },
  8722. [
  8723. {
  8724. name: "Normal",
  8725. height: math.unit(13, "feet"),
  8726. default: true
  8727. },
  8728. {
  8729. name: "Big Boi",
  8730. height: math.unit(150, "meters")
  8731. },
  8732. {
  8733. name: "Mini Stomper",
  8734. height: math.unit(300, "meters")
  8735. },
  8736. {
  8737. name: "Macro",
  8738. height: math.unit(1000, "meters")
  8739. },
  8740. {
  8741. name: "Megamacro",
  8742. height: math.unit(11000, "meters")
  8743. },
  8744. {
  8745. name: "Gigamacro",
  8746. height: math.unit(11000, "km")
  8747. },
  8748. {
  8749. name: "Teramacro",
  8750. height: math.unit(420000, "km")
  8751. },
  8752. {
  8753. name: "Examacro",
  8754. height: math.unit(120, "parsecs")
  8755. },
  8756. {
  8757. name: "God Tho",
  8758. height: math.unit(98000000000, "parsecs")
  8759. },
  8760. ]
  8761. ))
  8762. characterMakers.push(() => makeCharacter(
  8763. { name: "Scales" },
  8764. {
  8765. taurFront: {
  8766. height: math.unit(6, "feet"),
  8767. weight: math.unit(200, "lb"),
  8768. name: "Taur (Front)",
  8769. image: {
  8770. source: "./media/characters/scales/taur-front.svg",
  8771. extra: 1,
  8772. bottom: 0.05
  8773. }
  8774. },
  8775. taurBack: {
  8776. height: math.unit(6, "feet"),
  8777. weight: math.unit(200, "lb"),
  8778. name: "Taur (Back)",
  8779. image: {
  8780. source: "./media/characters/scales/taur-back.svg",
  8781. extra: 1,
  8782. bottom: 0.08
  8783. }
  8784. },
  8785. anthro: {
  8786. height: math.unit(6 * 7 / 12, "feet"),
  8787. weight: math.unit(100, "lb"),
  8788. name: "Anthro",
  8789. image: {
  8790. source: "./media/characters/scales/anthro.svg",
  8791. extra: 1,
  8792. bottom: 0.06
  8793. }
  8794. },
  8795. },
  8796. [
  8797. {
  8798. name: "Normal",
  8799. height: math.unit(12, "feet"),
  8800. default: true
  8801. },
  8802. ]
  8803. ))
  8804. characterMakers.push(() => makeCharacter(
  8805. { name: "Koragos" },
  8806. {
  8807. front: {
  8808. height: math.unit(6, "feet"),
  8809. weight: math.unit(150, "lb"),
  8810. name: "Front",
  8811. image: {
  8812. source: "./media/characters/koragos/front.svg",
  8813. extra: 841 / 794,
  8814. bottom: 0.035
  8815. }
  8816. },
  8817. back: {
  8818. height: math.unit(6, "feet"),
  8819. weight: math.unit(150, "lb"),
  8820. name: "Back",
  8821. image: {
  8822. source: "./media/characters/koragos/back.svg",
  8823. extra: 841 / 810,
  8824. bottom: 0.022
  8825. }
  8826. },
  8827. },
  8828. [
  8829. {
  8830. name: "Normal",
  8831. height: math.unit(6 + 11 / 12, "feet"),
  8832. default: true
  8833. },
  8834. {
  8835. name: "Macro",
  8836. height: math.unit(490, "feet")
  8837. },
  8838. {
  8839. name: "Megamacro",
  8840. height: math.unit(10, "miles")
  8841. },
  8842. {
  8843. name: "Gigamacro",
  8844. height: math.unit(50, "miles")
  8845. },
  8846. ]
  8847. ))
  8848. characterMakers.push(() => makeCharacter(
  8849. { name: "Xylrem" },
  8850. {
  8851. front: {
  8852. height: math.unit(6, "feet"),
  8853. weight: math.unit(250, "lb"),
  8854. name: "Front",
  8855. image: {
  8856. source: "./media/characters/xylrem/front.svg",
  8857. extra: 3323 / 3050,
  8858. bottom: 0.065
  8859. }
  8860. },
  8861. },
  8862. [
  8863. {
  8864. name: "Micro",
  8865. height: math.unit(4, "feet")
  8866. },
  8867. {
  8868. name: "Normal",
  8869. height: math.unit(16, "feet"),
  8870. default: true
  8871. },
  8872. {
  8873. name: "Macro",
  8874. height: math.unit(2720, "feet")
  8875. },
  8876. {
  8877. name: "Megamacro",
  8878. height: math.unit(25000, "miles")
  8879. },
  8880. ]
  8881. ))
  8882. characterMakers.push(() => makeCharacter(
  8883. { name: "Ikideru" },
  8884. {
  8885. front: {
  8886. height: math.unit(8, "feet"),
  8887. weight: math.unit(250, "kg"),
  8888. name: "Front",
  8889. image: {
  8890. source: "./media/characters/ikideru/front.svg",
  8891. extra: 930 / 870,
  8892. bottom: 0.087
  8893. }
  8894. },
  8895. back: {
  8896. height: math.unit(8, "feet"),
  8897. weight: math.unit(250, "kg"),
  8898. name: "Back",
  8899. image: {
  8900. source: "./media/characters/ikideru/back.svg",
  8901. extra: 919 / 852,
  8902. bottom: 0.055
  8903. }
  8904. },
  8905. },
  8906. [
  8907. {
  8908. name: "Rare",
  8909. height: math.unit(8, "feet"),
  8910. default: true
  8911. },
  8912. {
  8913. name: "Playful Loom",
  8914. height: math.unit(80, "feet")
  8915. },
  8916. {
  8917. name: "City Leaner",
  8918. height: math.unit(230, "feet")
  8919. },
  8920. {
  8921. name: "Megamacro",
  8922. height: math.unit(2500, "feet")
  8923. },
  8924. {
  8925. name: "Gigamacro",
  8926. height: math.unit(26400, "feet")
  8927. },
  8928. {
  8929. name: "Tectonic Shifter",
  8930. height: math.unit(1.7, "megameters")
  8931. },
  8932. {
  8933. name: "Planet Carer",
  8934. height: math.unit(21, "megameters")
  8935. },
  8936. {
  8937. name: "God",
  8938. height: math.unit(11157.22, "parsecs")
  8939. },
  8940. ]
  8941. ))
  8942. characterMakers.push(() => makeCharacter(
  8943. { name: "Neo" },
  8944. {
  8945. front: {
  8946. height: math.unit(6, "feet"),
  8947. weight: math.unit(120, "lb"),
  8948. name: "Front",
  8949. image: {
  8950. source: "./media/characters/neo/front.svg"
  8951. }
  8952. },
  8953. },
  8954. [
  8955. {
  8956. name: "Micro",
  8957. height: math.unit(2, "inches"),
  8958. default: true
  8959. },
  8960. {
  8961. name: "Human Size",
  8962. height: math.unit(5 + 8 / 12, "feet")
  8963. },
  8964. ]
  8965. ))
  8966. characterMakers.push(() => makeCharacter(
  8967. { name: "Chauncey (Chantz)" },
  8968. {
  8969. front: {
  8970. height: math.unit(13 + 10 / 12, "feet"),
  8971. weight: math.unit(5320, "lb"),
  8972. name: "Front",
  8973. image: {
  8974. source: "./media/characters/chauncey-chantz/front.svg",
  8975. extra: 1587 / 1435,
  8976. bottom: 0.02
  8977. }
  8978. },
  8979. },
  8980. [
  8981. {
  8982. name: "Normal",
  8983. height: math.unit(13 + 10 / 12, "feet"),
  8984. default: true
  8985. },
  8986. {
  8987. name: "Macro",
  8988. height: math.unit(45, "feet")
  8989. },
  8990. {
  8991. name: "Megamacro",
  8992. height: math.unit(250, "miles")
  8993. },
  8994. {
  8995. name: "Planetary",
  8996. height: math.unit(10000, "miles")
  8997. },
  8998. {
  8999. name: "Galactic",
  9000. height: math.unit(40000, "parsecs")
  9001. },
  9002. {
  9003. name: "Universal",
  9004. height: math.unit(1, "yottameter")
  9005. },
  9006. ]
  9007. ))
  9008. characterMakers.push(() => makeCharacter(
  9009. { name: "Epifox" },
  9010. {
  9011. front: {
  9012. height: math.unit(6, "feet"),
  9013. weight: math.unit(150, "lb"),
  9014. name: "Front",
  9015. image: {
  9016. source: "./media/characters/epifox/front.svg",
  9017. extra: 1,
  9018. bottom: 0.075
  9019. }
  9020. },
  9021. },
  9022. [
  9023. {
  9024. name: "Micro",
  9025. height: math.unit(6, "inches")
  9026. },
  9027. {
  9028. name: "Normal",
  9029. height: math.unit(12, "feet"),
  9030. default: true
  9031. },
  9032. {
  9033. name: "Macro",
  9034. height: math.unit(3810, "feet")
  9035. },
  9036. {
  9037. name: "Megamacro",
  9038. height: math.unit(500, "miles")
  9039. },
  9040. ]
  9041. ))
  9042. characterMakers.push(() => makeCharacter(
  9043. { name: "Colin T." },
  9044. {
  9045. front: {
  9046. height: math.unit(1.8796, "m"),
  9047. weight: math.unit(230, "lb"),
  9048. name: "Front",
  9049. image: {
  9050. source: "./media/characters/colin-t/front.svg",
  9051. extra: 1272 / 1193,
  9052. bottom: 0.07
  9053. }
  9054. },
  9055. },
  9056. [
  9057. {
  9058. name: "Micro",
  9059. height: math.unit(0.571, "meters")
  9060. },
  9061. {
  9062. name: "Normal",
  9063. height: math.unit(1.8796, "meters"),
  9064. default: true
  9065. },
  9066. {
  9067. name: "Tall",
  9068. height: math.unit(4, "meters")
  9069. },
  9070. {
  9071. name: "Macro",
  9072. height: math.unit(67.241, "meters")
  9073. },
  9074. {
  9075. name: "Megamacro",
  9076. height: math.unit(371.856, "meters")
  9077. },
  9078. {
  9079. name: "Planetary",
  9080. height: math.unit(12631.5689, "km")
  9081. },
  9082. ]
  9083. ))
  9084. characterMakers.push(() => makeCharacter(
  9085. { name: "Matvei" },
  9086. {
  9087. front: {
  9088. height: math.unit(1.85, "meters"),
  9089. weight: math.unit(80, "kg"),
  9090. name: "Front",
  9091. image: {
  9092. source: "./media/characters/matvei/front.svg",
  9093. extra: 614 / 594,
  9094. bottom: 0.01
  9095. }
  9096. },
  9097. },
  9098. [
  9099. {
  9100. name: "Normal",
  9101. height: math.unit(1.85, "meters"),
  9102. default: true
  9103. },
  9104. ]
  9105. ))
  9106. characterMakers.push(() => makeCharacter(
  9107. { name: "Quincy" },
  9108. {
  9109. front: {
  9110. height: math.unit(5 + 9 / 12, "feet"),
  9111. weight: math.unit(70, "lb"),
  9112. name: "Front",
  9113. image: {
  9114. source: "./media/characters/quincy/front.svg",
  9115. extra: 3041 / 2751
  9116. }
  9117. },
  9118. back: {
  9119. height: math.unit(5 + 9 / 12, "feet"),
  9120. weight: math.unit(70, "lb"),
  9121. name: "Back",
  9122. image: {
  9123. source: "./media/characters/quincy/back.svg",
  9124. extra: 3041 / 2751
  9125. }
  9126. },
  9127. flying: {
  9128. height: math.unit(5 + 4 / 12, "feet"),
  9129. weight: math.unit(70, "lb"),
  9130. name: "Flying",
  9131. image: {
  9132. source: "./media/characters/quincy/flying.svg",
  9133. extra: 1044 / 930
  9134. }
  9135. },
  9136. },
  9137. [
  9138. {
  9139. name: "Micro",
  9140. height: math.unit(3, "cm")
  9141. },
  9142. {
  9143. name: "Normal",
  9144. height: math.unit(5 + 9 / 12, "feet")
  9145. },
  9146. {
  9147. name: "Macro",
  9148. height: math.unit(200, "meters"),
  9149. default: true
  9150. },
  9151. {
  9152. name: "Megamacro",
  9153. height: math.unit(1000, "meters")
  9154. },
  9155. ]
  9156. ))
  9157. characterMakers.push(() => makeCharacter(
  9158. { name: "Vanrel" },
  9159. {
  9160. front: {
  9161. height: math.unit(4 + 7 / 12, "feet"),
  9162. weight: math.unit(150, "lb"),
  9163. name: "Front",
  9164. image: {
  9165. source: "./media/characters/vanrel/front.svg",
  9166. extra: 1,
  9167. bottom: 0.02
  9168. }
  9169. },
  9170. side: {
  9171. height: math.unit(4 + 7 / 12, "feet"),
  9172. weight: math.unit(150, "lb"),
  9173. name: "Side",
  9174. image: {
  9175. source: "./media/characters/vanrel/side.svg",
  9176. extra: 1,
  9177. bottom: 0.025
  9178. }
  9179. },
  9180. tome: {
  9181. height: math.unit(1.35, "feet"),
  9182. weight: math.unit(10, "lb"),
  9183. name: "Vanrel's Tome",
  9184. rename: true,
  9185. image: {
  9186. source: "./media/characters/vanrel/tome.svg"
  9187. }
  9188. },
  9189. beans: {
  9190. height: math.unit(0.89, "feet"),
  9191. name: "Beans",
  9192. image: {
  9193. source: "./media/characters/vanrel/beans.svg"
  9194. }
  9195. },
  9196. },
  9197. [
  9198. {
  9199. name: "Normal",
  9200. height: math.unit(4 + 7 / 12, "feet"),
  9201. default: true
  9202. },
  9203. ]
  9204. ))
  9205. characterMakers.push(() => makeCharacter(
  9206. { name: "Kuiper Vanrel" },
  9207. {
  9208. front: {
  9209. height: math.unit(7 + 5 / 12, "feet"),
  9210. weight: math.unit(150, "lb"),
  9211. name: "Front",
  9212. image: {
  9213. source: "./media/characters/kuiper-vanrel/front.svg",
  9214. extra: 1118 / 1068,
  9215. bottom: 0.09
  9216. }
  9217. },
  9218. foot: {
  9219. height: math.unit(0.55, "meters"),
  9220. name: "Foot",
  9221. image: {
  9222. source: "./media/characters/kuiper-vanrel/foot.svg",
  9223. }
  9224. },
  9225. },
  9226. [
  9227. {
  9228. name: "Normal",
  9229. height: math.unit(7 + 5 / 12, "feet"),
  9230. default: true
  9231. },
  9232. ]
  9233. ))
  9234. characterMakers.push(() => makeCharacter(
  9235. { name: "Keset Vanrel" },
  9236. {
  9237. front: {
  9238. height: math.unit(8 + 5 / 12, "feet"),
  9239. weight: math.unit(150, "lb"),
  9240. name: "Front",
  9241. image: {
  9242. source: "./media/characters/keset-vanrel/front.svg",
  9243. extra: 1150 / 1084,
  9244. bottom: 0.05
  9245. }
  9246. },
  9247. hand: {
  9248. height: math.unit(0.6, "meters"),
  9249. name: "Hand",
  9250. image: {
  9251. source: "./media/characters/keset-vanrel/hand.svg"
  9252. }
  9253. },
  9254. foot: {
  9255. height: math.unit(0.94978, "meters"),
  9256. name: "Foot",
  9257. image: {
  9258. source: "./media/characters/keset-vanrel/foot.svg"
  9259. }
  9260. },
  9261. },
  9262. [
  9263. {
  9264. name: "Normal",
  9265. height: math.unit(8 + 5 / 12, "feet"),
  9266. default: true
  9267. },
  9268. ]
  9269. ))
  9270. characterMakers.push(() => makeCharacter(
  9271. { name: "Neos" },
  9272. {
  9273. front: {
  9274. height: math.unit(6, "feet"),
  9275. weight: math.unit(150, "lb"),
  9276. name: "Front",
  9277. image: {
  9278. source: "./media/characters/neos/front.svg",
  9279. extra: 1696 / 992,
  9280. bottom: 0.14
  9281. }
  9282. },
  9283. },
  9284. [
  9285. {
  9286. name: "Normal",
  9287. height: math.unit(54, "cm"),
  9288. default: true
  9289. },
  9290. {
  9291. name: "Macro",
  9292. height: math.unit(100, "m")
  9293. },
  9294. {
  9295. name: "Megamacro",
  9296. height: math.unit(10, "km")
  9297. },
  9298. {
  9299. name: "Megamacro+",
  9300. height: math.unit(100, "km")
  9301. },
  9302. {
  9303. name: "Gigamacro",
  9304. height: math.unit(100, "Mm")
  9305. },
  9306. {
  9307. name: "Teramacro",
  9308. height: math.unit(100, "Gm")
  9309. },
  9310. {
  9311. name: "Examacro",
  9312. height: math.unit(100, "Em")
  9313. },
  9314. {
  9315. name: "Godly",
  9316. height: math.unit(10000, "Ym")
  9317. },
  9318. {
  9319. name: "Beyond Godly",
  9320. height: math.unit(10000000, "Ym")
  9321. },
  9322. ]
  9323. ))
  9324. characterMakers.push(() => makeCharacter(
  9325. { name: "Sammy Mouse" },
  9326. {
  9327. feminine: {
  9328. height: math.unit(5, "feet"),
  9329. weight: math.unit(100, "lb"),
  9330. name: "Feminine",
  9331. image: {
  9332. source: "./media/characters/sammy-mouse/feminine.svg",
  9333. extra: 2526 / 2425,
  9334. bottom: 0.123
  9335. }
  9336. },
  9337. masculine: {
  9338. height: math.unit(5, "feet"),
  9339. weight: math.unit(100, "lb"),
  9340. name: "Masculine",
  9341. image: {
  9342. source: "./media/characters/sammy-mouse/masculine.svg",
  9343. extra: 2526 / 2425,
  9344. bottom: 0.123
  9345. }
  9346. },
  9347. },
  9348. [
  9349. {
  9350. name: "Micro",
  9351. height: math.unit(5, "inches")
  9352. },
  9353. {
  9354. name: "Normal",
  9355. height: math.unit(5, "feet"),
  9356. default: true
  9357. },
  9358. {
  9359. name: "Macro",
  9360. height: math.unit(60, "feet")
  9361. },
  9362. ]
  9363. ))
  9364. characterMakers.push(() => makeCharacter(
  9365. { name: "Kole" },
  9366. {
  9367. front: {
  9368. height: math.unit(4, "feet"),
  9369. weight: math.unit(50, "lb"),
  9370. name: "Front",
  9371. image: {
  9372. source: "./media/characters/kole/front.svg",
  9373. extra: 1423 / 1303,
  9374. bottom: 0.025
  9375. }
  9376. },
  9377. back: {
  9378. height: math.unit(4, "feet"),
  9379. weight: math.unit(50, "lb"),
  9380. name: "Back",
  9381. image: {
  9382. source: "./media/characters/kole/back.svg",
  9383. extra: 1426 / 1280,
  9384. bottom: 0.02
  9385. }
  9386. },
  9387. },
  9388. [
  9389. {
  9390. name: "Normal",
  9391. height: math.unit(4, "feet"),
  9392. default: true
  9393. },
  9394. ]
  9395. ))
  9396. characterMakers.push(() => makeCharacter(
  9397. { name: "Rufran" },
  9398. {
  9399. front: {
  9400. height: math.unit(2 + 6 / 12, "feet"),
  9401. weight: math.unit(20, "lb"),
  9402. name: "Front",
  9403. image: {
  9404. source: "./media/characters/rufran/front.svg",
  9405. extra: 2041 / 1839,
  9406. bottom: 0.055
  9407. }
  9408. },
  9409. back: {
  9410. height: math.unit(2 + 6 / 12, "feet"),
  9411. weight: math.unit(20, "lb"),
  9412. name: "Back",
  9413. image: {
  9414. source: "./media/characters/rufran/back.svg",
  9415. extra: 2054 / 1839,
  9416. bottom: 0.01
  9417. }
  9418. },
  9419. hand: {
  9420. height: math.unit(0.2166, "meters"),
  9421. name: "Hand",
  9422. image: {
  9423. source: "./media/characters/rufran/hand.svg"
  9424. }
  9425. },
  9426. foot: {
  9427. height: math.unit(0.185, "meters"),
  9428. name: "Foot",
  9429. image: {
  9430. source: "./media/characters/rufran/foot.svg"
  9431. }
  9432. },
  9433. },
  9434. [
  9435. {
  9436. name: "Micro",
  9437. height: math.unit(1, "inch")
  9438. },
  9439. {
  9440. name: "Normal",
  9441. height: math.unit(2 + 6 / 12, "feet"),
  9442. default: true
  9443. },
  9444. {
  9445. name: "Big",
  9446. height: math.unit(60, "feet")
  9447. },
  9448. {
  9449. name: "Macro",
  9450. height: math.unit(325, "feet")
  9451. },
  9452. ]
  9453. ))
  9454. characterMakers.push(() => makeCharacter(
  9455. { name: "Chip" },
  9456. {
  9457. front: {
  9458. height: math.unit(0.3, "meters"),
  9459. weight: math.unit(3.5, "kg"),
  9460. name: "Front",
  9461. image: {
  9462. source: "./media/characters/chip/front.svg",
  9463. extra: 748 / 674
  9464. }
  9465. },
  9466. },
  9467. [
  9468. {
  9469. name: "Micro",
  9470. height: math.unit(1, "inch"),
  9471. default: true
  9472. },
  9473. ]
  9474. ))
  9475. characterMakers.push(() => makeCharacter(
  9476. { name: "Torvid" },
  9477. {
  9478. side: {
  9479. height: math.unit(2.3, "meters"),
  9480. weight: math.unit(3500, "lb"),
  9481. name: "Side",
  9482. image: {
  9483. source: "./media/characters/torvid/side.svg",
  9484. extra: 1972 / 722,
  9485. bottom: 0.035
  9486. }
  9487. },
  9488. },
  9489. [
  9490. {
  9491. name: "Normal",
  9492. height: math.unit(2.3, "meters"),
  9493. default: true
  9494. },
  9495. ]
  9496. ))
  9497. characterMakers.push(() => makeCharacter(
  9498. { name: "Susan" },
  9499. {
  9500. front: {
  9501. height: math.unit(2, "meters"),
  9502. weight: math.unit(150.5, "kg"),
  9503. name: "Front",
  9504. image: {
  9505. source: "./media/characters/susan/front.svg",
  9506. extra: 693 / 635,
  9507. bottom: 0.05
  9508. }
  9509. },
  9510. },
  9511. [
  9512. {
  9513. name: "Megamacro",
  9514. height: math.unit(505, "miles"),
  9515. default: true
  9516. },
  9517. ]
  9518. ))
  9519. characterMakers.push(() => makeCharacter(
  9520. { name: "Raindrops" },
  9521. {
  9522. front: {
  9523. height: math.unit(6, "feet"),
  9524. weight: math.unit(150, "lb"),
  9525. name: "Front",
  9526. image: {
  9527. source: "./media/characters/raindrops/front.svg",
  9528. extra: 2655 / 2461,
  9529. bottom: 0.02
  9530. }
  9531. },
  9532. back: {
  9533. height: math.unit(6, "feet"),
  9534. weight: math.unit(150, "lb"),
  9535. name: "Back",
  9536. image: {
  9537. source: "./media/characters/raindrops/back.svg",
  9538. extra: 2574 / 2400,
  9539. bottom: 0.03
  9540. }
  9541. },
  9542. },
  9543. [
  9544. {
  9545. name: "Micro",
  9546. height: math.unit(6, "inches")
  9547. },
  9548. {
  9549. name: "Normal",
  9550. height: math.unit(6 + 2 / 12, "feet")
  9551. },
  9552. {
  9553. name: "Macro",
  9554. height: math.unit(131, "feet"),
  9555. default: true
  9556. },
  9557. {
  9558. name: "Megamacro",
  9559. height: math.unit(15, "miles")
  9560. },
  9561. {
  9562. name: "Gigamacro",
  9563. height: math.unit(4000, "miles")
  9564. },
  9565. {
  9566. name: "Teramacro",
  9567. height: math.unit(315000, "miles")
  9568. },
  9569. ]
  9570. ))
  9571. characterMakers.push(() => makeCharacter(
  9572. { name: "Tezwa" },
  9573. {
  9574. front: {
  9575. height: math.unit(2.794, "meters"),
  9576. weight: math.unit(325, "kg"),
  9577. name: "Front",
  9578. image: {
  9579. source: "./media/characters/tezwa/front.svg",
  9580. extra: 2083 / 1906,
  9581. bottom: 0.031
  9582. }
  9583. },
  9584. foot: {
  9585. height: math.unit(0.687, "meters"),
  9586. name: "Foot",
  9587. image: {
  9588. source: "./media/characters/tezwa/foot.svg"
  9589. }
  9590. },
  9591. },
  9592. [
  9593. {
  9594. name: "Normal",
  9595. height: math.unit(9 + 2 / 12, "feet"),
  9596. default: true
  9597. },
  9598. ]
  9599. ))
  9600. characterMakers.push(() => makeCharacter(
  9601. { name: "Typhus" },
  9602. {
  9603. front: {
  9604. height: math.unit(58, "feet"),
  9605. weight: math.unit(89000, "lb"),
  9606. name: "Front",
  9607. image: {
  9608. source: "./media/characters/typhus/front.svg",
  9609. extra: 816 / 800,
  9610. bottom: 0.065
  9611. }
  9612. },
  9613. },
  9614. [
  9615. {
  9616. name: "Macro",
  9617. height: math.unit(58, "feet"),
  9618. default: true
  9619. },
  9620. ]
  9621. ))
  9622. characterMakers.push(() => makeCharacter(
  9623. { name: "Lyra Von Wulf" },
  9624. {
  9625. front: {
  9626. height: math.unit(12, "feet"),
  9627. weight: math.unit(6, "tonnes"),
  9628. name: "Front",
  9629. image: {
  9630. source: "./media/characters/lyra-von-wulf/front.svg",
  9631. extra: 1,
  9632. bottom: 0.10
  9633. }
  9634. },
  9635. frontMecha: {
  9636. height: math.unit(12, "feet"),
  9637. weight: math.unit(12, "tonnes"),
  9638. name: "Front (Mecha)",
  9639. image: {
  9640. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  9641. extra: 1,
  9642. bottom: 0.042
  9643. }
  9644. },
  9645. maw: {
  9646. height: math.unit(2.2, "feet"),
  9647. name: "Maw",
  9648. image: {
  9649. source: "./media/characters/lyra-von-wulf/maw.svg"
  9650. }
  9651. },
  9652. },
  9653. [
  9654. {
  9655. name: "Normal",
  9656. height: math.unit(12, "feet"),
  9657. default: true
  9658. },
  9659. {
  9660. name: "Classic",
  9661. height: math.unit(50, "feet")
  9662. },
  9663. {
  9664. name: "Macro",
  9665. height: math.unit(500, "feet")
  9666. },
  9667. {
  9668. name: "Megamacro",
  9669. height: math.unit(1, "mile")
  9670. },
  9671. {
  9672. name: "Gigamacro",
  9673. height: math.unit(400, "miles")
  9674. },
  9675. {
  9676. name: "Teramacro",
  9677. height: math.unit(22000, "miles")
  9678. },
  9679. {
  9680. name: "Solarmacro",
  9681. height: math.unit(8600000, "miles")
  9682. },
  9683. {
  9684. name: "Galactic",
  9685. height: math.unit(1057000, "lightyears")
  9686. },
  9687. ]
  9688. ))
  9689. characterMakers.push(() => makeCharacter(
  9690. { name: "Dixon" },
  9691. {
  9692. front: {
  9693. height: math.unit(6 + 10 / 12, "feet"),
  9694. weight: math.unit(150, "lb"),
  9695. name: "Front",
  9696. image: {
  9697. source: "./media/characters/dixon/front.svg",
  9698. extra: 3361 / 3209,
  9699. bottom: 0.01
  9700. }
  9701. },
  9702. },
  9703. [
  9704. {
  9705. name: "Normal",
  9706. height: math.unit(6 + 10 / 12, "feet"),
  9707. default: true
  9708. },
  9709. {
  9710. name: "Big",
  9711. height: math.unit(12, "meters")
  9712. },
  9713. {
  9714. name: "Macro",
  9715. height: math.unit(500, "meters")
  9716. },
  9717. {
  9718. name: "Megamacro",
  9719. height: math.unit(2, "km")
  9720. },
  9721. ]
  9722. ))
  9723. characterMakers.push(() => makeCharacter(
  9724. { name: "Kauko" },
  9725. {
  9726. front: {
  9727. height: math.unit(185, "cm"),
  9728. weight: math.unit(68, "kg"),
  9729. name: "Front",
  9730. image: {
  9731. source: "./media/characters/kauko/front.svg",
  9732. extra: 1455 / 1421,
  9733. bottom: 0.03
  9734. }
  9735. },
  9736. back: {
  9737. height: math.unit(185, "cm"),
  9738. weight: math.unit(68, "kg"),
  9739. name: "Back",
  9740. image: {
  9741. source: "./media/characters/kauko/back.svg",
  9742. extra: 1455 / 1421,
  9743. bottom: 0.004
  9744. }
  9745. },
  9746. },
  9747. [
  9748. {
  9749. name: "Normal",
  9750. height: math.unit(185, "cm"),
  9751. default: true
  9752. },
  9753. ]
  9754. ))
  9755. characterMakers.push(() => makeCharacter(
  9756. { name: "Varg" },
  9757. {
  9758. front: {
  9759. height: math.unit(6, "feet"),
  9760. weight: math.unit(150, "kg"),
  9761. name: "Front",
  9762. image: {
  9763. source: "./media/characters/varg/front.svg",
  9764. extra: 1108 / 1018,
  9765. bottom: 0.0375
  9766. }
  9767. },
  9768. },
  9769. [
  9770. {
  9771. name: "Normal",
  9772. height: math.unit(5, "meters")
  9773. },
  9774. {
  9775. name: "Gigamacro",
  9776. height: math.unit(211, "km"),
  9777. default: true
  9778. },
  9779. ]
  9780. ))
  9781. characterMakers.push(() => makeCharacter(
  9782. { name: "Dayza" },
  9783. {
  9784. front: {
  9785. height: math.unit(7 + 7 / 12, "feet"),
  9786. weight: math.unit(267, "lb"),
  9787. name: "Front",
  9788. image: {
  9789. source: "./media/characters/dayza/front.svg",
  9790. extra: 1262 / 1200,
  9791. bottom: 0.035
  9792. }
  9793. },
  9794. side: {
  9795. height: math.unit(7 + 7 / 12, "feet"),
  9796. weight: math.unit(267, "lb"),
  9797. name: "Side",
  9798. image: {
  9799. source: "./media/characters/dayza/side.svg",
  9800. extra: 1295 / 1245,
  9801. bottom: 0.05
  9802. }
  9803. },
  9804. back: {
  9805. height: math.unit(7 + 7 / 12, "feet"),
  9806. weight: math.unit(267, "lb"),
  9807. name: "Back",
  9808. image: {
  9809. source: "./media/characters/dayza/back.svg",
  9810. extra: 1241 / 1170
  9811. }
  9812. },
  9813. },
  9814. [
  9815. {
  9816. name: "Normal",
  9817. height: math.unit(7 + 7 / 12, "feet"),
  9818. default: true
  9819. },
  9820. {
  9821. name: "Macro",
  9822. height: math.unit(155, "feet")
  9823. },
  9824. ]
  9825. ))
  9826. characterMakers.push(() => makeCharacter(
  9827. { name: "Xanthos" },
  9828. {
  9829. front: {
  9830. height: math.unit(6 + 5 / 12, "feet"),
  9831. weight: math.unit(160, "lb"),
  9832. name: "Front",
  9833. image: {
  9834. source: "./media/characters/xanthos/front.svg",
  9835. extra: 1,
  9836. bottom: 0.04
  9837. }
  9838. },
  9839. back: {
  9840. height: math.unit(6 + 5 / 12, "feet"),
  9841. weight: math.unit(160, "lb"),
  9842. name: "Back",
  9843. image: {
  9844. source: "./media/characters/xanthos/back.svg",
  9845. extra: 1,
  9846. bottom: 0.03
  9847. }
  9848. },
  9849. hand: {
  9850. height: math.unit(0.928, "feet"),
  9851. name: "Hand",
  9852. image: {
  9853. source: "./media/characters/xanthos/hand.svg"
  9854. }
  9855. },
  9856. foot: {
  9857. height: math.unit(1.286, "feet"),
  9858. name: "Foot",
  9859. image: {
  9860. source: "./media/characters/xanthos/foot.svg"
  9861. }
  9862. },
  9863. },
  9864. [
  9865. {
  9866. name: "Normal",
  9867. height: math.unit(6 + 5 / 12, "feet"),
  9868. default: true
  9869. },
  9870. {
  9871. name: "Normal+",
  9872. height: math.unit(6, "meters")
  9873. },
  9874. {
  9875. name: "Macro",
  9876. height: math.unit(40, "feet")
  9877. },
  9878. {
  9879. name: "Macro+",
  9880. height: math.unit(200, "meters")
  9881. },
  9882. {
  9883. name: "Megamacro",
  9884. height: math.unit(20, "km")
  9885. },
  9886. {
  9887. name: "Megamacro+",
  9888. height: math.unit(100, "km")
  9889. },
  9890. ]
  9891. ))
  9892. characterMakers.push(() => makeCharacter(
  9893. { name: "Grynn" },
  9894. {
  9895. front: {
  9896. height: math.unit(6 + 3 / 12, "feet"),
  9897. weight: math.unit(215, "lb"),
  9898. name: "Front",
  9899. image: {
  9900. source: "./media/characters/grynn/front.svg",
  9901. extra: 4627 / 4209,
  9902. bottom: 0.047
  9903. }
  9904. },
  9905. },
  9906. [
  9907. {
  9908. name: "Micro",
  9909. height: math.unit(6, "inches")
  9910. },
  9911. {
  9912. name: "Normal",
  9913. height: math.unit(6 + 3 / 12, "feet"),
  9914. default: true
  9915. },
  9916. {
  9917. name: "Big",
  9918. height: math.unit(104, "feet")
  9919. },
  9920. {
  9921. name: "Macro",
  9922. height: math.unit(944, "feet")
  9923. },
  9924. {
  9925. name: "Macro+",
  9926. height: math.unit(9480, "feet")
  9927. },
  9928. {
  9929. name: "Megamacro",
  9930. height: math.unit(78752, "feet")
  9931. },
  9932. {
  9933. name: "Megamacro+",
  9934. height: math.unit(630128, "feet")
  9935. },
  9936. {
  9937. name: "Megamacro++",
  9938. height: math.unit(3150695, "feet")
  9939. },
  9940. ]
  9941. ))
  9942. characterMakers.push(() => makeCharacter(
  9943. { name: "Mocha Aura" },
  9944. {
  9945. front: {
  9946. height: math.unit(7 + 5 / 12, "feet"),
  9947. weight: math.unit(450, "lb"),
  9948. name: "Front",
  9949. image: {
  9950. source: "./media/characters/mocha-aura/front.svg",
  9951. extra: 1907 / 1817,
  9952. bottom: 0.04
  9953. }
  9954. },
  9955. back: {
  9956. height: math.unit(7 + 5 / 12, "feet"),
  9957. weight: math.unit(450, "lb"),
  9958. name: "Back",
  9959. image: {
  9960. source: "./media/characters/mocha-aura/back.svg",
  9961. extra: 1900 / 1825,
  9962. bottom: 0.045
  9963. }
  9964. },
  9965. },
  9966. [
  9967. {
  9968. name: "Nano",
  9969. height: math.unit(1, "nm")
  9970. },
  9971. {
  9972. name: "Megamicro",
  9973. height: math.unit(1, "mm")
  9974. },
  9975. {
  9976. name: "Micro",
  9977. height: math.unit(3, "inches")
  9978. },
  9979. {
  9980. name: "Normal",
  9981. height: math.unit(7 + 5 / 12, "feet"),
  9982. default: true
  9983. },
  9984. {
  9985. name: "Macro",
  9986. height: math.unit(30, "feet")
  9987. },
  9988. {
  9989. name: "Megamacro",
  9990. height: math.unit(3500, "feet")
  9991. },
  9992. {
  9993. name: "Teramacro",
  9994. height: math.unit(500000, "miles")
  9995. },
  9996. {
  9997. name: "Petamacro",
  9998. height: math.unit(50000000000000000, "parsecs")
  9999. },
  10000. ]
  10001. ))
  10002. characterMakers.push(() => makeCharacter(
  10003. { name: "Ilisha Devya" },
  10004. {
  10005. front: {
  10006. height: math.unit(6, "feet"),
  10007. weight: math.unit(150, "lb"),
  10008. name: "Front",
  10009. image: {
  10010. source: "./media/characters/ilisha-devya/front.svg",
  10011. extra: 1,
  10012. bottom: 0.175
  10013. }
  10014. },
  10015. back: {
  10016. height: math.unit(6, "feet"),
  10017. weight: math.unit(150, "lb"),
  10018. name: "Back",
  10019. image: {
  10020. source: "./media/characters/ilisha-devya/back.svg",
  10021. extra: 1,
  10022. bottom: 0.015
  10023. }
  10024. },
  10025. },
  10026. [
  10027. {
  10028. name: "Macro",
  10029. height: math.unit(500, "feet"),
  10030. default: true
  10031. },
  10032. {
  10033. name: "Megamacro",
  10034. height: math.unit(10, "miles")
  10035. },
  10036. {
  10037. name: "Gigamacro",
  10038. height: math.unit(100000, "miles")
  10039. },
  10040. {
  10041. name: "Examacro",
  10042. height: math.unit(1e9, "lightyears")
  10043. },
  10044. {
  10045. name: "Omniversal",
  10046. height: math.unit(1e33, "lightyears")
  10047. },
  10048. {
  10049. name: "Beyond Infinite",
  10050. height: math.unit(1e100, "lightyears")
  10051. },
  10052. ]
  10053. ))
  10054. characterMakers.push(() => makeCharacter(
  10055. { name: "Mira" },
  10056. {
  10057. Side: {
  10058. height: math.unit(6, "feet"),
  10059. weight: math.unit(150, "lb"),
  10060. name: "Side",
  10061. image: {
  10062. source: "./media/characters/mira/side.svg",
  10063. extra: 900 / 799,
  10064. bottom: 0.02
  10065. }
  10066. },
  10067. },
  10068. [
  10069. {
  10070. name: "Human Size",
  10071. height: math.unit(6, "feet")
  10072. },
  10073. {
  10074. name: "Macro",
  10075. height: math.unit(100, "feet"),
  10076. default: true
  10077. },
  10078. {
  10079. name: "Megamacro",
  10080. height: math.unit(10, "miles")
  10081. },
  10082. {
  10083. name: "Gigamacro",
  10084. height: math.unit(25000, "miles")
  10085. },
  10086. {
  10087. name: "Teramacro",
  10088. height: math.unit(300, "AU")
  10089. },
  10090. {
  10091. name: "Full Size",
  10092. height: math.unit(4.5e10, "lightyears")
  10093. },
  10094. ]
  10095. ))
  10096. characterMakers.push(() => makeCharacter(
  10097. { name: "Holly" },
  10098. {
  10099. front: {
  10100. height: math.unit(6, "feet"),
  10101. weight: math.unit(150, "lb"),
  10102. name: "Front",
  10103. image: {
  10104. source: "./media/characters/holly/front.svg",
  10105. extra: 639 / 606
  10106. }
  10107. },
  10108. back: {
  10109. height: math.unit(6, "feet"),
  10110. weight: math.unit(150, "lb"),
  10111. name: "Back",
  10112. image: {
  10113. source: "./media/characters/holly/back.svg",
  10114. extra: 623 / 598
  10115. }
  10116. },
  10117. frontWorking: {
  10118. height: math.unit(6, "feet"),
  10119. weight: math.unit(150, "lb"),
  10120. name: "Front (Working)",
  10121. image: {
  10122. source: "./media/characters/holly/front-working.svg",
  10123. extra: 607 / 577,
  10124. bottom: 0.048
  10125. }
  10126. },
  10127. },
  10128. [
  10129. {
  10130. name: "Normal",
  10131. height: math.unit(12 + 3 / 12, "feet"),
  10132. default: true
  10133. },
  10134. ]
  10135. ))
  10136. characterMakers.push(() => makeCharacter(
  10137. { name: "Porter" },
  10138. {
  10139. front: {
  10140. height: math.unit(6, "feet"),
  10141. weight: math.unit(150, "lb"),
  10142. name: "Front",
  10143. image: {
  10144. source: "./media/characters/porter/front.svg",
  10145. extra: 1,
  10146. bottom: 0.01
  10147. }
  10148. },
  10149. frontRobes: {
  10150. height: math.unit(6, "feet"),
  10151. weight: math.unit(150, "lb"),
  10152. name: "Front (Robes)",
  10153. image: {
  10154. source: "./media/characters/porter/front-robes.svg",
  10155. extra: 1.01,
  10156. bottom: 0.01
  10157. }
  10158. },
  10159. },
  10160. [
  10161. {
  10162. name: "Normal",
  10163. height: math.unit(11 + 9 / 12, "feet"),
  10164. default: true
  10165. },
  10166. ]
  10167. ))
  10168. characterMakers.push(() => makeCharacter(
  10169. { name: "Lucy" },
  10170. {
  10171. legendary: {
  10172. height: math.unit(6, "feet"),
  10173. weight: math.unit(150, "lb"),
  10174. name: "Legendary",
  10175. image: {
  10176. source: "./media/characters/lucy/legendary.svg",
  10177. extra: 1355 / 1100,
  10178. bottom: 0.045
  10179. }
  10180. },
  10181. },
  10182. [
  10183. {
  10184. name: "Legendary",
  10185. height: math.unit(86882 * 2, "miles"),
  10186. default: true
  10187. },
  10188. ]
  10189. ))
  10190. characterMakers.push(() => makeCharacter(
  10191. { name: "Drusilla" },
  10192. {
  10193. front: {
  10194. height: math.unit(6, "feet"),
  10195. weight: math.unit(150, "lb"),
  10196. name: "Front",
  10197. image: {
  10198. source: "./media/characters/drusilla/front.svg",
  10199. extra: 678 / 635,
  10200. bottom: 0.03
  10201. }
  10202. },
  10203. back: {
  10204. height: math.unit(6, "feet"),
  10205. weight: math.unit(150, "lb"),
  10206. name: "Back",
  10207. image: {
  10208. source: "./media/characters/drusilla/back.svg",
  10209. extra: 678 / 635,
  10210. bottom: 0.005
  10211. }
  10212. },
  10213. },
  10214. [
  10215. {
  10216. name: "Macro",
  10217. height: math.unit(100, "feet")
  10218. },
  10219. {
  10220. name: "Canon Height",
  10221. height: math.unit(2000, "feet"),
  10222. default: true
  10223. },
  10224. ]
  10225. ))
  10226. characterMakers.push(() => makeCharacter(
  10227. { name: "Renard Thatch" },
  10228. {
  10229. front: {
  10230. height: math.unit(6, "feet"),
  10231. weight: math.unit(180, "lb"),
  10232. name: "Front",
  10233. image: {
  10234. source: "./media/characters/renard-thatch/front.svg",
  10235. extra: 2411 / 2275,
  10236. bottom: 0.01
  10237. }
  10238. },
  10239. frontPosing: {
  10240. height: math.unit(6, "feet"),
  10241. weight: math.unit(180, "lb"),
  10242. name: "Front (Posing)",
  10243. image: {
  10244. source: "./media/characters/renard-thatch/front-posing.svg",
  10245. extra: 2381 / 2261,
  10246. bottom: 0.01
  10247. }
  10248. },
  10249. back: {
  10250. height: math.unit(6, "feet"),
  10251. weight: math.unit(180, "lb"),
  10252. name: "Back",
  10253. image: {
  10254. source: "./media/characters/renard-thatch/back.svg",
  10255. extra: 2428 / 2288
  10256. }
  10257. },
  10258. },
  10259. [
  10260. {
  10261. name: "Micro",
  10262. height: math.unit(3, "inches")
  10263. },
  10264. {
  10265. name: "Default",
  10266. height: math.unit(6, "feet"),
  10267. default: true
  10268. },
  10269. {
  10270. name: "Macro",
  10271. height: math.unit(75, "feet")
  10272. },
  10273. ]
  10274. ))
  10275. characterMakers.push(() => makeCharacter(
  10276. { name: "Sekvra" },
  10277. {
  10278. front: {
  10279. height: math.unit(1450, "feet"),
  10280. weight: math.unit(1.21e6, "tons"),
  10281. name: "Front",
  10282. image: {
  10283. source: "./media/characters/sekvra/front.svg",
  10284. extra: 1,
  10285. bottom: 0.03
  10286. }
  10287. },
  10288. frontClothed: {
  10289. height: math.unit(1450, "feet"),
  10290. weight: math.unit(1.21e6, "tons"),
  10291. name: "Front (Clothed)",
  10292. image: {
  10293. source: "./media/characters/sekvra/front-clothed.svg",
  10294. extra: 1,
  10295. bottom: 0.03
  10296. }
  10297. },
  10298. side: {
  10299. height: math.unit(1450, "feet"),
  10300. weight: math.unit(1.21e6, "tons"),
  10301. name: "Side",
  10302. image: {
  10303. source: "./media/characters/sekvra/side.svg",
  10304. extra: 1,
  10305. bottom: 0.025
  10306. }
  10307. },
  10308. back: {
  10309. height: math.unit(1450, "feet"),
  10310. weight: math.unit(1.21e6, "tons"),
  10311. name: "Back",
  10312. image: {
  10313. source: "./media/characters/sekvra/back.svg",
  10314. extra: 1,
  10315. bottom: 0.005
  10316. }
  10317. },
  10318. },
  10319. [
  10320. {
  10321. name: "Macro",
  10322. height: math.unit(1450, "feet"),
  10323. default: true
  10324. },
  10325. {
  10326. name: "Megamacro",
  10327. height: math.unit(15000, "feet")
  10328. },
  10329. ]
  10330. ))
  10331. characterMakers.push(() => makeCharacter(
  10332. { name: "Carmine" },
  10333. {
  10334. front: {
  10335. height: math.unit(6, "feet"),
  10336. weight: math.unit(150, "lb"),
  10337. name: "Front",
  10338. image: {
  10339. source: "./media/characters/carmine/front.svg",
  10340. extra: 1,
  10341. bottom: 0.035
  10342. }
  10343. },
  10344. frontArmor: {
  10345. height: math.unit(6, "feet"),
  10346. weight: math.unit(150, "lb"),
  10347. name: "Front (Armor)",
  10348. image: {
  10349. source: "./media/characters/carmine/front-armor.svg",
  10350. extra: 1,
  10351. bottom: 0.035
  10352. }
  10353. },
  10354. },
  10355. [
  10356. {
  10357. name: "Large",
  10358. height: math.unit(1, "mile")
  10359. },
  10360. {
  10361. name: "Huge",
  10362. height: math.unit(40, "miles"),
  10363. default: true
  10364. },
  10365. {
  10366. name: "Colossal",
  10367. height: math.unit(2500, "miles")
  10368. },
  10369. ]
  10370. ))
  10371. characterMakers.push(() => makeCharacter(
  10372. { name: "Elyssia" },
  10373. {
  10374. front: {
  10375. height: math.unit(6, "feet"),
  10376. weight: math.unit(150, "lb"),
  10377. name: "Front",
  10378. image: {
  10379. source: "./media/characters/elyssia/front.svg",
  10380. extra: 2201 / 2035,
  10381. bottom: 0.05
  10382. }
  10383. },
  10384. frontClothed: {
  10385. height: math.unit(6, "feet"),
  10386. weight: math.unit(150, "lb"),
  10387. name: "Front (Clothed)",
  10388. image: {
  10389. source: "./media/characters/elyssia/front-clothed.svg",
  10390. extra: 2201 / 2035,
  10391. bottom: 0.05
  10392. }
  10393. },
  10394. back: {
  10395. height: math.unit(6, "feet"),
  10396. weight: math.unit(150, "lb"),
  10397. name: "Back",
  10398. image: {
  10399. source: "./media/characters/elyssia/back.svg",
  10400. extra: 2201 / 2035,
  10401. bottom: 0.013
  10402. }
  10403. },
  10404. },
  10405. [
  10406. {
  10407. name: "Smaller",
  10408. height: math.unit(150, "feet")
  10409. },
  10410. {
  10411. name: "Standard",
  10412. height: math.unit(1400, "feet"),
  10413. default: true
  10414. },
  10415. {
  10416. name: "Distracted",
  10417. height: math.unit(15000, "feet")
  10418. },
  10419. ]
  10420. ))
  10421. characterMakers.push(() => makeCharacter(
  10422. { name: "Geno Maxwell" },
  10423. {
  10424. front: {
  10425. height: math.unit(7 + 4 / 12, "feet"),
  10426. weight: math.unit(500, "lb"),
  10427. name: "Front",
  10428. image: {
  10429. source: "./media/characters/geno-maxwell/front.svg",
  10430. extra: 2207 / 2040,
  10431. bottom: 0.015
  10432. }
  10433. },
  10434. },
  10435. [
  10436. {
  10437. name: "Micro",
  10438. height: math.unit(3, "inches")
  10439. },
  10440. {
  10441. name: "Normal",
  10442. height: math.unit(7 + 4 / 12, "feet"),
  10443. default: true
  10444. },
  10445. {
  10446. name: "Macro",
  10447. height: math.unit(220, "feet")
  10448. },
  10449. {
  10450. name: "Megamacro",
  10451. height: math.unit(11, "miles")
  10452. },
  10453. ]
  10454. ))
  10455. characterMakers.push(() => makeCharacter(
  10456. { name: "Regena Maxwell" },
  10457. {
  10458. front: {
  10459. height: math.unit(7 + 4 / 12, "feet"),
  10460. weight: math.unit(500, "lb"),
  10461. name: "Front",
  10462. image: {
  10463. source: "./media/characters/regena-maxwell/front.svg",
  10464. extra: 3115 / 2770,
  10465. bottom: 0.02
  10466. }
  10467. },
  10468. },
  10469. [
  10470. {
  10471. name: "Normal",
  10472. height: math.unit(7 + 4 / 12, "feet"),
  10473. default: true
  10474. },
  10475. {
  10476. name: "Macro",
  10477. height: math.unit(220, "feet")
  10478. },
  10479. {
  10480. name: "Megamacro",
  10481. height: math.unit(11, "miles")
  10482. },
  10483. ]
  10484. ))
  10485. characterMakers.push(() => makeCharacter(
  10486. { name: "XGlidingDragonX" },
  10487. {
  10488. front: {
  10489. height: math.unit(6, "feet"),
  10490. weight: math.unit(150, "lb"),
  10491. name: "Front",
  10492. image: {
  10493. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10494. extra: 860 / 690,
  10495. bottom: 0.03
  10496. }
  10497. },
  10498. },
  10499. [
  10500. {
  10501. name: "Normal",
  10502. height: math.unit(1.7, "meters"),
  10503. default: true
  10504. },
  10505. ]
  10506. ))
  10507. characterMakers.push(() => makeCharacter(
  10508. { name: "Quilly" },
  10509. {
  10510. front: {
  10511. height: math.unit(6, "feet"),
  10512. weight: math.unit(150, "lb"),
  10513. name: "Front",
  10514. image: {
  10515. source: "./media/characters/quilly/front.svg",
  10516. extra: 890 / 776
  10517. }
  10518. },
  10519. },
  10520. [
  10521. {
  10522. name: "Gigamacro",
  10523. height: math.unit(404090, "miles"),
  10524. default: true
  10525. },
  10526. ]
  10527. ))
  10528. characterMakers.push(() => makeCharacter(
  10529. { name: "Tempest" },
  10530. {
  10531. front: {
  10532. height: math.unit(7 + 8 / 12, "feet"),
  10533. weight: math.unit(350, "lb"),
  10534. name: "Front",
  10535. image: {
  10536. source: "./media/characters/tempest/front.svg",
  10537. extra: 1175 / 1086,
  10538. bottom: 0.02
  10539. }
  10540. },
  10541. },
  10542. [
  10543. {
  10544. name: "Normal",
  10545. height: math.unit(7 + 8 / 12, "feet"),
  10546. default: true
  10547. },
  10548. ]
  10549. ))
  10550. characterMakers.push(() => makeCharacter(
  10551. { name: "Rodger" },
  10552. {
  10553. side: {
  10554. height: math.unit(4 + 5 / 12, "feet"),
  10555. weight: math.unit(80, "lb"),
  10556. name: "Side",
  10557. image: {
  10558. source: "./media/characters/rodger/side.svg",
  10559. extra: 1235 / 1118
  10560. }
  10561. },
  10562. },
  10563. [
  10564. {
  10565. name: "Micro",
  10566. height: math.unit(1, "inch")
  10567. },
  10568. {
  10569. name: "Normal",
  10570. height: math.unit(4 + 5 / 12, "feet"),
  10571. default: true
  10572. },
  10573. {
  10574. name: "Macro",
  10575. height: math.unit(120, "feet")
  10576. },
  10577. ]
  10578. ))
  10579. characterMakers.push(() => makeCharacter(
  10580. { name: "Danyel" },
  10581. {
  10582. front: {
  10583. height: math.unit(6, "feet"),
  10584. weight: math.unit(150, "lb"),
  10585. name: "Front",
  10586. image: {
  10587. source: "./media/characters/danyel/front.svg",
  10588. extra: 1185 / 1123,
  10589. bottom: 0.05
  10590. }
  10591. },
  10592. },
  10593. [
  10594. {
  10595. name: "Shrunken",
  10596. height: math.unit(0.5, "mm")
  10597. },
  10598. {
  10599. name: "Micro",
  10600. height: math.unit(1, "mm"),
  10601. default: true
  10602. },
  10603. {
  10604. name: "Upsized",
  10605. height: math.unit(5 + 5 / 12, "feet")
  10606. },
  10607. ]
  10608. ))
  10609. characterMakers.push(() => makeCharacter(
  10610. { name: "Vivian Bijoux" },
  10611. {
  10612. front: {
  10613. height: math.unit(5 + 6 / 12, "feet"),
  10614. weight: math.unit(200, "lb"),
  10615. name: "Front",
  10616. image: {
  10617. source: "./media/characters/vivian-bijoux/front.svg",
  10618. extra: 1,
  10619. bottom: 0.072
  10620. }
  10621. },
  10622. },
  10623. [
  10624. {
  10625. name: "Normal",
  10626. height: math.unit(5 + 6 / 12, "feet"),
  10627. default: true
  10628. },
  10629. {
  10630. name: "Bad Dream",
  10631. height: math.unit(500, "feet")
  10632. },
  10633. {
  10634. name: "Nightmare",
  10635. height: math.unit(500, "miles")
  10636. },
  10637. ]
  10638. ))
  10639. characterMakers.push(() => makeCharacter(
  10640. { name: "Zeta" },
  10641. {
  10642. front: {
  10643. height: math.unit(6 + 1 / 12, "feet"),
  10644. weight: math.unit(260, "lb"),
  10645. name: "Front",
  10646. image: {
  10647. source: "./media/characters/zeta/front.svg",
  10648. extra: 1968 / 1889,
  10649. bottom: 0.06
  10650. }
  10651. },
  10652. back: {
  10653. height: math.unit(6 + 1 / 12, "feet"),
  10654. weight: math.unit(260, "lb"),
  10655. name: "Back",
  10656. image: {
  10657. source: "./media/characters/zeta/back.svg",
  10658. extra: 1944 / 1858,
  10659. bottom: 0.03
  10660. }
  10661. },
  10662. hand: {
  10663. height: math.unit(1.112, "feet"),
  10664. name: "Hand",
  10665. image: {
  10666. source: "./media/characters/zeta/hand.svg"
  10667. }
  10668. },
  10669. foot: {
  10670. height: math.unit(1.48, "feet"),
  10671. name: "Foot",
  10672. image: {
  10673. source: "./media/characters/zeta/foot.svg"
  10674. }
  10675. },
  10676. },
  10677. [
  10678. {
  10679. name: "Micro",
  10680. height: math.unit(6, "inches")
  10681. },
  10682. {
  10683. name: "Normal",
  10684. height: math.unit(6 + 1 / 12, "feet"),
  10685. default: true
  10686. },
  10687. {
  10688. name: "Macro",
  10689. height: math.unit(20, "feet")
  10690. },
  10691. ]
  10692. ))
  10693. characterMakers.push(() => makeCharacter(
  10694. { name: "Jamie Larsen" },
  10695. {
  10696. front: {
  10697. height: math.unit(6, "feet"),
  10698. weight: math.unit(150, "lb"),
  10699. name: "Front",
  10700. image: {
  10701. source: "./media/characters/jamie-larsen/front.svg",
  10702. extra: 962 / 933,
  10703. bottom: 0.02
  10704. }
  10705. },
  10706. back: {
  10707. height: math.unit(6, "feet"),
  10708. weight: math.unit(150, "lb"),
  10709. name: "Back",
  10710. image: {
  10711. source: "./media/characters/jamie-larsen/back.svg",
  10712. extra: 997 / 946
  10713. }
  10714. },
  10715. },
  10716. [
  10717. {
  10718. name: "Macro",
  10719. height: math.unit(28 + 7 / 12, "feet"),
  10720. default: true
  10721. },
  10722. {
  10723. name: "Macro+",
  10724. height: math.unit(180, "feet")
  10725. },
  10726. {
  10727. name: "Megamacro",
  10728. height: math.unit(10, "miles")
  10729. },
  10730. {
  10731. name: "Gigamacro",
  10732. height: math.unit(200000, "miles")
  10733. },
  10734. ]
  10735. ))
  10736. characterMakers.push(() => makeCharacter(
  10737. { name: "Vance" },
  10738. {
  10739. front: {
  10740. height: math.unit(6, "feet"),
  10741. weight: math.unit(120, "lb"),
  10742. name: "Front",
  10743. image: {
  10744. source: "./media/characters/vance/front.svg",
  10745. extra: 1980 / 1890,
  10746. bottom: 0.09
  10747. }
  10748. },
  10749. back: {
  10750. height: math.unit(6, "feet"),
  10751. weight: math.unit(120, "lb"),
  10752. name: "Back",
  10753. image: {
  10754. source: "./media/characters/vance/back.svg",
  10755. extra: 2081 / 1994,
  10756. bottom: 0.014
  10757. }
  10758. },
  10759. hand: {
  10760. height: math.unit(0.88, "feet"),
  10761. name: "Hand",
  10762. image: {
  10763. source: "./media/characters/vance/hand.svg"
  10764. }
  10765. },
  10766. foot: {
  10767. height: math.unit(0.64, "feet"),
  10768. name: "Foot",
  10769. image: {
  10770. source: "./media/characters/vance/foot.svg"
  10771. }
  10772. },
  10773. },
  10774. [
  10775. {
  10776. name: "Small",
  10777. height: math.unit(90, "feet"),
  10778. default: true
  10779. },
  10780. {
  10781. name: "Macro",
  10782. height: math.unit(100, "meters")
  10783. },
  10784. {
  10785. name: "Megamacro",
  10786. height: math.unit(15, "miles")
  10787. },
  10788. ]
  10789. ))
  10790. characterMakers.push(() => makeCharacter(
  10791. { name: "Xochitl" },
  10792. {
  10793. front: {
  10794. height: math.unit(6, "feet"),
  10795. weight: math.unit(180, "lb"),
  10796. name: "Front",
  10797. image: {
  10798. source: "./media/characters/xochitl/front.svg",
  10799. extra: 2297 / 2261,
  10800. bottom: 0.065
  10801. }
  10802. },
  10803. back: {
  10804. height: math.unit(6, "feet"),
  10805. weight: math.unit(180, "lb"),
  10806. name: "Back",
  10807. image: {
  10808. source: "./media/characters/xochitl/back.svg",
  10809. extra: 2386 / 2354,
  10810. bottom: 0.01
  10811. }
  10812. },
  10813. foot: {
  10814. height: math.unit(6 / 5 * 1.15, "feet"),
  10815. weight: math.unit(150, "lb"),
  10816. name: "Foot",
  10817. image: {
  10818. source: "./media/characters/xochitl/foot.svg"
  10819. }
  10820. },
  10821. },
  10822. [
  10823. {
  10824. name: "Macro",
  10825. height: math.unit(80, "feet")
  10826. },
  10827. {
  10828. name: "Macro+",
  10829. height: math.unit(400, "feet"),
  10830. default: true
  10831. },
  10832. {
  10833. name: "Gigamacro",
  10834. height: math.unit(80000, "miles")
  10835. },
  10836. {
  10837. name: "Gigamacro+",
  10838. height: math.unit(400000, "miles")
  10839. },
  10840. {
  10841. name: "Teramacro",
  10842. height: math.unit(300, "AU")
  10843. },
  10844. ]
  10845. ))
  10846. characterMakers.push(() => makeCharacter(
  10847. { name: "Vincent" },
  10848. {
  10849. front: {
  10850. height: math.unit(6, "feet"),
  10851. weight: math.unit(150, "lb"),
  10852. name: "Front",
  10853. image: {
  10854. source: "./media/characters/vincent/front.svg",
  10855. extra: 1130 / 1080,
  10856. bottom: 0.055
  10857. }
  10858. },
  10859. beak: {
  10860. height: math.unit(6 * 0.1, "feet"),
  10861. name: "Beak",
  10862. image: {
  10863. source: "./media/characters/vincent/beak.svg"
  10864. }
  10865. },
  10866. hand: {
  10867. height: math.unit(6 * 0.85, "feet"),
  10868. weight: math.unit(150, "lb"),
  10869. name: "Hand",
  10870. image: {
  10871. source: "./media/characters/vincent/hand.svg"
  10872. }
  10873. },
  10874. foot: {
  10875. height: math.unit(6 * 0.19, "feet"),
  10876. weight: math.unit(150, "lb"),
  10877. name: "Foot",
  10878. image: {
  10879. source: "./media/characters/vincent/foot.svg"
  10880. }
  10881. },
  10882. },
  10883. [
  10884. {
  10885. name: "Base",
  10886. height: math.unit(6 + 5 / 12, "feet"),
  10887. default: true
  10888. },
  10889. {
  10890. name: "Macro",
  10891. height: math.unit(300, "feet")
  10892. },
  10893. {
  10894. name: "Megamacro",
  10895. height: math.unit(2, "miles")
  10896. },
  10897. {
  10898. name: "Gigamacro",
  10899. height: math.unit(1000, "miles")
  10900. },
  10901. ]
  10902. ))
  10903. characterMakers.push(() => makeCharacter(
  10904. { name: "Jay" },
  10905. {
  10906. front: {
  10907. height: math.unit(6 + 2 / 12, "feet"),
  10908. weight: math.unit(65, "lb"),
  10909. name: "Front",
  10910. image: {
  10911. source: "./media/characters/jay/front.svg",
  10912. extra: 1510 / 1430,
  10913. bottom: 0.042
  10914. }
  10915. },
  10916. back: {
  10917. height: math.unit(6 + 2 / 12, "feet"),
  10918. weight: math.unit(65, "lb"),
  10919. name: "Back",
  10920. image: {
  10921. source: "./media/characters/jay/back.svg",
  10922. extra: 1510 / 1430,
  10923. bottom: 0.025
  10924. }
  10925. },
  10926. clothed: {
  10927. height: math.unit(6 + 2 / 12, "feet"),
  10928. weight: math.unit(65, "lb"),
  10929. name: "Front (Clothed)",
  10930. image: {
  10931. source: "./media/characters/jay/clothed.svg",
  10932. extra: 744 / 699,
  10933. bottom: 0.043
  10934. }
  10935. },
  10936. },
  10937. [
  10938. {
  10939. name: "Micro",
  10940. height: math.unit(1, "inch")
  10941. },
  10942. {
  10943. name: "Normal",
  10944. height: math.unit(6 + 2 / 12, "feet"),
  10945. default: true
  10946. },
  10947. {
  10948. name: "Macro",
  10949. height: math.unit(1, "mile")
  10950. },
  10951. {
  10952. name: "Megamacro",
  10953. height: math.unit(100, "miles")
  10954. },
  10955. ]
  10956. ))
  10957. characterMakers.push(() => makeCharacter(
  10958. { name: "Coatl" },
  10959. {
  10960. front: {
  10961. height: math.unit(2, "meters"),
  10962. weight: math.unit(500, "kg"),
  10963. name: "Front",
  10964. image: {
  10965. source: "./media/characters/coatl/front.svg",
  10966. extra: 3948 / 3500,
  10967. bottom: 0.082
  10968. }
  10969. },
  10970. },
  10971. [
  10972. {
  10973. name: "Normal",
  10974. height: math.unit(4, "meters")
  10975. },
  10976. {
  10977. name: "Macro",
  10978. height: math.unit(100, "meters"),
  10979. default: true
  10980. },
  10981. {
  10982. name: "Macro+",
  10983. height: math.unit(300, "meters")
  10984. },
  10985. {
  10986. name: "Megamacro",
  10987. height: math.unit(3, "gigameters")
  10988. },
  10989. {
  10990. name: "Megamacro+",
  10991. height: math.unit(300, "terameters")
  10992. },
  10993. {
  10994. name: "Megamacro++",
  10995. height: math.unit(3, "lightyears")
  10996. },
  10997. ]
  10998. ))
  10999. characterMakers.push(() => makeCharacter(
  11000. { name: "Shiroryu" },
  11001. {
  11002. front: {
  11003. height: math.unit(6, "feet"),
  11004. weight: math.unit(50, "kg"),
  11005. name: "front",
  11006. image: {
  11007. source: "./media/characters/shiroryu/front.svg",
  11008. extra: 1990 / 1935
  11009. }
  11010. },
  11011. },
  11012. [
  11013. {
  11014. name: "Mortal Mingling",
  11015. height: math.unit(3, "meters")
  11016. },
  11017. {
  11018. name: "Kaiju-ish",
  11019. height: math.unit(250, "meters")
  11020. },
  11021. {
  11022. name: "Somewhat Godly",
  11023. height: math.unit(400, "km"),
  11024. default: true
  11025. },
  11026. {
  11027. name: "Planetary",
  11028. height: math.unit(300, "megameters")
  11029. },
  11030. {
  11031. name: "Galaxy-dwarfing",
  11032. height: math.unit(450, "kiloparsecs")
  11033. },
  11034. {
  11035. name: "Universe Eater",
  11036. height: math.unit(150, "gigaparsecs")
  11037. },
  11038. {
  11039. name: "Almost Immeasurable",
  11040. height: math.unit(1.3e266, "yottaparsecs")
  11041. },
  11042. ]
  11043. ))
  11044. characterMakers.push(() => makeCharacter(
  11045. { name: "Umeko" },
  11046. {
  11047. front: {
  11048. height: math.unit(6, "feet"),
  11049. weight: math.unit(150, "lb"),
  11050. name: "Front",
  11051. image: {
  11052. source: "./media/characters/umeko/front.svg",
  11053. extra: 1,
  11054. bottom: 0.019
  11055. }
  11056. },
  11057. frontArmored: {
  11058. height: math.unit(6, "feet"),
  11059. weight: math.unit(150, "lb"),
  11060. name: "Front (Armored)",
  11061. image: {
  11062. source: "./media/characters/umeko/front-armored.svg",
  11063. extra: 1,
  11064. bottom: 0.021
  11065. }
  11066. },
  11067. },
  11068. [
  11069. {
  11070. name: "Macro",
  11071. height: math.unit(220, "feet"),
  11072. default: true
  11073. },
  11074. {
  11075. name: "Guardian Dragon",
  11076. height: math.unit(50, "miles")
  11077. },
  11078. {
  11079. name: "Cosmic",
  11080. height: math.unit(800000, "miles")
  11081. },
  11082. ]
  11083. ))
  11084. characterMakers.push(() => makeCharacter(
  11085. { name: "Cassidy" },
  11086. {
  11087. front: {
  11088. height: math.unit(6, "feet"),
  11089. weight: math.unit(150, "lb"),
  11090. name: "Front",
  11091. image: {
  11092. source: "./media/characters/cassidy/front.svg",
  11093. extra: 1,
  11094. bottom: 0.043
  11095. }
  11096. },
  11097. },
  11098. [
  11099. {
  11100. name: "Canon Height",
  11101. height: math.unit(120, "feet"),
  11102. default: true
  11103. },
  11104. {
  11105. name: "Macro+",
  11106. height: math.unit(400, "feet")
  11107. },
  11108. {
  11109. name: "Macro++",
  11110. height: math.unit(4000, "feet")
  11111. },
  11112. {
  11113. name: "Megamacro",
  11114. height: math.unit(3, "miles")
  11115. },
  11116. ]
  11117. ))
  11118. characterMakers.push(() => makeCharacter(
  11119. { name: "Isaac" },
  11120. {
  11121. front: {
  11122. height: math.unit(6, "feet"),
  11123. weight: math.unit(150, "lb"),
  11124. name: "Front",
  11125. image: {
  11126. source: "./media/characters/isaac/front.svg",
  11127. extra: 896 / 815,
  11128. bottom: 0.11
  11129. }
  11130. },
  11131. },
  11132. [
  11133. {
  11134. name: "Human Size",
  11135. height: math.unit(8, "feet"),
  11136. default: true
  11137. },
  11138. {
  11139. name: "Macro",
  11140. height: math.unit(400, "feet")
  11141. },
  11142. {
  11143. name: "Megamacro",
  11144. height: math.unit(50, "miles")
  11145. },
  11146. {
  11147. name: "Canon Height",
  11148. height: math.unit(200, "AU")
  11149. },
  11150. ]
  11151. ))
  11152. characterMakers.push(() => makeCharacter(
  11153. { name: "Sleekit" },
  11154. {
  11155. front: {
  11156. height: math.unit(6, "feet"),
  11157. weight: math.unit(72, "kg"),
  11158. name: "Front",
  11159. image: {
  11160. source: "./media/characters/sleekit/front.svg",
  11161. extra: 4693 / 4487,
  11162. bottom: 0.012
  11163. }
  11164. },
  11165. },
  11166. [
  11167. {
  11168. name: "Minimum Height",
  11169. height: math.unit(10, "meters")
  11170. },
  11171. {
  11172. name: "Smaller",
  11173. height: math.unit(25, "meters")
  11174. },
  11175. {
  11176. name: "Larger",
  11177. height: math.unit(38, "meters"),
  11178. default: true
  11179. },
  11180. {
  11181. name: "Maximum height",
  11182. height: math.unit(100, "meters")
  11183. },
  11184. ]
  11185. ))
  11186. characterMakers.push(() => makeCharacter(
  11187. { name: "Nillia" },
  11188. {
  11189. front: {
  11190. height: math.unit(6, "feet"),
  11191. weight: math.unit(150, "lb"),
  11192. name: "Front",
  11193. image: {
  11194. source: "./media/characters/nillia/front.svg",
  11195. extra: 2195 / 2037,
  11196. bottom: 0.005
  11197. }
  11198. },
  11199. back: {
  11200. height: math.unit(6, "feet"),
  11201. weight: math.unit(150, "lb"),
  11202. name: "Back",
  11203. image: {
  11204. source: "./media/characters/nillia/back.svg",
  11205. extra: 2195 / 2037,
  11206. bottom: 0.005
  11207. }
  11208. },
  11209. },
  11210. [
  11211. {
  11212. name: "Canon Height",
  11213. height: math.unit(489, "feet"),
  11214. default: true
  11215. }
  11216. ]
  11217. ))
  11218. characterMakers.push(() => makeCharacter(
  11219. { name: "Mesmyriza" },
  11220. {
  11221. front: {
  11222. height: math.unit(6, "feet"),
  11223. weight: math.unit(150, "lb"),
  11224. name: "Front",
  11225. image: {
  11226. source: "./media/characters/mesmyriza/front.svg",
  11227. extra: 2067 / 1784,
  11228. bottom: 0.035
  11229. }
  11230. },
  11231. foot: {
  11232. height: math.unit(6 / (250 / 35), "feet"),
  11233. name: "Foot",
  11234. image: {
  11235. source: "./media/characters/mesmyriza/foot.svg"
  11236. }
  11237. },
  11238. },
  11239. [
  11240. {
  11241. name: "Macro",
  11242. height: math.unit(457, "meters"),
  11243. default: true
  11244. },
  11245. {
  11246. name: "Megamacro",
  11247. height: math.unit(8, "megameters")
  11248. },
  11249. ]
  11250. ))
  11251. characterMakers.push(() => makeCharacter(
  11252. { name: "Saudade" },
  11253. {
  11254. front: {
  11255. height: math.unit(6, "feet"),
  11256. weight: math.unit(250, "lb"),
  11257. name: "Front",
  11258. image: {
  11259. source: "./media/characters/saudade/front.svg",
  11260. extra: 1172 / 1139,
  11261. bottom: 0.035
  11262. }
  11263. },
  11264. },
  11265. [
  11266. {
  11267. name: "Micro",
  11268. height: math.unit(3, "inches")
  11269. },
  11270. {
  11271. name: "Normal",
  11272. height: math.unit(6, "feet"),
  11273. default: true
  11274. },
  11275. {
  11276. name: "Macro",
  11277. height: math.unit(50, "feet")
  11278. },
  11279. {
  11280. name: "Megamacro",
  11281. height: math.unit(2800, "feet")
  11282. },
  11283. ]
  11284. ))
  11285. characterMakers.push(() => makeCharacter(
  11286. { name: "Keireer" },
  11287. {
  11288. front: {
  11289. height: math.unit(5 + 4 / 12, "feet"),
  11290. weight: math.unit(100, "lb"),
  11291. name: "Front",
  11292. image: {
  11293. source: "./media/characters/keireer/front.svg",
  11294. extra: 716 / 666,
  11295. bottom: 0.05
  11296. }
  11297. },
  11298. },
  11299. [
  11300. {
  11301. name: "Normal",
  11302. height: math.unit(5 + 4 / 12, "feet"),
  11303. default: true
  11304. },
  11305. ]
  11306. ))
  11307. characterMakers.push(() => makeCharacter(
  11308. { name: "Mirja" },
  11309. {
  11310. front: {
  11311. height: math.unit(6, "feet"),
  11312. weight: math.unit(90, "kg"),
  11313. name: "Front",
  11314. image: {
  11315. source: "./media/characters/mirja/front.svg",
  11316. extra: 1789 / 1683,
  11317. bottom: 0.05
  11318. }
  11319. },
  11320. frontDressed: {
  11321. height: math.unit(6, "feet"),
  11322. weight: math.unit(90, "lb"),
  11323. name: "Front (Dressed)",
  11324. image: {
  11325. source: "./media/characters/mirja/front-dressed.svg",
  11326. extra: 1789 / 1683,
  11327. bottom: 0.05
  11328. }
  11329. },
  11330. back: {
  11331. height: math.unit(6, "feet"),
  11332. weight: math.unit(90, "lb"),
  11333. name: "Back",
  11334. image: {
  11335. source: "./media/characters/mirja/back.svg",
  11336. extra: 953 / 917,
  11337. bottom: 0.017
  11338. }
  11339. },
  11340. },
  11341. [
  11342. {
  11343. name: "\"Incognito\"",
  11344. height: math.unit(3, "meters")
  11345. },
  11346. {
  11347. name: "Strolling Size",
  11348. height: math.unit(15, "km")
  11349. },
  11350. {
  11351. name: "Larger Strolling Size",
  11352. height: math.unit(400, "km")
  11353. },
  11354. {
  11355. name: "Preferred Size",
  11356. height: math.unit(5000, "km")
  11357. },
  11358. {
  11359. name: "True Size",
  11360. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11361. default: true
  11362. },
  11363. ]
  11364. ))
  11365. characterMakers.push(() => makeCharacter(
  11366. { name: "Nightraver" },
  11367. {
  11368. front: {
  11369. height: math.unit(15, "feet"),
  11370. weight: math.unit(880, "kg"),
  11371. name: "Front",
  11372. image: {
  11373. source: "./media/characters/nightraver/front.svg",
  11374. extra: 2444 / 2160,
  11375. bottom: 0.027
  11376. }
  11377. },
  11378. back: {
  11379. height: math.unit(15, "feet"),
  11380. weight: math.unit(880, "kg"),
  11381. name: "Back",
  11382. image: {
  11383. source: "./media/characters/nightraver/back.svg",
  11384. extra: 2309 / 2180,
  11385. bottom: 0.005
  11386. }
  11387. },
  11388. sole: {
  11389. height: math.unit(2.878, "feet"),
  11390. name: "Sole",
  11391. image: {
  11392. source: "./media/characters/nightraver/sole.svg"
  11393. }
  11394. },
  11395. foot: {
  11396. height: math.unit(2.285, "feet"),
  11397. name: "Foot",
  11398. image: {
  11399. source: "./media/characters/nightraver/foot.svg"
  11400. }
  11401. },
  11402. maw: {
  11403. height: math.unit(2.67, "feet"),
  11404. name: "Maw",
  11405. image: {
  11406. source: "./media/characters/nightraver/maw.svg"
  11407. }
  11408. },
  11409. },
  11410. [
  11411. {
  11412. name: "Micro",
  11413. height: math.unit(1, "cm")
  11414. },
  11415. {
  11416. name: "Normal",
  11417. height: math.unit(15, "feet"),
  11418. default: true
  11419. },
  11420. {
  11421. name: "Macro",
  11422. height: math.unit(300, "feet")
  11423. },
  11424. {
  11425. name: "Megamacro",
  11426. height: math.unit(300, "miles")
  11427. },
  11428. {
  11429. name: "Gigamacro",
  11430. height: math.unit(10000, "miles")
  11431. },
  11432. ]
  11433. ))
  11434. characterMakers.push(() => makeCharacter(
  11435. { name: "Arc" },
  11436. {
  11437. side: {
  11438. height: math.unit(2, "inches"),
  11439. weight: math.unit(5, "grams"),
  11440. name: "Side",
  11441. image: {
  11442. source: "./media/characters/arc/side.svg"
  11443. }
  11444. },
  11445. },
  11446. [
  11447. {
  11448. name: "Micro",
  11449. height: math.unit(2, "inches"),
  11450. default: true
  11451. },
  11452. ]
  11453. ))
  11454. characterMakers.push(() => makeCharacter(
  11455. { name: "Nebula Shahar" },
  11456. {
  11457. front: {
  11458. height: math.unit(1.1938, "meters"),
  11459. weight: math.unit(54, "kg"),
  11460. name: "Front",
  11461. image: {
  11462. source: "./media/characters/nebula-shahar/front.svg",
  11463. extra: 1642 / 1436,
  11464. bottom: 0.06
  11465. }
  11466. },
  11467. },
  11468. [
  11469. {
  11470. name: "Megamicro",
  11471. height: math.unit(0.3, "mm")
  11472. },
  11473. {
  11474. name: "Micro",
  11475. height: math.unit(3, "cm")
  11476. },
  11477. {
  11478. name: "Normal",
  11479. height: math.unit(138, "cm"),
  11480. default: true
  11481. },
  11482. {
  11483. name: "Macro",
  11484. height: math.unit(30, "m")
  11485. },
  11486. ]
  11487. ))
  11488. characterMakers.push(() => makeCharacter(
  11489. { name: "Shayla" },
  11490. {
  11491. front: {
  11492. height: math.unit(5.24, "feet"),
  11493. weight: math.unit(150, "lb"),
  11494. name: "Front",
  11495. image: {
  11496. source: "./media/characters/shayla/front.svg",
  11497. extra: 1512 / 1414,
  11498. bottom: 0.01
  11499. }
  11500. },
  11501. back: {
  11502. height: math.unit(5.24, "feet"),
  11503. weight: math.unit(150, "lb"),
  11504. name: "Back",
  11505. image: {
  11506. source: "./media/characters/shayla/back.svg",
  11507. extra: 1512 / 1414
  11508. }
  11509. },
  11510. hand: {
  11511. height: math.unit(0.7781496062992126, "feet"),
  11512. name: "Hand",
  11513. image: {
  11514. source: "./media/characters/shayla/hand.svg"
  11515. }
  11516. },
  11517. foot: {
  11518. height: math.unit(1.4206036745406823, "feet"),
  11519. name: "Foot",
  11520. image: {
  11521. source: "./media/characters/shayla/foot.svg"
  11522. }
  11523. },
  11524. },
  11525. [
  11526. {
  11527. name: "Micro",
  11528. height: math.unit(0.32, "feet")
  11529. },
  11530. {
  11531. name: "Normal",
  11532. height: math.unit(5.24, "feet"),
  11533. default: true
  11534. },
  11535. {
  11536. name: "Macro",
  11537. height: math.unit(492.12, "feet")
  11538. },
  11539. {
  11540. name: "Megamacro",
  11541. height: math.unit(186.41, "miles")
  11542. },
  11543. ]
  11544. ))
  11545. characterMakers.push(() => makeCharacter(
  11546. { name: "Pia Jr." },
  11547. {
  11548. front: {
  11549. height: math.unit(2.2, "m"),
  11550. weight: math.unit(120, "kg"),
  11551. name: "Front",
  11552. image: {
  11553. source: "./media/characters/pia-jr/front.svg",
  11554. extra: 1000 / 970,
  11555. bottom: 0.035
  11556. }
  11557. },
  11558. hand: {
  11559. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11560. name: "Hand",
  11561. image: {
  11562. source: "./media/characters/pia-jr/hand.svg"
  11563. }
  11564. },
  11565. paw: {
  11566. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11567. name: "Paw",
  11568. image: {
  11569. source: "./media/characters/pia-jr/paw.svg"
  11570. }
  11571. },
  11572. },
  11573. [
  11574. {
  11575. name: "Micro",
  11576. height: math.unit(1.2, "cm")
  11577. },
  11578. {
  11579. name: "Normal",
  11580. height: math.unit(2.2, "m"),
  11581. default: true
  11582. },
  11583. {
  11584. name: "Macro",
  11585. height: math.unit(180, "m")
  11586. },
  11587. {
  11588. name: "Megamacro",
  11589. height: math.unit(420, "km")
  11590. },
  11591. ]
  11592. ))
  11593. characterMakers.push(() => makeCharacter(
  11594. { name: "Pia Sr." },
  11595. {
  11596. front: {
  11597. height: math.unit(2, "m"),
  11598. weight: math.unit(115, "kg"),
  11599. name: "Front",
  11600. image: {
  11601. source: "./media/characters/pia-sr/front.svg",
  11602. extra: 760 / 730,
  11603. bottom: 0.015
  11604. }
  11605. },
  11606. back: {
  11607. height: math.unit(2, "m"),
  11608. weight: math.unit(115, "kg"),
  11609. name: "Back",
  11610. image: {
  11611. source: "./media/characters/pia-sr/back.svg",
  11612. extra: 760 / 730,
  11613. bottom: 0.01
  11614. }
  11615. },
  11616. hand: {
  11617. height: math.unit(0.89 * 6.56 / 6, "feet"),
  11618. name: "Hand",
  11619. image: {
  11620. source: "./media/characters/pia-sr/hand.svg"
  11621. }
  11622. },
  11623. foot: {
  11624. height: math.unit(1.83, "feet"),
  11625. name: "Foot",
  11626. image: {
  11627. source: "./media/characters/pia-sr/foot.svg"
  11628. }
  11629. },
  11630. },
  11631. [
  11632. {
  11633. name: "Micro",
  11634. height: math.unit(88, "mm")
  11635. },
  11636. {
  11637. name: "Normal",
  11638. height: math.unit(2, "m"),
  11639. default: true
  11640. },
  11641. {
  11642. name: "Macro",
  11643. height: math.unit(200, "m")
  11644. },
  11645. {
  11646. name: "Megamacro",
  11647. height: math.unit(420, "km")
  11648. },
  11649. ]
  11650. ))
  11651. characterMakers.push(() => makeCharacter(
  11652. { name: "KIBIBYTE" },
  11653. {
  11654. front: {
  11655. height: math.unit(8 + 2 / 12, "feet"),
  11656. weight: math.unit(300, "lb"),
  11657. name: "Front",
  11658. image: {
  11659. source: "./media/characters/kibibyte/front.svg",
  11660. extra: 2221 / 2098,
  11661. bottom: 0.04
  11662. }
  11663. },
  11664. },
  11665. [
  11666. {
  11667. name: "Normal",
  11668. height: math.unit(8 + 2 / 12, "feet"),
  11669. default: true
  11670. },
  11671. {
  11672. name: "Socialable Macro",
  11673. height: math.unit(50, "feet")
  11674. },
  11675. {
  11676. name: "Macro",
  11677. height: math.unit(300, "feet")
  11678. },
  11679. {
  11680. name: "Megamacro",
  11681. height: math.unit(500, "miles")
  11682. },
  11683. ]
  11684. ))
  11685. characterMakers.push(() => makeCharacter(
  11686. { name: "Felix" },
  11687. {
  11688. front: {
  11689. height: math.unit(6, "feet"),
  11690. weight: math.unit(150, "lb"),
  11691. name: "Front",
  11692. image: {
  11693. source: "./media/characters/felix/front.svg",
  11694. extra: 762 / 722,
  11695. bottom: 0.02
  11696. }
  11697. },
  11698. frontClothed: {
  11699. height: math.unit(6, "feet"),
  11700. weight: math.unit(150, "lb"),
  11701. name: "Front (Clothed)",
  11702. image: {
  11703. source: "./media/characters/felix/front-clothed.svg",
  11704. extra: 762 / 722,
  11705. bottom: 0.02
  11706. }
  11707. },
  11708. },
  11709. [
  11710. {
  11711. name: "Normal",
  11712. height: math.unit(6 + 8 / 12, "feet"),
  11713. default: true
  11714. },
  11715. {
  11716. name: "Macro",
  11717. height: math.unit(2600, "feet")
  11718. },
  11719. {
  11720. name: "Megamacro",
  11721. height: math.unit(450, "miles")
  11722. },
  11723. ]
  11724. ))
  11725. characterMakers.push(() => makeCharacter(
  11726. { name: "Tobo" },
  11727. {
  11728. front: {
  11729. height: math.unit(6 + 1 / 12, "feet"),
  11730. weight: math.unit(250, "lb"),
  11731. name: "Front",
  11732. image: {
  11733. source: "./media/characters/tobo/front.svg",
  11734. extra: 608 / 586,
  11735. bottom: 0.023
  11736. }
  11737. },
  11738. back: {
  11739. height: math.unit(6 + 1 / 12, "feet"),
  11740. weight: math.unit(250, "lb"),
  11741. name: "Back",
  11742. image: {
  11743. source: "./media/characters/tobo/back.svg",
  11744. extra: 608 / 586
  11745. }
  11746. },
  11747. },
  11748. [
  11749. {
  11750. name: "Nano",
  11751. height: math.unit(2, "nm")
  11752. },
  11753. {
  11754. name: "Megamicro",
  11755. height: math.unit(0.1, "mm")
  11756. },
  11757. {
  11758. name: "Micro",
  11759. height: math.unit(1, "inch"),
  11760. default: true
  11761. },
  11762. {
  11763. name: "Human-sized",
  11764. height: math.unit(6 + 1 / 12, "feet")
  11765. },
  11766. {
  11767. name: "Macro",
  11768. height: math.unit(250, "feet")
  11769. },
  11770. {
  11771. name: "Megamacro",
  11772. height: math.unit(75, "miles")
  11773. },
  11774. {
  11775. name: "Texas-sized",
  11776. height: math.unit(750, "miles")
  11777. },
  11778. {
  11779. name: "Teramacro",
  11780. height: math.unit(50000, "miles")
  11781. },
  11782. ]
  11783. ))
  11784. characterMakers.push(() => makeCharacter(
  11785. { name: "Danny Kapowsky" },
  11786. {
  11787. front: {
  11788. height: math.unit(6, "feet"),
  11789. weight: math.unit(269, "lb"),
  11790. name: "Front",
  11791. image: {
  11792. source: "./media/characters/danny-kapowsky/front.svg",
  11793. extra: 766 / 736,
  11794. bottom: 0.044
  11795. }
  11796. },
  11797. back: {
  11798. height: math.unit(6, "feet"),
  11799. weight: math.unit(269, "lb"),
  11800. name: "Back",
  11801. image: {
  11802. source: "./media/characters/danny-kapowsky/back.svg",
  11803. extra: 797 / 760,
  11804. bottom: 0.025
  11805. }
  11806. },
  11807. },
  11808. [
  11809. {
  11810. name: "Macro",
  11811. height: math.unit(150, "feet"),
  11812. default: true
  11813. },
  11814. {
  11815. name: "Macro+",
  11816. height: math.unit(200, "feet")
  11817. },
  11818. {
  11819. name: "Macro++",
  11820. height: math.unit(300, "feet")
  11821. },
  11822. {
  11823. name: "Macro+++",
  11824. height: math.unit(400, "feet")
  11825. },
  11826. ]
  11827. ))
  11828. characterMakers.push(() => makeCharacter(
  11829. { name: "Finn" },
  11830. {
  11831. side: {
  11832. height: math.unit(6, "feet"),
  11833. weight: math.unit(170, "lb"),
  11834. name: "Side",
  11835. image: {
  11836. source: "./media/characters/finn/side.svg",
  11837. extra: 1953 / 1807,
  11838. bottom: 0.057
  11839. }
  11840. },
  11841. },
  11842. [
  11843. {
  11844. name: "Megamacro",
  11845. height: math.unit(14445, "feet"),
  11846. default: true
  11847. },
  11848. ]
  11849. ))
  11850. characterMakers.push(() => makeCharacter(
  11851. { name: "Roy" },
  11852. {
  11853. front: {
  11854. height: math.unit(5 + 6 / 12, "feet"),
  11855. weight: math.unit(125, "lb"),
  11856. name: "Front",
  11857. image: {
  11858. source: "./media/characters/roy/front.svg",
  11859. extra: 1,
  11860. bottom: 0.11
  11861. }
  11862. },
  11863. },
  11864. [
  11865. {
  11866. name: "Micro",
  11867. height: math.unit(3, "inches"),
  11868. default: true
  11869. },
  11870. {
  11871. name: "Normal",
  11872. height: math.unit(5 + 6 / 12, "feet")
  11873. },
  11874. {
  11875. name: "Lesser Macro",
  11876. height: math.unit(60, "feet")
  11877. },
  11878. {
  11879. name: "Greater Macro",
  11880. height: math.unit(120, "feet")
  11881. },
  11882. ]
  11883. ))
  11884. characterMakers.push(() => makeCharacter(
  11885. { name: "Aevsivs" },
  11886. {
  11887. front: {
  11888. height: math.unit(6, "feet"),
  11889. weight: math.unit(100, "lb"),
  11890. name: "Front",
  11891. image: {
  11892. source: "./media/characters/aevsivs/front.svg",
  11893. extra: 1,
  11894. bottom: 0.03
  11895. }
  11896. },
  11897. back: {
  11898. height: math.unit(6, "feet"),
  11899. weight: math.unit(100, "lb"),
  11900. name: "Back",
  11901. image: {
  11902. source: "./media/characters/aevsivs/back.svg"
  11903. }
  11904. },
  11905. },
  11906. [
  11907. {
  11908. name: "Micro",
  11909. height: math.unit(2, "inches"),
  11910. default: true
  11911. },
  11912. {
  11913. name: "Normal",
  11914. height: math.unit(5, "feet")
  11915. },
  11916. ]
  11917. ))
  11918. characterMakers.push(() => makeCharacter(
  11919. { name: "Hildegard" },
  11920. {
  11921. front: {
  11922. height: math.unit(5 + 7 / 12, "feet"),
  11923. weight: math.unit(159, "lb"),
  11924. name: "Front",
  11925. image: {
  11926. source: "./media/characters/hildegard/front.svg",
  11927. extra: 312 / 286,
  11928. bottom: 0.005
  11929. }
  11930. },
  11931. },
  11932. [
  11933. {
  11934. name: "Normal",
  11935. height: math.unit(5 + 7 / 12, "feet"),
  11936. default: true
  11937. },
  11938. ]
  11939. ))
  11940. characterMakers.push(() => makeCharacter(
  11941. { name: "Bernard & Wilder" },
  11942. {
  11943. bernard: {
  11944. height: math.unit(2 + 7 / 12, "feet"),
  11945. weight: math.unit(66, "lb"),
  11946. name: "Bernard",
  11947. rename: true,
  11948. image: {
  11949. source: "./media/characters/bernard-wilder/bernard.svg",
  11950. extra: 192 / 128,
  11951. bottom: 0.05
  11952. }
  11953. },
  11954. wilder: {
  11955. height: math.unit(5 + 8 / 12, "feet"),
  11956. weight: math.unit(143, "lb"),
  11957. name: "Wilder",
  11958. rename: true,
  11959. image: {
  11960. source: "./media/characters/bernard-wilder/wilder.svg",
  11961. extra: 361 / 312,
  11962. bottom: 0.02
  11963. }
  11964. },
  11965. },
  11966. [
  11967. {
  11968. name: "Normal",
  11969. height: math.unit(2 + 7 / 12, "feet"),
  11970. default: true
  11971. },
  11972. ]
  11973. ))
  11974. characterMakers.push(() => makeCharacter(
  11975. { name: "Hearth" },
  11976. {
  11977. anthro: {
  11978. height: math.unit(6 + 1 / 12, "feet"),
  11979. weight: math.unit(155, "lb"),
  11980. name: "Anthro",
  11981. image: {
  11982. source: "./media/characters/hearth/anthro.svg",
  11983. extra: 260 / 250,
  11984. bottom: 0.02
  11985. }
  11986. },
  11987. feral: {
  11988. height: math.unit(3.78, "feet"),
  11989. weight: math.unit(35, "kg"),
  11990. name: "Feral",
  11991. image: {
  11992. source: "./media/characters/hearth/feral.svg",
  11993. extra: 153 / 135,
  11994. bottom: 0.03
  11995. }
  11996. },
  11997. },
  11998. [
  11999. {
  12000. name: "Normal",
  12001. height: math.unit(6 + 1 / 12, "feet"),
  12002. default: true
  12003. },
  12004. ]
  12005. ))
  12006. characterMakers.push(() => makeCharacter(
  12007. { name: "Ingrid" },
  12008. {
  12009. front: {
  12010. height: math.unit(6, "feet"),
  12011. weight: math.unit(182, "lb"),
  12012. name: "Front",
  12013. image: {
  12014. source: "./media/characters/ingrid/front.svg",
  12015. extra: 294 / 268,
  12016. bottom: 0.027
  12017. }
  12018. },
  12019. },
  12020. [
  12021. {
  12022. name: "Normal",
  12023. height: math.unit(6, "feet"),
  12024. default: true
  12025. },
  12026. ]
  12027. ))
  12028. characterMakers.push(() => makeCharacter(
  12029. { name: "Malgam" },
  12030. {
  12031. eevee: {
  12032. height: math.unit(2 + 10 / 12, "feet"),
  12033. weight: math.unit(86, "lb"),
  12034. name: "Malgam",
  12035. image: {
  12036. source: "./media/characters/malgam/eevee.svg",
  12037. extra: 218 / 180,
  12038. bottom: 0.2
  12039. }
  12040. },
  12041. sylveon: {
  12042. height: math.unit(4, "feet"),
  12043. weight: math.unit(101, "lb"),
  12044. name: "Future Malgam",
  12045. rename: true,
  12046. image: {
  12047. source: "./media/characters/malgam/sylveon.svg",
  12048. extra: 371 / 325,
  12049. bottom: 0.015
  12050. }
  12051. },
  12052. gigantamax: {
  12053. height: math.unit(50, "feet"),
  12054. name: "Gigantamax Malgam",
  12055. rename: true,
  12056. image: {
  12057. source: "./media/characters/malgam/gigantamax.svg"
  12058. }
  12059. },
  12060. },
  12061. [
  12062. {
  12063. name: "Normal",
  12064. height: math.unit(2 + 10 / 12, "feet"),
  12065. default: true
  12066. },
  12067. ]
  12068. ))
  12069. characterMakers.push(() => makeCharacter(
  12070. { name: "Fleur" },
  12071. {
  12072. front: {
  12073. height: math.unit(5 + 11 / 12, "feet"),
  12074. weight: math.unit(188, "lb"),
  12075. name: "Front",
  12076. image: {
  12077. source: "./media/characters/fleur/front.svg",
  12078. extra: 309 / 283,
  12079. bottom: 0.007
  12080. }
  12081. },
  12082. },
  12083. [
  12084. {
  12085. name: "Normal",
  12086. height: math.unit(5 + 11 / 12, "feet"),
  12087. default: true
  12088. },
  12089. ]
  12090. ))
  12091. characterMakers.push(() => makeCharacter(
  12092. { name: "Jude" },
  12093. {
  12094. front: {
  12095. height: math.unit(5 + 4 / 12, "feet"),
  12096. weight: math.unit(122, "lb"),
  12097. name: "Front",
  12098. image: {
  12099. source: "./media/characters/jude/front.svg",
  12100. extra: 288 / 273,
  12101. bottom: 0.03
  12102. }
  12103. },
  12104. },
  12105. [
  12106. {
  12107. name: "Normal",
  12108. height: math.unit(5 + 4 / 12, "feet"),
  12109. default: true
  12110. },
  12111. ]
  12112. ))
  12113. characterMakers.push(() => makeCharacter(
  12114. { name: "Seara" },
  12115. {
  12116. front: {
  12117. height: math.unit(5 + 11 / 12, "feet"),
  12118. weight: math.unit(190, "lb"),
  12119. name: "Front",
  12120. image: {
  12121. source: "./media/characters/seara/front.svg",
  12122. extra: 1,
  12123. bottom: 0.05
  12124. }
  12125. },
  12126. },
  12127. [
  12128. {
  12129. name: "Normal",
  12130. height: math.unit(5 + 11 / 12, "feet"),
  12131. default: true
  12132. },
  12133. ]
  12134. ))
  12135. characterMakers.push(() => makeCharacter(
  12136. { name: "Caspian" },
  12137. {
  12138. front: {
  12139. height: math.unit(16 + 5 / 12, "feet"),
  12140. weight: math.unit(524, "lb"),
  12141. name: "Front",
  12142. image: {
  12143. source: "./media/characters/caspian/front.svg",
  12144. extra: 1,
  12145. bottom: 0.04
  12146. }
  12147. },
  12148. },
  12149. [
  12150. {
  12151. name: "Normal",
  12152. height: math.unit(16 + 5 / 12, "feet"),
  12153. default: true
  12154. },
  12155. ]
  12156. ))
  12157. characterMakers.push(() => makeCharacter(
  12158. { name: "Mika" },
  12159. {
  12160. front: {
  12161. height: math.unit(5 + 7 / 12, "feet"),
  12162. weight: math.unit(170, "lb"),
  12163. name: "Front",
  12164. image: {
  12165. source: "./media/characters/mika/front.svg",
  12166. extra: 1,
  12167. bottom: 0.016
  12168. }
  12169. },
  12170. },
  12171. [
  12172. {
  12173. name: "Normal",
  12174. height: math.unit(5 + 7 / 12, "feet"),
  12175. default: true
  12176. },
  12177. ]
  12178. ))
  12179. characterMakers.push(() => makeCharacter(
  12180. { name: "Sol" },
  12181. {
  12182. front: {
  12183. height: math.unit(6 + 2 / 12, "feet"),
  12184. weight: math.unit(268, "lb"),
  12185. name: "Front",
  12186. image: {
  12187. source: "./media/characters/sol/front.svg",
  12188. extra: 247 / 231,
  12189. bottom: 0.05
  12190. }
  12191. },
  12192. },
  12193. [
  12194. {
  12195. name: "Normal",
  12196. height: math.unit(6 + 2 / 12, "feet"),
  12197. default: true
  12198. },
  12199. ]
  12200. ))
  12201. characterMakers.push(() => makeCharacter(
  12202. { name: "Umiko" },
  12203. {
  12204. buizel: {
  12205. height: math.unit(2 + 5 / 12, "feet"),
  12206. weight: math.unit(87, "lb"),
  12207. name: "Buizel",
  12208. image: {
  12209. source: "./media/characters/umiko/buizel.svg",
  12210. extra: 172 / 157,
  12211. bottom: 0.01
  12212. }
  12213. },
  12214. floatzel: {
  12215. height: math.unit(5 + 9 / 12, "feet"),
  12216. weight: math.unit(250, "lb"),
  12217. name: "Floatzel",
  12218. image: {
  12219. source: "./media/characters/umiko/floatzel.svg",
  12220. extra: 262 / 248
  12221. }
  12222. },
  12223. },
  12224. [
  12225. {
  12226. name: "Normal",
  12227. height: math.unit(2 + 5 / 12, "feet"),
  12228. default: true
  12229. },
  12230. ]
  12231. ))
  12232. characterMakers.push(() => makeCharacter(
  12233. { name: "Iliac" },
  12234. {
  12235. front: {
  12236. height: math.unit(6 + 2 / 12, "feet"),
  12237. weight: math.unit(146, "lb"),
  12238. name: "Front",
  12239. image: {
  12240. source: "./media/characters/iliac/front.svg",
  12241. extra: 389 / 365,
  12242. bottom: 0.035
  12243. }
  12244. },
  12245. },
  12246. [
  12247. {
  12248. name: "Normal",
  12249. height: math.unit(6 + 2 / 12, "feet"),
  12250. default: true
  12251. },
  12252. ]
  12253. ))
  12254. characterMakers.push(() => makeCharacter(
  12255. { name: "Topaz" },
  12256. {
  12257. front: {
  12258. height: math.unit(6, "feet"),
  12259. weight: math.unit(170, "lb"),
  12260. name: "Front",
  12261. image: {
  12262. source: "./media/characters/topaz/front.svg",
  12263. extra: 317 / 303,
  12264. bottom: 0.055
  12265. }
  12266. },
  12267. },
  12268. [
  12269. {
  12270. name: "Normal",
  12271. height: math.unit(6, "feet"),
  12272. default: true
  12273. },
  12274. ]
  12275. ))
  12276. characterMakers.push(() => makeCharacter(
  12277. { name: "Gabriel" },
  12278. {
  12279. front: {
  12280. height: math.unit(5 + 11 / 12, "feet"),
  12281. weight: math.unit(144, "lb"),
  12282. name: "Front",
  12283. image: {
  12284. source: "./media/characters/gabriel/front.svg",
  12285. extra: 285 / 262,
  12286. bottom: 0.004
  12287. }
  12288. },
  12289. },
  12290. [
  12291. {
  12292. name: "Normal",
  12293. height: math.unit(5 + 11 / 12, "feet"),
  12294. default: true
  12295. },
  12296. ]
  12297. ))
  12298. characterMakers.push(() => makeCharacter(
  12299. { name: "Tempest (Suicune)" },
  12300. {
  12301. side: {
  12302. height: math.unit(6 + 5 / 12, "feet"),
  12303. weight: math.unit(300, "lb"),
  12304. name: "Side",
  12305. image: {
  12306. source: "./media/characters/tempest-suicune/side.svg",
  12307. extra: 195 / 154,
  12308. bottom: 0.04
  12309. }
  12310. },
  12311. },
  12312. [
  12313. {
  12314. name: "Normal",
  12315. height: math.unit(6 + 5 / 12, "feet"),
  12316. default: true
  12317. },
  12318. ]
  12319. ))
  12320. characterMakers.push(() => makeCharacter(
  12321. { name: "Vulcan" },
  12322. {
  12323. front: {
  12324. height: math.unit(7 + 2 / 12, "feet"),
  12325. weight: math.unit(322, "lb"),
  12326. name: "Front",
  12327. image: {
  12328. source: "./media/characters/vulcan/front.svg",
  12329. extra: 154 / 147,
  12330. bottom: 0.04
  12331. }
  12332. },
  12333. },
  12334. [
  12335. {
  12336. name: "Normal",
  12337. height: math.unit(7 + 2 / 12, "feet"),
  12338. default: true
  12339. },
  12340. ]
  12341. ))
  12342. characterMakers.push(() => makeCharacter(
  12343. { name: "Gault" },
  12344. {
  12345. front: {
  12346. height: math.unit(5 + 10 / 12, "feet"),
  12347. weight: math.unit(264, "lb"),
  12348. name: "Front",
  12349. image: {
  12350. source: "./media/characters/gault/front.svg",
  12351. extra: 161 / 140,
  12352. bottom: 0.028
  12353. }
  12354. },
  12355. },
  12356. [
  12357. {
  12358. name: "Normal",
  12359. height: math.unit(5 + 10 / 12, "feet"),
  12360. default: true
  12361. },
  12362. ]
  12363. ))
  12364. characterMakers.push(() => makeCharacter(
  12365. { name: "Shard" },
  12366. {
  12367. front: {
  12368. height: math.unit(6, "feet"),
  12369. weight: math.unit(150, "lb"),
  12370. name: "Front",
  12371. image: {
  12372. source: "./media/characters/shard/front.svg",
  12373. extra: 273 / 238,
  12374. bottom: 0.02
  12375. }
  12376. },
  12377. },
  12378. [
  12379. {
  12380. name: "Normal",
  12381. height: math.unit(3 + 6 / 12, "feet"),
  12382. default: true
  12383. },
  12384. ]
  12385. ))
  12386. characterMakers.push(() => makeCharacter(
  12387. { name: "Ashe" },
  12388. {
  12389. front: {
  12390. height: math.unit(5 + 11 / 12, "feet"),
  12391. weight: math.unit(146, "lb"),
  12392. name: "Front",
  12393. image: {
  12394. source: "./media/characters/ashe/front.svg",
  12395. extra: 400 / 373,
  12396. bottom: 0.01
  12397. }
  12398. },
  12399. },
  12400. [
  12401. {
  12402. name: "Normal",
  12403. height: math.unit(5 + 11 / 12, "feet"),
  12404. default: true
  12405. },
  12406. ]
  12407. ))
  12408. characterMakers.push(() => makeCharacter(
  12409. { name: "Beatrix" },
  12410. {
  12411. front: {
  12412. height: math.unit(5 + 5 / 12, "feet"),
  12413. weight: math.unit(135, "lb"),
  12414. name: "Front",
  12415. image: {
  12416. source: "./media/characters/beatrix/front.svg",
  12417. extra: 392 / 379,
  12418. bottom: 0.01
  12419. }
  12420. },
  12421. },
  12422. [
  12423. {
  12424. name: "Normal",
  12425. height: math.unit(6, "feet"),
  12426. default: true
  12427. },
  12428. ]
  12429. ))
  12430. characterMakers.push(() => makeCharacter(
  12431. { name: "Ignatius" },
  12432. {
  12433. front: {
  12434. height: math.unit(6, "feet"),
  12435. weight: math.unit(150, "lb"),
  12436. name: "Front",
  12437. image: {
  12438. source: "./media/characters/ignatius/front.svg",
  12439. extra: 245 / 222,
  12440. bottom: 0.01
  12441. }
  12442. },
  12443. },
  12444. [
  12445. {
  12446. name: "Normal",
  12447. height: math.unit(5 + 5 / 12, "feet"),
  12448. default: true
  12449. },
  12450. ]
  12451. ))
  12452. characterMakers.push(() => makeCharacter(
  12453. { name: "Mei Li" },
  12454. {
  12455. front: {
  12456. height: math.unit(6 + 2 / 12, "feet"),
  12457. weight: math.unit(138, "lb"),
  12458. name: "Front",
  12459. image: {
  12460. source: "./media/characters/mei-li/front.svg",
  12461. extra: 237 / 229,
  12462. bottom: 0.03
  12463. }
  12464. },
  12465. },
  12466. [
  12467. {
  12468. name: "Normal",
  12469. height: math.unit(6 + 2 / 12, "feet"),
  12470. default: true
  12471. },
  12472. ]
  12473. ))
  12474. characterMakers.push(() => makeCharacter(
  12475. { name: "Puru" },
  12476. {
  12477. front: {
  12478. height: math.unit(2 + 4 / 12, "feet"),
  12479. weight: math.unit(62, "lb"),
  12480. name: "Front",
  12481. image: {
  12482. source: "./media/characters/puru/front.svg",
  12483. extra: 206 / 149,
  12484. bottom: 0.06
  12485. }
  12486. },
  12487. },
  12488. [
  12489. {
  12490. name: "Normal",
  12491. height: math.unit(2 + 4 / 12, "feet"),
  12492. default: true
  12493. },
  12494. ]
  12495. ))
  12496. characterMakers.push(() => makeCharacter(
  12497. { name: "Kee" },
  12498. {
  12499. taur: {
  12500. height: math.unit(11, "feet"),
  12501. weight: math.unit(500, "lb"),
  12502. name: "Taur",
  12503. image: {
  12504. source: "./media/characters/kee/taur.svg",
  12505. extra: 1,
  12506. bottom: 0.04
  12507. }
  12508. },
  12509. },
  12510. [
  12511. {
  12512. name: "Normal",
  12513. height: math.unit(11, "feet"),
  12514. default: true
  12515. },
  12516. ]
  12517. ))
  12518. characterMakers.push(() => makeCharacter(
  12519. { name: "Cobalt (Dracha)" },
  12520. {
  12521. anthro: {
  12522. height: math.unit(7, "feet"),
  12523. weight: math.unit(190, "lb"),
  12524. name: "Anthro",
  12525. image: {
  12526. source: "./media/characters/cobalt-dracha/anthro.svg",
  12527. extra: 231 / 225,
  12528. bottom: 0.04
  12529. }
  12530. },
  12531. feral: {
  12532. height: math.unit(9 + 7 / 12, "feet"),
  12533. weight: math.unit(294, "lb"),
  12534. name: "Feral",
  12535. image: {
  12536. source: "./media/characters/cobalt-dracha/feral.svg",
  12537. extra: 692 / 633,
  12538. bottom: 0.05
  12539. }
  12540. },
  12541. },
  12542. [
  12543. {
  12544. name: "Normal",
  12545. height: math.unit(7, "feet"),
  12546. default: true
  12547. },
  12548. ]
  12549. ))
  12550. characterMakers.push(() => makeCharacter(
  12551. { name: "Java" },
  12552. {
  12553. fallen: {
  12554. height: math.unit(11 + 8 / 12, "feet"),
  12555. weight: math.unit(485, "lb"),
  12556. name: "Java (Fallen)",
  12557. rename: true,
  12558. image: {
  12559. source: "./media/characters/java/fallen.svg",
  12560. extra: 226 / 208,
  12561. bottom: 0.005
  12562. }
  12563. },
  12564. godkin: {
  12565. height: math.unit(10 + 6 / 12, "feet"),
  12566. weight: math.unit(328, "lb"),
  12567. name: "Java (Godkin)",
  12568. rename: true,
  12569. image: {
  12570. source: "./media/characters/java/godkin.svg",
  12571. extra: 270 / 262,
  12572. bottom: 0.02
  12573. }
  12574. },
  12575. },
  12576. [
  12577. {
  12578. name: "Normal",
  12579. height: math.unit(11 + 8 / 12, "feet"),
  12580. default: true
  12581. },
  12582. ]
  12583. ))
  12584. characterMakers.push(() => makeCharacter(
  12585. { name: "Skoll" },
  12586. {
  12587. front: {
  12588. height: math.unit(7 + 8 / 12, "feet"),
  12589. weight: math.unit(320, "lb"),
  12590. name: "Front",
  12591. image: {
  12592. source: "./media/characters/skoll/front.svg",
  12593. extra: 232 / 220,
  12594. bottom: 0.02
  12595. }
  12596. },
  12597. },
  12598. [
  12599. {
  12600. name: "Normal",
  12601. height: math.unit(7 + 8 / 12, "feet"),
  12602. default: true
  12603. },
  12604. ]
  12605. ))
  12606. characterMakers.push(() => makeCharacter(
  12607. { name: "Purna" },
  12608. {
  12609. front: {
  12610. height: math.unit(5 + 9 / 12, "feet"),
  12611. weight: math.unit(170, "lb"),
  12612. name: "Front",
  12613. image: {
  12614. source: "./media/characters/purna/front.svg",
  12615. extra: 239 / 229,
  12616. bottom: 0.01
  12617. }
  12618. },
  12619. },
  12620. [
  12621. {
  12622. name: "Normal",
  12623. height: math.unit(5 + 9 / 12, "feet"),
  12624. default: true
  12625. },
  12626. ]
  12627. ))
  12628. characterMakers.push(() => makeCharacter(
  12629. { name: "Kuva" },
  12630. {
  12631. front: {
  12632. height: math.unit(5 + 9 / 12, "feet"),
  12633. weight: math.unit(142, "lb"),
  12634. name: "Front",
  12635. image: {
  12636. source: "./media/characters/kuva/front.svg",
  12637. extra: 281 / 271,
  12638. bottom: 0.006
  12639. }
  12640. },
  12641. },
  12642. [
  12643. {
  12644. name: "Normal",
  12645. height: math.unit(5 + 9 / 12, "feet"),
  12646. default: true
  12647. },
  12648. ]
  12649. ))
  12650. characterMakers.push(() => makeCharacter(
  12651. { name: "Embra" },
  12652. {
  12653. anthro: {
  12654. height: math.unit(9 + 2 / 12, "feet"),
  12655. weight: math.unit(270, "lb"),
  12656. name: "Anthro",
  12657. image: {
  12658. source: "./media/characters/embra/anthro.svg",
  12659. extra: 200 / 187,
  12660. bottom: 0.02
  12661. }
  12662. },
  12663. feral: {
  12664. height: math.unit(18 + 8 / 12, "feet"),
  12665. weight: math.unit(576, "lb"),
  12666. name: "Feral",
  12667. image: {
  12668. source: "./media/characters/embra/feral.svg",
  12669. extra: 152 / 137,
  12670. bottom: 0.037
  12671. }
  12672. },
  12673. },
  12674. [
  12675. {
  12676. name: "Normal",
  12677. height: math.unit(9 + 2 / 12, "feet"),
  12678. default: true
  12679. },
  12680. ]
  12681. ))
  12682. characterMakers.push(() => makeCharacter(
  12683. { name: "Grottos" },
  12684. {
  12685. anthro: {
  12686. height: math.unit(10 + 9 / 12, "feet"),
  12687. weight: math.unit(224, "lb"),
  12688. name: "Anthro",
  12689. image: {
  12690. source: "./media/characters/grottos/anthro.svg",
  12691. extra: 350 / 332,
  12692. bottom: 0.045
  12693. }
  12694. },
  12695. feral: {
  12696. height: math.unit(20 + 7 / 12, "feet"),
  12697. weight: math.unit(629, "lb"),
  12698. name: "Feral",
  12699. image: {
  12700. source: "./media/characters/grottos/feral.svg",
  12701. extra: 207 / 190,
  12702. bottom: 0.05
  12703. }
  12704. },
  12705. },
  12706. [
  12707. {
  12708. name: "Normal",
  12709. height: math.unit(10 + 9 / 12, "feet"),
  12710. default: true
  12711. },
  12712. ]
  12713. ))
  12714. characterMakers.push(() => makeCharacter(
  12715. { name: "Frifna" },
  12716. {
  12717. anthro: {
  12718. height: math.unit(9 + 6 / 12, "feet"),
  12719. weight: math.unit(298, "lb"),
  12720. name: "Anthro",
  12721. image: {
  12722. source: "./media/characters/frifna/anthro.svg",
  12723. extra: 282 / 269,
  12724. bottom: 0.015
  12725. }
  12726. },
  12727. feral: {
  12728. height: math.unit(16 + 2 / 12, "feet"),
  12729. weight: math.unit(624, "lb"),
  12730. name: "Feral",
  12731. image: {
  12732. source: "./media/characters/frifna/feral.svg"
  12733. }
  12734. },
  12735. },
  12736. [
  12737. {
  12738. name: "Normal",
  12739. height: math.unit(9 + 6 / 12, "feet"),
  12740. default: true
  12741. },
  12742. ]
  12743. ))
  12744. characterMakers.push(() => makeCharacter(
  12745. { name: "Elise" },
  12746. {
  12747. front: {
  12748. height: math.unit(6 + 2 / 12, "feet"),
  12749. weight: math.unit(168, "lb"),
  12750. name: "Front",
  12751. image: {
  12752. source: "./media/characters/elise/front.svg",
  12753. extra: 276 / 271
  12754. }
  12755. },
  12756. },
  12757. [
  12758. {
  12759. name: "Normal",
  12760. height: math.unit(6 + 2 / 12, "feet"),
  12761. default: true
  12762. },
  12763. ]
  12764. ))
  12765. characterMakers.push(() => makeCharacter(
  12766. { name: "Glade" },
  12767. {
  12768. front: {
  12769. height: math.unit(5 + 10 / 12, "feet"),
  12770. weight: math.unit(210, "lb"),
  12771. name: "Front",
  12772. image: {
  12773. source: "./media/characters/glade/front.svg",
  12774. extra: 258 / 247,
  12775. bottom: 0.008
  12776. }
  12777. },
  12778. },
  12779. [
  12780. {
  12781. name: "Normal",
  12782. height: math.unit(5 + 10 / 12, "feet"),
  12783. default: true
  12784. },
  12785. ]
  12786. ))
  12787. characterMakers.push(() => makeCharacter(
  12788. { name: "Rina" },
  12789. {
  12790. front: {
  12791. height: math.unit(5 + 10 / 12, "feet"),
  12792. weight: math.unit(129, "lb"),
  12793. name: "Front",
  12794. image: {
  12795. source: "./media/characters/rina/front.svg",
  12796. extra: 266 / 255,
  12797. bottom: 0.005
  12798. }
  12799. },
  12800. },
  12801. [
  12802. {
  12803. name: "Normal",
  12804. height: math.unit(5 + 10 / 12, "feet"),
  12805. default: true
  12806. },
  12807. ]
  12808. ))
  12809. characterMakers.push(() => makeCharacter(
  12810. { name: "Veronica" },
  12811. {
  12812. front: {
  12813. height: math.unit(6 + 1 / 12, "feet"),
  12814. weight: math.unit(192, "lb"),
  12815. name: "Front",
  12816. image: {
  12817. source: "./media/characters/veronica/front.svg",
  12818. extra: 319 / 309,
  12819. bottom: 0.005
  12820. }
  12821. },
  12822. },
  12823. [
  12824. {
  12825. name: "Normal",
  12826. height: math.unit(6 + 1 / 12, "feet"),
  12827. default: true
  12828. },
  12829. ]
  12830. ))
  12831. characterMakers.push(() => makeCharacter(
  12832. { name: "Braxton" },
  12833. {
  12834. front: {
  12835. height: math.unit(9 + 3 / 12, "feet"),
  12836. weight: math.unit(1100, "lb"),
  12837. name: "Front",
  12838. image: {
  12839. source: "./media/characters/braxton/front.svg",
  12840. extra: 1057 / 984,
  12841. bottom: 0.05
  12842. }
  12843. },
  12844. },
  12845. [
  12846. {
  12847. name: "Normal",
  12848. height: math.unit(9 + 3 / 12, "feet")
  12849. },
  12850. {
  12851. name: "Giant",
  12852. height: math.unit(300, "feet"),
  12853. default: true
  12854. },
  12855. {
  12856. name: "Macro",
  12857. height: math.unit(700, "feet")
  12858. },
  12859. {
  12860. name: "Megamacro",
  12861. height: math.unit(6000, "feet")
  12862. },
  12863. ]
  12864. ))
  12865. characterMakers.push(() => makeCharacter(
  12866. { name: "Blue Feyonics" },
  12867. {
  12868. front: {
  12869. height: math.unit(6 + 7 / 12, "feet"),
  12870. weight: math.unit(150, "lb"),
  12871. name: "Front",
  12872. image: {
  12873. source: "./media/characters/blue-feyonics/front.svg",
  12874. extra: 1403 / 1306,
  12875. bottom: 0.047
  12876. }
  12877. },
  12878. },
  12879. [
  12880. {
  12881. name: "Normal",
  12882. height: math.unit(6 + 7 / 12, "feet"),
  12883. default: true
  12884. },
  12885. ]
  12886. ))
  12887. characterMakers.push(() => makeCharacter(
  12888. { name: "Maxwell" },
  12889. {
  12890. front: {
  12891. height: math.unit(1.8, "meters"),
  12892. weight: math.unit(60, "kg"),
  12893. name: "Front",
  12894. image: {
  12895. source: "./media/characters/maxwell/front.svg",
  12896. extra: 2060 / 1873
  12897. }
  12898. },
  12899. },
  12900. [
  12901. {
  12902. name: "Micro",
  12903. height: math.unit(1, "mm")
  12904. },
  12905. {
  12906. name: "Normal",
  12907. height: math.unit(1.8, "meter"),
  12908. default: true
  12909. },
  12910. {
  12911. name: "Macro",
  12912. height: math.unit(30, "meters")
  12913. },
  12914. {
  12915. name: "Megamacro",
  12916. height: math.unit(10, "km")
  12917. },
  12918. ]
  12919. ))
  12920. characterMakers.push(() => makeCharacter(
  12921. { name: "Jack" },
  12922. {
  12923. front: {
  12924. height: math.unit(6, "feet"),
  12925. weight: math.unit(150, "lb"),
  12926. name: "Front",
  12927. image: {
  12928. source: "./media/characters/jack/front.svg",
  12929. extra: 1754 / 1640,
  12930. bottom: 0.01
  12931. }
  12932. },
  12933. },
  12934. [
  12935. {
  12936. name: "Normal",
  12937. height: math.unit(80000, "feet"),
  12938. default: true
  12939. },
  12940. {
  12941. name: "Max size",
  12942. height: math.unit(10, "lightyears")
  12943. },
  12944. ]
  12945. ))
  12946. characterMakers.push(() => makeCharacter(
  12947. { name: "Cafat" },
  12948. {
  12949. upright: {
  12950. height: math.unit(7, "feet"),
  12951. weight: math.unit(170, "lb"),
  12952. name: "Upright",
  12953. image: {
  12954. source: "./media/characters/cafat/upright.svg",
  12955. bottom: 0.01
  12956. }
  12957. },
  12958. uprightFull: {
  12959. height: math.unit(7, "feet"),
  12960. weight: math.unit(170, "lb"),
  12961. name: "Upright (Full)",
  12962. image: {
  12963. source: "./media/characters/cafat/upright-full.svg",
  12964. bottom: 0.01
  12965. }
  12966. },
  12967. side: {
  12968. height: math.unit(5, "feet"),
  12969. weight: math.unit(150, "lb"),
  12970. name: "Side",
  12971. image: {
  12972. source: "./media/characters/cafat/side.svg"
  12973. }
  12974. },
  12975. },
  12976. [
  12977. {
  12978. name: "Small",
  12979. height: math.unit(7, "feet"),
  12980. default: true
  12981. },
  12982. {
  12983. name: "Large",
  12984. height: math.unit(15.5, "feet")
  12985. },
  12986. ]
  12987. ))
  12988. characterMakers.push(() => makeCharacter(
  12989. { name: "Verin Raharra" },
  12990. {
  12991. front: {
  12992. height: math.unit(6, "feet"),
  12993. weight: math.unit(150, "lb"),
  12994. name: "Front",
  12995. image: {
  12996. source: "./media/characters/verin-raharra/front.svg",
  12997. extra: 5019 / 4835,
  12998. bottom: 0.023
  12999. }
  13000. },
  13001. },
  13002. [
  13003. {
  13004. name: "Normal",
  13005. height: math.unit(7 + 5 / 12, "feet"),
  13006. default: true
  13007. },
  13008. {
  13009. name: "Upsized",
  13010. height: math.unit(20, "feet")
  13011. },
  13012. ]
  13013. ))
  13014. characterMakers.push(() => makeCharacter(
  13015. { name: "Nakata" },
  13016. {
  13017. front: {
  13018. height: math.unit(7, "feet"),
  13019. weight: math.unit(230, "lb"),
  13020. name: "Front",
  13021. image: {
  13022. source: "./media/characters/nakata/front.svg",
  13023. extra: 1.005,
  13024. bottom: 0.01
  13025. }
  13026. },
  13027. },
  13028. [
  13029. {
  13030. name: "Normal",
  13031. height: math.unit(7, "feet"),
  13032. default: true
  13033. },
  13034. {
  13035. name: "Big",
  13036. height: math.unit(14, "feet")
  13037. },
  13038. {
  13039. name: "Macro",
  13040. height: math.unit(400, "feet")
  13041. },
  13042. ]
  13043. ))
  13044. characterMakers.push(() => makeCharacter(
  13045. { name: "Lily" },
  13046. {
  13047. front: {
  13048. height: math.unit(4.91, "feet"),
  13049. weight: math.unit(100, "lb"),
  13050. name: "Front",
  13051. image: {
  13052. source: "./media/characters/lily/front.svg",
  13053. extra: 1585 / 1415,
  13054. bottom: 0.02
  13055. }
  13056. },
  13057. },
  13058. [
  13059. {
  13060. name: "Normal",
  13061. height: math.unit(4.91, "feet"),
  13062. default: true
  13063. },
  13064. ]
  13065. ))
  13066. characterMakers.push(() => makeCharacter(
  13067. { name: "Sheila" },
  13068. {
  13069. laying: {
  13070. height: math.unit(4 + 4 / 12, "feet"),
  13071. weight: math.unit(600, "lb"),
  13072. name: "Laying",
  13073. image: {
  13074. source: "./media/characters/sheila/laying.svg",
  13075. extra: 1333 / 1265,
  13076. bottom: 0.16
  13077. }
  13078. },
  13079. },
  13080. [
  13081. {
  13082. name: "Normal",
  13083. height: math.unit(4 + 4 / 12, "feet"),
  13084. default: true
  13085. },
  13086. ]
  13087. ))
  13088. characterMakers.push(() => makeCharacter(
  13089. { name: "Sax" },
  13090. {
  13091. front: {
  13092. height: math.unit(6, "feet"),
  13093. weight: math.unit(190, "lb"),
  13094. name: "Front",
  13095. image: {
  13096. source: "./media/characters/sax/front.svg",
  13097. extra: 1187 / 973,
  13098. bottom: 0.042
  13099. }
  13100. },
  13101. },
  13102. [
  13103. {
  13104. name: "Micro",
  13105. height: math.unit(4, "inches"),
  13106. default: true
  13107. },
  13108. ]
  13109. ))
  13110. characterMakers.push(() => makeCharacter(
  13111. { name: "Pandora" },
  13112. {
  13113. front: {
  13114. height: math.unit(6, "feet"),
  13115. weight: math.unit(150, "lb"),
  13116. name: "Front",
  13117. image: {
  13118. source: "./media/characters/pandora/front.svg",
  13119. extra: 2720 / 2556,
  13120. bottom: 0.015
  13121. }
  13122. },
  13123. back: {
  13124. height: math.unit(6, "feet"),
  13125. weight: math.unit(150, "lb"),
  13126. name: "Back",
  13127. image: {
  13128. source: "./media/characters/pandora/back.svg",
  13129. extra: 2720 / 2556,
  13130. bottom: 0.01
  13131. }
  13132. },
  13133. beans: {
  13134. height: math.unit(6 / 8, "feet"),
  13135. name: "Beans",
  13136. image: {
  13137. source: "./media/characters/pandora/beans.svg"
  13138. }
  13139. },
  13140. skirt: {
  13141. height: math.unit(6, "feet"),
  13142. weight: math.unit(150, "lb"),
  13143. name: "Skirt",
  13144. image: {
  13145. source: "./media/characters/pandora/skirt.svg",
  13146. extra: 1622 / 1525,
  13147. bottom: 0.015
  13148. }
  13149. },
  13150. hoodie: {
  13151. height: math.unit(6, "feet"),
  13152. weight: math.unit(150, "lb"),
  13153. name: "Hoodie",
  13154. image: {
  13155. source: "./media/characters/pandora/hoodie.svg",
  13156. extra: 1622 / 1525,
  13157. bottom: 0.015
  13158. }
  13159. },
  13160. casual: {
  13161. height: math.unit(6, "feet"),
  13162. weight: math.unit(150, "lb"),
  13163. name: "Casual",
  13164. image: {
  13165. source: "./media/characters/pandora/casual.svg",
  13166. extra: 1622 / 1525,
  13167. bottom: 0.015
  13168. }
  13169. },
  13170. },
  13171. [
  13172. {
  13173. name: "Normal",
  13174. height: math.unit(6, "feet")
  13175. },
  13176. {
  13177. name: "Big Steppy",
  13178. height: math.unit(1, "km"),
  13179. default: true
  13180. },
  13181. ]
  13182. ))
  13183. characterMakers.push(() => makeCharacter(
  13184. { name: "Venio Darcony" },
  13185. {
  13186. side: {
  13187. height: math.unit(10, "feet"),
  13188. weight: math.unit(800, "kg"),
  13189. name: "Side",
  13190. image: {
  13191. source: "./media/characters/venio-darcony/side.svg",
  13192. extra: 1373 / 1003,
  13193. bottom: 0.037
  13194. }
  13195. },
  13196. front: {
  13197. height: math.unit(19, "feet"),
  13198. weight: math.unit(800, "kg"),
  13199. name: "Front",
  13200. image: {
  13201. source: "./media/characters/venio-darcony/front.svg"
  13202. }
  13203. },
  13204. back: {
  13205. height: math.unit(19, "feet"),
  13206. weight: math.unit(800, "kg"),
  13207. name: "Back",
  13208. image: {
  13209. source: "./media/characters/venio-darcony/back.svg"
  13210. }
  13211. },
  13212. },
  13213. [
  13214. {
  13215. name: "Normal",
  13216. height: math.unit(10, "feet")
  13217. },
  13218. {
  13219. name: "Macro",
  13220. height: math.unit(130, "feet"),
  13221. default: true
  13222. },
  13223. {
  13224. name: "Macro+",
  13225. height: math.unit(240, "feet")
  13226. },
  13227. ]
  13228. ))
  13229. characterMakers.push(() => makeCharacter(
  13230. { name: "Veski" },
  13231. {
  13232. front: {
  13233. height: math.unit(6, "feet"),
  13234. weight: math.unit(150, "lb"),
  13235. name: "Front",
  13236. image: {
  13237. source: "./media/characters/veski/front.svg",
  13238. extra: 1299 / 1225,
  13239. bottom: 0.04
  13240. }
  13241. },
  13242. back: {
  13243. height: math.unit(6, "feet"),
  13244. weight: math.unit(150, "lb"),
  13245. name: "Back",
  13246. image: {
  13247. source: "./media/characters/veski/back.svg",
  13248. extra: 1299 / 1225,
  13249. bottom: 0.008
  13250. }
  13251. },
  13252. maw: {
  13253. height: math.unit(1.5 * 1.21, "feet"),
  13254. name: "Maw",
  13255. image: {
  13256. source: "./media/characters/veski/maw.svg"
  13257. }
  13258. },
  13259. },
  13260. [
  13261. {
  13262. name: "Macro",
  13263. height: math.unit(2, "km"),
  13264. default: true
  13265. },
  13266. ]
  13267. ))
  13268. characterMakers.push(() => makeCharacter(
  13269. { name: "Isabelle" },
  13270. {
  13271. front: {
  13272. height: math.unit(5 + 7 / 12, "feet"),
  13273. name: "Front",
  13274. image: {
  13275. source: "./media/characters/isabelle/front.svg",
  13276. extra: 2130 / 1976,
  13277. bottom: 0.05
  13278. }
  13279. },
  13280. },
  13281. [
  13282. {
  13283. name: "Supermicro",
  13284. height: math.unit(10, "micrometers")
  13285. },
  13286. {
  13287. name: "Micro",
  13288. height: math.unit(1, "inch")
  13289. },
  13290. {
  13291. name: "Tiny",
  13292. height: math.unit(5, "inches")
  13293. },
  13294. {
  13295. name: "Standard",
  13296. height: math.unit(5 + 7 / 12, "inches")
  13297. },
  13298. {
  13299. name: "Macro",
  13300. height: math.unit(80, "meters"),
  13301. default: true
  13302. },
  13303. {
  13304. name: "Megamacro",
  13305. height: math.unit(250, "meters")
  13306. },
  13307. {
  13308. name: "Gigamacro",
  13309. height: math.unit(5, "km")
  13310. },
  13311. {
  13312. name: "Cosmic",
  13313. height: math.unit(2.5e6, "miles")
  13314. },
  13315. ]
  13316. ))
  13317. characterMakers.push(() => makeCharacter(
  13318. { name: "Hanzo" },
  13319. {
  13320. front: {
  13321. height: math.unit(6, "feet"),
  13322. weight: math.unit(150, "lb"),
  13323. name: "Front",
  13324. image: {
  13325. source: "./media/characters/hanzo/front.svg",
  13326. extra: 374 / 344,
  13327. bottom: 0.02
  13328. }
  13329. },
  13330. },
  13331. [
  13332. {
  13333. name: "Normal",
  13334. height: math.unit(8, "feet"),
  13335. default: true
  13336. },
  13337. ]
  13338. ))
  13339. characterMakers.push(() => makeCharacter(
  13340. { name: "Anna" },
  13341. {
  13342. front: {
  13343. height: math.unit(7, "feet"),
  13344. weight: math.unit(130, "lb"),
  13345. name: "Front",
  13346. image: {
  13347. source: "./media/characters/anna/front.svg",
  13348. extra: 169 / 145,
  13349. bottom: 0.06
  13350. }
  13351. },
  13352. full: {
  13353. height: math.unit(4.96, "feet"),
  13354. weight: math.unit(220, "lb"),
  13355. name: "Full",
  13356. image: {
  13357. source: "./media/characters/anna/full.svg",
  13358. extra: 138 / 114,
  13359. bottom: 0.15
  13360. }
  13361. },
  13362. tongue: {
  13363. height: math.unit(2.53, "feet"),
  13364. name: "Tongue",
  13365. image: {
  13366. source: "./media/characters/anna/tongue.svg"
  13367. }
  13368. },
  13369. },
  13370. [
  13371. {
  13372. name: "Normal",
  13373. height: math.unit(7, "feet"),
  13374. default: true
  13375. },
  13376. ]
  13377. ))
  13378. characterMakers.push(() => makeCharacter(
  13379. { name: "Ian Corvid" },
  13380. {
  13381. front: {
  13382. height: math.unit(7, "feet"),
  13383. weight: math.unit(150, "lb"),
  13384. name: "Front",
  13385. image: {
  13386. source: "./media/characters/ian-corvid/front.svg",
  13387. extra: 150 / 142,
  13388. bottom: 0.02
  13389. }
  13390. },
  13391. back: {
  13392. height: math.unit(7, "feet"),
  13393. weight: math.unit(150, "lb"),
  13394. name: "Back",
  13395. image: {
  13396. source: "./media/characters/ian-corvid/back.svg",
  13397. extra: 150 / 143,
  13398. bottom: 0.01
  13399. }
  13400. },
  13401. stomping: {
  13402. height: math.unit(7, "feet"),
  13403. weight: math.unit(150, "lb"),
  13404. name: "Stomping",
  13405. image: {
  13406. source: "./media/characters/ian-corvid/stomping.svg",
  13407. extra: 76 / 72
  13408. }
  13409. },
  13410. sitting: {
  13411. height: math.unit(7 / 1.8, "feet"),
  13412. weight: math.unit(150, "lb"),
  13413. name: "Sitting",
  13414. image: {
  13415. source: "./media/characters/ian-corvid/sitting.svg",
  13416. extra: 1400 / 1269,
  13417. bottom: 0.15
  13418. }
  13419. },
  13420. },
  13421. [
  13422. {
  13423. name: "Tiny Microw",
  13424. height: math.unit(1, "inch")
  13425. },
  13426. {
  13427. name: "Microw",
  13428. height: math.unit(6, "inches")
  13429. },
  13430. {
  13431. name: "Crow",
  13432. height: math.unit(7 + 1 / 12, "feet"),
  13433. default: true
  13434. },
  13435. {
  13436. name: "Macrow",
  13437. height: math.unit(176, "feet")
  13438. },
  13439. ]
  13440. ))
  13441. characterMakers.push(() => makeCharacter(
  13442. { name: "Natalie Kellon" },
  13443. {
  13444. front: {
  13445. height: math.unit(5 + 7 / 12, "feet"),
  13446. weight: math.unit(147, "lb"),
  13447. name: "Front",
  13448. image: {
  13449. source: "./media/characters/natalie-kellon/front.svg",
  13450. extra: 1214 / 1141,
  13451. bottom: 0.02
  13452. }
  13453. },
  13454. },
  13455. [
  13456. {
  13457. name: "Micro",
  13458. height: math.unit(1 / 16, "inch")
  13459. },
  13460. {
  13461. name: "Tiny",
  13462. height: math.unit(4, "inches")
  13463. },
  13464. {
  13465. name: "Normal",
  13466. height: math.unit(5 + 7 / 12, "feet"),
  13467. default: true
  13468. },
  13469. {
  13470. name: "Amazon",
  13471. height: math.unit(12, "feet")
  13472. },
  13473. {
  13474. name: "Giantess",
  13475. height: math.unit(160, "meters")
  13476. },
  13477. {
  13478. name: "Titaness",
  13479. height: math.unit(800, "meters")
  13480. },
  13481. ]
  13482. ))
  13483. characterMakers.push(() => makeCharacter(
  13484. { name: "Alluria" },
  13485. {
  13486. front: {
  13487. height: math.unit(6, "feet"),
  13488. weight: math.unit(150, "lb"),
  13489. name: "Front",
  13490. image: {
  13491. source: "./media/characters/alluria/front.svg",
  13492. extra: 806 / 738,
  13493. bottom: 0.01
  13494. }
  13495. },
  13496. side: {
  13497. height: math.unit(6, "feet"),
  13498. weight: math.unit(150, "lb"),
  13499. name: "Side",
  13500. image: {
  13501. source: "./media/characters/alluria/side.svg",
  13502. extra: 800 / 750,
  13503. }
  13504. },
  13505. back: {
  13506. height: math.unit(6, "feet"),
  13507. weight: math.unit(150, "lb"),
  13508. name: "Back",
  13509. image: {
  13510. source: "./media/characters/alluria/back.svg",
  13511. extra: 806 / 738,
  13512. }
  13513. },
  13514. frontMaid: {
  13515. height: math.unit(6, "feet"),
  13516. weight: math.unit(150, "lb"),
  13517. name: "Front (Maid)",
  13518. image: {
  13519. source: "./media/characters/alluria/front-maid.svg",
  13520. extra: 806 / 738,
  13521. bottom: 0.01
  13522. }
  13523. },
  13524. sideMaid: {
  13525. height: math.unit(6, "feet"),
  13526. weight: math.unit(150, "lb"),
  13527. name: "Side (Maid)",
  13528. image: {
  13529. source: "./media/characters/alluria/side-maid.svg",
  13530. extra: 800 / 750,
  13531. bottom: 0.005
  13532. }
  13533. },
  13534. backMaid: {
  13535. height: math.unit(6, "feet"),
  13536. weight: math.unit(150, "lb"),
  13537. name: "Back (Maid)",
  13538. image: {
  13539. source: "./media/characters/alluria/back-maid.svg",
  13540. extra: 806 / 738,
  13541. }
  13542. },
  13543. },
  13544. [
  13545. {
  13546. name: "Micro",
  13547. height: math.unit(6, "inches"),
  13548. default: true
  13549. },
  13550. ]
  13551. ))
  13552. characterMakers.push(() => makeCharacter(
  13553. { name: "Kyle" },
  13554. {
  13555. front: {
  13556. height: math.unit(6, "feet"),
  13557. weight: math.unit(150, "lb"),
  13558. name: "Front",
  13559. image: {
  13560. source: "./media/characters/kyle/front.svg",
  13561. extra: 1069 / 962,
  13562. bottom: 77.228 / 1727.45
  13563. }
  13564. },
  13565. },
  13566. [
  13567. {
  13568. name: "Macro",
  13569. height: math.unit(150, "feet"),
  13570. default: true
  13571. },
  13572. ]
  13573. ))
  13574. characterMakers.push(() => makeCharacter(
  13575. { name: "Duncan" },
  13576. {
  13577. front: {
  13578. height: math.unit(6, "feet"),
  13579. weight: math.unit(300, "lb"),
  13580. name: "Front",
  13581. image: {
  13582. source: "./media/characters/duncan/front.svg",
  13583. extra: 1650 / 1482,
  13584. bottom: 0.05
  13585. }
  13586. },
  13587. },
  13588. [
  13589. {
  13590. name: "Macro",
  13591. height: math.unit(100, "feet"),
  13592. default: true
  13593. },
  13594. ]
  13595. ))
  13596. characterMakers.push(() => makeCharacter(
  13597. { name: "Memory" },
  13598. {
  13599. front: {
  13600. height: math.unit(5 + 4 / 12, "feet"),
  13601. weight: math.unit(220, "lb"),
  13602. name: "Front",
  13603. image: {
  13604. source: "./media/characters/memory/front.svg",
  13605. extra: 3641 / 3545,
  13606. bottom: 0.03
  13607. }
  13608. },
  13609. back: {
  13610. height: math.unit(5 + 4 / 12, "feet"),
  13611. weight: math.unit(220, "lb"),
  13612. name: "Back",
  13613. image: {
  13614. source: "./media/characters/memory/back.svg",
  13615. extra: 3641 / 3545,
  13616. bottom: 0.025
  13617. }
  13618. },
  13619. frontSkirt: {
  13620. height: math.unit(5 + 4 / 12, "feet"),
  13621. weight: math.unit(220, "lb"),
  13622. name: "Front (Skirt)",
  13623. image: {
  13624. source: "./media/characters/memory/front-skirt.svg",
  13625. extra: 3641 / 3545,
  13626. bottom: 0.03
  13627. }
  13628. },
  13629. frontDress: {
  13630. height: math.unit(5 + 4 / 12, "feet"),
  13631. weight: math.unit(220, "lb"),
  13632. name: "Front (Dress)",
  13633. image: {
  13634. source: "./media/characters/memory/front-dress.svg",
  13635. extra: 3641 / 3545,
  13636. bottom: 0.03
  13637. }
  13638. },
  13639. },
  13640. [
  13641. {
  13642. name: "Micro",
  13643. height: math.unit(6, "inches"),
  13644. default: true
  13645. },
  13646. {
  13647. name: "Normal",
  13648. height: math.unit(5 + 4 / 12, "feet")
  13649. },
  13650. ]
  13651. ))
  13652. characterMakers.push(() => makeCharacter(
  13653. { name: "Luno" },
  13654. {
  13655. front: {
  13656. height: math.unit(4 + 11 / 12, "feet"),
  13657. weight: math.unit(100, "lb"),
  13658. name: "Front",
  13659. image: {
  13660. source: "./media/characters/luno/front.svg",
  13661. extra: 1535 / 1487,
  13662. bottom: 0.03
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Micro",
  13669. height: math.unit(3, "inches")
  13670. },
  13671. {
  13672. name: "Normal",
  13673. height: math.unit(4 + 11 / 12, "feet"),
  13674. default: true
  13675. },
  13676. {
  13677. name: "Macro",
  13678. height: math.unit(300, "feet")
  13679. },
  13680. {
  13681. name: "Megamacro",
  13682. height: math.unit(700, "miles")
  13683. },
  13684. ]
  13685. ))
  13686. characterMakers.push(() => makeCharacter(
  13687. { name: "Jamesy" },
  13688. {
  13689. front: {
  13690. height: math.unit(6 + 2 / 12, "feet"),
  13691. weight: math.unit(170, "lb"),
  13692. name: "Front",
  13693. image: {
  13694. source: "./media/characters/jamesy/front.svg",
  13695. extra: 440 / 382,
  13696. bottom: 0.005
  13697. }
  13698. },
  13699. },
  13700. [
  13701. {
  13702. name: "Micro",
  13703. height: math.unit(3, "inches")
  13704. },
  13705. {
  13706. name: "Normal",
  13707. height: math.unit(6 + 2 / 12, "feet"),
  13708. default: true
  13709. },
  13710. {
  13711. name: "Macro",
  13712. height: math.unit(300, "feet")
  13713. },
  13714. {
  13715. name: "Megamacro",
  13716. height: math.unit(700, "miles")
  13717. },
  13718. ]
  13719. ))
  13720. characterMakers.push(() => makeCharacter(
  13721. { name: "Mark" },
  13722. {
  13723. front: {
  13724. height: math.unit(6, "feet"),
  13725. weight: math.unit(160, "lb"),
  13726. name: "Front",
  13727. image: {
  13728. source: "./media/characters/mark/front.svg",
  13729. extra: 3300 / 3100,
  13730. bottom: 136.42 / 3440.47
  13731. }
  13732. },
  13733. },
  13734. [
  13735. {
  13736. name: "Macro",
  13737. height: math.unit(120, "meters")
  13738. },
  13739. {
  13740. name: "Bigger Macro",
  13741. height: math.unit(350, "meters")
  13742. },
  13743. {
  13744. name: "Megamacro",
  13745. height: math.unit(8, "km"),
  13746. default: true
  13747. },
  13748. {
  13749. name: "Continental",
  13750. height: math.unit(4550, "km")
  13751. },
  13752. {
  13753. name: "Planetary",
  13754. height: math.unit(65000, "km")
  13755. },
  13756. ]
  13757. ))
  13758. characterMakers.push(() => makeCharacter(
  13759. { name: "Mac" },
  13760. {
  13761. front: {
  13762. height: math.unit(6, "feet"),
  13763. weight: math.unit(400, "lb"),
  13764. name: "Front",
  13765. image: {
  13766. source: "./media/characters/mac/front.svg",
  13767. extra: 1048 / 987.7,
  13768. bottom: 60 / 1107.6,
  13769. }
  13770. },
  13771. },
  13772. [
  13773. {
  13774. name: "Macro",
  13775. height: math.unit(500, "feet"),
  13776. default: true
  13777. },
  13778. ]
  13779. ))
  13780. characterMakers.push(() => makeCharacter(
  13781. { name: "Bari" },
  13782. {
  13783. front: {
  13784. height: math.unit(5 + 2 / 12, "feet"),
  13785. weight: math.unit(190, "lb"),
  13786. name: "Front",
  13787. image: {
  13788. source: "./media/characters/bari/front.svg",
  13789. extra: 3156 / 2880,
  13790. bottom: 0.03
  13791. }
  13792. },
  13793. back: {
  13794. height: math.unit(5 + 2 / 12, "feet"),
  13795. weight: math.unit(190, "lb"),
  13796. name: "Back",
  13797. image: {
  13798. source: "./media/characters/bari/back.svg",
  13799. extra: 3260 / 2834,
  13800. bottom: 0.025
  13801. }
  13802. },
  13803. frontPlush: {
  13804. height: math.unit(5 + 2 / 12, "feet"),
  13805. weight: math.unit(190, "lb"),
  13806. name: "Front (Plush)",
  13807. image: {
  13808. source: "./media/characters/bari/front-plush.svg",
  13809. extra: 1112 / 1061,
  13810. bottom: 0.002
  13811. }
  13812. },
  13813. },
  13814. [
  13815. {
  13816. name: "Micro",
  13817. height: math.unit(3, "inches")
  13818. },
  13819. {
  13820. name: "Normal",
  13821. height: math.unit(5 + 2 / 12, "feet"),
  13822. default: true
  13823. },
  13824. {
  13825. name: "Macro",
  13826. height: math.unit(20, "feet")
  13827. },
  13828. ]
  13829. ))
  13830. characterMakers.push(() => makeCharacter(
  13831. { name: "Hunter Misha Raven" },
  13832. {
  13833. front: {
  13834. height: math.unit(6 + 1 / 12, "feet"),
  13835. weight: math.unit(275, "lb"),
  13836. name: "Front",
  13837. image: {
  13838. source: "./media/characters/hunter-misha-raven/front.svg"
  13839. }
  13840. },
  13841. },
  13842. [
  13843. {
  13844. name: "Mortal",
  13845. height: math.unit(6 + 1 / 12, "feet")
  13846. },
  13847. {
  13848. name: "Divine",
  13849. height: math.unit(1.12134e34, "parsecs"),
  13850. default: true
  13851. },
  13852. ]
  13853. ))
  13854. characterMakers.push(() => makeCharacter(
  13855. { name: "Max Calore" },
  13856. {
  13857. front: {
  13858. height: math.unit(6 + 3 / 12, "feet"),
  13859. weight: math.unit(220, "lb"),
  13860. name: "Front",
  13861. image: {
  13862. source: "./media/characters/max-calore/front.svg",
  13863. extra: 1700 / 1648,
  13864. bottom: 0.01
  13865. }
  13866. },
  13867. back: {
  13868. height: math.unit(6 + 3 / 12, "feet"),
  13869. weight: math.unit(220, "lb"),
  13870. name: "Back",
  13871. image: {
  13872. source: "./media/characters/max-calore/back.svg",
  13873. extra: 1700 / 1648,
  13874. bottom: 0.01
  13875. }
  13876. },
  13877. },
  13878. [
  13879. {
  13880. name: "Normal",
  13881. height: math.unit(6 + 3 / 12, "feet"),
  13882. default: true
  13883. },
  13884. ]
  13885. ))
  13886. characterMakers.push(() => makeCharacter(
  13887. { name: "Aspen" },
  13888. {
  13889. side: {
  13890. height: math.unit(2 + 8 / 12, "feet"),
  13891. weight: math.unit(99, "lb"),
  13892. name: "Side",
  13893. image: {
  13894. source: "./media/characters/aspen/side.svg",
  13895. extra: 152 / 138,
  13896. bottom: 0.032
  13897. }
  13898. },
  13899. },
  13900. [
  13901. {
  13902. name: "Normal",
  13903. height: math.unit(2 + 8 / 12, "feet"),
  13904. default: true
  13905. },
  13906. ]
  13907. ))
  13908. characterMakers.push(() => makeCharacter(
  13909. { name: "Sheila (Wolf)" },
  13910. {
  13911. side: {
  13912. height: math.unit(3 + 2 / 12, "feet"),
  13913. weight: math.unit(224, "lb"),
  13914. name: "Side",
  13915. image: {
  13916. source: "./media/characters/sheila-wolf/side.svg",
  13917. extra: 179 / 166,
  13918. bottom: 0.03
  13919. }
  13920. },
  13921. },
  13922. [
  13923. {
  13924. name: "Normal",
  13925. height: math.unit(3 + 2 / 12, "feet"),
  13926. default: true
  13927. },
  13928. ]
  13929. ))
  13930. characterMakers.push(() => makeCharacter(
  13931. { name: "Michelle" },
  13932. {
  13933. side: {
  13934. height: math.unit(1 + 9 / 12, "feet"),
  13935. weight: math.unit(38, "lb"),
  13936. name: "Side",
  13937. image: {
  13938. source: "./media/characters/michelle/side.svg",
  13939. extra: 147 / 136.7,
  13940. bottom: 0.03
  13941. }
  13942. },
  13943. },
  13944. [
  13945. {
  13946. name: "Normal",
  13947. height: math.unit(1 + 9 / 12, "feet"),
  13948. default: true
  13949. },
  13950. ]
  13951. ))
  13952. characterMakers.push(() => makeCharacter(
  13953. { name: "Nino" },
  13954. {
  13955. front: {
  13956. height: math.unit(1 + 1 / 12, "feet"),
  13957. weight: math.unit(18, "lb"),
  13958. name: "Front",
  13959. image: {
  13960. source: "./media/characters/nino/front.svg"
  13961. }
  13962. },
  13963. },
  13964. [
  13965. {
  13966. name: "Normal",
  13967. height: math.unit(1 + 1 / 12, "feet"),
  13968. default: true
  13969. },
  13970. ]
  13971. ))
  13972. characterMakers.push(() => makeCharacter(
  13973. { name: "Viola" },
  13974. {
  13975. front: {
  13976. height: math.unit(1, "feet"),
  13977. weight: math.unit(16, "lb"),
  13978. name: "Front",
  13979. image: {
  13980. source: "./media/characters/viola/front.svg"
  13981. }
  13982. },
  13983. },
  13984. [
  13985. {
  13986. name: "Normal",
  13987. height: math.unit(1, "feet"),
  13988. default: true
  13989. },
  13990. ]
  13991. ))
  13992. characterMakers.push(() => makeCharacter(
  13993. { name: "Atlas" },
  13994. {
  13995. front: {
  13996. height: math.unit(6 + 5 / 12, "feet"),
  13997. weight: math.unit(580, "lb"),
  13998. name: "Front",
  13999. image: {
  14000. source: "./media/characters/atlas/front.svg",
  14001. extra: 298.5 / 290,
  14002. bottom: 0.015
  14003. }
  14004. },
  14005. },
  14006. [
  14007. {
  14008. name: "Normal",
  14009. height: math.unit(6 + 5 / 12, "feet"),
  14010. default: true
  14011. },
  14012. ]
  14013. ))
  14014. characterMakers.push(() => makeCharacter(
  14015. { name: "Davy" },
  14016. {
  14017. side: {
  14018. height: math.unit(1 + 10 / 12, "feet"),
  14019. weight: math.unit(25, "lb"),
  14020. name: "Side",
  14021. image: {
  14022. source: "./media/characters/davy/side.svg",
  14023. extra: 200 / 170,
  14024. bottom: 0.01
  14025. }
  14026. },
  14027. },
  14028. [
  14029. {
  14030. name: "Normal",
  14031. height: math.unit(1 + 10 / 12, "feet"),
  14032. default: true
  14033. },
  14034. ]
  14035. ))
  14036. characterMakers.push(() => makeCharacter(
  14037. { name: "Fiona" },
  14038. {
  14039. side: {
  14040. height: math.unit(4 + 8 / 12, "feet"),
  14041. weight: math.unit(166, "lb"),
  14042. name: "Side",
  14043. image: {
  14044. source: "./media/characters/fiona/side.svg",
  14045. extra: 232 / 220,
  14046. bottom: 0.03
  14047. }
  14048. },
  14049. },
  14050. [
  14051. {
  14052. name: "Normal",
  14053. height: math.unit(4 + 8 / 12, "feet"),
  14054. default: true
  14055. },
  14056. ]
  14057. ))
  14058. characterMakers.push(() => makeCharacter(
  14059. { name: "Lyla" },
  14060. {
  14061. front: {
  14062. height: math.unit(2, "feet"),
  14063. weight: math.unit(62, "lb"),
  14064. name: "Front",
  14065. image: {
  14066. source: "./media/characters/lyla/front.svg",
  14067. bottom: 0.1
  14068. }
  14069. },
  14070. },
  14071. [
  14072. {
  14073. name: "Normal",
  14074. height: math.unit(2, "feet"),
  14075. default: true
  14076. },
  14077. ]
  14078. ))
  14079. characterMakers.push(() => makeCharacter(
  14080. { name: "Perseus" },
  14081. {
  14082. side: {
  14083. height: math.unit(1.8, "feet"),
  14084. weight: math.unit(44, "lb"),
  14085. name: "Side",
  14086. image: {
  14087. source: "./media/characters/perseus/side.svg",
  14088. bottom: 0.21
  14089. }
  14090. },
  14091. },
  14092. [
  14093. {
  14094. name: "Normal",
  14095. height: math.unit(1.8, "feet"),
  14096. default: true
  14097. },
  14098. ]
  14099. ))
  14100. characterMakers.push(() => makeCharacter(
  14101. { name: "Remus" },
  14102. {
  14103. side: {
  14104. height: math.unit(4 + 2 / 12, "feet"),
  14105. weight: math.unit(20, "lb"),
  14106. name: "Side",
  14107. image: {
  14108. source: "./media/characters/remus/side.svg"
  14109. }
  14110. },
  14111. },
  14112. [
  14113. {
  14114. name: "Normal",
  14115. height: math.unit(4 + 2 / 12, "feet"),
  14116. default: true
  14117. },
  14118. ]
  14119. ))
  14120. characterMakers.push(() => makeCharacter(
  14121. { name: "Raf" },
  14122. {
  14123. front: {
  14124. height: math.unit(4 + 11 / 12, "feet"),
  14125. weight: math.unit(114, "lb"),
  14126. name: "Front",
  14127. image: {
  14128. source: "./media/characters/raf/front.svg",
  14129. bottom: 0.01
  14130. }
  14131. },
  14132. side: {
  14133. height: math.unit(4 + 11 / 12, "feet"),
  14134. weight: math.unit(114, "lb"),
  14135. name: "Side",
  14136. image: {
  14137. source: "./media/characters/raf/side.svg",
  14138. bottom: 0.005
  14139. }
  14140. },
  14141. },
  14142. [
  14143. {
  14144. name: "Micro",
  14145. height: math.unit(2, "inches")
  14146. },
  14147. {
  14148. name: "Normal",
  14149. height: math.unit(4 + 11 / 12, "feet"),
  14150. default: true
  14151. },
  14152. {
  14153. name: "Macro",
  14154. height: math.unit(70, "feet")
  14155. },
  14156. ]
  14157. ))
  14158. characterMakers.push(() => makeCharacter(
  14159. { name: "Liam Einarr" },
  14160. {
  14161. front: {
  14162. height: math.unit(1.5, "meters"),
  14163. weight: math.unit(68, "kg"),
  14164. name: "Front",
  14165. image: {
  14166. source: "./media/characters/liam-einarr/front.svg",
  14167. extra: 2822 / 2666
  14168. }
  14169. },
  14170. back: {
  14171. height: math.unit(1.5, "meters"),
  14172. weight: math.unit(68, "kg"),
  14173. name: "Back",
  14174. image: {
  14175. source: "./media/characters/liam-einarr/back.svg",
  14176. extra: 2822 / 2666,
  14177. bottom: 0.015
  14178. }
  14179. },
  14180. },
  14181. [
  14182. {
  14183. name: "Normal",
  14184. height: math.unit(1.5, "meters"),
  14185. default: true
  14186. },
  14187. {
  14188. name: "Macro",
  14189. height: math.unit(150, "meters")
  14190. },
  14191. {
  14192. name: "Megamacro",
  14193. height: math.unit(35, "km")
  14194. },
  14195. ]
  14196. ))
  14197. characterMakers.push(() => makeCharacter(
  14198. { name: "Linda" },
  14199. {
  14200. front: {
  14201. height: math.unit(6, "feet"),
  14202. weight: math.unit(75, "kg"),
  14203. name: "Front",
  14204. image: {
  14205. source: "./media/characters/linda/front.svg",
  14206. extra: 930 / 874,
  14207. bottom: 0.004
  14208. }
  14209. },
  14210. },
  14211. [
  14212. {
  14213. name: "Normal",
  14214. height: math.unit(6, "feet"),
  14215. default: true
  14216. },
  14217. ]
  14218. ))
  14219. characterMakers.push(() => makeCharacter(
  14220. { name: "Caylex" },
  14221. {
  14222. front: {
  14223. height: math.unit(6 + 8 / 12, "feet"),
  14224. weight: math.unit(220, "lb"),
  14225. name: "Front",
  14226. image: {
  14227. source: "./media/characters/caylex/front.svg",
  14228. extra: 821 / 772,
  14229. bottom: 0.07
  14230. }
  14231. },
  14232. back: {
  14233. height: math.unit(6 + 8 / 12, "feet"),
  14234. weight: math.unit(220, "lb"),
  14235. name: "Back",
  14236. image: {
  14237. source: "./media/characters/caylex/back.svg",
  14238. extra: 821 / 772,
  14239. bottom: 0.022
  14240. }
  14241. },
  14242. hand: {
  14243. height: math.unit(1.25, "feet"),
  14244. name: "Hand",
  14245. image: {
  14246. source: "./media/characters/caylex/hand.svg"
  14247. }
  14248. },
  14249. foot: {
  14250. height: math.unit(1.6, "feet"),
  14251. name: "Foot",
  14252. image: {
  14253. source: "./media/characters/caylex/foot.svg"
  14254. }
  14255. },
  14256. armored: {
  14257. height: math.unit(6 + 8 / 12, "feet"),
  14258. weight: math.unit(250, "lb"),
  14259. name: "Armored",
  14260. image: {
  14261. source: "./media/characters/caylex/armored.svg",
  14262. extra: 1420 / 1310,
  14263. bottom: 0.045
  14264. }
  14265. },
  14266. },
  14267. [
  14268. {
  14269. name: "Normal",
  14270. height: math.unit(6 + 8 / 12, "feet"),
  14271. default: true
  14272. },
  14273. {
  14274. name: "Normal+",
  14275. height: math.unit(12, "feet")
  14276. },
  14277. ]
  14278. ))
  14279. characterMakers.push(() => makeCharacter(
  14280. { name: "Alana" },
  14281. {
  14282. front: {
  14283. height: math.unit(7 + 6 / 12, "feet"),
  14284. weight: math.unit(288, "lb"),
  14285. name: "Front",
  14286. image: {
  14287. source: "./media/characters/alana/front.svg",
  14288. extra: 679 / 653,
  14289. bottom: 22.5 / 701
  14290. }
  14291. },
  14292. },
  14293. [
  14294. {
  14295. name: "Normal",
  14296. height: math.unit(7 + 6 / 12, "feet")
  14297. },
  14298. {
  14299. name: "Large",
  14300. height: math.unit(50, "feet")
  14301. },
  14302. {
  14303. name: "Macro",
  14304. height: math.unit(100, "feet"),
  14305. default: true
  14306. },
  14307. {
  14308. name: "Macro+",
  14309. height: math.unit(200, "feet")
  14310. },
  14311. ]
  14312. ))
  14313. characterMakers.push(() => makeCharacter(
  14314. { name: "Hasani" },
  14315. {
  14316. front: {
  14317. height: math.unit(6 + 1 / 12, "feet"),
  14318. weight: math.unit(210, "lb"),
  14319. name: "Front",
  14320. image: {
  14321. source: "./media/characters/hasani/front.svg",
  14322. extra: 244 / 232,
  14323. bottom: 0.01
  14324. }
  14325. },
  14326. back: {
  14327. height: math.unit(6 + 1 / 12, "feet"),
  14328. weight: math.unit(210, "lb"),
  14329. name: "Back",
  14330. image: {
  14331. source: "./media/characters/hasani/back.svg",
  14332. extra: 244 / 232,
  14333. bottom: 0.01
  14334. }
  14335. },
  14336. },
  14337. [
  14338. {
  14339. name: "Normal",
  14340. height: math.unit(6 + 1 / 12, "feet")
  14341. },
  14342. {
  14343. name: "Macro",
  14344. height: math.unit(175, "feet"),
  14345. default: true
  14346. },
  14347. ]
  14348. ))
  14349. characterMakers.push(() => makeCharacter(
  14350. { name: "Nita" },
  14351. {
  14352. front: {
  14353. height: math.unit(1.82, "meters"),
  14354. weight: math.unit(140, "lb"),
  14355. name: "Front",
  14356. image: {
  14357. source: "./media/characters/nita/front.svg",
  14358. extra: 2473 / 2363,
  14359. bottom: 0.01
  14360. }
  14361. },
  14362. },
  14363. [
  14364. {
  14365. name: "Normal",
  14366. height: math.unit(1.82, "m")
  14367. },
  14368. {
  14369. name: "Macro",
  14370. height: math.unit(300, "m")
  14371. },
  14372. {
  14373. name: "Mistake Canon",
  14374. height: math.unit(0.5, "miles"),
  14375. default: true
  14376. },
  14377. {
  14378. name: "Big Mistake",
  14379. height: math.unit(13, "miles")
  14380. },
  14381. {
  14382. name: "Playing God",
  14383. height: math.unit(2450, "miles")
  14384. },
  14385. ]
  14386. ))
  14387. characterMakers.push(() => makeCharacter(
  14388. { name: "Shiriko" },
  14389. {
  14390. front: {
  14391. height: math.unit(4, "feet"),
  14392. weight: math.unit(120, "lb"),
  14393. name: "Front",
  14394. image: {
  14395. source: "./media/characters/shiriko/front.svg",
  14396. extra: 195 / 188
  14397. }
  14398. },
  14399. },
  14400. [
  14401. {
  14402. name: "Normal",
  14403. height: math.unit(4, "feet"),
  14404. default: true
  14405. },
  14406. ]
  14407. ))
  14408. characterMakers.push(() => makeCharacter(
  14409. { name: "Deja" },
  14410. {
  14411. front: {
  14412. height: math.unit(6, "feet"),
  14413. name: "front",
  14414. image: {
  14415. source: "./media/characters/deja/front.svg",
  14416. extra: 926 / 840,
  14417. bottom: 0.07
  14418. }
  14419. },
  14420. },
  14421. [
  14422. {
  14423. name: "Planck Length",
  14424. height: math.unit(1.6e-35, "meters")
  14425. },
  14426. {
  14427. name: "Normal",
  14428. height: math.unit(30.48, "meters"),
  14429. default: true
  14430. },
  14431. {
  14432. name: "Universal",
  14433. height: math.unit(8.8e26, "meters")
  14434. },
  14435. ]
  14436. ))
  14437. characterMakers.push(() => makeCharacter(
  14438. { name: "Anima" },
  14439. {
  14440. side: {
  14441. height: math.unit(8, "feet"),
  14442. weight: math.unit(6300, "lb"),
  14443. name: "Side",
  14444. image: {
  14445. source: "./media/characters/anima/side.svg",
  14446. bottom: 0.035
  14447. }
  14448. },
  14449. },
  14450. [
  14451. {
  14452. name: "Normal",
  14453. height: math.unit(8, "feet"),
  14454. default: true
  14455. },
  14456. ]
  14457. ))
  14458. characterMakers.push(() => makeCharacter(
  14459. { name: "Bianca" },
  14460. {
  14461. front: {
  14462. height: math.unit(8, "feet"),
  14463. weight: math.unit(350, "lb"),
  14464. name: "Front",
  14465. image: {
  14466. source: "./media/characters/bianca/front.svg",
  14467. extra: 234 / 225,
  14468. bottom: 0.03
  14469. }
  14470. },
  14471. },
  14472. [
  14473. {
  14474. name: "Normal",
  14475. height: math.unit(8, "feet"),
  14476. default: true
  14477. },
  14478. ]
  14479. ))
  14480. characterMakers.push(() => makeCharacter(
  14481. { name: "Adinia" },
  14482. {
  14483. front: {
  14484. height: math.unit(6, "feet"),
  14485. weight: math.unit(150, "lb"),
  14486. name: "Front",
  14487. image: {
  14488. source: "./media/characters/adinia/front.svg",
  14489. extra: 1845 / 1672,
  14490. bottom: 0.02
  14491. }
  14492. },
  14493. back: {
  14494. height: math.unit(6, "feet"),
  14495. weight: math.unit(150, "lb"),
  14496. name: "Back",
  14497. image: {
  14498. source: "./media/characters/adinia/back.svg",
  14499. extra: 1845 / 1672,
  14500. bottom: 0.002
  14501. }
  14502. },
  14503. },
  14504. [
  14505. {
  14506. name: "Normal",
  14507. height: math.unit(11 + 5 / 12, "feet"),
  14508. default: true
  14509. },
  14510. ]
  14511. ))
  14512. characterMakers.push(() => makeCharacter(
  14513. { name: "Lykasa" },
  14514. {
  14515. front: {
  14516. height: math.unit(3, "meters"),
  14517. weight: math.unit(200, "kg"),
  14518. name: "Front",
  14519. image: {
  14520. source: "./media/characters/lykasa/front.svg",
  14521. extra: 1076 / 976,
  14522. bottom: 0.06
  14523. }
  14524. },
  14525. },
  14526. [
  14527. {
  14528. name: "Normal",
  14529. height: math.unit(3, "meters")
  14530. },
  14531. {
  14532. name: "Kaiku",
  14533. height: math.unit(120, "meters"),
  14534. default: true
  14535. },
  14536. {
  14537. name: "Mega Kaiju",
  14538. height: math.unit(240, "km")
  14539. },
  14540. {
  14541. name: "Giga Kaiju",
  14542. height: math.unit(400, "megameters")
  14543. },
  14544. {
  14545. name: "Tera Kaiju",
  14546. height: math.unit(800, "gigameters")
  14547. },
  14548. {
  14549. name: "Kaiju Dragon Goddess",
  14550. height: math.unit(26, "zettaparsecs")
  14551. },
  14552. ]
  14553. ))
  14554. characterMakers.push(() => makeCharacter(
  14555. { name: "Malfaren" },
  14556. {
  14557. side: {
  14558. height: math.unit(283 / 124 * 6, "feet"),
  14559. weight: math.unit(35000, "lb"),
  14560. name: "Side",
  14561. image: {
  14562. source: "./media/characters/malfaren/side.svg",
  14563. extra: 2500 / 1010,
  14564. bottom: 0.01
  14565. }
  14566. },
  14567. front: {
  14568. height: math.unit(22.36, "feet"),
  14569. weight: math.unit(35000, "lb"),
  14570. name: "Front",
  14571. image: {
  14572. source: "./media/characters/malfaren/front.svg",
  14573. extra: 1631 / 1476,
  14574. bottom: 0.01
  14575. }
  14576. },
  14577. maw: {
  14578. height: math.unit(6.9, "feet"),
  14579. name: "Maw",
  14580. image: {
  14581. source: "./media/characters/malfaren/maw.svg"
  14582. }
  14583. },
  14584. },
  14585. [
  14586. {
  14587. name: "Big",
  14588. height: math.unit(283 / 162 * 6, "feet"),
  14589. },
  14590. {
  14591. name: "Bigger",
  14592. height: math.unit(283 / 124 * 6, "feet")
  14593. },
  14594. {
  14595. name: "Massive",
  14596. height: math.unit(283 / 92 * 6, "feet"),
  14597. default: true
  14598. },
  14599. {
  14600. name: "👀💦",
  14601. height: math.unit(283 / 73 * 6, "feet"),
  14602. },
  14603. ]
  14604. ))
  14605. characterMakers.push(() => makeCharacter(
  14606. { name: "Kernel" },
  14607. {
  14608. front: {
  14609. height: math.unit(1.7, "m"),
  14610. weight: math.unit(70, "kg"),
  14611. name: "Front",
  14612. image: {
  14613. source: "./media/characters/kernel/front.svg",
  14614. extra: 222 / 210,
  14615. bottom: 0.007
  14616. }
  14617. },
  14618. },
  14619. [
  14620. {
  14621. name: "Nano",
  14622. height: math.unit(17, "micrometers")
  14623. },
  14624. {
  14625. name: "Micro",
  14626. height: math.unit(1.7, "mm")
  14627. },
  14628. {
  14629. name: "Small",
  14630. height: math.unit(1.7, "cm")
  14631. },
  14632. {
  14633. name: "Normal",
  14634. height: math.unit(1.7, "m"),
  14635. default: true
  14636. },
  14637. ]
  14638. ))
  14639. characterMakers.push(() => makeCharacter(
  14640. { name: "Jayne Folest" },
  14641. {
  14642. front: {
  14643. height: math.unit(1.75, "meters"),
  14644. weight: math.unit(65, "kg"),
  14645. name: "Front",
  14646. image: {
  14647. source: "./media/characters/jayne-folest/front.svg",
  14648. extra: 2115 / 2007,
  14649. bottom: 0.02
  14650. }
  14651. },
  14652. back: {
  14653. height: math.unit(1.75, "meters"),
  14654. weight: math.unit(65, "kg"),
  14655. name: "Back",
  14656. image: {
  14657. source: "./media/characters/jayne-folest/back.svg",
  14658. extra: 2115 / 2007,
  14659. bottom: 0.005
  14660. }
  14661. },
  14662. frontClothed: {
  14663. height: math.unit(1.75, "meters"),
  14664. weight: math.unit(65, "kg"),
  14665. name: "Front (Clothed)",
  14666. image: {
  14667. source: "./media/characters/jayne-folest/front-clothed.svg",
  14668. extra: 2115 / 2007,
  14669. bottom: 0.035
  14670. }
  14671. },
  14672. hand: {
  14673. height: math.unit(1 / 1.260, "feet"),
  14674. name: "Hand",
  14675. image: {
  14676. source: "./media/characters/jayne-folest/hand.svg"
  14677. }
  14678. },
  14679. foot: {
  14680. height: math.unit(1 / 0.918, "feet"),
  14681. name: "Foot",
  14682. image: {
  14683. source: "./media/characters/jayne-folest/foot.svg"
  14684. }
  14685. },
  14686. },
  14687. [
  14688. {
  14689. name: "Micro",
  14690. height: math.unit(4, "cm")
  14691. },
  14692. {
  14693. name: "Normal",
  14694. height: math.unit(1.75, "meters")
  14695. },
  14696. {
  14697. name: "Macro",
  14698. height: math.unit(47.5, "meters"),
  14699. default: true
  14700. },
  14701. ]
  14702. ))
  14703. characterMakers.push(() => makeCharacter(
  14704. { name: "Algier" },
  14705. {
  14706. front: {
  14707. height: math.unit(180, "cm"),
  14708. weight: math.unit(70, "kg"),
  14709. name: "Front",
  14710. image: {
  14711. source: "./media/characters/algier/front.svg",
  14712. extra: 596 / 572,
  14713. bottom: 0.04
  14714. }
  14715. },
  14716. back: {
  14717. height: math.unit(180, "cm"),
  14718. weight: math.unit(70, "kg"),
  14719. name: "Back",
  14720. image: {
  14721. source: "./media/characters/algier/back.svg",
  14722. extra: 596 / 572,
  14723. bottom: 0.025
  14724. }
  14725. },
  14726. frontdressed: {
  14727. height: math.unit(180, "cm"),
  14728. weight: math.unit(150, "kg"),
  14729. name: "Front-dressed",
  14730. image: {
  14731. source: "./media/characters/algier/front-dressed.svg",
  14732. extra: 596 / 572,
  14733. bottom: 0.038
  14734. }
  14735. },
  14736. },
  14737. [
  14738. {
  14739. name: "Micro",
  14740. height: math.unit(5, "cm")
  14741. },
  14742. {
  14743. name: "Normal",
  14744. height: math.unit(180, "cm"),
  14745. default: true
  14746. },
  14747. {
  14748. name: "Macro",
  14749. height: math.unit(64, "m")
  14750. },
  14751. ]
  14752. ))
  14753. characterMakers.push(() => makeCharacter(
  14754. { name: "Pretzel" },
  14755. {
  14756. upright: {
  14757. height: math.unit(7, "feet"),
  14758. weight: math.unit(300, "lb"),
  14759. name: "Upright",
  14760. image: {
  14761. source: "./media/characters/pretzel/upright.svg",
  14762. extra: 534 / 522,
  14763. bottom: 0.065
  14764. }
  14765. },
  14766. sprawling: {
  14767. height: math.unit(3.75, "feet"),
  14768. weight: math.unit(300, "lb"),
  14769. name: "Sprawling",
  14770. image: {
  14771. source: "./media/characters/pretzel/sprawling.svg",
  14772. extra: 314 / 281,
  14773. bottom: 0.1
  14774. }
  14775. },
  14776. tongue: {
  14777. height: math.unit(2, "feet"),
  14778. name: "Tongue",
  14779. image: {
  14780. source: "./media/characters/pretzel/tongue.svg"
  14781. }
  14782. },
  14783. },
  14784. [
  14785. {
  14786. name: "Normal",
  14787. height: math.unit(7, "feet"),
  14788. default: true
  14789. },
  14790. {
  14791. name: "Oversized",
  14792. height: math.unit(15, "feet")
  14793. },
  14794. {
  14795. name: "Huge",
  14796. height: math.unit(30, "feet")
  14797. },
  14798. {
  14799. name: "Macro",
  14800. height: math.unit(250, "feet")
  14801. },
  14802. ]
  14803. ))
  14804. characterMakers.push(() => makeCharacter(
  14805. { name: "Roxi" },
  14806. {
  14807. sideFront: {
  14808. height: math.unit(5 + 2 / 12, "feet"),
  14809. weight: math.unit(120, "lb"),
  14810. name: "Front Side",
  14811. image: {
  14812. source: "./media/characters/roxi/side-front.svg",
  14813. extra: 2924 / 2717,
  14814. bottom: 0.08
  14815. }
  14816. },
  14817. sideBack: {
  14818. height: math.unit(5 + 2 / 12, "feet"),
  14819. weight: math.unit(120, "lb"),
  14820. name: "Back Side",
  14821. image: {
  14822. source: "./media/characters/roxi/side-back.svg",
  14823. extra: 2904 / 2693,
  14824. bottom: 0.06
  14825. }
  14826. },
  14827. front: {
  14828. height: math.unit(5 + 2 / 12, "feet"),
  14829. weight: math.unit(120, "lb"),
  14830. name: "Front",
  14831. image: {
  14832. source: "./media/characters/roxi/front.svg",
  14833. extra: 2028 / 1907,
  14834. bottom: 0.01
  14835. }
  14836. },
  14837. frontAlt: {
  14838. height: math.unit(5 + 2 / 12, "feet"),
  14839. weight: math.unit(120, "lb"),
  14840. name: "Front (Alt)",
  14841. image: {
  14842. source: "./media/characters/roxi/front-alt.svg",
  14843. extra: 1828 / 1798,
  14844. bottom: 0.01
  14845. }
  14846. },
  14847. sitting: {
  14848. height: math.unit(2.8, "feet"),
  14849. weight: math.unit(120, "lb"),
  14850. name: "Sitting",
  14851. image: {
  14852. source: "./media/characters/roxi/sitting.svg",
  14853. extra: 2660 / 2462,
  14854. bottom: 0.1
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Normal",
  14861. height: math.unit(5 + 2 / 12, "feet"),
  14862. default: true
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Shadow" },
  14868. {
  14869. side: {
  14870. height: math.unit(55, "feet"),
  14871. weight: math.unit(153, "tons"),
  14872. name: "Side",
  14873. image: {
  14874. source: "./media/characters/shadow/side.svg",
  14875. extra: 701 / 628,
  14876. bottom: 0.02
  14877. }
  14878. },
  14879. flying: {
  14880. height: math.unit(145, "feet"),
  14881. weight: math.unit(153, "tons"),
  14882. name: "Flying",
  14883. image: {
  14884. source: "./media/characters/shadow/flying.svg"
  14885. }
  14886. },
  14887. },
  14888. [
  14889. {
  14890. name: "Normal",
  14891. height: math.unit(55, "feet"),
  14892. default: true
  14893. },
  14894. ]
  14895. ))
  14896. characterMakers.push(() => makeCharacter(
  14897. { name: "Marcie" },
  14898. {
  14899. front: {
  14900. height: math.unit(6, "feet"),
  14901. weight: math.unit(200, "lb"),
  14902. name: "Front",
  14903. image: {
  14904. source: "./media/characters/marcie/front.svg",
  14905. extra: 960 / 876,
  14906. bottom: 58 / 1017.87
  14907. }
  14908. },
  14909. },
  14910. [
  14911. {
  14912. name: "Macro",
  14913. height: math.unit(1, "mile"),
  14914. default: true
  14915. },
  14916. ]
  14917. ))
  14918. characterMakers.push(() => makeCharacter(
  14919. { name: "Kachina" },
  14920. {
  14921. front: {
  14922. height: math.unit(7, "feet"),
  14923. weight: math.unit(200, "lb"),
  14924. name: "Front",
  14925. image: {
  14926. source: "./media/characters/kachina/front.svg",
  14927. extra: 1290.68 / 1119,
  14928. bottom: 36.5 / 1327.18
  14929. }
  14930. },
  14931. },
  14932. [
  14933. {
  14934. name: "Normal",
  14935. height: math.unit(7, "feet"),
  14936. default: true
  14937. },
  14938. ]
  14939. ))
  14940. characterMakers.push(() => makeCharacter(
  14941. { name: "Kash" },
  14942. {
  14943. looking: {
  14944. height: math.unit(2, "meters"),
  14945. weight: math.unit(300, "kg"),
  14946. name: "Looking",
  14947. image: {
  14948. source: "./media/characters/kash/looking.svg",
  14949. extra: 474 / 344,
  14950. bottom: 0.03
  14951. }
  14952. },
  14953. side: {
  14954. height: math.unit(2, "meters"),
  14955. weight: math.unit(300, "kg"),
  14956. name: "Side",
  14957. image: {
  14958. source: "./media/characters/kash/side.svg",
  14959. extra: 302 / 251,
  14960. bottom: 0.03
  14961. }
  14962. },
  14963. front: {
  14964. height: math.unit(2, "meters"),
  14965. weight: math.unit(300, "kg"),
  14966. name: "Front",
  14967. image: {
  14968. source: "./media/characters/kash/front.svg",
  14969. extra: 495 / 360,
  14970. bottom: 0.015
  14971. }
  14972. },
  14973. },
  14974. [
  14975. {
  14976. name: "Normal",
  14977. height: math.unit(2, "meters"),
  14978. default: true
  14979. },
  14980. {
  14981. name: "Big",
  14982. height: math.unit(3, "meters")
  14983. },
  14984. {
  14985. name: "Large",
  14986. height: math.unit(5, "meters")
  14987. },
  14988. ]
  14989. ))
  14990. characterMakers.push(() => makeCharacter(
  14991. { name: "Lalim" },
  14992. {
  14993. feeding: {
  14994. height: math.unit(6.7, "feet"),
  14995. weight: math.unit(350, "lb"),
  14996. name: "Feeding",
  14997. image: {
  14998. source: "./media/characters/lalim/feeding.svg",
  14999. }
  15000. },
  15001. },
  15002. [
  15003. {
  15004. name: "Normal",
  15005. height: math.unit(6.7, "feet"),
  15006. default: true
  15007. },
  15008. ]
  15009. ))
  15010. characterMakers.push(() => makeCharacter(
  15011. { name: "De'Vout" },
  15012. {
  15013. front: {
  15014. height: math.unit(9.5, "feet"),
  15015. weight: math.unit(600, "lb"),
  15016. name: "Front",
  15017. image: {
  15018. source: "./media/characters/de'vout/front.svg",
  15019. extra: 1443 / 1328,
  15020. bottom: 0.025
  15021. }
  15022. },
  15023. back: {
  15024. height: math.unit(9.5, "feet"),
  15025. weight: math.unit(600, "lb"),
  15026. name: "Back",
  15027. image: {
  15028. source: "./media/characters/de'vout/back.svg",
  15029. extra: 1443 / 1328
  15030. }
  15031. },
  15032. frontDressed: {
  15033. height: math.unit(9.5, "feet"),
  15034. weight: math.unit(600, "lb"),
  15035. name: "Front (Dressed",
  15036. image: {
  15037. source: "./media/characters/de'vout/front-dressed.svg",
  15038. extra: 1443 / 1328,
  15039. bottom: 0.025
  15040. }
  15041. },
  15042. backDressed: {
  15043. height: math.unit(9.5, "feet"),
  15044. weight: math.unit(600, "lb"),
  15045. name: "Back (Dressed",
  15046. image: {
  15047. source: "./media/characters/de'vout/back-dressed.svg",
  15048. extra: 1443 / 1328
  15049. }
  15050. },
  15051. },
  15052. [
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(9.5, "feet"),
  15056. default: true
  15057. },
  15058. ]
  15059. ))
  15060. characterMakers.push(() => makeCharacter(
  15061. { name: "Talana" },
  15062. {
  15063. front: {
  15064. height: math.unit(8, "feet"),
  15065. weight: math.unit(225, "lb"),
  15066. name: "Front",
  15067. image: {
  15068. source: "./media/characters/talana/front.svg",
  15069. extra: 1410 / 1300,
  15070. bottom: 0.015
  15071. }
  15072. },
  15073. frontDressed: {
  15074. height: math.unit(8, "feet"),
  15075. weight: math.unit(225, "lb"),
  15076. name: "Front (Dressed",
  15077. image: {
  15078. source: "./media/characters/talana/front-dressed.svg",
  15079. extra: 1410 / 1300,
  15080. bottom: 0.015
  15081. }
  15082. },
  15083. },
  15084. [
  15085. {
  15086. name: "Normal",
  15087. height: math.unit(8, "feet"),
  15088. default: true
  15089. },
  15090. ]
  15091. ))
  15092. characterMakers.push(() => makeCharacter(
  15093. { name: "Xeauvok" },
  15094. {
  15095. side: {
  15096. height: math.unit(7.2, "feet"),
  15097. weight: math.unit(150, "lb"),
  15098. name: "Side",
  15099. image: {
  15100. source: "./media/characters/xeauvok/side.svg",
  15101. extra: 1975 / 1523,
  15102. bottom: 0.07
  15103. }
  15104. },
  15105. },
  15106. [
  15107. {
  15108. name: "Normal",
  15109. height: math.unit(7.2, "feet"),
  15110. default: true
  15111. },
  15112. ]
  15113. ))
  15114. characterMakers.push(() => makeCharacter(
  15115. { name: "Zara" },
  15116. {
  15117. side: {
  15118. height: math.unit(10, "feet"),
  15119. weight: math.unit(900, "kg"),
  15120. name: "Side",
  15121. image: {
  15122. source: "./media/characters/zara/side.svg",
  15123. extra: 504 / 498
  15124. }
  15125. },
  15126. },
  15127. [
  15128. {
  15129. name: "Normal",
  15130. height: math.unit(10, "feet"),
  15131. default: true
  15132. },
  15133. ]
  15134. ))
  15135. characterMakers.push(() => makeCharacter(
  15136. { name: "Richard (Dragon)" },
  15137. {
  15138. side: {
  15139. height: math.unit(6, "feet"),
  15140. weight: math.unit(150, "lb"),
  15141. name: "Side",
  15142. image: {
  15143. source: "./media/characters/richard-dragon/side.svg",
  15144. extra: 845 / 340,
  15145. bottom: 0.017
  15146. }
  15147. },
  15148. maw: {
  15149. height: math.unit(2.97, "feet"),
  15150. name: "Maw",
  15151. image: {
  15152. source: "./media/characters/richard-dragon/maw.svg"
  15153. }
  15154. },
  15155. },
  15156. [
  15157. ]
  15158. ))
  15159. characterMakers.push(() => makeCharacter(
  15160. { name: "Richard (Smeargle)" },
  15161. {
  15162. front: {
  15163. height: math.unit(4, "feet"),
  15164. weight: math.unit(100, "lb"),
  15165. name: "Front",
  15166. image: {
  15167. source: "./media/characters/richard-smeargle/front.svg",
  15168. extra: 2952 / 2820,
  15169. bottom: 0.028
  15170. }
  15171. },
  15172. },
  15173. [
  15174. {
  15175. name: "Normal",
  15176. height: math.unit(4, "feet"),
  15177. default: true
  15178. },
  15179. {
  15180. name: "Dynamax",
  15181. height: math.unit(20, "meters")
  15182. },
  15183. ]
  15184. ))
  15185. characterMakers.push(() => makeCharacter(
  15186. { name: "Klay" },
  15187. {
  15188. front: {
  15189. height: math.unit(6, "feet"),
  15190. weight: math.unit(110, "lb"),
  15191. name: "Front",
  15192. image: {
  15193. source: "./media/characters/klay/front.svg",
  15194. extra: 962 / 883,
  15195. bottom: 0.04
  15196. }
  15197. },
  15198. back: {
  15199. height: math.unit(6, "feet"),
  15200. weight: math.unit(110, "lb"),
  15201. name: "Back",
  15202. image: {
  15203. source: "./media/characters/klay/back.svg",
  15204. extra: 962 / 883
  15205. }
  15206. },
  15207. beans: {
  15208. height: math.unit(1.15, "feet"),
  15209. name: "Beans",
  15210. image: {
  15211. source: "./media/characters/klay/beans.svg"
  15212. }
  15213. },
  15214. },
  15215. [
  15216. {
  15217. name: "Micro",
  15218. height: math.unit(6, "inches")
  15219. },
  15220. {
  15221. name: "Mini",
  15222. height: math.unit(3, "feet")
  15223. },
  15224. {
  15225. name: "Normal",
  15226. height: math.unit(6, "feet"),
  15227. default: true
  15228. },
  15229. {
  15230. name: "Big",
  15231. height: math.unit(25, "feet")
  15232. },
  15233. {
  15234. name: "Macro",
  15235. height: math.unit(100, "feet")
  15236. },
  15237. {
  15238. name: "Megamacro",
  15239. height: math.unit(400, "feet")
  15240. },
  15241. ]
  15242. ))
  15243. characterMakers.push(() => makeCharacter(
  15244. { name: "Marcus" },
  15245. {
  15246. front: {
  15247. height: math.unit(6, "feet"),
  15248. weight: math.unit(160, "lb"),
  15249. name: "Front",
  15250. image: {
  15251. source: "./media/characters/marcus/front.svg",
  15252. extra: 734 / 676,
  15253. bottom: 0.03
  15254. }
  15255. },
  15256. },
  15257. [
  15258. {
  15259. name: "Little",
  15260. height: math.unit(6, "feet")
  15261. },
  15262. {
  15263. name: "Normal",
  15264. height: math.unit(110, "feet"),
  15265. default: true
  15266. },
  15267. {
  15268. name: "Macro",
  15269. height: math.unit(250, "feet")
  15270. },
  15271. {
  15272. name: "Megamacro",
  15273. height: math.unit(1000, "feet")
  15274. },
  15275. ]
  15276. ))
  15277. characterMakers.push(() => makeCharacter(
  15278. { name: "Claude DelRoute" },
  15279. {
  15280. front: {
  15281. height: math.unit(7, "feet"),
  15282. weight: math.unit(275, "lb"),
  15283. name: "Front",
  15284. image: {
  15285. source: "./media/characters/claude-delroute/front.svg",
  15286. extra: 230 / 214,
  15287. bottom: 0.007
  15288. }
  15289. },
  15290. side: {
  15291. height: math.unit(7, "feet"),
  15292. weight: math.unit(275, "lb"),
  15293. name: "Side",
  15294. image: {
  15295. source: "./media/characters/claude-delroute/side.svg",
  15296. extra: 222 / 214,
  15297. bottom: 0.01
  15298. }
  15299. },
  15300. back: {
  15301. height: math.unit(7, "feet"),
  15302. weight: math.unit(275, "lb"),
  15303. name: "Back",
  15304. image: {
  15305. source: "./media/characters/claude-delroute/back.svg",
  15306. extra: 230 / 214,
  15307. bottom: 0.015
  15308. }
  15309. },
  15310. maw: {
  15311. height: math.unit(0.6407, "meters"),
  15312. name: "Maw",
  15313. image: {
  15314. source: "./media/characters/claude-delroute/maw.svg"
  15315. }
  15316. },
  15317. },
  15318. [
  15319. {
  15320. name: "Normal",
  15321. height: math.unit(7, "feet"),
  15322. default: true
  15323. },
  15324. {
  15325. name: "Lorge",
  15326. height: math.unit(20, "feet")
  15327. },
  15328. ]
  15329. ))
  15330. characterMakers.push(() => makeCharacter(
  15331. { name: "Dragonien" },
  15332. {
  15333. front: {
  15334. height: math.unit(8 + 4 / 12, "feet"),
  15335. weight: math.unit(600, "lb"),
  15336. name: "Front",
  15337. image: {
  15338. source: "./media/characters/dragonien/front.svg",
  15339. extra: 100 / 94,
  15340. bottom: 3.3 / 103.3445
  15341. }
  15342. },
  15343. back: {
  15344. height: math.unit(8 + 4 / 12, "feet"),
  15345. weight: math.unit(600, "lb"),
  15346. name: "Back",
  15347. image: {
  15348. source: "./media/characters/dragonien/back.svg",
  15349. extra: 776 / 746,
  15350. bottom: 6.4 / 782.0616
  15351. }
  15352. },
  15353. foot: {
  15354. height: math.unit(1.54, "feet"),
  15355. name: "Foot",
  15356. image: {
  15357. source: "./media/characters/dragonien/foot.svg",
  15358. }
  15359. },
  15360. },
  15361. [
  15362. {
  15363. name: "Normal",
  15364. height: math.unit(8 + 4 / 12, "feet"),
  15365. default: true
  15366. },
  15367. {
  15368. name: "Macro",
  15369. height: math.unit(200, "feet")
  15370. },
  15371. {
  15372. name: "Megamacro",
  15373. height: math.unit(1, "mile")
  15374. },
  15375. {
  15376. name: "Gigamacro",
  15377. height: math.unit(1000, "miles")
  15378. },
  15379. ]
  15380. ))
  15381. characterMakers.push(() => makeCharacter(
  15382. { name: "Desta" },
  15383. {
  15384. front: {
  15385. height: math.unit(5 + 2 / 12, "feet"),
  15386. weight: math.unit(110, "lb"),
  15387. name: "Front",
  15388. image: {
  15389. source: "./media/characters/desta/front.svg",
  15390. extra: 1482 / 1417
  15391. }
  15392. },
  15393. side: {
  15394. height: math.unit(5 + 2 / 12, "feet"),
  15395. weight: math.unit(110, "lb"),
  15396. name: "Side",
  15397. image: {
  15398. source: "./media/characters/desta/side.svg",
  15399. extra: 2579 / 2491,
  15400. bottom: 0.053
  15401. }
  15402. },
  15403. },
  15404. [
  15405. {
  15406. name: "Micro",
  15407. height: math.unit(6, "inches")
  15408. },
  15409. {
  15410. name: "Normal",
  15411. height: math.unit(5 + 2 / 12, "feet"),
  15412. default: true
  15413. },
  15414. {
  15415. name: "Macro",
  15416. height: math.unit(62, "feet")
  15417. },
  15418. {
  15419. name: "Megamacro",
  15420. height: math.unit(1800, "feet")
  15421. },
  15422. ]
  15423. ))
  15424. characterMakers.push(() => makeCharacter(
  15425. { name: "Storm Alystar" },
  15426. {
  15427. front: {
  15428. height: math.unit(10, "feet"),
  15429. weight: math.unit(700, "lb"),
  15430. name: "Front",
  15431. image: {
  15432. source: "./media/characters/storm-alystar/front.svg",
  15433. extra: 2112 / 1898,
  15434. bottom: 0.034
  15435. }
  15436. },
  15437. },
  15438. [
  15439. {
  15440. name: "Micro",
  15441. height: math.unit(3.5, "inches")
  15442. },
  15443. {
  15444. name: "Normal",
  15445. height: math.unit(10, "feet"),
  15446. default: true
  15447. },
  15448. {
  15449. name: "Macro",
  15450. height: math.unit(400, "feet")
  15451. },
  15452. {
  15453. name: "Deific",
  15454. height: math.unit(60, "miles")
  15455. },
  15456. ]
  15457. ))
  15458. characterMakers.push(() => makeCharacter(
  15459. { name: "Ilia" },
  15460. {
  15461. front: {
  15462. height: math.unit(2.35, "meters"),
  15463. weight: math.unit(119, "kg"),
  15464. name: "Front",
  15465. image: {
  15466. source: "./media/characters/ilia/front.svg",
  15467. extra: 1285 / 1255,
  15468. bottom: 0.06
  15469. }
  15470. },
  15471. },
  15472. [
  15473. {
  15474. name: "Normal",
  15475. height: math.unit(2.35, "meters")
  15476. },
  15477. {
  15478. name: "Macro",
  15479. height: math.unit(140, "meters"),
  15480. default: true
  15481. },
  15482. {
  15483. name: "Megamacro",
  15484. height: math.unit(100, "miles")
  15485. },
  15486. ]
  15487. ))
  15488. characterMakers.push(() => makeCharacter(
  15489. { name: "KingDead" },
  15490. {
  15491. front: {
  15492. height: math.unit(6 + 5 / 12, "feet"),
  15493. weight: math.unit(190, "lb"),
  15494. name: "Front",
  15495. image: {
  15496. source: "./media/characters/kingdead/front.svg",
  15497. extra: 1228 / 1177
  15498. }
  15499. },
  15500. },
  15501. [
  15502. {
  15503. name: "Micro",
  15504. height: math.unit(7, "inches")
  15505. },
  15506. {
  15507. name: "Normal",
  15508. height: math.unit(6 + 5 / 12, "feet")
  15509. },
  15510. {
  15511. name: "Macro",
  15512. height: math.unit(150, "feet"),
  15513. default: true
  15514. },
  15515. {
  15516. name: "Megamacro",
  15517. height: math.unit(200, "miles")
  15518. },
  15519. ]
  15520. ))
  15521. characterMakers.push(() => makeCharacter(
  15522. { name: "Kyrehx" },
  15523. {
  15524. front: {
  15525. height: math.unit(8, "feet"),
  15526. weight: math.unit(600, "lb"),
  15527. name: "Front",
  15528. image: {
  15529. source: "./media/characters/kyrehx/front.svg",
  15530. extra: 1195 / 1095,
  15531. bottom: 0.034
  15532. }
  15533. },
  15534. },
  15535. [
  15536. {
  15537. name: "Micro",
  15538. height: math.unit(2, "inches")
  15539. },
  15540. {
  15541. name: "Normal",
  15542. height: math.unit(8, "feet"),
  15543. default: true
  15544. },
  15545. {
  15546. name: "Macro",
  15547. height: math.unit(255, "feet")
  15548. },
  15549. ]
  15550. ))
  15551. characterMakers.push(() => makeCharacter(
  15552. { name: "Xang" },
  15553. {
  15554. front: {
  15555. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15556. weight: math.unit(184, "lb"),
  15557. name: "Front",
  15558. image: {
  15559. source: "./media/characters/xang/front.svg",
  15560. extra: 845 / 755
  15561. }
  15562. },
  15563. },
  15564. [
  15565. {
  15566. name: "Normal",
  15567. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15568. default: true
  15569. },
  15570. {
  15571. name: "Macro",
  15572. height: math.unit(0.935 * 146, "feet")
  15573. },
  15574. {
  15575. name: "Megamacro",
  15576. height: math.unit(0.935 * 3, "miles")
  15577. },
  15578. ]
  15579. ))
  15580. characterMakers.push(() => makeCharacter(
  15581. { name: "Doc Weardno" },
  15582. {
  15583. frontDressed: {
  15584. height: math.unit(5 + 7 / 12, "feet"),
  15585. weight: math.unit(140, "lb"),
  15586. name: "Front (Dressed)",
  15587. image: {
  15588. source: "./media/characters/doc-weardno/front-dressed.svg",
  15589. extra: 263 / 234
  15590. }
  15591. },
  15592. backDressed: {
  15593. height: math.unit(5 + 7 / 12, "feet"),
  15594. weight: math.unit(140, "lb"),
  15595. name: "Back (Dressed)",
  15596. image: {
  15597. source: "./media/characters/doc-weardno/back-dressed.svg",
  15598. extra: 266 / 238
  15599. }
  15600. },
  15601. front: {
  15602. height: math.unit(5 + 7 / 12, "feet"),
  15603. weight: math.unit(140, "lb"),
  15604. name: "Front",
  15605. image: {
  15606. source: "./media/characters/doc-weardno/front.svg",
  15607. extra: 254 / 233
  15608. }
  15609. },
  15610. },
  15611. [
  15612. {
  15613. name: "Micro",
  15614. height: math.unit(3, "inches")
  15615. },
  15616. {
  15617. name: "Normal",
  15618. height: math.unit(5 + 7 / 12, "feet"),
  15619. default: true
  15620. },
  15621. {
  15622. name: "Macro",
  15623. height: math.unit(25, "feet")
  15624. },
  15625. {
  15626. name: "Megamacro",
  15627. height: math.unit(2, "miles")
  15628. },
  15629. ]
  15630. ))
  15631. characterMakers.push(() => makeCharacter(
  15632. { name: "Seth Whilst" },
  15633. {
  15634. front: {
  15635. height: math.unit(6 + 2 / 12, "feet"),
  15636. weight: math.unit(153, "lb"),
  15637. name: "Front",
  15638. image: {
  15639. source: "./media/characters/seth-whilst/front.svg",
  15640. bottom: 0.07
  15641. }
  15642. },
  15643. },
  15644. [
  15645. {
  15646. name: "Micro",
  15647. height: math.unit(5, "inches")
  15648. },
  15649. {
  15650. name: "Normal",
  15651. height: math.unit(6 + 2 / 12, "feet"),
  15652. default: true
  15653. },
  15654. ]
  15655. ))
  15656. characterMakers.push(() => makeCharacter(
  15657. { name: "Pocket Jabari" },
  15658. {
  15659. front: {
  15660. height: math.unit(3, "inches"),
  15661. weight: math.unit(8, "grams"),
  15662. name: "Front",
  15663. image: {
  15664. source: "./media/characters/pocket-jabari/front.svg",
  15665. extra: 1024 / 974,
  15666. bottom: 0.039
  15667. }
  15668. },
  15669. },
  15670. [
  15671. {
  15672. name: "Minimicro",
  15673. height: math.unit(8, "mm")
  15674. },
  15675. {
  15676. name: "Micro",
  15677. height: math.unit(3, "inches"),
  15678. default: true
  15679. },
  15680. {
  15681. name: "Normal",
  15682. height: math.unit(3, "feet")
  15683. },
  15684. ]
  15685. ))
  15686. characterMakers.push(() => makeCharacter(
  15687. { name: "Sapphy" },
  15688. {
  15689. front: {
  15690. height: math.unit(15, "feet"),
  15691. weight: math.unit(3280, "lb"),
  15692. name: "Front",
  15693. image: {
  15694. source: "./media/characters/sapphy/front.svg",
  15695. extra: 671 / 577,
  15696. bottom: 0.085
  15697. }
  15698. },
  15699. back: {
  15700. height: math.unit(15, "feet"),
  15701. weight: math.unit(3280, "lb"),
  15702. name: "Back",
  15703. image: {
  15704. source: "./media/characters/sapphy/back.svg",
  15705. extra: 631 / 607,
  15706. bottom: 0.045
  15707. }
  15708. },
  15709. },
  15710. [
  15711. {
  15712. name: "Normal",
  15713. height: math.unit(15, "feet")
  15714. },
  15715. {
  15716. name: "Casual Macro",
  15717. height: math.unit(120, "feet")
  15718. },
  15719. {
  15720. name: "Macro",
  15721. height: math.unit(2150, "feet"),
  15722. default: true
  15723. },
  15724. {
  15725. name: "Megamacro",
  15726. height: math.unit(8, "miles")
  15727. },
  15728. {
  15729. name: "Galaxy Mom",
  15730. height: math.unit(6, "megalightyears")
  15731. },
  15732. ]
  15733. ))
  15734. characterMakers.push(() => makeCharacter(
  15735. { name: "Kiro" },
  15736. {
  15737. front: {
  15738. height: math.unit(6, "feet"),
  15739. weight: math.unit(170, "lb"),
  15740. name: "Front",
  15741. image: {
  15742. source: "./media/characters/kiro/front.svg",
  15743. extra: 1064 / 1012,
  15744. bottom: 0.052
  15745. }
  15746. },
  15747. },
  15748. [
  15749. {
  15750. name: "Micro",
  15751. height: math.unit(6, "inches")
  15752. },
  15753. {
  15754. name: "Normal",
  15755. height: math.unit(6, "feet"),
  15756. default: true
  15757. },
  15758. {
  15759. name: "Macro",
  15760. height: math.unit(72, "feet")
  15761. },
  15762. ]
  15763. ))
  15764. characterMakers.push(() => makeCharacter(
  15765. { name: "Irishfox" },
  15766. {
  15767. front: {
  15768. height: math.unit(5 + 9 / 12, "feet"),
  15769. weight: math.unit(175, "lb"),
  15770. name: "Front",
  15771. image: {
  15772. source: "./media/characters/irishfox/front.svg",
  15773. extra: 1912 / 1680,
  15774. bottom: 0.02
  15775. }
  15776. },
  15777. },
  15778. [
  15779. {
  15780. name: "Nano",
  15781. height: math.unit(1, "mm")
  15782. },
  15783. {
  15784. name: "Micro",
  15785. height: math.unit(2, "inches")
  15786. },
  15787. {
  15788. name: "Normal",
  15789. height: math.unit(5 + 9 / 12, "feet"),
  15790. default: true
  15791. },
  15792. {
  15793. name: "Macro",
  15794. height: math.unit(45, "feet")
  15795. },
  15796. ]
  15797. ))
  15798. characterMakers.push(() => makeCharacter(
  15799. { name: "Aronai Sieyes" },
  15800. {
  15801. front: {
  15802. height: math.unit(6 + 1 / 12, "feet"),
  15803. weight: math.unit(150, "lb"),
  15804. name: "Front",
  15805. image: {
  15806. source: "./media/characters/aronai-sieyes/front.svg",
  15807. extra: 1556 / 1480,
  15808. bottom: 0.015
  15809. }
  15810. },
  15811. side: {
  15812. height: math.unit(6 + 1 / 12, "feet"),
  15813. weight: math.unit(150, "lb"),
  15814. name: "Side",
  15815. image: {
  15816. source: "./media/characters/aronai-sieyes/side.svg",
  15817. extra: 1433 / 1390,
  15818. bottom: 0.0393
  15819. }
  15820. },
  15821. back: {
  15822. height: math.unit(6 + 1 / 12, "feet"),
  15823. weight: math.unit(150, "lb"),
  15824. name: "Back",
  15825. image: {
  15826. source: "./media/characters/aronai-sieyes/back.svg",
  15827. extra: 1544 / 1494,
  15828. bottom: 0.02
  15829. }
  15830. },
  15831. frontClothed: {
  15832. height: math.unit(6 + 1 / 12, "feet"),
  15833. weight: math.unit(150, "lb"),
  15834. name: "Front (Clothed)",
  15835. image: {
  15836. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  15837. extra: 1582 / 1527
  15838. }
  15839. },
  15840. feral: {
  15841. height: math.unit(18, "feet"),
  15842. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  15843. name: "Feral",
  15844. image: {
  15845. source: "./media/characters/aronai-sieyes/feral.svg",
  15846. extra: 1530 / 1240,
  15847. bottom: 0.035
  15848. }
  15849. },
  15850. },
  15851. [
  15852. {
  15853. name: "Micro",
  15854. height: math.unit(2, "inches")
  15855. },
  15856. {
  15857. name: "Normal",
  15858. height: math.unit(6 + 1 / 12, "feet"),
  15859. default: true
  15860. }
  15861. ]
  15862. ))
  15863. characterMakers.push(() => makeCharacter(
  15864. { name: "Xuna" },
  15865. {
  15866. front: {
  15867. height: math.unit(12, "feet"),
  15868. weight: math.unit(410, "kg"),
  15869. name: "Front",
  15870. image: {
  15871. source: "./media/characters/xuna/front.svg",
  15872. extra: 2184 / 1980
  15873. }
  15874. },
  15875. side: {
  15876. height: math.unit(12, "feet"),
  15877. weight: math.unit(410, "kg"),
  15878. name: "Side",
  15879. image: {
  15880. source: "./media/characters/xuna/side.svg",
  15881. extra: 2184 / 1980
  15882. }
  15883. },
  15884. back: {
  15885. height: math.unit(12, "feet"),
  15886. weight: math.unit(410, "kg"),
  15887. name: "Back",
  15888. image: {
  15889. source: "./media/characters/xuna/back.svg",
  15890. extra: 2184 / 1980
  15891. }
  15892. },
  15893. },
  15894. [
  15895. {
  15896. name: "Nano glow",
  15897. height: math.unit(10, "nm")
  15898. },
  15899. {
  15900. name: "Micro floof",
  15901. height: math.unit(0.3, "m")
  15902. },
  15903. {
  15904. name: "Huggable softy boi",
  15905. height: math.unit(3.6576, "m"),
  15906. default: true
  15907. },
  15908. {
  15909. name: "Admirable floof",
  15910. height: math.unit(80, "meters")
  15911. },
  15912. {
  15913. name: "Gentle macro",
  15914. height: math.unit(300, "meters")
  15915. },
  15916. {
  15917. name: "Very careful floof",
  15918. height: math.unit(3200, "meters")
  15919. },
  15920. {
  15921. name: "The mega floof",
  15922. height: math.unit(36000, "meters")
  15923. },
  15924. {
  15925. name: "Giga-fur-Wicker",
  15926. height: math.unit(4800000, "meters")
  15927. },
  15928. {
  15929. name: "Licky world",
  15930. height: math.unit(20000000, "meters")
  15931. },
  15932. {
  15933. name: "Floofy cyan sun",
  15934. height: math.unit(1500000000, "meters")
  15935. },
  15936. {
  15937. name: "Milky Wicker",
  15938. height: math.unit(1000000000000000000000, "meters")
  15939. },
  15940. {
  15941. name: "The observing Wicker",
  15942. height: math.unit(999999999999999999999999999, "meters")
  15943. },
  15944. ]
  15945. ))
  15946. characterMakers.push(() => makeCharacter(
  15947. { name: "Arokha Sieyes" },
  15948. {
  15949. front: {
  15950. height: math.unit(5 + 9 / 12, "feet"),
  15951. weight: math.unit(150, "lb"),
  15952. name: "Front",
  15953. image: {
  15954. source: "./media/characters/arokha-sieyes/front.svg",
  15955. extra: 1425 / 1284,
  15956. bottom: 0.05
  15957. }
  15958. },
  15959. },
  15960. [
  15961. {
  15962. name: "Normal",
  15963. height: math.unit(5 + 9 / 12, "feet")
  15964. },
  15965. {
  15966. name: "Macro",
  15967. height: math.unit(30, "meters"),
  15968. default: true
  15969. },
  15970. ]
  15971. ))
  15972. characterMakers.push(() => makeCharacter(
  15973. { name: "Arokh Sieyes" },
  15974. {
  15975. front: {
  15976. height: math.unit(6, "feet"),
  15977. weight: math.unit(180, "lb"),
  15978. name: "Front",
  15979. image: {
  15980. source: "./media/characters/arokh-sieyes/front.svg",
  15981. extra: 1830 / 1769,
  15982. bottom: 0.01
  15983. }
  15984. },
  15985. },
  15986. [
  15987. {
  15988. name: "Normal",
  15989. height: math.unit(6, "feet")
  15990. },
  15991. {
  15992. name: "Macro",
  15993. height: math.unit(30, "meters"),
  15994. default: true
  15995. },
  15996. ]
  15997. ))
  15998. characterMakers.push(() => makeCharacter(
  15999. { name: "Goldeneye" },
  16000. {
  16001. side: {
  16002. height: math.unit(13 + 1 / 12, "feet"),
  16003. weight: math.unit(8.5, "tonnes"),
  16004. name: "Side",
  16005. image: {
  16006. source: "./media/characters/goldeneye/side.svg",
  16007. extra: 1182 / 778,
  16008. bottom: 0.067
  16009. }
  16010. },
  16011. paw: {
  16012. height: math.unit(3.4, "feet"),
  16013. name: "Paw",
  16014. image: {
  16015. source: "./media/characters/goldeneye/paw.svg"
  16016. }
  16017. },
  16018. },
  16019. [
  16020. {
  16021. name: "Normal",
  16022. height: math.unit(13 + 1 / 12, "feet"),
  16023. default: true
  16024. },
  16025. ]
  16026. ))
  16027. characterMakers.push(() => makeCharacter(
  16028. { name: "Leonardo Lycheborne" },
  16029. {
  16030. front: {
  16031. height: math.unit(6 + 1 / 12, "feet"),
  16032. weight: math.unit(210, "lb"),
  16033. name: "Front",
  16034. image: {
  16035. source: "./media/characters/leonardo-lycheborne/front.svg",
  16036. extra: 390 / 365,
  16037. bottom: 0.032
  16038. }
  16039. },
  16040. side: {
  16041. height: math.unit(6 + 1 / 12, "feet"),
  16042. weight: math.unit(210, "lb"),
  16043. name: "Side",
  16044. image: {
  16045. source: "./media/characters/leonardo-lycheborne/side.svg",
  16046. extra: 390 / 365,
  16047. bottom: 0.005
  16048. }
  16049. },
  16050. back: {
  16051. height: math.unit(6 + 1 / 12, "feet"),
  16052. weight: math.unit(210, "lb"),
  16053. name: "Back",
  16054. image: {
  16055. source: "./media/characters/leonardo-lycheborne/back.svg",
  16056. extra: 392 / 366,
  16057. bottom: 0.01
  16058. }
  16059. },
  16060. hand: {
  16061. height: math.unit(1.08, "feet"),
  16062. name: "Hand",
  16063. image: {
  16064. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16065. }
  16066. },
  16067. foot: {
  16068. height: math.unit(1.32, "feet"),
  16069. name: "Foot",
  16070. image: {
  16071. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16072. }
  16073. },
  16074. were: {
  16075. height: math.unit(20, "feet"),
  16076. weight: math.unit(7800, "lb"),
  16077. name: "Were",
  16078. image: {
  16079. source: "./media/characters/leonardo-lycheborne/were.svg",
  16080. extra: 308 / 294,
  16081. bottom: 0.048
  16082. }
  16083. },
  16084. feral: {
  16085. height: math.unit(7.5, "feet"),
  16086. weight: math.unit(600, "lb"),
  16087. name: "Feral",
  16088. image: {
  16089. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16090. extra: 210 / 186,
  16091. bottom: 0.108
  16092. }
  16093. },
  16094. taur: {
  16095. height: math.unit(11, "feet"),
  16096. weight: math.unit(3300, "lb"),
  16097. name: "Taur",
  16098. image: {
  16099. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16100. extra: 320 / 303,
  16101. bottom: 0.025
  16102. }
  16103. },
  16104. barghest: {
  16105. height: math.unit(11, "feet"),
  16106. weight: math.unit(1300, "lb"),
  16107. name: "Barghest",
  16108. image: {
  16109. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16110. extra: 323 / 302,
  16111. bottom: 0.027
  16112. }
  16113. },
  16114. dick: {
  16115. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16116. name: "Dick",
  16117. image: {
  16118. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16119. }
  16120. },
  16121. dickWere: {
  16122. height: math.unit((20) / 3.8, "feet"),
  16123. name: "Dick (Were)",
  16124. image: {
  16125. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16126. }
  16127. },
  16128. },
  16129. [
  16130. {
  16131. name: "Normal",
  16132. height: math.unit(6 + 1 / 12, "feet"),
  16133. default: true
  16134. },
  16135. ]
  16136. ))
  16137. characterMakers.push(() => makeCharacter(
  16138. { name: "Jet" },
  16139. {
  16140. front: {
  16141. height: math.unit(10, "feet"),
  16142. weight: math.unit(350, "lb"),
  16143. name: "Front",
  16144. image: {
  16145. source: "./media/characters/jet/front.svg",
  16146. extra: 2050 / 1980,
  16147. bottom: 0.013
  16148. }
  16149. },
  16150. back: {
  16151. height: math.unit(10, "feet"),
  16152. weight: math.unit(350, "lb"),
  16153. name: "Back",
  16154. image: {
  16155. source: "./media/characters/jet/back.svg",
  16156. extra: 2050 / 1980,
  16157. bottom: 0.013
  16158. }
  16159. },
  16160. },
  16161. [
  16162. {
  16163. name: "Micro",
  16164. height: math.unit(6, "inches")
  16165. },
  16166. {
  16167. name: "Normal",
  16168. height: math.unit(10, "feet"),
  16169. default: true
  16170. },
  16171. {
  16172. name: "Macro",
  16173. height: math.unit(100, "feet")
  16174. },
  16175. ]
  16176. ))
  16177. characterMakers.push(() => makeCharacter(
  16178. { name: "Tanarath" },
  16179. {
  16180. front: {
  16181. height: math.unit(15, "feet"),
  16182. weight: math.unit(2800, "lb"),
  16183. name: "Front",
  16184. image: {
  16185. source: "./media/characters/tanarath/front.svg",
  16186. extra: 2392 / 2220,
  16187. bottom: 0.03
  16188. }
  16189. },
  16190. back: {
  16191. height: math.unit(15, "feet"),
  16192. weight: math.unit(2800, "lb"),
  16193. name: "Back",
  16194. image: {
  16195. source: "./media/characters/tanarath/back.svg",
  16196. extra: 2392 / 2220,
  16197. bottom: 0.03
  16198. }
  16199. },
  16200. },
  16201. [
  16202. {
  16203. name: "Normal",
  16204. height: math.unit(15, "feet"),
  16205. default: true
  16206. },
  16207. ]
  16208. ))
  16209. characterMakers.push(() => makeCharacter(
  16210. { name: "Patty CattyBatty" },
  16211. {
  16212. front: {
  16213. height: math.unit(7 + 1 / 12, "feet"),
  16214. weight: math.unit(175, "lb"),
  16215. name: "Front",
  16216. image: {
  16217. source: "./media/characters/patty-cattybatty/front.svg",
  16218. extra: 908 / 874,
  16219. bottom: 0.025
  16220. }
  16221. },
  16222. },
  16223. [
  16224. {
  16225. name: "Micro",
  16226. height: math.unit(1, "inch")
  16227. },
  16228. {
  16229. name: "Normal",
  16230. height: math.unit(7 + 1 / 12, "feet")
  16231. },
  16232. {
  16233. name: "Mini Macro",
  16234. height: math.unit(155, "feet")
  16235. },
  16236. {
  16237. name: "Macro",
  16238. height: math.unit(1077, "feet")
  16239. },
  16240. {
  16241. name: "Mega Macro",
  16242. height: math.unit(47650, "feet"),
  16243. default: true
  16244. },
  16245. {
  16246. name: "Giga Macro",
  16247. height: math.unit(440, "miles")
  16248. },
  16249. {
  16250. name: "Tera Macro",
  16251. height: math.unit(8700, "miles")
  16252. },
  16253. {
  16254. name: "Planetary Macro",
  16255. height: math.unit(32700, "miles")
  16256. },
  16257. {
  16258. name: "Solar Macro",
  16259. height: math.unit(550000, "miles")
  16260. },
  16261. {
  16262. name: "Celestial Macro",
  16263. height: math.unit(2.5, "AU")
  16264. },
  16265. ]
  16266. ))
  16267. characterMakers.push(() => makeCharacter(
  16268. { name: "Cappu" },
  16269. {
  16270. front: {
  16271. height: math.unit(4 + 5 / 12, "feet"),
  16272. weight: math.unit(90, "lb"),
  16273. name: "Front",
  16274. image: {
  16275. source: "./media/characters/cappu/front.svg",
  16276. extra: 1247 / 1152,
  16277. bottom: 0.012
  16278. }
  16279. },
  16280. },
  16281. [
  16282. {
  16283. name: "Normal",
  16284. height: math.unit(4 + 5 / 12, "feet"),
  16285. default: true
  16286. },
  16287. ]
  16288. ))
  16289. characterMakers.push(() => makeCharacter(
  16290. { name: "Sebi" },
  16291. {
  16292. frontDressed: {
  16293. height: math.unit(70, "cm"),
  16294. weight: math.unit(6, "kg"),
  16295. name: "Front (Dressed)",
  16296. image: {
  16297. source: "./media/characters/sebi/front-dressed.svg",
  16298. extra: 713.5 / 686.5,
  16299. bottom: 0.003
  16300. }
  16301. },
  16302. front: {
  16303. height: math.unit(70, "cm"),
  16304. weight: math.unit(5, "kg"),
  16305. name: "Front",
  16306. image: {
  16307. source: "./media/characters/sebi/front.svg",
  16308. extra: 713.5 / 686.5,
  16309. bottom: 0.003
  16310. }
  16311. }
  16312. },
  16313. [
  16314. {
  16315. name: "Normal",
  16316. height: math.unit(70, "cm"),
  16317. default: true
  16318. },
  16319. {
  16320. name: "Macro",
  16321. height: math.unit(8, "meters")
  16322. },
  16323. ]
  16324. ))
  16325. characterMakers.push(() => makeCharacter(
  16326. { name: "Typhek" },
  16327. {
  16328. front: {
  16329. height: math.unit(6, "feet"),
  16330. weight: math.unit(150, "lb"),
  16331. name: "Front",
  16332. image: {
  16333. source: "./media/characters/typhek/front.svg",
  16334. extra: 1948 / 1929,
  16335. bottom: 0.025
  16336. }
  16337. },
  16338. side: {
  16339. height: math.unit(6, "feet"),
  16340. weight: math.unit(150, "lb"),
  16341. name: "Side",
  16342. image: {
  16343. source: "./media/characters/typhek/side.svg",
  16344. extra: 2034 / 2010,
  16345. bottom: 0.003
  16346. }
  16347. },
  16348. back: {
  16349. height: math.unit(6, "feet"),
  16350. weight: math.unit(150, "lb"),
  16351. name: "Back",
  16352. image: {
  16353. source: "./media/characters/typhek/back.svg",
  16354. extra: 2005 / 1978,
  16355. bottom: 0.004
  16356. }
  16357. },
  16358. palm: {
  16359. height: math.unit(1.2, "feet"),
  16360. name: "Palm",
  16361. image: {
  16362. source: "./media/characters/typhek/palm.svg"
  16363. }
  16364. },
  16365. fist: {
  16366. height: math.unit(1.1, "feet"),
  16367. name: "Fist",
  16368. image: {
  16369. source: "./media/characters/typhek/fist.svg"
  16370. }
  16371. },
  16372. foot: {
  16373. height: math.unit(1.57, "feet"),
  16374. name: "Foot",
  16375. image: {
  16376. source: "./media/characters/typhek/foot.svg"
  16377. }
  16378. },
  16379. sole: {
  16380. height: math.unit(2.05, "feet"),
  16381. name: "Sole",
  16382. image: {
  16383. source: "./media/characters/typhek/sole.svg"
  16384. }
  16385. },
  16386. },
  16387. [
  16388. {
  16389. name: "Macro",
  16390. height: math.unit(40, "stories"),
  16391. default: true
  16392. },
  16393. {
  16394. name: "Megamacro",
  16395. height: math.unit(1, "mile")
  16396. },
  16397. {
  16398. name: "Gigamacro",
  16399. height: math.unit(4000, "solarradii")
  16400. },
  16401. {
  16402. name: "Universal",
  16403. height: math.unit(1.1, "universes")
  16404. }
  16405. ]
  16406. ))
  16407. characterMakers.push(() => makeCharacter(
  16408. { name: "Kassy" },
  16409. {
  16410. side: {
  16411. height: math.unit(5 + 7 / 12, "feet"),
  16412. weight: math.unit(150, "lb"),
  16413. name: "Side",
  16414. image: {
  16415. source: "./media/characters/kassy/side.svg",
  16416. extra: 1280 / 1225,
  16417. bottom: 0.002
  16418. }
  16419. },
  16420. front: {
  16421. height: math.unit(5 + 7 / 12, "feet"),
  16422. weight: math.unit(150, "lb"),
  16423. name: "Front",
  16424. image: {
  16425. source: "./media/characters/kassy/front.svg",
  16426. extra: 1280 / 1225,
  16427. bottom: 0.025
  16428. }
  16429. },
  16430. back: {
  16431. height: math.unit(5 + 7 / 12, "feet"),
  16432. weight: math.unit(150, "lb"),
  16433. name: "Back",
  16434. image: {
  16435. source: "./media/characters/kassy/back.svg",
  16436. extra: 1280 / 1225,
  16437. bottom: 0.002
  16438. }
  16439. },
  16440. foot: {
  16441. height: math.unit(1.266, "feet"),
  16442. name: "Foot",
  16443. image: {
  16444. source: "./media/characters/kassy/foot.svg"
  16445. }
  16446. },
  16447. },
  16448. [
  16449. {
  16450. name: "Normal",
  16451. height: math.unit(5 + 7 / 12, "feet")
  16452. },
  16453. {
  16454. name: "Macro",
  16455. height: math.unit(137, "feet"),
  16456. default: true
  16457. },
  16458. {
  16459. name: "Megamacro",
  16460. height: math.unit(1, "mile")
  16461. },
  16462. ]
  16463. ))
  16464. characterMakers.push(() => makeCharacter(
  16465. { name: "Neil" },
  16466. {
  16467. front: {
  16468. height: math.unit(6 + 1 / 12, "feet"),
  16469. weight: math.unit(200, "lb"),
  16470. name: "Front",
  16471. image: {
  16472. source: "./media/characters/neil/front.svg",
  16473. extra: 1326 / 1250,
  16474. bottom: 0.023
  16475. }
  16476. },
  16477. },
  16478. [
  16479. {
  16480. name: "Normal",
  16481. height: math.unit(6 + 1 / 12, "feet"),
  16482. default: true
  16483. },
  16484. {
  16485. name: "Macro",
  16486. height: math.unit(200, "feet")
  16487. },
  16488. ]
  16489. ))
  16490. characterMakers.push(() => makeCharacter(
  16491. { name: "Atticus" },
  16492. {
  16493. front: {
  16494. height: math.unit(5 + 9 / 12, "feet"),
  16495. weight: math.unit(190, "lb"),
  16496. name: "Front",
  16497. image: {
  16498. source: "./media/characters/atticus/front.svg",
  16499. extra: 2934 / 2785,
  16500. bottom: 0.025
  16501. }
  16502. },
  16503. },
  16504. [
  16505. {
  16506. name: "Normal",
  16507. height: math.unit(5 + 9 / 12, "feet"),
  16508. default: true
  16509. },
  16510. {
  16511. name: "Macro",
  16512. height: math.unit(180, "feet")
  16513. },
  16514. ]
  16515. ))
  16516. characterMakers.push(() => makeCharacter(
  16517. { name: "Milo" },
  16518. {
  16519. side: {
  16520. height: math.unit(9, "feet"),
  16521. weight: math.unit(650, "lb"),
  16522. name: "Side",
  16523. image: {
  16524. source: "./media/characters/milo/side.svg",
  16525. extra: 2644 / 2310,
  16526. bottom: 0.032
  16527. }
  16528. },
  16529. },
  16530. [
  16531. {
  16532. name: "Normal",
  16533. height: math.unit(9, "feet"),
  16534. default: true
  16535. },
  16536. {
  16537. name: "Macro",
  16538. height: math.unit(300, "feet")
  16539. },
  16540. ]
  16541. ))
  16542. characterMakers.push(() => makeCharacter(
  16543. { name: "Ijzer" },
  16544. {
  16545. side: {
  16546. height: math.unit(8, "meters"),
  16547. weight: math.unit(90000, "kg"),
  16548. name: "Side",
  16549. image: {
  16550. source: "./media/characters/ijzer/side.svg",
  16551. extra: 2756 / 1600,
  16552. bottom: 0.01
  16553. }
  16554. },
  16555. },
  16556. [
  16557. {
  16558. name: "Small",
  16559. height: math.unit(3, "meters")
  16560. },
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(8, "meters"),
  16564. default: true
  16565. },
  16566. {
  16567. name: "Normal+",
  16568. height: math.unit(10, "meters")
  16569. },
  16570. {
  16571. name: "Bigger",
  16572. height: math.unit(24, "meters")
  16573. },
  16574. {
  16575. name: "Huge",
  16576. height: math.unit(80, "meters")
  16577. },
  16578. ]
  16579. ))
  16580. characterMakers.push(() => makeCharacter(
  16581. { name: "Luca Cervicum" },
  16582. {
  16583. front: {
  16584. height: math.unit(6 + 2 / 12, "feet"),
  16585. weight: math.unit(153, "lb"),
  16586. name: "Front",
  16587. image: {
  16588. source: "./media/characters/luca-cervicum/front.svg",
  16589. extra: 370 / 327,
  16590. bottom: 0.015
  16591. }
  16592. },
  16593. back: {
  16594. height: math.unit(6 + 2 / 12, "feet"),
  16595. weight: math.unit(153, "lb"),
  16596. name: "Back",
  16597. image: {
  16598. source: "./media/characters/luca-cervicum/back.svg",
  16599. extra: 367 / 333,
  16600. bottom: 0.005
  16601. }
  16602. },
  16603. frontGear: {
  16604. height: math.unit(6 + 2 / 12, "feet"),
  16605. weight: math.unit(173, "lb"),
  16606. name: "Front (Gear)",
  16607. image: {
  16608. source: "./media/characters/luca-cervicum/front-gear.svg",
  16609. extra: 377 / 333,
  16610. bottom: 0.006
  16611. }
  16612. },
  16613. },
  16614. [
  16615. {
  16616. name: "Normal",
  16617. height: math.unit(6 + 2 / 12, "feet"),
  16618. default: true
  16619. },
  16620. ]
  16621. ))
  16622. characterMakers.push(() => makeCharacter(
  16623. { name: "Oliver" },
  16624. {
  16625. front: {
  16626. height: math.unit(6 + 1 / 12, "feet"),
  16627. weight: math.unit(304, "lb"),
  16628. name: "Front",
  16629. image: {
  16630. source: "./media/characters/oliver/front.svg",
  16631. extra: 157 / 143,
  16632. bottom: 0.08
  16633. }
  16634. },
  16635. },
  16636. [
  16637. {
  16638. name: "Normal",
  16639. height: math.unit(6 + 1 / 12, "feet"),
  16640. default: true
  16641. },
  16642. ]
  16643. ))
  16644. characterMakers.push(() => makeCharacter(
  16645. { name: "Shane" },
  16646. {
  16647. front: {
  16648. height: math.unit(5 + 7 / 12, "feet"),
  16649. weight: math.unit(140, "lb"),
  16650. name: "Front",
  16651. image: {
  16652. source: "./media/characters/shane/front.svg",
  16653. extra: 304 / 289,
  16654. bottom: 0.005
  16655. }
  16656. },
  16657. },
  16658. [
  16659. {
  16660. name: "Normal",
  16661. height: math.unit(5 + 7 / 12, "feet"),
  16662. default: true
  16663. },
  16664. ]
  16665. ))
  16666. characterMakers.push(() => makeCharacter(
  16667. { name: "Shin" },
  16668. {
  16669. front: {
  16670. height: math.unit(5 + 9 / 12, "feet"),
  16671. weight: math.unit(178, "lb"),
  16672. name: "Front",
  16673. image: {
  16674. source: "./media/characters/shin/front.svg",
  16675. extra: 159 / 151,
  16676. bottom: 0.015
  16677. }
  16678. },
  16679. },
  16680. [
  16681. {
  16682. name: "Normal",
  16683. height: math.unit(5 + 9 / 12, "feet"),
  16684. default: true
  16685. },
  16686. ]
  16687. ))
  16688. characterMakers.push(() => makeCharacter(
  16689. { name: "Xerxes" },
  16690. {
  16691. front: {
  16692. height: math.unit(5 + 10 / 12, "feet"),
  16693. weight: math.unit(168, "lb"),
  16694. name: "Front",
  16695. image: {
  16696. source: "./media/characters/xerxes/front.svg",
  16697. extra: 282 / 260,
  16698. bottom: 0.045
  16699. }
  16700. },
  16701. },
  16702. [
  16703. {
  16704. name: "Normal",
  16705. height: math.unit(5 + 10 / 12, "feet"),
  16706. default: true
  16707. },
  16708. ]
  16709. ))
  16710. characterMakers.push(() => makeCharacter(
  16711. { name: "Chaska" },
  16712. {
  16713. front: {
  16714. height: math.unit(6 + 7 / 12, "feet"),
  16715. weight: math.unit(208, "lb"),
  16716. name: "Front",
  16717. image: {
  16718. source: "./media/characters/chaska/front.svg",
  16719. extra: 332 / 319,
  16720. bottom: 0.015
  16721. }
  16722. },
  16723. },
  16724. [
  16725. {
  16726. name: "Normal",
  16727. height: math.unit(6 + 7 / 12, "feet"),
  16728. default: true
  16729. },
  16730. ]
  16731. ))
  16732. characterMakers.push(() => makeCharacter(
  16733. { name: "Enuk" },
  16734. {
  16735. front: {
  16736. height: math.unit(5 + 8 / 12, "feet"),
  16737. weight: math.unit(208, "lb"),
  16738. name: "Front",
  16739. image: {
  16740. source: "./media/characters/enuk/front.svg",
  16741. extra: 437 / 406,
  16742. bottom: 0.02
  16743. }
  16744. },
  16745. },
  16746. [
  16747. {
  16748. name: "Normal",
  16749. height: math.unit(5 + 8 / 12, "feet"),
  16750. default: true
  16751. },
  16752. ]
  16753. ))
  16754. characterMakers.push(() => makeCharacter(
  16755. { name: "Bruun" },
  16756. {
  16757. front: {
  16758. height: math.unit(5 + 10 / 12, "feet"),
  16759. weight: math.unit(252, "lb"),
  16760. name: "Front",
  16761. image: {
  16762. source: "./media/characters/bruun/front.svg",
  16763. extra: 197 / 187,
  16764. bottom: 0.012
  16765. }
  16766. },
  16767. },
  16768. [
  16769. {
  16770. name: "Normal",
  16771. height: math.unit(5 + 10 / 12, "feet"),
  16772. default: true
  16773. },
  16774. ]
  16775. ))
  16776. characterMakers.push(() => makeCharacter(
  16777. { name: "Alexeev" },
  16778. {
  16779. front: {
  16780. height: math.unit(6 + 10 / 12, "feet"),
  16781. weight: math.unit(255, "lb"),
  16782. name: "Front",
  16783. image: {
  16784. source: "./media/characters/alexeev/front.svg",
  16785. extra: 213 / 200,
  16786. bottom: 0.05
  16787. }
  16788. },
  16789. },
  16790. [
  16791. {
  16792. name: "Normal",
  16793. height: math.unit(6 + 10 / 12, "feet"),
  16794. default: true
  16795. },
  16796. ]
  16797. ))
  16798. characterMakers.push(() => makeCharacter(
  16799. { name: "Evelyn" },
  16800. {
  16801. front: {
  16802. height: math.unit(2 + 8 / 12, "feet"),
  16803. weight: math.unit(22, "lb"),
  16804. name: "Front",
  16805. image: {
  16806. source: "./media/characters/evelyn/front.svg",
  16807. extra: 208 / 180
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Normal",
  16814. height: math.unit(2 + 8 / 12, "feet"),
  16815. default: true
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Inca" },
  16821. {
  16822. front: {
  16823. height: math.unit(5 + 9 / 12, "feet"),
  16824. weight: math.unit(139, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/inca/front.svg",
  16828. extra: 294 / 291,
  16829. bottom: 0.03
  16830. }
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Normal",
  16836. height: math.unit(5 + 9 / 12, "feet"),
  16837. default: true
  16838. },
  16839. ]
  16840. ))
  16841. characterMakers.push(() => makeCharacter(
  16842. { name: "Magdalene" },
  16843. {
  16844. front: {
  16845. height: math.unit(5 + 1 / 12, "feet"),
  16846. weight: math.unit(84, "lb"),
  16847. name: "Front",
  16848. image: {
  16849. source: "./media/characters/magdalene/front.svg",
  16850. extra: 293 / 273
  16851. }
  16852. },
  16853. },
  16854. [
  16855. {
  16856. name: "Normal",
  16857. height: math.unit(5 + 1 / 12, "feet"),
  16858. default: true
  16859. },
  16860. ]
  16861. ))
  16862. characterMakers.push(() => makeCharacter(
  16863. { name: "Mera" },
  16864. {
  16865. front: {
  16866. height: math.unit(6 + 3 / 12, "feet"),
  16867. weight: math.unit(185, "lb"),
  16868. name: "Front",
  16869. image: {
  16870. source: "./media/characters/mera/front.svg",
  16871. extra: 291 / 277,
  16872. bottom: 0.03
  16873. }
  16874. },
  16875. },
  16876. [
  16877. {
  16878. name: "Normal",
  16879. height: math.unit(6 + 3 / 12, "feet"),
  16880. default: true
  16881. },
  16882. ]
  16883. ))
  16884. characterMakers.push(() => makeCharacter(
  16885. { name: "Ceres" },
  16886. {
  16887. front: {
  16888. height: math.unit(6 + 7 / 12, "feet"),
  16889. weight: math.unit(160, "lb"),
  16890. name: "Front",
  16891. image: {
  16892. source: "./media/characters/ceres/front.svg",
  16893. extra: 1023 / 950,
  16894. bottom: 0.027
  16895. }
  16896. },
  16897. back: {
  16898. height: math.unit(6 + 7 / 12, "feet"),
  16899. weight: math.unit(160, "lb"),
  16900. name: "Back",
  16901. image: {
  16902. source: "./media/characters/ceres/back.svg",
  16903. extra: 1023 / 950
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Normal",
  16910. height: math.unit(6 + 7 / 12, "feet"),
  16911. default: true
  16912. },
  16913. ]
  16914. ))
  16915. characterMakers.push(() => makeCharacter(
  16916. { name: "Kris" },
  16917. {
  16918. front: {
  16919. height: math.unit(5 + 10 / 12, "feet"),
  16920. weight: math.unit(150, "lb"),
  16921. name: "Front",
  16922. image: {
  16923. source: "./media/characters/kris/front.svg",
  16924. extra: 885 / 803,
  16925. bottom: 0.03
  16926. }
  16927. },
  16928. },
  16929. [
  16930. {
  16931. name: "Normal",
  16932. height: math.unit(5 + 10 / 12, "feet"),
  16933. default: true
  16934. },
  16935. ]
  16936. ))
  16937. characterMakers.push(() => makeCharacter(
  16938. { name: "Taluthus" },
  16939. {
  16940. front: {
  16941. height: math.unit(7, "feet"),
  16942. weight: math.unit(120, "kg"),
  16943. name: "Front",
  16944. image: {
  16945. source: "./media/characters/taluthus/front.svg",
  16946. extra: 903 / 833,
  16947. bottom: 0.015
  16948. }
  16949. },
  16950. },
  16951. [
  16952. {
  16953. name: "Normal",
  16954. height: math.unit(7, "feet"),
  16955. default: true
  16956. },
  16957. {
  16958. name: "Macro",
  16959. height: math.unit(300, "feet")
  16960. },
  16961. ]
  16962. ))
  16963. characterMakers.push(() => makeCharacter(
  16964. { name: "Dawn" },
  16965. {
  16966. front: {
  16967. height: math.unit(5 + 9 / 12, "feet"),
  16968. weight: math.unit(145, "lb"),
  16969. name: "Front",
  16970. image: {
  16971. source: "./media/characters/dawn/front.svg",
  16972. extra: 2094 / 2016,
  16973. bottom: 0.025
  16974. }
  16975. },
  16976. back: {
  16977. height: math.unit(5 + 9 / 12, "feet"),
  16978. weight: math.unit(160, "lb"),
  16979. name: "Back",
  16980. image: {
  16981. source: "./media/characters/dawn/back.svg",
  16982. extra: 2112 / 2080,
  16983. bottom: 0.005
  16984. }
  16985. },
  16986. },
  16987. [
  16988. {
  16989. name: "Normal",
  16990. height: math.unit(6 + 7 / 12, "feet"),
  16991. default: true
  16992. },
  16993. ]
  16994. ))
  16995. characterMakers.push(() => makeCharacter(
  16996. { name: "Arador" },
  16997. {
  16998. anthro: {
  16999. height: math.unit(8 + 3 / 12, "feet"),
  17000. weight: math.unit(450, "lb"),
  17001. name: "Anthro",
  17002. image: {
  17003. source: "./media/characters/arador/anthro.svg",
  17004. extra: 1835 / 1718,
  17005. bottom: 0.025
  17006. }
  17007. },
  17008. feral: {
  17009. height: math.unit(4, "feet"),
  17010. weight: math.unit(200, "lb"),
  17011. name: "Feral",
  17012. image: {
  17013. source: "./media/characters/arador/feral.svg",
  17014. extra: 1683 / 1514,
  17015. bottom: 0.07
  17016. }
  17017. },
  17018. },
  17019. [
  17020. {
  17021. name: "Normal",
  17022. height: math.unit(8 + 3 / 12, "feet")
  17023. },
  17024. {
  17025. name: "Macro",
  17026. height: math.unit(82.5, "feet"),
  17027. default: true
  17028. },
  17029. ]
  17030. ))
  17031. characterMakers.push(() => makeCharacter(
  17032. { name: "Dharsi" },
  17033. {
  17034. front: {
  17035. height: math.unit(5 + 10 / 12, "feet"),
  17036. weight: math.unit(125, "lb"),
  17037. name: "Front",
  17038. image: {
  17039. source: "./media/characters/dharsi/front.svg",
  17040. extra: 716 / 630,
  17041. bottom: 0.035
  17042. }
  17043. },
  17044. },
  17045. [
  17046. {
  17047. name: "Nano",
  17048. height: math.unit(100, "nm")
  17049. },
  17050. {
  17051. name: "Micro",
  17052. height: math.unit(2, "inches")
  17053. },
  17054. {
  17055. name: "Normal",
  17056. height: math.unit(5 + 10 / 12, "feet"),
  17057. default: true
  17058. },
  17059. {
  17060. name: "Macro",
  17061. height: math.unit(1000, "feet")
  17062. },
  17063. {
  17064. name: "Megamacro",
  17065. height: math.unit(10, "miles")
  17066. },
  17067. {
  17068. name: "Gigamacro",
  17069. height: math.unit(3000, "miles")
  17070. },
  17071. {
  17072. name: "Teramacro",
  17073. height: math.unit(500000, "miles")
  17074. },
  17075. {
  17076. name: "Teramacro+",
  17077. height: math.unit(30, "galaxies")
  17078. },
  17079. ]
  17080. ))
  17081. characterMakers.push(() => makeCharacter(
  17082. { name: "Deathy" },
  17083. {
  17084. front: {
  17085. height: math.unit(6, "feet"),
  17086. weight: math.unit(150, "lb"),
  17087. name: "Front",
  17088. image: {
  17089. source: "./media/characters/deathy/front.svg",
  17090. extra: 1552 / 1463,
  17091. bottom: 0.025
  17092. }
  17093. },
  17094. side: {
  17095. height: math.unit(6, "feet"),
  17096. weight: math.unit(150, "lb"),
  17097. name: "Side",
  17098. image: {
  17099. source: "./media/characters/deathy/side.svg",
  17100. extra: 1604 / 1455,
  17101. bottom: 0.025
  17102. }
  17103. },
  17104. back: {
  17105. height: math.unit(6, "feet"),
  17106. weight: math.unit(150, "lb"),
  17107. name: "Back",
  17108. image: {
  17109. source: "./media/characters/deathy/back.svg",
  17110. extra: 1580 / 1463,
  17111. bottom: 0.005
  17112. }
  17113. },
  17114. },
  17115. [
  17116. {
  17117. name: "Micro",
  17118. height: math.unit(5, "millimeters")
  17119. },
  17120. {
  17121. name: "Normal",
  17122. height: math.unit(6 + 5 / 12, "feet"),
  17123. default: true
  17124. },
  17125. ]
  17126. ))
  17127. characterMakers.push(() => makeCharacter(
  17128. { name: "Juniper" },
  17129. {
  17130. front: {
  17131. height: math.unit(16, "feet"),
  17132. weight: math.unit(4000, "lb"),
  17133. name: "Front",
  17134. image: {
  17135. source: "./media/characters/juniper/front.svg",
  17136. bottom: 0.04
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Normal",
  17143. height: math.unit(16, "feet"),
  17144. default: true
  17145. },
  17146. ]
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Hipster" },
  17150. {
  17151. front: {
  17152. height: math.unit(6, "feet"),
  17153. weight: math.unit(150, "lb"),
  17154. name: "Front",
  17155. image: {
  17156. source: "./media/characters/hipster/front.svg",
  17157. extra: 1312 / 1209,
  17158. bottom: 0.025
  17159. }
  17160. },
  17161. back: {
  17162. height: math.unit(6, "feet"),
  17163. weight: math.unit(150, "lb"),
  17164. name: "Back",
  17165. image: {
  17166. source: "./media/characters/hipster/back.svg",
  17167. extra: 1281 / 1196,
  17168. bottom: 0.01
  17169. }
  17170. },
  17171. },
  17172. [
  17173. {
  17174. name: "Micro",
  17175. height: math.unit(1, "mm")
  17176. },
  17177. {
  17178. name: "Normal",
  17179. height: math.unit(4, "inches"),
  17180. default: true
  17181. },
  17182. {
  17183. name: "Macro",
  17184. height: math.unit(500, "feet")
  17185. },
  17186. {
  17187. name: "Megamacro",
  17188. height: math.unit(1000, "miles")
  17189. },
  17190. ]
  17191. ))
  17192. characterMakers.push(() => makeCharacter(
  17193. { name: "Tendirmuldr" },
  17194. {
  17195. front: {
  17196. height: math.unit(6, "feet"),
  17197. weight: math.unit(150, "lb"),
  17198. name: "Front",
  17199. image: {
  17200. source: "./media/characters/tendirmuldr/front.svg",
  17201. extra: 1878 / 1772,
  17202. bottom: 0.015
  17203. }
  17204. },
  17205. },
  17206. [
  17207. {
  17208. name: "Megamacro",
  17209. height: math.unit(1500, "miles"),
  17210. default: true
  17211. },
  17212. ]
  17213. ))
  17214. characterMakers.push(() => makeCharacter(
  17215. { name: "Mort" },
  17216. {
  17217. front: {
  17218. height: math.unit(14, "feet"),
  17219. weight: math.unit(12000, "lb"),
  17220. name: "Front",
  17221. image: {
  17222. source: "./media/characters/mort/front.svg",
  17223. extra: 365 / 318,
  17224. bottom: 0.01
  17225. }
  17226. },
  17227. side: {
  17228. height: math.unit(14, "feet"),
  17229. weight: math.unit(12000, "lb"),
  17230. name: "Side",
  17231. image: {
  17232. source: "./media/characters/mort/side.svg",
  17233. extra: 365 / 318,
  17234. bottom: 0.052
  17235. }
  17236. },
  17237. back: {
  17238. height: math.unit(14, "feet"),
  17239. weight: math.unit(12000, "lb"),
  17240. name: "Back",
  17241. image: {
  17242. source: "./media/characters/mort/back.svg",
  17243. extra: 371 / 332,
  17244. bottom: 0.18
  17245. }
  17246. },
  17247. },
  17248. [
  17249. {
  17250. name: "Normal",
  17251. height: math.unit(14, "feet"),
  17252. default: true
  17253. },
  17254. ]
  17255. ))
  17256. characterMakers.push(() => makeCharacter(
  17257. { name: "Lycoa" },
  17258. {
  17259. front: {
  17260. height: math.unit(8, "feet"),
  17261. weight: math.unit(1, "ton"),
  17262. name: "Front",
  17263. image: {
  17264. source: "./media/characters/lycoa/front.svg",
  17265. extra: 1875 / 1789,
  17266. bottom: 0.022
  17267. }
  17268. },
  17269. back: {
  17270. height: math.unit(8, "feet"),
  17271. weight: math.unit(1, "ton"),
  17272. name: "Back",
  17273. image: {
  17274. source: "./media/characters/lycoa/back.svg",
  17275. extra: 1835 / 1781,
  17276. bottom: 0.03
  17277. }
  17278. },
  17279. },
  17280. [
  17281. {
  17282. name: "Normal",
  17283. height: math.unit(8, "feet"),
  17284. default: true
  17285. },
  17286. {
  17287. name: "Macro",
  17288. height: math.unit(30, "feet")
  17289. },
  17290. ]
  17291. ))
  17292. characterMakers.push(() => makeCharacter(
  17293. { name: "Naldara" },
  17294. {
  17295. front: {
  17296. height: math.unit(4 + 2 / 12, "feet"),
  17297. weight: math.unit(70, "lb"),
  17298. name: "Front",
  17299. image: {
  17300. source: "./media/characters/naldara/front.svg",
  17301. extra: 841 / 720,
  17302. bottom: 0.04
  17303. }
  17304. },
  17305. },
  17306. [
  17307. {
  17308. name: "Normal",
  17309. height: math.unit(4 + 2 / 12, "feet"),
  17310. default: true
  17311. },
  17312. ]
  17313. ))
  17314. characterMakers.push(() => makeCharacter(
  17315. { name: "Briar" },
  17316. {
  17317. front: {
  17318. height: math.unit(13 + 7 / 12, "feet"),
  17319. weight: math.unit(1500, "lb"),
  17320. name: "Front",
  17321. image: {
  17322. source: "./media/characters/briar/front.svg",
  17323. extra: 626 / 596,
  17324. bottom: 0.08
  17325. }
  17326. },
  17327. },
  17328. [
  17329. {
  17330. name: "Normal",
  17331. height: math.unit(13 + 7 / 12, "feet"),
  17332. default: true
  17333. },
  17334. ]
  17335. ))
  17336. characterMakers.push(() => makeCharacter(
  17337. { name: "Vanguard" },
  17338. {
  17339. side: {
  17340. height: math.unit(10, "feet"),
  17341. weight: math.unit(500, "lb"),
  17342. name: "Side",
  17343. image: {
  17344. source: "./media/characters/vanguard/side.svg",
  17345. extra: 502 / 425,
  17346. bottom: 0.087
  17347. }
  17348. },
  17349. },
  17350. [
  17351. {
  17352. name: "Normal",
  17353. height: math.unit(10, "feet"),
  17354. default: true
  17355. },
  17356. ]
  17357. ))
  17358. characterMakers.push(() => makeCharacter(
  17359. { name: "Artemis" },
  17360. {
  17361. front: {
  17362. height: math.unit(7.5, "feet"),
  17363. weight: math.unit(2, "lb"),
  17364. name: "Front",
  17365. image: {
  17366. source: "./media/characters/artemis/front.svg",
  17367. extra: 1192 / 1075,
  17368. bottom: 0.07
  17369. }
  17370. },
  17371. },
  17372. [
  17373. {
  17374. name: "Normal",
  17375. height: math.unit(7.5, "feet"),
  17376. default: true
  17377. },
  17378. {
  17379. name: "Enlarged",
  17380. height: math.unit(12, "feet")
  17381. },
  17382. ]
  17383. ))
  17384. characterMakers.push(() => makeCharacter(
  17385. { name: "Kira" },
  17386. {
  17387. front: {
  17388. height: math.unit(5 + 3 / 12, "feet"),
  17389. weight: math.unit(160, "lb"),
  17390. name: "Front",
  17391. image: {
  17392. source: "./media/characters/kira/front.svg",
  17393. extra: 906 / 786,
  17394. bottom: 0.01
  17395. }
  17396. },
  17397. back: {
  17398. height: math.unit(5 + 3 / 12, "feet"),
  17399. weight: math.unit(160, "lb"),
  17400. name: "Back",
  17401. image: {
  17402. source: "./media/characters/kira/back.svg",
  17403. extra: 882 / 757,
  17404. bottom: 0.005
  17405. }
  17406. },
  17407. frontDressed: {
  17408. height: math.unit(5 + 3 / 12, "feet"),
  17409. weight: math.unit(160, "lb"),
  17410. name: "Front (Dressed)",
  17411. image: {
  17412. source: "./media/characters/kira/front-dressed.svg",
  17413. extra: 906 / 786,
  17414. bottom: 0.01
  17415. }
  17416. },
  17417. beans: {
  17418. height: math.unit(0.92, "feet"),
  17419. name: "Beans",
  17420. image: {
  17421. source: "./media/characters/kira/beans.svg"
  17422. }
  17423. },
  17424. },
  17425. [
  17426. {
  17427. name: "Normal",
  17428. height: math.unit(5 + 3 / 12, "feet"),
  17429. default: true
  17430. },
  17431. ]
  17432. ))
  17433. characterMakers.push(() => makeCharacter(
  17434. { name: "Scramble" },
  17435. {
  17436. front: {
  17437. height: math.unit(5 + 4 / 12, "feet"),
  17438. weight: math.unit(145, "lb"),
  17439. name: "Front",
  17440. image: {
  17441. source: "./media/characters/scramble/front.svg",
  17442. extra: 763 / 727,
  17443. bottom: 0.05
  17444. }
  17445. },
  17446. back: {
  17447. height: math.unit(5 + 4 / 12, "feet"),
  17448. weight: math.unit(145, "lb"),
  17449. name: "Back",
  17450. image: {
  17451. source: "./media/characters/scramble/back.svg",
  17452. extra: 826 / 737,
  17453. bottom: 0.002
  17454. }
  17455. },
  17456. },
  17457. [
  17458. {
  17459. name: "Normal",
  17460. height: math.unit(5 + 4 / 12, "feet"),
  17461. default: true
  17462. },
  17463. ]
  17464. ))
  17465. characterMakers.push(() => makeCharacter(
  17466. { name: "Biscuit" },
  17467. {
  17468. side: {
  17469. height: math.unit(6 + 2 / 12, "feet"),
  17470. weight: math.unit(190, "lb"),
  17471. name: "Side",
  17472. image: {
  17473. source: "./media/characters/biscuit/side.svg",
  17474. extra: 858 / 791,
  17475. bottom: 0.044
  17476. }
  17477. },
  17478. },
  17479. [
  17480. {
  17481. name: "Normal",
  17482. height: math.unit(6 + 2 / 12, "feet"),
  17483. default: true
  17484. },
  17485. ]
  17486. ))
  17487. characterMakers.push(() => makeCharacter(
  17488. { name: "Poffin" },
  17489. {
  17490. front: {
  17491. height: math.unit(5 + 2 / 12, "feet"),
  17492. weight: math.unit(120, "lb"),
  17493. name: "Front",
  17494. image: {
  17495. source: "./media/characters/poffin/front.svg",
  17496. extra: 786 / 680,
  17497. bottom: 0.005
  17498. }
  17499. },
  17500. },
  17501. [
  17502. {
  17503. name: "Normal",
  17504. height: math.unit(5 + 2 / 12, "feet"),
  17505. default: true
  17506. },
  17507. ]
  17508. ))
  17509. characterMakers.push(() => makeCharacter(
  17510. { name: "Dhari" },
  17511. {
  17512. front: {
  17513. height: math.unit(6 + 3 / 12, "feet"),
  17514. weight: math.unit(519, "lb"),
  17515. name: "Front",
  17516. image: {
  17517. source: "./media/characters/dhari/front.svg",
  17518. extra: 1048 / 946,
  17519. bottom: 0.015
  17520. }
  17521. },
  17522. back: {
  17523. height: math.unit(6 + 3 / 12, "feet"),
  17524. weight: math.unit(519, "lb"),
  17525. name: "Back",
  17526. image: {
  17527. source: "./media/characters/dhari/back.svg",
  17528. extra: 1048 / 931,
  17529. bottom: 0.005
  17530. }
  17531. },
  17532. frontDressed: {
  17533. height: math.unit(6 + 3 / 12, "feet"),
  17534. weight: math.unit(519, "lb"),
  17535. name: "Front (Dressed)",
  17536. image: {
  17537. source: "./media/characters/dhari/front-dressed.svg",
  17538. extra: 1713 / 1546,
  17539. bottom: 0.02
  17540. }
  17541. },
  17542. backDressed: {
  17543. height: math.unit(6 + 3 / 12, "feet"),
  17544. weight: math.unit(519, "lb"),
  17545. name: "Back (Dressed)",
  17546. image: {
  17547. source: "./media/characters/dhari/back-dressed.svg",
  17548. extra: 1699 / 1537,
  17549. bottom: 0.01
  17550. }
  17551. },
  17552. maw: {
  17553. height: math.unit(0.95, "feet"),
  17554. name: "Maw",
  17555. image: {
  17556. source: "./media/characters/dhari/maw.svg"
  17557. }
  17558. },
  17559. wereFront: {
  17560. height: math.unit(12 + 8 / 12, "feet"),
  17561. weight: math.unit(4000, "lb"),
  17562. name: "Front (Were)",
  17563. image: {
  17564. source: "./media/characters/dhari/were-front.svg",
  17565. extra: 1065 / 969,
  17566. bottom: 0.015
  17567. }
  17568. },
  17569. wereBack: {
  17570. height: math.unit(12 + 8 / 12, "feet"),
  17571. weight: math.unit(4000, "lb"),
  17572. name: "Back (Were)",
  17573. image: {
  17574. source: "./media/characters/dhari/were-back.svg",
  17575. extra: 1065 / 969,
  17576. bottom: 0.012
  17577. }
  17578. },
  17579. wereMaw: {
  17580. height: math.unit(0.625, "meters"),
  17581. name: "Maw (Were)",
  17582. image: {
  17583. source: "./media/characters/dhari/were-maw.svg"
  17584. }
  17585. },
  17586. },
  17587. [
  17588. {
  17589. name: "Normal",
  17590. height: math.unit(6 + 3 / 12, "feet"),
  17591. default: true
  17592. },
  17593. ]
  17594. ))
  17595. characterMakers.push(() => makeCharacter(
  17596. { name: "Rena Dyne" },
  17597. {
  17598. anthro: {
  17599. height: math.unit(5 + 7 / 12, "feet"),
  17600. weight: math.unit(175, "lb"),
  17601. name: "Anthro",
  17602. image: {
  17603. source: "./media/characters/rena-dyne/anthro.svg",
  17604. extra: 1849 / 1785,
  17605. bottom: 0.005
  17606. }
  17607. },
  17608. taur: {
  17609. height: math.unit(15 + 6 / 12, "feet"),
  17610. weight: math.unit(8000, "lb"),
  17611. name: "Taur",
  17612. image: {
  17613. source: "./media/characters/rena-dyne/taur.svg",
  17614. extra: 2315 / 2234,
  17615. bottom: 0.033
  17616. }
  17617. },
  17618. },
  17619. [
  17620. {
  17621. name: "Normal",
  17622. height: math.unit(5 + 7 / 12, "feet"),
  17623. default: true
  17624. },
  17625. ]
  17626. ))
  17627. characterMakers.push(() => makeCharacter(
  17628. { name: "Weremeep" },
  17629. {
  17630. front: {
  17631. height: math.unit(8, "feet"),
  17632. weight: math.unit(600, "lb"),
  17633. name: "Front",
  17634. image: {
  17635. source: "./media/characters/weremeep/front.svg",
  17636. extra: 967 / 862,
  17637. bottom: 0.01
  17638. }
  17639. },
  17640. },
  17641. [
  17642. {
  17643. name: "Normal",
  17644. height: math.unit(8, "feet"),
  17645. default: true
  17646. },
  17647. {
  17648. name: "Lorg",
  17649. height: math.unit(12, "feet")
  17650. },
  17651. {
  17652. name: "Oh Lawd She Comin'",
  17653. height: math.unit(20, "feet")
  17654. },
  17655. ]
  17656. ))
  17657. characterMakers.push(() => makeCharacter(
  17658. { name: "Reza" },
  17659. {
  17660. front: {
  17661. height: math.unit(4, "feet"),
  17662. weight: math.unit(90, "lb"),
  17663. name: "Front",
  17664. image: {
  17665. source: "./media/characters/reza/front.svg",
  17666. extra: 1183 / 1111,
  17667. bottom: 0.017
  17668. }
  17669. },
  17670. back: {
  17671. height: math.unit(4, "feet"),
  17672. weight: math.unit(90, "lb"),
  17673. name: "Back",
  17674. image: {
  17675. source: "./media/characters/reza/back.svg",
  17676. extra: 1183 / 1111,
  17677. bottom: 0.01
  17678. }
  17679. },
  17680. },
  17681. [
  17682. {
  17683. name: "Normal",
  17684. height: math.unit(4, "feet"),
  17685. default: true
  17686. },
  17687. ]
  17688. ))
  17689. characterMakers.push(() => makeCharacter(
  17690. { name: "Athea" },
  17691. {
  17692. side: {
  17693. height: math.unit(15, "feet"),
  17694. weight: math.unit(14, "tons"),
  17695. name: "Side",
  17696. image: {
  17697. source: "./media/characters/athea/side.svg",
  17698. extra: 960 / 540,
  17699. bottom: 0.003
  17700. }
  17701. },
  17702. sitting: {
  17703. height: math.unit(6 * 2.85, "feet"),
  17704. weight: math.unit(14, "tons"),
  17705. name: "Sitting",
  17706. image: {
  17707. source: "./media/characters/athea/sitting.svg",
  17708. extra: 621 / 581,
  17709. bottom: 0.075
  17710. }
  17711. },
  17712. maw: {
  17713. height: math.unit(7.59498031496063, "feet"),
  17714. name: "Maw",
  17715. image: {
  17716. source: "./media/characters/athea/maw.svg"
  17717. }
  17718. },
  17719. },
  17720. [
  17721. {
  17722. name: "Lap Cat",
  17723. height: math.unit(2.5, "feet")
  17724. },
  17725. {
  17726. name: "Minimacro",
  17727. height: math.unit(15, "feet"),
  17728. default: true
  17729. },
  17730. {
  17731. name: "Macro",
  17732. height: math.unit(120, "feet")
  17733. },
  17734. {
  17735. name: "Macro+",
  17736. height: math.unit(640, "feet")
  17737. },
  17738. ]
  17739. ))
  17740. characterMakers.push(() => makeCharacter(
  17741. { name: "Seroko" },
  17742. {
  17743. front: {
  17744. height: math.unit(8 + 8 / 12, "feet"),
  17745. weight: math.unit(130, "kg"),
  17746. name: "Front",
  17747. image: {
  17748. source: "./media/characters/seroko/front.svg",
  17749. extra: 1385 / 1280,
  17750. bottom: 0.025
  17751. }
  17752. },
  17753. back: {
  17754. height: math.unit(8 + 8 / 12, "feet"),
  17755. weight: math.unit(130, "kg"),
  17756. name: "Back",
  17757. image: {
  17758. source: "./media/characters/seroko/back.svg",
  17759. extra: 1369 / 1238,
  17760. bottom: 0.018
  17761. }
  17762. },
  17763. frontDressed: {
  17764. height: math.unit(8 + 8 / 12, "feet"),
  17765. weight: math.unit(130, "kg"),
  17766. name: "Front (Dressed)",
  17767. image: {
  17768. source: "./media/characters/seroko/front-dressed.svg",
  17769. extra: 1366 / 1275,
  17770. bottom: 0.03
  17771. }
  17772. },
  17773. },
  17774. [
  17775. {
  17776. name: "Normal",
  17777. height: math.unit(8 + 8 / 12, "feet"),
  17778. default: true
  17779. },
  17780. ]
  17781. ))
  17782. characterMakers.push(() => makeCharacter(
  17783. { name: "Quatzi" },
  17784. {
  17785. front: {
  17786. height: math.unit(5.5, "feet"),
  17787. weight: math.unit(160, "lb"),
  17788. name: "Front",
  17789. image: {
  17790. source: "./media/characters/quatzi/front.svg",
  17791. extra: 2346 / 2242,
  17792. bottom: 0.015
  17793. }
  17794. },
  17795. },
  17796. [
  17797. {
  17798. name: "Normal",
  17799. height: math.unit(5.5, "feet"),
  17800. default: true
  17801. },
  17802. {
  17803. name: "Big",
  17804. height: math.unit(7.7, "feet")
  17805. },
  17806. ]
  17807. ))
  17808. characterMakers.push(() => makeCharacter(
  17809. { name: "Sen" },
  17810. {
  17811. front: {
  17812. height: math.unit(5 + 11 / 12, "feet"),
  17813. weight: math.unit(180, "lb"),
  17814. name: "Front",
  17815. image: {
  17816. source: "./media/characters/sen/front.svg",
  17817. extra: 1321 / 1254,
  17818. bottom: 0.015
  17819. }
  17820. },
  17821. side: {
  17822. height: math.unit(5 + 11 / 12, "feet"),
  17823. weight: math.unit(180, "lb"),
  17824. name: "Side",
  17825. image: {
  17826. source: "./media/characters/sen/side.svg",
  17827. extra: 1321 / 1254,
  17828. bottom: 0.007
  17829. }
  17830. },
  17831. back: {
  17832. height: math.unit(5 + 11 / 12, "feet"),
  17833. weight: math.unit(180, "lb"),
  17834. name: "Back",
  17835. image: {
  17836. source: "./media/characters/sen/back.svg",
  17837. extra: 1321 / 1254
  17838. }
  17839. },
  17840. },
  17841. [
  17842. {
  17843. name: "Normal",
  17844. height: math.unit(5 + 11 / 12, "feet"),
  17845. default: true
  17846. },
  17847. ]
  17848. ))
  17849. characterMakers.push(() => makeCharacter(
  17850. { name: "Fruity" },
  17851. {
  17852. front: {
  17853. height: math.unit(166.6, "cm"),
  17854. weight: math.unit(66.6, "kg"),
  17855. name: "Front",
  17856. image: {
  17857. source: "./media/characters/fruity/front.svg",
  17858. extra: 1510 / 1386,
  17859. bottom: 0.04
  17860. }
  17861. },
  17862. back: {
  17863. height: math.unit(166.6, "cm"),
  17864. weight: math.unit(66.6, "lb"),
  17865. name: "Back",
  17866. image: {
  17867. source: "./media/characters/fruity/back.svg",
  17868. extra: 1563 / 1435,
  17869. bottom: 0.005
  17870. }
  17871. },
  17872. },
  17873. [
  17874. {
  17875. name: "Normal",
  17876. height: math.unit(166.6, "cm"),
  17877. default: true
  17878. },
  17879. {
  17880. name: "Demonic",
  17881. height: math.unit(166.6, "feet")
  17882. },
  17883. ]
  17884. ))
  17885. characterMakers.push(() => makeCharacter(
  17886. { name: "Zost" },
  17887. {
  17888. side: {
  17889. height: math.unit(10, "feet"),
  17890. weight: math.unit(500, "lb"),
  17891. name: "Side",
  17892. image: {
  17893. source: "./media/characters/zost/side.svg",
  17894. extra: 966 / 880,
  17895. bottom: 0.075
  17896. }
  17897. },
  17898. mawFront: {
  17899. height: math.unit(1.08, "meters"),
  17900. name: "Maw (Front)",
  17901. image: {
  17902. source: "./media/characters/zost/maw-front.svg"
  17903. }
  17904. },
  17905. mawSide: {
  17906. height: math.unit(2.66, "feet"),
  17907. name: "Maw (Side)",
  17908. image: {
  17909. source: "./media/characters/zost/maw-side.svg"
  17910. }
  17911. },
  17912. },
  17913. [
  17914. {
  17915. name: "Normal",
  17916. height: math.unit(10, "feet"),
  17917. default: true
  17918. },
  17919. ]
  17920. ))
  17921. characterMakers.push(() => makeCharacter(
  17922. { name: "Luci" },
  17923. {
  17924. front: {
  17925. height: math.unit(5 + 4 / 12, "feet"),
  17926. weight: math.unit(120, "lb"),
  17927. name: "Front",
  17928. image: {
  17929. source: "./media/characters/luci/front.svg",
  17930. extra: 1985 / 1884,
  17931. bottom: 0.04
  17932. }
  17933. },
  17934. back: {
  17935. height: math.unit(5 + 4 / 12, "feet"),
  17936. weight: math.unit(120, "lb"),
  17937. name: "Back",
  17938. image: {
  17939. source: "./media/characters/luci/back.svg",
  17940. extra: 1892 / 1791,
  17941. bottom: 0.002
  17942. }
  17943. },
  17944. },
  17945. [
  17946. {
  17947. name: "Normal",
  17948. height: math.unit(5 + 4 / 12, "feet"),
  17949. default: true
  17950. },
  17951. ]
  17952. ))
  17953. characterMakers.push(() => makeCharacter(
  17954. { name: "2th" },
  17955. {
  17956. front: {
  17957. height: math.unit(1500, "feet"),
  17958. weight: math.unit(3.8e6, "tons"),
  17959. name: "Front",
  17960. image: {
  17961. source: "./media/characters/2th/front.svg",
  17962. extra: 3489 / 3350,
  17963. bottom: 0.1
  17964. }
  17965. },
  17966. foot: {
  17967. height: math.unit(461, "feet"),
  17968. name: "Foot",
  17969. image: {
  17970. source: "./media/characters/2th/foot.svg"
  17971. }
  17972. },
  17973. },
  17974. [
  17975. {
  17976. name: "\"Micro\"",
  17977. height: math.unit(15 + 7 / 12, "feet")
  17978. },
  17979. {
  17980. name: "Normal",
  17981. height: math.unit(1500, "feet"),
  17982. default: true
  17983. },
  17984. {
  17985. name: "Macro",
  17986. height: math.unit(5000, "feet")
  17987. },
  17988. {
  17989. name: "Megamacro",
  17990. height: math.unit(15, "miles")
  17991. },
  17992. {
  17993. name: "Gigamacro",
  17994. height: math.unit(4000, "miles")
  17995. },
  17996. {
  17997. name: "Galactic",
  17998. height: math.unit(50, "AU")
  17999. },
  18000. ]
  18001. ))
  18002. characterMakers.push(() => makeCharacter(
  18003. { name: "Amethyst" },
  18004. {
  18005. front: {
  18006. height: math.unit(5 + 6 / 12, "feet"),
  18007. weight: math.unit(220, "lb"),
  18008. name: "Front",
  18009. image: {
  18010. source: "./media/characters/amethyst/front.svg",
  18011. extra: 2078 / 2040,
  18012. bottom: 0.045
  18013. }
  18014. },
  18015. back: {
  18016. height: math.unit(5 + 6 / 12, "feet"),
  18017. weight: math.unit(220, "lb"),
  18018. name: "Back",
  18019. image: {
  18020. source: "./media/characters/amethyst/back.svg",
  18021. extra: 2021 / 1989,
  18022. bottom: 0.02
  18023. }
  18024. },
  18025. },
  18026. [
  18027. {
  18028. name: "Normal",
  18029. height: math.unit(5 + 6 / 12, "feet"),
  18030. default: true
  18031. },
  18032. ]
  18033. ))
  18034. characterMakers.push(() => makeCharacter(
  18035. { name: "Yumi Akiyama" },
  18036. {
  18037. front: {
  18038. height: math.unit(4 + 11 / 12, "feet"),
  18039. weight: math.unit(120, "lb"),
  18040. name: "Front",
  18041. image: {
  18042. source: "./media/characters/yumi-akiyama/front.svg",
  18043. extra: 1327 / 1235,
  18044. bottom: 0.02
  18045. }
  18046. },
  18047. back: {
  18048. height: math.unit(4 + 11 / 12, "feet"),
  18049. weight: math.unit(120, "lb"),
  18050. name: "Back",
  18051. image: {
  18052. source: "./media/characters/yumi-akiyama/back.svg",
  18053. extra: 1287 / 1245,
  18054. bottom: 0.002
  18055. }
  18056. },
  18057. },
  18058. [
  18059. {
  18060. name: "Galactic",
  18061. height: math.unit(50, "galaxies"),
  18062. default: true
  18063. },
  18064. {
  18065. name: "Universal",
  18066. height: math.unit(100, "universes")
  18067. },
  18068. ]
  18069. ))
  18070. characterMakers.push(() => makeCharacter(
  18071. { name: "Rifter Yrmori" },
  18072. {
  18073. front: {
  18074. height: math.unit(8, "feet"),
  18075. weight: math.unit(500, "lb"),
  18076. name: "Front",
  18077. image: {
  18078. source: "./media/characters/rifter-yrmori/front.svg",
  18079. extra: 1180 / 1125,
  18080. bottom: 0.02
  18081. }
  18082. },
  18083. back: {
  18084. height: math.unit(8, "feet"),
  18085. weight: math.unit(500, "lb"),
  18086. name: "Back",
  18087. image: {
  18088. source: "./media/characters/rifter-yrmori/back.svg",
  18089. extra: 1190 / 1145,
  18090. bottom: 0.001
  18091. }
  18092. },
  18093. wings: {
  18094. height: math.unit(7.75, "feet"),
  18095. weight: math.unit(500, "lb"),
  18096. name: "Wings",
  18097. image: {
  18098. source: "./media/characters/rifter-yrmori/wings.svg",
  18099. extra: 1357 / 1285
  18100. }
  18101. },
  18102. maw: {
  18103. height: math.unit(0.8, "feet"),
  18104. name: "Maw",
  18105. image: {
  18106. source: "./media/characters/rifter-yrmori/maw.svg"
  18107. }
  18108. },
  18109. },
  18110. [
  18111. {
  18112. name: "Normal",
  18113. height: math.unit(8, "feet"),
  18114. default: true
  18115. },
  18116. {
  18117. name: "Macro",
  18118. height: math.unit(42, "meters")
  18119. },
  18120. ]
  18121. ))
  18122. characterMakers.push(() => makeCharacter(
  18123. { name: "Tahajin" },
  18124. {
  18125. were: {
  18126. height: math.unit(25 + 6 / 12, "feet"),
  18127. weight: math.unit(10000, "lb"),
  18128. name: "Were",
  18129. image: {
  18130. source: "./media/characters/tahajin/were.svg",
  18131. extra: 801 / 770,
  18132. bottom: 0.042
  18133. }
  18134. },
  18135. aquatic: {
  18136. height: math.unit(6 + 4 / 12, "feet"),
  18137. weight: math.unit(160, "lb"),
  18138. name: "Aquatic",
  18139. image: {
  18140. source: "./media/characters/tahajin/aquatic.svg",
  18141. extra: 572 / 542,
  18142. bottom: 0.04
  18143. }
  18144. },
  18145. chow: {
  18146. height: math.unit(8 + 11 / 12, "feet"),
  18147. weight: math.unit(450, "lb"),
  18148. name: "Chow",
  18149. image: {
  18150. source: "./media/characters/tahajin/chow.svg",
  18151. extra: 660 / 640,
  18152. bottom: 0.015
  18153. }
  18154. },
  18155. demiNaga: {
  18156. height: math.unit(6 + 8 / 12, "feet"),
  18157. weight: math.unit(300, "lb"),
  18158. name: "Demi Naga",
  18159. image: {
  18160. source: "./media/characters/tahajin/demi-naga.svg",
  18161. extra: 643 / 615,
  18162. bottom: 0.1
  18163. }
  18164. },
  18165. data: {
  18166. height: math.unit(5, "inches"),
  18167. weight: math.unit(0.1, "lb"),
  18168. name: "Data",
  18169. image: {
  18170. source: "./media/characters/tahajin/data.svg"
  18171. }
  18172. },
  18173. fluu: {
  18174. height: math.unit(5 + 7 / 12, "feet"),
  18175. weight: math.unit(140, "lb"),
  18176. name: "Fluu",
  18177. image: {
  18178. source: "./media/characters/tahajin/fluu.svg",
  18179. extra: 628 / 592,
  18180. bottom: 0.02
  18181. }
  18182. },
  18183. starWarrior: {
  18184. height: math.unit(4 + 5 / 12, "feet"),
  18185. weight: math.unit(50, "lb"),
  18186. name: "Star Warrior",
  18187. image: {
  18188. source: "./media/characters/tahajin/star-warrior.svg"
  18189. }
  18190. },
  18191. },
  18192. [
  18193. {
  18194. name: "Normal",
  18195. height: math.unit(25 + 6 / 12, "feet"),
  18196. default: true
  18197. },
  18198. ]
  18199. ))
  18200. characterMakers.push(() => makeCharacter(
  18201. { name: "Gabira" },
  18202. {
  18203. front: {
  18204. height: math.unit(8, "feet"),
  18205. weight: math.unit(350, "lb"),
  18206. name: "Front",
  18207. image: {
  18208. source: "./media/characters/gabira/front.svg",
  18209. extra: 608 / 580,
  18210. bottom: 0.03
  18211. }
  18212. },
  18213. back: {
  18214. height: math.unit(8, "feet"),
  18215. weight: math.unit(350, "lb"),
  18216. name: "Back",
  18217. image: {
  18218. source: "./media/characters/gabira/back.svg",
  18219. extra: 608 / 580,
  18220. bottom: 0.03
  18221. }
  18222. },
  18223. },
  18224. [
  18225. {
  18226. name: "Normal",
  18227. height: math.unit(8, "feet"),
  18228. default: true
  18229. },
  18230. ]
  18231. ))
  18232. characterMakers.push(() => makeCharacter(
  18233. { name: "Sasha Katraine" },
  18234. {
  18235. front: {
  18236. height: math.unit(5 + 3 / 12, "feet"),
  18237. weight: math.unit(137, "lb"),
  18238. name: "Front",
  18239. image: {
  18240. source: "./media/characters/sasha-katraine/front.svg",
  18241. bottom: 0.045
  18242. }
  18243. },
  18244. },
  18245. [
  18246. {
  18247. name: "Micro",
  18248. height: math.unit(5, "inches")
  18249. },
  18250. {
  18251. name: "Normal",
  18252. height: math.unit(5 + 3 / 12, "feet"),
  18253. default: true
  18254. },
  18255. ]
  18256. ))
  18257. characterMakers.push(() => makeCharacter(
  18258. { name: "Der" },
  18259. {
  18260. side: {
  18261. height: math.unit(4, "inches"),
  18262. weight: math.unit(200, "grams"),
  18263. name: "Side",
  18264. image: {
  18265. source: "./media/characters/der/side.svg",
  18266. extra: 719 / 400,
  18267. bottom: 30.6 / 749.9187
  18268. }
  18269. },
  18270. },
  18271. [
  18272. {
  18273. name: "Micro",
  18274. height: math.unit(4, "inches"),
  18275. default: true
  18276. },
  18277. ]
  18278. ))
  18279. //characters
  18280. function makeCharacters() {
  18281. const results = [];
  18282. characterMakers.forEach(character => {
  18283. results.push(character());
  18284. });
  18285. return results;
  18286. }