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

20243 строки
482 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: 1794 / 1677,
  602. bottom: 31.7 / 1828.5
  603. }
  604. },
  605. },
  606. [
  607. {
  608. name: "Normal",
  609. height: math.unit(9.5, "feet")
  610. },
  611. {
  612. name: "Macro",
  613. height: math.unit(200, "feet"),
  614. default: true
  615. },
  616. ]
  617. ))
  618. characterMakers.push(() => makeCharacter(
  619. { name: "Zephiro" },
  620. {
  621. front: {
  622. height: math.unit(7, "feet"),
  623. weight: math.unit(80, "kg"),
  624. name: "Front",
  625. image: {
  626. source: "./media/characters/zephiro/front.svg",
  627. extra: 2309 / 2162,
  628. bottom: 0.069
  629. }
  630. },
  631. side: {
  632. height: math.unit(7, "feet"),
  633. weight: math.unit(80, "kg"),
  634. name: "Side",
  635. image: {
  636. source: "./media/characters/zephiro/side.svg",
  637. extra: 2403 / 2279,
  638. bottom: 0.015
  639. }
  640. },
  641. back: {
  642. height: math.unit(7, "feet"),
  643. weight: math.unit(80, "kg"),
  644. name: "Back",
  645. image: {
  646. source: "./media/characters/zephiro/back.svg",
  647. extra: 2373 / 2244,
  648. bottom: 0.013
  649. }
  650. },
  651. },
  652. [
  653. {
  654. name: "Micro",
  655. height: math.unit(3, "inches")
  656. },
  657. {
  658. name: "Normal",
  659. height: math.unit(5 + 3 / 12, "feet"),
  660. default: true
  661. },
  662. {
  663. name: "Macro",
  664. height: math.unit(118, "feet")
  665. },
  666. ]
  667. ))
  668. characterMakers.push(() => makeCharacter(
  669. { name: "Fory" },
  670. {
  671. front: {
  672. height: math.unit(5, "feet"),
  673. weight: math.unit(90, "kg"),
  674. name: "Front",
  675. image: {
  676. source: "./media/characters/fory/front.svg",
  677. extra: 2862 / 2674,
  678. bottom: 180 / 3043.8
  679. }
  680. },
  681. back: {
  682. height: math.unit(5, "feet"),
  683. weight: math.unit(90, "kg"),
  684. name: "Back",
  685. image: {
  686. source: "./media/characters/fory/back.svg",
  687. extra: 2962 / 2791,
  688. bottom: 106 / 3071.8
  689. }
  690. },
  691. foot: {
  692. height: math.unit(2.14, "feet"),
  693. name: "Foot",
  694. image: {
  695. source: "./media/characters/fory/foot.svg"
  696. }
  697. },
  698. },
  699. [
  700. {
  701. name: "Normal",
  702. height: math.unit(5, "feet")
  703. },
  704. {
  705. name: "Macro",
  706. height: math.unit(50, "feet"),
  707. default: true
  708. },
  709. {
  710. name: "Megamacro",
  711. height: math.unit(10, "miles")
  712. },
  713. {
  714. name: "Gigamacro",
  715. height: math.unit(5, "earths")
  716. },
  717. ]
  718. ))
  719. characterMakers.push(() => makeCharacter(
  720. { name: "Kurrikage" },
  721. {
  722. front: {
  723. height: math.unit(7, "feet"),
  724. weight: math.unit(90, "kg"),
  725. name: "Front",
  726. image: {
  727. source: "./media/characters/kurrikage/front.svg",
  728. extra: 1,
  729. bottom: 0.035
  730. }
  731. },
  732. back: {
  733. height: math.unit(7, "feet"),
  734. weight: math.unit(90, "lb"),
  735. name: "Back",
  736. image: {
  737. source: "./media/characters/kurrikage/back.svg"
  738. }
  739. },
  740. paw: {
  741. height: math.unit(1.5, "feet"),
  742. name: "Paw",
  743. image: {
  744. source: "./media/characters/kurrikage/paw.svg"
  745. }
  746. },
  747. staff: {
  748. height: math.unit(6.7, "feet"),
  749. name: "Staff",
  750. image: {
  751. source: "./media/characters/kurrikage/staff.svg"
  752. }
  753. },
  754. peek: {
  755. height: math.unit(1.05, "feet"),
  756. name: "Peeking",
  757. image: {
  758. source: "./media/characters/kurrikage/peek.svg",
  759. bottom: 0.08
  760. }
  761. },
  762. },
  763. [
  764. {
  765. name: "Normal",
  766. height: math.unit(12, "feet"),
  767. default: true
  768. },
  769. {
  770. name: "Big",
  771. height: math.unit(20, "feet")
  772. },
  773. {
  774. name: "Macro",
  775. height: math.unit(500, "feet")
  776. },
  777. {
  778. name: "Megamacro",
  779. height: math.unit(20, "miles")
  780. },
  781. ]
  782. ))
  783. characterMakers.push(() => makeCharacter(
  784. { name: "Shingo" },
  785. {
  786. front: {
  787. height: math.unit(6, "feet"),
  788. weight: math.unit(75, "kg"),
  789. name: "Front",
  790. image: {
  791. source: "./media/characters/shingo/front.svg",
  792. extra: 3511 / 3338,
  793. bottom: 0.005
  794. }
  795. },
  796. },
  797. [
  798. {
  799. name: "Micro",
  800. height: math.unit(4, "inches")
  801. },
  802. {
  803. name: "Normal",
  804. height: math.unit(6, "feet"),
  805. default: true
  806. },
  807. {
  808. name: "Macro",
  809. height: math.unit(108, "feet")
  810. }
  811. ]
  812. ))
  813. characterMakers.push(() => makeCharacter(
  814. { name: "Aigey" },
  815. {
  816. side: {
  817. height: math.unit(6, "feet"),
  818. weight: math.unit(75, "kg"),
  819. name: "Side",
  820. image: {
  821. source: "./media/characters/aigey/side.svg"
  822. }
  823. },
  824. },
  825. [
  826. {
  827. name: "Macro",
  828. height: math.unit(200, "feet"),
  829. default: true
  830. },
  831. {
  832. name: "Megamacro",
  833. height: math.unit(100, "miles")
  834. },
  835. ]
  836. )
  837. )
  838. characterMakers.push(() => makeCharacter(
  839. { name: "Natasha" },
  840. {
  841. front: {
  842. height: math.unit(5 + 5 / 12, "feet"),
  843. weight: math.unit(75, "kg"),
  844. name: "Front",
  845. image: {
  846. source: "./media/characters/natasha/front.svg",
  847. extra: 875 / 846,
  848. bottom: 0.01
  849. }
  850. },
  851. },
  852. [
  853. {
  854. name: "Normal",
  855. height: math.unit(5 + 5 / 12, "feet")
  856. },
  857. {
  858. name: "Large",
  859. height: math.unit(12, "feet")
  860. },
  861. {
  862. name: "Macro",
  863. height: math.unit(100, "feet"),
  864. default: true
  865. },
  866. {
  867. name: "Macro+",
  868. height: math.unit(260, "feet")
  869. },
  870. {
  871. name: "Macro++",
  872. height: math.unit(1, "mile")
  873. },
  874. ]
  875. ))
  876. characterMakers.push(() => makeCharacter(
  877. { name: "Malik" },
  878. {
  879. front: {
  880. height: math.unit(6, "feet"),
  881. weight: math.unit(75, "kg"),
  882. name: "Front",
  883. image: {
  884. source: "./media/characters/malik/front.svg"
  885. }
  886. },
  887. side: {
  888. height: math.unit(6, "feet"),
  889. weight: math.unit(75, "kg"),
  890. name: "Side",
  891. image: {
  892. source: "./media/characters/malik/side.svg",
  893. extra: 1.1539
  894. }
  895. },
  896. back: {
  897. height: math.unit(6, "feet"),
  898. weight: math.unit(75, "kg"),
  899. name: "Back",
  900. image: {
  901. source: "./media/characters/malik/back.svg"
  902. }
  903. },
  904. },
  905. [
  906. {
  907. name: "Macro",
  908. height: math.unit(156, "feet"),
  909. default: true
  910. },
  911. {
  912. name: "Macro+",
  913. height: math.unit(1188, "feet")
  914. },
  915. ]
  916. ))
  917. characterMakers.push(() => makeCharacter(
  918. { name: "Sefer" },
  919. {
  920. front: {
  921. height: math.unit(6, "feet"),
  922. weight: math.unit(75, "kg"),
  923. name: "Front",
  924. image: {
  925. source: "./media/characters/sefer/front.svg"
  926. }
  927. },
  928. back: {
  929. height: math.unit(6, "feet"),
  930. weight: math.unit(75, "kg"),
  931. name: "Back",
  932. image: {
  933. source: "./media/characters/sefer/back.svg"
  934. }
  935. },
  936. },
  937. [
  938. {
  939. name: "Normal",
  940. height: math.unit(6, "feet"),
  941. default: true
  942. },
  943. ]
  944. ))
  945. characterMakers.push(() => makeCharacter(
  946. { name: "North" },
  947. {
  948. body: {
  949. height: math.unit(2.2428, "meter"),
  950. weight: math.unit(124.738, "kg"),
  951. name: "Body",
  952. image: {
  953. extra: 1225 / 1050,
  954. source: "./media/characters/north/front.svg"
  955. }
  956. }
  957. },
  958. [
  959. {
  960. name: "Micro",
  961. height: math.unit(4, "inches")
  962. },
  963. {
  964. name: "Macro",
  965. height: math.unit(63, "meters")
  966. },
  967. {
  968. name: "Megamacro",
  969. height: math.unit(101, "miles"),
  970. default: true
  971. }
  972. ]
  973. ))
  974. characterMakers.push(() => makeCharacter(
  975. { name: "Talan" },
  976. {
  977. angled: {
  978. height: math.unit(4, "meter"),
  979. weight: math.unit(150, "kg"),
  980. name: "Angled",
  981. image: {
  982. source: "./media/characters/talan/angled-sfw.svg",
  983. bottom: 29 / 3734
  984. }
  985. },
  986. angledNsfw: {
  987. height: math.unit(4, "meter"),
  988. weight: math.unit(150, "kg"),
  989. name: "Angled (NSFW)",
  990. image: {
  991. source: "./media/characters/talan/angled-nsfw.svg",
  992. bottom: 29 / 3734
  993. }
  994. },
  995. frontNsfw: {
  996. height: math.unit(4, "meter"),
  997. weight: math.unit(150, "kg"),
  998. name: "Front (NSFW)",
  999. image: {
  1000. source: "./media/characters/talan/front-nsfw.svg",
  1001. bottom: 29 / 3734
  1002. }
  1003. },
  1004. sideNsfw: {
  1005. height: math.unit(4, "meter"),
  1006. weight: math.unit(150, "kg"),
  1007. name: "Side (NSFW)",
  1008. image: {
  1009. source: "./media/characters/talan/side-nsfw.svg",
  1010. bottom: 29 / 3734
  1011. }
  1012. },
  1013. back: {
  1014. height: math.unit(4, "meter"),
  1015. weight: math.unit(150, "kg"),
  1016. name: "Back",
  1017. image: {
  1018. source: "./media/characters/talan/back.svg"
  1019. }
  1020. },
  1021. dickBottom: {
  1022. height: math.unit(0.621, "meter"),
  1023. name: "Dick (Bottom)",
  1024. image: {
  1025. source: "./media/characters/talan/dick-bottom.svg"
  1026. }
  1027. },
  1028. dickTop: {
  1029. height: math.unit(0.621, "meter"),
  1030. name: "Dick (Top)",
  1031. image: {
  1032. source: "./media/characters/talan/dick-top.svg"
  1033. }
  1034. },
  1035. dickSide: {
  1036. height: math.unit(0.305, "meter"),
  1037. name: "Dick (Side)",
  1038. image: {
  1039. source: "./media/characters/talan/dick-side.svg"
  1040. }
  1041. },
  1042. dickFront: {
  1043. height: math.unit(0.305, "meter"),
  1044. name: "Dick (Front)",
  1045. image: {
  1046. source: "./media/characters/talan/dick-front.svg"
  1047. }
  1048. },
  1049. },
  1050. [
  1051. {
  1052. name: "Normal",
  1053. height: math.unit(4, "meters")
  1054. },
  1055. {
  1056. name: "Macro",
  1057. height: math.unit(100, "meters")
  1058. },
  1059. {
  1060. name: "Megamacro",
  1061. height: math.unit(2, "miles"),
  1062. default: true
  1063. },
  1064. {
  1065. name: "Gigamacro",
  1066. height: math.unit(5000, "miles")
  1067. },
  1068. {
  1069. name: "Teramacro",
  1070. height: math.unit(100, "parsecs")
  1071. }
  1072. ]
  1073. ))
  1074. characterMakers.push(() => makeCharacter(
  1075. { name: "Gael'Rathus" },
  1076. {
  1077. front: {
  1078. height: math.unit(2, "meter"),
  1079. weight: math.unit(90, "kg"),
  1080. name: "Front",
  1081. image: {
  1082. source: "./media/characters/gael'rathus/front.svg"
  1083. }
  1084. },
  1085. frontAlt: {
  1086. height: math.unit(2, "meter"),
  1087. weight: math.unit(90, "kg"),
  1088. name: "Front (alt)",
  1089. image: {
  1090. source: "./media/characters/gael'rathus/front-alt.svg"
  1091. }
  1092. },
  1093. frontAlt2: {
  1094. height: math.unit(2, "meter"),
  1095. weight: math.unit(90, "kg"),
  1096. name: "Front (alt 2)",
  1097. image: {
  1098. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1099. }
  1100. }
  1101. },
  1102. [
  1103. {
  1104. name: "Normal",
  1105. height: math.unit(9, "feet"),
  1106. default: true
  1107. },
  1108. {
  1109. name: "Large",
  1110. height: math.unit(25, "feet")
  1111. },
  1112. {
  1113. name: "Macro",
  1114. height: math.unit(0.25, "miles")
  1115. },
  1116. {
  1117. name: "Megamacro",
  1118. height: math.unit(10, "miles")
  1119. }
  1120. ]
  1121. ))
  1122. characterMakers.push(() => makeCharacter(
  1123. { name: "Sosha" },
  1124. {
  1125. side: {
  1126. height: math.unit(2, "meter"),
  1127. weight: math.unit(140, "kg"),
  1128. name: "Side",
  1129. image: {
  1130. source: "./media/characters/sosha/side.svg",
  1131. bottom: 0.042
  1132. }
  1133. },
  1134. },
  1135. [
  1136. {
  1137. name: "Normal",
  1138. height: math.unit(12, "feet"),
  1139. default: true
  1140. }
  1141. ]
  1142. ))
  1143. characterMakers.push(() => makeCharacter(
  1144. { name: "RuNNoLa" },
  1145. {
  1146. side: {
  1147. height: math.unit(5 + 5 / 12, "feet"),
  1148. weight: math.unit(170, "kg"),
  1149. name: "Side",
  1150. image: {
  1151. source: "./media/characters/runnola/side.svg",
  1152. extra: 741 / 448,
  1153. bottom: 0.05
  1154. }
  1155. },
  1156. },
  1157. [
  1158. {
  1159. name: "Small",
  1160. height: math.unit(3, "feet")
  1161. },
  1162. {
  1163. name: "Normal",
  1164. height: math.unit(5 + 5 / 12, "feet"),
  1165. default: true
  1166. },
  1167. {
  1168. name: "Big",
  1169. height: math.unit(10, "feet")
  1170. },
  1171. ]
  1172. ))
  1173. characterMakers.push(() => makeCharacter(
  1174. { name: "Kurribird" },
  1175. {
  1176. front: {
  1177. height: math.unit(2, "meter"),
  1178. weight: math.unit(50, "kg"),
  1179. name: "Front",
  1180. image: {
  1181. source: "./media/characters/kurribird/front.svg",
  1182. bottom: 0.015
  1183. }
  1184. },
  1185. frontAlt: {
  1186. height: math.unit(1.5, "meter"),
  1187. weight: math.unit(50, "kg"),
  1188. name: "Front (Alt)",
  1189. image: {
  1190. source: "./media/characters/kurribird/front-alt.svg",
  1191. extra: 1.45
  1192. }
  1193. },
  1194. },
  1195. [
  1196. {
  1197. name: "Normal",
  1198. height: math.unit(7, "feet")
  1199. },
  1200. {
  1201. name: "Big",
  1202. height: math.unit(12, "feet"),
  1203. default: true
  1204. },
  1205. {
  1206. name: "Macro",
  1207. height: math.unit(1500, "feet")
  1208. },
  1209. {
  1210. name: "Megamacro",
  1211. height: math.unit(2, "miles")
  1212. }
  1213. ]
  1214. ))
  1215. characterMakers.push(() => makeCharacter(
  1216. { name: "Elbial" },
  1217. {
  1218. front: {
  1219. height: math.unit(2, "meter"),
  1220. weight: math.unit(80, "kg"),
  1221. name: "Front",
  1222. image: {
  1223. source: "./media/characters/elbial/front.svg",
  1224. extra: 1643 / 1556,
  1225. bottom: 60.2 / 1696
  1226. }
  1227. },
  1228. side: {
  1229. height: math.unit(2, "meter"),
  1230. weight: math.unit(80, "kg"),
  1231. name: "Side",
  1232. image: {
  1233. source: "./media/characters/elbial/side.svg",
  1234. extra: 1630 / 1565,
  1235. bottom: 71.5 / 1697
  1236. }
  1237. },
  1238. back: {
  1239. height: math.unit(2, "meter"),
  1240. weight: math.unit(80, "kg"),
  1241. name: "Back",
  1242. image: {
  1243. source: "./media/characters/elbial/back.svg",
  1244. extra: 1668 / 1595,
  1245. bottom: 5.6 / 1672
  1246. }
  1247. },
  1248. frontDressed: {
  1249. height: math.unit(2, "meter"),
  1250. weight: math.unit(80, "kg"),
  1251. name: "Front (Dressed)",
  1252. image: {
  1253. source: "./media/characters/elbial/front-dressed.svg",
  1254. extra: 1653 / 1584,
  1255. bottom: 57 / 1708
  1256. }
  1257. },
  1258. genitals: {
  1259. height: math.unit(2 / 3.367, "meter"),
  1260. name: "Genitals",
  1261. image: {
  1262. source: "./media/characters/elbial/genitals.svg"
  1263. }
  1264. },
  1265. },
  1266. [
  1267. {
  1268. name: "Large",
  1269. height: math.unit(100, "feet")
  1270. },
  1271. {
  1272. name: "Macro",
  1273. height: math.unit(500, "feet"),
  1274. default: true
  1275. },
  1276. {
  1277. name: "Megamacro",
  1278. height: math.unit(10, "miles")
  1279. },
  1280. {
  1281. name: "Gigamacro",
  1282. height: math.unit(25000, "miles")
  1283. },
  1284. {
  1285. name: "Full-Size",
  1286. height: math.unit(8000000, "gigaparsecs")
  1287. }
  1288. ]
  1289. ))
  1290. characterMakers.push(() => makeCharacter(
  1291. { name: "Noah" },
  1292. {
  1293. front: {
  1294. height: math.unit(2, "meter"),
  1295. weight: math.unit(60, "kg"),
  1296. name: "Front",
  1297. image: {
  1298. source: "./media/characters/noah/front.svg"
  1299. }
  1300. },
  1301. talons: {
  1302. height: math.unit(0.315, "meter"),
  1303. name: "Talons",
  1304. image: {
  1305. source: "./media/characters/noah/talons.svg"
  1306. }
  1307. }
  1308. },
  1309. [
  1310. {
  1311. name: "Large",
  1312. height: math.unit(50, "feet")
  1313. },
  1314. {
  1315. name: "Macro",
  1316. height: math.unit(750, "feet"),
  1317. default: true
  1318. },
  1319. {
  1320. name: "Megamacro",
  1321. height: math.unit(50, "miles")
  1322. },
  1323. {
  1324. name: "Gigamacro",
  1325. height: math.unit(100000, "miles")
  1326. },
  1327. {
  1328. name: "Full-Size",
  1329. height: math.unit(3000000000, "miles")
  1330. }
  1331. ]
  1332. ))
  1333. characterMakers.push(() => makeCharacter(
  1334. { name: "Natalya" },
  1335. {
  1336. front: {
  1337. height: math.unit(2, "meter"),
  1338. weight: math.unit(80, "kg"),
  1339. name: "Front",
  1340. image: {
  1341. source: "./media/characters/natalya/front.svg"
  1342. }
  1343. },
  1344. back: {
  1345. height: math.unit(2, "meter"),
  1346. weight: math.unit(80, "kg"),
  1347. name: "Back",
  1348. image: {
  1349. source: "./media/characters/natalya/back.svg"
  1350. }
  1351. }
  1352. },
  1353. [
  1354. {
  1355. name: "Normal",
  1356. height: math.unit(150, "feet"),
  1357. default: true
  1358. },
  1359. {
  1360. name: "Megamacro",
  1361. height: math.unit(5, "miles")
  1362. },
  1363. {
  1364. name: "Full-Size",
  1365. height: math.unit(600, "kiloparsecs")
  1366. }
  1367. ]
  1368. ))
  1369. characterMakers.push(() => makeCharacter(
  1370. { name: "Erestrebah" },
  1371. {
  1372. front: {
  1373. height: math.unit(2, "meter"),
  1374. weight: math.unit(50, "kg"),
  1375. name: "Front",
  1376. image: {
  1377. source: "./media/characters/erestrebah/front.svg",
  1378. extra: 208 / 193,
  1379. bottom: 0.055
  1380. }
  1381. },
  1382. back: {
  1383. height: math.unit(2, "meter"),
  1384. weight: math.unit(50, "kg"),
  1385. name: "Back",
  1386. image: {
  1387. source: "./media/characters/erestrebah/back.svg",
  1388. extra: 1.3
  1389. }
  1390. }
  1391. },
  1392. [
  1393. {
  1394. name: "Normal",
  1395. height: math.unit(10, "feet")
  1396. },
  1397. {
  1398. name: "Large",
  1399. height: math.unit(50, "feet"),
  1400. default: true
  1401. },
  1402. {
  1403. name: "Macro",
  1404. height: math.unit(300, "feet")
  1405. },
  1406. {
  1407. name: "Macro+",
  1408. height: math.unit(750, "feet")
  1409. },
  1410. {
  1411. name: "Megamacro",
  1412. height: math.unit(3, "miles")
  1413. }
  1414. ]
  1415. ))
  1416. characterMakers.push(() => makeCharacter(
  1417. { name: "Jennifer" },
  1418. {
  1419. front: {
  1420. height: math.unit(2, "meter"),
  1421. weight: math.unit(80, "kg"),
  1422. name: "Front",
  1423. image: {
  1424. source: "./media/characters/jennifer/front.svg",
  1425. bottom: 0.11,
  1426. extra: 1.16
  1427. }
  1428. },
  1429. frontAlt: {
  1430. height: math.unit(2, "meter"),
  1431. weight: math.unit(80, "kg"),
  1432. name: "Front (Alt)",
  1433. image: {
  1434. source: "./media/characters/jennifer/front-alt.svg"
  1435. }
  1436. }
  1437. },
  1438. [
  1439. {
  1440. name: "Canon Height",
  1441. height: math.unit(120, "feet"),
  1442. default: true
  1443. },
  1444. {
  1445. name: "Macro+",
  1446. height: math.unit(300, "feet")
  1447. },
  1448. {
  1449. name: "Megamacro",
  1450. height: math.unit(20000, "feet")
  1451. }
  1452. ]
  1453. ))
  1454. characterMakers.push(() => makeCharacter(
  1455. { name: "Kalista" },
  1456. {
  1457. front: {
  1458. height: math.unit(2, "meter"),
  1459. weight: math.unit(50, "kg"),
  1460. name: "Front",
  1461. image: {
  1462. source: "./media/characters/kalista/front.svg",
  1463. extra: 1947 / 1700
  1464. }
  1465. },
  1466. back: {
  1467. height: math.unit(2, "meter"),
  1468. weight: math.unit(50, "kg"),
  1469. name: "Back",
  1470. image: {
  1471. source: "./media/characters/kalista/back.svg",
  1472. extra: 1366 / 1156
  1473. }
  1474. }
  1475. },
  1476. [
  1477. {
  1478. name: "Uncomfortably Small",
  1479. height: math.unit(10, "feet")
  1480. },
  1481. {
  1482. name: "Small",
  1483. height: math.unit(30, "feet")
  1484. },
  1485. {
  1486. name: "Macro",
  1487. height: math.unit(100, "feet"),
  1488. default: true
  1489. },
  1490. {
  1491. name: "Macro+",
  1492. height: math.unit(2000, "feet")
  1493. },
  1494. {
  1495. name: "True Form",
  1496. height: math.unit(8924, "miles")
  1497. }
  1498. ]
  1499. ))
  1500. characterMakers.push(() => makeCharacter(
  1501. { name: "GiantGrowingVixen" },
  1502. {
  1503. front: {
  1504. height: math.unit(2, "meter"),
  1505. weight: math.unit(120, "kg"),
  1506. name: "Front",
  1507. image: {
  1508. source: "./media/characters/ggv/front.svg"
  1509. }
  1510. },
  1511. side: {
  1512. height: math.unit(2, "meter"),
  1513. weight: math.unit(120, "kg"),
  1514. name: "Side",
  1515. image: {
  1516. source: "./media/characters/ggv/side.svg"
  1517. }
  1518. }
  1519. },
  1520. [
  1521. {
  1522. name: "Extremely Puny",
  1523. height: math.unit(9 + 5 / 12, "feet")
  1524. },
  1525. {
  1526. name: "Horribly Small",
  1527. height: math.unit(47.7, "miles"),
  1528. default: true
  1529. },
  1530. {
  1531. name: "Reasonably Sized",
  1532. height: math.unit(25000, "parsecs")
  1533. },
  1534. {
  1535. name: "Slightly Uncompressed",
  1536. height: math.unit(7.77e31, "parsecs")
  1537. },
  1538. {
  1539. name: "Omniversal",
  1540. height: math.unit(1e300, "meters")
  1541. },
  1542. ]
  1543. ))
  1544. characterMakers.push(() => makeCharacter(
  1545. { name: "Napalm" },
  1546. {
  1547. front: {
  1548. height: math.unit(2, "meter"),
  1549. weight: math.unit(75, "lb"),
  1550. name: "Front",
  1551. image: {
  1552. source: "./media/characters/napalm/front.svg"
  1553. }
  1554. },
  1555. back: {
  1556. height: math.unit(2, "meter"),
  1557. weight: math.unit(75, "lb"),
  1558. name: "Back",
  1559. image: {
  1560. source: "./media/characters/napalm/back.svg"
  1561. }
  1562. }
  1563. },
  1564. [
  1565. {
  1566. name: "Standard",
  1567. height: math.unit(55, "feet"),
  1568. default: true
  1569. }
  1570. ]
  1571. ))
  1572. characterMakers.push(() => makeCharacter(
  1573. { name: "Asana" },
  1574. {
  1575. front: {
  1576. height: math.unit(7 + 5 / 6, "feet"),
  1577. weight: math.unit(325, "lb"),
  1578. name: "Front",
  1579. image: {
  1580. source: "./media/characters/asana/front.svg",
  1581. extra: 1128 / 1068
  1582. }
  1583. },
  1584. back: {
  1585. height: math.unit(7 + 5 / 6, "feet"),
  1586. weight: math.unit(325, "lb"),
  1587. name: "Back",
  1588. image: {
  1589. source: "./media/characters/asana/back.svg",
  1590. extra: 1128 / 1068
  1591. }
  1592. },
  1593. },
  1594. [
  1595. {
  1596. name: "Standard",
  1597. height: math.unit(7 + 5 / 6, "feet"),
  1598. default: true
  1599. },
  1600. {
  1601. name: "Large",
  1602. height: math.unit(10, "meters")
  1603. },
  1604. {
  1605. name: "Macro",
  1606. height: math.unit(2500, "meters")
  1607. },
  1608. {
  1609. name: "Megamacro",
  1610. height: math.unit(5e6, "meters")
  1611. },
  1612. {
  1613. name: "Examacro",
  1614. height: math.unit(5e12, "lightyears")
  1615. },
  1616. {
  1617. name: "Max Size",
  1618. height: math.unit(1e31, "lightyears")
  1619. }
  1620. ]
  1621. ))
  1622. characterMakers.push(() => makeCharacter(
  1623. { name: "Ebony" },
  1624. {
  1625. front: {
  1626. height: math.unit(2, "meter"),
  1627. weight: math.unit(60, "kg"),
  1628. name: "Front",
  1629. image: {
  1630. source: "./media/characters/ebony/front.svg",
  1631. bottom: 0.03,
  1632. extra: 1045 / 810 + 0.03
  1633. }
  1634. },
  1635. side: {
  1636. height: math.unit(2, "meter"),
  1637. weight: math.unit(60, "kg"),
  1638. name: "Side",
  1639. image: {
  1640. source: "./media/characters/ebony/side.svg",
  1641. bottom: 0.03,
  1642. extra: 1045 / 810 + 0.03
  1643. }
  1644. },
  1645. back: {
  1646. height: math.unit(2, "meter"),
  1647. weight: math.unit(60, "kg"),
  1648. name: "Back",
  1649. image: {
  1650. source: "./media/characters/ebony/back.svg",
  1651. bottom: 0.01,
  1652. extra: 1045 / 810 + 0.01
  1653. }
  1654. },
  1655. },
  1656. [
  1657. // TODO check why I did this lol
  1658. {
  1659. name: "Standard",
  1660. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1661. default: true
  1662. },
  1663. {
  1664. name: "Macro",
  1665. height: math.unit(200, "feet")
  1666. },
  1667. {
  1668. name: "Gigamacro",
  1669. height: math.unit(13000, "km")
  1670. }
  1671. ]
  1672. ))
  1673. characterMakers.push(() => makeCharacter(
  1674. { name: "Mountain" },
  1675. {
  1676. front: {
  1677. height: math.unit(6, "feet"),
  1678. weight: math.unit(175, "lb"),
  1679. name: "Front",
  1680. image: {
  1681. source: "./media/characters/mountain/front.svg"
  1682. }
  1683. },
  1684. back: {
  1685. height: math.unit(6, "feet"),
  1686. weight: math.unit(175, "lb"),
  1687. name: "Back",
  1688. image: {
  1689. source: "./media/characters/mountain/back.svg"
  1690. }
  1691. },
  1692. },
  1693. [
  1694. {
  1695. name: "Large",
  1696. height: math.unit(20, "meters")
  1697. },
  1698. {
  1699. name: "Macro",
  1700. height: math.unit(300, "meters")
  1701. },
  1702. {
  1703. name: "Gigamacro",
  1704. height: math.unit(10000, "km"),
  1705. default: true
  1706. },
  1707. {
  1708. name: "Examacro",
  1709. height: math.unit(10e9, "lightyears")
  1710. }
  1711. ]
  1712. ))
  1713. characterMakers.push(() => makeCharacter(
  1714. { name: "Rick" },
  1715. {
  1716. front: {
  1717. height: math.unit(8, "feet"),
  1718. weight: math.unit(500, "lb"),
  1719. name: "Front",
  1720. image: {
  1721. source: "./media/characters/rick/front.svg"
  1722. }
  1723. }
  1724. },
  1725. [
  1726. {
  1727. name: "Normal",
  1728. height: math.unit(8, "feet"),
  1729. default: true
  1730. },
  1731. {
  1732. name: "Macro",
  1733. height: math.unit(5, "km")
  1734. }
  1735. ]
  1736. ))
  1737. characterMakers.push(() => makeCharacter(
  1738. { name: "Ona" },
  1739. {
  1740. front: {
  1741. height: math.unit(8, "feet"),
  1742. weight: math.unit(120, "lb"),
  1743. name: "Front",
  1744. image: {
  1745. source: "./media/characters/ona/front.svg"
  1746. }
  1747. },
  1748. frontAlt: {
  1749. height: math.unit(8, "feet"),
  1750. weight: math.unit(120, "lb"),
  1751. name: "Front (Alt)",
  1752. image: {
  1753. source: "./media/characters/ona/front-alt.svg"
  1754. }
  1755. },
  1756. back: {
  1757. height: math.unit(8, "feet"),
  1758. weight: math.unit(120, "lb"),
  1759. name: "Back",
  1760. image: {
  1761. source: "./media/characters/ona/back.svg"
  1762. }
  1763. },
  1764. foot: {
  1765. height: math.unit(1.1, "feet"),
  1766. name: "Foot",
  1767. image: {
  1768. source: "./media/characters/ona/foot.svg"
  1769. }
  1770. }
  1771. },
  1772. [
  1773. {
  1774. name: "Megamacro",
  1775. height: math.unit(70, "km"),
  1776. default: true
  1777. },
  1778. {
  1779. name: "Gigamacro",
  1780. height: math.unit(681818, "miles")
  1781. },
  1782. {
  1783. name: "Examacro",
  1784. height: math.unit(3800000, "lightyears")
  1785. },
  1786. ]
  1787. ))
  1788. characterMakers.push(() => makeCharacter(
  1789. { name: "Mech" },
  1790. {
  1791. front: {
  1792. height: math.unit(12, "feet"),
  1793. weight: math.unit(3000, "lb"),
  1794. name: "Front",
  1795. image: {
  1796. source: "./media/characters/mech/front.svg",
  1797. bottom: 0.025,
  1798. }
  1799. },
  1800. back: {
  1801. height: math.unit(12, "feet"),
  1802. weight: math.unit(3000, "lb"),
  1803. name: "Back",
  1804. image: {
  1805. source: "./media/characters/mech/back.svg",
  1806. bottom: 0.03,
  1807. }
  1808. }
  1809. },
  1810. [
  1811. {
  1812. name: "Normal",
  1813. height: math.unit(12, "feet")
  1814. },
  1815. {
  1816. name: "Macro",
  1817. height: math.unit(300, "feet"),
  1818. default: true
  1819. },
  1820. {
  1821. name: "Macro+",
  1822. height: math.unit(1500, "feet")
  1823. },
  1824. ]
  1825. ))
  1826. characterMakers.push(() => makeCharacter(
  1827. { name: "Gregory" },
  1828. {
  1829. front: {
  1830. height: math.unit(1.3, "meter"),
  1831. weight: math.unit(30, "kg"),
  1832. name: "Front",
  1833. image: {
  1834. source: "./media/characters/gregory/front.svg",
  1835. }
  1836. }
  1837. },
  1838. [
  1839. {
  1840. name: "Normal",
  1841. height: math.unit(1.3, "meter"),
  1842. default: true
  1843. },
  1844. {
  1845. name: "Macro",
  1846. height: math.unit(20, "meter")
  1847. }
  1848. ]
  1849. ))
  1850. characterMakers.push(() => makeCharacter(
  1851. { name: "Elory" },
  1852. {
  1853. front: {
  1854. height: math.unit(2.8, "meter"),
  1855. weight: math.unit(200, "kg"),
  1856. name: "Front",
  1857. image: {
  1858. source: "./media/characters/elory/front.svg",
  1859. }
  1860. }
  1861. },
  1862. [
  1863. {
  1864. name: "Normal",
  1865. height: math.unit(2.8, "meter"),
  1866. default: true
  1867. },
  1868. {
  1869. name: "Macro",
  1870. height: math.unit(38, "meter")
  1871. }
  1872. ]
  1873. ))
  1874. characterMakers.push(() => makeCharacter(
  1875. { name: "Angelpatamon" },
  1876. {
  1877. front: {
  1878. height: math.unit(470, "feet"),
  1879. weight: math.unit(924, "tons"),
  1880. name: "Front",
  1881. image: {
  1882. source: "./media/characters/angelpatamon/front.svg",
  1883. }
  1884. }
  1885. },
  1886. [
  1887. {
  1888. name: "Normal",
  1889. height: math.unit(470, "feet"),
  1890. default: true
  1891. },
  1892. {
  1893. name: "Deity Size I",
  1894. height: math.unit(28651.2, "km")
  1895. },
  1896. {
  1897. name: "Deity Size II",
  1898. height: math.unit(171907.2, "km")
  1899. }
  1900. ]
  1901. ))
  1902. characterMakers.push(() => makeCharacter(
  1903. { name: "Cryae" },
  1904. {
  1905. side: {
  1906. height: math.unit(7.2, "meter"),
  1907. weight: math.unit(8.2, "tons"),
  1908. name: "Side",
  1909. image: {
  1910. source: "./media/characters/cryae/side.svg",
  1911. extra: 3500 / 1500
  1912. }
  1913. }
  1914. },
  1915. [
  1916. {
  1917. name: "Normal",
  1918. height: math.unit(7.2, "meter"),
  1919. default: true
  1920. }
  1921. ]
  1922. ))
  1923. characterMakers.push(() => makeCharacter(
  1924. { name: "Xera" },
  1925. {
  1926. front: {
  1927. height: math.unit(6, "feet"),
  1928. weight: math.unit(175, "lb"),
  1929. name: "Front",
  1930. image: {
  1931. source: "./media/characters/xera/front.svg",
  1932. extra: 2300 / 2061
  1933. }
  1934. },
  1935. side: {
  1936. height: math.unit(6, "feet"),
  1937. weight: math.unit(175, "lb"),
  1938. name: "Side",
  1939. image: {
  1940. source: "./media/characters/xera/side.svg",
  1941. extra: 2300 / 2061
  1942. }
  1943. },
  1944. back: {
  1945. height: math.unit(6, "feet"),
  1946. weight: math.unit(175, "lb"),
  1947. name: "Back",
  1948. image: {
  1949. source: "./media/characters/xera/back.svg"
  1950. }
  1951. },
  1952. },
  1953. [
  1954. {
  1955. name: "Small",
  1956. height: math.unit(10, "feet")
  1957. },
  1958. {
  1959. name: "Macro",
  1960. height: math.unit(500, "meters"),
  1961. default: true
  1962. },
  1963. {
  1964. name: "Macro+",
  1965. height: math.unit(10, "km")
  1966. },
  1967. {
  1968. name: "Gigamacro",
  1969. height: math.unit(25000, "km")
  1970. },
  1971. {
  1972. name: "Teramacro",
  1973. height: math.unit(3e6, "km")
  1974. }
  1975. ]
  1976. ))
  1977. characterMakers.push(() => makeCharacter(
  1978. { name: "Nebula" },
  1979. {
  1980. front: {
  1981. height: math.unit(6, "feet"),
  1982. weight: math.unit(175, "lb"),
  1983. name: "Front",
  1984. image: {
  1985. source: "./media/characters/nebula/front.svg",
  1986. extra: 2600 / 2450
  1987. }
  1988. }
  1989. },
  1990. [
  1991. {
  1992. name: "Small",
  1993. height: math.unit(4.5, "meters")
  1994. },
  1995. {
  1996. name: "Macro",
  1997. height: math.unit(1500, "meters"),
  1998. default: true
  1999. },
  2000. {
  2001. name: "Megamacro",
  2002. height: math.unit(150, "km")
  2003. },
  2004. {
  2005. name: "Gigamacro",
  2006. height: math.unit(27000, "km")
  2007. }
  2008. ]
  2009. ))
  2010. characterMakers.push(() => makeCharacter(
  2011. { name: "Abysgar" },
  2012. {
  2013. front: {
  2014. height: math.unit(6, "feet"),
  2015. weight: math.unit(225, "lb"),
  2016. name: "Front",
  2017. image: {
  2018. source: "./media/characters/abysgar/front.svg"
  2019. }
  2020. }
  2021. },
  2022. [
  2023. {
  2024. name: "Small",
  2025. height: math.unit(4.5, "meters")
  2026. },
  2027. {
  2028. name: "Macro",
  2029. height: math.unit(1250, "meters"),
  2030. default: true
  2031. },
  2032. {
  2033. name: "Megamacro",
  2034. height: math.unit(125, "km")
  2035. },
  2036. {
  2037. name: "Gigamacro",
  2038. height: math.unit(26000, "km")
  2039. }
  2040. ]
  2041. ))
  2042. characterMakers.push(() => makeCharacter(
  2043. { name: "Yakuz" },
  2044. {
  2045. front: {
  2046. height: math.unit(6, "feet"),
  2047. weight: math.unit(180, "lb"),
  2048. name: "Front",
  2049. image: {
  2050. source: "./media/characters/yakuz/front.svg"
  2051. }
  2052. }
  2053. },
  2054. [
  2055. {
  2056. name: "Small",
  2057. height: math.unit(5, "meters")
  2058. },
  2059. {
  2060. name: "Macro",
  2061. height: math.unit(1500, "meters"),
  2062. default: true
  2063. },
  2064. {
  2065. name: "Megamacro",
  2066. height: math.unit(200, "km")
  2067. },
  2068. {
  2069. name: "Gigamacro",
  2070. height: math.unit(100000, "km")
  2071. }
  2072. ]
  2073. ))
  2074. characterMakers.push(() => makeCharacter(
  2075. { name: "Mirova" },
  2076. {
  2077. front: {
  2078. height: math.unit(6, "feet"),
  2079. weight: math.unit(175, "lb"),
  2080. name: "Front",
  2081. image: {
  2082. source: "./media/characters/mirova/front.svg"
  2083. }
  2084. }
  2085. },
  2086. [
  2087. {
  2088. name: "Small",
  2089. height: math.unit(5, "meters")
  2090. },
  2091. {
  2092. name: "Macro",
  2093. height: math.unit(900, "meters"),
  2094. default: true
  2095. },
  2096. {
  2097. name: "Megamacro",
  2098. height: math.unit(135, "km")
  2099. },
  2100. {
  2101. name: "Gigamacro",
  2102. height: math.unit(20000, "km")
  2103. }
  2104. ]
  2105. ))
  2106. characterMakers.push(() => makeCharacter(
  2107. { name: "Asana (Mech)" },
  2108. {
  2109. side: {
  2110. height: math.unit(28.35, "feet"),
  2111. weight: math.unit(99.75, "tons"),
  2112. name: "Side",
  2113. image: {
  2114. source: "./media/characters/asana-mech/side.svg"
  2115. }
  2116. }
  2117. },
  2118. [
  2119. {
  2120. name: "Normal",
  2121. height: math.unit(28.35, "feet"),
  2122. default: true
  2123. },
  2124. {
  2125. name: "Macro",
  2126. height: math.unit(2500, "feet")
  2127. },
  2128. {
  2129. name: "Megamacro",
  2130. height: math.unit(25, "miles")
  2131. },
  2132. {
  2133. name: "Examacro",
  2134. height: math.unit(6e8, "lightyears")
  2135. },
  2136. ]
  2137. ))
  2138. characterMakers.push(() => makeCharacter(
  2139. { name: "Ashtrek" },
  2140. {
  2141. front: {
  2142. height: math.unit(2, "meters"),
  2143. weight: math.unit(70, "kg"),
  2144. name: "Front",
  2145. image: {
  2146. source: "./media/characters/ashtrek/front.svg",
  2147. extra: 560 / 524,
  2148. bottom: 0.01
  2149. }
  2150. },
  2151. frontArmor: {
  2152. height: math.unit(2, "meters"),
  2153. weight: math.unit(76, "kg"),
  2154. name: "Front (Armor)",
  2155. image: {
  2156. source: "./media/characters/ashtrek/front-armor.svg",
  2157. extra: 561 / 527,
  2158. bottom: 0.01
  2159. }
  2160. },
  2161. side: {
  2162. height: math.unit(2, "meters"),
  2163. weight: math.unit(70, "kg"),
  2164. name: "Side",
  2165. image: {
  2166. source: "./media/characters/ashtrek/side.svg",
  2167. extra: 1717 / 1609,
  2168. bottom: 0.005
  2169. }
  2170. },
  2171. back: {
  2172. height: math.unit(2, "meters"),
  2173. weight: math.unit(70, "kg"),
  2174. name: "Back",
  2175. image: {
  2176. source: "./media/characters/ashtrek/back.svg",
  2177. extra: 1570 / 1501
  2178. }
  2179. },
  2180. },
  2181. [
  2182. {
  2183. name: "DEFCON 5",
  2184. height: math.unit(5, "meters")
  2185. },
  2186. {
  2187. name: "DEFCON 4",
  2188. height: math.unit(500, "meters"),
  2189. default: true
  2190. },
  2191. {
  2192. name: "DEFCON 3",
  2193. height: math.unit(5, "km")
  2194. },
  2195. {
  2196. name: "DEFCON 2",
  2197. height: math.unit(500, "km")
  2198. },
  2199. {
  2200. name: "DEFCON 1",
  2201. height: math.unit(500000, "km")
  2202. },
  2203. {
  2204. name: "DEFCON 0",
  2205. height: math.unit(3, "gigaparsecs")
  2206. },
  2207. ]
  2208. ))
  2209. characterMakers.push(() => makeCharacter(
  2210. { name: "Gale" },
  2211. {
  2212. front: {
  2213. height: math.unit(2, "meters"),
  2214. weight: math.unit(76, "kg"),
  2215. name: "Front",
  2216. image: {
  2217. source: "./media/characters/gale/front.svg"
  2218. }
  2219. },
  2220. frontAlt1: {
  2221. height: math.unit(2, "meters"),
  2222. weight: math.unit(76, "kg"),
  2223. name: "Front (Alt 1)",
  2224. image: {
  2225. source: "./media/characters/gale/front-alt-1.svg"
  2226. }
  2227. },
  2228. frontAlt2: {
  2229. height: math.unit(2, "meters"),
  2230. weight: math.unit(76, "kg"),
  2231. name: "Front (Alt 2)",
  2232. image: {
  2233. source: "./media/characters/gale/front-alt-2.svg"
  2234. }
  2235. },
  2236. },
  2237. [
  2238. {
  2239. name: "Normal",
  2240. height: math.unit(7, "feet")
  2241. },
  2242. {
  2243. name: "Macro",
  2244. height: math.unit(150, "feet"),
  2245. default: true
  2246. },
  2247. {
  2248. name: "Macro+",
  2249. height: math.unit(300, "feet")
  2250. },
  2251. ]
  2252. ))
  2253. characterMakers.push(() => makeCharacter(
  2254. { name: "Draylen" },
  2255. {
  2256. front: {
  2257. height: math.unit(2, "meters"),
  2258. weight: math.unit(76, "kg"),
  2259. name: "Front",
  2260. image: {
  2261. source: "./media/characters/draylen/front.svg"
  2262. }
  2263. }
  2264. },
  2265. [
  2266. {
  2267. name: "Macro",
  2268. height: math.unit(150, "feet"),
  2269. default: true
  2270. }
  2271. ]
  2272. ))
  2273. characterMakers.push(() => makeCharacter(
  2274. { name: "Chez" },
  2275. {
  2276. front: {
  2277. height: math.unit(7 + 9 / 12, "feet"),
  2278. weight: math.unit(379, "lbs"),
  2279. name: "Front",
  2280. image: {
  2281. source: "./media/characters/chez/front.svg"
  2282. }
  2283. },
  2284. side: {
  2285. height: math.unit(7 + 9 / 12, "feet"),
  2286. weight: math.unit(379, "lbs"),
  2287. name: "Side",
  2288. image: {
  2289. source: "./media/characters/chez/side.svg"
  2290. }
  2291. }
  2292. },
  2293. [
  2294. {
  2295. name: "Normal",
  2296. height: math.unit(7 + 9 / 12, "feet"),
  2297. default: true
  2298. },
  2299. {
  2300. name: "God King",
  2301. height: math.unit(9750000, "meters")
  2302. }
  2303. ]
  2304. ))
  2305. characterMakers.push(() => makeCharacter(
  2306. { name: "Kaylum" },
  2307. {
  2308. front: {
  2309. height: math.unit(6, "feet"),
  2310. weight: math.unit(275, "lbs"),
  2311. name: "Front",
  2312. image: {
  2313. source: "./media/characters/kaylum/front.svg",
  2314. bottom: 0.01,
  2315. extra: 1166 / 1031
  2316. }
  2317. },
  2318. frontWingless: {
  2319. height: math.unit(6, "feet"),
  2320. weight: math.unit(275, "lbs"),
  2321. name: "Front (Wingless)",
  2322. image: {
  2323. source: "./media/characters/kaylum/front-wingless.svg",
  2324. bottom: 0.01,
  2325. extra: 1117 / 1031
  2326. }
  2327. }
  2328. },
  2329. [
  2330. {
  2331. name: "Normal",
  2332. height: math.unit(3.05, "meters")
  2333. },
  2334. {
  2335. name: "Master",
  2336. height: math.unit(5.5, "meters")
  2337. },
  2338. {
  2339. name: "Rampage",
  2340. height: math.unit(19, "meters")
  2341. },
  2342. {
  2343. name: "Macro Lite",
  2344. height: math.unit(37, "meters")
  2345. },
  2346. {
  2347. name: "Hyper Predator",
  2348. height: math.unit(61, "meters")
  2349. },
  2350. {
  2351. name: "Macro",
  2352. height: math.unit(138, "meters"),
  2353. default: true
  2354. }
  2355. ]
  2356. ))
  2357. characterMakers.push(() => makeCharacter(
  2358. { name: "Geta" },
  2359. {
  2360. front: {
  2361. height: math.unit(6, "feet"),
  2362. weight: math.unit(150, "lbs"),
  2363. name: "Front",
  2364. image: {
  2365. source: "./media/characters/geta/front.svg"
  2366. }
  2367. }
  2368. },
  2369. [
  2370. {
  2371. name: "Micro",
  2372. height: math.unit(3, "inches"),
  2373. default: true
  2374. },
  2375. {
  2376. name: "Normal",
  2377. height: math.unit(5 + 5 / 12, "feet")
  2378. }
  2379. ]
  2380. ))
  2381. characterMakers.push(() => makeCharacter(
  2382. { name: "Tyrnn" },
  2383. {
  2384. front: {
  2385. height: math.unit(6, "feet"),
  2386. weight: math.unit(300, "lbs"),
  2387. name: "Front",
  2388. image: {
  2389. source: "./media/characters/tyrnn/front.svg"
  2390. }
  2391. }
  2392. },
  2393. [
  2394. {
  2395. name: "Main Height",
  2396. height: math.unit(355, "feet"),
  2397. default: true
  2398. },
  2399. {
  2400. name: "Fave. Height",
  2401. height: math.unit(2400, "feet")
  2402. }
  2403. ]
  2404. ))
  2405. characterMakers.push(() => makeCharacter(
  2406. { name: "Apple" },
  2407. {
  2408. front: {
  2409. height: math.unit(6, "feet"),
  2410. weight: math.unit(300, "lbs"),
  2411. name: "Front",
  2412. image: {
  2413. source: "./media/characters/appledectomy/front.svg"
  2414. }
  2415. }
  2416. },
  2417. [
  2418. {
  2419. name: "Macro",
  2420. height: math.unit(2500, "feet")
  2421. },
  2422. {
  2423. name: "Megamacro",
  2424. height: math.unit(50, "miles"),
  2425. default: true
  2426. },
  2427. {
  2428. name: "Gigamacro",
  2429. height: math.unit(5000, "miles")
  2430. },
  2431. {
  2432. name: "Teramacro",
  2433. height: math.unit(250000, "miles")
  2434. },
  2435. ]
  2436. ))
  2437. characterMakers.push(() => makeCharacter(
  2438. { name: "Vulpes" },
  2439. {
  2440. front: {
  2441. height: math.unit(6, "feet"),
  2442. weight: math.unit(200, "lbs"),
  2443. name: "Front",
  2444. image: {
  2445. source: "./media/characters/vulpes/front.svg",
  2446. extra: 573 / 543,
  2447. bottom: 0.033
  2448. }
  2449. },
  2450. side: {
  2451. height: math.unit(6, "feet"),
  2452. weight: math.unit(200, "lbs"),
  2453. name: "Side",
  2454. image: {
  2455. source: "./media/characters/vulpes/side.svg",
  2456. extra: 573 / 543,
  2457. bottom: 0.01
  2458. }
  2459. },
  2460. back: {
  2461. height: math.unit(6, "feet"),
  2462. weight: math.unit(200, "lbs"),
  2463. name: "Back",
  2464. image: {
  2465. source: "./media/characters/vulpes/back.svg",
  2466. extra: 573 / 543,
  2467. }
  2468. },
  2469. feet: {
  2470. height: math.unit(1.276, "feet"),
  2471. name: "Feet",
  2472. image: {
  2473. source: "./media/characters/vulpes/feet.svg"
  2474. }
  2475. },
  2476. maw: {
  2477. height: math.unit(1.18, "feet"),
  2478. name: "Maw",
  2479. image: {
  2480. source: "./media/characters/vulpes/maw.svg"
  2481. }
  2482. },
  2483. },
  2484. [
  2485. {
  2486. name: "Micro",
  2487. height: math.unit(2, "inches")
  2488. },
  2489. {
  2490. name: "Normal",
  2491. height: math.unit(6.3, "feet")
  2492. },
  2493. {
  2494. name: "Macro",
  2495. height: math.unit(850, "feet")
  2496. },
  2497. {
  2498. name: "Megamacro",
  2499. height: math.unit(7500, "feet"),
  2500. default: true
  2501. },
  2502. {
  2503. name: "Gigamacro",
  2504. height: math.unit(570000, "miles")
  2505. }
  2506. ]
  2507. ))
  2508. characterMakers.push(() => makeCharacter(
  2509. { name: "Rain Fallen" },
  2510. {
  2511. front: {
  2512. height: math.unit(6, "feet"),
  2513. weight: math.unit(210, "lbs"),
  2514. name: "Front",
  2515. image: {
  2516. source: "./media/characters/rain-fallen/front.svg"
  2517. }
  2518. },
  2519. side: {
  2520. height: math.unit(6, "feet"),
  2521. weight: math.unit(210, "lbs"),
  2522. name: "Side",
  2523. image: {
  2524. source: "./media/characters/rain-fallen/side.svg"
  2525. }
  2526. },
  2527. back: {
  2528. height: math.unit(6, "feet"),
  2529. weight: math.unit(210, "lbs"),
  2530. name: "Back",
  2531. image: {
  2532. source: "./media/characters/rain-fallen/back.svg"
  2533. }
  2534. },
  2535. feral: {
  2536. height: math.unit(9, "feet"),
  2537. weight: math.unit(700, "lbs"),
  2538. name: "Feral",
  2539. image: {
  2540. source: "./media/characters/rain-fallen/feral.svg"
  2541. }
  2542. },
  2543. },
  2544. [
  2545. {
  2546. name: "Normal",
  2547. height: math.unit(5, "meter")
  2548. },
  2549. {
  2550. name: "Macro",
  2551. height: math.unit(150, "meter"),
  2552. default: true
  2553. },
  2554. {
  2555. name: "Megamacro",
  2556. height: math.unit(278e6, "meter")
  2557. },
  2558. {
  2559. name: "Gigamacro",
  2560. height: math.unit(2e9, "meter")
  2561. },
  2562. {
  2563. name: "Teramacro",
  2564. height: math.unit(8e12, "meter")
  2565. },
  2566. {
  2567. name: "Devourer",
  2568. height: math.unit(14, "zettameters")
  2569. },
  2570. {
  2571. name: "Scarlet King",
  2572. height: math.unit(18, "yottameters")
  2573. },
  2574. {
  2575. name: "Void",
  2576. height: math.unit(6.66e66, "yottameters")
  2577. }
  2578. ]
  2579. ))
  2580. characterMakers.push(() => makeCharacter(
  2581. { name: "Zaakira" },
  2582. {
  2583. standing: {
  2584. height: math.unit(6, "feet"),
  2585. weight: math.unit(180, "lbs"),
  2586. name: "Standing",
  2587. image: {
  2588. source: "./media/characters/zaakira/standing.svg"
  2589. }
  2590. },
  2591. laying: {
  2592. height: math.unit(3, "feet"),
  2593. weight: math.unit(180, "lbs"),
  2594. name: "Laying",
  2595. image: {
  2596. source: "./media/characters/zaakira/laying.svg"
  2597. }
  2598. },
  2599. },
  2600. [
  2601. {
  2602. name: "Normal",
  2603. height: math.unit(12, "feet")
  2604. },
  2605. {
  2606. name: "Macro",
  2607. height: math.unit(279, "feet"),
  2608. default: true
  2609. }
  2610. ]
  2611. ))
  2612. characterMakers.push(() => makeCharacter(
  2613. { name: "Sigvald" },
  2614. {
  2615. front: {
  2616. height: math.unit(6, "feet"),
  2617. weight: math.unit(250, "lbs"),
  2618. name: "Front",
  2619. image: {
  2620. source: "./media/characters/sigvald/front.svg",
  2621. extra: 1000 / 850
  2622. }
  2623. },
  2624. back: {
  2625. height: math.unit(6, "feet"),
  2626. weight: math.unit(250, "lbs"),
  2627. name: "Back",
  2628. image: {
  2629. source: "./media/characters/sigvald/back.svg"
  2630. }
  2631. },
  2632. },
  2633. [
  2634. {
  2635. name: "Normal",
  2636. height: math.unit(8, "feet")
  2637. },
  2638. {
  2639. name: "Large",
  2640. height: math.unit(12, "feet")
  2641. },
  2642. {
  2643. name: "Larger",
  2644. height: math.unit(20, "feet")
  2645. },
  2646. {
  2647. name: "Macro",
  2648. height: math.unit(150, "feet")
  2649. },
  2650. {
  2651. name: "Macro+",
  2652. height: math.unit(200, "feet"),
  2653. default: true
  2654. },
  2655. ]
  2656. ))
  2657. characterMakers.push(() => makeCharacter(
  2658. { name: "Scott" },
  2659. {
  2660. side: {
  2661. height: math.unit(12, "feet"),
  2662. weight: math.unit(3000, "lbs"),
  2663. name: "Side",
  2664. image: {
  2665. source: "./media/characters/scott/side.svg",
  2666. extra: 1,
  2667. bottom: 0.069
  2668. }
  2669. },
  2670. upright: {
  2671. height: math.unit(12, "feet"),
  2672. weight: math.unit(3000, "lbs"),
  2673. name: "Upright",
  2674. image: {
  2675. source: "./media/characters/scott/upright.svg",
  2676. extra: 1,
  2677. bottom: 0.05
  2678. }
  2679. },
  2680. },
  2681. [
  2682. {
  2683. name: "Normal",
  2684. height: math.unit(12, "feet"),
  2685. default: true
  2686. },
  2687. ]
  2688. ))
  2689. characterMakers.push(() => makeCharacter(
  2690. { name: "Tobias" },
  2691. {
  2692. side: {
  2693. height: math.unit(8, "meters"),
  2694. weight: math.unit(84755, "lbs"),
  2695. name: "Side",
  2696. image: {
  2697. source: "./media/characters/tobias/side.svg",
  2698. extra: 1474 / 1096,
  2699. bottom: 38.9 / 1513.1235
  2700. }
  2701. },
  2702. },
  2703. [
  2704. {
  2705. name: "Normal",
  2706. height: math.unit(8, "meters"),
  2707. default: true
  2708. },
  2709. ]
  2710. ))
  2711. characterMakers.push(() => makeCharacter(
  2712. { name: "Kieran" },
  2713. {
  2714. front: {
  2715. height: math.unit(5.5, "feet"),
  2716. weight: math.unit(400, "lbs"),
  2717. name: "Front",
  2718. image: {
  2719. source: "./media/characters/kieran/front.svg",
  2720. extra: 2694/2364,
  2721. bottom: 217/2908
  2722. }
  2723. },
  2724. side: {
  2725. height: math.unit(5.5, "feet"),
  2726. weight: math.unit(400, "lbs"),
  2727. name: "Side",
  2728. image: {
  2729. source: "./media/characters/kieran/side.svg",
  2730. extra: 950 / 850
  2731. }
  2732. },
  2733. },
  2734. [
  2735. {
  2736. name: "Normal",
  2737. height: math.unit(5.5, "feet"),
  2738. default: true
  2739. },
  2740. ]
  2741. ))
  2742. characterMakers.push(() => makeCharacter(
  2743. { name: "Sanya" },
  2744. {
  2745. side: {
  2746. height: math.unit(2, "meters"),
  2747. weight: math.unit(70, "kg"),
  2748. name: "Side",
  2749. image: {
  2750. source: "./media/characters/sanya/side.svg",
  2751. bottom: 0.02,
  2752. extra: 1.02
  2753. }
  2754. },
  2755. },
  2756. [
  2757. {
  2758. name: "Small",
  2759. height: math.unit(2, "meters")
  2760. },
  2761. {
  2762. name: "Normal",
  2763. height: math.unit(3, "meters")
  2764. },
  2765. {
  2766. name: "Macro",
  2767. height: math.unit(16, "meters"),
  2768. default: true
  2769. },
  2770. ]
  2771. ))
  2772. characterMakers.push(() => makeCharacter(
  2773. { name: "Miranda" },
  2774. {
  2775. side: {
  2776. height: math.unit(2, "meters"),
  2777. weight: math.unit(120, "kg"),
  2778. name: "Front",
  2779. image: {
  2780. source: "./media/characters/miranda/front.svg",
  2781. extra: 10.6 / 10
  2782. }
  2783. },
  2784. },
  2785. [
  2786. {
  2787. name: "Normal",
  2788. height: math.unit(10, "feet"),
  2789. default: true
  2790. }
  2791. ]
  2792. ))
  2793. characterMakers.push(() => makeCharacter(
  2794. { name: "James" },
  2795. {
  2796. side: {
  2797. height: math.unit(2, "meters"),
  2798. weight: math.unit(100, "kg"),
  2799. name: "Front",
  2800. image: {
  2801. source: "./media/characters/james/front.svg",
  2802. extra: 10 / 8.5
  2803. }
  2804. },
  2805. },
  2806. [
  2807. {
  2808. name: "Normal",
  2809. height: math.unit(8.5, "feet"),
  2810. default: true
  2811. }
  2812. ]
  2813. ))
  2814. characterMakers.push(() => makeCharacter(
  2815. { name: "Heather" },
  2816. {
  2817. side: {
  2818. height: math.unit(9.5, "feet"),
  2819. weight: math.unit(2500, "lbs"),
  2820. name: "Side",
  2821. image: {
  2822. source: "./media/characters/heather/side.svg"
  2823. }
  2824. },
  2825. },
  2826. [
  2827. {
  2828. name: "Normal",
  2829. height: math.unit(9.5, "feet"),
  2830. default: true
  2831. }
  2832. ]
  2833. ))
  2834. characterMakers.push(() => makeCharacter(
  2835. { name: "Lukas" },
  2836. {
  2837. side: {
  2838. height: math.unit(6.5, "feet"),
  2839. weight: math.unit(400, "lbs"),
  2840. name: "Side",
  2841. image: {
  2842. source: "./media/characters/lukas/side.svg",
  2843. extra: 7.25 / 6.5
  2844. }
  2845. },
  2846. },
  2847. [
  2848. {
  2849. name: "Normal",
  2850. height: math.unit(6.5, "feet"),
  2851. default: true
  2852. }
  2853. ]
  2854. ))
  2855. characterMakers.push(() => makeCharacter(
  2856. { name: "Louise" },
  2857. {
  2858. side: {
  2859. height: math.unit(5, "feet"),
  2860. weight: math.unit(3000, "lbs"),
  2861. name: "Side",
  2862. image: {
  2863. source: "./media/characters/louise/side.svg"
  2864. }
  2865. },
  2866. },
  2867. [
  2868. {
  2869. name: "Normal",
  2870. height: math.unit(5, "feet"),
  2871. default: true
  2872. }
  2873. ]
  2874. ))
  2875. characterMakers.push(() => makeCharacter(
  2876. { name: "Ramona" },
  2877. {
  2878. side: {
  2879. height: math.unit(6, "feet"),
  2880. weight: math.unit(150, "lbs"),
  2881. name: "Side",
  2882. image: {
  2883. source: "./media/characters/ramona/side.svg"
  2884. }
  2885. },
  2886. },
  2887. [
  2888. {
  2889. name: "Normal",
  2890. height: math.unit(5.3, "meters"),
  2891. default: true
  2892. },
  2893. {
  2894. name: "Macro",
  2895. height: math.unit(20, "stories")
  2896. },
  2897. {
  2898. name: "Macro+",
  2899. height: math.unit(50, "stories")
  2900. },
  2901. ]
  2902. ))
  2903. characterMakers.push(() => makeCharacter(
  2904. { name: "Deerpuff" },
  2905. {
  2906. standing: {
  2907. height: math.unit(5.75, "feet"),
  2908. weight: math.unit(160, "lbs"),
  2909. name: "Standing",
  2910. image: {
  2911. source: "./media/characters/deerpuff/standing.svg",
  2912. extra: 682 / 624
  2913. }
  2914. },
  2915. sitting: {
  2916. height: math.unit(5.75 / 1.79, "feet"),
  2917. weight: math.unit(160, "lbs"),
  2918. name: "Sitting",
  2919. image: {
  2920. source: "./media/characters/deerpuff/sitting.svg",
  2921. bottom: 44 / 400,
  2922. extra: 1
  2923. }
  2924. },
  2925. taurLaying: {
  2926. height: math.unit(6, "feet"),
  2927. weight: math.unit(400, "lbs"),
  2928. name: "Taur (Laying)",
  2929. image: {
  2930. source: "./media/characters/deerpuff/taur-laying.svg"
  2931. }
  2932. },
  2933. },
  2934. [
  2935. {
  2936. name: "Puffball",
  2937. height: math.unit(6, "inches")
  2938. },
  2939. {
  2940. name: "Normalpuff",
  2941. height: math.unit(5.75, "feet")
  2942. },
  2943. {
  2944. name: "Macropuff",
  2945. height: math.unit(1500, "feet"),
  2946. default: true
  2947. },
  2948. {
  2949. name: "Megapuff",
  2950. height: math.unit(500, "miles")
  2951. },
  2952. {
  2953. name: "Gigapuff",
  2954. height: math.unit(250000, "miles")
  2955. },
  2956. {
  2957. name: "Omegapuff",
  2958. height: math.unit(1000, "lightyears")
  2959. },
  2960. ]
  2961. ))
  2962. characterMakers.push(() => makeCharacter(
  2963. { name: "Vivian" },
  2964. {
  2965. stomping: {
  2966. height: math.unit(6, "feet"),
  2967. weight: math.unit(170, "lbs"),
  2968. name: "Stomping",
  2969. image: {
  2970. source: "./media/characters/vivian/stomping.svg"
  2971. }
  2972. },
  2973. sitting: {
  2974. height: math.unit(6 / 1.75, "feet"),
  2975. weight: math.unit(170, "lbs"),
  2976. name: "Sitting",
  2977. image: {
  2978. source: "./media/characters/vivian/sitting.svg",
  2979. bottom: 1 / 6.4,
  2980. extra: 1,
  2981. }
  2982. },
  2983. },
  2984. [
  2985. {
  2986. name: "Normal",
  2987. height: math.unit(7, "feet"),
  2988. default: true
  2989. },
  2990. {
  2991. name: "Macro",
  2992. height: math.unit(10, "stories")
  2993. },
  2994. {
  2995. name: "Macro+",
  2996. height: math.unit(30, "stories")
  2997. },
  2998. {
  2999. name: "Megamacro",
  3000. height: math.unit(10, "miles")
  3001. },
  3002. {
  3003. name: "Megamacro+",
  3004. height: math.unit(2750000, "meters")
  3005. },
  3006. ]
  3007. ))
  3008. characterMakers.push(() => makeCharacter(
  3009. { name: "Prince" },
  3010. {
  3011. front: {
  3012. height: math.unit(6, "feet"),
  3013. weight: math.unit(160, "lbs"),
  3014. name: "Front",
  3015. image: {
  3016. source: "./media/characters/prince/front.svg",
  3017. extra: 3400 / 3000
  3018. }
  3019. },
  3020. jumping: {
  3021. height: math.unit(6, "feet"),
  3022. weight: math.unit(160, "lbs"),
  3023. name: "Jumping",
  3024. image: {
  3025. source: "./media/characters/prince/jump.svg",
  3026. extra: 2555 / 2134
  3027. }
  3028. },
  3029. },
  3030. [
  3031. {
  3032. name: "Normal",
  3033. height: math.unit(7.75, "feet"),
  3034. default: true
  3035. },
  3036. {
  3037. name: "Not cute",
  3038. height: math.unit(17, "feet")
  3039. },
  3040. {
  3041. name: "I said NOT",
  3042. height: math.unit(91, "feet")
  3043. },
  3044. {
  3045. name: "Please stop",
  3046. height: math.unit(560, "feet")
  3047. },
  3048. {
  3049. name: "What have you done",
  3050. height: math.unit(2200, "feet")
  3051. },
  3052. {
  3053. name: "Deer God",
  3054. height: math.unit(3.6, "miles")
  3055. },
  3056. ]
  3057. ))
  3058. characterMakers.push(() => makeCharacter(
  3059. { name: "Psymon" },
  3060. {
  3061. standing: {
  3062. height: math.unit(6, "feet"),
  3063. weight: math.unit(300, "lbs"),
  3064. name: "Standing",
  3065. image: {
  3066. source: "./media/characters/psymon/standing.svg",
  3067. extra: 1888 / 1810,
  3068. bottom: 0.05
  3069. }
  3070. },
  3071. slithering: {
  3072. height: math.unit(6, "feet"),
  3073. weight: math.unit(300, "lbs"),
  3074. name: "Slithering",
  3075. image: {
  3076. source: "./media/characters/psymon/slithering.svg",
  3077. extra: 1330 / 1224
  3078. }
  3079. },
  3080. slitheringAlt: {
  3081. height: math.unit(6, "feet"),
  3082. weight: math.unit(300, "lbs"),
  3083. name: "Slithering (Alt)",
  3084. image: {
  3085. source: "./media/characters/psymon/slithering-alt.svg",
  3086. extra: 1330 / 1224
  3087. }
  3088. },
  3089. },
  3090. [
  3091. {
  3092. name: "Normal",
  3093. height: math.unit(11.25, "feet"),
  3094. default: true
  3095. },
  3096. {
  3097. name: "Large",
  3098. height: math.unit(27, "feet")
  3099. },
  3100. {
  3101. name: "Giant",
  3102. height: math.unit(87, "feet")
  3103. },
  3104. {
  3105. name: "Macro",
  3106. height: math.unit(365, "feet")
  3107. },
  3108. {
  3109. name: "Megamacro",
  3110. height: math.unit(3, "miles")
  3111. },
  3112. {
  3113. name: "World Serpent",
  3114. height: math.unit(8000, "miles")
  3115. },
  3116. ]
  3117. ))
  3118. characterMakers.push(() => makeCharacter(
  3119. { name: "Daimos" },
  3120. {
  3121. front: {
  3122. height: math.unit(6, "feet"),
  3123. weight: math.unit(180, "lbs"),
  3124. name: "Front",
  3125. image: {
  3126. source: "./media/characters/daimos/front.svg",
  3127. extra: 4160 / 3897,
  3128. bottom: 0.021
  3129. }
  3130. }
  3131. },
  3132. [
  3133. {
  3134. name: "Normal",
  3135. height: math.unit(8, "feet"),
  3136. default: true
  3137. },
  3138. {
  3139. name: "Big Dog",
  3140. height: math.unit(22, "feet")
  3141. },
  3142. {
  3143. name: "Macro",
  3144. height: math.unit(127, "feet")
  3145. },
  3146. {
  3147. name: "Megamacro",
  3148. height: math.unit(3600, "feet")
  3149. },
  3150. ]
  3151. ))
  3152. characterMakers.push(() => makeCharacter(
  3153. { name: "Blake" },
  3154. {
  3155. side: {
  3156. height: math.unit(6, "feet"),
  3157. weight: math.unit(180, "lbs"),
  3158. name: "Side",
  3159. image: {
  3160. source: "./media/characters/blake/side.svg",
  3161. extra: 1212 / 1120,
  3162. bottom: 0.05
  3163. }
  3164. },
  3165. crouched: {
  3166. height: math.unit(6 * 0.57, "feet"),
  3167. weight: math.unit(180, "lbs"),
  3168. name: "Crouched",
  3169. image: {
  3170. source: "./media/characters/blake/crouched.svg",
  3171. extra: 840 / 587,
  3172. bottom: 0.04
  3173. }
  3174. },
  3175. bent: {
  3176. height: math.unit(6 * 0.75, "feet"),
  3177. weight: math.unit(180, "lbs"),
  3178. name: "Bent",
  3179. image: {
  3180. source: "./media/characters/blake/bent.svg",
  3181. extra: 592 / 544,
  3182. bottom: 0.035
  3183. }
  3184. },
  3185. },
  3186. [
  3187. {
  3188. name: "Normal",
  3189. height: math.unit(8 + 1 / 6, "feet"),
  3190. default: true
  3191. },
  3192. {
  3193. name: "Big Backside",
  3194. height: math.unit(37, "feet")
  3195. },
  3196. {
  3197. name: "Subway Shredder",
  3198. height: math.unit(72, "feet")
  3199. },
  3200. {
  3201. name: "City Carver",
  3202. height: math.unit(1675, "feet")
  3203. },
  3204. {
  3205. name: "Tectonic Tweaker",
  3206. height: math.unit(2300, "miles")
  3207. },
  3208. ]
  3209. ))
  3210. characterMakers.push(() => makeCharacter(
  3211. { name: "Guisetto" },
  3212. {
  3213. front: {
  3214. height: math.unit(6, "feet"),
  3215. weight: math.unit(180, "lbs"),
  3216. name: "Front",
  3217. image: {
  3218. source: "./media/characters/guisetto/front.svg",
  3219. extra: 856 / 817,
  3220. bottom: 0.06
  3221. }
  3222. },
  3223. airborne: {
  3224. height: math.unit(6, "feet"),
  3225. weight: math.unit(180, "lbs"),
  3226. name: "Airborne",
  3227. image: {
  3228. source: "./media/characters/guisetto/airborne.svg",
  3229. extra: 584 / 525
  3230. }
  3231. },
  3232. },
  3233. [
  3234. {
  3235. name: "Normal",
  3236. height: math.unit(10 + 11 / 12, "feet"),
  3237. default: true
  3238. },
  3239. {
  3240. name: "Large",
  3241. height: math.unit(35, "feet")
  3242. },
  3243. {
  3244. name: "Macro",
  3245. height: math.unit(475, "feet")
  3246. },
  3247. ]
  3248. ))
  3249. characterMakers.push(() => makeCharacter(
  3250. { name: "Luxor" },
  3251. {
  3252. front: {
  3253. height: math.unit(6, "feet"),
  3254. weight: math.unit(180, "lbs"),
  3255. name: "Front",
  3256. image: {
  3257. source: "./media/characters/luxor/front.svg",
  3258. extra: 2940 / 2152
  3259. }
  3260. },
  3261. back: {
  3262. height: math.unit(6, "feet"),
  3263. weight: math.unit(180, "lbs"),
  3264. name: "Back",
  3265. image: {
  3266. source: "./media/characters/luxor/back.svg",
  3267. extra: 1083 / 960
  3268. }
  3269. },
  3270. },
  3271. [
  3272. {
  3273. name: "Normal",
  3274. height: math.unit(5 + 5 / 6, "feet"),
  3275. default: true
  3276. },
  3277. {
  3278. name: "Lamp",
  3279. height: math.unit(50, "feet")
  3280. },
  3281. {
  3282. name: "Lämp",
  3283. height: math.unit(300, "feet")
  3284. },
  3285. {
  3286. name: "The sun is a lamp",
  3287. height: math.unit(250000, "miles")
  3288. },
  3289. ]
  3290. ))
  3291. characterMakers.push(() => makeCharacter(
  3292. { name: "Huoyan" },
  3293. {
  3294. front: {
  3295. height: math.unit(6, "feet"),
  3296. weight: math.unit(50, "lbs"),
  3297. name: "Front",
  3298. image: {
  3299. source: "./media/characters/huoyan/front.svg"
  3300. }
  3301. },
  3302. side: {
  3303. height: math.unit(6, "feet"),
  3304. weight: math.unit(180, "lbs"),
  3305. name: "Side",
  3306. image: {
  3307. source: "./media/characters/huoyan/side.svg"
  3308. }
  3309. },
  3310. },
  3311. [
  3312. {
  3313. name: "Chef",
  3314. height: math.unit(9, "feet")
  3315. },
  3316. {
  3317. name: "Normal",
  3318. height: math.unit(65, "feet"),
  3319. default: true
  3320. },
  3321. {
  3322. name: "Macro",
  3323. height: math.unit(780, "feet")
  3324. },
  3325. {
  3326. name: "Flaming Mountain",
  3327. height: math.unit(4.8, "miles")
  3328. },
  3329. {
  3330. name: "Celestial",
  3331. height: math.unit(765000, "miles")
  3332. },
  3333. ]
  3334. ))
  3335. characterMakers.push(() => makeCharacter(
  3336. { name: "Tails" },
  3337. {
  3338. front: {
  3339. height: math.unit(5 + 3 / 4, "feet"),
  3340. weight: math.unit(120, "lbs"),
  3341. name: "Front",
  3342. image: {
  3343. source: "./media/characters/tails/front.svg"
  3344. }
  3345. }
  3346. },
  3347. [
  3348. {
  3349. name: "Normal",
  3350. height: math.unit(5 + 3 / 4, "feet"),
  3351. default: true
  3352. }
  3353. ]
  3354. ))
  3355. characterMakers.push(() => makeCharacter(
  3356. { name: "Rainy" },
  3357. {
  3358. front: {
  3359. height: math.unit(4, "feet"),
  3360. weight: math.unit(50, "lbs"),
  3361. name: "Front",
  3362. image: {
  3363. source: "./media/characters/rainy/front.svg"
  3364. }
  3365. }
  3366. },
  3367. [
  3368. {
  3369. name: "Macro",
  3370. height: math.unit(800, "feet"),
  3371. default: true
  3372. }
  3373. ]
  3374. ))
  3375. characterMakers.push(() => makeCharacter(
  3376. { name: "Rainier" },
  3377. {
  3378. front: {
  3379. height: math.unit(6, "feet"),
  3380. weight: math.unit(150, "lbs"),
  3381. name: "Front",
  3382. image: {
  3383. source: "./media/characters/rainier/front.svg"
  3384. }
  3385. }
  3386. },
  3387. [
  3388. {
  3389. name: "Micro",
  3390. height: math.unit(2, "mm"),
  3391. default: true
  3392. }
  3393. ]
  3394. ))
  3395. characterMakers.push(() => makeCharacter(
  3396. { name: "Andy" },
  3397. {
  3398. front: {
  3399. height: math.unit(6, "feet"),
  3400. weight: math.unit(180, "lbs"),
  3401. name: "Front",
  3402. image: {
  3403. source: "./media/characters/andy/front.svg"
  3404. }
  3405. }
  3406. },
  3407. [
  3408. {
  3409. name: "Normal",
  3410. height: math.unit(8, "feet"),
  3411. default: true
  3412. },
  3413. {
  3414. name: "Macro",
  3415. height: math.unit(1000, "feet")
  3416. },
  3417. {
  3418. name: "Megamacro",
  3419. height: math.unit(5, "miles")
  3420. },
  3421. {
  3422. name: "Gigamacro",
  3423. height: math.unit(5000, "miles")
  3424. },
  3425. ]
  3426. ))
  3427. characterMakers.push(() => makeCharacter(
  3428. { name: "Cimmaron" },
  3429. {
  3430. frontClothed: {
  3431. height: math.unit(6, "feet"),
  3432. weight: math.unit(210, "lbs"),
  3433. name: "Front (Clothed)",
  3434. image: {
  3435. source: "./media/characters/cimmaron/front-clothed.svg",
  3436. extra: 701 / 676,
  3437. bottom: 0.046
  3438. }
  3439. },
  3440. backClothed: {
  3441. height: math.unit(6, "feet"),
  3442. weight: math.unit(210, "lbs"),
  3443. name: "Back (Clothed)",
  3444. image: {
  3445. source: "./media/characters/cimmaron/back-clothed.svg",
  3446. extra: 701 / 676,
  3447. bottom: 0.046
  3448. }
  3449. },
  3450. frontNude: {
  3451. height: math.unit(6, "feet"),
  3452. weight: math.unit(210, "lbs"),
  3453. name: "Front (Nude)",
  3454. image: {
  3455. source: "./media/characters/cimmaron/front-nude.svg",
  3456. extra: 701 / 676,
  3457. bottom: 0.046
  3458. }
  3459. },
  3460. backNude: {
  3461. height: math.unit(6, "feet"),
  3462. weight: math.unit(210, "lbs"),
  3463. name: "Back (Nude)",
  3464. image: {
  3465. source: "./media/characters/cimmaron/back-nude.svg",
  3466. extra: 701 / 676,
  3467. bottom: 0.046
  3468. }
  3469. }
  3470. },
  3471. [
  3472. {
  3473. name: "Normal",
  3474. height: math.unit(6, "feet"),
  3475. default: true
  3476. },
  3477. {
  3478. name: "Macro Mayor",
  3479. height: math.unit(350, "meters")
  3480. },
  3481. ]
  3482. ))
  3483. characterMakers.push(() => makeCharacter(
  3484. { name: "Akari Kaen" },
  3485. {
  3486. front: {
  3487. height: math.unit(6, "feet"),
  3488. weight: math.unit(200, "lbs"),
  3489. name: "Front",
  3490. image: {
  3491. source: "./media/characters/akari/front.svg",
  3492. extra: 962 / 901,
  3493. bottom: 0.04
  3494. }
  3495. }
  3496. },
  3497. [
  3498. {
  3499. name: "Micro",
  3500. height: math.unit(5, "inches"),
  3501. default: true
  3502. },
  3503. {
  3504. name: "Normal",
  3505. height: math.unit(7, "feet")
  3506. },
  3507. ]
  3508. ))
  3509. characterMakers.push(() => makeCharacter(
  3510. { name: "Cynosura" },
  3511. {
  3512. front: {
  3513. height: math.unit(6, "feet"),
  3514. weight: math.unit(140, "lbs"),
  3515. name: "Front",
  3516. image: {
  3517. source: "./media/characters/cynosura/front.svg",
  3518. extra: 896 / 847
  3519. }
  3520. },
  3521. back: {
  3522. height: math.unit(6, "feet"),
  3523. weight: math.unit(140, "lbs"),
  3524. name: "Back",
  3525. image: {
  3526. source: "./media/characters/cynosura/back.svg",
  3527. extra: 1365 / 1250
  3528. }
  3529. },
  3530. },
  3531. [
  3532. {
  3533. name: "Micro",
  3534. height: math.unit(4, "inches")
  3535. },
  3536. {
  3537. name: "Normal",
  3538. height: math.unit(5.75, "feet"),
  3539. default: true
  3540. },
  3541. {
  3542. name: "Tall",
  3543. height: math.unit(10, "feet")
  3544. },
  3545. {
  3546. name: "Big",
  3547. height: math.unit(20, "feet")
  3548. },
  3549. {
  3550. name: "Macro",
  3551. height: math.unit(50, "feet")
  3552. },
  3553. ]
  3554. ))
  3555. characterMakers.push(() => makeCharacter(
  3556. { name: "Gin" },
  3557. {
  3558. front: {
  3559. height: math.unit(6, "feet"),
  3560. weight: math.unit(170, "lbs"),
  3561. name: "Front",
  3562. image: {
  3563. source: "./media/characters/gin/front.svg",
  3564. extra: 1.053,
  3565. bottom: 0.025
  3566. }
  3567. },
  3568. foot: {
  3569. height: math.unit(6 / 4.25, "feet"),
  3570. name: "Foot",
  3571. image: {
  3572. source: "./media/characters/gin/foot.svg"
  3573. }
  3574. },
  3575. sole: {
  3576. height: math.unit(6 / 4.40, "feet"),
  3577. name: "Sole",
  3578. image: {
  3579. source: "./media/characters/gin/sole.svg"
  3580. }
  3581. },
  3582. },
  3583. [
  3584. {
  3585. name: "Normal",
  3586. height: math.unit(9 + 4 / 12, "feet")
  3587. },
  3588. {
  3589. name: "Macro",
  3590. height: math.unit(1500, "feet")
  3591. },
  3592. {
  3593. name: "Megamacro",
  3594. height: math.unit(200, "miles"),
  3595. default: true
  3596. },
  3597. {
  3598. name: "Gigamacro",
  3599. height: math.unit(500, "megameters")
  3600. },
  3601. {
  3602. name: "Teramacro",
  3603. height: math.unit(15, "lightyears")
  3604. }
  3605. ]
  3606. ))
  3607. characterMakers.push(() => makeCharacter(
  3608. { name: "Guy" },
  3609. {
  3610. front: {
  3611. height: math.unit(6 + 1 / 6, "feet"),
  3612. weight: math.unit(178, "lbs"),
  3613. name: "Front",
  3614. image: {
  3615. source: "./media/characters/guy/front.svg"
  3616. }
  3617. }
  3618. },
  3619. [
  3620. {
  3621. name: "Normal",
  3622. height: math.unit(6 + 1 / 6, "feet"),
  3623. default: true
  3624. },
  3625. {
  3626. name: "Large",
  3627. height: math.unit(25 + 7 / 12, "feet")
  3628. },
  3629. {
  3630. name: "Macro",
  3631. height: math.unit(60 + 9 / 12, "feet")
  3632. },
  3633. {
  3634. name: "Macro+",
  3635. height: math.unit(246, "feet")
  3636. },
  3637. {
  3638. name: "Macro++",
  3639. height: math.unit(878, "feet")
  3640. }
  3641. ]
  3642. ))
  3643. characterMakers.push(() => makeCharacter(
  3644. { name: "Tiberius" },
  3645. {
  3646. front: {
  3647. height: math.unit(9, "feet"),
  3648. weight: math.unit(800, "lbs"),
  3649. name: "Front",
  3650. image: {
  3651. source: "./media/characters/tiberius/front.svg",
  3652. extra: 2295 / 2071
  3653. }
  3654. },
  3655. back: {
  3656. height: math.unit(9, "feet"),
  3657. weight: math.unit(800, "lbs"),
  3658. name: "Back",
  3659. image: {
  3660. source: "./media/characters/tiberius/back.svg",
  3661. extra: 2373 / 2160
  3662. }
  3663. },
  3664. },
  3665. [
  3666. {
  3667. name: "Normal",
  3668. height: math.unit(9, "feet"),
  3669. default: true
  3670. }
  3671. ]
  3672. ))
  3673. characterMakers.push(() => makeCharacter(
  3674. { name: "Surgo" },
  3675. {
  3676. front: {
  3677. height: math.unit(6, "feet"),
  3678. weight: math.unit(600, "lbs"),
  3679. name: "Front",
  3680. image: {
  3681. source: "./media/characters/surgo/front.svg",
  3682. extra: 3591 / 2227
  3683. }
  3684. },
  3685. back: {
  3686. height: math.unit(6, "feet"),
  3687. weight: math.unit(600, "lbs"),
  3688. name: "Back",
  3689. image: {
  3690. source: "./media/characters/surgo/back.svg",
  3691. extra: 3557 / 2228
  3692. }
  3693. },
  3694. laying: {
  3695. height: math.unit(6 * 0.85, "feet"),
  3696. weight: math.unit(600, "lbs"),
  3697. name: "Laying",
  3698. image: {
  3699. source: "./media/characters/surgo/laying.svg"
  3700. }
  3701. },
  3702. },
  3703. [
  3704. {
  3705. name: "Normal",
  3706. height: math.unit(6, "feet"),
  3707. default: true
  3708. }
  3709. ]
  3710. ))
  3711. characterMakers.push(() => makeCharacter(
  3712. { name: "Cibus" },
  3713. {
  3714. side: {
  3715. height: math.unit(6, "feet"),
  3716. weight: math.unit(150, "lbs"),
  3717. name: "Side",
  3718. image: {
  3719. source: "./media/characters/cibus/side.svg",
  3720. extra: 800 / 400
  3721. }
  3722. },
  3723. },
  3724. [
  3725. {
  3726. name: "Normal",
  3727. height: math.unit(6, "feet"),
  3728. default: true
  3729. }
  3730. ]
  3731. ))
  3732. characterMakers.push(() => makeCharacter(
  3733. { name: "Nibbles" },
  3734. {
  3735. front: {
  3736. height: math.unit(6, "feet"),
  3737. weight: math.unit(240, "lbs"),
  3738. name: "Front",
  3739. image: {
  3740. source: "./media/characters/nibbles/front.svg"
  3741. }
  3742. },
  3743. side: {
  3744. height: math.unit(6, "feet"),
  3745. weight: math.unit(240, "lbs"),
  3746. name: "Side",
  3747. image: {
  3748. source: "./media/characters/nibbles/side.svg"
  3749. }
  3750. },
  3751. },
  3752. [
  3753. {
  3754. name: "Normal",
  3755. height: math.unit(9, "feet"),
  3756. default: true
  3757. }
  3758. ]
  3759. ))
  3760. characterMakers.push(() => makeCharacter(
  3761. { name: "Rikky" },
  3762. {
  3763. side: {
  3764. height: math.unit(5 + 1 / 6, "feet"),
  3765. weight: math.unit(130, "lbs"),
  3766. name: "Side",
  3767. image: {
  3768. source: "./media/characters/rikky/side.svg"
  3769. }
  3770. },
  3771. },
  3772. [
  3773. {
  3774. name: "Normal",
  3775. height: math.unit(5 + 1 / 6, "feet")
  3776. },
  3777. {
  3778. name: "Macro",
  3779. height: math.unit(152, "feet"),
  3780. default: true
  3781. },
  3782. {
  3783. name: "Megamacro",
  3784. height: math.unit(7, "miles")
  3785. }
  3786. ]
  3787. ))
  3788. characterMakers.push(() => makeCharacter(
  3789. { name: "Malfressa" },
  3790. {
  3791. side: {
  3792. height: math.unit(370, "cm"),
  3793. weight: math.unit(350, "lbs"),
  3794. name: "Side",
  3795. image: {
  3796. source: "./media/characters/malfressa/side.svg"
  3797. }
  3798. },
  3799. walking: {
  3800. height: math.unit(370, "cm"),
  3801. weight: math.unit(350, "lbs"),
  3802. name: "Walking",
  3803. image: {
  3804. source: "./media/characters/malfressa/walking.svg"
  3805. }
  3806. },
  3807. feral: {
  3808. height: math.unit(2500, "cm"),
  3809. weight: math.unit(100000, "lbs"),
  3810. name: "Feral",
  3811. image: {
  3812. source: "./media/characters/malfressa/feral.svg",
  3813. extra: 2108 / 837,
  3814. bottom: 0.02
  3815. }
  3816. },
  3817. },
  3818. [
  3819. {
  3820. name: "Normal",
  3821. height: math.unit(370, "cm")
  3822. },
  3823. {
  3824. name: "Macro",
  3825. height: math.unit(300, "meters"),
  3826. default: true
  3827. }
  3828. ]
  3829. ))
  3830. characterMakers.push(() => makeCharacter(
  3831. { name: "Jaro" },
  3832. {
  3833. front: {
  3834. height: math.unit(6, "feet"),
  3835. weight: math.unit(60, "kg"),
  3836. name: "Front",
  3837. image: {
  3838. source: "./media/characters/jaro/front.svg"
  3839. }
  3840. },
  3841. back: {
  3842. height: math.unit(6, "feet"),
  3843. weight: math.unit(60, "kg"),
  3844. name: "Back",
  3845. image: {
  3846. source: "./media/characters/jaro/back.svg"
  3847. }
  3848. },
  3849. },
  3850. [
  3851. {
  3852. name: "Micro",
  3853. height: math.unit(7, "inches")
  3854. },
  3855. {
  3856. name: "Normal",
  3857. height: math.unit(5.5, "feet"),
  3858. default: true
  3859. },
  3860. {
  3861. name: "Minimacro",
  3862. height: math.unit(20, "feet")
  3863. },
  3864. {
  3865. name: "Macro",
  3866. height: math.unit(200, "meters")
  3867. }
  3868. ]
  3869. ))
  3870. characterMakers.push(() => makeCharacter(
  3871. { name: "Rogue" },
  3872. {
  3873. front: {
  3874. height: math.unit(6, "feet"),
  3875. weight: math.unit(195, "lb"),
  3876. name: "Front",
  3877. image: {
  3878. source: "./media/characters/rogue/front.svg"
  3879. }
  3880. },
  3881. },
  3882. [
  3883. {
  3884. name: "Macro",
  3885. height: math.unit(90, "feet"),
  3886. default: true
  3887. },
  3888. ]
  3889. ))
  3890. characterMakers.push(() => makeCharacter(
  3891. { name: "Piper" },
  3892. {
  3893. front: {
  3894. height: math.unit(5 + 8 / 12, "feet"),
  3895. weight: math.unit(140, "lb"),
  3896. name: "Front",
  3897. image: {
  3898. source: "./media/characters/piper/front.svg",
  3899. extra: 3928 / 3681
  3900. }
  3901. },
  3902. },
  3903. [
  3904. {
  3905. name: "Micro",
  3906. height: math.unit(2, "inches")
  3907. },
  3908. {
  3909. name: "Normal",
  3910. height: math.unit(5 + 8 / 12, "feet")
  3911. },
  3912. {
  3913. name: "Macro",
  3914. height: math.unit(250, "feet"),
  3915. default: true
  3916. },
  3917. {
  3918. name: "Megamacro",
  3919. height: math.unit(7, "miles")
  3920. },
  3921. ]
  3922. ))
  3923. characterMakers.push(() => makeCharacter(
  3924. { name: "Gemini" },
  3925. {
  3926. front: {
  3927. height: math.unit(6, "feet"),
  3928. weight: math.unit(220, "lb"),
  3929. name: "Front",
  3930. image: {
  3931. source: "./media/characters/gemini/front.svg"
  3932. }
  3933. },
  3934. back: {
  3935. height: math.unit(6, "feet"),
  3936. weight: math.unit(220, "lb"),
  3937. name: "Back",
  3938. image: {
  3939. source: "./media/characters/gemini/back.svg"
  3940. }
  3941. },
  3942. kneeling: {
  3943. height: math.unit(6 / 1.5, "feet"),
  3944. weight: math.unit(220, "lb"),
  3945. name: "Kneeling",
  3946. image: {
  3947. source: "./media/characters/gemini/kneeling.svg",
  3948. bottom: 0.02
  3949. }
  3950. },
  3951. },
  3952. [
  3953. {
  3954. name: "Macro",
  3955. height: math.unit(300, "meters"),
  3956. default: true
  3957. },
  3958. {
  3959. name: "Megamacro",
  3960. height: math.unit(6900, "meters")
  3961. },
  3962. ]
  3963. ))
  3964. characterMakers.push(() => makeCharacter(
  3965. { name: "Alicia" },
  3966. {
  3967. anthro: {
  3968. height: math.unit(2.35, "meters"),
  3969. weight: math.unit(73, "kg"),
  3970. name: "Anthro",
  3971. image: {
  3972. source: "./media/characters/alicia/anthro.svg"
  3973. }
  3974. },
  3975. feral: {
  3976. height: math.unit(1.69, "meters"),
  3977. weight: math.unit(73, "kg"),
  3978. name: "Feral",
  3979. image: {
  3980. source: "./media/characters/alicia/feral.svg"
  3981. }
  3982. },
  3983. },
  3984. [
  3985. {
  3986. name: "Normal",
  3987. height: math.unit(2.35, "meters")
  3988. },
  3989. {
  3990. name: "Macro",
  3991. height: math.unit(60, "meters"),
  3992. default: true
  3993. },
  3994. {
  3995. name: "Megamacro",
  3996. height: math.unit(10000, "kilometers")
  3997. },
  3998. ]
  3999. ))
  4000. characterMakers.push(() => makeCharacter(
  4001. { name: "Archy" },
  4002. {
  4003. front: {
  4004. height: math.unit(7, "feet"),
  4005. weight: math.unit(250, "lbs"),
  4006. name: "Front",
  4007. image: {
  4008. source: "./media/characters/archy/front.svg"
  4009. }
  4010. }
  4011. },
  4012. [
  4013. {
  4014. name: "Micro",
  4015. height: math.unit(1, "inch")
  4016. },
  4017. {
  4018. name: "Shorty",
  4019. height: math.unit(5, "feet")
  4020. },
  4021. {
  4022. name: "Normal",
  4023. height: math.unit(7, "feet")
  4024. },
  4025. {
  4026. name: "Macro",
  4027. height: math.unit(600, "meters"),
  4028. default: true
  4029. },
  4030. {
  4031. name: "Megamacro",
  4032. height: math.unit(1, "mile")
  4033. },
  4034. ]
  4035. ))
  4036. characterMakers.push(() => makeCharacter(
  4037. { name: "Berri" },
  4038. {
  4039. front: {
  4040. height: math.unit(1.65, "meters"),
  4041. weight: math.unit(74, "kg"),
  4042. name: "Front",
  4043. image: {
  4044. source: "./media/characters/berri/front.svg"
  4045. }
  4046. }
  4047. },
  4048. [
  4049. {
  4050. name: "Normal",
  4051. height: math.unit(1.65, "meters")
  4052. },
  4053. {
  4054. name: "Macro",
  4055. height: math.unit(60, "m"),
  4056. default: true
  4057. },
  4058. {
  4059. name: "Megamacro",
  4060. height: math.unit(9.213, "km")
  4061. },
  4062. {
  4063. name: "Planet Eater",
  4064. height: math.unit(489, "megameters")
  4065. },
  4066. {
  4067. name: "Teramacro",
  4068. height: math.unit(2471635000000, "meters")
  4069. },
  4070. {
  4071. name: "Examacro",
  4072. height: math.unit(8.0624e+26, "meters")
  4073. }
  4074. ]
  4075. ))
  4076. characterMakers.push(() => makeCharacter(
  4077. { name: "Lexi" },
  4078. {
  4079. front: {
  4080. height: math.unit(1.72, "meters"),
  4081. weight: math.unit(68, "kg"),
  4082. name: "Front",
  4083. image: {
  4084. source: "./media/characters/lexi/front.svg"
  4085. }
  4086. }
  4087. },
  4088. [
  4089. {
  4090. name: "Very Smol",
  4091. height: math.unit(10, "mm")
  4092. },
  4093. {
  4094. name: "Micro",
  4095. height: math.unit(6.8, "cm"),
  4096. default: true
  4097. },
  4098. {
  4099. name: "Normal",
  4100. height: math.unit(1.72, "m")
  4101. }
  4102. ]
  4103. ))
  4104. characterMakers.push(() => makeCharacter(
  4105. { name: "Martin" },
  4106. {
  4107. front: {
  4108. height: math.unit(1.69, "meters"),
  4109. weight: math.unit(68, "kg"),
  4110. name: "Front",
  4111. image: {
  4112. source: "./media/characters/martin/front.svg",
  4113. extra: 596 / 581
  4114. }
  4115. }
  4116. },
  4117. [
  4118. {
  4119. name: "Micro",
  4120. height: math.unit(6.85, "cm"),
  4121. default: true
  4122. },
  4123. {
  4124. name: "Normal",
  4125. height: math.unit(1.69, "m")
  4126. }
  4127. ]
  4128. ))
  4129. characterMakers.push(() => makeCharacter(
  4130. { name: "Juno" },
  4131. {
  4132. front: {
  4133. height: math.unit(1.69, "meters"),
  4134. weight: math.unit(68, "kg"),
  4135. name: "Front",
  4136. image: {
  4137. source: "./media/characters/juno/front.svg"
  4138. }
  4139. }
  4140. },
  4141. [
  4142. {
  4143. name: "Micro",
  4144. height: math.unit(7, "cm")
  4145. },
  4146. {
  4147. name: "Normal",
  4148. height: math.unit(1.89, "m")
  4149. },
  4150. {
  4151. name: "Macro",
  4152. height: math.unit(353, "meters"),
  4153. default: true
  4154. }
  4155. ]
  4156. ))
  4157. characterMakers.push(() => makeCharacter(
  4158. { name: "Samantha" },
  4159. {
  4160. front: {
  4161. height: math.unit(1.93, "meters"),
  4162. weight: math.unit(83, "kg"),
  4163. name: "Front",
  4164. image: {
  4165. source: "./media/characters/samantha/front.svg"
  4166. }
  4167. },
  4168. frontClothed: {
  4169. height: math.unit(1.93, "meters"),
  4170. weight: math.unit(83, "kg"),
  4171. name: "Front (Clothed)",
  4172. image: {
  4173. source: "./media/characters/samantha/front-clothed.svg"
  4174. }
  4175. },
  4176. back: {
  4177. height: math.unit(1.93, "meters"),
  4178. weight: math.unit(83, "kg"),
  4179. name: "Back",
  4180. image: {
  4181. source: "./media/characters/samantha/back.svg"
  4182. }
  4183. },
  4184. },
  4185. [
  4186. {
  4187. name: "Normal",
  4188. height: math.unit(1.93, "m")
  4189. },
  4190. {
  4191. name: "Macro",
  4192. height: math.unit(74, "meters"),
  4193. default: true
  4194. },
  4195. {
  4196. name: "Macro+",
  4197. height: math.unit(223, "meters"),
  4198. },
  4199. {
  4200. name: "Megamacro",
  4201. height: math.unit(8381, "meters"),
  4202. },
  4203. {
  4204. name: "Megamacro+",
  4205. height: math.unit(12000, "kilometers")
  4206. },
  4207. ]
  4208. ))
  4209. characterMakers.push(() => makeCharacter(
  4210. { name: "Dr. Clay" },
  4211. {
  4212. front: {
  4213. height: math.unit(1.92, "meters"),
  4214. weight: math.unit(80, "kg"),
  4215. name: "Front",
  4216. image: {
  4217. source: "./media/characters/dr-clay/front.svg"
  4218. }
  4219. },
  4220. frontClothed: {
  4221. height: math.unit(1.92, "meters"),
  4222. weight: math.unit(80, "kg"),
  4223. name: "Front (Clothed)",
  4224. image: {
  4225. source: "./media/characters/dr-clay/front-clothed.svg"
  4226. }
  4227. }
  4228. },
  4229. [
  4230. {
  4231. name: "Normal",
  4232. height: math.unit(1.92, "m")
  4233. },
  4234. {
  4235. name: "Macro",
  4236. height: math.unit(214, "meters"),
  4237. default: true
  4238. },
  4239. {
  4240. name: "Macro+",
  4241. height: math.unit(12.237, "meters"),
  4242. },
  4243. {
  4244. name: "Megamacro",
  4245. height: math.unit(557, "megameters"),
  4246. },
  4247. {
  4248. name: "Unimaginable",
  4249. height: math.unit(120e9, "lightyears")
  4250. },
  4251. ]
  4252. ))
  4253. characterMakers.push(() => makeCharacter(
  4254. { name: "Wyvrn Ripsnarl" },
  4255. {
  4256. front: {
  4257. height: math.unit(2, "meters"),
  4258. weight: math.unit(80, "kg"),
  4259. name: "Front",
  4260. image: {
  4261. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4262. }
  4263. }
  4264. },
  4265. [
  4266. {
  4267. name: "Teramacro",
  4268. height: math.unit(500000, "lightyears"),
  4269. default: true
  4270. },
  4271. ]
  4272. ))
  4273. characterMakers.push(() => makeCharacter(
  4274. { name: "Vemus" },
  4275. {
  4276. front: {
  4277. height: math.unit(2, "meters"),
  4278. weight: math.unit(150, "kg"),
  4279. name: "Front",
  4280. image: {
  4281. source: "./media/characters/vemus/front.svg",
  4282. extra: 2384 / 2084,
  4283. bottom: 0.0123
  4284. }
  4285. }
  4286. },
  4287. [
  4288. {
  4289. name: "Normal",
  4290. height: math.unit(3.75, "meters"),
  4291. default: true
  4292. },
  4293. {
  4294. name: "Big",
  4295. height: math.unit(8, "meters")
  4296. },
  4297. {
  4298. name: "Macro",
  4299. height: math.unit(100, "meters")
  4300. },
  4301. {
  4302. name: "Macro+",
  4303. height: math.unit(1500, "meters")
  4304. },
  4305. {
  4306. name: "Stellar",
  4307. height: math.unit(14e8, "meters")
  4308. },
  4309. ]
  4310. ))
  4311. characterMakers.push(() => makeCharacter(
  4312. { name: "Beherit" },
  4313. {
  4314. front: {
  4315. height: math.unit(2, "meters"),
  4316. weight: math.unit(70, "kg"),
  4317. name: "Front",
  4318. image: {
  4319. source: "./media/characters/beherit/front.svg",
  4320. extra: 1408 / 1242
  4321. }
  4322. }
  4323. },
  4324. [
  4325. {
  4326. name: "Normal",
  4327. height: math.unit(6, "feet")
  4328. },
  4329. {
  4330. name: "Lorg",
  4331. height: math.unit(25, "feet"),
  4332. default: true
  4333. },
  4334. {
  4335. name: "Lorger",
  4336. height: math.unit(75, "feet")
  4337. },
  4338. {
  4339. name: "Macro",
  4340. height: math.unit(200, "meters")
  4341. },
  4342. ]
  4343. ))
  4344. characterMakers.push(() => makeCharacter(
  4345. { name: "Everett" },
  4346. {
  4347. front: {
  4348. height: math.unit(2, "meters"),
  4349. weight: math.unit(150, "kg"),
  4350. name: "Front",
  4351. image: {
  4352. source: "./media/characters/everett/front.svg",
  4353. extra: 2038 / 1737,
  4354. bottom: 0.03
  4355. }
  4356. },
  4357. paw: {
  4358. height: math.unit(2 / 3.6, "meters"),
  4359. name: "Paw",
  4360. image: {
  4361. source: "./media/characters/everett/paw.svg"
  4362. }
  4363. },
  4364. },
  4365. [
  4366. {
  4367. name: "Normal",
  4368. height: math.unit(15, "feet"),
  4369. default: true
  4370. },
  4371. {
  4372. name: "Lorg",
  4373. height: math.unit(70, "feet"),
  4374. default: true
  4375. },
  4376. {
  4377. name: "Lorger",
  4378. height: math.unit(250, "feet")
  4379. },
  4380. {
  4381. name: "Macro",
  4382. height: math.unit(500, "meters")
  4383. },
  4384. ]
  4385. ))
  4386. characterMakers.push(() => makeCharacter(
  4387. { name: "Rose Lion" },
  4388. {
  4389. front: {
  4390. height: math.unit(2, "meters"),
  4391. weight: math.unit(86, "kg"),
  4392. name: "Front",
  4393. image: {
  4394. source: "./media/characters/rose-lion/front.svg"
  4395. }
  4396. },
  4397. bent: {
  4398. height: math.unit(2 / 1.4288, "meters"),
  4399. weight: math.unit(86, "kg"),
  4400. name: "Bent",
  4401. image: {
  4402. source: "./media/characters/rose-lion/bent.svg"
  4403. }
  4404. }
  4405. },
  4406. [
  4407. {
  4408. name: "Mini-Micro",
  4409. height: math.unit(1, "cm")
  4410. },
  4411. {
  4412. name: "Micro",
  4413. height: math.unit(3.5, "inches"),
  4414. default: true
  4415. },
  4416. {
  4417. name: "Normal",
  4418. height: math.unit(6 + 1 / 6, "feet")
  4419. },
  4420. {
  4421. name: "Mini-Macro",
  4422. height: math.unit(9 + 10 / 12, "feet")
  4423. },
  4424. ]
  4425. ))
  4426. characterMakers.push(() => makeCharacter(
  4427. { name: "Regal" },
  4428. {
  4429. front: {
  4430. height: math.unit(2, "meters"),
  4431. weight: math.unit(350, "lbs"),
  4432. name: "Front",
  4433. image: {
  4434. source: "./media/characters/regal/front.svg"
  4435. }
  4436. },
  4437. back: {
  4438. height: math.unit(2, "meters"),
  4439. weight: math.unit(350, "lbs"),
  4440. name: "Back",
  4441. image: {
  4442. source: "./media/characters/regal/back.svg"
  4443. }
  4444. },
  4445. },
  4446. [
  4447. {
  4448. name: "Macro",
  4449. height: math.unit(350, "feet"),
  4450. default: true
  4451. }
  4452. ]
  4453. ))
  4454. characterMakers.push(() => makeCharacter(
  4455. { name: "Opal" },
  4456. {
  4457. front: {
  4458. height: math.unit(4 + 11 / 12, "feet"),
  4459. weight: math.unit(100, "lbs"),
  4460. name: "Front",
  4461. image: {
  4462. source: "./media/characters/opal/front.svg"
  4463. }
  4464. },
  4465. frontAlt: {
  4466. height: math.unit(4 + 11 / 12, "feet"),
  4467. weight: math.unit(100, "lbs"),
  4468. name: "Front (Alt)",
  4469. image: {
  4470. source: "./media/characters/opal/front-alt.svg"
  4471. }
  4472. },
  4473. },
  4474. [
  4475. {
  4476. name: "Small",
  4477. height: math.unit(4 + 11 / 12, "feet")
  4478. },
  4479. {
  4480. name: "Normal",
  4481. height: math.unit(20, "feet"),
  4482. default: true
  4483. },
  4484. {
  4485. name: "Macro",
  4486. height: math.unit(120, "feet")
  4487. },
  4488. {
  4489. name: "Megamacro",
  4490. height: math.unit(80, "miles")
  4491. },
  4492. {
  4493. name: "True Size",
  4494. height: math.unit(100000, "lightyears")
  4495. },
  4496. ]
  4497. ))
  4498. characterMakers.push(() => makeCharacter(
  4499. { name: "Vector Wuff" },
  4500. {
  4501. front: {
  4502. height: math.unit(6, "feet"),
  4503. weight: math.unit(200, "lbs"),
  4504. name: "Front",
  4505. image: {
  4506. source: "./media/characters/vector-wuff/front.svg"
  4507. }
  4508. }
  4509. },
  4510. [
  4511. {
  4512. name: "Normal",
  4513. height: math.unit(2.8, "meters")
  4514. },
  4515. {
  4516. name: "Macro",
  4517. height: math.unit(450, "meters"),
  4518. default: true
  4519. },
  4520. {
  4521. name: "Megamacro",
  4522. height: math.unit(15, "kilometers")
  4523. }
  4524. ]
  4525. ))
  4526. characterMakers.push(() => makeCharacter(
  4527. { name: "Dannik" },
  4528. {
  4529. front: {
  4530. height: math.unit(6, "feet"),
  4531. weight: math.unit(256, "lbs"),
  4532. name: "Front",
  4533. image: {
  4534. source: "./media/characters/dannik/front.svg"
  4535. }
  4536. }
  4537. },
  4538. [
  4539. {
  4540. name: "Macro",
  4541. height: math.unit(69.57, "meters"),
  4542. default: true
  4543. },
  4544. ]
  4545. ))
  4546. characterMakers.push(() => makeCharacter(
  4547. { name: "Azura Saharah" },
  4548. {
  4549. front: {
  4550. height: math.unit(6, "feet"),
  4551. weight: math.unit(120, "lbs"),
  4552. name: "Front",
  4553. image: {
  4554. source: "./media/characters/azura-saharah/front.svg"
  4555. }
  4556. },
  4557. back: {
  4558. height: math.unit(6, "feet"),
  4559. weight: math.unit(120, "lbs"),
  4560. name: "Back",
  4561. image: {
  4562. source: "./media/characters/azura-saharah/back.svg"
  4563. }
  4564. },
  4565. },
  4566. [
  4567. {
  4568. name: "Macro",
  4569. height: math.unit(100, "feet"),
  4570. default: true
  4571. },
  4572. ]
  4573. ))
  4574. characterMakers.push(() => makeCharacter(
  4575. { name: "Kennedy" },
  4576. {
  4577. side: {
  4578. height: math.unit(5 + 4 / 12, "feet"),
  4579. weight: math.unit(163, "lbs"),
  4580. name: "Side",
  4581. image: {
  4582. source: "./media/characters/kennedy/side.svg"
  4583. }
  4584. }
  4585. },
  4586. [
  4587. {
  4588. name: "Standard Doggo",
  4589. height: math.unit(5 + 4 / 12, "feet")
  4590. },
  4591. {
  4592. name: "Big Doggo",
  4593. height: math.unit(25 + 3 / 12, "feet"),
  4594. default: true
  4595. },
  4596. ]
  4597. ))
  4598. characterMakers.push(() => makeCharacter(
  4599. { name: "Odi Lunar" },
  4600. {
  4601. front: {
  4602. height: math.unit(6, "feet"),
  4603. weight: math.unit(90, "lbs"),
  4604. name: "Front",
  4605. image: {
  4606. source: "./media/characters/odi-lunar/front.svg"
  4607. }
  4608. }
  4609. },
  4610. [
  4611. {
  4612. name: "Micro",
  4613. height: math.unit(3, "inches"),
  4614. default: true
  4615. },
  4616. {
  4617. name: "Normal",
  4618. height: math.unit(5.5, "feet")
  4619. }
  4620. ]
  4621. ))
  4622. characterMakers.push(() => makeCharacter(
  4623. { name: "Mandake" },
  4624. {
  4625. back: {
  4626. height: math.unit(6, "feet"),
  4627. weight: math.unit(220, "lbs"),
  4628. name: "Back",
  4629. image: {
  4630. source: "./media/characters/mandake/back.svg"
  4631. }
  4632. }
  4633. },
  4634. [
  4635. {
  4636. name: "Normal",
  4637. height: math.unit(7, "feet"),
  4638. default: true
  4639. },
  4640. {
  4641. name: "Macro",
  4642. height: math.unit(78, "feet")
  4643. },
  4644. {
  4645. name: "Macro+",
  4646. height: math.unit(300, "meters")
  4647. },
  4648. {
  4649. name: "Macro++",
  4650. height: math.unit(2400, "feet")
  4651. },
  4652. {
  4653. name: "Megamacro",
  4654. height: math.unit(5167, "meters")
  4655. },
  4656. {
  4657. name: "Gigamacro",
  4658. height: math.unit(41769, "miles")
  4659. },
  4660. ]
  4661. ))
  4662. characterMakers.push(() => makeCharacter(
  4663. { name: "Yozey" },
  4664. {
  4665. front: {
  4666. height: math.unit(6, "feet"),
  4667. weight: math.unit(120, "lbs"),
  4668. name: "Front",
  4669. image: {
  4670. source: "./media/characters/yozey/front.svg"
  4671. }
  4672. },
  4673. frontAlt: {
  4674. height: math.unit(6, "feet"),
  4675. weight: math.unit(120, "lbs"),
  4676. name: "Front (Alt)",
  4677. image: {
  4678. source: "./media/characters/yozey/front-alt.svg"
  4679. }
  4680. },
  4681. side: {
  4682. height: math.unit(6, "feet"),
  4683. weight: math.unit(120, "lbs"),
  4684. name: "Side",
  4685. image: {
  4686. source: "./media/characters/yozey/side.svg"
  4687. }
  4688. },
  4689. },
  4690. [
  4691. {
  4692. name: "Micro",
  4693. height: math.unit(3, "inches"),
  4694. default: true
  4695. },
  4696. {
  4697. name: "Normal",
  4698. height: math.unit(6, "feet")
  4699. }
  4700. ]
  4701. ))
  4702. characterMakers.push(() => makeCharacter(
  4703. { name: "Valeska Voss" },
  4704. {
  4705. front: {
  4706. height: math.unit(6, "feet"),
  4707. weight: math.unit(103, "lbs"),
  4708. name: "Front",
  4709. image: {
  4710. source: "./media/characters/valeska-voss/front.svg"
  4711. }
  4712. }
  4713. },
  4714. [
  4715. {
  4716. name: "Mini-Sized Sub",
  4717. height: math.unit(3.1, "inches")
  4718. },
  4719. {
  4720. name: "Mid-Sized Sub",
  4721. height: math.unit(6.2, "inches")
  4722. },
  4723. {
  4724. name: "Full-Sized Sub",
  4725. height: math.unit(9.3, "inches")
  4726. },
  4727. {
  4728. name: "Normal",
  4729. height: math.unit(5 + 2 / 12, "foot"),
  4730. default: true
  4731. },
  4732. ]
  4733. ))
  4734. characterMakers.push(() => makeCharacter(
  4735. { name: "Gene Zeta" },
  4736. {
  4737. front: {
  4738. height: math.unit(6, "feet"),
  4739. weight: math.unit(160, "lbs"),
  4740. name: "Front",
  4741. image: {
  4742. source: "./media/characters/gene-zeta/front.svg",
  4743. bottom: 0.03,
  4744. extra: 1
  4745. }
  4746. }
  4747. },
  4748. [
  4749. {
  4750. name: "Normal",
  4751. height: math.unit(6.25, "foot"),
  4752. default: true
  4753. },
  4754. ]
  4755. ))
  4756. characterMakers.push(() => makeCharacter(
  4757. { name: "Razinox" },
  4758. {
  4759. front: {
  4760. height: math.unit(6, "feet"),
  4761. weight: math.unit(350, "lbs"),
  4762. name: "Front",
  4763. image: {
  4764. source: "./media/characters/razinox/front.svg",
  4765. extra: 1686 / 1548
  4766. }
  4767. },
  4768. back: {
  4769. height: math.unit(6, "feet"),
  4770. weight: math.unit(350, "lbs"),
  4771. name: "Back",
  4772. image: {
  4773. source: "./media/characters/razinox/back.svg",
  4774. extra: 1660 / 1590
  4775. }
  4776. },
  4777. },
  4778. [
  4779. {
  4780. name: "Normal",
  4781. height: math.unit(10 + 8 / 12, "foot")
  4782. },
  4783. {
  4784. name: "Minimacro",
  4785. height: math.unit(15, "foot")
  4786. },
  4787. {
  4788. name: "Macro",
  4789. height: math.unit(60, "foot"),
  4790. default: true
  4791. },
  4792. {
  4793. name: "Megamacro",
  4794. height: math.unit(5, "miles")
  4795. },
  4796. {
  4797. name: "Gigamacro",
  4798. height: math.unit(6000, "miles")
  4799. },
  4800. ]
  4801. ))
  4802. characterMakers.push(() => makeCharacter(
  4803. { name: "Cobalt" },
  4804. {
  4805. front: {
  4806. height: math.unit(6, "feet"),
  4807. weight: math.unit(150, "lbs"),
  4808. name: "Front",
  4809. image: {
  4810. source: "./media/characters/cobalt/front.svg"
  4811. }
  4812. }
  4813. },
  4814. [
  4815. {
  4816. name: "Normal",
  4817. height: math.unit(8 + 1 / 12, "foot")
  4818. },
  4819. {
  4820. name: "Macro",
  4821. height: math.unit(111, "foot"),
  4822. default: true
  4823. },
  4824. {
  4825. name: "Supracosmic",
  4826. height: math.unit(1e42, "feet")
  4827. },
  4828. ]
  4829. ))
  4830. characterMakers.push(() => makeCharacter(
  4831. { name: "Amanda" },
  4832. {
  4833. front: {
  4834. height: math.unit(6, "feet"),
  4835. weight: math.unit(140, "lbs"),
  4836. name: "Front",
  4837. image: {
  4838. source: "./media/characters/amanda/front.svg"
  4839. }
  4840. }
  4841. },
  4842. [
  4843. {
  4844. name: "Micro",
  4845. height: math.unit(5, "inches"),
  4846. default: true
  4847. },
  4848. ]
  4849. ))
  4850. characterMakers.push(() => makeCharacter(
  4851. { name: "Teal" },
  4852. {
  4853. front: {
  4854. height: math.unit(5.59, "feet"),
  4855. weight: math.unit(250, "lbs"),
  4856. name: "Front",
  4857. image: {
  4858. source: "./media/characters/teal/front.svg"
  4859. }
  4860. },
  4861. frontAlt: {
  4862. height: math.unit(6, "feet"),
  4863. weight: math.unit(250, "lbs"),
  4864. name: "Front (Alt)",
  4865. image: {
  4866. source: "./media/characters/teal/front-alt.svg",
  4867. bottom: 0.04,
  4868. extra: 1
  4869. }
  4870. },
  4871. },
  4872. [
  4873. {
  4874. name: "Normal",
  4875. height: math.unit(12, "feet"),
  4876. default: true
  4877. },
  4878. {
  4879. name: "Macro",
  4880. height: math.unit(300, "feet")
  4881. },
  4882. ]
  4883. ))
  4884. characterMakers.push(() => makeCharacter(
  4885. { name: "Ravin Amulet" },
  4886. {
  4887. frontCat: {
  4888. height: math.unit(6, "feet"),
  4889. weight: math.unit(180, "lbs"),
  4890. name: "Front (Cat)",
  4891. image: {
  4892. source: "./media/characters/ravin-amulet/front-cat.svg"
  4893. }
  4894. },
  4895. frontCatAlt: {
  4896. height: math.unit(6, "feet"),
  4897. weight: math.unit(180, "lbs"),
  4898. name: "Front (Alt, Cat)",
  4899. image: {
  4900. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  4901. }
  4902. },
  4903. frontWerewolf: {
  4904. height: math.unit(6 * 1.2, "feet"),
  4905. weight: math.unit(225, "lbs"),
  4906. name: "Front (Werewolf)",
  4907. image: {
  4908. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  4909. }
  4910. },
  4911. backWerewolf: {
  4912. height: math.unit(6 * 1.2, "feet"),
  4913. weight: math.unit(225, "lbs"),
  4914. name: "Back (Werewolf)",
  4915. image: {
  4916. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  4917. }
  4918. },
  4919. },
  4920. [
  4921. {
  4922. name: "Nano",
  4923. height: math.unit(1, "micrometer")
  4924. },
  4925. {
  4926. name: "Micro",
  4927. height: math.unit(1, "inch")
  4928. },
  4929. {
  4930. name: "Normal",
  4931. height: math.unit(6, "feet"),
  4932. default: true
  4933. },
  4934. {
  4935. name: "Macro",
  4936. height: math.unit(60, "feet")
  4937. }
  4938. ]
  4939. ))
  4940. characterMakers.push(() => makeCharacter(
  4941. { name: "Fluoresce" },
  4942. {
  4943. front: {
  4944. height: math.unit(6, "feet"),
  4945. weight: math.unit(165, "lbs"),
  4946. name: "Front",
  4947. image: {
  4948. source: "./media/characters/fluoresce/front.svg"
  4949. }
  4950. }
  4951. },
  4952. [
  4953. {
  4954. name: "Micro",
  4955. height: math.unit(6, "cm")
  4956. },
  4957. {
  4958. name: "Normal",
  4959. height: math.unit(5 + 7 / 12, "feet"),
  4960. default: true
  4961. },
  4962. {
  4963. name: "Macro",
  4964. height: math.unit(56, "feet")
  4965. },
  4966. {
  4967. name: "Megamacro",
  4968. height: math.unit(1.9, "miles")
  4969. },
  4970. ]
  4971. ))
  4972. characterMakers.push(() => makeCharacter(
  4973. { name: "Aurora" },
  4974. {
  4975. front: {
  4976. height: math.unit(9 + 6 / 12, "feet"),
  4977. weight: math.unit(523, "lbs"),
  4978. name: "Side",
  4979. image: {
  4980. source: "./media/characters/aurora/side.svg"
  4981. }
  4982. }
  4983. },
  4984. [
  4985. {
  4986. name: "Normal",
  4987. height: math.unit(9 + 6 / 12, "feet")
  4988. },
  4989. {
  4990. name: "Macro",
  4991. height: math.unit(96, "feet"),
  4992. default: true
  4993. },
  4994. {
  4995. name: "Macro+",
  4996. height: math.unit(243, "feet")
  4997. },
  4998. ]
  4999. ))
  5000. characterMakers.push(() => makeCharacter(
  5001. { name: "Ranek" },
  5002. {
  5003. front: {
  5004. height: math.unit(194, "cm"),
  5005. weight: math.unit(90, "kg"),
  5006. name: "Front",
  5007. image: {
  5008. source: "./media/characters/ranek/front.svg"
  5009. }
  5010. },
  5011. side: {
  5012. height: math.unit(194, "cm"),
  5013. weight: math.unit(90, "kg"),
  5014. name: "Side",
  5015. image: {
  5016. source: "./media/characters/ranek/side.svg"
  5017. }
  5018. },
  5019. back: {
  5020. height: math.unit(194, "cm"),
  5021. weight: math.unit(90, "kg"),
  5022. name: "Back",
  5023. image: {
  5024. source: "./media/characters/ranek/back.svg"
  5025. }
  5026. },
  5027. feral: {
  5028. height: math.unit(30, "cm"),
  5029. weight: math.unit(1.6, "lbs"),
  5030. name: "Feral",
  5031. image: {
  5032. source: "./media/characters/ranek/feral.svg"
  5033. }
  5034. },
  5035. },
  5036. [
  5037. {
  5038. name: "Normal",
  5039. height: math.unit(194, "cm"),
  5040. default: true
  5041. },
  5042. {
  5043. name: "Macro",
  5044. height: math.unit(100, "meters")
  5045. },
  5046. ]
  5047. ))
  5048. characterMakers.push(() => makeCharacter(
  5049. { name: "Andrew Cooper" },
  5050. {
  5051. front: {
  5052. height: math.unit(5 + 6 / 12, "feet"),
  5053. weight: math.unit(153, "lbs"),
  5054. name: "Front",
  5055. image: {
  5056. source: "./media/characters/andrew-cooper/front.svg"
  5057. }
  5058. },
  5059. },
  5060. [
  5061. {
  5062. name: "Nano",
  5063. height: math.unit(1, "mm")
  5064. },
  5065. {
  5066. name: "Micro",
  5067. height: math.unit(2, "inches")
  5068. },
  5069. {
  5070. name: "Normal",
  5071. height: math.unit(5 + 6 / 12, "feet"),
  5072. default: true
  5073. }
  5074. ]
  5075. ))
  5076. characterMakers.push(() => makeCharacter(
  5077. { name: "Akane Sato" },
  5078. {
  5079. front: {
  5080. height: math.unit(6, "feet"),
  5081. weight: math.unit(180, "lbs"),
  5082. name: "Front",
  5083. image: {
  5084. source: "./media/characters/akane-sato/front.svg",
  5085. extra: 1219 / 1140
  5086. }
  5087. },
  5088. back: {
  5089. height: math.unit(6, "feet"),
  5090. weight: math.unit(180, "lbs"),
  5091. name: "Back",
  5092. image: {
  5093. source: "./media/characters/akane-sato/back.svg",
  5094. extra: 1219 / 1170
  5095. }
  5096. },
  5097. },
  5098. [
  5099. {
  5100. name: "Normal",
  5101. height: math.unit(2.5, "meters")
  5102. },
  5103. {
  5104. name: "Macro",
  5105. height: math.unit(250, "meters"),
  5106. default: true
  5107. },
  5108. {
  5109. name: "Megamacro",
  5110. height: math.unit(25, "km")
  5111. },
  5112. ]
  5113. ))
  5114. characterMakers.push(() => makeCharacter(
  5115. { name: "Rook" },
  5116. {
  5117. front: {
  5118. height: math.unit(6, "feet"),
  5119. weight: math.unit(65, "kg"),
  5120. name: "Front",
  5121. image: {
  5122. source: "./media/characters/rook/front.svg"
  5123. }
  5124. }
  5125. },
  5126. [
  5127. {
  5128. name: "Normal",
  5129. height: math.unit(8.8, "feet")
  5130. },
  5131. {
  5132. name: "Macro",
  5133. height: math.unit(88, "feet"),
  5134. default: true
  5135. },
  5136. {
  5137. name: "Megamacro",
  5138. height: math.unit(8, "miles")
  5139. },
  5140. ]
  5141. ))
  5142. characterMakers.push(() => makeCharacter(
  5143. { name: "Prodigy" },
  5144. {
  5145. front: {
  5146. height: math.unit(12 + 2 / 12, "feet"),
  5147. weight: math.unit(808, "lbs"),
  5148. name: "Front",
  5149. image: {
  5150. source: "./media/characters/prodigy/front.svg"
  5151. }
  5152. }
  5153. },
  5154. [
  5155. {
  5156. name: "Normal",
  5157. height: math.unit(12 + 2 / 12, "feet"),
  5158. default: true
  5159. },
  5160. {
  5161. name: "Macro",
  5162. height: math.unit(143, "feet")
  5163. },
  5164. {
  5165. name: "Macro+",
  5166. height: math.unit(400, "feet")
  5167. },
  5168. ]
  5169. ))
  5170. characterMakers.push(() => makeCharacter(
  5171. { name: "Daniel" },
  5172. {
  5173. front: {
  5174. height: math.unit(6, "feet"),
  5175. weight: math.unit(225, "lbs"),
  5176. name: "Front",
  5177. image: {
  5178. source: "./media/characters/daniel/front.svg"
  5179. }
  5180. },
  5181. leaning: {
  5182. height: math.unit(6, "feet"),
  5183. weight: math.unit(225, "lbs"),
  5184. name: "Leaning",
  5185. image: {
  5186. source: "./media/characters/daniel/leaning.svg"
  5187. }
  5188. },
  5189. },
  5190. [
  5191. {
  5192. name: "Macro",
  5193. height: math.unit(1000, "feet"),
  5194. default: true
  5195. },
  5196. ]
  5197. ))
  5198. characterMakers.push(() => makeCharacter(
  5199. { name: "Chiros" },
  5200. {
  5201. front: {
  5202. height: math.unit(6, "feet"),
  5203. weight: math.unit(88, "lbs"),
  5204. name: "Front",
  5205. image: {
  5206. source: "./media/characters/chiros/front.svg",
  5207. extra: 306 / 226
  5208. }
  5209. },
  5210. side: {
  5211. height: math.unit(6, "feet"),
  5212. weight: math.unit(88, "lbs"),
  5213. name: "Side",
  5214. image: {
  5215. source: "./media/characters/chiros/side.svg",
  5216. extra: 306 / 226
  5217. }
  5218. },
  5219. },
  5220. [
  5221. {
  5222. name: "Normal",
  5223. height: math.unit(6, "cm"),
  5224. default: true
  5225. },
  5226. ]
  5227. ))
  5228. characterMakers.push(() => makeCharacter(
  5229. { name: "Selka" },
  5230. {
  5231. front: {
  5232. height: math.unit(6, "feet"),
  5233. weight: math.unit(100, "lbs"),
  5234. name: "Front",
  5235. image: {
  5236. source: "./media/characters/selka/front.svg",
  5237. extra: 947 / 887
  5238. }
  5239. }
  5240. },
  5241. [
  5242. {
  5243. name: "Normal",
  5244. height: math.unit(5, "cm"),
  5245. default: true
  5246. },
  5247. ]
  5248. ))
  5249. characterMakers.push(() => makeCharacter(
  5250. { name: "Verin" },
  5251. {
  5252. front: {
  5253. height: math.unit(8 + 3 / 12, "feet"),
  5254. weight: math.unit(424, "lbs"),
  5255. name: "Front",
  5256. image: {
  5257. source: "./media/characters/verin/front.svg",
  5258. extra: 1845 / 1550
  5259. }
  5260. },
  5261. frontArmored: {
  5262. height: math.unit(8 + 3 / 12, "feet"),
  5263. weight: math.unit(424, "lbs"),
  5264. name: "Front (Armored)",
  5265. image: {
  5266. source: "./media/characters/verin/front-armor.svg",
  5267. extra: 1845 / 1550,
  5268. bottom: 0.01
  5269. }
  5270. },
  5271. back: {
  5272. height: math.unit(8 + 3 / 12, "feet"),
  5273. weight: math.unit(424, "lbs"),
  5274. name: "Back",
  5275. image: {
  5276. source: "./media/characters/verin/back.svg",
  5277. bottom: 0.1,
  5278. extra: 1
  5279. }
  5280. },
  5281. foot: {
  5282. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5283. name: "Foot",
  5284. image: {
  5285. source: "./media/characters/verin/foot.svg"
  5286. }
  5287. },
  5288. },
  5289. [
  5290. {
  5291. name: "Normal",
  5292. height: math.unit(8 + 3 / 12, "feet")
  5293. },
  5294. {
  5295. name: "Minimacro",
  5296. height: math.unit(21, "feet"),
  5297. default: true
  5298. },
  5299. {
  5300. name: "Macro",
  5301. height: math.unit(626, "feet")
  5302. },
  5303. ]
  5304. ))
  5305. characterMakers.push(() => makeCharacter(
  5306. { name: "Sovrim Terraquian" },
  5307. {
  5308. front: {
  5309. height: math.unit(2.718, "meters"),
  5310. weight: math.unit(150, "lbs"),
  5311. name: "Front",
  5312. image: {
  5313. source: "./media/characters/sovrim-terraquian/front.svg"
  5314. }
  5315. },
  5316. back: {
  5317. height: math.unit(2.718, "meters"),
  5318. weight: math.unit(150, "lbs"),
  5319. name: "Back",
  5320. image: {
  5321. source: "./media/characters/sovrim-terraquian/back.svg"
  5322. }
  5323. }
  5324. },
  5325. [
  5326. {
  5327. name: "Micro",
  5328. height: math.unit(2, "inches")
  5329. },
  5330. {
  5331. name: "Small",
  5332. height: math.unit(1, "meter")
  5333. },
  5334. {
  5335. name: "Normal",
  5336. height: math.unit(Math.E, "meters"),
  5337. default: true
  5338. },
  5339. {
  5340. name: "Macro",
  5341. height: math.unit(20, "meters")
  5342. },
  5343. {
  5344. name: "Macro+",
  5345. height: math.unit(400, "meters")
  5346. },
  5347. ]
  5348. ))
  5349. characterMakers.push(() => makeCharacter(
  5350. { name: "Reece Silvermane" },
  5351. {
  5352. front: {
  5353. height: math.unit(7, "feet"),
  5354. weight: math.unit(489, "lbs"),
  5355. name: "Front",
  5356. image: {
  5357. source: "./media/characters/reece-silvermane/front.svg",
  5358. bottom: 0.02,
  5359. extra: 1
  5360. }
  5361. },
  5362. },
  5363. [
  5364. {
  5365. name: "Macro",
  5366. height: math.unit(1.5, "miles"),
  5367. default: true
  5368. },
  5369. ]
  5370. ))
  5371. characterMakers.push(() => makeCharacter(
  5372. { name: "Kane" },
  5373. {
  5374. front: {
  5375. height: math.unit(6, "feet"),
  5376. weight: math.unit(78, "kg"),
  5377. name: "Front",
  5378. image: {
  5379. source: "./media/characters/kane/front.svg",
  5380. extra: 978 / 899
  5381. }
  5382. },
  5383. },
  5384. [
  5385. {
  5386. name: "Normal",
  5387. height: math.unit(2.1, "m"),
  5388. },
  5389. {
  5390. name: "Macro",
  5391. height: math.unit(1, "km"),
  5392. default: true
  5393. },
  5394. ]
  5395. ))
  5396. characterMakers.push(() => makeCharacter(
  5397. { name: "Tegon" },
  5398. {
  5399. front: {
  5400. height: math.unit(6, "feet"),
  5401. weight: math.unit(200, "kg"),
  5402. name: "Front",
  5403. image: {
  5404. source: "./media/characters/tegon/front.svg",
  5405. bottom: 0.01,
  5406. extra: 1
  5407. }
  5408. },
  5409. },
  5410. [
  5411. {
  5412. name: "Micro",
  5413. height: math.unit(1, "inch")
  5414. },
  5415. {
  5416. name: "Normal",
  5417. height: math.unit(6 + 3 / 12, "feet"),
  5418. default: true
  5419. },
  5420. {
  5421. name: "Macro",
  5422. height: math.unit(300, "feet")
  5423. },
  5424. {
  5425. name: "Megamacro",
  5426. height: math.unit(69, "miles")
  5427. },
  5428. ]
  5429. ))
  5430. characterMakers.push(() => makeCharacter(
  5431. { name: "Arcturax" },
  5432. {
  5433. side: {
  5434. height: math.unit(6, "feet"),
  5435. weight: math.unit(2304, "lbs"),
  5436. name: "Side",
  5437. image: {
  5438. source: "./media/characters/arcturax/side.svg",
  5439. extra: 790 / 376,
  5440. bottom: 0.01
  5441. }
  5442. },
  5443. },
  5444. [
  5445. {
  5446. name: "Micro",
  5447. height: math.unit(2, "inch")
  5448. },
  5449. {
  5450. name: "Normal",
  5451. height: math.unit(6, "feet")
  5452. },
  5453. {
  5454. name: "Macro",
  5455. height: math.unit(39, "feet"),
  5456. default: true
  5457. },
  5458. {
  5459. name: "Megamacro",
  5460. height: math.unit(7, "miles")
  5461. },
  5462. ]
  5463. ))
  5464. characterMakers.push(() => makeCharacter(
  5465. { name: "Sentri" },
  5466. {
  5467. front: {
  5468. height: math.unit(6, "feet"),
  5469. weight: math.unit(50, "lbs"),
  5470. name: "Front",
  5471. image: {
  5472. source: "./media/characters/sentri/front.svg",
  5473. extra: 1750 / 1570,
  5474. bottom: 0.025
  5475. }
  5476. },
  5477. frontAlt: {
  5478. height: math.unit(6, "feet"),
  5479. weight: math.unit(50, "lbs"),
  5480. name: "Front (Alt)",
  5481. image: {
  5482. source: "./media/characters/sentri/front-alt.svg",
  5483. extra: 1750 / 1570,
  5484. bottom: 0.025
  5485. }
  5486. },
  5487. },
  5488. [
  5489. {
  5490. name: "Normal",
  5491. height: math.unit(15, "feet"),
  5492. default: true
  5493. },
  5494. {
  5495. name: "Macro",
  5496. height: math.unit(2500, "feet")
  5497. }
  5498. ]
  5499. ))
  5500. characterMakers.push(() => makeCharacter(
  5501. { name: "Corvin" },
  5502. {
  5503. front: {
  5504. height: math.unit(5 + 8 / 12, "feet"),
  5505. weight: math.unit(130, "lbs"),
  5506. name: "Front",
  5507. image: {
  5508. source: "./media/characters/corvin/front.svg",
  5509. extra: 1803 / 1629
  5510. }
  5511. },
  5512. frontShirt: {
  5513. height: math.unit(5 + 8 / 12, "feet"),
  5514. weight: math.unit(130, "lbs"),
  5515. name: "Front (Shirt)",
  5516. image: {
  5517. source: "./media/characters/corvin/front-shirt.svg",
  5518. extra: 1803 / 1629
  5519. }
  5520. },
  5521. frontPoncho: {
  5522. height: math.unit(5 + 8 / 12, "feet"),
  5523. weight: math.unit(130, "lbs"),
  5524. name: "Front (Poncho)",
  5525. image: {
  5526. source: "./media/characters/corvin/front-poncho.svg",
  5527. extra: 1803 / 1629
  5528. }
  5529. },
  5530. side: {
  5531. height: math.unit(5 + 8 / 12, "feet"),
  5532. weight: math.unit(130, "lbs"),
  5533. name: "Side",
  5534. image: {
  5535. source: "./media/characters/corvin/side.svg",
  5536. extra: 1012 / 945
  5537. }
  5538. },
  5539. back: {
  5540. height: math.unit(5 + 8 / 12, "feet"),
  5541. weight: math.unit(130, "lbs"),
  5542. name: "Back",
  5543. image: {
  5544. source: "./media/characters/corvin/back.svg",
  5545. extra: 1803 / 1629
  5546. }
  5547. },
  5548. },
  5549. [
  5550. {
  5551. name: "Micro",
  5552. height: math.unit(3, "inches")
  5553. },
  5554. {
  5555. name: "Normal",
  5556. height: math.unit(5 + 8 / 12, "feet")
  5557. },
  5558. {
  5559. name: "Macro",
  5560. height: math.unit(300, "feet"),
  5561. default: true
  5562. },
  5563. {
  5564. name: "Megamacro",
  5565. height: math.unit(500, "miles")
  5566. }
  5567. ]
  5568. ))
  5569. characterMakers.push(() => makeCharacter(
  5570. { name: "Q" },
  5571. {
  5572. front: {
  5573. height: math.unit(6, "feet"),
  5574. weight: math.unit(135, "lbs"),
  5575. name: "Front",
  5576. image: {
  5577. source: "./media/characters/q/front.svg",
  5578. extra: 854 / 752,
  5579. bottom: 0.005
  5580. }
  5581. },
  5582. back: {
  5583. height: math.unit(6, "feet"),
  5584. weight: math.unit(130, "lbs"),
  5585. name: "Back",
  5586. image: {
  5587. source: "./media/characters/q/back.svg",
  5588. extra: 854 / 752
  5589. }
  5590. },
  5591. },
  5592. [
  5593. {
  5594. name: "Macro",
  5595. height: math.unit(90, "feet"),
  5596. default: true
  5597. },
  5598. {
  5599. name: "Extra Macro",
  5600. height: math.unit(300, "feet"),
  5601. },
  5602. {
  5603. name: "BIG WALF",
  5604. height: math.unit(750, "feet"),
  5605. },
  5606. ]
  5607. ))
  5608. characterMakers.push(() => makeCharacter(
  5609. { name: "Carley" },
  5610. {
  5611. front: {
  5612. height: math.unit(6, "feet"),
  5613. weight: math.unit(150, "lbs"),
  5614. name: "Front",
  5615. image: {
  5616. source: "./media/characters/carley/front.svg",
  5617. extra: 3927 / 3540,
  5618. bottom: 0.03
  5619. }
  5620. }
  5621. },
  5622. [
  5623. {
  5624. name: "Normal",
  5625. height: math.unit(6 + 3 / 12, "feet")
  5626. },
  5627. {
  5628. name: "Macro",
  5629. height: math.unit(185, "feet"),
  5630. default: true
  5631. },
  5632. {
  5633. name: "Megamacro",
  5634. height: math.unit(8, "miles"),
  5635. },
  5636. ]
  5637. ))
  5638. characterMakers.push(() => makeCharacter(
  5639. { name: "Citrine" },
  5640. {
  5641. front: {
  5642. height: math.unit(3, "feet"),
  5643. weight: math.unit(28, "lbs"),
  5644. name: "Front",
  5645. image: {
  5646. source: "./media/characters/citrine/front.svg"
  5647. }
  5648. }
  5649. },
  5650. [
  5651. {
  5652. name: "Normal",
  5653. height: math.unit(3, "feet"),
  5654. default: true
  5655. }
  5656. ]
  5657. ))
  5658. characterMakers.push(() => makeCharacter(
  5659. { name: "Aura Starwind" },
  5660. {
  5661. front: {
  5662. height: math.unit(14, "feet"),
  5663. weight: math.unit(1450, "kg"),
  5664. name: "Front",
  5665. image: {
  5666. source: "./media/characters/aura-starwind/front.svg",
  5667. extra: 1455 / 1335
  5668. }
  5669. },
  5670. side: {
  5671. height: math.unit(14, "feet"),
  5672. weight: math.unit(1450, "kg"),
  5673. name: "Side",
  5674. image: {
  5675. source: "./media/characters/aura-starwind/side.svg",
  5676. extra: 1654 / 1497
  5677. }
  5678. },
  5679. taur: {
  5680. height: math.unit(18, "feet"),
  5681. weight: math.unit(5500, "kg"),
  5682. name: "Taur",
  5683. image: {
  5684. source: "./media/characters/aura-starwind/taur.svg",
  5685. extra: 1760 / 1650
  5686. }
  5687. },
  5688. feral: {
  5689. height: math.unit(46, "feet"),
  5690. weight: math.unit(25000, "kg"),
  5691. name: "Feral",
  5692. image: {
  5693. source: "./media/characters/aura-starwind/feral.svg"
  5694. }
  5695. },
  5696. },
  5697. [
  5698. {
  5699. name: "Normal",
  5700. height: math.unit(14, "feet"),
  5701. default: true
  5702. },
  5703. {
  5704. name: "Macro",
  5705. height: math.unit(50, "meters")
  5706. },
  5707. {
  5708. name: "Megamacro",
  5709. height: math.unit(5000, "meters")
  5710. },
  5711. {
  5712. name: "Gigamacro",
  5713. height: math.unit(100000, "kilometers")
  5714. },
  5715. ]
  5716. ))
  5717. characterMakers.push(() => makeCharacter(
  5718. { name: "Rivet" },
  5719. {
  5720. front: {
  5721. height: math.unit(2 + 7 / 12, "feet"),
  5722. weight: math.unit(32, "lbs"),
  5723. name: "Front",
  5724. image: {
  5725. source: "./media/characters/rivet/front.svg",
  5726. extra: 1716 / 1658,
  5727. bottom: 0.03
  5728. }
  5729. },
  5730. foot: {
  5731. height: math.unit(0.551, "feet"),
  5732. name: "Rivet's Foot",
  5733. image: {
  5734. source: "./media/characters/rivet/foot.svg"
  5735. },
  5736. rename: true
  5737. }
  5738. },
  5739. [
  5740. {
  5741. name: "Micro",
  5742. height: math.unit(1.5, "inches"),
  5743. },
  5744. {
  5745. name: "Normal",
  5746. height: math.unit(2 + 7 / 12, "feet"),
  5747. default: true
  5748. },
  5749. {
  5750. name: "Macro",
  5751. height: math.unit(85, "feet")
  5752. },
  5753. {
  5754. name: "Megamacro",
  5755. height: math.unit(2.2, "km")
  5756. }
  5757. ]
  5758. ))
  5759. characterMakers.push(() => makeCharacter(
  5760. { name: "Coffee" },
  5761. {
  5762. front: {
  5763. height: math.unit(5 + 9 / 12, "feet"),
  5764. weight: math.unit(150, "lbs"),
  5765. name: "Front",
  5766. image: {
  5767. source: "./media/characters/coffee/front.svg",
  5768. extra: 3666 / 3032,
  5769. bottom: 0.04
  5770. }
  5771. },
  5772. foot: {
  5773. height: math.unit(1.29, "feet"),
  5774. name: "Foot",
  5775. image: {
  5776. source: "./media/characters/coffee/foot.svg"
  5777. }
  5778. },
  5779. },
  5780. [
  5781. {
  5782. name: "Micro",
  5783. height: math.unit(2, "inches"),
  5784. },
  5785. {
  5786. name: "Normal",
  5787. height: math.unit(5 + 9 / 12, "feet"),
  5788. default: true
  5789. },
  5790. {
  5791. name: "Macro",
  5792. height: math.unit(800, "feet")
  5793. },
  5794. {
  5795. name: "Megamacro",
  5796. height: math.unit(25, "miles")
  5797. }
  5798. ]
  5799. ))
  5800. characterMakers.push(() => makeCharacter(
  5801. { name: "Chari-Gal" },
  5802. {
  5803. front: {
  5804. height: math.unit(6, "feet"),
  5805. weight: math.unit(200, "lbs"),
  5806. name: "Front",
  5807. image: {
  5808. source: "./media/characters/chari-gal/front.svg",
  5809. extra: 1568 / 1385,
  5810. bottom: 0.047
  5811. }
  5812. },
  5813. gigantamax: {
  5814. height: math.unit(6 * 16, "feet"),
  5815. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  5816. name: "Gigantamax",
  5817. image: {
  5818. source: "./media/characters/chari-gal/gigantamax.svg",
  5819. extra: 1124 / 888,
  5820. bottom: 0.03
  5821. }
  5822. },
  5823. },
  5824. [
  5825. {
  5826. name: "Normal",
  5827. height: math.unit(5 + 7 / 12, "feet")
  5828. },
  5829. {
  5830. name: "Macro",
  5831. height: math.unit(200, "feet"),
  5832. default: true
  5833. }
  5834. ]
  5835. ))
  5836. characterMakers.push(() => makeCharacter(
  5837. { name: "Nova" },
  5838. {
  5839. front: {
  5840. height: math.unit(6, "feet"),
  5841. weight: math.unit(150, "lbs"),
  5842. name: "Front",
  5843. image: {
  5844. source: "./media/characters/nova/front.svg",
  5845. extra: 5000 / 4722,
  5846. bottom: 0.02
  5847. }
  5848. }
  5849. },
  5850. [
  5851. {
  5852. name: "Micro-",
  5853. height: math.unit(0.8, "inches")
  5854. },
  5855. {
  5856. name: "Micro",
  5857. height: math.unit(2, "inches"),
  5858. default: true
  5859. },
  5860. ]
  5861. ))
  5862. characterMakers.push(() => makeCharacter(
  5863. { name: "Argent" },
  5864. {
  5865. front: {
  5866. height: math.unit(3 + 1 / 12, "feet"),
  5867. weight: math.unit(21.7, "lbs"),
  5868. name: "Front",
  5869. image: {
  5870. source: "./media/characters/argent/front.svg",
  5871. extra: 1565 / 1416,
  5872. bottom: 0.01
  5873. }
  5874. }
  5875. },
  5876. [
  5877. {
  5878. name: "Micro",
  5879. height: math.unit(2, "inches")
  5880. },
  5881. {
  5882. name: "Normal",
  5883. height: math.unit(3 + 1 / 12, "feet"),
  5884. default: true
  5885. },
  5886. {
  5887. name: "Macro",
  5888. height: math.unit(120, "feet")
  5889. },
  5890. ]
  5891. ))
  5892. characterMakers.push(() => makeCharacter(
  5893. { name: "Mira al-Cul" },
  5894. {
  5895. lamp: {
  5896. height: math.unit(7 * 1559 / 989, "feet"),
  5897. name: "Magic Lamp",
  5898. image: {
  5899. source: "./media/characters/mira-al-cul/lamp.svg",
  5900. extra: 1617 / 1559
  5901. }
  5902. },
  5903. front: {
  5904. height: math.unit(7, "feet"),
  5905. name: "Front",
  5906. image: {
  5907. source: "./media/characters/mira-al-cul/front.svg",
  5908. extra: 1044 / 990
  5909. }
  5910. },
  5911. },
  5912. [
  5913. {
  5914. name: "Heavily Restricted",
  5915. height: math.unit(7 * 1559 / 989, "feet")
  5916. },
  5917. {
  5918. name: "Freshly Freed",
  5919. height: math.unit(50 * 1559 / 989, "feet")
  5920. },
  5921. {
  5922. name: "World Encompassing",
  5923. height: math.unit(10000 * 1559 / 989, "miles")
  5924. },
  5925. {
  5926. name: "Galactic",
  5927. height: math.unit(1.433 * 1559 / 989, "zettameters")
  5928. },
  5929. {
  5930. name: "Palmed Universe",
  5931. height: math.unit(6000 * 1559 / 989, "yottameters"),
  5932. default: true
  5933. },
  5934. {
  5935. name: "Multiversal Matriarch",
  5936. height: math.unit(8.87e10, "yottameters")
  5937. },
  5938. {
  5939. name: "Void Mother",
  5940. height: math.unit(3.14e110, "yottaparsecs")
  5941. },
  5942. ]
  5943. ))
  5944. characterMakers.push(() => makeCharacter(
  5945. { name: "Kuro-shi Uchū" },
  5946. {
  5947. front: {
  5948. height: math.unit(17 + 1 / 12, "feet"),
  5949. weight: math.unit(476.2 * 5, "lbs"),
  5950. name: "Front",
  5951. image: {
  5952. source: "./media/characters/kuro-shi-uchū/front.svg",
  5953. extra: 2329 / 1835,
  5954. bottom: 0.02
  5955. }
  5956. },
  5957. },
  5958. [
  5959. {
  5960. name: "Micro",
  5961. height: math.unit(2, "inches")
  5962. },
  5963. {
  5964. name: "Normal",
  5965. height: math.unit(12, "meters")
  5966. },
  5967. {
  5968. name: "Planetary",
  5969. height: math.unit(0.00929, "AU"),
  5970. default: true
  5971. },
  5972. {
  5973. name: "Universal",
  5974. height: math.unit(20, "gigaparsecs")
  5975. },
  5976. ]
  5977. ))
  5978. characterMakers.push(() => makeCharacter(
  5979. { name: "Katherine" },
  5980. {
  5981. front: {
  5982. height: math.unit(5 + 2 / 12, "feet"),
  5983. weight: math.unit(120, "lbs"),
  5984. name: "Front",
  5985. image: {
  5986. source: "./media/characters/katherine/front.svg",
  5987. extra: 2075 / 1969
  5988. }
  5989. },
  5990. dress: {
  5991. height: math.unit(5 + 2 / 12, "feet"),
  5992. weight: math.unit(120, "lbs"),
  5993. name: "Dress",
  5994. image: {
  5995. source: "./media/characters/katherine/dress.svg",
  5996. extra: 2258 / 2064
  5997. }
  5998. },
  5999. },
  6000. [
  6001. {
  6002. name: "Micro",
  6003. height: math.unit(1, "inches"),
  6004. default: true
  6005. },
  6006. {
  6007. name: "Normal",
  6008. height: math.unit(5 + 2 / 12, "feet")
  6009. },
  6010. {
  6011. name: "Macro",
  6012. height: math.unit(100, "meters")
  6013. },
  6014. {
  6015. name: "Megamacro",
  6016. height: math.unit(80, "miles")
  6017. },
  6018. ]
  6019. ))
  6020. characterMakers.push(() => makeCharacter(
  6021. { name: "Yevis" },
  6022. {
  6023. front: {
  6024. height: math.unit(7 + 8 / 12, "feet"),
  6025. weight: math.unit(250, "lbs"),
  6026. name: "Front",
  6027. image: {
  6028. source: "./media/characters/yevis/front.svg",
  6029. extra: 1938 / 1755
  6030. }
  6031. }
  6032. },
  6033. [
  6034. {
  6035. name: "Mortal",
  6036. height: math.unit(7 + 8 / 12, "feet")
  6037. },
  6038. {
  6039. name: "Battle",
  6040. height: math.unit(25 + 11 / 12, "feet")
  6041. },
  6042. {
  6043. name: "Wrath",
  6044. height: math.unit(1654 + 11 / 12, "feet")
  6045. },
  6046. {
  6047. name: "Planet Destroyer",
  6048. height: math.unit(12000, "miles")
  6049. },
  6050. {
  6051. name: "Galaxy Conqueror",
  6052. height: math.unit(1.45, "zettameters"),
  6053. default: true
  6054. },
  6055. {
  6056. name: "Universal War",
  6057. height: math.unit(184, "gigaparsecs")
  6058. },
  6059. {
  6060. name: "Eternity War",
  6061. height: math.unit(1.98e55, "yottaparsecs")
  6062. },
  6063. ]
  6064. ))
  6065. characterMakers.push(() => makeCharacter(
  6066. { name: "Xavier" },
  6067. {
  6068. front: {
  6069. height: math.unit(5 + 8 / 12, "feet"),
  6070. weight: math.unit(63, "kg"),
  6071. name: "Front",
  6072. image: {
  6073. source: "./media/characters/xavier/front.svg",
  6074. extra: 944 / 883
  6075. }
  6076. },
  6077. frontStretch: {
  6078. height: math.unit(5 + 8 / 12, "feet"),
  6079. weight: math.unit(63, "kg"),
  6080. name: "Stretching",
  6081. image: {
  6082. source: "./media/characters/xavier/front-stretch.svg",
  6083. extra: 962 / 820
  6084. }
  6085. },
  6086. },
  6087. [
  6088. {
  6089. name: "Normal",
  6090. height: math.unit(5 + 8 / 12, "feet")
  6091. },
  6092. {
  6093. name: "Macro",
  6094. height: math.unit(100, "meters"),
  6095. default: true
  6096. },
  6097. {
  6098. name: "McLargeHuge",
  6099. height: math.unit(10, "miles")
  6100. },
  6101. ]
  6102. ))
  6103. characterMakers.push(() => makeCharacter(
  6104. { name: "Joshii" },
  6105. {
  6106. front: {
  6107. height: math.unit(5 + 5 / 12, "feet"),
  6108. weight: math.unit(150, "lb"),
  6109. name: "Front",
  6110. image: {
  6111. source: "./media/characters/joshii/front.svg"
  6112. }
  6113. },
  6114. foot: {
  6115. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6116. name: "Foot",
  6117. image: {
  6118. source: "./media/characters/joshii/foot.svg"
  6119. }
  6120. },
  6121. },
  6122. [
  6123. {
  6124. name: "Micro",
  6125. height: math.unit(2, "inches")
  6126. },
  6127. {
  6128. name: "Normal",
  6129. height: math.unit(5 + 5 / 12, "feet"),
  6130. default: true
  6131. },
  6132. {
  6133. name: "Macro",
  6134. height: math.unit(785, "feet")
  6135. },
  6136. {
  6137. name: "Megamacro",
  6138. height: math.unit(24.5, "miles")
  6139. },
  6140. ]
  6141. ))
  6142. characterMakers.push(() => makeCharacter(
  6143. { name: "Goddess Elizabeth" },
  6144. {
  6145. front: {
  6146. height: math.unit(6, "feet"),
  6147. weight: math.unit(150, "lb"),
  6148. name: "Front",
  6149. image: {
  6150. source: "./media/characters/goddess-elizabeth/front.svg",
  6151. extra: 1800 / 1525,
  6152. bottom: 0.005
  6153. }
  6154. },
  6155. foot: {
  6156. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6157. name: "Foot",
  6158. image: {
  6159. source: "./media/characters/goddess-elizabeth/foot.svg"
  6160. }
  6161. },
  6162. },
  6163. [
  6164. {
  6165. name: "Micro",
  6166. height: math.unit(12, "feet")
  6167. },
  6168. {
  6169. name: "Normal",
  6170. height: math.unit(80, "miles"),
  6171. default: true
  6172. },
  6173. {
  6174. name: "Macro",
  6175. height: math.unit(15000, "parsecs")
  6176. },
  6177. ]
  6178. ))
  6179. characterMakers.push(() => makeCharacter(
  6180. { name: "Kara" },
  6181. {
  6182. front: {
  6183. height: math.unit(5 + 9 / 12, "feet"),
  6184. weight: math.unit(144, "lb"),
  6185. name: "Front",
  6186. image: {
  6187. source: "./media/characters/kara/front.svg"
  6188. }
  6189. },
  6190. feet: {
  6191. height: math.unit(6 / 6.765, "feet"),
  6192. name: "Kara's Feet",
  6193. rename: true,
  6194. image: {
  6195. source: "./media/characters/kara/feet.svg"
  6196. }
  6197. },
  6198. },
  6199. [
  6200. {
  6201. name: "Normal",
  6202. height: math.unit(5 + 9 / 12, "feet")
  6203. },
  6204. {
  6205. name: "Macro",
  6206. height: math.unit(174, "feet"),
  6207. default: true
  6208. },
  6209. ]
  6210. ))
  6211. characterMakers.push(() => makeCharacter(
  6212. { name: "Tyrone" },
  6213. {
  6214. front: {
  6215. height: math.unit(18, "feet"),
  6216. weight: math.unit(4050, "lb"),
  6217. name: "Front",
  6218. image: {
  6219. source: "./media/characters/tyrone/front.svg",
  6220. extra: 2520 / 2402,
  6221. bottom: 0.025
  6222. }
  6223. },
  6224. },
  6225. [
  6226. {
  6227. name: "Normal",
  6228. height: math.unit(18, "feet"),
  6229. default: true
  6230. },
  6231. {
  6232. name: "Macro",
  6233. height: math.unit(300, "feet")
  6234. },
  6235. ]
  6236. ))
  6237. characterMakers.push(() => makeCharacter(
  6238. { name: "Danny" },
  6239. {
  6240. front: {
  6241. height: math.unit(7 + 8 / 12, "feet"),
  6242. weight: math.unit(120, "lb"),
  6243. name: "Front",
  6244. image: {
  6245. source: "./media/characters/danny/front.svg",
  6246. extra: 1490 / 1350
  6247. }
  6248. },
  6249. back: {
  6250. height: math.unit(7 + 8 / 12, "feet"),
  6251. weight: math.unit(120, "lb"),
  6252. name: "Back",
  6253. image: {
  6254. source: "./media/characters/danny/back.svg",
  6255. extra: 1490 / 1350
  6256. }
  6257. },
  6258. },
  6259. [
  6260. {
  6261. name: "Normal",
  6262. height: math.unit(7 + 8 / 12, "feet"),
  6263. default: true
  6264. },
  6265. ]
  6266. ))
  6267. characterMakers.push(() => makeCharacter(
  6268. { name: "Mallow" },
  6269. {
  6270. front: {
  6271. height: math.unit(3.5, "inches"),
  6272. weight: math.unit(19, "grams"),
  6273. name: "Front",
  6274. image: {
  6275. source: "./media/characters/mallow/front.svg",
  6276. extra: 471 / 431
  6277. }
  6278. },
  6279. back: {
  6280. height: math.unit(3.5, "inches"),
  6281. weight: math.unit(19, "grams"),
  6282. name: "Back",
  6283. image: {
  6284. source: "./media/characters/mallow/back.svg",
  6285. extra: 471 / 431
  6286. }
  6287. },
  6288. },
  6289. [
  6290. {
  6291. name: "Normal",
  6292. height: math.unit(3.5, "inches"),
  6293. default: true
  6294. },
  6295. ]
  6296. ))
  6297. characterMakers.push(() => makeCharacter(
  6298. { name: "Starry Aqua" },
  6299. {
  6300. front: {
  6301. height: math.unit(9, "feet"),
  6302. weight: math.unit(230, "kg"),
  6303. name: "Front",
  6304. image: {
  6305. source: "./media/characters/starry-aqua/front.svg"
  6306. }
  6307. },
  6308. back: {
  6309. height: math.unit(9, "feet"),
  6310. weight: math.unit(230, "kg"),
  6311. name: "Back",
  6312. image: {
  6313. source: "./media/characters/starry-aqua/back.svg"
  6314. }
  6315. },
  6316. hand: {
  6317. height: math.unit(9 * 0.1168, "feet"),
  6318. name: "Hand",
  6319. image: {
  6320. source: "./media/characters/starry-aqua/hand.svg"
  6321. }
  6322. },
  6323. foot: {
  6324. height: math.unit(9 * 0.18, "feet"),
  6325. name: "Foot",
  6326. image: {
  6327. source: "./media/characters/starry-aqua/foot.svg"
  6328. }
  6329. }
  6330. },
  6331. [
  6332. {
  6333. name: "Micro",
  6334. height: math.unit(3, "inches")
  6335. },
  6336. {
  6337. name: "Normal",
  6338. height: math.unit(9, "feet")
  6339. },
  6340. {
  6341. name: "Macro",
  6342. height: math.unit(300, "feet"),
  6343. default: true
  6344. },
  6345. {
  6346. name: "Megamacro",
  6347. height: math.unit(3200, "feet")
  6348. }
  6349. ]
  6350. ))
  6351. characterMakers.push(() => makeCharacter(
  6352. { name: "Luka" },
  6353. {
  6354. front: {
  6355. height: math.unit(6, "feet"),
  6356. weight: math.unit(230, "lb"),
  6357. name: "Front",
  6358. image: {
  6359. source: "./media/characters/luka/front.svg",
  6360. extra: 1,
  6361. bottom: 0.025
  6362. }
  6363. },
  6364. },
  6365. [
  6366. {
  6367. name: "Normal",
  6368. height: math.unit(12 + 8 / 12, "feet"),
  6369. default: true
  6370. },
  6371. {
  6372. name: "Minimacro",
  6373. height: math.unit(20, "feet")
  6374. },
  6375. {
  6376. name: "Macro",
  6377. height: math.unit(250, "feet")
  6378. },
  6379. {
  6380. name: "Megamacro",
  6381. height: math.unit(5, "miles")
  6382. },
  6383. {
  6384. name: "Gigamacro",
  6385. height: math.unit(8000, "miles")
  6386. },
  6387. ]
  6388. ))
  6389. characterMakers.push(() => makeCharacter(
  6390. { name: "Natalie Nightring" },
  6391. {
  6392. front: {
  6393. height: math.unit(6, "feet"),
  6394. weight: math.unit(150, "lb"),
  6395. name: "Front",
  6396. image: {
  6397. source: "./media/characters/natalie-nightring/front.svg",
  6398. extra: 1,
  6399. bottom: 0.06
  6400. }
  6401. },
  6402. },
  6403. [
  6404. {
  6405. name: "Uh Oh",
  6406. height: math.unit(0.1, "mm")
  6407. },
  6408. {
  6409. name: "Small",
  6410. height: math.unit(3, "inches")
  6411. },
  6412. {
  6413. name: "Human Scale",
  6414. height: math.unit(6, "feet")
  6415. },
  6416. {
  6417. name: "Librarian",
  6418. height: math.unit(50, "feet"),
  6419. default: true
  6420. },
  6421. {
  6422. name: "Immense",
  6423. height: math.unit(200, "miles")
  6424. },
  6425. ]
  6426. ))
  6427. characterMakers.push(() => makeCharacter(
  6428. { name: "Danni Rosie" },
  6429. {
  6430. front: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(180, "lbs"),
  6433. name: "Front",
  6434. image: {
  6435. source: "./media/characters/danni-rosie/front.svg",
  6436. extra: 1260 / 1128,
  6437. bottom: 0.022
  6438. }
  6439. },
  6440. },
  6441. [
  6442. {
  6443. name: "Micro",
  6444. height: math.unit(2, "inches"),
  6445. default: true
  6446. },
  6447. ]
  6448. ))
  6449. characterMakers.push(() => makeCharacter(
  6450. { name: "Samantha Kruse" },
  6451. {
  6452. front: {
  6453. height: math.unit(5 + 9 / 12, "feet"),
  6454. weight: math.unit(220, "lb"),
  6455. name: "Front",
  6456. image: {
  6457. source: "./media/characters/samantha-kruse/front.svg",
  6458. extra: (985 / 935),
  6459. bottom: 0.03
  6460. }
  6461. },
  6462. frontUndressed: {
  6463. height: math.unit(5 + 9 / 12, "feet"),
  6464. weight: math.unit(220, "lb"),
  6465. name: "Front (Undressed)",
  6466. image: {
  6467. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6468. extra: (973 / 923),
  6469. bottom: 0.025
  6470. }
  6471. },
  6472. fat: {
  6473. height: math.unit(5 + 9 / 12, "feet"),
  6474. weight: math.unit(900, "lb"),
  6475. name: "Front (Fat)",
  6476. image: {
  6477. source: "./media/characters/samantha-kruse/fat.svg",
  6478. extra: 2688 / 2561
  6479. }
  6480. },
  6481. },
  6482. [
  6483. {
  6484. name: "Normal",
  6485. height: math.unit(5 + 9 / 12, "feet"),
  6486. default: true
  6487. }
  6488. ]
  6489. ))
  6490. characterMakers.push(() => makeCharacter(
  6491. { name: "Amelia Rosie" },
  6492. {
  6493. back: {
  6494. height: math.unit(5 + 4 / 12, "feet"),
  6495. weight: math.unit(4963, "lb"),
  6496. name: "Back",
  6497. image: {
  6498. source: "./media/characters/amelia-rosie/back.svg",
  6499. extra: 1113 / 963,
  6500. bottom: 0.01
  6501. }
  6502. },
  6503. },
  6504. [
  6505. {
  6506. name: "Level 0",
  6507. height: math.unit(5 + 4 / 12, "feet")
  6508. },
  6509. {
  6510. name: "Level 1",
  6511. height: math.unit(164597, "feet"),
  6512. default: true
  6513. },
  6514. {
  6515. name: "Level 2",
  6516. height: math.unit(956243, "miles")
  6517. },
  6518. {
  6519. name: "Level 3",
  6520. height: math.unit(29421709423, "miles")
  6521. },
  6522. {
  6523. name: "Level 4",
  6524. height: math.unit(154, "lightyears")
  6525. },
  6526. {
  6527. name: "Level 5",
  6528. height: math.unit(4738272, "lightyears")
  6529. },
  6530. {
  6531. name: "Level 6",
  6532. height: math.unit(145787152896, "lightyears")
  6533. },
  6534. ]
  6535. ))
  6536. characterMakers.push(() => makeCharacter(
  6537. { name: "Rook Kitara" },
  6538. {
  6539. front: {
  6540. height: math.unit(5 + 11 / 12, "feet"),
  6541. weight: math.unit(65, "kg"),
  6542. name: "Front",
  6543. image: {
  6544. source: "./media/characters/rook-kitara/front.svg",
  6545. extra: 1347 / 1274,
  6546. bottom: 0.005
  6547. }
  6548. },
  6549. },
  6550. [
  6551. {
  6552. name: "Totally Unfair",
  6553. height: math.unit(1.8, "mm")
  6554. },
  6555. {
  6556. name: "Lap Rookie",
  6557. height: math.unit(1.4, "feet")
  6558. },
  6559. {
  6560. name: "Normal",
  6561. height: math.unit(5 + 11 / 12, "feet"),
  6562. default: true
  6563. },
  6564. {
  6565. name: "How Did This Happen",
  6566. height: math.unit(80, "miles")
  6567. }
  6568. ]
  6569. ))
  6570. characterMakers.push(() => makeCharacter(
  6571. { name: "Pisces" },
  6572. {
  6573. front: {
  6574. height: math.unit(7, "feet"),
  6575. weight: math.unit(300, "lb"),
  6576. name: "Front",
  6577. image: {
  6578. source: "./media/characters/pisces/front.svg",
  6579. extra: 2255 / 2115,
  6580. bottom: 0.03
  6581. }
  6582. },
  6583. back: {
  6584. height: math.unit(7, "feet"),
  6585. weight: math.unit(300, "lb"),
  6586. name: "Back",
  6587. image: {
  6588. source: "./media/characters/pisces/back.svg",
  6589. extra: 2146 / 2055,
  6590. bottom: 0.04
  6591. }
  6592. },
  6593. },
  6594. [
  6595. {
  6596. name: "Normal",
  6597. height: math.unit(7, "feet"),
  6598. default: true
  6599. },
  6600. {
  6601. name: "Swimming Pool",
  6602. height: math.unit(12.2, "meters")
  6603. },
  6604. {
  6605. name: "Olympic Swimming Pool",
  6606. height: math.unit(56.3, "meters")
  6607. },
  6608. {
  6609. name: "Lake Superior",
  6610. height: math.unit(93900, "meters")
  6611. },
  6612. {
  6613. name: "Mediterranean Sea",
  6614. height: math.unit(644457, "meters")
  6615. },
  6616. {
  6617. name: "World's Oceans",
  6618. height: math.unit(4567491, "meters")
  6619. },
  6620. ]
  6621. ))
  6622. characterMakers.push(() => makeCharacter(
  6623. { name: "Zelas" },
  6624. {
  6625. front: {
  6626. height: math.unit(2.3, "meters"),
  6627. weight: math.unit(120, "kg"),
  6628. name: "Front",
  6629. image: {
  6630. source: "./media/characters/zelas/front.svg"
  6631. }
  6632. },
  6633. side: {
  6634. height: math.unit(2.3, "meters"),
  6635. weight: math.unit(120, "kg"),
  6636. name: "Side",
  6637. image: {
  6638. source: "./media/characters/zelas/side.svg"
  6639. }
  6640. },
  6641. back: {
  6642. height: math.unit(2.3, "meters"),
  6643. weight: math.unit(120, "kg"),
  6644. name: "Back",
  6645. image: {
  6646. source: "./media/characters/zelas/back.svg"
  6647. }
  6648. },
  6649. foot: {
  6650. height: math.unit(1.116, "feet"),
  6651. name: "Foot",
  6652. image: {
  6653. source: "./media/characters/zelas/foot.svg"
  6654. }
  6655. },
  6656. },
  6657. [
  6658. {
  6659. name: "Normal",
  6660. height: math.unit(2.3, "meters")
  6661. },
  6662. {
  6663. name: "Macro",
  6664. height: math.unit(30, "meters"),
  6665. default: true
  6666. },
  6667. ]
  6668. ))
  6669. characterMakers.push(() => makeCharacter(
  6670. { name: "Talbot" },
  6671. {
  6672. front: {
  6673. height: math.unit(1, "inch"),
  6674. weight: math.unit(0.21, "grams"),
  6675. name: "Front",
  6676. image: {
  6677. source: "./media/characters/talbot/front.svg",
  6678. extra: 594 / 544
  6679. }
  6680. },
  6681. },
  6682. [
  6683. {
  6684. name: "Micro",
  6685. height: math.unit(1, "inch"),
  6686. default: true
  6687. },
  6688. ]
  6689. ))
  6690. characterMakers.push(() => makeCharacter(
  6691. { name: "Fliss" },
  6692. {
  6693. front: {
  6694. height: math.unit(3 + 3 / 12, "feet"),
  6695. weight: math.unit(51.8, "lb"),
  6696. name: "Front",
  6697. image: {
  6698. source: "./media/characters/fliss/front.svg",
  6699. extra: 840 / 640
  6700. }
  6701. },
  6702. },
  6703. [
  6704. {
  6705. name: "Teeny Tiny",
  6706. height: math.unit(1, "mm")
  6707. },
  6708. {
  6709. name: "Small",
  6710. height: math.unit(1, "inch"),
  6711. default: true
  6712. },
  6713. {
  6714. name: "Standard Sylveon",
  6715. height: math.unit(3 + 3 / 12, "feet")
  6716. },
  6717. {
  6718. name: "Large Nuisance",
  6719. height: math.unit(33, "feet")
  6720. },
  6721. {
  6722. name: "City Filler",
  6723. height: math.unit(3000, "feet")
  6724. },
  6725. {
  6726. name: "New Horizon",
  6727. height: math.unit(6000, "miles")
  6728. },
  6729. ]
  6730. ))
  6731. characterMakers.push(() => makeCharacter(
  6732. { name: "Fleta" },
  6733. {
  6734. front: {
  6735. height: math.unit(5, "cm"),
  6736. weight: math.unit(1.94, "g"),
  6737. name: "Front",
  6738. image: {
  6739. source: "./media/characters/fleta/front.svg",
  6740. extra: 835 / 803
  6741. }
  6742. },
  6743. back: {
  6744. height: math.unit(5, "cm"),
  6745. weight: math.unit(1.94, "g"),
  6746. name: "Back",
  6747. image: {
  6748. source: "./media/characters/fleta/back.svg",
  6749. extra: 835 / 803
  6750. }
  6751. },
  6752. },
  6753. [
  6754. {
  6755. name: "Micro",
  6756. height: math.unit(5, "cm"),
  6757. default: true
  6758. },
  6759. ]
  6760. ))
  6761. characterMakers.push(() => makeCharacter(
  6762. { name: "Dominic" },
  6763. {
  6764. front: {
  6765. height: math.unit(6, "feet"),
  6766. weight: math.unit(225, "lb"),
  6767. name: "Front",
  6768. image: {
  6769. source: "./media/characters/dominic/front.svg",
  6770. extra: 1770 / 1620,
  6771. bottom: 0.025
  6772. }
  6773. },
  6774. back: {
  6775. height: math.unit(6, "feet"),
  6776. weight: math.unit(225, "lb"),
  6777. name: "Back",
  6778. image: {
  6779. source: "./media/characters/dominic/back.svg",
  6780. extra: 1745 / 1620,
  6781. bottom: 0.065
  6782. }
  6783. },
  6784. },
  6785. [
  6786. {
  6787. name: "Nano",
  6788. height: math.unit(0.1, "mm")
  6789. },
  6790. {
  6791. name: "Micro-",
  6792. height: math.unit(1, "mm")
  6793. },
  6794. {
  6795. name: "Micro",
  6796. height: math.unit(4, "inches")
  6797. },
  6798. {
  6799. name: "Normal",
  6800. height: math.unit(6 + 4 / 12, "feet"),
  6801. default: true
  6802. },
  6803. {
  6804. name: "Macro",
  6805. height: math.unit(115, "feet")
  6806. },
  6807. {
  6808. name: "Macro+",
  6809. height: math.unit(955, "feet")
  6810. },
  6811. {
  6812. name: "Megamacro",
  6813. height: math.unit(8990, "feet")
  6814. },
  6815. {
  6816. name: "Gigmacro",
  6817. height: math.unit(9310, "miles")
  6818. },
  6819. {
  6820. name: "Teramacro",
  6821. height: math.unit(1567005010, "miles")
  6822. },
  6823. {
  6824. name: "Examacro",
  6825. height: math.unit(1425, "parsecs")
  6826. },
  6827. ]
  6828. ))
  6829. characterMakers.push(() => makeCharacter(
  6830. { name: "Major Colonel" },
  6831. {
  6832. front: {
  6833. height: math.unit(400, "feet"),
  6834. weight: math.unit(44444444, "lb"),
  6835. name: "Front",
  6836. image: {
  6837. source: "./media/characters/major-colonel/front.svg"
  6838. }
  6839. },
  6840. back: {
  6841. height: math.unit(400, "feet"),
  6842. weight: math.unit(44444444, "lb"),
  6843. name: "Back",
  6844. image: {
  6845. source: "./media/characters/major-colonel/back.svg"
  6846. }
  6847. },
  6848. },
  6849. [
  6850. {
  6851. name: "Macro",
  6852. height: math.unit(400, "feet"),
  6853. default: true
  6854. },
  6855. ]
  6856. ))
  6857. characterMakers.push(() => makeCharacter(
  6858. { name: "Axel Lycan" },
  6859. {
  6860. front: {
  6861. height: math.unit(6, "feet"),
  6862. weight: math.unit(120, "lb"),
  6863. name: "Front",
  6864. image: {
  6865. source: "./media/characters/axel-lycan/front.svg",
  6866. extra: 1,
  6867. bottom: 0.08
  6868. }
  6869. },
  6870. },
  6871. [
  6872. {
  6873. name: "Macro",
  6874. height: math.unit(1, "km"),
  6875. default: true
  6876. },
  6877. ]
  6878. ))
  6879. characterMakers.push(() => makeCharacter(
  6880. { name: "Vanrel (Hyena)" },
  6881. {
  6882. front: {
  6883. height: math.unit(5 + 9 / 12, "feet"),
  6884. weight: math.unit(175, "lb"),
  6885. name: "Front",
  6886. image: {
  6887. source: "./media/characters/vanrel-hyena/front.svg",
  6888. extra: 1086 / 1010,
  6889. bottom: 0.04
  6890. }
  6891. },
  6892. },
  6893. [
  6894. {
  6895. name: "Normal",
  6896. height: math.unit(5 + 9 / 12, "feet"),
  6897. default: true
  6898. },
  6899. ]
  6900. ))
  6901. characterMakers.push(() => makeCharacter(
  6902. { name: "Abbott Absol" },
  6903. {
  6904. front: {
  6905. height: math.unit(6, "feet"),
  6906. weight: math.unit(103, "lb"),
  6907. name: "Front",
  6908. image: {
  6909. source: "./media/characters/abbott-absol/front.svg",
  6910. extra: 2010 / 1842
  6911. }
  6912. },
  6913. },
  6914. [
  6915. {
  6916. name: "Megamicro",
  6917. height: math.unit(0.1, "mm")
  6918. },
  6919. {
  6920. name: "Micro",
  6921. height: math.unit(1, "inch")
  6922. },
  6923. {
  6924. name: "Normal",
  6925. height: math.unit(6, "feet"),
  6926. default: true
  6927. },
  6928. ]
  6929. ))
  6930. characterMakers.push(() => makeCharacter(
  6931. { name: "Hector" },
  6932. {
  6933. front: {
  6934. height: math.unit(6, "feet"),
  6935. weight: math.unit(264, "lb"),
  6936. name: "Front",
  6937. image: {
  6938. source: "./media/characters/hector/front.svg",
  6939. extra: 2280 / 2130,
  6940. bottom: 0.07
  6941. }
  6942. },
  6943. },
  6944. [
  6945. {
  6946. name: "Normal",
  6947. height: math.unit(12.25, "foot"),
  6948. default: true
  6949. },
  6950. {
  6951. name: "Macro",
  6952. height: math.unit(160, "feet")
  6953. },
  6954. ]
  6955. ))
  6956. characterMakers.push(() => makeCharacter(
  6957. { name: "Sal" },
  6958. {
  6959. front: {
  6960. height: math.unit(6, "feet"),
  6961. weight: math.unit(150, "lb"),
  6962. name: "Front",
  6963. image: {
  6964. source: "./media/characters/sal/front.svg",
  6965. extra: 1846 / 1699,
  6966. bottom: 0.04
  6967. }
  6968. },
  6969. },
  6970. [
  6971. {
  6972. name: "Megamacro",
  6973. height: math.unit(10, "miles"),
  6974. default: true
  6975. },
  6976. ]
  6977. ))
  6978. characterMakers.push(() => makeCharacter(
  6979. { name: "Ranger" },
  6980. {
  6981. front: {
  6982. height: math.unit(3, "meters"),
  6983. weight: math.unit(450, "kg"),
  6984. name: "front",
  6985. image: {
  6986. source: "./media/characters/ranger/front.svg",
  6987. extra: 2401 / 2243,
  6988. bottom: 0.05
  6989. }
  6990. },
  6991. },
  6992. [
  6993. {
  6994. name: "Normal",
  6995. height: math.unit(3, "meters"),
  6996. default: true
  6997. },
  6998. ]
  6999. ))
  7000. characterMakers.push(() => makeCharacter(
  7001. { name: "Theresa" },
  7002. {
  7003. front: {
  7004. height: math.unit(14, "feet"),
  7005. weight: math.unit(800, "kg"),
  7006. name: "Front",
  7007. image: {
  7008. source: "./media/characters/theresa/front.svg",
  7009. extra: 3575 / 3346,
  7010. bottom: 0.03
  7011. }
  7012. },
  7013. },
  7014. [
  7015. {
  7016. name: "Normal",
  7017. height: math.unit(14, "feet"),
  7018. default: true
  7019. },
  7020. ]
  7021. ))
  7022. characterMakers.push(() => makeCharacter(
  7023. { name: "Ine" },
  7024. {
  7025. front: {
  7026. height: math.unit(6, "feet"),
  7027. weight: math.unit(3, "kg"),
  7028. name: "Front",
  7029. image: {
  7030. source: "./media/characters/ine/front.svg",
  7031. extra: 678 / 539,
  7032. bottom: 0.023
  7033. }
  7034. },
  7035. },
  7036. [
  7037. {
  7038. name: "Normal",
  7039. height: math.unit(2.265, "feet"),
  7040. default: true
  7041. },
  7042. ]
  7043. ))
  7044. characterMakers.push(() => makeCharacter(
  7045. { name: "Vial" },
  7046. {
  7047. front: {
  7048. height: math.unit(5, "feet"),
  7049. weight: math.unit(30, "kg"),
  7050. name: "Front",
  7051. image: {
  7052. source: "./media/characters/vial/front.svg",
  7053. extra: 1365 / 1277,
  7054. bottom: 0.04
  7055. }
  7056. },
  7057. },
  7058. [
  7059. {
  7060. name: "Normal",
  7061. height: math.unit(5, "feet"),
  7062. default: true
  7063. },
  7064. ]
  7065. ))
  7066. characterMakers.push(() => makeCharacter(
  7067. { name: "Rovoska" },
  7068. {
  7069. side: {
  7070. height: math.unit(3.4, "meters"),
  7071. weight: math.unit(1000, "lb"),
  7072. name: "Side",
  7073. image: {
  7074. source: "./media/characters/rovoska/side.svg",
  7075. extra: 4403 / 1515
  7076. }
  7077. },
  7078. },
  7079. [
  7080. {
  7081. name: "Normal",
  7082. height: math.unit(3.4, "meters"),
  7083. default: true
  7084. },
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Gunner Rotthbauer" },
  7089. {
  7090. front: {
  7091. height: math.unit(8, "feet"),
  7092. weight: math.unit(315, "lb"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/gunner-rotthbauer/front.svg"
  7096. }
  7097. },
  7098. back: {
  7099. height: math.unit(8, "feet"),
  7100. weight: math.unit(315, "lb"),
  7101. name: "Back",
  7102. image: {
  7103. source: "./media/characters/gunner-rotthbauer/back.svg"
  7104. }
  7105. },
  7106. },
  7107. [
  7108. {
  7109. name: "Micro",
  7110. height: math.unit(3.5, "inches")
  7111. },
  7112. {
  7113. name: "Normal",
  7114. height: math.unit(8, "feet"),
  7115. default: true
  7116. },
  7117. {
  7118. name: "Macro",
  7119. height: math.unit(250, "feet")
  7120. },
  7121. {
  7122. name: "Megamacro",
  7123. height: math.unit(1, "AU")
  7124. },
  7125. ]
  7126. ))
  7127. characterMakers.push(() => makeCharacter(
  7128. { name: "Allatia" },
  7129. {
  7130. front: {
  7131. height: math.unit(5 + 5 / 12, "feet"),
  7132. weight: math.unit(140, "lb"),
  7133. name: "Front",
  7134. image: {
  7135. source: "./media/characters/allatia/front.svg",
  7136. extra: 1227 / 1180,
  7137. bottom: 0.027
  7138. }
  7139. },
  7140. },
  7141. [
  7142. {
  7143. name: "Normal",
  7144. height: math.unit(5 + 5 / 12, "feet")
  7145. },
  7146. {
  7147. name: "Macro",
  7148. height: math.unit(250, "feet"),
  7149. default: true
  7150. },
  7151. {
  7152. name: "Megamacro",
  7153. height: math.unit(8, "miles")
  7154. }
  7155. ]
  7156. ))
  7157. characterMakers.push(() => makeCharacter(
  7158. { name: "Tene" },
  7159. {
  7160. front: {
  7161. height: math.unit(6, "feet"),
  7162. weight: math.unit(120, "lb"),
  7163. name: "Front",
  7164. image: {
  7165. source: "./media/characters/tene/front.svg",
  7166. extra: 1728 / 1578,
  7167. bottom: 0.022
  7168. }
  7169. },
  7170. stomping: {
  7171. height: math.unit(2.025, "meters"),
  7172. weight: math.unit(120, "lb"),
  7173. name: "Stomping",
  7174. image: {
  7175. source: "./media/characters/tene/stomping.svg",
  7176. extra: 938 / 873,
  7177. bottom: 0.01
  7178. }
  7179. },
  7180. sitting: {
  7181. height: math.unit(1, "meter"),
  7182. weight: math.unit(120, "lb"),
  7183. name: "Sitting",
  7184. image: {
  7185. source: "./media/characters/tene/sitting.svg",
  7186. extra: 437 / 415,
  7187. bottom: 0.1
  7188. }
  7189. },
  7190. feral: {
  7191. height: math.unit(3.9, "feet"),
  7192. weight: math.unit(250, "lb"),
  7193. name: "Feral",
  7194. image: {
  7195. source: "./media/characters/tene/feral.svg",
  7196. extra: 717 / 458,
  7197. bottom: 0.179
  7198. }
  7199. },
  7200. },
  7201. [
  7202. {
  7203. name: "Normal",
  7204. height: math.unit(6, "feet")
  7205. },
  7206. {
  7207. name: "Macro",
  7208. height: math.unit(300, "feet"),
  7209. default: true
  7210. },
  7211. {
  7212. name: "Megamacro",
  7213. height: math.unit(5, "miles")
  7214. },
  7215. ]
  7216. ))
  7217. characterMakers.push(() => makeCharacter(
  7218. { name: "Evander" },
  7219. {
  7220. side: {
  7221. height: math.unit(6, "feet"),
  7222. name: "Side",
  7223. image: {
  7224. source: "./media/characters/evander/side.svg",
  7225. extra: 877 / 477
  7226. }
  7227. },
  7228. },
  7229. [
  7230. {
  7231. name: "Normal",
  7232. height: math.unit(0.83, "meters"),
  7233. default: true
  7234. },
  7235. ]
  7236. ))
  7237. characterMakers.push(() => makeCharacter(
  7238. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7239. {
  7240. front: {
  7241. height: math.unit(12, "feet"),
  7242. weight: math.unit(1000, "lb"),
  7243. name: "Front",
  7244. image: {
  7245. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7246. extra: 1762 / 1611
  7247. }
  7248. },
  7249. back: {
  7250. height: math.unit(12, "feet"),
  7251. weight: math.unit(1000, "lb"),
  7252. name: "Back",
  7253. image: {
  7254. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7255. extra: 1762 / 1611
  7256. }
  7257. },
  7258. },
  7259. [
  7260. {
  7261. name: "Normal",
  7262. height: math.unit(12, "feet"),
  7263. default: true
  7264. },
  7265. {
  7266. name: "Kaiju",
  7267. height: math.unit(150, "feet")
  7268. },
  7269. ]
  7270. ))
  7271. characterMakers.push(() => makeCharacter(
  7272. { name: "Zero Alurus" },
  7273. {
  7274. front: {
  7275. height: math.unit(6, "feet"),
  7276. weight: math.unit(150, "lb"),
  7277. name: "Front",
  7278. image: {
  7279. source: "./media/characters/zero-alurus/front.svg"
  7280. }
  7281. },
  7282. back: {
  7283. height: math.unit(6, "feet"),
  7284. weight: math.unit(150, "lb"),
  7285. name: "Back",
  7286. image: {
  7287. source: "./media/characters/zero-alurus/back.svg"
  7288. }
  7289. },
  7290. },
  7291. [
  7292. {
  7293. name: "Normal",
  7294. height: math.unit(5 + 10 / 12, "feet")
  7295. },
  7296. {
  7297. name: "Macro",
  7298. height: math.unit(60, "feet"),
  7299. default: true
  7300. },
  7301. {
  7302. name: "Macro+",
  7303. height: math.unit(450, "feet")
  7304. },
  7305. ]
  7306. ))
  7307. characterMakers.push(() => makeCharacter(
  7308. { name: "Mega Shi" },
  7309. {
  7310. front: {
  7311. height: math.unit(6, "feet"),
  7312. weight: math.unit(200, "lb"),
  7313. name: "Front",
  7314. image: {
  7315. source: "./media/characters/mega-shi/front.svg",
  7316. extra: 1279 / 1250,
  7317. bottom: 0.02
  7318. }
  7319. },
  7320. back: {
  7321. height: math.unit(6, "feet"),
  7322. weight: math.unit(200, "lb"),
  7323. name: "Back",
  7324. image: {
  7325. source: "./media/characters/mega-shi/back.svg",
  7326. extra: 1279 / 1250,
  7327. bottom: 0.02
  7328. }
  7329. },
  7330. },
  7331. [
  7332. {
  7333. name: "Micro",
  7334. height: math.unit(16 + 6 / 12, "feet")
  7335. },
  7336. {
  7337. name: "Normal",
  7338. height: math.unit(660, "feet"),
  7339. default: true
  7340. },
  7341. {
  7342. name: "Megamacro",
  7343. height: math.unit(10, "miles")
  7344. },
  7345. {
  7346. name: "Planetary Launch",
  7347. height: math.unit(500, "miles")
  7348. },
  7349. {
  7350. name: "Interstellar",
  7351. height: math.unit(1e9, "miles")
  7352. },
  7353. {
  7354. name: "Leaving the Universe",
  7355. height: math.unit(1, "gigaparsec")
  7356. },
  7357. {
  7358. name: "Travelling Universes",
  7359. height: math.unit(30e15, "parsecs")
  7360. },
  7361. ]
  7362. ))
  7363. characterMakers.push(() => makeCharacter(
  7364. { name: "Odyssey" },
  7365. {
  7366. front: {
  7367. height: math.unit(6, "feet"),
  7368. weight: math.unit(150, "lb"),
  7369. name: "Front",
  7370. image: {
  7371. source: "./media/characters/odyssey/front.svg",
  7372. extra: 1782 / 1582,
  7373. bottom: 0.01
  7374. }
  7375. },
  7376. side: {
  7377. height: math.unit(5.6, "feet"),
  7378. weight: math.unit(140, "lb"),
  7379. name: "Side",
  7380. image: {
  7381. source: "./media/characters/odyssey/side.svg",
  7382. extra: 6462 / 5700
  7383. }
  7384. },
  7385. },
  7386. [
  7387. {
  7388. name: "Normal",
  7389. height: math.unit(5 + 4 / 12, "feet")
  7390. },
  7391. {
  7392. name: "Macro",
  7393. height: math.unit(1, "km")
  7394. },
  7395. {
  7396. name: "Megamacro",
  7397. height: math.unit(3000, "km")
  7398. },
  7399. {
  7400. name: "Gigamacro",
  7401. height: math.unit(1, "AU"),
  7402. default: true
  7403. },
  7404. {
  7405. name: "Omniversal",
  7406. height: math.unit(100e14, "lightyears")
  7407. },
  7408. ]
  7409. ))
  7410. characterMakers.push(() => makeCharacter(
  7411. { name: "Mekuto" },
  7412. {
  7413. front: {
  7414. height: math.unit(6, "feet"),
  7415. weight: math.unit(300, "lb"),
  7416. name: "Front",
  7417. image: {
  7418. source: "./media/characters/mekuto/front.svg",
  7419. extra: 921 / 832,
  7420. bottom: 0.03
  7421. }
  7422. },
  7423. hand: {
  7424. height: math.unit(6 / 10.24, "feet"),
  7425. name: "Hand",
  7426. image: {
  7427. source: "./media/characters/mekuto/hand.svg"
  7428. }
  7429. },
  7430. foot: {
  7431. height: math.unit(6 / 5.05, "feet"),
  7432. name: "Foot",
  7433. image: {
  7434. source: "./media/characters/mekuto/foot.svg"
  7435. }
  7436. },
  7437. },
  7438. [
  7439. {
  7440. name: "Minimicro",
  7441. height: math.unit(0.2, "inches")
  7442. },
  7443. {
  7444. name: "Micro",
  7445. height: math.unit(1.5, "inches")
  7446. },
  7447. {
  7448. name: "Normal",
  7449. height: math.unit(5 + 11 / 12, "feet"),
  7450. default: true
  7451. },
  7452. {
  7453. name: "Minimacro",
  7454. height: math.unit(17 + 9 / 12, "feet")
  7455. },
  7456. {
  7457. name: "Macro",
  7458. height: math.unit(177.5, "feet")
  7459. },
  7460. {
  7461. name: "Megamacro",
  7462. height: math.unit(152, "miles")
  7463. },
  7464. ]
  7465. ))
  7466. characterMakers.push(() => makeCharacter(
  7467. { name: "Dafydd Tomos" },
  7468. {
  7469. front: {
  7470. height: math.unit(6.5, "inches"),
  7471. weight: math.unit(13, "oz"),
  7472. name: "Front",
  7473. image: {
  7474. source: "./media/characters/dafydd-tomos/front.svg",
  7475. extra: 2990 / 2603,
  7476. bottom: 0.03
  7477. }
  7478. },
  7479. },
  7480. [
  7481. {
  7482. name: "Micro",
  7483. height: math.unit(6.5, "inches"),
  7484. default: true
  7485. },
  7486. ]
  7487. ))
  7488. characterMakers.push(() => makeCharacter(
  7489. { name: "Splinter" },
  7490. {
  7491. front: {
  7492. height: math.unit(6, "feet"),
  7493. weight: math.unit(150, "lb"),
  7494. name: "Front",
  7495. image: {
  7496. source: "./media/characters/splinter/front.svg",
  7497. extra: 2990 / 2882,
  7498. bottom: 0.04
  7499. }
  7500. },
  7501. back: {
  7502. height: math.unit(6, "feet"),
  7503. weight: math.unit(150, "lb"),
  7504. name: "Back",
  7505. image: {
  7506. source: "./media/characters/splinter/back.svg",
  7507. extra: 2990 / 2882,
  7508. bottom: 0.04
  7509. }
  7510. },
  7511. },
  7512. [
  7513. {
  7514. name: "Normal",
  7515. height: math.unit(6, "feet")
  7516. },
  7517. {
  7518. name: "Macro",
  7519. height: math.unit(230, "meters"),
  7520. default: true
  7521. },
  7522. ]
  7523. ))
  7524. characterMakers.push(() => makeCharacter(
  7525. { name: "SnowGabumon" },
  7526. {
  7527. front: {
  7528. height: math.unit(4 + 10 / 12, "feet"),
  7529. weight: math.unit(480, "lb"),
  7530. name: "Front",
  7531. image: {
  7532. source: "./media/characters/snow-gabumon/front.svg",
  7533. extra: 1140 / 963,
  7534. bottom: 0.058
  7535. }
  7536. },
  7537. back: {
  7538. height: math.unit(4 + 10 / 12, "feet"),
  7539. weight: math.unit(480, "lb"),
  7540. name: "Back",
  7541. image: {
  7542. source: "./media/characters/snow-gabumon/back.svg",
  7543. extra: 1115 / 962,
  7544. bottom: 0.041
  7545. }
  7546. },
  7547. frontUndresed: {
  7548. height: math.unit(4 + 10 / 12, "feet"),
  7549. weight: math.unit(480, "lb"),
  7550. name: "Front (Undressed)",
  7551. image: {
  7552. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7553. extra: 1061 / 960,
  7554. bottom: 0.045
  7555. }
  7556. },
  7557. },
  7558. [
  7559. {
  7560. name: "Micro",
  7561. height: math.unit(1, "inch")
  7562. },
  7563. {
  7564. name: "Normal",
  7565. height: math.unit(4 + 10 / 12, "feet"),
  7566. default: true
  7567. },
  7568. {
  7569. name: "Macro",
  7570. height: math.unit(200, "feet")
  7571. },
  7572. {
  7573. name: "Megamacro",
  7574. height: math.unit(120, "miles")
  7575. },
  7576. {
  7577. name: "Gigamacro",
  7578. height: math.unit(9800, "miles")
  7579. },
  7580. ]
  7581. ))
  7582. characterMakers.push(() => makeCharacter(
  7583. { name: "Moody" },
  7584. {
  7585. front: {
  7586. height: math.unit(1.7, "meters"),
  7587. weight: math.unit(140, "lb"),
  7588. name: "Front",
  7589. image: {
  7590. source: "./media/characters/moody/front.svg",
  7591. extra: 3226 / 3007,
  7592. bottom: 0.087
  7593. }
  7594. },
  7595. },
  7596. [
  7597. {
  7598. name: "Micro",
  7599. height: math.unit(1, "mm")
  7600. },
  7601. {
  7602. name: "Normal",
  7603. height: math.unit(1.7, "meters"),
  7604. default: true
  7605. },
  7606. {
  7607. name: "Macro",
  7608. height: math.unit(80, "meters")
  7609. },
  7610. {
  7611. name: "Macro+",
  7612. height: math.unit(500, "meters")
  7613. },
  7614. ]
  7615. ))
  7616. characterMakers.push(() => makeCharacter(
  7617. { name: "Zyas" },
  7618. {
  7619. front: {
  7620. height: math.unit(6, "feet"),
  7621. weight: math.unit(150, "lb"),
  7622. name: "Front",
  7623. image: {
  7624. source: "./media/characters/zyas/front.svg",
  7625. extra: 1180 / 1120,
  7626. bottom: 0.045
  7627. }
  7628. },
  7629. },
  7630. [
  7631. {
  7632. name: "Normal",
  7633. height: math.unit(10, "feet"),
  7634. default: true
  7635. },
  7636. {
  7637. name: "Macro",
  7638. height: math.unit(500, "feet")
  7639. },
  7640. {
  7641. name: "Megamacro",
  7642. height: math.unit(5, "miles")
  7643. },
  7644. {
  7645. name: "Teramacro",
  7646. height: math.unit(150000, "miles")
  7647. },
  7648. ]
  7649. ))
  7650. characterMakers.push(() => makeCharacter(
  7651. { name: "Cuon" },
  7652. {
  7653. front: {
  7654. height: math.unit(6, "feet"),
  7655. weight: math.unit(150, "lb"),
  7656. name: "Front",
  7657. image: {
  7658. source: "./media/characters/cuon/front.svg",
  7659. extra: 1390 / 1320,
  7660. bottom: 0.008
  7661. }
  7662. },
  7663. },
  7664. [
  7665. {
  7666. name: "Micro",
  7667. height: math.unit(3, "inches")
  7668. },
  7669. {
  7670. name: "Normal",
  7671. height: math.unit(18 + 9 / 12, "feet"),
  7672. default: true
  7673. },
  7674. {
  7675. name: "Macro",
  7676. height: math.unit(360, "feet")
  7677. },
  7678. {
  7679. name: "Megamacro",
  7680. height: math.unit(360, "miles")
  7681. },
  7682. ]
  7683. ))
  7684. characterMakers.push(() => makeCharacter(
  7685. { name: "Nyanuxk" },
  7686. {
  7687. front: {
  7688. height: math.unit(2.4, "meters"),
  7689. weight: math.unit(70, "kg"),
  7690. name: "Front",
  7691. image: {
  7692. source: "./media/characters/nyanuxk/front.svg",
  7693. extra: 1172 / 1084,
  7694. bottom: 0.065
  7695. }
  7696. },
  7697. side: {
  7698. height: math.unit(2.4, "meters"),
  7699. weight: math.unit(70, "kg"),
  7700. name: "Side",
  7701. image: {
  7702. source: "./media/characters/nyanuxk/side.svg",
  7703. extra: 1190 / 1132,
  7704. bottom: 0.007
  7705. }
  7706. },
  7707. back: {
  7708. height: math.unit(2.4, "meters"),
  7709. weight: math.unit(70, "kg"),
  7710. name: "Back",
  7711. image: {
  7712. source: "./media/characters/nyanuxk/back.svg",
  7713. extra: 1200 / 1141,
  7714. bottom: 0.015
  7715. }
  7716. },
  7717. foot: {
  7718. height: math.unit(0.52, "meters"),
  7719. name: "Foot",
  7720. image: {
  7721. source: "./media/characters/nyanuxk/foot.svg"
  7722. }
  7723. },
  7724. },
  7725. [
  7726. {
  7727. name: "Micro",
  7728. height: math.unit(2, "cm")
  7729. },
  7730. {
  7731. name: "Normal",
  7732. height: math.unit(2.4, "meters"),
  7733. default: true
  7734. },
  7735. {
  7736. name: "Smaller Macro",
  7737. height: math.unit(120, "meters")
  7738. },
  7739. {
  7740. name: "Bigger Macro",
  7741. height: math.unit(1.2, "km")
  7742. },
  7743. {
  7744. name: "Megamacro",
  7745. height: math.unit(15, "kilometers")
  7746. },
  7747. {
  7748. name: "Gigamacro",
  7749. height: math.unit(2000, "km")
  7750. },
  7751. {
  7752. name: "Teramacro",
  7753. height: math.unit(500000, "km")
  7754. },
  7755. ]
  7756. ))
  7757. characterMakers.push(() => makeCharacter(
  7758. { name: "Ailbhe" },
  7759. {
  7760. side: {
  7761. height: math.unit(6, "feet"),
  7762. name: "Side",
  7763. image: {
  7764. source: "./media/characters/ailbhe/side.svg",
  7765. extra: 757 / 464,
  7766. bottom: 0.041
  7767. }
  7768. },
  7769. },
  7770. [
  7771. {
  7772. name: "Normal",
  7773. height: math.unit(1.07, "meters"),
  7774. default: true
  7775. },
  7776. ]
  7777. ))
  7778. characterMakers.push(() => makeCharacter(
  7779. { name: "Zevulfius" },
  7780. {
  7781. front: {
  7782. height: math.unit(6, "feet"),
  7783. weight: math.unit(120, "kg"),
  7784. name: "Front",
  7785. image: {
  7786. source: "./media/characters/zevulfius/front.svg",
  7787. extra: 965 / 903
  7788. }
  7789. },
  7790. side: {
  7791. height: math.unit(6, "feet"),
  7792. weight: math.unit(120, "kg"),
  7793. name: "Side",
  7794. image: {
  7795. source: "./media/characters/zevulfius/side.svg",
  7796. extra: 939 / 900
  7797. }
  7798. },
  7799. back: {
  7800. height: math.unit(6, "feet"),
  7801. weight: math.unit(120, "kg"),
  7802. name: "Back",
  7803. image: {
  7804. source: "./media/characters/zevulfius/back.svg",
  7805. extra: 918 / 854,
  7806. bottom: 0.005
  7807. }
  7808. },
  7809. foot: {
  7810. height: math.unit(6 / 3.72, "feet"),
  7811. name: "Foot",
  7812. image: {
  7813. source: "./media/characters/zevulfius/foot.svg"
  7814. }
  7815. },
  7816. },
  7817. [
  7818. {
  7819. name: "Macro",
  7820. height: math.unit(750, "meters")
  7821. },
  7822. {
  7823. name: "Megamacro",
  7824. height: math.unit(20, "km"),
  7825. default: true
  7826. },
  7827. {
  7828. name: "Gigamacro",
  7829. height: math.unit(2000, "km")
  7830. },
  7831. {
  7832. name: "Teramacro",
  7833. height: math.unit(250000, "km")
  7834. },
  7835. ]
  7836. ))
  7837. characterMakers.push(() => makeCharacter(
  7838. { name: "Rikes" },
  7839. {
  7840. front: {
  7841. height: math.unit(100, "feet"),
  7842. weight: math.unit(350, "kg"),
  7843. name: "Front",
  7844. image: {
  7845. source: "./media/characters/rikes/front.svg",
  7846. extra: 1565 / 1483,
  7847. bottom: 0.017
  7848. }
  7849. },
  7850. },
  7851. [
  7852. {
  7853. name: "Macro",
  7854. height: math.unit(100, "feet"),
  7855. default: true
  7856. },
  7857. ]
  7858. ))
  7859. characterMakers.push(() => makeCharacter(
  7860. { name: "Adam Silver-Mane" },
  7861. {
  7862. anthro: {
  7863. height: math.unit(8, "feet"),
  7864. weight: math.unit(120, "kg"),
  7865. name: "Anthro",
  7866. image: {
  7867. source: "./media/characters/adam-silver-mane/anthro.svg",
  7868. extra: 5743 / 5339,
  7869. bottom: 0.07
  7870. }
  7871. },
  7872. taur: {
  7873. height: math.unit(16, "feet"),
  7874. weight: math.unit(1500, "kg"),
  7875. name: "Taur",
  7876. image: {
  7877. source: "./media/characters/adam-silver-mane/taur.svg",
  7878. extra: 1713 / 1571,
  7879. bottom: 0.01
  7880. }
  7881. },
  7882. },
  7883. [
  7884. {
  7885. name: "Normal",
  7886. height: math.unit(8, "feet")
  7887. },
  7888. {
  7889. name: "Minimacro",
  7890. height: math.unit(80, "feet")
  7891. },
  7892. {
  7893. name: "Macro",
  7894. height: math.unit(800, "feet"),
  7895. default: true
  7896. },
  7897. {
  7898. name: "Megamacro",
  7899. height: math.unit(8000, "feet")
  7900. },
  7901. {
  7902. name: "Gigamacro",
  7903. height: math.unit(800, "miles")
  7904. },
  7905. {
  7906. name: "Teramacro",
  7907. height: math.unit(80000, "miles")
  7908. },
  7909. {
  7910. name: "Celestial",
  7911. height: math.unit(8e6, "miles")
  7912. },
  7913. {
  7914. name: "Star Dragon",
  7915. height: math.unit(800000, "parsecs")
  7916. },
  7917. {
  7918. name: "Godly",
  7919. height: math.unit(800, "teraparsecs")
  7920. },
  7921. ]
  7922. ))
  7923. characterMakers.push(() => makeCharacter(
  7924. { name: "Ky'owin" },
  7925. {
  7926. front: {
  7927. height: math.unit(6, "feet"),
  7928. weight: math.unit(150, "lb"),
  7929. name: "Front",
  7930. image: {
  7931. source: "./media/characters/ky'owin/front.svg",
  7932. extra: 3888 / 3068,
  7933. bottom: 0.015
  7934. }
  7935. },
  7936. },
  7937. [
  7938. {
  7939. name: "Normal",
  7940. height: math.unit(6 + 8 / 12, "feet")
  7941. },
  7942. {
  7943. name: "Large",
  7944. height: math.unit(68, "feet")
  7945. },
  7946. {
  7947. name: "Macro",
  7948. height: math.unit(132, "feet")
  7949. },
  7950. {
  7951. name: "Macro+",
  7952. height: math.unit(340, "feet")
  7953. },
  7954. {
  7955. name: "Macro++",
  7956. height: math.unit(680, "feet"),
  7957. default: true
  7958. },
  7959. {
  7960. name: "Megamacro",
  7961. height: math.unit(1, "mile")
  7962. },
  7963. {
  7964. name: "Megamacro+",
  7965. height: math.unit(10, "miles")
  7966. },
  7967. ]
  7968. ))
  7969. characterMakers.push(() => makeCharacter(
  7970. { name: "Mal" },
  7971. {
  7972. front: {
  7973. height: math.unit(4, "feet"),
  7974. weight: math.unit(50, "lb"),
  7975. name: "Front",
  7976. image: {
  7977. source: "./media/characters/mal/front.svg",
  7978. extra: 785 / 724,
  7979. bottom: 0.07
  7980. }
  7981. },
  7982. },
  7983. [
  7984. {
  7985. name: "Micro",
  7986. height: math.unit(4, "inches")
  7987. },
  7988. {
  7989. name: "Normal",
  7990. height: math.unit(4, "feet"),
  7991. default: true
  7992. },
  7993. {
  7994. name: "Macro",
  7995. height: math.unit(200, "feet")
  7996. },
  7997. ]
  7998. ))
  7999. characterMakers.push(() => makeCharacter(
  8000. { name: "Jordan Deware" },
  8001. {
  8002. front: {
  8003. height: math.unit(6, "feet"),
  8004. weight: math.unit(150, "lb"),
  8005. name: "Front",
  8006. image: {
  8007. source: "./media/characters/jordan-deware/front.svg",
  8008. extra: 1191 / 1012
  8009. }
  8010. },
  8011. },
  8012. [
  8013. {
  8014. name: "Nano",
  8015. height: math.unit(0.01, "mm")
  8016. },
  8017. {
  8018. name: "Minimicro",
  8019. height: math.unit(1, "mm")
  8020. },
  8021. {
  8022. name: "Micro",
  8023. height: math.unit(0.5, "inches")
  8024. },
  8025. {
  8026. name: "Normal",
  8027. height: math.unit(4, "feet"),
  8028. default: true
  8029. },
  8030. {
  8031. name: "Minimacro",
  8032. height: math.unit(40, "meters")
  8033. },
  8034. {
  8035. name: "Small Macro",
  8036. height: math.unit(400, "meters")
  8037. },
  8038. {
  8039. name: "Macro",
  8040. height: math.unit(4, "miles")
  8041. },
  8042. {
  8043. name: "Megamacro",
  8044. height: math.unit(40, "miles")
  8045. },
  8046. {
  8047. name: "Megamacro+",
  8048. height: math.unit(400, "miles")
  8049. },
  8050. {
  8051. name: "Gigamacro",
  8052. height: math.unit(400000, "miles")
  8053. },
  8054. ]
  8055. ))
  8056. characterMakers.push(() => makeCharacter(
  8057. { name: "Kimiko" },
  8058. {
  8059. side: {
  8060. height: math.unit(6, "feet"),
  8061. weight: math.unit(150, "lb"),
  8062. name: "Side",
  8063. image: {
  8064. source: "./media/characters/kimiko/side.svg",
  8065. extra: 600 / 358
  8066. }
  8067. },
  8068. },
  8069. [
  8070. {
  8071. name: "Normal",
  8072. height: math.unit(15, "feet"),
  8073. default: true
  8074. },
  8075. {
  8076. name: "Macro",
  8077. height: math.unit(220, "feet")
  8078. },
  8079. {
  8080. name: "Macro+",
  8081. height: math.unit(1450, "feet")
  8082. },
  8083. {
  8084. name: "Megamacro",
  8085. height: math.unit(11500, "feet")
  8086. },
  8087. {
  8088. name: "Gigamacro",
  8089. height: math.unit(9500, "miles")
  8090. },
  8091. {
  8092. name: "Teramacro",
  8093. height: math.unit(2208005005, "miles")
  8094. },
  8095. {
  8096. name: "Examacro",
  8097. height: math.unit(2750, "parsecs")
  8098. },
  8099. {
  8100. name: "Zettamacro",
  8101. height: math.unit(101500, "parsecs")
  8102. },
  8103. ]
  8104. ))
  8105. characterMakers.push(() => makeCharacter(
  8106. { name: "Andrew Sleepy" },
  8107. {
  8108. front: {
  8109. height: math.unit(6, "feet"),
  8110. weight: math.unit(70, "kg"),
  8111. name: "Front",
  8112. image: {
  8113. source: "./media/characters/andrew-sleepy/front.svg"
  8114. }
  8115. },
  8116. side: {
  8117. height: math.unit(6, "feet"),
  8118. weight: math.unit(70, "kg"),
  8119. name: "Side",
  8120. image: {
  8121. source: "./media/characters/andrew-sleepy/side.svg"
  8122. }
  8123. },
  8124. },
  8125. [
  8126. {
  8127. name: "Micro",
  8128. height: math.unit(1, "mm"),
  8129. default: true
  8130. },
  8131. ]
  8132. ))
  8133. characterMakers.push(() => makeCharacter(
  8134. { name: "Judio" },
  8135. {
  8136. front: {
  8137. height: math.unit(6, "feet"),
  8138. weight: math.unit(150, "lb"),
  8139. name: "Front",
  8140. image: {
  8141. source: "./media/characters/judio/front.svg",
  8142. extra: 1258 / 1110
  8143. }
  8144. },
  8145. },
  8146. [
  8147. {
  8148. name: "Normal",
  8149. height: math.unit(5 + 6 / 12, "feet")
  8150. },
  8151. {
  8152. name: "Macro",
  8153. height: math.unit(1000, "feet"),
  8154. default: true
  8155. },
  8156. {
  8157. name: "Megamacro",
  8158. height: math.unit(10, "miles")
  8159. },
  8160. ]
  8161. ))
  8162. characterMakers.push(() => makeCharacter(
  8163. { name: "Nomaxice" },
  8164. {
  8165. front: {
  8166. height: math.unit(6, "feet"),
  8167. weight: math.unit(68, "kg"),
  8168. name: "Front",
  8169. image: {
  8170. source: "./media/characters/nomaxice/front.svg",
  8171. extra: 1498 / 1073,
  8172. bottom: 0.075
  8173. }
  8174. },
  8175. foot: {
  8176. height: math.unit(1.1, "feet"),
  8177. name: "Foot",
  8178. image: {
  8179. source: "./media/characters/nomaxice/foot.svg"
  8180. }
  8181. },
  8182. },
  8183. [
  8184. {
  8185. name: "Micro",
  8186. height: math.unit(8, "cm")
  8187. },
  8188. {
  8189. name: "Norm",
  8190. height: math.unit(1.82, "m")
  8191. },
  8192. {
  8193. name: "Norm+",
  8194. height: math.unit(8.8, "feet")
  8195. },
  8196. {
  8197. name: "Big",
  8198. height: math.unit(8, "meters"),
  8199. default: true
  8200. },
  8201. {
  8202. name: "Macro",
  8203. height: math.unit(18, "meters")
  8204. },
  8205. {
  8206. name: "Macro+",
  8207. height: math.unit(88, "meters")
  8208. },
  8209. ]
  8210. ))
  8211. characterMakers.push(() => makeCharacter(
  8212. { name: "Dydros" },
  8213. {
  8214. front: {
  8215. height: math.unit(12, "feet"),
  8216. weight: math.unit(1.5, "tons"),
  8217. name: "Front",
  8218. image: {
  8219. source: "./media/characters/dydros/front.svg",
  8220. extra: 863 / 800,
  8221. bottom: 0.015
  8222. }
  8223. },
  8224. back: {
  8225. height: math.unit(12, "feet"),
  8226. weight: math.unit(1.5, "tons"),
  8227. name: "Back",
  8228. image: {
  8229. source: "./media/characters/dydros/back.svg",
  8230. extra: 900 / 843,
  8231. bottom: 0.005
  8232. }
  8233. },
  8234. },
  8235. [
  8236. {
  8237. name: "Normal",
  8238. height: math.unit(12, "feet"),
  8239. default: true
  8240. },
  8241. ]
  8242. ))
  8243. characterMakers.push(() => makeCharacter(
  8244. { name: "Riggi" },
  8245. {
  8246. front: {
  8247. height: math.unit(6, "feet"),
  8248. weight: math.unit(100, "kg"),
  8249. name: "Front",
  8250. image: {
  8251. source: "./media/characters/riggi/front.svg",
  8252. extra: 5787 / 5303
  8253. }
  8254. },
  8255. hyper: {
  8256. height: math.unit(6 * 5 / 3, "feet"),
  8257. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8258. name: "Hyper",
  8259. image: {
  8260. source: "./media/characters/riggi/hyper.svg",
  8261. extra: 3595 / 3485
  8262. }
  8263. },
  8264. },
  8265. [
  8266. {
  8267. name: "Small Macro",
  8268. height: math.unit(50, "feet")
  8269. },
  8270. {
  8271. name: "Default",
  8272. height: math.unit(200, "feet"),
  8273. default: true
  8274. },
  8275. {
  8276. name: "Loom",
  8277. height: math.unit(10000, "feet")
  8278. },
  8279. {
  8280. name: "Cruising Altitude",
  8281. height: math.unit(30000, "feet")
  8282. },
  8283. {
  8284. name: "Megamacro",
  8285. height: math.unit(100, "miles")
  8286. },
  8287. {
  8288. name: "Continent Sized",
  8289. height: math.unit(2800, "miles")
  8290. },
  8291. {
  8292. name: "Earth Sized",
  8293. height: math.unit(8000, "miles")
  8294. },
  8295. ]
  8296. ))
  8297. characterMakers.push(() => makeCharacter(
  8298. { name: "Alexi" },
  8299. {
  8300. front: {
  8301. height: math.unit(6, "feet"),
  8302. weight: math.unit(250, "lb"),
  8303. name: "Front",
  8304. image: {
  8305. source: "./media/characters/alexi/front.svg",
  8306. extra: 3483 / 3291,
  8307. bottom: 0.04
  8308. }
  8309. },
  8310. back: {
  8311. height: math.unit(6, "feet"),
  8312. weight: math.unit(250, "lb"),
  8313. name: "Back",
  8314. image: {
  8315. source: "./media/characters/alexi/back.svg",
  8316. extra: 3533 / 3356,
  8317. bottom: 0.021
  8318. }
  8319. },
  8320. frontTransformed: {
  8321. height: math.unit(12.5, "feet"),
  8322. weight: math.unit(4000, "lb"),
  8323. name: "Front (Transformed)",
  8324. image: {
  8325. source: "./media/characters/alexi/front-transformed.svg",
  8326. extra: 5345 / 5100,
  8327. bottom: 0.03
  8328. }
  8329. },
  8330. },
  8331. [
  8332. {
  8333. name: "Normal",
  8334. height: math.unit(3, "meters"),
  8335. default: true
  8336. },
  8337. {
  8338. name: "Minimacro",
  8339. height: math.unit(30, "meters")
  8340. },
  8341. {
  8342. name: "Macro",
  8343. height: math.unit(500, "meters")
  8344. },
  8345. {
  8346. name: "Megamacro",
  8347. height: math.unit(9000, "km")
  8348. },
  8349. {
  8350. name: "Teramacro",
  8351. height: math.unit(384000, "km")
  8352. },
  8353. ]
  8354. ))
  8355. characterMakers.push(() => makeCharacter(
  8356. { name: "Kayroo" },
  8357. {
  8358. front: {
  8359. height: math.unit(6, "feet"),
  8360. weight: math.unit(150, "lb"),
  8361. name: "Front",
  8362. image: {
  8363. source: "./media/characters/kayroo/front.svg",
  8364. extra: 1153 / 1038,
  8365. bottom: 0.06
  8366. }
  8367. },
  8368. foot: {
  8369. height: math.unit(6, "feet"),
  8370. weight: math.unit(150, "lb"),
  8371. name: "Foot",
  8372. image: {
  8373. source: "./media/characters/kayroo/foot.svg"
  8374. }
  8375. },
  8376. },
  8377. [
  8378. {
  8379. name: "Normal",
  8380. height: math.unit(8, "feet"),
  8381. default: true
  8382. },
  8383. {
  8384. name: "Minimacro",
  8385. height: math.unit(250, "feet")
  8386. },
  8387. {
  8388. name: "Macro",
  8389. height: math.unit(2800, "feet")
  8390. },
  8391. {
  8392. name: "Megamacro",
  8393. height: math.unit(5200, "feet")
  8394. },
  8395. {
  8396. name: "Gigamacro",
  8397. height: math.unit(27000, "feet")
  8398. },
  8399. {
  8400. name: "Omega",
  8401. height: math.unit(45000, "feet")
  8402. },
  8403. ]
  8404. ))
  8405. characterMakers.push(() => makeCharacter(
  8406. { name: "Rhys" },
  8407. {
  8408. front: {
  8409. height: math.unit(18, "feet"),
  8410. weight: math.unit(5800, "lb"),
  8411. name: "Front",
  8412. image: {
  8413. source: "./media/characters/rhys/front.svg",
  8414. extra: 3386 / 3090,
  8415. bottom: 0.07
  8416. }
  8417. },
  8418. },
  8419. [
  8420. {
  8421. name: "Normal",
  8422. height: math.unit(18, "feet"),
  8423. default: true
  8424. },
  8425. {
  8426. name: "Working Size",
  8427. height: math.unit(200, "feet")
  8428. },
  8429. {
  8430. name: "Demolition Size",
  8431. height: math.unit(2000, "feet")
  8432. },
  8433. {
  8434. name: "Maximum Licensed Size",
  8435. height: math.unit(5, "miles")
  8436. },
  8437. {
  8438. name: "Maximum Observed Size",
  8439. height: math.unit(10, "yottameters")
  8440. },
  8441. ]
  8442. ))
  8443. characterMakers.push(() => makeCharacter(
  8444. { name: "Toto" },
  8445. {
  8446. front: {
  8447. height: math.unit(6, "feet"),
  8448. weight: math.unit(250, "lb"),
  8449. name: "Front",
  8450. image: {
  8451. source: "./media/characters/toto/front.svg",
  8452. extra: 527 / 479,
  8453. bottom: 0.05
  8454. }
  8455. },
  8456. },
  8457. [
  8458. {
  8459. name: "Micro",
  8460. height: math.unit(3, "feet")
  8461. },
  8462. {
  8463. name: "Normal",
  8464. height: math.unit(10, "feet")
  8465. },
  8466. {
  8467. name: "Macro",
  8468. height: math.unit(150, "feet"),
  8469. default: true
  8470. },
  8471. {
  8472. name: "Megamacro",
  8473. height: math.unit(1200, "feet")
  8474. },
  8475. ]
  8476. ))
  8477. characterMakers.push(() => makeCharacter(
  8478. { name: "King" },
  8479. {
  8480. back: {
  8481. height: math.unit(6, "feet"),
  8482. weight: math.unit(150, "lb"),
  8483. name: "Back",
  8484. image: {
  8485. source: "./media/characters/king/back.svg"
  8486. }
  8487. },
  8488. },
  8489. [
  8490. {
  8491. name: "Micro",
  8492. height: math.unit(2, "inches")
  8493. },
  8494. {
  8495. name: "Normal",
  8496. height: math.unit(8, "feet")
  8497. },
  8498. {
  8499. name: "Macro",
  8500. height: math.unit(200, "feet"),
  8501. default: true
  8502. },
  8503. {
  8504. name: "Megamacro",
  8505. height: math.unit(50, "miles")
  8506. },
  8507. ]
  8508. ))
  8509. characterMakers.push(() => makeCharacter(
  8510. { name: "Cordite" },
  8511. {
  8512. anthro: {
  8513. height: math.unit(6 + 5 / 12, "feet"),
  8514. weight: math.unit(280, "lb"),
  8515. name: "Anthro",
  8516. image: {
  8517. source: "./media/characters/cordite/anthro.svg",
  8518. extra: 1986 / 1905,
  8519. bottom: 0.025
  8520. }
  8521. },
  8522. feral: {
  8523. height: math.unit(2, "feet"),
  8524. weight: math.unit(90, "lb"),
  8525. name: "Feral",
  8526. image: {
  8527. source: "./media/characters/cordite/feral.svg",
  8528. extra: 1260 / 755,
  8529. bottom: 0.05
  8530. }
  8531. },
  8532. },
  8533. [
  8534. {
  8535. name: "Normal",
  8536. height: math.unit(6 + 5 / 12, "feet"),
  8537. default: true
  8538. },
  8539. ]
  8540. ))
  8541. characterMakers.push(() => makeCharacter(
  8542. { name: "Pianostrong" },
  8543. {
  8544. front: {
  8545. height: math.unit(6, "feet"),
  8546. weight: math.unit(150, "lb"),
  8547. name: "Front",
  8548. image: {
  8549. source: "./media/characters/pianostrong/front.svg",
  8550. extra: 6577 / 6254,
  8551. bottom: 0.02
  8552. }
  8553. },
  8554. side: {
  8555. height: math.unit(6, "feet"),
  8556. weight: math.unit(150, "lb"),
  8557. name: "Side",
  8558. image: {
  8559. source: "./media/characters/pianostrong/side.svg",
  8560. extra: 6106 / 5730
  8561. }
  8562. },
  8563. back: {
  8564. height: math.unit(6, "feet"),
  8565. weight: math.unit(150, "lb"),
  8566. name: "Back",
  8567. image: {
  8568. source: "./media/characters/pianostrong/back.svg",
  8569. extra: 6085 / 5733,
  8570. bottom: 0.01
  8571. }
  8572. },
  8573. },
  8574. [
  8575. {
  8576. name: "Macro",
  8577. height: math.unit(100, "feet")
  8578. },
  8579. {
  8580. name: "Macro+",
  8581. height: math.unit(300, "feet"),
  8582. default: true
  8583. },
  8584. {
  8585. name: "Macro++",
  8586. height: math.unit(1000, "feet")
  8587. },
  8588. ]
  8589. ))
  8590. characterMakers.push(() => makeCharacter(
  8591. { name: "Kona" },
  8592. {
  8593. front: {
  8594. height: math.unit(6, "feet"),
  8595. weight: math.unit(150, "lb"),
  8596. name: "Front",
  8597. image: {
  8598. source: "./media/characters/kona/front.svg",
  8599. extra: 2960 / 2629,
  8600. bottom: 0.005
  8601. }
  8602. },
  8603. },
  8604. [
  8605. {
  8606. name: "Normal",
  8607. height: math.unit(11 + 8 / 12, "feet")
  8608. },
  8609. {
  8610. name: "Macro",
  8611. height: math.unit(850, "feet"),
  8612. default: true
  8613. },
  8614. {
  8615. name: "Macro+",
  8616. height: math.unit(1.5, "km"),
  8617. default: true
  8618. },
  8619. {
  8620. name: "Megamacro",
  8621. height: math.unit(80, "miles")
  8622. },
  8623. {
  8624. name: "Gigamacro",
  8625. height: math.unit(3500, "miles")
  8626. },
  8627. ]
  8628. ))
  8629. characterMakers.push(() => makeCharacter(
  8630. { name: "Levi" },
  8631. {
  8632. side: {
  8633. height: math.unit(1.9, "meters"),
  8634. weight: math.unit(326, "kg"),
  8635. name: "Side",
  8636. image: {
  8637. source: "./media/characters/levi/side.svg",
  8638. extra: 1704 / 1334,
  8639. bottom: 0.02
  8640. }
  8641. },
  8642. },
  8643. [
  8644. {
  8645. name: "Normal",
  8646. height: math.unit(1.9, "meters"),
  8647. default: true
  8648. },
  8649. {
  8650. name: "Macro",
  8651. height: math.unit(20, "meters")
  8652. },
  8653. {
  8654. name: "Macro+",
  8655. height: math.unit(200, "meters")
  8656. },
  8657. {
  8658. name: "Megamacro",
  8659. height: math.unit(2, "km")
  8660. },
  8661. {
  8662. name: "Megamacro+",
  8663. height: math.unit(20, "km")
  8664. },
  8665. {
  8666. name: "Gigamacro",
  8667. height: math.unit(2500, "km")
  8668. },
  8669. {
  8670. name: "Gigamacro+",
  8671. height: math.unit(120000, "km")
  8672. },
  8673. {
  8674. name: "Teramacro",
  8675. height: math.unit(7.77e6, "km")
  8676. },
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "BMC" },
  8681. {
  8682. front: {
  8683. height: math.unit(6 + 4 / 12, "feet"),
  8684. weight: math.unit(188, "lb"),
  8685. name: "Front",
  8686. image: {
  8687. source: "./media/characters/bmc/front.svg",
  8688. extra: 1067 / 1022,
  8689. bottom: 0.047
  8690. }
  8691. },
  8692. },
  8693. [
  8694. {
  8695. name: "Human-sized",
  8696. height: math.unit(6 + 4 / 12, "feet")
  8697. },
  8698. {
  8699. name: "Small",
  8700. height: math.unit(250, "feet")
  8701. },
  8702. {
  8703. name: "Normal",
  8704. height: math.unit(1250, "feet"),
  8705. default: true
  8706. },
  8707. {
  8708. name: "Good Day",
  8709. height: math.unit(88, "miles")
  8710. },
  8711. {
  8712. name: "Largest Measured Size",
  8713. height: math.unit(11.2e6, "lightyears")
  8714. },
  8715. ]
  8716. ))
  8717. characterMakers.push(() => makeCharacter(
  8718. { name: "Sven the Kaiju" },
  8719. {
  8720. front: {
  8721. height: math.unit(20, "feet"),
  8722. weight: math.unit(2016, "kg"),
  8723. name: "Front",
  8724. image: {
  8725. source: "./media/characters/sven-the-kaiju/front.svg",
  8726. extra: 1479 / 1449,
  8727. bottom: 0.05
  8728. }
  8729. },
  8730. },
  8731. [
  8732. {
  8733. name: "Fairy",
  8734. height: math.unit(6, "inches")
  8735. },
  8736. {
  8737. name: "Normal",
  8738. height: math.unit(20, "feet"),
  8739. default: true
  8740. },
  8741. {
  8742. name: "Rampage",
  8743. height: math.unit(200, "feet")
  8744. },
  8745. {
  8746. name: "Archfey Forest Guardian",
  8747. height: math.unit(1, "mile")
  8748. },
  8749. ]
  8750. ))
  8751. characterMakers.push(() => makeCharacter(
  8752. { name: "Marik" },
  8753. {
  8754. front: {
  8755. height: math.unit(4, "meters"),
  8756. weight: math.unit(2, "tons"),
  8757. name: "Front",
  8758. image: {
  8759. source: "./media/characters/marik/front.svg",
  8760. extra: 1057 / 1003,
  8761. bottom: 0.08
  8762. }
  8763. },
  8764. },
  8765. [
  8766. {
  8767. name: "Normal",
  8768. height: math.unit(4, "meters"),
  8769. default: true
  8770. },
  8771. {
  8772. name: "Macro",
  8773. height: math.unit(20, "meters")
  8774. },
  8775. {
  8776. name: "Megamacro",
  8777. height: math.unit(50, "km")
  8778. },
  8779. {
  8780. name: "Gigamacro",
  8781. height: math.unit(100, "km")
  8782. },
  8783. {
  8784. name: "Alpha Macro",
  8785. height: math.unit(7.88e7, "yottameters")
  8786. },
  8787. ]
  8788. ))
  8789. characterMakers.push(() => makeCharacter(
  8790. { name: "Mel" },
  8791. {
  8792. front: {
  8793. height: math.unit(6, "feet"),
  8794. weight: math.unit(110, "lb"),
  8795. name: "Front",
  8796. image: {
  8797. source: "./media/characters/mel/front.svg",
  8798. extra: 736 / 617,
  8799. bottom: 0.017
  8800. }
  8801. },
  8802. },
  8803. [
  8804. {
  8805. name: "Pico",
  8806. height: math.unit(3, "pm")
  8807. },
  8808. {
  8809. name: "Nano",
  8810. height: math.unit(3, "nm")
  8811. },
  8812. {
  8813. name: "Micro",
  8814. height: math.unit(0.3, "mm"),
  8815. default: true
  8816. },
  8817. {
  8818. name: "Micro+",
  8819. height: math.unit(3, "mm")
  8820. },
  8821. {
  8822. name: "Normal",
  8823. height: math.unit(5 + 10.5 / 12, "feet")
  8824. },
  8825. ]
  8826. ))
  8827. characterMakers.push(() => makeCharacter(
  8828. { name: "Lykonous" },
  8829. {
  8830. kaiju: {
  8831. height: math.unit(1.75, "meters"),
  8832. weight: math.unit(55, "kg"),
  8833. name: "Kaiju",
  8834. image: {
  8835. source: "./media/characters/lykonous/kaiju.svg",
  8836. extra: 1055 / 946,
  8837. bottom: 0.135
  8838. }
  8839. },
  8840. },
  8841. [
  8842. {
  8843. name: "Normal",
  8844. height: math.unit(2.5, "meters"),
  8845. default: true
  8846. },
  8847. {
  8848. name: "Kaiju Dragon",
  8849. height: math.unit(60, "meters")
  8850. },
  8851. {
  8852. name: "Mega Kaiju",
  8853. height: math.unit(120, "km")
  8854. },
  8855. {
  8856. name: "Giga Kaiju",
  8857. height: math.unit(200, "megameters")
  8858. },
  8859. {
  8860. name: "Terra Kaiju",
  8861. height: math.unit(400, "gigameters")
  8862. },
  8863. {
  8864. name: "Kaiju Dragon God",
  8865. height: math.unit(13000, "exaparsecs")
  8866. },
  8867. ]
  8868. ))
  8869. characterMakers.push(() => makeCharacter(
  8870. { name: "Blü" },
  8871. {
  8872. front: {
  8873. height: math.unit(6, "feet"),
  8874. weight: math.unit(150, "lb"),
  8875. name: "Front",
  8876. image: {
  8877. source: "./media/characters/blü/front.svg",
  8878. extra: 1883 / 1564,
  8879. bottom: 0.031
  8880. }
  8881. },
  8882. },
  8883. [
  8884. {
  8885. name: "Normal",
  8886. height: math.unit(13, "feet"),
  8887. default: true
  8888. },
  8889. {
  8890. name: "Big Boi",
  8891. height: math.unit(150, "meters")
  8892. },
  8893. {
  8894. name: "Mini Stomper",
  8895. height: math.unit(300, "meters")
  8896. },
  8897. {
  8898. name: "Macro",
  8899. height: math.unit(1000, "meters")
  8900. },
  8901. {
  8902. name: "Megamacro",
  8903. height: math.unit(11000, "meters")
  8904. },
  8905. {
  8906. name: "Gigamacro",
  8907. height: math.unit(11000, "km")
  8908. },
  8909. {
  8910. name: "Teramacro",
  8911. height: math.unit(420000, "km")
  8912. },
  8913. {
  8914. name: "Examacro",
  8915. height: math.unit(120, "parsecs")
  8916. },
  8917. {
  8918. name: "God Tho",
  8919. height: math.unit(98000000000, "parsecs")
  8920. },
  8921. ]
  8922. ))
  8923. characterMakers.push(() => makeCharacter(
  8924. { name: "Scales" },
  8925. {
  8926. taurFront: {
  8927. height: math.unit(6, "feet"),
  8928. weight: math.unit(200, "lb"),
  8929. name: "Taur (Front)",
  8930. image: {
  8931. source: "./media/characters/scales/taur-front.svg",
  8932. extra: 1,
  8933. bottom: 0.05
  8934. }
  8935. },
  8936. taurBack: {
  8937. height: math.unit(6, "feet"),
  8938. weight: math.unit(200, "lb"),
  8939. name: "Taur (Back)",
  8940. image: {
  8941. source: "./media/characters/scales/taur-back.svg",
  8942. extra: 1,
  8943. bottom: 0.08
  8944. }
  8945. },
  8946. anthro: {
  8947. height: math.unit(6 * 7 / 12, "feet"),
  8948. weight: math.unit(100, "lb"),
  8949. name: "Anthro",
  8950. image: {
  8951. source: "./media/characters/scales/anthro.svg",
  8952. extra: 1,
  8953. bottom: 0.06
  8954. }
  8955. },
  8956. },
  8957. [
  8958. {
  8959. name: "Normal",
  8960. height: math.unit(12, "feet"),
  8961. default: true
  8962. },
  8963. ]
  8964. ))
  8965. characterMakers.push(() => makeCharacter(
  8966. { name: "Koragos" },
  8967. {
  8968. front: {
  8969. height: math.unit(6, "feet"),
  8970. weight: math.unit(150, "lb"),
  8971. name: "Front",
  8972. image: {
  8973. source: "./media/characters/koragos/front.svg",
  8974. extra: 841 / 794,
  8975. bottom: 0.035
  8976. }
  8977. },
  8978. back: {
  8979. height: math.unit(6, "feet"),
  8980. weight: math.unit(150, "lb"),
  8981. name: "Back",
  8982. image: {
  8983. source: "./media/characters/koragos/back.svg",
  8984. extra: 841 / 810,
  8985. bottom: 0.022
  8986. }
  8987. },
  8988. },
  8989. [
  8990. {
  8991. name: "Normal",
  8992. height: math.unit(6 + 11 / 12, "feet"),
  8993. default: true
  8994. },
  8995. {
  8996. name: "Macro",
  8997. height: math.unit(490, "feet")
  8998. },
  8999. {
  9000. name: "Megamacro",
  9001. height: math.unit(10, "miles")
  9002. },
  9003. {
  9004. name: "Gigamacro",
  9005. height: math.unit(50, "miles")
  9006. },
  9007. ]
  9008. ))
  9009. characterMakers.push(() => makeCharacter(
  9010. { name: "Xylrem" },
  9011. {
  9012. front: {
  9013. height: math.unit(6, "feet"),
  9014. weight: math.unit(250, "lb"),
  9015. name: "Front",
  9016. image: {
  9017. source: "./media/characters/xylrem/front.svg",
  9018. extra: 3323 / 3050,
  9019. bottom: 0.065
  9020. }
  9021. },
  9022. },
  9023. [
  9024. {
  9025. name: "Micro",
  9026. height: math.unit(4, "feet")
  9027. },
  9028. {
  9029. name: "Normal",
  9030. height: math.unit(16, "feet"),
  9031. default: true
  9032. },
  9033. {
  9034. name: "Macro",
  9035. height: math.unit(2720, "feet")
  9036. },
  9037. {
  9038. name: "Megamacro",
  9039. height: math.unit(25000, "miles")
  9040. },
  9041. ]
  9042. ))
  9043. characterMakers.push(() => makeCharacter(
  9044. { name: "Ikideru" },
  9045. {
  9046. front: {
  9047. height: math.unit(8, "feet"),
  9048. weight: math.unit(250, "kg"),
  9049. name: "Front",
  9050. image: {
  9051. source: "./media/characters/ikideru/front.svg",
  9052. extra: 930 / 870,
  9053. bottom: 0.087
  9054. }
  9055. },
  9056. back: {
  9057. height: math.unit(8, "feet"),
  9058. weight: math.unit(250, "kg"),
  9059. name: "Back",
  9060. image: {
  9061. source: "./media/characters/ikideru/back.svg",
  9062. extra: 919 / 852,
  9063. bottom: 0.055
  9064. }
  9065. },
  9066. },
  9067. [
  9068. {
  9069. name: "Rare",
  9070. height: math.unit(8, "feet"),
  9071. default: true
  9072. },
  9073. {
  9074. name: "Playful Loom",
  9075. height: math.unit(80, "feet")
  9076. },
  9077. {
  9078. name: "City Leaner",
  9079. height: math.unit(230, "feet")
  9080. },
  9081. {
  9082. name: "Megamacro",
  9083. height: math.unit(2500, "feet")
  9084. },
  9085. {
  9086. name: "Gigamacro",
  9087. height: math.unit(26400, "feet")
  9088. },
  9089. {
  9090. name: "Tectonic Shifter",
  9091. height: math.unit(1.7, "megameters")
  9092. },
  9093. {
  9094. name: "Planet Carer",
  9095. height: math.unit(21, "megameters")
  9096. },
  9097. {
  9098. name: "God",
  9099. height: math.unit(11157.22, "parsecs")
  9100. },
  9101. ]
  9102. ))
  9103. characterMakers.push(() => makeCharacter(
  9104. { name: "Neo" },
  9105. {
  9106. front: {
  9107. height: math.unit(6, "feet"),
  9108. weight: math.unit(120, "lb"),
  9109. name: "Front",
  9110. image: {
  9111. source: "./media/characters/neo/front.svg"
  9112. }
  9113. },
  9114. },
  9115. [
  9116. {
  9117. name: "Micro",
  9118. height: math.unit(2, "inches"),
  9119. default: true
  9120. },
  9121. {
  9122. name: "Human Size",
  9123. height: math.unit(5 + 8 / 12, "feet")
  9124. },
  9125. ]
  9126. ))
  9127. characterMakers.push(() => makeCharacter(
  9128. { name: "Chauncey (Chantz)" },
  9129. {
  9130. front: {
  9131. height: math.unit(13 + 10 / 12, "feet"),
  9132. weight: math.unit(5320, "lb"),
  9133. name: "Front",
  9134. image: {
  9135. source: "./media/characters/chauncey-chantz/front.svg",
  9136. extra: 1587 / 1435,
  9137. bottom: 0.02
  9138. }
  9139. },
  9140. },
  9141. [
  9142. {
  9143. name: "Normal",
  9144. height: math.unit(13 + 10 / 12, "feet"),
  9145. default: true
  9146. },
  9147. {
  9148. name: "Macro",
  9149. height: math.unit(45, "feet")
  9150. },
  9151. {
  9152. name: "Megamacro",
  9153. height: math.unit(250, "miles")
  9154. },
  9155. {
  9156. name: "Planetary",
  9157. height: math.unit(10000, "miles")
  9158. },
  9159. {
  9160. name: "Galactic",
  9161. height: math.unit(40000, "parsecs")
  9162. },
  9163. {
  9164. name: "Universal",
  9165. height: math.unit(1, "yottameter")
  9166. },
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Epifox" },
  9171. {
  9172. front: {
  9173. height: math.unit(6, "feet"),
  9174. weight: math.unit(150, "lb"),
  9175. name: "Front",
  9176. image: {
  9177. source: "./media/characters/epifox/front.svg",
  9178. extra: 1,
  9179. bottom: 0.075
  9180. }
  9181. },
  9182. },
  9183. [
  9184. {
  9185. name: "Micro",
  9186. height: math.unit(6, "inches")
  9187. },
  9188. {
  9189. name: "Normal",
  9190. height: math.unit(12, "feet"),
  9191. default: true
  9192. },
  9193. {
  9194. name: "Macro",
  9195. height: math.unit(3810, "feet")
  9196. },
  9197. {
  9198. name: "Megamacro",
  9199. height: math.unit(500, "miles")
  9200. },
  9201. ]
  9202. ))
  9203. characterMakers.push(() => makeCharacter(
  9204. { name: "Colin T." },
  9205. {
  9206. front: {
  9207. height: math.unit(1.8796, "m"),
  9208. weight: math.unit(230, "lb"),
  9209. name: "Front",
  9210. image: {
  9211. source: "./media/characters/colin-t/front.svg",
  9212. extra: 1272 / 1193,
  9213. bottom: 0.07
  9214. }
  9215. },
  9216. },
  9217. [
  9218. {
  9219. name: "Micro",
  9220. height: math.unit(0.571, "meters")
  9221. },
  9222. {
  9223. name: "Normal",
  9224. height: math.unit(1.8796, "meters"),
  9225. default: true
  9226. },
  9227. {
  9228. name: "Tall",
  9229. height: math.unit(4, "meters")
  9230. },
  9231. {
  9232. name: "Macro",
  9233. height: math.unit(67.241, "meters")
  9234. },
  9235. {
  9236. name: "Megamacro",
  9237. height: math.unit(371.856, "meters")
  9238. },
  9239. {
  9240. name: "Planetary",
  9241. height: math.unit(12631.5689, "km")
  9242. },
  9243. ]
  9244. ))
  9245. characterMakers.push(() => makeCharacter(
  9246. { name: "Matvei" },
  9247. {
  9248. front: {
  9249. height: math.unit(1.85, "meters"),
  9250. weight: math.unit(80, "kg"),
  9251. name: "Front",
  9252. image: {
  9253. source: "./media/characters/matvei/front.svg",
  9254. extra: 614 / 594,
  9255. bottom: 0.01
  9256. }
  9257. },
  9258. },
  9259. [
  9260. {
  9261. name: "Normal",
  9262. height: math.unit(1.85, "meters"),
  9263. default: true
  9264. },
  9265. ]
  9266. ))
  9267. characterMakers.push(() => makeCharacter(
  9268. { name: "Quincy" },
  9269. {
  9270. front: {
  9271. height: math.unit(5 + 9 / 12, "feet"),
  9272. weight: math.unit(70, "lb"),
  9273. name: "Front",
  9274. image: {
  9275. source: "./media/characters/quincy/front.svg",
  9276. extra: 3041 / 2751
  9277. }
  9278. },
  9279. back: {
  9280. height: math.unit(5 + 9 / 12, "feet"),
  9281. weight: math.unit(70, "lb"),
  9282. name: "Back",
  9283. image: {
  9284. source: "./media/characters/quincy/back.svg",
  9285. extra: 3041 / 2751
  9286. }
  9287. },
  9288. flying: {
  9289. height: math.unit(5 + 4 / 12, "feet"),
  9290. weight: math.unit(70, "lb"),
  9291. name: "Flying",
  9292. image: {
  9293. source: "./media/characters/quincy/flying.svg",
  9294. extra: 1044 / 930
  9295. }
  9296. },
  9297. },
  9298. [
  9299. {
  9300. name: "Micro",
  9301. height: math.unit(3, "cm")
  9302. },
  9303. {
  9304. name: "Normal",
  9305. height: math.unit(5 + 9 / 12, "feet")
  9306. },
  9307. {
  9308. name: "Macro",
  9309. height: math.unit(200, "meters"),
  9310. default: true
  9311. },
  9312. {
  9313. name: "Megamacro",
  9314. height: math.unit(1000, "meters")
  9315. },
  9316. ]
  9317. ))
  9318. characterMakers.push(() => makeCharacter(
  9319. { name: "Vanrel" },
  9320. {
  9321. front: {
  9322. height: math.unit(4 + 7 / 12, "feet"),
  9323. weight: math.unit(150, "lb"),
  9324. name: "Front",
  9325. image: {
  9326. source: "./media/characters/vanrel/front.svg",
  9327. extra: 1,
  9328. bottom: 0.02
  9329. }
  9330. },
  9331. elemental: {
  9332. height: math.unit(4 + 2 / 12, "feet"),
  9333. weight: math.unit(150, "lb"),
  9334. name: "Elemental",
  9335. image: {
  9336. source: "./media/characters/vanrel/elemental.svg"
  9337. }
  9338. },
  9339. side: {
  9340. height: math.unit(4 + 7 / 12, "feet"),
  9341. weight: math.unit(150, "lb"),
  9342. name: "Side",
  9343. image: {
  9344. source: "./media/characters/vanrel/side.svg",
  9345. extra: 1,
  9346. bottom: 0.025
  9347. }
  9348. },
  9349. tome: {
  9350. height: math.unit(1.35, "feet"),
  9351. weight: math.unit(10, "lb"),
  9352. name: "Vanrel's Tome",
  9353. rename: true,
  9354. image: {
  9355. source: "./media/characters/vanrel/tome.svg"
  9356. }
  9357. },
  9358. beans: {
  9359. height: math.unit(0.89, "feet"),
  9360. name: "Beans",
  9361. image: {
  9362. source: "./media/characters/vanrel/beans.svg"
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Normal",
  9369. height: math.unit(4 + 7 / 12, "feet"),
  9370. default: true
  9371. },
  9372. ]
  9373. ))
  9374. characterMakers.push(() => makeCharacter(
  9375. { name: "Kuiper Vanrel" },
  9376. {
  9377. front: {
  9378. height: math.unit(7 + 5 / 12, "feet"),
  9379. weight: math.unit(150, "lb"),
  9380. name: "Front",
  9381. image: {
  9382. source: "./media/characters/kuiper-vanrel/front.svg",
  9383. extra: 1118 / 1068,
  9384. bottom: 0.09
  9385. }
  9386. },
  9387. foot: {
  9388. height: math.unit(0.55, "meters"),
  9389. name: "Foot",
  9390. image: {
  9391. source: "./media/characters/kuiper-vanrel/foot.svg",
  9392. }
  9393. },
  9394. },
  9395. [
  9396. {
  9397. name: "Normal",
  9398. height: math.unit(7 + 5 / 12, "feet"),
  9399. default: true
  9400. },
  9401. ]
  9402. ))
  9403. characterMakers.push(() => makeCharacter(
  9404. { name: "Keset Vanrel" },
  9405. {
  9406. front: {
  9407. height: math.unit(8 + 5 / 12, "feet"),
  9408. weight: math.unit(150, "lb"),
  9409. name: "Front",
  9410. image: {
  9411. source: "./media/characters/keset-vanrel/front.svg",
  9412. extra: 1150 / 1084,
  9413. bottom: 0.05
  9414. }
  9415. },
  9416. hand: {
  9417. height: math.unit(0.6, "meters"),
  9418. name: "Hand",
  9419. image: {
  9420. source: "./media/characters/keset-vanrel/hand.svg"
  9421. }
  9422. },
  9423. foot: {
  9424. height: math.unit(0.94978, "meters"),
  9425. name: "Foot",
  9426. image: {
  9427. source: "./media/characters/keset-vanrel/foot.svg"
  9428. }
  9429. },
  9430. },
  9431. [
  9432. {
  9433. name: "Normal",
  9434. height: math.unit(8 + 5 / 12, "feet"),
  9435. default: true
  9436. },
  9437. ]
  9438. ))
  9439. characterMakers.push(() => makeCharacter(
  9440. { name: "Neos" },
  9441. {
  9442. front: {
  9443. height: math.unit(6, "feet"),
  9444. weight: math.unit(150, "lb"),
  9445. name: "Front",
  9446. image: {
  9447. source: "./media/characters/neos/front.svg",
  9448. extra: 1696 / 992,
  9449. bottom: 0.14
  9450. }
  9451. },
  9452. },
  9453. [
  9454. {
  9455. name: "Normal",
  9456. height: math.unit(54, "cm"),
  9457. default: true
  9458. },
  9459. {
  9460. name: "Macro",
  9461. height: math.unit(100, "m")
  9462. },
  9463. {
  9464. name: "Megamacro",
  9465. height: math.unit(10, "km")
  9466. },
  9467. {
  9468. name: "Megamacro+",
  9469. height: math.unit(100, "km")
  9470. },
  9471. {
  9472. name: "Gigamacro",
  9473. height: math.unit(100, "Mm")
  9474. },
  9475. {
  9476. name: "Teramacro",
  9477. height: math.unit(100, "Gm")
  9478. },
  9479. {
  9480. name: "Examacro",
  9481. height: math.unit(100, "Em")
  9482. },
  9483. {
  9484. name: "Godly",
  9485. height: math.unit(10000, "Ym")
  9486. },
  9487. {
  9488. name: "Beyond Godly",
  9489. height: math.unit(10000000, "Ym")
  9490. },
  9491. ]
  9492. ))
  9493. characterMakers.push(() => makeCharacter(
  9494. { name: "Sammy Mouse" },
  9495. {
  9496. feminine: {
  9497. height: math.unit(5, "feet"),
  9498. weight: math.unit(100, "lb"),
  9499. name: "Feminine",
  9500. image: {
  9501. source: "./media/characters/sammy-mouse/feminine.svg",
  9502. extra: 2526 / 2425,
  9503. bottom: 0.123
  9504. }
  9505. },
  9506. masculine: {
  9507. height: math.unit(5, "feet"),
  9508. weight: math.unit(100, "lb"),
  9509. name: "Masculine",
  9510. image: {
  9511. source: "./media/characters/sammy-mouse/masculine.svg",
  9512. extra: 2526 / 2425,
  9513. bottom: 0.123
  9514. }
  9515. },
  9516. },
  9517. [
  9518. {
  9519. name: "Micro",
  9520. height: math.unit(5, "inches")
  9521. },
  9522. {
  9523. name: "Normal",
  9524. height: math.unit(5, "feet"),
  9525. default: true
  9526. },
  9527. {
  9528. name: "Macro",
  9529. height: math.unit(60, "feet")
  9530. },
  9531. ]
  9532. ))
  9533. characterMakers.push(() => makeCharacter(
  9534. { name: "Kole" },
  9535. {
  9536. front: {
  9537. height: math.unit(4, "feet"),
  9538. weight: math.unit(50, "lb"),
  9539. name: "Front",
  9540. image: {
  9541. source: "./media/characters/kole/front.svg",
  9542. extra: 1423 / 1303,
  9543. bottom: 0.025
  9544. }
  9545. },
  9546. back: {
  9547. height: math.unit(4, "feet"),
  9548. weight: math.unit(50, "lb"),
  9549. name: "Back",
  9550. image: {
  9551. source: "./media/characters/kole/back.svg",
  9552. extra: 1426 / 1280,
  9553. bottom: 0.02
  9554. }
  9555. },
  9556. },
  9557. [
  9558. {
  9559. name: "Normal",
  9560. height: math.unit(4, "feet"),
  9561. default: true
  9562. },
  9563. ]
  9564. ))
  9565. characterMakers.push(() => makeCharacter(
  9566. { name: "Rufran" },
  9567. {
  9568. front: {
  9569. height: math.unit(2 + 6 / 12, "feet"),
  9570. weight: math.unit(20, "lb"),
  9571. name: "Front",
  9572. image: {
  9573. source: "./media/characters/rufran/front.svg",
  9574. extra: 2041 / 1839,
  9575. bottom: 0.055
  9576. }
  9577. },
  9578. back: {
  9579. height: math.unit(2 + 6 / 12, "feet"),
  9580. weight: math.unit(20, "lb"),
  9581. name: "Back",
  9582. image: {
  9583. source: "./media/characters/rufran/back.svg",
  9584. extra: 2054 / 1839,
  9585. bottom: 0.01
  9586. }
  9587. },
  9588. hand: {
  9589. height: math.unit(0.2166, "meters"),
  9590. name: "Hand",
  9591. image: {
  9592. source: "./media/characters/rufran/hand.svg"
  9593. }
  9594. },
  9595. foot: {
  9596. height: math.unit(0.185, "meters"),
  9597. name: "Foot",
  9598. image: {
  9599. source: "./media/characters/rufran/foot.svg"
  9600. }
  9601. },
  9602. },
  9603. [
  9604. {
  9605. name: "Micro",
  9606. height: math.unit(1, "inch")
  9607. },
  9608. {
  9609. name: "Normal",
  9610. height: math.unit(2 + 6 / 12, "feet"),
  9611. default: true
  9612. },
  9613. {
  9614. name: "Big",
  9615. height: math.unit(60, "feet")
  9616. },
  9617. {
  9618. name: "Macro",
  9619. height: math.unit(325, "feet")
  9620. },
  9621. ]
  9622. ))
  9623. characterMakers.push(() => makeCharacter(
  9624. { name: "Chip" },
  9625. {
  9626. front: {
  9627. height: math.unit(0.3, "meters"),
  9628. weight: math.unit(3.5, "kg"),
  9629. name: "Front",
  9630. image: {
  9631. source: "./media/characters/chip/front.svg",
  9632. extra: 748 / 674
  9633. }
  9634. },
  9635. },
  9636. [
  9637. {
  9638. name: "Micro",
  9639. height: math.unit(1, "inch"),
  9640. default: true
  9641. },
  9642. ]
  9643. ))
  9644. characterMakers.push(() => makeCharacter(
  9645. { name: "Torvid" },
  9646. {
  9647. side: {
  9648. height: math.unit(2.3, "meters"),
  9649. weight: math.unit(3500, "lb"),
  9650. name: "Side",
  9651. image: {
  9652. source: "./media/characters/torvid/side.svg",
  9653. extra: 1972 / 722,
  9654. bottom: 0.035
  9655. }
  9656. },
  9657. },
  9658. [
  9659. {
  9660. name: "Normal",
  9661. height: math.unit(2.3, "meters"),
  9662. default: true
  9663. },
  9664. ]
  9665. ))
  9666. characterMakers.push(() => makeCharacter(
  9667. { name: "Susan" },
  9668. {
  9669. front: {
  9670. height: math.unit(2, "meters"),
  9671. weight: math.unit(150.5, "kg"),
  9672. name: "Front",
  9673. image: {
  9674. source: "./media/characters/susan/front.svg",
  9675. extra: 693 / 635,
  9676. bottom: 0.05
  9677. }
  9678. },
  9679. },
  9680. [
  9681. {
  9682. name: "Megamacro",
  9683. height: math.unit(505, "miles"),
  9684. default: true
  9685. },
  9686. ]
  9687. ))
  9688. characterMakers.push(() => makeCharacter(
  9689. { name: "Raindrops" },
  9690. {
  9691. front: {
  9692. height: math.unit(6, "feet"),
  9693. weight: math.unit(150, "lb"),
  9694. name: "Front",
  9695. image: {
  9696. source: "./media/characters/raindrops/front.svg",
  9697. extra: 2655 / 2461,
  9698. bottom: 0.02
  9699. }
  9700. },
  9701. back: {
  9702. height: math.unit(6, "feet"),
  9703. weight: math.unit(150, "lb"),
  9704. name: "Back",
  9705. image: {
  9706. source: "./media/characters/raindrops/back.svg",
  9707. extra: 2574 / 2400,
  9708. bottom: 0.03
  9709. }
  9710. },
  9711. },
  9712. [
  9713. {
  9714. name: "Micro",
  9715. height: math.unit(6, "inches")
  9716. },
  9717. {
  9718. name: "Normal",
  9719. height: math.unit(6 + 2 / 12, "feet")
  9720. },
  9721. {
  9722. name: "Macro",
  9723. height: math.unit(131, "feet"),
  9724. default: true
  9725. },
  9726. {
  9727. name: "Megamacro",
  9728. height: math.unit(15, "miles")
  9729. },
  9730. {
  9731. name: "Gigamacro",
  9732. height: math.unit(4000, "miles")
  9733. },
  9734. {
  9735. name: "Teramacro",
  9736. height: math.unit(315000, "miles")
  9737. },
  9738. ]
  9739. ))
  9740. characterMakers.push(() => makeCharacter(
  9741. { name: "Tezwa" },
  9742. {
  9743. front: {
  9744. height: math.unit(2.794, "meters"),
  9745. weight: math.unit(325, "kg"),
  9746. name: "Front",
  9747. image: {
  9748. source: "./media/characters/tezwa/front.svg",
  9749. extra: 2083 / 1906,
  9750. bottom: 0.031
  9751. }
  9752. },
  9753. foot: {
  9754. height: math.unit(0.687, "meters"),
  9755. name: "Foot",
  9756. image: {
  9757. source: "./media/characters/tezwa/foot.svg"
  9758. }
  9759. },
  9760. },
  9761. [
  9762. {
  9763. name: "Normal",
  9764. height: math.unit(9 + 2 / 12, "feet"),
  9765. default: true
  9766. },
  9767. ]
  9768. ))
  9769. characterMakers.push(() => makeCharacter(
  9770. { name: "Typhus" },
  9771. {
  9772. front: {
  9773. height: math.unit(58, "feet"),
  9774. weight: math.unit(89000, "lb"),
  9775. name: "Front",
  9776. image: {
  9777. source: "./media/characters/typhus/front.svg",
  9778. extra: 816 / 800,
  9779. bottom: 0.065
  9780. }
  9781. },
  9782. },
  9783. [
  9784. {
  9785. name: "Macro",
  9786. height: math.unit(58, "feet"),
  9787. default: true
  9788. },
  9789. ]
  9790. ))
  9791. characterMakers.push(() => makeCharacter(
  9792. { name: "Lyra Von Wulf" },
  9793. {
  9794. front: {
  9795. height: math.unit(12, "feet"),
  9796. weight: math.unit(6, "tonnes"),
  9797. name: "Front",
  9798. image: {
  9799. source: "./media/characters/lyra-von-wulf/front.svg",
  9800. extra: 1,
  9801. bottom: 0.10
  9802. }
  9803. },
  9804. frontMecha: {
  9805. height: math.unit(12, "feet"),
  9806. weight: math.unit(12, "tonnes"),
  9807. name: "Front (Mecha)",
  9808. image: {
  9809. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  9810. extra: 1,
  9811. bottom: 0.042
  9812. }
  9813. },
  9814. maw: {
  9815. height: math.unit(2.2, "feet"),
  9816. name: "Maw",
  9817. image: {
  9818. source: "./media/characters/lyra-von-wulf/maw.svg"
  9819. }
  9820. },
  9821. },
  9822. [
  9823. {
  9824. name: "Normal",
  9825. height: math.unit(12, "feet"),
  9826. default: true
  9827. },
  9828. {
  9829. name: "Classic",
  9830. height: math.unit(50, "feet")
  9831. },
  9832. {
  9833. name: "Macro",
  9834. height: math.unit(500, "feet")
  9835. },
  9836. {
  9837. name: "Megamacro",
  9838. height: math.unit(1, "mile")
  9839. },
  9840. {
  9841. name: "Gigamacro",
  9842. height: math.unit(400, "miles")
  9843. },
  9844. {
  9845. name: "Teramacro",
  9846. height: math.unit(22000, "miles")
  9847. },
  9848. {
  9849. name: "Solarmacro",
  9850. height: math.unit(8600000, "miles")
  9851. },
  9852. {
  9853. name: "Galactic",
  9854. height: math.unit(1057000, "lightyears")
  9855. },
  9856. ]
  9857. ))
  9858. characterMakers.push(() => makeCharacter(
  9859. { name: "Dixon" },
  9860. {
  9861. front: {
  9862. height: math.unit(6 + 10 / 12, "feet"),
  9863. weight: math.unit(150, "lb"),
  9864. name: "Front",
  9865. image: {
  9866. source: "./media/characters/dixon/front.svg",
  9867. extra: 3361 / 3209,
  9868. bottom: 0.01
  9869. }
  9870. },
  9871. },
  9872. [
  9873. {
  9874. name: "Normal",
  9875. height: math.unit(6 + 10 / 12, "feet"),
  9876. default: true
  9877. },
  9878. {
  9879. name: "Big",
  9880. height: math.unit(12, "meters")
  9881. },
  9882. {
  9883. name: "Macro",
  9884. height: math.unit(500, "meters")
  9885. },
  9886. {
  9887. name: "Megamacro",
  9888. height: math.unit(2, "km")
  9889. },
  9890. ]
  9891. ))
  9892. characterMakers.push(() => makeCharacter(
  9893. { name: "Kauko" },
  9894. {
  9895. front: {
  9896. height: math.unit(185, "cm"),
  9897. weight: math.unit(68, "kg"),
  9898. name: "Front",
  9899. image: {
  9900. source: "./media/characters/kauko/front.svg",
  9901. extra: 1455 / 1421,
  9902. bottom: 0.03
  9903. }
  9904. },
  9905. back: {
  9906. height: math.unit(185, "cm"),
  9907. weight: math.unit(68, "kg"),
  9908. name: "Back",
  9909. image: {
  9910. source: "./media/characters/kauko/back.svg",
  9911. extra: 1455 / 1421,
  9912. bottom: 0.004
  9913. }
  9914. },
  9915. },
  9916. [
  9917. {
  9918. name: "Normal",
  9919. height: math.unit(185, "cm"),
  9920. default: true
  9921. },
  9922. ]
  9923. ))
  9924. characterMakers.push(() => makeCharacter(
  9925. { name: "Varg" },
  9926. {
  9927. front: {
  9928. height: math.unit(6, "feet"),
  9929. weight: math.unit(150, "kg"),
  9930. name: "Front",
  9931. image: {
  9932. source: "./media/characters/varg/front.svg",
  9933. extra: 1108 / 1018,
  9934. bottom: 0.0375
  9935. }
  9936. },
  9937. },
  9938. [
  9939. {
  9940. name: "Normal",
  9941. height: math.unit(5, "meters")
  9942. },
  9943. {
  9944. name: "Macro",
  9945. height: math.unit(200, "meters")
  9946. },
  9947. {
  9948. name: "Megamacro",
  9949. height: math.unit(20, "kilometers")
  9950. },
  9951. {
  9952. name: "True Size",
  9953. height: math.unit(211, "km"),
  9954. default: true
  9955. },
  9956. {
  9957. name: "Gigamacro",
  9958. height: math.unit(1000, "km")
  9959. },
  9960. {
  9961. name: "Gigamacro+",
  9962. height: math.unit(8000, "km")
  9963. },
  9964. {
  9965. name: "Teramacro",
  9966. height: math.unit(1000000, "km")
  9967. },
  9968. ]
  9969. ))
  9970. characterMakers.push(() => makeCharacter(
  9971. { name: "Dayza" },
  9972. {
  9973. front: {
  9974. height: math.unit(7 + 7 / 12, "feet"),
  9975. weight: math.unit(267, "lb"),
  9976. name: "Front",
  9977. image: {
  9978. source: "./media/characters/dayza/front.svg",
  9979. extra: 1262 / 1200,
  9980. bottom: 0.035
  9981. }
  9982. },
  9983. side: {
  9984. height: math.unit(7 + 7 / 12, "feet"),
  9985. weight: math.unit(267, "lb"),
  9986. name: "Side",
  9987. image: {
  9988. source: "./media/characters/dayza/side.svg",
  9989. extra: 1295 / 1245,
  9990. bottom: 0.05
  9991. }
  9992. },
  9993. back: {
  9994. height: math.unit(7 + 7 / 12, "feet"),
  9995. weight: math.unit(267, "lb"),
  9996. name: "Back",
  9997. image: {
  9998. source: "./media/characters/dayza/back.svg",
  9999. extra: 1241 / 1170
  10000. }
  10001. },
  10002. },
  10003. [
  10004. {
  10005. name: "Normal",
  10006. height: math.unit(7 + 7 / 12, "feet"),
  10007. default: true
  10008. },
  10009. {
  10010. name: "Macro",
  10011. height: math.unit(155, "feet")
  10012. },
  10013. ]
  10014. ))
  10015. characterMakers.push(() => makeCharacter(
  10016. { name: "Xanthos" },
  10017. {
  10018. front: {
  10019. height: math.unit(6 + 5 / 12, "feet"),
  10020. weight: math.unit(160, "lb"),
  10021. name: "Front",
  10022. image: {
  10023. source: "./media/characters/xanthos/front.svg",
  10024. extra: 1,
  10025. bottom: 0.04
  10026. }
  10027. },
  10028. back: {
  10029. height: math.unit(6 + 5 / 12, "feet"),
  10030. weight: math.unit(160, "lb"),
  10031. name: "Back",
  10032. image: {
  10033. source: "./media/characters/xanthos/back.svg",
  10034. extra: 1,
  10035. bottom: 0.03
  10036. }
  10037. },
  10038. hand: {
  10039. height: math.unit(0.928, "feet"),
  10040. name: "Hand",
  10041. image: {
  10042. source: "./media/characters/xanthos/hand.svg"
  10043. }
  10044. },
  10045. foot: {
  10046. height: math.unit(1.286, "feet"),
  10047. name: "Foot",
  10048. image: {
  10049. source: "./media/characters/xanthos/foot.svg"
  10050. }
  10051. },
  10052. },
  10053. [
  10054. {
  10055. name: "Normal",
  10056. height: math.unit(6 + 5 / 12, "feet"),
  10057. default: true
  10058. },
  10059. {
  10060. name: "Normal+",
  10061. height: math.unit(6, "meters")
  10062. },
  10063. {
  10064. name: "Macro",
  10065. height: math.unit(40, "feet")
  10066. },
  10067. {
  10068. name: "Macro+",
  10069. height: math.unit(200, "meters")
  10070. },
  10071. {
  10072. name: "Megamacro",
  10073. height: math.unit(20, "km")
  10074. },
  10075. {
  10076. name: "Megamacro+",
  10077. height: math.unit(100, "km")
  10078. },
  10079. ]
  10080. ))
  10081. characterMakers.push(() => makeCharacter(
  10082. { name: "Grynn" },
  10083. {
  10084. front: {
  10085. height: math.unit(6 + 3 / 12, "feet"),
  10086. weight: math.unit(215, "lb"),
  10087. name: "Front",
  10088. image: {
  10089. source: "./media/characters/grynn/front.svg",
  10090. extra: 4627 / 4209,
  10091. bottom: 0.047
  10092. }
  10093. },
  10094. },
  10095. [
  10096. {
  10097. name: "Micro",
  10098. height: math.unit(6, "inches")
  10099. },
  10100. {
  10101. name: "Normal",
  10102. height: math.unit(6 + 3 / 12, "feet"),
  10103. default: true
  10104. },
  10105. {
  10106. name: "Big",
  10107. height: math.unit(104, "feet")
  10108. },
  10109. {
  10110. name: "Macro",
  10111. height: math.unit(944, "feet")
  10112. },
  10113. {
  10114. name: "Macro+",
  10115. height: math.unit(9480, "feet")
  10116. },
  10117. {
  10118. name: "Megamacro",
  10119. height: math.unit(78752, "feet")
  10120. },
  10121. {
  10122. name: "Megamacro+",
  10123. height: math.unit(630128, "feet")
  10124. },
  10125. {
  10126. name: "Megamacro++",
  10127. height: math.unit(3150695, "feet")
  10128. },
  10129. ]
  10130. ))
  10131. characterMakers.push(() => makeCharacter(
  10132. { name: "Mocha Aura" },
  10133. {
  10134. front: {
  10135. height: math.unit(7 + 5 / 12, "feet"),
  10136. weight: math.unit(450, "lb"),
  10137. name: "Front",
  10138. image: {
  10139. source: "./media/characters/mocha-aura/front.svg",
  10140. extra: 1907 / 1817,
  10141. bottom: 0.04
  10142. }
  10143. },
  10144. back: {
  10145. height: math.unit(7 + 5 / 12, "feet"),
  10146. weight: math.unit(450, "lb"),
  10147. name: "Back",
  10148. image: {
  10149. source: "./media/characters/mocha-aura/back.svg",
  10150. extra: 1900 / 1825,
  10151. bottom: 0.045
  10152. }
  10153. },
  10154. },
  10155. [
  10156. {
  10157. name: "Nano",
  10158. height: math.unit(1, "nm")
  10159. },
  10160. {
  10161. name: "Megamicro",
  10162. height: math.unit(1, "mm")
  10163. },
  10164. {
  10165. name: "Micro",
  10166. height: math.unit(3, "inches")
  10167. },
  10168. {
  10169. name: "Normal",
  10170. height: math.unit(7 + 5 / 12, "feet"),
  10171. default: true
  10172. },
  10173. {
  10174. name: "Macro",
  10175. height: math.unit(30, "feet")
  10176. },
  10177. {
  10178. name: "Megamacro",
  10179. height: math.unit(3500, "feet")
  10180. },
  10181. {
  10182. name: "Teramacro",
  10183. height: math.unit(500000, "miles")
  10184. },
  10185. {
  10186. name: "Petamacro",
  10187. height: math.unit(50000000000000000, "parsecs")
  10188. },
  10189. ]
  10190. ))
  10191. characterMakers.push(() => makeCharacter(
  10192. { name: "Ilisha Devya" },
  10193. {
  10194. front: {
  10195. height: math.unit(6, "feet"),
  10196. weight: math.unit(150, "lb"),
  10197. name: "Front",
  10198. image: {
  10199. source: "./media/characters/ilisha-devya/front.svg",
  10200. extra: 1,
  10201. bottom: 0.175
  10202. }
  10203. },
  10204. back: {
  10205. height: math.unit(6, "feet"),
  10206. weight: math.unit(150, "lb"),
  10207. name: "Back",
  10208. image: {
  10209. source: "./media/characters/ilisha-devya/back.svg",
  10210. extra: 1,
  10211. bottom: 0.015
  10212. }
  10213. },
  10214. },
  10215. [
  10216. {
  10217. name: "Macro",
  10218. height: math.unit(500, "feet"),
  10219. default: true
  10220. },
  10221. {
  10222. name: "Megamacro",
  10223. height: math.unit(10, "miles")
  10224. },
  10225. {
  10226. name: "Gigamacro",
  10227. height: math.unit(100000, "miles")
  10228. },
  10229. {
  10230. name: "Examacro",
  10231. height: math.unit(1e9, "lightyears")
  10232. },
  10233. {
  10234. name: "Omniversal",
  10235. height: math.unit(1e33, "lightyears")
  10236. },
  10237. {
  10238. name: "Beyond Infinite",
  10239. height: math.unit(1e100, "lightyears")
  10240. },
  10241. ]
  10242. ))
  10243. characterMakers.push(() => makeCharacter(
  10244. { name: "Mira" },
  10245. {
  10246. Side: {
  10247. height: math.unit(6, "feet"),
  10248. weight: math.unit(150, "lb"),
  10249. name: "Side",
  10250. image: {
  10251. source: "./media/characters/mira/side.svg",
  10252. extra: 900 / 799,
  10253. bottom: 0.02
  10254. }
  10255. },
  10256. },
  10257. [
  10258. {
  10259. name: "Human Size",
  10260. height: math.unit(6, "feet")
  10261. },
  10262. {
  10263. name: "Macro",
  10264. height: math.unit(100, "feet"),
  10265. default: true
  10266. },
  10267. {
  10268. name: "Megamacro",
  10269. height: math.unit(10, "miles")
  10270. },
  10271. {
  10272. name: "Gigamacro",
  10273. height: math.unit(25000, "miles")
  10274. },
  10275. {
  10276. name: "Teramacro",
  10277. height: math.unit(300, "AU")
  10278. },
  10279. {
  10280. name: "Full Size",
  10281. height: math.unit(4.5e10, "lightyears")
  10282. },
  10283. ]
  10284. ))
  10285. characterMakers.push(() => makeCharacter(
  10286. { name: "Holly" },
  10287. {
  10288. front: {
  10289. height: math.unit(6, "feet"),
  10290. weight: math.unit(150, "lb"),
  10291. name: "Front",
  10292. image: {
  10293. source: "./media/characters/holly/front.svg",
  10294. extra: 639 / 606
  10295. }
  10296. },
  10297. back: {
  10298. height: math.unit(6, "feet"),
  10299. weight: math.unit(150, "lb"),
  10300. name: "Back",
  10301. image: {
  10302. source: "./media/characters/holly/back.svg",
  10303. extra: 623 / 598
  10304. }
  10305. },
  10306. frontWorking: {
  10307. height: math.unit(6, "feet"),
  10308. weight: math.unit(150, "lb"),
  10309. name: "Front (Working)",
  10310. image: {
  10311. source: "./media/characters/holly/front-working.svg",
  10312. extra: 607 / 577,
  10313. bottom: 0.048
  10314. }
  10315. },
  10316. },
  10317. [
  10318. {
  10319. name: "Normal",
  10320. height: math.unit(12 + 3 / 12, "feet"),
  10321. default: true
  10322. },
  10323. ]
  10324. ))
  10325. characterMakers.push(() => makeCharacter(
  10326. { name: "Porter" },
  10327. {
  10328. front: {
  10329. height: math.unit(6, "feet"),
  10330. weight: math.unit(150, "lb"),
  10331. name: "Front",
  10332. image: {
  10333. source: "./media/characters/porter/front.svg",
  10334. extra: 1,
  10335. bottom: 0.01
  10336. }
  10337. },
  10338. frontRobes: {
  10339. height: math.unit(6, "feet"),
  10340. weight: math.unit(150, "lb"),
  10341. name: "Front (Robes)",
  10342. image: {
  10343. source: "./media/characters/porter/front-robes.svg",
  10344. extra: 1.01,
  10345. bottom: 0.01
  10346. }
  10347. },
  10348. },
  10349. [
  10350. {
  10351. name: "Normal",
  10352. height: math.unit(11 + 9 / 12, "feet"),
  10353. default: true
  10354. },
  10355. ]
  10356. ))
  10357. characterMakers.push(() => makeCharacter(
  10358. { name: "Lucy" },
  10359. {
  10360. legendary: {
  10361. height: math.unit(6, "feet"),
  10362. weight: math.unit(150, "lb"),
  10363. name: "Legendary",
  10364. image: {
  10365. source: "./media/characters/lucy/legendary.svg",
  10366. extra: 1355 / 1100,
  10367. bottom: 0.045
  10368. }
  10369. },
  10370. },
  10371. [
  10372. {
  10373. name: "Legendary",
  10374. height: math.unit(86882 * 2, "miles"),
  10375. default: true
  10376. },
  10377. ]
  10378. ))
  10379. characterMakers.push(() => makeCharacter(
  10380. { name: "Drusilla" },
  10381. {
  10382. front: {
  10383. height: math.unit(6, "feet"),
  10384. weight: math.unit(150, "lb"),
  10385. name: "Front",
  10386. image: {
  10387. source: "./media/characters/drusilla/front.svg",
  10388. extra: 678 / 635,
  10389. bottom: 0.03
  10390. }
  10391. },
  10392. back: {
  10393. height: math.unit(6, "feet"),
  10394. weight: math.unit(150, "lb"),
  10395. name: "Back",
  10396. image: {
  10397. source: "./media/characters/drusilla/back.svg",
  10398. extra: 678 / 635,
  10399. bottom: 0.005
  10400. }
  10401. },
  10402. },
  10403. [
  10404. {
  10405. name: "Macro",
  10406. height: math.unit(100, "feet")
  10407. },
  10408. {
  10409. name: "Canon Height",
  10410. height: math.unit(2000, "feet"),
  10411. default: true
  10412. },
  10413. ]
  10414. ))
  10415. characterMakers.push(() => makeCharacter(
  10416. { name: "Renard Thatch" },
  10417. {
  10418. front: {
  10419. height: math.unit(6, "feet"),
  10420. weight: math.unit(180, "lb"),
  10421. name: "Front",
  10422. image: {
  10423. source: "./media/characters/renard-thatch/front.svg",
  10424. extra: 2411 / 2275,
  10425. bottom: 0.01
  10426. }
  10427. },
  10428. frontPosing: {
  10429. height: math.unit(6, "feet"),
  10430. weight: math.unit(180, "lb"),
  10431. name: "Front (Posing)",
  10432. image: {
  10433. source: "./media/characters/renard-thatch/front-posing.svg",
  10434. extra: 2381 / 2261,
  10435. bottom: 0.01
  10436. }
  10437. },
  10438. back: {
  10439. height: math.unit(6, "feet"),
  10440. weight: math.unit(180, "lb"),
  10441. name: "Back",
  10442. image: {
  10443. source: "./media/characters/renard-thatch/back.svg",
  10444. extra: 2428 / 2288
  10445. }
  10446. },
  10447. },
  10448. [
  10449. {
  10450. name: "Micro",
  10451. height: math.unit(3, "inches")
  10452. },
  10453. {
  10454. name: "Default",
  10455. height: math.unit(6, "feet"),
  10456. default: true
  10457. },
  10458. {
  10459. name: "Macro",
  10460. height: math.unit(75, "feet")
  10461. },
  10462. ]
  10463. ))
  10464. characterMakers.push(() => makeCharacter(
  10465. { name: "Sekvra" },
  10466. {
  10467. front: {
  10468. height: math.unit(1450, "feet"),
  10469. weight: math.unit(1.21e6, "tons"),
  10470. name: "Front",
  10471. image: {
  10472. source: "./media/characters/sekvra/front.svg",
  10473. extra: 1,
  10474. bottom: 0.03
  10475. }
  10476. },
  10477. frontClothed: {
  10478. height: math.unit(1450, "feet"),
  10479. weight: math.unit(1.21e6, "tons"),
  10480. name: "Front (Clothed)",
  10481. image: {
  10482. source: "./media/characters/sekvra/front-clothed.svg",
  10483. extra: 1,
  10484. bottom: 0.03
  10485. }
  10486. },
  10487. side: {
  10488. height: math.unit(1450, "feet"),
  10489. weight: math.unit(1.21e6, "tons"),
  10490. name: "Side",
  10491. image: {
  10492. source: "./media/characters/sekvra/side.svg",
  10493. extra: 1,
  10494. bottom: 0.025
  10495. }
  10496. },
  10497. back: {
  10498. height: math.unit(1450, "feet"),
  10499. weight: math.unit(1.21e6, "tons"),
  10500. name: "Back",
  10501. image: {
  10502. source: "./media/characters/sekvra/back.svg",
  10503. extra: 1,
  10504. bottom: 0.005
  10505. }
  10506. },
  10507. },
  10508. [
  10509. {
  10510. name: "Macro",
  10511. height: math.unit(1450, "feet"),
  10512. default: true
  10513. },
  10514. {
  10515. name: "Megamacro",
  10516. height: math.unit(15000, "feet")
  10517. },
  10518. ]
  10519. ))
  10520. characterMakers.push(() => makeCharacter(
  10521. { name: "Carmine" },
  10522. {
  10523. front: {
  10524. height: math.unit(6, "feet"),
  10525. weight: math.unit(150, "lb"),
  10526. name: "Front",
  10527. image: {
  10528. source: "./media/characters/carmine/front.svg",
  10529. extra: 1,
  10530. bottom: 0.035
  10531. }
  10532. },
  10533. frontArmor: {
  10534. height: math.unit(6, "feet"),
  10535. weight: math.unit(150, "lb"),
  10536. name: "Front (Armor)",
  10537. image: {
  10538. source: "./media/characters/carmine/front-armor.svg",
  10539. extra: 1,
  10540. bottom: 0.035
  10541. }
  10542. },
  10543. },
  10544. [
  10545. {
  10546. name: "Large",
  10547. height: math.unit(1, "mile")
  10548. },
  10549. {
  10550. name: "Huge",
  10551. height: math.unit(40, "miles"),
  10552. default: true
  10553. },
  10554. {
  10555. name: "Colossal",
  10556. height: math.unit(2500, "miles")
  10557. },
  10558. ]
  10559. ))
  10560. characterMakers.push(() => makeCharacter(
  10561. { name: "Elyssia" },
  10562. {
  10563. front: {
  10564. height: math.unit(6, "feet"),
  10565. weight: math.unit(150, "lb"),
  10566. name: "Front",
  10567. image: {
  10568. source: "./media/characters/elyssia/front.svg",
  10569. extra: 2201 / 2035,
  10570. bottom: 0.05
  10571. }
  10572. },
  10573. frontClothed: {
  10574. height: math.unit(6, "feet"),
  10575. weight: math.unit(150, "lb"),
  10576. name: "Front (Clothed)",
  10577. image: {
  10578. source: "./media/characters/elyssia/front-clothed.svg",
  10579. extra: 2201 / 2035,
  10580. bottom: 0.05
  10581. }
  10582. },
  10583. back: {
  10584. height: math.unit(6, "feet"),
  10585. weight: math.unit(150, "lb"),
  10586. name: "Back",
  10587. image: {
  10588. source: "./media/characters/elyssia/back.svg",
  10589. extra: 2201 / 2035,
  10590. bottom: 0.013
  10591. }
  10592. },
  10593. },
  10594. [
  10595. {
  10596. name: "Smaller",
  10597. height: math.unit(150, "feet")
  10598. },
  10599. {
  10600. name: "Standard",
  10601. height: math.unit(1400, "feet"),
  10602. default: true
  10603. },
  10604. {
  10605. name: "Distracted",
  10606. height: math.unit(15000, "feet")
  10607. },
  10608. ]
  10609. ))
  10610. characterMakers.push(() => makeCharacter(
  10611. { name: "Geno Maxwell" },
  10612. {
  10613. front: {
  10614. height: math.unit(7 + 4 / 12, "feet"),
  10615. weight: math.unit(500, "lb"),
  10616. name: "Front",
  10617. image: {
  10618. source: "./media/characters/geno-maxwell/front.svg",
  10619. extra: 2207 / 2040,
  10620. bottom: 0.015
  10621. }
  10622. },
  10623. },
  10624. [
  10625. {
  10626. name: "Micro",
  10627. height: math.unit(3, "inches")
  10628. },
  10629. {
  10630. name: "Normal",
  10631. height: math.unit(7 + 4 / 12, "feet"),
  10632. default: true
  10633. },
  10634. {
  10635. name: "Macro",
  10636. height: math.unit(220, "feet")
  10637. },
  10638. {
  10639. name: "Megamacro",
  10640. height: math.unit(11, "miles")
  10641. },
  10642. ]
  10643. ))
  10644. characterMakers.push(() => makeCharacter(
  10645. { name: "Regena Maxwell" },
  10646. {
  10647. front: {
  10648. height: math.unit(7 + 4 / 12, "feet"),
  10649. weight: math.unit(500, "lb"),
  10650. name: "Front",
  10651. image: {
  10652. source: "./media/characters/regena-maxwell/front.svg",
  10653. extra: 3115 / 2770,
  10654. bottom: 0.02
  10655. }
  10656. },
  10657. },
  10658. [
  10659. {
  10660. name: "Normal",
  10661. height: math.unit(7 + 4 / 12, "feet"),
  10662. default: true
  10663. },
  10664. {
  10665. name: "Macro",
  10666. height: math.unit(220, "feet")
  10667. },
  10668. {
  10669. name: "Megamacro",
  10670. height: math.unit(11, "miles")
  10671. },
  10672. ]
  10673. ))
  10674. characterMakers.push(() => makeCharacter(
  10675. { name: "XGlidingDragonX" },
  10676. {
  10677. front: {
  10678. height: math.unit(6, "feet"),
  10679. weight: math.unit(150, "lb"),
  10680. name: "Front",
  10681. image: {
  10682. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10683. extra: 860 / 690,
  10684. bottom: 0.03
  10685. }
  10686. },
  10687. },
  10688. [
  10689. {
  10690. name: "Normal",
  10691. height: math.unit(1.7, "meters"),
  10692. default: true
  10693. },
  10694. ]
  10695. ))
  10696. characterMakers.push(() => makeCharacter(
  10697. { name: "Quilly" },
  10698. {
  10699. front: {
  10700. height: math.unit(6, "feet"),
  10701. weight: math.unit(150, "lb"),
  10702. name: "Front",
  10703. image: {
  10704. source: "./media/characters/quilly/front.svg",
  10705. extra: 890 / 776
  10706. }
  10707. },
  10708. },
  10709. [
  10710. {
  10711. name: "Gigamacro",
  10712. height: math.unit(404090, "miles"),
  10713. default: true
  10714. },
  10715. ]
  10716. ))
  10717. characterMakers.push(() => makeCharacter(
  10718. { name: "Tempest" },
  10719. {
  10720. front: {
  10721. height: math.unit(7 + 8 / 12, "feet"),
  10722. weight: math.unit(350, "lb"),
  10723. name: "Front",
  10724. image: {
  10725. source: "./media/characters/tempest/front.svg",
  10726. extra: 1175 / 1086,
  10727. bottom: 0.02
  10728. }
  10729. },
  10730. },
  10731. [
  10732. {
  10733. name: "Normal",
  10734. height: math.unit(7 + 8 / 12, "feet"),
  10735. default: true
  10736. },
  10737. ]
  10738. ))
  10739. characterMakers.push(() => makeCharacter(
  10740. { name: "Rodger" },
  10741. {
  10742. side: {
  10743. height: math.unit(4 + 5 / 12, "feet"),
  10744. weight: math.unit(80, "lb"),
  10745. name: "Side",
  10746. image: {
  10747. source: "./media/characters/rodger/side.svg",
  10748. extra: 1235 / 1118
  10749. }
  10750. },
  10751. },
  10752. [
  10753. {
  10754. name: "Micro",
  10755. height: math.unit(1, "inch")
  10756. },
  10757. {
  10758. name: "Normal",
  10759. height: math.unit(4 + 5 / 12, "feet"),
  10760. default: true
  10761. },
  10762. {
  10763. name: "Macro",
  10764. height: math.unit(120, "feet")
  10765. },
  10766. ]
  10767. ))
  10768. characterMakers.push(() => makeCharacter(
  10769. { name: "Danyel" },
  10770. {
  10771. front: {
  10772. height: math.unit(6, "feet"),
  10773. weight: math.unit(150, "lb"),
  10774. name: "Front",
  10775. image: {
  10776. source: "./media/characters/danyel/front.svg",
  10777. extra: 1185 / 1123,
  10778. bottom: 0.05
  10779. }
  10780. },
  10781. },
  10782. [
  10783. {
  10784. name: "Shrunken",
  10785. height: math.unit(0.5, "mm")
  10786. },
  10787. {
  10788. name: "Micro",
  10789. height: math.unit(1, "mm"),
  10790. default: true
  10791. },
  10792. {
  10793. name: "Upsized",
  10794. height: math.unit(5 + 5 / 12, "feet")
  10795. },
  10796. ]
  10797. ))
  10798. characterMakers.push(() => makeCharacter(
  10799. { name: "Vivian Bijoux" },
  10800. {
  10801. front: {
  10802. height: math.unit(5 + 6 / 12, "feet"),
  10803. weight: math.unit(200, "lb"),
  10804. name: "Front",
  10805. image: {
  10806. source: "./media/characters/vivian-bijoux/front.svg",
  10807. extra: 1,
  10808. bottom: 0.072
  10809. }
  10810. },
  10811. },
  10812. [
  10813. {
  10814. name: "Normal",
  10815. height: math.unit(5 + 6 / 12, "feet"),
  10816. default: true
  10817. },
  10818. {
  10819. name: "Bad Dream",
  10820. height: math.unit(500, "feet")
  10821. },
  10822. {
  10823. name: "Nightmare",
  10824. height: math.unit(500, "miles")
  10825. },
  10826. ]
  10827. ))
  10828. characterMakers.push(() => makeCharacter(
  10829. { name: "Zeta" },
  10830. {
  10831. front: {
  10832. height: math.unit(6 + 1 / 12, "feet"),
  10833. weight: math.unit(260, "lb"),
  10834. name: "Front",
  10835. image: {
  10836. source: "./media/characters/zeta/front.svg",
  10837. extra: 1968 / 1889,
  10838. bottom: 0.06
  10839. }
  10840. },
  10841. back: {
  10842. height: math.unit(6 + 1 / 12, "feet"),
  10843. weight: math.unit(260, "lb"),
  10844. name: "Back",
  10845. image: {
  10846. source: "./media/characters/zeta/back.svg",
  10847. extra: 1944 / 1858,
  10848. bottom: 0.03
  10849. }
  10850. },
  10851. hand: {
  10852. height: math.unit(1.112, "feet"),
  10853. name: "Hand",
  10854. image: {
  10855. source: "./media/characters/zeta/hand.svg"
  10856. }
  10857. },
  10858. foot: {
  10859. height: math.unit(1.48, "feet"),
  10860. name: "Foot",
  10861. image: {
  10862. source: "./media/characters/zeta/foot.svg"
  10863. }
  10864. },
  10865. },
  10866. [
  10867. {
  10868. name: "Micro",
  10869. height: math.unit(6, "inches")
  10870. },
  10871. {
  10872. name: "Normal",
  10873. height: math.unit(6 + 1 / 12, "feet"),
  10874. default: true
  10875. },
  10876. {
  10877. name: "Macro",
  10878. height: math.unit(20, "feet")
  10879. },
  10880. ]
  10881. ))
  10882. characterMakers.push(() => makeCharacter(
  10883. { name: "Jamie Larsen" },
  10884. {
  10885. front: {
  10886. height: math.unit(6, "feet"),
  10887. weight: math.unit(150, "lb"),
  10888. name: "Front",
  10889. image: {
  10890. source: "./media/characters/jamie-larsen/front.svg",
  10891. extra: 962 / 933,
  10892. bottom: 0.02
  10893. }
  10894. },
  10895. back: {
  10896. height: math.unit(6, "feet"),
  10897. weight: math.unit(150, "lb"),
  10898. name: "Back",
  10899. image: {
  10900. source: "./media/characters/jamie-larsen/back.svg",
  10901. extra: 997 / 946
  10902. }
  10903. },
  10904. },
  10905. [
  10906. {
  10907. name: "Macro",
  10908. height: math.unit(28 + 7 / 12, "feet"),
  10909. default: true
  10910. },
  10911. {
  10912. name: "Macro+",
  10913. height: math.unit(180, "feet")
  10914. },
  10915. {
  10916. name: "Megamacro",
  10917. height: math.unit(10, "miles")
  10918. },
  10919. {
  10920. name: "Gigamacro",
  10921. height: math.unit(200000, "miles")
  10922. },
  10923. ]
  10924. ))
  10925. characterMakers.push(() => makeCharacter(
  10926. { name: "Vance" },
  10927. {
  10928. front: {
  10929. height: math.unit(6, "feet"),
  10930. weight: math.unit(120, "lb"),
  10931. name: "Front",
  10932. image: {
  10933. source: "./media/characters/vance/front.svg",
  10934. extra: 1980 / 1890,
  10935. bottom: 0.09
  10936. }
  10937. },
  10938. back: {
  10939. height: math.unit(6, "feet"),
  10940. weight: math.unit(120, "lb"),
  10941. name: "Back",
  10942. image: {
  10943. source: "./media/characters/vance/back.svg",
  10944. extra: 2081 / 1994,
  10945. bottom: 0.014
  10946. }
  10947. },
  10948. hand: {
  10949. height: math.unit(0.88, "feet"),
  10950. name: "Hand",
  10951. image: {
  10952. source: "./media/characters/vance/hand.svg"
  10953. }
  10954. },
  10955. foot: {
  10956. height: math.unit(0.64, "feet"),
  10957. name: "Foot",
  10958. image: {
  10959. source: "./media/characters/vance/foot.svg"
  10960. }
  10961. },
  10962. },
  10963. [
  10964. {
  10965. name: "Small",
  10966. height: math.unit(90, "feet"),
  10967. default: true
  10968. },
  10969. {
  10970. name: "Macro",
  10971. height: math.unit(100, "meters")
  10972. },
  10973. {
  10974. name: "Megamacro",
  10975. height: math.unit(15, "miles")
  10976. },
  10977. ]
  10978. ))
  10979. characterMakers.push(() => makeCharacter(
  10980. { name: "Xochitl" },
  10981. {
  10982. front: {
  10983. height: math.unit(6, "feet"),
  10984. weight: math.unit(180, "lb"),
  10985. name: "Front",
  10986. image: {
  10987. source: "./media/characters/xochitl/front.svg",
  10988. extra: 2297 / 2261,
  10989. bottom: 0.065
  10990. }
  10991. },
  10992. back: {
  10993. height: math.unit(6, "feet"),
  10994. weight: math.unit(180, "lb"),
  10995. name: "Back",
  10996. image: {
  10997. source: "./media/characters/xochitl/back.svg",
  10998. extra: 2386 / 2354,
  10999. bottom: 0.01
  11000. }
  11001. },
  11002. foot: {
  11003. height: math.unit(6 / 5 * 1.15, "feet"),
  11004. weight: math.unit(150, "lb"),
  11005. name: "Foot",
  11006. image: {
  11007. source: "./media/characters/xochitl/foot.svg"
  11008. }
  11009. },
  11010. },
  11011. [
  11012. {
  11013. name: "Macro",
  11014. height: math.unit(80, "feet")
  11015. },
  11016. {
  11017. name: "Macro+",
  11018. height: math.unit(400, "feet"),
  11019. default: true
  11020. },
  11021. {
  11022. name: "Gigamacro",
  11023. height: math.unit(80000, "miles")
  11024. },
  11025. {
  11026. name: "Gigamacro+",
  11027. height: math.unit(400000, "miles")
  11028. },
  11029. {
  11030. name: "Teramacro",
  11031. height: math.unit(300, "AU")
  11032. },
  11033. ]
  11034. ))
  11035. characterMakers.push(() => makeCharacter(
  11036. { name: "Vincent" },
  11037. {
  11038. front: {
  11039. height: math.unit(6, "feet"),
  11040. weight: math.unit(150, "lb"),
  11041. name: "Front",
  11042. image: {
  11043. source: "./media/characters/vincent/front.svg",
  11044. extra: 1130 / 1080,
  11045. bottom: 0.055
  11046. }
  11047. },
  11048. beak: {
  11049. height: math.unit(6 * 0.1, "feet"),
  11050. name: "Beak",
  11051. image: {
  11052. source: "./media/characters/vincent/beak.svg"
  11053. }
  11054. },
  11055. hand: {
  11056. height: math.unit(6 * 0.85, "feet"),
  11057. weight: math.unit(150, "lb"),
  11058. name: "Hand",
  11059. image: {
  11060. source: "./media/characters/vincent/hand.svg"
  11061. }
  11062. },
  11063. foot: {
  11064. height: math.unit(6 * 0.19, "feet"),
  11065. weight: math.unit(150, "lb"),
  11066. name: "Foot",
  11067. image: {
  11068. source: "./media/characters/vincent/foot.svg"
  11069. }
  11070. },
  11071. },
  11072. [
  11073. {
  11074. name: "Base",
  11075. height: math.unit(6 + 5 / 12, "feet"),
  11076. default: true
  11077. },
  11078. {
  11079. name: "Macro",
  11080. height: math.unit(300, "feet")
  11081. },
  11082. {
  11083. name: "Megamacro",
  11084. height: math.unit(2, "miles")
  11085. },
  11086. {
  11087. name: "Gigamacro",
  11088. height: math.unit(1000, "miles")
  11089. },
  11090. ]
  11091. ))
  11092. characterMakers.push(() => makeCharacter(
  11093. { name: "Jay" },
  11094. {
  11095. front: {
  11096. height: math.unit(6 + 2 / 12, "feet"),
  11097. weight: math.unit(65, "lb"),
  11098. name: "Front",
  11099. image: {
  11100. source: "./media/characters/jay/front.svg",
  11101. extra: 1510 / 1430,
  11102. bottom: 0.042
  11103. }
  11104. },
  11105. back: {
  11106. height: math.unit(6 + 2 / 12, "feet"),
  11107. weight: math.unit(65, "lb"),
  11108. name: "Back",
  11109. image: {
  11110. source: "./media/characters/jay/back.svg",
  11111. extra: 1510 / 1430,
  11112. bottom: 0.025
  11113. }
  11114. },
  11115. clothed: {
  11116. height: math.unit(6 + 2 / 12, "feet"),
  11117. weight: math.unit(65, "lb"),
  11118. name: "Front (Clothed)",
  11119. image: {
  11120. source: "./media/characters/jay/clothed.svg",
  11121. extra: 744 / 699,
  11122. bottom: 0.043
  11123. }
  11124. },
  11125. },
  11126. [
  11127. {
  11128. name: "Micro",
  11129. height: math.unit(1, "inch")
  11130. },
  11131. {
  11132. name: "Normal",
  11133. height: math.unit(6 + 2 / 12, "feet"),
  11134. default: true
  11135. },
  11136. {
  11137. name: "Macro",
  11138. height: math.unit(1, "mile")
  11139. },
  11140. {
  11141. name: "Megamacro",
  11142. height: math.unit(100, "miles")
  11143. },
  11144. ]
  11145. ))
  11146. characterMakers.push(() => makeCharacter(
  11147. { name: "Coatl" },
  11148. {
  11149. front: {
  11150. height: math.unit(2, "meters"),
  11151. weight: math.unit(500, "kg"),
  11152. name: "Front",
  11153. image: {
  11154. source: "./media/characters/coatl/front.svg",
  11155. extra: 3948 / 3500,
  11156. bottom: 0.082
  11157. }
  11158. },
  11159. },
  11160. [
  11161. {
  11162. name: "Normal",
  11163. height: math.unit(4, "meters")
  11164. },
  11165. {
  11166. name: "Macro",
  11167. height: math.unit(100, "meters"),
  11168. default: true
  11169. },
  11170. {
  11171. name: "Macro+",
  11172. height: math.unit(300, "meters")
  11173. },
  11174. {
  11175. name: "Megamacro",
  11176. height: math.unit(3, "gigameters")
  11177. },
  11178. {
  11179. name: "Megamacro+",
  11180. height: math.unit(300, "terameters")
  11181. },
  11182. {
  11183. name: "Megamacro++",
  11184. height: math.unit(3, "lightyears")
  11185. },
  11186. ]
  11187. ))
  11188. characterMakers.push(() => makeCharacter(
  11189. { name: "Shiroryu" },
  11190. {
  11191. front: {
  11192. height: math.unit(6, "feet"),
  11193. weight: math.unit(50, "kg"),
  11194. name: "front",
  11195. image: {
  11196. source: "./media/characters/shiroryu/front.svg",
  11197. extra: 1990 / 1935
  11198. }
  11199. },
  11200. },
  11201. [
  11202. {
  11203. name: "Mortal Mingling",
  11204. height: math.unit(3, "meters")
  11205. },
  11206. {
  11207. name: "Kaiju-ish",
  11208. height: math.unit(250, "meters")
  11209. },
  11210. {
  11211. name: "Somewhat Godly",
  11212. height: math.unit(400, "km"),
  11213. default: true
  11214. },
  11215. {
  11216. name: "Planetary",
  11217. height: math.unit(300, "megameters")
  11218. },
  11219. {
  11220. name: "Galaxy-dwarfing",
  11221. height: math.unit(450, "kiloparsecs")
  11222. },
  11223. {
  11224. name: "Universe Eater",
  11225. height: math.unit(150, "gigaparsecs")
  11226. },
  11227. {
  11228. name: "Almost Immeasurable",
  11229. height: math.unit(1.3e266, "yottaparsecs")
  11230. },
  11231. ]
  11232. ))
  11233. characterMakers.push(() => makeCharacter(
  11234. { name: "Umeko" },
  11235. {
  11236. front: {
  11237. height: math.unit(6, "feet"),
  11238. weight: math.unit(150, "lb"),
  11239. name: "Front",
  11240. image: {
  11241. source: "./media/characters/umeko/front.svg",
  11242. extra: 1,
  11243. bottom: 0.019
  11244. }
  11245. },
  11246. frontArmored: {
  11247. height: math.unit(6, "feet"),
  11248. weight: math.unit(150, "lb"),
  11249. name: "Front (Armored)",
  11250. image: {
  11251. source: "./media/characters/umeko/front-armored.svg",
  11252. extra: 1,
  11253. bottom: 0.021
  11254. }
  11255. },
  11256. },
  11257. [
  11258. {
  11259. name: "Macro",
  11260. height: math.unit(220, "feet"),
  11261. default: true
  11262. },
  11263. {
  11264. name: "Guardian Dragon",
  11265. height: math.unit(50, "miles")
  11266. },
  11267. {
  11268. name: "Cosmic",
  11269. height: math.unit(800000, "miles")
  11270. },
  11271. ]
  11272. ))
  11273. characterMakers.push(() => makeCharacter(
  11274. { name: "Cassidy" },
  11275. {
  11276. front: {
  11277. height: math.unit(6, "feet"),
  11278. weight: math.unit(150, "lb"),
  11279. name: "Front",
  11280. image: {
  11281. source: "./media/characters/cassidy/front.svg",
  11282. extra: 1,
  11283. bottom: 0.043
  11284. }
  11285. },
  11286. },
  11287. [
  11288. {
  11289. name: "Canon Height",
  11290. height: math.unit(120, "feet"),
  11291. default: true
  11292. },
  11293. {
  11294. name: "Macro+",
  11295. height: math.unit(400, "feet")
  11296. },
  11297. {
  11298. name: "Macro++",
  11299. height: math.unit(4000, "feet")
  11300. },
  11301. {
  11302. name: "Megamacro",
  11303. height: math.unit(3, "miles")
  11304. },
  11305. ]
  11306. ))
  11307. characterMakers.push(() => makeCharacter(
  11308. { name: "Isaac" },
  11309. {
  11310. front: {
  11311. height: math.unit(6, "feet"),
  11312. weight: math.unit(150, "lb"),
  11313. name: "Front",
  11314. image: {
  11315. source: "./media/characters/isaac/front.svg",
  11316. extra: 896 / 815,
  11317. bottom: 0.11
  11318. }
  11319. },
  11320. },
  11321. [
  11322. {
  11323. name: "Human Size",
  11324. height: math.unit(8, "feet"),
  11325. default: true
  11326. },
  11327. {
  11328. name: "Macro",
  11329. height: math.unit(400, "feet")
  11330. },
  11331. {
  11332. name: "Megamacro",
  11333. height: math.unit(50, "miles")
  11334. },
  11335. {
  11336. name: "Canon Height",
  11337. height: math.unit(200, "AU")
  11338. },
  11339. ]
  11340. ))
  11341. characterMakers.push(() => makeCharacter(
  11342. { name: "Sleekit" },
  11343. {
  11344. front: {
  11345. height: math.unit(6, "feet"),
  11346. weight: math.unit(72, "kg"),
  11347. name: "Front",
  11348. image: {
  11349. source: "./media/characters/sleekit/front.svg",
  11350. extra: 4693 / 4487,
  11351. bottom: 0.012
  11352. }
  11353. },
  11354. },
  11355. [
  11356. {
  11357. name: "Minimum Height",
  11358. height: math.unit(10, "meters")
  11359. },
  11360. {
  11361. name: "Smaller",
  11362. height: math.unit(25, "meters")
  11363. },
  11364. {
  11365. name: "Larger",
  11366. height: math.unit(38, "meters"),
  11367. default: true
  11368. },
  11369. {
  11370. name: "Maximum height",
  11371. height: math.unit(100, "meters")
  11372. },
  11373. ]
  11374. ))
  11375. characterMakers.push(() => makeCharacter(
  11376. { name: "Nillia" },
  11377. {
  11378. front: {
  11379. height: math.unit(6, "feet"),
  11380. weight: math.unit(150, "lb"),
  11381. name: "Front",
  11382. image: {
  11383. source: "./media/characters/nillia/front.svg",
  11384. extra: 2195 / 2037,
  11385. bottom: 0.005
  11386. }
  11387. },
  11388. back: {
  11389. height: math.unit(6, "feet"),
  11390. weight: math.unit(150, "lb"),
  11391. name: "Back",
  11392. image: {
  11393. source: "./media/characters/nillia/back.svg",
  11394. extra: 2195 / 2037,
  11395. bottom: 0.005
  11396. }
  11397. },
  11398. },
  11399. [
  11400. {
  11401. name: "Canon Height",
  11402. height: math.unit(489, "feet"),
  11403. default: true
  11404. }
  11405. ]
  11406. ))
  11407. characterMakers.push(() => makeCharacter(
  11408. { name: "Mesmyriza" },
  11409. {
  11410. front: {
  11411. height: math.unit(6, "feet"),
  11412. weight: math.unit(150, "lb"),
  11413. name: "Front",
  11414. image: {
  11415. source: "./media/characters/mesmyriza/front.svg",
  11416. extra: 2067 / 1784,
  11417. bottom: 0.035
  11418. }
  11419. },
  11420. foot: {
  11421. height: math.unit(6 / (250 / 35), "feet"),
  11422. name: "Foot",
  11423. image: {
  11424. source: "./media/characters/mesmyriza/foot.svg"
  11425. }
  11426. },
  11427. },
  11428. [
  11429. {
  11430. name: "Macro",
  11431. height: math.unit(457, "meters"),
  11432. default: true
  11433. },
  11434. {
  11435. name: "Megamacro",
  11436. height: math.unit(8, "megameters")
  11437. },
  11438. ]
  11439. ))
  11440. characterMakers.push(() => makeCharacter(
  11441. { name: "Saudade" },
  11442. {
  11443. front: {
  11444. height: math.unit(6, "feet"),
  11445. weight: math.unit(250, "lb"),
  11446. name: "Front",
  11447. image: {
  11448. source: "./media/characters/saudade/front.svg",
  11449. extra: 1172 / 1139,
  11450. bottom: 0.035
  11451. }
  11452. },
  11453. },
  11454. [
  11455. {
  11456. name: "Micro",
  11457. height: math.unit(3, "inches")
  11458. },
  11459. {
  11460. name: "Normal",
  11461. height: math.unit(6, "feet"),
  11462. default: true
  11463. },
  11464. {
  11465. name: "Macro",
  11466. height: math.unit(50, "feet")
  11467. },
  11468. {
  11469. name: "Megamacro",
  11470. height: math.unit(2800, "feet")
  11471. },
  11472. ]
  11473. ))
  11474. characterMakers.push(() => makeCharacter(
  11475. { name: "Keireer" },
  11476. {
  11477. front: {
  11478. height: math.unit(5 + 4 / 12, "feet"),
  11479. weight: math.unit(100, "lb"),
  11480. name: "Front",
  11481. image: {
  11482. source: "./media/characters/keireer/front.svg",
  11483. extra: 716 / 666,
  11484. bottom: 0.05
  11485. }
  11486. },
  11487. },
  11488. [
  11489. {
  11490. name: "Normal",
  11491. height: math.unit(5 + 4 / 12, "feet"),
  11492. default: true
  11493. },
  11494. ]
  11495. ))
  11496. characterMakers.push(() => makeCharacter(
  11497. { name: "Mirja" },
  11498. {
  11499. front: {
  11500. height: math.unit(6, "feet"),
  11501. weight: math.unit(90, "kg"),
  11502. name: "Front",
  11503. image: {
  11504. source: "./media/characters/mirja/front.svg",
  11505. extra: 1789 / 1683,
  11506. bottom: 0.05
  11507. }
  11508. },
  11509. frontDressed: {
  11510. height: math.unit(6, "feet"),
  11511. weight: math.unit(90, "lb"),
  11512. name: "Front (Dressed)",
  11513. image: {
  11514. source: "./media/characters/mirja/front-dressed.svg",
  11515. extra: 1789 / 1683,
  11516. bottom: 0.05
  11517. }
  11518. },
  11519. back: {
  11520. height: math.unit(6, "feet"),
  11521. weight: math.unit(90, "lb"),
  11522. name: "Back",
  11523. image: {
  11524. source: "./media/characters/mirja/back.svg",
  11525. extra: 953 / 917,
  11526. bottom: 0.017
  11527. }
  11528. },
  11529. },
  11530. [
  11531. {
  11532. name: "\"Incognito\"",
  11533. height: math.unit(3, "meters")
  11534. },
  11535. {
  11536. name: "Strolling Size",
  11537. height: math.unit(15, "km")
  11538. },
  11539. {
  11540. name: "Larger Strolling Size",
  11541. height: math.unit(400, "km")
  11542. },
  11543. {
  11544. name: "Preferred Size",
  11545. height: math.unit(5000, "km")
  11546. },
  11547. {
  11548. name: "True Size",
  11549. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11550. default: true
  11551. },
  11552. ]
  11553. ))
  11554. characterMakers.push(() => makeCharacter(
  11555. { name: "Nightraver" },
  11556. {
  11557. front: {
  11558. height: math.unit(15, "feet"),
  11559. weight: math.unit(880, "kg"),
  11560. name: "Front",
  11561. image: {
  11562. source: "./media/characters/nightraver/front.svg",
  11563. extra: 2444 / 2160,
  11564. bottom: 0.027
  11565. }
  11566. },
  11567. back: {
  11568. height: math.unit(15, "feet"),
  11569. weight: math.unit(880, "kg"),
  11570. name: "Back",
  11571. image: {
  11572. source: "./media/characters/nightraver/back.svg",
  11573. extra: 2309 / 2180,
  11574. bottom: 0.005
  11575. }
  11576. },
  11577. sole: {
  11578. height: math.unit(2.878, "feet"),
  11579. name: "Sole",
  11580. image: {
  11581. source: "./media/characters/nightraver/sole.svg"
  11582. }
  11583. },
  11584. foot: {
  11585. height: math.unit(2.285, "feet"),
  11586. name: "Foot",
  11587. image: {
  11588. source: "./media/characters/nightraver/foot.svg"
  11589. }
  11590. },
  11591. maw: {
  11592. height: math.unit(2.67, "feet"),
  11593. name: "Maw",
  11594. image: {
  11595. source: "./media/characters/nightraver/maw.svg"
  11596. }
  11597. },
  11598. },
  11599. [
  11600. {
  11601. name: "Micro",
  11602. height: math.unit(1, "cm")
  11603. },
  11604. {
  11605. name: "Normal",
  11606. height: math.unit(15, "feet"),
  11607. default: true
  11608. },
  11609. {
  11610. name: "Macro",
  11611. height: math.unit(300, "feet")
  11612. },
  11613. {
  11614. name: "Megamacro",
  11615. height: math.unit(300, "miles")
  11616. },
  11617. {
  11618. name: "Gigamacro",
  11619. height: math.unit(10000, "miles")
  11620. },
  11621. ]
  11622. ))
  11623. characterMakers.push(() => makeCharacter(
  11624. { name: "Arc" },
  11625. {
  11626. side: {
  11627. height: math.unit(2, "inches"),
  11628. weight: math.unit(5, "grams"),
  11629. name: "Side",
  11630. image: {
  11631. source: "./media/characters/arc/side.svg"
  11632. }
  11633. },
  11634. },
  11635. [
  11636. {
  11637. name: "Micro",
  11638. height: math.unit(2, "inches"),
  11639. default: true
  11640. },
  11641. ]
  11642. ))
  11643. characterMakers.push(() => makeCharacter(
  11644. { name: "Nebula Shahar" },
  11645. {
  11646. front: {
  11647. height: math.unit(1.1938, "meters"),
  11648. weight: math.unit(54, "kg"),
  11649. name: "Front",
  11650. image: {
  11651. source: "./media/characters/nebula-shahar/front.svg",
  11652. extra: 1642 / 1436,
  11653. bottom: 0.06
  11654. }
  11655. },
  11656. },
  11657. [
  11658. {
  11659. name: "Megamicro",
  11660. height: math.unit(0.3, "mm")
  11661. },
  11662. {
  11663. name: "Micro",
  11664. height: math.unit(3, "cm")
  11665. },
  11666. {
  11667. name: "Normal",
  11668. height: math.unit(138, "cm"),
  11669. default: true
  11670. },
  11671. {
  11672. name: "Macro",
  11673. height: math.unit(30, "m")
  11674. },
  11675. ]
  11676. ))
  11677. characterMakers.push(() => makeCharacter(
  11678. { name: "Shayla" },
  11679. {
  11680. front: {
  11681. height: math.unit(5.24, "feet"),
  11682. weight: math.unit(150, "lb"),
  11683. name: "Front",
  11684. image: {
  11685. source: "./media/characters/shayla/front.svg",
  11686. extra: 1512 / 1414,
  11687. bottom: 0.01
  11688. }
  11689. },
  11690. back: {
  11691. height: math.unit(5.24, "feet"),
  11692. weight: math.unit(150, "lb"),
  11693. name: "Back",
  11694. image: {
  11695. source: "./media/characters/shayla/back.svg",
  11696. extra: 1512 / 1414
  11697. }
  11698. },
  11699. hand: {
  11700. height: math.unit(0.7781496062992126, "feet"),
  11701. name: "Hand",
  11702. image: {
  11703. source: "./media/characters/shayla/hand.svg"
  11704. }
  11705. },
  11706. foot: {
  11707. height: math.unit(1.4206036745406823, "feet"),
  11708. name: "Foot",
  11709. image: {
  11710. source: "./media/characters/shayla/foot.svg"
  11711. }
  11712. },
  11713. },
  11714. [
  11715. {
  11716. name: "Micro",
  11717. height: math.unit(0.32, "feet")
  11718. },
  11719. {
  11720. name: "Normal",
  11721. height: math.unit(5.24, "feet"),
  11722. default: true
  11723. },
  11724. {
  11725. name: "Macro",
  11726. height: math.unit(492.12, "feet")
  11727. },
  11728. {
  11729. name: "Megamacro",
  11730. height: math.unit(186.41, "miles")
  11731. },
  11732. ]
  11733. ))
  11734. characterMakers.push(() => makeCharacter(
  11735. { name: "Pia Jr." },
  11736. {
  11737. front: {
  11738. height: math.unit(2.2, "m"),
  11739. weight: math.unit(120, "kg"),
  11740. name: "Front",
  11741. image: {
  11742. source: "./media/characters/pia-jr/front.svg",
  11743. extra: 1000 / 970,
  11744. bottom: 0.035
  11745. }
  11746. },
  11747. hand: {
  11748. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11749. name: "Hand",
  11750. image: {
  11751. source: "./media/characters/pia-jr/hand.svg"
  11752. }
  11753. },
  11754. paw: {
  11755. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11756. name: "Paw",
  11757. image: {
  11758. source: "./media/characters/pia-jr/paw.svg"
  11759. }
  11760. },
  11761. },
  11762. [
  11763. {
  11764. name: "Micro",
  11765. height: math.unit(1.2, "cm")
  11766. },
  11767. {
  11768. name: "Normal",
  11769. height: math.unit(2.2, "m"),
  11770. default: true
  11771. },
  11772. {
  11773. name: "Macro",
  11774. height: math.unit(180, "m")
  11775. },
  11776. {
  11777. name: "Megamacro",
  11778. height: math.unit(420, "km")
  11779. },
  11780. ]
  11781. ))
  11782. characterMakers.push(() => makeCharacter(
  11783. { name: "Pia Sr." },
  11784. {
  11785. front: {
  11786. height: math.unit(2, "m"),
  11787. weight: math.unit(115, "kg"),
  11788. name: "Front",
  11789. image: {
  11790. source: "./media/characters/pia-sr/front.svg",
  11791. extra: 760 / 730,
  11792. bottom: 0.015
  11793. }
  11794. },
  11795. back: {
  11796. height: math.unit(2, "m"),
  11797. weight: math.unit(115, "kg"),
  11798. name: "Back",
  11799. image: {
  11800. source: "./media/characters/pia-sr/back.svg",
  11801. extra: 760 / 730,
  11802. bottom: 0.01
  11803. }
  11804. },
  11805. hand: {
  11806. height: math.unit(0.89 * 6.56 / 6, "feet"),
  11807. name: "Hand",
  11808. image: {
  11809. source: "./media/characters/pia-sr/hand.svg"
  11810. }
  11811. },
  11812. foot: {
  11813. height: math.unit(1.83, "feet"),
  11814. name: "Foot",
  11815. image: {
  11816. source: "./media/characters/pia-sr/foot.svg"
  11817. }
  11818. },
  11819. },
  11820. [
  11821. {
  11822. name: "Micro",
  11823. height: math.unit(88, "mm")
  11824. },
  11825. {
  11826. name: "Normal",
  11827. height: math.unit(2, "m"),
  11828. default: true
  11829. },
  11830. {
  11831. name: "Macro",
  11832. height: math.unit(200, "m")
  11833. },
  11834. {
  11835. name: "Megamacro",
  11836. height: math.unit(420, "km")
  11837. },
  11838. ]
  11839. ))
  11840. characterMakers.push(() => makeCharacter(
  11841. { name: "KIBIBYTE" },
  11842. {
  11843. front: {
  11844. height: math.unit(8 + 2 / 12, "feet"),
  11845. weight: math.unit(300, "lb"),
  11846. name: "Front",
  11847. image: {
  11848. source: "./media/characters/kibibyte/front.svg",
  11849. extra: 2221 / 2098,
  11850. bottom: 0.04
  11851. }
  11852. },
  11853. },
  11854. [
  11855. {
  11856. name: "Normal",
  11857. height: math.unit(8 + 2 / 12, "feet"),
  11858. default: true
  11859. },
  11860. {
  11861. name: "Socialable Macro",
  11862. height: math.unit(50, "feet")
  11863. },
  11864. {
  11865. name: "Macro",
  11866. height: math.unit(300, "feet")
  11867. },
  11868. {
  11869. name: "Megamacro",
  11870. height: math.unit(500, "miles")
  11871. },
  11872. ]
  11873. ))
  11874. characterMakers.push(() => makeCharacter(
  11875. { name: "Felix" },
  11876. {
  11877. front: {
  11878. height: math.unit(6, "feet"),
  11879. weight: math.unit(150, "lb"),
  11880. name: "Front",
  11881. image: {
  11882. source: "./media/characters/felix/front.svg",
  11883. extra: 762 / 722,
  11884. bottom: 0.02
  11885. }
  11886. },
  11887. frontClothed: {
  11888. height: math.unit(6, "feet"),
  11889. weight: math.unit(150, "lb"),
  11890. name: "Front (Clothed)",
  11891. image: {
  11892. source: "./media/characters/felix/front-clothed.svg",
  11893. extra: 762 / 722,
  11894. bottom: 0.02
  11895. }
  11896. },
  11897. },
  11898. [
  11899. {
  11900. name: "Normal",
  11901. height: math.unit(6 + 8 / 12, "feet"),
  11902. default: true
  11903. },
  11904. {
  11905. name: "Macro",
  11906. height: math.unit(2600, "feet")
  11907. },
  11908. {
  11909. name: "Megamacro",
  11910. height: math.unit(450, "miles")
  11911. },
  11912. ]
  11913. ))
  11914. characterMakers.push(() => makeCharacter(
  11915. { name: "Tobo" },
  11916. {
  11917. front: {
  11918. height: math.unit(6 + 1 / 12, "feet"),
  11919. weight: math.unit(250, "lb"),
  11920. name: "Front",
  11921. image: {
  11922. source: "./media/characters/tobo/front.svg",
  11923. extra: 608 / 586,
  11924. bottom: 0.023
  11925. }
  11926. },
  11927. back: {
  11928. height: math.unit(6 + 1 / 12, "feet"),
  11929. weight: math.unit(250, "lb"),
  11930. name: "Back",
  11931. image: {
  11932. source: "./media/characters/tobo/back.svg",
  11933. extra: 608 / 586
  11934. }
  11935. },
  11936. },
  11937. [
  11938. {
  11939. name: "Nano",
  11940. height: math.unit(2, "nm")
  11941. },
  11942. {
  11943. name: "Megamicro",
  11944. height: math.unit(0.1, "mm")
  11945. },
  11946. {
  11947. name: "Micro",
  11948. height: math.unit(1, "inch"),
  11949. default: true
  11950. },
  11951. {
  11952. name: "Human-sized",
  11953. height: math.unit(6 + 1 / 12, "feet")
  11954. },
  11955. {
  11956. name: "Macro",
  11957. height: math.unit(250, "feet")
  11958. },
  11959. {
  11960. name: "Megamacro",
  11961. height: math.unit(75, "miles")
  11962. },
  11963. {
  11964. name: "Texas-sized",
  11965. height: math.unit(750, "miles")
  11966. },
  11967. {
  11968. name: "Teramacro",
  11969. height: math.unit(50000, "miles")
  11970. },
  11971. ]
  11972. ))
  11973. characterMakers.push(() => makeCharacter(
  11974. { name: "Danny Kapowsky" },
  11975. {
  11976. front: {
  11977. height: math.unit(6, "feet"),
  11978. weight: math.unit(269, "lb"),
  11979. name: "Front",
  11980. image: {
  11981. source: "./media/characters/danny-kapowsky/front.svg",
  11982. extra: 766 / 736,
  11983. bottom: 0.044
  11984. }
  11985. },
  11986. back: {
  11987. height: math.unit(6, "feet"),
  11988. weight: math.unit(269, "lb"),
  11989. name: "Back",
  11990. image: {
  11991. source: "./media/characters/danny-kapowsky/back.svg",
  11992. extra: 797 / 760,
  11993. bottom: 0.025
  11994. }
  11995. },
  11996. },
  11997. [
  11998. {
  11999. name: "Macro",
  12000. height: math.unit(150, "feet"),
  12001. default: true
  12002. },
  12003. {
  12004. name: "Macro+",
  12005. height: math.unit(200, "feet")
  12006. },
  12007. {
  12008. name: "Macro++",
  12009. height: math.unit(300, "feet")
  12010. },
  12011. {
  12012. name: "Macro+++",
  12013. height: math.unit(400, "feet")
  12014. },
  12015. ]
  12016. ))
  12017. characterMakers.push(() => makeCharacter(
  12018. { name: "Finn" },
  12019. {
  12020. side: {
  12021. height: math.unit(6, "feet"),
  12022. weight: math.unit(170, "lb"),
  12023. name: "Side",
  12024. image: {
  12025. source: "./media/characters/finn/side.svg",
  12026. extra: 1953 / 1807,
  12027. bottom: 0.057
  12028. }
  12029. },
  12030. },
  12031. [
  12032. {
  12033. name: "Megamacro",
  12034. height: math.unit(14445, "feet"),
  12035. default: true
  12036. },
  12037. ]
  12038. ))
  12039. characterMakers.push(() => makeCharacter(
  12040. { name: "Roy" },
  12041. {
  12042. front: {
  12043. height: math.unit(5 + 6 / 12, "feet"),
  12044. weight: math.unit(125, "lb"),
  12045. name: "Front",
  12046. image: {
  12047. source: "./media/characters/roy/front.svg",
  12048. extra: 1,
  12049. bottom: 0.11
  12050. }
  12051. },
  12052. },
  12053. [
  12054. {
  12055. name: "Micro",
  12056. height: math.unit(3, "inches"),
  12057. default: true
  12058. },
  12059. {
  12060. name: "Normal",
  12061. height: math.unit(5 + 6 / 12, "feet")
  12062. },
  12063. {
  12064. name: "Lesser Macro",
  12065. height: math.unit(60, "feet")
  12066. },
  12067. {
  12068. name: "Greater Macro",
  12069. height: math.unit(120, "feet")
  12070. },
  12071. ]
  12072. ))
  12073. characterMakers.push(() => makeCharacter(
  12074. { name: "Aevsivs" },
  12075. {
  12076. front: {
  12077. height: math.unit(6, "feet"),
  12078. weight: math.unit(100, "lb"),
  12079. name: "Front",
  12080. image: {
  12081. source: "./media/characters/aevsivs/front.svg",
  12082. extra: 1,
  12083. bottom: 0.03
  12084. }
  12085. },
  12086. back: {
  12087. height: math.unit(6, "feet"),
  12088. weight: math.unit(100, "lb"),
  12089. name: "Back",
  12090. image: {
  12091. source: "./media/characters/aevsivs/back.svg"
  12092. }
  12093. },
  12094. },
  12095. [
  12096. {
  12097. name: "Micro",
  12098. height: math.unit(2, "inches"),
  12099. default: true
  12100. },
  12101. {
  12102. name: "Normal",
  12103. height: math.unit(5, "feet")
  12104. },
  12105. ]
  12106. ))
  12107. characterMakers.push(() => makeCharacter(
  12108. { name: "Hildegard" },
  12109. {
  12110. front: {
  12111. height: math.unit(5 + 7 / 12, "feet"),
  12112. weight: math.unit(159, "lb"),
  12113. name: "Front",
  12114. image: {
  12115. source: "./media/characters/hildegard/front.svg",
  12116. extra: 312 / 286,
  12117. bottom: 0.005
  12118. }
  12119. },
  12120. },
  12121. [
  12122. {
  12123. name: "Normal",
  12124. height: math.unit(5 + 7 / 12, "feet"),
  12125. default: true
  12126. },
  12127. ]
  12128. ))
  12129. characterMakers.push(() => makeCharacter(
  12130. { name: "Bernard & Wilder" },
  12131. {
  12132. bernard: {
  12133. height: math.unit(2 + 7 / 12, "feet"),
  12134. weight: math.unit(66, "lb"),
  12135. name: "Bernard",
  12136. rename: true,
  12137. image: {
  12138. source: "./media/characters/bernard-wilder/bernard.svg",
  12139. extra: 192 / 128,
  12140. bottom: 0.05
  12141. }
  12142. },
  12143. wilder: {
  12144. height: math.unit(5 + 8 / 12, "feet"),
  12145. weight: math.unit(143, "lb"),
  12146. name: "Wilder",
  12147. rename: true,
  12148. image: {
  12149. source: "./media/characters/bernard-wilder/wilder.svg",
  12150. extra: 361 / 312,
  12151. bottom: 0.02
  12152. }
  12153. },
  12154. },
  12155. [
  12156. {
  12157. name: "Normal",
  12158. height: math.unit(2 + 7 / 12, "feet"),
  12159. default: true
  12160. },
  12161. ]
  12162. ))
  12163. characterMakers.push(() => makeCharacter(
  12164. { name: "Hearth" },
  12165. {
  12166. anthro: {
  12167. height: math.unit(6 + 1 / 12, "feet"),
  12168. weight: math.unit(155, "lb"),
  12169. name: "Anthro",
  12170. image: {
  12171. source: "./media/characters/hearth/anthro.svg",
  12172. extra: 260 / 250,
  12173. bottom: 0.02
  12174. }
  12175. },
  12176. feral: {
  12177. height: math.unit(3.78, "feet"),
  12178. weight: math.unit(35, "kg"),
  12179. name: "Feral",
  12180. image: {
  12181. source: "./media/characters/hearth/feral.svg",
  12182. extra: 153 / 135,
  12183. bottom: 0.03
  12184. }
  12185. },
  12186. },
  12187. [
  12188. {
  12189. name: "Normal",
  12190. height: math.unit(6 + 1 / 12, "feet"),
  12191. default: true
  12192. },
  12193. ]
  12194. ))
  12195. characterMakers.push(() => makeCharacter(
  12196. { name: "Ingrid" },
  12197. {
  12198. front: {
  12199. height: math.unit(6, "feet"),
  12200. weight: math.unit(182, "lb"),
  12201. name: "Front",
  12202. image: {
  12203. source: "./media/characters/ingrid/front.svg",
  12204. extra: 294 / 268,
  12205. bottom: 0.027
  12206. }
  12207. },
  12208. },
  12209. [
  12210. {
  12211. name: "Normal",
  12212. height: math.unit(6, "feet"),
  12213. default: true
  12214. },
  12215. ]
  12216. ))
  12217. characterMakers.push(() => makeCharacter(
  12218. { name: "Malgam" },
  12219. {
  12220. eevee: {
  12221. height: math.unit(2 + 10 / 12, "feet"),
  12222. weight: math.unit(86, "lb"),
  12223. name: "Malgam",
  12224. image: {
  12225. source: "./media/characters/malgam/eevee.svg",
  12226. extra: 218 / 180,
  12227. bottom: 0.2
  12228. }
  12229. },
  12230. sylveon: {
  12231. height: math.unit(4, "feet"),
  12232. weight: math.unit(101, "lb"),
  12233. name: "Future Malgam",
  12234. rename: true,
  12235. image: {
  12236. source: "./media/characters/malgam/sylveon.svg",
  12237. extra: 371 / 325,
  12238. bottom: 0.015
  12239. }
  12240. },
  12241. gigantamax: {
  12242. height: math.unit(50, "feet"),
  12243. name: "Gigantamax Malgam",
  12244. rename: true,
  12245. image: {
  12246. source: "./media/characters/malgam/gigantamax.svg"
  12247. }
  12248. },
  12249. },
  12250. [
  12251. {
  12252. name: "Normal",
  12253. height: math.unit(2 + 10 / 12, "feet"),
  12254. default: true
  12255. },
  12256. ]
  12257. ))
  12258. characterMakers.push(() => makeCharacter(
  12259. { name: "Fleur" },
  12260. {
  12261. front: {
  12262. height: math.unit(5 + 11 / 12, "feet"),
  12263. weight: math.unit(188, "lb"),
  12264. name: "Front",
  12265. image: {
  12266. source: "./media/characters/fleur/front.svg",
  12267. extra: 309 / 283,
  12268. bottom: 0.007
  12269. }
  12270. },
  12271. },
  12272. [
  12273. {
  12274. name: "Normal",
  12275. height: math.unit(5 + 11 / 12, "feet"),
  12276. default: true
  12277. },
  12278. ]
  12279. ))
  12280. characterMakers.push(() => makeCharacter(
  12281. { name: "Jude" },
  12282. {
  12283. front: {
  12284. height: math.unit(5 + 4 / 12, "feet"),
  12285. weight: math.unit(122, "lb"),
  12286. name: "Front",
  12287. image: {
  12288. source: "./media/characters/jude/front.svg",
  12289. extra: 288 / 273,
  12290. bottom: 0.03
  12291. }
  12292. },
  12293. },
  12294. [
  12295. {
  12296. name: "Normal",
  12297. height: math.unit(5 + 4 / 12, "feet"),
  12298. default: true
  12299. },
  12300. ]
  12301. ))
  12302. characterMakers.push(() => makeCharacter(
  12303. { name: "Seara" },
  12304. {
  12305. front: {
  12306. height: math.unit(5 + 11 / 12, "feet"),
  12307. weight: math.unit(190, "lb"),
  12308. name: "Front",
  12309. image: {
  12310. source: "./media/characters/seara/front.svg",
  12311. extra: 1,
  12312. bottom: 0.05
  12313. }
  12314. },
  12315. },
  12316. [
  12317. {
  12318. name: "Normal",
  12319. height: math.unit(5 + 11 / 12, "feet"),
  12320. default: true
  12321. },
  12322. ]
  12323. ))
  12324. characterMakers.push(() => makeCharacter(
  12325. { name: "Caspian" },
  12326. {
  12327. front: {
  12328. height: math.unit(16 + 5 / 12, "feet"),
  12329. weight: math.unit(524, "lb"),
  12330. name: "Front",
  12331. image: {
  12332. source: "./media/characters/caspian/front.svg",
  12333. extra: 1,
  12334. bottom: 0.04
  12335. }
  12336. },
  12337. },
  12338. [
  12339. {
  12340. name: "Normal",
  12341. height: math.unit(16 + 5 / 12, "feet"),
  12342. default: true
  12343. },
  12344. ]
  12345. ))
  12346. characterMakers.push(() => makeCharacter(
  12347. { name: "Mika" },
  12348. {
  12349. front: {
  12350. height: math.unit(5 + 7 / 12, "feet"),
  12351. weight: math.unit(170, "lb"),
  12352. name: "Front",
  12353. image: {
  12354. source: "./media/characters/mika/front.svg",
  12355. extra: 1,
  12356. bottom: 0.016
  12357. }
  12358. },
  12359. },
  12360. [
  12361. {
  12362. name: "Normal",
  12363. height: math.unit(5 + 7 / 12, "feet"),
  12364. default: true
  12365. },
  12366. ]
  12367. ))
  12368. characterMakers.push(() => makeCharacter(
  12369. { name: "Sol" },
  12370. {
  12371. front: {
  12372. height: math.unit(6 + 2 / 12, "feet"),
  12373. weight: math.unit(268, "lb"),
  12374. name: "Front",
  12375. image: {
  12376. source: "./media/characters/sol/front.svg",
  12377. extra: 247 / 231,
  12378. bottom: 0.05
  12379. }
  12380. },
  12381. },
  12382. [
  12383. {
  12384. name: "Normal",
  12385. height: math.unit(6 + 2 / 12, "feet"),
  12386. default: true
  12387. },
  12388. ]
  12389. ))
  12390. characterMakers.push(() => makeCharacter(
  12391. { name: "Umiko" },
  12392. {
  12393. buizel: {
  12394. height: math.unit(2 + 5 / 12, "feet"),
  12395. weight: math.unit(87, "lb"),
  12396. name: "Buizel",
  12397. image: {
  12398. source: "./media/characters/umiko/buizel.svg",
  12399. extra: 172 / 157,
  12400. bottom: 0.01
  12401. }
  12402. },
  12403. floatzel: {
  12404. height: math.unit(5 + 9 / 12, "feet"),
  12405. weight: math.unit(250, "lb"),
  12406. name: "Floatzel",
  12407. image: {
  12408. source: "./media/characters/umiko/floatzel.svg",
  12409. extra: 262 / 248
  12410. }
  12411. },
  12412. },
  12413. [
  12414. {
  12415. name: "Normal",
  12416. height: math.unit(2 + 5 / 12, "feet"),
  12417. default: true
  12418. },
  12419. ]
  12420. ))
  12421. characterMakers.push(() => makeCharacter(
  12422. { name: "Iliac" },
  12423. {
  12424. front: {
  12425. height: math.unit(6 + 2 / 12, "feet"),
  12426. weight: math.unit(146, "lb"),
  12427. name: "Front",
  12428. image: {
  12429. source: "./media/characters/iliac/front.svg",
  12430. extra: 389 / 365,
  12431. bottom: 0.035
  12432. }
  12433. },
  12434. },
  12435. [
  12436. {
  12437. name: "Normal",
  12438. height: math.unit(6 + 2 / 12, "feet"),
  12439. default: true
  12440. },
  12441. ]
  12442. ))
  12443. characterMakers.push(() => makeCharacter(
  12444. { name: "Topaz" },
  12445. {
  12446. front: {
  12447. height: math.unit(6, "feet"),
  12448. weight: math.unit(170, "lb"),
  12449. name: "Front",
  12450. image: {
  12451. source: "./media/characters/topaz/front.svg",
  12452. extra: 317 / 303,
  12453. bottom: 0.055
  12454. }
  12455. },
  12456. },
  12457. [
  12458. {
  12459. name: "Normal",
  12460. height: math.unit(6, "feet"),
  12461. default: true
  12462. },
  12463. ]
  12464. ))
  12465. characterMakers.push(() => makeCharacter(
  12466. { name: "Gabriel" },
  12467. {
  12468. front: {
  12469. height: math.unit(5 + 11 / 12, "feet"),
  12470. weight: math.unit(144, "lb"),
  12471. name: "Front",
  12472. image: {
  12473. source: "./media/characters/gabriel/front.svg",
  12474. extra: 285 / 262,
  12475. bottom: 0.004
  12476. }
  12477. },
  12478. },
  12479. [
  12480. {
  12481. name: "Normal",
  12482. height: math.unit(5 + 11 / 12, "feet"),
  12483. default: true
  12484. },
  12485. ]
  12486. ))
  12487. characterMakers.push(() => makeCharacter(
  12488. { name: "Tempest (Suicune)" },
  12489. {
  12490. side: {
  12491. height: math.unit(6 + 5 / 12, "feet"),
  12492. weight: math.unit(300, "lb"),
  12493. name: "Side",
  12494. image: {
  12495. source: "./media/characters/tempest-suicune/side.svg",
  12496. extra: 195 / 154,
  12497. bottom: 0.04
  12498. }
  12499. },
  12500. },
  12501. [
  12502. {
  12503. name: "Normal",
  12504. height: math.unit(6 + 5 / 12, "feet"),
  12505. default: true
  12506. },
  12507. ]
  12508. ))
  12509. characterMakers.push(() => makeCharacter(
  12510. { name: "Vulcan" },
  12511. {
  12512. front: {
  12513. height: math.unit(7 + 2 / 12, "feet"),
  12514. weight: math.unit(322, "lb"),
  12515. name: "Front",
  12516. image: {
  12517. source: "./media/characters/vulcan/front.svg",
  12518. extra: 154 / 147,
  12519. bottom: 0.04
  12520. }
  12521. },
  12522. },
  12523. [
  12524. {
  12525. name: "Normal",
  12526. height: math.unit(7 + 2 / 12, "feet"),
  12527. default: true
  12528. },
  12529. ]
  12530. ))
  12531. characterMakers.push(() => makeCharacter(
  12532. { name: "Gault" },
  12533. {
  12534. front: {
  12535. height: math.unit(5 + 10 / 12, "feet"),
  12536. weight: math.unit(264, "lb"),
  12537. name: "Front",
  12538. image: {
  12539. source: "./media/characters/gault/front.svg",
  12540. extra: 161 / 140,
  12541. bottom: 0.028
  12542. }
  12543. },
  12544. },
  12545. [
  12546. {
  12547. name: "Normal",
  12548. height: math.unit(5 + 10 / 12, "feet"),
  12549. default: true
  12550. },
  12551. ]
  12552. ))
  12553. characterMakers.push(() => makeCharacter(
  12554. { name: "Shard" },
  12555. {
  12556. front: {
  12557. height: math.unit(6, "feet"),
  12558. weight: math.unit(150, "lb"),
  12559. name: "Front",
  12560. image: {
  12561. source: "./media/characters/shard/front.svg",
  12562. extra: 273 / 238,
  12563. bottom: 0.02
  12564. }
  12565. },
  12566. },
  12567. [
  12568. {
  12569. name: "Normal",
  12570. height: math.unit(3 + 6 / 12, "feet"),
  12571. default: true
  12572. },
  12573. ]
  12574. ))
  12575. characterMakers.push(() => makeCharacter(
  12576. { name: "Ashe" },
  12577. {
  12578. front: {
  12579. height: math.unit(5 + 11 / 12, "feet"),
  12580. weight: math.unit(146, "lb"),
  12581. name: "Front",
  12582. image: {
  12583. source: "./media/characters/ashe/front.svg",
  12584. extra: 400 / 373,
  12585. bottom: 0.01
  12586. }
  12587. },
  12588. },
  12589. [
  12590. {
  12591. name: "Normal",
  12592. height: math.unit(5 + 11 / 12, "feet"),
  12593. default: true
  12594. },
  12595. ]
  12596. ))
  12597. characterMakers.push(() => makeCharacter(
  12598. { name: "Beatrix" },
  12599. {
  12600. front: {
  12601. height: math.unit(5 + 5 / 12, "feet"),
  12602. weight: math.unit(135, "lb"),
  12603. name: "Front",
  12604. image: {
  12605. source: "./media/characters/beatrix/front.svg",
  12606. extra: 392 / 379,
  12607. bottom: 0.01
  12608. }
  12609. },
  12610. },
  12611. [
  12612. {
  12613. name: "Normal",
  12614. height: math.unit(6, "feet"),
  12615. default: true
  12616. },
  12617. ]
  12618. ))
  12619. characterMakers.push(() => makeCharacter(
  12620. { name: "Ignatius" },
  12621. {
  12622. front: {
  12623. height: math.unit(6, "feet"),
  12624. weight: math.unit(150, "lb"),
  12625. name: "Front",
  12626. image: {
  12627. source: "./media/characters/ignatius/front.svg",
  12628. extra: 245 / 222,
  12629. bottom: 0.01
  12630. }
  12631. },
  12632. },
  12633. [
  12634. {
  12635. name: "Normal",
  12636. height: math.unit(5 + 5 / 12, "feet"),
  12637. default: true
  12638. },
  12639. ]
  12640. ))
  12641. characterMakers.push(() => makeCharacter(
  12642. { name: "Mei Li" },
  12643. {
  12644. front: {
  12645. height: math.unit(6 + 2 / 12, "feet"),
  12646. weight: math.unit(138, "lb"),
  12647. name: "Front",
  12648. image: {
  12649. source: "./media/characters/mei-li/front.svg",
  12650. extra: 237 / 229,
  12651. bottom: 0.03
  12652. }
  12653. },
  12654. },
  12655. [
  12656. {
  12657. name: "Normal",
  12658. height: math.unit(6 + 2 / 12, "feet"),
  12659. default: true
  12660. },
  12661. ]
  12662. ))
  12663. characterMakers.push(() => makeCharacter(
  12664. { name: "Puru" },
  12665. {
  12666. front: {
  12667. height: math.unit(2 + 4 / 12, "feet"),
  12668. weight: math.unit(62, "lb"),
  12669. name: "Front",
  12670. image: {
  12671. source: "./media/characters/puru/front.svg",
  12672. extra: 206 / 149,
  12673. bottom: 0.06
  12674. }
  12675. },
  12676. },
  12677. [
  12678. {
  12679. name: "Normal",
  12680. height: math.unit(2 + 4 / 12, "feet"),
  12681. default: true
  12682. },
  12683. ]
  12684. ))
  12685. characterMakers.push(() => makeCharacter(
  12686. { name: "Kee" },
  12687. {
  12688. taur: {
  12689. height: math.unit(11, "feet"),
  12690. weight: math.unit(500, "lb"),
  12691. name: "Taur",
  12692. image: {
  12693. source: "./media/characters/kee/taur.svg",
  12694. extra: 1,
  12695. bottom: 0.04
  12696. }
  12697. },
  12698. },
  12699. [
  12700. {
  12701. name: "Normal",
  12702. height: math.unit(11, "feet"),
  12703. default: true
  12704. },
  12705. ]
  12706. ))
  12707. characterMakers.push(() => makeCharacter(
  12708. { name: "Cobalt (Dracha)" },
  12709. {
  12710. anthro: {
  12711. height: math.unit(7, "feet"),
  12712. weight: math.unit(190, "lb"),
  12713. name: "Anthro",
  12714. image: {
  12715. source: "./media/characters/cobalt-dracha/anthro.svg",
  12716. extra: 231 / 225,
  12717. bottom: 0.04
  12718. }
  12719. },
  12720. feral: {
  12721. height: math.unit(9 + 7 / 12, "feet"),
  12722. weight: math.unit(294, "lb"),
  12723. name: "Feral",
  12724. image: {
  12725. source: "./media/characters/cobalt-dracha/feral.svg",
  12726. extra: 692 / 633,
  12727. bottom: 0.05
  12728. }
  12729. },
  12730. },
  12731. [
  12732. {
  12733. name: "Normal",
  12734. height: math.unit(7, "feet"),
  12735. default: true
  12736. },
  12737. ]
  12738. ))
  12739. characterMakers.push(() => makeCharacter(
  12740. { name: "Java" },
  12741. {
  12742. fallen: {
  12743. height: math.unit(11 + 8 / 12, "feet"),
  12744. weight: math.unit(485, "lb"),
  12745. name: "Java (Fallen)",
  12746. rename: true,
  12747. image: {
  12748. source: "./media/characters/java/fallen.svg",
  12749. extra: 226 / 208,
  12750. bottom: 0.005
  12751. }
  12752. },
  12753. godkin: {
  12754. height: math.unit(10 + 6 / 12, "feet"),
  12755. weight: math.unit(328, "lb"),
  12756. name: "Java (Godkin)",
  12757. rename: true,
  12758. image: {
  12759. source: "./media/characters/java/godkin.svg",
  12760. extra: 270 / 262,
  12761. bottom: 0.02
  12762. }
  12763. },
  12764. },
  12765. [
  12766. {
  12767. name: "Normal",
  12768. height: math.unit(11 + 8 / 12, "feet"),
  12769. default: true
  12770. },
  12771. ]
  12772. ))
  12773. characterMakers.push(() => makeCharacter(
  12774. { name: "Skoll" },
  12775. {
  12776. front: {
  12777. height: math.unit(7 + 8 / 12, "feet"),
  12778. weight: math.unit(320, "lb"),
  12779. name: "Front",
  12780. image: {
  12781. source: "./media/characters/skoll/front.svg",
  12782. extra: 232 / 220,
  12783. bottom: 0.02
  12784. }
  12785. },
  12786. },
  12787. [
  12788. {
  12789. name: "Normal",
  12790. height: math.unit(7 + 8 / 12, "feet"),
  12791. default: true
  12792. },
  12793. ]
  12794. ))
  12795. characterMakers.push(() => makeCharacter(
  12796. { name: "Purna" },
  12797. {
  12798. front: {
  12799. height: math.unit(5 + 9 / 12, "feet"),
  12800. weight: math.unit(170, "lb"),
  12801. name: "Front",
  12802. image: {
  12803. source: "./media/characters/purna/front.svg",
  12804. extra: 239 / 229,
  12805. bottom: 0.01
  12806. }
  12807. },
  12808. },
  12809. [
  12810. {
  12811. name: "Normal",
  12812. height: math.unit(5 + 9 / 12, "feet"),
  12813. default: true
  12814. },
  12815. ]
  12816. ))
  12817. characterMakers.push(() => makeCharacter(
  12818. { name: "Kuva" },
  12819. {
  12820. front: {
  12821. height: math.unit(5 + 9 / 12, "feet"),
  12822. weight: math.unit(142, "lb"),
  12823. name: "Front",
  12824. image: {
  12825. source: "./media/characters/kuva/front.svg",
  12826. extra: 281 / 271,
  12827. bottom: 0.006
  12828. }
  12829. },
  12830. },
  12831. [
  12832. {
  12833. name: "Normal",
  12834. height: math.unit(5 + 9 / 12, "feet"),
  12835. default: true
  12836. },
  12837. ]
  12838. ))
  12839. characterMakers.push(() => makeCharacter(
  12840. { name: "Embra" },
  12841. {
  12842. anthro: {
  12843. height: math.unit(9 + 2 / 12, "feet"),
  12844. weight: math.unit(270, "lb"),
  12845. name: "Anthro",
  12846. image: {
  12847. source: "./media/characters/embra/anthro.svg",
  12848. extra: 200 / 187,
  12849. bottom: 0.02
  12850. }
  12851. },
  12852. feral: {
  12853. height: math.unit(18 + 8 / 12, "feet"),
  12854. weight: math.unit(576, "lb"),
  12855. name: "Feral",
  12856. image: {
  12857. source: "./media/characters/embra/feral.svg",
  12858. extra: 152 / 137,
  12859. bottom: 0.037
  12860. }
  12861. },
  12862. },
  12863. [
  12864. {
  12865. name: "Normal",
  12866. height: math.unit(9 + 2 / 12, "feet"),
  12867. default: true
  12868. },
  12869. ]
  12870. ))
  12871. characterMakers.push(() => makeCharacter(
  12872. { name: "Grottos" },
  12873. {
  12874. anthro: {
  12875. height: math.unit(10 + 9 / 12, "feet"),
  12876. weight: math.unit(224, "lb"),
  12877. name: "Anthro",
  12878. image: {
  12879. source: "./media/characters/grottos/anthro.svg",
  12880. extra: 350 / 332,
  12881. bottom: 0.045
  12882. }
  12883. },
  12884. feral: {
  12885. height: math.unit(20 + 7 / 12, "feet"),
  12886. weight: math.unit(629, "lb"),
  12887. name: "Feral",
  12888. image: {
  12889. source: "./media/characters/grottos/feral.svg",
  12890. extra: 207 / 190,
  12891. bottom: 0.05
  12892. }
  12893. },
  12894. },
  12895. [
  12896. {
  12897. name: "Normal",
  12898. height: math.unit(10 + 9 / 12, "feet"),
  12899. default: true
  12900. },
  12901. ]
  12902. ))
  12903. characterMakers.push(() => makeCharacter(
  12904. { name: "Frifna" },
  12905. {
  12906. anthro: {
  12907. height: math.unit(9 + 6 / 12, "feet"),
  12908. weight: math.unit(298, "lb"),
  12909. name: "Anthro",
  12910. image: {
  12911. source: "./media/characters/frifna/anthro.svg",
  12912. extra: 282 / 269,
  12913. bottom: 0.015
  12914. }
  12915. },
  12916. feral: {
  12917. height: math.unit(16 + 2 / 12, "feet"),
  12918. weight: math.unit(624, "lb"),
  12919. name: "Feral",
  12920. image: {
  12921. source: "./media/characters/frifna/feral.svg"
  12922. }
  12923. },
  12924. },
  12925. [
  12926. {
  12927. name: "Normal",
  12928. height: math.unit(9 + 6 / 12, "feet"),
  12929. default: true
  12930. },
  12931. ]
  12932. ))
  12933. characterMakers.push(() => makeCharacter(
  12934. { name: "Elise" },
  12935. {
  12936. front: {
  12937. height: math.unit(6 + 2 / 12, "feet"),
  12938. weight: math.unit(168, "lb"),
  12939. name: "Front",
  12940. image: {
  12941. source: "./media/characters/elise/front.svg",
  12942. extra: 276 / 271
  12943. }
  12944. },
  12945. },
  12946. [
  12947. {
  12948. name: "Normal",
  12949. height: math.unit(6 + 2 / 12, "feet"),
  12950. default: true
  12951. },
  12952. ]
  12953. ))
  12954. characterMakers.push(() => makeCharacter(
  12955. { name: "Glade" },
  12956. {
  12957. front: {
  12958. height: math.unit(5 + 10 / 12, "feet"),
  12959. weight: math.unit(210, "lb"),
  12960. name: "Front",
  12961. image: {
  12962. source: "./media/characters/glade/front.svg",
  12963. extra: 258 / 247,
  12964. bottom: 0.008
  12965. }
  12966. },
  12967. },
  12968. [
  12969. {
  12970. name: "Normal",
  12971. height: math.unit(5 + 10 / 12, "feet"),
  12972. default: true
  12973. },
  12974. ]
  12975. ))
  12976. characterMakers.push(() => makeCharacter(
  12977. { name: "Rina" },
  12978. {
  12979. front: {
  12980. height: math.unit(5 + 10 / 12, "feet"),
  12981. weight: math.unit(129, "lb"),
  12982. name: "Front",
  12983. image: {
  12984. source: "./media/characters/rina/front.svg",
  12985. extra: 266 / 255,
  12986. bottom: 0.005
  12987. }
  12988. },
  12989. },
  12990. [
  12991. {
  12992. name: "Normal",
  12993. height: math.unit(5 + 10 / 12, "feet"),
  12994. default: true
  12995. },
  12996. ]
  12997. ))
  12998. characterMakers.push(() => makeCharacter(
  12999. { name: "Veronica" },
  13000. {
  13001. front: {
  13002. height: math.unit(6 + 1 / 12, "feet"),
  13003. weight: math.unit(192, "lb"),
  13004. name: "Front",
  13005. image: {
  13006. source: "./media/characters/veronica/front.svg",
  13007. extra: 319 / 309,
  13008. bottom: 0.005
  13009. }
  13010. },
  13011. },
  13012. [
  13013. {
  13014. name: "Normal",
  13015. height: math.unit(6 + 1 / 12, "feet"),
  13016. default: true
  13017. },
  13018. ]
  13019. ))
  13020. characterMakers.push(() => makeCharacter(
  13021. { name: "Braxton" },
  13022. {
  13023. front: {
  13024. height: math.unit(9 + 3 / 12, "feet"),
  13025. weight: math.unit(1100, "lb"),
  13026. name: "Front",
  13027. image: {
  13028. source: "./media/characters/braxton/front.svg",
  13029. extra: 1057 / 984,
  13030. bottom: 0.05
  13031. }
  13032. },
  13033. },
  13034. [
  13035. {
  13036. name: "Normal",
  13037. height: math.unit(9 + 3 / 12, "feet")
  13038. },
  13039. {
  13040. name: "Giant",
  13041. height: math.unit(300, "feet"),
  13042. default: true
  13043. },
  13044. {
  13045. name: "Macro",
  13046. height: math.unit(700, "feet")
  13047. },
  13048. {
  13049. name: "Megamacro",
  13050. height: math.unit(6000, "feet")
  13051. },
  13052. ]
  13053. ))
  13054. characterMakers.push(() => makeCharacter(
  13055. { name: "Blue Feyonics" },
  13056. {
  13057. front: {
  13058. height: math.unit(6 + 7 / 12, "feet"),
  13059. weight: math.unit(150, "lb"),
  13060. name: "Front",
  13061. image: {
  13062. source: "./media/characters/blue-feyonics/front.svg",
  13063. extra: 1403 / 1306,
  13064. bottom: 0.047
  13065. }
  13066. },
  13067. },
  13068. [
  13069. {
  13070. name: "Normal",
  13071. height: math.unit(6 + 7 / 12, "feet"),
  13072. default: true
  13073. },
  13074. ]
  13075. ))
  13076. characterMakers.push(() => makeCharacter(
  13077. { name: "Maxwell" },
  13078. {
  13079. front: {
  13080. height: math.unit(1.8, "meters"),
  13081. weight: math.unit(60, "kg"),
  13082. name: "Front",
  13083. image: {
  13084. source: "./media/characters/maxwell/front.svg",
  13085. extra: 2060 / 1873
  13086. }
  13087. },
  13088. },
  13089. [
  13090. {
  13091. name: "Micro",
  13092. height: math.unit(1, "mm")
  13093. },
  13094. {
  13095. name: "Normal",
  13096. height: math.unit(1.8, "meter"),
  13097. default: true
  13098. },
  13099. {
  13100. name: "Macro",
  13101. height: math.unit(30, "meters")
  13102. },
  13103. {
  13104. name: "Megamacro",
  13105. height: math.unit(10, "km")
  13106. },
  13107. ]
  13108. ))
  13109. characterMakers.push(() => makeCharacter(
  13110. { name: "Jack" },
  13111. {
  13112. front: {
  13113. height: math.unit(6, "feet"),
  13114. weight: math.unit(150, "lb"),
  13115. name: "Front",
  13116. image: {
  13117. source: "./media/characters/jack/front.svg",
  13118. extra: 1754 / 1640,
  13119. bottom: 0.01
  13120. }
  13121. },
  13122. },
  13123. [
  13124. {
  13125. name: "Normal",
  13126. height: math.unit(80000, "feet"),
  13127. default: true
  13128. },
  13129. {
  13130. name: "Max size",
  13131. height: math.unit(10, "lightyears")
  13132. },
  13133. ]
  13134. ))
  13135. characterMakers.push(() => makeCharacter(
  13136. { name: "Cafat" },
  13137. {
  13138. upright: {
  13139. height: math.unit(7, "feet"),
  13140. weight: math.unit(170, "lb"),
  13141. name: "Upright",
  13142. image: {
  13143. source: "./media/characters/cafat/upright.svg",
  13144. bottom: 0.01
  13145. }
  13146. },
  13147. uprightFull: {
  13148. height: math.unit(7, "feet"),
  13149. weight: math.unit(170, "lb"),
  13150. name: "Upright (Full)",
  13151. image: {
  13152. source: "./media/characters/cafat/upright-full.svg",
  13153. bottom: 0.01
  13154. }
  13155. },
  13156. side: {
  13157. height: math.unit(5, "feet"),
  13158. weight: math.unit(150, "lb"),
  13159. name: "Side",
  13160. image: {
  13161. source: "./media/characters/cafat/side.svg"
  13162. }
  13163. },
  13164. },
  13165. [
  13166. {
  13167. name: "Small",
  13168. height: math.unit(7, "feet"),
  13169. default: true
  13170. },
  13171. {
  13172. name: "Large",
  13173. height: math.unit(15.5, "feet")
  13174. },
  13175. ]
  13176. ))
  13177. characterMakers.push(() => makeCharacter(
  13178. { name: "Verin Raharra" },
  13179. {
  13180. front: {
  13181. height: math.unit(6, "feet"),
  13182. weight: math.unit(150, "lb"),
  13183. name: "Front",
  13184. image: {
  13185. source: "./media/characters/verin-raharra/front.svg",
  13186. extra: 5019 / 4835,
  13187. bottom: 0.023
  13188. }
  13189. },
  13190. },
  13191. [
  13192. {
  13193. name: "Normal",
  13194. height: math.unit(7 + 5 / 12, "feet"),
  13195. default: true
  13196. },
  13197. {
  13198. name: "Upsized",
  13199. height: math.unit(20, "feet")
  13200. },
  13201. ]
  13202. ))
  13203. characterMakers.push(() => makeCharacter(
  13204. { name: "Nakata" },
  13205. {
  13206. front: {
  13207. height: math.unit(7, "feet"),
  13208. weight: math.unit(230, "lb"),
  13209. name: "Front",
  13210. image: {
  13211. source: "./media/characters/nakata/front.svg",
  13212. extra: 1.005,
  13213. bottom: 0.01
  13214. }
  13215. },
  13216. },
  13217. [
  13218. {
  13219. name: "Normal",
  13220. height: math.unit(7, "feet"),
  13221. default: true
  13222. },
  13223. {
  13224. name: "Big",
  13225. height: math.unit(14, "feet")
  13226. },
  13227. {
  13228. name: "Macro",
  13229. height: math.unit(400, "feet")
  13230. },
  13231. ]
  13232. ))
  13233. characterMakers.push(() => makeCharacter(
  13234. { name: "Lily" },
  13235. {
  13236. front: {
  13237. height: math.unit(4.91, "feet"),
  13238. weight: math.unit(100, "lb"),
  13239. name: "Front",
  13240. image: {
  13241. source: "./media/characters/lily/front.svg",
  13242. extra: 1585 / 1415,
  13243. bottom: 0.02
  13244. }
  13245. },
  13246. },
  13247. [
  13248. {
  13249. name: "Normal",
  13250. height: math.unit(4.91, "feet"),
  13251. default: true
  13252. },
  13253. ]
  13254. ))
  13255. characterMakers.push(() => makeCharacter(
  13256. { name: "Sheila" },
  13257. {
  13258. laying: {
  13259. height: math.unit(4 + 4 / 12, "feet"),
  13260. weight: math.unit(600, "lb"),
  13261. name: "Laying",
  13262. image: {
  13263. source: "./media/characters/sheila/laying.svg",
  13264. extra: 1333 / 1265,
  13265. bottom: 0.16
  13266. }
  13267. },
  13268. },
  13269. [
  13270. {
  13271. name: "Normal",
  13272. height: math.unit(4 + 4 / 12, "feet"),
  13273. default: true
  13274. },
  13275. ]
  13276. ))
  13277. characterMakers.push(() => makeCharacter(
  13278. { name: "Sax" },
  13279. {
  13280. front: {
  13281. height: math.unit(6, "feet"),
  13282. weight: math.unit(190, "lb"),
  13283. name: "Front",
  13284. image: {
  13285. source: "./media/characters/sax/front.svg",
  13286. extra: 1187 / 973,
  13287. bottom: 0.042
  13288. }
  13289. },
  13290. },
  13291. [
  13292. {
  13293. name: "Micro",
  13294. height: math.unit(4, "inches"),
  13295. default: true
  13296. },
  13297. ]
  13298. ))
  13299. characterMakers.push(() => makeCharacter(
  13300. { name: "Pandora" },
  13301. {
  13302. front: {
  13303. height: math.unit(6, "feet"),
  13304. weight: math.unit(150, "lb"),
  13305. name: "Front",
  13306. image: {
  13307. source: "./media/characters/pandora/front.svg",
  13308. extra: 2720 / 2556,
  13309. bottom: 0.015
  13310. }
  13311. },
  13312. back: {
  13313. height: math.unit(6, "feet"),
  13314. weight: math.unit(150, "lb"),
  13315. name: "Back",
  13316. image: {
  13317. source: "./media/characters/pandora/back.svg",
  13318. extra: 2720 / 2556,
  13319. bottom: 0.01
  13320. }
  13321. },
  13322. beans: {
  13323. height: math.unit(6 / 8, "feet"),
  13324. name: "Beans",
  13325. image: {
  13326. source: "./media/characters/pandora/beans.svg"
  13327. }
  13328. },
  13329. skirt: {
  13330. height: math.unit(6, "feet"),
  13331. weight: math.unit(150, "lb"),
  13332. name: "Skirt",
  13333. image: {
  13334. source: "./media/characters/pandora/skirt.svg",
  13335. extra: 1622 / 1525,
  13336. bottom: 0.015
  13337. }
  13338. },
  13339. hoodie: {
  13340. height: math.unit(6, "feet"),
  13341. weight: math.unit(150, "lb"),
  13342. name: "Hoodie",
  13343. image: {
  13344. source: "./media/characters/pandora/hoodie.svg",
  13345. extra: 1622 / 1525,
  13346. bottom: 0.015
  13347. }
  13348. },
  13349. casual: {
  13350. height: math.unit(6, "feet"),
  13351. weight: math.unit(150, "lb"),
  13352. name: "Casual",
  13353. image: {
  13354. source: "./media/characters/pandora/casual.svg",
  13355. extra: 1622 / 1525,
  13356. bottom: 0.015
  13357. }
  13358. },
  13359. },
  13360. [
  13361. {
  13362. name: "Normal",
  13363. height: math.unit(6, "feet")
  13364. },
  13365. {
  13366. name: "Big Steppy",
  13367. height: math.unit(1, "km"),
  13368. default: true
  13369. },
  13370. ]
  13371. ))
  13372. characterMakers.push(() => makeCharacter(
  13373. { name: "Venio Darcony" },
  13374. {
  13375. side: {
  13376. height: math.unit(10, "feet"),
  13377. weight: math.unit(800, "kg"),
  13378. name: "Side",
  13379. image: {
  13380. source: "./media/characters/venio-darcony/side.svg",
  13381. extra: 1373 / 1003,
  13382. bottom: 0.037
  13383. }
  13384. },
  13385. front: {
  13386. height: math.unit(19, "feet"),
  13387. weight: math.unit(800, "kg"),
  13388. name: "Front",
  13389. image: {
  13390. source: "./media/characters/venio-darcony/front.svg"
  13391. }
  13392. },
  13393. back: {
  13394. height: math.unit(19, "feet"),
  13395. weight: math.unit(800, "kg"),
  13396. name: "Back",
  13397. image: {
  13398. source: "./media/characters/venio-darcony/back.svg"
  13399. }
  13400. },
  13401. },
  13402. [
  13403. {
  13404. name: "Normal",
  13405. height: math.unit(10, "feet")
  13406. },
  13407. {
  13408. name: "Macro",
  13409. height: math.unit(130, "feet"),
  13410. default: true
  13411. },
  13412. {
  13413. name: "Macro+",
  13414. height: math.unit(240, "feet")
  13415. },
  13416. ]
  13417. ))
  13418. characterMakers.push(() => makeCharacter(
  13419. { name: "Veski" },
  13420. {
  13421. front: {
  13422. height: math.unit(6, "feet"),
  13423. weight: math.unit(150, "lb"),
  13424. name: "Front",
  13425. image: {
  13426. source: "./media/characters/veski/front.svg",
  13427. extra: 1299 / 1225,
  13428. bottom: 0.04
  13429. }
  13430. },
  13431. back: {
  13432. height: math.unit(6, "feet"),
  13433. weight: math.unit(150, "lb"),
  13434. name: "Back",
  13435. image: {
  13436. source: "./media/characters/veski/back.svg",
  13437. extra: 1299 / 1225,
  13438. bottom: 0.008
  13439. }
  13440. },
  13441. maw: {
  13442. height: math.unit(1.5 * 1.21, "feet"),
  13443. name: "Maw",
  13444. image: {
  13445. source: "./media/characters/veski/maw.svg"
  13446. }
  13447. },
  13448. },
  13449. [
  13450. {
  13451. name: "Macro",
  13452. height: math.unit(2, "km"),
  13453. default: true
  13454. },
  13455. ]
  13456. ))
  13457. characterMakers.push(() => makeCharacter(
  13458. { name: "Isabelle" },
  13459. {
  13460. front: {
  13461. height: math.unit(5 + 7 / 12, "feet"),
  13462. name: "Front",
  13463. image: {
  13464. source: "./media/characters/isabelle/front.svg",
  13465. extra: 2130 / 1976,
  13466. bottom: 0.05
  13467. }
  13468. },
  13469. },
  13470. [
  13471. {
  13472. name: "Supermicro",
  13473. height: math.unit(10, "micrometers")
  13474. },
  13475. {
  13476. name: "Micro",
  13477. height: math.unit(1, "inch")
  13478. },
  13479. {
  13480. name: "Tiny",
  13481. height: math.unit(5, "inches")
  13482. },
  13483. {
  13484. name: "Standard",
  13485. height: math.unit(5 + 7 / 12, "inches")
  13486. },
  13487. {
  13488. name: "Macro",
  13489. height: math.unit(80, "meters"),
  13490. default: true
  13491. },
  13492. {
  13493. name: "Megamacro",
  13494. height: math.unit(250, "meters")
  13495. },
  13496. {
  13497. name: "Gigamacro",
  13498. height: math.unit(5, "km")
  13499. },
  13500. {
  13501. name: "Cosmic",
  13502. height: math.unit(2.5e6, "miles")
  13503. },
  13504. ]
  13505. ))
  13506. characterMakers.push(() => makeCharacter(
  13507. { name: "Hanzo" },
  13508. {
  13509. front: {
  13510. height: math.unit(6, "feet"),
  13511. weight: math.unit(150, "lb"),
  13512. name: "Front",
  13513. image: {
  13514. source: "./media/characters/hanzo/front.svg",
  13515. extra: 374 / 344,
  13516. bottom: 0.02
  13517. }
  13518. },
  13519. },
  13520. [
  13521. {
  13522. name: "Normal",
  13523. height: math.unit(8, "feet"),
  13524. default: true
  13525. },
  13526. ]
  13527. ))
  13528. characterMakers.push(() => makeCharacter(
  13529. { name: "Anna" },
  13530. {
  13531. front: {
  13532. height: math.unit(7, "feet"),
  13533. weight: math.unit(130, "lb"),
  13534. name: "Front",
  13535. image: {
  13536. source: "./media/characters/anna/front.svg",
  13537. extra: 169 / 145,
  13538. bottom: 0.06
  13539. }
  13540. },
  13541. full: {
  13542. height: math.unit(4.96, "feet"),
  13543. weight: math.unit(220, "lb"),
  13544. name: "Full",
  13545. image: {
  13546. source: "./media/characters/anna/full.svg",
  13547. extra: 138 / 114,
  13548. bottom: 0.15
  13549. }
  13550. },
  13551. tongue: {
  13552. height: math.unit(2.53, "feet"),
  13553. name: "Tongue",
  13554. image: {
  13555. source: "./media/characters/anna/tongue.svg"
  13556. }
  13557. },
  13558. },
  13559. [
  13560. {
  13561. name: "Normal",
  13562. height: math.unit(7, "feet"),
  13563. default: true
  13564. },
  13565. ]
  13566. ))
  13567. characterMakers.push(() => makeCharacter(
  13568. { name: "Ian Corvid" },
  13569. {
  13570. front: {
  13571. height: math.unit(7, "feet"),
  13572. weight: math.unit(150, "lb"),
  13573. name: "Front",
  13574. image: {
  13575. source: "./media/characters/ian-corvid/front.svg",
  13576. extra: 150 / 142,
  13577. bottom: 0.02
  13578. }
  13579. },
  13580. back: {
  13581. height: math.unit(7, "feet"),
  13582. weight: math.unit(150, "lb"),
  13583. name: "Back",
  13584. image: {
  13585. source: "./media/characters/ian-corvid/back.svg",
  13586. extra: 150 / 143,
  13587. bottom: 0.01
  13588. }
  13589. },
  13590. stomping: {
  13591. height: math.unit(7, "feet"),
  13592. weight: math.unit(150, "lb"),
  13593. name: "Stomping",
  13594. image: {
  13595. source: "./media/characters/ian-corvid/stomping.svg",
  13596. extra: 76 / 72
  13597. }
  13598. },
  13599. sitting: {
  13600. height: math.unit(7 / 1.8, "feet"),
  13601. weight: math.unit(150, "lb"),
  13602. name: "Sitting",
  13603. image: {
  13604. source: "./media/characters/ian-corvid/sitting.svg",
  13605. extra: 1400 / 1269,
  13606. bottom: 0.15
  13607. }
  13608. },
  13609. },
  13610. [
  13611. {
  13612. name: "Tiny Microw",
  13613. height: math.unit(1, "inch")
  13614. },
  13615. {
  13616. name: "Microw",
  13617. height: math.unit(6, "inches")
  13618. },
  13619. {
  13620. name: "Crow",
  13621. height: math.unit(7 + 1 / 12, "feet"),
  13622. default: true
  13623. },
  13624. {
  13625. name: "Macrow",
  13626. height: math.unit(176, "feet")
  13627. },
  13628. ]
  13629. ))
  13630. characterMakers.push(() => makeCharacter(
  13631. { name: "Natalie Kellon" },
  13632. {
  13633. front: {
  13634. height: math.unit(5 + 7 / 12, "feet"),
  13635. weight: math.unit(147, "lb"),
  13636. name: "Front",
  13637. image: {
  13638. source: "./media/characters/natalie-kellon/front.svg",
  13639. extra: 1214 / 1141,
  13640. bottom: 0.02
  13641. }
  13642. },
  13643. },
  13644. [
  13645. {
  13646. name: "Micro",
  13647. height: math.unit(1 / 16, "inch")
  13648. },
  13649. {
  13650. name: "Tiny",
  13651. height: math.unit(4, "inches")
  13652. },
  13653. {
  13654. name: "Normal",
  13655. height: math.unit(5 + 7 / 12, "feet"),
  13656. default: true
  13657. },
  13658. {
  13659. name: "Amazon",
  13660. height: math.unit(12, "feet")
  13661. },
  13662. {
  13663. name: "Giantess",
  13664. height: math.unit(160, "meters")
  13665. },
  13666. {
  13667. name: "Titaness",
  13668. height: math.unit(800, "meters")
  13669. },
  13670. ]
  13671. ))
  13672. characterMakers.push(() => makeCharacter(
  13673. { name: "Alluria" },
  13674. {
  13675. front: {
  13676. height: math.unit(6, "feet"),
  13677. weight: math.unit(150, "lb"),
  13678. name: "Front",
  13679. image: {
  13680. source: "./media/characters/alluria/front.svg",
  13681. extra: 806 / 738,
  13682. bottom: 0.01
  13683. }
  13684. },
  13685. side: {
  13686. height: math.unit(6, "feet"),
  13687. weight: math.unit(150, "lb"),
  13688. name: "Side",
  13689. image: {
  13690. source: "./media/characters/alluria/side.svg",
  13691. extra: 800 / 750,
  13692. }
  13693. },
  13694. back: {
  13695. height: math.unit(6, "feet"),
  13696. weight: math.unit(150, "lb"),
  13697. name: "Back",
  13698. image: {
  13699. source: "./media/characters/alluria/back.svg",
  13700. extra: 806 / 738,
  13701. }
  13702. },
  13703. frontMaid: {
  13704. height: math.unit(6, "feet"),
  13705. weight: math.unit(150, "lb"),
  13706. name: "Front (Maid)",
  13707. image: {
  13708. source: "./media/characters/alluria/front-maid.svg",
  13709. extra: 806 / 738,
  13710. bottom: 0.01
  13711. }
  13712. },
  13713. sideMaid: {
  13714. height: math.unit(6, "feet"),
  13715. weight: math.unit(150, "lb"),
  13716. name: "Side (Maid)",
  13717. image: {
  13718. source: "./media/characters/alluria/side-maid.svg",
  13719. extra: 800 / 750,
  13720. bottom: 0.005
  13721. }
  13722. },
  13723. backMaid: {
  13724. height: math.unit(6, "feet"),
  13725. weight: math.unit(150, "lb"),
  13726. name: "Back (Maid)",
  13727. image: {
  13728. source: "./media/characters/alluria/back-maid.svg",
  13729. extra: 806 / 738,
  13730. }
  13731. },
  13732. },
  13733. [
  13734. {
  13735. name: "Micro",
  13736. height: math.unit(6, "inches"),
  13737. default: true
  13738. },
  13739. ]
  13740. ))
  13741. characterMakers.push(() => makeCharacter(
  13742. { name: "Kyle" },
  13743. {
  13744. front: {
  13745. height: math.unit(6, "feet"),
  13746. weight: math.unit(150, "lb"),
  13747. name: "Front",
  13748. image: {
  13749. source: "./media/characters/kyle/front.svg",
  13750. extra: 1069 / 962,
  13751. bottom: 77.228 / 1727.45
  13752. }
  13753. },
  13754. },
  13755. [
  13756. {
  13757. name: "Macro",
  13758. height: math.unit(150, "feet"),
  13759. default: true
  13760. },
  13761. ]
  13762. ))
  13763. characterMakers.push(() => makeCharacter(
  13764. { name: "Duncan" },
  13765. {
  13766. front: {
  13767. height: math.unit(6, "feet"),
  13768. weight: math.unit(300, "lb"),
  13769. name: "Front",
  13770. image: {
  13771. source: "./media/characters/duncan/front.svg",
  13772. extra: 1650 / 1482,
  13773. bottom: 0.05
  13774. }
  13775. },
  13776. },
  13777. [
  13778. {
  13779. name: "Macro",
  13780. height: math.unit(100, "feet"),
  13781. default: true
  13782. },
  13783. ]
  13784. ))
  13785. characterMakers.push(() => makeCharacter(
  13786. { name: "Memory" },
  13787. {
  13788. front: {
  13789. height: math.unit(5 + 4 / 12, "feet"),
  13790. weight: math.unit(220, "lb"),
  13791. name: "Front",
  13792. image: {
  13793. source: "./media/characters/memory/front.svg",
  13794. extra: 3641 / 3545,
  13795. bottom: 0.03
  13796. }
  13797. },
  13798. back: {
  13799. height: math.unit(5 + 4 / 12, "feet"),
  13800. weight: math.unit(220, "lb"),
  13801. name: "Back",
  13802. image: {
  13803. source: "./media/characters/memory/back.svg",
  13804. extra: 3641 / 3545,
  13805. bottom: 0.025
  13806. }
  13807. },
  13808. frontSkirt: {
  13809. height: math.unit(5 + 4 / 12, "feet"),
  13810. weight: math.unit(220, "lb"),
  13811. name: "Front (Skirt)",
  13812. image: {
  13813. source: "./media/characters/memory/front-skirt.svg",
  13814. extra: 3641 / 3545,
  13815. bottom: 0.03
  13816. }
  13817. },
  13818. frontDress: {
  13819. height: math.unit(5 + 4 / 12, "feet"),
  13820. weight: math.unit(220, "lb"),
  13821. name: "Front (Dress)",
  13822. image: {
  13823. source: "./media/characters/memory/front-dress.svg",
  13824. extra: 3641 / 3545,
  13825. bottom: 0.03
  13826. }
  13827. },
  13828. },
  13829. [
  13830. {
  13831. name: "Micro",
  13832. height: math.unit(6, "inches"),
  13833. default: true
  13834. },
  13835. {
  13836. name: "Normal",
  13837. height: math.unit(5 + 4 / 12, "feet")
  13838. },
  13839. ]
  13840. ))
  13841. characterMakers.push(() => makeCharacter(
  13842. { name: "Luno" },
  13843. {
  13844. front: {
  13845. height: math.unit(4 + 11 / 12, "feet"),
  13846. weight: math.unit(100, "lb"),
  13847. name: "Front",
  13848. image: {
  13849. source: "./media/characters/luno/front.svg",
  13850. extra: 1535 / 1487,
  13851. bottom: 0.03
  13852. }
  13853. },
  13854. },
  13855. [
  13856. {
  13857. name: "Micro",
  13858. height: math.unit(3, "inches")
  13859. },
  13860. {
  13861. name: "Normal",
  13862. height: math.unit(4 + 11 / 12, "feet"),
  13863. default: true
  13864. },
  13865. {
  13866. name: "Macro",
  13867. height: math.unit(300, "feet")
  13868. },
  13869. {
  13870. name: "Megamacro",
  13871. height: math.unit(700, "miles")
  13872. },
  13873. ]
  13874. ))
  13875. characterMakers.push(() => makeCharacter(
  13876. { name: "Jamesy" },
  13877. {
  13878. front: {
  13879. height: math.unit(6 + 2 / 12, "feet"),
  13880. weight: math.unit(170, "lb"),
  13881. name: "Front",
  13882. image: {
  13883. source: "./media/characters/jamesy/front.svg",
  13884. extra: 440 / 382,
  13885. bottom: 0.005
  13886. }
  13887. },
  13888. },
  13889. [
  13890. {
  13891. name: "Micro",
  13892. height: math.unit(3, "inches")
  13893. },
  13894. {
  13895. name: "Normal",
  13896. height: math.unit(6 + 2 / 12, "feet"),
  13897. default: true
  13898. },
  13899. {
  13900. name: "Macro",
  13901. height: math.unit(300, "feet")
  13902. },
  13903. {
  13904. name: "Megamacro",
  13905. height: math.unit(700, "miles")
  13906. },
  13907. ]
  13908. ))
  13909. characterMakers.push(() => makeCharacter(
  13910. { name: "Mark" },
  13911. {
  13912. front: {
  13913. height: math.unit(6, "feet"),
  13914. weight: math.unit(160, "lb"),
  13915. name: "Front",
  13916. image: {
  13917. source: "./media/characters/mark/front.svg",
  13918. extra: 3300 / 3100,
  13919. bottom: 136.42 / 3440.47
  13920. }
  13921. },
  13922. },
  13923. [
  13924. {
  13925. name: "Macro",
  13926. height: math.unit(120, "meters")
  13927. },
  13928. {
  13929. name: "Bigger Macro",
  13930. height: math.unit(350, "meters")
  13931. },
  13932. {
  13933. name: "Megamacro",
  13934. height: math.unit(8, "km"),
  13935. default: true
  13936. },
  13937. {
  13938. name: "Continental",
  13939. height: math.unit(4550, "km")
  13940. },
  13941. {
  13942. name: "Planetary",
  13943. height: math.unit(65000, "km")
  13944. },
  13945. ]
  13946. ))
  13947. characterMakers.push(() => makeCharacter(
  13948. { name: "Mac" },
  13949. {
  13950. front: {
  13951. height: math.unit(6, "feet"),
  13952. weight: math.unit(400, "lb"),
  13953. name: "Front",
  13954. image: {
  13955. source: "./media/characters/mac/front.svg",
  13956. extra: 1048 / 987.7,
  13957. bottom: 60 / 1107.6,
  13958. }
  13959. },
  13960. },
  13961. [
  13962. {
  13963. name: "Macro",
  13964. height: math.unit(500, "feet"),
  13965. default: true
  13966. },
  13967. ]
  13968. ))
  13969. characterMakers.push(() => makeCharacter(
  13970. { name: "Bari" },
  13971. {
  13972. front: {
  13973. height: math.unit(5 + 2 / 12, "feet"),
  13974. weight: math.unit(190, "lb"),
  13975. name: "Front",
  13976. image: {
  13977. source: "./media/characters/bari/front.svg",
  13978. extra: 3156 / 2880,
  13979. bottom: 0.03
  13980. }
  13981. },
  13982. back: {
  13983. height: math.unit(5 + 2 / 12, "feet"),
  13984. weight: math.unit(190, "lb"),
  13985. name: "Back",
  13986. image: {
  13987. source: "./media/characters/bari/back.svg",
  13988. extra: 3260 / 2834,
  13989. bottom: 0.025
  13990. }
  13991. },
  13992. frontPlush: {
  13993. height: math.unit(5 + 2 / 12, "feet"),
  13994. weight: math.unit(190, "lb"),
  13995. name: "Front (Plush)",
  13996. image: {
  13997. source: "./media/characters/bari/front-plush.svg",
  13998. extra: 1112 / 1061,
  13999. bottom: 0.002
  14000. }
  14001. },
  14002. },
  14003. [
  14004. {
  14005. name: "Micro",
  14006. height: math.unit(3, "inches")
  14007. },
  14008. {
  14009. name: "Normal",
  14010. height: math.unit(5 + 2 / 12, "feet"),
  14011. default: true
  14012. },
  14013. {
  14014. name: "Macro",
  14015. height: math.unit(20, "feet")
  14016. },
  14017. ]
  14018. ))
  14019. characterMakers.push(() => makeCharacter(
  14020. { name: "Hunter Misha Raven" },
  14021. {
  14022. front: {
  14023. height: math.unit(6 + 1 / 12, "feet"),
  14024. weight: math.unit(275, "lb"),
  14025. name: "Front",
  14026. image: {
  14027. source: "./media/characters/hunter-misha-raven/front.svg"
  14028. }
  14029. },
  14030. },
  14031. [
  14032. {
  14033. name: "Mortal",
  14034. height: math.unit(6 + 1 / 12, "feet")
  14035. },
  14036. {
  14037. name: "Divine",
  14038. height: math.unit(1.12134e34, "parsecs"),
  14039. default: true
  14040. },
  14041. ]
  14042. ))
  14043. characterMakers.push(() => makeCharacter(
  14044. { name: "Max Calore" },
  14045. {
  14046. front: {
  14047. height: math.unit(6 + 3 / 12, "feet"),
  14048. weight: math.unit(220, "lb"),
  14049. name: "Front",
  14050. image: {
  14051. source: "./media/characters/max-calore/front.svg",
  14052. extra: 1700 / 1648,
  14053. bottom: 0.01
  14054. }
  14055. },
  14056. back: {
  14057. height: math.unit(6 + 3 / 12, "feet"),
  14058. weight: math.unit(220, "lb"),
  14059. name: "Back",
  14060. image: {
  14061. source: "./media/characters/max-calore/back.svg",
  14062. extra: 1700 / 1648,
  14063. bottom: 0.01
  14064. }
  14065. },
  14066. },
  14067. [
  14068. {
  14069. name: "Normal",
  14070. height: math.unit(6 + 3 / 12, "feet"),
  14071. default: true
  14072. },
  14073. ]
  14074. ))
  14075. characterMakers.push(() => makeCharacter(
  14076. { name: "Aspen" },
  14077. {
  14078. side: {
  14079. height: math.unit(2 + 8 / 12, "feet"),
  14080. weight: math.unit(99, "lb"),
  14081. name: "Side",
  14082. image: {
  14083. source: "./media/characters/aspen/side.svg",
  14084. extra: 152 / 138,
  14085. bottom: 0.032
  14086. }
  14087. },
  14088. },
  14089. [
  14090. {
  14091. name: "Normal",
  14092. height: math.unit(2 + 8 / 12, "feet"),
  14093. default: true
  14094. },
  14095. ]
  14096. ))
  14097. characterMakers.push(() => makeCharacter(
  14098. { name: "Sheila (Wolf)" },
  14099. {
  14100. side: {
  14101. height: math.unit(3 + 2 / 12, "feet"),
  14102. weight: math.unit(224, "lb"),
  14103. name: "Side",
  14104. image: {
  14105. source: "./media/characters/sheila-wolf/side.svg",
  14106. extra: 179 / 166,
  14107. bottom: 0.03
  14108. }
  14109. },
  14110. },
  14111. [
  14112. {
  14113. name: "Normal",
  14114. height: math.unit(3 + 2 / 12, "feet"),
  14115. default: true
  14116. },
  14117. ]
  14118. ))
  14119. characterMakers.push(() => makeCharacter(
  14120. { name: "Michelle" },
  14121. {
  14122. side: {
  14123. height: math.unit(1 + 9 / 12, "feet"),
  14124. weight: math.unit(38, "lb"),
  14125. name: "Side",
  14126. image: {
  14127. source: "./media/characters/michelle/side.svg",
  14128. extra: 147 / 136.7,
  14129. bottom: 0.03
  14130. }
  14131. },
  14132. },
  14133. [
  14134. {
  14135. name: "Normal",
  14136. height: math.unit(1 + 9 / 12, "feet"),
  14137. default: true
  14138. },
  14139. ]
  14140. ))
  14141. characterMakers.push(() => makeCharacter(
  14142. { name: "Nino" },
  14143. {
  14144. front: {
  14145. height: math.unit(1 + 1 / 12, "feet"),
  14146. weight: math.unit(18, "lb"),
  14147. name: "Front",
  14148. image: {
  14149. source: "./media/characters/nino/front.svg"
  14150. }
  14151. },
  14152. },
  14153. [
  14154. {
  14155. name: "Normal",
  14156. height: math.unit(1 + 1 / 12, "feet"),
  14157. default: true
  14158. },
  14159. ]
  14160. ))
  14161. characterMakers.push(() => makeCharacter(
  14162. { name: "Viola" },
  14163. {
  14164. front: {
  14165. height: math.unit(1, "feet"),
  14166. weight: math.unit(16, "lb"),
  14167. name: "Front",
  14168. image: {
  14169. source: "./media/characters/viola/front.svg"
  14170. }
  14171. },
  14172. },
  14173. [
  14174. {
  14175. name: "Normal",
  14176. height: math.unit(1, "feet"),
  14177. default: true
  14178. },
  14179. ]
  14180. ))
  14181. characterMakers.push(() => makeCharacter(
  14182. { name: "Atlas" },
  14183. {
  14184. front: {
  14185. height: math.unit(6 + 5 / 12, "feet"),
  14186. weight: math.unit(580, "lb"),
  14187. name: "Front",
  14188. image: {
  14189. source: "./media/characters/atlas/front.svg",
  14190. extra: 298.5 / 290,
  14191. bottom: 0.015
  14192. }
  14193. },
  14194. },
  14195. [
  14196. {
  14197. name: "Normal",
  14198. height: math.unit(6 + 5 / 12, "feet"),
  14199. default: true
  14200. },
  14201. ]
  14202. ))
  14203. characterMakers.push(() => makeCharacter(
  14204. { name: "Davy" },
  14205. {
  14206. side: {
  14207. height: math.unit(1 + 10 / 12, "feet"),
  14208. weight: math.unit(25, "lb"),
  14209. name: "Side",
  14210. image: {
  14211. source: "./media/characters/davy/side.svg",
  14212. extra: 200 / 170,
  14213. bottom: 0.01
  14214. }
  14215. },
  14216. },
  14217. [
  14218. {
  14219. name: "Normal",
  14220. height: math.unit(1 + 10 / 12, "feet"),
  14221. default: true
  14222. },
  14223. ]
  14224. ))
  14225. characterMakers.push(() => makeCharacter(
  14226. { name: "Fiona" },
  14227. {
  14228. side: {
  14229. height: math.unit(4 + 8 / 12, "feet"),
  14230. weight: math.unit(166, "lb"),
  14231. name: "Side",
  14232. image: {
  14233. source: "./media/characters/fiona/side.svg",
  14234. extra: 232 / 220,
  14235. bottom: 0.03
  14236. }
  14237. },
  14238. },
  14239. [
  14240. {
  14241. name: "Normal",
  14242. height: math.unit(4 + 8 / 12, "feet"),
  14243. default: true
  14244. },
  14245. ]
  14246. ))
  14247. characterMakers.push(() => makeCharacter(
  14248. { name: "Lyla" },
  14249. {
  14250. front: {
  14251. height: math.unit(2, "feet"),
  14252. weight: math.unit(62, "lb"),
  14253. name: "Front",
  14254. image: {
  14255. source: "./media/characters/lyla/front.svg",
  14256. bottom: 0.1
  14257. }
  14258. },
  14259. },
  14260. [
  14261. {
  14262. name: "Normal",
  14263. height: math.unit(2, "feet"),
  14264. default: true
  14265. },
  14266. ]
  14267. ))
  14268. characterMakers.push(() => makeCharacter(
  14269. { name: "Perseus" },
  14270. {
  14271. side: {
  14272. height: math.unit(1.8, "feet"),
  14273. weight: math.unit(44, "lb"),
  14274. name: "Side",
  14275. image: {
  14276. source: "./media/characters/perseus/side.svg",
  14277. bottom: 0.21
  14278. }
  14279. },
  14280. },
  14281. [
  14282. {
  14283. name: "Normal",
  14284. height: math.unit(1.8, "feet"),
  14285. default: true
  14286. },
  14287. ]
  14288. ))
  14289. characterMakers.push(() => makeCharacter(
  14290. { name: "Remus" },
  14291. {
  14292. side: {
  14293. height: math.unit(4 + 2 / 12, "feet"),
  14294. weight: math.unit(20, "lb"),
  14295. name: "Side",
  14296. image: {
  14297. source: "./media/characters/remus/side.svg"
  14298. }
  14299. },
  14300. },
  14301. [
  14302. {
  14303. name: "Normal",
  14304. height: math.unit(4 + 2 / 12, "feet"),
  14305. default: true
  14306. },
  14307. ]
  14308. ))
  14309. characterMakers.push(() => makeCharacter(
  14310. { name: "Raf" },
  14311. {
  14312. front: {
  14313. height: math.unit(4 + 11 / 12, "feet"),
  14314. weight: math.unit(114, "lb"),
  14315. name: "Front",
  14316. image: {
  14317. source: "./media/characters/raf/front.svg",
  14318. bottom: 0.01
  14319. }
  14320. },
  14321. side: {
  14322. height: math.unit(4 + 11 / 12, "feet"),
  14323. weight: math.unit(114, "lb"),
  14324. name: "Side",
  14325. image: {
  14326. source: "./media/characters/raf/side.svg",
  14327. bottom: 0.005
  14328. }
  14329. },
  14330. },
  14331. [
  14332. {
  14333. name: "Micro",
  14334. height: math.unit(2, "inches")
  14335. },
  14336. {
  14337. name: "Normal",
  14338. height: math.unit(4 + 11 / 12, "feet"),
  14339. default: true
  14340. },
  14341. {
  14342. name: "Macro",
  14343. height: math.unit(70, "feet")
  14344. },
  14345. ]
  14346. ))
  14347. characterMakers.push(() => makeCharacter(
  14348. { name: "Liam Einarr" },
  14349. {
  14350. front: {
  14351. height: math.unit(1.5, "meters"),
  14352. weight: math.unit(68, "kg"),
  14353. name: "Front",
  14354. image: {
  14355. source: "./media/characters/liam-einarr/front.svg",
  14356. extra: 2822 / 2666
  14357. }
  14358. },
  14359. back: {
  14360. height: math.unit(1.5, "meters"),
  14361. weight: math.unit(68, "kg"),
  14362. name: "Back",
  14363. image: {
  14364. source: "./media/characters/liam-einarr/back.svg",
  14365. extra: 2822 / 2666,
  14366. bottom: 0.015
  14367. }
  14368. },
  14369. },
  14370. [
  14371. {
  14372. name: "Normal",
  14373. height: math.unit(1.5, "meters"),
  14374. default: true
  14375. },
  14376. {
  14377. name: "Macro",
  14378. height: math.unit(150, "meters")
  14379. },
  14380. {
  14381. name: "Megamacro",
  14382. height: math.unit(35, "km")
  14383. },
  14384. ]
  14385. ))
  14386. characterMakers.push(() => makeCharacter(
  14387. { name: "Linda" },
  14388. {
  14389. front: {
  14390. height: math.unit(6, "feet"),
  14391. weight: math.unit(75, "kg"),
  14392. name: "Front",
  14393. image: {
  14394. source: "./media/characters/linda/front.svg",
  14395. extra: 930 / 874,
  14396. bottom: 0.004
  14397. }
  14398. },
  14399. },
  14400. [
  14401. {
  14402. name: "Normal",
  14403. height: math.unit(6, "feet"),
  14404. default: true
  14405. },
  14406. ]
  14407. ))
  14408. characterMakers.push(() => makeCharacter(
  14409. { name: "Caylex" },
  14410. {
  14411. front: {
  14412. height: math.unit(6 + 8 / 12, "feet"),
  14413. weight: math.unit(220, "lb"),
  14414. name: "Front",
  14415. image: {
  14416. source: "./media/characters/caylex/front.svg",
  14417. extra: 821 / 772,
  14418. bottom: 0.07
  14419. }
  14420. },
  14421. back: {
  14422. height: math.unit(6 + 8 / 12, "feet"),
  14423. weight: math.unit(220, "lb"),
  14424. name: "Back",
  14425. image: {
  14426. source: "./media/characters/caylex/back.svg",
  14427. extra: 821 / 772,
  14428. bottom: 0.022
  14429. }
  14430. },
  14431. hand: {
  14432. height: math.unit(1.25, "feet"),
  14433. name: "Hand",
  14434. image: {
  14435. source: "./media/characters/caylex/hand.svg"
  14436. }
  14437. },
  14438. foot: {
  14439. height: math.unit(1.6, "feet"),
  14440. name: "Foot",
  14441. image: {
  14442. source: "./media/characters/caylex/foot.svg"
  14443. }
  14444. },
  14445. armored: {
  14446. height: math.unit(6 + 8 / 12, "feet"),
  14447. weight: math.unit(250, "lb"),
  14448. name: "Armored",
  14449. image: {
  14450. source: "./media/characters/caylex/armored.svg",
  14451. extra: 1420 / 1310,
  14452. bottom: 0.045
  14453. }
  14454. },
  14455. },
  14456. [
  14457. {
  14458. name: "Normal",
  14459. height: math.unit(6 + 8 / 12, "feet"),
  14460. default: true
  14461. },
  14462. {
  14463. name: "Normal+",
  14464. height: math.unit(12, "feet")
  14465. },
  14466. ]
  14467. ))
  14468. characterMakers.push(() => makeCharacter(
  14469. { name: "Alana" },
  14470. {
  14471. front: {
  14472. height: math.unit(7 + 6 / 12, "feet"),
  14473. weight: math.unit(288, "lb"),
  14474. name: "Front",
  14475. image: {
  14476. source: "./media/characters/alana/front.svg",
  14477. extra: 679 / 653,
  14478. bottom: 22.5 / 701
  14479. }
  14480. },
  14481. },
  14482. [
  14483. {
  14484. name: "Normal",
  14485. height: math.unit(7 + 6 / 12, "feet")
  14486. },
  14487. {
  14488. name: "Large",
  14489. height: math.unit(50, "feet")
  14490. },
  14491. {
  14492. name: "Macro",
  14493. height: math.unit(100, "feet"),
  14494. default: true
  14495. },
  14496. {
  14497. name: "Macro+",
  14498. height: math.unit(200, "feet")
  14499. },
  14500. ]
  14501. ))
  14502. characterMakers.push(() => makeCharacter(
  14503. { name: "Hasani" },
  14504. {
  14505. front: {
  14506. height: math.unit(6 + 1 / 12, "feet"),
  14507. weight: math.unit(210, "lb"),
  14508. name: "Front",
  14509. image: {
  14510. source: "./media/characters/hasani/front.svg",
  14511. extra: 244 / 232,
  14512. bottom: 0.01
  14513. }
  14514. },
  14515. back: {
  14516. height: math.unit(6 + 1 / 12, "feet"),
  14517. weight: math.unit(210, "lb"),
  14518. name: "Back",
  14519. image: {
  14520. source: "./media/characters/hasani/back.svg",
  14521. extra: 244 / 232,
  14522. bottom: 0.01
  14523. }
  14524. },
  14525. },
  14526. [
  14527. {
  14528. name: "Normal",
  14529. height: math.unit(6 + 1 / 12, "feet")
  14530. },
  14531. {
  14532. name: "Macro",
  14533. height: math.unit(175, "feet"),
  14534. default: true
  14535. },
  14536. ]
  14537. ))
  14538. characterMakers.push(() => makeCharacter(
  14539. { name: "Nita" },
  14540. {
  14541. front: {
  14542. height: math.unit(1.82, "meters"),
  14543. weight: math.unit(140, "lb"),
  14544. name: "Front",
  14545. image: {
  14546. source: "./media/characters/nita/front.svg",
  14547. extra: 2473 / 2363,
  14548. bottom: 0.01
  14549. }
  14550. },
  14551. },
  14552. [
  14553. {
  14554. name: "Normal",
  14555. height: math.unit(1.82, "m")
  14556. },
  14557. {
  14558. name: "Macro",
  14559. height: math.unit(300, "m")
  14560. },
  14561. {
  14562. name: "Mistake Canon",
  14563. height: math.unit(0.5, "miles"),
  14564. default: true
  14565. },
  14566. {
  14567. name: "Big Mistake",
  14568. height: math.unit(13, "miles")
  14569. },
  14570. {
  14571. name: "Playing God",
  14572. height: math.unit(2450, "miles")
  14573. },
  14574. ]
  14575. ))
  14576. characterMakers.push(() => makeCharacter(
  14577. { name: "Shiriko" },
  14578. {
  14579. front: {
  14580. height: math.unit(4, "feet"),
  14581. weight: math.unit(120, "lb"),
  14582. name: "Front",
  14583. image: {
  14584. source: "./media/characters/shiriko/front.svg",
  14585. extra: 195 / 188
  14586. }
  14587. },
  14588. },
  14589. [
  14590. {
  14591. name: "Normal",
  14592. height: math.unit(4, "feet"),
  14593. default: true
  14594. },
  14595. ]
  14596. ))
  14597. characterMakers.push(() => makeCharacter(
  14598. { name: "Deja" },
  14599. {
  14600. front: {
  14601. height: math.unit(6, "feet"),
  14602. name: "front",
  14603. image: {
  14604. source: "./media/characters/deja/front.svg",
  14605. extra: 926 / 840,
  14606. bottom: 0.07
  14607. }
  14608. },
  14609. },
  14610. [
  14611. {
  14612. name: "Planck Length",
  14613. height: math.unit(1.6e-35, "meters")
  14614. },
  14615. {
  14616. name: "Normal",
  14617. height: math.unit(30.48, "meters"),
  14618. default: true
  14619. },
  14620. {
  14621. name: "Universal",
  14622. height: math.unit(8.8e26, "meters")
  14623. },
  14624. ]
  14625. ))
  14626. characterMakers.push(() => makeCharacter(
  14627. { name: "Anima" },
  14628. {
  14629. side: {
  14630. height: math.unit(8, "feet"),
  14631. weight: math.unit(6300, "lb"),
  14632. name: "Side",
  14633. image: {
  14634. source: "./media/characters/anima/side.svg",
  14635. bottom: 0.035
  14636. }
  14637. },
  14638. },
  14639. [
  14640. {
  14641. name: "Normal",
  14642. height: math.unit(8, "feet"),
  14643. default: true
  14644. },
  14645. ]
  14646. ))
  14647. characterMakers.push(() => makeCharacter(
  14648. { name: "Bianca" },
  14649. {
  14650. front: {
  14651. height: math.unit(8, "feet"),
  14652. weight: math.unit(350, "lb"),
  14653. name: "Front",
  14654. image: {
  14655. source: "./media/characters/bianca/front.svg",
  14656. extra: 234 / 225,
  14657. bottom: 0.03
  14658. }
  14659. },
  14660. },
  14661. [
  14662. {
  14663. name: "Normal",
  14664. height: math.unit(8, "feet"),
  14665. default: true
  14666. },
  14667. ]
  14668. ))
  14669. characterMakers.push(() => makeCharacter(
  14670. { name: "Adinia" },
  14671. {
  14672. front: {
  14673. height: math.unit(6, "feet"),
  14674. weight: math.unit(150, "lb"),
  14675. name: "Front",
  14676. image: {
  14677. source: "./media/characters/adinia/front.svg",
  14678. extra: 1845 / 1672,
  14679. bottom: 0.02
  14680. }
  14681. },
  14682. back: {
  14683. height: math.unit(6, "feet"),
  14684. weight: math.unit(150, "lb"),
  14685. name: "Back",
  14686. image: {
  14687. source: "./media/characters/adinia/back.svg",
  14688. extra: 1845 / 1672,
  14689. bottom: 0.002
  14690. }
  14691. },
  14692. },
  14693. [
  14694. {
  14695. name: "Normal",
  14696. height: math.unit(11 + 5 / 12, "feet"),
  14697. default: true
  14698. },
  14699. ]
  14700. ))
  14701. characterMakers.push(() => makeCharacter(
  14702. { name: "Lykasa" },
  14703. {
  14704. front: {
  14705. height: math.unit(3, "meters"),
  14706. weight: math.unit(200, "kg"),
  14707. name: "Front",
  14708. image: {
  14709. source: "./media/characters/lykasa/front.svg",
  14710. extra: 1076 / 976,
  14711. bottom: 0.06
  14712. }
  14713. },
  14714. },
  14715. [
  14716. {
  14717. name: "Normal",
  14718. height: math.unit(3, "meters")
  14719. },
  14720. {
  14721. name: "Kaiku",
  14722. height: math.unit(120, "meters"),
  14723. default: true
  14724. },
  14725. {
  14726. name: "Mega Kaiju",
  14727. height: math.unit(240, "km")
  14728. },
  14729. {
  14730. name: "Giga Kaiju",
  14731. height: math.unit(400, "megameters")
  14732. },
  14733. {
  14734. name: "Tera Kaiju",
  14735. height: math.unit(800, "gigameters")
  14736. },
  14737. {
  14738. name: "Kaiju Dragon Goddess",
  14739. height: math.unit(26, "zettaparsecs")
  14740. },
  14741. ]
  14742. ))
  14743. characterMakers.push(() => makeCharacter(
  14744. { name: "Malfaren" },
  14745. {
  14746. side: {
  14747. height: math.unit(283 / 124 * 6, "feet"),
  14748. weight: math.unit(35000, "lb"),
  14749. name: "Side",
  14750. image: {
  14751. source: "./media/characters/malfaren/side.svg",
  14752. extra: 2500 / 1010,
  14753. bottom: 0.01
  14754. }
  14755. },
  14756. front: {
  14757. height: math.unit(22.36, "feet"),
  14758. weight: math.unit(35000, "lb"),
  14759. name: "Front",
  14760. image: {
  14761. source: "./media/characters/malfaren/front.svg",
  14762. extra: 1631 / 1476,
  14763. bottom: 0.01
  14764. }
  14765. },
  14766. maw: {
  14767. height: math.unit(6.9, "feet"),
  14768. name: "Maw",
  14769. image: {
  14770. source: "./media/characters/malfaren/maw.svg"
  14771. }
  14772. },
  14773. },
  14774. [
  14775. {
  14776. name: "Big",
  14777. height: math.unit(283 / 162 * 6, "feet"),
  14778. },
  14779. {
  14780. name: "Bigger",
  14781. height: math.unit(283 / 124 * 6, "feet")
  14782. },
  14783. {
  14784. name: "Massive",
  14785. height: math.unit(283 / 92 * 6, "feet"),
  14786. default: true
  14787. },
  14788. {
  14789. name: "👀💦",
  14790. height: math.unit(283 / 73 * 6, "feet"),
  14791. },
  14792. ]
  14793. ))
  14794. characterMakers.push(() => makeCharacter(
  14795. { name: "Kernel" },
  14796. {
  14797. front: {
  14798. height: math.unit(1.7, "m"),
  14799. weight: math.unit(70, "kg"),
  14800. name: "Front",
  14801. image: {
  14802. source: "./media/characters/kernel/front.svg",
  14803. extra: 222 / 210,
  14804. bottom: 0.007
  14805. }
  14806. },
  14807. },
  14808. [
  14809. {
  14810. name: "Nano",
  14811. height: math.unit(17, "micrometers")
  14812. },
  14813. {
  14814. name: "Micro",
  14815. height: math.unit(1.7, "mm")
  14816. },
  14817. {
  14818. name: "Small",
  14819. height: math.unit(1.7, "cm")
  14820. },
  14821. {
  14822. name: "Normal",
  14823. height: math.unit(1.7, "m"),
  14824. default: true
  14825. },
  14826. ]
  14827. ))
  14828. characterMakers.push(() => makeCharacter(
  14829. { name: "Jayne Folest" },
  14830. {
  14831. front: {
  14832. height: math.unit(1.75, "meters"),
  14833. weight: math.unit(65, "kg"),
  14834. name: "Front",
  14835. image: {
  14836. source: "./media/characters/jayne-folest/front.svg",
  14837. extra: 2115 / 2007,
  14838. bottom: 0.02
  14839. }
  14840. },
  14841. back: {
  14842. height: math.unit(1.75, "meters"),
  14843. weight: math.unit(65, "kg"),
  14844. name: "Back",
  14845. image: {
  14846. source: "./media/characters/jayne-folest/back.svg",
  14847. extra: 2115 / 2007,
  14848. bottom: 0.005
  14849. }
  14850. },
  14851. frontClothed: {
  14852. height: math.unit(1.75, "meters"),
  14853. weight: math.unit(65, "kg"),
  14854. name: "Front (Clothed)",
  14855. image: {
  14856. source: "./media/characters/jayne-folest/front-clothed.svg",
  14857. extra: 2115 / 2007,
  14858. bottom: 0.035
  14859. }
  14860. },
  14861. hand: {
  14862. height: math.unit(1 / 1.260, "feet"),
  14863. name: "Hand",
  14864. image: {
  14865. source: "./media/characters/jayne-folest/hand.svg"
  14866. }
  14867. },
  14868. foot: {
  14869. height: math.unit(1 / 0.918, "feet"),
  14870. name: "Foot",
  14871. image: {
  14872. source: "./media/characters/jayne-folest/foot.svg"
  14873. }
  14874. },
  14875. },
  14876. [
  14877. {
  14878. name: "Micro",
  14879. height: math.unit(4, "cm")
  14880. },
  14881. {
  14882. name: "Normal",
  14883. height: math.unit(1.75, "meters")
  14884. },
  14885. {
  14886. name: "Macro",
  14887. height: math.unit(47.5, "meters"),
  14888. default: true
  14889. },
  14890. ]
  14891. ))
  14892. characterMakers.push(() => makeCharacter(
  14893. { name: "Algier" },
  14894. {
  14895. front: {
  14896. height: math.unit(180, "cm"),
  14897. weight: math.unit(70, "kg"),
  14898. name: "Front",
  14899. image: {
  14900. source: "./media/characters/algier/front.svg",
  14901. extra: 596 / 572,
  14902. bottom: 0.04
  14903. }
  14904. },
  14905. back: {
  14906. height: math.unit(180, "cm"),
  14907. weight: math.unit(70, "kg"),
  14908. name: "Back",
  14909. image: {
  14910. source: "./media/characters/algier/back.svg",
  14911. extra: 596 / 572,
  14912. bottom: 0.025
  14913. }
  14914. },
  14915. frontdressed: {
  14916. height: math.unit(180, "cm"),
  14917. weight: math.unit(150, "kg"),
  14918. name: "Front-dressed",
  14919. image: {
  14920. source: "./media/characters/algier/front-dressed.svg",
  14921. extra: 596 / 572,
  14922. bottom: 0.038
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Micro",
  14929. height: math.unit(5, "cm")
  14930. },
  14931. {
  14932. name: "Normal",
  14933. height: math.unit(180, "cm"),
  14934. default: true
  14935. },
  14936. {
  14937. name: "Macro",
  14938. height: math.unit(64, "m")
  14939. },
  14940. ]
  14941. ))
  14942. characterMakers.push(() => makeCharacter(
  14943. { name: "Pretzel" },
  14944. {
  14945. upright: {
  14946. height: math.unit(7, "feet"),
  14947. weight: math.unit(300, "lb"),
  14948. name: "Upright",
  14949. image: {
  14950. source: "./media/characters/pretzel/upright.svg",
  14951. extra: 534 / 522,
  14952. bottom: 0.065
  14953. }
  14954. },
  14955. sprawling: {
  14956. height: math.unit(3.75, "feet"),
  14957. weight: math.unit(300, "lb"),
  14958. name: "Sprawling",
  14959. image: {
  14960. source: "./media/characters/pretzel/sprawling.svg",
  14961. extra: 314 / 281,
  14962. bottom: 0.1
  14963. }
  14964. },
  14965. tongue: {
  14966. height: math.unit(2, "feet"),
  14967. name: "Tongue",
  14968. image: {
  14969. source: "./media/characters/pretzel/tongue.svg"
  14970. }
  14971. },
  14972. },
  14973. [
  14974. {
  14975. name: "Normal",
  14976. height: math.unit(7, "feet"),
  14977. default: true
  14978. },
  14979. {
  14980. name: "Oversized",
  14981. height: math.unit(15, "feet")
  14982. },
  14983. {
  14984. name: "Huge",
  14985. height: math.unit(30, "feet")
  14986. },
  14987. {
  14988. name: "Macro",
  14989. height: math.unit(250, "feet")
  14990. },
  14991. ]
  14992. ))
  14993. characterMakers.push(() => makeCharacter(
  14994. { name: "Roxi" },
  14995. {
  14996. sideFront: {
  14997. height: math.unit(5 + 2 / 12, "feet"),
  14998. weight: math.unit(120, "lb"),
  14999. name: "Front Side",
  15000. image: {
  15001. source: "./media/characters/roxi/side-front.svg",
  15002. extra: 2924 / 2717,
  15003. bottom: 0.08
  15004. }
  15005. },
  15006. sideBack: {
  15007. height: math.unit(5 + 2 / 12, "feet"),
  15008. weight: math.unit(120, "lb"),
  15009. name: "Back Side",
  15010. image: {
  15011. source: "./media/characters/roxi/side-back.svg",
  15012. extra: 2904 / 2693,
  15013. bottom: 0.06
  15014. }
  15015. },
  15016. front: {
  15017. height: math.unit(5 + 2 / 12, "feet"),
  15018. weight: math.unit(120, "lb"),
  15019. name: "Front",
  15020. image: {
  15021. source: "./media/characters/roxi/front.svg",
  15022. extra: 2028 / 1907,
  15023. bottom: 0.01
  15024. }
  15025. },
  15026. frontAlt: {
  15027. height: math.unit(5 + 2 / 12, "feet"),
  15028. weight: math.unit(120, "lb"),
  15029. name: "Front (Alt)",
  15030. image: {
  15031. source: "./media/characters/roxi/front-alt.svg",
  15032. extra: 1828 / 1798,
  15033. bottom: 0.01
  15034. }
  15035. },
  15036. sitting: {
  15037. height: math.unit(2.8, "feet"),
  15038. weight: math.unit(120, "lb"),
  15039. name: "Sitting",
  15040. image: {
  15041. source: "./media/characters/roxi/sitting.svg",
  15042. extra: 2660 / 2462,
  15043. bottom: 0.1
  15044. }
  15045. },
  15046. },
  15047. [
  15048. {
  15049. name: "Normal",
  15050. height: math.unit(5 + 2 / 12, "feet"),
  15051. default: true
  15052. },
  15053. ]
  15054. ))
  15055. characterMakers.push(() => makeCharacter(
  15056. { name: "Shadow" },
  15057. {
  15058. side: {
  15059. height: math.unit(55, "feet"),
  15060. weight: math.unit(153, "tons"),
  15061. name: "Side",
  15062. image: {
  15063. source: "./media/characters/shadow/side.svg",
  15064. extra: 701 / 628,
  15065. bottom: 0.02
  15066. }
  15067. },
  15068. flying: {
  15069. height: math.unit(145, "feet"),
  15070. weight: math.unit(153, "tons"),
  15071. name: "Flying",
  15072. image: {
  15073. source: "./media/characters/shadow/flying.svg"
  15074. }
  15075. },
  15076. },
  15077. [
  15078. {
  15079. name: "Normal",
  15080. height: math.unit(55, "feet"),
  15081. default: true
  15082. },
  15083. ]
  15084. ))
  15085. characterMakers.push(() => makeCharacter(
  15086. { name: "Marcie" },
  15087. {
  15088. front: {
  15089. height: math.unit(6, "feet"),
  15090. weight: math.unit(200, "lb"),
  15091. name: "Front",
  15092. image: {
  15093. source: "./media/characters/marcie/front.svg",
  15094. extra: 960 / 876,
  15095. bottom: 58 / 1017.87
  15096. }
  15097. },
  15098. },
  15099. [
  15100. {
  15101. name: "Macro",
  15102. height: math.unit(1, "mile"),
  15103. default: true
  15104. },
  15105. ]
  15106. ))
  15107. characterMakers.push(() => makeCharacter(
  15108. { name: "Kachina" },
  15109. {
  15110. front: {
  15111. height: math.unit(7, "feet"),
  15112. weight: math.unit(200, "lb"),
  15113. name: "Front",
  15114. image: {
  15115. source: "./media/characters/kachina/front.svg",
  15116. extra: 1290.68 / 1119,
  15117. bottom: 36.5 / 1327.18
  15118. }
  15119. },
  15120. },
  15121. [
  15122. {
  15123. name: "Normal",
  15124. height: math.unit(7, "feet"),
  15125. default: true
  15126. },
  15127. ]
  15128. ))
  15129. characterMakers.push(() => makeCharacter(
  15130. { name: "Kash" },
  15131. {
  15132. looking: {
  15133. height: math.unit(2, "meters"),
  15134. weight: math.unit(300, "kg"),
  15135. name: "Looking",
  15136. image: {
  15137. source: "./media/characters/kash/looking.svg",
  15138. extra: 474 / 344,
  15139. bottom: 0.03
  15140. }
  15141. },
  15142. side: {
  15143. height: math.unit(2, "meters"),
  15144. weight: math.unit(300, "kg"),
  15145. name: "Side",
  15146. image: {
  15147. source: "./media/characters/kash/side.svg",
  15148. extra: 302 / 251,
  15149. bottom: 0.03
  15150. }
  15151. },
  15152. front: {
  15153. height: math.unit(2, "meters"),
  15154. weight: math.unit(300, "kg"),
  15155. name: "Front",
  15156. image: {
  15157. source: "./media/characters/kash/front.svg",
  15158. extra: 495 / 360,
  15159. bottom: 0.015
  15160. }
  15161. },
  15162. },
  15163. [
  15164. {
  15165. name: "Normal",
  15166. height: math.unit(2, "meters"),
  15167. default: true
  15168. },
  15169. {
  15170. name: "Big",
  15171. height: math.unit(3, "meters")
  15172. },
  15173. {
  15174. name: "Large",
  15175. height: math.unit(5, "meters")
  15176. },
  15177. ]
  15178. ))
  15179. characterMakers.push(() => makeCharacter(
  15180. { name: "Lalim" },
  15181. {
  15182. feeding: {
  15183. height: math.unit(6.7, "feet"),
  15184. weight: math.unit(350, "lb"),
  15185. name: "Feeding",
  15186. image: {
  15187. source: "./media/characters/lalim/feeding.svg",
  15188. }
  15189. },
  15190. },
  15191. [
  15192. {
  15193. name: "Normal",
  15194. height: math.unit(6.7, "feet"),
  15195. default: true
  15196. },
  15197. ]
  15198. ))
  15199. characterMakers.push(() => makeCharacter(
  15200. { name: "De'Vout" },
  15201. {
  15202. front: {
  15203. height: math.unit(9.5, "feet"),
  15204. weight: math.unit(600, "lb"),
  15205. name: "Front",
  15206. image: {
  15207. source: "./media/characters/de'vout/front.svg",
  15208. extra: 1443 / 1328,
  15209. bottom: 0.025
  15210. }
  15211. },
  15212. back: {
  15213. height: math.unit(9.5, "feet"),
  15214. weight: math.unit(600, "lb"),
  15215. name: "Back",
  15216. image: {
  15217. source: "./media/characters/de'vout/back.svg",
  15218. extra: 1443 / 1328
  15219. }
  15220. },
  15221. frontDressed: {
  15222. height: math.unit(9.5, "feet"),
  15223. weight: math.unit(600, "lb"),
  15224. name: "Front (Dressed",
  15225. image: {
  15226. source: "./media/characters/de'vout/front-dressed.svg",
  15227. extra: 1443 / 1328,
  15228. bottom: 0.025
  15229. }
  15230. },
  15231. backDressed: {
  15232. height: math.unit(9.5, "feet"),
  15233. weight: math.unit(600, "lb"),
  15234. name: "Back (Dressed",
  15235. image: {
  15236. source: "./media/characters/de'vout/back-dressed.svg",
  15237. extra: 1443 / 1328
  15238. }
  15239. },
  15240. },
  15241. [
  15242. {
  15243. name: "Normal",
  15244. height: math.unit(9.5, "feet"),
  15245. default: true
  15246. },
  15247. ]
  15248. ))
  15249. characterMakers.push(() => makeCharacter(
  15250. { name: "Talana" },
  15251. {
  15252. front: {
  15253. height: math.unit(8, "feet"),
  15254. weight: math.unit(225, "lb"),
  15255. name: "Front",
  15256. image: {
  15257. source: "./media/characters/talana/front.svg",
  15258. extra: 1410 / 1300,
  15259. bottom: 0.015
  15260. }
  15261. },
  15262. frontDressed: {
  15263. height: math.unit(8, "feet"),
  15264. weight: math.unit(225, "lb"),
  15265. name: "Front (Dressed",
  15266. image: {
  15267. source: "./media/characters/talana/front-dressed.svg",
  15268. extra: 1410 / 1300,
  15269. bottom: 0.015
  15270. }
  15271. },
  15272. },
  15273. [
  15274. {
  15275. name: "Normal",
  15276. height: math.unit(8, "feet"),
  15277. default: true
  15278. },
  15279. ]
  15280. ))
  15281. characterMakers.push(() => makeCharacter(
  15282. { name: "Xeauvok" },
  15283. {
  15284. side: {
  15285. height: math.unit(7.2, "feet"),
  15286. weight: math.unit(150, "lb"),
  15287. name: "Side",
  15288. image: {
  15289. source: "./media/characters/xeauvok/side.svg",
  15290. extra: 1975 / 1523,
  15291. bottom: 0.07
  15292. }
  15293. },
  15294. },
  15295. [
  15296. {
  15297. name: "Normal",
  15298. height: math.unit(7.2, "feet"),
  15299. default: true
  15300. },
  15301. ]
  15302. ))
  15303. characterMakers.push(() => makeCharacter(
  15304. { name: "Zara" },
  15305. {
  15306. side: {
  15307. height: math.unit(10, "feet"),
  15308. weight: math.unit(900, "kg"),
  15309. name: "Side",
  15310. image: {
  15311. source: "./media/characters/zara/side.svg",
  15312. extra: 504 / 498
  15313. }
  15314. },
  15315. },
  15316. [
  15317. {
  15318. name: "Normal",
  15319. height: math.unit(10, "feet"),
  15320. default: true
  15321. },
  15322. ]
  15323. ))
  15324. characterMakers.push(() => makeCharacter(
  15325. { name: "Richard (Dragon)" },
  15326. {
  15327. side: {
  15328. height: math.unit(6, "feet"),
  15329. weight: math.unit(150, "lb"),
  15330. name: "Side",
  15331. image: {
  15332. source: "./media/characters/richard-dragon/side.svg",
  15333. extra: 845 / 340,
  15334. bottom: 0.017
  15335. }
  15336. },
  15337. maw: {
  15338. height: math.unit(2.97, "feet"),
  15339. name: "Maw",
  15340. image: {
  15341. source: "./media/characters/richard-dragon/maw.svg"
  15342. }
  15343. },
  15344. },
  15345. [
  15346. ]
  15347. ))
  15348. characterMakers.push(() => makeCharacter(
  15349. { name: "Richard (Smeargle)" },
  15350. {
  15351. front: {
  15352. height: math.unit(4, "feet"),
  15353. weight: math.unit(100, "lb"),
  15354. name: "Front",
  15355. image: {
  15356. source: "./media/characters/richard-smeargle/front.svg",
  15357. extra: 2952 / 2820,
  15358. bottom: 0.028
  15359. }
  15360. },
  15361. },
  15362. [
  15363. {
  15364. name: "Normal",
  15365. height: math.unit(4, "feet"),
  15366. default: true
  15367. },
  15368. {
  15369. name: "Dynamax",
  15370. height: math.unit(20, "meters")
  15371. },
  15372. ]
  15373. ))
  15374. characterMakers.push(() => makeCharacter(
  15375. { name: "Klay" },
  15376. {
  15377. front: {
  15378. height: math.unit(6, "feet"),
  15379. weight: math.unit(110, "lb"),
  15380. name: "Front",
  15381. image: {
  15382. source: "./media/characters/klay/front.svg",
  15383. extra: 962 / 883,
  15384. bottom: 0.04
  15385. }
  15386. },
  15387. back: {
  15388. height: math.unit(6, "feet"),
  15389. weight: math.unit(110, "lb"),
  15390. name: "Back",
  15391. image: {
  15392. source: "./media/characters/klay/back.svg",
  15393. extra: 962 / 883
  15394. }
  15395. },
  15396. beans: {
  15397. height: math.unit(1.15, "feet"),
  15398. name: "Beans",
  15399. image: {
  15400. source: "./media/characters/klay/beans.svg"
  15401. }
  15402. },
  15403. },
  15404. [
  15405. {
  15406. name: "Micro",
  15407. height: math.unit(6, "inches")
  15408. },
  15409. {
  15410. name: "Mini",
  15411. height: math.unit(3, "feet")
  15412. },
  15413. {
  15414. name: "Normal",
  15415. height: math.unit(6, "feet"),
  15416. default: true
  15417. },
  15418. {
  15419. name: "Big",
  15420. height: math.unit(25, "feet")
  15421. },
  15422. {
  15423. name: "Macro",
  15424. height: math.unit(100, "feet")
  15425. },
  15426. {
  15427. name: "Megamacro",
  15428. height: math.unit(400, "feet")
  15429. },
  15430. ]
  15431. ))
  15432. characterMakers.push(() => makeCharacter(
  15433. { name: "Marcus" },
  15434. {
  15435. front: {
  15436. height: math.unit(6, "feet"),
  15437. weight: math.unit(160, "lb"),
  15438. name: "Front",
  15439. image: {
  15440. source: "./media/characters/marcus/front.svg",
  15441. extra: 734 / 676,
  15442. bottom: 0.03
  15443. }
  15444. },
  15445. },
  15446. [
  15447. {
  15448. name: "Little",
  15449. height: math.unit(6, "feet")
  15450. },
  15451. {
  15452. name: "Normal",
  15453. height: math.unit(110, "feet"),
  15454. default: true
  15455. },
  15456. {
  15457. name: "Macro",
  15458. height: math.unit(250, "feet")
  15459. },
  15460. {
  15461. name: "Megamacro",
  15462. height: math.unit(1000, "feet")
  15463. },
  15464. ]
  15465. ))
  15466. characterMakers.push(() => makeCharacter(
  15467. { name: "Claude DelRoute" },
  15468. {
  15469. front: {
  15470. height: math.unit(7, "feet"),
  15471. weight: math.unit(275, "lb"),
  15472. name: "Front",
  15473. image: {
  15474. source: "./media/characters/claude-delroute/front.svg",
  15475. extra: 230 / 214,
  15476. bottom: 0.007
  15477. }
  15478. },
  15479. side: {
  15480. height: math.unit(7, "feet"),
  15481. weight: math.unit(275, "lb"),
  15482. name: "Side",
  15483. image: {
  15484. source: "./media/characters/claude-delroute/side.svg",
  15485. extra: 222 / 214,
  15486. bottom: 0.01
  15487. }
  15488. },
  15489. back: {
  15490. height: math.unit(7, "feet"),
  15491. weight: math.unit(275, "lb"),
  15492. name: "Back",
  15493. image: {
  15494. source: "./media/characters/claude-delroute/back.svg",
  15495. extra: 230 / 214,
  15496. bottom: 0.015
  15497. }
  15498. },
  15499. maw: {
  15500. height: math.unit(0.6407, "meters"),
  15501. name: "Maw",
  15502. image: {
  15503. source: "./media/characters/claude-delroute/maw.svg"
  15504. }
  15505. },
  15506. },
  15507. [
  15508. {
  15509. name: "Normal",
  15510. height: math.unit(7, "feet"),
  15511. default: true
  15512. },
  15513. {
  15514. name: "Lorge",
  15515. height: math.unit(20, "feet")
  15516. },
  15517. ]
  15518. ))
  15519. characterMakers.push(() => makeCharacter(
  15520. { name: "Dragonien" },
  15521. {
  15522. front: {
  15523. height: math.unit(8 + 4 / 12, "feet"),
  15524. weight: math.unit(600, "lb"),
  15525. name: "Front",
  15526. image: {
  15527. source: "./media/characters/dragonien/front.svg",
  15528. extra: 100 / 94,
  15529. bottom: 3.3 / 103.3445
  15530. }
  15531. },
  15532. back: {
  15533. height: math.unit(8 + 4 / 12, "feet"),
  15534. weight: math.unit(600, "lb"),
  15535. name: "Back",
  15536. image: {
  15537. source: "./media/characters/dragonien/back.svg",
  15538. extra: 776 / 746,
  15539. bottom: 6.4 / 782.0616
  15540. }
  15541. },
  15542. foot: {
  15543. height: math.unit(1.54, "feet"),
  15544. name: "Foot",
  15545. image: {
  15546. source: "./media/characters/dragonien/foot.svg",
  15547. }
  15548. },
  15549. },
  15550. [
  15551. {
  15552. name: "Normal",
  15553. height: math.unit(8 + 4 / 12, "feet"),
  15554. default: true
  15555. },
  15556. {
  15557. name: "Macro",
  15558. height: math.unit(200, "feet")
  15559. },
  15560. {
  15561. name: "Megamacro",
  15562. height: math.unit(1, "mile")
  15563. },
  15564. {
  15565. name: "Gigamacro",
  15566. height: math.unit(1000, "miles")
  15567. },
  15568. ]
  15569. ))
  15570. characterMakers.push(() => makeCharacter(
  15571. { name: "Desta" },
  15572. {
  15573. front: {
  15574. height: math.unit(5 + 2 / 12, "feet"),
  15575. weight: math.unit(110, "lb"),
  15576. name: "Front",
  15577. image: {
  15578. source: "./media/characters/desta/front.svg",
  15579. extra: 1482 / 1417
  15580. }
  15581. },
  15582. side: {
  15583. height: math.unit(5 + 2 / 12, "feet"),
  15584. weight: math.unit(110, "lb"),
  15585. name: "Side",
  15586. image: {
  15587. source: "./media/characters/desta/side.svg",
  15588. extra: 2579 / 2491,
  15589. bottom: 0.053
  15590. }
  15591. },
  15592. },
  15593. [
  15594. {
  15595. name: "Micro",
  15596. height: math.unit(6, "inches")
  15597. },
  15598. {
  15599. name: "Normal",
  15600. height: math.unit(5 + 2 / 12, "feet"),
  15601. default: true
  15602. },
  15603. {
  15604. name: "Macro",
  15605. height: math.unit(62, "feet")
  15606. },
  15607. {
  15608. name: "Megamacro",
  15609. height: math.unit(1800, "feet")
  15610. },
  15611. ]
  15612. ))
  15613. characterMakers.push(() => makeCharacter(
  15614. { name: "Storm Alystar" },
  15615. {
  15616. front: {
  15617. height: math.unit(10, "feet"),
  15618. weight: math.unit(700, "lb"),
  15619. name: "Front",
  15620. image: {
  15621. source: "./media/characters/storm-alystar/front.svg",
  15622. extra: 2112 / 1898,
  15623. bottom: 0.034
  15624. }
  15625. },
  15626. },
  15627. [
  15628. {
  15629. name: "Micro",
  15630. height: math.unit(3.5, "inches")
  15631. },
  15632. {
  15633. name: "Normal",
  15634. height: math.unit(10, "feet"),
  15635. default: true
  15636. },
  15637. {
  15638. name: "Macro",
  15639. height: math.unit(400, "feet")
  15640. },
  15641. {
  15642. name: "Deific",
  15643. height: math.unit(60, "miles")
  15644. },
  15645. ]
  15646. ))
  15647. characterMakers.push(() => makeCharacter(
  15648. { name: "Ilia" },
  15649. {
  15650. front: {
  15651. height: math.unit(2.35, "meters"),
  15652. weight: math.unit(119, "kg"),
  15653. name: "Front",
  15654. image: {
  15655. source: "./media/characters/ilia/front.svg",
  15656. extra: 1285 / 1255,
  15657. bottom: 0.06
  15658. }
  15659. },
  15660. },
  15661. [
  15662. {
  15663. name: "Normal",
  15664. height: math.unit(2.35, "meters")
  15665. },
  15666. {
  15667. name: "Macro",
  15668. height: math.unit(140, "meters"),
  15669. default: true
  15670. },
  15671. {
  15672. name: "Megamacro",
  15673. height: math.unit(100, "miles")
  15674. },
  15675. ]
  15676. ))
  15677. characterMakers.push(() => makeCharacter(
  15678. { name: "KingDead" },
  15679. {
  15680. front: {
  15681. height: math.unit(6 + 5 / 12, "feet"),
  15682. weight: math.unit(190, "lb"),
  15683. name: "Front",
  15684. image: {
  15685. source: "./media/characters/kingdead/front.svg",
  15686. extra: 1228 / 1177
  15687. }
  15688. },
  15689. },
  15690. [
  15691. {
  15692. name: "Micro",
  15693. height: math.unit(7, "inches")
  15694. },
  15695. {
  15696. name: "Normal",
  15697. height: math.unit(6 + 5 / 12, "feet")
  15698. },
  15699. {
  15700. name: "Macro",
  15701. height: math.unit(150, "feet"),
  15702. default: true
  15703. },
  15704. {
  15705. name: "Megamacro",
  15706. height: math.unit(200, "miles")
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Kyrehx" },
  15712. {
  15713. front: {
  15714. height: math.unit(8, "feet"),
  15715. weight: math.unit(600, "lb"),
  15716. name: "Front",
  15717. image: {
  15718. source: "./media/characters/kyrehx/front.svg",
  15719. extra: 1195 / 1095,
  15720. bottom: 0.034
  15721. }
  15722. },
  15723. },
  15724. [
  15725. {
  15726. name: "Micro",
  15727. height: math.unit(2, "inches")
  15728. },
  15729. {
  15730. name: "Normal",
  15731. height: math.unit(8, "feet"),
  15732. default: true
  15733. },
  15734. {
  15735. name: "Macro",
  15736. height: math.unit(255, "feet")
  15737. },
  15738. ]
  15739. ))
  15740. characterMakers.push(() => makeCharacter(
  15741. { name: "Xang" },
  15742. {
  15743. front: {
  15744. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15745. weight: math.unit(184, "lb"),
  15746. name: "Front",
  15747. image: {
  15748. source: "./media/characters/xang/front.svg",
  15749. extra: 845 / 755
  15750. }
  15751. },
  15752. },
  15753. [
  15754. {
  15755. name: "Normal",
  15756. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15757. default: true
  15758. },
  15759. {
  15760. name: "Macro",
  15761. height: math.unit(0.935 * 146, "feet")
  15762. },
  15763. {
  15764. name: "Megamacro",
  15765. height: math.unit(0.935 * 3, "miles")
  15766. },
  15767. ]
  15768. ))
  15769. characterMakers.push(() => makeCharacter(
  15770. { name: "Doc Weardno" },
  15771. {
  15772. frontDressed: {
  15773. height: math.unit(5 + 7 / 12, "feet"),
  15774. weight: math.unit(140, "lb"),
  15775. name: "Front (Dressed)",
  15776. image: {
  15777. source: "./media/characters/doc-weardno/front-dressed.svg",
  15778. extra: 263 / 234
  15779. }
  15780. },
  15781. backDressed: {
  15782. height: math.unit(5 + 7 / 12, "feet"),
  15783. weight: math.unit(140, "lb"),
  15784. name: "Back (Dressed)",
  15785. image: {
  15786. source: "./media/characters/doc-weardno/back-dressed.svg",
  15787. extra: 266 / 238
  15788. }
  15789. },
  15790. front: {
  15791. height: math.unit(5 + 7 / 12, "feet"),
  15792. weight: math.unit(140, "lb"),
  15793. name: "Front",
  15794. image: {
  15795. source: "./media/characters/doc-weardno/front.svg",
  15796. extra: 254 / 233
  15797. }
  15798. },
  15799. },
  15800. [
  15801. {
  15802. name: "Micro",
  15803. height: math.unit(3, "inches")
  15804. },
  15805. {
  15806. name: "Normal",
  15807. height: math.unit(5 + 7 / 12, "feet"),
  15808. default: true
  15809. },
  15810. {
  15811. name: "Macro",
  15812. height: math.unit(25, "feet")
  15813. },
  15814. {
  15815. name: "Megamacro",
  15816. height: math.unit(2, "miles")
  15817. },
  15818. ]
  15819. ))
  15820. characterMakers.push(() => makeCharacter(
  15821. { name: "Seth Whilst" },
  15822. {
  15823. front: {
  15824. height: math.unit(6 + 2 / 12, "feet"),
  15825. weight: math.unit(153, "lb"),
  15826. name: "Front",
  15827. image: {
  15828. source: "./media/characters/seth-whilst/front.svg",
  15829. bottom: 0.07
  15830. }
  15831. },
  15832. },
  15833. [
  15834. {
  15835. name: "Micro",
  15836. height: math.unit(5, "inches")
  15837. },
  15838. {
  15839. name: "Normal",
  15840. height: math.unit(6 + 2 / 12, "feet"),
  15841. default: true
  15842. },
  15843. ]
  15844. ))
  15845. characterMakers.push(() => makeCharacter(
  15846. { name: "Pocket Jabari" },
  15847. {
  15848. front: {
  15849. height: math.unit(3, "inches"),
  15850. weight: math.unit(8, "grams"),
  15851. name: "Front",
  15852. image: {
  15853. source: "./media/characters/pocket-jabari/front.svg",
  15854. extra: 1024 / 974,
  15855. bottom: 0.039
  15856. }
  15857. },
  15858. },
  15859. [
  15860. {
  15861. name: "Minimicro",
  15862. height: math.unit(8, "mm")
  15863. },
  15864. {
  15865. name: "Micro",
  15866. height: math.unit(3, "inches"),
  15867. default: true
  15868. },
  15869. {
  15870. name: "Normal",
  15871. height: math.unit(3, "feet")
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Sapphy" },
  15877. {
  15878. front: {
  15879. height: math.unit(15, "feet"),
  15880. weight: math.unit(3280, "lb"),
  15881. name: "Front",
  15882. image: {
  15883. source: "./media/characters/sapphy/front.svg",
  15884. extra: 671 / 577,
  15885. bottom: 0.085
  15886. }
  15887. },
  15888. back: {
  15889. height: math.unit(15, "feet"),
  15890. weight: math.unit(3280, "lb"),
  15891. name: "Back",
  15892. image: {
  15893. source: "./media/characters/sapphy/back.svg",
  15894. extra: 631 / 607,
  15895. bottom: 0.045
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Normal",
  15902. height: math.unit(15, "feet")
  15903. },
  15904. {
  15905. name: "Casual Macro",
  15906. height: math.unit(120, "feet")
  15907. },
  15908. {
  15909. name: "Macro",
  15910. height: math.unit(2150, "feet"),
  15911. default: true
  15912. },
  15913. {
  15914. name: "Megamacro",
  15915. height: math.unit(8, "miles")
  15916. },
  15917. {
  15918. name: "Galaxy Mom",
  15919. height: math.unit(6, "megalightyears")
  15920. },
  15921. ]
  15922. ))
  15923. characterMakers.push(() => makeCharacter(
  15924. { name: "Kiro" },
  15925. {
  15926. front: {
  15927. height: math.unit(6, "feet"),
  15928. weight: math.unit(170, "lb"),
  15929. name: "Front",
  15930. image: {
  15931. source: "./media/characters/kiro/front.svg",
  15932. extra: 1064 / 1012,
  15933. bottom: 0.052
  15934. }
  15935. },
  15936. },
  15937. [
  15938. {
  15939. name: "Micro",
  15940. height: math.unit(6, "inches")
  15941. },
  15942. {
  15943. name: "Normal",
  15944. height: math.unit(6, "feet"),
  15945. default: true
  15946. },
  15947. {
  15948. name: "Macro",
  15949. height: math.unit(72, "feet")
  15950. },
  15951. ]
  15952. ))
  15953. characterMakers.push(() => makeCharacter(
  15954. { name: "Irishfox" },
  15955. {
  15956. front: {
  15957. height: math.unit(5 + 9 / 12, "feet"),
  15958. weight: math.unit(175, "lb"),
  15959. name: "Front",
  15960. image: {
  15961. source: "./media/characters/irishfox/front.svg",
  15962. extra: 1912 / 1680,
  15963. bottom: 0.02
  15964. }
  15965. },
  15966. },
  15967. [
  15968. {
  15969. name: "Nano",
  15970. height: math.unit(1, "mm")
  15971. },
  15972. {
  15973. name: "Micro",
  15974. height: math.unit(2, "inches")
  15975. },
  15976. {
  15977. name: "Normal",
  15978. height: math.unit(5 + 9 / 12, "feet"),
  15979. default: true
  15980. },
  15981. {
  15982. name: "Macro",
  15983. height: math.unit(45, "feet")
  15984. },
  15985. ]
  15986. ))
  15987. characterMakers.push(() => makeCharacter(
  15988. { name: "Aronai Sieyes" },
  15989. {
  15990. front: {
  15991. height: math.unit(6 + 1 / 12, "feet"),
  15992. weight: math.unit(150, "lb"),
  15993. name: "Front",
  15994. image: {
  15995. source: "./media/characters/aronai-sieyes/front.svg",
  15996. extra: 1556 / 1480,
  15997. bottom: 0.015
  15998. }
  15999. },
  16000. side: {
  16001. height: math.unit(6 + 1 / 12, "feet"),
  16002. weight: math.unit(150, "lb"),
  16003. name: "Side",
  16004. image: {
  16005. source: "./media/characters/aronai-sieyes/side.svg",
  16006. extra: 1433 / 1390,
  16007. bottom: 0.0393
  16008. }
  16009. },
  16010. back: {
  16011. height: math.unit(6 + 1 / 12, "feet"),
  16012. weight: math.unit(150, "lb"),
  16013. name: "Back",
  16014. image: {
  16015. source: "./media/characters/aronai-sieyes/back.svg",
  16016. extra: 1544 / 1494,
  16017. bottom: 0.02
  16018. }
  16019. },
  16020. frontClothed: {
  16021. height: math.unit(6 + 1 / 12, "feet"),
  16022. weight: math.unit(150, "lb"),
  16023. name: "Front (Clothed)",
  16024. image: {
  16025. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16026. extra: 1582 / 1527
  16027. }
  16028. },
  16029. feral: {
  16030. height: math.unit(18, "feet"),
  16031. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16032. name: "Feral",
  16033. image: {
  16034. source: "./media/characters/aronai-sieyes/feral.svg",
  16035. extra: 1530 / 1240,
  16036. bottom: 0.035
  16037. }
  16038. },
  16039. },
  16040. [
  16041. {
  16042. name: "Micro",
  16043. height: math.unit(2, "inches")
  16044. },
  16045. {
  16046. name: "Normal",
  16047. height: math.unit(6 + 1 / 12, "feet"),
  16048. default: true
  16049. }
  16050. ]
  16051. ))
  16052. characterMakers.push(() => makeCharacter(
  16053. { name: "Xuna" },
  16054. {
  16055. front: {
  16056. height: math.unit(12, "feet"),
  16057. weight: math.unit(410, "kg"),
  16058. name: "Front",
  16059. image: {
  16060. source: "./media/characters/xuna/front.svg",
  16061. extra: 2184 / 1980
  16062. }
  16063. },
  16064. side: {
  16065. height: math.unit(12, "feet"),
  16066. weight: math.unit(410, "kg"),
  16067. name: "Side",
  16068. image: {
  16069. source: "./media/characters/xuna/side.svg",
  16070. extra: 2184 / 1980
  16071. }
  16072. },
  16073. back: {
  16074. height: math.unit(12, "feet"),
  16075. weight: math.unit(410, "kg"),
  16076. name: "Back",
  16077. image: {
  16078. source: "./media/characters/xuna/back.svg",
  16079. extra: 2184 / 1980
  16080. }
  16081. },
  16082. },
  16083. [
  16084. {
  16085. name: "Nano glow",
  16086. height: math.unit(10, "nm")
  16087. },
  16088. {
  16089. name: "Micro floof",
  16090. height: math.unit(0.3, "m")
  16091. },
  16092. {
  16093. name: "Huggable softy boi",
  16094. height: math.unit(3.6576, "m"),
  16095. default: true
  16096. },
  16097. {
  16098. name: "Admirable floof",
  16099. height: math.unit(80, "meters")
  16100. },
  16101. {
  16102. name: "Gentle macro",
  16103. height: math.unit(300, "meters")
  16104. },
  16105. {
  16106. name: "Very careful floof",
  16107. height: math.unit(3200, "meters")
  16108. },
  16109. {
  16110. name: "The mega floof",
  16111. height: math.unit(36000, "meters")
  16112. },
  16113. {
  16114. name: "Giga-fur-Wicker",
  16115. height: math.unit(4800000, "meters")
  16116. },
  16117. {
  16118. name: "Licky world",
  16119. height: math.unit(20000000, "meters")
  16120. },
  16121. {
  16122. name: "Floofy cyan sun",
  16123. height: math.unit(1500000000, "meters")
  16124. },
  16125. {
  16126. name: "Milky Wicker",
  16127. height: math.unit(1000000000000000000000, "meters")
  16128. },
  16129. {
  16130. name: "The observing Wicker",
  16131. height: math.unit(999999999999999999999999999, "meters")
  16132. },
  16133. ]
  16134. ))
  16135. characterMakers.push(() => makeCharacter(
  16136. { name: "Arokha Sieyes" },
  16137. {
  16138. front: {
  16139. height: math.unit(5 + 9 / 12, "feet"),
  16140. weight: math.unit(150, "lb"),
  16141. name: "Front",
  16142. image: {
  16143. source: "./media/characters/arokha-sieyes/front.svg",
  16144. extra: 1425 / 1284,
  16145. bottom: 0.05
  16146. }
  16147. },
  16148. },
  16149. [
  16150. {
  16151. name: "Normal",
  16152. height: math.unit(5 + 9 / 12, "feet")
  16153. },
  16154. {
  16155. name: "Macro",
  16156. height: math.unit(30, "meters"),
  16157. default: true
  16158. },
  16159. ]
  16160. ))
  16161. characterMakers.push(() => makeCharacter(
  16162. { name: "Arokh Sieyes" },
  16163. {
  16164. front: {
  16165. height: math.unit(6, "feet"),
  16166. weight: math.unit(180, "lb"),
  16167. name: "Front",
  16168. image: {
  16169. source: "./media/characters/arokh-sieyes/front.svg",
  16170. extra: 1830 / 1769,
  16171. bottom: 0.01
  16172. }
  16173. },
  16174. },
  16175. [
  16176. {
  16177. name: "Normal",
  16178. height: math.unit(6, "feet")
  16179. },
  16180. {
  16181. name: "Macro",
  16182. height: math.unit(30, "meters"),
  16183. default: true
  16184. },
  16185. ]
  16186. ))
  16187. characterMakers.push(() => makeCharacter(
  16188. { name: "Goldeneye" },
  16189. {
  16190. side: {
  16191. height: math.unit(13 + 1 / 12, "feet"),
  16192. weight: math.unit(8.5, "tonnes"),
  16193. name: "Side",
  16194. image: {
  16195. source: "./media/characters/goldeneye/side.svg",
  16196. extra: 1182 / 778,
  16197. bottom: 0.067
  16198. }
  16199. },
  16200. paw: {
  16201. height: math.unit(3.4, "feet"),
  16202. name: "Paw",
  16203. image: {
  16204. source: "./media/characters/goldeneye/paw.svg"
  16205. }
  16206. },
  16207. },
  16208. [
  16209. {
  16210. name: "Normal",
  16211. height: math.unit(13 + 1 / 12, "feet"),
  16212. default: true
  16213. },
  16214. ]
  16215. ))
  16216. characterMakers.push(() => makeCharacter(
  16217. { name: "Leonardo Lycheborne" },
  16218. {
  16219. front: {
  16220. height: math.unit(6 + 1 / 12, "feet"),
  16221. weight: math.unit(210, "lb"),
  16222. name: "Front",
  16223. image: {
  16224. source: "./media/characters/leonardo-lycheborne/front.svg",
  16225. extra: 390 / 365,
  16226. bottom: 0.032
  16227. }
  16228. },
  16229. side: {
  16230. height: math.unit(6 + 1 / 12, "feet"),
  16231. weight: math.unit(210, "lb"),
  16232. name: "Side",
  16233. image: {
  16234. source: "./media/characters/leonardo-lycheborne/side.svg",
  16235. extra: 390 / 365,
  16236. bottom: 0.005
  16237. }
  16238. },
  16239. back: {
  16240. height: math.unit(6 + 1 / 12, "feet"),
  16241. weight: math.unit(210, "lb"),
  16242. name: "Back",
  16243. image: {
  16244. source: "./media/characters/leonardo-lycheborne/back.svg",
  16245. extra: 392 / 366,
  16246. bottom: 0.01
  16247. }
  16248. },
  16249. hand: {
  16250. height: math.unit(1.08, "feet"),
  16251. name: "Hand",
  16252. image: {
  16253. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16254. }
  16255. },
  16256. foot: {
  16257. height: math.unit(1.32, "feet"),
  16258. name: "Foot",
  16259. image: {
  16260. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16261. }
  16262. },
  16263. were: {
  16264. height: math.unit(20, "feet"),
  16265. weight: math.unit(7800, "lb"),
  16266. name: "Were",
  16267. image: {
  16268. source: "./media/characters/leonardo-lycheborne/were.svg",
  16269. extra: 308 / 294,
  16270. bottom: 0.048
  16271. }
  16272. },
  16273. feral: {
  16274. height: math.unit(7.5, "feet"),
  16275. weight: math.unit(600, "lb"),
  16276. name: "Feral",
  16277. image: {
  16278. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16279. extra: 210 / 186,
  16280. bottom: 0.108
  16281. }
  16282. },
  16283. taur: {
  16284. height: math.unit(11, "feet"),
  16285. weight: math.unit(3300, "lb"),
  16286. name: "Taur",
  16287. image: {
  16288. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16289. extra: 320 / 303,
  16290. bottom: 0.025
  16291. }
  16292. },
  16293. barghest: {
  16294. height: math.unit(11, "feet"),
  16295. weight: math.unit(1300, "lb"),
  16296. name: "Barghest",
  16297. image: {
  16298. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16299. extra: 323 / 302,
  16300. bottom: 0.027
  16301. }
  16302. },
  16303. dick: {
  16304. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16305. name: "Dick",
  16306. image: {
  16307. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16308. }
  16309. },
  16310. dickWere: {
  16311. height: math.unit((20) / 3.8, "feet"),
  16312. name: "Dick (Were)",
  16313. image: {
  16314. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16315. }
  16316. },
  16317. },
  16318. [
  16319. {
  16320. name: "Normal",
  16321. height: math.unit(6 + 1 / 12, "feet"),
  16322. default: true
  16323. },
  16324. ]
  16325. ))
  16326. characterMakers.push(() => makeCharacter(
  16327. { name: "Jet" },
  16328. {
  16329. front: {
  16330. height: math.unit(10, "feet"),
  16331. weight: math.unit(350, "lb"),
  16332. name: "Front",
  16333. image: {
  16334. source: "./media/characters/jet/front.svg",
  16335. extra: 2050 / 1980,
  16336. bottom: 0.013
  16337. }
  16338. },
  16339. back: {
  16340. height: math.unit(10, "feet"),
  16341. weight: math.unit(350, "lb"),
  16342. name: "Back",
  16343. image: {
  16344. source: "./media/characters/jet/back.svg",
  16345. extra: 2050 / 1980,
  16346. bottom: 0.013
  16347. }
  16348. },
  16349. },
  16350. [
  16351. {
  16352. name: "Micro",
  16353. height: math.unit(6, "inches")
  16354. },
  16355. {
  16356. name: "Normal",
  16357. height: math.unit(10, "feet"),
  16358. default: true
  16359. },
  16360. {
  16361. name: "Macro",
  16362. height: math.unit(100, "feet")
  16363. },
  16364. ]
  16365. ))
  16366. characterMakers.push(() => makeCharacter(
  16367. { name: "Tanarath" },
  16368. {
  16369. front: {
  16370. height: math.unit(15, "feet"),
  16371. weight: math.unit(2800, "lb"),
  16372. name: "Front",
  16373. image: {
  16374. source: "./media/characters/tanarath/front.svg",
  16375. extra: 2392 / 2220,
  16376. bottom: 0.03
  16377. }
  16378. },
  16379. back: {
  16380. height: math.unit(15, "feet"),
  16381. weight: math.unit(2800, "lb"),
  16382. name: "Back",
  16383. image: {
  16384. source: "./media/characters/tanarath/back.svg",
  16385. extra: 2392 / 2220,
  16386. bottom: 0.03
  16387. }
  16388. },
  16389. },
  16390. [
  16391. {
  16392. name: "Normal",
  16393. height: math.unit(15, "feet"),
  16394. default: true
  16395. },
  16396. ]
  16397. ))
  16398. characterMakers.push(() => makeCharacter(
  16399. { name: "Patty CattyBatty" },
  16400. {
  16401. front: {
  16402. height: math.unit(7 + 1 / 12, "feet"),
  16403. weight: math.unit(175, "lb"),
  16404. name: "Front",
  16405. image: {
  16406. source: "./media/characters/patty-cattybatty/front.svg",
  16407. extra: 908 / 874,
  16408. bottom: 0.025
  16409. }
  16410. },
  16411. },
  16412. [
  16413. {
  16414. name: "Micro",
  16415. height: math.unit(1, "inch")
  16416. },
  16417. {
  16418. name: "Normal",
  16419. height: math.unit(7 + 1 / 12, "feet")
  16420. },
  16421. {
  16422. name: "Mini Macro",
  16423. height: math.unit(155, "feet")
  16424. },
  16425. {
  16426. name: "Macro",
  16427. height: math.unit(1077, "feet")
  16428. },
  16429. {
  16430. name: "Mega Macro",
  16431. height: math.unit(47650, "feet"),
  16432. default: true
  16433. },
  16434. {
  16435. name: "Giga Macro",
  16436. height: math.unit(440, "miles")
  16437. },
  16438. {
  16439. name: "Tera Macro",
  16440. height: math.unit(8700, "miles")
  16441. },
  16442. {
  16443. name: "Planetary Macro",
  16444. height: math.unit(32700, "miles")
  16445. },
  16446. {
  16447. name: "Solar Macro",
  16448. height: math.unit(550000, "miles")
  16449. },
  16450. {
  16451. name: "Celestial Macro",
  16452. height: math.unit(2.5, "AU")
  16453. },
  16454. ]
  16455. ))
  16456. characterMakers.push(() => makeCharacter(
  16457. { name: "Cappu" },
  16458. {
  16459. front: {
  16460. height: math.unit(4 + 5 / 12, "feet"),
  16461. weight: math.unit(90, "lb"),
  16462. name: "Front",
  16463. image: {
  16464. source: "./media/characters/cappu/front.svg",
  16465. extra: 1247 / 1152,
  16466. bottom: 0.012
  16467. }
  16468. },
  16469. },
  16470. [
  16471. {
  16472. name: "Normal",
  16473. height: math.unit(4 + 5 / 12, "feet"),
  16474. default: true
  16475. },
  16476. ]
  16477. ))
  16478. characterMakers.push(() => makeCharacter(
  16479. { name: "Sebi" },
  16480. {
  16481. frontDressed: {
  16482. height: math.unit(70, "cm"),
  16483. weight: math.unit(6, "kg"),
  16484. name: "Front (Dressed)",
  16485. image: {
  16486. source: "./media/characters/sebi/front-dressed.svg",
  16487. extra: 713.5 / 686.5,
  16488. bottom: 0.003
  16489. }
  16490. },
  16491. front: {
  16492. height: math.unit(70, "cm"),
  16493. weight: math.unit(5, "kg"),
  16494. name: "Front",
  16495. image: {
  16496. source: "./media/characters/sebi/front.svg",
  16497. extra: 713.5 / 686.5,
  16498. bottom: 0.003
  16499. }
  16500. }
  16501. },
  16502. [
  16503. {
  16504. name: "Normal",
  16505. height: math.unit(70, "cm"),
  16506. default: true
  16507. },
  16508. {
  16509. name: "Macro",
  16510. height: math.unit(8, "meters")
  16511. },
  16512. ]
  16513. ))
  16514. characterMakers.push(() => makeCharacter(
  16515. { name: "Typhek" },
  16516. {
  16517. front: {
  16518. height: math.unit(6, "feet"),
  16519. weight: math.unit(150, "lb"),
  16520. name: "Front",
  16521. image: {
  16522. source: "./media/characters/typhek/front.svg",
  16523. extra: 1948 / 1929,
  16524. bottom: 0.025
  16525. }
  16526. },
  16527. side: {
  16528. height: math.unit(6, "feet"),
  16529. weight: math.unit(150, "lb"),
  16530. name: "Side",
  16531. image: {
  16532. source: "./media/characters/typhek/side.svg",
  16533. extra: 2034 / 2010,
  16534. bottom: 0.003
  16535. }
  16536. },
  16537. back: {
  16538. height: math.unit(6, "feet"),
  16539. weight: math.unit(150, "lb"),
  16540. name: "Back",
  16541. image: {
  16542. source: "./media/characters/typhek/back.svg",
  16543. extra: 2005 / 1978,
  16544. bottom: 0.004
  16545. }
  16546. },
  16547. palm: {
  16548. height: math.unit(1.2, "feet"),
  16549. name: "Palm",
  16550. image: {
  16551. source: "./media/characters/typhek/palm.svg"
  16552. }
  16553. },
  16554. fist: {
  16555. height: math.unit(1.1, "feet"),
  16556. name: "Fist",
  16557. image: {
  16558. source: "./media/characters/typhek/fist.svg"
  16559. }
  16560. },
  16561. foot: {
  16562. height: math.unit(1.57, "feet"),
  16563. name: "Foot",
  16564. image: {
  16565. source: "./media/characters/typhek/foot.svg"
  16566. }
  16567. },
  16568. sole: {
  16569. height: math.unit(2.05, "feet"),
  16570. name: "Sole",
  16571. image: {
  16572. source: "./media/characters/typhek/sole.svg"
  16573. }
  16574. },
  16575. },
  16576. [
  16577. {
  16578. name: "Macro",
  16579. height: math.unit(40, "stories"),
  16580. default: true
  16581. },
  16582. {
  16583. name: "Megamacro",
  16584. height: math.unit(1, "mile")
  16585. },
  16586. {
  16587. name: "Gigamacro",
  16588. height: math.unit(4000, "solarradii")
  16589. },
  16590. {
  16591. name: "Universal",
  16592. height: math.unit(1.1, "universes")
  16593. }
  16594. ]
  16595. ))
  16596. characterMakers.push(() => makeCharacter(
  16597. { name: "Kassy" },
  16598. {
  16599. side: {
  16600. height: math.unit(5 + 7 / 12, "feet"),
  16601. weight: math.unit(150, "lb"),
  16602. name: "Side",
  16603. image: {
  16604. source: "./media/characters/kassy/side.svg",
  16605. extra: 1280 / 1225,
  16606. bottom: 0.002
  16607. }
  16608. },
  16609. front: {
  16610. height: math.unit(5 + 7 / 12, "feet"),
  16611. weight: math.unit(150, "lb"),
  16612. name: "Front",
  16613. image: {
  16614. source: "./media/characters/kassy/front.svg",
  16615. extra: 1280 / 1225,
  16616. bottom: 0.025
  16617. }
  16618. },
  16619. back: {
  16620. height: math.unit(5 + 7 / 12, "feet"),
  16621. weight: math.unit(150, "lb"),
  16622. name: "Back",
  16623. image: {
  16624. source: "./media/characters/kassy/back.svg",
  16625. extra: 1280 / 1225,
  16626. bottom: 0.002
  16627. }
  16628. },
  16629. foot: {
  16630. height: math.unit(1.266, "feet"),
  16631. name: "Foot",
  16632. image: {
  16633. source: "./media/characters/kassy/foot.svg"
  16634. }
  16635. },
  16636. },
  16637. [
  16638. {
  16639. name: "Normal",
  16640. height: math.unit(5 + 7 / 12, "feet")
  16641. },
  16642. {
  16643. name: "Macro",
  16644. height: math.unit(137, "feet"),
  16645. default: true
  16646. },
  16647. {
  16648. name: "Megamacro",
  16649. height: math.unit(1, "mile")
  16650. },
  16651. ]
  16652. ))
  16653. characterMakers.push(() => makeCharacter(
  16654. { name: "Neil" },
  16655. {
  16656. front: {
  16657. height: math.unit(6 + 1 / 12, "feet"),
  16658. weight: math.unit(200, "lb"),
  16659. name: "Front",
  16660. image: {
  16661. source: "./media/characters/neil/front.svg",
  16662. extra: 1326 / 1250,
  16663. bottom: 0.023
  16664. }
  16665. },
  16666. },
  16667. [
  16668. {
  16669. name: "Normal",
  16670. height: math.unit(6 + 1 / 12, "feet"),
  16671. default: true
  16672. },
  16673. {
  16674. name: "Macro",
  16675. height: math.unit(200, "feet")
  16676. },
  16677. ]
  16678. ))
  16679. characterMakers.push(() => makeCharacter(
  16680. { name: "Atticus" },
  16681. {
  16682. front: {
  16683. height: math.unit(5 + 9 / 12, "feet"),
  16684. weight: math.unit(190, "lb"),
  16685. name: "Front",
  16686. image: {
  16687. source: "./media/characters/atticus/front.svg",
  16688. extra: 2934 / 2785,
  16689. bottom: 0.025
  16690. }
  16691. },
  16692. },
  16693. [
  16694. {
  16695. name: "Normal",
  16696. height: math.unit(5 + 9 / 12, "feet"),
  16697. default: true
  16698. },
  16699. {
  16700. name: "Macro",
  16701. height: math.unit(180, "feet")
  16702. },
  16703. ]
  16704. ))
  16705. characterMakers.push(() => makeCharacter(
  16706. { name: "Milo" },
  16707. {
  16708. side: {
  16709. height: math.unit(9, "feet"),
  16710. weight: math.unit(650, "lb"),
  16711. name: "Side",
  16712. image: {
  16713. source: "./media/characters/milo/side.svg",
  16714. extra: 2644 / 2310,
  16715. bottom: 0.032
  16716. }
  16717. },
  16718. },
  16719. [
  16720. {
  16721. name: "Normal",
  16722. height: math.unit(9, "feet"),
  16723. default: true
  16724. },
  16725. {
  16726. name: "Macro",
  16727. height: math.unit(300, "feet")
  16728. },
  16729. ]
  16730. ))
  16731. characterMakers.push(() => makeCharacter(
  16732. { name: "Ijzer" },
  16733. {
  16734. side: {
  16735. height: math.unit(8, "meters"),
  16736. weight: math.unit(90000, "kg"),
  16737. name: "Side",
  16738. image: {
  16739. source: "./media/characters/ijzer/side.svg",
  16740. extra: 2756 / 1600,
  16741. bottom: 0.01
  16742. }
  16743. },
  16744. },
  16745. [
  16746. {
  16747. name: "Small",
  16748. height: math.unit(3, "meters")
  16749. },
  16750. {
  16751. name: "Normal",
  16752. height: math.unit(8, "meters"),
  16753. default: true
  16754. },
  16755. {
  16756. name: "Normal+",
  16757. height: math.unit(10, "meters")
  16758. },
  16759. {
  16760. name: "Bigger",
  16761. height: math.unit(24, "meters")
  16762. },
  16763. {
  16764. name: "Huge",
  16765. height: math.unit(80, "meters")
  16766. },
  16767. ]
  16768. ))
  16769. characterMakers.push(() => makeCharacter(
  16770. { name: "Luca Cervicum" },
  16771. {
  16772. front: {
  16773. height: math.unit(6 + 2 / 12, "feet"),
  16774. weight: math.unit(153, "lb"),
  16775. name: "Front",
  16776. image: {
  16777. source: "./media/characters/luca-cervicum/front.svg",
  16778. extra: 370 / 327,
  16779. bottom: 0.015
  16780. }
  16781. },
  16782. back: {
  16783. height: math.unit(6 + 2 / 12, "feet"),
  16784. weight: math.unit(153, "lb"),
  16785. name: "Back",
  16786. image: {
  16787. source: "./media/characters/luca-cervicum/back.svg",
  16788. extra: 367 / 333,
  16789. bottom: 0.005
  16790. }
  16791. },
  16792. frontGear: {
  16793. height: math.unit(6 + 2 / 12, "feet"),
  16794. weight: math.unit(173, "lb"),
  16795. name: "Front (Gear)",
  16796. image: {
  16797. source: "./media/characters/luca-cervicum/front-gear.svg",
  16798. extra: 377 / 333,
  16799. bottom: 0.006
  16800. }
  16801. },
  16802. },
  16803. [
  16804. {
  16805. name: "Normal",
  16806. height: math.unit(6 + 2 / 12, "feet"),
  16807. default: true
  16808. },
  16809. ]
  16810. ))
  16811. characterMakers.push(() => makeCharacter(
  16812. { name: "Oliver" },
  16813. {
  16814. front: {
  16815. height: math.unit(6 + 1 / 12, "feet"),
  16816. weight: math.unit(304, "lb"),
  16817. name: "Front",
  16818. image: {
  16819. source: "./media/characters/oliver/front.svg",
  16820. extra: 157 / 143,
  16821. bottom: 0.08
  16822. }
  16823. },
  16824. },
  16825. [
  16826. {
  16827. name: "Normal",
  16828. height: math.unit(6 + 1 / 12, "feet"),
  16829. default: true
  16830. },
  16831. ]
  16832. ))
  16833. characterMakers.push(() => makeCharacter(
  16834. { name: "Shane" },
  16835. {
  16836. front: {
  16837. height: math.unit(5 + 7 / 12, "feet"),
  16838. weight: math.unit(140, "lb"),
  16839. name: "Front",
  16840. image: {
  16841. source: "./media/characters/shane/front.svg",
  16842. extra: 304 / 289,
  16843. bottom: 0.005
  16844. }
  16845. },
  16846. },
  16847. [
  16848. {
  16849. name: "Normal",
  16850. height: math.unit(5 + 7 / 12, "feet"),
  16851. default: true
  16852. },
  16853. ]
  16854. ))
  16855. characterMakers.push(() => makeCharacter(
  16856. { name: "Shin" },
  16857. {
  16858. front: {
  16859. height: math.unit(5 + 9 / 12, "feet"),
  16860. weight: math.unit(178, "lb"),
  16861. name: "Front",
  16862. image: {
  16863. source: "./media/characters/shin/front.svg",
  16864. extra: 159 / 151,
  16865. bottom: 0.015
  16866. }
  16867. },
  16868. },
  16869. [
  16870. {
  16871. name: "Normal",
  16872. height: math.unit(5 + 9 / 12, "feet"),
  16873. default: true
  16874. },
  16875. ]
  16876. ))
  16877. characterMakers.push(() => makeCharacter(
  16878. { name: "Xerxes" },
  16879. {
  16880. front: {
  16881. height: math.unit(5 + 10 / 12, "feet"),
  16882. weight: math.unit(168, "lb"),
  16883. name: "Front",
  16884. image: {
  16885. source: "./media/characters/xerxes/front.svg",
  16886. extra: 282 / 260,
  16887. bottom: 0.045
  16888. }
  16889. },
  16890. },
  16891. [
  16892. {
  16893. name: "Normal",
  16894. height: math.unit(5 + 10 / 12, "feet"),
  16895. default: true
  16896. },
  16897. ]
  16898. ))
  16899. characterMakers.push(() => makeCharacter(
  16900. { name: "Chaska" },
  16901. {
  16902. front: {
  16903. height: math.unit(6 + 7 / 12, "feet"),
  16904. weight: math.unit(208, "lb"),
  16905. name: "Front",
  16906. image: {
  16907. source: "./media/characters/chaska/front.svg",
  16908. extra: 332 / 319,
  16909. bottom: 0.015
  16910. }
  16911. },
  16912. },
  16913. [
  16914. {
  16915. name: "Normal",
  16916. height: math.unit(6 + 7 / 12, "feet"),
  16917. default: true
  16918. },
  16919. ]
  16920. ))
  16921. characterMakers.push(() => makeCharacter(
  16922. { name: "Enuk" },
  16923. {
  16924. front: {
  16925. height: math.unit(5 + 8 / 12, "feet"),
  16926. weight: math.unit(208, "lb"),
  16927. name: "Front",
  16928. image: {
  16929. source: "./media/characters/enuk/front.svg",
  16930. extra: 437 / 406,
  16931. bottom: 0.02
  16932. }
  16933. },
  16934. },
  16935. [
  16936. {
  16937. name: "Normal",
  16938. height: math.unit(5 + 8 / 12, "feet"),
  16939. default: true
  16940. },
  16941. ]
  16942. ))
  16943. characterMakers.push(() => makeCharacter(
  16944. { name: "Bruun" },
  16945. {
  16946. front: {
  16947. height: math.unit(5 + 10 / 12, "feet"),
  16948. weight: math.unit(252, "lb"),
  16949. name: "Front",
  16950. image: {
  16951. source: "./media/characters/bruun/front.svg",
  16952. extra: 197 / 187,
  16953. bottom: 0.012
  16954. }
  16955. },
  16956. },
  16957. [
  16958. {
  16959. name: "Normal",
  16960. height: math.unit(5 + 10 / 12, "feet"),
  16961. default: true
  16962. },
  16963. ]
  16964. ))
  16965. characterMakers.push(() => makeCharacter(
  16966. { name: "Alexeev" },
  16967. {
  16968. front: {
  16969. height: math.unit(6 + 10 / 12, "feet"),
  16970. weight: math.unit(255, "lb"),
  16971. name: "Front",
  16972. image: {
  16973. source: "./media/characters/alexeev/front.svg",
  16974. extra: 213 / 200,
  16975. bottom: 0.05
  16976. }
  16977. },
  16978. },
  16979. [
  16980. {
  16981. name: "Normal",
  16982. height: math.unit(6 + 10 / 12, "feet"),
  16983. default: true
  16984. },
  16985. ]
  16986. ))
  16987. characterMakers.push(() => makeCharacter(
  16988. { name: "Evelyn" },
  16989. {
  16990. front: {
  16991. height: math.unit(2 + 8 / 12, "feet"),
  16992. weight: math.unit(22, "lb"),
  16993. name: "Front",
  16994. image: {
  16995. source: "./media/characters/evelyn/front.svg",
  16996. extra: 208 / 180
  16997. }
  16998. },
  16999. },
  17000. [
  17001. {
  17002. name: "Normal",
  17003. height: math.unit(2 + 8 / 12, "feet"),
  17004. default: true
  17005. },
  17006. ]
  17007. ))
  17008. characterMakers.push(() => makeCharacter(
  17009. { name: "Inca" },
  17010. {
  17011. front: {
  17012. height: math.unit(5 + 9 / 12, "feet"),
  17013. weight: math.unit(139, "lb"),
  17014. name: "Front",
  17015. image: {
  17016. source: "./media/characters/inca/front.svg",
  17017. extra: 294 / 291,
  17018. bottom: 0.03
  17019. }
  17020. },
  17021. },
  17022. [
  17023. {
  17024. name: "Normal",
  17025. height: math.unit(5 + 9 / 12, "feet"),
  17026. default: true
  17027. },
  17028. ]
  17029. ))
  17030. characterMakers.push(() => makeCharacter(
  17031. { name: "Magdalene" },
  17032. {
  17033. front: {
  17034. height: math.unit(5 + 1 / 12, "feet"),
  17035. weight: math.unit(84, "lb"),
  17036. name: "Front",
  17037. image: {
  17038. source: "./media/characters/magdalene/front.svg",
  17039. extra: 293 / 273
  17040. }
  17041. },
  17042. },
  17043. [
  17044. {
  17045. name: "Normal",
  17046. height: math.unit(5 + 1 / 12, "feet"),
  17047. default: true
  17048. },
  17049. ]
  17050. ))
  17051. characterMakers.push(() => makeCharacter(
  17052. { name: "Mera" },
  17053. {
  17054. front: {
  17055. height: math.unit(6 + 3 / 12, "feet"),
  17056. weight: math.unit(185, "lb"),
  17057. name: "Front",
  17058. image: {
  17059. source: "./media/characters/mera/front.svg",
  17060. extra: 291 / 277,
  17061. bottom: 0.03
  17062. }
  17063. },
  17064. },
  17065. [
  17066. {
  17067. name: "Normal",
  17068. height: math.unit(6 + 3 / 12, "feet"),
  17069. default: true
  17070. },
  17071. ]
  17072. ))
  17073. characterMakers.push(() => makeCharacter(
  17074. { name: "Ceres" },
  17075. {
  17076. front: {
  17077. height: math.unit(6 + 7 / 12, "feet"),
  17078. weight: math.unit(160, "lb"),
  17079. name: "Front",
  17080. image: {
  17081. source: "./media/characters/ceres/front.svg",
  17082. extra: 1023 / 950,
  17083. bottom: 0.027
  17084. }
  17085. },
  17086. back: {
  17087. height: math.unit(6 + 7 / 12, "feet"),
  17088. weight: math.unit(160, "lb"),
  17089. name: "Back",
  17090. image: {
  17091. source: "./media/characters/ceres/back.svg",
  17092. extra: 1023 / 950
  17093. }
  17094. },
  17095. },
  17096. [
  17097. {
  17098. name: "Normal",
  17099. height: math.unit(6 + 7 / 12, "feet"),
  17100. default: true
  17101. },
  17102. ]
  17103. ))
  17104. characterMakers.push(() => makeCharacter(
  17105. { name: "Kris" },
  17106. {
  17107. front: {
  17108. height: math.unit(5 + 10 / 12, "feet"),
  17109. weight: math.unit(150, "lb"),
  17110. name: "Front",
  17111. image: {
  17112. source: "./media/characters/kris/front.svg",
  17113. extra: 885 / 803,
  17114. bottom: 0.03
  17115. }
  17116. },
  17117. },
  17118. [
  17119. {
  17120. name: "Normal",
  17121. height: math.unit(5 + 10 / 12, "feet"),
  17122. default: true
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Taluthus" },
  17128. {
  17129. front: {
  17130. height: math.unit(7, "feet"),
  17131. weight: math.unit(120, "kg"),
  17132. name: "Front",
  17133. image: {
  17134. source: "./media/characters/taluthus/front.svg",
  17135. extra: 903 / 833,
  17136. bottom: 0.015
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Normal",
  17143. height: math.unit(7, "feet"),
  17144. default: true
  17145. },
  17146. {
  17147. name: "Macro",
  17148. height: math.unit(300, "feet")
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Dawn" },
  17154. {
  17155. front: {
  17156. height: math.unit(5 + 9 / 12, "feet"),
  17157. weight: math.unit(145, "lb"),
  17158. name: "Front",
  17159. image: {
  17160. source: "./media/characters/dawn/front.svg",
  17161. extra: 2094 / 2016,
  17162. bottom: 0.025
  17163. }
  17164. },
  17165. back: {
  17166. height: math.unit(5 + 9 / 12, "feet"),
  17167. weight: math.unit(160, "lb"),
  17168. name: "Back",
  17169. image: {
  17170. source: "./media/characters/dawn/back.svg",
  17171. extra: 2112 / 2080,
  17172. bottom: 0.005
  17173. }
  17174. },
  17175. },
  17176. [
  17177. {
  17178. name: "Normal",
  17179. height: math.unit(6 + 7 / 12, "feet"),
  17180. default: true
  17181. },
  17182. ]
  17183. ))
  17184. characterMakers.push(() => makeCharacter(
  17185. { name: "Arador" },
  17186. {
  17187. anthro: {
  17188. height: math.unit(8 + 3 / 12, "feet"),
  17189. weight: math.unit(450, "lb"),
  17190. name: "Anthro",
  17191. image: {
  17192. source: "./media/characters/arador/anthro.svg",
  17193. extra: 1835 / 1718,
  17194. bottom: 0.025
  17195. }
  17196. },
  17197. feral: {
  17198. height: math.unit(4, "feet"),
  17199. weight: math.unit(200, "lb"),
  17200. name: "Feral",
  17201. image: {
  17202. source: "./media/characters/arador/feral.svg",
  17203. extra: 1683 / 1514,
  17204. bottom: 0.07
  17205. }
  17206. },
  17207. },
  17208. [
  17209. {
  17210. name: "Normal",
  17211. height: math.unit(8 + 3 / 12, "feet")
  17212. },
  17213. {
  17214. name: "Macro",
  17215. height: math.unit(82.5, "feet"),
  17216. default: true
  17217. },
  17218. ]
  17219. ))
  17220. characterMakers.push(() => makeCharacter(
  17221. { name: "Dharsi" },
  17222. {
  17223. front: {
  17224. height: math.unit(5 + 10 / 12, "feet"),
  17225. weight: math.unit(125, "lb"),
  17226. name: "Front",
  17227. image: {
  17228. source: "./media/characters/dharsi/front.svg",
  17229. extra: 716 / 630,
  17230. bottom: 0.035
  17231. }
  17232. },
  17233. },
  17234. [
  17235. {
  17236. name: "Nano",
  17237. height: math.unit(100, "nm")
  17238. },
  17239. {
  17240. name: "Micro",
  17241. height: math.unit(2, "inches")
  17242. },
  17243. {
  17244. name: "Normal",
  17245. height: math.unit(5 + 10 / 12, "feet"),
  17246. default: true
  17247. },
  17248. {
  17249. name: "Macro",
  17250. height: math.unit(1000, "feet")
  17251. },
  17252. {
  17253. name: "Megamacro",
  17254. height: math.unit(10, "miles")
  17255. },
  17256. {
  17257. name: "Gigamacro",
  17258. height: math.unit(3000, "miles")
  17259. },
  17260. {
  17261. name: "Teramacro",
  17262. height: math.unit(500000, "miles")
  17263. },
  17264. {
  17265. name: "Teramacro+",
  17266. height: math.unit(30, "galaxies")
  17267. },
  17268. ]
  17269. ))
  17270. characterMakers.push(() => makeCharacter(
  17271. { name: "Deathy" },
  17272. {
  17273. front: {
  17274. height: math.unit(6, "feet"),
  17275. weight: math.unit(150, "lb"),
  17276. name: "Front",
  17277. image: {
  17278. source: "./media/characters/deathy/front.svg",
  17279. extra: 1552 / 1463,
  17280. bottom: 0.025
  17281. }
  17282. },
  17283. side: {
  17284. height: math.unit(6, "feet"),
  17285. weight: math.unit(150, "lb"),
  17286. name: "Side",
  17287. image: {
  17288. source: "./media/characters/deathy/side.svg",
  17289. extra: 1604 / 1455,
  17290. bottom: 0.025
  17291. }
  17292. },
  17293. back: {
  17294. height: math.unit(6, "feet"),
  17295. weight: math.unit(150, "lb"),
  17296. name: "Back",
  17297. image: {
  17298. source: "./media/characters/deathy/back.svg",
  17299. extra: 1580 / 1463,
  17300. bottom: 0.005
  17301. }
  17302. },
  17303. },
  17304. [
  17305. {
  17306. name: "Micro",
  17307. height: math.unit(5, "millimeters")
  17308. },
  17309. {
  17310. name: "Normal",
  17311. height: math.unit(6 + 5 / 12, "feet"),
  17312. default: true
  17313. },
  17314. ]
  17315. ))
  17316. characterMakers.push(() => makeCharacter(
  17317. { name: "Juniper" },
  17318. {
  17319. front: {
  17320. height: math.unit(16, "feet"),
  17321. weight: math.unit(4000, "lb"),
  17322. name: "Front",
  17323. image: {
  17324. source: "./media/characters/juniper/front.svg",
  17325. bottom: 0.04
  17326. }
  17327. },
  17328. },
  17329. [
  17330. {
  17331. name: "Normal",
  17332. height: math.unit(16, "feet"),
  17333. default: true
  17334. },
  17335. ]
  17336. ))
  17337. characterMakers.push(() => makeCharacter(
  17338. { name: "Hipster" },
  17339. {
  17340. front: {
  17341. height: math.unit(6, "feet"),
  17342. weight: math.unit(150, "lb"),
  17343. name: "Front",
  17344. image: {
  17345. source: "./media/characters/hipster/front.svg",
  17346. extra: 1312 / 1209,
  17347. bottom: 0.025
  17348. }
  17349. },
  17350. back: {
  17351. height: math.unit(6, "feet"),
  17352. weight: math.unit(150, "lb"),
  17353. name: "Back",
  17354. image: {
  17355. source: "./media/characters/hipster/back.svg",
  17356. extra: 1281 / 1196,
  17357. bottom: 0.01
  17358. }
  17359. },
  17360. },
  17361. [
  17362. {
  17363. name: "Micro",
  17364. height: math.unit(1, "mm")
  17365. },
  17366. {
  17367. name: "Normal",
  17368. height: math.unit(4, "inches"),
  17369. default: true
  17370. },
  17371. {
  17372. name: "Macro",
  17373. height: math.unit(500, "feet")
  17374. },
  17375. {
  17376. name: "Megamacro",
  17377. height: math.unit(1000, "miles")
  17378. },
  17379. ]
  17380. ))
  17381. characterMakers.push(() => makeCharacter(
  17382. { name: "Tendirmuldr" },
  17383. {
  17384. front: {
  17385. height: math.unit(6, "feet"),
  17386. weight: math.unit(150, "lb"),
  17387. name: "Front",
  17388. image: {
  17389. source: "./media/characters/tendirmuldr/front.svg",
  17390. extra: 1878 / 1772,
  17391. bottom: 0.015
  17392. }
  17393. },
  17394. },
  17395. [
  17396. {
  17397. name: "Megamacro",
  17398. height: math.unit(1500, "miles"),
  17399. default: true
  17400. },
  17401. ]
  17402. ))
  17403. characterMakers.push(() => makeCharacter(
  17404. { name: "Mort" },
  17405. {
  17406. front: {
  17407. height: math.unit(14, "feet"),
  17408. weight: math.unit(12000, "lb"),
  17409. name: "Front",
  17410. image: {
  17411. source: "./media/characters/mort/front.svg",
  17412. extra: 365 / 318,
  17413. bottom: 0.01
  17414. }
  17415. },
  17416. side: {
  17417. height: math.unit(14, "feet"),
  17418. weight: math.unit(12000, "lb"),
  17419. name: "Side",
  17420. image: {
  17421. source: "./media/characters/mort/side.svg",
  17422. extra: 365 / 318,
  17423. bottom: 0.052
  17424. },
  17425. default: true
  17426. },
  17427. back: {
  17428. height: math.unit(14, "feet"),
  17429. weight: math.unit(12000, "lb"),
  17430. name: "Back",
  17431. image: {
  17432. source: "./media/characters/mort/back.svg",
  17433. extra: 371 / 332,
  17434. bottom: 0.18
  17435. }
  17436. },
  17437. },
  17438. [
  17439. {
  17440. name: "Normal",
  17441. height: math.unit(14, "feet"),
  17442. default: true
  17443. },
  17444. ]
  17445. ))
  17446. characterMakers.push(() => makeCharacter(
  17447. { name: "Lycoa" },
  17448. {
  17449. front: {
  17450. height: math.unit(8, "feet"),
  17451. weight: math.unit(1, "ton"),
  17452. name: "Front",
  17453. image: {
  17454. source: "./media/characters/lycoa/front.svg",
  17455. extra: 1875 / 1789,
  17456. bottom: 0.022
  17457. }
  17458. },
  17459. back: {
  17460. height: math.unit(8, "feet"),
  17461. weight: math.unit(1, "ton"),
  17462. name: "Back",
  17463. image: {
  17464. source: "./media/characters/lycoa/back.svg",
  17465. extra: 1835 / 1781,
  17466. bottom: 0.03
  17467. }
  17468. },
  17469. },
  17470. [
  17471. {
  17472. name: "Normal",
  17473. height: math.unit(8, "feet"),
  17474. default: true
  17475. },
  17476. {
  17477. name: "Macro",
  17478. height: math.unit(30, "feet")
  17479. },
  17480. ]
  17481. ))
  17482. characterMakers.push(() => makeCharacter(
  17483. { name: "Naldara" },
  17484. {
  17485. front: {
  17486. height: math.unit(4 + 2 / 12, "feet"),
  17487. weight: math.unit(70, "lb"),
  17488. name: "Front",
  17489. image: {
  17490. source: "./media/characters/naldara/front.svg",
  17491. extra: 841 / 720,
  17492. bottom: 0.04
  17493. }
  17494. },
  17495. },
  17496. [
  17497. {
  17498. name: "Normal",
  17499. height: math.unit(4 + 2 / 12, "feet"),
  17500. default: true
  17501. },
  17502. ]
  17503. ))
  17504. characterMakers.push(() => makeCharacter(
  17505. { name: "Briar" },
  17506. {
  17507. front: {
  17508. height: math.unit(13 + 7 / 12, "feet"),
  17509. weight: math.unit(1500, "lb"),
  17510. name: "Front",
  17511. image: {
  17512. source: "./media/characters/briar/front.svg",
  17513. extra: 626 / 596,
  17514. bottom: 0.08
  17515. }
  17516. },
  17517. },
  17518. [
  17519. {
  17520. name: "Normal",
  17521. height: math.unit(13 + 7 / 12, "feet"),
  17522. default: true
  17523. },
  17524. ]
  17525. ))
  17526. characterMakers.push(() => makeCharacter(
  17527. { name: "Vanguard" },
  17528. {
  17529. side: {
  17530. height: math.unit(10, "feet"),
  17531. weight: math.unit(500, "lb"),
  17532. name: "Side",
  17533. image: {
  17534. source: "./media/characters/vanguard/side.svg",
  17535. extra: 502 / 425,
  17536. bottom: 0.087
  17537. }
  17538. },
  17539. },
  17540. [
  17541. {
  17542. name: "Normal",
  17543. height: math.unit(10, "feet"),
  17544. default: true
  17545. },
  17546. ]
  17547. ))
  17548. characterMakers.push(() => makeCharacter(
  17549. { name: "Artemis" },
  17550. {
  17551. front: {
  17552. height: math.unit(7.5, "feet"),
  17553. weight: math.unit(2, "lb"),
  17554. name: "Front",
  17555. image: {
  17556. source: "./media/characters/artemis/front.svg",
  17557. extra: 1192 / 1075,
  17558. bottom: 0.07
  17559. }
  17560. },
  17561. },
  17562. [
  17563. {
  17564. name: "Normal",
  17565. height: math.unit(7.5, "feet"),
  17566. default: true
  17567. },
  17568. {
  17569. name: "Enlarged",
  17570. height: math.unit(12, "feet")
  17571. },
  17572. ]
  17573. ))
  17574. characterMakers.push(() => makeCharacter(
  17575. { name: "Kira" },
  17576. {
  17577. front: {
  17578. height: math.unit(5 + 3 / 12, "feet"),
  17579. weight: math.unit(160, "lb"),
  17580. name: "Front",
  17581. image: {
  17582. source: "./media/characters/kira/front.svg",
  17583. extra: 906 / 786,
  17584. bottom: 0.01
  17585. }
  17586. },
  17587. back: {
  17588. height: math.unit(5 + 3 / 12, "feet"),
  17589. weight: math.unit(160, "lb"),
  17590. name: "Back",
  17591. image: {
  17592. source: "./media/characters/kira/back.svg",
  17593. extra: 882 / 757,
  17594. bottom: 0.005
  17595. }
  17596. },
  17597. frontDressed: {
  17598. height: math.unit(5 + 3 / 12, "feet"),
  17599. weight: math.unit(160, "lb"),
  17600. name: "Front (Dressed)",
  17601. image: {
  17602. source: "./media/characters/kira/front-dressed.svg",
  17603. extra: 906 / 786,
  17604. bottom: 0.01
  17605. }
  17606. },
  17607. beans: {
  17608. height: math.unit(0.92, "feet"),
  17609. name: "Beans",
  17610. image: {
  17611. source: "./media/characters/kira/beans.svg"
  17612. }
  17613. },
  17614. },
  17615. [
  17616. {
  17617. name: "Normal",
  17618. height: math.unit(5 + 3 / 12, "feet"),
  17619. default: true
  17620. },
  17621. ]
  17622. ))
  17623. characterMakers.push(() => makeCharacter(
  17624. { name: "Scramble" },
  17625. {
  17626. front: {
  17627. height: math.unit(5 + 4 / 12, "feet"),
  17628. weight: math.unit(145, "lb"),
  17629. name: "Front",
  17630. image: {
  17631. source: "./media/characters/scramble/front.svg",
  17632. extra: 763 / 727,
  17633. bottom: 0.05
  17634. }
  17635. },
  17636. back: {
  17637. height: math.unit(5 + 4 / 12, "feet"),
  17638. weight: math.unit(145, "lb"),
  17639. name: "Back",
  17640. image: {
  17641. source: "./media/characters/scramble/back.svg",
  17642. extra: 826 / 737,
  17643. bottom: 0.002
  17644. }
  17645. },
  17646. },
  17647. [
  17648. {
  17649. name: "Normal",
  17650. height: math.unit(5 + 4 / 12, "feet"),
  17651. default: true
  17652. },
  17653. ]
  17654. ))
  17655. characterMakers.push(() => makeCharacter(
  17656. { name: "Biscuit" },
  17657. {
  17658. side: {
  17659. height: math.unit(6 + 2 / 12, "feet"),
  17660. weight: math.unit(190, "lb"),
  17661. name: "Side",
  17662. image: {
  17663. source: "./media/characters/biscuit/side.svg",
  17664. extra: 858 / 791,
  17665. bottom: 0.044
  17666. }
  17667. },
  17668. },
  17669. [
  17670. {
  17671. name: "Normal",
  17672. height: math.unit(6 + 2 / 12, "feet"),
  17673. default: true
  17674. },
  17675. ]
  17676. ))
  17677. characterMakers.push(() => makeCharacter(
  17678. { name: "Poffin" },
  17679. {
  17680. front: {
  17681. height: math.unit(5 + 2 / 12, "feet"),
  17682. weight: math.unit(120, "lb"),
  17683. name: "Front",
  17684. image: {
  17685. source: "./media/characters/poffin/front.svg",
  17686. extra: 786 / 680,
  17687. bottom: 0.005
  17688. }
  17689. },
  17690. },
  17691. [
  17692. {
  17693. name: "Normal",
  17694. height: math.unit(5 + 2 / 12, "feet"),
  17695. default: true
  17696. },
  17697. ]
  17698. ))
  17699. characterMakers.push(() => makeCharacter(
  17700. { name: "Dhari" },
  17701. {
  17702. front: {
  17703. height: math.unit(6 + 3 / 12, "feet"),
  17704. weight: math.unit(519, "lb"),
  17705. name: "Front",
  17706. image: {
  17707. source: "./media/characters/dhari/front.svg",
  17708. extra: 1048 / 946,
  17709. bottom: 0.015
  17710. }
  17711. },
  17712. back: {
  17713. height: math.unit(6 + 3 / 12, "feet"),
  17714. weight: math.unit(519, "lb"),
  17715. name: "Back",
  17716. image: {
  17717. source: "./media/characters/dhari/back.svg",
  17718. extra: 1048 / 931,
  17719. bottom: 0.005
  17720. }
  17721. },
  17722. frontDressed: {
  17723. height: math.unit(6 + 3 / 12, "feet"),
  17724. weight: math.unit(519, "lb"),
  17725. name: "Front (Dressed)",
  17726. image: {
  17727. source: "./media/characters/dhari/front-dressed.svg",
  17728. extra: 1713 / 1546,
  17729. bottom: 0.02
  17730. }
  17731. },
  17732. backDressed: {
  17733. height: math.unit(6 + 3 / 12, "feet"),
  17734. weight: math.unit(519, "lb"),
  17735. name: "Back (Dressed)",
  17736. image: {
  17737. source: "./media/characters/dhari/back-dressed.svg",
  17738. extra: 1699 / 1537,
  17739. bottom: 0.01
  17740. }
  17741. },
  17742. maw: {
  17743. height: math.unit(0.95, "feet"),
  17744. name: "Maw",
  17745. image: {
  17746. source: "./media/characters/dhari/maw.svg"
  17747. }
  17748. },
  17749. wereFront: {
  17750. height: math.unit(12 + 8 / 12, "feet"),
  17751. weight: math.unit(4000, "lb"),
  17752. name: "Front (Were)",
  17753. image: {
  17754. source: "./media/characters/dhari/were-front.svg",
  17755. extra: 1065 / 969,
  17756. bottom: 0.015
  17757. }
  17758. },
  17759. wereBack: {
  17760. height: math.unit(12 + 8 / 12, "feet"),
  17761. weight: math.unit(4000, "lb"),
  17762. name: "Back (Were)",
  17763. image: {
  17764. source: "./media/characters/dhari/were-back.svg",
  17765. extra: 1065 / 969,
  17766. bottom: 0.012
  17767. }
  17768. },
  17769. wereMaw: {
  17770. height: math.unit(0.625, "meters"),
  17771. name: "Maw (Were)",
  17772. image: {
  17773. source: "./media/characters/dhari/were-maw.svg"
  17774. }
  17775. },
  17776. },
  17777. [
  17778. {
  17779. name: "Normal",
  17780. height: math.unit(6 + 3 / 12, "feet"),
  17781. default: true
  17782. },
  17783. ]
  17784. ))
  17785. characterMakers.push(() => makeCharacter(
  17786. { name: "Rena Dyne" },
  17787. {
  17788. anthro: {
  17789. height: math.unit(5 + 7 / 12, "feet"),
  17790. weight: math.unit(175, "lb"),
  17791. name: "Anthro",
  17792. image: {
  17793. source: "./media/characters/rena-dyne/anthro.svg",
  17794. extra: 1849 / 1785,
  17795. bottom: 0.005
  17796. }
  17797. },
  17798. taur: {
  17799. height: math.unit(15 + 6 / 12, "feet"),
  17800. weight: math.unit(8000, "lb"),
  17801. name: "Taur",
  17802. image: {
  17803. source: "./media/characters/rena-dyne/taur.svg",
  17804. extra: 2315 / 2234,
  17805. bottom: 0.033
  17806. }
  17807. },
  17808. },
  17809. [
  17810. {
  17811. name: "Normal",
  17812. height: math.unit(5 + 7 / 12, "feet"),
  17813. default: true
  17814. },
  17815. ]
  17816. ))
  17817. characterMakers.push(() => makeCharacter(
  17818. { name: "Weremeep" },
  17819. {
  17820. front: {
  17821. height: math.unit(8, "feet"),
  17822. weight: math.unit(600, "lb"),
  17823. name: "Front",
  17824. image: {
  17825. source: "./media/characters/weremeep/front.svg",
  17826. extra: 967 / 862,
  17827. bottom: 0.01
  17828. }
  17829. },
  17830. },
  17831. [
  17832. {
  17833. name: "Normal",
  17834. height: math.unit(8, "feet"),
  17835. default: true
  17836. },
  17837. {
  17838. name: "Lorg",
  17839. height: math.unit(12, "feet")
  17840. },
  17841. {
  17842. name: "Oh Lawd She Comin'",
  17843. height: math.unit(20, "feet")
  17844. },
  17845. ]
  17846. ))
  17847. characterMakers.push(() => makeCharacter(
  17848. { name: "Reza" },
  17849. {
  17850. front: {
  17851. height: math.unit(4, "feet"),
  17852. weight: math.unit(90, "lb"),
  17853. name: "Front",
  17854. image: {
  17855. source: "./media/characters/reza/front.svg",
  17856. extra: 1183 / 1111,
  17857. bottom: 0.017
  17858. }
  17859. },
  17860. back: {
  17861. height: math.unit(4, "feet"),
  17862. weight: math.unit(90, "lb"),
  17863. name: "Back",
  17864. image: {
  17865. source: "./media/characters/reza/back.svg",
  17866. extra: 1183 / 1111,
  17867. bottom: 0.01
  17868. }
  17869. },
  17870. },
  17871. [
  17872. {
  17873. name: "Normal",
  17874. height: math.unit(4, "feet"),
  17875. default: true
  17876. },
  17877. ]
  17878. ))
  17879. characterMakers.push(() => makeCharacter(
  17880. { name: "Athea" },
  17881. {
  17882. side: {
  17883. height: math.unit(15, "feet"),
  17884. weight: math.unit(14, "tons"),
  17885. name: "Side",
  17886. image: {
  17887. source: "./media/characters/athea/side.svg",
  17888. extra: 960 / 540,
  17889. bottom: 0.003
  17890. }
  17891. },
  17892. sitting: {
  17893. height: math.unit(6 * 2.85, "feet"),
  17894. weight: math.unit(14, "tons"),
  17895. name: "Sitting",
  17896. image: {
  17897. source: "./media/characters/athea/sitting.svg",
  17898. extra: 621 / 581,
  17899. bottom: 0.075
  17900. }
  17901. },
  17902. maw: {
  17903. height: math.unit(7.59498031496063, "feet"),
  17904. name: "Maw",
  17905. image: {
  17906. source: "./media/characters/athea/maw.svg"
  17907. }
  17908. },
  17909. },
  17910. [
  17911. {
  17912. name: "Lap Cat",
  17913. height: math.unit(2.5, "feet")
  17914. },
  17915. {
  17916. name: "Minimacro",
  17917. height: math.unit(15, "feet"),
  17918. default: true
  17919. },
  17920. {
  17921. name: "Macro",
  17922. height: math.unit(120, "feet")
  17923. },
  17924. {
  17925. name: "Macro+",
  17926. height: math.unit(640, "feet")
  17927. },
  17928. {
  17929. name: "Colossus",
  17930. height: math.unit(2.2, "miles")
  17931. },
  17932. ]
  17933. ))
  17934. characterMakers.push(() => makeCharacter(
  17935. { name: "Seroko" },
  17936. {
  17937. front: {
  17938. height: math.unit(8 + 8 / 12, "feet"),
  17939. weight: math.unit(130, "kg"),
  17940. name: "Front",
  17941. image: {
  17942. source: "./media/characters/seroko/front.svg",
  17943. extra: 1385 / 1280,
  17944. bottom: 0.025
  17945. }
  17946. },
  17947. back: {
  17948. height: math.unit(8 + 8 / 12, "feet"),
  17949. weight: math.unit(130, "kg"),
  17950. name: "Back",
  17951. image: {
  17952. source: "./media/characters/seroko/back.svg",
  17953. extra: 1369 / 1238,
  17954. bottom: 0.018
  17955. }
  17956. },
  17957. frontDressed: {
  17958. height: math.unit(8 + 8 / 12, "feet"),
  17959. weight: math.unit(130, "kg"),
  17960. name: "Front (Dressed)",
  17961. image: {
  17962. source: "./media/characters/seroko/front-dressed.svg",
  17963. extra: 1366 / 1275,
  17964. bottom: 0.03
  17965. }
  17966. },
  17967. },
  17968. [
  17969. {
  17970. name: "Normal",
  17971. height: math.unit(8 + 8 / 12, "feet"),
  17972. default: true
  17973. },
  17974. ]
  17975. ))
  17976. characterMakers.push(() => makeCharacter(
  17977. { name: "Quatzi" },
  17978. {
  17979. front: {
  17980. height: math.unit(5.5, "feet"),
  17981. weight: math.unit(160, "lb"),
  17982. name: "Front",
  17983. image: {
  17984. source: "./media/characters/quatzi/front.svg",
  17985. extra: 2346 / 2242,
  17986. bottom: 0.015
  17987. }
  17988. },
  17989. },
  17990. [
  17991. {
  17992. name: "Normal",
  17993. height: math.unit(5.5, "feet"),
  17994. default: true
  17995. },
  17996. {
  17997. name: "Big",
  17998. height: math.unit(7.7, "feet")
  17999. },
  18000. ]
  18001. ))
  18002. characterMakers.push(() => makeCharacter(
  18003. { name: "Sen" },
  18004. {
  18005. front: {
  18006. height: math.unit(5 + 11 / 12, "feet"),
  18007. weight: math.unit(180, "lb"),
  18008. name: "Front",
  18009. image: {
  18010. source: "./media/characters/sen/front.svg",
  18011. extra: 1321 / 1254,
  18012. bottom: 0.015
  18013. }
  18014. },
  18015. side: {
  18016. height: math.unit(5 + 11 / 12, "feet"),
  18017. weight: math.unit(180, "lb"),
  18018. name: "Side",
  18019. image: {
  18020. source: "./media/characters/sen/side.svg",
  18021. extra: 1321 / 1254,
  18022. bottom: 0.007
  18023. }
  18024. },
  18025. back: {
  18026. height: math.unit(5 + 11 / 12, "feet"),
  18027. weight: math.unit(180, "lb"),
  18028. name: "Back",
  18029. image: {
  18030. source: "./media/characters/sen/back.svg",
  18031. extra: 1321 / 1254
  18032. }
  18033. },
  18034. },
  18035. [
  18036. {
  18037. name: "Normal",
  18038. height: math.unit(5 + 11 / 12, "feet"),
  18039. default: true
  18040. },
  18041. ]
  18042. ))
  18043. characterMakers.push(() => makeCharacter(
  18044. { name: "Fruity" },
  18045. {
  18046. front: {
  18047. height: math.unit(166.6, "cm"),
  18048. weight: math.unit(66.6, "kg"),
  18049. name: "Front",
  18050. image: {
  18051. source: "./media/characters/fruity/front.svg",
  18052. extra: 1510 / 1386,
  18053. bottom: 0.04
  18054. }
  18055. },
  18056. back: {
  18057. height: math.unit(166.6, "cm"),
  18058. weight: math.unit(66.6, "lb"),
  18059. name: "Back",
  18060. image: {
  18061. source: "./media/characters/fruity/back.svg",
  18062. extra: 1563 / 1435,
  18063. bottom: 0.005
  18064. }
  18065. },
  18066. },
  18067. [
  18068. {
  18069. name: "Normal",
  18070. height: math.unit(166.6, "cm"),
  18071. default: true
  18072. },
  18073. {
  18074. name: "Demonic",
  18075. height: math.unit(166.6, "feet")
  18076. },
  18077. ]
  18078. ))
  18079. characterMakers.push(() => makeCharacter(
  18080. { name: "Zost" },
  18081. {
  18082. side: {
  18083. height: math.unit(10, "feet"),
  18084. weight: math.unit(500, "lb"),
  18085. name: "Side",
  18086. image: {
  18087. source: "./media/characters/zost/side.svg",
  18088. extra: 966 / 880,
  18089. bottom: 0.075
  18090. }
  18091. },
  18092. mawFront: {
  18093. height: math.unit(1.08, "meters"),
  18094. name: "Maw (Front)",
  18095. image: {
  18096. source: "./media/characters/zost/maw-front.svg"
  18097. }
  18098. },
  18099. mawSide: {
  18100. height: math.unit(2.66, "feet"),
  18101. name: "Maw (Side)",
  18102. image: {
  18103. source: "./media/characters/zost/maw-side.svg"
  18104. }
  18105. },
  18106. },
  18107. [
  18108. {
  18109. name: "Normal",
  18110. height: math.unit(10, "feet"),
  18111. default: true
  18112. },
  18113. ]
  18114. ))
  18115. characterMakers.push(() => makeCharacter(
  18116. { name: "Luci" },
  18117. {
  18118. front: {
  18119. height: math.unit(5 + 4 / 12, "feet"),
  18120. weight: math.unit(120, "lb"),
  18121. name: "Front",
  18122. image: {
  18123. source: "./media/characters/luci/front.svg",
  18124. extra: 1985 / 1884,
  18125. bottom: 0.04
  18126. }
  18127. },
  18128. back: {
  18129. height: math.unit(5 + 4 / 12, "feet"),
  18130. weight: math.unit(120, "lb"),
  18131. name: "Back",
  18132. image: {
  18133. source: "./media/characters/luci/back.svg",
  18134. extra: 1892 / 1791,
  18135. bottom: 0.002
  18136. }
  18137. },
  18138. },
  18139. [
  18140. {
  18141. name: "Normal",
  18142. height: math.unit(5 + 4 / 12, "feet"),
  18143. default: true
  18144. },
  18145. ]
  18146. ))
  18147. characterMakers.push(() => makeCharacter(
  18148. { name: "2th" },
  18149. {
  18150. front: {
  18151. height: math.unit(1500, "feet"),
  18152. weight: math.unit(3.8e6, "tons"),
  18153. name: "Front",
  18154. image: {
  18155. source: "./media/characters/2th/front.svg",
  18156. extra: 3489 / 3350,
  18157. bottom: 0.1
  18158. }
  18159. },
  18160. foot: {
  18161. height: math.unit(461, "feet"),
  18162. name: "Foot",
  18163. image: {
  18164. source: "./media/characters/2th/foot.svg"
  18165. }
  18166. },
  18167. },
  18168. [
  18169. {
  18170. name: "\"Micro\"",
  18171. height: math.unit(15 + 7 / 12, "feet")
  18172. },
  18173. {
  18174. name: "Normal",
  18175. height: math.unit(1500, "feet"),
  18176. default: true
  18177. },
  18178. {
  18179. name: "Macro",
  18180. height: math.unit(5000, "feet")
  18181. },
  18182. {
  18183. name: "Megamacro",
  18184. height: math.unit(15, "miles")
  18185. },
  18186. {
  18187. name: "Gigamacro",
  18188. height: math.unit(4000, "miles")
  18189. },
  18190. {
  18191. name: "Galactic",
  18192. height: math.unit(50, "AU")
  18193. },
  18194. ]
  18195. ))
  18196. characterMakers.push(() => makeCharacter(
  18197. { name: "Amethyst" },
  18198. {
  18199. front: {
  18200. height: math.unit(5 + 6 / 12, "feet"),
  18201. weight: math.unit(220, "lb"),
  18202. name: "Front",
  18203. image: {
  18204. source: "./media/characters/amethyst/front.svg",
  18205. extra: 2078 / 2040,
  18206. bottom: 0.045
  18207. }
  18208. },
  18209. back: {
  18210. height: math.unit(5 + 6 / 12, "feet"),
  18211. weight: math.unit(220, "lb"),
  18212. name: "Back",
  18213. image: {
  18214. source: "./media/characters/amethyst/back.svg",
  18215. extra: 2021 / 1989,
  18216. bottom: 0.02
  18217. }
  18218. },
  18219. },
  18220. [
  18221. {
  18222. name: "Normal",
  18223. height: math.unit(5 + 6 / 12, "feet"),
  18224. default: true
  18225. },
  18226. ]
  18227. ))
  18228. characterMakers.push(() => makeCharacter(
  18229. { name: "Yumi Akiyama" },
  18230. {
  18231. front: {
  18232. height: math.unit(4 + 11 / 12, "feet"),
  18233. weight: math.unit(120, "lb"),
  18234. name: "Front",
  18235. image: {
  18236. source: "./media/characters/yumi-akiyama/front.svg",
  18237. extra: 1327 / 1235,
  18238. bottom: 0.02
  18239. }
  18240. },
  18241. back: {
  18242. height: math.unit(4 + 11 / 12, "feet"),
  18243. weight: math.unit(120, "lb"),
  18244. name: "Back",
  18245. image: {
  18246. source: "./media/characters/yumi-akiyama/back.svg",
  18247. extra: 1287 / 1245,
  18248. bottom: 0.002
  18249. }
  18250. },
  18251. },
  18252. [
  18253. {
  18254. name: "Galactic",
  18255. height: math.unit(50, "galaxies"),
  18256. default: true
  18257. },
  18258. {
  18259. name: "Universal",
  18260. height: math.unit(100, "universes")
  18261. },
  18262. ]
  18263. ))
  18264. characterMakers.push(() => makeCharacter(
  18265. { name: "Rifter Yrmori" },
  18266. {
  18267. front: {
  18268. height: math.unit(8, "feet"),
  18269. weight: math.unit(500, "lb"),
  18270. name: "Front",
  18271. image: {
  18272. source: "./media/characters/rifter-yrmori/front.svg",
  18273. extra: 1180 / 1125,
  18274. bottom: 0.02
  18275. }
  18276. },
  18277. back: {
  18278. height: math.unit(8, "feet"),
  18279. weight: math.unit(500, "lb"),
  18280. name: "Back",
  18281. image: {
  18282. source: "./media/characters/rifter-yrmori/back.svg",
  18283. extra: 1190 / 1145,
  18284. bottom: 0.001
  18285. }
  18286. },
  18287. wings: {
  18288. height: math.unit(7.75, "feet"),
  18289. weight: math.unit(500, "lb"),
  18290. name: "Wings",
  18291. image: {
  18292. source: "./media/characters/rifter-yrmori/wings.svg",
  18293. extra: 1357 / 1285
  18294. }
  18295. },
  18296. maw: {
  18297. height: math.unit(0.8, "feet"),
  18298. name: "Maw",
  18299. image: {
  18300. source: "./media/characters/rifter-yrmori/maw.svg"
  18301. }
  18302. },
  18303. },
  18304. [
  18305. {
  18306. name: "Normal",
  18307. height: math.unit(8, "feet"),
  18308. default: true
  18309. },
  18310. {
  18311. name: "Macro",
  18312. height: math.unit(42, "meters")
  18313. },
  18314. ]
  18315. ))
  18316. characterMakers.push(() => makeCharacter(
  18317. { name: "Tahajin" },
  18318. {
  18319. were: {
  18320. height: math.unit(25 + 6 / 12, "feet"),
  18321. weight: math.unit(10000, "lb"),
  18322. name: "Were",
  18323. image: {
  18324. source: "./media/characters/tahajin/were.svg",
  18325. extra: 801 / 770,
  18326. bottom: 0.042
  18327. }
  18328. },
  18329. aquatic: {
  18330. height: math.unit(6 + 4 / 12, "feet"),
  18331. weight: math.unit(160, "lb"),
  18332. name: "Aquatic",
  18333. image: {
  18334. source: "./media/characters/tahajin/aquatic.svg",
  18335. extra: 572 / 542,
  18336. bottom: 0.04
  18337. }
  18338. },
  18339. chow: {
  18340. height: math.unit(8 + 11 / 12, "feet"),
  18341. weight: math.unit(450, "lb"),
  18342. name: "Chow",
  18343. image: {
  18344. source: "./media/characters/tahajin/chow.svg",
  18345. extra: 660 / 640,
  18346. bottom: 0.015
  18347. }
  18348. },
  18349. demiNaga: {
  18350. height: math.unit(6 + 8 / 12, "feet"),
  18351. weight: math.unit(300, "lb"),
  18352. name: "Demi Naga",
  18353. image: {
  18354. source: "./media/characters/tahajin/demi-naga.svg",
  18355. extra: 643 / 615,
  18356. bottom: 0.1
  18357. }
  18358. },
  18359. data: {
  18360. height: math.unit(5, "inches"),
  18361. weight: math.unit(0.1, "lb"),
  18362. name: "Data",
  18363. image: {
  18364. source: "./media/characters/tahajin/data.svg"
  18365. }
  18366. },
  18367. fluu: {
  18368. height: math.unit(5 + 7 / 12, "feet"),
  18369. weight: math.unit(140, "lb"),
  18370. name: "Fluu",
  18371. image: {
  18372. source: "./media/characters/tahajin/fluu.svg",
  18373. extra: 628 / 592,
  18374. bottom: 0.02
  18375. }
  18376. },
  18377. starWarrior: {
  18378. height: math.unit(4 + 5 / 12, "feet"),
  18379. weight: math.unit(50, "lb"),
  18380. name: "Star Warrior",
  18381. image: {
  18382. source: "./media/characters/tahajin/star-warrior.svg"
  18383. }
  18384. },
  18385. },
  18386. [
  18387. {
  18388. name: "Normal",
  18389. height: math.unit(25 + 6 / 12, "feet"),
  18390. default: true
  18391. },
  18392. ]
  18393. ))
  18394. characterMakers.push(() => makeCharacter(
  18395. { name: "Gabira" },
  18396. {
  18397. front: {
  18398. height: math.unit(8, "feet"),
  18399. weight: math.unit(350, "lb"),
  18400. name: "Front",
  18401. image: {
  18402. source: "./media/characters/gabira/front.svg",
  18403. extra: 608 / 580,
  18404. bottom: 0.03
  18405. }
  18406. },
  18407. back: {
  18408. height: math.unit(8, "feet"),
  18409. weight: math.unit(350, "lb"),
  18410. name: "Back",
  18411. image: {
  18412. source: "./media/characters/gabira/back.svg",
  18413. extra: 608 / 580,
  18414. bottom: 0.03
  18415. }
  18416. },
  18417. },
  18418. [
  18419. {
  18420. name: "Normal",
  18421. height: math.unit(8, "feet"),
  18422. default: true
  18423. },
  18424. ]
  18425. ))
  18426. characterMakers.push(() => makeCharacter(
  18427. { name: "Sasha Katraine" },
  18428. {
  18429. front: {
  18430. height: math.unit(5 + 3 / 12, "feet"),
  18431. weight: math.unit(137, "lb"),
  18432. name: "Front",
  18433. image: {
  18434. source: "./media/characters/sasha-katraine/front.svg",
  18435. bottom: 0.045
  18436. }
  18437. },
  18438. },
  18439. [
  18440. {
  18441. name: "Micro",
  18442. height: math.unit(5, "inches")
  18443. },
  18444. {
  18445. name: "Normal",
  18446. height: math.unit(5 + 3 / 12, "feet"),
  18447. default: true
  18448. },
  18449. ]
  18450. ))
  18451. characterMakers.push(() => makeCharacter(
  18452. { name: "Der" },
  18453. {
  18454. side: {
  18455. height: math.unit(4, "inches"),
  18456. weight: math.unit(200, "grams"),
  18457. name: "Side",
  18458. image: {
  18459. source: "./media/characters/der/side.svg",
  18460. extra: 719 / 400,
  18461. bottom: 30.6 / 749.9187
  18462. }
  18463. },
  18464. },
  18465. [
  18466. {
  18467. name: "Micro",
  18468. height: math.unit(4, "inches"),
  18469. default: true
  18470. },
  18471. ]
  18472. ))
  18473. characterMakers.push(() => makeCharacter(
  18474. { name: "Fixerdragon" },
  18475. {
  18476. side: {
  18477. height: math.unit(30, "meters"),
  18478. weight: math.unit(700, "tonnes"),
  18479. name: "Side",
  18480. image: {
  18481. source: "./media/characters/fixerdragon/side.svg",
  18482. extra: (1293.0514 - 116.03) / 1106.86,
  18483. bottom: 116.03 / 1293.0514
  18484. }
  18485. },
  18486. },
  18487. [
  18488. {
  18489. name: "Planck",
  18490. height: math.unit(1.6e-35, "meters")
  18491. },
  18492. {
  18493. name: "Micro",
  18494. height: math.unit(0.4, "meters")
  18495. },
  18496. {
  18497. name: "Normal",
  18498. height: math.unit(30, "meters"),
  18499. default: true
  18500. },
  18501. {
  18502. name: "Megamacro",
  18503. height: math.unit(1.2, "megameters")
  18504. },
  18505. {
  18506. name: "Teramacro",
  18507. height: math.unit(130, "terameters")
  18508. },
  18509. {
  18510. name: "Yottamacro",
  18511. height: math.unit(6200, "yottameters")
  18512. },
  18513. ]
  18514. ));
  18515. characterMakers.push(() => makeCharacter(
  18516. { name: "Kite" },
  18517. {
  18518. front: {
  18519. height: math.unit(8, "feet"),
  18520. weight: math.unit(250, "lb"),
  18521. name: "Front",
  18522. image: {
  18523. source: "./media/characters/kite/front.svg",
  18524. extra: 2796 / 2659,
  18525. bottom: 0.002
  18526. }
  18527. },
  18528. },
  18529. [
  18530. {
  18531. name: "Normal",
  18532. height: math.unit(8, "feet"),
  18533. default: true
  18534. },
  18535. {
  18536. name: "Macro",
  18537. height: math.unit(360, "feet")
  18538. },
  18539. {
  18540. name: "Megamacro",
  18541. height: math.unit(1500, "feet")
  18542. },
  18543. ]
  18544. ))
  18545. characterMakers.push(() => makeCharacter(
  18546. { name: "Poojawa Vynar" },
  18547. {
  18548. front: {
  18549. height: math.unit(5 + 10 / 12, "feet"),
  18550. weight: math.unit(150, "lb"),
  18551. name: "Front",
  18552. image: {
  18553. source: "./media/characters/poojawa-vynar/front.svg",
  18554. extra: (1506.1547 - 55) / 1356.6,
  18555. bottom: 55 / 1506.1547
  18556. }
  18557. },
  18558. frontTailless: {
  18559. height: math.unit(5 + 10 / 12, "feet"),
  18560. weight: math.unit(150, "lb"),
  18561. name: "Front (Tailless)",
  18562. image: {
  18563. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18564. extra: (1506.1547 - 55) / 1356.6,
  18565. bottom: 55 / 1506.1547
  18566. }
  18567. },
  18568. },
  18569. [
  18570. {
  18571. name: "Normal",
  18572. height: math.unit(5 + 10 / 12, "feet"),
  18573. default: true
  18574. },
  18575. ]
  18576. ))
  18577. characterMakers.push(() => makeCharacter(
  18578. { name: "Violette" },
  18579. {
  18580. front: {
  18581. height: math.unit(293, "meters"),
  18582. weight: math.unit(70400, "tons"),
  18583. name: "Front",
  18584. image: {
  18585. source: "./media/characters/violette/front.svg",
  18586. extra: 1227 / 1180,
  18587. bottom: 0.005
  18588. }
  18589. },
  18590. back: {
  18591. height: math.unit(293, "meters"),
  18592. weight: math.unit(70400, "tons"),
  18593. name: "Back",
  18594. image: {
  18595. source: "./media/characters/violette/back.svg",
  18596. extra: 1227 / 1180,
  18597. bottom: 0.005
  18598. }
  18599. },
  18600. },
  18601. [
  18602. {
  18603. name: "Macro",
  18604. height: math.unit(293, "meters"),
  18605. default: true
  18606. },
  18607. ]
  18608. ))
  18609. characterMakers.push(() => makeCharacter(
  18610. { name: "Alessandra" },
  18611. {
  18612. front: {
  18613. height: math.unit(1050, "feet"),
  18614. weight: math.unit(200000, "tons"),
  18615. name: "Front",
  18616. image: {
  18617. source: "./media/characters/alessandra/front.svg",
  18618. extra: 960 / 912,
  18619. bottom: 0.06
  18620. }
  18621. },
  18622. },
  18623. [
  18624. {
  18625. name: "Macro",
  18626. height: math.unit(1050, "feet")
  18627. },
  18628. {
  18629. name: "Macro+",
  18630. height: math.unit(900, "meters"),
  18631. default: true
  18632. },
  18633. ]
  18634. ))
  18635. characterMakers.push(() => makeCharacter(
  18636. { name: "Person", species: "Catdragon" },
  18637. {
  18638. front: {
  18639. height: math.unit(5, "feet"),
  18640. weight: math.unit(187, "lb"),
  18641. name: "Front",
  18642. image: {
  18643. source: "./media/characters/person/front.svg",
  18644. extra: 3087 / 2945,
  18645. bottom: 91 / 3181
  18646. }
  18647. },
  18648. },
  18649. [
  18650. {
  18651. name: "Micro",
  18652. height: math.unit(3, "inches")
  18653. },
  18654. {
  18655. name: "Normal",
  18656. height: math.unit(5, "feet"),
  18657. default: true
  18658. },
  18659. {
  18660. name: "Macro",
  18661. height: math.unit(90, "feet")
  18662. },
  18663. {
  18664. name: "Max Size",
  18665. height: math.unit(280, "feet")
  18666. },
  18667. ]
  18668. ))
  18669. characterMakers.push(() => makeCharacter(
  18670. { name: "Ty" },
  18671. {
  18672. front: {
  18673. height: math.unit(4.5, "meters"),
  18674. weight: math.unit(3200, "lb"),
  18675. name: "Front",
  18676. image: {
  18677. source: "./media/characters/ty/front.svg",
  18678. extra: 1038 / 960,
  18679. bottom: 31.156 / 1068
  18680. }
  18681. },
  18682. back: {
  18683. height: math.unit(4.5, "meters"),
  18684. weight: math.unit(3200, "lb"),
  18685. name: "Back",
  18686. image: {
  18687. source: "./media/characters/ty/back.svg",
  18688. extra: 1044 / 966,
  18689. bottom: 7.48 / 1049
  18690. }
  18691. },
  18692. },
  18693. [
  18694. {
  18695. name: "Normal",
  18696. height: math.unit(4.5, "meters"),
  18697. default: true
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Rocky" },
  18703. {
  18704. front: {
  18705. height: math.unit(5 + 4 / 12, "feet"),
  18706. weight: math.unit(115, "lb"),
  18707. name: "Front",
  18708. image: {
  18709. source: "./media/characters/rocky/front.svg",
  18710. extra: 1012 / 975,
  18711. bottom: 54 / 1066
  18712. }
  18713. },
  18714. },
  18715. [
  18716. {
  18717. name: "Normal",
  18718. height: math.unit(5 + 4 / 12, "feet"),
  18719. default: true
  18720. },
  18721. ]
  18722. ))
  18723. characterMakers.push(() => makeCharacter(
  18724. { name: "Ruin" },
  18725. {
  18726. upright: {
  18727. height: math.unit(6, "meters"),
  18728. weight: math.unit(4000, "kg"),
  18729. name: "Upright",
  18730. image: {
  18731. source: "./media/characters/ruin/upright.svg",
  18732. extra: 668 / 661,
  18733. bottom: 42 / 799.8396
  18734. }
  18735. },
  18736. },
  18737. [
  18738. {
  18739. name: "Normal",
  18740. height: math.unit(6, "meters")
  18741. },
  18742. ]
  18743. ))
  18744. characterMakers.push(() => makeCharacter(
  18745. { name: "Robin" },
  18746. {
  18747. front: {
  18748. height: math.unit(5, "feet"),
  18749. weight: math.unit(106, "lb"),
  18750. name: "Front",
  18751. image: {
  18752. source: "./media/characters/robin/front.svg",
  18753. extra: 862 / 799,
  18754. bottom: 42.4 / 914.8856
  18755. }
  18756. },
  18757. },
  18758. [
  18759. {
  18760. name: "Normal",
  18761. height: math.unit(5, "feet"),
  18762. default: true
  18763. },
  18764. ]
  18765. ))
  18766. characterMakers.push(() => makeCharacter(
  18767. { name: "Saian" },
  18768. {
  18769. side: {
  18770. height: math.unit(3, "feet"),
  18771. weight: math.unit(225, "lb"),
  18772. name: "Side",
  18773. image: {
  18774. source: "./media/characters/saian/side.svg",
  18775. extra: 566 / 356,
  18776. bottom: 79.7 / 643
  18777. }
  18778. },
  18779. maw: {
  18780. height: math.unit(2.85, "feet"),
  18781. name: "Maw",
  18782. image: {
  18783. source: "./media/characters/saian/maw.svg"
  18784. }
  18785. },
  18786. },
  18787. [
  18788. {
  18789. name: "Normal",
  18790. height: math.unit(3, "feet"),
  18791. default: true
  18792. },
  18793. ]
  18794. ))
  18795. characterMakers.push(() => makeCharacter(
  18796. { name: "Equus Silvermane" },
  18797. {
  18798. side: {
  18799. height: math.unit(8, "feet"),
  18800. weight: math.unit(300, "lb"),
  18801. name: "Side",
  18802. image: {
  18803. source: "./media/characters/equus-silvermane/side.svg",
  18804. extra: 2176 / 2050,
  18805. bottom: 65.7 / 2245
  18806. }
  18807. },
  18808. front: {
  18809. height: math.unit(8, "feet"),
  18810. weight: math.unit(300, "lb"),
  18811. name: "Front",
  18812. image: {
  18813. source: "./media/characters/equus-silvermane/front.svg",
  18814. extra: 4633 / 4400,
  18815. bottom: 71.3 / 4706.915
  18816. }
  18817. },
  18818. sideStepping: {
  18819. height: math.unit(8, "feet"),
  18820. weight: math.unit(300, "lb"),
  18821. name: "Side (Stepping)",
  18822. image: {
  18823. source: "./media/characters/equus-silvermane/side-stepping.svg",
  18824. extra: 1968 / 1860,
  18825. bottom: 16.4 / 1989
  18826. }
  18827. },
  18828. },
  18829. [
  18830. {
  18831. name: "Normal",
  18832. height: math.unit(8, "feet")
  18833. },
  18834. {
  18835. name: "Minimacro",
  18836. height: math.unit(75, "feet"),
  18837. default: true
  18838. },
  18839. {
  18840. name: "Macro",
  18841. height: math.unit(150, "feet")
  18842. },
  18843. {
  18844. name: "Macro+",
  18845. height: math.unit(1000, "feet")
  18846. },
  18847. {
  18848. name: "Megamacro",
  18849. height: math.unit(1, "mile")
  18850. },
  18851. ]
  18852. ))
  18853. characterMakers.push(() => makeCharacter(
  18854. { name: "Windar" },
  18855. {
  18856. side: {
  18857. height: math.unit(20, "feet"),
  18858. weight: math.unit(30000, "kg"),
  18859. name: "Side",
  18860. image: {
  18861. source: "./media/characters/windar/side.svg",
  18862. extra: 1491 / 1248,
  18863. bottom: 82.56 / 1568
  18864. }
  18865. },
  18866. },
  18867. [
  18868. {
  18869. name: "Normal",
  18870. height: math.unit(20, "feet"),
  18871. default: true
  18872. },
  18873. ]
  18874. ))
  18875. characterMakers.push(() => makeCharacter(
  18876. { name: "Melody" },
  18877. {
  18878. side: {
  18879. height: math.unit(15.66, "feet"),
  18880. weight: math.unit(150, "lb"),
  18881. name: "Side",
  18882. image: {
  18883. source: "./media/characters/melody/side.svg",
  18884. extra: 1097 / 944,
  18885. bottom: 11.8 / 1109
  18886. }
  18887. },
  18888. sideOutfit: {
  18889. height: math.unit(15.66, "feet"),
  18890. weight: math.unit(150, "lb"),
  18891. name: "Side (Outfit)",
  18892. image: {
  18893. source: "./media/characters/melody/side-outfit.svg",
  18894. extra: 1097 / 944,
  18895. bottom: 11.8 / 1109
  18896. }
  18897. },
  18898. },
  18899. [
  18900. {
  18901. name: "Normal",
  18902. height: math.unit(15.66, "feet"),
  18903. default: true
  18904. },
  18905. ]
  18906. ))
  18907. characterMakers.push(() => makeCharacter(
  18908. { name: "Windera" },
  18909. {
  18910. front: {
  18911. height: math.unit(8, "feet"),
  18912. weight: math.unit(325, "lb"),
  18913. name: "Front",
  18914. image: {
  18915. source: "./media/characters/windera/front.svg",
  18916. extra: 3180 / 2845,
  18917. bottom: 178 / 3365
  18918. }
  18919. },
  18920. },
  18921. [
  18922. {
  18923. name: "Normal",
  18924. height: math.unit(8, "feet"),
  18925. default: true
  18926. },
  18927. ]
  18928. ))
  18929. characterMakers.push(() => makeCharacter(
  18930. { name: "Sonear" },
  18931. {
  18932. front: {
  18933. height: math.unit(28.75, "feet"),
  18934. weight: math.unit(2000, "kg"),
  18935. name: "Front",
  18936. image: {
  18937. source: "./media/characters/sonear/front.svg",
  18938. extra: 1041.1 / 964.9,
  18939. bottom: 53.7 / 1096.6
  18940. }
  18941. },
  18942. },
  18943. [
  18944. {
  18945. name: "Normal",
  18946. height: math.unit(28.75, "feet"),
  18947. default: true
  18948. },
  18949. ]
  18950. ))
  18951. characterMakers.push(() => makeCharacter(
  18952. { name: "Kanara" },
  18953. {
  18954. side: {
  18955. height: math.unit(25.5, "feet"),
  18956. weight: math.unit(23000, "kg"),
  18957. name: "Side",
  18958. image: {
  18959. source: "./media/characters/kanara/side.svg"
  18960. }
  18961. },
  18962. },
  18963. [
  18964. {
  18965. name: "Normal",
  18966. height: math.unit(25.5, "feet"),
  18967. default: true
  18968. },
  18969. ]
  18970. ))
  18971. characterMakers.push(() => makeCharacter(
  18972. { name: "Ereus" },
  18973. {
  18974. side: {
  18975. height: math.unit(10, "feet"),
  18976. weight: math.unit(1000, "kg"),
  18977. name: "Side",
  18978. image: {
  18979. source: "./media/characters/ereus/side.svg",
  18980. extra: 1157 / 959,
  18981. bottom: 153 / 1312.5
  18982. }
  18983. },
  18984. },
  18985. [
  18986. {
  18987. name: "Normal",
  18988. height: math.unit(10, "feet"),
  18989. default: true
  18990. },
  18991. ]
  18992. ))
  18993. characterMakers.push(() => makeCharacter(
  18994. { name: "E-ter" },
  18995. {
  18996. side: {
  18997. height: math.unit(4.5, "feet"),
  18998. weight: math.unit(500, "lb"),
  18999. name: "Side",
  19000. image: {
  19001. source: "./media/characters/e-ter/side.svg",
  19002. extra: 1550 / 1248,
  19003. bottom: 146 / 1694
  19004. }
  19005. },
  19006. },
  19007. [
  19008. {
  19009. name: "Normal",
  19010. height: math.unit(4.5, "feet"),
  19011. default: true
  19012. },
  19013. ]
  19014. ))
  19015. characterMakers.push(() => makeCharacter(
  19016. { name: "Yamie" },
  19017. {
  19018. side: {
  19019. height: math.unit(9.7, "feet"),
  19020. weight: math.unit(4000, "kg"),
  19021. name: "Side",
  19022. image: {
  19023. source: "./media/characters/yamie/side.svg"
  19024. }
  19025. },
  19026. },
  19027. [
  19028. {
  19029. name: "Normal",
  19030. height: math.unit(9.7, "feet"),
  19031. default: true
  19032. },
  19033. ]
  19034. ))
  19035. characterMakers.push(() => makeCharacter(
  19036. { name: "Anders" },
  19037. {
  19038. front: {
  19039. height: math.unit(50, "feet"),
  19040. weight: math.unit(50000, "kg"),
  19041. name: "Front",
  19042. image: {
  19043. source: "./media/characters/anders/front.svg",
  19044. extra: 570 / 539,
  19045. bottom: 14.7 / 586.7
  19046. }
  19047. },
  19048. },
  19049. [
  19050. {
  19051. name: "Large",
  19052. height: math.unit(50, "feet")
  19053. },
  19054. {
  19055. name: "Macro",
  19056. height: math.unit(2000, "feet"),
  19057. default: true
  19058. },
  19059. {
  19060. name: "Megamacro",
  19061. height: math.unit(12, "miles")
  19062. },
  19063. ]
  19064. ))
  19065. characterMakers.push(() => makeCharacter(
  19066. { name: "Reban" },
  19067. {
  19068. front: {
  19069. height: math.unit(7 + 2 / 12, "feet"),
  19070. weight: math.unit(300, "lb"),
  19071. name: "Front",
  19072. image: {
  19073. source: "./media/characters/reban/front.svg",
  19074. extra: 516 / 487,
  19075. bottom: 42.82 / 558.356
  19076. }
  19077. },
  19078. dick: {
  19079. height: math.unit(7 / 5, "feet"),
  19080. name: "Dick",
  19081. image: {
  19082. source: "./media/characters/reban/dick.svg"
  19083. }
  19084. },
  19085. },
  19086. [
  19087. {
  19088. name: "Natural Height",
  19089. height: math.unit(7 + 2 / 12, "feet")
  19090. },
  19091. {
  19092. name: "Macro",
  19093. height: math.unit(500, "feet"),
  19094. default: true
  19095. },
  19096. {
  19097. name: "Canon Height",
  19098. height: math.unit(50, "AU")
  19099. },
  19100. ]
  19101. ))
  19102. characterMakers.push(() => makeCharacter(
  19103. { name: "Terrance Keayes" },
  19104. {
  19105. front: {
  19106. height: math.unit(6, "feet"),
  19107. weight: math.unit(150, "lb"),
  19108. name: "Front",
  19109. image: {
  19110. source: "./media/characters/terrance-keayes/front.svg",
  19111. extra: 1.005,
  19112. bottom: 151 / 1615
  19113. }
  19114. },
  19115. side: {
  19116. height: math.unit(6, "feet"),
  19117. weight: math.unit(150, "lb"),
  19118. name: "Side",
  19119. image: {
  19120. source: "./media/characters/terrance-keayes/side.svg",
  19121. extra: 1.005,
  19122. bottom: 129.4 / 1544
  19123. }
  19124. },
  19125. back: {
  19126. height: math.unit(6, "feet"),
  19127. weight: math.unit(150, "lb"),
  19128. name: "Back",
  19129. image: {
  19130. source: "./media/characters/terrance-keayes/back.svg",
  19131. extra: 1.005,
  19132. bottom: 58.4 / 1557.3
  19133. }
  19134. },
  19135. dick: {
  19136. height: math.unit(6 * 0.208, "feet"),
  19137. name: "Dick",
  19138. image: {
  19139. source: "./media/characters/terrance-keayes/dick.svg"
  19140. }
  19141. },
  19142. },
  19143. [
  19144. {
  19145. name: "Canon Height",
  19146. height: math.unit(35, "miles"),
  19147. default: true
  19148. },
  19149. ]
  19150. ))
  19151. characterMakers.push(() => makeCharacter(
  19152. { name: "Ofelia" },
  19153. {
  19154. front: {
  19155. height: math.unit(6, "feet"),
  19156. weight: math.unit(150, "lb"),
  19157. name: "Front",
  19158. image: {
  19159. source: "./media/characters/ofelia/front.svg",
  19160. extra: 546 / 541,
  19161. bottom: 39 / 583
  19162. }
  19163. },
  19164. back: {
  19165. height: math.unit(6, "feet"),
  19166. weight: math.unit(150, "lb"),
  19167. name: "Back",
  19168. image: {
  19169. source: "./media/characters/ofelia/back.svg",
  19170. extra: 564 / 559.5,
  19171. bottom: 8.69 / 573.02
  19172. }
  19173. },
  19174. maw: {
  19175. height: math.unit(1, "feet"),
  19176. name: "Maw",
  19177. image: {
  19178. source: "./media/characters/ofelia/maw.svg"
  19179. }
  19180. },
  19181. foot: {
  19182. height: math.unit(1.949, "feet"),
  19183. name: "Foot",
  19184. image: {
  19185. source: "./media/characters/ofelia/foot.svg"
  19186. }
  19187. },
  19188. },
  19189. [
  19190. {
  19191. name: "Canon Height",
  19192. height: math.unit(2000, "miles"),
  19193. default: true
  19194. },
  19195. ]
  19196. ))
  19197. characterMakers.push(() => makeCharacter(
  19198. { name: "Samuel" },
  19199. {
  19200. front: {
  19201. height: math.unit(6, "feet"),
  19202. weight: math.unit(150, "lb"),
  19203. name: "Front",
  19204. image: {
  19205. source: "./media/characters/samuel/front.svg",
  19206. extra: 265 / 258,
  19207. bottom: 2 / 266.1566
  19208. }
  19209. },
  19210. },
  19211. [
  19212. {
  19213. name: "Macro",
  19214. height: math.unit(100, "feet"),
  19215. default: true
  19216. },
  19217. {
  19218. name: "Full Size",
  19219. height: math.unit(1000, "miles")
  19220. },
  19221. ]
  19222. ))
  19223. characterMakers.push(() => makeCharacter(
  19224. { name: "Beishir Kiel" },
  19225. {
  19226. front: {
  19227. height: math.unit(6, "feet"),
  19228. weight: math.unit(300, "lb"),
  19229. name: "Front",
  19230. image: {
  19231. source: "./media/characters/beishir-kiel/front.svg",
  19232. extra: 569 / 547,
  19233. bottom: 41.9 / 609
  19234. }
  19235. },
  19236. maw: {
  19237. height: math.unit(6 * 0.202, "feet"),
  19238. name: "Maw",
  19239. image: {
  19240. source: "./media/characters/beishir-kiel/maw.svg"
  19241. }
  19242. },
  19243. },
  19244. [
  19245. {
  19246. name: "Macro",
  19247. height: math.unit(300, "feet"),
  19248. default: true
  19249. },
  19250. ]
  19251. ))
  19252. characterMakers.push(() => makeCharacter(
  19253. { name: "Logan Grey" },
  19254. {
  19255. front: {
  19256. height: math.unit(5 + 8 / 12, "feet"),
  19257. weight: math.unit(120, "lb"),
  19258. name: "Front",
  19259. image: {
  19260. source: "./media/characters/logan-grey/front.svg",
  19261. extra: 2539 / 2393,
  19262. bottom: 97.6 / 2636.37
  19263. }
  19264. },
  19265. frontAlt: {
  19266. height: math.unit(5 + 8 / 12, "feet"),
  19267. weight: math.unit(120, "lb"),
  19268. name: "Front (Alt)",
  19269. image: {
  19270. source: "./media/characters/logan-grey/front-alt.svg",
  19271. extra: 958 / 893,
  19272. bottom: 15 / 970.768
  19273. }
  19274. },
  19275. back: {
  19276. height: math.unit(5 + 8 / 12, "feet"),
  19277. weight: math.unit(120, "lb"),
  19278. name: "Back",
  19279. image: {
  19280. source: "./media/characters/logan-grey/back.svg",
  19281. extra: 958 / 893,
  19282. bottom: 2.1881 / 970.9788
  19283. }
  19284. },
  19285. dick: {
  19286. height: math.unit(1.437, "feet"),
  19287. name: "Dick",
  19288. image: {
  19289. source: "./media/characters/logan-grey/dick.svg"
  19290. }
  19291. },
  19292. },
  19293. [
  19294. {
  19295. name: "Normal",
  19296. height: math.unit(5 + 8 / 12, "feet")
  19297. },
  19298. {
  19299. name: "The 500 Foot Femboy",
  19300. height: math.unit(500, "feet"),
  19301. default: true
  19302. },
  19303. {
  19304. name: "Megmacro",
  19305. height: math.unit(20, "miles")
  19306. },
  19307. ]
  19308. ))
  19309. characterMakers.push(() => makeCharacter(
  19310. { name: "Draganta" },
  19311. {
  19312. front: {
  19313. height: math.unit(8 + 2 / 12, "feet"),
  19314. weight: math.unit(275, "lb"),
  19315. name: "Front",
  19316. image: {
  19317. source: "./media/characters/draganta/front.svg",
  19318. extra: 1177 / 1135,
  19319. bottom: 33.46 / 1212.1
  19320. }
  19321. },
  19322. },
  19323. [
  19324. {
  19325. name: "Normal",
  19326. height: math.unit(8 + 6 / 12, "feet"),
  19327. default: true
  19328. },
  19329. {
  19330. name: "Macro",
  19331. height: math.unit(150, "feet")
  19332. },
  19333. {
  19334. name: "Megamacro",
  19335. height: math.unit(1000, "miles")
  19336. },
  19337. ]
  19338. ))
  19339. characterMakers.push(() => makeCharacter(
  19340. { name: "Voski", species: "Corvid" },
  19341. {
  19342. front: {
  19343. height: math.unit(1.72, "m"),
  19344. weight: math.unit(80, "lb"),
  19345. name: "Front",
  19346. image: {
  19347. source: "./media/characters/voski/front.svg",
  19348. extra: 2076.22 / 2022.4,
  19349. bottom: 102.7 / 2177.3866
  19350. }
  19351. },
  19352. back: {
  19353. height: math.unit(1.72, "m"),
  19354. weight: math.unit(80, "lb"),
  19355. name: "Back",
  19356. image: {
  19357. source: "./media/characters/voski/back.svg",
  19358. extra: 2104 / 2051,
  19359. bottom: 10.45 / 2113.63
  19360. }
  19361. },
  19362. },
  19363. [
  19364. {
  19365. name: "Normal",
  19366. height: math.unit(1.72, "m")
  19367. },
  19368. {
  19369. name: "Macro",
  19370. height: math.unit(55, "m"),
  19371. default: true
  19372. },
  19373. {
  19374. name: "Macro+",
  19375. height: math.unit(300, "m")
  19376. },
  19377. {
  19378. name: "Macro++",
  19379. height: math.unit(700, "m")
  19380. },
  19381. {
  19382. name: "Macro+++",
  19383. height: math.unit(4500, "m")
  19384. },
  19385. {
  19386. name: "Macro++++",
  19387. height: math.unit(45, "km")
  19388. },
  19389. {
  19390. name: "Macro+++++",
  19391. height: math.unit(1220, "km")
  19392. },
  19393. ]
  19394. ))
  19395. characterMakers.push(() => makeCharacter(
  19396. { name: "Icowom Lee" },
  19397. {
  19398. front: {
  19399. height: math.unit(2.3, "m"),
  19400. weight: math.unit(304, "kg"),
  19401. name: "Front",
  19402. image: {
  19403. source: "./media/characters/icowom-lee/front.svg",
  19404. extra: 3076 / 2933,
  19405. bottom: 51.4 / 3125.1889
  19406. }
  19407. },
  19408. },
  19409. [
  19410. {
  19411. name: "Normal",
  19412. height: math.unit(2.3, "meters"),
  19413. default: true
  19414. },
  19415. {
  19416. name: "Macro",
  19417. height: math.unit(94, "meters"),
  19418. default: true
  19419. },
  19420. ]
  19421. ))
  19422. characterMakers.push(() => makeCharacter(
  19423. { name: "Shock Diamond", species: "Aeromorphic Synthetic Pharaoh Hound" },
  19424. {
  19425. front: {
  19426. height: math.unit(22, "meters"),
  19427. weight: math.unit(21000, "kg"),
  19428. name: "Front",
  19429. image: {
  19430. source: "./media/characters/shock-diamond/front.svg",
  19431. extra: 2204 / 2053,
  19432. bottom: 65 / 2239.47
  19433. }
  19434. },
  19435. frontNude: {
  19436. height: math.unit(22, "meters"),
  19437. weight: math.unit(21000, "kg"),
  19438. name: "Front (Nude)",
  19439. image: {
  19440. source: "./media/characters/shock-diamond/front-nude.svg",
  19441. extra: 2514 / 2285,
  19442. bottom: 13 / 2527.56
  19443. }
  19444. },
  19445. },
  19446. [
  19447. {
  19448. name: "Normal",
  19449. height: math.unit(3, "meters")
  19450. },
  19451. {
  19452. name: "Macro",
  19453. height: math.unit(22, "meters"),
  19454. default: true
  19455. },
  19456. ]
  19457. ))
  19458. characterMakers.push(() => makeCharacter(
  19459. { name: "Rory" },
  19460. {
  19461. front: {
  19462. height: math.unit(5 + 4 / 12, "feet"),
  19463. weight: math.unit(120, "lb"),
  19464. name: "Front",
  19465. image: {
  19466. source: "./media/characters/rory/front.svg",
  19467. extra: 589 / 556,
  19468. bottom: 45.7 / 635.76
  19469. }
  19470. },
  19471. frontNude: {
  19472. height: math.unit(5 + 4 / 12, "feet"),
  19473. weight: math.unit(120, "lb"),
  19474. name: "Front (Nude)",
  19475. image: {
  19476. source: "./media/characters/rory/front-nude.svg",
  19477. extra: 589 / 556,
  19478. bottom: 45.7 / 635.76
  19479. }
  19480. },
  19481. side: {
  19482. height: math.unit(5 + 4 / 12, "feet"),
  19483. weight: math.unit(120, "lb"),
  19484. name: "Side",
  19485. image: {
  19486. source: "./media/characters/rory/side.svg",
  19487. extra: 597 / 564,
  19488. bottom: 55 / 653
  19489. }
  19490. },
  19491. back: {
  19492. height: math.unit(5 + 4 / 12, "feet"),
  19493. weight: math.unit(120, "lb"),
  19494. name: "Back",
  19495. image: {
  19496. source: "./media/characters/rory/back.svg",
  19497. extra: 620 / 585,
  19498. bottom: 8.86 / 630.43
  19499. }
  19500. },
  19501. dick: {
  19502. height: math.unit(0.86, "feet"),
  19503. name: "Dick",
  19504. image: {
  19505. source: "./media/characters/rory/dick.svg"
  19506. }
  19507. },
  19508. },
  19509. [
  19510. {
  19511. name: "Normal",
  19512. height: math.unit(5 + 4 / 12, "feet"),
  19513. default: true
  19514. },
  19515. {
  19516. name: "Macro",
  19517. height: math.unit(100, "feet")
  19518. },
  19519. {
  19520. name: "Macro+",
  19521. height: math.unit(140, "feet")
  19522. },
  19523. {
  19524. name: "Macro++",
  19525. height: math.unit(300, "feet")
  19526. },
  19527. ]
  19528. ))
  19529. characterMakers.push(() => makeCharacter(
  19530. { name: "Sprisk" },
  19531. {
  19532. front: {
  19533. height: math.unit(5 + 9 / 12, "feet"),
  19534. weight: math.unit(190, "lb"),
  19535. name: "Front",
  19536. image: {
  19537. source: "./media/characters/sprisk/front.svg",
  19538. extra: 1225 / 1180,
  19539. bottom: 42.7 / 1266.4
  19540. }
  19541. },
  19542. frontNsfw: {
  19543. height: math.unit(5 + 9 / 12, "feet"),
  19544. weight: math.unit(190, "lb"),
  19545. name: "Front (NSFW)",
  19546. image: {
  19547. source: "./media/characters/sprisk/front-nsfw.svg",
  19548. extra: 1225 / 1180,
  19549. bottom: 42.7 / 1266.4
  19550. }
  19551. },
  19552. back: {
  19553. height: math.unit(5 + 9 / 12, "feet"),
  19554. weight: math.unit(190, "lb"),
  19555. name: "Back",
  19556. image: {
  19557. source: "./media/characters/sprisk/back.svg",
  19558. extra: 1247 / 1200,
  19559. bottom: 5.6 / 1253.04
  19560. }
  19561. },
  19562. },
  19563. [
  19564. {
  19565. name: "Tiny",
  19566. height: math.unit(2, "inches")
  19567. },
  19568. {
  19569. name: "Normal",
  19570. height: math.unit(5 + 9 / 12, "feet"),
  19571. default: true
  19572. },
  19573. {
  19574. name: "Mini Macro",
  19575. height: math.unit(18, "feet")
  19576. },
  19577. {
  19578. name: "Macro",
  19579. height: math.unit(100, "feet")
  19580. },
  19581. {
  19582. name: "MACRO",
  19583. height: math.unit(50, "miles")
  19584. },
  19585. {
  19586. name: "M A C R O",
  19587. height: math.unit(300, "miles")
  19588. },
  19589. ]
  19590. ))
  19591. characterMakers.push(() => makeCharacter(
  19592. { name: "Bunsen" },
  19593. {
  19594. side: {
  19595. height: math.unit(15.6, "meters"),
  19596. weight: math.unit(700000, "kg"),
  19597. name: "Side",
  19598. image: {
  19599. source: "./media/characters/bunsen/side.svg",
  19600. extra: 1644 / 358
  19601. }
  19602. },
  19603. foot: {
  19604. height: math.unit(1.611 * 1644 / 358, "meter"),
  19605. name: "Foot",
  19606. image: {
  19607. source: "./media/characters/bunsen/foot.svg"
  19608. }
  19609. },
  19610. },
  19611. [
  19612. {
  19613. name: "Small",
  19614. height: math.unit(10, "feet")
  19615. },
  19616. {
  19617. name: "Normal",
  19618. height: math.unit(15.6, "meters"),
  19619. default: true
  19620. },
  19621. ]
  19622. ))
  19623. characterMakers.push(() => makeCharacter(
  19624. { name: "Sesh" },
  19625. {
  19626. front: {
  19627. height: math.unit(4 + 11 / 12, "feet"),
  19628. weight: math.unit(140, "lb"),
  19629. name: "Front",
  19630. image: {
  19631. source: "./media/characters/sesh/front.svg",
  19632. extra: 3420 / 3231,
  19633. bottom: 72 / 3949.5
  19634. }
  19635. },
  19636. },
  19637. [
  19638. {
  19639. name: "Normal",
  19640. height: math.unit(4 + 11 / 12, "feet")
  19641. },
  19642. {
  19643. name: "Grown",
  19644. height: math.unit(15, "feet"),
  19645. default: true
  19646. },
  19647. {
  19648. name: "Macro",
  19649. height: math.unit(1500, "feet")
  19650. },
  19651. {
  19652. name: "Megamacro",
  19653. height: math.unit(30, "miles")
  19654. },
  19655. {
  19656. name: "Continental",
  19657. height: math.unit(3000, "miles")
  19658. },
  19659. {
  19660. name: "Gravity Mass",
  19661. height: math.unit(300000, "miles")
  19662. },
  19663. {
  19664. name: "Planet Buster",
  19665. height: math.unit(30000000, "miles")
  19666. },
  19667. {
  19668. name: "Big",
  19669. height: math.unit(3000000000, "miles")
  19670. },
  19671. ]
  19672. ))
  19673. //characters
  19674. function makeCharacters() {
  19675. const results = [];
  19676. characterMakers.forEach(character => {
  19677. results.push(character());
  19678. });
  19679. return results;
  19680. }