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

19781 wiersze
470 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename
  18. }
  19. if (value.weight) {
  20. views[key].attributes.weight = {
  21. name: "Mass",
  22. power: 3,
  23. type: "mass",
  24. base: value.weight
  25. };
  26. }
  27. });
  28. return createEntityMaker(info, views, defaultSizes);
  29. }
  30. characterMakers.push(() => makeCharacter(
  31. {
  32. name: "Fen",
  33. species: "Crux",
  34. description: {
  35. title: "Bio",
  36. text: "Very furry. Sheds on everything."
  37. }
  38. },
  39. {
  40. back: {
  41. height: math.unit(2.2428, "meter"),
  42. weight: math.unit(124.738, "kg"),
  43. name: "Back",
  44. image: {
  45. source: "./media/characters/fen/back.svg",
  46. extra: 1025 / 935
  47. },
  48. info: {
  49. description: {
  50. mode: "append",
  51. text: "\n\nHe is not currently looking at you."
  52. }
  53. }
  54. },
  55. full: {
  56. height: math.unit(1.34, "meter"),
  57. weight: math.unit(225, "kg"),
  58. name: "Full",
  59. image: {
  60. source: "./media/characters/fen/full.svg"
  61. },
  62. info: {
  63. description: {
  64. mode: "append",
  65. text: "\n\nMunch."
  66. }
  67. }
  68. },
  69. kneeling: {
  70. height: math.unit(5.4, "feet"),
  71. weight: math.unit(124.738, "kg"),
  72. name: "Kneeling",
  73. image: {
  74. source: "./media/characters/fen/kneeling.svg",
  75. extra: 563 / 507
  76. }
  77. },
  78. },
  79. [
  80. {
  81. name: "Normal",
  82. height: math.unit(2.2428, "meter")
  83. },
  84. {
  85. name: "Big",
  86. height: math.unit(12, "feet")
  87. },
  88. {
  89. name: "Minimacro",
  90. height: math.unit(30, "meter"),
  91. default: true,
  92. info: {
  93. description: {
  94. mode: "append",
  95. text: "\n\nTOO DAMN BIG"
  96. }
  97. }
  98. },
  99. {
  100. name: "Macro",
  101. height: math.unit(100, "meter"),
  102. info: {
  103. description: {
  104. mode: "append",
  105. text: "\n\nTOO DAMN BIG"
  106. }
  107. }
  108. },
  109. {
  110. name: "Macro+",
  111. height: math.unit(1000, "meter")
  112. },
  113. {
  114. name: "Megamacro",
  115. height: math.unit(10, "miles")
  116. }
  117. ]
  118. ))
  119. characterMakers.push(() => makeCharacter(
  120. { name: "Sofia Fluttertail" },
  121. {
  122. front: {
  123. height: math.unit(183, "cm"),
  124. weight: math.unit(80, "kg"),
  125. name: "Front",
  126. image: {
  127. source: "./media/characters/sofia-fluttertail/front.svg",
  128. bottom: 0.01,
  129. extra: 2154 / 2081
  130. }
  131. },
  132. frontAlt: {
  133. height: math.unit(183, "cm"),
  134. weight: math.unit(80, "kg"),
  135. name: "Front (alt)",
  136. image: {
  137. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  138. }
  139. },
  140. back: {
  141. height: math.unit(183, "cm"),
  142. weight: math.unit(80, "kg"),
  143. name: "Back",
  144. image: {
  145. source: "./media/characters/sofia-fluttertail/back.svg"
  146. }
  147. },
  148. maw: {
  149. height: math.unit(183 / 5, "cm"),
  150. name: "Maw",
  151. image: {
  152. source: "./media/characters/sofia-fluttertail/maw.svg"
  153. }
  154. },
  155. },
  156. [
  157. {
  158. name: "Normal",
  159. height: math.unit(1.83, "meter")
  160. },
  161. {
  162. name: "Macro",
  163. height: math.unit(96, "feet"),
  164. default: true
  165. },
  166. {
  167. name: "Megamerger",
  168. height: math.unit(650, "feet")
  169. },
  170. ]
  171. ))
  172. characterMakers.push(() => makeCharacter(
  173. { name: "March" },
  174. {
  175. front: {
  176. height: math.unit(7, "feet"),
  177. weight: math.unit(100, "kg"),
  178. name: "Front",
  179. image: {
  180. source: "./media/characters/march/front.svg",
  181. extra: 1,
  182. bottom: 0.015
  183. }
  184. },
  185. foot: {
  186. height: math.unit(0.9, "feet"),
  187. name: "Foot",
  188. image: {
  189. source: "./media/characters/march/foot.svg"
  190. }
  191. },
  192. },
  193. [
  194. {
  195. name: "Normal",
  196. height: math.unit(7.9, "feet")
  197. },
  198. {
  199. name: "Macro",
  200. height: math.unit(220, "meters")
  201. },
  202. {
  203. name: "Megamacro",
  204. height: math.unit(2.98, "km"),
  205. default: true
  206. },
  207. {
  208. name: "Gigamacro",
  209. height: math.unit(15963, "km")
  210. },
  211. {
  212. name: "Teramacro",
  213. height: math.unit(2980000000, "km")
  214. },
  215. {
  216. name: "Examacro",
  217. height: math.unit(250, "parsecs")
  218. },
  219. ]
  220. ))
  221. characterMakers.push(() => makeCharacter(
  222. { name: "Noir" },
  223. {
  224. front: {
  225. height: math.unit(6, "feet"),
  226. weight: math.unit(60, "kg"),
  227. name: "Front",
  228. image: {
  229. source: "./media/characters/noir/front.svg",
  230. extra: 1,
  231. bottom: 0.032
  232. }
  233. },
  234. },
  235. [
  236. {
  237. name: "Normal",
  238. height: math.unit(6.6, "feet")
  239. },
  240. {
  241. name: "Macro",
  242. height: math.unit(500, "feet")
  243. },
  244. {
  245. name: "Megamacro",
  246. height: math.unit(2.5, "km"),
  247. default: true
  248. },
  249. {
  250. name: "Gigamacro",
  251. height: math.unit(22500, "km")
  252. },
  253. {
  254. name: "Teramacro",
  255. height: math.unit(2500000000, "km")
  256. },
  257. {
  258. name: "Examacro",
  259. height: math.unit(200, "parsecs")
  260. },
  261. ]
  262. ))
  263. characterMakers.push(() => makeCharacter(
  264. { name: "Okuri" },
  265. {
  266. front: {
  267. height: math.unit(7, "feet"),
  268. weight: math.unit(100, "kg"),
  269. name: "Front",
  270. image: {
  271. source: "./media/characters/okuri/front.svg",
  272. extra: 1,
  273. bottom: 0.037
  274. }
  275. },
  276. back: {
  277. height: math.unit(7, "feet"),
  278. weight: math.unit(100, "kg"),
  279. name: "Back",
  280. image: {
  281. source: "./media/characters/okuri/back.svg",
  282. extra: 1,
  283. bottom: 0.007
  284. }
  285. },
  286. },
  287. [
  288. {
  289. name: "Megamacro",
  290. height: math.unit(100, "miles"),
  291. default: true
  292. },
  293. ]
  294. ))
  295. characterMakers.push(() => makeCharacter(
  296. { name: "Manny" },
  297. {
  298. front: {
  299. height: math.unit(7, "feet"),
  300. weight: math.unit(100, "kg"),
  301. name: "Front",
  302. image: {
  303. source: "./media/characters/manny/front.svg",
  304. extra: 1,
  305. bottom: 0.06
  306. }
  307. },
  308. back: {
  309. height: math.unit(7, "feet"),
  310. weight: math.unit(100, "kg"),
  311. name: "Back",
  312. image: {
  313. source: "./media/characters/manny/back.svg",
  314. extra: 1,
  315. bottom: 0.014
  316. }
  317. },
  318. },
  319. [
  320. {
  321. name: "Normal",
  322. height: math.unit(7, "feet"),
  323. },
  324. {
  325. name: "Macro",
  326. height: math.unit(78, "feet"),
  327. default: true
  328. },
  329. {
  330. name: "Macro+",
  331. height: math.unit(300, "meters")
  332. },
  333. {
  334. name: "Macro++",
  335. height: math.unit(2400, "meters")
  336. },
  337. {
  338. name: "Megamacro",
  339. height: math.unit(5167, "meters")
  340. },
  341. {
  342. name: "Gigamacro",
  343. height: math.unit(41769, "miles")
  344. },
  345. ]
  346. ))
  347. characterMakers.push(() => makeCharacter(
  348. { name: "Adake" },
  349. {
  350. front: {
  351. height: math.unit(7, "feet"),
  352. weight: math.unit(100, "kg"),
  353. name: "Front",
  354. image: {
  355. source: "./media/characters/adake/front-1.svg"
  356. }
  357. },
  358. frontAlt: {
  359. height: math.unit(7, "feet"),
  360. weight: math.unit(100, "kg"),
  361. name: "Front (Alt)",
  362. image: {
  363. source: "./media/characters/adake/front-2.svg",
  364. extra: 1,
  365. bottom: 0.01
  366. }
  367. },
  368. back: {
  369. height: math.unit(7, "feet"),
  370. weight: math.unit(100, "kg"),
  371. name: "Back",
  372. image: {
  373. source: "./media/characters/adake/back.svg",
  374. }
  375. },
  376. kneel: {
  377. height: math.unit(5.385, "feet"),
  378. weight: math.unit(100, "kg"),
  379. name: "Kneeling",
  380. image: {
  381. source: "./media/characters/adake/kneel.svg",
  382. bottom: 0.052
  383. }
  384. },
  385. },
  386. [
  387. {
  388. name: "Normal",
  389. height: math.unit(7, "feet"),
  390. },
  391. {
  392. name: "Macro",
  393. height: math.unit(78, "feet"),
  394. default: true
  395. },
  396. {
  397. name: "Macro+",
  398. height: math.unit(300, "meters")
  399. },
  400. {
  401. name: "Macro++",
  402. height: math.unit(2400, "meters")
  403. },
  404. {
  405. name: "Megamacro",
  406. height: math.unit(5167, "meters")
  407. },
  408. {
  409. name: "Gigamacro",
  410. height: math.unit(41769, "miles")
  411. },
  412. ]
  413. ))
  414. characterMakers.push(() => makeCharacter(
  415. { name: "Elijah" },
  416. {
  417. front: {
  418. height: math.unit(1.65, "meters"),
  419. weight: math.unit(50, "kg"),
  420. name: "Front",
  421. image: {
  422. source: "./media/characters/elijah/front.svg",
  423. extra: 639/626,
  424. bottom: 58.7/697.8
  425. }
  426. },
  427. side: {
  428. height: math.unit(1.65, "meters"),
  429. weight: math.unit(50, "kg"),
  430. name: "Side",
  431. image: {
  432. source: "./media/characters/elijah/side.svg",
  433. extra: 1840/1795,
  434. bottom: 106/1943
  435. }
  436. },
  437. back: {
  438. height: math.unit(1.65, "meters"),
  439. weight: math.unit(50, "kg"),
  440. name: "Back",
  441. image: {
  442. source: "./media/characters/elijah/back.svg",
  443. extra: 661.2/639.5,
  444. bottom: 21.2/682.5
  445. }
  446. },
  447. foot: {
  448. height: math.unit(1.4, "feet"),
  449. name: "Foot",
  450. image: {
  451. source: "./media/characters/elijah/foot.svg"
  452. }
  453. },
  454. footFlexing: {
  455. height: math.unit(1.243, "feet"),
  456. name: "Foot (Flexing)",
  457. image: {
  458. source: "./media/characters/elijah/foot-flexing.svg"
  459. }
  460. },
  461. footStepping: {
  462. height: math.unit(1.3, "feet"),
  463. name: "Foot (Stepping)",
  464. image: {
  465. source: "./media/characters/elijah/foot-stepping.svg"
  466. }
  467. },
  468. beak: {
  469. height: math.unit(0.666, "feet"),
  470. name: "Beak",
  471. image: {
  472. source: "./media/characters/elijah/beak.svg"
  473. }
  474. },
  475. dick: {
  476. height: math.unit(0.85, "feet"),
  477. name: "Dick",
  478. image: {
  479. source: "./media/characters/elijah/dick.svg"
  480. }
  481. },
  482. },
  483. [
  484. {
  485. name: "Normal",
  486. height: math.unit(1.65, "meters")
  487. },
  488. {
  489. name: "Macro",
  490. height: math.unit(55, "meters"),
  491. default: true
  492. },
  493. {
  494. name: "Macro+",
  495. height: math.unit(105, "meters")
  496. },
  497. ]
  498. ))
  499. characterMakers.push(() => makeCharacter(
  500. { name: "Rai" },
  501. {
  502. front: {
  503. height: math.unit(11, "feet"),
  504. weight: math.unit(80, "kg"),
  505. name: "Front",
  506. image: {
  507. source: "./media/characters/rai/front.svg",
  508. extra: 1,
  509. bottom: 0.03
  510. }
  511. },
  512. side: {
  513. height: math.unit(11, "feet"),
  514. weight: math.unit(80, "kg"),
  515. name: "Side",
  516. image: {
  517. source: "./media/characters/rai/side.svg"
  518. }
  519. },
  520. back: {
  521. height: math.unit(11, "feet"),
  522. weight: math.unit(80, "lb"),
  523. name: "Back",
  524. image: {
  525. source: "./media/characters/rai/back.svg",
  526. extra: 1,
  527. bottom: 0.01
  528. }
  529. },
  530. feral: {
  531. height: math.unit(11, "feet"),
  532. weight: math.unit(800, "lb"),
  533. name: "Feral",
  534. image: {
  535. source: "./media/characters/rai/feral.svg",
  536. extra: 1050 / 659,
  537. bottom: 0.07
  538. }
  539. },
  540. maw: {
  541. height: math.unit(6 / 3.81416, "feet"),
  542. name: "Maw",
  543. image: {
  544. source: "./media/characters/rai/maw.svg"
  545. }
  546. },
  547. },
  548. [
  549. {
  550. name: "Normal",
  551. height: math.unit(11, "feet")
  552. },
  553. {
  554. name: "Macro",
  555. height: math.unit(302, "feet"),
  556. default: true
  557. },
  558. ]
  559. ))
  560. characterMakers.push(() => makeCharacter(
  561. { name: "Jazzy" },
  562. {
  563. front: {
  564. height: math.unit(7, "feet"),
  565. weight: math.unit(80, "kg"),
  566. name: "Front",
  567. image: {
  568. source: "./media/characters/jazzy/front.svg",
  569. extra: 1,
  570. bottom: 0.01
  571. }
  572. },
  573. back: {
  574. height: math.unit(7, "feet"),
  575. weight: math.unit(80, "kg"),
  576. name: "Back",
  577. image: {
  578. source: "./media/characters/jazzy/back.svg",
  579. extra: 1,
  580. bottom: 0.01
  581. }
  582. },
  583. },
  584. [
  585. {
  586. name: "Macro",
  587. height: math.unit(216, "feet"),
  588. default: true
  589. },
  590. ]
  591. ))
  592. characterMakers.push(() => makeCharacter(
  593. { name: "Flamm" },
  594. {
  595. front: {
  596. height: math.unit(7, "feet"),
  597. weight: math.unit(80, "kg"),
  598. name: "Front",
  599. image: {
  600. source: "./media/characters/flamm/front.svg",
  601. extra: 1,
  602. bottom: 0.02
  603. }
  604. },
  605. },
  606. [
  607. {
  608. name: "Normal",
  609. height: math.unit(9.5, "feet")
  610. },
  611. {
  612. name: "Macro",
  613. height: math.unit(200, "feet"),
  614. default: true
  615. },
  616. ]
  617. ))
  618. characterMakers.push(() => makeCharacter(
  619. { name: "Zephiro" },
  620. {
  621. front: {
  622. height: math.unit(7, "feet"),
  623. weight: math.unit(80, "kg"),
  624. name: "Front",
  625. image: {
  626. source: "./media/characters/zephiro/front.svg",
  627. extra: 2309 / 2162,
  628. bottom: 0.069
  629. }
  630. },
  631. side: {
  632. height: math.unit(7, "feet"),
  633. weight: math.unit(80, "kg"),
  634. name: "Side",
  635. image: {
  636. source: "./media/characters/zephiro/side.svg",
  637. extra: 2403 / 2279,
  638. bottom: 0.015
  639. }
  640. },
  641. back: {
  642. height: math.unit(7, "feet"),
  643. weight: math.unit(80, "kg"),
  644. name: "Back",
  645. image: {
  646. source: "./media/characters/zephiro/back.svg",
  647. extra: 2373 / 2244,
  648. bottom: 0.013
  649. }
  650. },
  651. },
  652. [
  653. {
  654. name: "Micro",
  655. height: math.unit(3, "inches")
  656. },
  657. {
  658. name: "Normal",
  659. height: math.unit(5 + 3 / 12, "feet"),
  660. default: true
  661. },
  662. {
  663. name: "Macro",
  664. height: math.unit(118, "feet")
  665. },
  666. ]
  667. ))
  668. characterMakers.push(() => makeCharacter(
  669. { name: "Fory" },
  670. {
  671. front: {
  672. height: math.unit(7, "feet"),
  673. weight: math.unit(90, "kg"),
  674. name: "Front",
  675. image: {
  676. source: "./media/characters/fory/front.svg",
  677. extra: 1,
  678. bottom: 0.03
  679. }
  680. },
  681. },
  682. [
  683. {
  684. name: "Normal",
  685. height: math.unit(5, "feet")
  686. },
  687. {
  688. name: "Macro",
  689. height: math.unit(50, "feet"),
  690. default: true
  691. },
  692. ]
  693. ))
  694. characterMakers.push(() => makeCharacter(
  695. { name: "Kurrikage" },
  696. {
  697. front: {
  698. height: math.unit(7, "feet"),
  699. weight: math.unit(90, "kg"),
  700. name: "Front",
  701. image: {
  702. source: "./media/characters/kurrikage/front.svg",
  703. extra: 1,
  704. bottom: 0.035
  705. }
  706. },
  707. back: {
  708. height: math.unit(7, "feet"),
  709. weight: math.unit(90, "lb"),
  710. name: "Back",
  711. image: {
  712. source: "./media/characters/kurrikage/back.svg"
  713. }
  714. },
  715. paw: {
  716. height: math.unit(1.5, "feet"),
  717. name: "Paw",
  718. image: {
  719. source: "./media/characters/kurrikage/paw.svg"
  720. }
  721. },
  722. staff: {
  723. height: math.unit(6.7, "feet"),
  724. name: "Staff",
  725. image: {
  726. source: "./media/characters/kurrikage/staff.svg"
  727. }
  728. },
  729. peek: {
  730. height: math.unit(1.05, "feet"),
  731. name: "Peeking",
  732. image: {
  733. source: "./media/characters/kurrikage/peek.svg",
  734. bottom: 0.08
  735. }
  736. },
  737. },
  738. [
  739. {
  740. name: "Normal",
  741. height: math.unit(12, "feet"),
  742. default: true
  743. },
  744. {
  745. name: "Big",
  746. height: math.unit(20, "feet")
  747. },
  748. {
  749. name: "Macro",
  750. height: math.unit(500, "feet")
  751. },
  752. {
  753. name: "Megamacro",
  754. height: math.unit(20, "miles")
  755. },
  756. ]
  757. ))
  758. characterMakers.push(() => makeCharacter(
  759. { name: "Shingo" },
  760. {
  761. front: {
  762. height: math.unit(6, "feet"),
  763. weight: math.unit(75, "kg"),
  764. name: "Front",
  765. image: {
  766. source: "./media/characters/shingo/front.svg",
  767. extra: 3511 / 3338,
  768. bottom: 0.005
  769. }
  770. },
  771. },
  772. [
  773. {
  774. name: "Micro",
  775. height: math.unit(4, "inches")
  776. },
  777. {
  778. name: "Normal",
  779. height: math.unit(6, "feet"),
  780. default: true
  781. },
  782. {
  783. name: "Macro",
  784. height: math.unit(108, "feet")
  785. }
  786. ]
  787. ))
  788. characterMakers.push(() => makeCharacter(
  789. { name: "Aigey" },
  790. {
  791. side: {
  792. height: math.unit(6, "feet"),
  793. weight: math.unit(75, "kg"),
  794. name: "Side",
  795. image: {
  796. source: "./media/characters/aigey/side.svg"
  797. }
  798. },
  799. },
  800. [
  801. {
  802. name: "Macro",
  803. height: math.unit(200, "feet"),
  804. default: true
  805. },
  806. {
  807. name: "Megamacro",
  808. height: math.unit(100, "miles")
  809. },
  810. ]
  811. )
  812. )
  813. characterMakers.push(() => makeCharacter(
  814. { name: "Natasha" },
  815. {
  816. front: {
  817. height: math.unit(5 + 5 / 12, "feet"),
  818. weight: math.unit(75, "kg"),
  819. name: "Front",
  820. image: {
  821. source: "./media/characters/natasha/front.svg",
  822. extra: 875 / 846,
  823. bottom: 0.01
  824. }
  825. },
  826. },
  827. [
  828. {
  829. name: "Normal",
  830. height: math.unit(5 + 5 / 12, "feet")
  831. },
  832. {
  833. name: "Large",
  834. height: math.unit(12, "feet")
  835. },
  836. {
  837. name: "Macro",
  838. height: math.unit(100, "feet"),
  839. default: true
  840. },
  841. {
  842. name: "Macro+",
  843. height: math.unit(260, "feet")
  844. },
  845. {
  846. name: "Macro++",
  847. height: math.unit(1, "mile")
  848. },
  849. ]
  850. ))
  851. characterMakers.push(() => makeCharacter(
  852. { name: "Malik" },
  853. {
  854. front: {
  855. height: math.unit(6, "feet"),
  856. weight: math.unit(75, "kg"),
  857. name: "Front",
  858. image: {
  859. source: "./media/characters/malik/front.svg"
  860. }
  861. },
  862. side: {
  863. height: math.unit(6, "feet"),
  864. weight: math.unit(75, "kg"),
  865. name: "Side",
  866. image: {
  867. source: "./media/characters/malik/side.svg",
  868. extra: 1.1539
  869. }
  870. },
  871. back: {
  872. height: math.unit(6, "feet"),
  873. weight: math.unit(75, "kg"),
  874. name: "Back",
  875. image: {
  876. source: "./media/characters/malik/back.svg"
  877. }
  878. },
  879. },
  880. [
  881. {
  882. name: "Macro",
  883. height: math.unit(156, "feet"),
  884. default: true
  885. },
  886. {
  887. name: "Macro+",
  888. height: math.unit(1188, "feet")
  889. },
  890. ]
  891. ))
  892. characterMakers.push(() => makeCharacter(
  893. { name: "Sefer" },
  894. {
  895. front: {
  896. height: math.unit(6, "feet"),
  897. weight: math.unit(75, "kg"),
  898. name: "Front",
  899. image: {
  900. source: "./media/characters/sefer/front.svg"
  901. }
  902. },
  903. back: {
  904. height: math.unit(6, "feet"),
  905. weight: math.unit(75, "kg"),
  906. name: "Back",
  907. image: {
  908. source: "./media/characters/sefer/back.svg"
  909. }
  910. },
  911. },
  912. [
  913. {
  914. name: "Normal",
  915. height: math.unit(6, "feet"),
  916. default: true
  917. },
  918. ]
  919. ))
  920. characterMakers.push(() => makeCharacter(
  921. { name: "North" },
  922. {
  923. body: {
  924. height: math.unit(2.2428, "meter"),
  925. weight: math.unit(124.738, "kg"),
  926. name: "Body",
  927. image: {
  928. extra: 1225 / 1050,
  929. source: "./media/characters/north/front.svg"
  930. }
  931. }
  932. },
  933. [
  934. {
  935. name: "Micro",
  936. height: math.unit(4, "inches")
  937. },
  938. {
  939. name: "Macro",
  940. height: math.unit(63, "meters")
  941. },
  942. {
  943. name: "Megamacro",
  944. height: math.unit(101, "miles"),
  945. default: true
  946. }
  947. ]
  948. ))
  949. characterMakers.push(() => makeCharacter(
  950. { name: "Talan" },
  951. {
  952. body: {
  953. height: math.unit(2, "meter"),
  954. weight: math.unit(70, "kg"),
  955. name: "Body",
  956. image: {
  957. bottom: 0.02,
  958. source: "./media/characters/talan/front.svg"
  959. }
  960. }
  961. },
  962. [
  963. {
  964. name: "Normal",
  965. height: math.unit(4, "meters")
  966. },
  967. {
  968. name: "Macro",
  969. height: math.unit(100, "meters")
  970. },
  971. {
  972. name: "Megamacro",
  973. height: math.unit(2, "miles"),
  974. default: true
  975. },
  976. {
  977. name: "Gigamacro",
  978. height: math.unit(5000, "miles")
  979. },
  980. {
  981. name: "Teramacro",
  982. height: math.unit(100, "parsecs")
  983. }
  984. ]
  985. ))
  986. characterMakers.push(() => makeCharacter(
  987. { name: "Gael'Rathus" },
  988. {
  989. front: {
  990. height: math.unit(2, "meter"),
  991. weight: math.unit(90, "kg"),
  992. name: "Front",
  993. image: {
  994. source: "./media/characters/gael'rathus/front.svg"
  995. }
  996. },
  997. frontAlt: {
  998. height: math.unit(2, "meter"),
  999. weight: math.unit(90, "kg"),
  1000. name: "Front (alt)",
  1001. image: {
  1002. source: "./media/characters/gael'rathus/front-alt.svg"
  1003. }
  1004. },
  1005. frontAlt2: {
  1006. height: math.unit(2, "meter"),
  1007. weight: math.unit(90, "kg"),
  1008. name: "Front (alt 2)",
  1009. image: {
  1010. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1011. }
  1012. }
  1013. },
  1014. [
  1015. {
  1016. name: "Normal",
  1017. height: math.unit(9, "feet"),
  1018. default: true
  1019. },
  1020. {
  1021. name: "Large",
  1022. height: math.unit(25, "feet")
  1023. },
  1024. {
  1025. name: "Macro",
  1026. height: math.unit(0.25, "miles")
  1027. },
  1028. {
  1029. name: "Megamacro",
  1030. height: math.unit(10, "miles")
  1031. }
  1032. ]
  1033. ))
  1034. characterMakers.push(() => makeCharacter(
  1035. { name: "Sosha" },
  1036. {
  1037. side: {
  1038. height: math.unit(2, "meter"),
  1039. weight: math.unit(140, "kg"),
  1040. name: "Side",
  1041. image: {
  1042. source: "./media/characters/sosha/side.svg",
  1043. bottom: 0.042
  1044. }
  1045. },
  1046. },
  1047. [
  1048. {
  1049. name: "Normal",
  1050. height: math.unit(12, "feet"),
  1051. default: true
  1052. }
  1053. ]
  1054. ))
  1055. characterMakers.push(() => makeCharacter(
  1056. { name: "RuNNoLa" },
  1057. {
  1058. side: {
  1059. height: math.unit(5 + 5 / 12, "feet"),
  1060. weight: math.unit(170, "kg"),
  1061. name: "Side",
  1062. image: {
  1063. source: "./media/characters/runnola/side.svg",
  1064. extra: 741 / 448,
  1065. bottom: 0.05
  1066. }
  1067. },
  1068. },
  1069. [
  1070. {
  1071. name: "Small",
  1072. height: math.unit(3, "feet")
  1073. },
  1074. {
  1075. name: "Normal",
  1076. height: math.unit(5 + 5 / 12, "feet"),
  1077. default: true
  1078. },
  1079. {
  1080. name: "Big",
  1081. height: math.unit(10, "feet")
  1082. },
  1083. ]
  1084. ))
  1085. characterMakers.push(() => makeCharacter(
  1086. { name: "Kurribird" },
  1087. {
  1088. front: {
  1089. height: math.unit(2, "meter"),
  1090. weight: math.unit(50, "kg"),
  1091. name: "Front",
  1092. image: {
  1093. source: "./media/characters/kurribird/front.svg",
  1094. bottom: 0.015
  1095. }
  1096. },
  1097. frontAlt: {
  1098. height: math.unit(1.5, "meter"),
  1099. weight: math.unit(50, "kg"),
  1100. name: "Front (Alt)",
  1101. image: {
  1102. source: "./media/characters/kurribird/front-alt.svg",
  1103. extra: 1.45
  1104. }
  1105. },
  1106. },
  1107. [
  1108. {
  1109. name: "Normal",
  1110. height: math.unit(7, "feet")
  1111. },
  1112. {
  1113. name: "Big",
  1114. height: math.unit(12, "feet"),
  1115. default: true
  1116. },
  1117. {
  1118. name: "Macro",
  1119. height: math.unit(1500, "feet")
  1120. },
  1121. {
  1122. name: "Megamacro",
  1123. height: math.unit(2, "miles")
  1124. }
  1125. ]
  1126. ))
  1127. characterMakers.push(() => makeCharacter(
  1128. { name: "Elbial" },
  1129. {
  1130. front: {
  1131. height: math.unit(2, "meter"),
  1132. weight: math.unit(80, "kg"),
  1133. name: "Front",
  1134. image: {
  1135. source: "./media/characters/elbial/front.svg",
  1136. extra: 1643/1556,
  1137. bottom: 60.2/1696
  1138. }
  1139. },
  1140. side: {
  1141. height: math.unit(2, "meter"),
  1142. weight: math.unit(80, "kg"),
  1143. name: "Side",
  1144. image: {
  1145. source: "./media/characters/elbial/side.svg",
  1146. extra: 1630/1565,
  1147. bottom: 71.5/1697
  1148. }
  1149. },
  1150. back: {
  1151. height: math.unit(2, "meter"),
  1152. weight: math.unit(80, "kg"),
  1153. name: "Back",
  1154. image: {
  1155. source: "./media/characters/elbial/back.svg",
  1156. extra: 1668/1595,
  1157. bottom: 5.6/1672
  1158. }
  1159. },
  1160. frontDressed: {
  1161. height: math.unit(2, "meter"),
  1162. weight: math.unit(80, "kg"),
  1163. name: "Front (Dressed)",
  1164. image: {
  1165. source: "./media/characters/elbial/front-dressed.svg",
  1166. extra: 1653/1584,
  1167. bottom: 57/1708
  1168. }
  1169. },
  1170. genitals: {
  1171. height: math.unit(2/3.367, "meter"),
  1172. name: "Genitals",
  1173. image: {
  1174. source: "./media/characters/elbial/genitals.svg"
  1175. }
  1176. },
  1177. },
  1178. [
  1179. {
  1180. name: "Large",
  1181. height: math.unit(100, "feet")
  1182. },
  1183. {
  1184. name: "Macro",
  1185. height: math.unit(500, "feet"),
  1186. default: true
  1187. },
  1188. {
  1189. name: "Megamacro",
  1190. height: math.unit(10, "miles")
  1191. },
  1192. {
  1193. name: "Gigamacro",
  1194. height: math.unit(25000, "miles")
  1195. },
  1196. {
  1197. name: "Full-Size",
  1198. height: math.unit(8000000, "gigaparsecs")
  1199. }
  1200. ]
  1201. ))
  1202. characterMakers.push(() => makeCharacter(
  1203. { name: "Noah" },
  1204. {
  1205. front: {
  1206. height: math.unit(2, "meter"),
  1207. weight: math.unit(60, "kg"),
  1208. name: "Front",
  1209. image: {
  1210. source: "./media/characters/noah/front.svg"
  1211. }
  1212. },
  1213. talons: {
  1214. height: math.unit(0.315, "meter"),
  1215. name: "Talons",
  1216. image: {
  1217. source: "./media/characters/noah/talons.svg"
  1218. }
  1219. }
  1220. },
  1221. [
  1222. {
  1223. name: "Large",
  1224. height: math.unit(50, "feet")
  1225. },
  1226. {
  1227. name: "Macro",
  1228. height: math.unit(750, "feet"),
  1229. default: true
  1230. },
  1231. {
  1232. name: "Megamacro",
  1233. height: math.unit(50, "miles")
  1234. },
  1235. {
  1236. name: "Gigamacro",
  1237. height: math.unit(100000, "miles")
  1238. },
  1239. {
  1240. name: "Full-Size",
  1241. height: math.unit(3000000000, "miles")
  1242. }
  1243. ]
  1244. ))
  1245. characterMakers.push(() => makeCharacter(
  1246. { name: "Natalya" },
  1247. {
  1248. front: {
  1249. height: math.unit(2, "meter"),
  1250. weight: math.unit(80, "kg"),
  1251. name: "Front",
  1252. image: {
  1253. source: "./media/characters/natalya/front.svg"
  1254. }
  1255. },
  1256. back: {
  1257. height: math.unit(2, "meter"),
  1258. weight: math.unit(80, "kg"),
  1259. name: "Back",
  1260. image: {
  1261. source: "./media/characters/natalya/back.svg"
  1262. }
  1263. }
  1264. },
  1265. [
  1266. {
  1267. name: "Normal",
  1268. height: math.unit(150, "feet"),
  1269. default: true
  1270. },
  1271. {
  1272. name: "Megamacro",
  1273. height: math.unit(5, "miles")
  1274. },
  1275. {
  1276. name: "Full-Size",
  1277. height: math.unit(600, "kiloparsecs")
  1278. }
  1279. ]
  1280. ))
  1281. characterMakers.push(() => makeCharacter(
  1282. { name: "Erestrebah" },
  1283. {
  1284. front: {
  1285. height: math.unit(2, "meter"),
  1286. weight: math.unit(50, "kg"),
  1287. name: "Front",
  1288. image: {
  1289. source: "./media/characters/erestrebah/front.svg",
  1290. extra: 208 / 193,
  1291. bottom: 0.055
  1292. }
  1293. },
  1294. back: {
  1295. height: math.unit(2, "meter"),
  1296. weight: math.unit(50, "kg"),
  1297. name: "Back",
  1298. image: {
  1299. source: "./media/characters/erestrebah/back.svg",
  1300. extra: 1.3
  1301. }
  1302. }
  1303. },
  1304. [
  1305. {
  1306. name: "Normal",
  1307. height: math.unit(10, "feet")
  1308. },
  1309. {
  1310. name: "Large",
  1311. height: math.unit(50, "feet"),
  1312. default: true
  1313. },
  1314. {
  1315. name: "Macro",
  1316. height: math.unit(300, "feet")
  1317. },
  1318. {
  1319. name: "Macro+",
  1320. height: math.unit(750, "feet")
  1321. },
  1322. {
  1323. name: "Megamacro",
  1324. height: math.unit(3, "miles")
  1325. }
  1326. ]
  1327. ))
  1328. characterMakers.push(() => makeCharacter(
  1329. { name: "Jennifer" },
  1330. {
  1331. front: {
  1332. height: math.unit(2, "meter"),
  1333. weight: math.unit(80, "kg"),
  1334. name: "Front",
  1335. image: {
  1336. source: "./media/characters/jennifer/front.svg",
  1337. bottom: 0.11,
  1338. extra: 1.16
  1339. }
  1340. },
  1341. frontAlt: {
  1342. height: math.unit(2, "meter"),
  1343. weight: math.unit(80, "kg"),
  1344. name: "Front (Alt)",
  1345. image: {
  1346. source: "./media/characters/jennifer/front-alt.svg"
  1347. }
  1348. }
  1349. },
  1350. [
  1351. {
  1352. name: "Canon Height",
  1353. height: math.unit(120, "feet"),
  1354. default: true
  1355. },
  1356. {
  1357. name: "Macro+",
  1358. height: math.unit(300, "feet")
  1359. },
  1360. {
  1361. name: "Megamacro",
  1362. height: math.unit(20000, "feet")
  1363. }
  1364. ]
  1365. ))
  1366. characterMakers.push(() => makeCharacter(
  1367. { name: "Kalista" },
  1368. {
  1369. front: {
  1370. height: math.unit(2, "meter"),
  1371. weight: math.unit(50, "kg"),
  1372. name: "Front",
  1373. image: {
  1374. source: "./media/characters/kalista/front.svg",
  1375. extra: 1947 / 1700
  1376. }
  1377. },
  1378. back: {
  1379. height: math.unit(2, "meter"),
  1380. weight: math.unit(50, "kg"),
  1381. name: "Back",
  1382. image: {
  1383. source: "./media/characters/kalista/back.svg",
  1384. extra: 1366 / 1156
  1385. }
  1386. }
  1387. },
  1388. [
  1389. {
  1390. name: "Uncomfortably Small",
  1391. height: math.unit(10, "feet")
  1392. },
  1393. {
  1394. name: "Small",
  1395. height: math.unit(30, "feet")
  1396. },
  1397. {
  1398. name: "Macro",
  1399. height: math.unit(100, "feet"),
  1400. default: true
  1401. },
  1402. {
  1403. name: "Macro+",
  1404. height: math.unit(2000, "feet")
  1405. },
  1406. {
  1407. name: "True Form",
  1408. height: math.unit(8924, "miles")
  1409. }
  1410. ]
  1411. ))
  1412. characterMakers.push(() => makeCharacter(
  1413. { name: "GiantGrowingVixen" },
  1414. {
  1415. front: {
  1416. height: math.unit(2, "meter"),
  1417. weight: math.unit(120, "kg"),
  1418. name: "Front",
  1419. image: {
  1420. source: "./media/characters/ggv/front.svg"
  1421. }
  1422. },
  1423. side: {
  1424. height: math.unit(2, "meter"),
  1425. weight: math.unit(120, "kg"),
  1426. name: "Side",
  1427. image: {
  1428. source: "./media/characters/ggv/side.svg"
  1429. }
  1430. }
  1431. },
  1432. [
  1433. {
  1434. name: "Extremely Puny",
  1435. height: math.unit(9 + 5 / 12, "feet")
  1436. },
  1437. {
  1438. name: "Horribly Small",
  1439. height: math.unit(47.7, "miles"),
  1440. default: true
  1441. },
  1442. {
  1443. name: "Reasonably Sized",
  1444. height: math.unit(25000, "parsecs")
  1445. },
  1446. {
  1447. name: "Slightly Uncompressed",
  1448. height: math.unit(7.77e31, "parsecs")
  1449. },
  1450. {
  1451. name: "Omniversal",
  1452. height: math.unit(1e300, "meters")
  1453. },
  1454. ]
  1455. ))
  1456. characterMakers.push(() => makeCharacter(
  1457. { name: "Napalm" },
  1458. {
  1459. front: {
  1460. height: math.unit(2, "meter"),
  1461. weight: math.unit(75, "lb"),
  1462. name: "Front",
  1463. image: {
  1464. source: "./media/characters/napalm/front.svg"
  1465. }
  1466. },
  1467. back: {
  1468. height: math.unit(2, "meter"),
  1469. weight: math.unit(75, "lb"),
  1470. name: "Back",
  1471. image: {
  1472. source: "./media/characters/napalm/back.svg"
  1473. }
  1474. }
  1475. },
  1476. [
  1477. {
  1478. name: "Standard",
  1479. height: math.unit(55, "feet"),
  1480. default: true
  1481. }
  1482. ]
  1483. ))
  1484. characterMakers.push(() => makeCharacter(
  1485. { name: "Asana" },
  1486. {
  1487. front: {
  1488. height: math.unit(7 + 5 / 6, "feet"),
  1489. weight: math.unit(325, "lb"),
  1490. name: "Front",
  1491. image: {
  1492. source: "./media/characters/asana/front.svg",
  1493. extra: 1128 / 1068
  1494. }
  1495. },
  1496. back: {
  1497. height: math.unit(7 + 5 / 6, "feet"),
  1498. weight: math.unit(325, "lb"),
  1499. name: "Back",
  1500. image: {
  1501. source: "./media/characters/asana/back.svg",
  1502. extra: 1128 / 1068
  1503. }
  1504. },
  1505. },
  1506. [
  1507. {
  1508. name: "Standard",
  1509. height: math.unit(7 + 5 / 6, "feet"),
  1510. default: true
  1511. },
  1512. {
  1513. name: "Large",
  1514. height: math.unit(10, "meters")
  1515. },
  1516. {
  1517. name: "Macro",
  1518. height: math.unit(2500, "meters")
  1519. },
  1520. {
  1521. name: "Megamacro",
  1522. height: math.unit(5e6, "meters")
  1523. },
  1524. {
  1525. name: "Examacro",
  1526. height: math.unit(5e12, "lightyears")
  1527. },
  1528. {
  1529. name: "Max Size",
  1530. height: math.unit(1e31, "lightyears")
  1531. }
  1532. ]
  1533. ))
  1534. characterMakers.push(() => makeCharacter(
  1535. { name: "Ebony" },
  1536. {
  1537. front: {
  1538. height: math.unit(2, "meter"),
  1539. weight: math.unit(60, "kg"),
  1540. name: "Front",
  1541. image: {
  1542. source: "./media/characters/ebony/front.svg",
  1543. bottom: 0.03,
  1544. extra: 1045 / 810 + 0.03
  1545. }
  1546. },
  1547. side: {
  1548. height: math.unit(2, "meter"),
  1549. weight: math.unit(60, "kg"),
  1550. name: "Side",
  1551. image: {
  1552. source: "./media/characters/ebony/side.svg",
  1553. bottom: 0.03,
  1554. extra: 1045 / 810 + 0.03
  1555. }
  1556. },
  1557. back: {
  1558. height: math.unit(2, "meter"),
  1559. weight: math.unit(60, "kg"),
  1560. name: "Back",
  1561. image: {
  1562. source: "./media/characters/ebony/back.svg",
  1563. bottom: 0.01,
  1564. extra: 1045 / 810 + 0.01
  1565. }
  1566. },
  1567. },
  1568. [
  1569. // TODO check why I did this lol
  1570. {
  1571. name: "Standard",
  1572. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1573. default: true
  1574. },
  1575. {
  1576. name: "Macro",
  1577. height: math.unit(200, "feet")
  1578. },
  1579. {
  1580. name: "Gigamacro",
  1581. height: math.unit(13000, "km")
  1582. }
  1583. ]
  1584. ))
  1585. characterMakers.push(() => makeCharacter(
  1586. { name: "Mountain" },
  1587. {
  1588. front: {
  1589. height: math.unit(6, "feet"),
  1590. weight: math.unit(175, "lb"),
  1591. name: "Front",
  1592. image: {
  1593. source: "./media/characters/mountain/front.svg"
  1594. }
  1595. },
  1596. back: {
  1597. height: math.unit(6, "feet"),
  1598. weight: math.unit(175, "lb"),
  1599. name: "Back",
  1600. image: {
  1601. source: "./media/characters/mountain/back.svg"
  1602. }
  1603. },
  1604. },
  1605. [
  1606. {
  1607. name: "Large",
  1608. height: math.unit(20, "meters")
  1609. },
  1610. {
  1611. name: "Macro",
  1612. height: math.unit(300, "meters")
  1613. },
  1614. {
  1615. name: "Gigamacro",
  1616. height: math.unit(10000, "km"),
  1617. default: true
  1618. },
  1619. {
  1620. name: "Examacro",
  1621. height: math.unit(10e9, "lightyears")
  1622. }
  1623. ]
  1624. ))
  1625. characterMakers.push(() => makeCharacter(
  1626. { name: "Rick" },
  1627. {
  1628. front: {
  1629. height: math.unit(8, "feet"),
  1630. weight: math.unit(500, "lb"),
  1631. name: "Front",
  1632. image: {
  1633. source: "./media/characters/rick/front.svg"
  1634. }
  1635. }
  1636. },
  1637. [
  1638. {
  1639. name: "Normal",
  1640. height: math.unit(8, "feet"),
  1641. default: true
  1642. },
  1643. {
  1644. name: "Macro",
  1645. height: math.unit(5, "km")
  1646. }
  1647. ]
  1648. ))
  1649. characterMakers.push(() => makeCharacter(
  1650. { name: "Ona" },
  1651. {
  1652. front: {
  1653. height: math.unit(8, "feet"),
  1654. weight: math.unit(120, "lb"),
  1655. name: "Front",
  1656. image: {
  1657. source: "./media/characters/ona/front.svg"
  1658. }
  1659. },
  1660. frontAlt: {
  1661. height: math.unit(8, "feet"),
  1662. weight: math.unit(120, "lb"),
  1663. name: "Front (Alt)",
  1664. image: {
  1665. source: "./media/characters/ona/front-alt.svg"
  1666. }
  1667. },
  1668. back: {
  1669. height: math.unit(8, "feet"),
  1670. weight: math.unit(120, "lb"),
  1671. name: "Back",
  1672. image: {
  1673. source: "./media/characters/ona/back.svg"
  1674. }
  1675. },
  1676. foot: {
  1677. height: math.unit(1.1, "feet"),
  1678. name: "Foot",
  1679. image: {
  1680. source: "./media/characters/ona/foot.svg"
  1681. }
  1682. }
  1683. },
  1684. [
  1685. {
  1686. name: "Megamacro",
  1687. height: math.unit(70, "km"),
  1688. default: true
  1689. },
  1690. {
  1691. name: "Gigamacro",
  1692. height: math.unit(681818, "miles")
  1693. },
  1694. {
  1695. name: "Examacro",
  1696. height: math.unit(3800000, "lightyears")
  1697. },
  1698. ]
  1699. ))
  1700. characterMakers.push(() => makeCharacter(
  1701. { name: "Mech" },
  1702. {
  1703. front: {
  1704. height: math.unit(12, "feet"),
  1705. weight: math.unit(3000, "lb"),
  1706. name: "Front",
  1707. image: {
  1708. source: "./media/characters/mech/front.svg",
  1709. bottom: 0.025,
  1710. }
  1711. },
  1712. back: {
  1713. height: math.unit(12, "feet"),
  1714. weight: math.unit(3000, "lb"),
  1715. name: "Back",
  1716. image: {
  1717. source: "./media/characters/mech/back.svg",
  1718. bottom: 0.03,
  1719. }
  1720. }
  1721. },
  1722. [
  1723. {
  1724. name: "Normal",
  1725. height: math.unit(12, "feet")
  1726. },
  1727. {
  1728. name: "Macro",
  1729. height: math.unit(300, "feet"),
  1730. default: true
  1731. },
  1732. {
  1733. name: "Macro+",
  1734. height: math.unit(1500, "feet")
  1735. },
  1736. ]
  1737. ))
  1738. characterMakers.push(() => makeCharacter(
  1739. { name: "Gregory" },
  1740. {
  1741. front: {
  1742. height: math.unit(1.3, "meter"),
  1743. weight: math.unit(30, "kg"),
  1744. name: "Front",
  1745. image: {
  1746. source: "./media/characters/gregory/front.svg",
  1747. }
  1748. }
  1749. },
  1750. [
  1751. {
  1752. name: "Normal",
  1753. height: math.unit(1.3, "meter"),
  1754. default: true
  1755. },
  1756. {
  1757. name: "Macro",
  1758. height: math.unit(20, "meter")
  1759. }
  1760. ]
  1761. ))
  1762. characterMakers.push(() => makeCharacter(
  1763. { name: "Elory" },
  1764. {
  1765. front: {
  1766. height: math.unit(2.8, "meter"),
  1767. weight: math.unit(200, "kg"),
  1768. name: "Front",
  1769. image: {
  1770. source: "./media/characters/elory/front.svg",
  1771. }
  1772. }
  1773. },
  1774. [
  1775. {
  1776. name: "Normal",
  1777. height: math.unit(2.8, "meter"),
  1778. default: true
  1779. },
  1780. {
  1781. name: "Macro",
  1782. height: math.unit(38, "meter")
  1783. }
  1784. ]
  1785. ))
  1786. characterMakers.push(() => makeCharacter(
  1787. { name: "Angelpatamon" },
  1788. {
  1789. front: {
  1790. height: math.unit(470, "feet"),
  1791. weight: math.unit(924, "tons"),
  1792. name: "Front",
  1793. image: {
  1794. source: "./media/characters/angelpatamon/front.svg",
  1795. }
  1796. }
  1797. },
  1798. [
  1799. {
  1800. name: "Normal",
  1801. height: math.unit(470, "feet"),
  1802. default: true
  1803. },
  1804. {
  1805. name: "Deity Size I",
  1806. height: math.unit(28651.2, "km")
  1807. },
  1808. {
  1809. name: "Deity Size II",
  1810. height: math.unit(171907.2, "km")
  1811. }
  1812. ]
  1813. ))
  1814. characterMakers.push(() => makeCharacter(
  1815. { name: "Cryae" },
  1816. {
  1817. side: {
  1818. height: math.unit(7.2, "meter"),
  1819. weight: math.unit(8.2, "tons"),
  1820. name: "Side",
  1821. image: {
  1822. source: "./media/characters/cryae/side.svg",
  1823. extra: 3500 / 1500
  1824. }
  1825. }
  1826. },
  1827. [
  1828. {
  1829. name: "Normal",
  1830. height: math.unit(7.2, "meter"),
  1831. default: true
  1832. }
  1833. ]
  1834. ))
  1835. characterMakers.push(() => makeCharacter(
  1836. { name: "Xera" },
  1837. {
  1838. front: {
  1839. height: math.unit(6, "feet"),
  1840. weight: math.unit(175, "lb"),
  1841. name: "Front",
  1842. image: {
  1843. source: "./media/characters/xera/front.svg",
  1844. extra: 2300 / 2061
  1845. }
  1846. },
  1847. side: {
  1848. height: math.unit(6, "feet"),
  1849. weight: math.unit(175, "lb"),
  1850. name: "Side",
  1851. image: {
  1852. source: "./media/characters/xera/side.svg",
  1853. extra: 2300 / 2061
  1854. }
  1855. },
  1856. back: {
  1857. height: math.unit(6, "feet"),
  1858. weight: math.unit(175, "lb"),
  1859. name: "Back",
  1860. image: {
  1861. source: "./media/characters/xera/back.svg"
  1862. }
  1863. },
  1864. },
  1865. [
  1866. {
  1867. name: "Small",
  1868. height: math.unit(10, "feet")
  1869. },
  1870. {
  1871. name: "Macro",
  1872. height: math.unit(500, "meters"),
  1873. default: true
  1874. },
  1875. {
  1876. name: "Macro+",
  1877. height: math.unit(10, "km")
  1878. },
  1879. {
  1880. name: "Gigamacro",
  1881. height: math.unit(25000, "km")
  1882. },
  1883. {
  1884. name: "Teramacro",
  1885. height: math.unit(3e6, "km")
  1886. }
  1887. ]
  1888. ))
  1889. characterMakers.push(() => makeCharacter(
  1890. { name: "Nebula" },
  1891. {
  1892. front: {
  1893. height: math.unit(6, "feet"),
  1894. weight: math.unit(175, "lb"),
  1895. name: "Front",
  1896. image: {
  1897. source: "./media/characters/nebula/front.svg",
  1898. extra: 2600 / 2450
  1899. }
  1900. }
  1901. },
  1902. [
  1903. {
  1904. name: "Small",
  1905. height: math.unit(4.5, "meters")
  1906. },
  1907. {
  1908. name: "Macro",
  1909. height: math.unit(1500, "meters"),
  1910. default: true
  1911. },
  1912. {
  1913. name: "Megamacro",
  1914. height: math.unit(150, "km")
  1915. },
  1916. {
  1917. name: "Gigamacro",
  1918. height: math.unit(27000, "km")
  1919. }
  1920. ]
  1921. ))
  1922. characterMakers.push(() => makeCharacter(
  1923. { name: "Abysgar" },
  1924. {
  1925. front: {
  1926. height: math.unit(6, "feet"),
  1927. weight: math.unit(225, "lb"),
  1928. name: "Front",
  1929. image: {
  1930. source: "./media/characters/abysgar/front.svg"
  1931. }
  1932. }
  1933. },
  1934. [
  1935. {
  1936. name: "Small",
  1937. height: math.unit(4.5, "meters")
  1938. },
  1939. {
  1940. name: "Macro",
  1941. height: math.unit(1250, "meters"),
  1942. default: true
  1943. },
  1944. {
  1945. name: "Megamacro",
  1946. height: math.unit(125, "km")
  1947. },
  1948. {
  1949. name: "Gigamacro",
  1950. height: math.unit(26000, "km")
  1951. }
  1952. ]
  1953. ))
  1954. characterMakers.push(() => makeCharacter(
  1955. { name: "Yakuz" },
  1956. {
  1957. front: {
  1958. height: math.unit(6, "feet"),
  1959. weight: math.unit(180, "lb"),
  1960. name: "Front",
  1961. image: {
  1962. source: "./media/characters/yakuz/front.svg"
  1963. }
  1964. }
  1965. },
  1966. [
  1967. {
  1968. name: "Small",
  1969. height: math.unit(5, "meters")
  1970. },
  1971. {
  1972. name: "Macro",
  1973. height: math.unit(1500, "meters"),
  1974. default: true
  1975. },
  1976. {
  1977. name: "Megamacro",
  1978. height: math.unit(200, "km")
  1979. },
  1980. {
  1981. name: "Gigamacro",
  1982. height: math.unit(100000, "km")
  1983. }
  1984. ]
  1985. ))
  1986. characterMakers.push(() => makeCharacter(
  1987. { name: "Mirova" },
  1988. {
  1989. front: {
  1990. height: math.unit(6, "feet"),
  1991. weight: math.unit(175, "lb"),
  1992. name: "Front",
  1993. image: {
  1994. source: "./media/characters/mirova/front.svg"
  1995. }
  1996. }
  1997. },
  1998. [
  1999. {
  2000. name: "Small",
  2001. height: math.unit(5, "meters")
  2002. },
  2003. {
  2004. name: "Macro",
  2005. height: math.unit(900, "meters"),
  2006. default: true
  2007. },
  2008. {
  2009. name: "Megamacro",
  2010. height: math.unit(135, "km")
  2011. },
  2012. {
  2013. name: "Gigamacro",
  2014. height: math.unit(20000, "km")
  2015. }
  2016. ]
  2017. ))
  2018. characterMakers.push(() => makeCharacter(
  2019. { name: "Asana (Mech)" },
  2020. {
  2021. side: {
  2022. height: math.unit(28.35, "feet"),
  2023. weight: math.unit(99.75, "tons"),
  2024. name: "Side",
  2025. image: {
  2026. source: "./media/characters/asana-mech/side.svg"
  2027. }
  2028. }
  2029. },
  2030. [
  2031. {
  2032. name: "Normal",
  2033. height: math.unit(28.35, "feet"),
  2034. default: true
  2035. },
  2036. {
  2037. name: "Macro",
  2038. height: math.unit(2500, "feet")
  2039. },
  2040. {
  2041. name: "Megamacro",
  2042. height: math.unit(25, "miles")
  2043. },
  2044. {
  2045. name: "Examacro",
  2046. height: math.unit(6e8, "lightyears")
  2047. },
  2048. ]
  2049. ))
  2050. characterMakers.push(() => makeCharacter(
  2051. { name: "Ashtrek" },
  2052. {
  2053. front: {
  2054. height: math.unit(2, "meters"),
  2055. weight: math.unit(70, "kg"),
  2056. name: "Front",
  2057. image: {
  2058. source: "./media/characters/ashtrek/front.svg",
  2059. extra: 560 / 524,
  2060. bottom: 0.01
  2061. }
  2062. },
  2063. frontArmor: {
  2064. height: math.unit(2, "meters"),
  2065. weight: math.unit(76, "kg"),
  2066. name: "Front (Armor)",
  2067. image: {
  2068. source: "./media/characters/ashtrek/front-armor.svg",
  2069. extra: 561 / 527,
  2070. bottom: 0.01
  2071. }
  2072. },
  2073. side: {
  2074. height: math.unit(2, "meters"),
  2075. weight: math.unit(70, "kg"),
  2076. name: "Side",
  2077. image: {
  2078. source: "./media/characters/ashtrek/side.svg",
  2079. extra: 1717 / 1609,
  2080. bottom: 0.005
  2081. }
  2082. },
  2083. back: {
  2084. height: math.unit(2, "meters"),
  2085. weight: math.unit(70, "kg"),
  2086. name: "Back",
  2087. image: {
  2088. source: "./media/characters/ashtrek/back.svg",
  2089. extra: 1570 / 1501
  2090. }
  2091. },
  2092. },
  2093. [
  2094. {
  2095. name: "DEFCON 5",
  2096. height: math.unit(5, "meters")
  2097. },
  2098. {
  2099. name: "DEFCON 4",
  2100. height: math.unit(500, "meters"),
  2101. default: true
  2102. },
  2103. {
  2104. name: "DEFCON 3",
  2105. height: math.unit(5, "km")
  2106. },
  2107. {
  2108. name: "DEFCON 2",
  2109. height: math.unit(500, "km")
  2110. },
  2111. {
  2112. name: "DEFCON 1",
  2113. height: math.unit(500000, "km")
  2114. },
  2115. {
  2116. name: "DEFCON 0",
  2117. height: math.unit(3, "gigaparsecs")
  2118. },
  2119. ]
  2120. ))
  2121. characterMakers.push(() => makeCharacter(
  2122. { name: "Gale" },
  2123. {
  2124. front: {
  2125. height: math.unit(2, "meters"),
  2126. weight: math.unit(76, "kg"),
  2127. name: "Front",
  2128. image: {
  2129. source: "./media/characters/gale/front.svg"
  2130. }
  2131. },
  2132. frontAlt1: {
  2133. height: math.unit(2, "meters"),
  2134. weight: math.unit(76, "kg"),
  2135. name: "Front (Alt 1)",
  2136. image: {
  2137. source: "./media/characters/gale/front-alt-1.svg"
  2138. }
  2139. },
  2140. frontAlt2: {
  2141. height: math.unit(2, "meters"),
  2142. weight: math.unit(76, "kg"),
  2143. name: "Front (Alt 2)",
  2144. image: {
  2145. source: "./media/characters/gale/front-alt-2.svg"
  2146. }
  2147. },
  2148. },
  2149. [
  2150. {
  2151. name: "Normal",
  2152. height: math.unit(7, "feet")
  2153. },
  2154. {
  2155. name: "Macro",
  2156. height: math.unit(150, "feet"),
  2157. default: true
  2158. },
  2159. {
  2160. name: "Macro+",
  2161. height: math.unit(300, "feet")
  2162. },
  2163. ]
  2164. ))
  2165. characterMakers.push(() => makeCharacter(
  2166. { name: "Draylen" },
  2167. {
  2168. front: {
  2169. height: math.unit(2, "meters"),
  2170. weight: math.unit(76, "kg"),
  2171. name: "Front",
  2172. image: {
  2173. source: "./media/characters/draylen/front.svg"
  2174. }
  2175. }
  2176. },
  2177. [
  2178. {
  2179. name: "Macro",
  2180. height: math.unit(150, "feet"),
  2181. default: true
  2182. }
  2183. ]
  2184. ))
  2185. characterMakers.push(() => makeCharacter(
  2186. { name: "Chez" },
  2187. {
  2188. front: {
  2189. height: math.unit(7 + 9 / 12, "feet"),
  2190. weight: math.unit(379, "lbs"),
  2191. name: "Front",
  2192. image: {
  2193. source: "./media/characters/chez/front.svg"
  2194. }
  2195. },
  2196. side: {
  2197. height: math.unit(7 + 9 / 12, "feet"),
  2198. weight: math.unit(379, "lbs"),
  2199. name: "Side",
  2200. image: {
  2201. source: "./media/characters/chez/side.svg"
  2202. }
  2203. }
  2204. },
  2205. [
  2206. {
  2207. name: "Normal",
  2208. height: math.unit(7 + 9 / 12, "feet"),
  2209. default: true
  2210. },
  2211. {
  2212. name: "God King",
  2213. height: math.unit(9750000, "meters")
  2214. }
  2215. ]
  2216. ))
  2217. characterMakers.push(() => makeCharacter(
  2218. { name: "Kaylum" },
  2219. {
  2220. front: {
  2221. height: math.unit(6, "feet"),
  2222. weight: math.unit(275, "lbs"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/kaylum/front.svg",
  2226. bottom: 0.01,
  2227. extra: 1166 / 1031
  2228. }
  2229. },
  2230. frontWingless: {
  2231. height: math.unit(6, "feet"),
  2232. weight: math.unit(275, "lbs"),
  2233. name: "Front (Wingless)",
  2234. image: {
  2235. source: "./media/characters/kaylum/front-wingless.svg",
  2236. bottom: 0.01,
  2237. extra: 1117 / 1031
  2238. }
  2239. }
  2240. },
  2241. [
  2242. {
  2243. name: "Normal",
  2244. height: math.unit(3.05, "meters")
  2245. },
  2246. {
  2247. name: "Master",
  2248. height: math.unit(5.5, "meters")
  2249. },
  2250. {
  2251. name: "Rampage",
  2252. height: math.unit(19, "meters")
  2253. },
  2254. {
  2255. name: "Macro Lite",
  2256. height: math.unit(37, "meters")
  2257. },
  2258. {
  2259. name: "Hyper Predator",
  2260. height: math.unit(61, "meters")
  2261. },
  2262. {
  2263. name: "Macro",
  2264. height: math.unit(138, "meters"),
  2265. default: true
  2266. }
  2267. ]
  2268. ))
  2269. characterMakers.push(() => makeCharacter(
  2270. { name: "Geta" },
  2271. {
  2272. front: {
  2273. height: math.unit(6, "feet"),
  2274. weight: math.unit(150, "lbs"),
  2275. name: "Front",
  2276. image: {
  2277. source: "./media/characters/geta/front.svg"
  2278. }
  2279. }
  2280. },
  2281. [
  2282. {
  2283. name: "Micro",
  2284. height: math.unit(3, "inches"),
  2285. default: true
  2286. },
  2287. {
  2288. name: "Normal",
  2289. height: math.unit(5 + 5 / 12, "feet")
  2290. }
  2291. ]
  2292. ))
  2293. characterMakers.push(() => makeCharacter(
  2294. { name: "Tyrnn" },
  2295. {
  2296. front: {
  2297. height: math.unit(6, "feet"),
  2298. weight: math.unit(300, "lbs"),
  2299. name: "Front",
  2300. image: {
  2301. source: "./media/characters/tyrnn/front.svg"
  2302. }
  2303. }
  2304. },
  2305. [
  2306. {
  2307. name: "Main Height",
  2308. height: math.unit(355, "feet"),
  2309. default: true
  2310. },
  2311. {
  2312. name: "Fave. Height",
  2313. height: math.unit(2400, "feet")
  2314. }
  2315. ]
  2316. ))
  2317. characterMakers.push(() => makeCharacter(
  2318. { name: "Apple" },
  2319. {
  2320. front: {
  2321. height: math.unit(6, "feet"),
  2322. weight: math.unit(300, "lbs"),
  2323. name: "Front",
  2324. image: {
  2325. source: "./media/characters/appledectomy/front.svg"
  2326. }
  2327. }
  2328. },
  2329. [
  2330. {
  2331. name: "Macro",
  2332. height: math.unit(2500, "feet")
  2333. },
  2334. {
  2335. name: "Megamacro",
  2336. height: math.unit(50, "miles"),
  2337. default: true
  2338. },
  2339. {
  2340. name: "Gigamacro",
  2341. height: math.unit(5000, "miles")
  2342. },
  2343. {
  2344. name: "Teramacro",
  2345. height: math.unit(250000, "miles")
  2346. },
  2347. ]
  2348. ))
  2349. characterMakers.push(() => makeCharacter(
  2350. { name: "Vulpes" },
  2351. {
  2352. front: {
  2353. height: math.unit(6, "feet"),
  2354. weight: math.unit(200, "lbs"),
  2355. name: "Front",
  2356. image: {
  2357. source: "./media/characters/vulpes/front.svg",
  2358. extra: 573 / 543,
  2359. bottom: 0.033
  2360. }
  2361. },
  2362. side: {
  2363. height: math.unit(6, "feet"),
  2364. weight: math.unit(200, "lbs"),
  2365. name: "Side",
  2366. image: {
  2367. source: "./media/characters/vulpes/side.svg",
  2368. extra: 573 / 543,
  2369. bottom: 0.01
  2370. }
  2371. },
  2372. back: {
  2373. height: math.unit(6, "feet"),
  2374. weight: math.unit(200, "lbs"),
  2375. name: "Back",
  2376. image: {
  2377. source: "./media/characters/vulpes/back.svg",
  2378. extra: 573 / 543,
  2379. }
  2380. },
  2381. feet: {
  2382. height: math.unit(1.276, "feet"),
  2383. name: "Feet",
  2384. image: {
  2385. source: "./media/characters/vulpes/feet.svg"
  2386. }
  2387. },
  2388. maw: {
  2389. height: math.unit(1.18, "feet"),
  2390. name: "Maw",
  2391. image: {
  2392. source: "./media/characters/vulpes/maw.svg"
  2393. }
  2394. },
  2395. },
  2396. [
  2397. {
  2398. name: "Micro",
  2399. height: math.unit(2, "inches")
  2400. },
  2401. {
  2402. name: "Normal",
  2403. height: math.unit(6.3, "feet")
  2404. },
  2405. {
  2406. name: "Macro",
  2407. height: math.unit(850, "feet")
  2408. },
  2409. {
  2410. name: "Megamacro",
  2411. height: math.unit(7500, "feet"),
  2412. default: true
  2413. },
  2414. {
  2415. name: "Gigamacro",
  2416. height: math.unit(570000, "miles")
  2417. }
  2418. ]
  2419. ))
  2420. characterMakers.push(() => makeCharacter(
  2421. { name: "Rain Fallen" },
  2422. {
  2423. front: {
  2424. height: math.unit(6, "feet"),
  2425. weight: math.unit(210, "lbs"),
  2426. name: "Front",
  2427. image: {
  2428. source: "./media/characters/rain-fallen/front.svg"
  2429. }
  2430. },
  2431. side: {
  2432. height: math.unit(6, "feet"),
  2433. weight: math.unit(210, "lbs"),
  2434. name: "Side",
  2435. image: {
  2436. source: "./media/characters/rain-fallen/side.svg"
  2437. }
  2438. },
  2439. back: {
  2440. height: math.unit(6, "feet"),
  2441. weight: math.unit(210, "lbs"),
  2442. name: "Back",
  2443. image: {
  2444. source: "./media/characters/rain-fallen/back.svg"
  2445. }
  2446. },
  2447. feral: {
  2448. height: math.unit(9, "feet"),
  2449. weight: math.unit(700, "lbs"),
  2450. name: "Feral",
  2451. image: {
  2452. source: "./media/characters/rain-fallen/feral.svg"
  2453. }
  2454. },
  2455. },
  2456. [
  2457. {
  2458. name: "Normal",
  2459. height: math.unit(5, "meter")
  2460. },
  2461. {
  2462. name: "Macro",
  2463. height: math.unit(150, "meter"),
  2464. default: true
  2465. },
  2466. {
  2467. name: "Megamacro",
  2468. height: math.unit(278e6, "meter")
  2469. },
  2470. {
  2471. name: "Gigamacro",
  2472. height: math.unit(2e9, "meter")
  2473. },
  2474. {
  2475. name: "Teramacro",
  2476. height: math.unit(8e12, "meter")
  2477. },
  2478. {
  2479. name: "Devourer",
  2480. height: math.unit(14, "zettameters")
  2481. },
  2482. {
  2483. name: "Scarlet King",
  2484. height: math.unit(18, "yottameters")
  2485. },
  2486. {
  2487. name: "Void",
  2488. height: math.unit(6.66e66, "yottameters")
  2489. }
  2490. ]
  2491. ))
  2492. characterMakers.push(() => makeCharacter(
  2493. { name: "Zaakira" },
  2494. {
  2495. standing: {
  2496. height: math.unit(6, "feet"),
  2497. weight: math.unit(180, "lbs"),
  2498. name: "Standing",
  2499. image: {
  2500. source: "./media/characters/zaakira/standing.svg"
  2501. }
  2502. },
  2503. laying: {
  2504. height: math.unit(3, "feet"),
  2505. weight: math.unit(180, "lbs"),
  2506. name: "Laying",
  2507. image: {
  2508. source: "./media/characters/zaakira/laying.svg"
  2509. }
  2510. },
  2511. },
  2512. [
  2513. {
  2514. name: "Normal",
  2515. height: math.unit(12, "feet")
  2516. },
  2517. {
  2518. name: "Macro",
  2519. height: math.unit(279, "feet"),
  2520. default: true
  2521. }
  2522. ]
  2523. ))
  2524. characterMakers.push(() => makeCharacter(
  2525. { name: "Sigvald" },
  2526. {
  2527. front: {
  2528. height: math.unit(6, "feet"),
  2529. weight: math.unit(250, "lbs"),
  2530. name: "Front",
  2531. image: {
  2532. source: "./media/characters/sigvald/front.svg",
  2533. extra: 1000 / 850
  2534. }
  2535. },
  2536. back: {
  2537. height: math.unit(6, "feet"),
  2538. weight: math.unit(250, "lbs"),
  2539. name: "Back",
  2540. image: {
  2541. source: "./media/characters/sigvald/back.svg"
  2542. }
  2543. },
  2544. },
  2545. [
  2546. {
  2547. name: "Normal",
  2548. height: math.unit(8, "feet")
  2549. },
  2550. {
  2551. name: "Large",
  2552. height: math.unit(12, "feet")
  2553. },
  2554. {
  2555. name: "Larger",
  2556. height: math.unit(20, "feet")
  2557. },
  2558. {
  2559. name: "Macro",
  2560. height: math.unit(150, "feet")
  2561. },
  2562. {
  2563. name: "Macro+",
  2564. height: math.unit(200, "feet"),
  2565. default: true
  2566. },
  2567. ]
  2568. ))
  2569. characterMakers.push(() => makeCharacter(
  2570. { name: "Scott" },
  2571. {
  2572. side: {
  2573. height: math.unit(12, "feet"),
  2574. weight: math.unit(3000, "lbs"),
  2575. name: "Side",
  2576. image: {
  2577. source: "./media/characters/scott/side.svg",
  2578. extra: 1,
  2579. bottom: 0.069
  2580. }
  2581. },
  2582. upright: {
  2583. height: math.unit(12, "feet"),
  2584. weight: math.unit(3000, "lbs"),
  2585. name: "Upright",
  2586. image: {
  2587. source: "./media/characters/scott/upright.svg",
  2588. extra: 1,
  2589. bottom: 0.05
  2590. }
  2591. },
  2592. },
  2593. [
  2594. {
  2595. name: "Normal",
  2596. height: math.unit(12, "feet"),
  2597. default: true
  2598. },
  2599. ]
  2600. ))
  2601. characterMakers.push(() => makeCharacter(
  2602. { name: "Tobias" },
  2603. {
  2604. side: {
  2605. height: math.unit(8, "meters"),
  2606. weight: math.unit(84755, "lbs"),
  2607. name: "Side",
  2608. image: {
  2609. source: "./media/characters/tobias/side.svg",
  2610. extra: 1474 / 1096,
  2611. bottom: 38.9/1513.1235
  2612. }
  2613. },
  2614. },
  2615. [
  2616. {
  2617. name: "Normal",
  2618. height: math.unit(8, "meters"),
  2619. default: true
  2620. },
  2621. ]
  2622. ))
  2623. characterMakers.push(() => makeCharacter(
  2624. { name: "Kieran" },
  2625. {
  2626. front: {
  2627. height: math.unit(5.5, "feet"),
  2628. weight: math.unit(400, "lbs"),
  2629. name: "Front",
  2630. image: {
  2631. source: "./media/characters/kieran/front.svg",
  2632. extra: 1.05
  2633. }
  2634. },
  2635. side: {
  2636. height: math.unit(5.5, "feet"),
  2637. weight: math.unit(400, "lbs"),
  2638. name: "Side",
  2639. image: {
  2640. source: "./media/characters/kieran/side.svg",
  2641. extra: 950 / 850
  2642. }
  2643. },
  2644. },
  2645. [
  2646. {
  2647. name: "Normal",
  2648. height: math.unit(5.5, "feet"),
  2649. default: true
  2650. },
  2651. ]
  2652. ))
  2653. characterMakers.push(() => makeCharacter(
  2654. { name: "Sanya" },
  2655. {
  2656. side: {
  2657. height: math.unit(2, "meters"),
  2658. weight: math.unit(70, "kg"),
  2659. name: "Side",
  2660. image: {
  2661. source: "./media/characters/sanya/side.svg",
  2662. bottom: 0.02,
  2663. extra: 1.02
  2664. }
  2665. },
  2666. },
  2667. [
  2668. {
  2669. name: "Small",
  2670. height: math.unit(2, "meters")
  2671. },
  2672. {
  2673. name: "Normal",
  2674. height: math.unit(3, "meters")
  2675. },
  2676. {
  2677. name: "Macro",
  2678. height: math.unit(16, "meters"),
  2679. default: true
  2680. },
  2681. ]
  2682. ))
  2683. characterMakers.push(() => makeCharacter(
  2684. { name: "Miranda" },
  2685. {
  2686. side: {
  2687. height: math.unit(2, "meters"),
  2688. weight: math.unit(120, "kg"),
  2689. name: "Front",
  2690. image: {
  2691. source: "./media/characters/miranda/front.svg",
  2692. extra: 10.6 / 10
  2693. }
  2694. },
  2695. },
  2696. [
  2697. {
  2698. name: "Normal",
  2699. height: math.unit(10, "feet"),
  2700. default: true
  2701. }
  2702. ]
  2703. ))
  2704. characterMakers.push(() => makeCharacter(
  2705. { name: "James" },
  2706. {
  2707. side: {
  2708. height: math.unit(2, "meters"),
  2709. weight: math.unit(100, "kg"),
  2710. name: "Front",
  2711. image: {
  2712. source: "./media/characters/james/front.svg",
  2713. extra: 10 / 8.5
  2714. }
  2715. },
  2716. },
  2717. [
  2718. {
  2719. name: "Normal",
  2720. height: math.unit(8.5, "feet"),
  2721. default: true
  2722. }
  2723. ]
  2724. ))
  2725. characterMakers.push(() => makeCharacter(
  2726. { name: "Heather" },
  2727. {
  2728. side: {
  2729. height: math.unit(9.5, "feet"),
  2730. weight: math.unit(2500, "lbs"),
  2731. name: "Side",
  2732. image: {
  2733. source: "./media/characters/heather/side.svg"
  2734. }
  2735. },
  2736. },
  2737. [
  2738. {
  2739. name: "Normal",
  2740. height: math.unit(9.5, "feet"),
  2741. default: true
  2742. }
  2743. ]
  2744. ))
  2745. characterMakers.push(() => makeCharacter(
  2746. { name: "Lukas" },
  2747. {
  2748. side: {
  2749. height: math.unit(6.5, "feet"),
  2750. weight: math.unit(400, "lbs"),
  2751. name: "Side",
  2752. image: {
  2753. source: "./media/characters/lukas/side.svg",
  2754. extra: 7.25 / 6.5
  2755. }
  2756. },
  2757. },
  2758. [
  2759. {
  2760. name: "Normal",
  2761. height: math.unit(6.5, "feet"),
  2762. default: true
  2763. }
  2764. ]
  2765. ))
  2766. characterMakers.push(() => makeCharacter(
  2767. { name: "Louise" },
  2768. {
  2769. side: {
  2770. height: math.unit(5, "feet"),
  2771. weight: math.unit(3000, "lbs"),
  2772. name: "Side",
  2773. image: {
  2774. source: "./media/characters/louise/side.svg"
  2775. }
  2776. },
  2777. },
  2778. [
  2779. {
  2780. name: "Normal",
  2781. height: math.unit(5, "feet"),
  2782. default: true
  2783. }
  2784. ]
  2785. ))
  2786. characterMakers.push(() => makeCharacter(
  2787. { name: "Ramona" },
  2788. {
  2789. side: {
  2790. height: math.unit(6, "feet"),
  2791. weight: math.unit(150, "lbs"),
  2792. name: "Side",
  2793. image: {
  2794. source: "./media/characters/ramona/side.svg"
  2795. }
  2796. },
  2797. },
  2798. [
  2799. {
  2800. name: "Normal",
  2801. height: math.unit(5.3, "meters"),
  2802. default: true
  2803. },
  2804. {
  2805. name: "Macro",
  2806. height: math.unit(20, "stories")
  2807. },
  2808. {
  2809. name: "Macro+",
  2810. height: math.unit(50, "stories")
  2811. },
  2812. ]
  2813. ))
  2814. characterMakers.push(() => makeCharacter(
  2815. { name: "Deerpuff" },
  2816. {
  2817. standing: {
  2818. height: math.unit(5.75, "feet"),
  2819. weight: math.unit(160, "lbs"),
  2820. name: "Standing",
  2821. image: {
  2822. source: "./media/characters/deerpuff/standing.svg",
  2823. extra: 682 / 624
  2824. }
  2825. },
  2826. sitting: {
  2827. height: math.unit(5.75 / 1.79, "feet"),
  2828. weight: math.unit(160, "lbs"),
  2829. name: "Sitting",
  2830. image: {
  2831. source: "./media/characters/deerpuff/sitting.svg",
  2832. bottom: 44 / 400,
  2833. extra: 1
  2834. }
  2835. },
  2836. taurLaying: {
  2837. height: math.unit(6, "feet"),
  2838. weight: math.unit(400, "lbs"),
  2839. name: "Taur (Laying)",
  2840. image: {
  2841. source: "./media/characters/deerpuff/taur-laying.svg"
  2842. }
  2843. },
  2844. },
  2845. [
  2846. {
  2847. name: "Puffball",
  2848. height: math.unit(6, "inches")
  2849. },
  2850. {
  2851. name: "Normalpuff",
  2852. height: math.unit(5.75, "feet")
  2853. },
  2854. {
  2855. name: "Macropuff",
  2856. height: math.unit(1500, "feet"),
  2857. default: true
  2858. },
  2859. {
  2860. name: "Megapuff",
  2861. height: math.unit(500, "miles")
  2862. },
  2863. {
  2864. name: "Gigapuff",
  2865. height: math.unit(250000, "miles")
  2866. },
  2867. {
  2868. name: "Omegapuff",
  2869. height: math.unit(1000, "lightyears")
  2870. },
  2871. ]
  2872. ))
  2873. characterMakers.push(() => makeCharacter(
  2874. { name: "Vivian" },
  2875. {
  2876. stomping: {
  2877. height: math.unit(6, "feet"),
  2878. weight: math.unit(170, "lbs"),
  2879. name: "Stomping",
  2880. image: {
  2881. source: "./media/characters/vivian/stomping.svg"
  2882. }
  2883. },
  2884. sitting: {
  2885. height: math.unit(6 / 1.75, "feet"),
  2886. weight: math.unit(170, "lbs"),
  2887. name: "Sitting",
  2888. image: {
  2889. source: "./media/characters/vivian/sitting.svg",
  2890. bottom: 1 / 6.4,
  2891. extra: 1,
  2892. }
  2893. },
  2894. },
  2895. [
  2896. {
  2897. name: "Normal",
  2898. height: math.unit(7, "feet"),
  2899. default: true
  2900. },
  2901. {
  2902. name: "Macro",
  2903. height: math.unit(10, "stories")
  2904. },
  2905. {
  2906. name: "Macro+",
  2907. height: math.unit(30, "stories")
  2908. },
  2909. {
  2910. name: "Megamacro",
  2911. height: math.unit(10, "miles")
  2912. },
  2913. {
  2914. name: "Megamacro+",
  2915. height: math.unit(2750000, "meters")
  2916. },
  2917. ]
  2918. ))
  2919. characterMakers.push(() => makeCharacter(
  2920. { name: "Prince" },
  2921. {
  2922. front: {
  2923. height: math.unit(6, "feet"),
  2924. weight: math.unit(160, "lbs"),
  2925. name: "Front",
  2926. image: {
  2927. source: "./media/characters/prince/front.svg",
  2928. extra: 3400 / 3000
  2929. }
  2930. },
  2931. jumping: {
  2932. height: math.unit(6, "feet"),
  2933. weight: math.unit(160, "lbs"),
  2934. name: "Jumping",
  2935. image: {
  2936. source: "./media/characters/prince/jump.svg",
  2937. extra: 2555 / 2134
  2938. }
  2939. },
  2940. },
  2941. [
  2942. {
  2943. name: "Normal",
  2944. height: math.unit(7.75, "feet"),
  2945. default: true
  2946. },
  2947. {
  2948. name: "Not cute",
  2949. height: math.unit(17, "feet")
  2950. },
  2951. {
  2952. name: "I said NOT",
  2953. height: math.unit(91, "feet")
  2954. },
  2955. {
  2956. name: "Please stop",
  2957. height: math.unit(560, "feet")
  2958. },
  2959. {
  2960. name: "What have you done",
  2961. height: math.unit(2200, "feet")
  2962. },
  2963. {
  2964. name: "Deer God",
  2965. height: math.unit(3.6, "miles")
  2966. },
  2967. ]
  2968. ))
  2969. characterMakers.push(() => makeCharacter(
  2970. { name: "Psymon" },
  2971. {
  2972. standing: {
  2973. height: math.unit(6, "feet"),
  2974. weight: math.unit(300, "lbs"),
  2975. name: "Standing",
  2976. image: {
  2977. source: "./media/characters/psymon/standing.svg",
  2978. extra: 1888 / 1810,
  2979. bottom: 0.05
  2980. }
  2981. },
  2982. slithering: {
  2983. height: math.unit(6, "feet"),
  2984. weight: math.unit(300, "lbs"),
  2985. name: "Slithering",
  2986. image: {
  2987. source: "./media/characters/psymon/slithering.svg",
  2988. extra: 1330 / 1224
  2989. }
  2990. },
  2991. slitheringAlt: {
  2992. height: math.unit(6, "feet"),
  2993. weight: math.unit(300, "lbs"),
  2994. name: "Slithering (Alt)",
  2995. image: {
  2996. source: "./media/characters/psymon/slithering-alt.svg",
  2997. extra: 1330 / 1224
  2998. }
  2999. },
  3000. },
  3001. [
  3002. {
  3003. name: "Normal",
  3004. height: math.unit(11.25, "feet"),
  3005. default: true
  3006. },
  3007. {
  3008. name: "Large",
  3009. height: math.unit(27, "feet")
  3010. },
  3011. {
  3012. name: "Giant",
  3013. height: math.unit(87, "feet")
  3014. },
  3015. {
  3016. name: "Macro",
  3017. height: math.unit(365, "feet")
  3018. },
  3019. {
  3020. name: "Megamacro",
  3021. height: math.unit(3, "miles")
  3022. },
  3023. {
  3024. name: "World Serpent",
  3025. height: math.unit(8000, "miles")
  3026. },
  3027. ]
  3028. ))
  3029. characterMakers.push(() => makeCharacter(
  3030. { name: "Daimos" },
  3031. {
  3032. front: {
  3033. height: math.unit(6, "feet"),
  3034. weight: math.unit(180, "lbs"),
  3035. name: "Front",
  3036. image: {
  3037. source: "./media/characters/daimos/front.svg",
  3038. extra: 4160 / 3897,
  3039. bottom: 0.021
  3040. }
  3041. }
  3042. },
  3043. [
  3044. {
  3045. name: "Normal",
  3046. height: math.unit(8, "feet"),
  3047. default: true
  3048. },
  3049. {
  3050. name: "Big Dog",
  3051. height: math.unit(22, "feet")
  3052. },
  3053. {
  3054. name: "Macro",
  3055. height: math.unit(127, "feet")
  3056. },
  3057. {
  3058. name: "Megamacro",
  3059. height: math.unit(3600, "feet")
  3060. },
  3061. ]
  3062. ))
  3063. characterMakers.push(() => makeCharacter(
  3064. { name: "Blake" },
  3065. {
  3066. side: {
  3067. height: math.unit(6, "feet"),
  3068. weight: math.unit(180, "lbs"),
  3069. name: "Side",
  3070. image: {
  3071. source: "./media/characters/blake/side.svg",
  3072. extra: 1212 / 1120,
  3073. bottom: 0.05
  3074. }
  3075. },
  3076. crouched: {
  3077. height: math.unit(6 * 0.57, "feet"),
  3078. weight: math.unit(180, "lbs"),
  3079. name: "Crouched",
  3080. image: {
  3081. source: "./media/characters/blake/crouched.svg",
  3082. extra: 840 / 587,
  3083. bottom: 0.04
  3084. }
  3085. },
  3086. bent: {
  3087. height: math.unit(6 * 0.75, "feet"),
  3088. weight: math.unit(180, "lbs"),
  3089. name: "Bent",
  3090. image: {
  3091. source: "./media/characters/blake/bent.svg",
  3092. extra: 592 / 544,
  3093. bottom: 0.035
  3094. }
  3095. },
  3096. },
  3097. [
  3098. {
  3099. name: "Normal",
  3100. height: math.unit(8 + 1 / 6, "feet"),
  3101. default: true
  3102. },
  3103. {
  3104. name: "Big Backside",
  3105. height: math.unit(37, "feet")
  3106. },
  3107. {
  3108. name: "Subway Shredder",
  3109. height: math.unit(72, "feet")
  3110. },
  3111. {
  3112. name: "City Carver",
  3113. height: math.unit(1675, "feet")
  3114. },
  3115. {
  3116. name: "Tectonic Tweaker",
  3117. height: math.unit(2300, "miles")
  3118. },
  3119. ]
  3120. ))
  3121. characterMakers.push(() => makeCharacter(
  3122. { name: "Guisetto" },
  3123. {
  3124. front: {
  3125. height: math.unit(6, "feet"),
  3126. weight: math.unit(180, "lbs"),
  3127. name: "Front",
  3128. image: {
  3129. source: "./media/characters/guisetto/front.svg",
  3130. extra: 856 / 817,
  3131. bottom: 0.06
  3132. }
  3133. },
  3134. airborne: {
  3135. height: math.unit(6, "feet"),
  3136. weight: math.unit(180, "lbs"),
  3137. name: "Airborne",
  3138. image: {
  3139. source: "./media/characters/guisetto/airborne.svg",
  3140. extra: 584 / 525
  3141. }
  3142. },
  3143. },
  3144. [
  3145. {
  3146. name: "Normal",
  3147. height: math.unit(10 + 11 / 12, "feet"),
  3148. default: true
  3149. },
  3150. {
  3151. name: "Large",
  3152. height: math.unit(35, "feet")
  3153. },
  3154. {
  3155. name: "Macro",
  3156. height: math.unit(475, "feet")
  3157. },
  3158. ]
  3159. ))
  3160. characterMakers.push(() => makeCharacter(
  3161. { name: "Luxor" },
  3162. {
  3163. front: {
  3164. height: math.unit(6, "feet"),
  3165. weight: math.unit(180, "lbs"),
  3166. name: "Front",
  3167. image: {
  3168. source: "./media/characters/luxor/front.svg",
  3169. extra: 2940 / 2152
  3170. }
  3171. },
  3172. back: {
  3173. height: math.unit(6, "feet"),
  3174. weight: math.unit(180, "lbs"),
  3175. name: "Back",
  3176. image: {
  3177. source: "./media/characters/luxor/back.svg",
  3178. extra: 1083 / 960
  3179. }
  3180. },
  3181. },
  3182. [
  3183. {
  3184. name: "Normal",
  3185. height: math.unit(5 + 5 / 6, "feet"),
  3186. default: true
  3187. },
  3188. {
  3189. name: "Lamp",
  3190. height: math.unit(50, "feet")
  3191. },
  3192. {
  3193. name: "Lämp",
  3194. height: math.unit(300, "feet")
  3195. },
  3196. {
  3197. name: "The sun is a lamp",
  3198. height: math.unit(250000, "miles")
  3199. },
  3200. ]
  3201. ))
  3202. characterMakers.push(() => makeCharacter(
  3203. { name: "Huoyan" },
  3204. {
  3205. front: {
  3206. height: math.unit(6, "feet"),
  3207. weight: math.unit(50, "lbs"),
  3208. name: "Front",
  3209. image: {
  3210. source: "./media/characters/huoyan/front.svg"
  3211. }
  3212. },
  3213. side: {
  3214. height: math.unit(6, "feet"),
  3215. weight: math.unit(180, "lbs"),
  3216. name: "Side",
  3217. image: {
  3218. source: "./media/characters/huoyan/side.svg"
  3219. }
  3220. },
  3221. },
  3222. [
  3223. {
  3224. name: "Chef",
  3225. height: math.unit(9, "feet")
  3226. },
  3227. {
  3228. name: "Normal",
  3229. height: math.unit(65, "feet"),
  3230. default: true
  3231. },
  3232. {
  3233. name: "Macro",
  3234. height: math.unit(780, "feet")
  3235. },
  3236. {
  3237. name: "Flaming Mountain",
  3238. height: math.unit(4.8, "miles")
  3239. },
  3240. {
  3241. name: "Celestial",
  3242. height: math.unit(765000, "miles")
  3243. },
  3244. ]
  3245. ))
  3246. characterMakers.push(() => makeCharacter(
  3247. { name: "Tails" },
  3248. {
  3249. front: {
  3250. height: math.unit(5 + 3 / 4, "feet"),
  3251. weight: math.unit(120, "lbs"),
  3252. name: "Front",
  3253. image: {
  3254. source: "./media/characters/tails/front.svg"
  3255. }
  3256. }
  3257. },
  3258. [
  3259. {
  3260. name: "Normal",
  3261. height: math.unit(5 + 3 / 4, "feet"),
  3262. default: true
  3263. }
  3264. ]
  3265. ))
  3266. characterMakers.push(() => makeCharacter(
  3267. { name: "Rainy" },
  3268. {
  3269. front: {
  3270. height: math.unit(4, "feet"),
  3271. weight: math.unit(50, "lbs"),
  3272. name: "Front",
  3273. image: {
  3274. source: "./media/characters/rainy/front.svg"
  3275. }
  3276. }
  3277. },
  3278. [
  3279. {
  3280. name: "Macro",
  3281. height: math.unit(800, "feet"),
  3282. default: true
  3283. }
  3284. ]
  3285. ))
  3286. characterMakers.push(() => makeCharacter(
  3287. { name: "Rainier" },
  3288. {
  3289. front: {
  3290. height: math.unit(6, "feet"),
  3291. weight: math.unit(150, "lbs"),
  3292. name: "Front",
  3293. image: {
  3294. source: "./media/characters/rainier/front.svg"
  3295. }
  3296. }
  3297. },
  3298. [
  3299. {
  3300. name: "Micro",
  3301. height: math.unit(2, "mm"),
  3302. default: true
  3303. }
  3304. ]
  3305. ))
  3306. characterMakers.push(() => makeCharacter(
  3307. { name: "Andy" },
  3308. {
  3309. front: {
  3310. height: math.unit(6, "feet"),
  3311. weight: math.unit(180, "lbs"),
  3312. name: "Front",
  3313. image: {
  3314. source: "./media/characters/andy/front.svg"
  3315. }
  3316. }
  3317. },
  3318. [
  3319. {
  3320. name: "Normal",
  3321. height: math.unit(8, "feet"),
  3322. default: true
  3323. },
  3324. {
  3325. name: "Macro",
  3326. height: math.unit(1000, "feet")
  3327. },
  3328. {
  3329. name: "Megamacro",
  3330. height: math.unit(5, "miles")
  3331. },
  3332. {
  3333. name: "Gigamacro",
  3334. height: math.unit(5000, "miles")
  3335. },
  3336. ]
  3337. ))
  3338. characterMakers.push(() => makeCharacter(
  3339. { name: "Cimmaron" },
  3340. {
  3341. frontClothed: {
  3342. height: math.unit(6, "feet"),
  3343. weight: math.unit(210, "lbs"),
  3344. name: "Front (Clothed)",
  3345. image: {
  3346. source: "./media/characters/cimmaron/front-clothed.svg",
  3347. extra: 701 / 676,
  3348. bottom: 0.046
  3349. }
  3350. },
  3351. backClothed: {
  3352. height: math.unit(6, "feet"),
  3353. weight: math.unit(210, "lbs"),
  3354. name: "Back (Clothed)",
  3355. image: {
  3356. source: "./media/characters/cimmaron/back-clothed.svg",
  3357. extra: 701 / 676,
  3358. bottom: 0.046
  3359. }
  3360. },
  3361. frontNude: {
  3362. height: math.unit(6, "feet"),
  3363. weight: math.unit(210, "lbs"),
  3364. name: "Front (Nude)",
  3365. image: {
  3366. source: "./media/characters/cimmaron/front-nude.svg",
  3367. extra: 701 / 676,
  3368. bottom: 0.046
  3369. }
  3370. },
  3371. backNude: {
  3372. height: math.unit(6, "feet"),
  3373. weight: math.unit(210, "lbs"),
  3374. name: "Back (Nude)",
  3375. image: {
  3376. source: "./media/characters/cimmaron/back-nude.svg",
  3377. extra: 701 / 676,
  3378. bottom: 0.046
  3379. }
  3380. }
  3381. },
  3382. [
  3383. {
  3384. name: "Normal",
  3385. height: math.unit(6, "feet"),
  3386. default: true
  3387. },
  3388. {
  3389. name: "Macro Mayor",
  3390. height: math.unit(350, "meters")
  3391. },
  3392. ]
  3393. ))
  3394. characterMakers.push(() => makeCharacter(
  3395. { name: "Akari Kaen" },
  3396. {
  3397. front: {
  3398. height: math.unit(6, "feet"),
  3399. weight: math.unit(200, "lbs"),
  3400. name: "Front",
  3401. image: {
  3402. source: "./media/characters/akari/front.svg",
  3403. extra: 962 / 901,
  3404. bottom: 0.04
  3405. }
  3406. }
  3407. },
  3408. [
  3409. {
  3410. name: "Micro",
  3411. height: math.unit(5, "inches"),
  3412. default: true
  3413. },
  3414. {
  3415. name: "Normal",
  3416. height: math.unit(7, "feet")
  3417. },
  3418. ]
  3419. ))
  3420. characterMakers.push(() => makeCharacter(
  3421. { name: "Cynosura" },
  3422. {
  3423. front: {
  3424. height: math.unit(6, "feet"),
  3425. weight: math.unit(140, "lbs"),
  3426. name: "Front",
  3427. image: {
  3428. source: "./media/characters/cynosura/front.svg",
  3429. extra: 896 / 847
  3430. }
  3431. },
  3432. back: {
  3433. height: math.unit(6, "feet"),
  3434. weight: math.unit(140, "lbs"),
  3435. name: "Back",
  3436. image: {
  3437. source: "./media/characters/cynosura/back.svg",
  3438. extra: 1365 / 1250
  3439. }
  3440. },
  3441. },
  3442. [
  3443. {
  3444. name: "Micro",
  3445. height: math.unit(4, "inches")
  3446. },
  3447. {
  3448. name: "Normal",
  3449. height: math.unit(5.75, "feet"),
  3450. default: true
  3451. },
  3452. {
  3453. name: "Tall",
  3454. height: math.unit(10, "feet")
  3455. },
  3456. {
  3457. name: "Big",
  3458. height: math.unit(20, "feet")
  3459. },
  3460. {
  3461. name: "Macro",
  3462. height: math.unit(50, "feet")
  3463. },
  3464. ]
  3465. ))
  3466. characterMakers.push(() => makeCharacter(
  3467. { name: "Gin" },
  3468. {
  3469. front: {
  3470. height: math.unit(6, "feet"),
  3471. weight: math.unit(170, "lbs"),
  3472. name: "Front",
  3473. image: {
  3474. source: "./media/characters/gin/front.svg",
  3475. extra: 1.053,
  3476. bottom: 0.025
  3477. }
  3478. },
  3479. foot: {
  3480. height: math.unit(6 / 4.25, "feet"),
  3481. name: "Foot",
  3482. image: {
  3483. source: "./media/characters/gin/foot.svg"
  3484. }
  3485. },
  3486. sole: {
  3487. height: math.unit(6 / 4.40, "feet"),
  3488. name: "Sole",
  3489. image: {
  3490. source: "./media/characters/gin/sole.svg"
  3491. }
  3492. },
  3493. },
  3494. [
  3495. {
  3496. name: "Normal",
  3497. height: math.unit(9 + 4 / 12, "feet")
  3498. },
  3499. {
  3500. name: "Macro",
  3501. height: math.unit(1500, "feet")
  3502. },
  3503. {
  3504. name: "Megamacro",
  3505. height: math.unit(200, "miles"),
  3506. default: true
  3507. },
  3508. {
  3509. name: "Gigamacro",
  3510. height: math.unit(500, "megameters")
  3511. },
  3512. {
  3513. name: "Teramacro",
  3514. height: math.unit(15, "lightyears")
  3515. }
  3516. ]
  3517. ))
  3518. characterMakers.push(() => makeCharacter(
  3519. { name: "Guy" },
  3520. {
  3521. front: {
  3522. height: math.unit(6 + 1 / 6, "feet"),
  3523. weight: math.unit(178, "lbs"),
  3524. name: "Front",
  3525. image: {
  3526. source: "./media/characters/guy/front.svg"
  3527. }
  3528. }
  3529. },
  3530. [
  3531. {
  3532. name: "Normal",
  3533. height: math.unit(6 + 1 / 6, "feet"),
  3534. default: true
  3535. },
  3536. {
  3537. name: "Large",
  3538. height: math.unit(25 + 7 / 12, "feet")
  3539. },
  3540. {
  3541. name: "Macro",
  3542. height: math.unit(60 + 9 / 12, "feet")
  3543. },
  3544. {
  3545. name: "Macro+",
  3546. height: math.unit(246, "feet")
  3547. },
  3548. {
  3549. name: "Macro++",
  3550. height: math.unit(878, "feet")
  3551. }
  3552. ]
  3553. ))
  3554. characterMakers.push(() => makeCharacter(
  3555. { name: "Tiberius" },
  3556. {
  3557. front: {
  3558. height: math.unit(9, "feet"),
  3559. weight: math.unit(800, "lbs"),
  3560. name: "Front",
  3561. image: {
  3562. source: "./media/characters/tiberius/front.svg",
  3563. extra: 2295 / 2071
  3564. }
  3565. },
  3566. back: {
  3567. height: math.unit(9, "feet"),
  3568. weight: math.unit(800, "lbs"),
  3569. name: "Back",
  3570. image: {
  3571. source: "./media/characters/tiberius/back.svg",
  3572. extra: 2373 / 2160
  3573. }
  3574. },
  3575. },
  3576. [
  3577. {
  3578. name: "Normal",
  3579. height: math.unit(9, "feet"),
  3580. default: true
  3581. }
  3582. ]
  3583. ))
  3584. characterMakers.push(() => makeCharacter(
  3585. { name: "Surgo" },
  3586. {
  3587. front: {
  3588. height: math.unit(6, "feet"),
  3589. weight: math.unit(600, "lbs"),
  3590. name: "Front",
  3591. image: {
  3592. source: "./media/characters/surgo/front.svg",
  3593. extra: 3591 / 2227
  3594. }
  3595. },
  3596. back: {
  3597. height: math.unit(6, "feet"),
  3598. weight: math.unit(600, "lbs"),
  3599. name: "Back",
  3600. image: {
  3601. source: "./media/characters/surgo/back.svg",
  3602. extra: 3557 / 2228
  3603. }
  3604. },
  3605. laying: {
  3606. height: math.unit(6 * 0.85, "feet"),
  3607. weight: math.unit(600, "lbs"),
  3608. name: "Laying",
  3609. image: {
  3610. source: "./media/characters/surgo/laying.svg"
  3611. }
  3612. },
  3613. },
  3614. [
  3615. {
  3616. name: "Normal",
  3617. height: math.unit(6, "feet"),
  3618. default: true
  3619. }
  3620. ]
  3621. ))
  3622. characterMakers.push(() => makeCharacter(
  3623. { name: "Cibus" },
  3624. {
  3625. side: {
  3626. height: math.unit(6, "feet"),
  3627. weight: math.unit(150, "lbs"),
  3628. name: "Side",
  3629. image: {
  3630. source: "./media/characters/cibus/side.svg",
  3631. extra: 800 / 400
  3632. }
  3633. },
  3634. },
  3635. [
  3636. {
  3637. name: "Normal",
  3638. height: math.unit(6, "feet"),
  3639. default: true
  3640. }
  3641. ]
  3642. ))
  3643. characterMakers.push(() => makeCharacter(
  3644. { name: "Nibbles" },
  3645. {
  3646. front: {
  3647. height: math.unit(6, "feet"),
  3648. weight: math.unit(240, "lbs"),
  3649. name: "Front",
  3650. image: {
  3651. source: "./media/characters/nibbles/front.svg"
  3652. }
  3653. },
  3654. side: {
  3655. height: math.unit(6, "feet"),
  3656. weight: math.unit(240, "lbs"),
  3657. name: "Side",
  3658. image: {
  3659. source: "./media/characters/nibbles/side.svg"
  3660. }
  3661. },
  3662. },
  3663. [
  3664. {
  3665. name: "Normal",
  3666. height: math.unit(9, "feet"),
  3667. default: true
  3668. }
  3669. ]
  3670. ))
  3671. characterMakers.push(() => makeCharacter(
  3672. { name: "Rikky" },
  3673. {
  3674. side: {
  3675. height: math.unit(5 + 1 / 6, "feet"),
  3676. weight: math.unit(130, "lbs"),
  3677. name: "Side",
  3678. image: {
  3679. source: "./media/characters/rikky/side.svg"
  3680. }
  3681. },
  3682. },
  3683. [
  3684. {
  3685. name: "Normal",
  3686. height: math.unit(5 + 1 / 6, "feet")
  3687. },
  3688. {
  3689. name: "Macro",
  3690. height: math.unit(152, "feet"),
  3691. default: true
  3692. },
  3693. {
  3694. name: "Megamacro",
  3695. height: math.unit(7, "miles")
  3696. }
  3697. ]
  3698. ))
  3699. characterMakers.push(() => makeCharacter(
  3700. { name: "Malfressa" },
  3701. {
  3702. side: {
  3703. height: math.unit(370, "cm"),
  3704. weight: math.unit(350, "lbs"),
  3705. name: "Side",
  3706. image: {
  3707. source: "./media/characters/malfressa/side.svg"
  3708. }
  3709. },
  3710. walking: {
  3711. height: math.unit(370, "cm"),
  3712. weight: math.unit(350, "lbs"),
  3713. name: "Walking",
  3714. image: {
  3715. source: "./media/characters/malfressa/walking.svg"
  3716. }
  3717. },
  3718. feral: {
  3719. height: math.unit(2500, "cm"),
  3720. weight: math.unit(100000, "lbs"),
  3721. name: "Feral",
  3722. image: {
  3723. source: "./media/characters/malfressa/feral.svg",
  3724. extra: 2108 / 837,
  3725. bottom: 0.02
  3726. }
  3727. },
  3728. },
  3729. [
  3730. {
  3731. name: "Normal",
  3732. height: math.unit(370, "cm")
  3733. },
  3734. {
  3735. name: "Macro",
  3736. height: math.unit(300, "meters"),
  3737. default: true
  3738. }
  3739. ]
  3740. ))
  3741. characterMakers.push(() => makeCharacter(
  3742. { name: "Jaro" },
  3743. {
  3744. front: {
  3745. height: math.unit(6, "feet"),
  3746. weight: math.unit(60, "kg"),
  3747. name: "Front",
  3748. image: {
  3749. source: "./media/characters/jaro/front.svg"
  3750. }
  3751. },
  3752. back: {
  3753. height: math.unit(6, "feet"),
  3754. weight: math.unit(60, "kg"),
  3755. name: "Back",
  3756. image: {
  3757. source: "./media/characters/jaro/back.svg"
  3758. }
  3759. },
  3760. },
  3761. [
  3762. {
  3763. name: "Micro",
  3764. height: math.unit(7, "inches")
  3765. },
  3766. {
  3767. name: "Normal",
  3768. height: math.unit(5.5, "feet"),
  3769. default: true
  3770. },
  3771. {
  3772. name: "Minimacro",
  3773. height: math.unit(20, "feet")
  3774. },
  3775. {
  3776. name: "Macro",
  3777. height: math.unit(200, "meters")
  3778. }
  3779. ]
  3780. ))
  3781. characterMakers.push(() => makeCharacter(
  3782. { name: "Rogue" },
  3783. {
  3784. front: {
  3785. height: math.unit(6, "feet"),
  3786. weight: math.unit(195, "lb"),
  3787. name: "Front",
  3788. image: {
  3789. source: "./media/characters/rogue/front.svg"
  3790. }
  3791. },
  3792. },
  3793. [
  3794. {
  3795. name: "Macro",
  3796. height: math.unit(90, "feet"),
  3797. default: true
  3798. },
  3799. ]
  3800. ))
  3801. characterMakers.push(() => makeCharacter(
  3802. { name: "Piper" },
  3803. {
  3804. front: {
  3805. height: math.unit(5 + 8 / 12, "feet"),
  3806. weight: math.unit(140, "lb"),
  3807. name: "Front",
  3808. image: {
  3809. source: "./media/characters/piper/front.svg",
  3810. extra: 3928 / 3681
  3811. }
  3812. },
  3813. },
  3814. [
  3815. {
  3816. name: "Micro",
  3817. height: math.unit(2, "inches")
  3818. },
  3819. {
  3820. name: "Normal",
  3821. height: math.unit(5 + 8 / 12, "feet")
  3822. },
  3823. {
  3824. name: "Macro",
  3825. height: math.unit(250, "feet"),
  3826. default: true
  3827. },
  3828. {
  3829. name: "Megamacro",
  3830. height: math.unit(7, "miles")
  3831. },
  3832. ]
  3833. ))
  3834. characterMakers.push(() => makeCharacter(
  3835. { name: "Gemini" },
  3836. {
  3837. front: {
  3838. height: math.unit(6, "feet"),
  3839. weight: math.unit(220, "lb"),
  3840. name: "Front",
  3841. image: {
  3842. source: "./media/characters/gemini/front.svg"
  3843. }
  3844. },
  3845. back: {
  3846. height: math.unit(6, "feet"),
  3847. weight: math.unit(220, "lb"),
  3848. name: "Back",
  3849. image: {
  3850. source: "./media/characters/gemini/back.svg"
  3851. }
  3852. },
  3853. kneeling: {
  3854. height: math.unit(6 / 1.5, "feet"),
  3855. weight: math.unit(220, "lb"),
  3856. name: "Kneeling",
  3857. image: {
  3858. source: "./media/characters/gemini/kneeling.svg",
  3859. bottom: 0.02
  3860. }
  3861. },
  3862. },
  3863. [
  3864. {
  3865. name: "Macro",
  3866. height: math.unit(300, "meters"),
  3867. default: true
  3868. },
  3869. {
  3870. name: "Megamacro",
  3871. height: math.unit(6900, "meters")
  3872. },
  3873. ]
  3874. ))
  3875. characterMakers.push(() => makeCharacter(
  3876. { name: "Alicia" },
  3877. {
  3878. anthro: {
  3879. height: math.unit(2.35, "meters"),
  3880. weight: math.unit(73, "kg"),
  3881. name: "Anthro",
  3882. image: {
  3883. source: "./media/characters/alicia/anthro.svg"
  3884. }
  3885. },
  3886. feral: {
  3887. height: math.unit(1.69, "meters"),
  3888. weight: math.unit(73, "kg"),
  3889. name: "Feral",
  3890. image: {
  3891. source: "./media/characters/alicia/feral.svg"
  3892. }
  3893. },
  3894. },
  3895. [
  3896. {
  3897. name: "Normal",
  3898. height: math.unit(2.35, "meters")
  3899. },
  3900. {
  3901. name: "Macro",
  3902. height: math.unit(60, "meters"),
  3903. default: true
  3904. },
  3905. {
  3906. name: "Megamacro",
  3907. height: math.unit(10000, "kilometers")
  3908. },
  3909. ]
  3910. ))
  3911. characterMakers.push(() => makeCharacter(
  3912. { name: "Archy" },
  3913. {
  3914. front: {
  3915. height: math.unit(7, "feet"),
  3916. weight: math.unit(250, "lbs"),
  3917. name: "Front",
  3918. image: {
  3919. source: "./media/characters/archy/front.svg"
  3920. }
  3921. }
  3922. },
  3923. [
  3924. {
  3925. name: "Micro",
  3926. height: math.unit(1, "inch")
  3927. },
  3928. {
  3929. name: "Shorty",
  3930. height: math.unit(5, "feet")
  3931. },
  3932. {
  3933. name: "Normal",
  3934. height: math.unit(7, "feet")
  3935. },
  3936. {
  3937. name: "Macro",
  3938. height: math.unit(600, "meters"),
  3939. default: true
  3940. },
  3941. {
  3942. name: "Megamacro",
  3943. height: math.unit(1, "mile")
  3944. },
  3945. ]
  3946. ))
  3947. characterMakers.push(() => makeCharacter(
  3948. { name: "Berri" },
  3949. {
  3950. front: {
  3951. height: math.unit(1.65, "meters"),
  3952. weight: math.unit(74, "kg"),
  3953. name: "Front",
  3954. image: {
  3955. source: "./media/characters/berri/front.svg"
  3956. }
  3957. }
  3958. },
  3959. [
  3960. {
  3961. name: "Normal",
  3962. height: math.unit(1.65, "meters")
  3963. },
  3964. {
  3965. name: "Macro",
  3966. height: math.unit(60, "m"),
  3967. default: true
  3968. },
  3969. {
  3970. name: "Megamacro",
  3971. height: math.unit(9.213, "km")
  3972. },
  3973. {
  3974. name: "Planet Eater",
  3975. height: math.unit(489, "megameters")
  3976. },
  3977. {
  3978. name: "Teramacro",
  3979. height: math.unit(2471635000000, "meters")
  3980. },
  3981. {
  3982. name: "Examacro",
  3983. height: math.unit(8.0624e+26, "meters")
  3984. }
  3985. ]
  3986. ))
  3987. characterMakers.push(() => makeCharacter(
  3988. { name: "Lexi" },
  3989. {
  3990. front: {
  3991. height: math.unit(1.72, "meters"),
  3992. weight: math.unit(68, "kg"),
  3993. name: "Front",
  3994. image: {
  3995. source: "./media/characters/lexi/front.svg"
  3996. }
  3997. }
  3998. },
  3999. [
  4000. {
  4001. name: "Very Smol",
  4002. height: math.unit(10, "mm")
  4003. },
  4004. {
  4005. name: "Micro",
  4006. height: math.unit(6.8, "cm"),
  4007. default: true
  4008. },
  4009. {
  4010. name: "Normal",
  4011. height: math.unit(1.72, "m")
  4012. }
  4013. ]
  4014. ))
  4015. characterMakers.push(() => makeCharacter(
  4016. { name: "Martin" },
  4017. {
  4018. front: {
  4019. height: math.unit(1.69, "meters"),
  4020. weight: math.unit(68, "kg"),
  4021. name: "Front",
  4022. image: {
  4023. source: "./media/characters/martin/front.svg",
  4024. extra: 596 / 581
  4025. }
  4026. }
  4027. },
  4028. [
  4029. {
  4030. name: "Micro",
  4031. height: math.unit(6.85, "cm"),
  4032. default: true
  4033. },
  4034. {
  4035. name: "Normal",
  4036. height: math.unit(1.69, "m")
  4037. }
  4038. ]
  4039. ))
  4040. characterMakers.push(() => makeCharacter(
  4041. { name: "Juno" },
  4042. {
  4043. front: {
  4044. height: math.unit(1.69, "meters"),
  4045. weight: math.unit(68, "kg"),
  4046. name: "Front",
  4047. image: {
  4048. source: "./media/characters/juno/front.svg"
  4049. }
  4050. }
  4051. },
  4052. [
  4053. {
  4054. name: "Micro",
  4055. height: math.unit(7, "cm")
  4056. },
  4057. {
  4058. name: "Normal",
  4059. height: math.unit(1.89, "m")
  4060. },
  4061. {
  4062. name: "Macro",
  4063. height: math.unit(353, "meters"),
  4064. default: true
  4065. }
  4066. ]
  4067. ))
  4068. characterMakers.push(() => makeCharacter(
  4069. { name: "Samantha" },
  4070. {
  4071. front: {
  4072. height: math.unit(1.93, "meters"),
  4073. weight: math.unit(83, "kg"),
  4074. name: "Front",
  4075. image: {
  4076. source: "./media/characters/samantha/front.svg"
  4077. }
  4078. },
  4079. frontClothed: {
  4080. height: math.unit(1.93, "meters"),
  4081. weight: math.unit(83, "kg"),
  4082. name: "Front (Clothed)",
  4083. image: {
  4084. source: "./media/characters/samantha/front-clothed.svg"
  4085. }
  4086. },
  4087. back: {
  4088. height: math.unit(1.93, "meters"),
  4089. weight: math.unit(83, "kg"),
  4090. name: "Back",
  4091. image: {
  4092. source: "./media/characters/samantha/back.svg"
  4093. }
  4094. },
  4095. },
  4096. [
  4097. {
  4098. name: "Normal",
  4099. height: math.unit(1.93, "m")
  4100. },
  4101. {
  4102. name: "Macro",
  4103. height: math.unit(74, "meters"),
  4104. default: true
  4105. },
  4106. {
  4107. name: "Macro+",
  4108. height: math.unit(223, "meters"),
  4109. },
  4110. {
  4111. name: "Megamacro",
  4112. height: math.unit(8381, "meters"),
  4113. },
  4114. {
  4115. name: "Megamacro+",
  4116. height: math.unit(12000, "kilometers")
  4117. },
  4118. ]
  4119. ))
  4120. characterMakers.push(() => makeCharacter(
  4121. { name: "Dr. Clay" },
  4122. {
  4123. front: {
  4124. height: math.unit(1.92, "meters"),
  4125. weight: math.unit(80, "kg"),
  4126. name: "Front",
  4127. image: {
  4128. source: "./media/characters/dr-clay/front.svg"
  4129. }
  4130. },
  4131. frontClothed: {
  4132. height: math.unit(1.92, "meters"),
  4133. weight: math.unit(80, "kg"),
  4134. name: "Front (Clothed)",
  4135. image: {
  4136. source: "./media/characters/dr-clay/front-clothed.svg"
  4137. }
  4138. }
  4139. },
  4140. [
  4141. {
  4142. name: "Normal",
  4143. height: math.unit(1.92, "m")
  4144. },
  4145. {
  4146. name: "Macro",
  4147. height: math.unit(214, "meters"),
  4148. default: true
  4149. },
  4150. {
  4151. name: "Macro+",
  4152. height: math.unit(12.237, "meters"),
  4153. },
  4154. {
  4155. name: "Megamacro",
  4156. height: math.unit(557, "megameters"),
  4157. },
  4158. {
  4159. name: "Unimaginable",
  4160. height: math.unit(120e9, "lightyears")
  4161. },
  4162. ]
  4163. ))
  4164. characterMakers.push(() => makeCharacter(
  4165. { name: "Wyvrn Ripsnarl" },
  4166. {
  4167. front: {
  4168. height: math.unit(2, "meters"),
  4169. weight: math.unit(80, "kg"),
  4170. name: "Front",
  4171. image: {
  4172. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4173. }
  4174. }
  4175. },
  4176. [
  4177. {
  4178. name: "Teramacro",
  4179. height: math.unit(500000, "lightyears"),
  4180. default: true
  4181. },
  4182. ]
  4183. ))
  4184. characterMakers.push(() => makeCharacter(
  4185. { name: "Vemus" },
  4186. {
  4187. front: {
  4188. height: math.unit(2, "meters"),
  4189. weight: math.unit(150, "kg"),
  4190. name: "Front",
  4191. image: {
  4192. source: "./media/characters/vemus/front.svg",
  4193. extra: 2384 / 2084,
  4194. bottom: 0.0123
  4195. }
  4196. }
  4197. },
  4198. [
  4199. {
  4200. name: "Normal",
  4201. height: math.unit(3.75, "meters"),
  4202. default: true
  4203. },
  4204. {
  4205. name: "Big",
  4206. height: math.unit(8, "meters")
  4207. },
  4208. {
  4209. name: "Macro",
  4210. height: math.unit(100, "meters")
  4211. },
  4212. {
  4213. name: "Macro+",
  4214. height: math.unit(1500, "meters")
  4215. },
  4216. {
  4217. name: "Stellar",
  4218. height: math.unit(14e8, "meters")
  4219. },
  4220. ]
  4221. ))
  4222. characterMakers.push(() => makeCharacter(
  4223. { name: "Beherit" },
  4224. {
  4225. front: {
  4226. height: math.unit(2, "meters"),
  4227. weight: math.unit(70, "kg"),
  4228. name: "Front",
  4229. image: {
  4230. source: "./media/characters/beherit/front.svg",
  4231. extra: 1408 / 1242
  4232. }
  4233. }
  4234. },
  4235. [
  4236. {
  4237. name: "Normal",
  4238. height: math.unit(6, "feet")
  4239. },
  4240. {
  4241. name: "Lorg",
  4242. height: math.unit(25, "feet"),
  4243. default: true
  4244. },
  4245. {
  4246. name: "Lorger",
  4247. height: math.unit(75, "feet")
  4248. },
  4249. {
  4250. name: "Macro",
  4251. height: math.unit(200, "meters")
  4252. },
  4253. ]
  4254. ))
  4255. characterMakers.push(() => makeCharacter(
  4256. { name: "Everett" },
  4257. {
  4258. front: {
  4259. height: math.unit(2, "meters"),
  4260. weight: math.unit(150, "kg"),
  4261. name: "Front",
  4262. image: {
  4263. source: "./media/characters/everett/front.svg",
  4264. extra: 2038 / 1737,
  4265. bottom: 0.03
  4266. }
  4267. },
  4268. paw: {
  4269. height: math.unit(2 / 3.6, "meters"),
  4270. name: "Paw",
  4271. image: {
  4272. source: "./media/characters/everett/paw.svg"
  4273. }
  4274. },
  4275. },
  4276. [
  4277. {
  4278. name: "Normal",
  4279. height: math.unit(15, "feet"),
  4280. default: true
  4281. },
  4282. {
  4283. name: "Lorg",
  4284. height: math.unit(70, "feet"),
  4285. default: true
  4286. },
  4287. {
  4288. name: "Lorger",
  4289. height: math.unit(250, "feet")
  4290. },
  4291. {
  4292. name: "Macro",
  4293. height: math.unit(500, "meters")
  4294. },
  4295. ]
  4296. ))
  4297. characterMakers.push(() => makeCharacter(
  4298. { name: "Rose Lion" },
  4299. {
  4300. front: {
  4301. height: math.unit(2, "meters"),
  4302. weight: math.unit(86, "kg"),
  4303. name: "Front",
  4304. image: {
  4305. source: "./media/characters/rose-lion/front.svg"
  4306. }
  4307. },
  4308. bent: {
  4309. height: math.unit(2 / 1.4288, "meters"),
  4310. weight: math.unit(86, "kg"),
  4311. name: "Bent",
  4312. image: {
  4313. source: "./media/characters/rose-lion/bent.svg"
  4314. }
  4315. }
  4316. },
  4317. [
  4318. {
  4319. name: "Mini-Micro",
  4320. height: math.unit(1, "cm")
  4321. },
  4322. {
  4323. name: "Micro",
  4324. height: math.unit(3.5, "inches"),
  4325. default: true
  4326. },
  4327. {
  4328. name: "Normal",
  4329. height: math.unit(6 + 1 / 6, "feet")
  4330. },
  4331. {
  4332. name: "Mini-Macro",
  4333. height: math.unit(9 + 10 / 12, "feet")
  4334. },
  4335. ]
  4336. ))
  4337. characterMakers.push(() => makeCharacter(
  4338. { name: "Regal" },
  4339. {
  4340. front: {
  4341. height: math.unit(2, "meters"),
  4342. weight: math.unit(350, "lbs"),
  4343. name: "Front",
  4344. image: {
  4345. source: "./media/characters/regal/front.svg"
  4346. }
  4347. },
  4348. back: {
  4349. height: math.unit(2, "meters"),
  4350. weight: math.unit(350, "lbs"),
  4351. name: "Back",
  4352. image: {
  4353. source: "./media/characters/regal/back.svg"
  4354. }
  4355. },
  4356. },
  4357. [
  4358. {
  4359. name: "Macro",
  4360. height: math.unit(350, "feet"),
  4361. default: true
  4362. }
  4363. ]
  4364. ))
  4365. characterMakers.push(() => makeCharacter(
  4366. { name: "Opal" },
  4367. {
  4368. front: {
  4369. height: math.unit(4 + 11 / 12, "feet"),
  4370. weight: math.unit(100, "lbs"),
  4371. name: "Front",
  4372. image: {
  4373. source: "./media/characters/opal/front.svg"
  4374. }
  4375. },
  4376. frontAlt: {
  4377. height: math.unit(4 + 11 / 12, "feet"),
  4378. weight: math.unit(100, "lbs"),
  4379. name: "Front (Alt)",
  4380. image: {
  4381. source: "./media/characters/opal/front-alt.svg"
  4382. }
  4383. },
  4384. },
  4385. [
  4386. {
  4387. name: "Small",
  4388. height: math.unit(4 + 11 / 12, "feet")
  4389. },
  4390. {
  4391. name: "Normal",
  4392. height: math.unit(20, "feet"),
  4393. default: true
  4394. },
  4395. {
  4396. name: "Macro",
  4397. height: math.unit(120, "feet")
  4398. },
  4399. {
  4400. name: "Megamacro",
  4401. height: math.unit(80, "miles")
  4402. },
  4403. {
  4404. name: "True Size",
  4405. height: math.unit(100000, "lightyears")
  4406. },
  4407. ]
  4408. ))
  4409. characterMakers.push(() => makeCharacter(
  4410. { name: "Vector Wuff" },
  4411. {
  4412. front: {
  4413. height: math.unit(6, "feet"),
  4414. weight: math.unit(200, "lbs"),
  4415. name: "Front",
  4416. image: {
  4417. source: "./media/characters/vector-wuff/front.svg"
  4418. }
  4419. }
  4420. },
  4421. [
  4422. {
  4423. name: "Normal",
  4424. height: math.unit(2.8, "meters")
  4425. },
  4426. {
  4427. name: "Macro",
  4428. height: math.unit(450, "meters"),
  4429. default: true
  4430. },
  4431. {
  4432. name: "Megamacro",
  4433. height: math.unit(15, "kilometers")
  4434. }
  4435. ]
  4436. ))
  4437. characterMakers.push(() => makeCharacter(
  4438. { name: "Dannik" },
  4439. {
  4440. front: {
  4441. height: math.unit(6, "feet"),
  4442. weight: math.unit(256, "lbs"),
  4443. name: "Front",
  4444. image: {
  4445. source: "./media/characters/dannik/front.svg"
  4446. }
  4447. }
  4448. },
  4449. [
  4450. {
  4451. name: "Macro",
  4452. height: math.unit(69.57, "meters"),
  4453. default: true
  4454. },
  4455. ]
  4456. ))
  4457. characterMakers.push(() => makeCharacter(
  4458. { name: "Azura Saharah" },
  4459. {
  4460. front: {
  4461. height: math.unit(6, "feet"),
  4462. weight: math.unit(120, "lbs"),
  4463. name: "Front",
  4464. image: {
  4465. source: "./media/characters/azura-saharah/front.svg"
  4466. }
  4467. },
  4468. back: {
  4469. height: math.unit(6, "feet"),
  4470. weight: math.unit(120, "lbs"),
  4471. name: "Back",
  4472. image: {
  4473. source: "./media/characters/azura-saharah/back.svg"
  4474. }
  4475. },
  4476. },
  4477. [
  4478. {
  4479. name: "Macro",
  4480. height: math.unit(100, "feet"),
  4481. default: true
  4482. },
  4483. ]
  4484. ))
  4485. characterMakers.push(() => makeCharacter(
  4486. { name: "Kennedy" },
  4487. {
  4488. side: {
  4489. height: math.unit(5 + 4 / 12, "feet"),
  4490. weight: math.unit(163, "lbs"),
  4491. name: "Side",
  4492. image: {
  4493. source: "./media/characters/kennedy/side.svg"
  4494. }
  4495. }
  4496. },
  4497. [
  4498. {
  4499. name: "Standard Doggo",
  4500. height: math.unit(5 + 4 / 12, "feet")
  4501. },
  4502. {
  4503. name: "Big Doggo",
  4504. height: math.unit(25 + 3 / 12, "feet"),
  4505. default: true
  4506. },
  4507. ]
  4508. ))
  4509. characterMakers.push(() => makeCharacter(
  4510. { name: "Odi Lunar" },
  4511. {
  4512. front: {
  4513. height: math.unit(6, "feet"),
  4514. weight: math.unit(90, "lbs"),
  4515. name: "Front",
  4516. image: {
  4517. source: "./media/characters/odi-lunar/front.svg"
  4518. }
  4519. }
  4520. },
  4521. [
  4522. {
  4523. name: "Micro",
  4524. height: math.unit(3, "inches"),
  4525. default: true
  4526. },
  4527. {
  4528. name: "Normal",
  4529. height: math.unit(5.5, "feet")
  4530. }
  4531. ]
  4532. ))
  4533. characterMakers.push(() => makeCharacter(
  4534. { name: "Mandake" },
  4535. {
  4536. back: {
  4537. height: math.unit(6, "feet"),
  4538. weight: math.unit(220, "lbs"),
  4539. name: "Back",
  4540. image: {
  4541. source: "./media/characters/mandake/back.svg"
  4542. }
  4543. }
  4544. },
  4545. [
  4546. {
  4547. name: "Normal",
  4548. height: math.unit(7, "feet"),
  4549. default: true
  4550. },
  4551. {
  4552. name: "Macro",
  4553. height: math.unit(78, "feet")
  4554. },
  4555. {
  4556. name: "Macro+",
  4557. height: math.unit(300, "meters")
  4558. },
  4559. {
  4560. name: "Macro++",
  4561. height: math.unit(2400, "feet")
  4562. },
  4563. {
  4564. name: "Megamacro",
  4565. height: math.unit(5167, "meters")
  4566. },
  4567. {
  4568. name: "Gigamacro",
  4569. height: math.unit(41769, "miles")
  4570. },
  4571. ]
  4572. ))
  4573. characterMakers.push(() => makeCharacter(
  4574. { name: "Yozey" },
  4575. {
  4576. front: {
  4577. height: math.unit(6, "feet"),
  4578. weight: math.unit(120, "lbs"),
  4579. name: "Front",
  4580. image: {
  4581. source: "./media/characters/yozey/front.svg"
  4582. }
  4583. },
  4584. frontAlt: {
  4585. height: math.unit(6, "feet"),
  4586. weight: math.unit(120, "lbs"),
  4587. name: "Front (Alt)",
  4588. image: {
  4589. source: "./media/characters/yozey/front-alt.svg"
  4590. }
  4591. },
  4592. side: {
  4593. height: math.unit(6, "feet"),
  4594. weight: math.unit(120, "lbs"),
  4595. name: "Side",
  4596. image: {
  4597. source: "./media/characters/yozey/side.svg"
  4598. }
  4599. },
  4600. },
  4601. [
  4602. {
  4603. name: "Micro",
  4604. height: math.unit(3, "inches"),
  4605. default: true
  4606. },
  4607. {
  4608. name: "Normal",
  4609. height: math.unit(6, "feet")
  4610. }
  4611. ]
  4612. ))
  4613. characterMakers.push(() => makeCharacter(
  4614. { name: "Valeska Voss" },
  4615. {
  4616. front: {
  4617. height: math.unit(6, "feet"),
  4618. weight: math.unit(103, "lbs"),
  4619. name: "Front",
  4620. image: {
  4621. source: "./media/characters/valeska-voss/front.svg"
  4622. }
  4623. }
  4624. },
  4625. [
  4626. {
  4627. name: "Mini-Sized Sub",
  4628. height: math.unit(3.1, "inches")
  4629. },
  4630. {
  4631. name: "Mid-Sized Sub",
  4632. height: math.unit(6.2, "inches")
  4633. },
  4634. {
  4635. name: "Full-Sized Sub",
  4636. height: math.unit(9.3, "inches")
  4637. },
  4638. {
  4639. name: "Normal",
  4640. height: math.unit(5 + 2 / 12, "foot"),
  4641. default: true
  4642. },
  4643. ]
  4644. ))
  4645. characterMakers.push(() => makeCharacter(
  4646. { name: "Gene Zeta" },
  4647. {
  4648. front: {
  4649. height: math.unit(6, "feet"),
  4650. weight: math.unit(160, "lbs"),
  4651. name: "Front",
  4652. image: {
  4653. source: "./media/characters/gene-zeta/front.svg",
  4654. bottom: 0.03,
  4655. extra: 1
  4656. }
  4657. }
  4658. },
  4659. [
  4660. {
  4661. name: "Normal",
  4662. height: math.unit(6.25, "foot"),
  4663. default: true
  4664. },
  4665. ]
  4666. ))
  4667. characterMakers.push(() => makeCharacter(
  4668. { name: "Razinox" },
  4669. {
  4670. front: {
  4671. height: math.unit(6, "feet"),
  4672. weight: math.unit(350, "lbs"),
  4673. name: "Front",
  4674. image: {
  4675. source: "./media/characters/razinox/front.svg",
  4676. extra: 1686 / 1548
  4677. }
  4678. },
  4679. back: {
  4680. height: math.unit(6, "feet"),
  4681. weight: math.unit(350, "lbs"),
  4682. name: "Back",
  4683. image: {
  4684. source: "./media/characters/razinox/back.svg",
  4685. extra: 1660 / 1590
  4686. }
  4687. },
  4688. },
  4689. [
  4690. {
  4691. name: "Normal",
  4692. height: math.unit(10 + 8 / 12, "foot")
  4693. },
  4694. {
  4695. name: "Minimacro",
  4696. height: math.unit(15, "foot")
  4697. },
  4698. {
  4699. name: "Macro",
  4700. height: math.unit(60, "foot"),
  4701. default: true
  4702. },
  4703. {
  4704. name: "Megamacro",
  4705. height: math.unit(5, "miles")
  4706. },
  4707. {
  4708. name: "Gigamacro",
  4709. height: math.unit(6000, "miles")
  4710. },
  4711. ]
  4712. ))
  4713. characterMakers.push(() => makeCharacter(
  4714. { name: "Cobalt" },
  4715. {
  4716. front: {
  4717. height: math.unit(6, "feet"),
  4718. weight: math.unit(150, "lbs"),
  4719. name: "Front",
  4720. image: {
  4721. source: "./media/characters/cobalt/front.svg"
  4722. }
  4723. }
  4724. },
  4725. [
  4726. {
  4727. name: "Normal",
  4728. height: math.unit(8 + 1 / 12, "foot")
  4729. },
  4730. {
  4731. name: "Macro",
  4732. height: math.unit(111, "foot"),
  4733. default: true
  4734. },
  4735. {
  4736. name: "Supracosmic",
  4737. height: math.unit(1e42, "feet")
  4738. },
  4739. ]
  4740. ))
  4741. characterMakers.push(() => makeCharacter(
  4742. { name: "Amanda" },
  4743. {
  4744. front: {
  4745. height: math.unit(6, "feet"),
  4746. weight: math.unit(140, "lbs"),
  4747. name: "Front",
  4748. image: {
  4749. source: "./media/characters/amanda/front.svg"
  4750. }
  4751. }
  4752. },
  4753. [
  4754. {
  4755. name: "Micro",
  4756. height: math.unit(5, "inches"),
  4757. default: true
  4758. },
  4759. ]
  4760. ))
  4761. characterMakers.push(() => makeCharacter(
  4762. { name: "Teal" },
  4763. {
  4764. front: {
  4765. height: math.unit(5.59, "feet"),
  4766. weight: math.unit(250, "lbs"),
  4767. name: "Front",
  4768. image: {
  4769. source: "./media/characters/teal/front.svg"
  4770. }
  4771. },
  4772. frontAlt: {
  4773. height: math.unit(6, "feet"),
  4774. weight: math.unit(250, "lbs"),
  4775. name: "Front (Alt)",
  4776. image: {
  4777. source: "./media/characters/teal/front-alt.svg",
  4778. bottom: 0.04,
  4779. extra: 1
  4780. }
  4781. },
  4782. },
  4783. [
  4784. {
  4785. name: "Normal",
  4786. height: math.unit(12, "feet"),
  4787. default: true
  4788. },
  4789. {
  4790. name: "Macro",
  4791. height: math.unit(300, "feet")
  4792. },
  4793. ]
  4794. ))
  4795. characterMakers.push(() => makeCharacter(
  4796. { name: "Ravin Amulet" },
  4797. {
  4798. frontCat: {
  4799. height: math.unit(6, "feet"),
  4800. weight: math.unit(180, "lbs"),
  4801. name: "Front (Cat)",
  4802. image: {
  4803. source: "./media/characters/ravin-amulet/front-cat.svg"
  4804. }
  4805. },
  4806. frontCatAlt: {
  4807. height: math.unit(6, "feet"),
  4808. weight: math.unit(180, "lbs"),
  4809. name: "Front (Alt, Cat)",
  4810. image: {
  4811. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  4812. }
  4813. },
  4814. frontWerewolf: {
  4815. height: math.unit(6 * 1.2, "feet"),
  4816. weight: math.unit(225, "lbs"),
  4817. name: "Front (Werewolf)",
  4818. image: {
  4819. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  4820. }
  4821. },
  4822. backWerewolf: {
  4823. height: math.unit(6 * 1.2, "feet"),
  4824. weight: math.unit(225, "lbs"),
  4825. name: "Back (Werewolf)",
  4826. image: {
  4827. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  4828. }
  4829. },
  4830. },
  4831. [
  4832. {
  4833. name: "Nano",
  4834. height: math.unit(1, "micrometer")
  4835. },
  4836. {
  4837. name: "Micro",
  4838. height: math.unit(1, "inch")
  4839. },
  4840. {
  4841. name: "Normal",
  4842. height: math.unit(6, "feet"),
  4843. default: true
  4844. },
  4845. {
  4846. name: "Macro",
  4847. height: math.unit(60, "feet")
  4848. }
  4849. ]
  4850. ))
  4851. characterMakers.push(() => makeCharacter(
  4852. { name: "Fluoresce" },
  4853. {
  4854. front: {
  4855. height: math.unit(6, "feet"),
  4856. weight: math.unit(165, "lbs"),
  4857. name: "Front",
  4858. image: {
  4859. source: "./media/characters/fluoresce/front.svg"
  4860. }
  4861. }
  4862. },
  4863. [
  4864. {
  4865. name: "Micro",
  4866. height: math.unit(6, "cm")
  4867. },
  4868. {
  4869. name: "Normal",
  4870. height: math.unit(5 + 7 / 12, "feet"),
  4871. default: true
  4872. },
  4873. {
  4874. name: "Macro",
  4875. height: math.unit(56, "feet")
  4876. },
  4877. {
  4878. name: "Megamacro",
  4879. height: math.unit(1.9, "miles")
  4880. },
  4881. ]
  4882. ))
  4883. characterMakers.push(() => makeCharacter(
  4884. { name: "Aurora" },
  4885. {
  4886. front: {
  4887. height: math.unit(9 + 6 / 12, "feet"),
  4888. weight: math.unit(523, "lbs"),
  4889. name: "Side",
  4890. image: {
  4891. source: "./media/characters/aurora/side.svg"
  4892. }
  4893. }
  4894. },
  4895. [
  4896. {
  4897. name: "Normal",
  4898. height: math.unit(9 + 6 / 12, "feet")
  4899. },
  4900. {
  4901. name: "Macro",
  4902. height: math.unit(96, "feet"),
  4903. default: true
  4904. },
  4905. {
  4906. name: "Macro+",
  4907. height: math.unit(243, "feet")
  4908. },
  4909. ]
  4910. ))
  4911. characterMakers.push(() => makeCharacter(
  4912. { name: "Ranek" },
  4913. {
  4914. front: {
  4915. height: math.unit(194, "cm"),
  4916. weight: math.unit(90, "kg"),
  4917. name: "Front",
  4918. image: {
  4919. source: "./media/characters/ranek/front.svg"
  4920. }
  4921. },
  4922. side: {
  4923. height: math.unit(194, "cm"),
  4924. weight: math.unit(90, "kg"),
  4925. name: "Side",
  4926. image: {
  4927. source: "./media/characters/ranek/side.svg"
  4928. }
  4929. },
  4930. back: {
  4931. height: math.unit(194, "cm"),
  4932. weight: math.unit(90, "kg"),
  4933. name: "Back",
  4934. image: {
  4935. source: "./media/characters/ranek/back.svg"
  4936. }
  4937. },
  4938. feral: {
  4939. height: math.unit(30, "cm"),
  4940. weight: math.unit(1.6, "lbs"),
  4941. name: "Feral",
  4942. image: {
  4943. source: "./media/characters/ranek/feral.svg"
  4944. }
  4945. },
  4946. },
  4947. [
  4948. {
  4949. name: "Normal",
  4950. height: math.unit(194, "cm"),
  4951. default: true
  4952. },
  4953. {
  4954. name: "Macro",
  4955. height: math.unit(100, "meters")
  4956. },
  4957. ]
  4958. ))
  4959. characterMakers.push(() => makeCharacter(
  4960. { name: "Andrew Cooper" },
  4961. {
  4962. front: {
  4963. height: math.unit(5 + 6 / 12, "feet"),
  4964. weight: math.unit(153, "lbs"),
  4965. name: "Front",
  4966. image: {
  4967. source: "./media/characters/andrew-cooper/front.svg"
  4968. }
  4969. },
  4970. },
  4971. [
  4972. {
  4973. name: "Nano",
  4974. height: math.unit(1, "mm")
  4975. },
  4976. {
  4977. name: "Micro",
  4978. height: math.unit(2, "inches")
  4979. },
  4980. {
  4981. name: "Normal",
  4982. height: math.unit(5 + 6 / 12, "feet"),
  4983. default: true
  4984. }
  4985. ]
  4986. ))
  4987. characterMakers.push(() => makeCharacter(
  4988. { name: "Akane Sato" },
  4989. {
  4990. front: {
  4991. height: math.unit(6, "feet"),
  4992. weight: math.unit(180, "lbs"),
  4993. name: "Front",
  4994. image: {
  4995. source: "./media/characters/akane-sato/front.svg",
  4996. extra: 1219 / 1140
  4997. }
  4998. },
  4999. back: {
  5000. height: math.unit(6, "feet"),
  5001. weight: math.unit(180, "lbs"),
  5002. name: "Back",
  5003. image: {
  5004. source: "./media/characters/akane-sato/back.svg",
  5005. extra: 1219 / 1170
  5006. }
  5007. },
  5008. },
  5009. [
  5010. {
  5011. name: "Normal",
  5012. height: math.unit(2.5, "meters")
  5013. },
  5014. {
  5015. name: "Macro",
  5016. height: math.unit(250, "meters"),
  5017. default: true
  5018. },
  5019. {
  5020. name: "Megamacro",
  5021. height: math.unit(25, "km")
  5022. },
  5023. ]
  5024. ))
  5025. characterMakers.push(() => makeCharacter(
  5026. { name: "Rook" },
  5027. {
  5028. front: {
  5029. height: math.unit(6, "feet"),
  5030. weight: math.unit(65, "kg"),
  5031. name: "Front",
  5032. image: {
  5033. source: "./media/characters/rook/front.svg"
  5034. }
  5035. }
  5036. },
  5037. [
  5038. {
  5039. name: "Normal",
  5040. height: math.unit(8.8, "feet")
  5041. },
  5042. {
  5043. name: "Macro",
  5044. height: math.unit(88, "feet"),
  5045. default: true
  5046. },
  5047. {
  5048. name: "Megamacro",
  5049. height: math.unit(8, "miles")
  5050. },
  5051. ]
  5052. ))
  5053. characterMakers.push(() => makeCharacter(
  5054. { name: "Prodigy" },
  5055. {
  5056. front: {
  5057. height: math.unit(12 + 2 / 12, "feet"),
  5058. weight: math.unit(808, "lbs"),
  5059. name: "Front",
  5060. image: {
  5061. source: "./media/characters/prodigy/front.svg"
  5062. }
  5063. }
  5064. },
  5065. [
  5066. {
  5067. name: "Normal",
  5068. height: math.unit(12 + 2 / 12, "feet"),
  5069. default: true
  5070. },
  5071. {
  5072. name: "Macro",
  5073. height: math.unit(143, "feet")
  5074. },
  5075. {
  5076. name: "Macro+",
  5077. height: math.unit(400, "feet")
  5078. },
  5079. ]
  5080. ))
  5081. characterMakers.push(() => makeCharacter(
  5082. { name: "Daniel" },
  5083. {
  5084. front: {
  5085. height: math.unit(6, "feet"),
  5086. weight: math.unit(225, "lbs"),
  5087. name: "Front",
  5088. image: {
  5089. source: "./media/characters/daniel/front.svg"
  5090. }
  5091. },
  5092. leaning: {
  5093. height: math.unit(6, "feet"),
  5094. weight: math.unit(225, "lbs"),
  5095. name: "Leaning",
  5096. image: {
  5097. source: "./media/characters/daniel/leaning.svg"
  5098. }
  5099. },
  5100. },
  5101. [
  5102. {
  5103. name: "Macro",
  5104. height: math.unit(1000, "feet"),
  5105. default: true
  5106. },
  5107. ]
  5108. ))
  5109. characterMakers.push(() => makeCharacter(
  5110. { name: "Chiros" },
  5111. {
  5112. front: {
  5113. height: math.unit(6, "feet"),
  5114. weight: math.unit(88, "lbs"),
  5115. name: "Front",
  5116. image: {
  5117. source: "./media/characters/chiros/front.svg",
  5118. extra: 306 / 226
  5119. }
  5120. },
  5121. side: {
  5122. height: math.unit(6, "feet"),
  5123. weight: math.unit(88, "lbs"),
  5124. name: "Side",
  5125. image: {
  5126. source: "./media/characters/chiros/side.svg",
  5127. extra: 306 / 226
  5128. }
  5129. },
  5130. },
  5131. [
  5132. {
  5133. name: "Normal",
  5134. height: math.unit(6, "cm"),
  5135. default: true
  5136. },
  5137. ]
  5138. ))
  5139. characterMakers.push(() => makeCharacter(
  5140. { name: "Selka" },
  5141. {
  5142. front: {
  5143. height: math.unit(6, "feet"),
  5144. weight: math.unit(100, "lbs"),
  5145. name: "Front",
  5146. image: {
  5147. source: "./media/characters/selka/front.svg",
  5148. extra: 947 / 887
  5149. }
  5150. }
  5151. },
  5152. [
  5153. {
  5154. name: "Normal",
  5155. height: math.unit(5, "cm"),
  5156. default: true
  5157. },
  5158. ]
  5159. ))
  5160. characterMakers.push(() => makeCharacter(
  5161. { name: "Verin" },
  5162. {
  5163. front: {
  5164. height: math.unit(8 + 3 / 12, "feet"),
  5165. weight: math.unit(424, "lbs"),
  5166. name: "Front",
  5167. image: {
  5168. source: "./media/characters/verin/front.svg",
  5169. extra: 1845 / 1550
  5170. }
  5171. },
  5172. frontArmored: {
  5173. height: math.unit(8 + 3 / 12, "feet"),
  5174. weight: math.unit(424, "lbs"),
  5175. name: "Front (Armored)",
  5176. image: {
  5177. source: "./media/characters/verin/front-armor.svg",
  5178. extra: 1845 / 1550,
  5179. bottom: 0.01
  5180. }
  5181. },
  5182. back: {
  5183. height: math.unit(8 + 3 / 12, "feet"),
  5184. weight: math.unit(424, "lbs"),
  5185. name: "Back",
  5186. image: {
  5187. source: "./media/characters/verin/back.svg",
  5188. bottom: 0.1,
  5189. extra: 1
  5190. }
  5191. },
  5192. foot: {
  5193. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5194. name: "Foot",
  5195. image: {
  5196. source: "./media/characters/verin/foot.svg"
  5197. }
  5198. },
  5199. },
  5200. [
  5201. {
  5202. name: "Normal",
  5203. height: math.unit(8 + 3 / 12, "feet")
  5204. },
  5205. {
  5206. name: "Minimacro",
  5207. height: math.unit(21, "feet"),
  5208. default: true
  5209. },
  5210. {
  5211. name: "Macro",
  5212. height: math.unit(626, "feet")
  5213. },
  5214. ]
  5215. ))
  5216. characterMakers.push(() => makeCharacter(
  5217. { name: "Sovrim Terraquian" },
  5218. {
  5219. front: {
  5220. height: math.unit(2.718, "meters"),
  5221. weight: math.unit(150, "lbs"),
  5222. name: "Front",
  5223. image: {
  5224. source: "./media/characters/sovrim-terraquian/front.svg"
  5225. }
  5226. },
  5227. back: {
  5228. height: math.unit(2.718, "meters"),
  5229. weight: math.unit(150, "lbs"),
  5230. name: "Back",
  5231. image: {
  5232. source: "./media/characters/sovrim-terraquian/back.svg"
  5233. }
  5234. }
  5235. },
  5236. [
  5237. {
  5238. name: "Micro",
  5239. height: math.unit(2, "inches")
  5240. },
  5241. {
  5242. name: "Small",
  5243. height: math.unit(1, "meter")
  5244. },
  5245. {
  5246. name: "Normal",
  5247. height: math.unit(Math.E, "meters"),
  5248. default: true
  5249. },
  5250. {
  5251. name: "Macro",
  5252. height: math.unit(20, "meters")
  5253. },
  5254. {
  5255. name: "Macro+",
  5256. height: math.unit(400, "meters")
  5257. },
  5258. ]
  5259. ))
  5260. characterMakers.push(() => makeCharacter(
  5261. { name: "Reece Silvermane" },
  5262. {
  5263. front: {
  5264. height: math.unit(7, "feet"),
  5265. weight: math.unit(489, "lbs"),
  5266. name: "Front",
  5267. image: {
  5268. source: "./media/characters/reece-silvermane/front.svg",
  5269. bottom: 0.02,
  5270. extra: 1
  5271. }
  5272. },
  5273. },
  5274. [
  5275. {
  5276. name: "Macro",
  5277. height: math.unit(1.5, "miles"),
  5278. default: true
  5279. },
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Kane" },
  5284. {
  5285. front: {
  5286. height: math.unit(6, "feet"),
  5287. weight: math.unit(78, "kg"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/kane/front.svg",
  5291. extra: 978 / 899
  5292. }
  5293. },
  5294. },
  5295. [
  5296. {
  5297. name: "Normal",
  5298. height: math.unit(2.1, "m"),
  5299. },
  5300. {
  5301. name: "Macro",
  5302. height: math.unit(1, "km"),
  5303. default: true
  5304. },
  5305. ]
  5306. ))
  5307. characterMakers.push(() => makeCharacter(
  5308. { name: "Tegon" },
  5309. {
  5310. front: {
  5311. height: math.unit(6, "feet"),
  5312. weight: math.unit(200, "kg"),
  5313. name: "Front",
  5314. image: {
  5315. source: "./media/characters/tegon/front.svg",
  5316. bottom: 0.01,
  5317. extra: 1
  5318. }
  5319. },
  5320. },
  5321. [
  5322. {
  5323. name: "Micro",
  5324. height: math.unit(1, "inch")
  5325. },
  5326. {
  5327. name: "Normal",
  5328. height: math.unit(6 + 3 / 12, "feet"),
  5329. default: true
  5330. },
  5331. {
  5332. name: "Macro",
  5333. height: math.unit(300, "feet")
  5334. },
  5335. {
  5336. name: "Megamacro",
  5337. height: math.unit(69, "miles")
  5338. },
  5339. ]
  5340. ))
  5341. characterMakers.push(() => makeCharacter(
  5342. { name: "Arcturax" },
  5343. {
  5344. side: {
  5345. height: math.unit(6, "feet"),
  5346. weight: math.unit(2304, "lbs"),
  5347. name: "Side",
  5348. image: {
  5349. source: "./media/characters/arcturax/side.svg",
  5350. extra: 790 / 376,
  5351. bottom: 0.01
  5352. }
  5353. },
  5354. },
  5355. [
  5356. {
  5357. name: "Micro",
  5358. height: math.unit(2, "inch")
  5359. },
  5360. {
  5361. name: "Normal",
  5362. height: math.unit(6, "feet")
  5363. },
  5364. {
  5365. name: "Macro",
  5366. height: math.unit(39, "feet"),
  5367. default: true
  5368. },
  5369. {
  5370. name: "Megamacro",
  5371. height: math.unit(7, "miles")
  5372. },
  5373. ]
  5374. ))
  5375. characterMakers.push(() => makeCharacter(
  5376. { name: "Sentri" },
  5377. {
  5378. front: {
  5379. height: math.unit(6, "feet"),
  5380. weight: math.unit(50, "lbs"),
  5381. name: "Front",
  5382. image: {
  5383. source: "./media/characters/sentri/front.svg",
  5384. extra: 1750 / 1570,
  5385. bottom: 0.025
  5386. }
  5387. },
  5388. frontAlt: {
  5389. height: math.unit(6, "feet"),
  5390. weight: math.unit(50, "lbs"),
  5391. name: "Front (Alt)",
  5392. image: {
  5393. source: "./media/characters/sentri/front-alt.svg",
  5394. extra: 1750 / 1570,
  5395. bottom: 0.025
  5396. }
  5397. },
  5398. },
  5399. [
  5400. {
  5401. name: "Normal",
  5402. height: math.unit(15, "feet"),
  5403. default: true
  5404. },
  5405. {
  5406. name: "Macro",
  5407. height: math.unit(2500, "feet")
  5408. }
  5409. ]
  5410. ))
  5411. characterMakers.push(() => makeCharacter(
  5412. { name: "Corvin" },
  5413. {
  5414. front: {
  5415. height: math.unit(5 + 8 / 12, "feet"),
  5416. weight: math.unit(130, "lbs"),
  5417. name: "Front",
  5418. image: {
  5419. source: "./media/characters/corvin/front.svg",
  5420. extra: 1803 / 1629
  5421. }
  5422. },
  5423. frontShirt: {
  5424. height: math.unit(5 + 8 / 12, "feet"),
  5425. weight: math.unit(130, "lbs"),
  5426. name: "Front (Shirt)",
  5427. image: {
  5428. source: "./media/characters/corvin/front-shirt.svg",
  5429. extra: 1803 / 1629
  5430. }
  5431. },
  5432. frontPoncho: {
  5433. height: math.unit(5 + 8 / 12, "feet"),
  5434. weight: math.unit(130, "lbs"),
  5435. name: "Front (Poncho)",
  5436. image: {
  5437. source: "./media/characters/corvin/front-poncho.svg",
  5438. extra: 1803 / 1629
  5439. }
  5440. },
  5441. side: {
  5442. height: math.unit(5 + 8 / 12, "feet"),
  5443. weight: math.unit(130, "lbs"),
  5444. name: "Side",
  5445. image: {
  5446. source: "./media/characters/corvin/side.svg",
  5447. extra: 1012 / 945
  5448. }
  5449. },
  5450. back: {
  5451. height: math.unit(5 + 8 / 12, "feet"),
  5452. weight: math.unit(130, "lbs"),
  5453. name: "Back",
  5454. image: {
  5455. source: "./media/characters/corvin/back.svg",
  5456. extra: 1803 / 1629
  5457. }
  5458. },
  5459. },
  5460. [
  5461. {
  5462. name: "Micro",
  5463. height: math.unit(3, "inches")
  5464. },
  5465. {
  5466. name: "Normal",
  5467. height: math.unit(5 + 8 / 12, "feet")
  5468. },
  5469. {
  5470. name: "Macro",
  5471. height: math.unit(300, "feet"),
  5472. default: true
  5473. },
  5474. {
  5475. name: "Megamacro",
  5476. height: math.unit(500, "miles")
  5477. }
  5478. ]
  5479. ))
  5480. characterMakers.push(() => makeCharacter(
  5481. { name: "Q" },
  5482. {
  5483. front: {
  5484. height: math.unit(6, "feet"),
  5485. weight: math.unit(135, "lbs"),
  5486. name: "Front",
  5487. image: {
  5488. source: "./media/characters/q/front.svg",
  5489. extra: 854 / 752,
  5490. bottom: 0.005
  5491. }
  5492. },
  5493. back: {
  5494. height: math.unit(6, "feet"),
  5495. weight: math.unit(130, "lbs"),
  5496. name: "Back",
  5497. image: {
  5498. source: "./media/characters/q/back.svg",
  5499. extra: 854 / 752
  5500. }
  5501. },
  5502. },
  5503. [
  5504. {
  5505. name: "Macro",
  5506. height: math.unit(90, "feet"),
  5507. default: true
  5508. },
  5509. {
  5510. name: "Extra Macro",
  5511. height: math.unit(300, "feet"),
  5512. },
  5513. {
  5514. name: "BIG WALF",
  5515. height: math.unit(750, "feet"),
  5516. },
  5517. ]
  5518. ))
  5519. characterMakers.push(() => makeCharacter(
  5520. { name: "Carley" },
  5521. {
  5522. front: {
  5523. height: math.unit(6, "feet"),
  5524. weight: math.unit(150, "lbs"),
  5525. name: "Front",
  5526. image: {
  5527. source: "./media/characters/carley/front.svg",
  5528. extra: 3927 / 3540,
  5529. bottom: 0.03
  5530. }
  5531. }
  5532. },
  5533. [
  5534. {
  5535. name: "Normal",
  5536. height: math.unit(6 + 3 / 12, "feet")
  5537. },
  5538. {
  5539. name: "Macro",
  5540. height: math.unit(185, "feet"),
  5541. default: true
  5542. },
  5543. {
  5544. name: "Megamacro",
  5545. height: math.unit(8, "miles"),
  5546. },
  5547. ]
  5548. ))
  5549. characterMakers.push(() => makeCharacter(
  5550. { name: "Citrine" },
  5551. {
  5552. front: {
  5553. height: math.unit(3, "feet"),
  5554. weight: math.unit(28, "lbs"),
  5555. name: "Front",
  5556. image: {
  5557. source: "./media/characters/citrine/front.svg"
  5558. }
  5559. }
  5560. },
  5561. [
  5562. {
  5563. name: "Normal",
  5564. height: math.unit(3, "feet"),
  5565. default: true
  5566. }
  5567. ]
  5568. ))
  5569. characterMakers.push(() => makeCharacter(
  5570. { name: "Aura Starwind" },
  5571. {
  5572. front: {
  5573. height: math.unit(14, "feet"),
  5574. weight: math.unit(1450, "kg"),
  5575. name: "Front",
  5576. image: {
  5577. source: "./media/characters/aura-starwind/front.svg",
  5578. extra: 1455 / 1335
  5579. }
  5580. },
  5581. side: {
  5582. height: math.unit(14, "feet"),
  5583. weight: math.unit(1450, "kg"),
  5584. name: "Side",
  5585. image: {
  5586. source: "./media/characters/aura-starwind/side.svg",
  5587. extra: 1654 / 1497
  5588. }
  5589. },
  5590. taur: {
  5591. height: math.unit(18, "feet"),
  5592. weight: math.unit(5500, "kg"),
  5593. name: "Taur",
  5594. image: {
  5595. source: "./media/characters/aura-starwind/taur.svg",
  5596. extra: 1760 / 1650
  5597. }
  5598. },
  5599. feral: {
  5600. height: math.unit(46, "feet"),
  5601. weight: math.unit(25000, "kg"),
  5602. name: "Feral",
  5603. image: {
  5604. source: "./media/characters/aura-starwind/feral.svg"
  5605. }
  5606. },
  5607. },
  5608. [
  5609. {
  5610. name: "Normal",
  5611. height: math.unit(14, "feet"),
  5612. default: true
  5613. },
  5614. {
  5615. name: "Macro",
  5616. height: math.unit(50, "meters")
  5617. },
  5618. {
  5619. name: "Megamacro",
  5620. height: math.unit(5000, "meters")
  5621. },
  5622. {
  5623. name: "Gigamacro",
  5624. height: math.unit(100000, "kilometers")
  5625. },
  5626. ]
  5627. ))
  5628. characterMakers.push(() => makeCharacter(
  5629. { name: "Rivet" },
  5630. {
  5631. front: {
  5632. height: math.unit(2 + 7 / 12, "feet"),
  5633. weight: math.unit(32, "lbs"),
  5634. name: "Front",
  5635. image: {
  5636. source: "./media/characters/rivet/front.svg",
  5637. extra: 1716 / 1658,
  5638. bottom: 0.03
  5639. }
  5640. },
  5641. foot: {
  5642. height: math.unit(0.551, "feet"),
  5643. name: "Rivet's Foot",
  5644. image: {
  5645. source: "./media/characters/rivet/foot.svg"
  5646. },
  5647. rename: true
  5648. }
  5649. },
  5650. [
  5651. {
  5652. name: "Micro",
  5653. height: math.unit(1.5, "inches"),
  5654. },
  5655. {
  5656. name: "Normal",
  5657. height: math.unit(2 + 7 / 12, "feet"),
  5658. default: true
  5659. },
  5660. {
  5661. name: "Macro",
  5662. height: math.unit(85, "feet")
  5663. },
  5664. {
  5665. name: "Megamacro",
  5666. height: math.unit(2.2, "km")
  5667. }
  5668. ]
  5669. ))
  5670. characterMakers.push(() => makeCharacter(
  5671. { name: "Coffee" },
  5672. {
  5673. front: {
  5674. height: math.unit(5 + 9 / 12, "feet"),
  5675. weight: math.unit(150, "lbs"),
  5676. name: "Front",
  5677. image: {
  5678. source: "./media/characters/coffee/front.svg",
  5679. extra: 3666 / 3032,
  5680. bottom: 0.04
  5681. }
  5682. },
  5683. foot: {
  5684. height: math.unit(1.29, "feet"),
  5685. name: "Foot",
  5686. image: {
  5687. source: "./media/characters/coffee/foot.svg"
  5688. }
  5689. },
  5690. },
  5691. [
  5692. {
  5693. name: "Micro",
  5694. height: math.unit(2, "inches"),
  5695. },
  5696. {
  5697. name: "Normal",
  5698. height: math.unit(5 + 9 / 12, "feet"),
  5699. default: true
  5700. },
  5701. {
  5702. name: "Macro",
  5703. height: math.unit(800, "feet")
  5704. },
  5705. {
  5706. name: "Megamacro",
  5707. height: math.unit(25, "miles")
  5708. }
  5709. ]
  5710. ))
  5711. characterMakers.push(() => makeCharacter(
  5712. { name: "Chari-Gal" },
  5713. {
  5714. front: {
  5715. height: math.unit(6, "feet"),
  5716. weight: math.unit(200, "lbs"),
  5717. name: "Front",
  5718. image: {
  5719. source: "./media/characters/chari-gal/front.svg",
  5720. extra: 1568 / 1385,
  5721. bottom: 0.047
  5722. }
  5723. },
  5724. gigantamax: {
  5725. height: math.unit(6 * 16, "feet"),
  5726. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  5727. name: "Gigantamax",
  5728. image: {
  5729. source: "./media/characters/chari-gal/gigantamax.svg",
  5730. extra: 1124 / 888,
  5731. bottom: 0.03
  5732. }
  5733. },
  5734. },
  5735. [
  5736. {
  5737. name: "Normal",
  5738. height: math.unit(5 + 7 / 12, "feet")
  5739. },
  5740. {
  5741. name: "Macro",
  5742. height: math.unit(200, "feet"),
  5743. default: true
  5744. }
  5745. ]
  5746. ))
  5747. characterMakers.push(() => makeCharacter(
  5748. { name: "Nova" },
  5749. {
  5750. front: {
  5751. height: math.unit(6, "feet"),
  5752. weight: math.unit(150, "lbs"),
  5753. name: "Front",
  5754. image: {
  5755. source: "./media/characters/nova/front.svg",
  5756. extra: 5000 / 4722,
  5757. bottom: 0.02
  5758. }
  5759. }
  5760. },
  5761. [
  5762. {
  5763. name: "Micro-",
  5764. height: math.unit(0.8, "inches")
  5765. },
  5766. {
  5767. name: "Micro",
  5768. height: math.unit(2, "inches"),
  5769. default: true
  5770. },
  5771. ]
  5772. ))
  5773. characterMakers.push(() => makeCharacter(
  5774. { name: "Argent" },
  5775. {
  5776. front: {
  5777. height: math.unit(3 + 1 / 12, "feet"),
  5778. weight: math.unit(21.7, "lbs"),
  5779. name: "Front",
  5780. image: {
  5781. source: "./media/characters/argent/front.svg",
  5782. extra: 1565 / 1416,
  5783. bottom: 0.01
  5784. }
  5785. }
  5786. },
  5787. [
  5788. {
  5789. name: "Micro",
  5790. height: math.unit(2, "inches")
  5791. },
  5792. {
  5793. name: "Normal",
  5794. height: math.unit(3 + 1 / 12, "feet"),
  5795. default: true
  5796. },
  5797. {
  5798. name: "Macro",
  5799. height: math.unit(120, "feet")
  5800. },
  5801. ]
  5802. ))
  5803. characterMakers.push(() => makeCharacter(
  5804. { name: "Mira al-Cul" },
  5805. {
  5806. lamp: {
  5807. height: math.unit(7 * 1559 / 989, "feet"),
  5808. name: "Magic Lamp",
  5809. image: {
  5810. source: "./media/characters/mira-al-cul/lamp.svg",
  5811. extra: 1617 / 1559
  5812. }
  5813. },
  5814. front: {
  5815. height: math.unit(7, "feet"),
  5816. name: "Front",
  5817. image: {
  5818. source: "./media/characters/mira-al-cul/front.svg",
  5819. extra: 1044 / 990
  5820. }
  5821. },
  5822. },
  5823. [
  5824. {
  5825. name: "Heavily Restricted",
  5826. height: math.unit(7 * 1559 / 989, "feet")
  5827. },
  5828. {
  5829. name: "Freshly Freed",
  5830. height: math.unit(50 * 1559 / 989, "feet")
  5831. },
  5832. {
  5833. name: "World Encompassing",
  5834. height: math.unit(10000 * 1559 / 989, "miles")
  5835. },
  5836. {
  5837. name: "Galactic",
  5838. height: math.unit(1.433 * 1559 / 989, "zettameters")
  5839. },
  5840. {
  5841. name: "Palmed Universe",
  5842. height: math.unit(6000 * 1559 / 989, "yottameters"),
  5843. default: true
  5844. },
  5845. {
  5846. name: "Multiversal Matriarch",
  5847. height: math.unit(8.87e10, "yottameters")
  5848. },
  5849. {
  5850. name: "Void Mother",
  5851. height: math.unit(3.14e110, "yottaparsecs")
  5852. },
  5853. ]
  5854. ))
  5855. characterMakers.push(() => makeCharacter(
  5856. { name: "Kuro-shi Uchū" },
  5857. {
  5858. front: {
  5859. height: math.unit(17 + 1 / 12, "feet"),
  5860. weight: math.unit(476.2 * 5, "lbs"),
  5861. name: "Front",
  5862. image: {
  5863. source: "./media/characters/kuro-shi-uchū/front.svg",
  5864. extra: 2329 / 1835,
  5865. bottom: 0.02
  5866. }
  5867. },
  5868. },
  5869. [
  5870. {
  5871. name: "Micro",
  5872. height: math.unit(2, "inches")
  5873. },
  5874. {
  5875. name: "Normal",
  5876. height: math.unit(12, "meters")
  5877. },
  5878. {
  5879. name: "Planetary",
  5880. height: math.unit(0.00929, "AU"),
  5881. default: true
  5882. },
  5883. {
  5884. name: "Universal",
  5885. height: math.unit(20, "gigaparsecs")
  5886. },
  5887. ]
  5888. ))
  5889. characterMakers.push(() => makeCharacter(
  5890. { name: "Katherine" },
  5891. {
  5892. front: {
  5893. height: math.unit(5 + 2 / 12, "feet"),
  5894. weight: math.unit(120, "lbs"),
  5895. name: "Front",
  5896. image: {
  5897. source: "./media/characters/katherine/front.svg",
  5898. extra: 2075 / 1969
  5899. }
  5900. },
  5901. dress: {
  5902. height: math.unit(5 + 2 / 12, "feet"),
  5903. weight: math.unit(120, "lbs"),
  5904. name: "Dress",
  5905. image: {
  5906. source: "./media/characters/katherine/dress.svg",
  5907. extra: 2258 / 2064
  5908. }
  5909. },
  5910. },
  5911. [
  5912. {
  5913. name: "Micro",
  5914. height: math.unit(1, "inches"),
  5915. default: true
  5916. },
  5917. {
  5918. name: "Normal",
  5919. height: math.unit(5 + 2 / 12, "feet")
  5920. },
  5921. {
  5922. name: "Macro",
  5923. height: math.unit(100, "meters")
  5924. },
  5925. {
  5926. name: "Megamacro",
  5927. height: math.unit(80, "miles")
  5928. },
  5929. ]
  5930. ))
  5931. characterMakers.push(() => makeCharacter(
  5932. { name: "Yevis" },
  5933. {
  5934. front: {
  5935. height: math.unit(7 + 8 / 12, "feet"),
  5936. weight: math.unit(250, "lbs"),
  5937. name: "Front",
  5938. image: {
  5939. source: "./media/characters/yevis/front.svg",
  5940. extra: 1938 / 1755
  5941. }
  5942. }
  5943. },
  5944. [
  5945. {
  5946. name: "Mortal",
  5947. height: math.unit(7 + 8 / 12, "feet")
  5948. },
  5949. {
  5950. name: "Battle",
  5951. height: math.unit(25 + 11 / 12, "feet")
  5952. },
  5953. {
  5954. name: "Wrath",
  5955. height: math.unit(1654 + 11 / 12, "feet")
  5956. },
  5957. {
  5958. name: "Planet Destroyer",
  5959. height: math.unit(12000, "miles")
  5960. },
  5961. {
  5962. name: "Galaxy Conqueror",
  5963. height: math.unit(1.45, "zettameters"),
  5964. default: true
  5965. },
  5966. {
  5967. name: "Universal War",
  5968. height: math.unit(184, "gigaparsecs")
  5969. },
  5970. {
  5971. name: "Eternity War",
  5972. height: math.unit(1.98e55, "yottaparsecs")
  5973. },
  5974. ]
  5975. ))
  5976. characterMakers.push(() => makeCharacter(
  5977. { name: "Xavier" },
  5978. {
  5979. front: {
  5980. height: math.unit(5 + 8 / 12, "feet"),
  5981. weight: math.unit(63, "kg"),
  5982. name: "Front",
  5983. image: {
  5984. source: "./media/characters/xavier/front.svg",
  5985. extra: 944 / 883
  5986. }
  5987. },
  5988. frontStretch: {
  5989. height: math.unit(5 + 8 / 12, "feet"),
  5990. weight: math.unit(63, "kg"),
  5991. name: "Stretching",
  5992. image: {
  5993. source: "./media/characters/xavier/front-stretch.svg",
  5994. extra: 962 / 820
  5995. }
  5996. },
  5997. },
  5998. [
  5999. {
  6000. name: "Normal",
  6001. height: math.unit(5 + 8 / 12, "feet")
  6002. },
  6003. {
  6004. name: "Macro",
  6005. height: math.unit(100, "meters"),
  6006. default: true
  6007. },
  6008. {
  6009. name: "McLargeHuge",
  6010. height: math.unit(10, "miles")
  6011. },
  6012. ]
  6013. ))
  6014. characterMakers.push(() => makeCharacter(
  6015. { name: "Joshii" },
  6016. {
  6017. front: {
  6018. height: math.unit(5 + 5 / 12, "feet"),
  6019. weight: math.unit(150, "lb"),
  6020. name: "Front",
  6021. image: {
  6022. source: "./media/characters/joshii/front.svg"
  6023. }
  6024. },
  6025. foot: {
  6026. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6027. name: "Foot",
  6028. image: {
  6029. source: "./media/characters/joshii/foot.svg"
  6030. }
  6031. },
  6032. },
  6033. [
  6034. {
  6035. name: "Micro",
  6036. height: math.unit(2, "inches")
  6037. },
  6038. {
  6039. name: "Normal",
  6040. height: math.unit(5 + 5 / 12, "feet"),
  6041. default: true
  6042. },
  6043. {
  6044. name: "Macro",
  6045. height: math.unit(785, "feet")
  6046. },
  6047. {
  6048. name: "Megamacro",
  6049. height: math.unit(24.5, "miles")
  6050. },
  6051. ]
  6052. ))
  6053. characterMakers.push(() => makeCharacter(
  6054. { name: "Goddess Elizabeth" },
  6055. {
  6056. front: {
  6057. height: math.unit(6, "feet"),
  6058. weight: math.unit(150, "lb"),
  6059. name: "Front",
  6060. image: {
  6061. source: "./media/characters/goddess-elizabeth/front.svg",
  6062. extra: 1800 / 1525,
  6063. bottom: 0.005
  6064. }
  6065. },
  6066. foot: {
  6067. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6068. name: "Foot",
  6069. image: {
  6070. source: "./media/characters/goddess-elizabeth/foot.svg"
  6071. }
  6072. },
  6073. },
  6074. [
  6075. {
  6076. name: "Micro",
  6077. height: math.unit(12, "feet")
  6078. },
  6079. {
  6080. name: "Normal",
  6081. height: math.unit(80, "miles"),
  6082. default: true
  6083. },
  6084. {
  6085. name: "Macro",
  6086. height: math.unit(15000, "parsecs")
  6087. },
  6088. ]
  6089. ))
  6090. characterMakers.push(() => makeCharacter(
  6091. { name: "Kara" },
  6092. {
  6093. front: {
  6094. height: math.unit(5 + 9 / 12, "feet"),
  6095. weight: math.unit(144, "lb"),
  6096. name: "Front",
  6097. image: {
  6098. source: "./media/characters/kara/front.svg"
  6099. }
  6100. },
  6101. feet: {
  6102. height: math.unit(6 / 6.765, "feet"),
  6103. name: "Kara's Feet",
  6104. rename: true,
  6105. image: {
  6106. source: "./media/characters/kara/feet.svg"
  6107. }
  6108. },
  6109. },
  6110. [
  6111. {
  6112. name: "Normal",
  6113. height: math.unit(5 + 9 / 12, "feet")
  6114. },
  6115. {
  6116. name: "Macro",
  6117. height: math.unit(174, "feet"),
  6118. default: true
  6119. },
  6120. ]
  6121. ))
  6122. characterMakers.push(() => makeCharacter(
  6123. { name: "Tyrone" },
  6124. {
  6125. front: {
  6126. height: math.unit(18, "feet"),
  6127. weight: math.unit(4050, "lb"),
  6128. name: "Front",
  6129. image: {
  6130. source: "./media/characters/tyrone/front.svg",
  6131. extra: 2520 / 2402,
  6132. bottom: 0.025
  6133. }
  6134. },
  6135. },
  6136. [
  6137. {
  6138. name: "Normal",
  6139. height: math.unit(18, "feet"),
  6140. default: true
  6141. },
  6142. {
  6143. name: "Macro",
  6144. height: math.unit(300, "feet")
  6145. },
  6146. ]
  6147. ))
  6148. characterMakers.push(() => makeCharacter(
  6149. { name: "Danny" },
  6150. {
  6151. front: {
  6152. height: math.unit(7 + 8 / 12, "feet"),
  6153. weight: math.unit(120, "lb"),
  6154. name: "Front",
  6155. image: {
  6156. source: "./media/characters/danny/front.svg",
  6157. extra: 1490 / 1350
  6158. }
  6159. },
  6160. back: {
  6161. height: math.unit(7 + 8 / 12, "feet"),
  6162. weight: math.unit(120, "lb"),
  6163. name: "Back",
  6164. image: {
  6165. source: "./media/characters/danny/back.svg",
  6166. extra: 1490 / 1350
  6167. }
  6168. },
  6169. },
  6170. [
  6171. {
  6172. name: "Normal",
  6173. height: math.unit(7 + 8 / 12, "feet"),
  6174. default: true
  6175. },
  6176. ]
  6177. ))
  6178. characterMakers.push(() => makeCharacter(
  6179. { name: "Mallow" },
  6180. {
  6181. front: {
  6182. height: math.unit(3.5, "inches"),
  6183. weight: math.unit(19, "grams"),
  6184. name: "Front",
  6185. image: {
  6186. source: "./media/characters/mallow/front.svg",
  6187. extra: 471 / 431
  6188. }
  6189. },
  6190. back: {
  6191. height: math.unit(3.5, "inches"),
  6192. weight: math.unit(19, "grams"),
  6193. name: "Back",
  6194. image: {
  6195. source: "./media/characters/mallow/back.svg",
  6196. extra: 471 / 431
  6197. }
  6198. },
  6199. },
  6200. [
  6201. {
  6202. name: "Normal",
  6203. height: math.unit(3.5, "inches"),
  6204. default: true
  6205. },
  6206. ]
  6207. ))
  6208. characterMakers.push(() => makeCharacter(
  6209. { name: "Starry Aqua" },
  6210. {
  6211. front: {
  6212. height: math.unit(9, "feet"),
  6213. weight: math.unit(230, "kg"),
  6214. name: "Front",
  6215. image: {
  6216. source: "./media/characters/starry-aqua/front.svg"
  6217. }
  6218. },
  6219. back: {
  6220. height: math.unit(9, "feet"),
  6221. weight: math.unit(230, "kg"),
  6222. name: "Back",
  6223. image: {
  6224. source: "./media/characters/starry-aqua/back.svg"
  6225. }
  6226. },
  6227. hand: {
  6228. height: math.unit(9 * 0.1168, "feet"),
  6229. name: "Hand",
  6230. image: {
  6231. source: "./media/characters/starry-aqua/hand.svg"
  6232. }
  6233. },
  6234. foot: {
  6235. height: math.unit(9 * 0.18, "feet"),
  6236. name: "Foot",
  6237. image: {
  6238. source: "./media/characters/starry-aqua/foot.svg"
  6239. }
  6240. }
  6241. },
  6242. [
  6243. {
  6244. name: "Micro",
  6245. height: math.unit(3, "inches")
  6246. },
  6247. {
  6248. name: "Normal",
  6249. height: math.unit(9, "feet")
  6250. },
  6251. {
  6252. name: "Macro",
  6253. height: math.unit(300, "feet"),
  6254. default: true
  6255. },
  6256. {
  6257. name: "Megamacro",
  6258. height: math.unit(3200, "feet")
  6259. }
  6260. ]
  6261. ))
  6262. characterMakers.push(() => makeCharacter(
  6263. { name: "Luka" },
  6264. {
  6265. front: {
  6266. height: math.unit(6, "feet"),
  6267. weight: math.unit(230, "lb"),
  6268. name: "Front",
  6269. image: {
  6270. source: "./media/characters/luka/front.svg",
  6271. extra: 1,
  6272. bottom: 0.025
  6273. }
  6274. },
  6275. },
  6276. [
  6277. {
  6278. name: "Normal",
  6279. height: math.unit(12 + 8 / 12, "feet"),
  6280. default: true
  6281. },
  6282. {
  6283. name: "Minimacro",
  6284. height: math.unit(20, "feet")
  6285. },
  6286. {
  6287. name: "Macro",
  6288. height: math.unit(250, "feet")
  6289. },
  6290. {
  6291. name: "Megamacro",
  6292. height: math.unit(5, "miles")
  6293. },
  6294. {
  6295. name: "Gigamacro",
  6296. height: math.unit(8000, "miles")
  6297. },
  6298. ]
  6299. ))
  6300. characterMakers.push(() => makeCharacter(
  6301. { name: "Natalie Nightring" },
  6302. {
  6303. front: {
  6304. height: math.unit(6, "feet"),
  6305. weight: math.unit(150, "lb"),
  6306. name: "Front",
  6307. image: {
  6308. source: "./media/characters/natalie-nightring/front.svg",
  6309. extra: 1,
  6310. bottom: 0.06
  6311. }
  6312. },
  6313. },
  6314. [
  6315. {
  6316. name: "Uh Oh",
  6317. height: math.unit(0.1, "mm")
  6318. },
  6319. {
  6320. name: "Small",
  6321. height: math.unit(3, "inches")
  6322. },
  6323. {
  6324. name: "Human Scale",
  6325. height: math.unit(6, "feet")
  6326. },
  6327. {
  6328. name: "Librarian",
  6329. height: math.unit(50, "feet"),
  6330. default: true
  6331. },
  6332. {
  6333. name: "Immense",
  6334. height: math.unit(200, "miles")
  6335. },
  6336. ]
  6337. ))
  6338. characterMakers.push(() => makeCharacter(
  6339. { name: "Danni Rosie" },
  6340. {
  6341. front: {
  6342. height: math.unit(6, "feet"),
  6343. weight: math.unit(180, "lbs"),
  6344. name: "Front",
  6345. image: {
  6346. source: "./media/characters/danni-rosie/front.svg",
  6347. extra: 1260 / 1128,
  6348. bottom: 0.022
  6349. }
  6350. },
  6351. },
  6352. [
  6353. {
  6354. name: "Micro",
  6355. height: math.unit(2, "inches"),
  6356. default: true
  6357. },
  6358. ]
  6359. ))
  6360. characterMakers.push(() => makeCharacter(
  6361. { name: "Samantha Kruse" },
  6362. {
  6363. front: {
  6364. height: math.unit(5 + 9 / 12, "feet"),
  6365. weight: math.unit(220, "lb"),
  6366. name: "Front",
  6367. image: {
  6368. source: "./media/characters/samantha-kruse/front.svg",
  6369. extra: (985 / 935),
  6370. bottom: 0.03
  6371. }
  6372. },
  6373. frontUndressed: {
  6374. height: math.unit(5 + 9 / 12, "feet"),
  6375. weight: math.unit(220, "lb"),
  6376. name: "Front (Undressed)",
  6377. image: {
  6378. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6379. extra: (973 / 923),
  6380. bottom: 0.025
  6381. }
  6382. },
  6383. fat: {
  6384. height: math.unit(5 + 9 / 12, "feet"),
  6385. weight: math.unit(900, "lb"),
  6386. name: "Front (Fat)",
  6387. image: {
  6388. source: "./media/characters/samantha-kruse/fat.svg",
  6389. extra: 2688 / 2561
  6390. }
  6391. },
  6392. },
  6393. [
  6394. {
  6395. name: "Normal",
  6396. height: math.unit(5 + 9 / 12, "feet"),
  6397. default: true
  6398. }
  6399. ]
  6400. ))
  6401. characterMakers.push(() => makeCharacter(
  6402. { name: "Amelia Rosie" },
  6403. {
  6404. back: {
  6405. height: math.unit(5 + 4 / 12, "feet"),
  6406. weight: math.unit(4963, "lb"),
  6407. name: "Back",
  6408. image: {
  6409. source: "./media/characters/amelia-rosie/back.svg",
  6410. extra: 1113 / 963,
  6411. bottom: 0.01
  6412. }
  6413. },
  6414. },
  6415. [
  6416. {
  6417. name: "Level 0",
  6418. height: math.unit(5 + 4 / 12, "feet")
  6419. },
  6420. {
  6421. name: "Level 1",
  6422. height: math.unit(164597, "feet"),
  6423. default: true
  6424. },
  6425. {
  6426. name: "Level 2",
  6427. height: math.unit(956243, "miles")
  6428. },
  6429. {
  6430. name: "Level 3",
  6431. height: math.unit(29421709423, "miles")
  6432. },
  6433. {
  6434. name: "Level 4",
  6435. height: math.unit(154, "lightyears")
  6436. },
  6437. {
  6438. name: "Level 5",
  6439. height: math.unit(4738272, "lightyears")
  6440. },
  6441. {
  6442. name: "Level 6",
  6443. height: math.unit(145787152896, "lightyears")
  6444. },
  6445. ]
  6446. ))
  6447. characterMakers.push(() => makeCharacter(
  6448. { name: "Rook Kitara" },
  6449. {
  6450. front: {
  6451. height: math.unit(5 + 11 / 12, "feet"),
  6452. weight: math.unit(65, "kg"),
  6453. name: "Front",
  6454. image: {
  6455. source: "./media/characters/rook-kitara/front.svg",
  6456. extra: 1347 / 1274,
  6457. bottom: 0.005
  6458. }
  6459. },
  6460. },
  6461. [
  6462. {
  6463. name: "Totally Unfair",
  6464. height: math.unit(1.8, "mm")
  6465. },
  6466. {
  6467. name: "Lap Rookie",
  6468. height: math.unit(1.4, "feet")
  6469. },
  6470. {
  6471. name: "Normal",
  6472. height: math.unit(5 + 11 / 12, "feet"),
  6473. default: true
  6474. },
  6475. {
  6476. name: "How Did This Happen",
  6477. height: math.unit(80, "miles")
  6478. }
  6479. ]
  6480. ))
  6481. characterMakers.push(() => makeCharacter(
  6482. { name: "Pisces" },
  6483. {
  6484. front: {
  6485. height: math.unit(7, "feet"),
  6486. weight: math.unit(300, "lb"),
  6487. name: "Front",
  6488. image: {
  6489. source: "./media/characters/pisces/front.svg",
  6490. extra: 2255 / 2115,
  6491. bottom: 0.03
  6492. }
  6493. },
  6494. back: {
  6495. height: math.unit(7, "feet"),
  6496. weight: math.unit(300, "lb"),
  6497. name: "Back",
  6498. image: {
  6499. source: "./media/characters/pisces/back.svg",
  6500. extra: 2146 / 2055,
  6501. bottom: 0.04
  6502. }
  6503. },
  6504. },
  6505. [
  6506. {
  6507. name: "Normal",
  6508. height: math.unit(7, "feet"),
  6509. default: true
  6510. },
  6511. {
  6512. name: "Swimming Pool",
  6513. height: math.unit(12.2, "meters")
  6514. },
  6515. {
  6516. name: "Olympic Swimming Pool",
  6517. height: math.unit(56.3, "meters")
  6518. },
  6519. {
  6520. name: "Lake Superior",
  6521. height: math.unit(93900, "meters")
  6522. },
  6523. {
  6524. name: "Mediterranean Sea",
  6525. height: math.unit(644457, "meters")
  6526. },
  6527. {
  6528. name: "World's Oceans",
  6529. height: math.unit(4567491, "meters")
  6530. },
  6531. ]
  6532. ))
  6533. characterMakers.push(() => makeCharacter(
  6534. { name: "Zelas" },
  6535. {
  6536. front: {
  6537. height: math.unit(2.3, "meters"),
  6538. weight: math.unit(120, "kg"),
  6539. name: "Front",
  6540. image: {
  6541. source: "./media/characters/zelas/front.svg"
  6542. }
  6543. },
  6544. side: {
  6545. height: math.unit(2.3, "meters"),
  6546. weight: math.unit(120, "kg"),
  6547. name: "Side",
  6548. image: {
  6549. source: "./media/characters/zelas/side.svg"
  6550. }
  6551. },
  6552. back: {
  6553. height: math.unit(2.3, "meters"),
  6554. weight: math.unit(120, "kg"),
  6555. name: "Back",
  6556. image: {
  6557. source: "./media/characters/zelas/back.svg"
  6558. }
  6559. },
  6560. foot: {
  6561. height: math.unit(1.116, "feet"),
  6562. name: "Foot",
  6563. image: {
  6564. source: "./media/characters/zelas/foot.svg"
  6565. }
  6566. },
  6567. },
  6568. [
  6569. {
  6570. name: "Normal",
  6571. height: math.unit(2.3, "meters")
  6572. },
  6573. {
  6574. name: "Macro",
  6575. height: math.unit(30, "meters"),
  6576. default: true
  6577. },
  6578. ]
  6579. ))
  6580. characterMakers.push(() => makeCharacter(
  6581. { name: "Talbot" },
  6582. {
  6583. front: {
  6584. height: math.unit(1, "inch"),
  6585. weight: math.unit(0.21, "grams"),
  6586. name: "Front",
  6587. image: {
  6588. source: "./media/characters/talbot/front.svg",
  6589. extra: 594 / 544
  6590. }
  6591. },
  6592. },
  6593. [
  6594. {
  6595. name: "Micro",
  6596. height: math.unit(1, "inch"),
  6597. default: true
  6598. },
  6599. ]
  6600. ))
  6601. characterMakers.push(() => makeCharacter(
  6602. { name: "Fliss" },
  6603. {
  6604. front: {
  6605. height: math.unit(3 + 3 / 12, "feet"),
  6606. weight: math.unit(51.8, "lb"),
  6607. name: "Front",
  6608. image: {
  6609. source: "./media/characters/fliss/front.svg",
  6610. extra: 840 / 640
  6611. }
  6612. },
  6613. },
  6614. [
  6615. {
  6616. name: "Teeny Tiny",
  6617. height: math.unit(1, "mm")
  6618. },
  6619. {
  6620. name: "Small",
  6621. height: math.unit(1, "inch"),
  6622. default: true
  6623. },
  6624. {
  6625. name: "Standard Sylveon",
  6626. height: math.unit(3 + 3 / 12, "feet")
  6627. },
  6628. {
  6629. name: "Large Nuisance",
  6630. height: math.unit(33, "feet")
  6631. },
  6632. {
  6633. name: "City Filler",
  6634. height: math.unit(3000, "feet")
  6635. },
  6636. {
  6637. name: "New Horizon",
  6638. height: math.unit(6000, "miles")
  6639. },
  6640. ]
  6641. ))
  6642. characterMakers.push(() => makeCharacter(
  6643. { name: "Fleta" },
  6644. {
  6645. front: {
  6646. height: math.unit(5, "cm"),
  6647. weight: math.unit(1.94, "g"),
  6648. name: "Front",
  6649. image: {
  6650. source: "./media/characters/fleta/front.svg",
  6651. extra: 835 / 803
  6652. }
  6653. },
  6654. back: {
  6655. height: math.unit(5, "cm"),
  6656. weight: math.unit(1.94, "g"),
  6657. name: "Back",
  6658. image: {
  6659. source: "./media/characters/fleta/back.svg",
  6660. extra: 835 / 803
  6661. }
  6662. },
  6663. },
  6664. [
  6665. {
  6666. name: "Micro",
  6667. height: math.unit(5, "cm"),
  6668. default: true
  6669. },
  6670. ]
  6671. ))
  6672. characterMakers.push(() => makeCharacter(
  6673. { name: "Dominic" },
  6674. {
  6675. front: {
  6676. height: math.unit(6, "feet"),
  6677. weight: math.unit(225, "lb"),
  6678. name: "Front",
  6679. image: {
  6680. source: "./media/characters/dominic/front.svg",
  6681. extra: 1770 / 1620,
  6682. bottom: 0.025
  6683. }
  6684. },
  6685. back: {
  6686. height: math.unit(6, "feet"),
  6687. weight: math.unit(225, "lb"),
  6688. name: "Back",
  6689. image: {
  6690. source: "./media/characters/dominic/back.svg",
  6691. extra: 1745 / 1620,
  6692. bottom: 0.065
  6693. }
  6694. },
  6695. },
  6696. [
  6697. {
  6698. name: "Nano",
  6699. height: math.unit(0.1, "mm")
  6700. },
  6701. {
  6702. name: "Micro-",
  6703. height: math.unit(1, "mm")
  6704. },
  6705. {
  6706. name: "Micro",
  6707. height: math.unit(4, "inches")
  6708. },
  6709. {
  6710. name: "Normal",
  6711. height: math.unit(6 + 4 / 12, "feet"),
  6712. default: true
  6713. },
  6714. {
  6715. name: "Macro",
  6716. height: math.unit(115, "feet")
  6717. },
  6718. {
  6719. name: "Macro+",
  6720. height: math.unit(955, "feet")
  6721. },
  6722. {
  6723. name: "Megamacro",
  6724. height: math.unit(8990, "feet")
  6725. },
  6726. {
  6727. name: "Gigmacro",
  6728. height: math.unit(9310, "miles")
  6729. },
  6730. {
  6731. name: "Teramacro",
  6732. height: math.unit(1567005010, "miles")
  6733. },
  6734. {
  6735. name: "Examacro",
  6736. height: math.unit(1425, "parsecs")
  6737. },
  6738. ]
  6739. ))
  6740. characterMakers.push(() => makeCharacter(
  6741. { name: "Major Colonel" },
  6742. {
  6743. front: {
  6744. height: math.unit(400, "feet"),
  6745. weight: math.unit(44444444, "lb"),
  6746. name: "Front",
  6747. image: {
  6748. source: "./media/characters/major-colonel/front.svg"
  6749. }
  6750. },
  6751. back: {
  6752. height: math.unit(400, "feet"),
  6753. weight: math.unit(44444444, "lb"),
  6754. name: "Back",
  6755. image: {
  6756. source: "./media/characters/major-colonel/back.svg"
  6757. }
  6758. },
  6759. },
  6760. [
  6761. {
  6762. name: "Macro",
  6763. height: math.unit(400, "feet"),
  6764. default: true
  6765. },
  6766. ]
  6767. ))
  6768. characterMakers.push(() => makeCharacter(
  6769. { name: "Axel Lycan" },
  6770. {
  6771. front: {
  6772. height: math.unit(6, "feet"),
  6773. weight: math.unit(120, "lb"),
  6774. name: "Front",
  6775. image: {
  6776. source: "./media/characters/axel-lycan/front.svg",
  6777. extra: 1,
  6778. bottom: 0.08
  6779. }
  6780. },
  6781. },
  6782. [
  6783. {
  6784. name: "Macro",
  6785. height: math.unit(1, "km"),
  6786. default: true
  6787. },
  6788. ]
  6789. ))
  6790. characterMakers.push(() => makeCharacter(
  6791. { name: "Vanrel (Hyena)" },
  6792. {
  6793. front: {
  6794. height: math.unit(5 + 9 / 12, "feet"),
  6795. weight: math.unit(175, "lb"),
  6796. name: "Front",
  6797. image: {
  6798. source: "./media/characters/vanrel-hyena/front.svg",
  6799. extra: 1086 / 1010,
  6800. bottom: 0.04
  6801. }
  6802. },
  6803. },
  6804. [
  6805. {
  6806. name: "Normal",
  6807. height: math.unit(5 + 9 / 12, "feet"),
  6808. default: true
  6809. },
  6810. ]
  6811. ))
  6812. characterMakers.push(() => makeCharacter(
  6813. { name: "Abbott Absol" },
  6814. {
  6815. front: {
  6816. height: math.unit(6, "feet"),
  6817. weight: math.unit(103, "lb"),
  6818. name: "Front",
  6819. image: {
  6820. source: "./media/characters/abbott-absol/front.svg",
  6821. extra: 2010 / 1842
  6822. }
  6823. },
  6824. },
  6825. [
  6826. {
  6827. name: "Megamicro",
  6828. height: math.unit(0.1, "mm")
  6829. },
  6830. {
  6831. name: "Micro",
  6832. height: math.unit(1, "inch")
  6833. },
  6834. {
  6835. name: "Normal",
  6836. height: math.unit(6, "feet"),
  6837. default: true
  6838. },
  6839. ]
  6840. ))
  6841. characterMakers.push(() => makeCharacter(
  6842. { name: "Hector" },
  6843. {
  6844. front: {
  6845. height: math.unit(6, "feet"),
  6846. weight: math.unit(264, "lb"),
  6847. name: "Front",
  6848. image: {
  6849. source: "./media/characters/hector/front.svg",
  6850. extra: 2280 / 2130,
  6851. bottom: 0.07
  6852. }
  6853. },
  6854. },
  6855. [
  6856. {
  6857. name: "Normal",
  6858. height: math.unit(12.25, "foot"),
  6859. default: true
  6860. },
  6861. {
  6862. name: "Macro",
  6863. height: math.unit(160, "feet")
  6864. },
  6865. ]
  6866. ))
  6867. characterMakers.push(() => makeCharacter(
  6868. { name: "Sal" },
  6869. {
  6870. front: {
  6871. height: math.unit(6, "feet"),
  6872. weight: math.unit(150, "lb"),
  6873. name: "Front",
  6874. image: {
  6875. source: "./media/characters/sal/front.svg",
  6876. extra: 1846 / 1699,
  6877. bottom: 0.04
  6878. }
  6879. },
  6880. },
  6881. [
  6882. {
  6883. name: "Megamacro",
  6884. height: math.unit(10, "miles"),
  6885. default: true
  6886. },
  6887. ]
  6888. ))
  6889. characterMakers.push(() => makeCharacter(
  6890. { name: "Ranger" },
  6891. {
  6892. front: {
  6893. height: math.unit(3, "meters"),
  6894. weight: math.unit(450, "kg"),
  6895. name: "front",
  6896. image: {
  6897. source: "./media/characters/ranger/front.svg",
  6898. extra: 2401 / 2243,
  6899. bottom: 0.05
  6900. }
  6901. },
  6902. },
  6903. [
  6904. {
  6905. name: "Normal",
  6906. height: math.unit(3, "meters"),
  6907. default: true
  6908. },
  6909. ]
  6910. ))
  6911. characterMakers.push(() => makeCharacter(
  6912. { name: "Theresa" },
  6913. {
  6914. front: {
  6915. height: math.unit(14, "feet"),
  6916. weight: math.unit(800, "kg"),
  6917. name: "Front",
  6918. image: {
  6919. source: "./media/characters/theresa/front.svg",
  6920. extra: 3575 / 3346,
  6921. bottom: 0.03
  6922. }
  6923. },
  6924. },
  6925. [
  6926. {
  6927. name: "Normal",
  6928. height: math.unit(14, "feet"),
  6929. default: true
  6930. },
  6931. ]
  6932. ))
  6933. characterMakers.push(() => makeCharacter(
  6934. { name: "Ine" },
  6935. {
  6936. front: {
  6937. height: math.unit(6, "feet"),
  6938. weight: math.unit(3, "kg"),
  6939. name: "Front",
  6940. image: {
  6941. source: "./media/characters/ine/front.svg",
  6942. extra: 678 / 539,
  6943. bottom: 0.023
  6944. }
  6945. },
  6946. },
  6947. [
  6948. {
  6949. name: "Normal",
  6950. height: math.unit(2.265, "feet"),
  6951. default: true
  6952. },
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Vial" },
  6957. {
  6958. front: {
  6959. height: math.unit(5, "feet"),
  6960. weight: math.unit(30, "kg"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/vial/front.svg",
  6964. extra: 1365 / 1277,
  6965. bottom: 0.04
  6966. }
  6967. },
  6968. },
  6969. [
  6970. {
  6971. name: "Normal",
  6972. height: math.unit(5, "feet"),
  6973. default: true
  6974. },
  6975. ]
  6976. ))
  6977. characterMakers.push(() => makeCharacter(
  6978. { name: "Rovoska" },
  6979. {
  6980. side: {
  6981. height: math.unit(3.4, "meters"),
  6982. weight: math.unit(1000, "lb"),
  6983. name: "Side",
  6984. image: {
  6985. source: "./media/characters/rovoska/side.svg",
  6986. extra: 4403 / 1515
  6987. }
  6988. },
  6989. },
  6990. [
  6991. {
  6992. name: "Normal",
  6993. height: math.unit(3.4, "meters"),
  6994. default: true
  6995. },
  6996. ]
  6997. ))
  6998. characterMakers.push(() => makeCharacter(
  6999. { name: "Gunner Rotthbauer" },
  7000. {
  7001. front: {
  7002. height: math.unit(8, "feet"),
  7003. weight: math.unit(315, "lb"),
  7004. name: "Front",
  7005. image: {
  7006. source: "./media/characters/gunner-rotthbauer/front.svg"
  7007. }
  7008. },
  7009. back: {
  7010. height: math.unit(8, "feet"),
  7011. weight: math.unit(315, "lb"),
  7012. name: "Back",
  7013. image: {
  7014. source: "./media/characters/gunner-rotthbauer/back.svg"
  7015. }
  7016. },
  7017. },
  7018. [
  7019. {
  7020. name: "Micro",
  7021. height: math.unit(3.5, "inches")
  7022. },
  7023. {
  7024. name: "Normal",
  7025. height: math.unit(8, "feet"),
  7026. default: true
  7027. },
  7028. {
  7029. name: "Macro",
  7030. height: math.unit(250, "feet")
  7031. },
  7032. {
  7033. name: "Megamacro",
  7034. height: math.unit(1, "AU")
  7035. },
  7036. ]
  7037. ))
  7038. characterMakers.push(() => makeCharacter(
  7039. { name: "Allatia" },
  7040. {
  7041. front: {
  7042. height: math.unit(5 + 5 / 12, "feet"),
  7043. weight: math.unit(140, "lb"),
  7044. name: "Front",
  7045. image: {
  7046. source: "./media/characters/allatia/front.svg",
  7047. extra: 1227 / 1180,
  7048. bottom: 0.027
  7049. }
  7050. },
  7051. },
  7052. [
  7053. {
  7054. name: "Normal",
  7055. height: math.unit(5 + 5 / 12, "feet")
  7056. },
  7057. {
  7058. name: "Macro",
  7059. height: math.unit(250, "feet"),
  7060. default: true
  7061. },
  7062. {
  7063. name: "Megamacro",
  7064. height: math.unit(8, "miles")
  7065. }
  7066. ]
  7067. ))
  7068. characterMakers.push(() => makeCharacter(
  7069. { name: "Tene" },
  7070. {
  7071. front: {
  7072. height: math.unit(6, "feet"),
  7073. weight: math.unit(120, "lb"),
  7074. name: "Front",
  7075. image: {
  7076. source: "./media/characters/tene/front.svg",
  7077. extra: 1728 / 1578,
  7078. bottom: 0.022
  7079. }
  7080. },
  7081. stomping: {
  7082. height: math.unit(2.025, "meters"),
  7083. weight: math.unit(120, "lb"),
  7084. name: "Stomping",
  7085. image: {
  7086. source: "./media/characters/tene/stomping.svg",
  7087. extra: 938 / 873,
  7088. bottom: 0.01
  7089. }
  7090. },
  7091. sitting: {
  7092. height: math.unit(1, "meter"),
  7093. weight: math.unit(120, "lb"),
  7094. name: "Sitting",
  7095. image: {
  7096. source: "./media/characters/tene/sitting.svg",
  7097. extra: 437 / 415,
  7098. bottom: 0.1
  7099. }
  7100. },
  7101. feral: {
  7102. height: math.unit(3.9, "feet"),
  7103. weight: math.unit(250, "lb"),
  7104. name: "Feral",
  7105. image: {
  7106. source: "./media/characters/tene/feral.svg",
  7107. extra: 717 / 458,
  7108. bottom: 0.179
  7109. }
  7110. },
  7111. },
  7112. [
  7113. {
  7114. name: "Normal",
  7115. height: math.unit(6, "feet")
  7116. },
  7117. {
  7118. name: "Macro",
  7119. height: math.unit(300, "feet"),
  7120. default: true
  7121. },
  7122. {
  7123. name: "Megamacro",
  7124. height: math.unit(5, "miles")
  7125. },
  7126. ]
  7127. ))
  7128. characterMakers.push(() => makeCharacter(
  7129. { name: "Evander" },
  7130. {
  7131. side: {
  7132. height: math.unit(6, "feet"),
  7133. name: "Side",
  7134. image: {
  7135. source: "./media/characters/evander/side.svg",
  7136. extra: 877 / 477
  7137. }
  7138. },
  7139. },
  7140. [
  7141. {
  7142. name: "Normal",
  7143. height: math.unit(0.83, "meters"),
  7144. default: true
  7145. },
  7146. ]
  7147. ))
  7148. characterMakers.push(() => makeCharacter(
  7149. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7150. {
  7151. front: {
  7152. height: math.unit(12, "feet"),
  7153. weight: math.unit(1000, "lb"),
  7154. name: "Front",
  7155. image: {
  7156. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7157. extra: 1762 / 1611
  7158. }
  7159. },
  7160. back: {
  7161. height: math.unit(12, "feet"),
  7162. weight: math.unit(1000, "lb"),
  7163. name: "Back",
  7164. image: {
  7165. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7166. extra: 1762 / 1611
  7167. }
  7168. },
  7169. },
  7170. [
  7171. {
  7172. name: "Normal",
  7173. height: math.unit(12, "feet"),
  7174. default: true
  7175. },
  7176. {
  7177. name: "Kaiju",
  7178. height: math.unit(150, "feet")
  7179. },
  7180. ]
  7181. ))
  7182. characterMakers.push(() => makeCharacter(
  7183. { name: "Zero Alurus" },
  7184. {
  7185. front: {
  7186. height: math.unit(6, "feet"),
  7187. weight: math.unit(150, "lb"),
  7188. name: "Front",
  7189. image: {
  7190. source: "./media/characters/zero-alurus/front.svg"
  7191. }
  7192. },
  7193. back: {
  7194. height: math.unit(6, "feet"),
  7195. weight: math.unit(150, "lb"),
  7196. name: "Back",
  7197. image: {
  7198. source: "./media/characters/zero-alurus/back.svg"
  7199. }
  7200. },
  7201. },
  7202. [
  7203. {
  7204. name: "Normal",
  7205. height: math.unit(5 + 10 / 12, "feet")
  7206. },
  7207. {
  7208. name: "Macro",
  7209. height: math.unit(60, "feet"),
  7210. default: true
  7211. },
  7212. {
  7213. name: "Macro+",
  7214. height: math.unit(450, "feet")
  7215. },
  7216. ]
  7217. ))
  7218. characterMakers.push(() => makeCharacter(
  7219. { name: "Mega Shi" },
  7220. {
  7221. front: {
  7222. height: math.unit(6, "feet"),
  7223. weight: math.unit(200, "lb"),
  7224. name: "Front",
  7225. image: {
  7226. source: "./media/characters/mega-shi/front.svg",
  7227. extra: 1279 / 1250,
  7228. bottom: 0.02
  7229. }
  7230. },
  7231. back: {
  7232. height: math.unit(6, "feet"),
  7233. weight: math.unit(200, "lb"),
  7234. name: "Back",
  7235. image: {
  7236. source: "./media/characters/mega-shi/back.svg",
  7237. extra: 1279 / 1250,
  7238. bottom: 0.02
  7239. }
  7240. },
  7241. },
  7242. [
  7243. {
  7244. name: "Micro",
  7245. height: math.unit(16 + 6 / 12, "feet")
  7246. },
  7247. {
  7248. name: "Normal",
  7249. height: math.unit(660, "feet"),
  7250. default: true
  7251. },
  7252. {
  7253. name: "Megamacro",
  7254. height: math.unit(10, "miles")
  7255. },
  7256. {
  7257. name: "Planetary Launch",
  7258. height: math.unit(500, "miles")
  7259. },
  7260. {
  7261. name: "Interstellar",
  7262. height: math.unit(1e9, "miles")
  7263. },
  7264. {
  7265. name: "Leaving the Universe",
  7266. height: math.unit(1, "gigaparsec")
  7267. },
  7268. {
  7269. name: "Travelling Universes",
  7270. height: math.unit(30e15, "parsecs")
  7271. },
  7272. ]
  7273. ))
  7274. characterMakers.push(() => makeCharacter(
  7275. { name: "Odyssey" },
  7276. {
  7277. front: {
  7278. height: math.unit(6, "feet"),
  7279. weight: math.unit(150, "lb"),
  7280. name: "Front",
  7281. image: {
  7282. source: "./media/characters/odyssey/front.svg",
  7283. extra: 1782 / 1582,
  7284. bottom: 0.01
  7285. }
  7286. },
  7287. side: {
  7288. height: math.unit(5.6, "feet"),
  7289. weight: math.unit(140, "lb"),
  7290. name: "Side",
  7291. image: {
  7292. source: "./media/characters/odyssey/side.svg",
  7293. extra: 6462 / 5700
  7294. }
  7295. },
  7296. },
  7297. [
  7298. {
  7299. name: "Normal",
  7300. height: math.unit(5 + 4 / 12, "feet")
  7301. },
  7302. {
  7303. name: "Macro",
  7304. height: math.unit(1, "km")
  7305. },
  7306. {
  7307. name: "Megamacro",
  7308. height: math.unit(3000, "km")
  7309. },
  7310. {
  7311. name: "Gigamacro",
  7312. height: math.unit(1, "AU"),
  7313. default: true
  7314. },
  7315. {
  7316. name: "Omniversal",
  7317. height: math.unit(100e14, "lightyears")
  7318. },
  7319. ]
  7320. ))
  7321. characterMakers.push(() => makeCharacter(
  7322. { name: "Mekuto" },
  7323. {
  7324. front: {
  7325. height: math.unit(6, "feet"),
  7326. weight: math.unit(300, "lb"),
  7327. name: "Front",
  7328. image: {
  7329. source: "./media/characters/mekuto/front.svg",
  7330. extra: 921 / 832,
  7331. bottom: 0.03
  7332. }
  7333. },
  7334. hand: {
  7335. height: math.unit(6 / 10.24, "feet"),
  7336. name: "Hand",
  7337. image: {
  7338. source: "./media/characters/mekuto/hand.svg"
  7339. }
  7340. },
  7341. foot: {
  7342. height: math.unit(6 / 5.05, "feet"),
  7343. name: "Foot",
  7344. image: {
  7345. source: "./media/characters/mekuto/foot.svg"
  7346. }
  7347. },
  7348. },
  7349. [
  7350. {
  7351. name: "Minimicro",
  7352. height: math.unit(0.2, "inches")
  7353. },
  7354. {
  7355. name: "Micro",
  7356. height: math.unit(1.5, "inches")
  7357. },
  7358. {
  7359. name: "Normal",
  7360. height: math.unit(5 + 11 / 12, "feet"),
  7361. default: true
  7362. },
  7363. {
  7364. name: "Minimacro",
  7365. height: math.unit(17 + 9 / 12, "feet")
  7366. },
  7367. {
  7368. name: "Macro",
  7369. height: math.unit(177.5, "feet")
  7370. },
  7371. {
  7372. name: "Megamacro",
  7373. height: math.unit(152, "miles")
  7374. },
  7375. ]
  7376. ))
  7377. characterMakers.push(() => makeCharacter(
  7378. { name: "Dafydd Tomos" },
  7379. {
  7380. front: {
  7381. height: math.unit(6.5, "inches"),
  7382. weight: math.unit(13, "oz"),
  7383. name: "Front",
  7384. image: {
  7385. source: "./media/characters/dafydd-tomos/front.svg",
  7386. extra: 2990 / 2603,
  7387. bottom: 0.03
  7388. }
  7389. },
  7390. },
  7391. [
  7392. {
  7393. name: "Micro",
  7394. height: math.unit(6.5, "inches"),
  7395. default: true
  7396. },
  7397. ]
  7398. ))
  7399. characterMakers.push(() => makeCharacter(
  7400. { name: "Splinter" },
  7401. {
  7402. front: {
  7403. height: math.unit(6, "feet"),
  7404. weight: math.unit(150, "lb"),
  7405. name: "Front",
  7406. image: {
  7407. source: "./media/characters/splinter/front.svg",
  7408. extra: 2990 / 2882,
  7409. bottom: 0.04
  7410. }
  7411. },
  7412. back: {
  7413. height: math.unit(6, "feet"),
  7414. weight: math.unit(150, "lb"),
  7415. name: "Back",
  7416. image: {
  7417. source: "./media/characters/splinter/back.svg",
  7418. extra: 2990 / 2882,
  7419. bottom: 0.04
  7420. }
  7421. },
  7422. },
  7423. [
  7424. {
  7425. name: "Normal",
  7426. height: math.unit(6, "feet")
  7427. },
  7428. {
  7429. name: "Macro",
  7430. height: math.unit(230, "meters"),
  7431. default: true
  7432. },
  7433. ]
  7434. ))
  7435. characterMakers.push(() => makeCharacter(
  7436. { name: "SnowGabumon" },
  7437. {
  7438. front: {
  7439. height: math.unit(4 + 10 / 12, "feet"),
  7440. weight: math.unit(480, "lb"),
  7441. name: "Front",
  7442. image: {
  7443. source: "./media/characters/snow-gabumon/front.svg",
  7444. extra: 1140 / 963,
  7445. bottom: 0.058
  7446. }
  7447. },
  7448. back: {
  7449. height: math.unit(4 + 10 / 12, "feet"),
  7450. weight: math.unit(480, "lb"),
  7451. name: "Back",
  7452. image: {
  7453. source: "./media/characters/snow-gabumon/back.svg",
  7454. extra: 1115 / 962,
  7455. bottom: 0.041
  7456. }
  7457. },
  7458. frontUndresed: {
  7459. height: math.unit(4 + 10 / 12, "feet"),
  7460. weight: math.unit(480, "lb"),
  7461. name: "Front (Undressed)",
  7462. image: {
  7463. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7464. extra: 1061 / 960,
  7465. bottom: 0.045
  7466. }
  7467. },
  7468. },
  7469. [
  7470. {
  7471. name: "Micro",
  7472. height: math.unit(1, "inch")
  7473. },
  7474. {
  7475. name: "Normal",
  7476. height: math.unit(4 + 10 / 12, "feet"),
  7477. default: true
  7478. },
  7479. {
  7480. name: "Macro",
  7481. height: math.unit(200, "feet")
  7482. },
  7483. {
  7484. name: "Megamacro",
  7485. height: math.unit(120, "miles")
  7486. },
  7487. {
  7488. name: "Gigamacro",
  7489. height: math.unit(9800, "miles")
  7490. },
  7491. ]
  7492. ))
  7493. characterMakers.push(() => makeCharacter(
  7494. { name: "Moody" },
  7495. {
  7496. front: {
  7497. height: math.unit(1.7, "meters"),
  7498. weight: math.unit(140, "lb"),
  7499. name: "Front",
  7500. image: {
  7501. source: "./media/characters/moody/front.svg",
  7502. extra: 3226 / 3007,
  7503. bottom: 0.087
  7504. }
  7505. },
  7506. },
  7507. [
  7508. {
  7509. name: "Micro",
  7510. height: math.unit(1, "mm")
  7511. },
  7512. {
  7513. name: "Normal",
  7514. height: math.unit(1.7, "meters"),
  7515. default: true
  7516. },
  7517. {
  7518. name: "Macro",
  7519. height: math.unit(80, "meters")
  7520. },
  7521. {
  7522. name: "Macro+",
  7523. height: math.unit(500, "meters")
  7524. },
  7525. ]
  7526. ))
  7527. characterMakers.push(() => makeCharacter(
  7528. { name: "Zyas" },
  7529. {
  7530. front: {
  7531. height: math.unit(6, "feet"),
  7532. weight: math.unit(150, "lb"),
  7533. name: "Front",
  7534. image: {
  7535. source: "./media/characters/zyas/front.svg",
  7536. extra: 1180 / 1120,
  7537. bottom: 0.045
  7538. }
  7539. },
  7540. },
  7541. [
  7542. {
  7543. name: "Normal",
  7544. height: math.unit(10, "feet"),
  7545. default: true
  7546. },
  7547. {
  7548. name: "Macro",
  7549. height: math.unit(500, "feet")
  7550. },
  7551. {
  7552. name: "Megamacro",
  7553. height: math.unit(5, "miles")
  7554. },
  7555. {
  7556. name: "Teramacro",
  7557. height: math.unit(150000, "miles")
  7558. },
  7559. ]
  7560. ))
  7561. characterMakers.push(() => makeCharacter(
  7562. { name: "Cuon" },
  7563. {
  7564. front: {
  7565. height: math.unit(6, "feet"),
  7566. weight: math.unit(150, "lb"),
  7567. name: "Front",
  7568. image: {
  7569. source: "./media/characters/cuon/front.svg",
  7570. extra: 1390 / 1320,
  7571. bottom: 0.008
  7572. }
  7573. },
  7574. },
  7575. [
  7576. {
  7577. name: "Micro",
  7578. height: math.unit(3, "inches")
  7579. },
  7580. {
  7581. name: "Normal",
  7582. height: math.unit(18 + 9 / 12, "feet"),
  7583. default: true
  7584. },
  7585. {
  7586. name: "Macro",
  7587. height: math.unit(360, "feet")
  7588. },
  7589. {
  7590. name: "Megamacro",
  7591. height: math.unit(360, "miles")
  7592. },
  7593. ]
  7594. ))
  7595. characterMakers.push(() => makeCharacter(
  7596. { name: "Nyanuxk" },
  7597. {
  7598. front: {
  7599. height: math.unit(2.4, "meters"),
  7600. weight: math.unit(70, "kg"),
  7601. name: "Front",
  7602. image: {
  7603. source: "./media/characters/nyanuxk/front.svg",
  7604. extra: 1172 / 1084,
  7605. bottom: 0.065
  7606. }
  7607. },
  7608. side: {
  7609. height: math.unit(2.4, "meters"),
  7610. weight: math.unit(70, "kg"),
  7611. name: "Side",
  7612. image: {
  7613. source: "./media/characters/nyanuxk/side.svg",
  7614. extra: 1190 / 1132,
  7615. bottom: 0.007
  7616. }
  7617. },
  7618. back: {
  7619. height: math.unit(2.4, "meters"),
  7620. weight: math.unit(70, "kg"),
  7621. name: "Back",
  7622. image: {
  7623. source: "./media/characters/nyanuxk/back.svg",
  7624. extra: 1200 / 1141,
  7625. bottom: 0.015
  7626. }
  7627. },
  7628. foot: {
  7629. height: math.unit(0.52, "meters"),
  7630. name: "Foot",
  7631. image: {
  7632. source: "./media/characters/nyanuxk/foot.svg"
  7633. }
  7634. },
  7635. },
  7636. [
  7637. {
  7638. name: "Micro",
  7639. height: math.unit(2, "cm")
  7640. },
  7641. {
  7642. name: "Normal",
  7643. height: math.unit(2.4, "meters"),
  7644. default: true
  7645. },
  7646. {
  7647. name: "Smaller Macro",
  7648. height: math.unit(120, "meters")
  7649. },
  7650. {
  7651. name: "Bigger Macro",
  7652. height: math.unit(1.2, "km")
  7653. },
  7654. {
  7655. name: "Megamacro",
  7656. height: math.unit(15, "kilometers")
  7657. },
  7658. {
  7659. name: "Gigamacro",
  7660. height: math.unit(2000, "km")
  7661. },
  7662. {
  7663. name: "Teramacro",
  7664. height: math.unit(500000, "km")
  7665. },
  7666. ]
  7667. ))
  7668. characterMakers.push(() => makeCharacter(
  7669. { name: "Ailbhe" },
  7670. {
  7671. side: {
  7672. height: math.unit(6, "feet"),
  7673. name: "Side",
  7674. image: {
  7675. source: "./media/characters/ailbhe/side.svg",
  7676. extra: 757 / 464,
  7677. bottom: 0.041
  7678. }
  7679. },
  7680. },
  7681. [
  7682. {
  7683. name: "Normal",
  7684. height: math.unit(1.07, "meters"),
  7685. default: true
  7686. },
  7687. ]
  7688. ))
  7689. characterMakers.push(() => makeCharacter(
  7690. { name: "Zevulfius" },
  7691. {
  7692. front: {
  7693. height: math.unit(6, "feet"),
  7694. weight: math.unit(120, "kg"),
  7695. name: "Front",
  7696. image: {
  7697. source: "./media/characters/zevulfius/front.svg",
  7698. extra: 965 / 903
  7699. }
  7700. },
  7701. side: {
  7702. height: math.unit(6, "feet"),
  7703. weight: math.unit(120, "kg"),
  7704. name: "Side",
  7705. image: {
  7706. source: "./media/characters/zevulfius/side.svg",
  7707. extra: 939 / 900
  7708. }
  7709. },
  7710. back: {
  7711. height: math.unit(6, "feet"),
  7712. weight: math.unit(120, "kg"),
  7713. name: "Back",
  7714. image: {
  7715. source: "./media/characters/zevulfius/back.svg",
  7716. extra: 918 / 854,
  7717. bottom: 0.005
  7718. }
  7719. },
  7720. foot: {
  7721. height: math.unit(6 / 3.72, "feet"),
  7722. name: "Foot",
  7723. image: {
  7724. source: "./media/characters/zevulfius/foot.svg"
  7725. }
  7726. },
  7727. },
  7728. [
  7729. {
  7730. name: "Macro",
  7731. height: math.unit(750, "meters")
  7732. },
  7733. {
  7734. name: "Megamacro",
  7735. height: math.unit(20, "km"),
  7736. default: true
  7737. },
  7738. {
  7739. name: "Gigamacro",
  7740. height: math.unit(2000, "km")
  7741. },
  7742. {
  7743. name: "Teramacro",
  7744. height: math.unit(250000, "km")
  7745. },
  7746. ]
  7747. ))
  7748. characterMakers.push(() => makeCharacter(
  7749. { name: "Rikes" },
  7750. {
  7751. front: {
  7752. height: math.unit(100, "feet"),
  7753. weight: math.unit(350, "kg"),
  7754. name: "Front",
  7755. image: {
  7756. source: "./media/characters/rikes/front.svg",
  7757. extra: 1565 / 1483,
  7758. bottom: 0.017
  7759. }
  7760. },
  7761. },
  7762. [
  7763. {
  7764. name: "Macro",
  7765. height: math.unit(100, "feet"),
  7766. default: true
  7767. },
  7768. ]
  7769. ))
  7770. characterMakers.push(() => makeCharacter(
  7771. { name: "Adam Silver-Mane" },
  7772. {
  7773. anthro: {
  7774. height: math.unit(8, "feet"),
  7775. weight: math.unit(120, "kg"),
  7776. name: "Anthro",
  7777. image: {
  7778. source: "./media/characters/adam-silver-mane/anthro.svg",
  7779. extra: 5743 / 5339,
  7780. bottom: 0.07
  7781. }
  7782. },
  7783. taur: {
  7784. height: math.unit(16, "feet"),
  7785. weight: math.unit(1500, "kg"),
  7786. name: "Taur",
  7787. image: {
  7788. source: "./media/characters/adam-silver-mane/taur.svg",
  7789. extra: 1713 / 1571,
  7790. bottom: 0.01
  7791. }
  7792. },
  7793. },
  7794. [
  7795. {
  7796. name: "Normal",
  7797. height: math.unit(8, "feet")
  7798. },
  7799. {
  7800. name: "Minimacro",
  7801. height: math.unit(80, "feet")
  7802. },
  7803. {
  7804. name: "Macro",
  7805. height: math.unit(800, "feet"),
  7806. default: true
  7807. },
  7808. {
  7809. name: "Megamacro",
  7810. height: math.unit(8000, "feet")
  7811. },
  7812. {
  7813. name: "Gigamacro",
  7814. height: math.unit(800, "miles")
  7815. },
  7816. {
  7817. name: "Teramacro",
  7818. height: math.unit(80000, "miles")
  7819. },
  7820. {
  7821. name: "Celestial",
  7822. height: math.unit(8e6, "miles")
  7823. },
  7824. {
  7825. name: "Star Dragon",
  7826. height: math.unit(800000, "parsecs")
  7827. },
  7828. {
  7829. name: "Godly",
  7830. height: math.unit(800, "teraparsecs")
  7831. },
  7832. ]
  7833. ))
  7834. characterMakers.push(() => makeCharacter(
  7835. { name: "Ky'owin" },
  7836. {
  7837. front: {
  7838. height: math.unit(6, "feet"),
  7839. weight: math.unit(150, "lb"),
  7840. name: "Front",
  7841. image: {
  7842. source: "./media/characters/ky'owin/front.svg",
  7843. extra: 3888 / 3068,
  7844. bottom: 0.015
  7845. }
  7846. },
  7847. },
  7848. [
  7849. {
  7850. name: "Normal",
  7851. height: math.unit(6 + 8 / 12, "feet")
  7852. },
  7853. {
  7854. name: "Large",
  7855. height: math.unit(68, "feet")
  7856. },
  7857. {
  7858. name: "Macro",
  7859. height: math.unit(132, "feet")
  7860. },
  7861. {
  7862. name: "Macro+",
  7863. height: math.unit(340, "feet")
  7864. },
  7865. {
  7866. name: "Macro++",
  7867. height: math.unit(680, "feet"),
  7868. default: true
  7869. },
  7870. {
  7871. name: "Megamacro",
  7872. height: math.unit(1, "mile")
  7873. },
  7874. {
  7875. name: "Megamacro+",
  7876. height: math.unit(10, "miles")
  7877. },
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Mal" },
  7882. {
  7883. front: {
  7884. height: math.unit(4, "feet"),
  7885. weight: math.unit(50, "lb"),
  7886. name: "Front",
  7887. image: {
  7888. source: "./media/characters/mal/front.svg",
  7889. extra: 785 / 724,
  7890. bottom: 0.07
  7891. }
  7892. },
  7893. },
  7894. [
  7895. {
  7896. name: "Micro",
  7897. height: math.unit(4, "inches")
  7898. },
  7899. {
  7900. name: "Normal",
  7901. height: math.unit(4, "feet"),
  7902. default: true
  7903. },
  7904. {
  7905. name: "Macro",
  7906. height: math.unit(200, "feet")
  7907. },
  7908. ]
  7909. ))
  7910. characterMakers.push(() => makeCharacter(
  7911. { name: "Jordan Deware" },
  7912. {
  7913. front: {
  7914. height: math.unit(6, "feet"),
  7915. weight: math.unit(150, "lb"),
  7916. name: "Front",
  7917. image: {
  7918. source: "./media/characters/jordan-deware/front.svg",
  7919. extra: 1191 / 1012
  7920. }
  7921. },
  7922. },
  7923. [
  7924. {
  7925. name: "Nano",
  7926. height: math.unit(0.01, "mm")
  7927. },
  7928. {
  7929. name: "Minimicro",
  7930. height: math.unit(1, "mm")
  7931. },
  7932. {
  7933. name: "Micro",
  7934. height: math.unit(0.5, "inches")
  7935. },
  7936. {
  7937. name: "Normal",
  7938. height: math.unit(4, "feet"),
  7939. default: true
  7940. },
  7941. {
  7942. name: "Minimacro",
  7943. height: math.unit(40, "meters")
  7944. },
  7945. {
  7946. name: "Small Macro",
  7947. height: math.unit(400, "meters")
  7948. },
  7949. {
  7950. name: "Macro",
  7951. height: math.unit(4, "miles")
  7952. },
  7953. {
  7954. name: "Megamacro",
  7955. height: math.unit(40, "miles")
  7956. },
  7957. {
  7958. name: "Megamacro+",
  7959. height: math.unit(400, "miles")
  7960. },
  7961. {
  7962. name: "Gigamacro",
  7963. height: math.unit(400000, "miles")
  7964. },
  7965. ]
  7966. ))
  7967. characterMakers.push(() => makeCharacter(
  7968. { name: "Kimiko" },
  7969. {
  7970. side: {
  7971. height: math.unit(6, "feet"),
  7972. weight: math.unit(150, "lb"),
  7973. name: "Side",
  7974. image: {
  7975. source: "./media/characters/kimiko/side.svg",
  7976. extra: 600 / 358
  7977. }
  7978. },
  7979. },
  7980. [
  7981. {
  7982. name: "Normal",
  7983. height: math.unit(15, "feet"),
  7984. default: true
  7985. },
  7986. {
  7987. name: "Macro",
  7988. height: math.unit(220, "feet")
  7989. },
  7990. {
  7991. name: "Macro+",
  7992. height: math.unit(1450, "feet")
  7993. },
  7994. {
  7995. name: "Megamacro",
  7996. height: math.unit(11500, "feet")
  7997. },
  7998. {
  7999. name: "Gigamacro",
  8000. height: math.unit(9500, "miles")
  8001. },
  8002. {
  8003. name: "Teramacro",
  8004. height: math.unit(2208005005, "miles")
  8005. },
  8006. {
  8007. name: "Examacro",
  8008. height: math.unit(2750, "parsecs")
  8009. },
  8010. {
  8011. name: "Zettamacro",
  8012. height: math.unit(101500, "parsecs")
  8013. },
  8014. ]
  8015. ))
  8016. characterMakers.push(() => makeCharacter(
  8017. { name: "Andrew Sleepy" },
  8018. {
  8019. front: {
  8020. height: math.unit(6, "feet"),
  8021. weight: math.unit(70, "kg"),
  8022. name: "Front",
  8023. image: {
  8024. source: "./media/characters/andrew-sleepy/front.svg"
  8025. }
  8026. },
  8027. side: {
  8028. height: math.unit(6, "feet"),
  8029. weight: math.unit(70, "kg"),
  8030. name: "Side",
  8031. image: {
  8032. source: "./media/characters/andrew-sleepy/side.svg"
  8033. }
  8034. },
  8035. },
  8036. [
  8037. {
  8038. name: "Micro",
  8039. height: math.unit(1, "mm"),
  8040. default: true
  8041. },
  8042. ]
  8043. ))
  8044. characterMakers.push(() => makeCharacter(
  8045. { name: "Judio" },
  8046. {
  8047. front: {
  8048. height: math.unit(6, "feet"),
  8049. weight: math.unit(150, "lb"),
  8050. name: "Front",
  8051. image: {
  8052. source: "./media/characters/judio/front.svg",
  8053. extra: 1258 / 1110
  8054. }
  8055. },
  8056. },
  8057. [
  8058. {
  8059. name: "Normal",
  8060. height: math.unit(5 + 6 / 12, "feet")
  8061. },
  8062. {
  8063. name: "Macro",
  8064. height: math.unit(1000, "feet"),
  8065. default: true
  8066. },
  8067. {
  8068. name: "Megamacro",
  8069. height: math.unit(10, "miles")
  8070. },
  8071. ]
  8072. ))
  8073. characterMakers.push(() => makeCharacter(
  8074. { name: "Nomaxice" },
  8075. {
  8076. front: {
  8077. height: math.unit(6, "feet"),
  8078. weight: math.unit(68, "kg"),
  8079. name: "Front",
  8080. image: {
  8081. source: "./media/characters/nomaxice/front.svg",
  8082. extra: 1498 / 1073,
  8083. bottom: 0.075
  8084. }
  8085. },
  8086. foot: {
  8087. height: math.unit(1.1, "feet"),
  8088. name: "Foot",
  8089. image: {
  8090. source: "./media/characters/nomaxice/foot.svg"
  8091. }
  8092. },
  8093. },
  8094. [
  8095. {
  8096. name: "Micro",
  8097. height: math.unit(8, "cm")
  8098. },
  8099. {
  8100. name: "Norm",
  8101. height: math.unit(1.82, "m")
  8102. },
  8103. {
  8104. name: "Norm+",
  8105. height: math.unit(8.8, "feet")
  8106. },
  8107. {
  8108. name: "Big",
  8109. height: math.unit(8, "meters"),
  8110. default: true
  8111. },
  8112. {
  8113. name: "Macro",
  8114. height: math.unit(18, "meters")
  8115. },
  8116. {
  8117. name: "Macro+",
  8118. height: math.unit(88, "meters")
  8119. },
  8120. ]
  8121. ))
  8122. characterMakers.push(() => makeCharacter(
  8123. { name: "Dydros" },
  8124. {
  8125. front: {
  8126. height: math.unit(12, "feet"),
  8127. weight: math.unit(1.5, "tons"),
  8128. name: "Front",
  8129. image: {
  8130. source: "./media/characters/dydros/front.svg",
  8131. extra: 863 / 800,
  8132. bottom: 0.015
  8133. }
  8134. },
  8135. back: {
  8136. height: math.unit(12, "feet"),
  8137. weight: math.unit(1.5, "tons"),
  8138. name: "Back",
  8139. image: {
  8140. source: "./media/characters/dydros/back.svg",
  8141. extra: 900 / 843,
  8142. bottom: 0.005
  8143. }
  8144. },
  8145. },
  8146. [
  8147. {
  8148. name: "Normal",
  8149. height: math.unit(12, "feet"),
  8150. default: true
  8151. },
  8152. ]
  8153. ))
  8154. characterMakers.push(() => makeCharacter(
  8155. { name: "Riggi" },
  8156. {
  8157. front: {
  8158. height: math.unit(6, "feet"),
  8159. weight: math.unit(100, "kg"),
  8160. name: "Front",
  8161. image: {
  8162. source: "./media/characters/riggi/front.svg",
  8163. extra: 5787 / 5303
  8164. }
  8165. },
  8166. hyper: {
  8167. height: math.unit(6 * 5 / 3, "feet"),
  8168. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8169. name: "Hyper",
  8170. image: {
  8171. source: "./media/characters/riggi/hyper.svg",
  8172. extra: 3595 / 3485
  8173. }
  8174. },
  8175. },
  8176. [
  8177. {
  8178. name: "Small Macro",
  8179. height: math.unit(50, "feet")
  8180. },
  8181. {
  8182. name: "Default",
  8183. height: math.unit(200, "feet"),
  8184. default: true
  8185. },
  8186. {
  8187. name: "Loom",
  8188. height: math.unit(10000, "feet")
  8189. },
  8190. {
  8191. name: "Cruising Altitude",
  8192. height: math.unit(30000, "feet")
  8193. },
  8194. {
  8195. name: "Megamacro",
  8196. height: math.unit(100, "miles")
  8197. },
  8198. {
  8199. name: "Continent Sized",
  8200. height: math.unit(2800, "miles")
  8201. },
  8202. {
  8203. name: "Earth Sized",
  8204. height: math.unit(8000, "miles")
  8205. },
  8206. ]
  8207. ))
  8208. characterMakers.push(() => makeCharacter(
  8209. { name: "Alexi" },
  8210. {
  8211. front: {
  8212. height: math.unit(6, "feet"),
  8213. weight: math.unit(250, "lb"),
  8214. name: "Front",
  8215. image: {
  8216. source: "./media/characters/alexi/front.svg",
  8217. extra: 3483 / 3291,
  8218. bottom: 0.04
  8219. }
  8220. },
  8221. back: {
  8222. height: math.unit(6, "feet"),
  8223. weight: math.unit(250, "lb"),
  8224. name: "Back",
  8225. image: {
  8226. source: "./media/characters/alexi/back.svg",
  8227. extra: 3533 / 3356,
  8228. bottom: 0.021
  8229. }
  8230. },
  8231. frontTransformed: {
  8232. height: math.unit(12.5, "feet"),
  8233. weight: math.unit(4000, "lb"),
  8234. name: "Front (Transformed)",
  8235. image: {
  8236. source: "./media/characters/alexi/front-transformed.svg",
  8237. extra: 5345 / 5100,
  8238. bottom: 0.03
  8239. }
  8240. },
  8241. },
  8242. [
  8243. {
  8244. name: "Normal",
  8245. height: math.unit(3, "meters"),
  8246. default: true
  8247. },
  8248. {
  8249. name: "Minimacro",
  8250. height: math.unit(30, "meters")
  8251. },
  8252. {
  8253. name: "Macro",
  8254. height: math.unit(500, "meters")
  8255. },
  8256. {
  8257. name: "Megamacro",
  8258. height: math.unit(9000, "km")
  8259. },
  8260. {
  8261. name: "Teramacro",
  8262. height: math.unit(384000, "km")
  8263. },
  8264. ]
  8265. ))
  8266. characterMakers.push(() => makeCharacter(
  8267. { name: "Kayroo" },
  8268. {
  8269. front: {
  8270. height: math.unit(6, "feet"),
  8271. weight: math.unit(150, "lb"),
  8272. name: "Front",
  8273. image: {
  8274. source: "./media/characters/kayroo/front.svg",
  8275. extra: 1153 / 1038,
  8276. bottom: 0.06
  8277. }
  8278. },
  8279. foot: {
  8280. height: math.unit(6, "feet"),
  8281. weight: math.unit(150, "lb"),
  8282. name: "Foot",
  8283. image: {
  8284. source: "./media/characters/kayroo/foot.svg"
  8285. }
  8286. },
  8287. },
  8288. [
  8289. {
  8290. name: "Normal",
  8291. height: math.unit(8, "feet"),
  8292. default: true
  8293. },
  8294. {
  8295. name: "Minimacro",
  8296. height: math.unit(250, "feet")
  8297. },
  8298. {
  8299. name: "Macro",
  8300. height: math.unit(2800, "feet")
  8301. },
  8302. {
  8303. name: "Megamacro",
  8304. height: math.unit(5200, "feet")
  8305. },
  8306. {
  8307. name: "Gigamacro",
  8308. height: math.unit(27000, "feet")
  8309. },
  8310. {
  8311. name: "Omega",
  8312. height: math.unit(45000, "feet")
  8313. },
  8314. ]
  8315. ))
  8316. characterMakers.push(() => makeCharacter(
  8317. { name: "Rhys" },
  8318. {
  8319. front: {
  8320. height: math.unit(18, "feet"),
  8321. weight: math.unit(5800, "lb"),
  8322. name: "Front",
  8323. image: {
  8324. source: "./media/characters/rhys/front.svg",
  8325. extra: 3386 / 3090,
  8326. bottom: 0.07
  8327. }
  8328. },
  8329. },
  8330. [
  8331. {
  8332. name: "Normal",
  8333. height: math.unit(18, "feet"),
  8334. default: true
  8335. },
  8336. {
  8337. name: "Working Size",
  8338. height: math.unit(200, "feet")
  8339. },
  8340. {
  8341. name: "Demolition Size",
  8342. height: math.unit(2000, "feet")
  8343. },
  8344. {
  8345. name: "Maximum Licensed Size",
  8346. height: math.unit(5, "miles")
  8347. },
  8348. {
  8349. name: "Maximum Observed Size",
  8350. height: math.unit(10, "yottameters")
  8351. },
  8352. ]
  8353. ))
  8354. characterMakers.push(() => makeCharacter(
  8355. { name: "Toto" },
  8356. {
  8357. front: {
  8358. height: math.unit(6, "feet"),
  8359. weight: math.unit(250, "lb"),
  8360. name: "Front",
  8361. image: {
  8362. source: "./media/characters/toto/front.svg",
  8363. extra: 527 / 479,
  8364. bottom: 0.05
  8365. }
  8366. },
  8367. },
  8368. [
  8369. {
  8370. name: "Micro",
  8371. height: math.unit(3, "feet")
  8372. },
  8373. {
  8374. name: "Normal",
  8375. height: math.unit(10, "feet")
  8376. },
  8377. {
  8378. name: "Macro",
  8379. height: math.unit(150, "feet"),
  8380. default: true
  8381. },
  8382. {
  8383. name: "Megamacro",
  8384. height: math.unit(1200, "feet")
  8385. },
  8386. ]
  8387. ))
  8388. characterMakers.push(() => makeCharacter(
  8389. { name: "King" },
  8390. {
  8391. back: {
  8392. height: math.unit(6, "feet"),
  8393. weight: math.unit(150, "lb"),
  8394. name: "Back",
  8395. image: {
  8396. source: "./media/characters/king/back.svg"
  8397. }
  8398. },
  8399. },
  8400. [
  8401. {
  8402. name: "Micro",
  8403. height: math.unit(2, "inches")
  8404. },
  8405. {
  8406. name: "Normal",
  8407. height: math.unit(8, "feet")
  8408. },
  8409. {
  8410. name: "Macro",
  8411. height: math.unit(200, "feet"),
  8412. default: true
  8413. },
  8414. {
  8415. name: "Megamacro",
  8416. height: math.unit(50, "miles")
  8417. },
  8418. ]
  8419. ))
  8420. characterMakers.push(() => makeCharacter(
  8421. { name: "Cordite" },
  8422. {
  8423. anthro: {
  8424. height: math.unit(6 + 5 / 12, "feet"),
  8425. weight: math.unit(280, "lb"),
  8426. name: "Anthro",
  8427. image: {
  8428. source: "./media/characters/cordite/anthro.svg",
  8429. extra: 1986 / 1905,
  8430. bottom: 0.025
  8431. }
  8432. },
  8433. feral: {
  8434. height: math.unit(2, "feet"),
  8435. weight: math.unit(90, "lb"),
  8436. name: "Feral",
  8437. image: {
  8438. source: "./media/characters/cordite/feral.svg",
  8439. extra: 1260 / 755,
  8440. bottom: 0.05
  8441. }
  8442. },
  8443. },
  8444. [
  8445. {
  8446. name: "Normal",
  8447. height: math.unit(6 + 5 / 12, "feet"),
  8448. default: true
  8449. },
  8450. ]
  8451. ))
  8452. characterMakers.push(() => makeCharacter(
  8453. { name: "Pianostrong" },
  8454. {
  8455. front: {
  8456. height: math.unit(6, "feet"),
  8457. weight: math.unit(150, "lb"),
  8458. name: "Front",
  8459. image: {
  8460. source: "./media/characters/pianostrong/front.svg",
  8461. extra: 6577 / 6254,
  8462. bottom: 0.02
  8463. }
  8464. },
  8465. side: {
  8466. height: math.unit(6, "feet"),
  8467. weight: math.unit(150, "lb"),
  8468. name: "Side",
  8469. image: {
  8470. source: "./media/characters/pianostrong/side.svg",
  8471. extra: 6106 / 5730
  8472. }
  8473. },
  8474. back: {
  8475. height: math.unit(6, "feet"),
  8476. weight: math.unit(150, "lb"),
  8477. name: "Back",
  8478. image: {
  8479. source: "./media/characters/pianostrong/back.svg",
  8480. extra: 6085 / 5733,
  8481. bottom: 0.01
  8482. }
  8483. },
  8484. },
  8485. [
  8486. {
  8487. name: "Macro",
  8488. height: math.unit(100, "feet")
  8489. },
  8490. {
  8491. name: "Macro+",
  8492. height: math.unit(300, "feet"),
  8493. default: true
  8494. },
  8495. {
  8496. name: "Macro++",
  8497. height: math.unit(1000, "feet")
  8498. },
  8499. ]
  8500. ))
  8501. characterMakers.push(() => makeCharacter(
  8502. { name: "Kona" },
  8503. {
  8504. front: {
  8505. height: math.unit(6, "feet"),
  8506. weight: math.unit(150, "lb"),
  8507. name: "Front",
  8508. image: {
  8509. source: "./media/characters/kona/front.svg",
  8510. extra: 2960 / 2629,
  8511. bottom: 0.005
  8512. }
  8513. },
  8514. },
  8515. [
  8516. {
  8517. name: "Normal",
  8518. height: math.unit(11 + 8 / 12, "feet")
  8519. },
  8520. {
  8521. name: "Macro",
  8522. height: math.unit(850, "feet"),
  8523. default: true
  8524. },
  8525. {
  8526. name: "Macro+",
  8527. height: math.unit(1.5, "km"),
  8528. default: true
  8529. },
  8530. {
  8531. name: "Megamacro",
  8532. height: math.unit(80, "miles")
  8533. },
  8534. {
  8535. name: "Gigamacro",
  8536. height: math.unit(3500, "miles")
  8537. },
  8538. ]
  8539. ))
  8540. characterMakers.push(() => makeCharacter(
  8541. { name: "Levi" },
  8542. {
  8543. side: {
  8544. height: math.unit(1.9, "meters"),
  8545. weight: math.unit(326, "kg"),
  8546. name: "Side",
  8547. image: {
  8548. source: "./media/characters/levi/side.svg",
  8549. extra: 1704 / 1334,
  8550. bottom: 0.02
  8551. }
  8552. },
  8553. },
  8554. [
  8555. {
  8556. name: "Normal",
  8557. height: math.unit(1.9, "meters"),
  8558. default: true
  8559. },
  8560. {
  8561. name: "Macro",
  8562. height: math.unit(20, "meters")
  8563. },
  8564. {
  8565. name: "Macro+",
  8566. height: math.unit(200, "meters")
  8567. },
  8568. {
  8569. name: "Megamacro",
  8570. height: math.unit(2, "km")
  8571. },
  8572. {
  8573. name: "Megamacro+",
  8574. height: math.unit(20, "km")
  8575. },
  8576. {
  8577. name: "Gigamacro",
  8578. height: math.unit(2500, "km")
  8579. },
  8580. {
  8581. name: "Gigamacro+",
  8582. height: math.unit(120000, "km")
  8583. },
  8584. {
  8585. name: "Teramacro",
  8586. height: math.unit(7.77e6, "km")
  8587. },
  8588. ]
  8589. ))
  8590. characterMakers.push(() => makeCharacter(
  8591. { name: "BMC" },
  8592. {
  8593. front: {
  8594. height: math.unit(6 + 4 / 12, "feet"),
  8595. weight: math.unit(188, "lb"),
  8596. name: "Front",
  8597. image: {
  8598. source: "./media/characters/bmc/front.svg",
  8599. extra: 1067 / 1022,
  8600. bottom: 0.047
  8601. }
  8602. },
  8603. },
  8604. [
  8605. {
  8606. name: "Human-sized",
  8607. height: math.unit(6 + 4 / 12, "feet")
  8608. },
  8609. {
  8610. name: "Small",
  8611. height: math.unit(250, "feet")
  8612. },
  8613. {
  8614. name: "Normal",
  8615. height: math.unit(1250, "feet"),
  8616. default: true
  8617. },
  8618. {
  8619. name: "Good Day",
  8620. height: math.unit(88, "miles")
  8621. },
  8622. {
  8623. name: "Largest Measured Size",
  8624. height: math.unit(11.2e6, "lightyears")
  8625. },
  8626. ]
  8627. ))
  8628. characterMakers.push(() => makeCharacter(
  8629. { name: "Sven the Kaiju" },
  8630. {
  8631. front: {
  8632. height: math.unit(20, "feet"),
  8633. weight: math.unit(2016, "kg"),
  8634. name: "Front",
  8635. image: {
  8636. source: "./media/characters/sven-the-kaiju/front.svg",
  8637. extra: 1479 / 1449,
  8638. bottom: 0.05
  8639. }
  8640. },
  8641. },
  8642. [
  8643. {
  8644. name: "Fairy",
  8645. height: math.unit(6, "inches")
  8646. },
  8647. {
  8648. name: "Normal",
  8649. height: math.unit(20, "feet"),
  8650. default: true
  8651. },
  8652. {
  8653. name: "Rampage",
  8654. height: math.unit(200, "feet")
  8655. },
  8656. {
  8657. name: "Archfey Forest Guardian",
  8658. height: math.unit(1, "mile")
  8659. },
  8660. ]
  8661. ))
  8662. characterMakers.push(() => makeCharacter(
  8663. { name: "Marik" },
  8664. {
  8665. front: {
  8666. height: math.unit(4, "meters"),
  8667. weight: math.unit(2, "tons"),
  8668. name: "Front",
  8669. image: {
  8670. source: "./media/characters/marik/front.svg",
  8671. extra: 1057 / 1003,
  8672. bottom: 0.08
  8673. }
  8674. },
  8675. },
  8676. [
  8677. {
  8678. name: "Normal",
  8679. height: math.unit(4, "meters"),
  8680. default: true
  8681. },
  8682. {
  8683. name: "Macro",
  8684. height: math.unit(20, "meters")
  8685. },
  8686. {
  8687. name: "Megamacro",
  8688. height: math.unit(50, "km")
  8689. },
  8690. {
  8691. name: "Gigamacro",
  8692. height: math.unit(100, "km")
  8693. },
  8694. {
  8695. name: "Alpha Macro",
  8696. height: math.unit(7.88e7, "yottameters")
  8697. },
  8698. ]
  8699. ))
  8700. characterMakers.push(() => makeCharacter(
  8701. { name: "Mel" },
  8702. {
  8703. front: {
  8704. height: math.unit(6, "feet"),
  8705. weight: math.unit(110, "lb"),
  8706. name: "Front",
  8707. image: {
  8708. source: "./media/characters/mel/front.svg",
  8709. extra: 736 / 617,
  8710. bottom: 0.017
  8711. }
  8712. },
  8713. },
  8714. [
  8715. {
  8716. name: "Pico",
  8717. height: math.unit(3, "pm")
  8718. },
  8719. {
  8720. name: "Nano",
  8721. height: math.unit(3, "nm")
  8722. },
  8723. {
  8724. name: "Micro",
  8725. height: math.unit(0.3, "mm"),
  8726. default: true
  8727. },
  8728. {
  8729. name: "Micro+",
  8730. height: math.unit(3, "mm")
  8731. },
  8732. {
  8733. name: "Normal",
  8734. height: math.unit(5 + 10.5 / 12, "feet")
  8735. },
  8736. ]
  8737. ))
  8738. characterMakers.push(() => makeCharacter(
  8739. { name: "Lykonous" },
  8740. {
  8741. kaiju: {
  8742. height: math.unit(1.75, "meters"),
  8743. weight: math.unit(55, "kg"),
  8744. name: "Kaiju",
  8745. image: {
  8746. source: "./media/characters/lykonous/kaiju.svg",
  8747. extra: 1055 / 946,
  8748. bottom: 0.135
  8749. }
  8750. },
  8751. },
  8752. [
  8753. {
  8754. name: "Normal",
  8755. height: math.unit(2.5, "meters"),
  8756. default: true
  8757. },
  8758. {
  8759. name: "Kaiju Dragon",
  8760. height: math.unit(60, "meters")
  8761. },
  8762. {
  8763. name: "Mega Kaiju",
  8764. height: math.unit(120, "km")
  8765. },
  8766. {
  8767. name: "Giga Kaiju",
  8768. height: math.unit(200, "megameters")
  8769. },
  8770. {
  8771. name: "Terra Kaiju",
  8772. height: math.unit(400, "gigameters")
  8773. },
  8774. {
  8775. name: "Kaiju Dragon God",
  8776. height: math.unit(13000, "exaparsecs")
  8777. },
  8778. ]
  8779. ))
  8780. characterMakers.push(() => makeCharacter(
  8781. { name: "Blü" },
  8782. {
  8783. front: {
  8784. height: math.unit(6, "feet"),
  8785. weight: math.unit(150, "lb"),
  8786. name: "Front",
  8787. image: {
  8788. source: "./media/characters/blü/front.svg",
  8789. extra: 1883 / 1564,
  8790. bottom: 0.031
  8791. }
  8792. },
  8793. },
  8794. [
  8795. {
  8796. name: "Normal",
  8797. height: math.unit(13, "feet"),
  8798. default: true
  8799. },
  8800. {
  8801. name: "Big Boi",
  8802. height: math.unit(150, "meters")
  8803. },
  8804. {
  8805. name: "Mini Stomper",
  8806. height: math.unit(300, "meters")
  8807. },
  8808. {
  8809. name: "Macro",
  8810. height: math.unit(1000, "meters")
  8811. },
  8812. {
  8813. name: "Megamacro",
  8814. height: math.unit(11000, "meters")
  8815. },
  8816. {
  8817. name: "Gigamacro",
  8818. height: math.unit(11000, "km")
  8819. },
  8820. {
  8821. name: "Teramacro",
  8822. height: math.unit(420000, "km")
  8823. },
  8824. {
  8825. name: "Examacro",
  8826. height: math.unit(120, "parsecs")
  8827. },
  8828. {
  8829. name: "God Tho",
  8830. height: math.unit(98000000000, "parsecs")
  8831. },
  8832. ]
  8833. ))
  8834. characterMakers.push(() => makeCharacter(
  8835. { name: "Scales" },
  8836. {
  8837. taurFront: {
  8838. height: math.unit(6, "feet"),
  8839. weight: math.unit(200, "lb"),
  8840. name: "Taur (Front)",
  8841. image: {
  8842. source: "./media/characters/scales/taur-front.svg",
  8843. extra: 1,
  8844. bottom: 0.05
  8845. }
  8846. },
  8847. taurBack: {
  8848. height: math.unit(6, "feet"),
  8849. weight: math.unit(200, "lb"),
  8850. name: "Taur (Back)",
  8851. image: {
  8852. source: "./media/characters/scales/taur-back.svg",
  8853. extra: 1,
  8854. bottom: 0.08
  8855. }
  8856. },
  8857. anthro: {
  8858. height: math.unit(6 * 7 / 12, "feet"),
  8859. weight: math.unit(100, "lb"),
  8860. name: "Anthro",
  8861. image: {
  8862. source: "./media/characters/scales/anthro.svg",
  8863. extra: 1,
  8864. bottom: 0.06
  8865. }
  8866. },
  8867. },
  8868. [
  8869. {
  8870. name: "Normal",
  8871. height: math.unit(12, "feet"),
  8872. default: true
  8873. },
  8874. ]
  8875. ))
  8876. characterMakers.push(() => makeCharacter(
  8877. { name: "Koragos" },
  8878. {
  8879. front: {
  8880. height: math.unit(6, "feet"),
  8881. weight: math.unit(150, "lb"),
  8882. name: "Front",
  8883. image: {
  8884. source: "./media/characters/koragos/front.svg",
  8885. extra: 841 / 794,
  8886. bottom: 0.035
  8887. }
  8888. },
  8889. back: {
  8890. height: math.unit(6, "feet"),
  8891. weight: math.unit(150, "lb"),
  8892. name: "Back",
  8893. image: {
  8894. source: "./media/characters/koragos/back.svg",
  8895. extra: 841 / 810,
  8896. bottom: 0.022
  8897. }
  8898. },
  8899. },
  8900. [
  8901. {
  8902. name: "Normal",
  8903. height: math.unit(6 + 11 / 12, "feet"),
  8904. default: true
  8905. },
  8906. {
  8907. name: "Macro",
  8908. height: math.unit(490, "feet")
  8909. },
  8910. {
  8911. name: "Megamacro",
  8912. height: math.unit(10, "miles")
  8913. },
  8914. {
  8915. name: "Gigamacro",
  8916. height: math.unit(50, "miles")
  8917. },
  8918. ]
  8919. ))
  8920. characterMakers.push(() => makeCharacter(
  8921. { name: "Xylrem" },
  8922. {
  8923. front: {
  8924. height: math.unit(6, "feet"),
  8925. weight: math.unit(250, "lb"),
  8926. name: "Front",
  8927. image: {
  8928. source: "./media/characters/xylrem/front.svg",
  8929. extra: 3323 / 3050,
  8930. bottom: 0.065
  8931. }
  8932. },
  8933. },
  8934. [
  8935. {
  8936. name: "Micro",
  8937. height: math.unit(4, "feet")
  8938. },
  8939. {
  8940. name: "Normal",
  8941. height: math.unit(16, "feet"),
  8942. default: true
  8943. },
  8944. {
  8945. name: "Macro",
  8946. height: math.unit(2720, "feet")
  8947. },
  8948. {
  8949. name: "Megamacro",
  8950. height: math.unit(25000, "miles")
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Ikideru" },
  8956. {
  8957. front: {
  8958. height: math.unit(8, "feet"),
  8959. weight: math.unit(250, "kg"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/ikideru/front.svg",
  8963. extra: 930 / 870,
  8964. bottom: 0.087
  8965. }
  8966. },
  8967. back: {
  8968. height: math.unit(8, "feet"),
  8969. weight: math.unit(250, "kg"),
  8970. name: "Back",
  8971. image: {
  8972. source: "./media/characters/ikideru/back.svg",
  8973. extra: 919 / 852,
  8974. bottom: 0.055
  8975. }
  8976. },
  8977. },
  8978. [
  8979. {
  8980. name: "Rare",
  8981. height: math.unit(8, "feet"),
  8982. default: true
  8983. },
  8984. {
  8985. name: "Playful Loom",
  8986. height: math.unit(80, "feet")
  8987. },
  8988. {
  8989. name: "City Leaner",
  8990. height: math.unit(230, "feet")
  8991. },
  8992. {
  8993. name: "Megamacro",
  8994. height: math.unit(2500, "feet")
  8995. },
  8996. {
  8997. name: "Gigamacro",
  8998. height: math.unit(26400, "feet")
  8999. },
  9000. {
  9001. name: "Tectonic Shifter",
  9002. height: math.unit(1.7, "megameters")
  9003. },
  9004. {
  9005. name: "Planet Carer",
  9006. height: math.unit(21, "megameters")
  9007. },
  9008. {
  9009. name: "God",
  9010. height: math.unit(11157.22, "parsecs")
  9011. },
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Neo" },
  9016. {
  9017. front: {
  9018. height: math.unit(6, "feet"),
  9019. weight: math.unit(120, "lb"),
  9020. name: "Front",
  9021. image: {
  9022. source: "./media/characters/neo/front.svg"
  9023. }
  9024. },
  9025. },
  9026. [
  9027. {
  9028. name: "Micro",
  9029. height: math.unit(2, "inches"),
  9030. default: true
  9031. },
  9032. {
  9033. name: "Human Size",
  9034. height: math.unit(5 + 8 / 12, "feet")
  9035. },
  9036. ]
  9037. ))
  9038. characterMakers.push(() => makeCharacter(
  9039. { name: "Chauncey (Chantz)" },
  9040. {
  9041. front: {
  9042. height: math.unit(13 + 10 / 12, "feet"),
  9043. weight: math.unit(5320, "lb"),
  9044. name: "Front",
  9045. image: {
  9046. source: "./media/characters/chauncey-chantz/front.svg",
  9047. extra: 1587 / 1435,
  9048. bottom: 0.02
  9049. }
  9050. },
  9051. },
  9052. [
  9053. {
  9054. name: "Normal",
  9055. height: math.unit(13 + 10 / 12, "feet"),
  9056. default: true
  9057. },
  9058. {
  9059. name: "Macro",
  9060. height: math.unit(45, "feet")
  9061. },
  9062. {
  9063. name: "Megamacro",
  9064. height: math.unit(250, "miles")
  9065. },
  9066. {
  9067. name: "Planetary",
  9068. height: math.unit(10000, "miles")
  9069. },
  9070. {
  9071. name: "Galactic",
  9072. height: math.unit(40000, "parsecs")
  9073. },
  9074. {
  9075. name: "Universal",
  9076. height: math.unit(1, "yottameter")
  9077. },
  9078. ]
  9079. ))
  9080. characterMakers.push(() => makeCharacter(
  9081. { name: "Epifox" },
  9082. {
  9083. front: {
  9084. height: math.unit(6, "feet"),
  9085. weight: math.unit(150, "lb"),
  9086. name: "Front",
  9087. image: {
  9088. source: "./media/characters/epifox/front.svg",
  9089. extra: 1,
  9090. bottom: 0.075
  9091. }
  9092. },
  9093. },
  9094. [
  9095. {
  9096. name: "Micro",
  9097. height: math.unit(6, "inches")
  9098. },
  9099. {
  9100. name: "Normal",
  9101. height: math.unit(12, "feet"),
  9102. default: true
  9103. },
  9104. {
  9105. name: "Macro",
  9106. height: math.unit(3810, "feet")
  9107. },
  9108. {
  9109. name: "Megamacro",
  9110. height: math.unit(500, "miles")
  9111. },
  9112. ]
  9113. ))
  9114. characterMakers.push(() => makeCharacter(
  9115. { name: "Colin T." },
  9116. {
  9117. front: {
  9118. height: math.unit(1.8796, "m"),
  9119. weight: math.unit(230, "lb"),
  9120. name: "Front",
  9121. image: {
  9122. source: "./media/characters/colin-t/front.svg",
  9123. extra: 1272 / 1193,
  9124. bottom: 0.07
  9125. }
  9126. },
  9127. },
  9128. [
  9129. {
  9130. name: "Micro",
  9131. height: math.unit(0.571, "meters")
  9132. },
  9133. {
  9134. name: "Normal",
  9135. height: math.unit(1.8796, "meters"),
  9136. default: true
  9137. },
  9138. {
  9139. name: "Tall",
  9140. height: math.unit(4, "meters")
  9141. },
  9142. {
  9143. name: "Macro",
  9144. height: math.unit(67.241, "meters")
  9145. },
  9146. {
  9147. name: "Megamacro",
  9148. height: math.unit(371.856, "meters")
  9149. },
  9150. {
  9151. name: "Planetary",
  9152. height: math.unit(12631.5689, "km")
  9153. },
  9154. ]
  9155. ))
  9156. characterMakers.push(() => makeCharacter(
  9157. { name: "Matvei" },
  9158. {
  9159. front: {
  9160. height: math.unit(1.85, "meters"),
  9161. weight: math.unit(80, "kg"),
  9162. name: "Front",
  9163. image: {
  9164. source: "./media/characters/matvei/front.svg",
  9165. extra: 614 / 594,
  9166. bottom: 0.01
  9167. }
  9168. },
  9169. },
  9170. [
  9171. {
  9172. name: "Normal",
  9173. height: math.unit(1.85, "meters"),
  9174. default: true
  9175. },
  9176. ]
  9177. ))
  9178. characterMakers.push(() => makeCharacter(
  9179. { name: "Quincy" },
  9180. {
  9181. front: {
  9182. height: math.unit(5 + 9 / 12, "feet"),
  9183. weight: math.unit(70, "lb"),
  9184. name: "Front",
  9185. image: {
  9186. source: "./media/characters/quincy/front.svg",
  9187. extra: 3041 / 2751
  9188. }
  9189. },
  9190. back: {
  9191. height: math.unit(5 + 9 / 12, "feet"),
  9192. weight: math.unit(70, "lb"),
  9193. name: "Back",
  9194. image: {
  9195. source: "./media/characters/quincy/back.svg",
  9196. extra: 3041 / 2751
  9197. }
  9198. },
  9199. flying: {
  9200. height: math.unit(5 + 4 / 12, "feet"),
  9201. weight: math.unit(70, "lb"),
  9202. name: "Flying",
  9203. image: {
  9204. source: "./media/characters/quincy/flying.svg",
  9205. extra: 1044 / 930
  9206. }
  9207. },
  9208. },
  9209. [
  9210. {
  9211. name: "Micro",
  9212. height: math.unit(3, "cm")
  9213. },
  9214. {
  9215. name: "Normal",
  9216. height: math.unit(5 + 9 / 12, "feet")
  9217. },
  9218. {
  9219. name: "Macro",
  9220. height: math.unit(200, "meters"),
  9221. default: true
  9222. },
  9223. {
  9224. name: "Megamacro",
  9225. height: math.unit(1000, "meters")
  9226. },
  9227. ]
  9228. ))
  9229. characterMakers.push(() => makeCharacter(
  9230. { name: "Vanrel" },
  9231. {
  9232. front: {
  9233. height: math.unit(4 + 7 / 12, "feet"),
  9234. weight: math.unit(150, "lb"),
  9235. name: "Front",
  9236. image: {
  9237. source: "./media/characters/vanrel/front.svg",
  9238. extra: 1,
  9239. bottom: 0.02
  9240. }
  9241. },
  9242. elemental: {
  9243. height: math.unit(4 + 2/12, "feet"),
  9244. weight: math.unit(150, "lb"),
  9245. name: "Elemental",
  9246. image: {
  9247. source: "./media/characters/vanrel/elemental.svg"
  9248. }
  9249. },
  9250. side: {
  9251. height: math.unit(4 + 7 / 12, "feet"),
  9252. weight: math.unit(150, "lb"),
  9253. name: "Side",
  9254. image: {
  9255. source: "./media/characters/vanrel/side.svg",
  9256. extra: 1,
  9257. bottom: 0.025
  9258. }
  9259. },
  9260. tome: {
  9261. height: math.unit(1.35, "feet"),
  9262. weight: math.unit(10, "lb"),
  9263. name: "Vanrel's Tome",
  9264. rename: true,
  9265. image: {
  9266. source: "./media/characters/vanrel/tome.svg"
  9267. }
  9268. },
  9269. beans: {
  9270. height: math.unit(0.89, "feet"),
  9271. name: "Beans",
  9272. image: {
  9273. source: "./media/characters/vanrel/beans.svg"
  9274. }
  9275. },
  9276. },
  9277. [
  9278. {
  9279. name: "Normal",
  9280. height: math.unit(4 + 7 / 12, "feet"),
  9281. default: true
  9282. },
  9283. ]
  9284. ))
  9285. characterMakers.push(() => makeCharacter(
  9286. { name: "Kuiper Vanrel" },
  9287. {
  9288. front: {
  9289. height: math.unit(7 + 5 / 12, "feet"),
  9290. weight: math.unit(150, "lb"),
  9291. name: "Front",
  9292. image: {
  9293. source: "./media/characters/kuiper-vanrel/front.svg",
  9294. extra: 1118 / 1068,
  9295. bottom: 0.09
  9296. }
  9297. },
  9298. foot: {
  9299. height: math.unit(0.55, "meters"),
  9300. name: "Foot",
  9301. image: {
  9302. source: "./media/characters/kuiper-vanrel/foot.svg",
  9303. }
  9304. },
  9305. },
  9306. [
  9307. {
  9308. name: "Normal",
  9309. height: math.unit(7 + 5 / 12, "feet"),
  9310. default: true
  9311. },
  9312. ]
  9313. ))
  9314. characterMakers.push(() => makeCharacter(
  9315. { name: "Keset Vanrel" },
  9316. {
  9317. front: {
  9318. height: math.unit(8 + 5 / 12, "feet"),
  9319. weight: math.unit(150, "lb"),
  9320. name: "Front",
  9321. image: {
  9322. source: "./media/characters/keset-vanrel/front.svg",
  9323. extra: 1150 / 1084,
  9324. bottom: 0.05
  9325. }
  9326. },
  9327. hand: {
  9328. height: math.unit(0.6, "meters"),
  9329. name: "Hand",
  9330. image: {
  9331. source: "./media/characters/keset-vanrel/hand.svg"
  9332. }
  9333. },
  9334. foot: {
  9335. height: math.unit(0.94978, "meters"),
  9336. name: "Foot",
  9337. image: {
  9338. source: "./media/characters/keset-vanrel/foot.svg"
  9339. }
  9340. },
  9341. },
  9342. [
  9343. {
  9344. name: "Normal",
  9345. height: math.unit(8 + 5 / 12, "feet"),
  9346. default: true
  9347. },
  9348. ]
  9349. ))
  9350. characterMakers.push(() => makeCharacter(
  9351. { name: "Neos" },
  9352. {
  9353. front: {
  9354. height: math.unit(6, "feet"),
  9355. weight: math.unit(150, "lb"),
  9356. name: "Front",
  9357. image: {
  9358. source: "./media/characters/neos/front.svg",
  9359. extra: 1696 / 992,
  9360. bottom: 0.14
  9361. }
  9362. },
  9363. },
  9364. [
  9365. {
  9366. name: "Normal",
  9367. height: math.unit(54, "cm"),
  9368. default: true
  9369. },
  9370. {
  9371. name: "Macro",
  9372. height: math.unit(100, "m")
  9373. },
  9374. {
  9375. name: "Megamacro",
  9376. height: math.unit(10, "km")
  9377. },
  9378. {
  9379. name: "Megamacro+",
  9380. height: math.unit(100, "km")
  9381. },
  9382. {
  9383. name: "Gigamacro",
  9384. height: math.unit(100, "Mm")
  9385. },
  9386. {
  9387. name: "Teramacro",
  9388. height: math.unit(100, "Gm")
  9389. },
  9390. {
  9391. name: "Examacro",
  9392. height: math.unit(100, "Em")
  9393. },
  9394. {
  9395. name: "Godly",
  9396. height: math.unit(10000, "Ym")
  9397. },
  9398. {
  9399. name: "Beyond Godly",
  9400. height: math.unit(10000000, "Ym")
  9401. },
  9402. ]
  9403. ))
  9404. characterMakers.push(() => makeCharacter(
  9405. { name: "Sammy Mouse" },
  9406. {
  9407. feminine: {
  9408. height: math.unit(5, "feet"),
  9409. weight: math.unit(100, "lb"),
  9410. name: "Feminine",
  9411. image: {
  9412. source: "./media/characters/sammy-mouse/feminine.svg",
  9413. extra: 2526 / 2425,
  9414. bottom: 0.123
  9415. }
  9416. },
  9417. masculine: {
  9418. height: math.unit(5, "feet"),
  9419. weight: math.unit(100, "lb"),
  9420. name: "Masculine",
  9421. image: {
  9422. source: "./media/characters/sammy-mouse/masculine.svg",
  9423. extra: 2526 / 2425,
  9424. bottom: 0.123
  9425. }
  9426. },
  9427. },
  9428. [
  9429. {
  9430. name: "Micro",
  9431. height: math.unit(5, "inches")
  9432. },
  9433. {
  9434. name: "Normal",
  9435. height: math.unit(5, "feet"),
  9436. default: true
  9437. },
  9438. {
  9439. name: "Macro",
  9440. height: math.unit(60, "feet")
  9441. },
  9442. ]
  9443. ))
  9444. characterMakers.push(() => makeCharacter(
  9445. { name: "Kole" },
  9446. {
  9447. front: {
  9448. height: math.unit(4, "feet"),
  9449. weight: math.unit(50, "lb"),
  9450. name: "Front",
  9451. image: {
  9452. source: "./media/characters/kole/front.svg",
  9453. extra: 1423 / 1303,
  9454. bottom: 0.025
  9455. }
  9456. },
  9457. back: {
  9458. height: math.unit(4, "feet"),
  9459. weight: math.unit(50, "lb"),
  9460. name: "Back",
  9461. image: {
  9462. source: "./media/characters/kole/back.svg",
  9463. extra: 1426 / 1280,
  9464. bottom: 0.02
  9465. }
  9466. },
  9467. },
  9468. [
  9469. {
  9470. name: "Normal",
  9471. height: math.unit(4, "feet"),
  9472. default: true
  9473. },
  9474. ]
  9475. ))
  9476. characterMakers.push(() => makeCharacter(
  9477. { name: "Rufran" },
  9478. {
  9479. front: {
  9480. height: math.unit(2 + 6 / 12, "feet"),
  9481. weight: math.unit(20, "lb"),
  9482. name: "Front",
  9483. image: {
  9484. source: "./media/characters/rufran/front.svg",
  9485. extra: 2041 / 1839,
  9486. bottom: 0.055
  9487. }
  9488. },
  9489. back: {
  9490. height: math.unit(2 + 6 / 12, "feet"),
  9491. weight: math.unit(20, "lb"),
  9492. name: "Back",
  9493. image: {
  9494. source: "./media/characters/rufran/back.svg",
  9495. extra: 2054 / 1839,
  9496. bottom: 0.01
  9497. }
  9498. },
  9499. hand: {
  9500. height: math.unit(0.2166, "meters"),
  9501. name: "Hand",
  9502. image: {
  9503. source: "./media/characters/rufran/hand.svg"
  9504. }
  9505. },
  9506. foot: {
  9507. height: math.unit(0.185, "meters"),
  9508. name: "Foot",
  9509. image: {
  9510. source: "./media/characters/rufran/foot.svg"
  9511. }
  9512. },
  9513. },
  9514. [
  9515. {
  9516. name: "Micro",
  9517. height: math.unit(1, "inch")
  9518. },
  9519. {
  9520. name: "Normal",
  9521. height: math.unit(2 + 6 / 12, "feet"),
  9522. default: true
  9523. },
  9524. {
  9525. name: "Big",
  9526. height: math.unit(60, "feet")
  9527. },
  9528. {
  9529. name: "Macro",
  9530. height: math.unit(325, "feet")
  9531. },
  9532. ]
  9533. ))
  9534. characterMakers.push(() => makeCharacter(
  9535. { name: "Chip" },
  9536. {
  9537. front: {
  9538. height: math.unit(0.3, "meters"),
  9539. weight: math.unit(3.5, "kg"),
  9540. name: "Front",
  9541. image: {
  9542. source: "./media/characters/chip/front.svg",
  9543. extra: 748 / 674
  9544. }
  9545. },
  9546. },
  9547. [
  9548. {
  9549. name: "Micro",
  9550. height: math.unit(1, "inch"),
  9551. default: true
  9552. },
  9553. ]
  9554. ))
  9555. characterMakers.push(() => makeCharacter(
  9556. { name: "Torvid" },
  9557. {
  9558. side: {
  9559. height: math.unit(2.3, "meters"),
  9560. weight: math.unit(3500, "lb"),
  9561. name: "Side",
  9562. image: {
  9563. source: "./media/characters/torvid/side.svg",
  9564. extra: 1972 / 722,
  9565. bottom: 0.035
  9566. }
  9567. },
  9568. },
  9569. [
  9570. {
  9571. name: "Normal",
  9572. height: math.unit(2.3, "meters"),
  9573. default: true
  9574. },
  9575. ]
  9576. ))
  9577. characterMakers.push(() => makeCharacter(
  9578. { name: "Susan" },
  9579. {
  9580. front: {
  9581. height: math.unit(2, "meters"),
  9582. weight: math.unit(150.5, "kg"),
  9583. name: "Front",
  9584. image: {
  9585. source: "./media/characters/susan/front.svg",
  9586. extra: 693 / 635,
  9587. bottom: 0.05
  9588. }
  9589. },
  9590. },
  9591. [
  9592. {
  9593. name: "Megamacro",
  9594. height: math.unit(505, "miles"),
  9595. default: true
  9596. },
  9597. ]
  9598. ))
  9599. characterMakers.push(() => makeCharacter(
  9600. { name: "Raindrops" },
  9601. {
  9602. front: {
  9603. height: math.unit(6, "feet"),
  9604. weight: math.unit(150, "lb"),
  9605. name: "Front",
  9606. image: {
  9607. source: "./media/characters/raindrops/front.svg",
  9608. extra: 2655 / 2461,
  9609. bottom: 0.02
  9610. }
  9611. },
  9612. back: {
  9613. height: math.unit(6, "feet"),
  9614. weight: math.unit(150, "lb"),
  9615. name: "Back",
  9616. image: {
  9617. source: "./media/characters/raindrops/back.svg",
  9618. extra: 2574 / 2400,
  9619. bottom: 0.03
  9620. }
  9621. },
  9622. },
  9623. [
  9624. {
  9625. name: "Micro",
  9626. height: math.unit(6, "inches")
  9627. },
  9628. {
  9629. name: "Normal",
  9630. height: math.unit(6 + 2 / 12, "feet")
  9631. },
  9632. {
  9633. name: "Macro",
  9634. height: math.unit(131, "feet"),
  9635. default: true
  9636. },
  9637. {
  9638. name: "Megamacro",
  9639. height: math.unit(15, "miles")
  9640. },
  9641. {
  9642. name: "Gigamacro",
  9643. height: math.unit(4000, "miles")
  9644. },
  9645. {
  9646. name: "Teramacro",
  9647. height: math.unit(315000, "miles")
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Tezwa" },
  9653. {
  9654. front: {
  9655. height: math.unit(2.794, "meters"),
  9656. weight: math.unit(325, "kg"),
  9657. name: "Front",
  9658. image: {
  9659. source: "./media/characters/tezwa/front.svg",
  9660. extra: 2083 / 1906,
  9661. bottom: 0.031
  9662. }
  9663. },
  9664. foot: {
  9665. height: math.unit(0.687, "meters"),
  9666. name: "Foot",
  9667. image: {
  9668. source: "./media/characters/tezwa/foot.svg"
  9669. }
  9670. },
  9671. },
  9672. [
  9673. {
  9674. name: "Normal",
  9675. height: math.unit(9 + 2 / 12, "feet"),
  9676. default: true
  9677. },
  9678. ]
  9679. ))
  9680. characterMakers.push(() => makeCharacter(
  9681. { name: "Typhus" },
  9682. {
  9683. front: {
  9684. height: math.unit(58, "feet"),
  9685. weight: math.unit(89000, "lb"),
  9686. name: "Front",
  9687. image: {
  9688. source: "./media/characters/typhus/front.svg",
  9689. extra: 816 / 800,
  9690. bottom: 0.065
  9691. }
  9692. },
  9693. },
  9694. [
  9695. {
  9696. name: "Macro",
  9697. height: math.unit(58, "feet"),
  9698. default: true
  9699. },
  9700. ]
  9701. ))
  9702. characterMakers.push(() => makeCharacter(
  9703. { name: "Lyra Von Wulf" },
  9704. {
  9705. front: {
  9706. height: math.unit(12, "feet"),
  9707. weight: math.unit(6, "tonnes"),
  9708. name: "Front",
  9709. image: {
  9710. source: "./media/characters/lyra-von-wulf/front.svg",
  9711. extra: 1,
  9712. bottom: 0.10
  9713. }
  9714. },
  9715. frontMecha: {
  9716. height: math.unit(12, "feet"),
  9717. weight: math.unit(12, "tonnes"),
  9718. name: "Front (Mecha)",
  9719. image: {
  9720. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  9721. extra: 1,
  9722. bottom: 0.042
  9723. }
  9724. },
  9725. maw: {
  9726. height: math.unit(2.2, "feet"),
  9727. name: "Maw",
  9728. image: {
  9729. source: "./media/characters/lyra-von-wulf/maw.svg"
  9730. }
  9731. },
  9732. },
  9733. [
  9734. {
  9735. name: "Normal",
  9736. height: math.unit(12, "feet"),
  9737. default: true
  9738. },
  9739. {
  9740. name: "Classic",
  9741. height: math.unit(50, "feet")
  9742. },
  9743. {
  9744. name: "Macro",
  9745. height: math.unit(500, "feet")
  9746. },
  9747. {
  9748. name: "Megamacro",
  9749. height: math.unit(1, "mile")
  9750. },
  9751. {
  9752. name: "Gigamacro",
  9753. height: math.unit(400, "miles")
  9754. },
  9755. {
  9756. name: "Teramacro",
  9757. height: math.unit(22000, "miles")
  9758. },
  9759. {
  9760. name: "Solarmacro",
  9761. height: math.unit(8600000, "miles")
  9762. },
  9763. {
  9764. name: "Galactic",
  9765. height: math.unit(1057000, "lightyears")
  9766. },
  9767. ]
  9768. ))
  9769. characterMakers.push(() => makeCharacter(
  9770. { name: "Dixon" },
  9771. {
  9772. front: {
  9773. height: math.unit(6 + 10 / 12, "feet"),
  9774. weight: math.unit(150, "lb"),
  9775. name: "Front",
  9776. image: {
  9777. source: "./media/characters/dixon/front.svg",
  9778. extra: 3361 / 3209,
  9779. bottom: 0.01
  9780. }
  9781. },
  9782. },
  9783. [
  9784. {
  9785. name: "Normal",
  9786. height: math.unit(6 + 10 / 12, "feet"),
  9787. default: true
  9788. },
  9789. {
  9790. name: "Big",
  9791. height: math.unit(12, "meters")
  9792. },
  9793. {
  9794. name: "Macro",
  9795. height: math.unit(500, "meters")
  9796. },
  9797. {
  9798. name: "Megamacro",
  9799. height: math.unit(2, "km")
  9800. },
  9801. ]
  9802. ))
  9803. characterMakers.push(() => makeCharacter(
  9804. { name: "Kauko" },
  9805. {
  9806. front: {
  9807. height: math.unit(185, "cm"),
  9808. weight: math.unit(68, "kg"),
  9809. name: "Front",
  9810. image: {
  9811. source: "./media/characters/kauko/front.svg",
  9812. extra: 1455 / 1421,
  9813. bottom: 0.03
  9814. }
  9815. },
  9816. back: {
  9817. height: math.unit(185, "cm"),
  9818. weight: math.unit(68, "kg"),
  9819. name: "Back",
  9820. image: {
  9821. source: "./media/characters/kauko/back.svg",
  9822. extra: 1455 / 1421,
  9823. bottom: 0.004
  9824. }
  9825. },
  9826. },
  9827. [
  9828. {
  9829. name: "Normal",
  9830. height: math.unit(185, "cm"),
  9831. default: true
  9832. },
  9833. ]
  9834. ))
  9835. characterMakers.push(() => makeCharacter(
  9836. { name: "Varg" },
  9837. {
  9838. front: {
  9839. height: math.unit(6, "feet"),
  9840. weight: math.unit(150, "kg"),
  9841. name: "Front",
  9842. image: {
  9843. source: "./media/characters/varg/front.svg",
  9844. extra: 1108 / 1018,
  9845. bottom: 0.0375
  9846. }
  9847. },
  9848. },
  9849. [
  9850. {
  9851. name: "Normal",
  9852. height: math.unit(5, "meters")
  9853. },
  9854. {
  9855. name: "Macro",
  9856. height: math.unit(200, "meters")
  9857. },
  9858. {
  9859. name: "Megamacro",
  9860. height: math.unit(20, "kilometers")
  9861. },
  9862. {
  9863. name: "True Size",
  9864. height: math.unit(211, "km"),
  9865. default: true
  9866. },
  9867. {
  9868. name: "Gigamacro",
  9869. height: math.unit(1000, "km")
  9870. },
  9871. {
  9872. name: "Gigamacro+",
  9873. height: math.unit(8000, "km")
  9874. },
  9875. {
  9876. name: "Teramacro",
  9877. height: math.unit(1000000, "km")
  9878. },
  9879. ]
  9880. ))
  9881. characterMakers.push(() => makeCharacter(
  9882. { name: "Dayza" },
  9883. {
  9884. front: {
  9885. height: math.unit(7 + 7 / 12, "feet"),
  9886. weight: math.unit(267, "lb"),
  9887. name: "Front",
  9888. image: {
  9889. source: "./media/characters/dayza/front.svg",
  9890. extra: 1262 / 1200,
  9891. bottom: 0.035
  9892. }
  9893. },
  9894. side: {
  9895. height: math.unit(7 + 7 / 12, "feet"),
  9896. weight: math.unit(267, "lb"),
  9897. name: "Side",
  9898. image: {
  9899. source: "./media/characters/dayza/side.svg",
  9900. extra: 1295 / 1245,
  9901. bottom: 0.05
  9902. }
  9903. },
  9904. back: {
  9905. height: math.unit(7 + 7 / 12, "feet"),
  9906. weight: math.unit(267, "lb"),
  9907. name: "Back",
  9908. image: {
  9909. source: "./media/characters/dayza/back.svg",
  9910. extra: 1241 / 1170
  9911. }
  9912. },
  9913. },
  9914. [
  9915. {
  9916. name: "Normal",
  9917. height: math.unit(7 + 7 / 12, "feet"),
  9918. default: true
  9919. },
  9920. {
  9921. name: "Macro",
  9922. height: math.unit(155, "feet")
  9923. },
  9924. ]
  9925. ))
  9926. characterMakers.push(() => makeCharacter(
  9927. { name: "Xanthos" },
  9928. {
  9929. front: {
  9930. height: math.unit(6 + 5 / 12, "feet"),
  9931. weight: math.unit(160, "lb"),
  9932. name: "Front",
  9933. image: {
  9934. source: "./media/characters/xanthos/front.svg",
  9935. extra: 1,
  9936. bottom: 0.04
  9937. }
  9938. },
  9939. back: {
  9940. height: math.unit(6 + 5 / 12, "feet"),
  9941. weight: math.unit(160, "lb"),
  9942. name: "Back",
  9943. image: {
  9944. source: "./media/characters/xanthos/back.svg",
  9945. extra: 1,
  9946. bottom: 0.03
  9947. }
  9948. },
  9949. hand: {
  9950. height: math.unit(0.928, "feet"),
  9951. name: "Hand",
  9952. image: {
  9953. source: "./media/characters/xanthos/hand.svg"
  9954. }
  9955. },
  9956. foot: {
  9957. height: math.unit(1.286, "feet"),
  9958. name: "Foot",
  9959. image: {
  9960. source: "./media/characters/xanthos/foot.svg"
  9961. }
  9962. },
  9963. },
  9964. [
  9965. {
  9966. name: "Normal",
  9967. height: math.unit(6 + 5 / 12, "feet"),
  9968. default: true
  9969. },
  9970. {
  9971. name: "Normal+",
  9972. height: math.unit(6, "meters")
  9973. },
  9974. {
  9975. name: "Macro",
  9976. height: math.unit(40, "feet")
  9977. },
  9978. {
  9979. name: "Macro+",
  9980. height: math.unit(200, "meters")
  9981. },
  9982. {
  9983. name: "Megamacro",
  9984. height: math.unit(20, "km")
  9985. },
  9986. {
  9987. name: "Megamacro+",
  9988. height: math.unit(100, "km")
  9989. },
  9990. ]
  9991. ))
  9992. characterMakers.push(() => makeCharacter(
  9993. { name: "Grynn" },
  9994. {
  9995. front: {
  9996. height: math.unit(6 + 3 / 12, "feet"),
  9997. weight: math.unit(215, "lb"),
  9998. name: "Front",
  9999. image: {
  10000. source: "./media/characters/grynn/front.svg",
  10001. extra: 4627 / 4209,
  10002. bottom: 0.047
  10003. }
  10004. },
  10005. },
  10006. [
  10007. {
  10008. name: "Micro",
  10009. height: math.unit(6, "inches")
  10010. },
  10011. {
  10012. name: "Normal",
  10013. height: math.unit(6 + 3 / 12, "feet"),
  10014. default: true
  10015. },
  10016. {
  10017. name: "Big",
  10018. height: math.unit(104, "feet")
  10019. },
  10020. {
  10021. name: "Macro",
  10022. height: math.unit(944, "feet")
  10023. },
  10024. {
  10025. name: "Macro+",
  10026. height: math.unit(9480, "feet")
  10027. },
  10028. {
  10029. name: "Megamacro",
  10030. height: math.unit(78752, "feet")
  10031. },
  10032. {
  10033. name: "Megamacro+",
  10034. height: math.unit(630128, "feet")
  10035. },
  10036. {
  10037. name: "Megamacro++",
  10038. height: math.unit(3150695, "feet")
  10039. },
  10040. ]
  10041. ))
  10042. characterMakers.push(() => makeCharacter(
  10043. { name: "Mocha Aura" },
  10044. {
  10045. front: {
  10046. height: math.unit(7 + 5 / 12, "feet"),
  10047. weight: math.unit(450, "lb"),
  10048. name: "Front",
  10049. image: {
  10050. source: "./media/characters/mocha-aura/front.svg",
  10051. extra: 1907 / 1817,
  10052. bottom: 0.04
  10053. }
  10054. },
  10055. back: {
  10056. height: math.unit(7 + 5 / 12, "feet"),
  10057. weight: math.unit(450, "lb"),
  10058. name: "Back",
  10059. image: {
  10060. source: "./media/characters/mocha-aura/back.svg",
  10061. extra: 1900 / 1825,
  10062. bottom: 0.045
  10063. }
  10064. },
  10065. },
  10066. [
  10067. {
  10068. name: "Nano",
  10069. height: math.unit(1, "nm")
  10070. },
  10071. {
  10072. name: "Megamicro",
  10073. height: math.unit(1, "mm")
  10074. },
  10075. {
  10076. name: "Micro",
  10077. height: math.unit(3, "inches")
  10078. },
  10079. {
  10080. name: "Normal",
  10081. height: math.unit(7 + 5 / 12, "feet"),
  10082. default: true
  10083. },
  10084. {
  10085. name: "Macro",
  10086. height: math.unit(30, "feet")
  10087. },
  10088. {
  10089. name: "Megamacro",
  10090. height: math.unit(3500, "feet")
  10091. },
  10092. {
  10093. name: "Teramacro",
  10094. height: math.unit(500000, "miles")
  10095. },
  10096. {
  10097. name: "Petamacro",
  10098. height: math.unit(50000000000000000, "parsecs")
  10099. },
  10100. ]
  10101. ))
  10102. characterMakers.push(() => makeCharacter(
  10103. { name: "Ilisha Devya" },
  10104. {
  10105. front: {
  10106. height: math.unit(6, "feet"),
  10107. weight: math.unit(150, "lb"),
  10108. name: "Front",
  10109. image: {
  10110. source: "./media/characters/ilisha-devya/front.svg",
  10111. extra: 1,
  10112. bottom: 0.175
  10113. }
  10114. },
  10115. back: {
  10116. height: math.unit(6, "feet"),
  10117. weight: math.unit(150, "lb"),
  10118. name: "Back",
  10119. image: {
  10120. source: "./media/characters/ilisha-devya/back.svg",
  10121. extra: 1,
  10122. bottom: 0.015
  10123. }
  10124. },
  10125. },
  10126. [
  10127. {
  10128. name: "Macro",
  10129. height: math.unit(500, "feet"),
  10130. default: true
  10131. },
  10132. {
  10133. name: "Megamacro",
  10134. height: math.unit(10, "miles")
  10135. },
  10136. {
  10137. name: "Gigamacro",
  10138. height: math.unit(100000, "miles")
  10139. },
  10140. {
  10141. name: "Examacro",
  10142. height: math.unit(1e9, "lightyears")
  10143. },
  10144. {
  10145. name: "Omniversal",
  10146. height: math.unit(1e33, "lightyears")
  10147. },
  10148. {
  10149. name: "Beyond Infinite",
  10150. height: math.unit(1e100, "lightyears")
  10151. },
  10152. ]
  10153. ))
  10154. characterMakers.push(() => makeCharacter(
  10155. { name: "Mira" },
  10156. {
  10157. Side: {
  10158. height: math.unit(6, "feet"),
  10159. weight: math.unit(150, "lb"),
  10160. name: "Side",
  10161. image: {
  10162. source: "./media/characters/mira/side.svg",
  10163. extra: 900 / 799,
  10164. bottom: 0.02
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Human Size",
  10171. height: math.unit(6, "feet")
  10172. },
  10173. {
  10174. name: "Macro",
  10175. height: math.unit(100, "feet"),
  10176. default: true
  10177. },
  10178. {
  10179. name: "Megamacro",
  10180. height: math.unit(10, "miles")
  10181. },
  10182. {
  10183. name: "Gigamacro",
  10184. height: math.unit(25000, "miles")
  10185. },
  10186. {
  10187. name: "Teramacro",
  10188. height: math.unit(300, "AU")
  10189. },
  10190. {
  10191. name: "Full Size",
  10192. height: math.unit(4.5e10, "lightyears")
  10193. },
  10194. ]
  10195. ))
  10196. characterMakers.push(() => makeCharacter(
  10197. { name: "Holly" },
  10198. {
  10199. front: {
  10200. height: math.unit(6, "feet"),
  10201. weight: math.unit(150, "lb"),
  10202. name: "Front",
  10203. image: {
  10204. source: "./media/characters/holly/front.svg",
  10205. extra: 639 / 606
  10206. }
  10207. },
  10208. back: {
  10209. height: math.unit(6, "feet"),
  10210. weight: math.unit(150, "lb"),
  10211. name: "Back",
  10212. image: {
  10213. source: "./media/characters/holly/back.svg",
  10214. extra: 623 / 598
  10215. }
  10216. },
  10217. frontWorking: {
  10218. height: math.unit(6, "feet"),
  10219. weight: math.unit(150, "lb"),
  10220. name: "Front (Working)",
  10221. image: {
  10222. source: "./media/characters/holly/front-working.svg",
  10223. extra: 607 / 577,
  10224. bottom: 0.048
  10225. }
  10226. },
  10227. },
  10228. [
  10229. {
  10230. name: "Normal",
  10231. height: math.unit(12 + 3 / 12, "feet"),
  10232. default: true
  10233. },
  10234. ]
  10235. ))
  10236. characterMakers.push(() => makeCharacter(
  10237. { name: "Porter" },
  10238. {
  10239. front: {
  10240. height: math.unit(6, "feet"),
  10241. weight: math.unit(150, "lb"),
  10242. name: "Front",
  10243. image: {
  10244. source: "./media/characters/porter/front.svg",
  10245. extra: 1,
  10246. bottom: 0.01
  10247. }
  10248. },
  10249. frontRobes: {
  10250. height: math.unit(6, "feet"),
  10251. weight: math.unit(150, "lb"),
  10252. name: "Front (Robes)",
  10253. image: {
  10254. source: "./media/characters/porter/front-robes.svg",
  10255. extra: 1.01,
  10256. bottom: 0.01
  10257. }
  10258. },
  10259. },
  10260. [
  10261. {
  10262. name: "Normal",
  10263. height: math.unit(11 + 9 / 12, "feet"),
  10264. default: true
  10265. },
  10266. ]
  10267. ))
  10268. characterMakers.push(() => makeCharacter(
  10269. { name: "Lucy" },
  10270. {
  10271. legendary: {
  10272. height: math.unit(6, "feet"),
  10273. weight: math.unit(150, "lb"),
  10274. name: "Legendary",
  10275. image: {
  10276. source: "./media/characters/lucy/legendary.svg",
  10277. extra: 1355 / 1100,
  10278. bottom: 0.045
  10279. }
  10280. },
  10281. },
  10282. [
  10283. {
  10284. name: "Legendary",
  10285. height: math.unit(86882 * 2, "miles"),
  10286. default: true
  10287. },
  10288. ]
  10289. ))
  10290. characterMakers.push(() => makeCharacter(
  10291. { name: "Drusilla" },
  10292. {
  10293. front: {
  10294. height: math.unit(6, "feet"),
  10295. weight: math.unit(150, "lb"),
  10296. name: "Front",
  10297. image: {
  10298. source: "./media/characters/drusilla/front.svg",
  10299. extra: 678 / 635,
  10300. bottom: 0.03
  10301. }
  10302. },
  10303. back: {
  10304. height: math.unit(6, "feet"),
  10305. weight: math.unit(150, "lb"),
  10306. name: "Back",
  10307. image: {
  10308. source: "./media/characters/drusilla/back.svg",
  10309. extra: 678 / 635,
  10310. bottom: 0.005
  10311. }
  10312. },
  10313. },
  10314. [
  10315. {
  10316. name: "Macro",
  10317. height: math.unit(100, "feet")
  10318. },
  10319. {
  10320. name: "Canon Height",
  10321. height: math.unit(2000, "feet"),
  10322. default: true
  10323. },
  10324. ]
  10325. ))
  10326. characterMakers.push(() => makeCharacter(
  10327. { name: "Renard Thatch" },
  10328. {
  10329. front: {
  10330. height: math.unit(6, "feet"),
  10331. weight: math.unit(180, "lb"),
  10332. name: "Front",
  10333. image: {
  10334. source: "./media/characters/renard-thatch/front.svg",
  10335. extra: 2411 / 2275,
  10336. bottom: 0.01
  10337. }
  10338. },
  10339. frontPosing: {
  10340. height: math.unit(6, "feet"),
  10341. weight: math.unit(180, "lb"),
  10342. name: "Front (Posing)",
  10343. image: {
  10344. source: "./media/characters/renard-thatch/front-posing.svg",
  10345. extra: 2381 / 2261,
  10346. bottom: 0.01
  10347. }
  10348. },
  10349. back: {
  10350. height: math.unit(6, "feet"),
  10351. weight: math.unit(180, "lb"),
  10352. name: "Back",
  10353. image: {
  10354. source: "./media/characters/renard-thatch/back.svg",
  10355. extra: 2428 / 2288
  10356. }
  10357. },
  10358. },
  10359. [
  10360. {
  10361. name: "Micro",
  10362. height: math.unit(3, "inches")
  10363. },
  10364. {
  10365. name: "Default",
  10366. height: math.unit(6, "feet"),
  10367. default: true
  10368. },
  10369. {
  10370. name: "Macro",
  10371. height: math.unit(75, "feet")
  10372. },
  10373. ]
  10374. ))
  10375. characterMakers.push(() => makeCharacter(
  10376. { name: "Sekvra" },
  10377. {
  10378. front: {
  10379. height: math.unit(1450, "feet"),
  10380. weight: math.unit(1.21e6, "tons"),
  10381. name: "Front",
  10382. image: {
  10383. source: "./media/characters/sekvra/front.svg",
  10384. extra: 1,
  10385. bottom: 0.03
  10386. }
  10387. },
  10388. frontClothed: {
  10389. height: math.unit(1450, "feet"),
  10390. weight: math.unit(1.21e6, "tons"),
  10391. name: "Front (Clothed)",
  10392. image: {
  10393. source: "./media/characters/sekvra/front-clothed.svg",
  10394. extra: 1,
  10395. bottom: 0.03
  10396. }
  10397. },
  10398. side: {
  10399. height: math.unit(1450, "feet"),
  10400. weight: math.unit(1.21e6, "tons"),
  10401. name: "Side",
  10402. image: {
  10403. source: "./media/characters/sekvra/side.svg",
  10404. extra: 1,
  10405. bottom: 0.025
  10406. }
  10407. },
  10408. back: {
  10409. height: math.unit(1450, "feet"),
  10410. weight: math.unit(1.21e6, "tons"),
  10411. name: "Back",
  10412. image: {
  10413. source: "./media/characters/sekvra/back.svg",
  10414. extra: 1,
  10415. bottom: 0.005
  10416. }
  10417. },
  10418. },
  10419. [
  10420. {
  10421. name: "Macro",
  10422. height: math.unit(1450, "feet"),
  10423. default: true
  10424. },
  10425. {
  10426. name: "Megamacro",
  10427. height: math.unit(15000, "feet")
  10428. },
  10429. ]
  10430. ))
  10431. characterMakers.push(() => makeCharacter(
  10432. { name: "Carmine" },
  10433. {
  10434. front: {
  10435. height: math.unit(6, "feet"),
  10436. weight: math.unit(150, "lb"),
  10437. name: "Front",
  10438. image: {
  10439. source: "./media/characters/carmine/front.svg",
  10440. extra: 1,
  10441. bottom: 0.035
  10442. }
  10443. },
  10444. frontArmor: {
  10445. height: math.unit(6, "feet"),
  10446. weight: math.unit(150, "lb"),
  10447. name: "Front (Armor)",
  10448. image: {
  10449. source: "./media/characters/carmine/front-armor.svg",
  10450. extra: 1,
  10451. bottom: 0.035
  10452. }
  10453. },
  10454. },
  10455. [
  10456. {
  10457. name: "Large",
  10458. height: math.unit(1, "mile")
  10459. },
  10460. {
  10461. name: "Huge",
  10462. height: math.unit(40, "miles"),
  10463. default: true
  10464. },
  10465. {
  10466. name: "Colossal",
  10467. height: math.unit(2500, "miles")
  10468. },
  10469. ]
  10470. ))
  10471. characterMakers.push(() => makeCharacter(
  10472. { name: "Elyssia" },
  10473. {
  10474. front: {
  10475. height: math.unit(6, "feet"),
  10476. weight: math.unit(150, "lb"),
  10477. name: "Front",
  10478. image: {
  10479. source: "./media/characters/elyssia/front.svg",
  10480. extra: 2201 / 2035,
  10481. bottom: 0.05
  10482. }
  10483. },
  10484. frontClothed: {
  10485. height: math.unit(6, "feet"),
  10486. weight: math.unit(150, "lb"),
  10487. name: "Front (Clothed)",
  10488. image: {
  10489. source: "./media/characters/elyssia/front-clothed.svg",
  10490. extra: 2201 / 2035,
  10491. bottom: 0.05
  10492. }
  10493. },
  10494. back: {
  10495. height: math.unit(6, "feet"),
  10496. weight: math.unit(150, "lb"),
  10497. name: "Back",
  10498. image: {
  10499. source: "./media/characters/elyssia/back.svg",
  10500. extra: 2201 / 2035,
  10501. bottom: 0.013
  10502. }
  10503. },
  10504. },
  10505. [
  10506. {
  10507. name: "Smaller",
  10508. height: math.unit(150, "feet")
  10509. },
  10510. {
  10511. name: "Standard",
  10512. height: math.unit(1400, "feet"),
  10513. default: true
  10514. },
  10515. {
  10516. name: "Distracted",
  10517. height: math.unit(15000, "feet")
  10518. },
  10519. ]
  10520. ))
  10521. characterMakers.push(() => makeCharacter(
  10522. { name: "Geno Maxwell" },
  10523. {
  10524. front: {
  10525. height: math.unit(7 + 4 / 12, "feet"),
  10526. weight: math.unit(500, "lb"),
  10527. name: "Front",
  10528. image: {
  10529. source: "./media/characters/geno-maxwell/front.svg",
  10530. extra: 2207 / 2040,
  10531. bottom: 0.015
  10532. }
  10533. },
  10534. },
  10535. [
  10536. {
  10537. name: "Micro",
  10538. height: math.unit(3, "inches")
  10539. },
  10540. {
  10541. name: "Normal",
  10542. height: math.unit(7 + 4 / 12, "feet"),
  10543. default: true
  10544. },
  10545. {
  10546. name: "Macro",
  10547. height: math.unit(220, "feet")
  10548. },
  10549. {
  10550. name: "Megamacro",
  10551. height: math.unit(11, "miles")
  10552. },
  10553. ]
  10554. ))
  10555. characterMakers.push(() => makeCharacter(
  10556. { name: "Regena Maxwell" },
  10557. {
  10558. front: {
  10559. height: math.unit(7 + 4 / 12, "feet"),
  10560. weight: math.unit(500, "lb"),
  10561. name: "Front",
  10562. image: {
  10563. source: "./media/characters/regena-maxwell/front.svg",
  10564. extra: 3115 / 2770,
  10565. bottom: 0.02
  10566. }
  10567. },
  10568. },
  10569. [
  10570. {
  10571. name: "Normal",
  10572. height: math.unit(7 + 4 / 12, "feet"),
  10573. default: true
  10574. },
  10575. {
  10576. name: "Macro",
  10577. height: math.unit(220, "feet")
  10578. },
  10579. {
  10580. name: "Megamacro",
  10581. height: math.unit(11, "miles")
  10582. },
  10583. ]
  10584. ))
  10585. characterMakers.push(() => makeCharacter(
  10586. { name: "XGlidingDragonX" },
  10587. {
  10588. front: {
  10589. height: math.unit(6, "feet"),
  10590. weight: math.unit(150, "lb"),
  10591. name: "Front",
  10592. image: {
  10593. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10594. extra: 860 / 690,
  10595. bottom: 0.03
  10596. }
  10597. },
  10598. },
  10599. [
  10600. {
  10601. name: "Normal",
  10602. height: math.unit(1.7, "meters"),
  10603. default: true
  10604. },
  10605. ]
  10606. ))
  10607. characterMakers.push(() => makeCharacter(
  10608. { name: "Quilly" },
  10609. {
  10610. front: {
  10611. height: math.unit(6, "feet"),
  10612. weight: math.unit(150, "lb"),
  10613. name: "Front",
  10614. image: {
  10615. source: "./media/characters/quilly/front.svg",
  10616. extra: 890 / 776
  10617. }
  10618. },
  10619. },
  10620. [
  10621. {
  10622. name: "Gigamacro",
  10623. height: math.unit(404090, "miles"),
  10624. default: true
  10625. },
  10626. ]
  10627. ))
  10628. characterMakers.push(() => makeCharacter(
  10629. { name: "Tempest" },
  10630. {
  10631. front: {
  10632. height: math.unit(7 + 8 / 12, "feet"),
  10633. weight: math.unit(350, "lb"),
  10634. name: "Front",
  10635. image: {
  10636. source: "./media/characters/tempest/front.svg",
  10637. extra: 1175 / 1086,
  10638. bottom: 0.02
  10639. }
  10640. },
  10641. },
  10642. [
  10643. {
  10644. name: "Normal",
  10645. height: math.unit(7 + 8 / 12, "feet"),
  10646. default: true
  10647. },
  10648. ]
  10649. ))
  10650. characterMakers.push(() => makeCharacter(
  10651. { name: "Rodger" },
  10652. {
  10653. side: {
  10654. height: math.unit(4 + 5 / 12, "feet"),
  10655. weight: math.unit(80, "lb"),
  10656. name: "Side",
  10657. image: {
  10658. source: "./media/characters/rodger/side.svg",
  10659. extra: 1235 / 1118
  10660. }
  10661. },
  10662. },
  10663. [
  10664. {
  10665. name: "Micro",
  10666. height: math.unit(1, "inch")
  10667. },
  10668. {
  10669. name: "Normal",
  10670. height: math.unit(4 + 5 / 12, "feet"),
  10671. default: true
  10672. },
  10673. {
  10674. name: "Macro",
  10675. height: math.unit(120, "feet")
  10676. },
  10677. ]
  10678. ))
  10679. characterMakers.push(() => makeCharacter(
  10680. { name: "Danyel" },
  10681. {
  10682. front: {
  10683. height: math.unit(6, "feet"),
  10684. weight: math.unit(150, "lb"),
  10685. name: "Front",
  10686. image: {
  10687. source: "./media/characters/danyel/front.svg",
  10688. extra: 1185 / 1123,
  10689. bottom: 0.05
  10690. }
  10691. },
  10692. },
  10693. [
  10694. {
  10695. name: "Shrunken",
  10696. height: math.unit(0.5, "mm")
  10697. },
  10698. {
  10699. name: "Micro",
  10700. height: math.unit(1, "mm"),
  10701. default: true
  10702. },
  10703. {
  10704. name: "Upsized",
  10705. height: math.unit(5 + 5 / 12, "feet")
  10706. },
  10707. ]
  10708. ))
  10709. characterMakers.push(() => makeCharacter(
  10710. { name: "Vivian Bijoux" },
  10711. {
  10712. front: {
  10713. height: math.unit(5 + 6 / 12, "feet"),
  10714. weight: math.unit(200, "lb"),
  10715. name: "Front",
  10716. image: {
  10717. source: "./media/characters/vivian-bijoux/front.svg",
  10718. extra: 1,
  10719. bottom: 0.072
  10720. }
  10721. },
  10722. },
  10723. [
  10724. {
  10725. name: "Normal",
  10726. height: math.unit(5 + 6 / 12, "feet"),
  10727. default: true
  10728. },
  10729. {
  10730. name: "Bad Dream",
  10731. height: math.unit(500, "feet")
  10732. },
  10733. {
  10734. name: "Nightmare",
  10735. height: math.unit(500, "miles")
  10736. },
  10737. ]
  10738. ))
  10739. characterMakers.push(() => makeCharacter(
  10740. { name: "Zeta" },
  10741. {
  10742. front: {
  10743. height: math.unit(6 + 1 / 12, "feet"),
  10744. weight: math.unit(260, "lb"),
  10745. name: "Front",
  10746. image: {
  10747. source: "./media/characters/zeta/front.svg",
  10748. extra: 1968 / 1889,
  10749. bottom: 0.06
  10750. }
  10751. },
  10752. back: {
  10753. height: math.unit(6 + 1 / 12, "feet"),
  10754. weight: math.unit(260, "lb"),
  10755. name: "Back",
  10756. image: {
  10757. source: "./media/characters/zeta/back.svg",
  10758. extra: 1944 / 1858,
  10759. bottom: 0.03
  10760. }
  10761. },
  10762. hand: {
  10763. height: math.unit(1.112, "feet"),
  10764. name: "Hand",
  10765. image: {
  10766. source: "./media/characters/zeta/hand.svg"
  10767. }
  10768. },
  10769. foot: {
  10770. height: math.unit(1.48, "feet"),
  10771. name: "Foot",
  10772. image: {
  10773. source: "./media/characters/zeta/foot.svg"
  10774. }
  10775. },
  10776. },
  10777. [
  10778. {
  10779. name: "Micro",
  10780. height: math.unit(6, "inches")
  10781. },
  10782. {
  10783. name: "Normal",
  10784. height: math.unit(6 + 1 / 12, "feet"),
  10785. default: true
  10786. },
  10787. {
  10788. name: "Macro",
  10789. height: math.unit(20, "feet")
  10790. },
  10791. ]
  10792. ))
  10793. characterMakers.push(() => makeCharacter(
  10794. { name: "Jamie Larsen" },
  10795. {
  10796. front: {
  10797. height: math.unit(6, "feet"),
  10798. weight: math.unit(150, "lb"),
  10799. name: "Front",
  10800. image: {
  10801. source: "./media/characters/jamie-larsen/front.svg",
  10802. extra: 962 / 933,
  10803. bottom: 0.02
  10804. }
  10805. },
  10806. back: {
  10807. height: math.unit(6, "feet"),
  10808. weight: math.unit(150, "lb"),
  10809. name: "Back",
  10810. image: {
  10811. source: "./media/characters/jamie-larsen/back.svg",
  10812. extra: 997 / 946
  10813. }
  10814. },
  10815. },
  10816. [
  10817. {
  10818. name: "Macro",
  10819. height: math.unit(28 + 7 / 12, "feet"),
  10820. default: true
  10821. },
  10822. {
  10823. name: "Macro+",
  10824. height: math.unit(180, "feet")
  10825. },
  10826. {
  10827. name: "Megamacro",
  10828. height: math.unit(10, "miles")
  10829. },
  10830. {
  10831. name: "Gigamacro",
  10832. height: math.unit(200000, "miles")
  10833. },
  10834. ]
  10835. ))
  10836. characterMakers.push(() => makeCharacter(
  10837. { name: "Vance" },
  10838. {
  10839. front: {
  10840. height: math.unit(6, "feet"),
  10841. weight: math.unit(120, "lb"),
  10842. name: "Front",
  10843. image: {
  10844. source: "./media/characters/vance/front.svg",
  10845. extra: 1980 / 1890,
  10846. bottom: 0.09
  10847. }
  10848. },
  10849. back: {
  10850. height: math.unit(6, "feet"),
  10851. weight: math.unit(120, "lb"),
  10852. name: "Back",
  10853. image: {
  10854. source: "./media/characters/vance/back.svg",
  10855. extra: 2081 / 1994,
  10856. bottom: 0.014
  10857. }
  10858. },
  10859. hand: {
  10860. height: math.unit(0.88, "feet"),
  10861. name: "Hand",
  10862. image: {
  10863. source: "./media/characters/vance/hand.svg"
  10864. }
  10865. },
  10866. foot: {
  10867. height: math.unit(0.64, "feet"),
  10868. name: "Foot",
  10869. image: {
  10870. source: "./media/characters/vance/foot.svg"
  10871. }
  10872. },
  10873. },
  10874. [
  10875. {
  10876. name: "Small",
  10877. height: math.unit(90, "feet"),
  10878. default: true
  10879. },
  10880. {
  10881. name: "Macro",
  10882. height: math.unit(100, "meters")
  10883. },
  10884. {
  10885. name: "Megamacro",
  10886. height: math.unit(15, "miles")
  10887. },
  10888. ]
  10889. ))
  10890. characterMakers.push(() => makeCharacter(
  10891. { name: "Xochitl" },
  10892. {
  10893. front: {
  10894. height: math.unit(6, "feet"),
  10895. weight: math.unit(180, "lb"),
  10896. name: "Front",
  10897. image: {
  10898. source: "./media/characters/xochitl/front.svg",
  10899. extra: 2297 / 2261,
  10900. bottom: 0.065
  10901. }
  10902. },
  10903. back: {
  10904. height: math.unit(6, "feet"),
  10905. weight: math.unit(180, "lb"),
  10906. name: "Back",
  10907. image: {
  10908. source: "./media/characters/xochitl/back.svg",
  10909. extra: 2386 / 2354,
  10910. bottom: 0.01
  10911. }
  10912. },
  10913. foot: {
  10914. height: math.unit(6 / 5 * 1.15, "feet"),
  10915. weight: math.unit(150, "lb"),
  10916. name: "Foot",
  10917. image: {
  10918. source: "./media/characters/xochitl/foot.svg"
  10919. }
  10920. },
  10921. },
  10922. [
  10923. {
  10924. name: "Macro",
  10925. height: math.unit(80, "feet")
  10926. },
  10927. {
  10928. name: "Macro+",
  10929. height: math.unit(400, "feet"),
  10930. default: true
  10931. },
  10932. {
  10933. name: "Gigamacro",
  10934. height: math.unit(80000, "miles")
  10935. },
  10936. {
  10937. name: "Gigamacro+",
  10938. height: math.unit(400000, "miles")
  10939. },
  10940. {
  10941. name: "Teramacro",
  10942. height: math.unit(300, "AU")
  10943. },
  10944. ]
  10945. ))
  10946. characterMakers.push(() => makeCharacter(
  10947. { name: "Vincent" },
  10948. {
  10949. front: {
  10950. height: math.unit(6, "feet"),
  10951. weight: math.unit(150, "lb"),
  10952. name: "Front",
  10953. image: {
  10954. source: "./media/characters/vincent/front.svg",
  10955. extra: 1130 / 1080,
  10956. bottom: 0.055
  10957. }
  10958. },
  10959. beak: {
  10960. height: math.unit(6 * 0.1, "feet"),
  10961. name: "Beak",
  10962. image: {
  10963. source: "./media/characters/vincent/beak.svg"
  10964. }
  10965. },
  10966. hand: {
  10967. height: math.unit(6 * 0.85, "feet"),
  10968. weight: math.unit(150, "lb"),
  10969. name: "Hand",
  10970. image: {
  10971. source: "./media/characters/vincent/hand.svg"
  10972. }
  10973. },
  10974. foot: {
  10975. height: math.unit(6 * 0.19, "feet"),
  10976. weight: math.unit(150, "lb"),
  10977. name: "Foot",
  10978. image: {
  10979. source: "./media/characters/vincent/foot.svg"
  10980. }
  10981. },
  10982. },
  10983. [
  10984. {
  10985. name: "Base",
  10986. height: math.unit(6 + 5 / 12, "feet"),
  10987. default: true
  10988. },
  10989. {
  10990. name: "Macro",
  10991. height: math.unit(300, "feet")
  10992. },
  10993. {
  10994. name: "Megamacro",
  10995. height: math.unit(2, "miles")
  10996. },
  10997. {
  10998. name: "Gigamacro",
  10999. height: math.unit(1000, "miles")
  11000. },
  11001. ]
  11002. ))
  11003. characterMakers.push(() => makeCharacter(
  11004. { name: "Jay" },
  11005. {
  11006. front: {
  11007. height: math.unit(6 + 2 / 12, "feet"),
  11008. weight: math.unit(65, "lb"),
  11009. name: "Front",
  11010. image: {
  11011. source: "./media/characters/jay/front.svg",
  11012. extra: 1510 / 1430,
  11013. bottom: 0.042
  11014. }
  11015. },
  11016. back: {
  11017. height: math.unit(6 + 2 / 12, "feet"),
  11018. weight: math.unit(65, "lb"),
  11019. name: "Back",
  11020. image: {
  11021. source: "./media/characters/jay/back.svg",
  11022. extra: 1510 / 1430,
  11023. bottom: 0.025
  11024. }
  11025. },
  11026. clothed: {
  11027. height: math.unit(6 + 2 / 12, "feet"),
  11028. weight: math.unit(65, "lb"),
  11029. name: "Front (Clothed)",
  11030. image: {
  11031. source: "./media/characters/jay/clothed.svg",
  11032. extra: 744 / 699,
  11033. bottom: 0.043
  11034. }
  11035. },
  11036. },
  11037. [
  11038. {
  11039. name: "Micro",
  11040. height: math.unit(1, "inch")
  11041. },
  11042. {
  11043. name: "Normal",
  11044. height: math.unit(6 + 2 / 12, "feet"),
  11045. default: true
  11046. },
  11047. {
  11048. name: "Macro",
  11049. height: math.unit(1, "mile")
  11050. },
  11051. {
  11052. name: "Megamacro",
  11053. height: math.unit(100, "miles")
  11054. },
  11055. ]
  11056. ))
  11057. characterMakers.push(() => makeCharacter(
  11058. { name: "Coatl" },
  11059. {
  11060. front: {
  11061. height: math.unit(2, "meters"),
  11062. weight: math.unit(500, "kg"),
  11063. name: "Front",
  11064. image: {
  11065. source: "./media/characters/coatl/front.svg",
  11066. extra: 3948 / 3500,
  11067. bottom: 0.082
  11068. }
  11069. },
  11070. },
  11071. [
  11072. {
  11073. name: "Normal",
  11074. height: math.unit(4, "meters")
  11075. },
  11076. {
  11077. name: "Macro",
  11078. height: math.unit(100, "meters"),
  11079. default: true
  11080. },
  11081. {
  11082. name: "Macro+",
  11083. height: math.unit(300, "meters")
  11084. },
  11085. {
  11086. name: "Megamacro",
  11087. height: math.unit(3, "gigameters")
  11088. },
  11089. {
  11090. name: "Megamacro+",
  11091. height: math.unit(300, "terameters")
  11092. },
  11093. {
  11094. name: "Megamacro++",
  11095. height: math.unit(3, "lightyears")
  11096. },
  11097. ]
  11098. ))
  11099. characterMakers.push(() => makeCharacter(
  11100. { name: "Shiroryu" },
  11101. {
  11102. front: {
  11103. height: math.unit(6, "feet"),
  11104. weight: math.unit(50, "kg"),
  11105. name: "front",
  11106. image: {
  11107. source: "./media/characters/shiroryu/front.svg",
  11108. extra: 1990 / 1935
  11109. }
  11110. },
  11111. },
  11112. [
  11113. {
  11114. name: "Mortal Mingling",
  11115. height: math.unit(3, "meters")
  11116. },
  11117. {
  11118. name: "Kaiju-ish",
  11119. height: math.unit(250, "meters")
  11120. },
  11121. {
  11122. name: "Somewhat Godly",
  11123. height: math.unit(400, "km"),
  11124. default: true
  11125. },
  11126. {
  11127. name: "Planetary",
  11128. height: math.unit(300, "megameters")
  11129. },
  11130. {
  11131. name: "Galaxy-dwarfing",
  11132. height: math.unit(450, "kiloparsecs")
  11133. },
  11134. {
  11135. name: "Universe Eater",
  11136. height: math.unit(150, "gigaparsecs")
  11137. },
  11138. {
  11139. name: "Almost Immeasurable",
  11140. height: math.unit(1.3e266, "yottaparsecs")
  11141. },
  11142. ]
  11143. ))
  11144. characterMakers.push(() => makeCharacter(
  11145. { name: "Umeko" },
  11146. {
  11147. front: {
  11148. height: math.unit(6, "feet"),
  11149. weight: math.unit(150, "lb"),
  11150. name: "Front",
  11151. image: {
  11152. source: "./media/characters/umeko/front.svg",
  11153. extra: 1,
  11154. bottom: 0.019
  11155. }
  11156. },
  11157. frontArmored: {
  11158. height: math.unit(6, "feet"),
  11159. weight: math.unit(150, "lb"),
  11160. name: "Front (Armored)",
  11161. image: {
  11162. source: "./media/characters/umeko/front-armored.svg",
  11163. extra: 1,
  11164. bottom: 0.021
  11165. }
  11166. },
  11167. },
  11168. [
  11169. {
  11170. name: "Macro",
  11171. height: math.unit(220, "feet"),
  11172. default: true
  11173. },
  11174. {
  11175. name: "Guardian Dragon",
  11176. height: math.unit(50, "miles")
  11177. },
  11178. {
  11179. name: "Cosmic",
  11180. height: math.unit(800000, "miles")
  11181. },
  11182. ]
  11183. ))
  11184. characterMakers.push(() => makeCharacter(
  11185. { name: "Cassidy" },
  11186. {
  11187. front: {
  11188. height: math.unit(6, "feet"),
  11189. weight: math.unit(150, "lb"),
  11190. name: "Front",
  11191. image: {
  11192. source: "./media/characters/cassidy/front.svg",
  11193. extra: 1,
  11194. bottom: 0.043
  11195. }
  11196. },
  11197. },
  11198. [
  11199. {
  11200. name: "Canon Height",
  11201. height: math.unit(120, "feet"),
  11202. default: true
  11203. },
  11204. {
  11205. name: "Macro+",
  11206. height: math.unit(400, "feet")
  11207. },
  11208. {
  11209. name: "Macro++",
  11210. height: math.unit(4000, "feet")
  11211. },
  11212. {
  11213. name: "Megamacro",
  11214. height: math.unit(3, "miles")
  11215. },
  11216. ]
  11217. ))
  11218. characterMakers.push(() => makeCharacter(
  11219. { name: "Isaac" },
  11220. {
  11221. front: {
  11222. height: math.unit(6, "feet"),
  11223. weight: math.unit(150, "lb"),
  11224. name: "Front",
  11225. image: {
  11226. source: "./media/characters/isaac/front.svg",
  11227. extra: 896 / 815,
  11228. bottom: 0.11
  11229. }
  11230. },
  11231. },
  11232. [
  11233. {
  11234. name: "Human Size",
  11235. height: math.unit(8, "feet"),
  11236. default: true
  11237. },
  11238. {
  11239. name: "Macro",
  11240. height: math.unit(400, "feet")
  11241. },
  11242. {
  11243. name: "Megamacro",
  11244. height: math.unit(50, "miles")
  11245. },
  11246. {
  11247. name: "Canon Height",
  11248. height: math.unit(200, "AU")
  11249. },
  11250. ]
  11251. ))
  11252. characterMakers.push(() => makeCharacter(
  11253. { name: "Sleekit" },
  11254. {
  11255. front: {
  11256. height: math.unit(6, "feet"),
  11257. weight: math.unit(72, "kg"),
  11258. name: "Front",
  11259. image: {
  11260. source: "./media/characters/sleekit/front.svg",
  11261. extra: 4693 / 4487,
  11262. bottom: 0.012
  11263. }
  11264. },
  11265. },
  11266. [
  11267. {
  11268. name: "Minimum Height",
  11269. height: math.unit(10, "meters")
  11270. },
  11271. {
  11272. name: "Smaller",
  11273. height: math.unit(25, "meters")
  11274. },
  11275. {
  11276. name: "Larger",
  11277. height: math.unit(38, "meters"),
  11278. default: true
  11279. },
  11280. {
  11281. name: "Maximum height",
  11282. height: math.unit(100, "meters")
  11283. },
  11284. ]
  11285. ))
  11286. characterMakers.push(() => makeCharacter(
  11287. { name: "Nillia" },
  11288. {
  11289. front: {
  11290. height: math.unit(6, "feet"),
  11291. weight: math.unit(150, "lb"),
  11292. name: "Front",
  11293. image: {
  11294. source: "./media/characters/nillia/front.svg",
  11295. extra: 2195 / 2037,
  11296. bottom: 0.005
  11297. }
  11298. },
  11299. back: {
  11300. height: math.unit(6, "feet"),
  11301. weight: math.unit(150, "lb"),
  11302. name: "Back",
  11303. image: {
  11304. source: "./media/characters/nillia/back.svg",
  11305. extra: 2195 / 2037,
  11306. bottom: 0.005
  11307. }
  11308. },
  11309. },
  11310. [
  11311. {
  11312. name: "Canon Height",
  11313. height: math.unit(489, "feet"),
  11314. default: true
  11315. }
  11316. ]
  11317. ))
  11318. characterMakers.push(() => makeCharacter(
  11319. { name: "Mesmyriza" },
  11320. {
  11321. front: {
  11322. height: math.unit(6, "feet"),
  11323. weight: math.unit(150, "lb"),
  11324. name: "Front",
  11325. image: {
  11326. source: "./media/characters/mesmyriza/front.svg",
  11327. extra: 2067 / 1784,
  11328. bottom: 0.035
  11329. }
  11330. },
  11331. foot: {
  11332. height: math.unit(6 / (250 / 35), "feet"),
  11333. name: "Foot",
  11334. image: {
  11335. source: "./media/characters/mesmyriza/foot.svg"
  11336. }
  11337. },
  11338. },
  11339. [
  11340. {
  11341. name: "Macro",
  11342. height: math.unit(457, "meters"),
  11343. default: true
  11344. },
  11345. {
  11346. name: "Megamacro",
  11347. height: math.unit(8, "megameters")
  11348. },
  11349. ]
  11350. ))
  11351. characterMakers.push(() => makeCharacter(
  11352. { name: "Saudade" },
  11353. {
  11354. front: {
  11355. height: math.unit(6, "feet"),
  11356. weight: math.unit(250, "lb"),
  11357. name: "Front",
  11358. image: {
  11359. source: "./media/characters/saudade/front.svg",
  11360. extra: 1172 / 1139,
  11361. bottom: 0.035
  11362. }
  11363. },
  11364. },
  11365. [
  11366. {
  11367. name: "Micro",
  11368. height: math.unit(3, "inches")
  11369. },
  11370. {
  11371. name: "Normal",
  11372. height: math.unit(6, "feet"),
  11373. default: true
  11374. },
  11375. {
  11376. name: "Macro",
  11377. height: math.unit(50, "feet")
  11378. },
  11379. {
  11380. name: "Megamacro",
  11381. height: math.unit(2800, "feet")
  11382. },
  11383. ]
  11384. ))
  11385. characterMakers.push(() => makeCharacter(
  11386. { name: "Keireer" },
  11387. {
  11388. front: {
  11389. height: math.unit(5 + 4 / 12, "feet"),
  11390. weight: math.unit(100, "lb"),
  11391. name: "Front",
  11392. image: {
  11393. source: "./media/characters/keireer/front.svg",
  11394. extra: 716 / 666,
  11395. bottom: 0.05
  11396. }
  11397. },
  11398. },
  11399. [
  11400. {
  11401. name: "Normal",
  11402. height: math.unit(5 + 4 / 12, "feet"),
  11403. default: true
  11404. },
  11405. ]
  11406. ))
  11407. characterMakers.push(() => makeCharacter(
  11408. { name: "Mirja" },
  11409. {
  11410. front: {
  11411. height: math.unit(6, "feet"),
  11412. weight: math.unit(90, "kg"),
  11413. name: "Front",
  11414. image: {
  11415. source: "./media/characters/mirja/front.svg",
  11416. extra: 1789 / 1683,
  11417. bottom: 0.05
  11418. }
  11419. },
  11420. frontDressed: {
  11421. height: math.unit(6, "feet"),
  11422. weight: math.unit(90, "lb"),
  11423. name: "Front (Dressed)",
  11424. image: {
  11425. source: "./media/characters/mirja/front-dressed.svg",
  11426. extra: 1789 / 1683,
  11427. bottom: 0.05
  11428. }
  11429. },
  11430. back: {
  11431. height: math.unit(6, "feet"),
  11432. weight: math.unit(90, "lb"),
  11433. name: "Back",
  11434. image: {
  11435. source: "./media/characters/mirja/back.svg",
  11436. extra: 953 / 917,
  11437. bottom: 0.017
  11438. }
  11439. },
  11440. },
  11441. [
  11442. {
  11443. name: "\"Incognito\"",
  11444. height: math.unit(3, "meters")
  11445. },
  11446. {
  11447. name: "Strolling Size",
  11448. height: math.unit(15, "km")
  11449. },
  11450. {
  11451. name: "Larger Strolling Size",
  11452. height: math.unit(400, "km")
  11453. },
  11454. {
  11455. name: "Preferred Size",
  11456. height: math.unit(5000, "km")
  11457. },
  11458. {
  11459. name: "True Size",
  11460. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11461. default: true
  11462. },
  11463. ]
  11464. ))
  11465. characterMakers.push(() => makeCharacter(
  11466. { name: "Nightraver" },
  11467. {
  11468. front: {
  11469. height: math.unit(15, "feet"),
  11470. weight: math.unit(880, "kg"),
  11471. name: "Front",
  11472. image: {
  11473. source: "./media/characters/nightraver/front.svg",
  11474. extra: 2444 / 2160,
  11475. bottom: 0.027
  11476. }
  11477. },
  11478. back: {
  11479. height: math.unit(15, "feet"),
  11480. weight: math.unit(880, "kg"),
  11481. name: "Back",
  11482. image: {
  11483. source: "./media/characters/nightraver/back.svg",
  11484. extra: 2309 / 2180,
  11485. bottom: 0.005
  11486. }
  11487. },
  11488. sole: {
  11489. height: math.unit(2.878, "feet"),
  11490. name: "Sole",
  11491. image: {
  11492. source: "./media/characters/nightraver/sole.svg"
  11493. }
  11494. },
  11495. foot: {
  11496. height: math.unit(2.285, "feet"),
  11497. name: "Foot",
  11498. image: {
  11499. source: "./media/characters/nightraver/foot.svg"
  11500. }
  11501. },
  11502. maw: {
  11503. height: math.unit(2.67, "feet"),
  11504. name: "Maw",
  11505. image: {
  11506. source: "./media/characters/nightraver/maw.svg"
  11507. }
  11508. },
  11509. },
  11510. [
  11511. {
  11512. name: "Micro",
  11513. height: math.unit(1, "cm")
  11514. },
  11515. {
  11516. name: "Normal",
  11517. height: math.unit(15, "feet"),
  11518. default: true
  11519. },
  11520. {
  11521. name: "Macro",
  11522. height: math.unit(300, "feet")
  11523. },
  11524. {
  11525. name: "Megamacro",
  11526. height: math.unit(300, "miles")
  11527. },
  11528. {
  11529. name: "Gigamacro",
  11530. height: math.unit(10000, "miles")
  11531. },
  11532. ]
  11533. ))
  11534. characterMakers.push(() => makeCharacter(
  11535. { name: "Arc" },
  11536. {
  11537. side: {
  11538. height: math.unit(2, "inches"),
  11539. weight: math.unit(5, "grams"),
  11540. name: "Side",
  11541. image: {
  11542. source: "./media/characters/arc/side.svg"
  11543. }
  11544. },
  11545. },
  11546. [
  11547. {
  11548. name: "Micro",
  11549. height: math.unit(2, "inches"),
  11550. default: true
  11551. },
  11552. ]
  11553. ))
  11554. characterMakers.push(() => makeCharacter(
  11555. { name: "Nebula Shahar" },
  11556. {
  11557. front: {
  11558. height: math.unit(1.1938, "meters"),
  11559. weight: math.unit(54, "kg"),
  11560. name: "Front",
  11561. image: {
  11562. source: "./media/characters/nebula-shahar/front.svg",
  11563. extra: 1642 / 1436,
  11564. bottom: 0.06
  11565. }
  11566. },
  11567. },
  11568. [
  11569. {
  11570. name: "Megamicro",
  11571. height: math.unit(0.3, "mm")
  11572. },
  11573. {
  11574. name: "Micro",
  11575. height: math.unit(3, "cm")
  11576. },
  11577. {
  11578. name: "Normal",
  11579. height: math.unit(138, "cm"),
  11580. default: true
  11581. },
  11582. {
  11583. name: "Macro",
  11584. height: math.unit(30, "m")
  11585. },
  11586. ]
  11587. ))
  11588. characterMakers.push(() => makeCharacter(
  11589. { name: "Shayla" },
  11590. {
  11591. front: {
  11592. height: math.unit(5.24, "feet"),
  11593. weight: math.unit(150, "lb"),
  11594. name: "Front",
  11595. image: {
  11596. source: "./media/characters/shayla/front.svg",
  11597. extra: 1512 / 1414,
  11598. bottom: 0.01
  11599. }
  11600. },
  11601. back: {
  11602. height: math.unit(5.24, "feet"),
  11603. weight: math.unit(150, "lb"),
  11604. name: "Back",
  11605. image: {
  11606. source: "./media/characters/shayla/back.svg",
  11607. extra: 1512 / 1414
  11608. }
  11609. },
  11610. hand: {
  11611. height: math.unit(0.7781496062992126, "feet"),
  11612. name: "Hand",
  11613. image: {
  11614. source: "./media/characters/shayla/hand.svg"
  11615. }
  11616. },
  11617. foot: {
  11618. height: math.unit(1.4206036745406823, "feet"),
  11619. name: "Foot",
  11620. image: {
  11621. source: "./media/characters/shayla/foot.svg"
  11622. }
  11623. },
  11624. },
  11625. [
  11626. {
  11627. name: "Micro",
  11628. height: math.unit(0.32, "feet")
  11629. },
  11630. {
  11631. name: "Normal",
  11632. height: math.unit(5.24, "feet"),
  11633. default: true
  11634. },
  11635. {
  11636. name: "Macro",
  11637. height: math.unit(492.12, "feet")
  11638. },
  11639. {
  11640. name: "Megamacro",
  11641. height: math.unit(186.41, "miles")
  11642. },
  11643. ]
  11644. ))
  11645. characterMakers.push(() => makeCharacter(
  11646. { name: "Pia Jr." },
  11647. {
  11648. front: {
  11649. height: math.unit(2.2, "m"),
  11650. weight: math.unit(120, "kg"),
  11651. name: "Front",
  11652. image: {
  11653. source: "./media/characters/pia-jr/front.svg",
  11654. extra: 1000 / 970,
  11655. bottom: 0.035
  11656. }
  11657. },
  11658. hand: {
  11659. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11660. name: "Hand",
  11661. image: {
  11662. source: "./media/characters/pia-jr/hand.svg"
  11663. }
  11664. },
  11665. paw: {
  11666. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11667. name: "Paw",
  11668. image: {
  11669. source: "./media/characters/pia-jr/paw.svg"
  11670. }
  11671. },
  11672. },
  11673. [
  11674. {
  11675. name: "Micro",
  11676. height: math.unit(1.2, "cm")
  11677. },
  11678. {
  11679. name: "Normal",
  11680. height: math.unit(2.2, "m"),
  11681. default: true
  11682. },
  11683. {
  11684. name: "Macro",
  11685. height: math.unit(180, "m")
  11686. },
  11687. {
  11688. name: "Megamacro",
  11689. height: math.unit(420, "km")
  11690. },
  11691. ]
  11692. ))
  11693. characterMakers.push(() => makeCharacter(
  11694. { name: "Pia Sr." },
  11695. {
  11696. front: {
  11697. height: math.unit(2, "m"),
  11698. weight: math.unit(115, "kg"),
  11699. name: "Front",
  11700. image: {
  11701. source: "./media/characters/pia-sr/front.svg",
  11702. extra: 760 / 730,
  11703. bottom: 0.015
  11704. }
  11705. },
  11706. back: {
  11707. height: math.unit(2, "m"),
  11708. weight: math.unit(115, "kg"),
  11709. name: "Back",
  11710. image: {
  11711. source: "./media/characters/pia-sr/back.svg",
  11712. extra: 760 / 730,
  11713. bottom: 0.01
  11714. }
  11715. },
  11716. hand: {
  11717. height: math.unit(0.89 * 6.56 / 6, "feet"),
  11718. name: "Hand",
  11719. image: {
  11720. source: "./media/characters/pia-sr/hand.svg"
  11721. }
  11722. },
  11723. foot: {
  11724. height: math.unit(1.83, "feet"),
  11725. name: "Foot",
  11726. image: {
  11727. source: "./media/characters/pia-sr/foot.svg"
  11728. }
  11729. },
  11730. },
  11731. [
  11732. {
  11733. name: "Micro",
  11734. height: math.unit(88, "mm")
  11735. },
  11736. {
  11737. name: "Normal",
  11738. height: math.unit(2, "m"),
  11739. default: true
  11740. },
  11741. {
  11742. name: "Macro",
  11743. height: math.unit(200, "m")
  11744. },
  11745. {
  11746. name: "Megamacro",
  11747. height: math.unit(420, "km")
  11748. },
  11749. ]
  11750. ))
  11751. characterMakers.push(() => makeCharacter(
  11752. { name: "KIBIBYTE" },
  11753. {
  11754. front: {
  11755. height: math.unit(8 + 2 / 12, "feet"),
  11756. weight: math.unit(300, "lb"),
  11757. name: "Front",
  11758. image: {
  11759. source: "./media/characters/kibibyte/front.svg",
  11760. extra: 2221 / 2098,
  11761. bottom: 0.04
  11762. }
  11763. },
  11764. },
  11765. [
  11766. {
  11767. name: "Normal",
  11768. height: math.unit(8 + 2 / 12, "feet"),
  11769. default: true
  11770. },
  11771. {
  11772. name: "Socialable Macro",
  11773. height: math.unit(50, "feet")
  11774. },
  11775. {
  11776. name: "Macro",
  11777. height: math.unit(300, "feet")
  11778. },
  11779. {
  11780. name: "Megamacro",
  11781. height: math.unit(500, "miles")
  11782. },
  11783. ]
  11784. ))
  11785. characterMakers.push(() => makeCharacter(
  11786. { name: "Felix" },
  11787. {
  11788. front: {
  11789. height: math.unit(6, "feet"),
  11790. weight: math.unit(150, "lb"),
  11791. name: "Front",
  11792. image: {
  11793. source: "./media/characters/felix/front.svg",
  11794. extra: 762 / 722,
  11795. bottom: 0.02
  11796. }
  11797. },
  11798. frontClothed: {
  11799. height: math.unit(6, "feet"),
  11800. weight: math.unit(150, "lb"),
  11801. name: "Front (Clothed)",
  11802. image: {
  11803. source: "./media/characters/felix/front-clothed.svg",
  11804. extra: 762 / 722,
  11805. bottom: 0.02
  11806. }
  11807. },
  11808. },
  11809. [
  11810. {
  11811. name: "Normal",
  11812. height: math.unit(6 + 8 / 12, "feet"),
  11813. default: true
  11814. },
  11815. {
  11816. name: "Macro",
  11817. height: math.unit(2600, "feet")
  11818. },
  11819. {
  11820. name: "Megamacro",
  11821. height: math.unit(450, "miles")
  11822. },
  11823. ]
  11824. ))
  11825. characterMakers.push(() => makeCharacter(
  11826. { name: "Tobo" },
  11827. {
  11828. front: {
  11829. height: math.unit(6 + 1 / 12, "feet"),
  11830. weight: math.unit(250, "lb"),
  11831. name: "Front",
  11832. image: {
  11833. source: "./media/characters/tobo/front.svg",
  11834. extra: 608 / 586,
  11835. bottom: 0.023
  11836. }
  11837. },
  11838. back: {
  11839. height: math.unit(6 + 1 / 12, "feet"),
  11840. weight: math.unit(250, "lb"),
  11841. name: "Back",
  11842. image: {
  11843. source: "./media/characters/tobo/back.svg",
  11844. extra: 608 / 586
  11845. }
  11846. },
  11847. },
  11848. [
  11849. {
  11850. name: "Nano",
  11851. height: math.unit(2, "nm")
  11852. },
  11853. {
  11854. name: "Megamicro",
  11855. height: math.unit(0.1, "mm")
  11856. },
  11857. {
  11858. name: "Micro",
  11859. height: math.unit(1, "inch"),
  11860. default: true
  11861. },
  11862. {
  11863. name: "Human-sized",
  11864. height: math.unit(6 + 1 / 12, "feet")
  11865. },
  11866. {
  11867. name: "Macro",
  11868. height: math.unit(250, "feet")
  11869. },
  11870. {
  11871. name: "Megamacro",
  11872. height: math.unit(75, "miles")
  11873. },
  11874. {
  11875. name: "Texas-sized",
  11876. height: math.unit(750, "miles")
  11877. },
  11878. {
  11879. name: "Teramacro",
  11880. height: math.unit(50000, "miles")
  11881. },
  11882. ]
  11883. ))
  11884. characterMakers.push(() => makeCharacter(
  11885. { name: "Danny Kapowsky" },
  11886. {
  11887. front: {
  11888. height: math.unit(6, "feet"),
  11889. weight: math.unit(269, "lb"),
  11890. name: "Front",
  11891. image: {
  11892. source: "./media/characters/danny-kapowsky/front.svg",
  11893. extra: 766 / 736,
  11894. bottom: 0.044
  11895. }
  11896. },
  11897. back: {
  11898. height: math.unit(6, "feet"),
  11899. weight: math.unit(269, "lb"),
  11900. name: "Back",
  11901. image: {
  11902. source: "./media/characters/danny-kapowsky/back.svg",
  11903. extra: 797 / 760,
  11904. bottom: 0.025
  11905. }
  11906. },
  11907. },
  11908. [
  11909. {
  11910. name: "Macro",
  11911. height: math.unit(150, "feet"),
  11912. default: true
  11913. },
  11914. {
  11915. name: "Macro+",
  11916. height: math.unit(200, "feet")
  11917. },
  11918. {
  11919. name: "Macro++",
  11920. height: math.unit(300, "feet")
  11921. },
  11922. {
  11923. name: "Macro+++",
  11924. height: math.unit(400, "feet")
  11925. },
  11926. ]
  11927. ))
  11928. characterMakers.push(() => makeCharacter(
  11929. { name: "Finn" },
  11930. {
  11931. side: {
  11932. height: math.unit(6, "feet"),
  11933. weight: math.unit(170, "lb"),
  11934. name: "Side",
  11935. image: {
  11936. source: "./media/characters/finn/side.svg",
  11937. extra: 1953 / 1807,
  11938. bottom: 0.057
  11939. }
  11940. },
  11941. },
  11942. [
  11943. {
  11944. name: "Megamacro",
  11945. height: math.unit(14445, "feet"),
  11946. default: true
  11947. },
  11948. ]
  11949. ))
  11950. characterMakers.push(() => makeCharacter(
  11951. { name: "Roy" },
  11952. {
  11953. front: {
  11954. height: math.unit(5 + 6 / 12, "feet"),
  11955. weight: math.unit(125, "lb"),
  11956. name: "Front",
  11957. image: {
  11958. source: "./media/characters/roy/front.svg",
  11959. extra: 1,
  11960. bottom: 0.11
  11961. }
  11962. },
  11963. },
  11964. [
  11965. {
  11966. name: "Micro",
  11967. height: math.unit(3, "inches"),
  11968. default: true
  11969. },
  11970. {
  11971. name: "Normal",
  11972. height: math.unit(5 + 6 / 12, "feet")
  11973. },
  11974. {
  11975. name: "Lesser Macro",
  11976. height: math.unit(60, "feet")
  11977. },
  11978. {
  11979. name: "Greater Macro",
  11980. height: math.unit(120, "feet")
  11981. },
  11982. ]
  11983. ))
  11984. characterMakers.push(() => makeCharacter(
  11985. { name: "Aevsivs" },
  11986. {
  11987. front: {
  11988. height: math.unit(6, "feet"),
  11989. weight: math.unit(100, "lb"),
  11990. name: "Front",
  11991. image: {
  11992. source: "./media/characters/aevsivs/front.svg",
  11993. extra: 1,
  11994. bottom: 0.03
  11995. }
  11996. },
  11997. back: {
  11998. height: math.unit(6, "feet"),
  11999. weight: math.unit(100, "lb"),
  12000. name: "Back",
  12001. image: {
  12002. source: "./media/characters/aevsivs/back.svg"
  12003. }
  12004. },
  12005. },
  12006. [
  12007. {
  12008. name: "Micro",
  12009. height: math.unit(2, "inches"),
  12010. default: true
  12011. },
  12012. {
  12013. name: "Normal",
  12014. height: math.unit(5, "feet")
  12015. },
  12016. ]
  12017. ))
  12018. characterMakers.push(() => makeCharacter(
  12019. { name: "Hildegard" },
  12020. {
  12021. front: {
  12022. height: math.unit(5 + 7 / 12, "feet"),
  12023. weight: math.unit(159, "lb"),
  12024. name: "Front",
  12025. image: {
  12026. source: "./media/characters/hildegard/front.svg",
  12027. extra: 312 / 286,
  12028. bottom: 0.005
  12029. }
  12030. },
  12031. },
  12032. [
  12033. {
  12034. name: "Normal",
  12035. height: math.unit(5 + 7 / 12, "feet"),
  12036. default: true
  12037. },
  12038. ]
  12039. ))
  12040. characterMakers.push(() => makeCharacter(
  12041. { name: "Bernard & Wilder" },
  12042. {
  12043. bernard: {
  12044. height: math.unit(2 + 7 / 12, "feet"),
  12045. weight: math.unit(66, "lb"),
  12046. name: "Bernard",
  12047. rename: true,
  12048. image: {
  12049. source: "./media/characters/bernard-wilder/bernard.svg",
  12050. extra: 192 / 128,
  12051. bottom: 0.05
  12052. }
  12053. },
  12054. wilder: {
  12055. height: math.unit(5 + 8 / 12, "feet"),
  12056. weight: math.unit(143, "lb"),
  12057. name: "Wilder",
  12058. rename: true,
  12059. image: {
  12060. source: "./media/characters/bernard-wilder/wilder.svg",
  12061. extra: 361 / 312,
  12062. bottom: 0.02
  12063. }
  12064. },
  12065. },
  12066. [
  12067. {
  12068. name: "Normal",
  12069. height: math.unit(2 + 7 / 12, "feet"),
  12070. default: true
  12071. },
  12072. ]
  12073. ))
  12074. characterMakers.push(() => makeCharacter(
  12075. { name: "Hearth" },
  12076. {
  12077. anthro: {
  12078. height: math.unit(6 + 1 / 12, "feet"),
  12079. weight: math.unit(155, "lb"),
  12080. name: "Anthro",
  12081. image: {
  12082. source: "./media/characters/hearth/anthro.svg",
  12083. extra: 260 / 250,
  12084. bottom: 0.02
  12085. }
  12086. },
  12087. feral: {
  12088. height: math.unit(3.78, "feet"),
  12089. weight: math.unit(35, "kg"),
  12090. name: "Feral",
  12091. image: {
  12092. source: "./media/characters/hearth/feral.svg",
  12093. extra: 153 / 135,
  12094. bottom: 0.03
  12095. }
  12096. },
  12097. },
  12098. [
  12099. {
  12100. name: "Normal",
  12101. height: math.unit(6 + 1 / 12, "feet"),
  12102. default: true
  12103. },
  12104. ]
  12105. ))
  12106. characterMakers.push(() => makeCharacter(
  12107. { name: "Ingrid" },
  12108. {
  12109. front: {
  12110. height: math.unit(6, "feet"),
  12111. weight: math.unit(182, "lb"),
  12112. name: "Front",
  12113. image: {
  12114. source: "./media/characters/ingrid/front.svg",
  12115. extra: 294 / 268,
  12116. bottom: 0.027
  12117. }
  12118. },
  12119. },
  12120. [
  12121. {
  12122. name: "Normal",
  12123. height: math.unit(6, "feet"),
  12124. default: true
  12125. },
  12126. ]
  12127. ))
  12128. characterMakers.push(() => makeCharacter(
  12129. { name: "Malgam" },
  12130. {
  12131. eevee: {
  12132. height: math.unit(2 + 10 / 12, "feet"),
  12133. weight: math.unit(86, "lb"),
  12134. name: "Malgam",
  12135. image: {
  12136. source: "./media/characters/malgam/eevee.svg",
  12137. extra: 218 / 180,
  12138. bottom: 0.2
  12139. }
  12140. },
  12141. sylveon: {
  12142. height: math.unit(4, "feet"),
  12143. weight: math.unit(101, "lb"),
  12144. name: "Future Malgam",
  12145. rename: true,
  12146. image: {
  12147. source: "./media/characters/malgam/sylveon.svg",
  12148. extra: 371 / 325,
  12149. bottom: 0.015
  12150. }
  12151. },
  12152. gigantamax: {
  12153. height: math.unit(50, "feet"),
  12154. name: "Gigantamax Malgam",
  12155. rename: true,
  12156. image: {
  12157. source: "./media/characters/malgam/gigantamax.svg"
  12158. }
  12159. },
  12160. },
  12161. [
  12162. {
  12163. name: "Normal",
  12164. height: math.unit(2 + 10 / 12, "feet"),
  12165. default: true
  12166. },
  12167. ]
  12168. ))
  12169. characterMakers.push(() => makeCharacter(
  12170. { name: "Fleur" },
  12171. {
  12172. front: {
  12173. height: math.unit(5 + 11 / 12, "feet"),
  12174. weight: math.unit(188, "lb"),
  12175. name: "Front",
  12176. image: {
  12177. source: "./media/characters/fleur/front.svg",
  12178. extra: 309 / 283,
  12179. bottom: 0.007
  12180. }
  12181. },
  12182. },
  12183. [
  12184. {
  12185. name: "Normal",
  12186. height: math.unit(5 + 11 / 12, "feet"),
  12187. default: true
  12188. },
  12189. ]
  12190. ))
  12191. characterMakers.push(() => makeCharacter(
  12192. { name: "Jude" },
  12193. {
  12194. front: {
  12195. height: math.unit(5 + 4 / 12, "feet"),
  12196. weight: math.unit(122, "lb"),
  12197. name: "Front",
  12198. image: {
  12199. source: "./media/characters/jude/front.svg",
  12200. extra: 288 / 273,
  12201. bottom: 0.03
  12202. }
  12203. },
  12204. },
  12205. [
  12206. {
  12207. name: "Normal",
  12208. height: math.unit(5 + 4 / 12, "feet"),
  12209. default: true
  12210. },
  12211. ]
  12212. ))
  12213. characterMakers.push(() => makeCharacter(
  12214. { name: "Seara" },
  12215. {
  12216. front: {
  12217. height: math.unit(5 + 11 / 12, "feet"),
  12218. weight: math.unit(190, "lb"),
  12219. name: "Front",
  12220. image: {
  12221. source: "./media/characters/seara/front.svg",
  12222. extra: 1,
  12223. bottom: 0.05
  12224. }
  12225. },
  12226. },
  12227. [
  12228. {
  12229. name: "Normal",
  12230. height: math.unit(5 + 11 / 12, "feet"),
  12231. default: true
  12232. },
  12233. ]
  12234. ))
  12235. characterMakers.push(() => makeCharacter(
  12236. { name: "Caspian" },
  12237. {
  12238. front: {
  12239. height: math.unit(16 + 5 / 12, "feet"),
  12240. weight: math.unit(524, "lb"),
  12241. name: "Front",
  12242. image: {
  12243. source: "./media/characters/caspian/front.svg",
  12244. extra: 1,
  12245. bottom: 0.04
  12246. }
  12247. },
  12248. },
  12249. [
  12250. {
  12251. name: "Normal",
  12252. height: math.unit(16 + 5 / 12, "feet"),
  12253. default: true
  12254. },
  12255. ]
  12256. ))
  12257. characterMakers.push(() => makeCharacter(
  12258. { name: "Mika" },
  12259. {
  12260. front: {
  12261. height: math.unit(5 + 7 / 12, "feet"),
  12262. weight: math.unit(170, "lb"),
  12263. name: "Front",
  12264. image: {
  12265. source: "./media/characters/mika/front.svg",
  12266. extra: 1,
  12267. bottom: 0.016
  12268. }
  12269. },
  12270. },
  12271. [
  12272. {
  12273. name: "Normal",
  12274. height: math.unit(5 + 7 / 12, "feet"),
  12275. default: true
  12276. },
  12277. ]
  12278. ))
  12279. characterMakers.push(() => makeCharacter(
  12280. { name: "Sol" },
  12281. {
  12282. front: {
  12283. height: math.unit(6 + 2 / 12, "feet"),
  12284. weight: math.unit(268, "lb"),
  12285. name: "Front",
  12286. image: {
  12287. source: "./media/characters/sol/front.svg",
  12288. extra: 247 / 231,
  12289. bottom: 0.05
  12290. }
  12291. },
  12292. },
  12293. [
  12294. {
  12295. name: "Normal",
  12296. height: math.unit(6 + 2 / 12, "feet"),
  12297. default: true
  12298. },
  12299. ]
  12300. ))
  12301. characterMakers.push(() => makeCharacter(
  12302. { name: "Umiko" },
  12303. {
  12304. buizel: {
  12305. height: math.unit(2 + 5 / 12, "feet"),
  12306. weight: math.unit(87, "lb"),
  12307. name: "Buizel",
  12308. image: {
  12309. source: "./media/characters/umiko/buizel.svg",
  12310. extra: 172 / 157,
  12311. bottom: 0.01
  12312. }
  12313. },
  12314. floatzel: {
  12315. height: math.unit(5 + 9 / 12, "feet"),
  12316. weight: math.unit(250, "lb"),
  12317. name: "Floatzel",
  12318. image: {
  12319. source: "./media/characters/umiko/floatzel.svg",
  12320. extra: 262 / 248
  12321. }
  12322. },
  12323. },
  12324. [
  12325. {
  12326. name: "Normal",
  12327. height: math.unit(2 + 5 / 12, "feet"),
  12328. default: true
  12329. },
  12330. ]
  12331. ))
  12332. characterMakers.push(() => makeCharacter(
  12333. { name: "Iliac" },
  12334. {
  12335. front: {
  12336. height: math.unit(6 + 2 / 12, "feet"),
  12337. weight: math.unit(146, "lb"),
  12338. name: "Front",
  12339. image: {
  12340. source: "./media/characters/iliac/front.svg",
  12341. extra: 389 / 365,
  12342. bottom: 0.035
  12343. }
  12344. },
  12345. },
  12346. [
  12347. {
  12348. name: "Normal",
  12349. height: math.unit(6 + 2 / 12, "feet"),
  12350. default: true
  12351. },
  12352. ]
  12353. ))
  12354. characterMakers.push(() => makeCharacter(
  12355. { name: "Topaz" },
  12356. {
  12357. front: {
  12358. height: math.unit(6, "feet"),
  12359. weight: math.unit(170, "lb"),
  12360. name: "Front",
  12361. image: {
  12362. source: "./media/characters/topaz/front.svg",
  12363. extra: 317 / 303,
  12364. bottom: 0.055
  12365. }
  12366. },
  12367. },
  12368. [
  12369. {
  12370. name: "Normal",
  12371. height: math.unit(6, "feet"),
  12372. default: true
  12373. },
  12374. ]
  12375. ))
  12376. characterMakers.push(() => makeCharacter(
  12377. { name: "Gabriel" },
  12378. {
  12379. front: {
  12380. height: math.unit(5 + 11 / 12, "feet"),
  12381. weight: math.unit(144, "lb"),
  12382. name: "Front",
  12383. image: {
  12384. source: "./media/characters/gabriel/front.svg",
  12385. extra: 285 / 262,
  12386. bottom: 0.004
  12387. }
  12388. },
  12389. },
  12390. [
  12391. {
  12392. name: "Normal",
  12393. height: math.unit(5 + 11 / 12, "feet"),
  12394. default: true
  12395. },
  12396. ]
  12397. ))
  12398. characterMakers.push(() => makeCharacter(
  12399. { name: "Tempest (Suicune)" },
  12400. {
  12401. side: {
  12402. height: math.unit(6 + 5 / 12, "feet"),
  12403. weight: math.unit(300, "lb"),
  12404. name: "Side",
  12405. image: {
  12406. source: "./media/characters/tempest-suicune/side.svg",
  12407. extra: 195 / 154,
  12408. bottom: 0.04
  12409. }
  12410. },
  12411. },
  12412. [
  12413. {
  12414. name: "Normal",
  12415. height: math.unit(6 + 5 / 12, "feet"),
  12416. default: true
  12417. },
  12418. ]
  12419. ))
  12420. characterMakers.push(() => makeCharacter(
  12421. { name: "Vulcan" },
  12422. {
  12423. front: {
  12424. height: math.unit(7 + 2 / 12, "feet"),
  12425. weight: math.unit(322, "lb"),
  12426. name: "Front",
  12427. image: {
  12428. source: "./media/characters/vulcan/front.svg",
  12429. extra: 154 / 147,
  12430. bottom: 0.04
  12431. }
  12432. },
  12433. },
  12434. [
  12435. {
  12436. name: "Normal",
  12437. height: math.unit(7 + 2 / 12, "feet"),
  12438. default: true
  12439. },
  12440. ]
  12441. ))
  12442. characterMakers.push(() => makeCharacter(
  12443. { name: "Gault" },
  12444. {
  12445. front: {
  12446. height: math.unit(5 + 10 / 12, "feet"),
  12447. weight: math.unit(264, "lb"),
  12448. name: "Front",
  12449. image: {
  12450. source: "./media/characters/gault/front.svg",
  12451. extra: 161 / 140,
  12452. bottom: 0.028
  12453. }
  12454. },
  12455. },
  12456. [
  12457. {
  12458. name: "Normal",
  12459. height: math.unit(5 + 10 / 12, "feet"),
  12460. default: true
  12461. },
  12462. ]
  12463. ))
  12464. characterMakers.push(() => makeCharacter(
  12465. { name: "Shard" },
  12466. {
  12467. front: {
  12468. height: math.unit(6, "feet"),
  12469. weight: math.unit(150, "lb"),
  12470. name: "Front",
  12471. image: {
  12472. source: "./media/characters/shard/front.svg",
  12473. extra: 273 / 238,
  12474. bottom: 0.02
  12475. }
  12476. },
  12477. },
  12478. [
  12479. {
  12480. name: "Normal",
  12481. height: math.unit(3 + 6 / 12, "feet"),
  12482. default: true
  12483. },
  12484. ]
  12485. ))
  12486. characterMakers.push(() => makeCharacter(
  12487. { name: "Ashe" },
  12488. {
  12489. front: {
  12490. height: math.unit(5 + 11 / 12, "feet"),
  12491. weight: math.unit(146, "lb"),
  12492. name: "Front",
  12493. image: {
  12494. source: "./media/characters/ashe/front.svg",
  12495. extra: 400 / 373,
  12496. bottom: 0.01
  12497. }
  12498. },
  12499. },
  12500. [
  12501. {
  12502. name: "Normal",
  12503. height: math.unit(5 + 11 / 12, "feet"),
  12504. default: true
  12505. },
  12506. ]
  12507. ))
  12508. characterMakers.push(() => makeCharacter(
  12509. { name: "Beatrix" },
  12510. {
  12511. front: {
  12512. height: math.unit(5 + 5 / 12, "feet"),
  12513. weight: math.unit(135, "lb"),
  12514. name: "Front",
  12515. image: {
  12516. source: "./media/characters/beatrix/front.svg",
  12517. extra: 392 / 379,
  12518. bottom: 0.01
  12519. }
  12520. },
  12521. },
  12522. [
  12523. {
  12524. name: "Normal",
  12525. height: math.unit(6, "feet"),
  12526. default: true
  12527. },
  12528. ]
  12529. ))
  12530. characterMakers.push(() => makeCharacter(
  12531. { name: "Ignatius" },
  12532. {
  12533. front: {
  12534. height: math.unit(6, "feet"),
  12535. weight: math.unit(150, "lb"),
  12536. name: "Front",
  12537. image: {
  12538. source: "./media/characters/ignatius/front.svg",
  12539. extra: 245 / 222,
  12540. bottom: 0.01
  12541. }
  12542. },
  12543. },
  12544. [
  12545. {
  12546. name: "Normal",
  12547. height: math.unit(5 + 5 / 12, "feet"),
  12548. default: true
  12549. },
  12550. ]
  12551. ))
  12552. characterMakers.push(() => makeCharacter(
  12553. { name: "Mei Li" },
  12554. {
  12555. front: {
  12556. height: math.unit(6 + 2 / 12, "feet"),
  12557. weight: math.unit(138, "lb"),
  12558. name: "Front",
  12559. image: {
  12560. source: "./media/characters/mei-li/front.svg",
  12561. extra: 237 / 229,
  12562. bottom: 0.03
  12563. }
  12564. },
  12565. },
  12566. [
  12567. {
  12568. name: "Normal",
  12569. height: math.unit(6 + 2 / 12, "feet"),
  12570. default: true
  12571. },
  12572. ]
  12573. ))
  12574. characterMakers.push(() => makeCharacter(
  12575. { name: "Puru" },
  12576. {
  12577. front: {
  12578. height: math.unit(2 + 4 / 12, "feet"),
  12579. weight: math.unit(62, "lb"),
  12580. name: "Front",
  12581. image: {
  12582. source: "./media/characters/puru/front.svg",
  12583. extra: 206 / 149,
  12584. bottom: 0.06
  12585. }
  12586. },
  12587. },
  12588. [
  12589. {
  12590. name: "Normal",
  12591. height: math.unit(2 + 4 / 12, "feet"),
  12592. default: true
  12593. },
  12594. ]
  12595. ))
  12596. characterMakers.push(() => makeCharacter(
  12597. { name: "Kee" },
  12598. {
  12599. taur: {
  12600. height: math.unit(11, "feet"),
  12601. weight: math.unit(500, "lb"),
  12602. name: "Taur",
  12603. image: {
  12604. source: "./media/characters/kee/taur.svg",
  12605. extra: 1,
  12606. bottom: 0.04
  12607. }
  12608. },
  12609. },
  12610. [
  12611. {
  12612. name: "Normal",
  12613. height: math.unit(11, "feet"),
  12614. default: true
  12615. },
  12616. ]
  12617. ))
  12618. characterMakers.push(() => makeCharacter(
  12619. { name: "Cobalt (Dracha)" },
  12620. {
  12621. anthro: {
  12622. height: math.unit(7, "feet"),
  12623. weight: math.unit(190, "lb"),
  12624. name: "Anthro",
  12625. image: {
  12626. source: "./media/characters/cobalt-dracha/anthro.svg",
  12627. extra: 231 / 225,
  12628. bottom: 0.04
  12629. }
  12630. },
  12631. feral: {
  12632. height: math.unit(9 + 7 / 12, "feet"),
  12633. weight: math.unit(294, "lb"),
  12634. name: "Feral",
  12635. image: {
  12636. source: "./media/characters/cobalt-dracha/feral.svg",
  12637. extra: 692 / 633,
  12638. bottom: 0.05
  12639. }
  12640. },
  12641. },
  12642. [
  12643. {
  12644. name: "Normal",
  12645. height: math.unit(7, "feet"),
  12646. default: true
  12647. },
  12648. ]
  12649. ))
  12650. characterMakers.push(() => makeCharacter(
  12651. { name: "Java" },
  12652. {
  12653. fallen: {
  12654. height: math.unit(11 + 8 / 12, "feet"),
  12655. weight: math.unit(485, "lb"),
  12656. name: "Java (Fallen)",
  12657. rename: true,
  12658. image: {
  12659. source: "./media/characters/java/fallen.svg",
  12660. extra: 226 / 208,
  12661. bottom: 0.005
  12662. }
  12663. },
  12664. godkin: {
  12665. height: math.unit(10 + 6 / 12, "feet"),
  12666. weight: math.unit(328, "lb"),
  12667. name: "Java (Godkin)",
  12668. rename: true,
  12669. image: {
  12670. source: "./media/characters/java/godkin.svg",
  12671. extra: 270 / 262,
  12672. bottom: 0.02
  12673. }
  12674. },
  12675. },
  12676. [
  12677. {
  12678. name: "Normal",
  12679. height: math.unit(11 + 8 / 12, "feet"),
  12680. default: true
  12681. },
  12682. ]
  12683. ))
  12684. characterMakers.push(() => makeCharacter(
  12685. { name: "Skoll" },
  12686. {
  12687. front: {
  12688. height: math.unit(7 + 8 / 12, "feet"),
  12689. weight: math.unit(320, "lb"),
  12690. name: "Front",
  12691. image: {
  12692. source: "./media/characters/skoll/front.svg",
  12693. extra: 232 / 220,
  12694. bottom: 0.02
  12695. }
  12696. },
  12697. },
  12698. [
  12699. {
  12700. name: "Normal",
  12701. height: math.unit(7 + 8 / 12, "feet"),
  12702. default: true
  12703. },
  12704. ]
  12705. ))
  12706. characterMakers.push(() => makeCharacter(
  12707. { name: "Purna" },
  12708. {
  12709. front: {
  12710. height: math.unit(5 + 9 / 12, "feet"),
  12711. weight: math.unit(170, "lb"),
  12712. name: "Front",
  12713. image: {
  12714. source: "./media/characters/purna/front.svg",
  12715. extra: 239 / 229,
  12716. bottom: 0.01
  12717. }
  12718. },
  12719. },
  12720. [
  12721. {
  12722. name: "Normal",
  12723. height: math.unit(5 + 9 / 12, "feet"),
  12724. default: true
  12725. },
  12726. ]
  12727. ))
  12728. characterMakers.push(() => makeCharacter(
  12729. { name: "Kuva" },
  12730. {
  12731. front: {
  12732. height: math.unit(5 + 9 / 12, "feet"),
  12733. weight: math.unit(142, "lb"),
  12734. name: "Front",
  12735. image: {
  12736. source: "./media/characters/kuva/front.svg",
  12737. extra: 281 / 271,
  12738. bottom: 0.006
  12739. }
  12740. },
  12741. },
  12742. [
  12743. {
  12744. name: "Normal",
  12745. height: math.unit(5 + 9 / 12, "feet"),
  12746. default: true
  12747. },
  12748. ]
  12749. ))
  12750. characterMakers.push(() => makeCharacter(
  12751. { name: "Embra" },
  12752. {
  12753. anthro: {
  12754. height: math.unit(9 + 2 / 12, "feet"),
  12755. weight: math.unit(270, "lb"),
  12756. name: "Anthro",
  12757. image: {
  12758. source: "./media/characters/embra/anthro.svg",
  12759. extra: 200 / 187,
  12760. bottom: 0.02
  12761. }
  12762. },
  12763. feral: {
  12764. height: math.unit(18 + 8 / 12, "feet"),
  12765. weight: math.unit(576, "lb"),
  12766. name: "Feral",
  12767. image: {
  12768. source: "./media/characters/embra/feral.svg",
  12769. extra: 152 / 137,
  12770. bottom: 0.037
  12771. }
  12772. },
  12773. },
  12774. [
  12775. {
  12776. name: "Normal",
  12777. height: math.unit(9 + 2 / 12, "feet"),
  12778. default: true
  12779. },
  12780. ]
  12781. ))
  12782. characterMakers.push(() => makeCharacter(
  12783. { name: "Grottos" },
  12784. {
  12785. anthro: {
  12786. height: math.unit(10 + 9 / 12, "feet"),
  12787. weight: math.unit(224, "lb"),
  12788. name: "Anthro",
  12789. image: {
  12790. source: "./media/characters/grottos/anthro.svg",
  12791. extra: 350 / 332,
  12792. bottom: 0.045
  12793. }
  12794. },
  12795. feral: {
  12796. height: math.unit(20 + 7 / 12, "feet"),
  12797. weight: math.unit(629, "lb"),
  12798. name: "Feral",
  12799. image: {
  12800. source: "./media/characters/grottos/feral.svg",
  12801. extra: 207 / 190,
  12802. bottom: 0.05
  12803. }
  12804. },
  12805. },
  12806. [
  12807. {
  12808. name: "Normal",
  12809. height: math.unit(10 + 9 / 12, "feet"),
  12810. default: true
  12811. },
  12812. ]
  12813. ))
  12814. characterMakers.push(() => makeCharacter(
  12815. { name: "Frifna" },
  12816. {
  12817. anthro: {
  12818. height: math.unit(9 + 6 / 12, "feet"),
  12819. weight: math.unit(298, "lb"),
  12820. name: "Anthro",
  12821. image: {
  12822. source: "./media/characters/frifna/anthro.svg",
  12823. extra: 282 / 269,
  12824. bottom: 0.015
  12825. }
  12826. },
  12827. feral: {
  12828. height: math.unit(16 + 2 / 12, "feet"),
  12829. weight: math.unit(624, "lb"),
  12830. name: "Feral",
  12831. image: {
  12832. source: "./media/characters/frifna/feral.svg"
  12833. }
  12834. },
  12835. },
  12836. [
  12837. {
  12838. name: "Normal",
  12839. height: math.unit(9 + 6 / 12, "feet"),
  12840. default: true
  12841. },
  12842. ]
  12843. ))
  12844. characterMakers.push(() => makeCharacter(
  12845. { name: "Elise" },
  12846. {
  12847. front: {
  12848. height: math.unit(6 + 2 / 12, "feet"),
  12849. weight: math.unit(168, "lb"),
  12850. name: "Front",
  12851. image: {
  12852. source: "./media/characters/elise/front.svg",
  12853. extra: 276 / 271
  12854. }
  12855. },
  12856. },
  12857. [
  12858. {
  12859. name: "Normal",
  12860. height: math.unit(6 + 2 / 12, "feet"),
  12861. default: true
  12862. },
  12863. ]
  12864. ))
  12865. characterMakers.push(() => makeCharacter(
  12866. { name: "Glade" },
  12867. {
  12868. front: {
  12869. height: math.unit(5 + 10 / 12, "feet"),
  12870. weight: math.unit(210, "lb"),
  12871. name: "Front",
  12872. image: {
  12873. source: "./media/characters/glade/front.svg",
  12874. extra: 258 / 247,
  12875. bottom: 0.008
  12876. }
  12877. },
  12878. },
  12879. [
  12880. {
  12881. name: "Normal",
  12882. height: math.unit(5 + 10 / 12, "feet"),
  12883. default: true
  12884. },
  12885. ]
  12886. ))
  12887. characterMakers.push(() => makeCharacter(
  12888. { name: "Rina" },
  12889. {
  12890. front: {
  12891. height: math.unit(5 + 10 / 12, "feet"),
  12892. weight: math.unit(129, "lb"),
  12893. name: "Front",
  12894. image: {
  12895. source: "./media/characters/rina/front.svg",
  12896. extra: 266 / 255,
  12897. bottom: 0.005
  12898. }
  12899. },
  12900. },
  12901. [
  12902. {
  12903. name: "Normal",
  12904. height: math.unit(5 + 10 / 12, "feet"),
  12905. default: true
  12906. },
  12907. ]
  12908. ))
  12909. characterMakers.push(() => makeCharacter(
  12910. { name: "Veronica" },
  12911. {
  12912. front: {
  12913. height: math.unit(6 + 1 / 12, "feet"),
  12914. weight: math.unit(192, "lb"),
  12915. name: "Front",
  12916. image: {
  12917. source: "./media/characters/veronica/front.svg",
  12918. extra: 319 / 309,
  12919. bottom: 0.005
  12920. }
  12921. },
  12922. },
  12923. [
  12924. {
  12925. name: "Normal",
  12926. height: math.unit(6 + 1 / 12, "feet"),
  12927. default: true
  12928. },
  12929. ]
  12930. ))
  12931. characterMakers.push(() => makeCharacter(
  12932. { name: "Braxton" },
  12933. {
  12934. front: {
  12935. height: math.unit(9 + 3 / 12, "feet"),
  12936. weight: math.unit(1100, "lb"),
  12937. name: "Front",
  12938. image: {
  12939. source: "./media/characters/braxton/front.svg",
  12940. extra: 1057 / 984,
  12941. bottom: 0.05
  12942. }
  12943. },
  12944. },
  12945. [
  12946. {
  12947. name: "Normal",
  12948. height: math.unit(9 + 3 / 12, "feet")
  12949. },
  12950. {
  12951. name: "Giant",
  12952. height: math.unit(300, "feet"),
  12953. default: true
  12954. },
  12955. {
  12956. name: "Macro",
  12957. height: math.unit(700, "feet")
  12958. },
  12959. {
  12960. name: "Megamacro",
  12961. height: math.unit(6000, "feet")
  12962. },
  12963. ]
  12964. ))
  12965. characterMakers.push(() => makeCharacter(
  12966. { name: "Blue Feyonics" },
  12967. {
  12968. front: {
  12969. height: math.unit(6 + 7 / 12, "feet"),
  12970. weight: math.unit(150, "lb"),
  12971. name: "Front",
  12972. image: {
  12973. source: "./media/characters/blue-feyonics/front.svg",
  12974. extra: 1403 / 1306,
  12975. bottom: 0.047
  12976. }
  12977. },
  12978. },
  12979. [
  12980. {
  12981. name: "Normal",
  12982. height: math.unit(6 + 7 / 12, "feet"),
  12983. default: true
  12984. },
  12985. ]
  12986. ))
  12987. characterMakers.push(() => makeCharacter(
  12988. { name: "Maxwell" },
  12989. {
  12990. front: {
  12991. height: math.unit(1.8, "meters"),
  12992. weight: math.unit(60, "kg"),
  12993. name: "Front",
  12994. image: {
  12995. source: "./media/characters/maxwell/front.svg",
  12996. extra: 2060 / 1873
  12997. }
  12998. },
  12999. },
  13000. [
  13001. {
  13002. name: "Micro",
  13003. height: math.unit(1, "mm")
  13004. },
  13005. {
  13006. name: "Normal",
  13007. height: math.unit(1.8, "meter"),
  13008. default: true
  13009. },
  13010. {
  13011. name: "Macro",
  13012. height: math.unit(30, "meters")
  13013. },
  13014. {
  13015. name: "Megamacro",
  13016. height: math.unit(10, "km")
  13017. },
  13018. ]
  13019. ))
  13020. characterMakers.push(() => makeCharacter(
  13021. { name: "Jack" },
  13022. {
  13023. front: {
  13024. height: math.unit(6, "feet"),
  13025. weight: math.unit(150, "lb"),
  13026. name: "Front",
  13027. image: {
  13028. source: "./media/characters/jack/front.svg",
  13029. extra: 1754 / 1640,
  13030. bottom: 0.01
  13031. }
  13032. },
  13033. },
  13034. [
  13035. {
  13036. name: "Normal",
  13037. height: math.unit(80000, "feet"),
  13038. default: true
  13039. },
  13040. {
  13041. name: "Max size",
  13042. height: math.unit(10, "lightyears")
  13043. },
  13044. ]
  13045. ))
  13046. characterMakers.push(() => makeCharacter(
  13047. { name: "Cafat" },
  13048. {
  13049. upright: {
  13050. height: math.unit(7, "feet"),
  13051. weight: math.unit(170, "lb"),
  13052. name: "Upright",
  13053. image: {
  13054. source: "./media/characters/cafat/upright.svg",
  13055. bottom: 0.01
  13056. }
  13057. },
  13058. uprightFull: {
  13059. height: math.unit(7, "feet"),
  13060. weight: math.unit(170, "lb"),
  13061. name: "Upright (Full)",
  13062. image: {
  13063. source: "./media/characters/cafat/upright-full.svg",
  13064. bottom: 0.01
  13065. }
  13066. },
  13067. side: {
  13068. height: math.unit(5, "feet"),
  13069. weight: math.unit(150, "lb"),
  13070. name: "Side",
  13071. image: {
  13072. source: "./media/characters/cafat/side.svg"
  13073. }
  13074. },
  13075. },
  13076. [
  13077. {
  13078. name: "Small",
  13079. height: math.unit(7, "feet"),
  13080. default: true
  13081. },
  13082. {
  13083. name: "Large",
  13084. height: math.unit(15.5, "feet")
  13085. },
  13086. ]
  13087. ))
  13088. characterMakers.push(() => makeCharacter(
  13089. { name: "Verin Raharra" },
  13090. {
  13091. front: {
  13092. height: math.unit(6, "feet"),
  13093. weight: math.unit(150, "lb"),
  13094. name: "Front",
  13095. image: {
  13096. source: "./media/characters/verin-raharra/front.svg",
  13097. extra: 5019 / 4835,
  13098. bottom: 0.023
  13099. }
  13100. },
  13101. },
  13102. [
  13103. {
  13104. name: "Normal",
  13105. height: math.unit(7 + 5 / 12, "feet"),
  13106. default: true
  13107. },
  13108. {
  13109. name: "Upsized",
  13110. height: math.unit(20, "feet")
  13111. },
  13112. ]
  13113. ))
  13114. characterMakers.push(() => makeCharacter(
  13115. { name: "Nakata" },
  13116. {
  13117. front: {
  13118. height: math.unit(7, "feet"),
  13119. weight: math.unit(230, "lb"),
  13120. name: "Front",
  13121. image: {
  13122. source: "./media/characters/nakata/front.svg",
  13123. extra: 1.005,
  13124. bottom: 0.01
  13125. }
  13126. },
  13127. },
  13128. [
  13129. {
  13130. name: "Normal",
  13131. height: math.unit(7, "feet"),
  13132. default: true
  13133. },
  13134. {
  13135. name: "Big",
  13136. height: math.unit(14, "feet")
  13137. },
  13138. {
  13139. name: "Macro",
  13140. height: math.unit(400, "feet")
  13141. },
  13142. ]
  13143. ))
  13144. characterMakers.push(() => makeCharacter(
  13145. { name: "Lily" },
  13146. {
  13147. front: {
  13148. height: math.unit(4.91, "feet"),
  13149. weight: math.unit(100, "lb"),
  13150. name: "Front",
  13151. image: {
  13152. source: "./media/characters/lily/front.svg",
  13153. extra: 1585 / 1415,
  13154. bottom: 0.02
  13155. }
  13156. },
  13157. },
  13158. [
  13159. {
  13160. name: "Normal",
  13161. height: math.unit(4.91, "feet"),
  13162. default: true
  13163. },
  13164. ]
  13165. ))
  13166. characterMakers.push(() => makeCharacter(
  13167. { name: "Sheila" },
  13168. {
  13169. laying: {
  13170. height: math.unit(4 + 4 / 12, "feet"),
  13171. weight: math.unit(600, "lb"),
  13172. name: "Laying",
  13173. image: {
  13174. source: "./media/characters/sheila/laying.svg",
  13175. extra: 1333 / 1265,
  13176. bottom: 0.16
  13177. }
  13178. },
  13179. },
  13180. [
  13181. {
  13182. name: "Normal",
  13183. height: math.unit(4 + 4 / 12, "feet"),
  13184. default: true
  13185. },
  13186. ]
  13187. ))
  13188. characterMakers.push(() => makeCharacter(
  13189. { name: "Sax" },
  13190. {
  13191. front: {
  13192. height: math.unit(6, "feet"),
  13193. weight: math.unit(190, "lb"),
  13194. name: "Front",
  13195. image: {
  13196. source: "./media/characters/sax/front.svg",
  13197. extra: 1187 / 973,
  13198. bottom: 0.042
  13199. }
  13200. },
  13201. },
  13202. [
  13203. {
  13204. name: "Micro",
  13205. height: math.unit(4, "inches"),
  13206. default: true
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Pandora" },
  13212. {
  13213. front: {
  13214. height: math.unit(6, "feet"),
  13215. weight: math.unit(150, "lb"),
  13216. name: "Front",
  13217. image: {
  13218. source: "./media/characters/pandora/front.svg",
  13219. extra: 2720 / 2556,
  13220. bottom: 0.015
  13221. }
  13222. },
  13223. back: {
  13224. height: math.unit(6, "feet"),
  13225. weight: math.unit(150, "lb"),
  13226. name: "Back",
  13227. image: {
  13228. source: "./media/characters/pandora/back.svg",
  13229. extra: 2720 / 2556,
  13230. bottom: 0.01
  13231. }
  13232. },
  13233. beans: {
  13234. height: math.unit(6 / 8, "feet"),
  13235. name: "Beans",
  13236. image: {
  13237. source: "./media/characters/pandora/beans.svg"
  13238. }
  13239. },
  13240. skirt: {
  13241. height: math.unit(6, "feet"),
  13242. weight: math.unit(150, "lb"),
  13243. name: "Skirt",
  13244. image: {
  13245. source: "./media/characters/pandora/skirt.svg",
  13246. extra: 1622 / 1525,
  13247. bottom: 0.015
  13248. }
  13249. },
  13250. hoodie: {
  13251. height: math.unit(6, "feet"),
  13252. weight: math.unit(150, "lb"),
  13253. name: "Hoodie",
  13254. image: {
  13255. source: "./media/characters/pandora/hoodie.svg",
  13256. extra: 1622 / 1525,
  13257. bottom: 0.015
  13258. }
  13259. },
  13260. casual: {
  13261. height: math.unit(6, "feet"),
  13262. weight: math.unit(150, "lb"),
  13263. name: "Casual",
  13264. image: {
  13265. source: "./media/characters/pandora/casual.svg",
  13266. extra: 1622 / 1525,
  13267. bottom: 0.015
  13268. }
  13269. },
  13270. },
  13271. [
  13272. {
  13273. name: "Normal",
  13274. height: math.unit(6, "feet")
  13275. },
  13276. {
  13277. name: "Big Steppy",
  13278. height: math.unit(1, "km"),
  13279. default: true
  13280. },
  13281. ]
  13282. ))
  13283. characterMakers.push(() => makeCharacter(
  13284. { name: "Venio Darcony" },
  13285. {
  13286. side: {
  13287. height: math.unit(10, "feet"),
  13288. weight: math.unit(800, "kg"),
  13289. name: "Side",
  13290. image: {
  13291. source: "./media/characters/venio-darcony/side.svg",
  13292. extra: 1373 / 1003,
  13293. bottom: 0.037
  13294. }
  13295. },
  13296. front: {
  13297. height: math.unit(19, "feet"),
  13298. weight: math.unit(800, "kg"),
  13299. name: "Front",
  13300. image: {
  13301. source: "./media/characters/venio-darcony/front.svg"
  13302. }
  13303. },
  13304. back: {
  13305. height: math.unit(19, "feet"),
  13306. weight: math.unit(800, "kg"),
  13307. name: "Back",
  13308. image: {
  13309. source: "./media/characters/venio-darcony/back.svg"
  13310. }
  13311. },
  13312. },
  13313. [
  13314. {
  13315. name: "Normal",
  13316. height: math.unit(10, "feet")
  13317. },
  13318. {
  13319. name: "Macro",
  13320. height: math.unit(130, "feet"),
  13321. default: true
  13322. },
  13323. {
  13324. name: "Macro+",
  13325. height: math.unit(240, "feet")
  13326. },
  13327. ]
  13328. ))
  13329. characterMakers.push(() => makeCharacter(
  13330. { name: "Veski" },
  13331. {
  13332. front: {
  13333. height: math.unit(6, "feet"),
  13334. weight: math.unit(150, "lb"),
  13335. name: "Front",
  13336. image: {
  13337. source: "./media/characters/veski/front.svg",
  13338. extra: 1299 / 1225,
  13339. bottom: 0.04
  13340. }
  13341. },
  13342. back: {
  13343. height: math.unit(6, "feet"),
  13344. weight: math.unit(150, "lb"),
  13345. name: "Back",
  13346. image: {
  13347. source: "./media/characters/veski/back.svg",
  13348. extra: 1299 / 1225,
  13349. bottom: 0.008
  13350. }
  13351. },
  13352. maw: {
  13353. height: math.unit(1.5 * 1.21, "feet"),
  13354. name: "Maw",
  13355. image: {
  13356. source: "./media/characters/veski/maw.svg"
  13357. }
  13358. },
  13359. },
  13360. [
  13361. {
  13362. name: "Macro",
  13363. height: math.unit(2, "km"),
  13364. default: true
  13365. },
  13366. ]
  13367. ))
  13368. characterMakers.push(() => makeCharacter(
  13369. { name: "Isabelle" },
  13370. {
  13371. front: {
  13372. height: math.unit(5 + 7 / 12, "feet"),
  13373. name: "Front",
  13374. image: {
  13375. source: "./media/characters/isabelle/front.svg",
  13376. extra: 2130 / 1976,
  13377. bottom: 0.05
  13378. }
  13379. },
  13380. },
  13381. [
  13382. {
  13383. name: "Supermicro",
  13384. height: math.unit(10, "micrometers")
  13385. },
  13386. {
  13387. name: "Micro",
  13388. height: math.unit(1, "inch")
  13389. },
  13390. {
  13391. name: "Tiny",
  13392. height: math.unit(5, "inches")
  13393. },
  13394. {
  13395. name: "Standard",
  13396. height: math.unit(5 + 7 / 12, "inches")
  13397. },
  13398. {
  13399. name: "Macro",
  13400. height: math.unit(80, "meters"),
  13401. default: true
  13402. },
  13403. {
  13404. name: "Megamacro",
  13405. height: math.unit(250, "meters")
  13406. },
  13407. {
  13408. name: "Gigamacro",
  13409. height: math.unit(5, "km")
  13410. },
  13411. {
  13412. name: "Cosmic",
  13413. height: math.unit(2.5e6, "miles")
  13414. },
  13415. ]
  13416. ))
  13417. characterMakers.push(() => makeCharacter(
  13418. { name: "Hanzo" },
  13419. {
  13420. front: {
  13421. height: math.unit(6, "feet"),
  13422. weight: math.unit(150, "lb"),
  13423. name: "Front",
  13424. image: {
  13425. source: "./media/characters/hanzo/front.svg",
  13426. extra: 374 / 344,
  13427. bottom: 0.02
  13428. }
  13429. },
  13430. },
  13431. [
  13432. {
  13433. name: "Normal",
  13434. height: math.unit(8, "feet"),
  13435. default: true
  13436. },
  13437. ]
  13438. ))
  13439. characterMakers.push(() => makeCharacter(
  13440. { name: "Anna" },
  13441. {
  13442. front: {
  13443. height: math.unit(7, "feet"),
  13444. weight: math.unit(130, "lb"),
  13445. name: "Front",
  13446. image: {
  13447. source: "./media/characters/anna/front.svg",
  13448. extra: 169 / 145,
  13449. bottom: 0.06
  13450. }
  13451. },
  13452. full: {
  13453. height: math.unit(4.96, "feet"),
  13454. weight: math.unit(220, "lb"),
  13455. name: "Full",
  13456. image: {
  13457. source: "./media/characters/anna/full.svg",
  13458. extra: 138 / 114,
  13459. bottom: 0.15
  13460. }
  13461. },
  13462. tongue: {
  13463. height: math.unit(2.53, "feet"),
  13464. name: "Tongue",
  13465. image: {
  13466. source: "./media/characters/anna/tongue.svg"
  13467. }
  13468. },
  13469. },
  13470. [
  13471. {
  13472. name: "Normal",
  13473. height: math.unit(7, "feet"),
  13474. default: true
  13475. },
  13476. ]
  13477. ))
  13478. characterMakers.push(() => makeCharacter(
  13479. { name: "Ian Corvid" },
  13480. {
  13481. front: {
  13482. height: math.unit(7, "feet"),
  13483. weight: math.unit(150, "lb"),
  13484. name: "Front",
  13485. image: {
  13486. source: "./media/characters/ian-corvid/front.svg",
  13487. extra: 150 / 142,
  13488. bottom: 0.02
  13489. }
  13490. },
  13491. back: {
  13492. height: math.unit(7, "feet"),
  13493. weight: math.unit(150, "lb"),
  13494. name: "Back",
  13495. image: {
  13496. source: "./media/characters/ian-corvid/back.svg",
  13497. extra: 150 / 143,
  13498. bottom: 0.01
  13499. }
  13500. },
  13501. stomping: {
  13502. height: math.unit(7, "feet"),
  13503. weight: math.unit(150, "lb"),
  13504. name: "Stomping",
  13505. image: {
  13506. source: "./media/characters/ian-corvid/stomping.svg",
  13507. extra: 76 / 72
  13508. }
  13509. },
  13510. sitting: {
  13511. height: math.unit(7 / 1.8, "feet"),
  13512. weight: math.unit(150, "lb"),
  13513. name: "Sitting",
  13514. image: {
  13515. source: "./media/characters/ian-corvid/sitting.svg",
  13516. extra: 1400 / 1269,
  13517. bottom: 0.15
  13518. }
  13519. },
  13520. },
  13521. [
  13522. {
  13523. name: "Tiny Microw",
  13524. height: math.unit(1, "inch")
  13525. },
  13526. {
  13527. name: "Microw",
  13528. height: math.unit(6, "inches")
  13529. },
  13530. {
  13531. name: "Crow",
  13532. height: math.unit(7 + 1 / 12, "feet"),
  13533. default: true
  13534. },
  13535. {
  13536. name: "Macrow",
  13537. height: math.unit(176, "feet")
  13538. },
  13539. ]
  13540. ))
  13541. characterMakers.push(() => makeCharacter(
  13542. { name: "Natalie Kellon" },
  13543. {
  13544. front: {
  13545. height: math.unit(5 + 7 / 12, "feet"),
  13546. weight: math.unit(147, "lb"),
  13547. name: "Front",
  13548. image: {
  13549. source: "./media/characters/natalie-kellon/front.svg",
  13550. extra: 1214 / 1141,
  13551. bottom: 0.02
  13552. }
  13553. },
  13554. },
  13555. [
  13556. {
  13557. name: "Micro",
  13558. height: math.unit(1 / 16, "inch")
  13559. },
  13560. {
  13561. name: "Tiny",
  13562. height: math.unit(4, "inches")
  13563. },
  13564. {
  13565. name: "Normal",
  13566. height: math.unit(5 + 7 / 12, "feet"),
  13567. default: true
  13568. },
  13569. {
  13570. name: "Amazon",
  13571. height: math.unit(12, "feet")
  13572. },
  13573. {
  13574. name: "Giantess",
  13575. height: math.unit(160, "meters")
  13576. },
  13577. {
  13578. name: "Titaness",
  13579. height: math.unit(800, "meters")
  13580. },
  13581. ]
  13582. ))
  13583. characterMakers.push(() => makeCharacter(
  13584. { name: "Alluria" },
  13585. {
  13586. front: {
  13587. height: math.unit(6, "feet"),
  13588. weight: math.unit(150, "lb"),
  13589. name: "Front",
  13590. image: {
  13591. source: "./media/characters/alluria/front.svg",
  13592. extra: 806 / 738,
  13593. bottom: 0.01
  13594. }
  13595. },
  13596. side: {
  13597. height: math.unit(6, "feet"),
  13598. weight: math.unit(150, "lb"),
  13599. name: "Side",
  13600. image: {
  13601. source: "./media/characters/alluria/side.svg",
  13602. extra: 800 / 750,
  13603. }
  13604. },
  13605. back: {
  13606. height: math.unit(6, "feet"),
  13607. weight: math.unit(150, "lb"),
  13608. name: "Back",
  13609. image: {
  13610. source: "./media/characters/alluria/back.svg",
  13611. extra: 806 / 738,
  13612. }
  13613. },
  13614. frontMaid: {
  13615. height: math.unit(6, "feet"),
  13616. weight: math.unit(150, "lb"),
  13617. name: "Front (Maid)",
  13618. image: {
  13619. source: "./media/characters/alluria/front-maid.svg",
  13620. extra: 806 / 738,
  13621. bottom: 0.01
  13622. }
  13623. },
  13624. sideMaid: {
  13625. height: math.unit(6, "feet"),
  13626. weight: math.unit(150, "lb"),
  13627. name: "Side (Maid)",
  13628. image: {
  13629. source: "./media/characters/alluria/side-maid.svg",
  13630. extra: 800 / 750,
  13631. bottom: 0.005
  13632. }
  13633. },
  13634. backMaid: {
  13635. height: math.unit(6, "feet"),
  13636. weight: math.unit(150, "lb"),
  13637. name: "Back (Maid)",
  13638. image: {
  13639. source: "./media/characters/alluria/back-maid.svg",
  13640. extra: 806 / 738,
  13641. }
  13642. },
  13643. },
  13644. [
  13645. {
  13646. name: "Micro",
  13647. height: math.unit(6, "inches"),
  13648. default: true
  13649. },
  13650. ]
  13651. ))
  13652. characterMakers.push(() => makeCharacter(
  13653. { name: "Kyle" },
  13654. {
  13655. front: {
  13656. height: math.unit(6, "feet"),
  13657. weight: math.unit(150, "lb"),
  13658. name: "Front",
  13659. image: {
  13660. source: "./media/characters/kyle/front.svg",
  13661. extra: 1069 / 962,
  13662. bottom: 77.228 / 1727.45
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Macro",
  13669. height: math.unit(150, "feet"),
  13670. default: true
  13671. },
  13672. ]
  13673. ))
  13674. characterMakers.push(() => makeCharacter(
  13675. { name: "Duncan" },
  13676. {
  13677. front: {
  13678. height: math.unit(6, "feet"),
  13679. weight: math.unit(300, "lb"),
  13680. name: "Front",
  13681. image: {
  13682. source: "./media/characters/duncan/front.svg",
  13683. extra: 1650 / 1482,
  13684. bottom: 0.05
  13685. }
  13686. },
  13687. },
  13688. [
  13689. {
  13690. name: "Macro",
  13691. height: math.unit(100, "feet"),
  13692. default: true
  13693. },
  13694. ]
  13695. ))
  13696. characterMakers.push(() => makeCharacter(
  13697. { name: "Memory" },
  13698. {
  13699. front: {
  13700. height: math.unit(5 + 4 / 12, "feet"),
  13701. weight: math.unit(220, "lb"),
  13702. name: "Front",
  13703. image: {
  13704. source: "./media/characters/memory/front.svg",
  13705. extra: 3641 / 3545,
  13706. bottom: 0.03
  13707. }
  13708. },
  13709. back: {
  13710. height: math.unit(5 + 4 / 12, "feet"),
  13711. weight: math.unit(220, "lb"),
  13712. name: "Back",
  13713. image: {
  13714. source: "./media/characters/memory/back.svg",
  13715. extra: 3641 / 3545,
  13716. bottom: 0.025
  13717. }
  13718. },
  13719. frontSkirt: {
  13720. height: math.unit(5 + 4 / 12, "feet"),
  13721. weight: math.unit(220, "lb"),
  13722. name: "Front (Skirt)",
  13723. image: {
  13724. source: "./media/characters/memory/front-skirt.svg",
  13725. extra: 3641 / 3545,
  13726. bottom: 0.03
  13727. }
  13728. },
  13729. frontDress: {
  13730. height: math.unit(5 + 4 / 12, "feet"),
  13731. weight: math.unit(220, "lb"),
  13732. name: "Front (Dress)",
  13733. image: {
  13734. source: "./media/characters/memory/front-dress.svg",
  13735. extra: 3641 / 3545,
  13736. bottom: 0.03
  13737. }
  13738. },
  13739. },
  13740. [
  13741. {
  13742. name: "Micro",
  13743. height: math.unit(6, "inches"),
  13744. default: true
  13745. },
  13746. {
  13747. name: "Normal",
  13748. height: math.unit(5 + 4 / 12, "feet")
  13749. },
  13750. ]
  13751. ))
  13752. characterMakers.push(() => makeCharacter(
  13753. { name: "Luno" },
  13754. {
  13755. front: {
  13756. height: math.unit(4 + 11 / 12, "feet"),
  13757. weight: math.unit(100, "lb"),
  13758. name: "Front",
  13759. image: {
  13760. source: "./media/characters/luno/front.svg",
  13761. extra: 1535 / 1487,
  13762. bottom: 0.03
  13763. }
  13764. },
  13765. },
  13766. [
  13767. {
  13768. name: "Micro",
  13769. height: math.unit(3, "inches")
  13770. },
  13771. {
  13772. name: "Normal",
  13773. height: math.unit(4 + 11 / 12, "feet"),
  13774. default: true
  13775. },
  13776. {
  13777. name: "Macro",
  13778. height: math.unit(300, "feet")
  13779. },
  13780. {
  13781. name: "Megamacro",
  13782. height: math.unit(700, "miles")
  13783. },
  13784. ]
  13785. ))
  13786. characterMakers.push(() => makeCharacter(
  13787. { name: "Jamesy" },
  13788. {
  13789. front: {
  13790. height: math.unit(6 + 2 / 12, "feet"),
  13791. weight: math.unit(170, "lb"),
  13792. name: "Front",
  13793. image: {
  13794. source: "./media/characters/jamesy/front.svg",
  13795. extra: 440 / 382,
  13796. bottom: 0.005
  13797. }
  13798. },
  13799. },
  13800. [
  13801. {
  13802. name: "Micro",
  13803. height: math.unit(3, "inches")
  13804. },
  13805. {
  13806. name: "Normal",
  13807. height: math.unit(6 + 2 / 12, "feet"),
  13808. default: true
  13809. },
  13810. {
  13811. name: "Macro",
  13812. height: math.unit(300, "feet")
  13813. },
  13814. {
  13815. name: "Megamacro",
  13816. height: math.unit(700, "miles")
  13817. },
  13818. ]
  13819. ))
  13820. characterMakers.push(() => makeCharacter(
  13821. { name: "Mark" },
  13822. {
  13823. front: {
  13824. height: math.unit(6, "feet"),
  13825. weight: math.unit(160, "lb"),
  13826. name: "Front",
  13827. image: {
  13828. source: "./media/characters/mark/front.svg",
  13829. extra: 3300 / 3100,
  13830. bottom: 136.42 / 3440.47
  13831. }
  13832. },
  13833. },
  13834. [
  13835. {
  13836. name: "Macro",
  13837. height: math.unit(120, "meters")
  13838. },
  13839. {
  13840. name: "Bigger Macro",
  13841. height: math.unit(350, "meters")
  13842. },
  13843. {
  13844. name: "Megamacro",
  13845. height: math.unit(8, "km"),
  13846. default: true
  13847. },
  13848. {
  13849. name: "Continental",
  13850. height: math.unit(4550, "km")
  13851. },
  13852. {
  13853. name: "Planetary",
  13854. height: math.unit(65000, "km")
  13855. },
  13856. ]
  13857. ))
  13858. characterMakers.push(() => makeCharacter(
  13859. { name: "Mac" },
  13860. {
  13861. front: {
  13862. height: math.unit(6, "feet"),
  13863. weight: math.unit(400, "lb"),
  13864. name: "Front",
  13865. image: {
  13866. source: "./media/characters/mac/front.svg",
  13867. extra: 1048 / 987.7,
  13868. bottom: 60 / 1107.6,
  13869. }
  13870. },
  13871. },
  13872. [
  13873. {
  13874. name: "Macro",
  13875. height: math.unit(500, "feet"),
  13876. default: true
  13877. },
  13878. ]
  13879. ))
  13880. characterMakers.push(() => makeCharacter(
  13881. { name: "Bari" },
  13882. {
  13883. front: {
  13884. height: math.unit(5 + 2 / 12, "feet"),
  13885. weight: math.unit(190, "lb"),
  13886. name: "Front",
  13887. image: {
  13888. source: "./media/characters/bari/front.svg",
  13889. extra: 3156 / 2880,
  13890. bottom: 0.03
  13891. }
  13892. },
  13893. back: {
  13894. height: math.unit(5 + 2 / 12, "feet"),
  13895. weight: math.unit(190, "lb"),
  13896. name: "Back",
  13897. image: {
  13898. source: "./media/characters/bari/back.svg",
  13899. extra: 3260 / 2834,
  13900. bottom: 0.025
  13901. }
  13902. },
  13903. frontPlush: {
  13904. height: math.unit(5 + 2 / 12, "feet"),
  13905. weight: math.unit(190, "lb"),
  13906. name: "Front (Plush)",
  13907. image: {
  13908. source: "./media/characters/bari/front-plush.svg",
  13909. extra: 1112 / 1061,
  13910. bottom: 0.002
  13911. }
  13912. },
  13913. },
  13914. [
  13915. {
  13916. name: "Micro",
  13917. height: math.unit(3, "inches")
  13918. },
  13919. {
  13920. name: "Normal",
  13921. height: math.unit(5 + 2 / 12, "feet"),
  13922. default: true
  13923. },
  13924. {
  13925. name: "Macro",
  13926. height: math.unit(20, "feet")
  13927. },
  13928. ]
  13929. ))
  13930. characterMakers.push(() => makeCharacter(
  13931. { name: "Hunter Misha Raven" },
  13932. {
  13933. front: {
  13934. height: math.unit(6 + 1 / 12, "feet"),
  13935. weight: math.unit(275, "lb"),
  13936. name: "Front",
  13937. image: {
  13938. source: "./media/characters/hunter-misha-raven/front.svg"
  13939. }
  13940. },
  13941. },
  13942. [
  13943. {
  13944. name: "Mortal",
  13945. height: math.unit(6 + 1 / 12, "feet")
  13946. },
  13947. {
  13948. name: "Divine",
  13949. height: math.unit(1.12134e34, "parsecs"),
  13950. default: true
  13951. },
  13952. ]
  13953. ))
  13954. characterMakers.push(() => makeCharacter(
  13955. { name: "Max Calore" },
  13956. {
  13957. front: {
  13958. height: math.unit(6 + 3 / 12, "feet"),
  13959. weight: math.unit(220, "lb"),
  13960. name: "Front",
  13961. image: {
  13962. source: "./media/characters/max-calore/front.svg",
  13963. extra: 1700 / 1648,
  13964. bottom: 0.01
  13965. }
  13966. },
  13967. back: {
  13968. height: math.unit(6 + 3 / 12, "feet"),
  13969. weight: math.unit(220, "lb"),
  13970. name: "Back",
  13971. image: {
  13972. source: "./media/characters/max-calore/back.svg",
  13973. extra: 1700 / 1648,
  13974. bottom: 0.01
  13975. }
  13976. },
  13977. },
  13978. [
  13979. {
  13980. name: "Normal",
  13981. height: math.unit(6 + 3 / 12, "feet"),
  13982. default: true
  13983. },
  13984. ]
  13985. ))
  13986. characterMakers.push(() => makeCharacter(
  13987. { name: "Aspen" },
  13988. {
  13989. side: {
  13990. height: math.unit(2 + 8 / 12, "feet"),
  13991. weight: math.unit(99, "lb"),
  13992. name: "Side",
  13993. image: {
  13994. source: "./media/characters/aspen/side.svg",
  13995. extra: 152 / 138,
  13996. bottom: 0.032
  13997. }
  13998. },
  13999. },
  14000. [
  14001. {
  14002. name: "Normal",
  14003. height: math.unit(2 + 8 / 12, "feet"),
  14004. default: true
  14005. },
  14006. ]
  14007. ))
  14008. characterMakers.push(() => makeCharacter(
  14009. { name: "Sheila (Wolf)" },
  14010. {
  14011. side: {
  14012. height: math.unit(3 + 2 / 12, "feet"),
  14013. weight: math.unit(224, "lb"),
  14014. name: "Side",
  14015. image: {
  14016. source: "./media/characters/sheila-wolf/side.svg",
  14017. extra: 179 / 166,
  14018. bottom: 0.03
  14019. }
  14020. },
  14021. },
  14022. [
  14023. {
  14024. name: "Normal",
  14025. height: math.unit(3 + 2 / 12, "feet"),
  14026. default: true
  14027. },
  14028. ]
  14029. ))
  14030. characterMakers.push(() => makeCharacter(
  14031. { name: "Michelle" },
  14032. {
  14033. side: {
  14034. height: math.unit(1 + 9 / 12, "feet"),
  14035. weight: math.unit(38, "lb"),
  14036. name: "Side",
  14037. image: {
  14038. source: "./media/characters/michelle/side.svg",
  14039. extra: 147 / 136.7,
  14040. bottom: 0.03
  14041. }
  14042. },
  14043. },
  14044. [
  14045. {
  14046. name: "Normal",
  14047. height: math.unit(1 + 9 / 12, "feet"),
  14048. default: true
  14049. },
  14050. ]
  14051. ))
  14052. characterMakers.push(() => makeCharacter(
  14053. { name: "Nino" },
  14054. {
  14055. front: {
  14056. height: math.unit(1 + 1 / 12, "feet"),
  14057. weight: math.unit(18, "lb"),
  14058. name: "Front",
  14059. image: {
  14060. source: "./media/characters/nino/front.svg"
  14061. }
  14062. },
  14063. },
  14064. [
  14065. {
  14066. name: "Normal",
  14067. height: math.unit(1 + 1 / 12, "feet"),
  14068. default: true
  14069. },
  14070. ]
  14071. ))
  14072. characterMakers.push(() => makeCharacter(
  14073. { name: "Viola" },
  14074. {
  14075. front: {
  14076. height: math.unit(1, "feet"),
  14077. weight: math.unit(16, "lb"),
  14078. name: "Front",
  14079. image: {
  14080. source: "./media/characters/viola/front.svg"
  14081. }
  14082. },
  14083. },
  14084. [
  14085. {
  14086. name: "Normal",
  14087. height: math.unit(1, "feet"),
  14088. default: true
  14089. },
  14090. ]
  14091. ))
  14092. characterMakers.push(() => makeCharacter(
  14093. { name: "Atlas" },
  14094. {
  14095. front: {
  14096. height: math.unit(6 + 5 / 12, "feet"),
  14097. weight: math.unit(580, "lb"),
  14098. name: "Front",
  14099. image: {
  14100. source: "./media/characters/atlas/front.svg",
  14101. extra: 298.5 / 290,
  14102. bottom: 0.015
  14103. }
  14104. },
  14105. },
  14106. [
  14107. {
  14108. name: "Normal",
  14109. height: math.unit(6 + 5 / 12, "feet"),
  14110. default: true
  14111. },
  14112. ]
  14113. ))
  14114. characterMakers.push(() => makeCharacter(
  14115. { name: "Davy" },
  14116. {
  14117. side: {
  14118. height: math.unit(1 + 10 / 12, "feet"),
  14119. weight: math.unit(25, "lb"),
  14120. name: "Side",
  14121. image: {
  14122. source: "./media/characters/davy/side.svg",
  14123. extra: 200 / 170,
  14124. bottom: 0.01
  14125. }
  14126. },
  14127. },
  14128. [
  14129. {
  14130. name: "Normal",
  14131. height: math.unit(1 + 10 / 12, "feet"),
  14132. default: true
  14133. },
  14134. ]
  14135. ))
  14136. characterMakers.push(() => makeCharacter(
  14137. { name: "Fiona" },
  14138. {
  14139. side: {
  14140. height: math.unit(4 + 8 / 12, "feet"),
  14141. weight: math.unit(166, "lb"),
  14142. name: "Side",
  14143. image: {
  14144. source: "./media/characters/fiona/side.svg",
  14145. extra: 232 / 220,
  14146. bottom: 0.03
  14147. }
  14148. },
  14149. },
  14150. [
  14151. {
  14152. name: "Normal",
  14153. height: math.unit(4 + 8 / 12, "feet"),
  14154. default: true
  14155. },
  14156. ]
  14157. ))
  14158. characterMakers.push(() => makeCharacter(
  14159. { name: "Lyla" },
  14160. {
  14161. front: {
  14162. height: math.unit(2, "feet"),
  14163. weight: math.unit(62, "lb"),
  14164. name: "Front",
  14165. image: {
  14166. source: "./media/characters/lyla/front.svg",
  14167. bottom: 0.1
  14168. }
  14169. },
  14170. },
  14171. [
  14172. {
  14173. name: "Normal",
  14174. height: math.unit(2, "feet"),
  14175. default: true
  14176. },
  14177. ]
  14178. ))
  14179. characterMakers.push(() => makeCharacter(
  14180. { name: "Perseus" },
  14181. {
  14182. side: {
  14183. height: math.unit(1.8, "feet"),
  14184. weight: math.unit(44, "lb"),
  14185. name: "Side",
  14186. image: {
  14187. source: "./media/characters/perseus/side.svg",
  14188. bottom: 0.21
  14189. }
  14190. },
  14191. },
  14192. [
  14193. {
  14194. name: "Normal",
  14195. height: math.unit(1.8, "feet"),
  14196. default: true
  14197. },
  14198. ]
  14199. ))
  14200. characterMakers.push(() => makeCharacter(
  14201. { name: "Remus" },
  14202. {
  14203. side: {
  14204. height: math.unit(4 + 2 / 12, "feet"),
  14205. weight: math.unit(20, "lb"),
  14206. name: "Side",
  14207. image: {
  14208. source: "./media/characters/remus/side.svg"
  14209. }
  14210. },
  14211. },
  14212. [
  14213. {
  14214. name: "Normal",
  14215. height: math.unit(4 + 2 / 12, "feet"),
  14216. default: true
  14217. },
  14218. ]
  14219. ))
  14220. characterMakers.push(() => makeCharacter(
  14221. { name: "Raf" },
  14222. {
  14223. front: {
  14224. height: math.unit(4 + 11 / 12, "feet"),
  14225. weight: math.unit(114, "lb"),
  14226. name: "Front",
  14227. image: {
  14228. source: "./media/characters/raf/front.svg",
  14229. bottom: 0.01
  14230. }
  14231. },
  14232. side: {
  14233. height: math.unit(4 + 11 / 12, "feet"),
  14234. weight: math.unit(114, "lb"),
  14235. name: "Side",
  14236. image: {
  14237. source: "./media/characters/raf/side.svg",
  14238. bottom: 0.005
  14239. }
  14240. },
  14241. },
  14242. [
  14243. {
  14244. name: "Micro",
  14245. height: math.unit(2, "inches")
  14246. },
  14247. {
  14248. name: "Normal",
  14249. height: math.unit(4 + 11 / 12, "feet"),
  14250. default: true
  14251. },
  14252. {
  14253. name: "Macro",
  14254. height: math.unit(70, "feet")
  14255. },
  14256. ]
  14257. ))
  14258. characterMakers.push(() => makeCharacter(
  14259. { name: "Liam Einarr" },
  14260. {
  14261. front: {
  14262. height: math.unit(1.5, "meters"),
  14263. weight: math.unit(68, "kg"),
  14264. name: "Front",
  14265. image: {
  14266. source: "./media/characters/liam-einarr/front.svg",
  14267. extra: 2822 / 2666
  14268. }
  14269. },
  14270. back: {
  14271. height: math.unit(1.5, "meters"),
  14272. weight: math.unit(68, "kg"),
  14273. name: "Back",
  14274. image: {
  14275. source: "./media/characters/liam-einarr/back.svg",
  14276. extra: 2822 / 2666,
  14277. bottom: 0.015
  14278. }
  14279. },
  14280. },
  14281. [
  14282. {
  14283. name: "Normal",
  14284. height: math.unit(1.5, "meters"),
  14285. default: true
  14286. },
  14287. {
  14288. name: "Macro",
  14289. height: math.unit(150, "meters")
  14290. },
  14291. {
  14292. name: "Megamacro",
  14293. height: math.unit(35, "km")
  14294. },
  14295. ]
  14296. ))
  14297. characterMakers.push(() => makeCharacter(
  14298. { name: "Linda" },
  14299. {
  14300. front: {
  14301. height: math.unit(6, "feet"),
  14302. weight: math.unit(75, "kg"),
  14303. name: "Front",
  14304. image: {
  14305. source: "./media/characters/linda/front.svg",
  14306. extra: 930 / 874,
  14307. bottom: 0.004
  14308. }
  14309. },
  14310. },
  14311. [
  14312. {
  14313. name: "Normal",
  14314. height: math.unit(6, "feet"),
  14315. default: true
  14316. },
  14317. ]
  14318. ))
  14319. characterMakers.push(() => makeCharacter(
  14320. { name: "Caylex" },
  14321. {
  14322. front: {
  14323. height: math.unit(6 + 8 / 12, "feet"),
  14324. weight: math.unit(220, "lb"),
  14325. name: "Front",
  14326. image: {
  14327. source: "./media/characters/caylex/front.svg",
  14328. extra: 821 / 772,
  14329. bottom: 0.07
  14330. }
  14331. },
  14332. back: {
  14333. height: math.unit(6 + 8 / 12, "feet"),
  14334. weight: math.unit(220, "lb"),
  14335. name: "Back",
  14336. image: {
  14337. source: "./media/characters/caylex/back.svg",
  14338. extra: 821 / 772,
  14339. bottom: 0.022
  14340. }
  14341. },
  14342. hand: {
  14343. height: math.unit(1.25, "feet"),
  14344. name: "Hand",
  14345. image: {
  14346. source: "./media/characters/caylex/hand.svg"
  14347. }
  14348. },
  14349. foot: {
  14350. height: math.unit(1.6, "feet"),
  14351. name: "Foot",
  14352. image: {
  14353. source: "./media/characters/caylex/foot.svg"
  14354. }
  14355. },
  14356. armored: {
  14357. height: math.unit(6 + 8 / 12, "feet"),
  14358. weight: math.unit(250, "lb"),
  14359. name: "Armored",
  14360. image: {
  14361. source: "./media/characters/caylex/armored.svg",
  14362. extra: 1420 / 1310,
  14363. bottom: 0.045
  14364. }
  14365. },
  14366. },
  14367. [
  14368. {
  14369. name: "Normal",
  14370. height: math.unit(6 + 8 / 12, "feet"),
  14371. default: true
  14372. },
  14373. {
  14374. name: "Normal+",
  14375. height: math.unit(12, "feet")
  14376. },
  14377. ]
  14378. ))
  14379. characterMakers.push(() => makeCharacter(
  14380. { name: "Alana" },
  14381. {
  14382. front: {
  14383. height: math.unit(7 + 6 / 12, "feet"),
  14384. weight: math.unit(288, "lb"),
  14385. name: "Front",
  14386. image: {
  14387. source: "./media/characters/alana/front.svg",
  14388. extra: 679 / 653,
  14389. bottom: 22.5 / 701
  14390. }
  14391. },
  14392. },
  14393. [
  14394. {
  14395. name: "Normal",
  14396. height: math.unit(7 + 6 / 12, "feet")
  14397. },
  14398. {
  14399. name: "Large",
  14400. height: math.unit(50, "feet")
  14401. },
  14402. {
  14403. name: "Macro",
  14404. height: math.unit(100, "feet"),
  14405. default: true
  14406. },
  14407. {
  14408. name: "Macro+",
  14409. height: math.unit(200, "feet")
  14410. },
  14411. ]
  14412. ))
  14413. characterMakers.push(() => makeCharacter(
  14414. { name: "Hasani" },
  14415. {
  14416. front: {
  14417. height: math.unit(6 + 1 / 12, "feet"),
  14418. weight: math.unit(210, "lb"),
  14419. name: "Front",
  14420. image: {
  14421. source: "./media/characters/hasani/front.svg",
  14422. extra: 244 / 232,
  14423. bottom: 0.01
  14424. }
  14425. },
  14426. back: {
  14427. height: math.unit(6 + 1 / 12, "feet"),
  14428. weight: math.unit(210, "lb"),
  14429. name: "Back",
  14430. image: {
  14431. source: "./media/characters/hasani/back.svg",
  14432. extra: 244 / 232,
  14433. bottom: 0.01
  14434. }
  14435. },
  14436. },
  14437. [
  14438. {
  14439. name: "Normal",
  14440. height: math.unit(6 + 1 / 12, "feet")
  14441. },
  14442. {
  14443. name: "Macro",
  14444. height: math.unit(175, "feet"),
  14445. default: true
  14446. },
  14447. ]
  14448. ))
  14449. characterMakers.push(() => makeCharacter(
  14450. { name: "Nita" },
  14451. {
  14452. front: {
  14453. height: math.unit(1.82, "meters"),
  14454. weight: math.unit(140, "lb"),
  14455. name: "Front",
  14456. image: {
  14457. source: "./media/characters/nita/front.svg",
  14458. extra: 2473 / 2363,
  14459. bottom: 0.01
  14460. }
  14461. },
  14462. },
  14463. [
  14464. {
  14465. name: "Normal",
  14466. height: math.unit(1.82, "m")
  14467. },
  14468. {
  14469. name: "Macro",
  14470. height: math.unit(300, "m")
  14471. },
  14472. {
  14473. name: "Mistake Canon",
  14474. height: math.unit(0.5, "miles"),
  14475. default: true
  14476. },
  14477. {
  14478. name: "Big Mistake",
  14479. height: math.unit(13, "miles")
  14480. },
  14481. {
  14482. name: "Playing God",
  14483. height: math.unit(2450, "miles")
  14484. },
  14485. ]
  14486. ))
  14487. characterMakers.push(() => makeCharacter(
  14488. { name: "Shiriko" },
  14489. {
  14490. front: {
  14491. height: math.unit(4, "feet"),
  14492. weight: math.unit(120, "lb"),
  14493. name: "Front",
  14494. image: {
  14495. source: "./media/characters/shiriko/front.svg",
  14496. extra: 195 / 188
  14497. }
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Normal",
  14503. height: math.unit(4, "feet"),
  14504. default: true
  14505. },
  14506. ]
  14507. ))
  14508. characterMakers.push(() => makeCharacter(
  14509. { name: "Deja" },
  14510. {
  14511. front: {
  14512. height: math.unit(6, "feet"),
  14513. name: "front",
  14514. image: {
  14515. source: "./media/characters/deja/front.svg",
  14516. extra: 926 / 840,
  14517. bottom: 0.07
  14518. }
  14519. },
  14520. },
  14521. [
  14522. {
  14523. name: "Planck Length",
  14524. height: math.unit(1.6e-35, "meters")
  14525. },
  14526. {
  14527. name: "Normal",
  14528. height: math.unit(30.48, "meters"),
  14529. default: true
  14530. },
  14531. {
  14532. name: "Universal",
  14533. height: math.unit(8.8e26, "meters")
  14534. },
  14535. ]
  14536. ))
  14537. characterMakers.push(() => makeCharacter(
  14538. { name: "Anima" },
  14539. {
  14540. side: {
  14541. height: math.unit(8, "feet"),
  14542. weight: math.unit(6300, "lb"),
  14543. name: "Side",
  14544. image: {
  14545. source: "./media/characters/anima/side.svg",
  14546. bottom: 0.035
  14547. }
  14548. },
  14549. },
  14550. [
  14551. {
  14552. name: "Normal",
  14553. height: math.unit(8, "feet"),
  14554. default: true
  14555. },
  14556. ]
  14557. ))
  14558. characterMakers.push(() => makeCharacter(
  14559. { name: "Bianca" },
  14560. {
  14561. front: {
  14562. height: math.unit(8, "feet"),
  14563. weight: math.unit(350, "lb"),
  14564. name: "Front",
  14565. image: {
  14566. source: "./media/characters/bianca/front.svg",
  14567. extra: 234 / 225,
  14568. bottom: 0.03
  14569. }
  14570. },
  14571. },
  14572. [
  14573. {
  14574. name: "Normal",
  14575. height: math.unit(8, "feet"),
  14576. default: true
  14577. },
  14578. ]
  14579. ))
  14580. characterMakers.push(() => makeCharacter(
  14581. { name: "Adinia" },
  14582. {
  14583. front: {
  14584. height: math.unit(6, "feet"),
  14585. weight: math.unit(150, "lb"),
  14586. name: "Front",
  14587. image: {
  14588. source: "./media/characters/adinia/front.svg",
  14589. extra: 1845 / 1672,
  14590. bottom: 0.02
  14591. }
  14592. },
  14593. back: {
  14594. height: math.unit(6, "feet"),
  14595. weight: math.unit(150, "lb"),
  14596. name: "Back",
  14597. image: {
  14598. source: "./media/characters/adinia/back.svg",
  14599. extra: 1845 / 1672,
  14600. bottom: 0.002
  14601. }
  14602. },
  14603. },
  14604. [
  14605. {
  14606. name: "Normal",
  14607. height: math.unit(11 + 5 / 12, "feet"),
  14608. default: true
  14609. },
  14610. ]
  14611. ))
  14612. characterMakers.push(() => makeCharacter(
  14613. { name: "Lykasa" },
  14614. {
  14615. front: {
  14616. height: math.unit(3, "meters"),
  14617. weight: math.unit(200, "kg"),
  14618. name: "Front",
  14619. image: {
  14620. source: "./media/characters/lykasa/front.svg",
  14621. extra: 1076 / 976,
  14622. bottom: 0.06
  14623. }
  14624. },
  14625. },
  14626. [
  14627. {
  14628. name: "Normal",
  14629. height: math.unit(3, "meters")
  14630. },
  14631. {
  14632. name: "Kaiku",
  14633. height: math.unit(120, "meters"),
  14634. default: true
  14635. },
  14636. {
  14637. name: "Mega Kaiju",
  14638. height: math.unit(240, "km")
  14639. },
  14640. {
  14641. name: "Giga Kaiju",
  14642. height: math.unit(400, "megameters")
  14643. },
  14644. {
  14645. name: "Tera Kaiju",
  14646. height: math.unit(800, "gigameters")
  14647. },
  14648. {
  14649. name: "Kaiju Dragon Goddess",
  14650. height: math.unit(26, "zettaparsecs")
  14651. },
  14652. ]
  14653. ))
  14654. characterMakers.push(() => makeCharacter(
  14655. { name: "Malfaren" },
  14656. {
  14657. side: {
  14658. height: math.unit(283 / 124 * 6, "feet"),
  14659. weight: math.unit(35000, "lb"),
  14660. name: "Side",
  14661. image: {
  14662. source: "./media/characters/malfaren/side.svg",
  14663. extra: 2500 / 1010,
  14664. bottom: 0.01
  14665. }
  14666. },
  14667. front: {
  14668. height: math.unit(22.36, "feet"),
  14669. weight: math.unit(35000, "lb"),
  14670. name: "Front",
  14671. image: {
  14672. source: "./media/characters/malfaren/front.svg",
  14673. extra: 1631 / 1476,
  14674. bottom: 0.01
  14675. }
  14676. },
  14677. maw: {
  14678. height: math.unit(6.9, "feet"),
  14679. name: "Maw",
  14680. image: {
  14681. source: "./media/characters/malfaren/maw.svg"
  14682. }
  14683. },
  14684. },
  14685. [
  14686. {
  14687. name: "Big",
  14688. height: math.unit(283 / 162 * 6, "feet"),
  14689. },
  14690. {
  14691. name: "Bigger",
  14692. height: math.unit(283 / 124 * 6, "feet")
  14693. },
  14694. {
  14695. name: "Massive",
  14696. height: math.unit(283 / 92 * 6, "feet"),
  14697. default: true
  14698. },
  14699. {
  14700. name: "👀💦",
  14701. height: math.unit(283 / 73 * 6, "feet"),
  14702. },
  14703. ]
  14704. ))
  14705. characterMakers.push(() => makeCharacter(
  14706. { name: "Kernel" },
  14707. {
  14708. front: {
  14709. height: math.unit(1.7, "m"),
  14710. weight: math.unit(70, "kg"),
  14711. name: "Front",
  14712. image: {
  14713. source: "./media/characters/kernel/front.svg",
  14714. extra: 222 / 210,
  14715. bottom: 0.007
  14716. }
  14717. },
  14718. },
  14719. [
  14720. {
  14721. name: "Nano",
  14722. height: math.unit(17, "micrometers")
  14723. },
  14724. {
  14725. name: "Micro",
  14726. height: math.unit(1.7, "mm")
  14727. },
  14728. {
  14729. name: "Small",
  14730. height: math.unit(1.7, "cm")
  14731. },
  14732. {
  14733. name: "Normal",
  14734. height: math.unit(1.7, "m"),
  14735. default: true
  14736. },
  14737. ]
  14738. ))
  14739. characterMakers.push(() => makeCharacter(
  14740. { name: "Jayne Folest" },
  14741. {
  14742. front: {
  14743. height: math.unit(1.75, "meters"),
  14744. weight: math.unit(65, "kg"),
  14745. name: "Front",
  14746. image: {
  14747. source: "./media/characters/jayne-folest/front.svg",
  14748. extra: 2115 / 2007,
  14749. bottom: 0.02
  14750. }
  14751. },
  14752. back: {
  14753. height: math.unit(1.75, "meters"),
  14754. weight: math.unit(65, "kg"),
  14755. name: "Back",
  14756. image: {
  14757. source: "./media/characters/jayne-folest/back.svg",
  14758. extra: 2115 / 2007,
  14759. bottom: 0.005
  14760. }
  14761. },
  14762. frontClothed: {
  14763. height: math.unit(1.75, "meters"),
  14764. weight: math.unit(65, "kg"),
  14765. name: "Front (Clothed)",
  14766. image: {
  14767. source: "./media/characters/jayne-folest/front-clothed.svg",
  14768. extra: 2115 / 2007,
  14769. bottom: 0.035
  14770. }
  14771. },
  14772. hand: {
  14773. height: math.unit(1 / 1.260, "feet"),
  14774. name: "Hand",
  14775. image: {
  14776. source: "./media/characters/jayne-folest/hand.svg"
  14777. }
  14778. },
  14779. foot: {
  14780. height: math.unit(1 / 0.918, "feet"),
  14781. name: "Foot",
  14782. image: {
  14783. source: "./media/characters/jayne-folest/foot.svg"
  14784. }
  14785. },
  14786. },
  14787. [
  14788. {
  14789. name: "Micro",
  14790. height: math.unit(4, "cm")
  14791. },
  14792. {
  14793. name: "Normal",
  14794. height: math.unit(1.75, "meters")
  14795. },
  14796. {
  14797. name: "Macro",
  14798. height: math.unit(47.5, "meters"),
  14799. default: true
  14800. },
  14801. ]
  14802. ))
  14803. characterMakers.push(() => makeCharacter(
  14804. { name: "Algier" },
  14805. {
  14806. front: {
  14807. height: math.unit(180, "cm"),
  14808. weight: math.unit(70, "kg"),
  14809. name: "Front",
  14810. image: {
  14811. source: "./media/characters/algier/front.svg",
  14812. extra: 596 / 572,
  14813. bottom: 0.04
  14814. }
  14815. },
  14816. back: {
  14817. height: math.unit(180, "cm"),
  14818. weight: math.unit(70, "kg"),
  14819. name: "Back",
  14820. image: {
  14821. source: "./media/characters/algier/back.svg",
  14822. extra: 596 / 572,
  14823. bottom: 0.025
  14824. }
  14825. },
  14826. frontdressed: {
  14827. height: math.unit(180, "cm"),
  14828. weight: math.unit(150, "kg"),
  14829. name: "Front-dressed",
  14830. image: {
  14831. source: "./media/characters/algier/front-dressed.svg",
  14832. extra: 596 / 572,
  14833. bottom: 0.038
  14834. }
  14835. },
  14836. },
  14837. [
  14838. {
  14839. name: "Micro",
  14840. height: math.unit(5, "cm")
  14841. },
  14842. {
  14843. name: "Normal",
  14844. height: math.unit(180, "cm"),
  14845. default: true
  14846. },
  14847. {
  14848. name: "Macro",
  14849. height: math.unit(64, "m")
  14850. },
  14851. ]
  14852. ))
  14853. characterMakers.push(() => makeCharacter(
  14854. { name: "Pretzel" },
  14855. {
  14856. upright: {
  14857. height: math.unit(7, "feet"),
  14858. weight: math.unit(300, "lb"),
  14859. name: "Upright",
  14860. image: {
  14861. source: "./media/characters/pretzel/upright.svg",
  14862. extra: 534 / 522,
  14863. bottom: 0.065
  14864. }
  14865. },
  14866. sprawling: {
  14867. height: math.unit(3.75, "feet"),
  14868. weight: math.unit(300, "lb"),
  14869. name: "Sprawling",
  14870. image: {
  14871. source: "./media/characters/pretzel/sprawling.svg",
  14872. extra: 314 / 281,
  14873. bottom: 0.1
  14874. }
  14875. },
  14876. tongue: {
  14877. height: math.unit(2, "feet"),
  14878. name: "Tongue",
  14879. image: {
  14880. source: "./media/characters/pretzel/tongue.svg"
  14881. }
  14882. },
  14883. },
  14884. [
  14885. {
  14886. name: "Normal",
  14887. height: math.unit(7, "feet"),
  14888. default: true
  14889. },
  14890. {
  14891. name: "Oversized",
  14892. height: math.unit(15, "feet")
  14893. },
  14894. {
  14895. name: "Huge",
  14896. height: math.unit(30, "feet")
  14897. },
  14898. {
  14899. name: "Macro",
  14900. height: math.unit(250, "feet")
  14901. },
  14902. ]
  14903. ))
  14904. characterMakers.push(() => makeCharacter(
  14905. { name: "Roxi" },
  14906. {
  14907. sideFront: {
  14908. height: math.unit(5 + 2 / 12, "feet"),
  14909. weight: math.unit(120, "lb"),
  14910. name: "Front Side",
  14911. image: {
  14912. source: "./media/characters/roxi/side-front.svg",
  14913. extra: 2924 / 2717,
  14914. bottom: 0.08
  14915. }
  14916. },
  14917. sideBack: {
  14918. height: math.unit(5 + 2 / 12, "feet"),
  14919. weight: math.unit(120, "lb"),
  14920. name: "Back Side",
  14921. image: {
  14922. source: "./media/characters/roxi/side-back.svg",
  14923. extra: 2904 / 2693,
  14924. bottom: 0.06
  14925. }
  14926. },
  14927. front: {
  14928. height: math.unit(5 + 2 / 12, "feet"),
  14929. weight: math.unit(120, "lb"),
  14930. name: "Front",
  14931. image: {
  14932. source: "./media/characters/roxi/front.svg",
  14933. extra: 2028 / 1907,
  14934. bottom: 0.01
  14935. }
  14936. },
  14937. frontAlt: {
  14938. height: math.unit(5 + 2 / 12, "feet"),
  14939. weight: math.unit(120, "lb"),
  14940. name: "Front (Alt)",
  14941. image: {
  14942. source: "./media/characters/roxi/front-alt.svg",
  14943. extra: 1828 / 1798,
  14944. bottom: 0.01
  14945. }
  14946. },
  14947. sitting: {
  14948. height: math.unit(2.8, "feet"),
  14949. weight: math.unit(120, "lb"),
  14950. name: "Sitting",
  14951. image: {
  14952. source: "./media/characters/roxi/sitting.svg",
  14953. extra: 2660 / 2462,
  14954. bottom: 0.1
  14955. }
  14956. },
  14957. },
  14958. [
  14959. {
  14960. name: "Normal",
  14961. height: math.unit(5 + 2 / 12, "feet"),
  14962. default: true
  14963. },
  14964. ]
  14965. ))
  14966. characterMakers.push(() => makeCharacter(
  14967. { name: "Shadow" },
  14968. {
  14969. side: {
  14970. height: math.unit(55, "feet"),
  14971. weight: math.unit(153, "tons"),
  14972. name: "Side",
  14973. image: {
  14974. source: "./media/characters/shadow/side.svg",
  14975. extra: 701 / 628,
  14976. bottom: 0.02
  14977. }
  14978. },
  14979. flying: {
  14980. height: math.unit(145, "feet"),
  14981. weight: math.unit(153, "tons"),
  14982. name: "Flying",
  14983. image: {
  14984. source: "./media/characters/shadow/flying.svg"
  14985. }
  14986. },
  14987. },
  14988. [
  14989. {
  14990. name: "Normal",
  14991. height: math.unit(55, "feet"),
  14992. default: true
  14993. },
  14994. ]
  14995. ))
  14996. characterMakers.push(() => makeCharacter(
  14997. { name: "Marcie" },
  14998. {
  14999. front: {
  15000. height: math.unit(6, "feet"),
  15001. weight: math.unit(200, "lb"),
  15002. name: "Front",
  15003. image: {
  15004. source: "./media/characters/marcie/front.svg",
  15005. extra: 960 / 876,
  15006. bottom: 58 / 1017.87
  15007. }
  15008. },
  15009. },
  15010. [
  15011. {
  15012. name: "Macro",
  15013. height: math.unit(1, "mile"),
  15014. default: true
  15015. },
  15016. ]
  15017. ))
  15018. characterMakers.push(() => makeCharacter(
  15019. { name: "Kachina" },
  15020. {
  15021. front: {
  15022. height: math.unit(7, "feet"),
  15023. weight: math.unit(200, "lb"),
  15024. name: "Front",
  15025. image: {
  15026. source: "./media/characters/kachina/front.svg",
  15027. extra: 1290.68 / 1119,
  15028. bottom: 36.5 / 1327.18
  15029. }
  15030. },
  15031. },
  15032. [
  15033. {
  15034. name: "Normal",
  15035. height: math.unit(7, "feet"),
  15036. default: true
  15037. },
  15038. ]
  15039. ))
  15040. characterMakers.push(() => makeCharacter(
  15041. { name: "Kash" },
  15042. {
  15043. looking: {
  15044. height: math.unit(2, "meters"),
  15045. weight: math.unit(300, "kg"),
  15046. name: "Looking",
  15047. image: {
  15048. source: "./media/characters/kash/looking.svg",
  15049. extra: 474 / 344,
  15050. bottom: 0.03
  15051. }
  15052. },
  15053. side: {
  15054. height: math.unit(2, "meters"),
  15055. weight: math.unit(300, "kg"),
  15056. name: "Side",
  15057. image: {
  15058. source: "./media/characters/kash/side.svg",
  15059. extra: 302 / 251,
  15060. bottom: 0.03
  15061. }
  15062. },
  15063. front: {
  15064. height: math.unit(2, "meters"),
  15065. weight: math.unit(300, "kg"),
  15066. name: "Front",
  15067. image: {
  15068. source: "./media/characters/kash/front.svg",
  15069. extra: 495 / 360,
  15070. bottom: 0.015
  15071. }
  15072. },
  15073. },
  15074. [
  15075. {
  15076. name: "Normal",
  15077. height: math.unit(2, "meters"),
  15078. default: true
  15079. },
  15080. {
  15081. name: "Big",
  15082. height: math.unit(3, "meters")
  15083. },
  15084. {
  15085. name: "Large",
  15086. height: math.unit(5, "meters")
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Lalim" },
  15092. {
  15093. feeding: {
  15094. height: math.unit(6.7, "feet"),
  15095. weight: math.unit(350, "lb"),
  15096. name: "Feeding",
  15097. image: {
  15098. source: "./media/characters/lalim/feeding.svg",
  15099. }
  15100. },
  15101. },
  15102. [
  15103. {
  15104. name: "Normal",
  15105. height: math.unit(6.7, "feet"),
  15106. default: true
  15107. },
  15108. ]
  15109. ))
  15110. characterMakers.push(() => makeCharacter(
  15111. { name: "De'Vout" },
  15112. {
  15113. front: {
  15114. height: math.unit(9.5, "feet"),
  15115. weight: math.unit(600, "lb"),
  15116. name: "Front",
  15117. image: {
  15118. source: "./media/characters/de'vout/front.svg",
  15119. extra: 1443 / 1328,
  15120. bottom: 0.025
  15121. }
  15122. },
  15123. back: {
  15124. height: math.unit(9.5, "feet"),
  15125. weight: math.unit(600, "lb"),
  15126. name: "Back",
  15127. image: {
  15128. source: "./media/characters/de'vout/back.svg",
  15129. extra: 1443 / 1328
  15130. }
  15131. },
  15132. frontDressed: {
  15133. height: math.unit(9.5, "feet"),
  15134. weight: math.unit(600, "lb"),
  15135. name: "Front (Dressed",
  15136. image: {
  15137. source: "./media/characters/de'vout/front-dressed.svg",
  15138. extra: 1443 / 1328,
  15139. bottom: 0.025
  15140. }
  15141. },
  15142. backDressed: {
  15143. height: math.unit(9.5, "feet"),
  15144. weight: math.unit(600, "lb"),
  15145. name: "Back (Dressed",
  15146. image: {
  15147. source: "./media/characters/de'vout/back-dressed.svg",
  15148. extra: 1443 / 1328
  15149. }
  15150. },
  15151. },
  15152. [
  15153. {
  15154. name: "Normal",
  15155. height: math.unit(9.5, "feet"),
  15156. default: true
  15157. },
  15158. ]
  15159. ))
  15160. characterMakers.push(() => makeCharacter(
  15161. { name: "Talana" },
  15162. {
  15163. front: {
  15164. height: math.unit(8, "feet"),
  15165. weight: math.unit(225, "lb"),
  15166. name: "Front",
  15167. image: {
  15168. source: "./media/characters/talana/front.svg",
  15169. extra: 1410 / 1300,
  15170. bottom: 0.015
  15171. }
  15172. },
  15173. frontDressed: {
  15174. height: math.unit(8, "feet"),
  15175. weight: math.unit(225, "lb"),
  15176. name: "Front (Dressed",
  15177. image: {
  15178. source: "./media/characters/talana/front-dressed.svg",
  15179. extra: 1410 / 1300,
  15180. bottom: 0.015
  15181. }
  15182. },
  15183. },
  15184. [
  15185. {
  15186. name: "Normal",
  15187. height: math.unit(8, "feet"),
  15188. default: true
  15189. },
  15190. ]
  15191. ))
  15192. characterMakers.push(() => makeCharacter(
  15193. { name: "Xeauvok" },
  15194. {
  15195. side: {
  15196. height: math.unit(7.2, "feet"),
  15197. weight: math.unit(150, "lb"),
  15198. name: "Side",
  15199. image: {
  15200. source: "./media/characters/xeauvok/side.svg",
  15201. extra: 1975 / 1523,
  15202. bottom: 0.07
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Normal",
  15209. height: math.unit(7.2, "feet"),
  15210. default: true
  15211. },
  15212. ]
  15213. ))
  15214. characterMakers.push(() => makeCharacter(
  15215. { name: "Zara" },
  15216. {
  15217. side: {
  15218. height: math.unit(10, "feet"),
  15219. weight: math.unit(900, "kg"),
  15220. name: "Side",
  15221. image: {
  15222. source: "./media/characters/zara/side.svg",
  15223. extra: 504 / 498
  15224. }
  15225. },
  15226. },
  15227. [
  15228. {
  15229. name: "Normal",
  15230. height: math.unit(10, "feet"),
  15231. default: true
  15232. },
  15233. ]
  15234. ))
  15235. characterMakers.push(() => makeCharacter(
  15236. { name: "Richard (Dragon)" },
  15237. {
  15238. side: {
  15239. height: math.unit(6, "feet"),
  15240. weight: math.unit(150, "lb"),
  15241. name: "Side",
  15242. image: {
  15243. source: "./media/characters/richard-dragon/side.svg",
  15244. extra: 845 / 340,
  15245. bottom: 0.017
  15246. }
  15247. },
  15248. maw: {
  15249. height: math.unit(2.97, "feet"),
  15250. name: "Maw",
  15251. image: {
  15252. source: "./media/characters/richard-dragon/maw.svg"
  15253. }
  15254. },
  15255. },
  15256. [
  15257. ]
  15258. ))
  15259. characterMakers.push(() => makeCharacter(
  15260. { name: "Richard (Smeargle)" },
  15261. {
  15262. front: {
  15263. height: math.unit(4, "feet"),
  15264. weight: math.unit(100, "lb"),
  15265. name: "Front",
  15266. image: {
  15267. source: "./media/characters/richard-smeargle/front.svg",
  15268. extra: 2952 / 2820,
  15269. bottom: 0.028
  15270. }
  15271. },
  15272. },
  15273. [
  15274. {
  15275. name: "Normal",
  15276. height: math.unit(4, "feet"),
  15277. default: true
  15278. },
  15279. {
  15280. name: "Dynamax",
  15281. height: math.unit(20, "meters")
  15282. },
  15283. ]
  15284. ))
  15285. characterMakers.push(() => makeCharacter(
  15286. { name: "Klay" },
  15287. {
  15288. front: {
  15289. height: math.unit(6, "feet"),
  15290. weight: math.unit(110, "lb"),
  15291. name: "Front",
  15292. image: {
  15293. source: "./media/characters/klay/front.svg",
  15294. extra: 962 / 883,
  15295. bottom: 0.04
  15296. }
  15297. },
  15298. back: {
  15299. height: math.unit(6, "feet"),
  15300. weight: math.unit(110, "lb"),
  15301. name: "Back",
  15302. image: {
  15303. source: "./media/characters/klay/back.svg",
  15304. extra: 962 / 883
  15305. }
  15306. },
  15307. beans: {
  15308. height: math.unit(1.15, "feet"),
  15309. name: "Beans",
  15310. image: {
  15311. source: "./media/characters/klay/beans.svg"
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Micro",
  15318. height: math.unit(6, "inches")
  15319. },
  15320. {
  15321. name: "Mini",
  15322. height: math.unit(3, "feet")
  15323. },
  15324. {
  15325. name: "Normal",
  15326. height: math.unit(6, "feet"),
  15327. default: true
  15328. },
  15329. {
  15330. name: "Big",
  15331. height: math.unit(25, "feet")
  15332. },
  15333. {
  15334. name: "Macro",
  15335. height: math.unit(100, "feet")
  15336. },
  15337. {
  15338. name: "Megamacro",
  15339. height: math.unit(400, "feet")
  15340. },
  15341. ]
  15342. ))
  15343. characterMakers.push(() => makeCharacter(
  15344. { name: "Marcus" },
  15345. {
  15346. front: {
  15347. height: math.unit(6, "feet"),
  15348. weight: math.unit(160, "lb"),
  15349. name: "Front",
  15350. image: {
  15351. source: "./media/characters/marcus/front.svg",
  15352. extra: 734 / 676,
  15353. bottom: 0.03
  15354. }
  15355. },
  15356. },
  15357. [
  15358. {
  15359. name: "Little",
  15360. height: math.unit(6, "feet")
  15361. },
  15362. {
  15363. name: "Normal",
  15364. height: math.unit(110, "feet"),
  15365. default: true
  15366. },
  15367. {
  15368. name: "Macro",
  15369. height: math.unit(250, "feet")
  15370. },
  15371. {
  15372. name: "Megamacro",
  15373. height: math.unit(1000, "feet")
  15374. },
  15375. ]
  15376. ))
  15377. characterMakers.push(() => makeCharacter(
  15378. { name: "Claude DelRoute" },
  15379. {
  15380. front: {
  15381. height: math.unit(7, "feet"),
  15382. weight: math.unit(275, "lb"),
  15383. name: "Front",
  15384. image: {
  15385. source: "./media/characters/claude-delroute/front.svg",
  15386. extra: 230 / 214,
  15387. bottom: 0.007
  15388. }
  15389. },
  15390. side: {
  15391. height: math.unit(7, "feet"),
  15392. weight: math.unit(275, "lb"),
  15393. name: "Side",
  15394. image: {
  15395. source: "./media/characters/claude-delroute/side.svg",
  15396. extra: 222 / 214,
  15397. bottom: 0.01
  15398. }
  15399. },
  15400. back: {
  15401. height: math.unit(7, "feet"),
  15402. weight: math.unit(275, "lb"),
  15403. name: "Back",
  15404. image: {
  15405. source: "./media/characters/claude-delroute/back.svg",
  15406. extra: 230 / 214,
  15407. bottom: 0.015
  15408. }
  15409. },
  15410. maw: {
  15411. height: math.unit(0.6407, "meters"),
  15412. name: "Maw",
  15413. image: {
  15414. source: "./media/characters/claude-delroute/maw.svg"
  15415. }
  15416. },
  15417. },
  15418. [
  15419. {
  15420. name: "Normal",
  15421. height: math.unit(7, "feet"),
  15422. default: true
  15423. },
  15424. {
  15425. name: "Lorge",
  15426. height: math.unit(20, "feet")
  15427. },
  15428. ]
  15429. ))
  15430. characterMakers.push(() => makeCharacter(
  15431. { name: "Dragonien" },
  15432. {
  15433. front: {
  15434. height: math.unit(8 + 4 / 12, "feet"),
  15435. weight: math.unit(600, "lb"),
  15436. name: "Front",
  15437. image: {
  15438. source: "./media/characters/dragonien/front.svg",
  15439. extra: 100 / 94,
  15440. bottom: 3.3 / 103.3445
  15441. }
  15442. },
  15443. back: {
  15444. height: math.unit(8 + 4 / 12, "feet"),
  15445. weight: math.unit(600, "lb"),
  15446. name: "Back",
  15447. image: {
  15448. source: "./media/characters/dragonien/back.svg",
  15449. extra: 776 / 746,
  15450. bottom: 6.4 / 782.0616
  15451. }
  15452. },
  15453. foot: {
  15454. height: math.unit(1.54, "feet"),
  15455. name: "Foot",
  15456. image: {
  15457. source: "./media/characters/dragonien/foot.svg",
  15458. }
  15459. },
  15460. },
  15461. [
  15462. {
  15463. name: "Normal",
  15464. height: math.unit(8 + 4 / 12, "feet"),
  15465. default: true
  15466. },
  15467. {
  15468. name: "Macro",
  15469. height: math.unit(200, "feet")
  15470. },
  15471. {
  15472. name: "Megamacro",
  15473. height: math.unit(1, "mile")
  15474. },
  15475. {
  15476. name: "Gigamacro",
  15477. height: math.unit(1000, "miles")
  15478. },
  15479. ]
  15480. ))
  15481. characterMakers.push(() => makeCharacter(
  15482. { name: "Desta" },
  15483. {
  15484. front: {
  15485. height: math.unit(5 + 2 / 12, "feet"),
  15486. weight: math.unit(110, "lb"),
  15487. name: "Front",
  15488. image: {
  15489. source: "./media/characters/desta/front.svg",
  15490. extra: 1482 / 1417
  15491. }
  15492. },
  15493. side: {
  15494. height: math.unit(5 + 2 / 12, "feet"),
  15495. weight: math.unit(110, "lb"),
  15496. name: "Side",
  15497. image: {
  15498. source: "./media/characters/desta/side.svg",
  15499. extra: 2579 / 2491,
  15500. bottom: 0.053
  15501. }
  15502. },
  15503. },
  15504. [
  15505. {
  15506. name: "Micro",
  15507. height: math.unit(6, "inches")
  15508. },
  15509. {
  15510. name: "Normal",
  15511. height: math.unit(5 + 2 / 12, "feet"),
  15512. default: true
  15513. },
  15514. {
  15515. name: "Macro",
  15516. height: math.unit(62, "feet")
  15517. },
  15518. {
  15519. name: "Megamacro",
  15520. height: math.unit(1800, "feet")
  15521. },
  15522. ]
  15523. ))
  15524. characterMakers.push(() => makeCharacter(
  15525. { name: "Storm Alystar" },
  15526. {
  15527. front: {
  15528. height: math.unit(10, "feet"),
  15529. weight: math.unit(700, "lb"),
  15530. name: "Front",
  15531. image: {
  15532. source: "./media/characters/storm-alystar/front.svg",
  15533. extra: 2112 / 1898,
  15534. bottom: 0.034
  15535. }
  15536. },
  15537. },
  15538. [
  15539. {
  15540. name: "Micro",
  15541. height: math.unit(3.5, "inches")
  15542. },
  15543. {
  15544. name: "Normal",
  15545. height: math.unit(10, "feet"),
  15546. default: true
  15547. },
  15548. {
  15549. name: "Macro",
  15550. height: math.unit(400, "feet")
  15551. },
  15552. {
  15553. name: "Deific",
  15554. height: math.unit(60, "miles")
  15555. },
  15556. ]
  15557. ))
  15558. characterMakers.push(() => makeCharacter(
  15559. { name: "Ilia" },
  15560. {
  15561. front: {
  15562. height: math.unit(2.35, "meters"),
  15563. weight: math.unit(119, "kg"),
  15564. name: "Front",
  15565. image: {
  15566. source: "./media/characters/ilia/front.svg",
  15567. extra: 1285 / 1255,
  15568. bottom: 0.06
  15569. }
  15570. },
  15571. },
  15572. [
  15573. {
  15574. name: "Normal",
  15575. height: math.unit(2.35, "meters")
  15576. },
  15577. {
  15578. name: "Macro",
  15579. height: math.unit(140, "meters"),
  15580. default: true
  15581. },
  15582. {
  15583. name: "Megamacro",
  15584. height: math.unit(100, "miles")
  15585. },
  15586. ]
  15587. ))
  15588. characterMakers.push(() => makeCharacter(
  15589. { name: "KingDead" },
  15590. {
  15591. front: {
  15592. height: math.unit(6 + 5 / 12, "feet"),
  15593. weight: math.unit(190, "lb"),
  15594. name: "Front",
  15595. image: {
  15596. source: "./media/characters/kingdead/front.svg",
  15597. extra: 1228 / 1177
  15598. }
  15599. },
  15600. },
  15601. [
  15602. {
  15603. name: "Micro",
  15604. height: math.unit(7, "inches")
  15605. },
  15606. {
  15607. name: "Normal",
  15608. height: math.unit(6 + 5 / 12, "feet")
  15609. },
  15610. {
  15611. name: "Macro",
  15612. height: math.unit(150, "feet"),
  15613. default: true
  15614. },
  15615. {
  15616. name: "Megamacro",
  15617. height: math.unit(200, "miles")
  15618. },
  15619. ]
  15620. ))
  15621. characterMakers.push(() => makeCharacter(
  15622. { name: "Kyrehx" },
  15623. {
  15624. front: {
  15625. height: math.unit(8, "feet"),
  15626. weight: math.unit(600, "lb"),
  15627. name: "Front",
  15628. image: {
  15629. source: "./media/characters/kyrehx/front.svg",
  15630. extra: 1195 / 1095,
  15631. bottom: 0.034
  15632. }
  15633. },
  15634. },
  15635. [
  15636. {
  15637. name: "Micro",
  15638. height: math.unit(2, "inches")
  15639. },
  15640. {
  15641. name: "Normal",
  15642. height: math.unit(8, "feet"),
  15643. default: true
  15644. },
  15645. {
  15646. name: "Macro",
  15647. height: math.unit(255, "feet")
  15648. },
  15649. ]
  15650. ))
  15651. characterMakers.push(() => makeCharacter(
  15652. { name: "Xang" },
  15653. {
  15654. front: {
  15655. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15656. weight: math.unit(184, "lb"),
  15657. name: "Front",
  15658. image: {
  15659. source: "./media/characters/xang/front.svg",
  15660. extra: 845 / 755
  15661. }
  15662. },
  15663. },
  15664. [
  15665. {
  15666. name: "Normal",
  15667. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15668. default: true
  15669. },
  15670. {
  15671. name: "Macro",
  15672. height: math.unit(0.935 * 146, "feet")
  15673. },
  15674. {
  15675. name: "Megamacro",
  15676. height: math.unit(0.935 * 3, "miles")
  15677. },
  15678. ]
  15679. ))
  15680. characterMakers.push(() => makeCharacter(
  15681. { name: "Doc Weardno" },
  15682. {
  15683. frontDressed: {
  15684. height: math.unit(5 + 7 / 12, "feet"),
  15685. weight: math.unit(140, "lb"),
  15686. name: "Front (Dressed)",
  15687. image: {
  15688. source: "./media/characters/doc-weardno/front-dressed.svg",
  15689. extra: 263 / 234
  15690. }
  15691. },
  15692. backDressed: {
  15693. height: math.unit(5 + 7 / 12, "feet"),
  15694. weight: math.unit(140, "lb"),
  15695. name: "Back (Dressed)",
  15696. image: {
  15697. source: "./media/characters/doc-weardno/back-dressed.svg",
  15698. extra: 266 / 238
  15699. }
  15700. },
  15701. front: {
  15702. height: math.unit(5 + 7 / 12, "feet"),
  15703. weight: math.unit(140, "lb"),
  15704. name: "Front",
  15705. image: {
  15706. source: "./media/characters/doc-weardno/front.svg",
  15707. extra: 254 / 233
  15708. }
  15709. },
  15710. },
  15711. [
  15712. {
  15713. name: "Micro",
  15714. height: math.unit(3, "inches")
  15715. },
  15716. {
  15717. name: "Normal",
  15718. height: math.unit(5 + 7 / 12, "feet"),
  15719. default: true
  15720. },
  15721. {
  15722. name: "Macro",
  15723. height: math.unit(25, "feet")
  15724. },
  15725. {
  15726. name: "Megamacro",
  15727. height: math.unit(2, "miles")
  15728. },
  15729. ]
  15730. ))
  15731. characterMakers.push(() => makeCharacter(
  15732. { name: "Seth Whilst" },
  15733. {
  15734. front: {
  15735. height: math.unit(6 + 2 / 12, "feet"),
  15736. weight: math.unit(153, "lb"),
  15737. name: "Front",
  15738. image: {
  15739. source: "./media/characters/seth-whilst/front.svg",
  15740. bottom: 0.07
  15741. }
  15742. },
  15743. },
  15744. [
  15745. {
  15746. name: "Micro",
  15747. height: math.unit(5, "inches")
  15748. },
  15749. {
  15750. name: "Normal",
  15751. height: math.unit(6 + 2 / 12, "feet"),
  15752. default: true
  15753. },
  15754. ]
  15755. ))
  15756. characterMakers.push(() => makeCharacter(
  15757. { name: "Pocket Jabari" },
  15758. {
  15759. front: {
  15760. height: math.unit(3, "inches"),
  15761. weight: math.unit(8, "grams"),
  15762. name: "Front",
  15763. image: {
  15764. source: "./media/characters/pocket-jabari/front.svg",
  15765. extra: 1024 / 974,
  15766. bottom: 0.039
  15767. }
  15768. },
  15769. },
  15770. [
  15771. {
  15772. name: "Minimicro",
  15773. height: math.unit(8, "mm")
  15774. },
  15775. {
  15776. name: "Micro",
  15777. height: math.unit(3, "inches"),
  15778. default: true
  15779. },
  15780. {
  15781. name: "Normal",
  15782. height: math.unit(3, "feet")
  15783. },
  15784. ]
  15785. ))
  15786. characterMakers.push(() => makeCharacter(
  15787. { name: "Sapphy" },
  15788. {
  15789. front: {
  15790. height: math.unit(15, "feet"),
  15791. weight: math.unit(3280, "lb"),
  15792. name: "Front",
  15793. image: {
  15794. source: "./media/characters/sapphy/front.svg",
  15795. extra: 671 / 577,
  15796. bottom: 0.085
  15797. }
  15798. },
  15799. back: {
  15800. height: math.unit(15, "feet"),
  15801. weight: math.unit(3280, "lb"),
  15802. name: "Back",
  15803. image: {
  15804. source: "./media/characters/sapphy/back.svg",
  15805. extra: 631 / 607,
  15806. bottom: 0.045
  15807. }
  15808. },
  15809. },
  15810. [
  15811. {
  15812. name: "Normal",
  15813. height: math.unit(15, "feet")
  15814. },
  15815. {
  15816. name: "Casual Macro",
  15817. height: math.unit(120, "feet")
  15818. },
  15819. {
  15820. name: "Macro",
  15821. height: math.unit(2150, "feet"),
  15822. default: true
  15823. },
  15824. {
  15825. name: "Megamacro",
  15826. height: math.unit(8, "miles")
  15827. },
  15828. {
  15829. name: "Galaxy Mom",
  15830. height: math.unit(6, "megalightyears")
  15831. },
  15832. ]
  15833. ))
  15834. characterMakers.push(() => makeCharacter(
  15835. { name: "Kiro" },
  15836. {
  15837. front: {
  15838. height: math.unit(6, "feet"),
  15839. weight: math.unit(170, "lb"),
  15840. name: "Front",
  15841. image: {
  15842. source: "./media/characters/kiro/front.svg",
  15843. extra: 1064 / 1012,
  15844. bottom: 0.052
  15845. }
  15846. },
  15847. },
  15848. [
  15849. {
  15850. name: "Micro",
  15851. height: math.unit(6, "inches")
  15852. },
  15853. {
  15854. name: "Normal",
  15855. height: math.unit(6, "feet"),
  15856. default: true
  15857. },
  15858. {
  15859. name: "Macro",
  15860. height: math.unit(72, "feet")
  15861. },
  15862. ]
  15863. ))
  15864. characterMakers.push(() => makeCharacter(
  15865. { name: "Irishfox" },
  15866. {
  15867. front: {
  15868. height: math.unit(5 + 9 / 12, "feet"),
  15869. weight: math.unit(175, "lb"),
  15870. name: "Front",
  15871. image: {
  15872. source: "./media/characters/irishfox/front.svg",
  15873. extra: 1912 / 1680,
  15874. bottom: 0.02
  15875. }
  15876. },
  15877. },
  15878. [
  15879. {
  15880. name: "Nano",
  15881. height: math.unit(1, "mm")
  15882. },
  15883. {
  15884. name: "Micro",
  15885. height: math.unit(2, "inches")
  15886. },
  15887. {
  15888. name: "Normal",
  15889. height: math.unit(5 + 9 / 12, "feet"),
  15890. default: true
  15891. },
  15892. {
  15893. name: "Macro",
  15894. height: math.unit(45, "feet")
  15895. },
  15896. ]
  15897. ))
  15898. characterMakers.push(() => makeCharacter(
  15899. { name: "Aronai Sieyes" },
  15900. {
  15901. front: {
  15902. height: math.unit(6 + 1 / 12, "feet"),
  15903. weight: math.unit(150, "lb"),
  15904. name: "Front",
  15905. image: {
  15906. source: "./media/characters/aronai-sieyes/front.svg",
  15907. extra: 1556 / 1480,
  15908. bottom: 0.015
  15909. }
  15910. },
  15911. side: {
  15912. height: math.unit(6 + 1 / 12, "feet"),
  15913. weight: math.unit(150, "lb"),
  15914. name: "Side",
  15915. image: {
  15916. source: "./media/characters/aronai-sieyes/side.svg",
  15917. extra: 1433 / 1390,
  15918. bottom: 0.0393
  15919. }
  15920. },
  15921. back: {
  15922. height: math.unit(6 + 1 / 12, "feet"),
  15923. weight: math.unit(150, "lb"),
  15924. name: "Back",
  15925. image: {
  15926. source: "./media/characters/aronai-sieyes/back.svg",
  15927. extra: 1544 / 1494,
  15928. bottom: 0.02
  15929. }
  15930. },
  15931. frontClothed: {
  15932. height: math.unit(6 + 1 / 12, "feet"),
  15933. weight: math.unit(150, "lb"),
  15934. name: "Front (Clothed)",
  15935. image: {
  15936. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  15937. extra: 1582 / 1527
  15938. }
  15939. },
  15940. feral: {
  15941. height: math.unit(18, "feet"),
  15942. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  15943. name: "Feral",
  15944. image: {
  15945. source: "./media/characters/aronai-sieyes/feral.svg",
  15946. extra: 1530 / 1240,
  15947. bottom: 0.035
  15948. }
  15949. },
  15950. },
  15951. [
  15952. {
  15953. name: "Micro",
  15954. height: math.unit(2, "inches")
  15955. },
  15956. {
  15957. name: "Normal",
  15958. height: math.unit(6 + 1 / 12, "feet"),
  15959. default: true
  15960. }
  15961. ]
  15962. ))
  15963. characterMakers.push(() => makeCharacter(
  15964. { name: "Xuna" },
  15965. {
  15966. front: {
  15967. height: math.unit(12, "feet"),
  15968. weight: math.unit(410, "kg"),
  15969. name: "Front",
  15970. image: {
  15971. source: "./media/characters/xuna/front.svg",
  15972. extra: 2184 / 1980
  15973. }
  15974. },
  15975. side: {
  15976. height: math.unit(12, "feet"),
  15977. weight: math.unit(410, "kg"),
  15978. name: "Side",
  15979. image: {
  15980. source: "./media/characters/xuna/side.svg",
  15981. extra: 2184 / 1980
  15982. }
  15983. },
  15984. back: {
  15985. height: math.unit(12, "feet"),
  15986. weight: math.unit(410, "kg"),
  15987. name: "Back",
  15988. image: {
  15989. source: "./media/characters/xuna/back.svg",
  15990. extra: 2184 / 1980
  15991. }
  15992. },
  15993. },
  15994. [
  15995. {
  15996. name: "Nano glow",
  15997. height: math.unit(10, "nm")
  15998. },
  15999. {
  16000. name: "Micro floof",
  16001. height: math.unit(0.3, "m")
  16002. },
  16003. {
  16004. name: "Huggable softy boi",
  16005. height: math.unit(3.6576, "m"),
  16006. default: true
  16007. },
  16008. {
  16009. name: "Admirable floof",
  16010. height: math.unit(80, "meters")
  16011. },
  16012. {
  16013. name: "Gentle macro",
  16014. height: math.unit(300, "meters")
  16015. },
  16016. {
  16017. name: "Very careful floof",
  16018. height: math.unit(3200, "meters")
  16019. },
  16020. {
  16021. name: "The mega floof",
  16022. height: math.unit(36000, "meters")
  16023. },
  16024. {
  16025. name: "Giga-fur-Wicker",
  16026. height: math.unit(4800000, "meters")
  16027. },
  16028. {
  16029. name: "Licky world",
  16030. height: math.unit(20000000, "meters")
  16031. },
  16032. {
  16033. name: "Floofy cyan sun",
  16034. height: math.unit(1500000000, "meters")
  16035. },
  16036. {
  16037. name: "Milky Wicker",
  16038. height: math.unit(1000000000000000000000, "meters")
  16039. },
  16040. {
  16041. name: "The observing Wicker",
  16042. height: math.unit(999999999999999999999999999, "meters")
  16043. },
  16044. ]
  16045. ))
  16046. characterMakers.push(() => makeCharacter(
  16047. { name: "Arokha Sieyes" },
  16048. {
  16049. front: {
  16050. height: math.unit(5 + 9 / 12, "feet"),
  16051. weight: math.unit(150, "lb"),
  16052. name: "Front",
  16053. image: {
  16054. source: "./media/characters/arokha-sieyes/front.svg",
  16055. extra: 1425 / 1284,
  16056. bottom: 0.05
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Normal",
  16063. height: math.unit(5 + 9 / 12, "feet")
  16064. },
  16065. {
  16066. name: "Macro",
  16067. height: math.unit(30, "meters"),
  16068. default: true
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Arokh Sieyes" },
  16074. {
  16075. front: {
  16076. height: math.unit(6, "feet"),
  16077. weight: math.unit(180, "lb"),
  16078. name: "Front",
  16079. image: {
  16080. source: "./media/characters/arokh-sieyes/front.svg",
  16081. extra: 1830 / 1769,
  16082. bottom: 0.01
  16083. }
  16084. },
  16085. },
  16086. [
  16087. {
  16088. name: "Normal",
  16089. height: math.unit(6, "feet")
  16090. },
  16091. {
  16092. name: "Macro",
  16093. height: math.unit(30, "meters"),
  16094. default: true
  16095. },
  16096. ]
  16097. ))
  16098. characterMakers.push(() => makeCharacter(
  16099. { name: "Goldeneye" },
  16100. {
  16101. side: {
  16102. height: math.unit(13 + 1 / 12, "feet"),
  16103. weight: math.unit(8.5, "tonnes"),
  16104. name: "Side",
  16105. image: {
  16106. source: "./media/characters/goldeneye/side.svg",
  16107. extra: 1182 / 778,
  16108. bottom: 0.067
  16109. }
  16110. },
  16111. paw: {
  16112. height: math.unit(3.4, "feet"),
  16113. name: "Paw",
  16114. image: {
  16115. source: "./media/characters/goldeneye/paw.svg"
  16116. }
  16117. },
  16118. },
  16119. [
  16120. {
  16121. name: "Normal",
  16122. height: math.unit(13 + 1 / 12, "feet"),
  16123. default: true
  16124. },
  16125. ]
  16126. ))
  16127. characterMakers.push(() => makeCharacter(
  16128. { name: "Leonardo Lycheborne" },
  16129. {
  16130. front: {
  16131. height: math.unit(6 + 1 / 12, "feet"),
  16132. weight: math.unit(210, "lb"),
  16133. name: "Front",
  16134. image: {
  16135. source: "./media/characters/leonardo-lycheborne/front.svg",
  16136. extra: 390 / 365,
  16137. bottom: 0.032
  16138. }
  16139. },
  16140. side: {
  16141. height: math.unit(6 + 1 / 12, "feet"),
  16142. weight: math.unit(210, "lb"),
  16143. name: "Side",
  16144. image: {
  16145. source: "./media/characters/leonardo-lycheborne/side.svg",
  16146. extra: 390 / 365,
  16147. bottom: 0.005
  16148. }
  16149. },
  16150. back: {
  16151. height: math.unit(6 + 1 / 12, "feet"),
  16152. weight: math.unit(210, "lb"),
  16153. name: "Back",
  16154. image: {
  16155. source: "./media/characters/leonardo-lycheborne/back.svg",
  16156. extra: 392 / 366,
  16157. bottom: 0.01
  16158. }
  16159. },
  16160. hand: {
  16161. height: math.unit(1.08, "feet"),
  16162. name: "Hand",
  16163. image: {
  16164. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16165. }
  16166. },
  16167. foot: {
  16168. height: math.unit(1.32, "feet"),
  16169. name: "Foot",
  16170. image: {
  16171. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16172. }
  16173. },
  16174. were: {
  16175. height: math.unit(20, "feet"),
  16176. weight: math.unit(7800, "lb"),
  16177. name: "Were",
  16178. image: {
  16179. source: "./media/characters/leonardo-lycheborne/were.svg",
  16180. extra: 308 / 294,
  16181. bottom: 0.048
  16182. }
  16183. },
  16184. feral: {
  16185. height: math.unit(7.5, "feet"),
  16186. weight: math.unit(600, "lb"),
  16187. name: "Feral",
  16188. image: {
  16189. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16190. extra: 210 / 186,
  16191. bottom: 0.108
  16192. }
  16193. },
  16194. taur: {
  16195. height: math.unit(11, "feet"),
  16196. weight: math.unit(3300, "lb"),
  16197. name: "Taur",
  16198. image: {
  16199. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16200. extra: 320 / 303,
  16201. bottom: 0.025
  16202. }
  16203. },
  16204. barghest: {
  16205. height: math.unit(11, "feet"),
  16206. weight: math.unit(1300, "lb"),
  16207. name: "Barghest",
  16208. image: {
  16209. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16210. extra: 323 / 302,
  16211. bottom: 0.027
  16212. }
  16213. },
  16214. dick: {
  16215. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16216. name: "Dick",
  16217. image: {
  16218. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16219. }
  16220. },
  16221. dickWere: {
  16222. height: math.unit((20) / 3.8, "feet"),
  16223. name: "Dick (Were)",
  16224. image: {
  16225. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16226. }
  16227. },
  16228. },
  16229. [
  16230. {
  16231. name: "Normal",
  16232. height: math.unit(6 + 1 / 12, "feet"),
  16233. default: true
  16234. },
  16235. ]
  16236. ))
  16237. characterMakers.push(() => makeCharacter(
  16238. { name: "Jet" },
  16239. {
  16240. front: {
  16241. height: math.unit(10, "feet"),
  16242. weight: math.unit(350, "lb"),
  16243. name: "Front",
  16244. image: {
  16245. source: "./media/characters/jet/front.svg",
  16246. extra: 2050 / 1980,
  16247. bottom: 0.013
  16248. }
  16249. },
  16250. back: {
  16251. height: math.unit(10, "feet"),
  16252. weight: math.unit(350, "lb"),
  16253. name: "Back",
  16254. image: {
  16255. source: "./media/characters/jet/back.svg",
  16256. extra: 2050 / 1980,
  16257. bottom: 0.013
  16258. }
  16259. },
  16260. },
  16261. [
  16262. {
  16263. name: "Micro",
  16264. height: math.unit(6, "inches")
  16265. },
  16266. {
  16267. name: "Normal",
  16268. height: math.unit(10, "feet"),
  16269. default: true
  16270. },
  16271. {
  16272. name: "Macro",
  16273. height: math.unit(100, "feet")
  16274. },
  16275. ]
  16276. ))
  16277. characterMakers.push(() => makeCharacter(
  16278. { name: "Tanarath" },
  16279. {
  16280. front: {
  16281. height: math.unit(15, "feet"),
  16282. weight: math.unit(2800, "lb"),
  16283. name: "Front",
  16284. image: {
  16285. source: "./media/characters/tanarath/front.svg",
  16286. extra: 2392 / 2220,
  16287. bottom: 0.03
  16288. }
  16289. },
  16290. back: {
  16291. height: math.unit(15, "feet"),
  16292. weight: math.unit(2800, "lb"),
  16293. name: "Back",
  16294. image: {
  16295. source: "./media/characters/tanarath/back.svg",
  16296. extra: 2392 / 2220,
  16297. bottom: 0.03
  16298. }
  16299. },
  16300. },
  16301. [
  16302. {
  16303. name: "Normal",
  16304. height: math.unit(15, "feet"),
  16305. default: true
  16306. },
  16307. ]
  16308. ))
  16309. characterMakers.push(() => makeCharacter(
  16310. { name: "Patty CattyBatty" },
  16311. {
  16312. front: {
  16313. height: math.unit(7 + 1 / 12, "feet"),
  16314. weight: math.unit(175, "lb"),
  16315. name: "Front",
  16316. image: {
  16317. source: "./media/characters/patty-cattybatty/front.svg",
  16318. extra: 908 / 874,
  16319. bottom: 0.025
  16320. }
  16321. },
  16322. },
  16323. [
  16324. {
  16325. name: "Micro",
  16326. height: math.unit(1, "inch")
  16327. },
  16328. {
  16329. name: "Normal",
  16330. height: math.unit(7 + 1 / 12, "feet")
  16331. },
  16332. {
  16333. name: "Mini Macro",
  16334. height: math.unit(155, "feet")
  16335. },
  16336. {
  16337. name: "Macro",
  16338. height: math.unit(1077, "feet")
  16339. },
  16340. {
  16341. name: "Mega Macro",
  16342. height: math.unit(47650, "feet"),
  16343. default: true
  16344. },
  16345. {
  16346. name: "Giga Macro",
  16347. height: math.unit(440, "miles")
  16348. },
  16349. {
  16350. name: "Tera Macro",
  16351. height: math.unit(8700, "miles")
  16352. },
  16353. {
  16354. name: "Planetary Macro",
  16355. height: math.unit(32700, "miles")
  16356. },
  16357. {
  16358. name: "Solar Macro",
  16359. height: math.unit(550000, "miles")
  16360. },
  16361. {
  16362. name: "Celestial Macro",
  16363. height: math.unit(2.5, "AU")
  16364. },
  16365. ]
  16366. ))
  16367. characterMakers.push(() => makeCharacter(
  16368. { name: "Cappu" },
  16369. {
  16370. front: {
  16371. height: math.unit(4 + 5 / 12, "feet"),
  16372. weight: math.unit(90, "lb"),
  16373. name: "Front",
  16374. image: {
  16375. source: "./media/characters/cappu/front.svg",
  16376. extra: 1247 / 1152,
  16377. bottom: 0.012
  16378. }
  16379. },
  16380. },
  16381. [
  16382. {
  16383. name: "Normal",
  16384. height: math.unit(4 + 5 / 12, "feet"),
  16385. default: true
  16386. },
  16387. ]
  16388. ))
  16389. characterMakers.push(() => makeCharacter(
  16390. { name: "Sebi" },
  16391. {
  16392. frontDressed: {
  16393. height: math.unit(70, "cm"),
  16394. weight: math.unit(6, "kg"),
  16395. name: "Front (Dressed)",
  16396. image: {
  16397. source: "./media/characters/sebi/front-dressed.svg",
  16398. extra: 713.5 / 686.5,
  16399. bottom: 0.003
  16400. }
  16401. },
  16402. front: {
  16403. height: math.unit(70, "cm"),
  16404. weight: math.unit(5, "kg"),
  16405. name: "Front",
  16406. image: {
  16407. source: "./media/characters/sebi/front.svg",
  16408. extra: 713.5 / 686.5,
  16409. bottom: 0.003
  16410. }
  16411. }
  16412. },
  16413. [
  16414. {
  16415. name: "Normal",
  16416. height: math.unit(70, "cm"),
  16417. default: true
  16418. },
  16419. {
  16420. name: "Macro",
  16421. height: math.unit(8, "meters")
  16422. },
  16423. ]
  16424. ))
  16425. characterMakers.push(() => makeCharacter(
  16426. { name: "Typhek" },
  16427. {
  16428. front: {
  16429. height: math.unit(6, "feet"),
  16430. weight: math.unit(150, "lb"),
  16431. name: "Front",
  16432. image: {
  16433. source: "./media/characters/typhek/front.svg",
  16434. extra: 1948 / 1929,
  16435. bottom: 0.025
  16436. }
  16437. },
  16438. side: {
  16439. height: math.unit(6, "feet"),
  16440. weight: math.unit(150, "lb"),
  16441. name: "Side",
  16442. image: {
  16443. source: "./media/characters/typhek/side.svg",
  16444. extra: 2034 / 2010,
  16445. bottom: 0.003
  16446. }
  16447. },
  16448. back: {
  16449. height: math.unit(6, "feet"),
  16450. weight: math.unit(150, "lb"),
  16451. name: "Back",
  16452. image: {
  16453. source: "./media/characters/typhek/back.svg",
  16454. extra: 2005 / 1978,
  16455. bottom: 0.004
  16456. }
  16457. },
  16458. palm: {
  16459. height: math.unit(1.2, "feet"),
  16460. name: "Palm",
  16461. image: {
  16462. source: "./media/characters/typhek/palm.svg"
  16463. }
  16464. },
  16465. fist: {
  16466. height: math.unit(1.1, "feet"),
  16467. name: "Fist",
  16468. image: {
  16469. source: "./media/characters/typhek/fist.svg"
  16470. }
  16471. },
  16472. foot: {
  16473. height: math.unit(1.57, "feet"),
  16474. name: "Foot",
  16475. image: {
  16476. source: "./media/characters/typhek/foot.svg"
  16477. }
  16478. },
  16479. sole: {
  16480. height: math.unit(2.05, "feet"),
  16481. name: "Sole",
  16482. image: {
  16483. source: "./media/characters/typhek/sole.svg"
  16484. }
  16485. },
  16486. },
  16487. [
  16488. {
  16489. name: "Macro",
  16490. height: math.unit(40, "stories"),
  16491. default: true
  16492. },
  16493. {
  16494. name: "Megamacro",
  16495. height: math.unit(1, "mile")
  16496. },
  16497. {
  16498. name: "Gigamacro",
  16499. height: math.unit(4000, "solarradii")
  16500. },
  16501. {
  16502. name: "Universal",
  16503. height: math.unit(1.1, "universes")
  16504. }
  16505. ]
  16506. ))
  16507. characterMakers.push(() => makeCharacter(
  16508. { name: "Kassy" },
  16509. {
  16510. side: {
  16511. height: math.unit(5 + 7 / 12, "feet"),
  16512. weight: math.unit(150, "lb"),
  16513. name: "Side",
  16514. image: {
  16515. source: "./media/characters/kassy/side.svg",
  16516. extra: 1280 / 1225,
  16517. bottom: 0.002
  16518. }
  16519. },
  16520. front: {
  16521. height: math.unit(5 + 7 / 12, "feet"),
  16522. weight: math.unit(150, "lb"),
  16523. name: "Front",
  16524. image: {
  16525. source: "./media/characters/kassy/front.svg",
  16526. extra: 1280 / 1225,
  16527. bottom: 0.025
  16528. }
  16529. },
  16530. back: {
  16531. height: math.unit(5 + 7 / 12, "feet"),
  16532. weight: math.unit(150, "lb"),
  16533. name: "Back",
  16534. image: {
  16535. source: "./media/characters/kassy/back.svg",
  16536. extra: 1280 / 1225,
  16537. bottom: 0.002
  16538. }
  16539. },
  16540. foot: {
  16541. height: math.unit(1.266, "feet"),
  16542. name: "Foot",
  16543. image: {
  16544. source: "./media/characters/kassy/foot.svg"
  16545. }
  16546. },
  16547. },
  16548. [
  16549. {
  16550. name: "Normal",
  16551. height: math.unit(5 + 7 / 12, "feet")
  16552. },
  16553. {
  16554. name: "Macro",
  16555. height: math.unit(137, "feet"),
  16556. default: true
  16557. },
  16558. {
  16559. name: "Megamacro",
  16560. height: math.unit(1, "mile")
  16561. },
  16562. ]
  16563. ))
  16564. characterMakers.push(() => makeCharacter(
  16565. { name: "Neil" },
  16566. {
  16567. front: {
  16568. height: math.unit(6 + 1 / 12, "feet"),
  16569. weight: math.unit(200, "lb"),
  16570. name: "Front",
  16571. image: {
  16572. source: "./media/characters/neil/front.svg",
  16573. extra: 1326 / 1250,
  16574. bottom: 0.023
  16575. }
  16576. },
  16577. },
  16578. [
  16579. {
  16580. name: "Normal",
  16581. height: math.unit(6 + 1 / 12, "feet"),
  16582. default: true
  16583. },
  16584. {
  16585. name: "Macro",
  16586. height: math.unit(200, "feet")
  16587. },
  16588. ]
  16589. ))
  16590. characterMakers.push(() => makeCharacter(
  16591. { name: "Atticus" },
  16592. {
  16593. front: {
  16594. height: math.unit(5 + 9 / 12, "feet"),
  16595. weight: math.unit(190, "lb"),
  16596. name: "Front",
  16597. image: {
  16598. source: "./media/characters/atticus/front.svg",
  16599. extra: 2934 / 2785,
  16600. bottom: 0.025
  16601. }
  16602. },
  16603. },
  16604. [
  16605. {
  16606. name: "Normal",
  16607. height: math.unit(5 + 9 / 12, "feet"),
  16608. default: true
  16609. },
  16610. {
  16611. name: "Macro",
  16612. height: math.unit(180, "feet")
  16613. },
  16614. ]
  16615. ))
  16616. characterMakers.push(() => makeCharacter(
  16617. { name: "Milo" },
  16618. {
  16619. side: {
  16620. height: math.unit(9, "feet"),
  16621. weight: math.unit(650, "lb"),
  16622. name: "Side",
  16623. image: {
  16624. source: "./media/characters/milo/side.svg",
  16625. extra: 2644 / 2310,
  16626. bottom: 0.032
  16627. }
  16628. },
  16629. },
  16630. [
  16631. {
  16632. name: "Normal",
  16633. height: math.unit(9, "feet"),
  16634. default: true
  16635. },
  16636. {
  16637. name: "Macro",
  16638. height: math.unit(300, "feet")
  16639. },
  16640. ]
  16641. ))
  16642. characterMakers.push(() => makeCharacter(
  16643. { name: "Ijzer" },
  16644. {
  16645. side: {
  16646. height: math.unit(8, "meters"),
  16647. weight: math.unit(90000, "kg"),
  16648. name: "Side",
  16649. image: {
  16650. source: "./media/characters/ijzer/side.svg",
  16651. extra: 2756 / 1600,
  16652. bottom: 0.01
  16653. }
  16654. },
  16655. },
  16656. [
  16657. {
  16658. name: "Small",
  16659. height: math.unit(3, "meters")
  16660. },
  16661. {
  16662. name: "Normal",
  16663. height: math.unit(8, "meters"),
  16664. default: true
  16665. },
  16666. {
  16667. name: "Normal+",
  16668. height: math.unit(10, "meters")
  16669. },
  16670. {
  16671. name: "Bigger",
  16672. height: math.unit(24, "meters")
  16673. },
  16674. {
  16675. name: "Huge",
  16676. height: math.unit(80, "meters")
  16677. },
  16678. ]
  16679. ))
  16680. characterMakers.push(() => makeCharacter(
  16681. { name: "Luca Cervicum" },
  16682. {
  16683. front: {
  16684. height: math.unit(6 + 2 / 12, "feet"),
  16685. weight: math.unit(153, "lb"),
  16686. name: "Front",
  16687. image: {
  16688. source: "./media/characters/luca-cervicum/front.svg",
  16689. extra: 370 / 327,
  16690. bottom: 0.015
  16691. }
  16692. },
  16693. back: {
  16694. height: math.unit(6 + 2 / 12, "feet"),
  16695. weight: math.unit(153, "lb"),
  16696. name: "Back",
  16697. image: {
  16698. source: "./media/characters/luca-cervicum/back.svg",
  16699. extra: 367 / 333,
  16700. bottom: 0.005
  16701. }
  16702. },
  16703. frontGear: {
  16704. height: math.unit(6 + 2 / 12, "feet"),
  16705. weight: math.unit(173, "lb"),
  16706. name: "Front (Gear)",
  16707. image: {
  16708. source: "./media/characters/luca-cervicum/front-gear.svg",
  16709. extra: 377 / 333,
  16710. bottom: 0.006
  16711. }
  16712. },
  16713. },
  16714. [
  16715. {
  16716. name: "Normal",
  16717. height: math.unit(6 + 2 / 12, "feet"),
  16718. default: true
  16719. },
  16720. ]
  16721. ))
  16722. characterMakers.push(() => makeCharacter(
  16723. { name: "Oliver" },
  16724. {
  16725. front: {
  16726. height: math.unit(6 + 1 / 12, "feet"),
  16727. weight: math.unit(304, "lb"),
  16728. name: "Front",
  16729. image: {
  16730. source: "./media/characters/oliver/front.svg",
  16731. extra: 157 / 143,
  16732. bottom: 0.08
  16733. }
  16734. },
  16735. },
  16736. [
  16737. {
  16738. name: "Normal",
  16739. height: math.unit(6 + 1 / 12, "feet"),
  16740. default: true
  16741. },
  16742. ]
  16743. ))
  16744. characterMakers.push(() => makeCharacter(
  16745. { name: "Shane" },
  16746. {
  16747. front: {
  16748. height: math.unit(5 + 7 / 12, "feet"),
  16749. weight: math.unit(140, "lb"),
  16750. name: "Front",
  16751. image: {
  16752. source: "./media/characters/shane/front.svg",
  16753. extra: 304 / 289,
  16754. bottom: 0.005
  16755. }
  16756. },
  16757. },
  16758. [
  16759. {
  16760. name: "Normal",
  16761. height: math.unit(5 + 7 / 12, "feet"),
  16762. default: true
  16763. },
  16764. ]
  16765. ))
  16766. characterMakers.push(() => makeCharacter(
  16767. { name: "Shin" },
  16768. {
  16769. front: {
  16770. height: math.unit(5 + 9 / 12, "feet"),
  16771. weight: math.unit(178, "lb"),
  16772. name: "Front",
  16773. image: {
  16774. source: "./media/characters/shin/front.svg",
  16775. extra: 159 / 151,
  16776. bottom: 0.015
  16777. }
  16778. },
  16779. },
  16780. [
  16781. {
  16782. name: "Normal",
  16783. height: math.unit(5 + 9 / 12, "feet"),
  16784. default: true
  16785. },
  16786. ]
  16787. ))
  16788. characterMakers.push(() => makeCharacter(
  16789. { name: "Xerxes" },
  16790. {
  16791. front: {
  16792. height: math.unit(5 + 10 / 12, "feet"),
  16793. weight: math.unit(168, "lb"),
  16794. name: "Front",
  16795. image: {
  16796. source: "./media/characters/xerxes/front.svg",
  16797. extra: 282 / 260,
  16798. bottom: 0.045
  16799. }
  16800. },
  16801. },
  16802. [
  16803. {
  16804. name: "Normal",
  16805. height: math.unit(5 + 10 / 12, "feet"),
  16806. default: true
  16807. },
  16808. ]
  16809. ))
  16810. characterMakers.push(() => makeCharacter(
  16811. { name: "Chaska" },
  16812. {
  16813. front: {
  16814. height: math.unit(6 + 7 / 12, "feet"),
  16815. weight: math.unit(208, "lb"),
  16816. name: "Front",
  16817. image: {
  16818. source: "./media/characters/chaska/front.svg",
  16819. extra: 332 / 319,
  16820. bottom: 0.015
  16821. }
  16822. },
  16823. },
  16824. [
  16825. {
  16826. name: "Normal",
  16827. height: math.unit(6 + 7 / 12, "feet"),
  16828. default: true
  16829. },
  16830. ]
  16831. ))
  16832. characterMakers.push(() => makeCharacter(
  16833. { name: "Enuk" },
  16834. {
  16835. front: {
  16836. height: math.unit(5 + 8 / 12, "feet"),
  16837. weight: math.unit(208, "lb"),
  16838. name: "Front",
  16839. image: {
  16840. source: "./media/characters/enuk/front.svg",
  16841. extra: 437 / 406,
  16842. bottom: 0.02
  16843. }
  16844. },
  16845. },
  16846. [
  16847. {
  16848. name: "Normal",
  16849. height: math.unit(5 + 8 / 12, "feet"),
  16850. default: true
  16851. },
  16852. ]
  16853. ))
  16854. characterMakers.push(() => makeCharacter(
  16855. { name: "Bruun" },
  16856. {
  16857. front: {
  16858. height: math.unit(5 + 10 / 12, "feet"),
  16859. weight: math.unit(252, "lb"),
  16860. name: "Front",
  16861. image: {
  16862. source: "./media/characters/bruun/front.svg",
  16863. extra: 197 / 187,
  16864. bottom: 0.012
  16865. }
  16866. },
  16867. },
  16868. [
  16869. {
  16870. name: "Normal",
  16871. height: math.unit(5 + 10 / 12, "feet"),
  16872. default: true
  16873. },
  16874. ]
  16875. ))
  16876. characterMakers.push(() => makeCharacter(
  16877. { name: "Alexeev" },
  16878. {
  16879. front: {
  16880. height: math.unit(6 + 10 / 12, "feet"),
  16881. weight: math.unit(255, "lb"),
  16882. name: "Front",
  16883. image: {
  16884. source: "./media/characters/alexeev/front.svg",
  16885. extra: 213 / 200,
  16886. bottom: 0.05
  16887. }
  16888. },
  16889. },
  16890. [
  16891. {
  16892. name: "Normal",
  16893. height: math.unit(6 + 10 / 12, "feet"),
  16894. default: true
  16895. },
  16896. ]
  16897. ))
  16898. characterMakers.push(() => makeCharacter(
  16899. { name: "Evelyn" },
  16900. {
  16901. front: {
  16902. height: math.unit(2 + 8 / 12, "feet"),
  16903. weight: math.unit(22, "lb"),
  16904. name: "Front",
  16905. image: {
  16906. source: "./media/characters/evelyn/front.svg",
  16907. extra: 208 / 180
  16908. }
  16909. },
  16910. },
  16911. [
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(2 + 8 / 12, "feet"),
  16915. default: true
  16916. },
  16917. ]
  16918. ))
  16919. characterMakers.push(() => makeCharacter(
  16920. { name: "Inca" },
  16921. {
  16922. front: {
  16923. height: math.unit(5 + 9 / 12, "feet"),
  16924. weight: math.unit(139, "lb"),
  16925. name: "Front",
  16926. image: {
  16927. source: "./media/characters/inca/front.svg",
  16928. extra: 294 / 291,
  16929. bottom: 0.03
  16930. }
  16931. },
  16932. },
  16933. [
  16934. {
  16935. name: "Normal",
  16936. height: math.unit(5 + 9 / 12, "feet"),
  16937. default: true
  16938. },
  16939. ]
  16940. ))
  16941. characterMakers.push(() => makeCharacter(
  16942. { name: "Magdalene" },
  16943. {
  16944. front: {
  16945. height: math.unit(5 + 1 / 12, "feet"),
  16946. weight: math.unit(84, "lb"),
  16947. name: "Front",
  16948. image: {
  16949. source: "./media/characters/magdalene/front.svg",
  16950. extra: 293 / 273
  16951. }
  16952. },
  16953. },
  16954. [
  16955. {
  16956. name: "Normal",
  16957. height: math.unit(5 + 1 / 12, "feet"),
  16958. default: true
  16959. },
  16960. ]
  16961. ))
  16962. characterMakers.push(() => makeCharacter(
  16963. { name: "Mera" },
  16964. {
  16965. front: {
  16966. height: math.unit(6 + 3 / 12, "feet"),
  16967. weight: math.unit(185, "lb"),
  16968. name: "Front",
  16969. image: {
  16970. source: "./media/characters/mera/front.svg",
  16971. extra: 291 / 277,
  16972. bottom: 0.03
  16973. }
  16974. },
  16975. },
  16976. [
  16977. {
  16978. name: "Normal",
  16979. height: math.unit(6 + 3 / 12, "feet"),
  16980. default: true
  16981. },
  16982. ]
  16983. ))
  16984. characterMakers.push(() => makeCharacter(
  16985. { name: "Ceres" },
  16986. {
  16987. front: {
  16988. height: math.unit(6 + 7 / 12, "feet"),
  16989. weight: math.unit(160, "lb"),
  16990. name: "Front",
  16991. image: {
  16992. source: "./media/characters/ceres/front.svg",
  16993. extra: 1023 / 950,
  16994. bottom: 0.027
  16995. }
  16996. },
  16997. back: {
  16998. height: math.unit(6 + 7 / 12, "feet"),
  16999. weight: math.unit(160, "lb"),
  17000. name: "Back",
  17001. image: {
  17002. source: "./media/characters/ceres/back.svg",
  17003. extra: 1023 / 950
  17004. }
  17005. },
  17006. },
  17007. [
  17008. {
  17009. name: "Normal",
  17010. height: math.unit(6 + 7 / 12, "feet"),
  17011. default: true
  17012. },
  17013. ]
  17014. ))
  17015. characterMakers.push(() => makeCharacter(
  17016. { name: "Kris" },
  17017. {
  17018. front: {
  17019. height: math.unit(5 + 10 / 12, "feet"),
  17020. weight: math.unit(150, "lb"),
  17021. name: "Front",
  17022. image: {
  17023. source: "./media/characters/kris/front.svg",
  17024. extra: 885 / 803,
  17025. bottom: 0.03
  17026. }
  17027. },
  17028. },
  17029. [
  17030. {
  17031. name: "Normal",
  17032. height: math.unit(5 + 10 / 12, "feet"),
  17033. default: true
  17034. },
  17035. ]
  17036. ))
  17037. characterMakers.push(() => makeCharacter(
  17038. { name: "Taluthus" },
  17039. {
  17040. front: {
  17041. height: math.unit(7, "feet"),
  17042. weight: math.unit(120, "kg"),
  17043. name: "Front",
  17044. image: {
  17045. source: "./media/characters/taluthus/front.svg",
  17046. extra: 903 / 833,
  17047. bottom: 0.015
  17048. }
  17049. },
  17050. },
  17051. [
  17052. {
  17053. name: "Normal",
  17054. height: math.unit(7, "feet"),
  17055. default: true
  17056. },
  17057. {
  17058. name: "Macro",
  17059. height: math.unit(300, "feet")
  17060. },
  17061. ]
  17062. ))
  17063. characterMakers.push(() => makeCharacter(
  17064. { name: "Dawn" },
  17065. {
  17066. front: {
  17067. height: math.unit(5 + 9 / 12, "feet"),
  17068. weight: math.unit(145, "lb"),
  17069. name: "Front",
  17070. image: {
  17071. source: "./media/characters/dawn/front.svg",
  17072. extra: 2094 / 2016,
  17073. bottom: 0.025
  17074. }
  17075. },
  17076. back: {
  17077. height: math.unit(5 + 9 / 12, "feet"),
  17078. weight: math.unit(160, "lb"),
  17079. name: "Back",
  17080. image: {
  17081. source: "./media/characters/dawn/back.svg",
  17082. extra: 2112 / 2080,
  17083. bottom: 0.005
  17084. }
  17085. },
  17086. },
  17087. [
  17088. {
  17089. name: "Normal",
  17090. height: math.unit(6 + 7 / 12, "feet"),
  17091. default: true
  17092. },
  17093. ]
  17094. ))
  17095. characterMakers.push(() => makeCharacter(
  17096. { name: "Arador" },
  17097. {
  17098. anthro: {
  17099. height: math.unit(8 + 3 / 12, "feet"),
  17100. weight: math.unit(450, "lb"),
  17101. name: "Anthro",
  17102. image: {
  17103. source: "./media/characters/arador/anthro.svg",
  17104. extra: 1835 / 1718,
  17105. bottom: 0.025
  17106. }
  17107. },
  17108. feral: {
  17109. height: math.unit(4, "feet"),
  17110. weight: math.unit(200, "lb"),
  17111. name: "Feral",
  17112. image: {
  17113. source: "./media/characters/arador/feral.svg",
  17114. extra: 1683 / 1514,
  17115. bottom: 0.07
  17116. }
  17117. },
  17118. },
  17119. [
  17120. {
  17121. name: "Normal",
  17122. height: math.unit(8 + 3 / 12, "feet")
  17123. },
  17124. {
  17125. name: "Macro",
  17126. height: math.unit(82.5, "feet"),
  17127. default: true
  17128. },
  17129. ]
  17130. ))
  17131. characterMakers.push(() => makeCharacter(
  17132. { name: "Dharsi" },
  17133. {
  17134. front: {
  17135. height: math.unit(5 + 10 / 12, "feet"),
  17136. weight: math.unit(125, "lb"),
  17137. name: "Front",
  17138. image: {
  17139. source: "./media/characters/dharsi/front.svg",
  17140. extra: 716 / 630,
  17141. bottom: 0.035
  17142. }
  17143. },
  17144. },
  17145. [
  17146. {
  17147. name: "Nano",
  17148. height: math.unit(100, "nm")
  17149. },
  17150. {
  17151. name: "Micro",
  17152. height: math.unit(2, "inches")
  17153. },
  17154. {
  17155. name: "Normal",
  17156. height: math.unit(5 + 10 / 12, "feet"),
  17157. default: true
  17158. },
  17159. {
  17160. name: "Macro",
  17161. height: math.unit(1000, "feet")
  17162. },
  17163. {
  17164. name: "Megamacro",
  17165. height: math.unit(10, "miles")
  17166. },
  17167. {
  17168. name: "Gigamacro",
  17169. height: math.unit(3000, "miles")
  17170. },
  17171. {
  17172. name: "Teramacro",
  17173. height: math.unit(500000, "miles")
  17174. },
  17175. {
  17176. name: "Teramacro+",
  17177. height: math.unit(30, "galaxies")
  17178. },
  17179. ]
  17180. ))
  17181. characterMakers.push(() => makeCharacter(
  17182. { name: "Deathy" },
  17183. {
  17184. front: {
  17185. height: math.unit(6, "feet"),
  17186. weight: math.unit(150, "lb"),
  17187. name: "Front",
  17188. image: {
  17189. source: "./media/characters/deathy/front.svg",
  17190. extra: 1552 / 1463,
  17191. bottom: 0.025
  17192. }
  17193. },
  17194. side: {
  17195. height: math.unit(6, "feet"),
  17196. weight: math.unit(150, "lb"),
  17197. name: "Side",
  17198. image: {
  17199. source: "./media/characters/deathy/side.svg",
  17200. extra: 1604 / 1455,
  17201. bottom: 0.025
  17202. }
  17203. },
  17204. back: {
  17205. height: math.unit(6, "feet"),
  17206. weight: math.unit(150, "lb"),
  17207. name: "Back",
  17208. image: {
  17209. source: "./media/characters/deathy/back.svg",
  17210. extra: 1580 / 1463,
  17211. bottom: 0.005
  17212. }
  17213. },
  17214. },
  17215. [
  17216. {
  17217. name: "Micro",
  17218. height: math.unit(5, "millimeters")
  17219. },
  17220. {
  17221. name: "Normal",
  17222. height: math.unit(6 + 5 / 12, "feet"),
  17223. default: true
  17224. },
  17225. ]
  17226. ))
  17227. characterMakers.push(() => makeCharacter(
  17228. { name: "Juniper" },
  17229. {
  17230. front: {
  17231. height: math.unit(16, "feet"),
  17232. weight: math.unit(4000, "lb"),
  17233. name: "Front",
  17234. image: {
  17235. source: "./media/characters/juniper/front.svg",
  17236. bottom: 0.04
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Normal",
  17243. height: math.unit(16, "feet"),
  17244. default: true
  17245. },
  17246. ]
  17247. ))
  17248. characterMakers.push(() => makeCharacter(
  17249. { name: "Hipster" },
  17250. {
  17251. front: {
  17252. height: math.unit(6, "feet"),
  17253. weight: math.unit(150, "lb"),
  17254. name: "Front",
  17255. image: {
  17256. source: "./media/characters/hipster/front.svg",
  17257. extra: 1312 / 1209,
  17258. bottom: 0.025
  17259. }
  17260. },
  17261. back: {
  17262. height: math.unit(6, "feet"),
  17263. weight: math.unit(150, "lb"),
  17264. name: "Back",
  17265. image: {
  17266. source: "./media/characters/hipster/back.svg",
  17267. extra: 1281 / 1196,
  17268. bottom: 0.01
  17269. }
  17270. },
  17271. },
  17272. [
  17273. {
  17274. name: "Micro",
  17275. height: math.unit(1, "mm")
  17276. },
  17277. {
  17278. name: "Normal",
  17279. height: math.unit(4, "inches"),
  17280. default: true
  17281. },
  17282. {
  17283. name: "Macro",
  17284. height: math.unit(500, "feet")
  17285. },
  17286. {
  17287. name: "Megamacro",
  17288. height: math.unit(1000, "miles")
  17289. },
  17290. ]
  17291. ))
  17292. characterMakers.push(() => makeCharacter(
  17293. { name: "Tendirmuldr" },
  17294. {
  17295. front: {
  17296. height: math.unit(6, "feet"),
  17297. weight: math.unit(150, "lb"),
  17298. name: "Front",
  17299. image: {
  17300. source: "./media/characters/tendirmuldr/front.svg",
  17301. extra: 1878 / 1772,
  17302. bottom: 0.015
  17303. }
  17304. },
  17305. },
  17306. [
  17307. {
  17308. name: "Megamacro",
  17309. height: math.unit(1500, "miles"),
  17310. default: true
  17311. },
  17312. ]
  17313. ))
  17314. characterMakers.push(() => makeCharacter(
  17315. { name: "Mort" },
  17316. {
  17317. front: {
  17318. height: math.unit(14, "feet"),
  17319. weight: math.unit(12000, "lb"),
  17320. name: "Front",
  17321. image: {
  17322. source: "./media/characters/mort/front.svg",
  17323. extra: 365 / 318,
  17324. bottom: 0.01
  17325. }
  17326. },
  17327. side: {
  17328. height: math.unit(14, "feet"),
  17329. weight: math.unit(12000, "lb"),
  17330. name: "Side",
  17331. image: {
  17332. source: "./media/characters/mort/side.svg",
  17333. extra: 365 / 318,
  17334. bottom: 0.052
  17335. },
  17336. default: true
  17337. },
  17338. back: {
  17339. height: math.unit(14, "feet"),
  17340. weight: math.unit(12000, "lb"),
  17341. name: "Back",
  17342. image: {
  17343. source: "./media/characters/mort/back.svg",
  17344. extra: 371 / 332,
  17345. bottom: 0.18
  17346. }
  17347. },
  17348. },
  17349. [
  17350. {
  17351. name: "Normal",
  17352. height: math.unit(14, "feet"),
  17353. default: true
  17354. },
  17355. ]
  17356. ))
  17357. characterMakers.push(() => makeCharacter(
  17358. { name: "Lycoa" },
  17359. {
  17360. front: {
  17361. height: math.unit(8, "feet"),
  17362. weight: math.unit(1, "ton"),
  17363. name: "Front",
  17364. image: {
  17365. source: "./media/characters/lycoa/front.svg",
  17366. extra: 1875 / 1789,
  17367. bottom: 0.022
  17368. }
  17369. },
  17370. back: {
  17371. height: math.unit(8, "feet"),
  17372. weight: math.unit(1, "ton"),
  17373. name: "Back",
  17374. image: {
  17375. source: "./media/characters/lycoa/back.svg",
  17376. extra: 1835 / 1781,
  17377. bottom: 0.03
  17378. }
  17379. },
  17380. },
  17381. [
  17382. {
  17383. name: "Normal",
  17384. height: math.unit(8, "feet"),
  17385. default: true
  17386. },
  17387. {
  17388. name: "Macro",
  17389. height: math.unit(30, "feet")
  17390. },
  17391. ]
  17392. ))
  17393. characterMakers.push(() => makeCharacter(
  17394. { name: "Naldara" },
  17395. {
  17396. front: {
  17397. height: math.unit(4 + 2 / 12, "feet"),
  17398. weight: math.unit(70, "lb"),
  17399. name: "Front",
  17400. image: {
  17401. source: "./media/characters/naldara/front.svg",
  17402. extra: 841 / 720,
  17403. bottom: 0.04
  17404. }
  17405. },
  17406. },
  17407. [
  17408. {
  17409. name: "Normal",
  17410. height: math.unit(4 + 2 / 12, "feet"),
  17411. default: true
  17412. },
  17413. ]
  17414. ))
  17415. characterMakers.push(() => makeCharacter(
  17416. { name: "Briar" },
  17417. {
  17418. front: {
  17419. height: math.unit(13 + 7 / 12, "feet"),
  17420. weight: math.unit(1500, "lb"),
  17421. name: "Front",
  17422. image: {
  17423. source: "./media/characters/briar/front.svg",
  17424. extra: 626 / 596,
  17425. bottom: 0.08
  17426. }
  17427. },
  17428. },
  17429. [
  17430. {
  17431. name: "Normal",
  17432. height: math.unit(13 + 7 / 12, "feet"),
  17433. default: true
  17434. },
  17435. ]
  17436. ))
  17437. characterMakers.push(() => makeCharacter(
  17438. { name: "Vanguard" },
  17439. {
  17440. side: {
  17441. height: math.unit(10, "feet"),
  17442. weight: math.unit(500, "lb"),
  17443. name: "Side",
  17444. image: {
  17445. source: "./media/characters/vanguard/side.svg",
  17446. extra: 502 / 425,
  17447. bottom: 0.087
  17448. }
  17449. },
  17450. },
  17451. [
  17452. {
  17453. name: "Normal",
  17454. height: math.unit(10, "feet"),
  17455. default: true
  17456. },
  17457. ]
  17458. ))
  17459. characterMakers.push(() => makeCharacter(
  17460. { name: "Artemis" },
  17461. {
  17462. front: {
  17463. height: math.unit(7.5, "feet"),
  17464. weight: math.unit(2, "lb"),
  17465. name: "Front",
  17466. image: {
  17467. source: "./media/characters/artemis/front.svg",
  17468. extra: 1192 / 1075,
  17469. bottom: 0.07
  17470. }
  17471. },
  17472. },
  17473. [
  17474. {
  17475. name: "Normal",
  17476. height: math.unit(7.5, "feet"),
  17477. default: true
  17478. },
  17479. {
  17480. name: "Enlarged",
  17481. height: math.unit(12, "feet")
  17482. },
  17483. ]
  17484. ))
  17485. characterMakers.push(() => makeCharacter(
  17486. { name: "Kira" },
  17487. {
  17488. front: {
  17489. height: math.unit(5 + 3 / 12, "feet"),
  17490. weight: math.unit(160, "lb"),
  17491. name: "Front",
  17492. image: {
  17493. source: "./media/characters/kira/front.svg",
  17494. extra: 906 / 786,
  17495. bottom: 0.01
  17496. }
  17497. },
  17498. back: {
  17499. height: math.unit(5 + 3 / 12, "feet"),
  17500. weight: math.unit(160, "lb"),
  17501. name: "Back",
  17502. image: {
  17503. source: "./media/characters/kira/back.svg",
  17504. extra: 882 / 757,
  17505. bottom: 0.005
  17506. }
  17507. },
  17508. frontDressed: {
  17509. height: math.unit(5 + 3 / 12, "feet"),
  17510. weight: math.unit(160, "lb"),
  17511. name: "Front (Dressed)",
  17512. image: {
  17513. source: "./media/characters/kira/front-dressed.svg",
  17514. extra: 906 / 786,
  17515. bottom: 0.01
  17516. }
  17517. },
  17518. beans: {
  17519. height: math.unit(0.92, "feet"),
  17520. name: "Beans",
  17521. image: {
  17522. source: "./media/characters/kira/beans.svg"
  17523. }
  17524. },
  17525. },
  17526. [
  17527. {
  17528. name: "Normal",
  17529. height: math.unit(5 + 3 / 12, "feet"),
  17530. default: true
  17531. },
  17532. ]
  17533. ))
  17534. characterMakers.push(() => makeCharacter(
  17535. { name: "Scramble" },
  17536. {
  17537. front: {
  17538. height: math.unit(5 + 4 / 12, "feet"),
  17539. weight: math.unit(145, "lb"),
  17540. name: "Front",
  17541. image: {
  17542. source: "./media/characters/scramble/front.svg",
  17543. extra: 763 / 727,
  17544. bottom: 0.05
  17545. }
  17546. },
  17547. back: {
  17548. height: math.unit(5 + 4 / 12, "feet"),
  17549. weight: math.unit(145, "lb"),
  17550. name: "Back",
  17551. image: {
  17552. source: "./media/characters/scramble/back.svg",
  17553. extra: 826 / 737,
  17554. bottom: 0.002
  17555. }
  17556. },
  17557. },
  17558. [
  17559. {
  17560. name: "Normal",
  17561. height: math.unit(5 + 4 / 12, "feet"),
  17562. default: true
  17563. },
  17564. ]
  17565. ))
  17566. characterMakers.push(() => makeCharacter(
  17567. { name: "Biscuit" },
  17568. {
  17569. side: {
  17570. height: math.unit(6 + 2 / 12, "feet"),
  17571. weight: math.unit(190, "lb"),
  17572. name: "Side",
  17573. image: {
  17574. source: "./media/characters/biscuit/side.svg",
  17575. extra: 858 / 791,
  17576. bottom: 0.044
  17577. }
  17578. },
  17579. },
  17580. [
  17581. {
  17582. name: "Normal",
  17583. height: math.unit(6 + 2 / 12, "feet"),
  17584. default: true
  17585. },
  17586. ]
  17587. ))
  17588. characterMakers.push(() => makeCharacter(
  17589. { name: "Poffin" },
  17590. {
  17591. front: {
  17592. height: math.unit(5 + 2 / 12, "feet"),
  17593. weight: math.unit(120, "lb"),
  17594. name: "Front",
  17595. image: {
  17596. source: "./media/characters/poffin/front.svg",
  17597. extra: 786 / 680,
  17598. bottom: 0.005
  17599. }
  17600. },
  17601. },
  17602. [
  17603. {
  17604. name: "Normal",
  17605. height: math.unit(5 + 2 / 12, "feet"),
  17606. default: true
  17607. },
  17608. ]
  17609. ))
  17610. characterMakers.push(() => makeCharacter(
  17611. { name: "Dhari" },
  17612. {
  17613. front: {
  17614. height: math.unit(6 + 3 / 12, "feet"),
  17615. weight: math.unit(519, "lb"),
  17616. name: "Front",
  17617. image: {
  17618. source: "./media/characters/dhari/front.svg",
  17619. extra: 1048 / 946,
  17620. bottom: 0.015
  17621. }
  17622. },
  17623. back: {
  17624. height: math.unit(6 + 3 / 12, "feet"),
  17625. weight: math.unit(519, "lb"),
  17626. name: "Back",
  17627. image: {
  17628. source: "./media/characters/dhari/back.svg",
  17629. extra: 1048 / 931,
  17630. bottom: 0.005
  17631. }
  17632. },
  17633. frontDressed: {
  17634. height: math.unit(6 + 3 / 12, "feet"),
  17635. weight: math.unit(519, "lb"),
  17636. name: "Front (Dressed)",
  17637. image: {
  17638. source: "./media/characters/dhari/front-dressed.svg",
  17639. extra: 1713 / 1546,
  17640. bottom: 0.02
  17641. }
  17642. },
  17643. backDressed: {
  17644. height: math.unit(6 + 3 / 12, "feet"),
  17645. weight: math.unit(519, "lb"),
  17646. name: "Back (Dressed)",
  17647. image: {
  17648. source: "./media/characters/dhari/back-dressed.svg",
  17649. extra: 1699 / 1537,
  17650. bottom: 0.01
  17651. }
  17652. },
  17653. maw: {
  17654. height: math.unit(0.95, "feet"),
  17655. name: "Maw",
  17656. image: {
  17657. source: "./media/characters/dhari/maw.svg"
  17658. }
  17659. },
  17660. wereFront: {
  17661. height: math.unit(12 + 8 / 12, "feet"),
  17662. weight: math.unit(4000, "lb"),
  17663. name: "Front (Were)",
  17664. image: {
  17665. source: "./media/characters/dhari/were-front.svg",
  17666. extra: 1065 / 969,
  17667. bottom: 0.015
  17668. }
  17669. },
  17670. wereBack: {
  17671. height: math.unit(12 + 8 / 12, "feet"),
  17672. weight: math.unit(4000, "lb"),
  17673. name: "Back (Were)",
  17674. image: {
  17675. source: "./media/characters/dhari/were-back.svg",
  17676. extra: 1065 / 969,
  17677. bottom: 0.012
  17678. }
  17679. },
  17680. wereMaw: {
  17681. height: math.unit(0.625, "meters"),
  17682. name: "Maw (Were)",
  17683. image: {
  17684. source: "./media/characters/dhari/were-maw.svg"
  17685. }
  17686. },
  17687. },
  17688. [
  17689. {
  17690. name: "Normal",
  17691. height: math.unit(6 + 3 / 12, "feet"),
  17692. default: true
  17693. },
  17694. ]
  17695. ))
  17696. characterMakers.push(() => makeCharacter(
  17697. { name: "Rena Dyne" },
  17698. {
  17699. anthro: {
  17700. height: math.unit(5 + 7 / 12, "feet"),
  17701. weight: math.unit(175, "lb"),
  17702. name: "Anthro",
  17703. image: {
  17704. source: "./media/characters/rena-dyne/anthro.svg",
  17705. extra: 1849 / 1785,
  17706. bottom: 0.005
  17707. }
  17708. },
  17709. taur: {
  17710. height: math.unit(15 + 6 / 12, "feet"),
  17711. weight: math.unit(8000, "lb"),
  17712. name: "Taur",
  17713. image: {
  17714. source: "./media/characters/rena-dyne/taur.svg",
  17715. extra: 2315 / 2234,
  17716. bottom: 0.033
  17717. }
  17718. },
  17719. },
  17720. [
  17721. {
  17722. name: "Normal",
  17723. height: math.unit(5 + 7 / 12, "feet"),
  17724. default: true
  17725. },
  17726. ]
  17727. ))
  17728. characterMakers.push(() => makeCharacter(
  17729. { name: "Weremeep" },
  17730. {
  17731. front: {
  17732. height: math.unit(8, "feet"),
  17733. weight: math.unit(600, "lb"),
  17734. name: "Front",
  17735. image: {
  17736. source: "./media/characters/weremeep/front.svg",
  17737. extra: 967 / 862,
  17738. bottom: 0.01
  17739. }
  17740. },
  17741. },
  17742. [
  17743. {
  17744. name: "Normal",
  17745. height: math.unit(8, "feet"),
  17746. default: true
  17747. },
  17748. {
  17749. name: "Lorg",
  17750. height: math.unit(12, "feet")
  17751. },
  17752. {
  17753. name: "Oh Lawd She Comin'",
  17754. height: math.unit(20, "feet")
  17755. },
  17756. ]
  17757. ))
  17758. characterMakers.push(() => makeCharacter(
  17759. { name: "Reza" },
  17760. {
  17761. front: {
  17762. height: math.unit(4, "feet"),
  17763. weight: math.unit(90, "lb"),
  17764. name: "Front",
  17765. image: {
  17766. source: "./media/characters/reza/front.svg",
  17767. extra: 1183 / 1111,
  17768. bottom: 0.017
  17769. }
  17770. },
  17771. back: {
  17772. height: math.unit(4, "feet"),
  17773. weight: math.unit(90, "lb"),
  17774. name: "Back",
  17775. image: {
  17776. source: "./media/characters/reza/back.svg",
  17777. extra: 1183 / 1111,
  17778. bottom: 0.01
  17779. }
  17780. },
  17781. },
  17782. [
  17783. {
  17784. name: "Normal",
  17785. height: math.unit(4, "feet"),
  17786. default: true
  17787. },
  17788. ]
  17789. ))
  17790. characterMakers.push(() => makeCharacter(
  17791. { name: "Athea" },
  17792. {
  17793. side: {
  17794. height: math.unit(15, "feet"),
  17795. weight: math.unit(14, "tons"),
  17796. name: "Side",
  17797. image: {
  17798. source: "./media/characters/athea/side.svg",
  17799. extra: 960 / 540,
  17800. bottom: 0.003
  17801. }
  17802. },
  17803. sitting: {
  17804. height: math.unit(6 * 2.85, "feet"),
  17805. weight: math.unit(14, "tons"),
  17806. name: "Sitting",
  17807. image: {
  17808. source: "./media/characters/athea/sitting.svg",
  17809. extra: 621 / 581,
  17810. bottom: 0.075
  17811. }
  17812. },
  17813. maw: {
  17814. height: math.unit(7.59498031496063, "feet"),
  17815. name: "Maw",
  17816. image: {
  17817. source: "./media/characters/athea/maw.svg"
  17818. }
  17819. },
  17820. },
  17821. [
  17822. {
  17823. name: "Lap Cat",
  17824. height: math.unit(2.5, "feet")
  17825. },
  17826. {
  17827. name: "Minimacro",
  17828. height: math.unit(15, "feet"),
  17829. default: true
  17830. },
  17831. {
  17832. name: "Macro",
  17833. height: math.unit(120, "feet")
  17834. },
  17835. {
  17836. name: "Macro+",
  17837. height: math.unit(640, "feet")
  17838. },
  17839. {
  17840. name: "Colossus",
  17841. height: math.unit(2.2, "miles")
  17842. },
  17843. ]
  17844. ))
  17845. characterMakers.push(() => makeCharacter(
  17846. { name: "Seroko" },
  17847. {
  17848. front: {
  17849. height: math.unit(8 + 8 / 12, "feet"),
  17850. weight: math.unit(130, "kg"),
  17851. name: "Front",
  17852. image: {
  17853. source: "./media/characters/seroko/front.svg",
  17854. extra: 1385 / 1280,
  17855. bottom: 0.025
  17856. }
  17857. },
  17858. back: {
  17859. height: math.unit(8 + 8 / 12, "feet"),
  17860. weight: math.unit(130, "kg"),
  17861. name: "Back",
  17862. image: {
  17863. source: "./media/characters/seroko/back.svg",
  17864. extra: 1369 / 1238,
  17865. bottom: 0.018
  17866. }
  17867. },
  17868. frontDressed: {
  17869. height: math.unit(8 + 8 / 12, "feet"),
  17870. weight: math.unit(130, "kg"),
  17871. name: "Front (Dressed)",
  17872. image: {
  17873. source: "./media/characters/seroko/front-dressed.svg",
  17874. extra: 1366 / 1275,
  17875. bottom: 0.03
  17876. }
  17877. },
  17878. },
  17879. [
  17880. {
  17881. name: "Normal",
  17882. height: math.unit(8 + 8 / 12, "feet"),
  17883. default: true
  17884. },
  17885. ]
  17886. ))
  17887. characterMakers.push(() => makeCharacter(
  17888. { name: "Quatzi" },
  17889. {
  17890. front: {
  17891. height: math.unit(5.5, "feet"),
  17892. weight: math.unit(160, "lb"),
  17893. name: "Front",
  17894. image: {
  17895. source: "./media/characters/quatzi/front.svg",
  17896. extra: 2346 / 2242,
  17897. bottom: 0.015
  17898. }
  17899. },
  17900. },
  17901. [
  17902. {
  17903. name: "Normal",
  17904. height: math.unit(5.5, "feet"),
  17905. default: true
  17906. },
  17907. {
  17908. name: "Big",
  17909. height: math.unit(7.7, "feet")
  17910. },
  17911. ]
  17912. ))
  17913. characterMakers.push(() => makeCharacter(
  17914. { name: "Sen" },
  17915. {
  17916. front: {
  17917. height: math.unit(5 + 11 / 12, "feet"),
  17918. weight: math.unit(180, "lb"),
  17919. name: "Front",
  17920. image: {
  17921. source: "./media/characters/sen/front.svg",
  17922. extra: 1321 / 1254,
  17923. bottom: 0.015
  17924. }
  17925. },
  17926. side: {
  17927. height: math.unit(5 + 11 / 12, "feet"),
  17928. weight: math.unit(180, "lb"),
  17929. name: "Side",
  17930. image: {
  17931. source: "./media/characters/sen/side.svg",
  17932. extra: 1321 / 1254,
  17933. bottom: 0.007
  17934. }
  17935. },
  17936. back: {
  17937. height: math.unit(5 + 11 / 12, "feet"),
  17938. weight: math.unit(180, "lb"),
  17939. name: "Back",
  17940. image: {
  17941. source: "./media/characters/sen/back.svg",
  17942. extra: 1321 / 1254
  17943. }
  17944. },
  17945. },
  17946. [
  17947. {
  17948. name: "Normal",
  17949. height: math.unit(5 + 11 / 12, "feet"),
  17950. default: true
  17951. },
  17952. ]
  17953. ))
  17954. characterMakers.push(() => makeCharacter(
  17955. { name: "Fruity" },
  17956. {
  17957. front: {
  17958. height: math.unit(166.6, "cm"),
  17959. weight: math.unit(66.6, "kg"),
  17960. name: "Front",
  17961. image: {
  17962. source: "./media/characters/fruity/front.svg",
  17963. extra: 1510 / 1386,
  17964. bottom: 0.04
  17965. }
  17966. },
  17967. back: {
  17968. height: math.unit(166.6, "cm"),
  17969. weight: math.unit(66.6, "lb"),
  17970. name: "Back",
  17971. image: {
  17972. source: "./media/characters/fruity/back.svg",
  17973. extra: 1563 / 1435,
  17974. bottom: 0.005
  17975. }
  17976. },
  17977. },
  17978. [
  17979. {
  17980. name: "Normal",
  17981. height: math.unit(166.6, "cm"),
  17982. default: true
  17983. },
  17984. {
  17985. name: "Demonic",
  17986. height: math.unit(166.6, "feet")
  17987. },
  17988. ]
  17989. ))
  17990. characterMakers.push(() => makeCharacter(
  17991. { name: "Zost" },
  17992. {
  17993. side: {
  17994. height: math.unit(10, "feet"),
  17995. weight: math.unit(500, "lb"),
  17996. name: "Side",
  17997. image: {
  17998. source: "./media/characters/zost/side.svg",
  17999. extra: 966 / 880,
  18000. bottom: 0.075
  18001. }
  18002. },
  18003. mawFront: {
  18004. height: math.unit(1.08, "meters"),
  18005. name: "Maw (Front)",
  18006. image: {
  18007. source: "./media/characters/zost/maw-front.svg"
  18008. }
  18009. },
  18010. mawSide: {
  18011. height: math.unit(2.66, "feet"),
  18012. name: "Maw (Side)",
  18013. image: {
  18014. source: "./media/characters/zost/maw-side.svg"
  18015. }
  18016. },
  18017. },
  18018. [
  18019. {
  18020. name: "Normal",
  18021. height: math.unit(10, "feet"),
  18022. default: true
  18023. },
  18024. ]
  18025. ))
  18026. characterMakers.push(() => makeCharacter(
  18027. { name: "Luci" },
  18028. {
  18029. front: {
  18030. height: math.unit(5 + 4 / 12, "feet"),
  18031. weight: math.unit(120, "lb"),
  18032. name: "Front",
  18033. image: {
  18034. source: "./media/characters/luci/front.svg",
  18035. extra: 1985 / 1884,
  18036. bottom: 0.04
  18037. }
  18038. },
  18039. back: {
  18040. height: math.unit(5 + 4 / 12, "feet"),
  18041. weight: math.unit(120, "lb"),
  18042. name: "Back",
  18043. image: {
  18044. source: "./media/characters/luci/back.svg",
  18045. extra: 1892 / 1791,
  18046. bottom: 0.002
  18047. }
  18048. },
  18049. },
  18050. [
  18051. {
  18052. name: "Normal",
  18053. height: math.unit(5 + 4 / 12, "feet"),
  18054. default: true
  18055. },
  18056. ]
  18057. ))
  18058. characterMakers.push(() => makeCharacter(
  18059. { name: "2th" },
  18060. {
  18061. front: {
  18062. height: math.unit(1500, "feet"),
  18063. weight: math.unit(3.8e6, "tons"),
  18064. name: "Front",
  18065. image: {
  18066. source: "./media/characters/2th/front.svg",
  18067. extra: 3489 / 3350,
  18068. bottom: 0.1
  18069. }
  18070. },
  18071. foot: {
  18072. height: math.unit(461, "feet"),
  18073. name: "Foot",
  18074. image: {
  18075. source: "./media/characters/2th/foot.svg"
  18076. }
  18077. },
  18078. },
  18079. [
  18080. {
  18081. name: "\"Micro\"",
  18082. height: math.unit(15 + 7 / 12, "feet")
  18083. },
  18084. {
  18085. name: "Normal",
  18086. height: math.unit(1500, "feet"),
  18087. default: true
  18088. },
  18089. {
  18090. name: "Macro",
  18091. height: math.unit(5000, "feet")
  18092. },
  18093. {
  18094. name: "Megamacro",
  18095. height: math.unit(15, "miles")
  18096. },
  18097. {
  18098. name: "Gigamacro",
  18099. height: math.unit(4000, "miles")
  18100. },
  18101. {
  18102. name: "Galactic",
  18103. height: math.unit(50, "AU")
  18104. },
  18105. ]
  18106. ))
  18107. characterMakers.push(() => makeCharacter(
  18108. { name: "Amethyst" },
  18109. {
  18110. front: {
  18111. height: math.unit(5 + 6 / 12, "feet"),
  18112. weight: math.unit(220, "lb"),
  18113. name: "Front",
  18114. image: {
  18115. source: "./media/characters/amethyst/front.svg",
  18116. extra: 2078 / 2040,
  18117. bottom: 0.045
  18118. }
  18119. },
  18120. back: {
  18121. height: math.unit(5 + 6 / 12, "feet"),
  18122. weight: math.unit(220, "lb"),
  18123. name: "Back",
  18124. image: {
  18125. source: "./media/characters/amethyst/back.svg",
  18126. extra: 2021 / 1989,
  18127. bottom: 0.02
  18128. }
  18129. },
  18130. },
  18131. [
  18132. {
  18133. name: "Normal",
  18134. height: math.unit(5 + 6 / 12, "feet"),
  18135. default: true
  18136. },
  18137. ]
  18138. ))
  18139. characterMakers.push(() => makeCharacter(
  18140. { name: "Yumi Akiyama" },
  18141. {
  18142. front: {
  18143. height: math.unit(4 + 11 / 12, "feet"),
  18144. weight: math.unit(120, "lb"),
  18145. name: "Front",
  18146. image: {
  18147. source: "./media/characters/yumi-akiyama/front.svg",
  18148. extra: 1327 / 1235,
  18149. bottom: 0.02
  18150. }
  18151. },
  18152. back: {
  18153. height: math.unit(4 + 11 / 12, "feet"),
  18154. weight: math.unit(120, "lb"),
  18155. name: "Back",
  18156. image: {
  18157. source: "./media/characters/yumi-akiyama/back.svg",
  18158. extra: 1287 / 1245,
  18159. bottom: 0.002
  18160. }
  18161. },
  18162. },
  18163. [
  18164. {
  18165. name: "Galactic",
  18166. height: math.unit(50, "galaxies"),
  18167. default: true
  18168. },
  18169. {
  18170. name: "Universal",
  18171. height: math.unit(100, "universes")
  18172. },
  18173. ]
  18174. ))
  18175. characterMakers.push(() => makeCharacter(
  18176. { name: "Rifter Yrmori" },
  18177. {
  18178. front: {
  18179. height: math.unit(8, "feet"),
  18180. weight: math.unit(500, "lb"),
  18181. name: "Front",
  18182. image: {
  18183. source: "./media/characters/rifter-yrmori/front.svg",
  18184. extra: 1180 / 1125,
  18185. bottom: 0.02
  18186. }
  18187. },
  18188. back: {
  18189. height: math.unit(8, "feet"),
  18190. weight: math.unit(500, "lb"),
  18191. name: "Back",
  18192. image: {
  18193. source: "./media/characters/rifter-yrmori/back.svg",
  18194. extra: 1190 / 1145,
  18195. bottom: 0.001
  18196. }
  18197. },
  18198. wings: {
  18199. height: math.unit(7.75, "feet"),
  18200. weight: math.unit(500, "lb"),
  18201. name: "Wings",
  18202. image: {
  18203. source: "./media/characters/rifter-yrmori/wings.svg",
  18204. extra: 1357 / 1285
  18205. }
  18206. },
  18207. maw: {
  18208. height: math.unit(0.8, "feet"),
  18209. name: "Maw",
  18210. image: {
  18211. source: "./media/characters/rifter-yrmori/maw.svg"
  18212. }
  18213. },
  18214. },
  18215. [
  18216. {
  18217. name: "Normal",
  18218. height: math.unit(8, "feet"),
  18219. default: true
  18220. },
  18221. {
  18222. name: "Macro",
  18223. height: math.unit(42, "meters")
  18224. },
  18225. ]
  18226. ))
  18227. characterMakers.push(() => makeCharacter(
  18228. { name: "Tahajin" },
  18229. {
  18230. were: {
  18231. height: math.unit(25 + 6 / 12, "feet"),
  18232. weight: math.unit(10000, "lb"),
  18233. name: "Were",
  18234. image: {
  18235. source: "./media/characters/tahajin/were.svg",
  18236. extra: 801 / 770,
  18237. bottom: 0.042
  18238. }
  18239. },
  18240. aquatic: {
  18241. height: math.unit(6 + 4 / 12, "feet"),
  18242. weight: math.unit(160, "lb"),
  18243. name: "Aquatic",
  18244. image: {
  18245. source: "./media/characters/tahajin/aquatic.svg",
  18246. extra: 572 / 542,
  18247. bottom: 0.04
  18248. }
  18249. },
  18250. chow: {
  18251. height: math.unit(8 + 11 / 12, "feet"),
  18252. weight: math.unit(450, "lb"),
  18253. name: "Chow",
  18254. image: {
  18255. source: "./media/characters/tahajin/chow.svg",
  18256. extra: 660 / 640,
  18257. bottom: 0.015
  18258. }
  18259. },
  18260. demiNaga: {
  18261. height: math.unit(6 + 8 / 12, "feet"),
  18262. weight: math.unit(300, "lb"),
  18263. name: "Demi Naga",
  18264. image: {
  18265. source: "./media/characters/tahajin/demi-naga.svg",
  18266. extra: 643 / 615,
  18267. bottom: 0.1
  18268. }
  18269. },
  18270. data: {
  18271. height: math.unit(5, "inches"),
  18272. weight: math.unit(0.1, "lb"),
  18273. name: "Data",
  18274. image: {
  18275. source: "./media/characters/tahajin/data.svg"
  18276. }
  18277. },
  18278. fluu: {
  18279. height: math.unit(5 + 7 / 12, "feet"),
  18280. weight: math.unit(140, "lb"),
  18281. name: "Fluu",
  18282. image: {
  18283. source: "./media/characters/tahajin/fluu.svg",
  18284. extra: 628 / 592,
  18285. bottom: 0.02
  18286. }
  18287. },
  18288. starWarrior: {
  18289. height: math.unit(4 + 5 / 12, "feet"),
  18290. weight: math.unit(50, "lb"),
  18291. name: "Star Warrior",
  18292. image: {
  18293. source: "./media/characters/tahajin/star-warrior.svg"
  18294. }
  18295. },
  18296. },
  18297. [
  18298. {
  18299. name: "Normal",
  18300. height: math.unit(25 + 6 / 12, "feet"),
  18301. default: true
  18302. },
  18303. ]
  18304. ))
  18305. characterMakers.push(() => makeCharacter(
  18306. { name: "Gabira" },
  18307. {
  18308. front: {
  18309. height: math.unit(8, "feet"),
  18310. weight: math.unit(350, "lb"),
  18311. name: "Front",
  18312. image: {
  18313. source: "./media/characters/gabira/front.svg",
  18314. extra: 608 / 580,
  18315. bottom: 0.03
  18316. }
  18317. },
  18318. back: {
  18319. height: math.unit(8, "feet"),
  18320. weight: math.unit(350, "lb"),
  18321. name: "Back",
  18322. image: {
  18323. source: "./media/characters/gabira/back.svg",
  18324. extra: 608 / 580,
  18325. bottom: 0.03
  18326. }
  18327. },
  18328. },
  18329. [
  18330. {
  18331. name: "Normal",
  18332. height: math.unit(8, "feet"),
  18333. default: true
  18334. },
  18335. ]
  18336. ))
  18337. characterMakers.push(() => makeCharacter(
  18338. { name: "Sasha Katraine" },
  18339. {
  18340. front: {
  18341. height: math.unit(5 + 3 / 12, "feet"),
  18342. weight: math.unit(137, "lb"),
  18343. name: "Front",
  18344. image: {
  18345. source: "./media/characters/sasha-katraine/front.svg",
  18346. bottom: 0.045
  18347. }
  18348. },
  18349. },
  18350. [
  18351. {
  18352. name: "Micro",
  18353. height: math.unit(5, "inches")
  18354. },
  18355. {
  18356. name: "Normal",
  18357. height: math.unit(5 + 3 / 12, "feet"),
  18358. default: true
  18359. },
  18360. ]
  18361. ))
  18362. characterMakers.push(() => makeCharacter(
  18363. { name: "Der" },
  18364. {
  18365. side: {
  18366. height: math.unit(4, "inches"),
  18367. weight: math.unit(200, "grams"),
  18368. name: "Side",
  18369. image: {
  18370. source: "./media/characters/der/side.svg",
  18371. extra: 719 / 400,
  18372. bottom: 30.6 / 749.9187
  18373. }
  18374. },
  18375. },
  18376. [
  18377. {
  18378. name: "Micro",
  18379. height: math.unit(4, "inches"),
  18380. default: true
  18381. },
  18382. ]
  18383. ))
  18384. characterMakers.push(() => makeCharacter(
  18385. { name: "Fixerdragon" },
  18386. {
  18387. side: {
  18388. height: math.unit(30, "meters"),
  18389. weight: math.unit(700, "tonnes"),
  18390. name: "Side",
  18391. image: {
  18392. source: "./media/characters/fixerdragon/side.svg",
  18393. extra: (1293.0514-116.03)/1106.86,
  18394. bottom: 116.03/1293.0514
  18395. }
  18396. },
  18397. },
  18398. [
  18399. {
  18400. name: "Planck",
  18401. height: math.unit(1.6e-35, "meters")
  18402. },
  18403. {
  18404. name: "Micro",
  18405. height: math.unit(0.4, "meters")
  18406. },
  18407. {
  18408. name: "Normal",
  18409. height: math.unit(30, "meters"),
  18410. default: true
  18411. },
  18412. {
  18413. name: "Megamacro",
  18414. height: math.unit(1.2, "megameters")
  18415. },
  18416. {
  18417. name: "Teramacro",
  18418. height: math.unit(130, "terameters")
  18419. },
  18420. {
  18421. name: "Yottamacro",
  18422. height: math.unit(6200, "yottameters")
  18423. },
  18424. ]
  18425. ));
  18426. characterMakers.push(() => makeCharacter(
  18427. { name: "Kite" },
  18428. {
  18429. front: {
  18430. height: math.unit(8, "feet"),
  18431. weight: math.unit(250, "lb"),
  18432. name: "Front",
  18433. image: {
  18434. source: "./media/characters/kite/front.svg",
  18435. extra: 2796/2659,
  18436. bottom: 0.002
  18437. }
  18438. },
  18439. },
  18440. [
  18441. {
  18442. name: "Normal",
  18443. height: math.unit(8, "feet"),
  18444. default: true
  18445. },
  18446. {
  18447. name: "Macro",
  18448. height: math.unit(360, "feet")
  18449. },
  18450. {
  18451. name: "Megamacro",
  18452. height: math.unit(1500, "feet")
  18453. },
  18454. ]
  18455. ))
  18456. characterMakers.push(() => makeCharacter(
  18457. { name: "Poojawa Vynar" },
  18458. {
  18459. front: {
  18460. height: math.unit(5 + 10/12, "feet"),
  18461. weight: math.unit(150, "lb"),
  18462. name: "Front",
  18463. image: {
  18464. source: "./media/characters/poojawa-vynar/front.svg",
  18465. extra: (1506.1547-55) / 1356.6,
  18466. bottom: 55/1506.1547
  18467. }
  18468. },
  18469. frontTailless: {
  18470. height: math.unit(5 + 10/12, "feet"),
  18471. weight: math.unit(150, "lb"),
  18472. name: "Front (Tailless)",
  18473. image: {
  18474. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18475. extra: (1506.1547-55) / 1356.6,
  18476. bottom: 55/1506.1547
  18477. }
  18478. },
  18479. },
  18480. [
  18481. {
  18482. name: "Normal",
  18483. height: math.unit(5 + 10/12, "feet"),
  18484. default: true
  18485. },
  18486. ]
  18487. ))
  18488. characterMakers.push(() => makeCharacter(
  18489. { name: "Violette" },
  18490. {
  18491. front: {
  18492. height: math.unit(293, "meters"),
  18493. weight: math.unit(70400, "tons"),
  18494. name: "Front",
  18495. image: {
  18496. source: "./media/characters/violette/front.svg",
  18497. extra: 1227/1180,
  18498. bottom: 0.005
  18499. }
  18500. },
  18501. back: {
  18502. height: math.unit(293, "meters"),
  18503. weight: math.unit(70400, "tons"),
  18504. name: "Back",
  18505. image: {
  18506. source: "./media/characters/violette/back.svg",
  18507. extra: 1227/1180,
  18508. bottom: 0.005
  18509. }
  18510. },
  18511. },
  18512. [
  18513. {
  18514. name: "Macro",
  18515. height: math.unit(293, "meters"),
  18516. default: true
  18517. },
  18518. ]
  18519. ))
  18520. characterMakers.push(() => makeCharacter(
  18521. { name: "Alessandra" },
  18522. {
  18523. front: {
  18524. height: math.unit(1050, "feet"),
  18525. weight: math.unit(200000, "tons"),
  18526. name: "Front",
  18527. image: {
  18528. source: "./media/characters/alessandra/front.svg",
  18529. extra: 960/912,
  18530. bottom: 0.06
  18531. }
  18532. },
  18533. },
  18534. [
  18535. {
  18536. name: "Macro",
  18537. height: math.unit(1050, "feet")
  18538. },
  18539. {
  18540. name: "Macro+",
  18541. height: math.unit(900, "meters"),
  18542. default: true
  18543. },
  18544. ]
  18545. ))
  18546. characterMakers.push(() => makeCharacter(
  18547. { name: "Person", species: "Catdragon" },
  18548. {
  18549. front: {
  18550. height: math.unit(5, "feet"),
  18551. weight: math.unit(187, "lb"),
  18552. name: "Front",
  18553. image: {
  18554. source: "./media/characters/person/front.svg",
  18555. extra: 3087/2945,
  18556. bottom: 91/3181
  18557. }
  18558. },
  18559. },
  18560. [
  18561. {
  18562. name: "Micro",
  18563. height: math.unit(3, "inches")
  18564. },
  18565. {
  18566. name: "Normal",
  18567. height: math.unit(5, "feet"),
  18568. default: true
  18569. },
  18570. {
  18571. name: "Macro",
  18572. height: math.unit(90, "feet")
  18573. },
  18574. {
  18575. name: "Max Size",
  18576. height: math.unit(280, "feet")
  18577. },
  18578. ]
  18579. ))
  18580. characterMakers.push(() => makeCharacter(
  18581. { name: "Ty" },
  18582. {
  18583. front: {
  18584. height: math.unit(4.5, "meters"),
  18585. weight: math.unit(3200, "lb"),
  18586. name: "Front",
  18587. image: {
  18588. source: "./media/characters/ty/front.svg",
  18589. extra: 1038/960,
  18590. bottom: 31.156/1068
  18591. }
  18592. },
  18593. back: {
  18594. height: math.unit(4.5, "meters"),
  18595. weight: math.unit(3200, "lb"),
  18596. name: "Back",
  18597. image: {
  18598. source: "./media/characters/ty/back.svg",
  18599. extra: 1044/966,
  18600. bottom: 7.48/1049
  18601. }
  18602. },
  18603. },
  18604. [
  18605. {
  18606. name: "Normal",
  18607. height: math.unit(4.5, "meters"),
  18608. default: true
  18609. },
  18610. ]
  18611. ))
  18612. characterMakers.push(() => makeCharacter(
  18613. { name: "Rocky" },
  18614. {
  18615. front: {
  18616. height: math.unit(5 + 4/12, "feet"),
  18617. weight: math.unit(115, "lb"),
  18618. name: "Front",
  18619. image: {
  18620. source: "./media/characters/rocky/front.svg",
  18621. extra: 1012/975,
  18622. bottom: 54/1066
  18623. }
  18624. },
  18625. },
  18626. [
  18627. {
  18628. name: "Normal",
  18629. height: math.unit(5 + 4/12, "feet"),
  18630. default: true
  18631. },
  18632. ]
  18633. ))
  18634. characterMakers.push(() => makeCharacter(
  18635. { name: "Ruin" },
  18636. {
  18637. upright: {
  18638. height: math.unit(6, "meters"),
  18639. weight: math.unit(4000, "kg"),
  18640. name: "Upright",
  18641. image: {
  18642. source: "./media/characters/ruin/upright.svg",
  18643. extra: 668/661,
  18644. bottom: 42/799.8396
  18645. }
  18646. },
  18647. },
  18648. [
  18649. {
  18650. name: "Normal",
  18651. height: math.unit(6, "meters")
  18652. },
  18653. ]
  18654. ))
  18655. characterMakers.push(() => makeCharacter(
  18656. { name: "Robin" },
  18657. {
  18658. front: {
  18659. height: math.unit(5, "feet"),
  18660. weight: math.unit(106, "lb"),
  18661. name: "Front",
  18662. image: {
  18663. source: "./media/characters/robin/front.svg",
  18664. extra: 862/799,
  18665. bottom: 42.4/914.8856
  18666. }
  18667. },
  18668. },
  18669. [
  18670. {
  18671. name: "Normal",
  18672. height: math.unit(5, "feet"),
  18673. default: true
  18674. },
  18675. ]
  18676. ))
  18677. characterMakers.push(() => makeCharacter(
  18678. { name: "Saian" },
  18679. {
  18680. side: {
  18681. height: math.unit(3, "feet"),
  18682. weight: math.unit(225, "lb"),
  18683. name: "Side",
  18684. image: {
  18685. source: "./media/characters/saian/side.svg",
  18686. extra: 566/356,
  18687. bottom: 79.7/643
  18688. }
  18689. },
  18690. maw: {
  18691. height: math.unit(2.85, "feet"),
  18692. name: "Maw",
  18693. image: {
  18694. source: "./media/characters/saian/maw.svg"
  18695. }
  18696. },
  18697. },
  18698. [
  18699. {
  18700. name: "Normal",
  18701. height: math.unit(3, "feet"),
  18702. default: true
  18703. },
  18704. ]
  18705. ))
  18706. characterMakers.push(() => makeCharacter(
  18707. { name: "Equus Silvermane" },
  18708. {
  18709. side: {
  18710. height: math.unit(8, "feet"),
  18711. weight: math.unit(300, "lb"),
  18712. name: "Side",
  18713. image: {
  18714. source: "./media/characters/equus-silvermane/side.svg",
  18715. extra: 2176/2050,
  18716. bottom: 65.7/2245
  18717. }
  18718. },
  18719. front: {
  18720. height: math.unit(8, "feet"),
  18721. weight: math.unit(300, "lb"),
  18722. name: "Front",
  18723. image: {
  18724. source: "./media/characters/equus-silvermane/front.svg",
  18725. extra: 4633/4400,
  18726. bottom: 71.3/4706.915
  18727. }
  18728. },
  18729. sideStepping: {
  18730. height: math.unit(8, "feet"),
  18731. weight: math.unit(300, "lb"),
  18732. name: "Side (Stepping)",
  18733. image: {
  18734. source: "./media/characters/equus-silvermane/side-stepping.svg",
  18735. extra: 1968/1860,
  18736. bottom: 16.4/1989
  18737. }
  18738. },
  18739. },
  18740. [
  18741. {
  18742. name: "Normal",
  18743. height: math.unit(8, "feet")
  18744. },
  18745. {
  18746. name: "Minimacro",
  18747. height: math.unit(75, "feet"),
  18748. default: true
  18749. },
  18750. {
  18751. name: "Macro",
  18752. height: math.unit(150, "feet")
  18753. },
  18754. {
  18755. name: "Macro+",
  18756. height: math.unit(1000, "feet")
  18757. },
  18758. {
  18759. name: "Megamacro",
  18760. height: math.unit(1, "mile")
  18761. },
  18762. ]
  18763. ))
  18764. characterMakers.push(() => makeCharacter(
  18765. { name: "Windar" },
  18766. {
  18767. side: {
  18768. height: math.unit(20, "feet"),
  18769. weight: math.unit(30000, "kg"),
  18770. name: "Side",
  18771. image: {
  18772. source: "./media/characters/windar/side.svg",
  18773. extra: 1491/1248,
  18774. bottom: 82.56/1568
  18775. }
  18776. },
  18777. },
  18778. [
  18779. {
  18780. name: "Normal",
  18781. height: math.unit(20, "feet"),
  18782. default: true
  18783. },
  18784. ]
  18785. ))
  18786. characterMakers.push(() => makeCharacter(
  18787. { name: "Melody" },
  18788. {
  18789. side: {
  18790. height: math.unit(15.66, "feet"),
  18791. weight: math.unit(150, "lb"),
  18792. name: "Side",
  18793. image: {
  18794. source: "./media/characters/melody/side.svg",
  18795. extra: 1097/944,
  18796. bottom: 11.8/1109
  18797. }
  18798. },
  18799. sideOutfit: {
  18800. height: math.unit(15.66, "feet"),
  18801. weight: math.unit(150, "lb"),
  18802. name: "Side (Outfit)",
  18803. image: {
  18804. source: "./media/characters/melody/side-outfit.svg",
  18805. extra: 1097/944,
  18806. bottom: 11.8/1109
  18807. }
  18808. },
  18809. },
  18810. [
  18811. {
  18812. name: "Normal",
  18813. height: math.unit(15.66, "feet"),
  18814. default: true
  18815. },
  18816. ]
  18817. ))
  18818. characterMakers.push(() => makeCharacter(
  18819. { name: "Windera" },
  18820. {
  18821. front: {
  18822. height: math.unit(8, "feet"),
  18823. weight: math.unit(325, "lb"),
  18824. name: "Front",
  18825. image: {
  18826. source: "./media/characters/windera/front.svg",
  18827. extra: 3180/2845,
  18828. bottom: 178/3365
  18829. }
  18830. },
  18831. },
  18832. [
  18833. {
  18834. name: "Normal",
  18835. height: math.unit(8, "feet"),
  18836. default: true
  18837. },
  18838. ]
  18839. ))
  18840. characterMakers.push(() => makeCharacter(
  18841. { name: "Sonear" },
  18842. {
  18843. front: {
  18844. height: math.unit(28.75, "feet"),
  18845. weight: math.unit(2000, "kg"),
  18846. name: "Front",
  18847. image: {
  18848. source: "./media/characters/sonear/front.svg",
  18849. extra: 1041.1/964.9,
  18850. bottom: 53.7/1096.6
  18851. }
  18852. },
  18853. },
  18854. [
  18855. {
  18856. name: "Normal",
  18857. height: math.unit(28.75, "feet"),
  18858. default: true
  18859. },
  18860. ]
  18861. ))
  18862. characterMakers.push(() => makeCharacter(
  18863. { name: "Kanara" },
  18864. {
  18865. side: {
  18866. height: math.unit(25.5, "feet"),
  18867. weight: math.unit(23000, "kg"),
  18868. name: "Side",
  18869. image: {
  18870. source: "./media/characters/kanara/side.svg"
  18871. }
  18872. },
  18873. },
  18874. [
  18875. {
  18876. name: "Normal",
  18877. height: math.unit(25.5, "feet"),
  18878. default: true
  18879. },
  18880. ]
  18881. ))
  18882. characterMakers.push(() => makeCharacter(
  18883. { name: "Ereus" },
  18884. {
  18885. side: {
  18886. height: math.unit(10, "feet"),
  18887. weight: math.unit(1000, "kg"),
  18888. name: "Side",
  18889. image: {
  18890. source: "./media/characters/ereus/side.svg",
  18891. extra: 1157/959,
  18892. bottom: 153/1312.5
  18893. }
  18894. },
  18895. },
  18896. [
  18897. {
  18898. name: "Normal",
  18899. height: math.unit(10, "feet"),
  18900. default: true
  18901. },
  18902. ]
  18903. ))
  18904. characterMakers.push(() => makeCharacter(
  18905. { name: "E-ter" },
  18906. {
  18907. side: {
  18908. height: math.unit(4.5, "feet"),
  18909. weight: math.unit(500, "lb"),
  18910. name: "Side",
  18911. image: {
  18912. source: "./media/characters/e-ter/side.svg",
  18913. extra: 1550/1248,
  18914. bottom: 146/1694
  18915. }
  18916. },
  18917. },
  18918. [
  18919. {
  18920. name: "Normal",
  18921. height: math.unit(4.5, "feet"),
  18922. default: true
  18923. },
  18924. ]
  18925. ))
  18926. characterMakers.push(() => makeCharacter(
  18927. { name: "Yamie" },
  18928. {
  18929. side: {
  18930. height: math.unit(9.7, "feet"),
  18931. weight: math.unit(4000, "kg"),
  18932. name: "Side",
  18933. image: {
  18934. source: "./media/characters/yamie/side.svg"
  18935. }
  18936. },
  18937. },
  18938. [
  18939. {
  18940. name: "Normal",
  18941. height: math.unit(9.7, "feet"),
  18942. default: true
  18943. },
  18944. ]
  18945. ))
  18946. characterMakers.push(() => makeCharacter(
  18947. { name: "Anders" },
  18948. {
  18949. front: {
  18950. height: math.unit(50, "feet"),
  18951. weight: math.unit(50000, "kg"),
  18952. name: "Front",
  18953. image: {
  18954. source: "./media/characters/anders/front.svg",
  18955. extra: 570/539,
  18956. bottom: 14.7/586.7
  18957. }
  18958. },
  18959. },
  18960. [
  18961. {
  18962. name: "Large",
  18963. height: math.unit(50, "feet")
  18964. },
  18965. {
  18966. name: "Macro",
  18967. height: math.unit(2000, "feet"),
  18968. default: true
  18969. },
  18970. {
  18971. name: "Megamacro",
  18972. height: math.unit(12, "miles")
  18973. },
  18974. ]
  18975. ))
  18976. characterMakers.push(() => makeCharacter(
  18977. { name: "Reban" },
  18978. {
  18979. front: {
  18980. height: math.unit(7 + 2/12, "feet"),
  18981. weight: math.unit(300, "lb"),
  18982. name: "Front",
  18983. image: {
  18984. source: "./media/characters/reban/front.svg",
  18985. extra: 516/487,
  18986. bottom: 42.82/558.356
  18987. }
  18988. },
  18989. dick: {
  18990. height: math.unit(7/5, "feet"),
  18991. name: "Dick",
  18992. image: {
  18993. source: "./media/characters/reban/dick.svg"
  18994. }
  18995. },
  18996. },
  18997. [
  18998. {
  18999. name: "Natural Height",
  19000. height: math.unit(7 + 2/12, "feet")
  19001. },
  19002. {
  19003. name: "Macro",
  19004. height: math.unit(500, "feet"),
  19005. default: true
  19006. },
  19007. {
  19008. name: "Canon Height",
  19009. height: math.unit(50, "AU")
  19010. },
  19011. ]
  19012. ))
  19013. characterMakers.push(() => makeCharacter(
  19014. { name: "Terrance Keayes" },
  19015. {
  19016. front: {
  19017. height: math.unit(6, "feet"),
  19018. weight: math.unit(150, "lb"),
  19019. name: "Front",
  19020. image: {
  19021. source: "./media/characters/terrance-keayes/front.svg",
  19022. extra: 1.005,
  19023. bottom: 151/1615
  19024. }
  19025. },
  19026. side: {
  19027. height: math.unit(6, "feet"),
  19028. weight: math.unit(150, "lb"),
  19029. name: "Side",
  19030. image: {
  19031. source: "./media/characters/terrance-keayes/side.svg",
  19032. extra: 1.005,
  19033. bottom: 129.4/1544
  19034. }
  19035. },
  19036. back: {
  19037. height: math.unit(6, "feet"),
  19038. weight: math.unit(150, "lb"),
  19039. name: "Back",
  19040. image: {
  19041. source: "./media/characters/terrance-keayes/back.svg",
  19042. extra: 1.005,
  19043. bottom: 58.4/1557.3
  19044. }
  19045. },
  19046. dick: {
  19047. height: math.unit(6*0.208, "feet"),
  19048. name: "Dick",
  19049. image: {
  19050. source: "./media/characters/terrance-keayes/dick.svg"
  19051. }
  19052. },
  19053. },
  19054. [
  19055. {
  19056. name: "Canon Height",
  19057. height: math.unit(35, "miles"),
  19058. default: true
  19059. },
  19060. ]
  19061. ))
  19062. characterMakers.push(() => makeCharacter(
  19063. { name: "Ofelia" },
  19064. {
  19065. front: {
  19066. height: math.unit(6, "feet"),
  19067. weight: math.unit(150, "lb"),
  19068. name: "Front",
  19069. image: {
  19070. source: "./media/characters/ofelia/front.svg",
  19071. extra: 546/541,
  19072. bottom: 39/583
  19073. }
  19074. },
  19075. back: {
  19076. height: math.unit(6, "feet"),
  19077. weight: math.unit(150, "lb"),
  19078. name: "Back",
  19079. image: {
  19080. source: "./media/characters/ofelia/back.svg",
  19081. extra: 564/559.5,
  19082. bottom: 8.69/573.02
  19083. }
  19084. },
  19085. maw: {
  19086. height: math.unit(1, "feet"),
  19087. name: "Maw",
  19088. image: {
  19089. source: "./media/characters/ofelia/maw.svg"
  19090. }
  19091. },
  19092. foot: {
  19093. height: math.unit(1.949, "feet"),
  19094. name: "Foot",
  19095. image: {
  19096. source: "./media/characters/ofelia/foot.svg"
  19097. }
  19098. },
  19099. },
  19100. [
  19101. {
  19102. name: "Canon Height",
  19103. height: math.unit(2000, "miles"),
  19104. default: true
  19105. },
  19106. ]
  19107. ))
  19108. characterMakers.push(() => makeCharacter(
  19109. { name: "Samuel" },
  19110. {
  19111. front: {
  19112. height: math.unit(6, "feet"),
  19113. weight: math.unit(150, "lb"),
  19114. name: "Front",
  19115. image: {
  19116. source: "./media/characters/samuel/front.svg",
  19117. extra: 265/258,
  19118. bottom: 2/266.1566
  19119. }
  19120. },
  19121. },
  19122. [
  19123. {
  19124. name: "Macro",
  19125. height: math.unit(100, "feet"),
  19126. default: true
  19127. },
  19128. {
  19129. name: "Full Size",
  19130. height: math.unit(1000, "miles")
  19131. },
  19132. ]
  19133. ))
  19134. characterMakers.push(() => makeCharacter(
  19135. { name: "Beishir Kiel" },
  19136. {
  19137. front: {
  19138. height: math.unit(6, "feet"),
  19139. weight: math.unit(300, "lb"),
  19140. name: "Front",
  19141. image: {
  19142. source: "./media/characters/beishir-kiel/front.svg",
  19143. extra: 569/547,
  19144. bottom: 41.9/609
  19145. }
  19146. },
  19147. maw: {
  19148. height: math.unit(6*0.202, "feet"),
  19149. name: "Maw",
  19150. image: {
  19151. source: "./media/characters/beishir-kiel/maw.svg"
  19152. }
  19153. },
  19154. },
  19155. [
  19156. {
  19157. name: "Macro",
  19158. height: math.unit(300, "feet"),
  19159. default: true
  19160. },
  19161. ]
  19162. ))
  19163. characterMakers.push(() => makeCharacter(
  19164. { name: "Logan Grey" },
  19165. {
  19166. front: {
  19167. height: math.unit(5 + 8/12, "feet"),
  19168. weight: math.unit(120, "lb"),
  19169. name: "Front",
  19170. image: {
  19171. source: "./media/characters/logan-grey/front.svg",
  19172. extra: 2539/2393,
  19173. bottom: 97.6/2636.37
  19174. }
  19175. },
  19176. frontAlt: {
  19177. height: math.unit(5 + 8/12, "feet"),
  19178. weight: math.unit(120, "lb"),
  19179. name: "Front (Alt)",
  19180. image: {
  19181. source: "./media/characters/logan-grey/front-alt.svg",
  19182. extra: 958/893,
  19183. bottom: 15/970.768
  19184. }
  19185. },
  19186. back: {
  19187. height: math.unit(5 + 8/12, "feet"),
  19188. weight: math.unit(120, "lb"),
  19189. name: "Back",
  19190. image: {
  19191. source: "./media/characters/logan-grey/back.svg",
  19192. extra: 958/893,
  19193. bottom: 2.1881/970.9788
  19194. }
  19195. },
  19196. dick: {
  19197. height: math.unit(1.437, "feet"),
  19198. name: "Dick",
  19199. image: {
  19200. source: "./media/characters/logan-grey/dick.svg"
  19201. }
  19202. },
  19203. },
  19204. [
  19205. {
  19206. name: "Normal",
  19207. height: math.unit(5 + 8/12, "feet")
  19208. },
  19209. {
  19210. name: "The 500 Foot Femboy",
  19211. height: math.unit(500, "feet"),
  19212. default: true
  19213. },
  19214. {
  19215. name: "Megmacro",
  19216. height: math.unit(20, "miles")
  19217. },
  19218. ]
  19219. ))
  19220. //characters
  19221. function makeCharacters() {
  19222. const results = [];
  19223. characterMakers.forEach(character => {
  19224. results.push(character());
  19225. });
  19226. return results;
  19227. }