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

22892 строки
549 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. if (value.capacity) {
  28. views[key].attributes.capacity = {
  29. name: "Capacity",
  30. power: 3,
  31. type: "volume",
  32. base: value.capacity
  33. }
  34. }
  35. });
  36. return createEntityMaker(info, views, defaultSizes);
  37. }
  38. characterMakers.push(() => makeCharacter(
  39. {
  40. name: "Fen",
  41. species: "Crux",
  42. description: {
  43. title: "Bio",
  44. text: "Very furry. Sheds on everything."
  45. }
  46. },
  47. {
  48. back: {
  49. height: math.unit(2.2428, "meter"),
  50. weight: math.unit(124.738, "kg"),
  51. name: "Back",
  52. image: {
  53. source: "./media/characters/fen/back.svg",
  54. extra: 1025 / 935,
  55. bottom: 0.01
  56. },
  57. info: {
  58. description: {
  59. mode: "append",
  60. text: "\n\nHe is not currently looking at you."
  61. }
  62. }
  63. },
  64. full: {
  65. height: math.unit(1.34, "meter"),
  66. weight: math.unit(225, "kg"),
  67. name: "Full",
  68. image: {
  69. source: "./media/characters/fen/full.svg"
  70. },
  71. info: {
  72. description: {
  73. mode: "append",
  74. text: "\n\nMunch."
  75. }
  76. }
  77. },
  78. kneeling: {
  79. height: math.unit(5.4, "feet"),
  80. weight: math.unit(124.738, "kg"),
  81. name: "Kneeling",
  82. image: {
  83. source: "./media/characters/fen/kneeling.svg",
  84. extra: 563 / 507
  85. }
  86. },
  87. goo: {
  88. height: math.unit(2.8, "feet"),
  89. weight: math.unit(125, "kg"),
  90. capacity: math.unit(1, "people"),
  91. name: "Goo",
  92. image: {
  93. source: "./media/characters/fen/goo.svg",
  94. bottom: 116/613
  95. }
  96. },
  97. lounging: {
  98. height: math.unit(6.5, "feet"),
  99. weight: math.unit(125, "kg"),
  100. name: "Lounging",
  101. image: {
  102. source: "./media/characters/fen/lounging.svg"
  103. }
  104. },
  105. },
  106. [
  107. {
  108. name: "Normal",
  109. height: math.unit(2.2428, "meter")
  110. },
  111. {
  112. name: "Big",
  113. height: math.unit(12, "feet")
  114. },
  115. {
  116. name: "Minimacro",
  117. height: math.unit(40, "feet"),
  118. default: true,
  119. info: {
  120. description: {
  121. mode: "append",
  122. text: "\n\nTOO DAMN BIG"
  123. }
  124. }
  125. },
  126. {
  127. name: "Macro",
  128. height: math.unit(100, "feet"),
  129. info: {
  130. description: {
  131. mode: "append",
  132. text: "\n\nTOO DAMN BIG"
  133. }
  134. }
  135. },
  136. {
  137. name: "Macro+",
  138. height: math.unit(300, "feet")
  139. },
  140. {
  141. name: "Megamacro",
  142. height: math.unit(2, "miles")
  143. }
  144. ]
  145. ))
  146. characterMakers.push(() => makeCharacter(
  147. { name: "Sofia Fluttertail" },
  148. {
  149. front: {
  150. height: math.unit(183, "cm"),
  151. weight: math.unit(80, "kg"),
  152. name: "Front",
  153. image: {
  154. source: "./media/characters/sofia-fluttertail/front.svg",
  155. bottom: 0.01,
  156. extra: 2154 / 2081
  157. }
  158. },
  159. frontAlt: {
  160. height: math.unit(183, "cm"),
  161. weight: math.unit(80, "kg"),
  162. name: "Front (alt)",
  163. image: {
  164. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  165. }
  166. },
  167. back: {
  168. height: math.unit(183, "cm"),
  169. weight: math.unit(80, "kg"),
  170. name: "Back",
  171. image: {
  172. source: "./media/characters/sofia-fluttertail/back.svg"
  173. }
  174. },
  175. kneeling: {
  176. height: math.unit(125, "cm"),
  177. weight: math.unit(80, "kg"),
  178. name: "Kneeling",
  179. image: {
  180. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  181. extra: 1033/977,
  182. bottom: 23.7/1057
  183. }
  184. },
  185. maw: {
  186. height: math.unit(183 / 5, "cm"),
  187. name: "Maw",
  188. image: {
  189. source: "./media/characters/sofia-fluttertail/maw.svg"
  190. }
  191. },
  192. mawcloseup: {
  193. height: math.unit(183 / 5 * 0.41, "cm"),
  194. name: "Maw (Closeup)",
  195. image: {
  196. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  197. }
  198. },
  199. },
  200. [
  201. {
  202. name: "Normal",
  203. height: math.unit(1.83, "meter")
  204. },
  205. {
  206. name: "Size Thief",
  207. height: math.unit(18, "feet")
  208. },
  209. {
  210. name: "50 Foot Collie",
  211. height: math.unit(50, "feet")
  212. },
  213. {
  214. name: "Macro",
  215. height: math.unit(96, "feet"),
  216. default: true
  217. },
  218. {
  219. name: "Megamerger",
  220. height: math.unit(650, "feet")
  221. },
  222. ]
  223. ))
  224. characterMakers.push(() => makeCharacter(
  225. { name: "March" },
  226. {
  227. front: {
  228. height: math.unit(7, "feet"),
  229. weight: math.unit(100, "kg"),
  230. name: "Front",
  231. image: {
  232. source: "./media/characters/march/front.svg",
  233. extra: 1,
  234. bottom: 0.015
  235. }
  236. },
  237. foot: {
  238. height: math.unit(0.9, "feet"),
  239. name: "Foot",
  240. image: {
  241. source: "./media/characters/march/foot.svg"
  242. }
  243. },
  244. },
  245. [
  246. {
  247. name: "Normal",
  248. height: math.unit(7.9, "feet")
  249. },
  250. {
  251. name: "Macro",
  252. height: math.unit(220, "meters")
  253. },
  254. {
  255. name: "Megamacro",
  256. height: math.unit(2.98, "km"),
  257. default: true
  258. },
  259. {
  260. name: "Gigamacro",
  261. height: math.unit(15963, "km")
  262. },
  263. {
  264. name: "Teramacro",
  265. height: math.unit(2980000000, "km")
  266. },
  267. {
  268. name: "Examacro",
  269. height: math.unit(250, "parsecs")
  270. },
  271. ]
  272. ))
  273. characterMakers.push(() => makeCharacter(
  274. { name: "Noir" },
  275. {
  276. front: {
  277. height: math.unit(6, "feet"),
  278. weight: math.unit(60, "kg"),
  279. name: "Front",
  280. image: {
  281. source: "./media/characters/noir/front.svg",
  282. extra: 1,
  283. bottom: 0.032
  284. }
  285. },
  286. },
  287. [
  288. {
  289. name: "Normal",
  290. height: math.unit(6.6, "feet")
  291. },
  292. {
  293. name: "Macro",
  294. height: math.unit(500, "feet")
  295. },
  296. {
  297. name: "Megamacro",
  298. height: math.unit(2.5, "km"),
  299. default: true
  300. },
  301. {
  302. name: "Gigamacro",
  303. height: math.unit(22500, "km")
  304. },
  305. {
  306. name: "Teramacro",
  307. height: math.unit(2500000000, "km")
  308. },
  309. {
  310. name: "Examacro",
  311. height: math.unit(200, "parsecs")
  312. },
  313. ]
  314. ))
  315. characterMakers.push(() => makeCharacter(
  316. { name: "Okuri" },
  317. {
  318. front: {
  319. height: math.unit(7, "feet"),
  320. weight: math.unit(100, "kg"),
  321. name: "Front",
  322. image: {
  323. source: "./media/characters/okuri/front.svg",
  324. extra: 1,
  325. bottom: 0.037
  326. }
  327. },
  328. back: {
  329. height: math.unit(7, "feet"),
  330. weight: math.unit(100, "kg"),
  331. name: "Back",
  332. image: {
  333. source: "./media/characters/okuri/back.svg",
  334. extra: 1,
  335. bottom: 0.007
  336. }
  337. },
  338. },
  339. [
  340. {
  341. name: "Megamacro",
  342. height: math.unit(100, "miles"),
  343. default: true
  344. },
  345. ]
  346. ))
  347. characterMakers.push(() => makeCharacter(
  348. { name: "Manny" },
  349. {
  350. front: {
  351. height: math.unit(7, "feet"),
  352. weight: math.unit(100, "kg"),
  353. name: "Front",
  354. image: {
  355. source: "./media/characters/manny/front.svg",
  356. extra: 1,
  357. bottom: 0.06
  358. }
  359. },
  360. back: {
  361. height: math.unit(7, "feet"),
  362. weight: math.unit(100, "kg"),
  363. name: "Back",
  364. image: {
  365. source: "./media/characters/manny/back.svg",
  366. extra: 1,
  367. bottom: 0.014
  368. }
  369. },
  370. },
  371. [
  372. {
  373. name: "Normal",
  374. height: math.unit(7, "feet"),
  375. },
  376. {
  377. name: "Macro",
  378. height: math.unit(78, "feet"),
  379. default: true
  380. },
  381. {
  382. name: "Macro+",
  383. height: math.unit(300, "meters")
  384. },
  385. {
  386. name: "Macro++",
  387. height: math.unit(2400, "meters")
  388. },
  389. {
  390. name: "Megamacro",
  391. height: math.unit(5167, "meters")
  392. },
  393. {
  394. name: "Gigamacro",
  395. height: math.unit(41769, "miles")
  396. },
  397. ]
  398. ))
  399. characterMakers.push(() => makeCharacter(
  400. { name: "Adake" },
  401. {
  402. front: {
  403. height: math.unit(7, "feet"),
  404. weight: math.unit(100, "kg"),
  405. name: "Front",
  406. image: {
  407. source: "./media/characters/adake/front-1.svg"
  408. }
  409. },
  410. frontAlt: {
  411. height: math.unit(7, "feet"),
  412. weight: math.unit(100, "kg"),
  413. name: "Front (Alt)",
  414. image: {
  415. source: "./media/characters/adake/front-2.svg",
  416. extra: 1,
  417. bottom: 0.01
  418. }
  419. },
  420. back: {
  421. height: math.unit(7, "feet"),
  422. weight: math.unit(100, "kg"),
  423. name: "Back",
  424. image: {
  425. source: "./media/characters/adake/back.svg",
  426. }
  427. },
  428. kneel: {
  429. height: math.unit(5.385, "feet"),
  430. weight: math.unit(100, "kg"),
  431. name: "Kneeling",
  432. image: {
  433. source: "./media/characters/adake/kneel.svg",
  434. bottom: 0.052
  435. }
  436. },
  437. },
  438. [
  439. {
  440. name: "Normal",
  441. height: math.unit(7, "feet"),
  442. },
  443. {
  444. name: "Macro",
  445. height: math.unit(78, "feet"),
  446. default: true
  447. },
  448. {
  449. name: "Macro+",
  450. height: math.unit(300, "meters")
  451. },
  452. {
  453. name: "Macro++",
  454. height: math.unit(2400, "meters")
  455. },
  456. {
  457. name: "Megamacro",
  458. height: math.unit(5167, "meters")
  459. },
  460. {
  461. name: "Gigamacro",
  462. height: math.unit(41769, "miles")
  463. },
  464. ]
  465. ))
  466. characterMakers.push(() => makeCharacter(
  467. { name: "Elijah" },
  468. {
  469. front: {
  470. height: math.unit(1.65, "meters"),
  471. weight: math.unit(50, "kg"),
  472. name: "Front",
  473. image: {
  474. source: "./media/characters/elijah/front.svg",
  475. extra: 858/830,
  476. bottom: 95.5/953.8559
  477. }
  478. },
  479. back: {
  480. height: math.unit(1.65, "meters"),
  481. weight: math.unit(50, "kg"),
  482. name: "Back",
  483. image: {
  484. source: "./media/characters/elijah/back.svg",
  485. extra: 895/850,
  486. bottom: 5.3/897.956
  487. }
  488. },
  489. frontNsfw: {
  490. height: math.unit(1.65, "meters"),
  491. weight: math.unit(50, "kg"),
  492. name: "Front (NSFW)",
  493. image: {
  494. source: "./media/characters/elijah/front-nsfw.svg",
  495. extra: 858/830,
  496. bottom: 95.5/953.8559
  497. }
  498. },
  499. backNsfw: {
  500. height: math.unit(1.65, "meters"),
  501. weight: math.unit(50, "kg"),
  502. name: "Back (NSFW)",
  503. image: {
  504. source: "./media/characters/elijah/back-nsfw.svg",
  505. extra: 895/850,
  506. bottom: 5.3/897.956
  507. }
  508. },
  509. dick: {
  510. height: math.unit(1, "feet"),
  511. name: "Dick",
  512. image: {
  513. source: "./media/characters/elijah/dick.svg"
  514. }
  515. },
  516. beakOpen: {
  517. height: math.unit(1.25, "feet"),
  518. name: "Beak (Open)",
  519. image: {
  520. source: "./media/characters/elijah/beak-open.svg"
  521. }
  522. },
  523. beakShut: {
  524. height: math.unit(1.25, "feet"),
  525. name: "Beak (Shut)",
  526. image: {
  527. source: "./media/characters/elijah/beak-shut.svg"
  528. }
  529. },
  530. footFlexing: {
  531. height: math.unit(1.61, "feet"),
  532. name: "Foot (Flexing)",
  533. image: {
  534. source: "./media/characters/elijah/foot-flexing.svg"
  535. }
  536. },
  537. footStepping: {
  538. height: math.unit(1.44, "feet"),
  539. name: "Foot (Stepping)",
  540. image: {
  541. source: "./media/characters/elijah/foot-stepping.svg"
  542. }
  543. },
  544. plantigradeLeg: {
  545. height: math.unit(2.34, "feet"),
  546. name: "Plantigrade Leg",
  547. image: {
  548. source: "./media/characters/elijah/plantigrade-leg.svg"
  549. }
  550. },
  551. plantigradeFootLeft: {
  552. height: math.unit(0.9, "feet"),
  553. name: "Plantigrade Foot (Left)",
  554. image: {
  555. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  556. }
  557. },
  558. plantigradeFootRight: {
  559. height: math.unit(0.9, "feet"),
  560. name: "Plantigrade Foot (Right)",
  561. image: {
  562. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  563. }
  564. },
  565. },
  566. [
  567. {
  568. name: "Normal",
  569. height: math.unit(1.65, "meters")
  570. },
  571. {
  572. name: "Macro",
  573. height: math.unit(55, "meters"),
  574. default: true
  575. },
  576. {
  577. name: "Macro+",
  578. height: math.unit(105, "meters")
  579. },
  580. ]
  581. ))
  582. characterMakers.push(() => makeCharacter(
  583. { name: "Rai" },
  584. {
  585. front: {
  586. height: math.unit(11, "feet"),
  587. weight: math.unit(80, "kg"),
  588. name: "Front",
  589. image: {
  590. source: "./media/characters/rai/front.svg",
  591. extra: 1,
  592. bottom: 0.03
  593. }
  594. },
  595. side: {
  596. height: math.unit(11, "feet"),
  597. weight: math.unit(80, "kg"),
  598. name: "Side",
  599. image: {
  600. source: "./media/characters/rai/side.svg"
  601. }
  602. },
  603. back: {
  604. height: math.unit(11, "feet"),
  605. weight: math.unit(80, "lb"),
  606. name: "Back",
  607. image: {
  608. source: "./media/characters/rai/back.svg",
  609. extra: 1,
  610. bottom: 0.01
  611. }
  612. },
  613. feral: {
  614. height: math.unit(11, "feet"),
  615. weight: math.unit(800, "lb"),
  616. name: "Feral",
  617. image: {
  618. source: "./media/characters/rai/feral.svg",
  619. extra: 1050 / 659,
  620. bottom: 0.07
  621. }
  622. },
  623. dragon: {
  624. height: math.unit(23, "feet"),
  625. weight: math.unit(50000, "lb"),
  626. name: "Dragon",
  627. image: {
  628. source: "./media/characters/rai/dragon.svg",
  629. extra: 2498/2030,
  630. bottom: 85.2/2584
  631. }
  632. },
  633. maw: {
  634. height: math.unit(6 / 3.81416, "feet"),
  635. name: "Maw",
  636. image: {
  637. source: "./media/characters/rai/maw.svg"
  638. }
  639. },
  640. },
  641. [
  642. {
  643. name: "Normal",
  644. height: math.unit(11, "feet")
  645. },
  646. {
  647. name: "Macro",
  648. height: math.unit(302, "feet"),
  649. default: true
  650. },
  651. ]
  652. ))
  653. characterMakers.push(() => makeCharacter(
  654. { name: "Jazzy" },
  655. {
  656. front: {
  657. height: math.unit(7, "feet"),
  658. weight: math.unit(80, "kg"),
  659. name: "Front",
  660. image: {
  661. source: "./media/characters/jazzy/front.svg",
  662. extra: 1,
  663. bottom: 0.01
  664. }
  665. },
  666. back: {
  667. height: math.unit(7, "feet"),
  668. weight: math.unit(80, "kg"),
  669. name: "Back",
  670. image: {
  671. source: "./media/characters/jazzy/back.svg",
  672. extra: 1,
  673. bottom: 0.01
  674. }
  675. },
  676. },
  677. [
  678. {
  679. name: "Macro",
  680. height: math.unit(216, "feet"),
  681. default: true
  682. },
  683. ]
  684. ))
  685. characterMakers.push(() => makeCharacter(
  686. { name: "Flamm" },
  687. {
  688. front: {
  689. height: math.unit(7, "feet"),
  690. weight: math.unit(80, "kg"),
  691. name: "Front",
  692. image: {
  693. source: "./media/characters/flamm/front.svg",
  694. extra: 1794 / 1677,
  695. bottom: 31.7 / 1828.5
  696. }
  697. },
  698. },
  699. [
  700. {
  701. name: "Normal",
  702. height: math.unit(9.5, "feet")
  703. },
  704. {
  705. name: "Macro",
  706. height: math.unit(200, "feet"),
  707. default: true
  708. },
  709. ]
  710. ))
  711. characterMakers.push(() => makeCharacter(
  712. { name: "Zephiro" },
  713. {
  714. front: {
  715. height: math.unit(7, "feet"),
  716. weight: math.unit(80, "kg"),
  717. name: "Front",
  718. image: {
  719. source: "./media/characters/zephiro/front.svg",
  720. extra: 2309 / 2162,
  721. bottom: 0.069
  722. }
  723. },
  724. side: {
  725. height: math.unit(7, "feet"),
  726. weight: math.unit(80, "kg"),
  727. name: "Side",
  728. image: {
  729. source: "./media/characters/zephiro/side.svg",
  730. extra: 2403 / 2279,
  731. bottom: 0.015
  732. }
  733. },
  734. back: {
  735. height: math.unit(7, "feet"),
  736. weight: math.unit(80, "kg"),
  737. name: "Back",
  738. image: {
  739. source: "./media/characters/zephiro/back.svg",
  740. extra: 2373 / 2244,
  741. bottom: 0.013
  742. }
  743. },
  744. },
  745. [
  746. {
  747. name: "Micro",
  748. height: math.unit(3, "inches")
  749. },
  750. {
  751. name: "Normal",
  752. height: math.unit(5 + 3 / 12, "feet"),
  753. default: true
  754. },
  755. {
  756. name: "Macro",
  757. height: math.unit(118, "feet")
  758. },
  759. ]
  760. ))
  761. characterMakers.push(() => makeCharacter(
  762. { name: "Fory" },
  763. {
  764. front: {
  765. height: math.unit(5, "feet"),
  766. weight: math.unit(90, "kg"),
  767. name: "Front",
  768. image: {
  769. source: "./media/characters/fory/front.svg",
  770. extra: 2862 / 2674,
  771. bottom: 180 / 3043.8
  772. }
  773. },
  774. back: {
  775. height: math.unit(5, "feet"),
  776. weight: math.unit(90, "kg"),
  777. name: "Back",
  778. image: {
  779. source: "./media/characters/fory/back.svg",
  780. extra: 2962 / 2791,
  781. bottom: 106 / 3071.8
  782. }
  783. },
  784. foot: {
  785. height: math.unit(2.14, "feet"),
  786. name: "Foot",
  787. image: {
  788. source: "./media/characters/fory/foot.svg"
  789. }
  790. },
  791. },
  792. [
  793. {
  794. name: "Normal",
  795. height: math.unit(5, "feet")
  796. },
  797. {
  798. name: "Macro",
  799. height: math.unit(50, "feet"),
  800. default: true
  801. },
  802. {
  803. name: "Megamacro",
  804. height: math.unit(10, "miles")
  805. },
  806. {
  807. name: "Gigamacro",
  808. height: math.unit(5, "earths")
  809. },
  810. ]
  811. ))
  812. characterMakers.push(() => makeCharacter(
  813. { name: "Kurrikage" },
  814. {
  815. front: {
  816. height: math.unit(7, "feet"),
  817. weight: math.unit(90, "kg"),
  818. name: "Front",
  819. image: {
  820. source: "./media/characters/kurrikage/front.svg",
  821. extra: 1,
  822. bottom: 0.035
  823. }
  824. },
  825. back: {
  826. height: math.unit(7, "feet"),
  827. weight: math.unit(90, "lb"),
  828. name: "Back",
  829. image: {
  830. source: "./media/characters/kurrikage/back.svg"
  831. }
  832. },
  833. paw: {
  834. height: math.unit(1.5, "feet"),
  835. name: "Paw",
  836. image: {
  837. source: "./media/characters/kurrikage/paw.svg"
  838. }
  839. },
  840. staff: {
  841. height: math.unit(6.7, "feet"),
  842. name: "Staff",
  843. image: {
  844. source: "./media/characters/kurrikage/staff.svg"
  845. }
  846. },
  847. peek: {
  848. height: math.unit(1.05, "feet"),
  849. name: "Peeking",
  850. image: {
  851. source: "./media/characters/kurrikage/peek.svg",
  852. bottom: 0.08
  853. }
  854. },
  855. },
  856. [
  857. {
  858. name: "Normal",
  859. height: math.unit(12, "feet"),
  860. default: true
  861. },
  862. {
  863. name: "Big",
  864. height: math.unit(20, "feet")
  865. },
  866. {
  867. name: "Macro",
  868. height: math.unit(500, "feet")
  869. },
  870. {
  871. name: "Megamacro",
  872. height: math.unit(20, "miles")
  873. },
  874. ]
  875. ))
  876. characterMakers.push(() => makeCharacter(
  877. { name: "Shingo" },
  878. {
  879. front: {
  880. height: math.unit(6, "feet"),
  881. weight: math.unit(75, "kg"),
  882. name: "Front",
  883. image: {
  884. source: "./media/characters/shingo/front.svg",
  885. extra: 3511 / 3338,
  886. bottom: 0.005
  887. }
  888. },
  889. },
  890. [
  891. {
  892. name: "Micro",
  893. height: math.unit(4, "inches")
  894. },
  895. {
  896. name: "Normal",
  897. height: math.unit(6, "feet"),
  898. default: true
  899. },
  900. {
  901. name: "Macro",
  902. height: math.unit(108, "feet")
  903. }
  904. ]
  905. ))
  906. characterMakers.push(() => makeCharacter(
  907. { name: "Aigey" },
  908. {
  909. side: {
  910. height: math.unit(6, "feet"),
  911. weight: math.unit(75, "kg"),
  912. name: "Side",
  913. image: {
  914. source: "./media/characters/aigey/side.svg"
  915. }
  916. },
  917. },
  918. [
  919. {
  920. name: "Macro",
  921. height: math.unit(200, "feet"),
  922. default: true
  923. },
  924. {
  925. name: "Megamacro",
  926. height: math.unit(100, "miles")
  927. },
  928. ]
  929. )
  930. )
  931. characterMakers.push(() => makeCharacter(
  932. { name: "Natasha" },
  933. {
  934. front: {
  935. height: math.unit(5 + 5 / 12, "feet"),
  936. weight: math.unit(75, "kg"),
  937. name: "Front",
  938. image: {
  939. source: "./media/characters/natasha/front.svg",
  940. extra: 859/824,
  941. bottom: 23/879.6
  942. }
  943. },
  944. frontNsfw: {
  945. height: math.unit(5 + 5 / 12, "feet"),
  946. weight: math.unit(75, "kg"),
  947. name: "Front (NSFW)",
  948. image: {
  949. source: "./media/characters/natasha/front-nsfw.svg",
  950. extra: 859/824,
  951. bottom: 23/879.6
  952. }
  953. },
  954. frontErect: {
  955. height: math.unit(5 + 5 / 12, "feet"),
  956. weight: math.unit(75, "kg"),
  957. name: "Front (Erect)",
  958. image: {
  959. source: "./media/characters/natasha/front-erect.svg",
  960. extra: 859/824,
  961. bottom: 23/879.6
  962. }
  963. },
  964. back: {
  965. height: math.unit(5 + 5 / 12, "feet"),
  966. weight: math.unit(75, "kg"),
  967. name: "Back",
  968. image: {
  969. source: "./media/characters/natasha/back.svg",
  970. extra: 887.9/852.6,
  971. bottom: 9.7/896.4
  972. }
  973. },
  974. backAlt: {
  975. height: math.unit(5 + 5 / 12, "feet"),
  976. weight: math.unit(75, "kg"),
  977. name: "Back (Alt)",
  978. image: {
  979. source: "./media/characters/natasha/back-alt.svg",
  980. extra: 1236.7/1192,
  981. bottom: 22.3/1258.2
  982. }
  983. },
  984. dick: {
  985. height: math.unit(1.772, "feet"),
  986. name: "Dick",
  987. image: {
  988. source: "./media/characters/natasha/dick.svg"
  989. }
  990. },
  991. },
  992. [
  993. {
  994. name: "Normal",
  995. height: math.unit(5 + 5 / 12, "feet")
  996. },
  997. {
  998. name: "Large",
  999. height: math.unit(12, "feet")
  1000. },
  1001. {
  1002. name: "Macro",
  1003. height: math.unit(100, "feet"),
  1004. default: true
  1005. },
  1006. {
  1007. name: "Macro+",
  1008. height: math.unit(260, "feet")
  1009. },
  1010. {
  1011. name: "Macro++",
  1012. height: math.unit(1, "mile")
  1013. },
  1014. ]
  1015. ))
  1016. characterMakers.push(() => makeCharacter(
  1017. { name: "Malik" },
  1018. {
  1019. front: {
  1020. height: math.unit(6, "feet"),
  1021. weight: math.unit(75, "kg"),
  1022. name: "Front",
  1023. image: {
  1024. source: "./media/characters/malik/front.svg"
  1025. }
  1026. },
  1027. side: {
  1028. height: math.unit(6, "feet"),
  1029. weight: math.unit(75, "kg"),
  1030. name: "Side",
  1031. image: {
  1032. source: "./media/characters/malik/side.svg",
  1033. extra: 1.1539
  1034. }
  1035. },
  1036. back: {
  1037. height: math.unit(6, "feet"),
  1038. weight: math.unit(75, "kg"),
  1039. name: "Back",
  1040. image: {
  1041. source: "./media/characters/malik/back.svg"
  1042. }
  1043. },
  1044. },
  1045. [
  1046. {
  1047. name: "Macro",
  1048. height: math.unit(156, "feet"),
  1049. default: true
  1050. },
  1051. {
  1052. name: "Macro+",
  1053. height: math.unit(1188, "feet")
  1054. },
  1055. ]
  1056. ))
  1057. characterMakers.push(() => makeCharacter(
  1058. { name: "Sefer" },
  1059. {
  1060. front: {
  1061. height: math.unit(6, "feet"),
  1062. weight: math.unit(75, "kg"),
  1063. name: "Front",
  1064. image: {
  1065. source: "./media/characters/sefer/front.svg"
  1066. }
  1067. },
  1068. back: {
  1069. height: math.unit(6, "feet"),
  1070. weight: math.unit(75, "kg"),
  1071. name: "Back",
  1072. image: {
  1073. source: "./media/characters/sefer/back.svg"
  1074. }
  1075. },
  1076. },
  1077. [
  1078. {
  1079. name: "Normal",
  1080. height: math.unit(6, "feet"),
  1081. default: true
  1082. },
  1083. ]
  1084. ))
  1085. characterMakers.push(() => makeCharacter(
  1086. { name: "North" },
  1087. {
  1088. body: {
  1089. height: math.unit(2.2428, "meter"),
  1090. weight: math.unit(124.738, "kg"),
  1091. name: "Body",
  1092. image: {
  1093. extra: 1225 / 1050,
  1094. source: "./media/characters/north/front.svg"
  1095. }
  1096. }
  1097. },
  1098. [
  1099. {
  1100. name: "Micro",
  1101. height: math.unit(4, "inches")
  1102. },
  1103. {
  1104. name: "Macro",
  1105. height: math.unit(63, "meters")
  1106. },
  1107. {
  1108. name: "Megamacro",
  1109. height: math.unit(101, "miles"),
  1110. default: true
  1111. }
  1112. ]
  1113. ))
  1114. characterMakers.push(() => makeCharacter(
  1115. { name: "Talan" },
  1116. {
  1117. angled: {
  1118. height: math.unit(4, "meter"),
  1119. weight: math.unit(150, "kg"),
  1120. name: "Angled",
  1121. image: {
  1122. source: "./media/characters/talan/angled-sfw.svg",
  1123. bottom: 29 / 3734
  1124. }
  1125. },
  1126. angledNsfw: {
  1127. height: math.unit(4, "meter"),
  1128. weight: math.unit(150, "kg"),
  1129. name: "Angled (NSFW)",
  1130. image: {
  1131. source: "./media/characters/talan/angled-nsfw.svg",
  1132. bottom: 29 / 3734
  1133. }
  1134. },
  1135. frontNsfw: {
  1136. height: math.unit(4, "meter"),
  1137. weight: math.unit(150, "kg"),
  1138. name: "Front (NSFW)",
  1139. image: {
  1140. source: "./media/characters/talan/front-nsfw.svg",
  1141. bottom: 29 / 3734
  1142. }
  1143. },
  1144. sideNsfw: {
  1145. height: math.unit(4, "meter"),
  1146. weight: math.unit(150, "kg"),
  1147. name: "Side (NSFW)",
  1148. image: {
  1149. source: "./media/characters/talan/side-nsfw.svg",
  1150. bottom: 29 / 3734
  1151. }
  1152. },
  1153. back: {
  1154. height: math.unit(4, "meter"),
  1155. weight: math.unit(150, "kg"),
  1156. name: "Back",
  1157. image: {
  1158. source: "./media/characters/talan/back.svg"
  1159. }
  1160. },
  1161. dickBottom: {
  1162. height: math.unit(0.621, "meter"),
  1163. name: "Dick (Bottom)",
  1164. image: {
  1165. source: "./media/characters/talan/dick-bottom.svg"
  1166. }
  1167. },
  1168. dickTop: {
  1169. height: math.unit(0.621, "meter"),
  1170. name: "Dick (Top)",
  1171. image: {
  1172. source: "./media/characters/talan/dick-top.svg"
  1173. }
  1174. },
  1175. dickSide: {
  1176. height: math.unit(0.305, "meter"),
  1177. name: "Dick (Side)",
  1178. image: {
  1179. source: "./media/characters/talan/dick-side.svg"
  1180. }
  1181. },
  1182. dickFront: {
  1183. height: math.unit(0.305, "meter"),
  1184. name: "Dick (Front)",
  1185. image: {
  1186. source: "./media/characters/talan/dick-front.svg"
  1187. }
  1188. },
  1189. },
  1190. [
  1191. {
  1192. name: "Normal",
  1193. height: math.unit(4, "meters")
  1194. },
  1195. {
  1196. name: "Macro",
  1197. height: math.unit(100, "meters")
  1198. },
  1199. {
  1200. name: "Megamacro",
  1201. height: math.unit(2, "miles"),
  1202. default: true
  1203. },
  1204. {
  1205. name: "Gigamacro",
  1206. height: math.unit(5000, "miles")
  1207. },
  1208. {
  1209. name: "Teramacro",
  1210. height: math.unit(100, "parsecs")
  1211. }
  1212. ]
  1213. ))
  1214. characterMakers.push(() => makeCharacter(
  1215. { name: "Gael'Rathus" },
  1216. {
  1217. front: {
  1218. height: math.unit(2, "meter"),
  1219. weight: math.unit(90, "kg"),
  1220. name: "Front",
  1221. image: {
  1222. source: "./media/characters/gael'rathus/front.svg"
  1223. }
  1224. },
  1225. frontAlt: {
  1226. height: math.unit(2, "meter"),
  1227. weight: math.unit(90, "kg"),
  1228. name: "Front (alt)",
  1229. image: {
  1230. source: "./media/characters/gael'rathus/front-alt.svg"
  1231. }
  1232. },
  1233. frontAlt2: {
  1234. height: math.unit(2, "meter"),
  1235. weight: math.unit(90, "kg"),
  1236. name: "Front (alt 2)",
  1237. image: {
  1238. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1239. }
  1240. }
  1241. },
  1242. [
  1243. {
  1244. name: "Normal",
  1245. height: math.unit(9, "feet"),
  1246. default: true
  1247. },
  1248. {
  1249. name: "Large",
  1250. height: math.unit(25, "feet")
  1251. },
  1252. {
  1253. name: "Macro",
  1254. height: math.unit(0.25, "miles")
  1255. },
  1256. {
  1257. name: "Megamacro",
  1258. height: math.unit(10, "miles")
  1259. }
  1260. ]
  1261. ))
  1262. characterMakers.push(() => makeCharacter(
  1263. { name: "Sosha" },
  1264. {
  1265. side: {
  1266. height: math.unit(2, "meter"),
  1267. weight: math.unit(140, "kg"),
  1268. name: "Side",
  1269. image: {
  1270. source: "./media/characters/sosha/side.svg",
  1271. bottom: 0.042
  1272. }
  1273. },
  1274. },
  1275. [
  1276. {
  1277. name: "Normal",
  1278. height: math.unit(12, "feet"),
  1279. default: true
  1280. }
  1281. ]
  1282. ))
  1283. characterMakers.push(() => makeCharacter(
  1284. { name: "RuNNoLa" },
  1285. {
  1286. side: {
  1287. height: math.unit(5 + 5 / 12, "feet"),
  1288. weight: math.unit(170, "kg"),
  1289. name: "Side",
  1290. image: {
  1291. source: "./media/characters/runnola/side.svg",
  1292. extra: 741 / 448,
  1293. bottom: 0.05
  1294. }
  1295. },
  1296. },
  1297. [
  1298. {
  1299. name: "Small",
  1300. height: math.unit(3, "feet")
  1301. },
  1302. {
  1303. name: "Normal",
  1304. height: math.unit(5 + 5 / 12, "feet"),
  1305. default: true
  1306. },
  1307. {
  1308. name: "Big",
  1309. height: math.unit(10, "feet")
  1310. },
  1311. ]
  1312. ))
  1313. characterMakers.push(() => makeCharacter(
  1314. { name: "Kurribird" },
  1315. {
  1316. front: {
  1317. height: math.unit(2, "meter"),
  1318. weight: math.unit(50, "kg"),
  1319. name: "Front",
  1320. image: {
  1321. source: "./media/characters/kurribird/front.svg",
  1322. bottom: 0.015
  1323. }
  1324. },
  1325. frontAlt: {
  1326. height: math.unit(1.5, "meter"),
  1327. weight: math.unit(50, "kg"),
  1328. name: "Front (Alt)",
  1329. image: {
  1330. source: "./media/characters/kurribird/front-alt.svg",
  1331. extra: 1.45
  1332. }
  1333. },
  1334. },
  1335. [
  1336. {
  1337. name: "Normal",
  1338. height: math.unit(7, "feet")
  1339. },
  1340. {
  1341. name: "Big",
  1342. height: math.unit(12, "feet"),
  1343. default: true
  1344. },
  1345. {
  1346. name: "Macro",
  1347. height: math.unit(1500, "feet")
  1348. },
  1349. {
  1350. name: "Megamacro",
  1351. height: math.unit(2, "miles")
  1352. }
  1353. ]
  1354. ))
  1355. characterMakers.push(() => makeCharacter(
  1356. { name: "Elbial" },
  1357. {
  1358. front: {
  1359. height: math.unit(2, "meter"),
  1360. weight: math.unit(80, "kg"),
  1361. name: "Front",
  1362. image: {
  1363. source: "./media/characters/elbial/front.svg",
  1364. extra: 1643 / 1556,
  1365. bottom: 60.2 / 1696
  1366. }
  1367. },
  1368. side: {
  1369. height: math.unit(2, "meter"),
  1370. weight: math.unit(80, "kg"),
  1371. name: "Side",
  1372. image: {
  1373. source: "./media/characters/elbial/side.svg",
  1374. extra: 1630 / 1565,
  1375. bottom: 71.5 / 1697
  1376. }
  1377. },
  1378. back: {
  1379. height: math.unit(2, "meter"),
  1380. weight: math.unit(80, "kg"),
  1381. name: "Back",
  1382. image: {
  1383. source: "./media/characters/elbial/back.svg",
  1384. extra: 1668 / 1595,
  1385. bottom: 5.6 / 1672
  1386. }
  1387. },
  1388. frontDressed: {
  1389. height: math.unit(2, "meter"),
  1390. weight: math.unit(80, "kg"),
  1391. name: "Front (Dressed)",
  1392. image: {
  1393. source: "./media/characters/elbial/front-dressed.svg",
  1394. extra: 1653 / 1584,
  1395. bottom: 57 / 1708
  1396. }
  1397. },
  1398. genitals: {
  1399. height: math.unit(2 / 3.367, "meter"),
  1400. name: "Genitals",
  1401. image: {
  1402. source: "./media/characters/elbial/genitals.svg"
  1403. }
  1404. },
  1405. },
  1406. [
  1407. {
  1408. name: "Large",
  1409. height: math.unit(100, "feet")
  1410. },
  1411. {
  1412. name: "Macro",
  1413. height: math.unit(500, "feet"),
  1414. default: true
  1415. },
  1416. {
  1417. name: "Megamacro",
  1418. height: math.unit(10, "miles")
  1419. },
  1420. {
  1421. name: "Gigamacro",
  1422. height: math.unit(25000, "miles")
  1423. },
  1424. {
  1425. name: "Full-Size",
  1426. height: math.unit(8000000, "gigaparsecs")
  1427. }
  1428. ]
  1429. ))
  1430. characterMakers.push(() => makeCharacter(
  1431. { name: "Noah" },
  1432. {
  1433. front: {
  1434. height: math.unit(2, "meter"),
  1435. weight: math.unit(60, "kg"),
  1436. name: "Front",
  1437. image: {
  1438. source: "./media/characters/noah/front.svg"
  1439. }
  1440. },
  1441. talons: {
  1442. height: math.unit(0.315, "meter"),
  1443. name: "Talons",
  1444. image: {
  1445. source: "./media/characters/noah/talons.svg"
  1446. }
  1447. }
  1448. },
  1449. [
  1450. {
  1451. name: "Large",
  1452. height: math.unit(50, "feet")
  1453. },
  1454. {
  1455. name: "Macro",
  1456. height: math.unit(750, "feet"),
  1457. default: true
  1458. },
  1459. {
  1460. name: "Megamacro",
  1461. height: math.unit(50, "miles")
  1462. },
  1463. {
  1464. name: "Gigamacro",
  1465. height: math.unit(100000, "miles")
  1466. },
  1467. {
  1468. name: "Full-Size",
  1469. height: math.unit(3000000000, "miles")
  1470. }
  1471. ]
  1472. ))
  1473. characterMakers.push(() => makeCharacter(
  1474. { name: "Natalya" },
  1475. {
  1476. front: {
  1477. height: math.unit(2, "meter"),
  1478. weight: math.unit(80, "kg"),
  1479. name: "Front",
  1480. image: {
  1481. source: "./media/characters/natalya/front.svg"
  1482. }
  1483. },
  1484. back: {
  1485. height: math.unit(2, "meter"),
  1486. weight: math.unit(80, "kg"),
  1487. name: "Back",
  1488. image: {
  1489. source: "./media/characters/natalya/back.svg"
  1490. }
  1491. }
  1492. },
  1493. [
  1494. {
  1495. name: "Normal",
  1496. height: math.unit(150, "feet"),
  1497. default: true
  1498. },
  1499. {
  1500. name: "Megamacro",
  1501. height: math.unit(5, "miles")
  1502. },
  1503. {
  1504. name: "Full-Size",
  1505. height: math.unit(600, "kiloparsecs")
  1506. }
  1507. ]
  1508. ))
  1509. characterMakers.push(() => makeCharacter(
  1510. { name: "Erestrebah" },
  1511. {
  1512. front: {
  1513. height: math.unit(2, "meter"),
  1514. weight: math.unit(50, "kg"),
  1515. name: "Front",
  1516. image: {
  1517. source: "./media/characters/erestrebah/front.svg",
  1518. extra: 208 / 193,
  1519. bottom: 0.055
  1520. }
  1521. },
  1522. back: {
  1523. height: math.unit(2, "meter"),
  1524. weight: math.unit(50, "kg"),
  1525. name: "Back",
  1526. image: {
  1527. source: "./media/characters/erestrebah/back.svg",
  1528. extra: 1.3
  1529. }
  1530. }
  1531. },
  1532. [
  1533. {
  1534. name: "Normal",
  1535. height: math.unit(10, "feet")
  1536. },
  1537. {
  1538. name: "Large",
  1539. height: math.unit(50, "feet"),
  1540. default: true
  1541. },
  1542. {
  1543. name: "Macro",
  1544. height: math.unit(300, "feet")
  1545. },
  1546. {
  1547. name: "Macro+",
  1548. height: math.unit(750, "feet")
  1549. },
  1550. {
  1551. name: "Megamacro",
  1552. height: math.unit(3, "miles")
  1553. }
  1554. ]
  1555. ))
  1556. characterMakers.push(() => makeCharacter(
  1557. { name: "Jennifer" },
  1558. {
  1559. front: {
  1560. height: math.unit(2, "meter"),
  1561. weight: math.unit(80, "kg"),
  1562. name: "Front",
  1563. image: {
  1564. source: "./media/characters/jennifer/front.svg",
  1565. bottom: 0.11,
  1566. extra: 1.16
  1567. }
  1568. },
  1569. frontAlt: {
  1570. height: math.unit(2, "meter"),
  1571. weight: math.unit(80, "kg"),
  1572. name: "Front (Alt)",
  1573. image: {
  1574. source: "./media/characters/jennifer/front-alt.svg"
  1575. }
  1576. }
  1577. },
  1578. [
  1579. {
  1580. name: "Canon Height",
  1581. height: math.unit(120, "feet"),
  1582. default: true
  1583. },
  1584. {
  1585. name: "Macro+",
  1586. height: math.unit(300, "feet")
  1587. },
  1588. {
  1589. name: "Megamacro",
  1590. height: math.unit(20000, "feet")
  1591. }
  1592. ]
  1593. ))
  1594. characterMakers.push(() => makeCharacter(
  1595. { name: "Kalista" },
  1596. {
  1597. front: {
  1598. height: math.unit(2, "meter"),
  1599. weight: math.unit(50, "kg"),
  1600. name: "Front",
  1601. image: {
  1602. source: "./media/characters/kalista/front.svg",
  1603. extra: 1947 / 1700,
  1604. bottom: 76.6/1412.98
  1605. }
  1606. },
  1607. back: {
  1608. height: math.unit(2, "meter"),
  1609. weight: math.unit(50, "kg"),
  1610. name: "Back",
  1611. image: {
  1612. source: "./media/characters/kalista/back.svg",
  1613. extra: 1366 / 1156,
  1614. bottom: 33.9/1362.78
  1615. }
  1616. }
  1617. },
  1618. [
  1619. {
  1620. name: "Uncomfortably Small",
  1621. height: math.unit(10, "feet")
  1622. },
  1623. {
  1624. name: "Small",
  1625. height: math.unit(30, "feet")
  1626. },
  1627. {
  1628. name: "Macro",
  1629. height: math.unit(100, "feet"),
  1630. default: true
  1631. },
  1632. {
  1633. name: "Macro+",
  1634. height: math.unit(2000, "feet")
  1635. },
  1636. {
  1637. name: "True Form",
  1638. height: math.unit(8924, "miles")
  1639. }
  1640. ]
  1641. ))
  1642. characterMakers.push(() => makeCharacter(
  1643. { name: "GiantGrowingVixen" },
  1644. {
  1645. front: {
  1646. height: math.unit(2, "meter"),
  1647. weight: math.unit(120, "kg"),
  1648. name: "Front",
  1649. image: {
  1650. source: "./media/characters/ggv/front.svg"
  1651. }
  1652. },
  1653. side: {
  1654. height: math.unit(2, "meter"),
  1655. weight: math.unit(120, "kg"),
  1656. name: "Side",
  1657. image: {
  1658. source: "./media/characters/ggv/side.svg"
  1659. }
  1660. }
  1661. },
  1662. [
  1663. {
  1664. name: "Extremely Puny",
  1665. height: math.unit(9 + 5 / 12, "feet")
  1666. },
  1667. {
  1668. name: "Horribly Small",
  1669. height: math.unit(47.7, "miles"),
  1670. default: true
  1671. },
  1672. {
  1673. name: "Reasonably Sized",
  1674. height: math.unit(25000, "parsecs")
  1675. },
  1676. {
  1677. name: "Slightly Uncompressed",
  1678. height: math.unit(7.77e31, "parsecs")
  1679. },
  1680. {
  1681. name: "Omniversal",
  1682. height: math.unit(1e300, "meters")
  1683. },
  1684. ]
  1685. ))
  1686. characterMakers.push(() => makeCharacter(
  1687. { name: "Napalm" },
  1688. {
  1689. front: {
  1690. height: math.unit(2, "meter"),
  1691. weight: math.unit(75, "lb"),
  1692. name: "Front",
  1693. image: {
  1694. source: "./media/characters/napalm/front.svg"
  1695. }
  1696. },
  1697. back: {
  1698. height: math.unit(2, "meter"),
  1699. weight: math.unit(75, "lb"),
  1700. name: "Back",
  1701. image: {
  1702. source: "./media/characters/napalm/back.svg"
  1703. }
  1704. }
  1705. },
  1706. [
  1707. {
  1708. name: "Standard",
  1709. height: math.unit(55, "feet"),
  1710. default: true
  1711. }
  1712. ]
  1713. ))
  1714. characterMakers.push(() => makeCharacter(
  1715. { name: "Asana" },
  1716. {
  1717. front: {
  1718. height: math.unit(7 + 5 / 6, "feet"),
  1719. weight: math.unit(325, "lb"),
  1720. name: "Front",
  1721. image: {
  1722. source: "./media/characters/asana/front.svg",
  1723. extra: 1128 / 1068
  1724. }
  1725. },
  1726. back: {
  1727. height: math.unit(7 + 5 / 6, "feet"),
  1728. weight: math.unit(325, "lb"),
  1729. name: "Back",
  1730. image: {
  1731. source: "./media/characters/asana/back.svg",
  1732. extra: 1128 / 1068
  1733. }
  1734. },
  1735. },
  1736. [
  1737. {
  1738. name: "Standard",
  1739. height: math.unit(7 + 5 / 6, "feet"),
  1740. default: true
  1741. },
  1742. {
  1743. name: "Large",
  1744. height: math.unit(10, "meters")
  1745. },
  1746. {
  1747. name: "Macro",
  1748. height: math.unit(2500, "meters")
  1749. },
  1750. {
  1751. name: "Megamacro",
  1752. height: math.unit(5e6, "meters")
  1753. },
  1754. {
  1755. name: "Examacro",
  1756. height: math.unit(5e12, "lightyears")
  1757. },
  1758. {
  1759. name: "Max Size",
  1760. height: math.unit(1e31, "lightyears")
  1761. }
  1762. ]
  1763. ))
  1764. characterMakers.push(() => makeCharacter(
  1765. { name: "Ebony" },
  1766. {
  1767. front: {
  1768. height: math.unit(2, "meter"),
  1769. weight: math.unit(60, "kg"),
  1770. name: "Front",
  1771. image: {
  1772. source: "./media/characters/ebony/front.svg",
  1773. bottom: 0.03,
  1774. extra: 1045 / 810 + 0.03
  1775. }
  1776. },
  1777. side: {
  1778. height: math.unit(2, "meter"),
  1779. weight: math.unit(60, "kg"),
  1780. name: "Side",
  1781. image: {
  1782. source: "./media/characters/ebony/side.svg",
  1783. bottom: 0.03,
  1784. extra: 1045 / 810 + 0.03
  1785. }
  1786. },
  1787. back: {
  1788. height: math.unit(2, "meter"),
  1789. weight: math.unit(60, "kg"),
  1790. name: "Back",
  1791. image: {
  1792. source: "./media/characters/ebony/back.svg",
  1793. bottom: 0.01,
  1794. extra: 1045 / 810 + 0.01
  1795. }
  1796. },
  1797. },
  1798. [
  1799. // TODO check why I did this lol
  1800. {
  1801. name: "Standard",
  1802. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1803. default: true
  1804. },
  1805. {
  1806. name: "Macro",
  1807. height: math.unit(200, "feet")
  1808. },
  1809. {
  1810. name: "Gigamacro",
  1811. height: math.unit(13000, "km")
  1812. }
  1813. ]
  1814. ))
  1815. characterMakers.push(() => makeCharacter(
  1816. { name: "Mountain" },
  1817. {
  1818. front: {
  1819. height: math.unit(6, "feet"),
  1820. weight: math.unit(175, "lb"),
  1821. name: "Front",
  1822. image: {
  1823. source: "./media/characters/mountain/front.svg"
  1824. }
  1825. },
  1826. back: {
  1827. height: math.unit(6, "feet"),
  1828. weight: math.unit(175, "lb"),
  1829. name: "Back",
  1830. image: {
  1831. source: "./media/characters/mountain/back.svg"
  1832. }
  1833. },
  1834. },
  1835. [
  1836. {
  1837. name: "Large",
  1838. height: math.unit(20, "meters")
  1839. },
  1840. {
  1841. name: "Macro",
  1842. height: math.unit(300, "meters")
  1843. },
  1844. {
  1845. name: "Gigamacro",
  1846. height: math.unit(10000, "km"),
  1847. default: true
  1848. },
  1849. {
  1850. name: "Examacro",
  1851. height: math.unit(10e9, "lightyears")
  1852. }
  1853. ]
  1854. ))
  1855. characterMakers.push(() => makeCharacter(
  1856. { name: "Rick" },
  1857. {
  1858. front: {
  1859. height: math.unit(8, "feet"),
  1860. weight: math.unit(500, "lb"),
  1861. name: "Front",
  1862. image: {
  1863. source: "./media/characters/rick/front.svg"
  1864. }
  1865. }
  1866. },
  1867. [
  1868. {
  1869. name: "Normal",
  1870. height: math.unit(8, "feet"),
  1871. default: true
  1872. },
  1873. {
  1874. name: "Macro",
  1875. height: math.unit(5, "km")
  1876. }
  1877. ]
  1878. ))
  1879. characterMakers.push(() => makeCharacter(
  1880. { name: "Ona" },
  1881. {
  1882. front: {
  1883. height: math.unit(8, "feet"),
  1884. weight: math.unit(120, "lb"),
  1885. name: "Front",
  1886. image: {
  1887. source: "./media/characters/ona/front.svg"
  1888. }
  1889. },
  1890. frontAlt: {
  1891. height: math.unit(8, "feet"),
  1892. weight: math.unit(120, "lb"),
  1893. name: "Front (Alt)",
  1894. image: {
  1895. source: "./media/characters/ona/front-alt.svg"
  1896. }
  1897. },
  1898. back: {
  1899. height: math.unit(8, "feet"),
  1900. weight: math.unit(120, "lb"),
  1901. name: "Back",
  1902. image: {
  1903. source: "./media/characters/ona/back.svg"
  1904. }
  1905. },
  1906. foot: {
  1907. height: math.unit(1.1, "feet"),
  1908. name: "Foot",
  1909. image: {
  1910. source: "./media/characters/ona/foot.svg"
  1911. }
  1912. }
  1913. },
  1914. [
  1915. {
  1916. name: "Megamacro",
  1917. height: math.unit(70, "km"),
  1918. default: true
  1919. },
  1920. {
  1921. name: "Gigamacro",
  1922. height: math.unit(681818, "miles")
  1923. },
  1924. {
  1925. name: "Examacro",
  1926. height: math.unit(3800000, "lightyears")
  1927. },
  1928. ]
  1929. ))
  1930. characterMakers.push(() => makeCharacter(
  1931. { name: "Mech" },
  1932. {
  1933. front: {
  1934. height: math.unit(12, "feet"),
  1935. weight: math.unit(3000, "lb"),
  1936. name: "Front",
  1937. image: {
  1938. source: "./media/characters/mech/front.svg",
  1939. bottom: 0.025,
  1940. }
  1941. },
  1942. back: {
  1943. height: math.unit(12, "feet"),
  1944. weight: math.unit(3000, "lb"),
  1945. name: "Back",
  1946. image: {
  1947. source: "./media/characters/mech/back.svg",
  1948. bottom: 0.03,
  1949. }
  1950. }
  1951. },
  1952. [
  1953. {
  1954. name: "Normal",
  1955. height: math.unit(12, "feet")
  1956. },
  1957. {
  1958. name: "Macro",
  1959. height: math.unit(300, "feet"),
  1960. default: true
  1961. },
  1962. {
  1963. name: "Macro+",
  1964. height: math.unit(1500, "feet")
  1965. },
  1966. ]
  1967. ))
  1968. characterMakers.push(() => makeCharacter(
  1969. { name: "Gregory" },
  1970. {
  1971. front: {
  1972. height: math.unit(1.3, "meter"),
  1973. weight: math.unit(30, "kg"),
  1974. name: "Front",
  1975. image: {
  1976. source: "./media/characters/gregory/front.svg",
  1977. }
  1978. }
  1979. },
  1980. [
  1981. {
  1982. name: "Normal",
  1983. height: math.unit(1.3, "meter"),
  1984. default: true
  1985. },
  1986. {
  1987. name: "Macro",
  1988. height: math.unit(20, "meter")
  1989. }
  1990. ]
  1991. ))
  1992. characterMakers.push(() => makeCharacter(
  1993. { name: "Elory" },
  1994. {
  1995. front: {
  1996. height: math.unit(2.8, "meter"),
  1997. weight: math.unit(200, "kg"),
  1998. name: "Front",
  1999. image: {
  2000. source: "./media/characters/elory/front.svg",
  2001. }
  2002. }
  2003. },
  2004. [
  2005. {
  2006. name: "Normal",
  2007. height: math.unit(2.8, "meter"),
  2008. default: true
  2009. },
  2010. {
  2011. name: "Macro",
  2012. height: math.unit(38, "meter")
  2013. }
  2014. ]
  2015. ))
  2016. characterMakers.push(() => makeCharacter(
  2017. { name: "Angelpatamon" },
  2018. {
  2019. front: {
  2020. height: math.unit(470, "feet"),
  2021. weight: math.unit(924, "tons"),
  2022. name: "Front",
  2023. image: {
  2024. source: "./media/characters/angelpatamon/front.svg",
  2025. }
  2026. }
  2027. },
  2028. [
  2029. {
  2030. name: "Normal",
  2031. height: math.unit(470, "feet"),
  2032. default: true
  2033. },
  2034. {
  2035. name: "Deity Size I",
  2036. height: math.unit(28651.2, "km")
  2037. },
  2038. {
  2039. name: "Deity Size II",
  2040. height: math.unit(171907.2, "km")
  2041. }
  2042. ]
  2043. ))
  2044. characterMakers.push(() => makeCharacter(
  2045. { name: "Cryae" },
  2046. {
  2047. side: {
  2048. height: math.unit(7.2, "meter"),
  2049. weight: math.unit(8.2, "tons"),
  2050. name: "Side",
  2051. image: {
  2052. source: "./media/characters/cryae/side.svg",
  2053. extra: 3500 / 1500
  2054. }
  2055. }
  2056. },
  2057. [
  2058. {
  2059. name: "Normal",
  2060. height: math.unit(7.2, "meter"),
  2061. default: true
  2062. }
  2063. ]
  2064. ))
  2065. characterMakers.push(() => makeCharacter(
  2066. { name: "Xera" },
  2067. {
  2068. front: {
  2069. height: math.unit(6, "feet"),
  2070. weight: math.unit(175, "lb"),
  2071. name: "Front",
  2072. image: {
  2073. source: "./media/characters/xera/front.svg",
  2074. extra: 2300 / 2061
  2075. }
  2076. },
  2077. side: {
  2078. height: math.unit(6, "feet"),
  2079. weight: math.unit(175, "lb"),
  2080. name: "Side",
  2081. image: {
  2082. source: "./media/characters/xera/side.svg",
  2083. extra: 2300 / 2061
  2084. }
  2085. },
  2086. back: {
  2087. height: math.unit(6, "feet"),
  2088. weight: math.unit(175, "lb"),
  2089. name: "Back",
  2090. image: {
  2091. source: "./media/characters/xera/back.svg"
  2092. }
  2093. },
  2094. },
  2095. [
  2096. {
  2097. name: "Small",
  2098. height: math.unit(10, "feet")
  2099. },
  2100. {
  2101. name: "Macro",
  2102. height: math.unit(500, "meters"),
  2103. default: true
  2104. },
  2105. {
  2106. name: "Macro+",
  2107. height: math.unit(10, "km")
  2108. },
  2109. {
  2110. name: "Gigamacro",
  2111. height: math.unit(25000, "km")
  2112. },
  2113. {
  2114. name: "Teramacro",
  2115. height: math.unit(3e6, "km")
  2116. }
  2117. ]
  2118. ))
  2119. characterMakers.push(() => makeCharacter(
  2120. { name: "Nebula" },
  2121. {
  2122. front: {
  2123. height: math.unit(6, "feet"),
  2124. weight: math.unit(175, "lb"),
  2125. name: "Front",
  2126. image: {
  2127. source: "./media/characters/nebula/front.svg",
  2128. extra: 2600 / 2450
  2129. }
  2130. }
  2131. },
  2132. [
  2133. {
  2134. name: "Small",
  2135. height: math.unit(4.5, "meters")
  2136. },
  2137. {
  2138. name: "Macro",
  2139. height: math.unit(1500, "meters"),
  2140. default: true
  2141. },
  2142. {
  2143. name: "Megamacro",
  2144. height: math.unit(150, "km")
  2145. },
  2146. {
  2147. name: "Gigamacro",
  2148. height: math.unit(27000, "km")
  2149. }
  2150. ]
  2151. ))
  2152. characterMakers.push(() => makeCharacter(
  2153. { name: "Abysgar" },
  2154. {
  2155. front: {
  2156. height: math.unit(6, "feet"),
  2157. weight: math.unit(225, "lb"),
  2158. name: "Front",
  2159. image: {
  2160. source: "./media/characters/abysgar/front.svg"
  2161. }
  2162. }
  2163. },
  2164. [
  2165. {
  2166. name: "Small",
  2167. height: math.unit(4.5, "meters")
  2168. },
  2169. {
  2170. name: "Macro",
  2171. height: math.unit(1250, "meters"),
  2172. default: true
  2173. },
  2174. {
  2175. name: "Megamacro",
  2176. height: math.unit(125, "km")
  2177. },
  2178. {
  2179. name: "Gigamacro",
  2180. height: math.unit(26000, "km")
  2181. }
  2182. ]
  2183. ))
  2184. characterMakers.push(() => makeCharacter(
  2185. { name: "Yakuz" },
  2186. {
  2187. front: {
  2188. height: math.unit(6, "feet"),
  2189. weight: math.unit(180, "lb"),
  2190. name: "Front",
  2191. image: {
  2192. source: "./media/characters/yakuz/front.svg"
  2193. }
  2194. }
  2195. },
  2196. [
  2197. {
  2198. name: "Small",
  2199. height: math.unit(5, "meters")
  2200. },
  2201. {
  2202. name: "Macro",
  2203. height: math.unit(1500, "meters"),
  2204. default: true
  2205. },
  2206. {
  2207. name: "Megamacro",
  2208. height: math.unit(200, "km")
  2209. },
  2210. {
  2211. name: "Gigamacro",
  2212. height: math.unit(100000, "km")
  2213. }
  2214. ]
  2215. ))
  2216. characterMakers.push(() => makeCharacter(
  2217. { name: "Mirova" },
  2218. {
  2219. front: {
  2220. height: math.unit(6, "feet"),
  2221. weight: math.unit(175, "lb"),
  2222. name: "Front",
  2223. image: {
  2224. source: "./media/characters/mirova/front.svg"
  2225. }
  2226. }
  2227. },
  2228. [
  2229. {
  2230. name: "Small",
  2231. height: math.unit(5, "meters")
  2232. },
  2233. {
  2234. name: "Macro",
  2235. height: math.unit(900, "meters"),
  2236. default: true
  2237. },
  2238. {
  2239. name: "Megamacro",
  2240. height: math.unit(135, "km")
  2241. },
  2242. {
  2243. name: "Gigamacro",
  2244. height: math.unit(20000, "km")
  2245. }
  2246. ]
  2247. ))
  2248. characterMakers.push(() => makeCharacter(
  2249. { name: "Asana (Mech)" },
  2250. {
  2251. side: {
  2252. height: math.unit(28.35, "feet"),
  2253. weight: math.unit(99.75, "tons"),
  2254. name: "Side",
  2255. image: {
  2256. source: "./media/characters/asana-mech/side.svg"
  2257. }
  2258. }
  2259. },
  2260. [
  2261. {
  2262. name: "Normal",
  2263. height: math.unit(28.35, "feet"),
  2264. default: true
  2265. },
  2266. {
  2267. name: "Macro",
  2268. height: math.unit(2500, "feet")
  2269. },
  2270. {
  2271. name: "Megamacro",
  2272. height: math.unit(25, "miles")
  2273. },
  2274. {
  2275. name: "Examacro",
  2276. height: math.unit(6e8, "lightyears")
  2277. },
  2278. ]
  2279. ))
  2280. characterMakers.push(() => makeCharacter(
  2281. { name: "Ashtrek" },
  2282. {
  2283. front: {
  2284. height: math.unit(2, "meters"),
  2285. weight: math.unit(70, "kg"),
  2286. name: "Front",
  2287. image: {
  2288. source: "./media/characters/ashtrek/front.svg",
  2289. extra: 560 / 524,
  2290. bottom: 0.01
  2291. }
  2292. },
  2293. frontArmor: {
  2294. height: math.unit(2, "meters"),
  2295. weight: math.unit(76, "kg"),
  2296. name: "Front (Armor)",
  2297. image: {
  2298. source: "./media/characters/ashtrek/front-armor.svg",
  2299. extra: 561 / 527,
  2300. bottom: 0.01
  2301. }
  2302. },
  2303. side: {
  2304. height: math.unit(2, "meters"),
  2305. weight: math.unit(70, "kg"),
  2306. name: "Side",
  2307. image: {
  2308. source: "./media/characters/ashtrek/side.svg",
  2309. extra: 1717 / 1609,
  2310. bottom: 0.005
  2311. }
  2312. },
  2313. back: {
  2314. height: math.unit(2, "meters"),
  2315. weight: math.unit(70, "kg"),
  2316. name: "Back",
  2317. image: {
  2318. source: "./media/characters/ashtrek/back.svg",
  2319. extra: 1570 / 1501
  2320. }
  2321. },
  2322. },
  2323. [
  2324. {
  2325. name: "DEFCON 5",
  2326. height: math.unit(5, "meters")
  2327. },
  2328. {
  2329. name: "DEFCON 4",
  2330. height: math.unit(500, "meters"),
  2331. default: true
  2332. },
  2333. {
  2334. name: "DEFCON 3",
  2335. height: math.unit(5, "km")
  2336. },
  2337. {
  2338. name: "DEFCON 2",
  2339. height: math.unit(500, "km")
  2340. },
  2341. {
  2342. name: "DEFCON 1",
  2343. height: math.unit(500000, "km")
  2344. },
  2345. {
  2346. name: "DEFCON 0",
  2347. height: math.unit(3, "gigaparsecs")
  2348. },
  2349. ]
  2350. ))
  2351. characterMakers.push(() => makeCharacter(
  2352. { name: "Gale" },
  2353. {
  2354. front: {
  2355. height: math.unit(2, "meters"),
  2356. weight: math.unit(76, "kg"),
  2357. name: "Front",
  2358. image: {
  2359. source: "./media/characters/gale/front.svg"
  2360. }
  2361. },
  2362. frontAlt1: {
  2363. height: math.unit(2, "meters"),
  2364. weight: math.unit(76, "kg"),
  2365. name: "Front (Alt 1)",
  2366. image: {
  2367. source: "./media/characters/gale/front-alt-1.svg"
  2368. }
  2369. },
  2370. frontAlt2: {
  2371. height: math.unit(2, "meters"),
  2372. weight: math.unit(76, "kg"),
  2373. name: "Front (Alt 2)",
  2374. image: {
  2375. source: "./media/characters/gale/front-alt-2.svg"
  2376. }
  2377. },
  2378. },
  2379. [
  2380. {
  2381. name: "Normal",
  2382. height: math.unit(7, "feet")
  2383. },
  2384. {
  2385. name: "Macro",
  2386. height: math.unit(150, "feet"),
  2387. default: true
  2388. },
  2389. {
  2390. name: "Macro+",
  2391. height: math.unit(300, "feet")
  2392. },
  2393. ]
  2394. ))
  2395. characterMakers.push(() => makeCharacter(
  2396. { name: "Draylen" },
  2397. {
  2398. front: {
  2399. height: math.unit(2, "meters"),
  2400. weight: math.unit(76, "kg"),
  2401. name: "Front",
  2402. image: {
  2403. source: "./media/characters/draylen/front.svg"
  2404. }
  2405. }
  2406. },
  2407. [
  2408. {
  2409. name: "Macro",
  2410. height: math.unit(150, "feet"),
  2411. default: true
  2412. }
  2413. ]
  2414. ))
  2415. characterMakers.push(() => makeCharacter(
  2416. { name: "Chez" },
  2417. {
  2418. front: {
  2419. height: math.unit(7 + 9 / 12, "feet"),
  2420. weight: math.unit(379, "lbs"),
  2421. name: "Front",
  2422. image: {
  2423. source: "./media/characters/chez/front.svg"
  2424. }
  2425. },
  2426. side: {
  2427. height: math.unit(7 + 9 / 12, "feet"),
  2428. weight: math.unit(379, "lbs"),
  2429. name: "Side",
  2430. image: {
  2431. source: "./media/characters/chez/side.svg"
  2432. }
  2433. }
  2434. },
  2435. [
  2436. {
  2437. name: "Normal",
  2438. height: math.unit(7 + 9 / 12, "feet"),
  2439. default: true
  2440. },
  2441. {
  2442. name: "God King",
  2443. height: math.unit(9750000, "meters")
  2444. }
  2445. ]
  2446. ))
  2447. characterMakers.push(() => makeCharacter(
  2448. { name: "Kaylum" },
  2449. {
  2450. front: {
  2451. height: math.unit(6, "feet"),
  2452. weight: math.unit(275, "lbs"),
  2453. name: "Front",
  2454. image: {
  2455. source: "./media/characters/kaylum/front.svg",
  2456. bottom: 0.01,
  2457. extra: 1166 / 1031
  2458. }
  2459. },
  2460. frontWingless: {
  2461. height: math.unit(6, "feet"),
  2462. weight: math.unit(275, "lbs"),
  2463. name: "Front (Wingless)",
  2464. image: {
  2465. source: "./media/characters/kaylum/front-wingless.svg",
  2466. bottom: 0.01,
  2467. extra: 1117 / 1031
  2468. }
  2469. }
  2470. },
  2471. [
  2472. {
  2473. name: "Normal",
  2474. height: math.unit(3.05, "meters")
  2475. },
  2476. {
  2477. name: "Master",
  2478. height: math.unit(5.5, "meters")
  2479. },
  2480. {
  2481. name: "Rampage",
  2482. height: math.unit(19, "meters")
  2483. },
  2484. {
  2485. name: "Macro Lite",
  2486. height: math.unit(37, "meters")
  2487. },
  2488. {
  2489. name: "Hyper Predator",
  2490. height: math.unit(61, "meters")
  2491. },
  2492. {
  2493. name: "Macro",
  2494. height: math.unit(138, "meters"),
  2495. default: true
  2496. }
  2497. ]
  2498. ))
  2499. characterMakers.push(() => makeCharacter(
  2500. { name: "Geta" },
  2501. {
  2502. front: {
  2503. height: math.unit(6, "feet"),
  2504. weight: math.unit(150, "lbs"),
  2505. name: "Front",
  2506. image: {
  2507. source: "./media/characters/geta/front.svg"
  2508. }
  2509. }
  2510. },
  2511. [
  2512. {
  2513. name: "Micro",
  2514. height: math.unit(3, "inches"),
  2515. default: true
  2516. },
  2517. {
  2518. name: "Normal",
  2519. height: math.unit(5 + 5 / 12, "feet")
  2520. }
  2521. ]
  2522. ))
  2523. characterMakers.push(() => makeCharacter(
  2524. { name: "Tyrnn" },
  2525. {
  2526. front: {
  2527. height: math.unit(6, "feet"),
  2528. weight: math.unit(300, "lbs"),
  2529. name: "Front",
  2530. image: {
  2531. source: "./media/characters/tyrnn/front.svg"
  2532. }
  2533. }
  2534. },
  2535. [
  2536. {
  2537. name: "Main Height",
  2538. height: math.unit(355, "feet"),
  2539. default: true
  2540. },
  2541. {
  2542. name: "Fave. Height",
  2543. height: math.unit(2400, "feet")
  2544. }
  2545. ]
  2546. ))
  2547. characterMakers.push(() => makeCharacter(
  2548. { name: "Apple" },
  2549. {
  2550. front: {
  2551. height: math.unit(6, "feet"),
  2552. weight: math.unit(300, "lbs"),
  2553. name: "Front",
  2554. image: {
  2555. source: "./media/characters/appledectomy/front.svg"
  2556. }
  2557. }
  2558. },
  2559. [
  2560. {
  2561. name: "Macro",
  2562. height: math.unit(2500, "feet")
  2563. },
  2564. {
  2565. name: "Megamacro",
  2566. height: math.unit(50, "miles"),
  2567. default: true
  2568. },
  2569. {
  2570. name: "Gigamacro",
  2571. height: math.unit(5000, "miles")
  2572. },
  2573. {
  2574. name: "Teramacro",
  2575. height: math.unit(250000, "miles")
  2576. },
  2577. ]
  2578. ))
  2579. characterMakers.push(() => makeCharacter(
  2580. { name: "Vulpes" },
  2581. {
  2582. front: {
  2583. height: math.unit(6, "feet"),
  2584. weight: math.unit(200, "lbs"),
  2585. name: "Front",
  2586. image: {
  2587. source: "./media/characters/vulpes/front.svg",
  2588. extra: 573 / 543,
  2589. bottom: 0.033
  2590. }
  2591. },
  2592. side: {
  2593. height: math.unit(6, "feet"),
  2594. weight: math.unit(200, "lbs"),
  2595. name: "Side",
  2596. image: {
  2597. source: "./media/characters/vulpes/side.svg",
  2598. extra: 573 / 543,
  2599. bottom: 0.01
  2600. }
  2601. },
  2602. back: {
  2603. height: math.unit(6, "feet"),
  2604. weight: math.unit(200, "lbs"),
  2605. name: "Back",
  2606. image: {
  2607. source: "./media/characters/vulpes/back.svg",
  2608. extra: 573 / 543,
  2609. }
  2610. },
  2611. feet: {
  2612. height: math.unit(1.276, "feet"),
  2613. name: "Feet",
  2614. image: {
  2615. source: "./media/characters/vulpes/feet.svg"
  2616. }
  2617. },
  2618. maw: {
  2619. height: math.unit(1.18, "feet"),
  2620. name: "Maw",
  2621. image: {
  2622. source: "./media/characters/vulpes/maw.svg"
  2623. }
  2624. },
  2625. },
  2626. [
  2627. {
  2628. name: "Micro",
  2629. height: math.unit(2, "inches")
  2630. },
  2631. {
  2632. name: "Normal",
  2633. height: math.unit(6.3, "feet")
  2634. },
  2635. {
  2636. name: "Macro",
  2637. height: math.unit(850, "feet")
  2638. },
  2639. {
  2640. name: "Megamacro",
  2641. height: math.unit(7500, "feet"),
  2642. default: true
  2643. },
  2644. {
  2645. name: "Gigamacro",
  2646. height: math.unit(570000, "miles")
  2647. }
  2648. ]
  2649. ))
  2650. characterMakers.push(() => makeCharacter(
  2651. { name: "Rain Fallen" },
  2652. {
  2653. front: {
  2654. height: math.unit(6, "feet"),
  2655. weight: math.unit(210, "lbs"),
  2656. name: "Front",
  2657. image: {
  2658. source: "./media/characters/rain-fallen/front.svg"
  2659. }
  2660. },
  2661. side: {
  2662. height: math.unit(6, "feet"),
  2663. weight: math.unit(210, "lbs"),
  2664. name: "Side",
  2665. image: {
  2666. source: "./media/characters/rain-fallen/side.svg"
  2667. }
  2668. },
  2669. back: {
  2670. height: math.unit(6, "feet"),
  2671. weight: math.unit(210, "lbs"),
  2672. name: "Back",
  2673. image: {
  2674. source: "./media/characters/rain-fallen/back.svg"
  2675. }
  2676. },
  2677. feral: {
  2678. height: math.unit(9, "feet"),
  2679. weight: math.unit(700, "lbs"),
  2680. name: "Feral",
  2681. image: {
  2682. source: "./media/characters/rain-fallen/feral.svg"
  2683. }
  2684. },
  2685. },
  2686. [
  2687. {
  2688. name: "Normal",
  2689. height: math.unit(5, "meter")
  2690. },
  2691. {
  2692. name: "Macro",
  2693. height: math.unit(150, "meter"),
  2694. default: true
  2695. },
  2696. {
  2697. name: "Megamacro",
  2698. height: math.unit(278e6, "meter")
  2699. },
  2700. {
  2701. name: "Gigamacro",
  2702. height: math.unit(2e9, "meter")
  2703. },
  2704. {
  2705. name: "Teramacro",
  2706. height: math.unit(8e12, "meter")
  2707. },
  2708. {
  2709. name: "Devourer",
  2710. height: math.unit(14, "zettameters")
  2711. },
  2712. {
  2713. name: "Scarlet King",
  2714. height: math.unit(18, "yottameters")
  2715. },
  2716. {
  2717. name: "Void",
  2718. height: math.unit(6.66e66, "yottameters")
  2719. }
  2720. ]
  2721. ))
  2722. characterMakers.push(() => makeCharacter(
  2723. { name: "Zaakira" },
  2724. {
  2725. standing: {
  2726. height: math.unit(6, "feet"),
  2727. weight: math.unit(180, "lbs"),
  2728. name: "Standing",
  2729. image: {
  2730. source: "./media/characters/zaakira/standing.svg"
  2731. }
  2732. },
  2733. laying: {
  2734. height: math.unit(3, "feet"),
  2735. weight: math.unit(180, "lbs"),
  2736. name: "Laying",
  2737. image: {
  2738. source: "./media/characters/zaakira/laying.svg"
  2739. }
  2740. },
  2741. },
  2742. [
  2743. {
  2744. name: "Normal",
  2745. height: math.unit(12, "feet")
  2746. },
  2747. {
  2748. name: "Macro",
  2749. height: math.unit(279, "feet"),
  2750. default: true
  2751. }
  2752. ]
  2753. ))
  2754. characterMakers.push(() => makeCharacter(
  2755. { name: "Sigvald" },
  2756. {
  2757. front: {
  2758. height: math.unit(6, "feet"),
  2759. weight: math.unit(250, "lbs"),
  2760. name: "Front",
  2761. image: {
  2762. source: "./media/characters/sigvald/front.svg",
  2763. extra: 1000 / 850
  2764. }
  2765. },
  2766. back: {
  2767. height: math.unit(6, "feet"),
  2768. weight: math.unit(250, "lbs"),
  2769. name: "Back",
  2770. image: {
  2771. source: "./media/characters/sigvald/back.svg"
  2772. }
  2773. },
  2774. },
  2775. [
  2776. {
  2777. name: "Normal",
  2778. height: math.unit(8, "feet")
  2779. },
  2780. {
  2781. name: "Large",
  2782. height: math.unit(12, "feet")
  2783. },
  2784. {
  2785. name: "Larger",
  2786. height: math.unit(20, "feet")
  2787. },
  2788. {
  2789. name: "Macro",
  2790. height: math.unit(150, "feet")
  2791. },
  2792. {
  2793. name: "Macro+",
  2794. height: math.unit(200, "feet"),
  2795. default: true
  2796. },
  2797. ]
  2798. ))
  2799. characterMakers.push(() => makeCharacter(
  2800. { name: "Scott" },
  2801. {
  2802. side: {
  2803. height: math.unit(12, "feet"),
  2804. weight: math.unit(2000, "kg"),
  2805. name: "Side",
  2806. image: {
  2807. source: "./media/characters/scott/side.svg",
  2808. extra: 754/724,
  2809. bottom: 0.069
  2810. }
  2811. },
  2812. upright: {
  2813. height: math.unit(12, "feet"),
  2814. weight: math.unit(2000, "kg"),
  2815. name: "Upright",
  2816. image: {
  2817. source: "./media/characters/scott/upright.svg",
  2818. extra: 3881/3722,
  2819. bottom: 0.05
  2820. }
  2821. },
  2822. },
  2823. [
  2824. {
  2825. name: "Normal",
  2826. height: math.unit(12, "feet"),
  2827. default: true
  2828. },
  2829. ]
  2830. ))
  2831. characterMakers.push(() => makeCharacter(
  2832. { name: "Tobias" },
  2833. {
  2834. side: {
  2835. height: math.unit(8, "meters"),
  2836. weight: math.unit(84755, "lbs"),
  2837. name: "Side",
  2838. image: {
  2839. source: "./media/characters/tobias/side.svg",
  2840. extra: 1474 / 1096,
  2841. bottom: 38.9 / 1513.1235
  2842. }
  2843. },
  2844. },
  2845. [
  2846. {
  2847. name: "Normal",
  2848. height: math.unit(8, "meters"),
  2849. default: true
  2850. },
  2851. ]
  2852. ))
  2853. characterMakers.push(() => makeCharacter(
  2854. { name: "Kieran" },
  2855. {
  2856. front: {
  2857. height: math.unit(5.5, "feet"),
  2858. weight: math.unit(400, "lbs"),
  2859. name: "Front",
  2860. image: {
  2861. source: "./media/characters/kieran/front.svg",
  2862. extra: 2694/2364,
  2863. bottom: 217/2908
  2864. }
  2865. },
  2866. side: {
  2867. height: math.unit(5.5, "feet"),
  2868. weight: math.unit(400, "lbs"),
  2869. name: "Side",
  2870. image: {
  2871. source: "./media/characters/kieran/side.svg",
  2872. extra: 875/777,
  2873. bottom: 84.6/959
  2874. }
  2875. },
  2876. },
  2877. [
  2878. {
  2879. name: "Normal",
  2880. height: math.unit(5.5, "feet"),
  2881. default: true
  2882. },
  2883. ]
  2884. ))
  2885. characterMakers.push(() => makeCharacter(
  2886. { name: "Sanya" },
  2887. {
  2888. side: {
  2889. height: math.unit(2, "meters"),
  2890. weight: math.unit(70, "kg"),
  2891. name: "Side",
  2892. image: {
  2893. source: "./media/characters/sanya/side.svg",
  2894. bottom: 0.02,
  2895. extra: 1.02
  2896. }
  2897. },
  2898. },
  2899. [
  2900. {
  2901. name: "Small",
  2902. height: math.unit(2, "meters")
  2903. },
  2904. {
  2905. name: "Normal",
  2906. height: math.unit(3, "meters")
  2907. },
  2908. {
  2909. name: "Macro",
  2910. height: math.unit(16, "meters"),
  2911. default: true
  2912. },
  2913. ]
  2914. ))
  2915. characterMakers.push(() => makeCharacter(
  2916. { name: "Miranda" },
  2917. {
  2918. side: {
  2919. height: math.unit(2, "meters"),
  2920. weight: math.unit(120, "kg"),
  2921. name: "Front",
  2922. image: {
  2923. source: "./media/characters/miranda/front.svg",
  2924. extra: 10.6 / 10
  2925. }
  2926. },
  2927. },
  2928. [
  2929. {
  2930. name: "Normal",
  2931. height: math.unit(10, "feet"),
  2932. default: true
  2933. }
  2934. ]
  2935. ))
  2936. characterMakers.push(() => makeCharacter(
  2937. { name: "James" },
  2938. {
  2939. side: {
  2940. height: math.unit(2, "meters"),
  2941. weight: math.unit(100, "kg"),
  2942. name: "Front",
  2943. image: {
  2944. source: "./media/characters/james/front.svg",
  2945. extra: 10 / 8.5
  2946. }
  2947. },
  2948. },
  2949. [
  2950. {
  2951. name: "Normal",
  2952. height: math.unit(8.5, "feet"),
  2953. default: true
  2954. }
  2955. ]
  2956. ))
  2957. characterMakers.push(() => makeCharacter(
  2958. { name: "Heather" },
  2959. {
  2960. side: {
  2961. height: math.unit(9.5, "feet"),
  2962. weight: math.unit(2500, "lbs"),
  2963. name: "Side",
  2964. image: {
  2965. source: "./media/characters/heather/side.svg"
  2966. }
  2967. },
  2968. },
  2969. [
  2970. {
  2971. name: "Normal",
  2972. height: math.unit(9.5, "feet"),
  2973. default: true
  2974. }
  2975. ]
  2976. ))
  2977. characterMakers.push(() => makeCharacter(
  2978. { name: "Lukas" },
  2979. {
  2980. side: {
  2981. height: math.unit(6.5, "feet"),
  2982. weight: math.unit(400, "lbs"),
  2983. name: "Side",
  2984. image: {
  2985. source: "./media/characters/lukas/side.svg",
  2986. extra: 7.25 / 6.5
  2987. }
  2988. },
  2989. },
  2990. [
  2991. {
  2992. name: "Normal",
  2993. height: math.unit(6.5, "feet"),
  2994. default: true
  2995. }
  2996. ]
  2997. ))
  2998. characterMakers.push(() => makeCharacter(
  2999. { name: "Louise" },
  3000. {
  3001. side: {
  3002. height: math.unit(5, "feet"),
  3003. weight: math.unit(3000, "lbs"),
  3004. name: "Side",
  3005. image: {
  3006. source: "./media/characters/louise/side.svg"
  3007. }
  3008. },
  3009. },
  3010. [
  3011. {
  3012. name: "Normal",
  3013. height: math.unit(5, "feet"),
  3014. default: true
  3015. }
  3016. ]
  3017. ))
  3018. characterMakers.push(() => makeCharacter(
  3019. { name: "Ramona" },
  3020. {
  3021. side: {
  3022. height: math.unit(6, "feet"),
  3023. weight: math.unit(150, "lbs"),
  3024. name: "Side",
  3025. image: {
  3026. source: "./media/characters/ramona/side.svg"
  3027. }
  3028. },
  3029. },
  3030. [
  3031. {
  3032. name: "Normal",
  3033. height: math.unit(5.3, "meters"),
  3034. default: true
  3035. },
  3036. {
  3037. name: "Macro",
  3038. height: math.unit(20, "stories")
  3039. },
  3040. {
  3041. name: "Macro+",
  3042. height: math.unit(50, "stories")
  3043. },
  3044. ]
  3045. ))
  3046. characterMakers.push(() => makeCharacter(
  3047. { name: "Deerpuff" },
  3048. {
  3049. standing: {
  3050. height: math.unit(5.75, "feet"),
  3051. weight: math.unit(160, "lbs"),
  3052. name: "Standing",
  3053. image: {
  3054. source: "./media/characters/deerpuff/standing.svg",
  3055. extra: 682 / 624
  3056. }
  3057. },
  3058. sitting: {
  3059. height: math.unit(5.75 / 1.79, "feet"),
  3060. weight: math.unit(160, "lbs"),
  3061. name: "Sitting",
  3062. image: {
  3063. source: "./media/characters/deerpuff/sitting.svg",
  3064. bottom: 44 / 400,
  3065. extra: 1
  3066. }
  3067. },
  3068. taurLaying: {
  3069. height: math.unit(6, "feet"),
  3070. weight: math.unit(400, "lbs"),
  3071. name: "Taur (Laying)",
  3072. image: {
  3073. source: "./media/characters/deerpuff/taur-laying.svg"
  3074. }
  3075. },
  3076. },
  3077. [
  3078. {
  3079. name: "Puffball",
  3080. height: math.unit(6, "inches")
  3081. },
  3082. {
  3083. name: "Normalpuff",
  3084. height: math.unit(5.75, "feet")
  3085. },
  3086. {
  3087. name: "Macropuff",
  3088. height: math.unit(1500, "feet"),
  3089. default: true
  3090. },
  3091. {
  3092. name: "Megapuff",
  3093. height: math.unit(500, "miles")
  3094. },
  3095. {
  3096. name: "Gigapuff",
  3097. height: math.unit(250000, "miles")
  3098. },
  3099. {
  3100. name: "Omegapuff",
  3101. height: math.unit(1000, "lightyears")
  3102. },
  3103. ]
  3104. ))
  3105. characterMakers.push(() => makeCharacter(
  3106. { name: "Vivian" },
  3107. {
  3108. stomping: {
  3109. height: math.unit(6, "feet"),
  3110. weight: math.unit(170, "lbs"),
  3111. name: "Stomping",
  3112. image: {
  3113. source: "./media/characters/vivian/stomping.svg"
  3114. }
  3115. },
  3116. sitting: {
  3117. height: math.unit(6 / 1.75, "feet"),
  3118. weight: math.unit(170, "lbs"),
  3119. name: "Sitting",
  3120. image: {
  3121. source: "./media/characters/vivian/sitting.svg",
  3122. bottom: 1 / 6.4,
  3123. extra: 1,
  3124. }
  3125. },
  3126. },
  3127. [
  3128. {
  3129. name: "Normal",
  3130. height: math.unit(7, "feet"),
  3131. default: true
  3132. },
  3133. {
  3134. name: "Macro",
  3135. height: math.unit(10, "stories")
  3136. },
  3137. {
  3138. name: "Macro+",
  3139. height: math.unit(30, "stories")
  3140. },
  3141. {
  3142. name: "Megamacro",
  3143. height: math.unit(10, "miles")
  3144. },
  3145. {
  3146. name: "Megamacro+",
  3147. height: math.unit(2750000, "meters")
  3148. },
  3149. ]
  3150. ))
  3151. characterMakers.push(() => makeCharacter(
  3152. { name: "Prince" },
  3153. {
  3154. front: {
  3155. height: math.unit(6, "feet"),
  3156. weight: math.unit(160, "lbs"),
  3157. name: "Front",
  3158. image: {
  3159. source: "./media/characters/prince/front.svg",
  3160. extra: 3400 / 3000
  3161. }
  3162. },
  3163. jumping: {
  3164. height: math.unit(6, "feet"),
  3165. weight: math.unit(160, "lbs"),
  3166. name: "Jumping",
  3167. image: {
  3168. source: "./media/characters/prince/jump.svg",
  3169. extra: 2555 / 2134
  3170. }
  3171. },
  3172. },
  3173. [
  3174. {
  3175. name: "Normal",
  3176. height: math.unit(7.75, "feet"),
  3177. default: true
  3178. },
  3179. {
  3180. name: "Not cute",
  3181. height: math.unit(17, "feet")
  3182. },
  3183. {
  3184. name: "I said NOT",
  3185. height: math.unit(91, "feet")
  3186. },
  3187. {
  3188. name: "Please stop",
  3189. height: math.unit(560, "feet")
  3190. },
  3191. {
  3192. name: "What have you done",
  3193. height: math.unit(2200, "feet")
  3194. },
  3195. {
  3196. name: "Deer God",
  3197. height: math.unit(3.6, "miles")
  3198. },
  3199. ]
  3200. ))
  3201. characterMakers.push(() => makeCharacter(
  3202. { name: "Psymon" },
  3203. {
  3204. standing: {
  3205. height: math.unit(6, "feet"),
  3206. weight: math.unit(300, "lbs"),
  3207. name: "Standing",
  3208. image: {
  3209. source: "./media/characters/psymon/standing.svg",
  3210. extra: 1888 / 1810,
  3211. bottom: 0.05
  3212. }
  3213. },
  3214. slithering: {
  3215. height: math.unit(6, "feet"),
  3216. weight: math.unit(300, "lbs"),
  3217. name: "Slithering",
  3218. image: {
  3219. source: "./media/characters/psymon/slithering.svg",
  3220. extra: 1330 / 1224
  3221. }
  3222. },
  3223. slitheringAlt: {
  3224. height: math.unit(6, "feet"),
  3225. weight: math.unit(300, "lbs"),
  3226. name: "Slithering (Alt)",
  3227. image: {
  3228. source: "./media/characters/psymon/slithering-alt.svg",
  3229. extra: 1330 / 1224
  3230. }
  3231. },
  3232. },
  3233. [
  3234. {
  3235. name: "Normal",
  3236. height: math.unit(11.25, "feet"),
  3237. default: true
  3238. },
  3239. {
  3240. name: "Large",
  3241. height: math.unit(27, "feet")
  3242. },
  3243. {
  3244. name: "Giant",
  3245. height: math.unit(87, "feet")
  3246. },
  3247. {
  3248. name: "Macro",
  3249. height: math.unit(365, "feet")
  3250. },
  3251. {
  3252. name: "Megamacro",
  3253. height: math.unit(3, "miles")
  3254. },
  3255. {
  3256. name: "World Serpent",
  3257. height: math.unit(8000, "miles")
  3258. },
  3259. ]
  3260. ))
  3261. characterMakers.push(() => makeCharacter(
  3262. { name: "Daimos" },
  3263. {
  3264. front: {
  3265. height: math.unit(6, "feet"),
  3266. weight: math.unit(180, "lbs"),
  3267. name: "Front",
  3268. image: {
  3269. source: "./media/characters/daimos/front.svg",
  3270. extra: 4160 / 3897,
  3271. bottom: 0.021
  3272. }
  3273. }
  3274. },
  3275. [
  3276. {
  3277. name: "Normal",
  3278. height: math.unit(8, "feet"),
  3279. default: true
  3280. },
  3281. {
  3282. name: "Big Dog",
  3283. height: math.unit(22, "feet")
  3284. },
  3285. {
  3286. name: "Macro",
  3287. height: math.unit(127, "feet")
  3288. },
  3289. {
  3290. name: "Megamacro",
  3291. height: math.unit(3600, "feet")
  3292. },
  3293. ]
  3294. ))
  3295. characterMakers.push(() => makeCharacter(
  3296. { name: "Blake" },
  3297. {
  3298. side: {
  3299. height: math.unit(6, "feet"),
  3300. weight: math.unit(180, "lbs"),
  3301. name: "Side",
  3302. image: {
  3303. source: "./media/characters/blake/side.svg",
  3304. extra: 1212 / 1120,
  3305. bottom: 0.05
  3306. }
  3307. },
  3308. crouched: {
  3309. height: math.unit(6 * 0.57, "feet"),
  3310. weight: math.unit(180, "lbs"),
  3311. name: "Crouched",
  3312. image: {
  3313. source: "./media/characters/blake/crouched.svg",
  3314. extra: 840 / 587,
  3315. bottom: 0.04
  3316. }
  3317. },
  3318. bent: {
  3319. height: math.unit(6 * 0.75, "feet"),
  3320. weight: math.unit(180, "lbs"),
  3321. name: "Bent",
  3322. image: {
  3323. source: "./media/characters/blake/bent.svg",
  3324. extra: 592 / 544,
  3325. bottom: 0.035
  3326. }
  3327. },
  3328. },
  3329. [
  3330. {
  3331. name: "Normal",
  3332. height: math.unit(8 + 1 / 6, "feet"),
  3333. default: true
  3334. },
  3335. {
  3336. name: "Big Backside",
  3337. height: math.unit(37, "feet")
  3338. },
  3339. {
  3340. name: "Subway Shredder",
  3341. height: math.unit(72, "feet")
  3342. },
  3343. {
  3344. name: "City Carver",
  3345. height: math.unit(1675, "feet")
  3346. },
  3347. {
  3348. name: "Tectonic Tweaker",
  3349. height: math.unit(2300, "miles")
  3350. },
  3351. ]
  3352. ))
  3353. characterMakers.push(() => makeCharacter(
  3354. { name: "Guisetto" },
  3355. {
  3356. front: {
  3357. height: math.unit(6, "feet"),
  3358. weight: math.unit(180, "lbs"),
  3359. name: "Front",
  3360. image: {
  3361. source: "./media/characters/guisetto/front.svg",
  3362. extra: 856 / 817,
  3363. bottom: 0.06
  3364. }
  3365. },
  3366. airborne: {
  3367. height: math.unit(6, "feet"),
  3368. weight: math.unit(180, "lbs"),
  3369. name: "Airborne",
  3370. image: {
  3371. source: "./media/characters/guisetto/airborne.svg",
  3372. extra: 584 / 525
  3373. }
  3374. },
  3375. },
  3376. [
  3377. {
  3378. name: "Normal",
  3379. height: math.unit(10 + 11 / 12, "feet"),
  3380. default: true
  3381. },
  3382. {
  3383. name: "Large",
  3384. height: math.unit(35, "feet")
  3385. },
  3386. {
  3387. name: "Macro",
  3388. height: math.unit(475, "feet")
  3389. },
  3390. ]
  3391. ))
  3392. characterMakers.push(() => makeCharacter(
  3393. { name: "Luxor" },
  3394. {
  3395. front: {
  3396. height: math.unit(6, "feet"),
  3397. weight: math.unit(180, "lbs"),
  3398. name: "Front",
  3399. image: {
  3400. source: "./media/characters/luxor/front.svg",
  3401. extra: 2940 / 2152
  3402. }
  3403. },
  3404. back: {
  3405. height: math.unit(6, "feet"),
  3406. weight: math.unit(180, "lbs"),
  3407. name: "Back",
  3408. image: {
  3409. source: "./media/characters/luxor/back.svg",
  3410. extra: 1083 / 960
  3411. }
  3412. },
  3413. },
  3414. [
  3415. {
  3416. name: "Normal",
  3417. height: math.unit(5 + 5 / 6, "feet"),
  3418. default: true
  3419. },
  3420. {
  3421. name: "Lamp",
  3422. height: math.unit(50, "feet")
  3423. },
  3424. {
  3425. name: "Lämp",
  3426. height: math.unit(300, "feet")
  3427. },
  3428. {
  3429. name: "The sun is a lamp",
  3430. height: math.unit(250000, "miles")
  3431. },
  3432. ]
  3433. ))
  3434. characterMakers.push(() => makeCharacter(
  3435. { name: "Huoyan" },
  3436. {
  3437. front: {
  3438. height: math.unit(6, "feet"),
  3439. weight: math.unit(50, "lbs"),
  3440. name: "Front",
  3441. image: {
  3442. source: "./media/characters/huoyan/front.svg"
  3443. }
  3444. },
  3445. side: {
  3446. height: math.unit(6, "feet"),
  3447. weight: math.unit(180, "lbs"),
  3448. name: "Side",
  3449. image: {
  3450. source: "./media/characters/huoyan/side.svg"
  3451. }
  3452. },
  3453. },
  3454. [
  3455. {
  3456. name: "Chef",
  3457. height: math.unit(9, "feet")
  3458. },
  3459. {
  3460. name: "Normal",
  3461. height: math.unit(65, "feet"),
  3462. default: true
  3463. },
  3464. {
  3465. name: "Macro",
  3466. height: math.unit(780, "feet")
  3467. },
  3468. {
  3469. name: "Flaming Mountain",
  3470. height: math.unit(4.8, "miles")
  3471. },
  3472. {
  3473. name: "Celestial",
  3474. height: math.unit(765000, "miles")
  3475. },
  3476. ]
  3477. ))
  3478. characterMakers.push(() => makeCharacter(
  3479. { name: "Tails" },
  3480. {
  3481. front: {
  3482. height: math.unit(5 + 3 / 4, "feet"),
  3483. weight: math.unit(120, "lbs"),
  3484. name: "Front",
  3485. image: {
  3486. source: "./media/characters/tails/front.svg"
  3487. }
  3488. }
  3489. },
  3490. [
  3491. {
  3492. name: "Normal",
  3493. height: math.unit(5 + 3 / 4, "feet"),
  3494. default: true
  3495. }
  3496. ]
  3497. ))
  3498. characterMakers.push(() => makeCharacter(
  3499. { name: "Rainy" },
  3500. {
  3501. front: {
  3502. height: math.unit(4, "feet"),
  3503. weight: math.unit(50, "lbs"),
  3504. name: "Front",
  3505. image: {
  3506. source: "./media/characters/rainy/front.svg"
  3507. }
  3508. }
  3509. },
  3510. [
  3511. {
  3512. name: "Macro",
  3513. height: math.unit(800, "feet"),
  3514. default: true
  3515. }
  3516. ]
  3517. ))
  3518. characterMakers.push(() => makeCharacter(
  3519. { name: "Rainier" },
  3520. {
  3521. front: {
  3522. height: math.unit(6, "feet"),
  3523. weight: math.unit(150, "lbs"),
  3524. name: "Front",
  3525. image: {
  3526. source: "./media/characters/rainier/front.svg"
  3527. }
  3528. }
  3529. },
  3530. [
  3531. {
  3532. name: "Micro",
  3533. height: math.unit(2, "mm"),
  3534. default: true
  3535. }
  3536. ]
  3537. ))
  3538. characterMakers.push(() => makeCharacter(
  3539. { name: "Andy" },
  3540. {
  3541. front: {
  3542. height: math.unit(6, "feet"),
  3543. weight: math.unit(180, "lbs"),
  3544. name: "Front",
  3545. image: {
  3546. source: "./media/characters/andy/front.svg"
  3547. }
  3548. }
  3549. },
  3550. [
  3551. {
  3552. name: "Normal",
  3553. height: math.unit(8, "feet"),
  3554. default: true
  3555. },
  3556. {
  3557. name: "Macro",
  3558. height: math.unit(1000, "feet")
  3559. },
  3560. {
  3561. name: "Megamacro",
  3562. height: math.unit(5, "miles")
  3563. },
  3564. {
  3565. name: "Gigamacro",
  3566. height: math.unit(5000, "miles")
  3567. },
  3568. ]
  3569. ))
  3570. characterMakers.push(() => makeCharacter(
  3571. { name: "Cimmaron" },
  3572. {
  3573. front: {
  3574. height: math.unit(6, "feet"),
  3575. weight: math.unit(210, "lbs"),
  3576. name: "Front",
  3577. image: {
  3578. source: "./media/characters/cimmaron/front-sfw.svg",
  3579. extra: 701 / 676,
  3580. bottom: 0.046
  3581. }
  3582. },
  3583. back: {
  3584. height: math.unit(6, "feet"),
  3585. weight: math.unit(210, "lbs"),
  3586. name: "Back",
  3587. image: {
  3588. source: "./media/characters/cimmaron/back-sfw.svg",
  3589. extra: 701 / 676,
  3590. bottom: 0.046
  3591. }
  3592. },
  3593. frontNsfw: {
  3594. height: math.unit(6, "feet"),
  3595. weight: math.unit(210, "lbs"),
  3596. name: "Front (NSFW)",
  3597. image: {
  3598. source: "./media/characters/cimmaron/front-nsfw.svg",
  3599. extra: 701 / 676,
  3600. bottom: 0.046
  3601. }
  3602. },
  3603. backNsfw: {
  3604. height: math.unit(6, "feet"),
  3605. weight: math.unit(210, "lbs"),
  3606. name: "Back (NSFW)",
  3607. image: {
  3608. source: "./media/characters/cimmaron/back-nsfw.svg",
  3609. extra: 701 / 676,
  3610. bottom: 0.046
  3611. }
  3612. },
  3613. dick: {
  3614. height: math.unit(1.714, "feet"),
  3615. name: "Dick",
  3616. image: {
  3617. source: "./media/characters/cimmaron/dick.svg"
  3618. }
  3619. },
  3620. },
  3621. [
  3622. {
  3623. name: "Normal",
  3624. height: math.unit(6, "feet"),
  3625. default: true
  3626. },
  3627. {
  3628. name: "Macro Mayor",
  3629. height: math.unit(350, "meters")
  3630. },
  3631. ]
  3632. ))
  3633. characterMakers.push(() => makeCharacter(
  3634. { name: "Akari Kaen" },
  3635. {
  3636. front: {
  3637. height: math.unit(6, "feet"),
  3638. weight: math.unit(200, "lbs"),
  3639. name: "Front",
  3640. image: {
  3641. source: "./media/characters/akari/front.svg",
  3642. extra: 962 / 901,
  3643. bottom: 0.04
  3644. }
  3645. }
  3646. },
  3647. [
  3648. {
  3649. name: "Micro",
  3650. height: math.unit(5, "inches"),
  3651. default: true
  3652. },
  3653. {
  3654. name: "Normal",
  3655. height: math.unit(7, "feet")
  3656. },
  3657. ]
  3658. ))
  3659. characterMakers.push(() => makeCharacter(
  3660. { name: "Cynosura" },
  3661. {
  3662. front: {
  3663. height: math.unit(6, "feet"),
  3664. weight: math.unit(140, "lbs"),
  3665. name: "Front",
  3666. image: {
  3667. source: "./media/characters/cynosura/front.svg",
  3668. extra: 896 / 847
  3669. }
  3670. },
  3671. back: {
  3672. height: math.unit(6, "feet"),
  3673. weight: math.unit(140, "lbs"),
  3674. name: "Back",
  3675. image: {
  3676. source: "./media/characters/cynosura/back.svg",
  3677. extra: 1365 / 1250
  3678. }
  3679. },
  3680. },
  3681. [
  3682. {
  3683. name: "Micro",
  3684. height: math.unit(4, "inches")
  3685. },
  3686. {
  3687. name: "Normal",
  3688. height: math.unit(5.75, "feet"),
  3689. default: true
  3690. },
  3691. {
  3692. name: "Tall",
  3693. height: math.unit(10, "feet")
  3694. },
  3695. {
  3696. name: "Big",
  3697. height: math.unit(20, "feet")
  3698. },
  3699. {
  3700. name: "Macro",
  3701. height: math.unit(50, "feet")
  3702. },
  3703. ]
  3704. ))
  3705. characterMakers.push(() => makeCharacter(
  3706. { name: "Gin" },
  3707. {
  3708. front: {
  3709. height: math.unit(6, "feet"),
  3710. weight: math.unit(170, "lbs"),
  3711. name: "Front",
  3712. image: {
  3713. source: "./media/characters/gin/front.svg",
  3714. extra: 1.053,
  3715. bottom: 0.025
  3716. }
  3717. },
  3718. foot: {
  3719. height: math.unit(6 / 4.25, "feet"),
  3720. name: "Foot",
  3721. image: {
  3722. source: "./media/characters/gin/foot.svg"
  3723. }
  3724. },
  3725. sole: {
  3726. height: math.unit(6 / 4.40, "feet"),
  3727. name: "Sole",
  3728. image: {
  3729. source: "./media/characters/gin/sole.svg"
  3730. }
  3731. },
  3732. },
  3733. [
  3734. {
  3735. name: "Normal",
  3736. height: math.unit(13 + 2/12, "feet")
  3737. },
  3738. {
  3739. name: "Macro",
  3740. height: math.unit(1500, "feet")
  3741. },
  3742. {
  3743. name: "Megamacro",
  3744. height: math.unit(200, "miles"),
  3745. default: true
  3746. },
  3747. {
  3748. name: "Gigamacro",
  3749. height: math.unit(500, "megameters")
  3750. },
  3751. {
  3752. name: "Teramacro",
  3753. height: math.unit(15, "lightyears")
  3754. }
  3755. ]
  3756. ))
  3757. characterMakers.push(() => makeCharacter(
  3758. { name: "Guy" },
  3759. {
  3760. front: {
  3761. height: math.unit(6 + 1 / 6, "feet"),
  3762. weight: math.unit(178, "lbs"),
  3763. name: "Front",
  3764. image: {
  3765. source: "./media/characters/guy/front.svg"
  3766. }
  3767. }
  3768. },
  3769. [
  3770. {
  3771. name: "Normal",
  3772. height: math.unit(6 + 1 / 6, "feet"),
  3773. default: true
  3774. },
  3775. {
  3776. name: "Large",
  3777. height: math.unit(25 + 7 / 12, "feet")
  3778. },
  3779. {
  3780. name: "Macro",
  3781. height: math.unit(60 + 9 / 12, "feet")
  3782. },
  3783. {
  3784. name: "Macro+",
  3785. height: math.unit(246, "feet")
  3786. },
  3787. {
  3788. name: "Macro++",
  3789. height: math.unit(878, "feet")
  3790. }
  3791. ]
  3792. ))
  3793. characterMakers.push(() => makeCharacter(
  3794. { name: "Tiberius" },
  3795. {
  3796. front: {
  3797. height: math.unit(9, "feet"),
  3798. weight: math.unit(800, "lbs"),
  3799. name: "Front",
  3800. image: {
  3801. source: "./media/characters/tiberius/front.svg",
  3802. extra: 2295 / 2071
  3803. }
  3804. },
  3805. back: {
  3806. height: math.unit(9, "feet"),
  3807. weight: math.unit(800, "lbs"),
  3808. name: "Back",
  3809. image: {
  3810. source: "./media/characters/tiberius/back.svg",
  3811. extra: 2373 / 2160
  3812. }
  3813. },
  3814. },
  3815. [
  3816. {
  3817. name: "Normal",
  3818. height: math.unit(9, "feet"),
  3819. default: true
  3820. }
  3821. ]
  3822. ))
  3823. characterMakers.push(() => makeCharacter(
  3824. { name: "Surgo" },
  3825. {
  3826. front: {
  3827. height: math.unit(6, "feet"),
  3828. weight: math.unit(600, "lbs"),
  3829. name: "Front",
  3830. image: {
  3831. source: "./media/characters/surgo/front.svg",
  3832. extra: 3591 / 2227
  3833. }
  3834. },
  3835. back: {
  3836. height: math.unit(6, "feet"),
  3837. weight: math.unit(600, "lbs"),
  3838. name: "Back",
  3839. image: {
  3840. source: "./media/characters/surgo/back.svg",
  3841. extra: 3557 / 2228
  3842. }
  3843. },
  3844. laying: {
  3845. height: math.unit(6 * 0.85, "feet"),
  3846. weight: math.unit(600, "lbs"),
  3847. name: "Laying",
  3848. image: {
  3849. source: "./media/characters/surgo/laying.svg"
  3850. }
  3851. },
  3852. },
  3853. [
  3854. {
  3855. name: "Normal",
  3856. height: math.unit(6, "feet"),
  3857. default: true
  3858. }
  3859. ]
  3860. ))
  3861. characterMakers.push(() => makeCharacter(
  3862. { name: "Cibus" },
  3863. {
  3864. side: {
  3865. height: math.unit(6, "feet"),
  3866. weight: math.unit(150, "lbs"),
  3867. name: "Side",
  3868. image: {
  3869. source: "./media/characters/cibus/side.svg",
  3870. extra: 800 / 400
  3871. }
  3872. },
  3873. },
  3874. [
  3875. {
  3876. name: "Normal",
  3877. height: math.unit(6, "feet"),
  3878. default: true
  3879. }
  3880. ]
  3881. ))
  3882. characterMakers.push(() => makeCharacter(
  3883. { name: "Nibbles" },
  3884. {
  3885. front: {
  3886. height: math.unit(6, "feet"),
  3887. weight: math.unit(240, "lbs"),
  3888. name: "Front",
  3889. image: {
  3890. source: "./media/characters/nibbles/front.svg"
  3891. }
  3892. },
  3893. side: {
  3894. height: math.unit(6, "feet"),
  3895. weight: math.unit(240, "lbs"),
  3896. name: "Side",
  3897. image: {
  3898. source: "./media/characters/nibbles/side.svg"
  3899. }
  3900. },
  3901. },
  3902. [
  3903. {
  3904. name: "Normal",
  3905. height: math.unit(9, "feet"),
  3906. default: true
  3907. }
  3908. ]
  3909. ))
  3910. characterMakers.push(() => makeCharacter(
  3911. { name: "Rikky" },
  3912. {
  3913. side: {
  3914. height: math.unit(5 + 1 / 6, "feet"),
  3915. weight: math.unit(130, "lbs"),
  3916. name: "Side",
  3917. image: {
  3918. source: "./media/characters/rikky/side.svg"
  3919. }
  3920. },
  3921. },
  3922. [
  3923. {
  3924. name: "Normal",
  3925. height: math.unit(5 + 1 / 6, "feet")
  3926. },
  3927. {
  3928. name: "Macro",
  3929. height: math.unit(152, "feet"),
  3930. default: true
  3931. },
  3932. {
  3933. name: "Megamacro",
  3934. height: math.unit(7, "miles")
  3935. }
  3936. ]
  3937. ))
  3938. characterMakers.push(() => makeCharacter(
  3939. { name: "Malfressa" },
  3940. {
  3941. side: {
  3942. height: math.unit(370, "cm"),
  3943. weight: math.unit(350, "lbs"),
  3944. name: "Side",
  3945. image: {
  3946. source: "./media/characters/malfressa/side.svg"
  3947. }
  3948. },
  3949. walking: {
  3950. height: math.unit(370, "cm"),
  3951. weight: math.unit(350, "lbs"),
  3952. name: "Walking",
  3953. image: {
  3954. source: "./media/characters/malfressa/walking.svg"
  3955. }
  3956. },
  3957. feral: {
  3958. height: math.unit(2500, "cm"),
  3959. weight: math.unit(100000, "lbs"),
  3960. name: "Feral",
  3961. image: {
  3962. source: "./media/characters/malfressa/feral.svg",
  3963. extra: 2108 / 837,
  3964. bottom: 0.02
  3965. }
  3966. },
  3967. },
  3968. [
  3969. {
  3970. name: "Normal",
  3971. height: math.unit(370, "cm")
  3972. },
  3973. {
  3974. name: "Macro",
  3975. height: math.unit(300, "meters"),
  3976. default: true
  3977. }
  3978. ]
  3979. ))
  3980. characterMakers.push(() => makeCharacter(
  3981. { name: "Jaro" },
  3982. {
  3983. front: {
  3984. height: math.unit(6, "feet"),
  3985. weight: math.unit(60, "kg"),
  3986. name: "Front",
  3987. image: {
  3988. source: "./media/characters/jaro/front.svg"
  3989. }
  3990. },
  3991. back: {
  3992. height: math.unit(6, "feet"),
  3993. weight: math.unit(60, "kg"),
  3994. name: "Back",
  3995. image: {
  3996. source: "./media/characters/jaro/back.svg"
  3997. }
  3998. },
  3999. },
  4000. [
  4001. {
  4002. name: "Micro",
  4003. height: math.unit(7, "inches")
  4004. },
  4005. {
  4006. name: "Normal",
  4007. height: math.unit(5.5, "feet"),
  4008. default: true
  4009. },
  4010. {
  4011. name: "Minimacro",
  4012. height: math.unit(20, "feet")
  4013. },
  4014. {
  4015. name: "Macro",
  4016. height: math.unit(200, "meters")
  4017. }
  4018. ]
  4019. ))
  4020. characterMakers.push(() => makeCharacter(
  4021. { name: "Rogue" },
  4022. {
  4023. front: {
  4024. height: math.unit(6, "feet"),
  4025. weight: math.unit(195, "lb"),
  4026. name: "Front",
  4027. image: {
  4028. source: "./media/characters/rogue/front.svg"
  4029. }
  4030. },
  4031. },
  4032. [
  4033. {
  4034. name: "Macro",
  4035. height: math.unit(90, "feet"),
  4036. default: true
  4037. },
  4038. ]
  4039. ))
  4040. characterMakers.push(() => makeCharacter(
  4041. { name: "Piper" },
  4042. {
  4043. front: {
  4044. height: math.unit(5 + 8 / 12, "feet"),
  4045. weight: math.unit(140, "lb"),
  4046. name: "Front",
  4047. image: {
  4048. source: "./media/characters/piper/front.svg",
  4049. extra: 3928 / 3681
  4050. }
  4051. },
  4052. },
  4053. [
  4054. {
  4055. name: "Micro",
  4056. height: math.unit(2, "inches")
  4057. },
  4058. {
  4059. name: "Normal",
  4060. height: math.unit(5 + 8 / 12, "feet")
  4061. },
  4062. {
  4063. name: "Macro",
  4064. height: math.unit(250, "feet"),
  4065. default: true
  4066. },
  4067. {
  4068. name: "Megamacro",
  4069. height: math.unit(7, "miles")
  4070. },
  4071. ]
  4072. ))
  4073. characterMakers.push(() => makeCharacter(
  4074. { name: "Gemini" },
  4075. {
  4076. front: {
  4077. height: math.unit(6, "feet"),
  4078. weight: math.unit(220, "lb"),
  4079. name: "Front",
  4080. image: {
  4081. source: "./media/characters/gemini/front.svg"
  4082. }
  4083. },
  4084. back: {
  4085. height: math.unit(6, "feet"),
  4086. weight: math.unit(220, "lb"),
  4087. name: "Back",
  4088. image: {
  4089. source: "./media/characters/gemini/back.svg"
  4090. }
  4091. },
  4092. kneeling: {
  4093. height: math.unit(6 / 1.5, "feet"),
  4094. weight: math.unit(220, "lb"),
  4095. name: "Kneeling",
  4096. image: {
  4097. source: "./media/characters/gemini/kneeling.svg",
  4098. bottom: 0.02
  4099. }
  4100. },
  4101. },
  4102. [
  4103. {
  4104. name: "Macro",
  4105. height: math.unit(300, "meters"),
  4106. default: true
  4107. },
  4108. {
  4109. name: "Megamacro",
  4110. height: math.unit(6900, "meters")
  4111. },
  4112. ]
  4113. ))
  4114. characterMakers.push(() => makeCharacter(
  4115. { name: "Alicia" },
  4116. {
  4117. anthro: {
  4118. height: math.unit(2.35, "meters"),
  4119. weight: math.unit(73, "kg"),
  4120. name: "Anthro",
  4121. image: {
  4122. source: "./media/characters/alicia/anthro.svg"
  4123. }
  4124. },
  4125. feral: {
  4126. height: math.unit(1.69, "meters"),
  4127. weight: math.unit(73, "kg"),
  4128. name: "Feral",
  4129. image: {
  4130. source: "./media/characters/alicia/feral.svg"
  4131. }
  4132. },
  4133. },
  4134. [
  4135. {
  4136. name: "Normal",
  4137. height: math.unit(2.35, "meters")
  4138. },
  4139. {
  4140. name: "Macro",
  4141. height: math.unit(60, "meters"),
  4142. default: true
  4143. },
  4144. {
  4145. name: "Megamacro",
  4146. height: math.unit(10000, "kilometers")
  4147. },
  4148. ]
  4149. ))
  4150. characterMakers.push(() => makeCharacter(
  4151. { name: "Archy" },
  4152. {
  4153. front: {
  4154. height: math.unit(7, "feet"),
  4155. weight: math.unit(250, "lbs"),
  4156. name: "Front",
  4157. image: {
  4158. source: "./media/characters/archy/front.svg"
  4159. }
  4160. }
  4161. },
  4162. [
  4163. {
  4164. name: "Micro",
  4165. height: math.unit(1, "inch")
  4166. },
  4167. {
  4168. name: "Shorty",
  4169. height: math.unit(5, "feet")
  4170. },
  4171. {
  4172. name: "Normal",
  4173. height: math.unit(7, "feet")
  4174. },
  4175. {
  4176. name: "Macro",
  4177. height: math.unit(600, "meters"),
  4178. default: true
  4179. },
  4180. {
  4181. name: "Megamacro",
  4182. height: math.unit(1, "mile")
  4183. },
  4184. ]
  4185. ))
  4186. characterMakers.push(() => makeCharacter(
  4187. { name: "Berri" },
  4188. {
  4189. front: {
  4190. height: math.unit(1.65, "meters"),
  4191. weight: math.unit(74, "kg"),
  4192. name: "Front",
  4193. image: {
  4194. source: "./media/characters/berri/front.svg"
  4195. }
  4196. }
  4197. },
  4198. [
  4199. {
  4200. name: "Normal",
  4201. height: math.unit(1.65, "meters")
  4202. },
  4203. {
  4204. name: "Macro",
  4205. height: math.unit(60, "m"),
  4206. default: true
  4207. },
  4208. {
  4209. name: "Megamacro",
  4210. height: math.unit(9.213, "km")
  4211. },
  4212. {
  4213. name: "Planet Eater",
  4214. height: math.unit(489, "megameters")
  4215. },
  4216. {
  4217. name: "Teramacro",
  4218. height: math.unit(2471635000000, "meters")
  4219. },
  4220. {
  4221. name: "Examacro",
  4222. height: math.unit(8.0624e+26, "meters")
  4223. }
  4224. ]
  4225. ))
  4226. characterMakers.push(() => makeCharacter(
  4227. { name: "Lexi" },
  4228. {
  4229. front: {
  4230. height: math.unit(1.72, "meters"),
  4231. weight: math.unit(68, "kg"),
  4232. name: "Front",
  4233. image: {
  4234. source: "./media/characters/lexi/front.svg"
  4235. }
  4236. }
  4237. },
  4238. [
  4239. {
  4240. name: "Very Smol",
  4241. height: math.unit(10, "mm")
  4242. },
  4243. {
  4244. name: "Micro",
  4245. height: math.unit(6.8, "cm"),
  4246. default: true
  4247. },
  4248. {
  4249. name: "Normal",
  4250. height: math.unit(1.72, "m")
  4251. }
  4252. ]
  4253. ))
  4254. characterMakers.push(() => makeCharacter(
  4255. { name: "Martin" },
  4256. {
  4257. front: {
  4258. height: math.unit(1.69, "meters"),
  4259. weight: math.unit(68, "kg"),
  4260. name: "Front",
  4261. image: {
  4262. source: "./media/characters/martin/front.svg",
  4263. extra: 596 / 581
  4264. }
  4265. }
  4266. },
  4267. [
  4268. {
  4269. name: "Micro",
  4270. height: math.unit(6.85, "cm"),
  4271. default: true
  4272. },
  4273. {
  4274. name: "Normal",
  4275. height: math.unit(1.69, "m")
  4276. }
  4277. ]
  4278. ))
  4279. characterMakers.push(() => makeCharacter(
  4280. { name: "Juno" },
  4281. {
  4282. front: {
  4283. height: math.unit(1.69, "meters"),
  4284. weight: math.unit(68, "kg"),
  4285. name: "Front",
  4286. image: {
  4287. source: "./media/characters/juno/front.svg"
  4288. }
  4289. }
  4290. },
  4291. [
  4292. {
  4293. name: "Micro",
  4294. height: math.unit(7, "cm")
  4295. },
  4296. {
  4297. name: "Normal",
  4298. height: math.unit(1.89, "m")
  4299. },
  4300. {
  4301. name: "Macro",
  4302. height: math.unit(353, "meters"),
  4303. default: true
  4304. }
  4305. ]
  4306. ))
  4307. characterMakers.push(() => makeCharacter(
  4308. { name: "Samantha" },
  4309. {
  4310. front: {
  4311. height: math.unit(1.93, "meters"),
  4312. weight: math.unit(83, "kg"),
  4313. name: "Front",
  4314. image: {
  4315. source: "./media/characters/samantha/front.svg"
  4316. }
  4317. },
  4318. frontClothed: {
  4319. height: math.unit(1.93, "meters"),
  4320. weight: math.unit(83, "kg"),
  4321. name: "Front (Clothed)",
  4322. image: {
  4323. source: "./media/characters/samantha/front-clothed.svg"
  4324. }
  4325. },
  4326. back: {
  4327. height: math.unit(1.93, "meters"),
  4328. weight: math.unit(83, "kg"),
  4329. name: "Back",
  4330. image: {
  4331. source: "./media/characters/samantha/back.svg"
  4332. }
  4333. },
  4334. },
  4335. [
  4336. {
  4337. name: "Normal",
  4338. height: math.unit(1.93, "m")
  4339. },
  4340. {
  4341. name: "Macro",
  4342. height: math.unit(74, "meters"),
  4343. default: true
  4344. },
  4345. {
  4346. name: "Macro+",
  4347. height: math.unit(223, "meters"),
  4348. },
  4349. {
  4350. name: "Megamacro",
  4351. height: math.unit(8381, "meters"),
  4352. },
  4353. {
  4354. name: "Megamacro+",
  4355. height: math.unit(12000, "kilometers")
  4356. },
  4357. ]
  4358. ))
  4359. characterMakers.push(() => makeCharacter(
  4360. { name: "Dr. Clay" },
  4361. {
  4362. front: {
  4363. height: math.unit(1.92, "meters"),
  4364. weight: math.unit(80, "kg"),
  4365. name: "Front",
  4366. image: {
  4367. source: "./media/characters/dr-clay/front.svg"
  4368. }
  4369. },
  4370. frontClothed: {
  4371. height: math.unit(1.92, "meters"),
  4372. weight: math.unit(80, "kg"),
  4373. name: "Front (Clothed)",
  4374. image: {
  4375. source: "./media/characters/dr-clay/front-clothed.svg"
  4376. }
  4377. }
  4378. },
  4379. [
  4380. {
  4381. name: "Normal",
  4382. height: math.unit(1.92, "m")
  4383. },
  4384. {
  4385. name: "Macro",
  4386. height: math.unit(214, "meters"),
  4387. default: true
  4388. },
  4389. {
  4390. name: "Macro+",
  4391. height: math.unit(12.237, "meters"),
  4392. },
  4393. {
  4394. name: "Megamacro",
  4395. height: math.unit(557, "megameters"),
  4396. },
  4397. {
  4398. name: "Unimaginable",
  4399. height: math.unit(120e9, "lightyears")
  4400. },
  4401. ]
  4402. ))
  4403. characterMakers.push(() => makeCharacter(
  4404. { name: "Wyvrn Ripsnarl" },
  4405. {
  4406. front: {
  4407. height: math.unit(2, "meters"),
  4408. weight: math.unit(80, "kg"),
  4409. name: "Front",
  4410. image: {
  4411. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4412. }
  4413. }
  4414. },
  4415. [
  4416. {
  4417. name: "Teramacro",
  4418. height: math.unit(500000, "lightyears"),
  4419. default: true
  4420. },
  4421. ]
  4422. ))
  4423. characterMakers.push(() => makeCharacter(
  4424. { name: "Vemus" },
  4425. {
  4426. front: {
  4427. height: math.unit(2, "meters"),
  4428. weight: math.unit(150, "kg"),
  4429. name: "Front",
  4430. image: {
  4431. source: "./media/characters/vemus/front.svg",
  4432. extra: 2384 / 2084,
  4433. bottom: 0.0123
  4434. }
  4435. }
  4436. },
  4437. [
  4438. {
  4439. name: "Normal",
  4440. height: math.unit(3.75, "meters"),
  4441. default: true
  4442. },
  4443. {
  4444. name: "Big",
  4445. height: math.unit(8, "meters")
  4446. },
  4447. {
  4448. name: "Macro",
  4449. height: math.unit(100, "meters")
  4450. },
  4451. {
  4452. name: "Macro+",
  4453. height: math.unit(1500, "meters")
  4454. },
  4455. {
  4456. name: "Stellar",
  4457. height: math.unit(14e8, "meters")
  4458. },
  4459. ]
  4460. ))
  4461. characterMakers.push(() => makeCharacter(
  4462. { name: "Beherit" },
  4463. {
  4464. front: {
  4465. height: math.unit(2, "meters"),
  4466. weight: math.unit(70, "kg"),
  4467. name: "Front",
  4468. image: {
  4469. source: "./media/characters/beherit/front.svg",
  4470. extra: 1408 / 1242
  4471. }
  4472. }
  4473. },
  4474. [
  4475. {
  4476. name: "Normal",
  4477. height: math.unit(6, "feet")
  4478. },
  4479. {
  4480. name: "Lorg",
  4481. height: math.unit(25, "feet"),
  4482. default: true
  4483. },
  4484. {
  4485. name: "Lorger",
  4486. height: math.unit(75, "feet")
  4487. },
  4488. {
  4489. name: "Macro",
  4490. height: math.unit(200, "meters")
  4491. },
  4492. ]
  4493. ))
  4494. characterMakers.push(() => makeCharacter(
  4495. { name: "Everett" },
  4496. {
  4497. front: {
  4498. height: math.unit(2, "meters"),
  4499. weight: math.unit(150, "kg"),
  4500. name: "Front",
  4501. image: {
  4502. source: "./media/characters/everett/front.svg",
  4503. extra: 2038 / 1737,
  4504. bottom: 0.03
  4505. }
  4506. },
  4507. paw: {
  4508. height: math.unit(2 / 3.6, "meters"),
  4509. name: "Paw",
  4510. image: {
  4511. source: "./media/characters/everett/paw.svg"
  4512. }
  4513. },
  4514. },
  4515. [
  4516. {
  4517. name: "Normal",
  4518. height: math.unit(15, "feet"),
  4519. default: true
  4520. },
  4521. {
  4522. name: "Lorg",
  4523. height: math.unit(70, "feet"),
  4524. default: true
  4525. },
  4526. {
  4527. name: "Lorger",
  4528. height: math.unit(250, "feet")
  4529. },
  4530. {
  4531. name: "Macro",
  4532. height: math.unit(500, "meters")
  4533. },
  4534. ]
  4535. ))
  4536. characterMakers.push(() => makeCharacter(
  4537. { name: "Rose Lion" },
  4538. {
  4539. front: {
  4540. height: math.unit(2, "meters"),
  4541. weight: math.unit(86, "kg"),
  4542. name: "Front",
  4543. image: {
  4544. source: "./media/characters/rose-lion/front.svg"
  4545. }
  4546. },
  4547. bent: {
  4548. height: math.unit(2 / 1.4288, "meters"),
  4549. weight: math.unit(86, "kg"),
  4550. name: "Bent",
  4551. image: {
  4552. source: "./media/characters/rose-lion/bent.svg"
  4553. }
  4554. }
  4555. },
  4556. [
  4557. {
  4558. name: "Mini-Micro",
  4559. height: math.unit(1, "cm")
  4560. },
  4561. {
  4562. name: "Micro",
  4563. height: math.unit(3.5, "inches"),
  4564. default: true
  4565. },
  4566. {
  4567. name: "Normal",
  4568. height: math.unit(6 + 1 / 6, "feet")
  4569. },
  4570. {
  4571. name: "Mini-Macro",
  4572. height: math.unit(9 + 10 / 12, "feet")
  4573. },
  4574. ]
  4575. ))
  4576. characterMakers.push(() => makeCharacter(
  4577. { name: "Regal" },
  4578. {
  4579. front: {
  4580. height: math.unit(2, "meters"),
  4581. weight: math.unit(350, "lbs"),
  4582. name: "Front",
  4583. image: {
  4584. source: "./media/characters/regal/front.svg"
  4585. }
  4586. },
  4587. back: {
  4588. height: math.unit(2, "meters"),
  4589. weight: math.unit(350, "lbs"),
  4590. name: "Back",
  4591. image: {
  4592. source: "./media/characters/regal/back.svg"
  4593. }
  4594. },
  4595. },
  4596. [
  4597. {
  4598. name: "Macro",
  4599. height: math.unit(350, "feet"),
  4600. default: true
  4601. }
  4602. ]
  4603. ))
  4604. characterMakers.push(() => makeCharacter(
  4605. { name: "Opal" },
  4606. {
  4607. front: {
  4608. height: math.unit(4 + 11 / 12, "feet"),
  4609. weight: math.unit(100, "lbs"),
  4610. name: "Front",
  4611. image: {
  4612. source: "./media/characters/opal/front.svg"
  4613. }
  4614. },
  4615. frontAlt: {
  4616. height: math.unit(4 + 11 / 12, "feet"),
  4617. weight: math.unit(100, "lbs"),
  4618. name: "Front (Alt)",
  4619. image: {
  4620. source: "./media/characters/opal/front-alt.svg"
  4621. }
  4622. },
  4623. },
  4624. [
  4625. {
  4626. name: "Small",
  4627. height: math.unit(4 + 11 / 12, "feet")
  4628. },
  4629. {
  4630. name: "Normal",
  4631. height: math.unit(20, "feet"),
  4632. default: true
  4633. },
  4634. {
  4635. name: "Macro",
  4636. height: math.unit(120, "feet")
  4637. },
  4638. {
  4639. name: "Megamacro",
  4640. height: math.unit(80, "miles")
  4641. },
  4642. {
  4643. name: "True Size",
  4644. height: math.unit(100000, "lightyears")
  4645. },
  4646. ]
  4647. ))
  4648. characterMakers.push(() => makeCharacter(
  4649. { name: "Vector Wuff" },
  4650. {
  4651. front: {
  4652. height: math.unit(6, "feet"),
  4653. weight: math.unit(200, "lbs"),
  4654. name: "Front",
  4655. image: {
  4656. source: "./media/characters/vector-wuff/front.svg"
  4657. }
  4658. }
  4659. },
  4660. [
  4661. {
  4662. name: "Normal",
  4663. height: math.unit(2.8, "meters")
  4664. },
  4665. {
  4666. name: "Macro",
  4667. height: math.unit(450, "meters"),
  4668. default: true
  4669. },
  4670. {
  4671. name: "Megamacro",
  4672. height: math.unit(15, "kilometers")
  4673. }
  4674. ]
  4675. ))
  4676. characterMakers.push(() => makeCharacter(
  4677. { name: "Dannik" },
  4678. {
  4679. front: {
  4680. height: math.unit(6, "feet"),
  4681. weight: math.unit(256, "lbs"),
  4682. name: "Front",
  4683. image: {
  4684. source: "./media/characters/dannik/front.svg"
  4685. }
  4686. }
  4687. },
  4688. [
  4689. {
  4690. name: "Macro",
  4691. height: math.unit(69.57, "meters"),
  4692. default: true
  4693. },
  4694. ]
  4695. ))
  4696. characterMakers.push(() => makeCharacter(
  4697. { name: "Azura Saharah" },
  4698. {
  4699. front: {
  4700. height: math.unit(6, "feet"),
  4701. weight: math.unit(120, "lbs"),
  4702. name: "Front",
  4703. image: {
  4704. source: "./media/characters/azura-saharah/front.svg"
  4705. }
  4706. },
  4707. back: {
  4708. height: math.unit(6, "feet"),
  4709. weight: math.unit(120, "lbs"),
  4710. name: "Back",
  4711. image: {
  4712. source: "./media/characters/azura-saharah/back.svg"
  4713. }
  4714. },
  4715. },
  4716. [
  4717. {
  4718. name: "Macro",
  4719. height: math.unit(100, "feet"),
  4720. default: true
  4721. },
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "Kennedy" },
  4726. {
  4727. side: {
  4728. height: math.unit(5 + 4 / 12, "feet"),
  4729. weight: math.unit(163, "lbs"),
  4730. name: "Side",
  4731. image: {
  4732. source: "./media/characters/kennedy/side.svg"
  4733. }
  4734. }
  4735. },
  4736. [
  4737. {
  4738. name: "Standard Doggo",
  4739. height: math.unit(5 + 4 / 12, "feet")
  4740. },
  4741. {
  4742. name: "Big Doggo",
  4743. height: math.unit(25 + 3 / 12, "feet"),
  4744. default: true
  4745. },
  4746. ]
  4747. ))
  4748. characterMakers.push(() => makeCharacter(
  4749. { name: "Odi Lunar" },
  4750. {
  4751. front: {
  4752. height: math.unit(6, "feet"),
  4753. weight: math.unit(90, "lbs"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/odi-lunar/front.svg"
  4757. }
  4758. }
  4759. },
  4760. [
  4761. {
  4762. name: "Micro",
  4763. height: math.unit(3, "inches"),
  4764. default: true
  4765. },
  4766. {
  4767. name: "Normal",
  4768. height: math.unit(5.5, "feet")
  4769. }
  4770. ]
  4771. ))
  4772. characterMakers.push(() => makeCharacter(
  4773. { name: "Mandake" },
  4774. {
  4775. back: {
  4776. height: math.unit(6, "feet"),
  4777. weight: math.unit(220, "lbs"),
  4778. name: "Back",
  4779. image: {
  4780. source: "./media/characters/mandake/back.svg"
  4781. }
  4782. }
  4783. },
  4784. [
  4785. {
  4786. name: "Normal",
  4787. height: math.unit(7, "feet"),
  4788. default: true
  4789. },
  4790. {
  4791. name: "Macro",
  4792. height: math.unit(78, "feet")
  4793. },
  4794. {
  4795. name: "Macro+",
  4796. height: math.unit(300, "meters")
  4797. },
  4798. {
  4799. name: "Macro++",
  4800. height: math.unit(2400, "feet")
  4801. },
  4802. {
  4803. name: "Megamacro",
  4804. height: math.unit(5167, "meters")
  4805. },
  4806. {
  4807. name: "Gigamacro",
  4808. height: math.unit(41769, "miles")
  4809. },
  4810. ]
  4811. ))
  4812. characterMakers.push(() => makeCharacter(
  4813. { name: "Yozey" },
  4814. {
  4815. front: {
  4816. height: math.unit(6, "feet"),
  4817. weight: math.unit(120, "lbs"),
  4818. name: "Front",
  4819. image: {
  4820. source: "./media/characters/yozey/front.svg"
  4821. }
  4822. },
  4823. frontAlt: {
  4824. height: math.unit(6, "feet"),
  4825. weight: math.unit(120, "lbs"),
  4826. name: "Front (Alt)",
  4827. image: {
  4828. source: "./media/characters/yozey/front-alt.svg"
  4829. }
  4830. },
  4831. side: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(120, "lbs"),
  4834. name: "Side",
  4835. image: {
  4836. source: "./media/characters/yozey/side.svg"
  4837. }
  4838. },
  4839. },
  4840. [
  4841. {
  4842. name: "Micro",
  4843. height: math.unit(3, "inches"),
  4844. default: true
  4845. },
  4846. {
  4847. name: "Normal",
  4848. height: math.unit(6, "feet")
  4849. }
  4850. ]
  4851. ))
  4852. characterMakers.push(() => makeCharacter(
  4853. { name: "Valeska Voss" },
  4854. {
  4855. front: {
  4856. height: math.unit(6, "feet"),
  4857. weight: math.unit(103, "lbs"),
  4858. name: "Front",
  4859. image: {
  4860. source: "./media/characters/valeska-voss/front.svg"
  4861. }
  4862. }
  4863. },
  4864. [
  4865. {
  4866. name: "Mini-Sized Sub",
  4867. height: math.unit(3.1, "inches")
  4868. },
  4869. {
  4870. name: "Mid-Sized Sub",
  4871. height: math.unit(6.2, "inches")
  4872. },
  4873. {
  4874. name: "Full-Sized Sub",
  4875. height: math.unit(9.3, "inches")
  4876. },
  4877. {
  4878. name: "Normal",
  4879. height: math.unit(5 + 2 / 12, "foot"),
  4880. default: true
  4881. },
  4882. ]
  4883. ))
  4884. characterMakers.push(() => makeCharacter(
  4885. { name: "Gene Zeta" },
  4886. {
  4887. front: {
  4888. height: math.unit(6, "feet"),
  4889. weight: math.unit(160, "lbs"),
  4890. name: "Front",
  4891. image: {
  4892. source: "./media/characters/gene-zeta/front.svg",
  4893. bottom: 0.03,
  4894. extra: 1
  4895. }
  4896. }
  4897. },
  4898. [
  4899. {
  4900. name: "Normal",
  4901. height: math.unit(6.25, "foot"),
  4902. default: true
  4903. },
  4904. ]
  4905. ))
  4906. characterMakers.push(() => makeCharacter(
  4907. { name: "Razinox" },
  4908. {
  4909. front: {
  4910. height: math.unit(6, "feet"),
  4911. weight: math.unit(350, "lbs"),
  4912. name: "Front",
  4913. image: {
  4914. source: "./media/characters/razinox/front.svg",
  4915. extra: 1686 / 1548,
  4916. bottom: 28.2/1868
  4917. }
  4918. },
  4919. back: {
  4920. height: math.unit(6, "feet"),
  4921. weight: math.unit(350, "lbs"),
  4922. name: "Back",
  4923. image: {
  4924. source: "./media/characters/razinox/back.svg",
  4925. extra: 1660 / 1590,
  4926. bottom: 15/1665
  4927. }
  4928. },
  4929. },
  4930. [
  4931. {
  4932. name: "Normal",
  4933. height: math.unit(10 + 8 / 12, "foot")
  4934. },
  4935. {
  4936. name: "Minimacro",
  4937. height: math.unit(15, "foot")
  4938. },
  4939. {
  4940. name: "Macro",
  4941. height: math.unit(60, "foot"),
  4942. default: true
  4943. },
  4944. {
  4945. name: "Megamacro",
  4946. height: math.unit(5, "miles")
  4947. },
  4948. {
  4949. name: "Gigamacro",
  4950. height: math.unit(6000, "miles")
  4951. },
  4952. ]
  4953. ))
  4954. characterMakers.push(() => makeCharacter(
  4955. { name: "Cobalt" },
  4956. {
  4957. front: {
  4958. height: math.unit(6, "feet"),
  4959. weight: math.unit(150, "lbs"),
  4960. name: "Front",
  4961. image: {
  4962. source: "./media/characters/cobalt/front.svg"
  4963. }
  4964. }
  4965. },
  4966. [
  4967. {
  4968. name: "Normal",
  4969. height: math.unit(8 + 1 / 12, "foot")
  4970. },
  4971. {
  4972. name: "Macro",
  4973. height: math.unit(111, "foot"),
  4974. default: true
  4975. },
  4976. {
  4977. name: "Supracosmic",
  4978. height: math.unit(1e42, "feet")
  4979. },
  4980. ]
  4981. ))
  4982. characterMakers.push(() => makeCharacter(
  4983. { name: "Amanda" },
  4984. {
  4985. front: {
  4986. height: math.unit(6, "feet"),
  4987. weight: math.unit(140, "lbs"),
  4988. name: "Front",
  4989. image: {
  4990. source: "./media/characters/amanda/front.svg"
  4991. }
  4992. }
  4993. },
  4994. [
  4995. {
  4996. name: "Micro",
  4997. height: math.unit(5, "inches"),
  4998. default: true
  4999. },
  5000. ]
  5001. ))
  5002. characterMakers.push(() => makeCharacter(
  5003. { name: "Teal" },
  5004. {
  5005. front: {
  5006. height: math.unit(5.59, "feet"),
  5007. weight: math.unit(250, "lbs"),
  5008. name: "Front",
  5009. image: {
  5010. source: "./media/characters/teal/front.svg"
  5011. }
  5012. },
  5013. frontAlt: {
  5014. height: math.unit(6, "feet"),
  5015. weight: math.unit(250, "lbs"),
  5016. name: "Front (Alt)",
  5017. image: {
  5018. source: "./media/characters/teal/front-alt.svg",
  5019. bottom: 0.04,
  5020. extra: 1
  5021. }
  5022. },
  5023. },
  5024. [
  5025. {
  5026. name: "Normal",
  5027. height: math.unit(12, "feet"),
  5028. default: true
  5029. },
  5030. {
  5031. name: "Macro",
  5032. height: math.unit(300, "feet")
  5033. },
  5034. ]
  5035. ))
  5036. characterMakers.push(() => makeCharacter(
  5037. { name: "Ravin Amulet" },
  5038. {
  5039. frontCat: {
  5040. height: math.unit(6, "feet"),
  5041. weight: math.unit(180, "lbs"),
  5042. name: "Front (Cat)",
  5043. image: {
  5044. source: "./media/characters/ravin-amulet/front-cat.svg"
  5045. }
  5046. },
  5047. frontCatAlt: {
  5048. height: math.unit(6, "feet"),
  5049. weight: math.unit(180, "lbs"),
  5050. name: "Front (Alt, Cat)",
  5051. image: {
  5052. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5053. }
  5054. },
  5055. frontWerewolf: {
  5056. height: math.unit(6 * 1.2, "feet"),
  5057. weight: math.unit(225, "lbs"),
  5058. name: "Front (Werewolf)",
  5059. image: {
  5060. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5061. }
  5062. },
  5063. backWerewolf: {
  5064. height: math.unit(6 * 1.2, "feet"),
  5065. weight: math.unit(225, "lbs"),
  5066. name: "Back (Werewolf)",
  5067. image: {
  5068. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5069. }
  5070. },
  5071. },
  5072. [
  5073. {
  5074. name: "Nano",
  5075. height: math.unit(1, "micrometer")
  5076. },
  5077. {
  5078. name: "Micro",
  5079. height: math.unit(1, "inch")
  5080. },
  5081. {
  5082. name: "Normal",
  5083. height: math.unit(6, "feet"),
  5084. default: true
  5085. },
  5086. {
  5087. name: "Macro",
  5088. height: math.unit(60, "feet")
  5089. }
  5090. ]
  5091. ))
  5092. characterMakers.push(() => makeCharacter(
  5093. { name: "Fluoresce" },
  5094. {
  5095. front: {
  5096. height: math.unit(6, "feet"),
  5097. weight: math.unit(165, "lbs"),
  5098. name: "Front",
  5099. image: {
  5100. source: "./media/characters/fluoresce/front.svg"
  5101. }
  5102. }
  5103. },
  5104. [
  5105. {
  5106. name: "Micro",
  5107. height: math.unit(6, "cm")
  5108. },
  5109. {
  5110. name: "Normal",
  5111. height: math.unit(5 + 7 / 12, "feet"),
  5112. default: true
  5113. },
  5114. {
  5115. name: "Macro",
  5116. height: math.unit(56, "feet")
  5117. },
  5118. {
  5119. name: "Megamacro",
  5120. height: math.unit(1.9, "miles")
  5121. },
  5122. ]
  5123. ))
  5124. characterMakers.push(() => makeCharacter(
  5125. { name: "Aurora" },
  5126. {
  5127. front: {
  5128. height: math.unit(9 + 6 / 12, "feet"),
  5129. weight: math.unit(523, "lbs"),
  5130. name: "Side",
  5131. image: {
  5132. source: "./media/characters/aurora/side.svg"
  5133. }
  5134. }
  5135. },
  5136. [
  5137. {
  5138. name: "Normal",
  5139. height: math.unit(9 + 6 / 12, "feet")
  5140. },
  5141. {
  5142. name: "Macro",
  5143. height: math.unit(96, "feet"),
  5144. default: true
  5145. },
  5146. {
  5147. name: "Macro+",
  5148. height: math.unit(243, "feet")
  5149. },
  5150. ]
  5151. ))
  5152. characterMakers.push(() => makeCharacter(
  5153. { name: "Ranek" },
  5154. {
  5155. front: {
  5156. height: math.unit(194, "cm"),
  5157. weight: math.unit(90, "kg"),
  5158. name: "Front",
  5159. image: {
  5160. source: "./media/characters/ranek/front.svg"
  5161. }
  5162. },
  5163. side: {
  5164. height: math.unit(194, "cm"),
  5165. weight: math.unit(90, "kg"),
  5166. name: "Side",
  5167. image: {
  5168. source: "./media/characters/ranek/side.svg"
  5169. }
  5170. },
  5171. back: {
  5172. height: math.unit(194, "cm"),
  5173. weight: math.unit(90, "kg"),
  5174. name: "Back",
  5175. image: {
  5176. source: "./media/characters/ranek/back.svg"
  5177. }
  5178. },
  5179. feral: {
  5180. height: math.unit(30, "cm"),
  5181. weight: math.unit(1.6, "lbs"),
  5182. name: "Feral",
  5183. image: {
  5184. source: "./media/characters/ranek/feral.svg"
  5185. }
  5186. },
  5187. },
  5188. [
  5189. {
  5190. name: "Normal",
  5191. height: math.unit(194, "cm"),
  5192. default: true
  5193. },
  5194. {
  5195. name: "Macro",
  5196. height: math.unit(100, "meters")
  5197. },
  5198. ]
  5199. ))
  5200. characterMakers.push(() => makeCharacter(
  5201. { name: "Andrew Cooper" },
  5202. {
  5203. front: {
  5204. height: math.unit(5 + 6 / 12, "feet"),
  5205. weight: math.unit(153, "lbs"),
  5206. name: "Front",
  5207. image: {
  5208. source: "./media/characters/andrew-cooper/front.svg"
  5209. }
  5210. },
  5211. },
  5212. [
  5213. {
  5214. name: "Nano",
  5215. height: math.unit(1, "mm")
  5216. },
  5217. {
  5218. name: "Micro",
  5219. height: math.unit(2, "inches")
  5220. },
  5221. {
  5222. name: "Normal",
  5223. height: math.unit(5 + 6 / 12, "feet"),
  5224. default: true
  5225. }
  5226. ]
  5227. ))
  5228. characterMakers.push(() => makeCharacter(
  5229. { name: "Akane Sato" },
  5230. {
  5231. front: {
  5232. height: math.unit(6, "feet"),
  5233. weight: math.unit(180, "lbs"),
  5234. name: "Front",
  5235. image: {
  5236. source: "./media/characters/akane-sato/front.svg",
  5237. extra: 1219 / 1140
  5238. }
  5239. },
  5240. back: {
  5241. height: math.unit(6, "feet"),
  5242. weight: math.unit(180, "lbs"),
  5243. name: "Back",
  5244. image: {
  5245. source: "./media/characters/akane-sato/back.svg",
  5246. extra: 1219 / 1170
  5247. }
  5248. },
  5249. },
  5250. [
  5251. {
  5252. name: "Normal",
  5253. height: math.unit(2.5, "meters")
  5254. },
  5255. {
  5256. name: "Macro",
  5257. height: math.unit(250, "meters"),
  5258. default: true
  5259. },
  5260. {
  5261. name: "Megamacro",
  5262. height: math.unit(25, "km")
  5263. },
  5264. ]
  5265. ))
  5266. characterMakers.push(() => makeCharacter(
  5267. { name: "Rook" },
  5268. {
  5269. front: {
  5270. height: math.unit(6, "feet"),
  5271. weight: math.unit(65, "kg"),
  5272. name: "Front",
  5273. image: {
  5274. source: "./media/characters/rook/front.svg",
  5275. extra: 960/950
  5276. }
  5277. }
  5278. },
  5279. [
  5280. {
  5281. name: "Normal",
  5282. height: math.unit(8.8, "feet")
  5283. },
  5284. {
  5285. name: "Macro",
  5286. height: math.unit(88, "feet"),
  5287. default: true
  5288. },
  5289. {
  5290. name: "Megamacro",
  5291. height: math.unit(8, "miles")
  5292. },
  5293. ]
  5294. ))
  5295. characterMakers.push(() => makeCharacter(
  5296. { name: "Prodigy" },
  5297. {
  5298. front: {
  5299. height: math.unit(12 + 2 / 12, "feet"),
  5300. weight: math.unit(808, "lbs"),
  5301. name: "Front",
  5302. image: {
  5303. source: "./media/characters/prodigy/front.svg"
  5304. }
  5305. }
  5306. },
  5307. [
  5308. {
  5309. name: "Normal",
  5310. height: math.unit(12 + 2 / 12, "feet"),
  5311. default: true
  5312. },
  5313. {
  5314. name: "Macro",
  5315. height: math.unit(143, "feet")
  5316. },
  5317. {
  5318. name: "Macro+",
  5319. height: math.unit(400, "feet")
  5320. },
  5321. ]
  5322. ))
  5323. characterMakers.push(() => makeCharacter(
  5324. { name: "Daniel" },
  5325. {
  5326. front: {
  5327. height: math.unit(6, "feet"),
  5328. weight: math.unit(225, "lbs"),
  5329. name: "Front",
  5330. image: {
  5331. source: "./media/characters/daniel/front.svg"
  5332. }
  5333. },
  5334. leaning: {
  5335. height: math.unit(6, "feet"),
  5336. weight: math.unit(225, "lbs"),
  5337. name: "Leaning",
  5338. image: {
  5339. source: "./media/characters/daniel/leaning.svg"
  5340. }
  5341. },
  5342. },
  5343. [
  5344. {
  5345. name: "Macro",
  5346. height: math.unit(1000, "feet"),
  5347. default: true
  5348. },
  5349. ]
  5350. ))
  5351. characterMakers.push(() => makeCharacter(
  5352. { name: "Chiros" },
  5353. {
  5354. front: {
  5355. height: math.unit(6, "feet"),
  5356. weight: math.unit(88, "lbs"),
  5357. name: "Front",
  5358. image: {
  5359. source: "./media/characters/chiros/front.svg",
  5360. extra: 306 / 226
  5361. }
  5362. },
  5363. side: {
  5364. height: math.unit(6, "feet"),
  5365. weight: math.unit(88, "lbs"),
  5366. name: "Side",
  5367. image: {
  5368. source: "./media/characters/chiros/side.svg",
  5369. extra: 306 / 226
  5370. }
  5371. },
  5372. },
  5373. [
  5374. {
  5375. name: "Normal",
  5376. height: math.unit(6, "cm"),
  5377. default: true
  5378. },
  5379. ]
  5380. ))
  5381. characterMakers.push(() => makeCharacter(
  5382. { name: "Selka" },
  5383. {
  5384. front: {
  5385. height: math.unit(6, "feet"),
  5386. weight: math.unit(100, "lbs"),
  5387. name: "Front",
  5388. image: {
  5389. source: "./media/characters/selka/front.svg",
  5390. extra: 947 / 887
  5391. }
  5392. }
  5393. },
  5394. [
  5395. {
  5396. name: "Normal",
  5397. height: math.unit(5, "cm"),
  5398. default: true
  5399. },
  5400. ]
  5401. ))
  5402. characterMakers.push(() => makeCharacter(
  5403. { name: "Verin" },
  5404. {
  5405. front: {
  5406. height: math.unit(8 + 3 / 12, "feet"),
  5407. weight: math.unit(424, "lbs"),
  5408. name: "Front",
  5409. image: {
  5410. source: "./media/characters/verin/front.svg",
  5411. extra: 1845 / 1550
  5412. }
  5413. },
  5414. frontArmored: {
  5415. height: math.unit(8 + 3 / 12, "feet"),
  5416. weight: math.unit(424, "lbs"),
  5417. name: "Front (Armored)",
  5418. image: {
  5419. source: "./media/characters/verin/front-armor.svg",
  5420. extra: 1845 / 1550,
  5421. bottom: 0.01
  5422. }
  5423. },
  5424. back: {
  5425. height: math.unit(8 + 3 / 12, "feet"),
  5426. weight: math.unit(424, "lbs"),
  5427. name: "Back",
  5428. image: {
  5429. source: "./media/characters/verin/back.svg",
  5430. bottom: 0.1,
  5431. extra: 1
  5432. }
  5433. },
  5434. foot: {
  5435. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5436. name: "Foot",
  5437. image: {
  5438. source: "./media/characters/verin/foot.svg"
  5439. }
  5440. },
  5441. },
  5442. [
  5443. {
  5444. name: "Normal",
  5445. height: math.unit(8 + 3 / 12, "feet")
  5446. },
  5447. {
  5448. name: "Minimacro",
  5449. height: math.unit(21, "feet"),
  5450. default: true
  5451. },
  5452. {
  5453. name: "Macro",
  5454. height: math.unit(626, "feet")
  5455. },
  5456. ]
  5457. ))
  5458. characterMakers.push(() => makeCharacter(
  5459. { name: "Sovrim Terraquian" },
  5460. {
  5461. front: {
  5462. height: math.unit(2.718, "meters"),
  5463. weight: math.unit(150, "lbs"),
  5464. name: "Front",
  5465. image: {
  5466. source: "./media/characters/sovrim-terraquian/front.svg"
  5467. }
  5468. },
  5469. back: {
  5470. height: math.unit(2.718, "meters"),
  5471. weight: math.unit(150, "lbs"),
  5472. name: "Back",
  5473. image: {
  5474. source: "./media/characters/sovrim-terraquian/back.svg"
  5475. }
  5476. }
  5477. },
  5478. [
  5479. {
  5480. name: "Micro",
  5481. height: math.unit(2, "inches")
  5482. },
  5483. {
  5484. name: "Small",
  5485. height: math.unit(1, "meter")
  5486. },
  5487. {
  5488. name: "Normal",
  5489. height: math.unit(Math.E, "meters"),
  5490. default: true
  5491. },
  5492. {
  5493. name: "Macro",
  5494. height: math.unit(20, "meters")
  5495. },
  5496. {
  5497. name: "Macro+",
  5498. height: math.unit(400, "meters")
  5499. },
  5500. ]
  5501. ))
  5502. characterMakers.push(() => makeCharacter(
  5503. { name: "Reece Silvermane" },
  5504. {
  5505. front: {
  5506. height: math.unit(7, "feet"),
  5507. weight: math.unit(489, "lbs"),
  5508. name: "Front",
  5509. image: {
  5510. source: "./media/characters/reece-silvermane/front.svg",
  5511. bottom: 0.02,
  5512. extra: 1
  5513. }
  5514. },
  5515. },
  5516. [
  5517. {
  5518. name: "Macro",
  5519. height: math.unit(1.5, "miles"),
  5520. default: true
  5521. },
  5522. ]
  5523. ))
  5524. characterMakers.push(() => makeCharacter(
  5525. { name: "Kane" },
  5526. {
  5527. front: {
  5528. height: math.unit(6, "feet"),
  5529. weight: math.unit(78, "kg"),
  5530. name: "Front",
  5531. image: {
  5532. source: "./media/characters/kane/front.svg",
  5533. extra: 978 / 899
  5534. }
  5535. },
  5536. },
  5537. [
  5538. {
  5539. name: "Normal",
  5540. height: math.unit(2.1, "m"),
  5541. },
  5542. {
  5543. name: "Macro",
  5544. height: math.unit(1, "km"),
  5545. default: true
  5546. },
  5547. ]
  5548. ))
  5549. characterMakers.push(() => makeCharacter(
  5550. { name: "Tegon" },
  5551. {
  5552. front: {
  5553. height: math.unit(6, "feet"),
  5554. weight: math.unit(200, "kg"),
  5555. name: "Front",
  5556. image: {
  5557. source: "./media/characters/tegon/front.svg",
  5558. bottom: 0.01,
  5559. extra: 1
  5560. }
  5561. },
  5562. },
  5563. [
  5564. {
  5565. name: "Micro",
  5566. height: math.unit(1, "inch")
  5567. },
  5568. {
  5569. name: "Normal",
  5570. height: math.unit(6 + 3 / 12, "feet"),
  5571. default: true
  5572. },
  5573. {
  5574. name: "Macro",
  5575. height: math.unit(300, "feet")
  5576. },
  5577. {
  5578. name: "Megamacro",
  5579. height: math.unit(69, "miles")
  5580. },
  5581. ]
  5582. ))
  5583. characterMakers.push(() => makeCharacter(
  5584. { name: "Arcturax" },
  5585. {
  5586. side: {
  5587. height: math.unit(6, "feet"),
  5588. weight: math.unit(2304, "lbs"),
  5589. name: "Side",
  5590. image: {
  5591. source: "./media/characters/arcturax/side.svg",
  5592. extra: 790 / 376,
  5593. bottom: 0.01
  5594. }
  5595. },
  5596. },
  5597. [
  5598. {
  5599. name: "Micro",
  5600. height: math.unit(2, "inch")
  5601. },
  5602. {
  5603. name: "Normal",
  5604. height: math.unit(6, "feet")
  5605. },
  5606. {
  5607. name: "Macro",
  5608. height: math.unit(39, "feet"),
  5609. default: true
  5610. },
  5611. {
  5612. name: "Megamacro",
  5613. height: math.unit(7, "miles")
  5614. },
  5615. ]
  5616. ))
  5617. characterMakers.push(() => makeCharacter(
  5618. { name: "Sentri" },
  5619. {
  5620. front: {
  5621. height: math.unit(6, "feet"),
  5622. weight: math.unit(50, "lbs"),
  5623. name: "Front",
  5624. image: {
  5625. source: "./media/characters/sentri/front.svg",
  5626. extra: 1750 / 1570,
  5627. bottom: 0.025
  5628. }
  5629. },
  5630. frontAlt: {
  5631. height: math.unit(6, "feet"),
  5632. weight: math.unit(50, "lbs"),
  5633. name: "Front (Alt)",
  5634. image: {
  5635. source: "./media/characters/sentri/front-alt.svg",
  5636. extra: 1750 / 1570,
  5637. bottom: 0.025
  5638. }
  5639. },
  5640. },
  5641. [
  5642. {
  5643. name: "Normal",
  5644. height: math.unit(15, "feet"),
  5645. default: true
  5646. },
  5647. {
  5648. name: "Macro",
  5649. height: math.unit(2500, "feet")
  5650. }
  5651. ]
  5652. ))
  5653. characterMakers.push(() => makeCharacter(
  5654. { name: "Corvin" },
  5655. {
  5656. front: {
  5657. height: math.unit(5 + 8 / 12, "feet"),
  5658. weight: math.unit(130, "lbs"),
  5659. name: "Front",
  5660. image: {
  5661. source: "./media/characters/corvin/front.svg",
  5662. extra: 1803 / 1629
  5663. }
  5664. },
  5665. frontShirt: {
  5666. height: math.unit(5 + 8 / 12, "feet"),
  5667. weight: math.unit(130, "lbs"),
  5668. name: "Front (Shirt)",
  5669. image: {
  5670. source: "./media/characters/corvin/front-shirt.svg",
  5671. extra: 1803 / 1629
  5672. }
  5673. },
  5674. frontPoncho: {
  5675. height: math.unit(5 + 8 / 12, "feet"),
  5676. weight: math.unit(130, "lbs"),
  5677. name: "Front (Poncho)",
  5678. image: {
  5679. source: "./media/characters/corvin/front-poncho.svg",
  5680. extra: 1803 / 1629
  5681. }
  5682. },
  5683. side: {
  5684. height: math.unit(5 + 8 / 12, "feet"),
  5685. weight: math.unit(130, "lbs"),
  5686. name: "Side",
  5687. image: {
  5688. source: "./media/characters/corvin/side.svg",
  5689. extra: 1012 / 945
  5690. }
  5691. },
  5692. back: {
  5693. height: math.unit(5 + 8 / 12, "feet"),
  5694. weight: math.unit(130, "lbs"),
  5695. name: "Back",
  5696. image: {
  5697. source: "./media/characters/corvin/back.svg",
  5698. extra: 1803 / 1629
  5699. }
  5700. },
  5701. },
  5702. [
  5703. {
  5704. name: "Micro",
  5705. height: math.unit(3, "inches")
  5706. },
  5707. {
  5708. name: "Normal",
  5709. height: math.unit(5 + 8 / 12, "feet")
  5710. },
  5711. {
  5712. name: "Macro",
  5713. height: math.unit(300, "feet"),
  5714. default: true
  5715. },
  5716. {
  5717. name: "Megamacro",
  5718. height: math.unit(500, "miles")
  5719. }
  5720. ]
  5721. ))
  5722. characterMakers.push(() => makeCharacter(
  5723. { name: "Q" },
  5724. {
  5725. front: {
  5726. height: math.unit(6, "feet"),
  5727. weight: math.unit(135, "lbs"),
  5728. name: "Front",
  5729. image: {
  5730. source: "./media/characters/q/front.svg",
  5731. extra: 854 / 752,
  5732. bottom: 0.005
  5733. }
  5734. },
  5735. back: {
  5736. height: math.unit(6, "feet"),
  5737. weight: math.unit(130, "lbs"),
  5738. name: "Back",
  5739. image: {
  5740. source: "./media/characters/q/back.svg",
  5741. extra: 854 / 752
  5742. }
  5743. },
  5744. },
  5745. [
  5746. {
  5747. name: "Macro",
  5748. height: math.unit(90, "feet"),
  5749. default: true
  5750. },
  5751. {
  5752. name: "Extra Macro",
  5753. height: math.unit(300, "feet"),
  5754. },
  5755. {
  5756. name: "BIG WALF",
  5757. height: math.unit(750, "feet"),
  5758. },
  5759. ]
  5760. ))
  5761. characterMakers.push(() => makeCharacter(
  5762. { name: "Carley" },
  5763. {
  5764. front: {
  5765. height: math.unit(6, "feet"),
  5766. weight: math.unit(150, "lbs"),
  5767. name: "Front",
  5768. image: {
  5769. source: "./media/characters/carley/front.svg",
  5770. extra: 3927 / 3540,
  5771. bottom: 0.03
  5772. }
  5773. }
  5774. },
  5775. [
  5776. {
  5777. name: "Normal",
  5778. height: math.unit(6 + 3 / 12, "feet")
  5779. },
  5780. {
  5781. name: "Macro",
  5782. height: math.unit(185, "feet"),
  5783. default: true
  5784. },
  5785. {
  5786. name: "Megamacro",
  5787. height: math.unit(8, "miles"),
  5788. },
  5789. ]
  5790. ))
  5791. characterMakers.push(() => makeCharacter(
  5792. { name: "Citrine" },
  5793. {
  5794. front: {
  5795. height: math.unit(3, "feet"),
  5796. weight: math.unit(28, "lbs"),
  5797. name: "Front",
  5798. image: {
  5799. source: "./media/characters/citrine/front.svg"
  5800. }
  5801. }
  5802. },
  5803. [
  5804. {
  5805. name: "Normal",
  5806. height: math.unit(3, "feet"),
  5807. default: true
  5808. }
  5809. ]
  5810. ))
  5811. characterMakers.push(() => makeCharacter(
  5812. { name: "Aura Starwind" },
  5813. {
  5814. front: {
  5815. height: math.unit(14, "feet"),
  5816. weight: math.unit(1450, "kg"),
  5817. capacity: math.unit(15, "people"),
  5818. name: "Front",
  5819. image: {
  5820. source: "./media/characters/aura-starwind/front.svg",
  5821. extra: 1455 / 1335
  5822. }
  5823. },
  5824. side: {
  5825. height: math.unit(14, "feet"),
  5826. weight: math.unit(1450, "kg"),
  5827. capacity: math.unit(15, "people"),
  5828. name: "Side",
  5829. image: {
  5830. source: "./media/characters/aura-starwind/side.svg",
  5831. extra: 1654 / 1497
  5832. }
  5833. },
  5834. taur: {
  5835. height: math.unit(18, "feet"),
  5836. weight: math.unit(5500, "kg"),
  5837. capacity: math.unit(50, "people"),
  5838. name: "Taur",
  5839. image: {
  5840. source: "./media/characters/aura-starwind/taur.svg",
  5841. extra: 1760 / 1650
  5842. }
  5843. },
  5844. feral: {
  5845. height: math.unit(46, "feet"),
  5846. weight: math.unit(25000, "kg"),
  5847. capacity: math.unit(120, "people"),
  5848. name: "Feral",
  5849. image: {
  5850. source: "./media/characters/aura-starwind/feral.svg"
  5851. }
  5852. },
  5853. },
  5854. [
  5855. {
  5856. name: "Normal",
  5857. height: math.unit(14, "feet"),
  5858. default: true
  5859. },
  5860. {
  5861. name: "Macro",
  5862. height: math.unit(50, "meters")
  5863. },
  5864. {
  5865. name: "Megamacro",
  5866. height: math.unit(5000, "meters")
  5867. },
  5868. {
  5869. name: "Gigamacro",
  5870. height: math.unit(100000, "kilometers")
  5871. },
  5872. ]
  5873. ))
  5874. characterMakers.push(() => makeCharacter(
  5875. { name: "Rivet" },
  5876. {
  5877. front: {
  5878. height: math.unit(2 + 7 / 12, "feet"),
  5879. weight: math.unit(32, "lbs"),
  5880. name: "Front",
  5881. image: {
  5882. source: "./media/characters/rivet/front.svg",
  5883. extra: 1716 / 1658,
  5884. bottom: 0.03
  5885. }
  5886. },
  5887. foot: {
  5888. height: math.unit(0.551, "feet"),
  5889. name: "Rivet's Foot",
  5890. image: {
  5891. source: "./media/characters/rivet/foot.svg"
  5892. },
  5893. rename: true
  5894. }
  5895. },
  5896. [
  5897. {
  5898. name: "Micro",
  5899. height: math.unit(1.5, "inches"),
  5900. },
  5901. {
  5902. name: "Normal",
  5903. height: math.unit(2 + 7 / 12, "feet"),
  5904. default: true
  5905. },
  5906. {
  5907. name: "Macro",
  5908. height: math.unit(85, "feet")
  5909. },
  5910. {
  5911. name: "Megamacro",
  5912. height: math.unit(2.2, "km")
  5913. }
  5914. ]
  5915. ))
  5916. characterMakers.push(() => makeCharacter(
  5917. { name: "Coffee" },
  5918. {
  5919. front: {
  5920. height: math.unit(5 + 9 / 12, "feet"),
  5921. weight: math.unit(150, "lbs"),
  5922. name: "Front",
  5923. image: {
  5924. source: "./media/characters/coffee/front.svg",
  5925. extra: 3666 / 3032,
  5926. bottom: 0.04
  5927. }
  5928. },
  5929. foot: {
  5930. height: math.unit(1.29, "feet"),
  5931. name: "Foot",
  5932. image: {
  5933. source: "./media/characters/coffee/foot.svg"
  5934. }
  5935. },
  5936. },
  5937. [
  5938. {
  5939. name: "Micro",
  5940. height: math.unit(2, "inches"),
  5941. },
  5942. {
  5943. name: "Normal",
  5944. height: math.unit(5 + 9 / 12, "feet"),
  5945. default: true
  5946. },
  5947. {
  5948. name: "Macro",
  5949. height: math.unit(800, "feet")
  5950. },
  5951. {
  5952. name: "Megamacro",
  5953. height: math.unit(25, "miles")
  5954. }
  5955. ]
  5956. ))
  5957. characterMakers.push(() => makeCharacter(
  5958. { name: "Chari-Gal" },
  5959. {
  5960. front: {
  5961. height: math.unit(6, "feet"),
  5962. weight: math.unit(200, "lbs"),
  5963. name: "Front",
  5964. image: {
  5965. source: "./media/characters/chari-gal/front.svg",
  5966. extra: 1568 / 1385,
  5967. bottom: 0.047
  5968. }
  5969. },
  5970. gigantamax: {
  5971. height: math.unit(6 * 16, "feet"),
  5972. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  5973. name: "Gigantamax",
  5974. image: {
  5975. source: "./media/characters/chari-gal/gigantamax.svg",
  5976. extra: 1124 / 888,
  5977. bottom: 0.03
  5978. }
  5979. },
  5980. },
  5981. [
  5982. {
  5983. name: "Normal",
  5984. height: math.unit(5 + 7 / 12, "feet")
  5985. },
  5986. {
  5987. name: "Macro",
  5988. height: math.unit(200, "feet"),
  5989. default: true
  5990. }
  5991. ]
  5992. ))
  5993. characterMakers.push(() => makeCharacter(
  5994. { name: "Nova" },
  5995. {
  5996. front: {
  5997. height: math.unit(6, "feet"),
  5998. weight: math.unit(150, "lbs"),
  5999. name: "Front",
  6000. image: {
  6001. source: "./media/characters/nova/front.svg",
  6002. extra: 5000 / 4722,
  6003. bottom: 0.02
  6004. }
  6005. }
  6006. },
  6007. [
  6008. {
  6009. name: "Micro-",
  6010. height: math.unit(0.8, "inches")
  6011. },
  6012. {
  6013. name: "Micro",
  6014. height: math.unit(2, "inches"),
  6015. default: true
  6016. },
  6017. ]
  6018. ))
  6019. characterMakers.push(() => makeCharacter(
  6020. { name: "Argent" },
  6021. {
  6022. front: {
  6023. height: math.unit(3 + 1 / 12, "feet"),
  6024. weight: math.unit(21.7, "lbs"),
  6025. name: "Front",
  6026. image: {
  6027. source: "./media/characters/argent/front.svg",
  6028. extra: 1565 / 1416,
  6029. bottom: 0.01
  6030. }
  6031. }
  6032. },
  6033. [
  6034. {
  6035. name: "Micro",
  6036. height: math.unit(2, "inches")
  6037. },
  6038. {
  6039. name: "Normal",
  6040. height: math.unit(3 + 1 / 12, "feet"),
  6041. default: true
  6042. },
  6043. {
  6044. name: "Macro",
  6045. height: math.unit(120, "feet")
  6046. },
  6047. ]
  6048. ))
  6049. characterMakers.push(() => makeCharacter(
  6050. { name: "Mira al-Cul" },
  6051. {
  6052. lamp: {
  6053. height: math.unit(7 * 1559 / 989, "feet"),
  6054. name: "Magic Lamp",
  6055. image: {
  6056. source: "./media/characters/mira-al-cul/lamp.svg",
  6057. extra: 1617 / 1559
  6058. }
  6059. },
  6060. front: {
  6061. height: math.unit(7, "feet"),
  6062. name: "Front",
  6063. image: {
  6064. source: "./media/characters/mira-al-cul/front.svg",
  6065. extra: 1044 / 990
  6066. }
  6067. },
  6068. },
  6069. [
  6070. {
  6071. name: "Heavily Restricted",
  6072. height: math.unit(7 * 1559 / 989, "feet")
  6073. },
  6074. {
  6075. name: "Freshly Freed",
  6076. height: math.unit(50 * 1559 / 989, "feet")
  6077. },
  6078. {
  6079. name: "World Encompassing",
  6080. height: math.unit(10000 * 1559 / 989, "miles")
  6081. },
  6082. {
  6083. name: "Galactic",
  6084. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6085. },
  6086. {
  6087. name: "Palmed Universe",
  6088. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6089. default: true
  6090. },
  6091. {
  6092. name: "Multiversal Matriarch",
  6093. height: math.unit(8.87e10, "yottameters")
  6094. },
  6095. {
  6096. name: "Void Mother",
  6097. height: math.unit(3.14e110, "yottaparsecs")
  6098. },
  6099. ]
  6100. ))
  6101. characterMakers.push(() => makeCharacter(
  6102. { name: "Kuro-shi Uchū" },
  6103. {
  6104. front: {
  6105. height: math.unit(17 + 1 / 12, "feet"),
  6106. weight: math.unit(476.2 * 5, "lbs"),
  6107. name: "Front",
  6108. image: {
  6109. source: "./media/characters/kuro-shi-uchū/front.svg",
  6110. extra: 2329 / 1835,
  6111. bottom: 0.02
  6112. }
  6113. },
  6114. },
  6115. [
  6116. {
  6117. name: "Micro",
  6118. height: math.unit(2, "inches")
  6119. },
  6120. {
  6121. name: "Normal",
  6122. height: math.unit(12, "meters")
  6123. },
  6124. {
  6125. name: "Planetary",
  6126. height: math.unit(0.00929, "AU"),
  6127. default: true
  6128. },
  6129. {
  6130. name: "Universal",
  6131. height: math.unit(20, "gigaparsecs")
  6132. },
  6133. ]
  6134. ))
  6135. characterMakers.push(() => makeCharacter(
  6136. { name: "Katherine" },
  6137. {
  6138. front: {
  6139. height: math.unit(5 + 2 / 12, "feet"),
  6140. weight: math.unit(120, "lbs"),
  6141. name: "Front",
  6142. image: {
  6143. source: "./media/characters/katherine/front.svg",
  6144. extra: 2075 / 1969
  6145. }
  6146. },
  6147. dress: {
  6148. height: math.unit(5 + 2 / 12, "feet"),
  6149. weight: math.unit(120, "lbs"),
  6150. name: "Dress",
  6151. image: {
  6152. source: "./media/characters/katherine/dress.svg",
  6153. extra: 2258 / 2064
  6154. }
  6155. },
  6156. },
  6157. [
  6158. {
  6159. name: "Micro",
  6160. height: math.unit(1, "inches"),
  6161. default: true
  6162. },
  6163. {
  6164. name: "Normal",
  6165. height: math.unit(5 + 2 / 12, "feet")
  6166. },
  6167. {
  6168. name: "Macro",
  6169. height: math.unit(100, "meters")
  6170. },
  6171. {
  6172. name: "Megamacro",
  6173. height: math.unit(80, "miles")
  6174. },
  6175. ]
  6176. ))
  6177. characterMakers.push(() => makeCharacter(
  6178. { name: "Yevis" },
  6179. {
  6180. front: {
  6181. height: math.unit(7 + 8 / 12, "feet"),
  6182. weight: math.unit(250, "lbs"),
  6183. name: "Front",
  6184. image: {
  6185. source: "./media/characters/yevis/front.svg",
  6186. extra: 1938 / 1755
  6187. }
  6188. }
  6189. },
  6190. [
  6191. {
  6192. name: "Mortal",
  6193. height: math.unit(7 + 8 / 12, "feet")
  6194. },
  6195. {
  6196. name: "Battle",
  6197. height: math.unit(25 + 11 / 12, "feet")
  6198. },
  6199. {
  6200. name: "Wrath",
  6201. height: math.unit(1654 + 11 / 12, "feet")
  6202. },
  6203. {
  6204. name: "Planet Destroyer",
  6205. height: math.unit(12000, "miles")
  6206. },
  6207. {
  6208. name: "Galaxy Conqueror",
  6209. height: math.unit(1.45, "zettameters"),
  6210. default: true
  6211. },
  6212. {
  6213. name: "Universal War",
  6214. height: math.unit(184, "gigaparsecs")
  6215. },
  6216. {
  6217. name: "Eternity War",
  6218. height: math.unit(1.98e55, "yottaparsecs")
  6219. },
  6220. ]
  6221. ))
  6222. characterMakers.push(() => makeCharacter(
  6223. { name: "Xavier" },
  6224. {
  6225. front: {
  6226. height: math.unit(5 + 8 / 12, "feet"),
  6227. weight: math.unit(63, "kg"),
  6228. name: "Front",
  6229. image: {
  6230. source: "./media/characters/xavier/front.svg",
  6231. extra: 944 / 883
  6232. }
  6233. },
  6234. frontStretch: {
  6235. height: math.unit(5 + 8 / 12, "feet"),
  6236. weight: math.unit(63, "kg"),
  6237. name: "Stretching",
  6238. image: {
  6239. source: "./media/characters/xavier/front-stretch.svg",
  6240. extra: 962 / 820
  6241. }
  6242. },
  6243. },
  6244. [
  6245. {
  6246. name: "Normal",
  6247. height: math.unit(5 + 8 / 12, "feet")
  6248. },
  6249. {
  6250. name: "Macro",
  6251. height: math.unit(100, "meters"),
  6252. default: true
  6253. },
  6254. {
  6255. name: "McLargeHuge",
  6256. height: math.unit(10, "miles")
  6257. },
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Joshii" },
  6262. {
  6263. front: {
  6264. height: math.unit(5 + 5 / 12, "feet"),
  6265. weight: math.unit(150, "lb"),
  6266. name: "Front",
  6267. image: {
  6268. source: "./media/characters/joshii/front.svg"
  6269. }
  6270. },
  6271. foot: {
  6272. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6273. name: "Foot",
  6274. image: {
  6275. source: "./media/characters/joshii/foot.svg"
  6276. }
  6277. },
  6278. },
  6279. [
  6280. {
  6281. name: "Micro",
  6282. height: math.unit(2, "inches")
  6283. },
  6284. {
  6285. name: "Normal",
  6286. height: math.unit(5 + 5 / 12, "feet"),
  6287. default: true
  6288. },
  6289. {
  6290. name: "Macro",
  6291. height: math.unit(785, "feet")
  6292. },
  6293. {
  6294. name: "Megamacro",
  6295. height: math.unit(24.5, "miles")
  6296. },
  6297. ]
  6298. ))
  6299. characterMakers.push(() => makeCharacter(
  6300. { name: "Goddess Elizabeth" },
  6301. {
  6302. front: {
  6303. height: math.unit(6, "feet"),
  6304. weight: math.unit(150, "lb"),
  6305. name: "Front",
  6306. image: {
  6307. source: "./media/characters/goddess-elizabeth/front.svg",
  6308. extra: 1800 / 1525,
  6309. bottom: 0.005
  6310. }
  6311. },
  6312. foot: {
  6313. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6314. name: "Foot",
  6315. image: {
  6316. source: "./media/characters/goddess-elizabeth/foot.svg"
  6317. }
  6318. },
  6319. mouth: {
  6320. height: math.unit(6, "feet"),
  6321. name: "Mouth",
  6322. image: {
  6323. source: "./media/characters/goddess-elizabeth/mouth.svg"
  6324. }
  6325. },
  6326. },
  6327. [
  6328. {
  6329. name: "Micro",
  6330. height: math.unit(12, "feet")
  6331. },
  6332. {
  6333. name: "Normal",
  6334. height: math.unit(80, "miles"),
  6335. default: true
  6336. },
  6337. {
  6338. name: "Macro",
  6339. height: math.unit(15000, "parsecs")
  6340. },
  6341. ]
  6342. ))
  6343. characterMakers.push(() => makeCharacter(
  6344. { name: "Kara" },
  6345. {
  6346. front: {
  6347. height: math.unit(5 + 9 / 12, "feet"),
  6348. weight: math.unit(144, "lb"),
  6349. name: "Front",
  6350. image: {
  6351. source: "./media/characters/kara/front.svg"
  6352. }
  6353. },
  6354. feet: {
  6355. height: math.unit(6 / 6.765, "feet"),
  6356. name: "Kara's Feet",
  6357. rename: true,
  6358. image: {
  6359. source: "./media/characters/kara/feet.svg"
  6360. }
  6361. },
  6362. },
  6363. [
  6364. {
  6365. name: "Normal",
  6366. height: math.unit(5 + 9 / 12, "feet")
  6367. },
  6368. {
  6369. name: "Macro",
  6370. height: math.unit(174, "feet"),
  6371. default: true
  6372. },
  6373. ]
  6374. ))
  6375. characterMakers.push(() => makeCharacter(
  6376. { name: "Tyrone" },
  6377. {
  6378. front: {
  6379. height: math.unit(18, "feet"),
  6380. weight: math.unit(4050, "lb"),
  6381. name: "Front",
  6382. image: {
  6383. source: "./media/characters/tyrone/front.svg",
  6384. extra: 2520 / 2402,
  6385. bottom: 0.025
  6386. }
  6387. },
  6388. },
  6389. [
  6390. {
  6391. name: "Normal",
  6392. height: math.unit(18, "feet"),
  6393. default: true
  6394. },
  6395. {
  6396. name: "Macro",
  6397. height: math.unit(300, "feet")
  6398. },
  6399. ]
  6400. ))
  6401. characterMakers.push(() => makeCharacter(
  6402. { name: "Danny" },
  6403. {
  6404. front: {
  6405. height: math.unit(7 + 8 / 12, "feet"),
  6406. weight: math.unit(120, "lb"),
  6407. name: "Front",
  6408. image: {
  6409. source: "./media/characters/danny/front.svg",
  6410. extra: 1490 / 1350
  6411. }
  6412. },
  6413. back: {
  6414. height: math.unit(7 + 8 / 12, "feet"),
  6415. weight: math.unit(120, "lb"),
  6416. name: "Back",
  6417. image: {
  6418. source: "./media/characters/danny/back.svg",
  6419. extra: 1490 / 1350
  6420. }
  6421. },
  6422. },
  6423. [
  6424. {
  6425. name: "Normal",
  6426. height: math.unit(7 + 8 / 12, "feet"),
  6427. default: true
  6428. },
  6429. ]
  6430. ))
  6431. characterMakers.push(() => makeCharacter(
  6432. { name: "Mallow" },
  6433. {
  6434. front: {
  6435. height: math.unit(3.5, "inches"),
  6436. weight: math.unit(19, "grams"),
  6437. name: "Front",
  6438. image: {
  6439. source: "./media/characters/mallow/front.svg",
  6440. extra: 471 / 431
  6441. }
  6442. },
  6443. back: {
  6444. height: math.unit(3.5, "inches"),
  6445. weight: math.unit(19, "grams"),
  6446. name: "Back",
  6447. image: {
  6448. source: "./media/characters/mallow/back.svg",
  6449. extra: 471 / 431
  6450. }
  6451. },
  6452. },
  6453. [
  6454. {
  6455. name: "Normal",
  6456. height: math.unit(3.5, "inches"),
  6457. default: true
  6458. },
  6459. ]
  6460. ))
  6461. characterMakers.push(() => makeCharacter(
  6462. { name: "Starry Aqua" },
  6463. {
  6464. front: {
  6465. height: math.unit(9, "feet"),
  6466. weight: math.unit(230, "kg"),
  6467. name: "Front",
  6468. image: {
  6469. source: "./media/characters/starry-aqua/front.svg"
  6470. }
  6471. },
  6472. back: {
  6473. height: math.unit(9, "feet"),
  6474. weight: math.unit(230, "kg"),
  6475. name: "Back",
  6476. image: {
  6477. source: "./media/characters/starry-aqua/back.svg"
  6478. }
  6479. },
  6480. hand: {
  6481. height: math.unit(9 * 0.1168, "feet"),
  6482. name: "Hand",
  6483. image: {
  6484. source: "./media/characters/starry-aqua/hand.svg"
  6485. }
  6486. },
  6487. foot: {
  6488. height: math.unit(9 * 0.18, "feet"),
  6489. name: "Foot",
  6490. image: {
  6491. source: "./media/characters/starry-aqua/foot.svg"
  6492. }
  6493. }
  6494. },
  6495. [
  6496. {
  6497. name: "Micro",
  6498. height: math.unit(3, "inches")
  6499. },
  6500. {
  6501. name: "Normal",
  6502. height: math.unit(9, "feet")
  6503. },
  6504. {
  6505. name: "Macro",
  6506. height: math.unit(300, "feet"),
  6507. default: true
  6508. },
  6509. {
  6510. name: "Megamacro",
  6511. height: math.unit(3200, "feet")
  6512. }
  6513. ]
  6514. ))
  6515. characterMakers.push(() => makeCharacter(
  6516. { name: "Luka" },
  6517. {
  6518. front: {
  6519. height: math.unit(6, "feet"),
  6520. weight: math.unit(230, "lb"),
  6521. name: "Front",
  6522. image: {
  6523. source: "./media/characters/luka/front.svg",
  6524. extra: 1,
  6525. bottom: 0.025
  6526. }
  6527. },
  6528. },
  6529. [
  6530. {
  6531. name: "Normal",
  6532. height: math.unit(12 + 8 / 12, "feet"),
  6533. default: true
  6534. },
  6535. {
  6536. name: "Minimacro",
  6537. height: math.unit(20, "feet")
  6538. },
  6539. {
  6540. name: "Macro",
  6541. height: math.unit(250, "feet")
  6542. },
  6543. {
  6544. name: "Megamacro",
  6545. height: math.unit(5, "miles")
  6546. },
  6547. {
  6548. name: "Gigamacro",
  6549. height: math.unit(8000, "miles")
  6550. },
  6551. ]
  6552. ))
  6553. characterMakers.push(() => makeCharacter(
  6554. { name: "Natalie Nightring" },
  6555. {
  6556. front: {
  6557. height: math.unit(6, "feet"),
  6558. weight: math.unit(150, "lb"),
  6559. name: "Front",
  6560. image: {
  6561. source: "./media/characters/natalie-nightring/front.svg",
  6562. extra: 1,
  6563. bottom: 0.06
  6564. }
  6565. },
  6566. },
  6567. [
  6568. {
  6569. name: "Uh Oh",
  6570. height: math.unit(0.1, "mm")
  6571. },
  6572. {
  6573. name: "Small",
  6574. height: math.unit(3, "inches")
  6575. },
  6576. {
  6577. name: "Human Scale",
  6578. height: math.unit(6, "feet")
  6579. },
  6580. {
  6581. name: "Librarian",
  6582. height: math.unit(50, "feet"),
  6583. default: true
  6584. },
  6585. {
  6586. name: "Immense",
  6587. height: math.unit(200, "miles")
  6588. },
  6589. ]
  6590. ))
  6591. characterMakers.push(() => makeCharacter(
  6592. { name: "Danni Rosie" },
  6593. {
  6594. front: {
  6595. height: math.unit(6, "feet"),
  6596. weight: math.unit(180, "lbs"),
  6597. name: "Front",
  6598. image: {
  6599. source: "./media/characters/danni-rosie/front.svg",
  6600. extra: 1260 / 1128,
  6601. bottom: 0.022
  6602. }
  6603. },
  6604. },
  6605. [
  6606. {
  6607. name: "Micro",
  6608. height: math.unit(2, "inches"),
  6609. default: true
  6610. },
  6611. ]
  6612. ))
  6613. characterMakers.push(() => makeCharacter(
  6614. { name: "Samantha Kruse" },
  6615. {
  6616. front: {
  6617. height: math.unit(5 + 9 / 12, "feet"),
  6618. weight: math.unit(220, "lb"),
  6619. name: "Front",
  6620. image: {
  6621. source: "./media/characters/samantha-kruse/front.svg",
  6622. extra: (985 / 935),
  6623. bottom: 0.03
  6624. }
  6625. },
  6626. frontUndressed: {
  6627. height: math.unit(5 + 9 / 12, "feet"),
  6628. weight: math.unit(220, "lb"),
  6629. name: "Front (Undressed)",
  6630. image: {
  6631. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6632. extra: (973 / 923),
  6633. bottom: 0.025
  6634. }
  6635. },
  6636. fat: {
  6637. height: math.unit(5 + 9 / 12, "feet"),
  6638. weight: math.unit(900, "lb"),
  6639. name: "Front (Fat)",
  6640. image: {
  6641. source: "./media/characters/samantha-kruse/fat.svg",
  6642. extra: 2688 / 2561
  6643. }
  6644. },
  6645. },
  6646. [
  6647. {
  6648. name: "Normal",
  6649. height: math.unit(5 + 9 / 12, "feet"),
  6650. default: true
  6651. }
  6652. ]
  6653. ))
  6654. characterMakers.push(() => makeCharacter(
  6655. { name: "Amelia Rosie" },
  6656. {
  6657. back: {
  6658. height: math.unit(5 + 4 / 12, "feet"),
  6659. weight: math.unit(4963, "lb"),
  6660. name: "Back",
  6661. image: {
  6662. source: "./media/characters/amelia-rosie/back.svg",
  6663. extra: 1113 / 963,
  6664. bottom: 0.01
  6665. }
  6666. },
  6667. },
  6668. [
  6669. {
  6670. name: "Level 0",
  6671. height: math.unit(5 + 4 / 12, "feet")
  6672. },
  6673. {
  6674. name: "Level 1",
  6675. height: math.unit(164597, "feet"),
  6676. default: true
  6677. },
  6678. {
  6679. name: "Level 2",
  6680. height: math.unit(956243, "miles")
  6681. },
  6682. {
  6683. name: "Level 3",
  6684. height: math.unit(29421709423, "miles")
  6685. },
  6686. {
  6687. name: "Level 4",
  6688. height: math.unit(154, "lightyears")
  6689. },
  6690. {
  6691. name: "Level 5",
  6692. height: math.unit(4738272, "lightyears")
  6693. },
  6694. {
  6695. name: "Level 6",
  6696. height: math.unit(145787152896, "lightyears")
  6697. },
  6698. ]
  6699. ))
  6700. characterMakers.push(() => makeCharacter(
  6701. { name: "Rook Kitara" },
  6702. {
  6703. front: {
  6704. height: math.unit(5 + 11 / 12, "feet"),
  6705. weight: math.unit(65, "kg"),
  6706. name: "Front",
  6707. image: {
  6708. source: "./media/characters/rook-kitara/front.svg",
  6709. extra: 1347 / 1274,
  6710. bottom: 0.005
  6711. }
  6712. },
  6713. },
  6714. [
  6715. {
  6716. name: "Totally Unfair",
  6717. height: math.unit(1.8, "mm")
  6718. },
  6719. {
  6720. name: "Lap Rookie",
  6721. height: math.unit(1.4, "feet")
  6722. },
  6723. {
  6724. name: "Normal",
  6725. height: math.unit(5 + 11 / 12, "feet"),
  6726. default: true
  6727. },
  6728. {
  6729. name: "How Did This Happen",
  6730. height: math.unit(80, "miles")
  6731. }
  6732. ]
  6733. ))
  6734. characterMakers.push(() => makeCharacter(
  6735. { name: "Pisces" },
  6736. {
  6737. front: {
  6738. height: math.unit(7, "feet"),
  6739. weight: math.unit(300, "lb"),
  6740. name: "Front",
  6741. image: {
  6742. source: "./media/characters/pisces/front.svg",
  6743. extra: 2255 / 2115,
  6744. bottom: 0.03
  6745. }
  6746. },
  6747. back: {
  6748. height: math.unit(7, "feet"),
  6749. weight: math.unit(300, "lb"),
  6750. name: "Back",
  6751. image: {
  6752. source: "./media/characters/pisces/back.svg",
  6753. extra: 2146 / 2055,
  6754. bottom: 0.04
  6755. }
  6756. },
  6757. },
  6758. [
  6759. {
  6760. name: "Normal",
  6761. height: math.unit(7, "feet"),
  6762. default: true
  6763. },
  6764. {
  6765. name: "Swimming Pool",
  6766. height: math.unit(12.2, "meters")
  6767. },
  6768. {
  6769. name: "Olympic Swimming Pool",
  6770. height: math.unit(56.3, "meters")
  6771. },
  6772. {
  6773. name: "Lake Superior",
  6774. height: math.unit(93900, "meters")
  6775. },
  6776. {
  6777. name: "Mediterranean Sea",
  6778. height: math.unit(644457, "meters")
  6779. },
  6780. {
  6781. name: "World's Oceans",
  6782. height: math.unit(4567491, "meters")
  6783. },
  6784. ]
  6785. ))
  6786. characterMakers.push(() => makeCharacter(
  6787. { name: "Zelas" },
  6788. {
  6789. front: {
  6790. height: math.unit(2.3, "meters"),
  6791. weight: math.unit(120, "kg"),
  6792. name: "Front",
  6793. image: {
  6794. source: "./media/characters/zelas/front.svg"
  6795. }
  6796. },
  6797. side: {
  6798. height: math.unit(2.3, "meters"),
  6799. weight: math.unit(120, "kg"),
  6800. name: "Side",
  6801. image: {
  6802. source: "./media/characters/zelas/side.svg"
  6803. }
  6804. },
  6805. back: {
  6806. height: math.unit(2.3, "meters"),
  6807. weight: math.unit(120, "kg"),
  6808. name: "Back",
  6809. image: {
  6810. source: "./media/characters/zelas/back.svg"
  6811. }
  6812. },
  6813. foot: {
  6814. height: math.unit(1.116, "feet"),
  6815. name: "Foot",
  6816. image: {
  6817. source: "./media/characters/zelas/foot.svg"
  6818. }
  6819. },
  6820. },
  6821. [
  6822. {
  6823. name: "Normal",
  6824. height: math.unit(2.3, "meters")
  6825. },
  6826. {
  6827. name: "Macro",
  6828. height: math.unit(30, "meters"),
  6829. default: true
  6830. },
  6831. ]
  6832. ))
  6833. characterMakers.push(() => makeCharacter(
  6834. { name: "Talbot" },
  6835. {
  6836. front: {
  6837. height: math.unit(1, "inch"),
  6838. weight: math.unit(0.21, "grams"),
  6839. name: "Front",
  6840. image: {
  6841. source: "./media/characters/talbot/front.svg",
  6842. extra: 594 / 544
  6843. }
  6844. },
  6845. },
  6846. [
  6847. {
  6848. name: "Micro",
  6849. height: math.unit(1, "inch"),
  6850. default: true
  6851. },
  6852. ]
  6853. ))
  6854. characterMakers.push(() => makeCharacter(
  6855. { name: "Fliss" },
  6856. {
  6857. front: {
  6858. height: math.unit(3 + 3 / 12, "feet"),
  6859. weight: math.unit(51.8, "lb"),
  6860. name: "Front",
  6861. image: {
  6862. source: "./media/characters/fliss/front.svg",
  6863. extra: 840 / 640
  6864. }
  6865. },
  6866. },
  6867. [
  6868. {
  6869. name: "Teeny Tiny",
  6870. height: math.unit(1, "mm")
  6871. },
  6872. {
  6873. name: "Small",
  6874. height: math.unit(1, "inch"),
  6875. default: true
  6876. },
  6877. {
  6878. name: "Standard Sylveon",
  6879. height: math.unit(3 + 3 / 12, "feet")
  6880. },
  6881. {
  6882. name: "Large Nuisance",
  6883. height: math.unit(33, "feet")
  6884. },
  6885. {
  6886. name: "City Filler",
  6887. height: math.unit(3000, "feet")
  6888. },
  6889. {
  6890. name: "New Horizon",
  6891. height: math.unit(6000, "miles")
  6892. },
  6893. ]
  6894. ))
  6895. characterMakers.push(() => makeCharacter(
  6896. { name: "Fleta" },
  6897. {
  6898. front: {
  6899. height: math.unit(5, "cm"),
  6900. weight: math.unit(1.94, "g"),
  6901. name: "Front",
  6902. image: {
  6903. source: "./media/characters/fleta/front.svg",
  6904. extra: 835 / 803
  6905. }
  6906. },
  6907. back: {
  6908. height: math.unit(5, "cm"),
  6909. weight: math.unit(1.94, "g"),
  6910. name: "Back",
  6911. image: {
  6912. source: "./media/characters/fleta/back.svg",
  6913. extra: 835 / 803
  6914. }
  6915. },
  6916. },
  6917. [
  6918. {
  6919. name: "Micro",
  6920. height: math.unit(5, "cm"),
  6921. default: true
  6922. },
  6923. ]
  6924. ))
  6925. characterMakers.push(() => makeCharacter(
  6926. { name: "Dominic" },
  6927. {
  6928. front: {
  6929. height: math.unit(6, "feet"),
  6930. weight: math.unit(225, "lb"),
  6931. name: "Front",
  6932. image: {
  6933. source: "./media/characters/dominic/front.svg",
  6934. extra: 1770 / 1620,
  6935. bottom: 0.025
  6936. }
  6937. },
  6938. back: {
  6939. height: math.unit(6, "feet"),
  6940. weight: math.unit(225, "lb"),
  6941. name: "Back",
  6942. image: {
  6943. source: "./media/characters/dominic/back.svg",
  6944. extra: 1745 / 1620,
  6945. bottom: 0.065
  6946. }
  6947. },
  6948. },
  6949. [
  6950. {
  6951. name: "Nano",
  6952. height: math.unit(0.1, "mm")
  6953. },
  6954. {
  6955. name: "Micro-",
  6956. height: math.unit(1, "mm")
  6957. },
  6958. {
  6959. name: "Micro",
  6960. height: math.unit(4, "inches")
  6961. },
  6962. {
  6963. name: "Normal",
  6964. height: math.unit(6 + 4 / 12, "feet"),
  6965. default: true
  6966. },
  6967. {
  6968. name: "Macro",
  6969. height: math.unit(115, "feet")
  6970. },
  6971. {
  6972. name: "Macro+",
  6973. height: math.unit(955, "feet")
  6974. },
  6975. {
  6976. name: "Megamacro",
  6977. height: math.unit(8990, "feet")
  6978. },
  6979. {
  6980. name: "Gigmacro",
  6981. height: math.unit(9310, "miles")
  6982. },
  6983. {
  6984. name: "Teramacro",
  6985. height: math.unit(1567005010, "miles")
  6986. },
  6987. {
  6988. name: "Examacro",
  6989. height: math.unit(1425, "parsecs")
  6990. },
  6991. ]
  6992. ))
  6993. characterMakers.push(() => makeCharacter(
  6994. { name: "Major Colonel" },
  6995. {
  6996. front: {
  6997. height: math.unit(400, "feet"),
  6998. weight: math.unit(44444444, "lb"),
  6999. name: "Front",
  7000. image: {
  7001. source: "./media/characters/major-colonel/front.svg"
  7002. }
  7003. },
  7004. back: {
  7005. height: math.unit(400, "feet"),
  7006. weight: math.unit(44444444, "lb"),
  7007. name: "Back",
  7008. image: {
  7009. source: "./media/characters/major-colonel/back.svg"
  7010. }
  7011. },
  7012. },
  7013. [
  7014. {
  7015. name: "Macro",
  7016. height: math.unit(400, "feet"),
  7017. default: true
  7018. },
  7019. ]
  7020. ))
  7021. characterMakers.push(() => makeCharacter(
  7022. { name: "Axel Lycan" },
  7023. {
  7024. front: {
  7025. height: math.unit(6, "feet"),
  7026. weight: math.unit(120, "lb"),
  7027. name: "Front",
  7028. image: {
  7029. source: "./media/characters/axel-lycan/front.svg",
  7030. extra: 1,
  7031. bottom: 0.08
  7032. }
  7033. },
  7034. },
  7035. [
  7036. {
  7037. name: "Macro",
  7038. height: math.unit(1, "km"),
  7039. default: true
  7040. },
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Vanrel (Hyena)" },
  7045. {
  7046. front: {
  7047. height: math.unit(5 + 9 / 12, "feet"),
  7048. weight: math.unit(175, "lb"),
  7049. name: "Front",
  7050. image: {
  7051. source: "./media/characters/vanrel-hyena/front.svg",
  7052. extra: 1086 / 1010,
  7053. bottom: 0.04
  7054. }
  7055. },
  7056. },
  7057. [
  7058. {
  7059. name: "Normal",
  7060. height: math.unit(5 + 9 / 12, "feet"),
  7061. default: true
  7062. },
  7063. ]
  7064. ))
  7065. characterMakers.push(() => makeCharacter(
  7066. { name: "Abbott Absol" },
  7067. {
  7068. front: {
  7069. height: math.unit(6, "feet"),
  7070. weight: math.unit(103, "lb"),
  7071. name: "Front",
  7072. image: {
  7073. source: "./media/characters/abbott-absol/front.svg",
  7074. extra: 2010 / 1842
  7075. }
  7076. },
  7077. },
  7078. [
  7079. {
  7080. name: "Megamicro",
  7081. height: math.unit(0.1, "mm")
  7082. },
  7083. {
  7084. name: "Micro",
  7085. height: math.unit(1, "inch")
  7086. },
  7087. {
  7088. name: "Normal",
  7089. height: math.unit(6, "feet"),
  7090. default: true
  7091. },
  7092. ]
  7093. ))
  7094. characterMakers.push(() => makeCharacter(
  7095. { name: "Hector" },
  7096. {
  7097. front: {
  7098. height: math.unit(6, "feet"),
  7099. weight: math.unit(264, "lb"),
  7100. name: "Front",
  7101. image: {
  7102. source: "./media/characters/hector/front.svg",
  7103. extra: 2280 / 2130,
  7104. bottom: 0.07
  7105. }
  7106. },
  7107. },
  7108. [
  7109. {
  7110. name: "Normal",
  7111. height: math.unit(12.25, "foot"),
  7112. default: true
  7113. },
  7114. {
  7115. name: "Macro",
  7116. height: math.unit(160, "feet")
  7117. },
  7118. ]
  7119. ))
  7120. characterMakers.push(() => makeCharacter(
  7121. { name: "Sal" },
  7122. {
  7123. front: {
  7124. height: math.unit(6, "feet"),
  7125. weight: math.unit(150, "lb"),
  7126. name: "Front",
  7127. image: {
  7128. source: "./media/characters/sal/front.svg",
  7129. extra: 1846 / 1699,
  7130. bottom: 0.04
  7131. }
  7132. },
  7133. },
  7134. [
  7135. {
  7136. name: "Megamacro",
  7137. height: math.unit(10, "miles"),
  7138. default: true
  7139. },
  7140. ]
  7141. ))
  7142. characterMakers.push(() => makeCharacter(
  7143. { name: "Ranger" },
  7144. {
  7145. front: {
  7146. height: math.unit(3, "meters"),
  7147. weight: math.unit(450, "kg"),
  7148. name: "front",
  7149. image: {
  7150. source: "./media/characters/ranger/front.svg",
  7151. extra: 2401 / 2243,
  7152. bottom: 0.05
  7153. }
  7154. },
  7155. },
  7156. [
  7157. {
  7158. name: "Normal",
  7159. height: math.unit(3, "meters"),
  7160. default: true
  7161. },
  7162. ]
  7163. ))
  7164. characterMakers.push(() => makeCharacter(
  7165. { name: "Theresa" },
  7166. {
  7167. front: {
  7168. height: math.unit(14, "feet"),
  7169. weight: math.unit(800, "kg"),
  7170. name: "Front",
  7171. image: {
  7172. source: "./media/characters/theresa/front.svg",
  7173. extra: 3575 / 3346,
  7174. bottom: 0.03
  7175. }
  7176. },
  7177. },
  7178. [
  7179. {
  7180. name: "Normal",
  7181. height: math.unit(14, "feet"),
  7182. default: true
  7183. },
  7184. ]
  7185. ))
  7186. characterMakers.push(() => makeCharacter(
  7187. { name: "Ine" },
  7188. {
  7189. front: {
  7190. height: math.unit(6, "feet"),
  7191. weight: math.unit(3, "kg"),
  7192. name: "Front",
  7193. image: {
  7194. source: "./media/characters/ine/front.svg",
  7195. extra: 678 / 539,
  7196. bottom: 0.023
  7197. }
  7198. },
  7199. },
  7200. [
  7201. {
  7202. name: "Normal",
  7203. height: math.unit(2.265, "feet"),
  7204. default: true
  7205. },
  7206. ]
  7207. ))
  7208. characterMakers.push(() => makeCharacter(
  7209. { name: "Vial" },
  7210. {
  7211. front: {
  7212. height: math.unit(5, "feet"),
  7213. weight: math.unit(30, "kg"),
  7214. name: "Front",
  7215. image: {
  7216. source: "./media/characters/vial/front.svg",
  7217. extra: 1365 / 1277,
  7218. bottom: 0.04
  7219. }
  7220. },
  7221. },
  7222. [
  7223. {
  7224. name: "Normal",
  7225. height: math.unit(5, "feet"),
  7226. default: true
  7227. },
  7228. ]
  7229. ))
  7230. characterMakers.push(() => makeCharacter(
  7231. { name: "Rovoska" },
  7232. {
  7233. side: {
  7234. height: math.unit(3.4, "meters"),
  7235. weight: math.unit(1000, "lb"),
  7236. name: "Side",
  7237. image: {
  7238. source: "./media/characters/rovoska/side.svg",
  7239. extra: 4403 / 1515
  7240. }
  7241. },
  7242. },
  7243. [
  7244. {
  7245. name: "Normal",
  7246. height: math.unit(3.4, "meters"),
  7247. default: true
  7248. },
  7249. ]
  7250. ))
  7251. characterMakers.push(() => makeCharacter(
  7252. { name: "Gunner Rotthbauer" },
  7253. {
  7254. front: {
  7255. height: math.unit(8, "feet"),
  7256. weight: math.unit(315, "lb"),
  7257. name: "Front",
  7258. image: {
  7259. source: "./media/characters/gunner-rotthbauer/front.svg"
  7260. }
  7261. },
  7262. back: {
  7263. height: math.unit(8, "feet"),
  7264. weight: math.unit(315, "lb"),
  7265. name: "Back",
  7266. image: {
  7267. source: "./media/characters/gunner-rotthbauer/back.svg"
  7268. }
  7269. },
  7270. },
  7271. [
  7272. {
  7273. name: "Micro",
  7274. height: math.unit(3.5, "inches")
  7275. },
  7276. {
  7277. name: "Normal",
  7278. height: math.unit(8, "feet"),
  7279. default: true
  7280. },
  7281. {
  7282. name: "Macro",
  7283. height: math.unit(250, "feet")
  7284. },
  7285. {
  7286. name: "Megamacro",
  7287. height: math.unit(1, "AU")
  7288. },
  7289. ]
  7290. ))
  7291. characterMakers.push(() => makeCharacter(
  7292. { name: "Allatia" },
  7293. {
  7294. front: {
  7295. height: math.unit(5 + 5 / 12, "feet"),
  7296. weight: math.unit(140, "lb"),
  7297. name: "Front",
  7298. image: {
  7299. source: "./media/characters/allatia/front.svg",
  7300. extra: 1227 / 1180,
  7301. bottom: 0.027
  7302. }
  7303. },
  7304. },
  7305. [
  7306. {
  7307. name: "Normal",
  7308. height: math.unit(5 + 5 / 12, "feet")
  7309. },
  7310. {
  7311. name: "Macro",
  7312. height: math.unit(250, "feet"),
  7313. default: true
  7314. },
  7315. {
  7316. name: "Megamacro",
  7317. height: math.unit(8, "miles")
  7318. }
  7319. ]
  7320. ))
  7321. characterMakers.push(() => makeCharacter(
  7322. { name: "Tene" },
  7323. {
  7324. front: {
  7325. height: math.unit(6, "feet"),
  7326. weight: math.unit(120, "lb"),
  7327. name: "Front",
  7328. image: {
  7329. source: "./media/characters/tene/front.svg",
  7330. extra: 1728 / 1578,
  7331. bottom: 0.022
  7332. }
  7333. },
  7334. stomping: {
  7335. height: math.unit(2.025, "meters"),
  7336. weight: math.unit(120, "lb"),
  7337. name: "Stomping",
  7338. image: {
  7339. source: "./media/characters/tene/stomping.svg",
  7340. extra: 938 / 873,
  7341. bottom: 0.01
  7342. }
  7343. },
  7344. sitting: {
  7345. height: math.unit(1, "meter"),
  7346. weight: math.unit(120, "lb"),
  7347. name: "Sitting",
  7348. image: {
  7349. source: "./media/characters/tene/sitting.svg",
  7350. extra: 437 / 415,
  7351. bottom: 0.1
  7352. }
  7353. },
  7354. feral: {
  7355. height: math.unit(3.9, "feet"),
  7356. weight: math.unit(250, "lb"),
  7357. name: "Feral",
  7358. image: {
  7359. source: "./media/characters/tene/feral.svg",
  7360. extra: 717 / 458,
  7361. bottom: 0.179
  7362. }
  7363. },
  7364. },
  7365. [
  7366. {
  7367. name: "Normal",
  7368. height: math.unit(6, "feet")
  7369. },
  7370. {
  7371. name: "Macro",
  7372. height: math.unit(300, "feet"),
  7373. default: true
  7374. },
  7375. {
  7376. name: "Megamacro",
  7377. height: math.unit(5, "miles")
  7378. },
  7379. ]
  7380. ))
  7381. characterMakers.push(() => makeCharacter(
  7382. { name: "Evander" },
  7383. {
  7384. side: {
  7385. height: math.unit(6, "feet"),
  7386. name: "Side",
  7387. image: {
  7388. source: "./media/characters/evander/side.svg",
  7389. extra: 877 / 477
  7390. }
  7391. },
  7392. },
  7393. [
  7394. {
  7395. name: "Normal",
  7396. height: math.unit(0.83, "meters"),
  7397. default: true
  7398. },
  7399. ]
  7400. ))
  7401. characterMakers.push(() => makeCharacter(
  7402. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7403. {
  7404. front: {
  7405. height: math.unit(12, "feet"),
  7406. weight: math.unit(1000, "lb"),
  7407. name: "Front",
  7408. image: {
  7409. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7410. extra: 1762 / 1611
  7411. }
  7412. },
  7413. back: {
  7414. height: math.unit(12, "feet"),
  7415. weight: math.unit(1000, "lb"),
  7416. name: "Back",
  7417. image: {
  7418. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7419. extra: 1762 / 1611
  7420. }
  7421. },
  7422. },
  7423. [
  7424. {
  7425. name: "Normal",
  7426. height: math.unit(12, "feet"),
  7427. default: true
  7428. },
  7429. {
  7430. name: "Kaiju",
  7431. height: math.unit(150, "feet")
  7432. },
  7433. ]
  7434. ))
  7435. characterMakers.push(() => makeCharacter(
  7436. { name: "Zero Alurus" },
  7437. {
  7438. front: {
  7439. height: math.unit(6, "feet"),
  7440. weight: math.unit(150, "lb"),
  7441. name: "Front",
  7442. image: {
  7443. source: "./media/characters/zero-alurus/front.svg"
  7444. }
  7445. },
  7446. back: {
  7447. height: math.unit(6, "feet"),
  7448. weight: math.unit(150, "lb"),
  7449. name: "Back",
  7450. image: {
  7451. source: "./media/characters/zero-alurus/back.svg"
  7452. }
  7453. },
  7454. },
  7455. [
  7456. {
  7457. name: "Normal",
  7458. height: math.unit(5 + 10 / 12, "feet")
  7459. },
  7460. {
  7461. name: "Macro",
  7462. height: math.unit(60, "feet"),
  7463. default: true
  7464. },
  7465. {
  7466. name: "Macro+",
  7467. height: math.unit(450, "feet")
  7468. },
  7469. ]
  7470. ))
  7471. characterMakers.push(() => makeCharacter(
  7472. { name: "Mega Shi" },
  7473. {
  7474. front: {
  7475. height: math.unit(6, "feet"),
  7476. weight: math.unit(200, "lb"),
  7477. name: "Front",
  7478. image: {
  7479. source: "./media/characters/mega-shi/front.svg",
  7480. extra: 1279 / 1250,
  7481. bottom: 0.02
  7482. }
  7483. },
  7484. back: {
  7485. height: math.unit(6, "feet"),
  7486. weight: math.unit(200, "lb"),
  7487. name: "Back",
  7488. image: {
  7489. source: "./media/characters/mega-shi/back.svg",
  7490. extra: 1279 / 1250,
  7491. bottom: 0.02
  7492. }
  7493. },
  7494. },
  7495. [
  7496. {
  7497. name: "Micro",
  7498. height: math.unit(16 + 6 / 12, "feet")
  7499. },
  7500. {
  7501. name: "Third Dimension",
  7502. height: math.unit(40, "meters")
  7503. },
  7504. {
  7505. name: "Normal",
  7506. height: math.unit(660, "feet"),
  7507. default: true
  7508. },
  7509. {
  7510. name: "Megamacro",
  7511. height: math.unit(10, "miles")
  7512. },
  7513. {
  7514. name: "Planetary Launch",
  7515. height: math.unit(500, "miles")
  7516. },
  7517. {
  7518. name: "Interstellar",
  7519. height: math.unit(1e9, "miles")
  7520. },
  7521. {
  7522. name: "Leaving the Universe",
  7523. height: math.unit(1, "gigaparsec")
  7524. },
  7525. {
  7526. name: "Travelling Universes",
  7527. height: math.unit(30e15, "parsecs")
  7528. },
  7529. ]
  7530. ))
  7531. characterMakers.push(() => makeCharacter(
  7532. { name: "Odyssey" },
  7533. {
  7534. front: {
  7535. height: math.unit(6, "feet"),
  7536. weight: math.unit(150, "lb"),
  7537. name: "Front",
  7538. image: {
  7539. source: "./media/characters/odyssey/front.svg",
  7540. extra: 1782 / 1582,
  7541. bottom: 0.01
  7542. }
  7543. },
  7544. side: {
  7545. height: math.unit(5.7, "feet"),
  7546. weight: math.unit(140, "lb"),
  7547. name: "Side",
  7548. image: {
  7549. source: "./media/characters/odyssey/side.svg",
  7550. extra: 6462 / 5700
  7551. }
  7552. },
  7553. },
  7554. [
  7555. {
  7556. name: "Normal",
  7557. height: math.unit(5 + 4 / 12, "feet")
  7558. },
  7559. {
  7560. name: "Macro",
  7561. height: math.unit(1, "km")
  7562. },
  7563. {
  7564. name: "Megamacro",
  7565. height: math.unit(3000, "km")
  7566. },
  7567. {
  7568. name: "Gigamacro",
  7569. height: math.unit(1, "AU"),
  7570. default: true
  7571. },
  7572. {
  7573. name: "Omniversal",
  7574. height: math.unit(100e14, "lightyears")
  7575. },
  7576. ]
  7577. ))
  7578. characterMakers.push(() => makeCharacter(
  7579. { name: "Mekuto" },
  7580. {
  7581. front: {
  7582. height: math.unit(6, "feet"),
  7583. weight: math.unit(300, "lb"),
  7584. name: "Front",
  7585. image: {
  7586. source: "./media/characters/mekuto/front.svg",
  7587. extra: 921 / 832,
  7588. bottom: 0.03
  7589. }
  7590. },
  7591. hand: {
  7592. height: math.unit(6 / 10.24, "feet"),
  7593. name: "Hand",
  7594. image: {
  7595. source: "./media/characters/mekuto/hand.svg"
  7596. }
  7597. },
  7598. foot: {
  7599. height: math.unit(6 / 5.05, "feet"),
  7600. name: "Foot",
  7601. image: {
  7602. source: "./media/characters/mekuto/foot.svg"
  7603. }
  7604. },
  7605. },
  7606. [
  7607. {
  7608. name: "Minimicro",
  7609. height: math.unit(0.2, "inches")
  7610. },
  7611. {
  7612. name: "Micro",
  7613. height: math.unit(1.5, "inches")
  7614. },
  7615. {
  7616. name: "Normal",
  7617. height: math.unit(5 + 11 / 12, "feet"),
  7618. default: true
  7619. },
  7620. {
  7621. name: "Minimacro",
  7622. height: math.unit(17 + 9 / 12, "feet")
  7623. },
  7624. {
  7625. name: "Macro",
  7626. height: math.unit(177.5, "feet")
  7627. },
  7628. {
  7629. name: "Megamacro",
  7630. height: math.unit(152, "miles")
  7631. },
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Dafydd Tomos" },
  7636. {
  7637. front: {
  7638. height: math.unit(6.5, "inches"),
  7639. weight: math.unit(13, "oz"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/dafydd-tomos/front.svg",
  7643. extra: 2990 / 2603,
  7644. bottom: 0.03
  7645. }
  7646. },
  7647. },
  7648. [
  7649. {
  7650. name: "Micro",
  7651. height: math.unit(6.5, "inches"),
  7652. default: true
  7653. },
  7654. ]
  7655. ))
  7656. characterMakers.push(() => makeCharacter(
  7657. { name: "Splinter" },
  7658. {
  7659. front: {
  7660. height: math.unit(6, "feet"),
  7661. weight: math.unit(150, "lb"),
  7662. name: "Front",
  7663. image: {
  7664. source: "./media/characters/splinter/front.svg",
  7665. extra: 2990 / 2882,
  7666. bottom: 0.04
  7667. }
  7668. },
  7669. back: {
  7670. height: math.unit(6, "feet"),
  7671. weight: math.unit(150, "lb"),
  7672. name: "Back",
  7673. image: {
  7674. source: "./media/characters/splinter/back.svg",
  7675. extra: 2990 / 2882,
  7676. bottom: 0.04
  7677. }
  7678. },
  7679. },
  7680. [
  7681. {
  7682. name: "Normal",
  7683. height: math.unit(6, "feet")
  7684. },
  7685. {
  7686. name: "Macro",
  7687. height: math.unit(230, "meters"),
  7688. default: true
  7689. },
  7690. ]
  7691. ))
  7692. characterMakers.push(() => makeCharacter(
  7693. { name: "SnowGabumon" },
  7694. {
  7695. front: {
  7696. height: math.unit(4 + 10 / 12, "feet"),
  7697. weight: math.unit(480, "lb"),
  7698. name: "Front",
  7699. image: {
  7700. source: "./media/characters/snow-gabumon/front.svg",
  7701. extra: 1140 / 963,
  7702. bottom: 0.058
  7703. }
  7704. },
  7705. back: {
  7706. height: math.unit(4 + 10 / 12, "feet"),
  7707. weight: math.unit(480, "lb"),
  7708. name: "Back",
  7709. image: {
  7710. source: "./media/characters/snow-gabumon/back.svg",
  7711. extra: 1115 / 962,
  7712. bottom: 0.041
  7713. }
  7714. },
  7715. frontUndresed: {
  7716. height: math.unit(4 + 10 / 12, "feet"),
  7717. weight: math.unit(480, "lb"),
  7718. name: "Front (Undressed)",
  7719. image: {
  7720. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7721. extra: 1061 / 960,
  7722. bottom: 0.045
  7723. }
  7724. },
  7725. },
  7726. [
  7727. {
  7728. name: "Micro",
  7729. height: math.unit(1, "inch")
  7730. },
  7731. {
  7732. name: "Normal",
  7733. height: math.unit(4 + 10 / 12, "feet"),
  7734. default: true
  7735. },
  7736. {
  7737. name: "Macro",
  7738. height: math.unit(200, "feet")
  7739. },
  7740. {
  7741. name: "Megamacro",
  7742. height: math.unit(120, "miles")
  7743. },
  7744. {
  7745. name: "Gigamacro",
  7746. height: math.unit(9800, "miles")
  7747. },
  7748. ]
  7749. ))
  7750. characterMakers.push(() => makeCharacter(
  7751. { name: "Moody" },
  7752. {
  7753. front: {
  7754. height: math.unit(1.7, "meters"),
  7755. weight: math.unit(140, "lb"),
  7756. name: "Front",
  7757. image: {
  7758. source: "./media/characters/moody/front.svg",
  7759. extra: 3226 / 3007,
  7760. bottom: 0.087
  7761. }
  7762. },
  7763. },
  7764. [
  7765. {
  7766. name: "Micro",
  7767. height: math.unit(1, "mm")
  7768. },
  7769. {
  7770. name: "Normal",
  7771. height: math.unit(1.7, "meters"),
  7772. default: true
  7773. },
  7774. {
  7775. name: "Macro",
  7776. height: math.unit(80, "meters")
  7777. },
  7778. {
  7779. name: "Macro+",
  7780. height: math.unit(500, "meters")
  7781. },
  7782. ]
  7783. ))
  7784. characterMakers.push(() => makeCharacter(
  7785. { name: "Zyas" },
  7786. {
  7787. front: {
  7788. height: math.unit(6, "feet"),
  7789. weight: math.unit(150, "lb"),
  7790. name: "Front",
  7791. image: {
  7792. source: "./media/characters/zyas/front.svg",
  7793. extra: 1180 / 1120,
  7794. bottom: 0.045
  7795. }
  7796. },
  7797. },
  7798. [
  7799. {
  7800. name: "Normal",
  7801. height: math.unit(10, "feet"),
  7802. default: true
  7803. },
  7804. {
  7805. name: "Macro",
  7806. height: math.unit(500, "feet")
  7807. },
  7808. {
  7809. name: "Megamacro",
  7810. height: math.unit(5, "miles")
  7811. },
  7812. {
  7813. name: "Teramacro",
  7814. height: math.unit(150000, "miles")
  7815. },
  7816. ]
  7817. ))
  7818. characterMakers.push(() => makeCharacter(
  7819. { name: "Cuon" },
  7820. {
  7821. front: {
  7822. height: math.unit(6, "feet"),
  7823. weight: math.unit(150, "lb"),
  7824. name: "Front",
  7825. image: {
  7826. source: "./media/characters/cuon/front.svg",
  7827. extra: 1390 / 1320,
  7828. bottom: 0.008
  7829. }
  7830. },
  7831. },
  7832. [
  7833. {
  7834. name: "Micro",
  7835. height: math.unit(3, "inches")
  7836. },
  7837. {
  7838. name: "Normal",
  7839. height: math.unit(18 + 9 / 12, "feet"),
  7840. default: true
  7841. },
  7842. {
  7843. name: "Macro",
  7844. height: math.unit(360, "feet")
  7845. },
  7846. {
  7847. name: "Megamacro",
  7848. height: math.unit(360, "miles")
  7849. },
  7850. ]
  7851. ))
  7852. characterMakers.push(() => makeCharacter(
  7853. { name: "Nyanuxk" },
  7854. {
  7855. front: {
  7856. height: math.unit(2.4, "meters"),
  7857. weight: math.unit(70, "kg"),
  7858. name: "Front",
  7859. image: {
  7860. source: "./media/characters/nyanuxk/front.svg",
  7861. extra: 1172 / 1084,
  7862. bottom: 0.065
  7863. }
  7864. },
  7865. side: {
  7866. height: math.unit(2.4, "meters"),
  7867. weight: math.unit(70, "kg"),
  7868. name: "Side",
  7869. image: {
  7870. source: "./media/characters/nyanuxk/side.svg",
  7871. extra: 1190 / 1132,
  7872. bottom: 0.007
  7873. }
  7874. },
  7875. back: {
  7876. height: math.unit(2.4, "meters"),
  7877. weight: math.unit(70, "kg"),
  7878. name: "Back",
  7879. image: {
  7880. source: "./media/characters/nyanuxk/back.svg",
  7881. extra: 1200 / 1141,
  7882. bottom: 0.015
  7883. }
  7884. },
  7885. foot: {
  7886. height: math.unit(0.52, "meters"),
  7887. name: "Foot",
  7888. image: {
  7889. source: "./media/characters/nyanuxk/foot.svg"
  7890. }
  7891. },
  7892. },
  7893. [
  7894. {
  7895. name: "Micro",
  7896. height: math.unit(2, "cm")
  7897. },
  7898. {
  7899. name: "Normal",
  7900. height: math.unit(2.4, "meters"),
  7901. default: true
  7902. },
  7903. {
  7904. name: "Smaller Macro",
  7905. height: math.unit(120, "meters")
  7906. },
  7907. {
  7908. name: "Bigger Macro",
  7909. height: math.unit(1.2, "km")
  7910. },
  7911. {
  7912. name: "Megamacro",
  7913. height: math.unit(15, "kilometers")
  7914. },
  7915. {
  7916. name: "Gigamacro",
  7917. height: math.unit(2000, "km")
  7918. },
  7919. {
  7920. name: "Teramacro",
  7921. height: math.unit(500000, "km")
  7922. },
  7923. ]
  7924. ))
  7925. characterMakers.push(() => makeCharacter(
  7926. { name: "Ailbhe" },
  7927. {
  7928. side: {
  7929. height: math.unit(6, "feet"),
  7930. name: "Side",
  7931. image: {
  7932. source: "./media/characters/ailbhe/side.svg",
  7933. extra: 757 / 464,
  7934. bottom: 0.041
  7935. }
  7936. },
  7937. },
  7938. [
  7939. {
  7940. name: "Normal",
  7941. height: math.unit(1.07, "meters"),
  7942. default: true
  7943. },
  7944. ]
  7945. ))
  7946. characterMakers.push(() => makeCharacter(
  7947. { name: "Zevulfius" },
  7948. {
  7949. front: {
  7950. height: math.unit(6, "feet"),
  7951. weight: math.unit(120, "kg"),
  7952. name: "Front",
  7953. image: {
  7954. source: "./media/characters/zevulfius/front.svg",
  7955. extra: 965 / 903
  7956. }
  7957. },
  7958. side: {
  7959. height: math.unit(6, "feet"),
  7960. weight: math.unit(120, "kg"),
  7961. name: "Side",
  7962. image: {
  7963. source: "./media/characters/zevulfius/side.svg",
  7964. extra: 939 / 900
  7965. }
  7966. },
  7967. back: {
  7968. height: math.unit(6, "feet"),
  7969. weight: math.unit(120, "kg"),
  7970. name: "Back",
  7971. image: {
  7972. source: "./media/characters/zevulfius/back.svg",
  7973. extra: 918 / 854,
  7974. bottom: 0.005
  7975. }
  7976. },
  7977. foot: {
  7978. height: math.unit(6 / 3.72, "feet"),
  7979. name: "Foot",
  7980. image: {
  7981. source: "./media/characters/zevulfius/foot.svg"
  7982. }
  7983. },
  7984. },
  7985. [
  7986. {
  7987. name: "Macro",
  7988. height: math.unit(750, "meters")
  7989. },
  7990. {
  7991. name: "Megamacro",
  7992. height: math.unit(20, "km"),
  7993. default: true
  7994. },
  7995. {
  7996. name: "Gigamacro",
  7997. height: math.unit(2000, "km")
  7998. },
  7999. {
  8000. name: "Teramacro",
  8001. height: math.unit(250000, "km")
  8002. },
  8003. ]
  8004. ))
  8005. characterMakers.push(() => makeCharacter(
  8006. { name: "Rikes" },
  8007. {
  8008. front: {
  8009. height: math.unit(100, "feet"),
  8010. weight: math.unit(350, "kg"),
  8011. name: "Front",
  8012. image: {
  8013. source: "./media/characters/rikes/front.svg",
  8014. extra: 1565 / 1483,
  8015. bottom: 0.017
  8016. }
  8017. },
  8018. },
  8019. [
  8020. {
  8021. name: "Macro",
  8022. height: math.unit(100, "feet"),
  8023. default: true
  8024. },
  8025. ]
  8026. ))
  8027. characterMakers.push(() => makeCharacter(
  8028. { name: "Adam Silver-Mane" },
  8029. {
  8030. anthro: {
  8031. height: math.unit(8, "feet"),
  8032. weight: math.unit(120, "kg"),
  8033. name: "Anthro",
  8034. image: {
  8035. source: "./media/characters/adam-silver-mane/anthro.svg",
  8036. extra: 5743 / 5339,
  8037. bottom: 0.07
  8038. }
  8039. },
  8040. taur: {
  8041. height: math.unit(16, "feet"),
  8042. weight: math.unit(1500, "kg"),
  8043. name: "Taur",
  8044. image: {
  8045. source: "./media/characters/adam-silver-mane/taur.svg",
  8046. extra: 1713 / 1571,
  8047. bottom: 0.01
  8048. }
  8049. },
  8050. },
  8051. [
  8052. {
  8053. name: "Normal",
  8054. height: math.unit(8, "feet")
  8055. },
  8056. {
  8057. name: "Minimacro",
  8058. height: math.unit(80, "feet")
  8059. },
  8060. {
  8061. name: "Macro",
  8062. height: math.unit(800, "feet"),
  8063. default: true
  8064. },
  8065. {
  8066. name: "Megamacro",
  8067. height: math.unit(8000, "feet")
  8068. },
  8069. {
  8070. name: "Gigamacro",
  8071. height: math.unit(800, "miles")
  8072. },
  8073. {
  8074. name: "Teramacro",
  8075. height: math.unit(80000, "miles")
  8076. },
  8077. {
  8078. name: "Celestial",
  8079. height: math.unit(8e6, "miles")
  8080. },
  8081. {
  8082. name: "Star Dragon",
  8083. height: math.unit(800000, "parsecs")
  8084. },
  8085. {
  8086. name: "Godly",
  8087. height: math.unit(800, "teraparsecs")
  8088. },
  8089. ]
  8090. ))
  8091. characterMakers.push(() => makeCharacter(
  8092. { name: "Ky'owin" },
  8093. {
  8094. front: {
  8095. height: math.unit(6, "feet"),
  8096. weight: math.unit(150, "lb"),
  8097. name: "Front",
  8098. image: {
  8099. source: "./media/characters/ky'owin/front.svg",
  8100. extra: 3888 / 3068,
  8101. bottom: 0.015
  8102. }
  8103. },
  8104. },
  8105. [
  8106. {
  8107. name: "Normal",
  8108. height: math.unit(6 + 8 / 12, "feet")
  8109. },
  8110. {
  8111. name: "Large",
  8112. height: math.unit(68, "feet")
  8113. },
  8114. {
  8115. name: "Macro",
  8116. height: math.unit(132, "feet")
  8117. },
  8118. {
  8119. name: "Macro+",
  8120. height: math.unit(340, "feet")
  8121. },
  8122. {
  8123. name: "Macro++",
  8124. height: math.unit(680, "feet"),
  8125. default: true
  8126. },
  8127. {
  8128. name: "Megamacro",
  8129. height: math.unit(1, "mile")
  8130. },
  8131. {
  8132. name: "Megamacro+",
  8133. height: math.unit(10, "miles")
  8134. },
  8135. ]
  8136. ))
  8137. characterMakers.push(() => makeCharacter(
  8138. { name: "Mal" },
  8139. {
  8140. front: {
  8141. height: math.unit(4, "feet"),
  8142. weight: math.unit(50, "lb"),
  8143. name: "Front",
  8144. image: {
  8145. source: "./media/characters/mal/front.svg",
  8146. extra: 785 / 724,
  8147. bottom: 0.07
  8148. }
  8149. },
  8150. },
  8151. [
  8152. {
  8153. name: "Micro",
  8154. height: math.unit(4, "inches")
  8155. },
  8156. {
  8157. name: "Normal",
  8158. height: math.unit(4, "feet"),
  8159. default: true
  8160. },
  8161. {
  8162. name: "Macro",
  8163. height: math.unit(200, "feet")
  8164. },
  8165. ]
  8166. ))
  8167. characterMakers.push(() => makeCharacter(
  8168. { name: "Jordan Deware" },
  8169. {
  8170. front: {
  8171. height: math.unit(6, "feet"),
  8172. weight: math.unit(150, "lb"),
  8173. name: "Front",
  8174. image: {
  8175. source: "./media/characters/jordan-deware/front.svg",
  8176. extra: 1191 / 1012
  8177. }
  8178. },
  8179. },
  8180. [
  8181. {
  8182. name: "Nano",
  8183. height: math.unit(0.01, "mm")
  8184. },
  8185. {
  8186. name: "Minimicro",
  8187. height: math.unit(1, "mm")
  8188. },
  8189. {
  8190. name: "Micro",
  8191. height: math.unit(0.5, "inches")
  8192. },
  8193. {
  8194. name: "Normal",
  8195. height: math.unit(4, "feet"),
  8196. default: true
  8197. },
  8198. {
  8199. name: "Minimacro",
  8200. height: math.unit(40, "meters")
  8201. },
  8202. {
  8203. name: "Small Macro",
  8204. height: math.unit(400, "meters")
  8205. },
  8206. {
  8207. name: "Macro",
  8208. height: math.unit(4, "miles")
  8209. },
  8210. {
  8211. name: "Megamacro",
  8212. height: math.unit(40, "miles")
  8213. },
  8214. {
  8215. name: "Megamacro+",
  8216. height: math.unit(400, "miles")
  8217. },
  8218. {
  8219. name: "Gigamacro",
  8220. height: math.unit(400000, "miles")
  8221. },
  8222. ]
  8223. ))
  8224. characterMakers.push(() => makeCharacter(
  8225. { name: "Kimiko" },
  8226. {
  8227. side: {
  8228. height: math.unit(6, "feet"),
  8229. weight: math.unit(150, "lb"),
  8230. name: "Side",
  8231. image: {
  8232. source: "./media/characters/kimiko/side.svg",
  8233. extra: 600 / 358
  8234. }
  8235. },
  8236. },
  8237. [
  8238. {
  8239. name: "Normal",
  8240. height: math.unit(15, "feet"),
  8241. default: true
  8242. },
  8243. {
  8244. name: "Macro",
  8245. height: math.unit(220, "feet")
  8246. },
  8247. {
  8248. name: "Macro+",
  8249. height: math.unit(1450, "feet")
  8250. },
  8251. {
  8252. name: "Megamacro",
  8253. height: math.unit(11500, "feet")
  8254. },
  8255. {
  8256. name: "Gigamacro",
  8257. height: math.unit(9500, "miles")
  8258. },
  8259. {
  8260. name: "Teramacro",
  8261. height: math.unit(2208005005, "miles")
  8262. },
  8263. {
  8264. name: "Examacro",
  8265. height: math.unit(2750, "parsecs")
  8266. },
  8267. {
  8268. name: "Zettamacro",
  8269. height: math.unit(101500, "parsecs")
  8270. },
  8271. ]
  8272. ))
  8273. characterMakers.push(() => makeCharacter(
  8274. { name: "Andrew Sleepy" },
  8275. {
  8276. front: {
  8277. height: math.unit(6, "feet"),
  8278. weight: math.unit(70, "kg"),
  8279. name: "Front",
  8280. image: {
  8281. source: "./media/characters/andrew-sleepy/front.svg"
  8282. }
  8283. },
  8284. side: {
  8285. height: math.unit(6, "feet"),
  8286. weight: math.unit(70, "kg"),
  8287. name: "Side",
  8288. image: {
  8289. source: "./media/characters/andrew-sleepy/side.svg"
  8290. }
  8291. },
  8292. },
  8293. [
  8294. {
  8295. name: "Micro",
  8296. height: math.unit(1, "mm"),
  8297. default: true
  8298. },
  8299. ]
  8300. ))
  8301. characterMakers.push(() => makeCharacter(
  8302. { name: "Judio" },
  8303. {
  8304. front: {
  8305. height: math.unit(6, "feet"),
  8306. weight: math.unit(150, "lb"),
  8307. name: "Front",
  8308. image: {
  8309. source: "./media/characters/judio/front.svg",
  8310. extra: 1258 / 1110
  8311. }
  8312. },
  8313. },
  8314. [
  8315. {
  8316. name: "Normal",
  8317. height: math.unit(5 + 6 / 12, "feet")
  8318. },
  8319. {
  8320. name: "Macro",
  8321. height: math.unit(1000, "feet"),
  8322. default: true
  8323. },
  8324. {
  8325. name: "Megamacro",
  8326. height: math.unit(10, "miles")
  8327. },
  8328. ]
  8329. ))
  8330. characterMakers.push(() => makeCharacter(
  8331. { name: "Nomaxice" },
  8332. {
  8333. front: {
  8334. height: math.unit(6, "feet"),
  8335. weight: math.unit(68, "kg"),
  8336. name: "Front",
  8337. image: {
  8338. source: "./media/characters/nomaxice/front.svg",
  8339. extra: 1498 / 1073,
  8340. bottom: 0.075
  8341. }
  8342. },
  8343. foot: {
  8344. height: math.unit(1.1, "feet"),
  8345. name: "Foot",
  8346. image: {
  8347. source: "./media/characters/nomaxice/foot.svg"
  8348. }
  8349. },
  8350. },
  8351. [
  8352. {
  8353. name: "Micro",
  8354. height: math.unit(8, "cm")
  8355. },
  8356. {
  8357. name: "Norm",
  8358. height: math.unit(1.82, "m")
  8359. },
  8360. {
  8361. name: "Norm+",
  8362. height: math.unit(8.8, "feet")
  8363. },
  8364. {
  8365. name: "Big",
  8366. height: math.unit(8, "meters"),
  8367. default: true
  8368. },
  8369. {
  8370. name: "Macro",
  8371. height: math.unit(18, "meters")
  8372. },
  8373. {
  8374. name: "Macro+",
  8375. height: math.unit(88, "meters")
  8376. },
  8377. ]
  8378. ))
  8379. characterMakers.push(() => makeCharacter(
  8380. { name: "Dydros" },
  8381. {
  8382. front: {
  8383. height: math.unit(12, "feet"),
  8384. weight: math.unit(1.5, "tons"),
  8385. name: "Front",
  8386. image: {
  8387. source: "./media/characters/dydros/front.svg",
  8388. extra: 863 / 800,
  8389. bottom: 0.015
  8390. }
  8391. },
  8392. back: {
  8393. height: math.unit(12, "feet"),
  8394. weight: math.unit(1.5, "tons"),
  8395. name: "Back",
  8396. image: {
  8397. source: "./media/characters/dydros/back.svg",
  8398. extra: 900 / 843,
  8399. bottom: 0.005
  8400. }
  8401. },
  8402. },
  8403. [
  8404. {
  8405. name: "Normal",
  8406. height: math.unit(12, "feet"),
  8407. default: true
  8408. },
  8409. ]
  8410. ))
  8411. characterMakers.push(() => makeCharacter(
  8412. { name: "Riggi" },
  8413. {
  8414. front: {
  8415. height: math.unit(6, "feet"),
  8416. weight: math.unit(100, "kg"),
  8417. name: "Front",
  8418. image: {
  8419. source: "./media/characters/riggi/front.svg",
  8420. extra: 5787 / 5303
  8421. }
  8422. },
  8423. hyper: {
  8424. height: math.unit(6 * 5 / 3, "feet"),
  8425. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8426. name: "Hyper",
  8427. image: {
  8428. source: "./media/characters/riggi/hyper.svg",
  8429. extra: 3595 / 3485
  8430. }
  8431. },
  8432. },
  8433. [
  8434. {
  8435. name: "Small Macro",
  8436. height: math.unit(50, "feet")
  8437. },
  8438. {
  8439. name: "Default",
  8440. height: math.unit(200, "feet"),
  8441. default: true
  8442. },
  8443. {
  8444. name: "Loom",
  8445. height: math.unit(10000, "feet")
  8446. },
  8447. {
  8448. name: "Cruising Altitude",
  8449. height: math.unit(30000, "feet")
  8450. },
  8451. {
  8452. name: "Megamacro",
  8453. height: math.unit(100, "miles")
  8454. },
  8455. {
  8456. name: "Continent Sized",
  8457. height: math.unit(2800, "miles")
  8458. },
  8459. {
  8460. name: "Earth Sized",
  8461. height: math.unit(8000, "miles")
  8462. },
  8463. ]
  8464. ))
  8465. characterMakers.push(() => makeCharacter(
  8466. { name: "Alexi" },
  8467. {
  8468. front: {
  8469. height: math.unit(6, "feet"),
  8470. weight: math.unit(250, "lb"),
  8471. name: "Front",
  8472. image: {
  8473. source: "./media/characters/alexi/front.svg",
  8474. extra: 3483 / 3291,
  8475. bottom: 0.04
  8476. }
  8477. },
  8478. back: {
  8479. height: math.unit(6, "feet"),
  8480. weight: math.unit(250, "lb"),
  8481. name: "Back",
  8482. image: {
  8483. source: "./media/characters/alexi/back.svg",
  8484. extra: 3533 / 3356,
  8485. bottom: 0.021
  8486. }
  8487. },
  8488. frontTransforming: {
  8489. height: math.unit(8.58, "feet"),
  8490. weight: math.unit(1300, "lb"),
  8491. name: "Transforming",
  8492. image: {
  8493. source: "./media/characters/alexi/front-transforming.svg",
  8494. extra: 437 / 409,
  8495. bottom: 19/458.66
  8496. }
  8497. },
  8498. frontTransformed: {
  8499. height: math.unit(12.5, "feet"),
  8500. weight: math.unit(4000, "lb"),
  8501. name: "Transformed",
  8502. image: {
  8503. source: "./media/characters/alexi/front-transformed.svg",
  8504. extra: 639 / 614,
  8505. bottom: 30.55/671
  8506. }
  8507. },
  8508. },
  8509. [
  8510. {
  8511. name: "Normal",
  8512. height: math.unit(3, "meters"),
  8513. default: true
  8514. },
  8515. {
  8516. name: "Minimacro",
  8517. height: math.unit(30, "meters")
  8518. },
  8519. {
  8520. name: "Macro",
  8521. height: math.unit(500, "meters")
  8522. },
  8523. {
  8524. name: "Megamacro",
  8525. height: math.unit(9000, "km")
  8526. },
  8527. {
  8528. name: "Teramacro",
  8529. height: math.unit(384000, "km")
  8530. },
  8531. ]
  8532. ))
  8533. characterMakers.push(() => makeCharacter(
  8534. { name: "Kayroo" },
  8535. {
  8536. front: {
  8537. height: math.unit(6, "feet"),
  8538. weight: math.unit(150, "lb"),
  8539. name: "Front",
  8540. image: {
  8541. source: "./media/characters/kayroo/front.svg",
  8542. extra: 1153 / 1038,
  8543. bottom: 0.06
  8544. }
  8545. },
  8546. foot: {
  8547. height: math.unit(6, "feet"),
  8548. weight: math.unit(150, "lb"),
  8549. name: "Foot",
  8550. image: {
  8551. source: "./media/characters/kayroo/foot.svg"
  8552. }
  8553. },
  8554. },
  8555. [
  8556. {
  8557. name: "Normal",
  8558. height: math.unit(8, "feet"),
  8559. default: true
  8560. },
  8561. {
  8562. name: "Minimacro",
  8563. height: math.unit(250, "feet")
  8564. },
  8565. {
  8566. name: "Macro",
  8567. height: math.unit(2800, "feet")
  8568. },
  8569. {
  8570. name: "Megamacro",
  8571. height: math.unit(5200, "feet")
  8572. },
  8573. {
  8574. name: "Gigamacro",
  8575. height: math.unit(27000, "feet")
  8576. },
  8577. {
  8578. name: "Omega",
  8579. height: math.unit(45000, "feet")
  8580. },
  8581. ]
  8582. ))
  8583. characterMakers.push(() => makeCharacter(
  8584. { name: "Rhys" },
  8585. {
  8586. front: {
  8587. height: math.unit(18, "feet"),
  8588. weight: math.unit(5800, "lb"),
  8589. name: "Front",
  8590. image: {
  8591. source: "./media/characters/rhys/front.svg",
  8592. extra: 3386 / 3090,
  8593. bottom: 0.07
  8594. }
  8595. },
  8596. },
  8597. [
  8598. {
  8599. name: "Normal",
  8600. height: math.unit(18, "feet"),
  8601. default: true
  8602. },
  8603. {
  8604. name: "Working Size",
  8605. height: math.unit(200, "feet")
  8606. },
  8607. {
  8608. name: "Demolition Size",
  8609. height: math.unit(2000, "feet")
  8610. },
  8611. {
  8612. name: "Maximum Licensed Size",
  8613. height: math.unit(5, "miles")
  8614. },
  8615. {
  8616. name: "Maximum Observed Size",
  8617. height: math.unit(10, "yottameters")
  8618. },
  8619. ]
  8620. ))
  8621. characterMakers.push(() => makeCharacter(
  8622. { name: "Toto" },
  8623. {
  8624. front: {
  8625. height: math.unit(6, "feet"),
  8626. weight: math.unit(250, "lb"),
  8627. name: "Front",
  8628. image: {
  8629. source: "./media/characters/toto/front.svg",
  8630. extra: 527 / 479,
  8631. bottom: 0.05
  8632. }
  8633. },
  8634. },
  8635. [
  8636. {
  8637. name: "Micro",
  8638. height: math.unit(3, "feet")
  8639. },
  8640. {
  8641. name: "Normal",
  8642. height: math.unit(10, "feet")
  8643. },
  8644. {
  8645. name: "Macro",
  8646. height: math.unit(150, "feet"),
  8647. default: true
  8648. },
  8649. {
  8650. name: "Megamacro",
  8651. height: math.unit(1200, "feet")
  8652. },
  8653. ]
  8654. ))
  8655. characterMakers.push(() => makeCharacter(
  8656. { name: "King" },
  8657. {
  8658. back: {
  8659. height: math.unit(6, "feet"),
  8660. weight: math.unit(150, "lb"),
  8661. name: "Back",
  8662. image: {
  8663. source: "./media/characters/king/back.svg"
  8664. }
  8665. },
  8666. },
  8667. [
  8668. {
  8669. name: "Micro",
  8670. height: math.unit(2, "inches")
  8671. },
  8672. {
  8673. name: "Normal",
  8674. height: math.unit(8, "feet")
  8675. },
  8676. {
  8677. name: "Macro",
  8678. height: math.unit(200, "feet"),
  8679. default: true
  8680. },
  8681. {
  8682. name: "Megamacro",
  8683. height: math.unit(50, "miles")
  8684. },
  8685. ]
  8686. ))
  8687. characterMakers.push(() => makeCharacter(
  8688. { name: "Cordite" },
  8689. {
  8690. anthro: {
  8691. height: math.unit(6 + 5 / 12, "feet"),
  8692. weight: math.unit(280, "lb"),
  8693. name: "Anthro",
  8694. image: {
  8695. source: "./media/characters/cordite/anthro.svg",
  8696. extra: 1986 / 1905,
  8697. bottom: 0.025
  8698. }
  8699. },
  8700. feral: {
  8701. height: math.unit(2, "feet"),
  8702. weight: math.unit(90, "lb"),
  8703. name: "Feral",
  8704. image: {
  8705. source: "./media/characters/cordite/feral.svg",
  8706. extra: 1260 / 755,
  8707. bottom: 0.05
  8708. }
  8709. },
  8710. },
  8711. [
  8712. {
  8713. name: "Normal",
  8714. height: math.unit(6 + 5 / 12, "feet"),
  8715. default: true
  8716. },
  8717. ]
  8718. ))
  8719. characterMakers.push(() => makeCharacter(
  8720. { name: "Pianostrong" },
  8721. {
  8722. front: {
  8723. height: math.unit(6, "feet"),
  8724. weight: math.unit(150, "lb"),
  8725. name: "Front",
  8726. image: {
  8727. source: "./media/characters/pianostrong/front.svg",
  8728. extra: 6577 / 6254,
  8729. bottom: 0.02
  8730. }
  8731. },
  8732. side: {
  8733. height: math.unit(6, "feet"),
  8734. weight: math.unit(150, "lb"),
  8735. name: "Side",
  8736. image: {
  8737. source: "./media/characters/pianostrong/side.svg",
  8738. extra: 6106 / 5730
  8739. }
  8740. },
  8741. back: {
  8742. height: math.unit(6, "feet"),
  8743. weight: math.unit(150, "lb"),
  8744. name: "Back",
  8745. image: {
  8746. source: "./media/characters/pianostrong/back.svg",
  8747. extra: 6085 / 5733,
  8748. bottom: 0.01
  8749. }
  8750. },
  8751. },
  8752. [
  8753. {
  8754. name: "Macro",
  8755. height: math.unit(100, "feet")
  8756. },
  8757. {
  8758. name: "Macro+",
  8759. height: math.unit(300, "feet"),
  8760. default: true
  8761. },
  8762. {
  8763. name: "Macro++",
  8764. height: math.unit(1000, "feet")
  8765. },
  8766. ]
  8767. ))
  8768. characterMakers.push(() => makeCharacter(
  8769. { name: "Kona" },
  8770. {
  8771. front: {
  8772. height: math.unit(6, "feet"),
  8773. weight: math.unit(150, "lb"),
  8774. name: "Front",
  8775. image: {
  8776. source: "./media/characters/kona/front.svg",
  8777. extra: 2960 / 2629,
  8778. bottom: 0.005
  8779. }
  8780. },
  8781. },
  8782. [
  8783. {
  8784. name: "Normal",
  8785. height: math.unit(11 + 8 / 12, "feet")
  8786. },
  8787. {
  8788. name: "Macro",
  8789. height: math.unit(850, "feet"),
  8790. default: true
  8791. },
  8792. {
  8793. name: "Macro+",
  8794. height: math.unit(1.5, "km"),
  8795. default: true
  8796. },
  8797. {
  8798. name: "Megamacro",
  8799. height: math.unit(80, "miles")
  8800. },
  8801. {
  8802. name: "Gigamacro",
  8803. height: math.unit(3500, "miles")
  8804. },
  8805. ]
  8806. ))
  8807. characterMakers.push(() => makeCharacter(
  8808. { name: "Levi" },
  8809. {
  8810. side: {
  8811. height: math.unit(1.9, "meters"),
  8812. weight: math.unit(326, "kg"),
  8813. name: "Side",
  8814. image: {
  8815. source: "./media/characters/levi/side.svg",
  8816. extra: 1704 / 1334,
  8817. bottom: 0.02
  8818. }
  8819. },
  8820. },
  8821. [
  8822. {
  8823. name: "Normal",
  8824. height: math.unit(1.9, "meters"),
  8825. default: true
  8826. },
  8827. {
  8828. name: "Macro",
  8829. height: math.unit(20, "meters")
  8830. },
  8831. {
  8832. name: "Macro+",
  8833. height: math.unit(200, "meters")
  8834. },
  8835. {
  8836. name: "Megamacro",
  8837. height: math.unit(2, "km")
  8838. },
  8839. {
  8840. name: "Megamacro+",
  8841. height: math.unit(20, "km")
  8842. },
  8843. {
  8844. name: "Gigamacro",
  8845. height: math.unit(2500, "km")
  8846. },
  8847. {
  8848. name: "Gigamacro+",
  8849. height: math.unit(120000, "km")
  8850. },
  8851. {
  8852. name: "Teramacro",
  8853. height: math.unit(7.77e6, "km")
  8854. },
  8855. ]
  8856. ))
  8857. characterMakers.push(() => makeCharacter(
  8858. { name: "BMC" },
  8859. {
  8860. front: {
  8861. height: math.unit(6 + 4 / 12, "feet"),
  8862. weight: math.unit(188, "lb"),
  8863. name: "Front",
  8864. image: {
  8865. source: "./media/characters/bmc/front.svg",
  8866. extra: 1067 / 1022,
  8867. bottom: 0.047
  8868. }
  8869. },
  8870. },
  8871. [
  8872. {
  8873. name: "Human-sized",
  8874. height: math.unit(6 + 4 / 12, "feet")
  8875. },
  8876. {
  8877. name: "Small",
  8878. height: math.unit(250, "feet")
  8879. },
  8880. {
  8881. name: "Normal",
  8882. height: math.unit(1250, "feet"),
  8883. default: true
  8884. },
  8885. {
  8886. name: "Good Day",
  8887. height: math.unit(88, "miles")
  8888. },
  8889. {
  8890. name: "Largest Measured Size",
  8891. height: math.unit(11.2e6, "lightyears")
  8892. },
  8893. ]
  8894. ))
  8895. characterMakers.push(() => makeCharacter(
  8896. { name: "Sven the Kaiju" },
  8897. {
  8898. front: {
  8899. height: math.unit(20, "feet"),
  8900. weight: math.unit(2016, "kg"),
  8901. name: "Front",
  8902. image: {
  8903. source: "./media/characters/sven-the-kaiju/front.svg",
  8904. extra: 1479 / 1449,
  8905. bottom: 0.05
  8906. }
  8907. },
  8908. },
  8909. [
  8910. {
  8911. name: "Fairy",
  8912. height: math.unit(6, "inches")
  8913. },
  8914. {
  8915. name: "Normal",
  8916. height: math.unit(20, "feet"),
  8917. default: true
  8918. },
  8919. {
  8920. name: "Rampage",
  8921. height: math.unit(200, "feet")
  8922. },
  8923. {
  8924. name: "Archfey Forest Guardian",
  8925. height: math.unit(1, "mile")
  8926. },
  8927. ]
  8928. ))
  8929. characterMakers.push(() => makeCharacter(
  8930. { name: "Marik" },
  8931. {
  8932. front: {
  8933. height: math.unit(4, "meters"),
  8934. weight: math.unit(2, "tons"),
  8935. name: "Front",
  8936. image: {
  8937. source: "./media/characters/marik/front.svg",
  8938. extra: 1057 / 1003,
  8939. bottom: 0.08
  8940. }
  8941. },
  8942. },
  8943. [
  8944. {
  8945. name: "Normal",
  8946. height: math.unit(4, "meters"),
  8947. default: true
  8948. },
  8949. {
  8950. name: "Macro",
  8951. height: math.unit(20, "meters")
  8952. },
  8953. {
  8954. name: "Megamacro",
  8955. height: math.unit(50, "km")
  8956. },
  8957. {
  8958. name: "Gigamacro",
  8959. height: math.unit(100, "km")
  8960. },
  8961. {
  8962. name: "Alpha Macro",
  8963. height: math.unit(7.88e7, "yottameters")
  8964. },
  8965. ]
  8966. ))
  8967. characterMakers.push(() => makeCharacter(
  8968. { name: "Mel" },
  8969. {
  8970. front: {
  8971. height: math.unit(6, "feet"),
  8972. weight: math.unit(110, "lb"),
  8973. name: "Front",
  8974. image: {
  8975. source: "./media/characters/mel/front.svg",
  8976. extra: 736 / 617,
  8977. bottom: 0.017
  8978. }
  8979. },
  8980. },
  8981. [
  8982. {
  8983. name: "Pico",
  8984. height: math.unit(3, "pm")
  8985. },
  8986. {
  8987. name: "Nano",
  8988. height: math.unit(3, "nm")
  8989. },
  8990. {
  8991. name: "Micro",
  8992. height: math.unit(0.3, "mm"),
  8993. default: true
  8994. },
  8995. {
  8996. name: "Micro+",
  8997. height: math.unit(3, "mm")
  8998. },
  8999. {
  9000. name: "Normal",
  9001. height: math.unit(5 + 10.5 / 12, "feet")
  9002. },
  9003. ]
  9004. ))
  9005. characterMakers.push(() => makeCharacter(
  9006. { name: "Lykonous" },
  9007. {
  9008. kaiju: {
  9009. height: math.unit(1.75, "meters"),
  9010. weight: math.unit(55, "kg"),
  9011. name: "Kaiju",
  9012. image: {
  9013. source: "./media/characters/lykonous/kaiju.svg",
  9014. extra: 1055 / 946,
  9015. bottom: 0.135
  9016. }
  9017. },
  9018. },
  9019. [
  9020. {
  9021. name: "Normal",
  9022. height: math.unit(2.5, "meters"),
  9023. default: true
  9024. },
  9025. {
  9026. name: "Kaiju Dragon",
  9027. height: math.unit(60, "meters")
  9028. },
  9029. {
  9030. name: "Mega Kaiju",
  9031. height: math.unit(120, "km")
  9032. },
  9033. {
  9034. name: "Giga Kaiju",
  9035. height: math.unit(200, "megameters")
  9036. },
  9037. {
  9038. name: "Terra Kaiju",
  9039. height: math.unit(400, "gigameters")
  9040. },
  9041. {
  9042. name: "Kaiju Dragon God",
  9043. height: math.unit(13000, "exaparsecs")
  9044. },
  9045. ]
  9046. ))
  9047. characterMakers.push(() => makeCharacter(
  9048. { name: "Blü" },
  9049. {
  9050. front: {
  9051. height: math.unit(6, "feet"),
  9052. weight: math.unit(150, "lb"),
  9053. name: "Front",
  9054. image: {
  9055. source: "./media/characters/blü/front.svg",
  9056. extra: 1883 / 1564,
  9057. bottom: 0.031
  9058. }
  9059. },
  9060. },
  9061. [
  9062. {
  9063. name: "Normal",
  9064. height: math.unit(13, "feet"),
  9065. default: true
  9066. },
  9067. {
  9068. name: "Big Boi",
  9069. height: math.unit(150, "meters")
  9070. },
  9071. {
  9072. name: "Mini Stomper",
  9073. height: math.unit(300, "meters")
  9074. },
  9075. {
  9076. name: "Macro",
  9077. height: math.unit(1000, "meters")
  9078. },
  9079. {
  9080. name: "Megamacro",
  9081. height: math.unit(11000, "meters")
  9082. },
  9083. {
  9084. name: "Gigamacro",
  9085. height: math.unit(11000, "km")
  9086. },
  9087. {
  9088. name: "Teramacro",
  9089. height: math.unit(420000, "km")
  9090. },
  9091. {
  9092. name: "Examacro",
  9093. height: math.unit(120, "parsecs")
  9094. },
  9095. {
  9096. name: "God Tho",
  9097. height: math.unit(98000000000, "parsecs")
  9098. },
  9099. ]
  9100. ))
  9101. characterMakers.push(() => makeCharacter(
  9102. { name: "Scales" },
  9103. {
  9104. taurFront: {
  9105. height: math.unit(6, "feet"),
  9106. weight: math.unit(200, "lb"),
  9107. name: "Taur (Front)",
  9108. image: {
  9109. source: "./media/characters/scales/taur-front.svg",
  9110. extra: 1,
  9111. bottom: 0.05
  9112. }
  9113. },
  9114. taurBack: {
  9115. height: math.unit(6, "feet"),
  9116. weight: math.unit(200, "lb"),
  9117. name: "Taur (Back)",
  9118. image: {
  9119. source: "./media/characters/scales/taur-back.svg",
  9120. extra: 1,
  9121. bottom: 0.08
  9122. }
  9123. },
  9124. anthro: {
  9125. height: math.unit(6 * 7 / 12, "feet"),
  9126. weight: math.unit(100, "lb"),
  9127. name: "Anthro",
  9128. image: {
  9129. source: "./media/characters/scales/anthro.svg",
  9130. extra: 1,
  9131. bottom: 0.06
  9132. }
  9133. },
  9134. },
  9135. [
  9136. {
  9137. name: "Normal",
  9138. height: math.unit(12, "feet"),
  9139. default: true
  9140. },
  9141. ]
  9142. ))
  9143. characterMakers.push(() => makeCharacter(
  9144. { name: "Koragos" },
  9145. {
  9146. front: {
  9147. height: math.unit(6, "feet"),
  9148. weight: math.unit(150, "lb"),
  9149. name: "Front",
  9150. image: {
  9151. source: "./media/characters/koragos/front.svg",
  9152. extra: 841 / 794,
  9153. bottom: 0.035
  9154. }
  9155. },
  9156. back: {
  9157. height: math.unit(6, "feet"),
  9158. weight: math.unit(150, "lb"),
  9159. name: "Back",
  9160. image: {
  9161. source: "./media/characters/koragos/back.svg",
  9162. extra: 841 / 810,
  9163. bottom: 0.022
  9164. }
  9165. },
  9166. },
  9167. [
  9168. {
  9169. name: "Normal",
  9170. height: math.unit(6 + 11 / 12, "feet"),
  9171. default: true
  9172. },
  9173. {
  9174. name: "Macro",
  9175. height: math.unit(490, "feet")
  9176. },
  9177. {
  9178. name: "Megamacro",
  9179. height: math.unit(10, "miles")
  9180. },
  9181. {
  9182. name: "Gigamacro",
  9183. height: math.unit(50, "miles")
  9184. },
  9185. ]
  9186. ))
  9187. characterMakers.push(() => makeCharacter(
  9188. { name: "Xylrem" },
  9189. {
  9190. front: {
  9191. height: math.unit(6, "feet"),
  9192. weight: math.unit(250, "lb"),
  9193. name: "Front",
  9194. image: {
  9195. source: "./media/characters/xylrem/front.svg",
  9196. extra: 3323 / 3050,
  9197. bottom: 0.065
  9198. }
  9199. },
  9200. },
  9201. [
  9202. {
  9203. name: "Micro",
  9204. height: math.unit(4, "feet")
  9205. },
  9206. {
  9207. name: "Normal",
  9208. height: math.unit(16, "feet"),
  9209. default: true
  9210. },
  9211. {
  9212. name: "Macro",
  9213. height: math.unit(2720, "feet")
  9214. },
  9215. {
  9216. name: "Megamacro",
  9217. height: math.unit(25000, "miles")
  9218. },
  9219. ]
  9220. ))
  9221. characterMakers.push(() => makeCharacter(
  9222. { name: "Ikideru" },
  9223. {
  9224. front: {
  9225. height: math.unit(8, "feet"),
  9226. weight: math.unit(250, "kg"),
  9227. name: "Front",
  9228. image: {
  9229. source: "./media/characters/ikideru/front.svg",
  9230. extra: 930 / 870,
  9231. bottom: 0.087
  9232. }
  9233. },
  9234. back: {
  9235. height: math.unit(8, "feet"),
  9236. weight: math.unit(250, "kg"),
  9237. name: "Back",
  9238. image: {
  9239. source: "./media/characters/ikideru/back.svg",
  9240. extra: 919 / 852,
  9241. bottom: 0.055
  9242. }
  9243. },
  9244. },
  9245. [
  9246. {
  9247. name: "Rare",
  9248. height: math.unit(8, "feet"),
  9249. default: true
  9250. },
  9251. {
  9252. name: "Playful Loom",
  9253. height: math.unit(80, "feet")
  9254. },
  9255. {
  9256. name: "City Leaner",
  9257. height: math.unit(230, "feet")
  9258. },
  9259. {
  9260. name: "Megamacro",
  9261. height: math.unit(2500, "feet")
  9262. },
  9263. {
  9264. name: "Gigamacro",
  9265. height: math.unit(26400, "feet")
  9266. },
  9267. {
  9268. name: "Tectonic Shifter",
  9269. height: math.unit(1.7, "megameters")
  9270. },
  9271. {
  9272. name: "Planet Carer",
  9273. height: math.unit(21, "megameters")
  9274. },
  9275. {
  9276. name: "God",
  9277. height: math.unit(11157.22, "parsecs")
  9278. },
  9279. ]
  9280. ))
  9281. characterMakers.push(() => makeCharacter(
  9282. { name: "Neo" },
  9283. {
  9284. front: {
  9285. height: math.unit(6, "feet"),
  9286. weight: math.unit(120, "lb"),
  9287. name: "Front",
  9288. image: {
  9289. source: "./media/characters/neo/front.svg"
  9290. }
  9291. },
  9292. },
  9293. [
  9294. {
  9295. name: "Micro",
  9296. height: math.unit(2, "inches"),
  9297. default: true
  9298. },
  9299. {
  9300. name: "Human Size",
  9301. height: math.unit(5 + 8 / 12, "feet")
  9302. },
  9303. ]
  9304. ))
  9305. characterMakers.push(() => makeCharacter(
  9306. { name: "Chauncey (Chantz)" },
  9307. {
  9308. front: {
  9309. height: math.unit(13 + 10 / 12, "feet"),
  9310. weight: math.unit(5320, "lb"),
  9311. name: "Front",
  9312. image: {
  9313. source: "./media/characters/chauncey-chantz/front.svg",
  9314. extra: 1587 / 1435,
  9315. bottom: 0.02
  9316. }
  9317. },
  9318. },
  9319. [
  9320. {
  9321. name: "Normal",
  9322. height: math.unit(13 + 10 / 12, "feet"),
  9323. default: true
  9324. },
  9325. {
  9326. name: "Macro",
  9327. height: math.unit(45, "feet")
  9328. },
  9329. {
  9330. name: "Megamacro",
  9331. height: math.unit(250, "miles")
  9332. },
  9333. {
  9334. name: "Planetary",
  9335. height: math.unit(10000, "miles")
  9336. },
  9337. {
  9338. name: "Galactic",
  9339. height: math.unit(40000, "parsecs")
  9340. },
  9341. {
  9342. name: "Universal",
  9343. height: math.unit(1, "yottameter")
  9344. },
  9345. ]
  9346. ))
  9347. characterMakers.push(() => makeCharacter(
  9348. { name: "Epifox" },
  9349. {
  9350. front: {
  9351. height: math.unit(6, "feet"),
  9352. weight: math.unit(150, "lb"),
  9353. name: "Front",
  9354. image: {
  9355. source: "./media/characters/epifox/front.svg",
  9356. extra: 1,
  9357. bottom: 0.075
  9358. }
  9359. },
  9360. },
  9361. [
  9362. {
  9363. name: "Micro",
  9364. height: math.unit(6, "inches")
  9365. },
  9366. {
  9367. name: "Normal",
  9368. height: math.unit(12, "feet"),
  9369. default: true
  9370. },
  9371. {
  9372. name: "Macro",
  9373. height: math.unit(3810, "feet")
  9374. },
  9375. {
  9376. name: "Megamacro",
  9377. height: math.unit(500, "miles")
  9378. },
  9379. ]
  9380. ))
  9381. characterMakers.push(() => makeCharacter(
  9382. { name: "Colin T." },
  9383. {
  9384. front: {
  9385. height: math.unit(1.8796, "m"),
  9386. weight: math.unit(230, "lb"),
  9387. name: "Front",
  9388. image: {
  9389. source: "./media/characters/colin-t/front.svg",
  9390. extra: 1272 / 1193,
  9391. bottom: 0.07
  9392. }
  9393. },
  9394. },
  9395. [
  9396. {
  9397. name: "Micro",
  9398. height: math.unit(0.571, "meters")
  9399. },
  9400. {
  9401. name: "Normal",
  9402. height: math.unit(1.8796, "meters"),
  9403. default: true
  9404. },
  9405. {
  9406. name: "Tall",
  9407. height: math.unit(4, "meters")
  9408. },
  9409. {
  9410. name: "Macro",
  9411. height: math.unit(67.241, "meters")
  9412. },
  9413. {
  9414. name: "Megamacro",
  9415. height: math.unit(371.856, "meters")
  9416. },
  9417. {
  9418. name: "Planetary",
  9419. height: math.unit(12631.5689, "km")
  9420. },
  9421. ]
  9422. ))
  9423. characterMakers.push(() => makeCharacter(
  9424. { name: "Matvei" },
  9425. {
  9426. front: {
  9427. height: math.unit(1.85, "meters"),
  9428. weight: math.unit(80, "kg"),
  9429. name: "Front",
  9430. image: {
  9431. source: "./media/characters/matvei/front.svg",
  9432. extra: 614 / 594,
  9433. bottom: 0.01
  9434. }
  9435. },
  9436. },
  9437. [
  9438. {
  9439. name: "Normal",
  9440. height: math.unit(1.85, "meters"),
  9441. default: true
  9442. },
  9443. ]
  9444. ))
  9445. characterMakers.push(() => makeCharacter(
  9446. { name: "Quincy" },
  9447. {
  9448. front: {
  9449. height: math.unit(5 + 9 / 12, "feet"),
  9450. weight: math.unit(70, "lb"),
  9451. name: "Front",
  9452. image: {
  9453. source: "./media/characters/quincy/front.svg",
  9454. extra: 3041 / 2751
  9455. }
  9456. },
  9457. back: {
  9458. height: math.unit(5 + 9 / 12, "feet"),
  9459. weight: math.unit(70, "lb"),
  9460. name: "Back",
  9461. image: {
  9462. source: "./media/characters/quincy/back.svg",
  9463. extra: 3041 / 2751
  9464. }
  9465. },
  9466. flying: {
  9467. height: math.unit(5 + 4 / 12, "feet"),
  9468. weight: math.unit(70, "lb"),
  9469. name: "Flying",
  9470. image: {
  9471. source: "./media/characters/quincy/flying.svg",
  9472. extra: 1044 / 930
  9473. }
  9474. },
  9475. },
  9476. [
  9477. {
  9478. name: "Micro",
  9479. height: math.unit(3, "cm")
  9480. },
  9481. {
  9482. name: "Normal",
  9483. height: math.unit(5 + 9 / 12, "feet")
  9484. },
  9485. {
  9486. name: "Macro",
  9487. height: math.unit(200, "meters"),
  9488. default: true
  9489. },
  9490. {
  9491. name: "Megamacro",
  9492. height: math.unit(1000, "meters")
  9493. },
  9494. ]
  9495. ))
  9496. characterMakers.push(() => makeCharacter(
  9497. { name: "Vanrel" },
  9498. {
  9499. front: {
  9500. height: math.unit(4 + 7 / 12, "feet"),
  9501. weight: math.unit(150, "lb"),
  9502. name: "Front",
  9503. image: {
  9504. source: "./media/characters/vanrel/front.svg",
  9505. extra: 1,
  9506. bottom: 0.02
  9507. }
  9508. },
  9509. elemental: {
  9510. height: math.unit(3, "feet"),
  9511. weight: math.unit(150, "lb"),
  9512. name: "Elemental",
  9513. image: {
  9514. source: "./media/characters/vanrel/elemental.svg",
  9515. extra: 192.3/162.8,
  9516. bottom: 1.79/194.17
  9517. }
  9518. },
  9519. side: {
  9520. height: math.unit(4 + 7 / 12, "feet"),
  9521. weight: math.unit(150, "lb"),
  9522. name: "Side",
  9523. image: {
  9524. source: "./media/characters/vanrel/side.svg",
  9525. extra: 1,
  9526. bottom: 0.025
  9527. }
  9528. },
  9529. tome: {
  9530. height: math.unit(1.35, "feet"),
  9531. weight: math.unit(10, "lb"),
  9532. name: "Vanrel's Tome",
  9533. rename: true,
  9534. image: {
  9535. source: "./media/characters/vanrel/tome.svg"
  9536. }
  9537. },
  9538. beans: {
  9539. height: math.unit(0.89, "feet"),
  9540. name: "Beans",
  9541. image: {
  9542. source: "./media/characters/vanrel/beans.svg"
  9543. }
  9544. },
  9545. },
  9546. [
  9547. {
  9548. name: "Normal",
  9549. height: math.unit(4 + 7 / 12, "feet"),
  9550. default: true
  9551. },
  9552. ]
  9553. ))
  9554. characterMakers.push(() => makeCharacter(
  9555. { name: "Kuiper Vanrel" },
  9556. {
  9557. front: {
  9558. height: math.unit(7 + 5 / 12, "feet"),
  9559. weight: math.unit(150, "lb"),
  9560. name: "Front",
  9561. image: {
  9562. source: "./media/characters/kuiper-vanrel/front.svg",
  9563. extra: 1118 / 1068,
  9564. bottom: 0.09
  9565. }
  9566. },
  9567. foot: {
  9568. height: math.unit(0.55, "meters"),
  9569. name: "Foot",
  9570. image: {
  9571. source: "./media/characters/kuiper-vanrel/foot.svg",
  9572. }
  9573. },
  9574. battle: {
  9575. height: math.unit(6.824, "feet"),
  9576. weight: math.unit(150, "lb"),
  9577. name: "Battle",
  9578. image: {
  9579. source: "./media/characters/kuiper-vanrel/battle.svg",
  9580. extra: 1466/1327,
  9581. bottom: 29/1492.5
  9582. }
  9583. },
  9584. },
  9585. [
  9586. {
  9587. name: "Normal",
  9588. height: math.unit(7 + 5 / 12, "feet"),
  9589. default: true
  9590. },
  9591. ]
  9592. ))
  9593. characterMakers.push(() => makeCharacter(
  9594. { name: "Keset Vanrel" },
  9595. {
  9596. front: {
  9597. height: math.unit(8 + 5 / 12, "feet"),
  9598. weight: math.unit(150, "lb"),
  9599. name: "Front",
  9600. image: {
  9601. source: "./media/characters/keset-vanrel/front.svg",
  9602. extra: 1150 / 1084,
  9603. bottom: 0.05
  9604. }
  9605. },
  9606. hand: {
  9607. height: math.unit(0.6, "meters"),
  9608. name: "Hand",
  9609. image: {
  9610. source: "./media/characters/keset-vanrel/hand.svg"
  9611. }
  9612. },
  9613. foot: {
  9614. height: math.unit(0.94978, "meters"),
  9615. name: "Foot",
  9616. image: {
  9617. source: "./media/characters/keset-vanrel/foot.svg"
  9618. }
  9619. },
  9620. battle: {
  9621. height: math.unit(7.408, "feet"),
  9622. weight: math.unit(150, "lb"),
  9623. name: "Battle",
  9624. image: {
  9625. source: "./media/characters/keset-vanrel/battle.svg",
  9626. extra: 1890/1386,
  9627. bottom: 73.28/1970
  9628. }
  9629. },
  9630. },
  9631. [
  9632. {
  9633. name: "Normal",
  9634. height: math.unit(8 + 5 / 12, "feet"),
  9635. default: true
  9636. },
  9637. ]
  9638. ))
  9639. characterMakers.push(() => makeCharacter(
  9640. { name: "Neos" },
  9641. {
  9642. front: {
  9643. height: math.unit(6, "feet"),
  9644. weight: math.unit(150, "lb"),
  9645. name: "Front",
  9646. image: {
  9647. source: "./media/characters/neos/front.svg",
  9648. extra: 1696 / 992,
  9649. bottom: 0.14
  9650. }
  9651. },
  9652. },
  9653. [
  9654. {
  9655. name: "Normal",
  9656. height: math.unit(54, "cm"),
  9657. default: true
  9658. },
  9659. {
  9660. name: "Macro",
  9661. height: math.unit(100, "m")
  9662. },
  9663. {
  9664. name: "Megamacro",
  9665. height: math.unit(10, "km")
  9666. },
  9667. {
  9668. name: "Megamacro+",
  9669. height: math.unit(100, "km")
  9670. },
  9671. {
  9672. name: "Gigamacro",
  9673. height: math.unit(100, "Mm")
  9674. },
  9675. {
  9676. name: "Teramacro",
  9677. height: math.unit(100, "Gm")
  9678. },
  9679. {
  9680. name: "Examacro",
  9681. height: math.unit(100, "Em")
  9682. },
  9683. {
  9684. name: "Godly",
  9685. height: math.unit(10000, "Ym")
  9686. },
  9687. {
  9688. name: "Beyond Godly",
  9689. height: math.unit(10000000, "Ym")
  9690. },
  9691. ]
  9692. ))
  9693. characterMakers.push(() => makeCharacter(
  9694. { name: "Sammy Mouse" },
  9695. {
  9696. feminine: {
  9697. height: math.unit(5, "feet"),
  9698. weight: math.unit(100, "lb"),
  9699. name: "Feminine",
  9700. image: {
  9701. source: "./media/characters/sammy-mouse/feminine.svg",
  9702. extra: 2526 / 2425,
  9703. bottom: 0.123
  9704. }
  9705. },
  9706. masculine: {
  9707. height: math.unit(5, "feet"),
  9708. weight: math.unit(100, "lb"),
  9709. name: "Masculine",
  9710. image: {
  9711. source: "./media/characters/sammy-mouse/masculine.svg",
  9712. extra: 2526 / 2425,
  9713. bottom: 0.123
  9714. }
  9715. },
  9716. },
  9717. [
  9718. {
  9719. name: "Micro",
  9720. height: math.unit(5, "inches")
  9721. },
  9722. {
  9723. name: "Normal",
  9724. height: math.unit(5, "feet"),
  9725. default: true
  9726. },
  9727. {
  9728. name: "Macro",
  9729. height: math.unit(60, "feet")
  9730. },
  9731. ]
  9732. ))
  9733. characterMakers.push(() => makeCharacter(
  9734. { name: "Kole" },
  9735. {
  9736. front: {
  9737. height: math.unit(4, "feet"),
  9738. weight: math.unit(50, "lb"),
  9739. name: "Front",
  9740. image: {
  9741. source: "./media/characters/kole/front.svg",
  9742. extra: 1423 / 1303,
  9743. bottom: 0.025
  9744. }
  9745. },
  9746. back: {
  9747. height: math.unit(4, "feet"),
  9748. weight: math.unit(50, "lb"),
  9749. name: "Back",
  9750. image: {
  9751. source: "./media/characters/kole/back.svg",
  9752. extra: 1426 / 1280,
  9753. bottom: 0.02
  9754. }
  9755. },
  9756. },
  9757. [
  9758. {
  9759. name: "Normal",
  9760. height: math.unit(4, "feet"),
  9761. default: true
  9762. },
  9763. ]
  9764. ))
  9765. characterMakers.push(() => makeCharacter(
  9766. { name: "Rufran" },
  9767. {
  9768. front: {
  9769. height: math.unit(2 + 6 / 12, "feet"),
  9770. weight: math.unit(20, "lb"),
  9771. name: "Front",
  9772. image: {
  9773. source: "./media/characters/rufran/front.svg",
  9774. extra: 2041 / 1839,
  9775. bottom: 0.055
  9776. }
  9777. },
  9778. back: {
  9779. height: math.unit(2 + 6 / 12, "feet"),
  9780. weight: math.unit(20, "lb"),
  9781. name: "Back",
  9782. image: {
  9783. source: "./media/characters/rufran/back.svg",
  9784. extra: 2054 / 1839,
  9785. bottom: 0.01
  9786. }
  9787. },
  9788. hand: {
  9789. height: math.unit(0.2166, "meters"),
  9790. name: "Hand",
  9791. image: {
  9792. source: "./media/characters/rufran/hand.svg"
  9793. }
  9794. },
  9795. foot: {
  9796. height: math.unit(0.185, "meters"),
  9797. name: "Foot",
  9798. image: {
  9799. source: "./media/characters/rufran/foot.svg"
  9800. }
  9801. },
  9802. },
  9803. [
  9804. {
  9805. name: "Micro",
  9806. height: math.unit(1, "inch")
  9807. },
  9808. {
  9809. name: "Normal",
  9810. height: math.unit(2 + 6 / 12, "feet"),
  9811. default: true
  9812. },
  9813. {
  9814. name: "Big",
  9815. height: math.unit(60, "feet")
  9816. },
  9817. {
  9818. name: "Macro",
  9819. height: math.unit(325, "feet")
  9820. },
  9821. ]
  9822. ))
  9823. characterMakers.push(() => makeCharacter(
  9824. { name: "Chip" },
  9825. {
  9826. front: {
  9827. height: math.unit(0.3, "meters"),
  9828. weight: math.unit(3.5, "kg"),
  9829. name: "Front",
  9830. image: {
  9831. source: "./media/characters/chip/front.svg",
  9832. extra: 748 / 674
  9833. }
  9834. },
  9835. },
  9836. [
  9837. {
  9838. name: "Micro",
  9839. height: math.unit(1, "inch"),
  9840. default: true
  9841. },
  9842. ]
  9843. ))
  9844. characterMakers.push(() => makeCharacter(
  9845. { name: "Torvid" },
  9846. {
  9847. side: {
  9848. height: math.unit(2.3, "meters"),
  9849. weight: math.unit(3500, "lb"),
  9850. name: "Side",
  9851. image: {
  9852. source: "./media/characters/torvid/side.svg",
  9853. extra: 1972 / 722,
  9854. bottom: 0.035
  9855. }
  9856. },
  9857. },
  9858. [
  9859. {
  9860. name: "Normal",
  9861. height: math.unit(2.3, "meters"),
  9862. default: true
  9863. },
  9864. ]
  9865. ))
  9866. characterMakers.push(() => makeCharacter(
  9867. { name: "Susan" },
  9868. {
  9869. front: {
  9870. height: math.unit(2, "meters"),
  9871. weight: math.unit(150.5, "kg"),
  9872. name: "Front",
  9873. image: {
  9874. source: "./media/characters/susan/front.svg",
  9875. extra: 693 / 635,
  9876. bottom: 0.05
  9877. }
  9878. },
  9879. },
  9880. [
  9881. {
  9882. name: "Megamacro",
  9883. height: math.unit(505, "miles"),
  9884. default: true
  9885. },
  9886. ]
  9887. ))
  9888. characterMakers.push(() => makeCharacter(
  9889. { name: "Raindrops" },
  9890. {
  9891. front: {
  9892. height: math.unit(6, "feet"),
  9893. weight: math.unit(150, "lb"),
  9894. name: "Front",
  9895. image: {
  9896. source: "./media/characters/raindrops/front.svg",
  9897. extra: 2655 / 2461,
  9898. bottom: 0.02
  9899. }
  9900. },
  9901. back: {
  9902. height: math.unit(6, "feet"),
  9903. weight: math.unit(150, "lb"),
  9904. name: "Back",
  9905. image: {
  9906. source: "./media/characters/raindrops/back.svg",
  9907. extra: 2574 / 2400,
  9908. bottom: 0.03
  9909. }
  9910. },
  9911. },
  9912. [
  9913. {
  9914. name: "Micro",
  9915. height: math.unit(6, "inches")
  9916. },
  9917. {
  9918. name: "Normal",
  9919. height: math.unit(6 + 2 / 12, "feet")
  9920. },
  9921. {
  9922. name: "Macro",
  9923. height: math.unit(131, "feet"),
  9924. default: true
  9925. },
  9926. {
  9927. name: "Megamacro",
  9928. height: math.unit(15, "miles")
  9929. },
  9930. {
  9931. name: "Gigamacro",
  9932. height: math.unit(4000, "miles")
  9933. },
  9934. {
  9935. name: "Teramacro",
  9936. height: math.unit(315000, "miles")
  9937. },
  9938. ]
  9939. ))
  9940. characterMakers.push(() => makeCharacter(
  9941. { name: "Tezwa" },
  9942. {
  9943. front: {
  9944. height: math.unit(2.794, "meters"),
  9945. weight: math.unit(325, "kg"),
  9946. name: "Front",
  9947. image: {
  9948. source: "./media/characters/tezwa/front.svg",
  9949. extra: 2083 / 1906,
  9950. bottom: 0.031
  9951. }
  9952. },
  9953. foot: {
  9954. height: math.unit(0.687, "meters"),
  9955. name: "Foot",
  9956. image: {
  9957. source: "./media/characters/tezwa/foot.svg"
  9958. }
  9959. },
  9960. },
  9961. [
  9962. {
  9963. name: "Normal",
  9964. height: math.unit(9 + 2 / 12, "feet"),
  9965. default: true
  9966. },
  9967. ]
  9968. ))
  9969. characterMakers.push(() => makeCharacter(
  9970. { name: "Typhus" },
  9971. {
  9972. front: {
  9973. height: math.unit(58, "feet"),
  9974. weight: math.unit(89000, "lb"),
  9975. name: "Front",
  9976. image: {
  9977. source: "./media/characters/typhus/front.svg",
  9978. extra: 816 / 800,
  9979. bottom: 0.065
  9980. }
  9981. },
  9982. },
  9983. [
  9984. {
  9985. name: "Macro",
  9986. height: math.unit(58, "feet"),
  9987. default: true
  9988. },
  9989. ]
  9990. ))
  9991. characterMakers.push(() => makeCharacter(
  9992. { name: "Lyra Von Wulf" },
  9993. {
  9994. front: {
  9995. height: math.unit(12, "feet"),
  9996. weight: math.unit(6, "tonnes"),
  9997. name: "Front",
  9998. image: {
  9999. source: "./media/characters/lyra-von-wulf/front.svg",
  10000. extra: 1,
  10001. bottom: 0.10
  10002. }
  10003. },
  10004. frontMecha: {
  10005. height: math.unit(12, "feet"),
  10006. weight: math.unit(12, "tonnes"),
  10007. name: "Front (Mecha)",
  10008. image: {
  10009. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10010. extra: 1,
  10011. bottom: 0.042
  10012. }
  10013. },
  10014. maw: {
  10015. height: math.unit(2.2, "feet"),
  10016. name: "Maw",
  10017. image: {
  10018. source: "./media/characters/lyra-von-wulf/maw.svg"
  10019. }
  10020. },
  10021. },
  10022. [
  10023. {
  10024. name: "Normal",
  10025. height: math.unit(12, "feet"),
  10026. default: true
  10027. },
  10028. {
  10029. name: "Classic",
  10030. height: math.unit(50, "feet")
  10031. },
  10032. {
  10033. name: "Macro",
  10034. height: math.unit(500, "feet")
  10035. },
  10036. {
  10037. name: "Megamacro",
  10038. height: math.unit(1, "mile")
  10039. },
  10040. {
  10041. name: "Gigamacro",
  10042. height: math.unit(400, "miles")
  10043. },
  10044. {
  10045. name: "Teramacro",
  10046. height: math.unit(22000, "miles")
  10047. },
  10048. {
  10049. name: "Solarmacro",
  10050. height: math.unit(8600000, "miles")
  10051. },
  10052. {
  10053. name: "Galactic",
  10054. height: math.unit(1057000, "lightyears")
  10055. },
  10056. ]
  10057. ))
  10058. characterMakers.push(() => makeCharacter(
  10059. { name: "Dixon" },
  10060. {
  10061. front: {
  10062. height: math.unit(6 + 10 / 12, "feet"),
  10063. weight: math.unit(150, "lb"),
  10064. name: "Front",
  10065. image: {
  10066. source: "./media/characters/dixon/front.svg",
  10067. extra: 3361 / 3209,
  10068. bottom: 0.01
  10069. }
  10070. },
  10071. },
  10072. [
  10073. {
  10074. name: "Normal",
  10075. height: math.unit(6 + 10 / 12, "feet"),
  10076. default: true
  10077. },
  10078. {
  10079. name: "Big",
  10080. height: math.unit(12, "meters")
  10081. },
  10082. {
  10083. name: "Macro",
  10084. height: math.unit(500, "meters")
  10085. },
  10086. {
  10087. name: "Megamacro",
  10088. height: math.unit(2, "km")
  10089. },
  10090. ]
  10091. ))
  10092. characterMakers.push(() => makeCharacter(
  10093. { name: "Kauko" },
  10094. {
  10095. front: {
  10096. height: math.unit(185, "cm"),
  10097. weight: math.unit(68, "kg"),
  10098. name: "Front",
  10099. image: {
  10100. source: "./media/characters/kauko/front.svg",
  10101. extra: 1455 / 1421,
  10102. bottom: 0.03
  10103. }
  10104. },
  10105. back: {
  10106. height: math.unit(185, "cm"),
  10107. weight: math.unit(68, "kg"),
  10108. name: "Back",
  10109. image: {
  10110. source: "./media/characters/kauko/back.svg",
  10111. extra: 1455 / 1421,
  10112. bottom: 0.004
  10113. }
  10114. },
  10115. },
  10116. [
  10117. {
  10118. name: "Normal",
  10119. height: math.unit(185, "cm"),
  10120. default: true
  10121. },
  10122. ]
  10123. ))
  10124. characterMakers.push(() => makeCharacter(
  10125. { name: "Varg" },
  10126. {
  10127. front: {
  10128. height: math.unit(6, "feet"),
  10129. weight: math.unit(150, "kg"),
  10130. name: "Front",
  10131. image: {
  10132. source: "./media/characters/varg/front.svg",
  10133. extra: 1108 / 1018,
  10134. bottom: 0.0375
  10135. }
  10136. },
  10137. },
  10138. [
  10139. {
  10140. name: "Normal",
  10141. height: math.unit(5, "meters")
  10142. },
  10143. {
  10144. name: "Macro",
  10145. height: math.unit(200, "meters")
  10146. },
  10147. {
  10148. name: "Megamacro",
  10149. height: math.unit(20, "kilometers")
  10150. },
  10151. {
  10152. name: "True Size",
  10153. height: math.unit(211, "km"),
  10154. default: true
  10155. },
  10156. {
  10157. name: "Gigamacro",
  10158. height: math.unit(1000, "km")
  10159. },
  10160. {
  10161. name: "Gigamacro+",
  10162. height: math.unit(8000, "km")
  10163. },
  10164. {
  10165. name: "Teramacro",
  10166. height: math.unit(1000000, "km")
  10167. },
  10168. ]
  10169. ))
  10170. characterMakers.push(() => makeCharacter(
  10171. { name: "Dayza" },
  10172. {
  10173. front: {
  10174. height: math.unit(7 + 7 / 12, "feet"),
  10175. weight: math.unit(267, "lb"),
  10176. name: "Front",
  10177. image: {
  10178. source: "./media/characters/dayza/front.svg",
  10179. extra: 1262 / 1200,
  10180. bottom: 0.035
  10181. }
  10182. },
  10183. side: {
  10184. height: math.unit(7 + 7 / 12, "feet"),
  10185. weight: math.unit(267, "lb"),
  10186. name: "Side",
  10187. image: {
  10188. source: "./media/characters/dayza/side.svg",
  10189. extra: 1295 / 1245,
  10190. bottom: 0.05
  10191. }
  10192. },
  10193. back: {
  10194. height: math.unit(7 + 7 / 12, "feet"),
  10195. weight: math.unit(267, "lb"),
  10196. name: "Back",
  10197. image: {
  10198. source: "./media/characters/dayza/back.svg",
  10199. extra: 1241 / 1170
  10200. }
  10201. },
  10202. },
  10203. [
  10204. {
  10205. name: "Normal",
  10206. height: math.unit(7 + 7 / 12, "feet"),
  10207. default: true
  10208. },
  10209. {
  10210. name: "Macro",
  10211. height: math.unit(155, "feet")
  10212. },
  10213. ]
  10214. ))
  10215. characterMakers.push(() => makeCharacter(
  10216. { name: "Xanthos" },
  10217. {
  10218. front: {
  10219. height: math.unit(6 + 5 / 12, "feet"),
  10220. weight: math.unit(160, "lb"),
  10221. name: "Front",
  10222. image: {
  10223. source: "./media/characters/xanthos/front.svg",
  10224. extra: 1,
  10225. bottom: 0.04
  10226. }
  10227. },
  10228. back: {
  10229. height: math.unit(6 + 5 / 12, "feet"),
  10230. weight: math.unit(160, "lb"),
  10231. name: "Back",
  10232. image: {
  10233. source: "./media/characters/xanthos/back.svg",
  10234. extra: 1,
  10235. bottom: 0.03
  10236. }
  10237. },
  10238. hand: {
  10239. height: math.unit(0.928, "feet"),
  10240. name: "Hand",
  10241. image: {
  10242. source: "./media/characters/xanthos/hand.svg"
  10243. }
  10244. },
  10245. foot: {
  10246. height: math.unit(1.286, "feet"),
  10247. name: "Foot",
  10248. image: {
  10249. source: "./media/characters/xanthos/foot.svg"
  10250. }
  10251. },
  10252. },
  10253. [
  10254. {
  10255. name: "Normal",
  10256. height: math.unit(6 + 5 / 12, "feet"),
  10257. default: true
  10258. },
  10259. {
  10260. name: "Normal+",
  10261. height: math.unit(6, "meters")
  10262. },
  10263. {
  10264. name: "Macro",
  10265. height: math.unit(40, "feet")
  10266. },
  10267. {
  10268. name: "Macro+",
  10269. height: math.unit(200, "meters")
  10270. },
  10271. {
  10272. name: "Megamacro",
  10273. height: math.unit(20, "km")
  10274. },
  10275. {
  10276. name: "Megamacro+",
  10277. height: math.unit(100, "km")
  10278. },
  10279. ]
  10280. ))
  10281. characterMakers.push(() => makeCharacter(
  10282. { name: "Grynn" },
  10283. {
  10284. front: {
  10285. height: math.unit(6 + 3 / 12, "feet"),
  10286. weight: math.unit(215, "lb"),
  10287. name: "Front",
  10288. image: {
  10289. source: "./media/characters/grynn/front.svg",
  10290. extra: 4627 / 4209,
  10291. bottom: 0.047
  10292. }
  10293. },
  10294. },
  10295. [
  10296. {
  10297. name: "Micro",
  10298. height: math.unit(6, "inches")
  10299. },
  10300. {
  10301. name: "Normal",
  10302. height: math.unit(6 + 3 / 12, "feet"),
  10303. default: true
  10304. },
  10305. {
  10306. name: "Big",
  10307. height: math.unit(104, "feet")
  10308. },
  10309. {
  10310. name: "Macro",
  10311. height: math.unit(944, "feet")
  10312. },
  10313. {
  10314. name: "Macro+",
  10315. height: math.unit(9480, "feet")
  10316. },
  10317. {
  10318. name: "Megamacro",
  10319. height: math.unit(78752, "feet")
  10320. },
  10321. {
  10322. name: "Megamacro+",
  10323. height: math.unit(630128, "feet")
  10324. },
  10325. {
  10326. name: "Megamacro++",
  10327. height: math.unit(3150695, "feet")
  10328. },
  10329. ]
  10330. ))
  10331. characterMakers.push(() => makeCharacter(
  10332. { name: "Mocha Aura" },
  10333. {
  10334. front: {
  10335. height: math.unit(7 + 5 / 12, "feet"),
  10336. weight: math.unit(450, "lb"),
  10337. name: "Front",
  10338. image: {
  10339. source: "./media/characters/mocha-aura/front.svg",
  10340. extra: 1907 / 1817,
  10341. bottom: 0.04
  10342. }
  10343. },
  10344. back: {
  10345. height: math.unit(7 + 5 / 12, "feet"),
  10346. weight: math.unit(450, "lb"),
  10347. name: "Back",
  10348. image: {
  10349. source: "./media/characters/mocha-aura/back.svg",
  10350. extra: 1900 / 1825,
  10351. bottom: 0.045
  10352. }
  10353. },
  10354. },
  10355. [
  10356. {
  10357. name: "Nano",
  10358. height: math.unit(1, "nm")
  10359. },
  10360. {
  10361. name: "Megamicro",
  10362. height: math.unit(1, "mm")
  10363. },
  10364. {
  10365. name: "Micro",
  10366. height: math.unit(3, "inches")
  10367. },
  10368. {
  10369. name: "Normal",
  10370. height: math.unit(7 + 5 / 12, "feet"),
  10371. default: true
  10372. },
  10373. {
  10374. name: "Macro",
  10375. height: math.unit(30, "feet")
  10376. },
  10377. {
  10378. name: "Megamacro",
  10379. height: math.unit(3500, "feet")
  10380. },
  10381. {
  10382. name: "Teramacro",
  10383. height: math.unit(500000, "miles")
  10384. },
  10385. {
  10386. name: "Petamacro",
  10387. height: math.unit(50000000000000000, "parsecs")
  10388. },
  10389. ]
  10390. ))
  10391. characterMakers.push(() => makeCharacter(
  10392. { name: "Ilisha Devya" },
  10393. {
  10394. front: {
  10395. height: math.unit(6, "feet"),
  10396. weight: math.unit(150, "lb"),
  10397. name: "Front",
  10398. image: {
  10399. source: "./media/characters/ilisha-devya/front.svg",
  10400. extra: 1,
  10401. bottom: 0.175
  10402. }
  10403. },
  10404. back: {
  10405. height: math.unit(6, "feet"),
  10406. weight: math.unit(150, "lb"),
  10407. name: "Back",
  10408. image: {
  10409. source: "./media/characters/ilisha-devya/back.svg",
  10410. extra: 1,
  10411. bottom: 0.015
  10412. }
  10413. },
  10414. },
  10415. [
  10416. {
  10417. name: "Macro",
  10418. height: math.unit(500, "feet"),
  10419. default: true
  10420. },
  10421. {
  10422. name: "Megamacro",
  10423. height: math.unit(10, "miles")
  10424. },
  10425. {
  10426. name: "Gigamacro",
  10427. height: math.unit(100000, "miles")
  10428. },
  10429. {
  10430. name: "Examacro",
  10431. height: math.unit(1e9, "lightyears")
  10432. },
  10433. {
  10434. name: "Omniversal",
  10435. height: math.unit(1e33, "lightyears")
  10436. },
  10437. {
  10438. name: "Beyond Infinite",
  10439. height: math.unit(1e100, "lightyears")
  10440. },
  10441. ]
  10442. ))
  10443. characterMakers.push(() => makeCharacter(
  10444. { name: "Mira" },
  10445. {
  10446. Side: {
  10447. height: math.unit(6, "feet"),
  10448. weight: math.unit(150, "lb"),
  10449. name: "Side",
  10450. image: {
  10451. source: "./media/characters/mira/side.svg",
  10452. extra: 900 / 799,
  10453. bottom: 0.02
  10454. }
  10455. },
  10456. },
  10457. [
  10458. {
  10459. name: "Human Size",
  10460. height: math.unit(6, "feet")
  10461. },
  10462. {
  10463. name: "Macro",
  10464. height: math.unit(100, "feet"),
  10465. default: true
  10466. },
  10467. {
  10468. name: "Megamacro",
  10469. height: math.unit(10, "miles")
  10470. },
  10471. {
  10472. name: "Gigamacro",
  10473. height: math.unit(25000, "miles")
  10474. },
  10475. {
  10476. name: "Teramacro",
  10477. height: math.unit(300, "AU")
  10478. },
  10479. {
  10480. name: "Full Size",
  10481. height: math.unit(4.5e10, "lightyears")
  10482. },
  10483. ]
  10484. ))
  10485. characterMakers.push(() => makeCharacter(
  10486. { name: "Holly" },
  10487. {
  10488. front: {
  10489. height: math.unit(6, "feet"),
  10490. weight: math.unit(150, "lb"),
  10491. name: "Front",
  10492. image: {
  10493. source: "./media/characters/holly/front.svg",
  10494. extra: 639 / 606
  10495. }
  10496. },
  10497. back: {
  10498. height: math.unit(6, "feet"),
  10499. weight: math.unit(150, "lb"),
  10500. name: "Back",
  10501. image: {
  10502. source: "./media/characters/holly/back.svg",
  10503. extra: 623 / 598
  10504. }
  10505. },
  10506. frontWorking: {
  10507. height: math.unit(6, "feet"),
  10508. weight: math.unit(150, "lb"),
  10509. name: "Front (Working)",
  10510. image: {
  10511. source: "./media/characters/holly/front-working.svg",
  10512. extra: 607 / 577,
  10513. bottom: 0.048
  10514. }
  10515. },
  10516. },
  10517. [
  10518. {
  10519. name: "Normal",
  10520. height: math.unit(12 + 3 / 12, "feet"),
  10521. default: true
  10522. },
  10523. ]
  10524. ))
  10525. characterMakers.push(() => makeCharacter(
  10526. { name: "Porter" },
  10527. {
  10528. front: {
  10529. height: math.unit(6, "feet"),
  10530. weight: math.unit(150, "lb"),
  10531. name: "Front",
  10532. image: {
  10533. source: "./media/characters/porter/front.svg",
  10534. extra: 1,
  10535. bottom: 0.01
  10536. }
  10537. },
  10538. frontRobes: {
  10539. height: math.unit(6, "feet"),
  10540. weight: math.unit(150, "lb"),
  10541. name: "Front (Robes)",
  10542. image: {
  10543. source: "./media/characters/porter/front-robes.svg",
  10544. extra: 1.01,
  10545. bottom: 0.01
  10546. }
  10547. },
  10548. },
  10549. [
  10550. {
  10551. name: "Normal",
  10552. height: math.unit(11 + 9 / 12, "feet"),
  10553. default: true
  10554. },
  10555. ]
  10556. ))
  10557. characterMakers.push(() => makeCharacter(
  10558. { name: "Lucy" },
  10559. {
  10560. legendary: {
  10561. height: math.unit(6, "feet"),
  10562. weight: math.unit(150, "lb"),
  10563. name: "Legendary",
  10564. image: {
  10565. source: "./media/characters/lucy/legendary.svg",
  10566. extra: 1355 / 1100,
  10567. bottom: 0.045
  10568. }
  10569. },
  10570. },
  10571. [
  10572. {
  10573. name: "Legendary",
  10574. height: math.unit(86882 * 2, "miles"),
  10575. default: true
  10576. },
  10577. ]
  10578. ))
  10579. characterMakers.push(() => makeCharacter(
  10580. { name: "Drusilla" },
  10581. {
  10582. front: {
  10583. height: math.unit(6, "feet"),
  10584. weight: math.unit(150, "lb"),
  10585. name: "Front",
  10586. image: {
  10587. source: "./media/characters/drusilla/front.svg",
  10588. extra: 678 / 635,
  10589. bottom: 0.03
  10590. }
  10591. },
  10592. back: {
  10593. height: math.unit(6, "feet"),
  10594. weight: math.unit(150, "lb"),
  10595. name: "Back",
  10596. image: {
  10597. source: "./media/characters/drusilla/back.svg",
  10598. extra: 678 / 635,
  10599. bottom: 0.005
  10600. }
  10601. },
  10602. },
  10603. [
  10604. {
  10605. name: "Macro",
  10606. height: math.unit(100, "feet")
  10607. },
  10608. {
  10609. name: "Canon Height",
  10610. height: math.unit(2000, "feet"),
  10611. default: true
  10612. },
  10613. ]
  10614. ))
  10615. characterMakers.push(() => makeCharacter(
  10616. { name: "Renard Thatch" },
  10617. {
  10618. front: {
  10619. height: math.unit(6, "feet"),
  10620. weight: math.unit(180, "lb"),
  10621. name: "Front",
  10622. image: {
  10623. source: "./media/characters/renard-thatch/front.svg",
  10624. extra: 2411 / 2275,
  10625. bottom: 0.01
  10626. }
  10627. },
  10628. frontPosing: {
  10629. height: math.unit(6, "feet"),
  10630. weight: math.unit(180, "lb"),
  10631. name: "Front (Posing)",
  10632. image: {
  10633. source: "./media/characters/renard-thatch/front-posing.svg",
  10634. extra: 2381 / 2261,
  10635. bottom: 0.01
  10636. }
  10637. },
  10638. back: {
  10639. height: math.unit(6, "feet"),
  10640. weight: math.unit(180, "lb"),
  10641. name: "Back",
  10642. image: {
  10643. source: "./media/characters/renard-thatch/back.svg",
  10644. extra: 2428 / 2288
  10645. }
  10646. },
  10647. },
  10648. [
  10649. {
  10650. name: "Micro",
  10651. height: math.unit(3, "inches")
  10652. },
  10653. {
  10654. name: "Default",
  10655. height: math.unit(6, "feet"),
  10656. default: true
  10657. },
  10658. {
  10659. name: "Macro",
  10660. height: math.unit(75, "feet")
  10661. },
  10662. ]
  10663. ))
  10664. characterMakers.push(() => makeCharacter(
  10665. { name: "Sekvra" },
  10666. {
  10667. front: {
  10668. height: math.unit(1450, "feet"),
  10669. weight: math.unit(1.21e6, "tons"),
  10670. name: "Front",
  10671. image: {
  10672. source: "./media/characters/sekvra/front.svg",
  10673. extra: 1,
  10674. bottom: 0.03
  10675. }
  10676. },
  10677. frontClothed: {
  10678. height: math.unit(1450, "feet"),
  10679. weight: math.unit(1.21e6, "tons"),
  10680. name: "Front (Clothed)",
  10681. image: {
  10682. source: "./media/characters/sekvra/front-clothed.svg",
  10683. extra: 1,
  10684. bottom: 0.03
  10685. }
  10686. },
  10687. side: {
  10688. height: math.unit(1450, "feet"),
  10689. weight: math.unit(1.21e6, "tons"),
  10690. name: "Side",
  10691. image: {
  10692. source: "./media/characters/sekvra/side.svg",
  10693. extra: 1,
  10694. bottom: 0.025
  10695. }
  10696. },
  10697. back: {
  10698. height: math.unit(1450, "feet"),
  10699. weight: math.unit(1.21e6, "tons"),
  10700. name: "Back",
  10701. image: {
  10702. source: "./media/characters/sekvra/back.svg",
  10703. extra: 1,
  10704. bottom: 0.005
  10705. }
  10706. },
  10707. },
  10708. [
  10709. {
  10710. name: "Macro",
  10711. height: math.unit(1450, "feet"),
  10712. default: true
  10713. },
  10714. {
  10715. name: "Megamacro",
  10716. height: math.unit(15000, "feet")
  10717. },
  10718. ]
  10719. ))
  10720. characterMakers.push(() => makeCharacter(
  10721. { name: "Carmine" },
  10722. {
  10723. front: {
  10724. height: math.unit(6, "feet"),
  10725. weight: math.unit(150, "lb"),
  10726. name: "Front",
  10727. image: {
  10728. source: "./media/characters/carmine/front.svg",
  10729. extra: 1,
  10730. bottom: 0.035
  10731. }
  10732. },
  10733. frontArmor: {
  10734. height: math.unit(6, "feet"),
  10735. weight: math.unit(150, "lb"),
  10736. name: "Front (Armor)",
  10737. image: {
  10738. source: "./media/characters/carmine/front-armor.svg",
  10739. extra: 1,
  10740. bottom: 0.035
  10741. }
  10742. },
  10743. },
  10744. [
  10745. {
  10746. name: "Large",
  10747. height: math.unit(1, "mile")
  10748. },
  10749. {
  10750. name: "Huge",
  10751. height: math.unit(40, "miles"),
  10752. default: true
  10753. },
  10754. {
  10755. name: "Colossal",
  10756. height: math.unit(2500, "miles")
  10757. },
  10758. ]
  10759. ))
  10760. characterMakers.push(() => makeCharacter(
  10761. { name: "Elyssia" },
  10762. {
  10763. front: {
  10764. height: math.unit(6, "feet"),
  10765. weight: math.unit(150, "lb"),
  10766. name: "Front",
  10767. image: {
  10768. source: "./media/characters/elyssia/front.svg",
  10769. extra: 2201 / 2035,
  10770. bottom: 0.05
  10771. }
  10772. },
  10773. frontClothed: {
  10774. height: math.unit(6, "feet"),
  10775. weight: math.unit(150, "lb"),
  10776. name: "Front (Clothed)",
  10777. image: {
  10778. source: "./media/characters/elyssia/front-clothed.svg",
  10779. extra: 2201 / 2035,
  10780. bottom: 0.05
  10781. }
  10782. },
  10783. back: {
  10784. height: math.unit(6, "feet"),
  10785. weight: math.unit(150, "lb"),
  10786. name: "Back",
  10787. image: {
  10788. source: "./media/characters/elyssia/back.svg",
  10789. extra: 2201 / 2035,
  10790. bottom: 0.013
  10791. }
  10792. },
  10793. },
  10794. [
  10795. {
  10796. name: "Smaller",
  10797. height: math.unit(150, "feet")
  10798. },
  10799. {
  10800. name: "Standard",
  10801. height: math.unit(1400, "feet"),
  10802. default: true
  10803. },
  10804. {
  10805. name: "Distracted",
  10806. height: math.unit(15000, "feet")
  10807. },
  10808. ]
  10809. ))
  10810. characterMakers.push(() => makeCharacter(
  10811. { name: "Geno Maxwell" },
  10812. {
  10813. front: {
  10814. height: math.unit(7 + 4 / 12, "feet"),
  10815. weight: math.unit(500, "lb"),
  10816. name: "Front",
  10817. image: {
  10818. source: "./media/characters/geno-maxwell/front.svg",
  10819. extra: 2207 / 2040,
  10820. bottom: 0.015
  10821. }
  10822. },
  10823. },
  10824. [
  10825. {
  10826. name: "Micro",
  10827. height: math.unit(3, "inches")
  10828. },
  10829. {
  10830. name: "Normal",
  10831. height: math.unit(7 + 4 / 12, "feet"),
  10832. default: true
  10833. },
  10834. {
  10835. name: "Macro",
  10836. height: math.unit(220, "feet")
  10837. },
  10838. {
  10839. name: "Megamacro",
  10840. height: math.unit(11, "miles")
  10841. },
  10842. ]
  10843. ))
  10844. characterMakers.push(() => makeCharacter(
  10845. { name: "Regena Maxwell" },
  10846. {
  10847. front: {
  10848. height: math.unit(7 + 4 / 12, "feet"),
  10849. weight: math.unit(500, "lb"),
  10850. name: "Front",
  10851. image: {
  10852. source: "./media/characters/regena-maxwell/front.svg",
  10853. extra: 3115 / 2770,
  10854. bottom: 0.02
  10855. }
  10856. },
  10857. },
  10858. [
  10859. {
  10860. name: "Normal",
  10861. height: math.unit(7 + 4 / 12, "feet"),
  10862. default: true
  10863. },
  10864. {
  10865. name: "Macro",
  10866. height: math.unit(220, "feet")
  10867. },
  10868. {
  10869. name: "Megamacro",
  10870. height: math.unit(11, "miles")
  10871. },
  10872. ]
  10873. ))
  10874. characterMakers.push(() => makeCharacter(
  10875. { name: "XGlidingDragonX" },
  10876. {
  10877. front: {
  10878. height: math.unit(6, "feet"),
  10879. weight: math.unit(150, "lb"),
  10880. name: "Front",
  10881. image: {
  10882. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10883. extra: 860 / 690,
  10884. bottom: 0.03
  10885. }
  10886. },
  10887. },
  10888. [
  10889. {
  10890. name: "Normal",
  10891. height: math.unit(1.7, "meters"),
  10892. default: true
  10893. },
  10894. ]
  10895. ))
  10896. characterMakers.push(() => makeCharacter(
  10897. { name: "Quilly" },
  10898. {
  10899. front: {
  10900. height: math.unit(6, "feet"),
  10901. weight: math.unit(150, "lb"),
  10902. name: "Front",
  10903. image: {
  10904. source: "./media/characters/quilly/front.svg",
  10905. extra: 890 / 776
  10906. }
  10907. },
  10908. },
  10909. [
  10910. {
  10911. name: "Gigamacro",
  10912. height: math.unit(404090, "miles"),
  10913. default: true
  10914. },
  10915. ]
  10916. ))
  10917. characterMakers.push(() => makeCharacter(
  10918. { name: "Tempest" },
  10919. {
  10920. front: {
  10921. height: math.unit(7 + 8 / 12, "feet"),
  10922. weight: math.unit(350, "lb"),
  10923. name: "Front",
  10924. image: {
  10925. source: "./media/characters/tempest/front.svg",
  10926. extra: 1175 / 1086,
  10927. bottom: 0.02
  10928. }
  10929. },
  10930. },
  10931. [
  10932. {
  10933. name: "Normal",
  10934. height: math.unit(7 + 8 / 12, "feet"),
  10935. default: true
  10936. },
  10937. ]
  10938. ))
  10939. characterMakers.push(() => makeCharacter(
  10940. { name: "Rodger" },
  10941. {
  10942. side: {
  10943. height: math.unit(4 + 5 / 12, "feet"),
  10944. weight: math.unit(80, "lb"),
  10945. name: "Side",
  10946. image: {
  10947. source: "./media/characters/rodger/side.svg",
  10948. extra: 1235 / 1118
  10949. }
  10950. },
  10951. },
  10952. [
  10953. {
  10954. name: "Micro",
  10955. height: math.unit(1, "inch")
  10956. },
  10957. {
  10958. name: "Normal",
  10959. height: math.unit(4 + 5 / 12, "feet"),
  10960. default: true
  10961. },
  10962. {
  10963. name: "Macro",
  10964. height: math.unit(120, "feet")
  10965. },
  10966. ]
  10967. ))
  10968. characterMakers.push(() => makeCharacter(
  10969. { name: "Danyel" },
  10970. {
  10971. front: {
  10972. height: math.unit(6, "feet"),
  10973. weight: math.unit(150, "lb"),
  10974. name: "Front",
  10975. image: {
  10976. source: "./media/characters/danyel/front.svg",
  10977. extra: 1185 / 1123,
  10978. bottom: 0.05
  10979. }
  10980. },
  10981. },
  10982. [
  10983. {
  10984. name: "Shrunken",
  10985. height: math.unit(0.5, "mm")
  10986. },
  10987. {
  10988. name: "Micro",
  10989. height: math.unit(1, "mm"),
  10990. default: true
  10991. },
  10992. {
  10993. name: "Upsized",
  10994. height: math.unit(5 + 5 / 12, "feet")
  10995. },
  10996. ]
  10997. ))
  10998. characterMakers.push(() => makeCharacter(
  10999. { name: "Vivian Bijoux" },
  11000. {
  11001. front: {
  11002. height: math.unit(5 + 6 / 12, "feet"),
  11003. weight: math.unit(200, "lb"),
  11004. name: "Front",
  11005. image: {
  11006. source: "./media/characters/vivian-bijoux/front.svg",
  11007. extra: 1,
  11008. bottom: 0.072
  11009. }
  11010. },
  11011. },
  11012. [
  11013. {
  11014. name: "Normal",
  11015. height: math.unit(5 + 6 / 12, "feet"),
  11016. default: true
  11017. },
  11018. {
  11019. name: "Bad Dream",
  11020. height: math.unit(500, "feet")
  11021. },
  11022. {
  11023. name: "Nightmare",
  11024. height: math.unit(500, "miles")
  11025. },
  11026. ]
  11027. ))
  11028. characterMakers.push(() => makeCharacter(
  11029. { name: "Zeta" },
  11030. {
  11031. front: {
  11032. height: math.unit(6 + 1 / 12, "feet"),
  11033. weight: math.unit(260, "lb"),
  11034. name: "Front",
  11035. image: {
  11036. source: "./media/characters/zeta/front.svg",
  11037. extra: 1968 / 1889,
  11038. bottom: 0.06
  11039. }
  11040. },
  11041. back: {
  11042. height: math.unit(6 + 1 / 12, "feet"),
  11043. weight: math.unit(260, "lb"),
  11044. name: "Back",
  11045. image: {
  11046. source: "./media/characters/zeta/back.svg",
  11047. extra: 1944 / 1858,
  11048. bottom: 0.03
  11049. }
  11050. },
  11051. hand: {
  11052. height: math.unit(1.112, "feet"),
  11053. name: "Hand",
  11054. image: {
  11055. source: "./media/characters/zeta/hand.svg"
  11056. }
  11057. },
  11058. foot: {
  11059. height: math.unit(1.48, "feet"),
  11060. name: "Foot",
  11061. image: {
  11062. source: "./media/characters/zeta/foot.svg"
  11063. }
  11064. },
  11065. },
  11066. [
  11067. {
  11068. name: "Micro",
  11069. height: math.unit(6, "inches")
  11070. },
  11071. {
  11072. name: "Normal",
  11073. height: math.unit(6 + 1 / 12, "feet"),
  11074. default: true
  11075. },
  11076. {
  11077. name: "Macro",
  11078. height: math.unit(20, "feet")
  11079. },
  11080. ]
  11081. ))
  11082. characterMakers.push(() => makeCharacter(
  11083. { name: "Jamie Larsen" },
  11084. {
  11085. front: {
  11086. height: math.unit(6, "feet"),
  11087. weight: math.unit(150, "lb"),
  11088. name: "Front",
  11089. image: {
  11090. source: "./media/characters/jamie-larsen/front.svg",
  11091. extra: 962 / 933,
  11092. bottom: 0.02
  11093. }
  11094. },
  11095. back: {
  11096. height: math.unit(6, "feet"),
  11097. weight: math.unit(150, "lb"),
  11098. name: "Back",
  11099. image: {
  11100. source: "./media/characters/jamie-larsen/back.svg",
  11101. extra: 997 / 946
  11102. }
  11103. },
  11104. },
  11105. [
  11106. {
  11107. name: "Macro",
  11108. height: math.unit(28 + 7 / 12, "feet"),
  11109. default: true
  11110. },
  11111. {
  11112. name: "Macro+",
  11113. height: math.unit(180, "feet")
  11114. },
  11115. {
  11116. name: "Megamacro",
  11117. height: math.unit(10, "miles")
  11118. },
  11119. {
  11120. name: "Gigamacro",
  11121. height: math.unit(200000, "miles")
  11122. },
  11123. ]
  11124. ))
  11125. characterMakers.push(() => makeCharacter(
  11126. { name: "Vance" },
  11127. {
  11128. front: {
  11129. height: math.unit(6, "feet"),
  11130. weight: math.unit(120, "lb"),
  11131. name: "Front",
  11132. image: {
  11133. source: "./media/characters/vance/front.svg",
  11134. extra: 1980 / 1890,
  11135. bottom: 0.09
  11136. }
  11137. },
  11138. back: {
  11139. height: math.unit(6, "feet"),
  11140. weight: math.unit(120, "lb"),
  11141. name: "Back",
  11142. image: {
  11143. source: "./media/characters/vance/back.svg",
  11144. extra: 2081 / 1994,
  11145. bottom: 0.014
  11146. }
  11147. },
  11148. hand: {
  11149. height: math.unit(0.88, "feet"),
  11150. name: "Hand",
  11151. image: {
  11152. source: "./media/characters/vance/hand.svg"
  11153. }
  11154. },
  11155. foot: {
  11156. height: math.unit(0.64, "feet"),
  11157. name: "Foot",
  11158. image: {
  11159. source: "./media/characters/vance/foot.svg"
  11160. }
  11161. },
  11162. },
  11163. [
  11164. {
  11165. name: "Small",
  11166. height: math.unit(90, "feet"),
  11167. default: true
  11168. },
  11169. {
  11170. name: "Macro",
  11171. height: math.unit(100, "meters")
  11172. },
  11173. {
  11174. name: "Megamacro",
  11175. height: math.unit(15, "miles")
  11176. },
  11177. ]
  11178. ))
  11179. characterMakers.push(() => makeCharacter(
  11180. { name: "Xochitl" },
  11181. {
  11182. front: {
  11183. height: math.unit(6, "feet"),
  11184. weight: math.unit(180, "lb"),
  11185. name: "Front",
  11186. image: {
  11187. source: "./media/characters/xochitl/front.svg",
  11188. extra: 2297 / 2261,
  11189. bottom: 0.065
  11190. }
  11191. },
  11192. back: {
  11193. height: math.unit(6, "feet"),
  11194. weight: math.unit(180, "lb"),
  11195. name: "Back",
  11196. image: {
  11197. source: "./media/characters/xochitl/back.svg",
  11198. extra: 2386 / 2354,
  11199. bottom: 0.01
  11200. }
  11201. },
  11202. foot: {
  11203. height: math.unit(6 / 5 * 1.15, "feet"),
  11204. weight: math.unit(150, "lb"),
  11205. name: "Foot",
  11206. image: {
  11207. source: "./media/characters/xochitl/foot.svg"
  11208. }
  11209. },
  11210. },
  11211. [
  11212. {
  11213. name: "Macro",
  11214. height: math.unit(80, "feet")
  11215. },
  11216. {
  11217. name: "Macro+",
  11218. height: math.unit(400, "feet"),
  11219. default: true
  11220. },
  11221. {
  11222. name: "Gigamacro",
  11223. height: math.unit(80000, "miles")
  11224. },
  11225. {
  11226. name: "Gigamacro+",
  11227. height: math.unit(400000, "miles")
  11228. },
  11229. {
  11230. name: "Teramacro",
  11231. height: math.unit(300, "AU")
  11232. },
  11233. ]
  11234. ))
  11235. characterMakers.push(() => makeCharacter(
  11236. { name: "Vincent" },
  11237. {
  11238. front: {
  11239. height: math.unit(6, "feet"),
  11240. weight: math.unit(150, "lb"),
  11241. name: "Front",
  11242. image: {
  11243. source: "./media/characters/vincent/front.svg",
  11244. extra: 1130 / 1080,
  11245. bottom: 0.055
  11246. }
  11247. },
  11248. beak: {
  11249. height: math.unit(6 * 0.1, "feet"),
  11250. name: "Beak",
  11251. image: {
  11252. source: "./media/characters/vincent/beak.svg"
  11253. }
  11254. },
  11255. hand: {
  11256. height: math.unit(6 * 0.85, "feet"),
  11257. weight: math.unit(150, "lb"),
  11258. name: "Hand",
  11259. image: {
  11260. source: "./media/characters/vincent/hand.svg"
  11261. }
  11262. },
  11263. foot: {
  11264. height: math.unit(6 * 0.19, "feet"),
  11265. weight: math.unit(150, "lb"),
  11266. name: "Foot",
  11267. image: {
  11268. source: "./media/characters/vincent/foot.svg"
  11269. }
  11270. },
  11271. },
  11272. [
  11273. {
  11274. name: "Base",
  11275. height: math.unit(6 + 5 / 12, "feet"),
  11276. default: true
  11277. },
  11278. {
  11279. name: "Macro",
  11280. height: math.unit(300, "feet")
  11281. },
  11282. {
  11283. name: "Megamacro",
  11284. height: math.unit(2, "miles")
  11285. },
  11286. {
  11287. name: "Gigamacro",
  11288. height: math.unit(1000, "miles")
  11289. },
  11290. ]
  11291. ))
  11292. characterMakers.push(() => makeCharacter(
  11293. { name: "Jay" },
  11294. {
  11295. front: {
  11296. height: math.unit(6 + 2 / 12, "feet"),
  11297. weight: math.unit(265, "lb"),
  11298. name: "Front",
  11299. image: {
  11300. source: "./media/characters/jay/front.svg",
  11301. extra: 1510 / 1430,
  11302. bottom: 0.042
  11303. }
  11304. },
  11305. back: {
  11306. height: math.unit(6 + 2 / 12, "feet"),
  11307. weight: math.unit(265, "lb"),
  11308. name: "Back",
  11309. image: {
  11310. source: "./media/characters/jay/back.svg",
  11311. extra: 1510 / 1430,
  11312. bottom: 0.025
  11313. }
  11314. },
  11315. clothed: {
  11316. height: math.unit(6 + 2 / 12, "feet"),
  11317. weight: math.unit(265, "lb"),
  11318. name: "Front (Clothed)",
  11319. image: {
  11320. source: "./media/characters/jay/clothed.svg",
  11321. extra: 744 / 699,
  11322. bottom: 0.043
  11323. }
  11324. },
  11325. head: {
  11326. height: math.unit(1.772, "feet"),
  11327. name: "Head",
  11328. image: {
  11329. source: "./media/characters/jay/head.svg"
  11330. }
  11331. },
  11332. sizeRay: {
  11333. height: math.unit(1.331, "feet"),
  11334. name: "Size Ray",
  11335. image: {
  11336. source: "./media/characters/jay/size-ray.svg"
  11337. }
  11338. },
  11339. },
  11340. [
  11341. {
  11342. name: "Micro",
  11343. height: math.unit(1, "inch")
  11344. },
  11345. {
  11346. name: "Normal",
  11347. height: math.unit(6 + 2 / 12, "feet"),
  11348. default: true
  11349. },
  11350. {
  11351. name: "Macro",
  11352. height: math.unit(1, "mile")
  11353. },
  11354. {
  11355. name: "Megamacro",
  11356. height: math.unit(100, "miles")
  11357. },
  11358. ]
  11359. ))
  11360. characterMakers.push(() => makeCharacter(
  11361. { name: "Coatl" },
  11362. {
  11363. front: {
  11364. height: math.unit(2, "meters"),
  11365. weight: math.unit(500, "kg"),
  11366. name: "Front",
  11367. image: {
  11368. source: "./media/characters/coatl/front.svg",
  11369. extra: 3948 / 3500,
  11370. bottom: 0.082
  11371. }
  11372. },
  11373. },
  11374. [
  11375. {
  11376. name: "Normal",
  11377. height: math.unit(4, "meters")
  11378. },
  11379. {
  11380. name: "Macro",
  11381. height: math.unit(100, "meters"),
  11382. default: true
  11383. },
  11384. {
  11385. name: "Macro+",
  11386. height: math.unit(300, "meters")
  11387. },
  11388. {
  11389. name: "Megamacro",
  11390. height: math.unit(3, "gigameters")
  11391. },
  11392. {
  11393. name: "Megamacro+",
  11394. height: math.unit(300, "terameters")
  11395. },
  11396. {
  11397. name: "Megamacro++",
  11398. height: math.unit(3, "lightyears")
  11399. },
  11400. ]
  11401. ))
  11402. characterMakers.push(() => makeCharacter(
  11403. { name: "Shiroryu" },
  11404. {
  11405. front: {
  11406. height: math.unit(6, "feet"),
  11407. weight: math.unit(50, "kg"),
  11408. name: "front",
  11409. image: {
  11410. source: "./media/characters/shiroryu/front.svg",
  11411. extra: 1990 / 1935
  11412. }
  11413. },
  11414. },
  11415. [
  11416. {
  11417. name: "Mortal Mingling",
  11418. height: math.unit(3, "meters")
  11419. },
  11420. {
  11421. name: "Kaiju-ish",
  11422. height: math.unit(250, "meters")
  11423. },
  11424. {
  11425. name: "Somewhat Godly",
  11426. height: math.unit(400, "km"),
  11427. default: true
  11428. },
  11429. {
  11430. name: "Planetary",
  11431. height: math.unit(300, "megameters")
  11432. },
  11433. {
  11434. name: "Galaxy-dwarfing",
  11435. height: math.unit(450, "kiloparsecs")
  11436. },
  11437. {
  11438. name: "Universe Eater",
  11439. height: math.unit(150, "gigaparsecs")
  11440. },
  11441. {
  11442. name: "Almost Immeasurable",
  11443. height: math.unit(1.3e266, "yottaparsecs")
  11444. },
  11445. ]
  11446. ))
  11447. characterMakers.push(() => makeCharacter(
  11448. { name: "Umeko" },
  11449. {
  11450. front: {
  11451. height: math.unit(6, "feet"),
  11452. weight: math.unit(150, "lb"),
  11453. name: "Front",
  11454. image: {
  11455. source: "./media/characters/umeko/front.svg",
  11456. extra: 1,
  11457. bottom: 0.019
  11458. }
  11459. },
  11460. frontArmored: {
  11461. height: math.unit(6, "feet"),
  11462. weight: math.unit(150, "lb"),
  11463. name: "Front (Armored)",
  11464. image: {
  11465. source: "./media/characters/umeko/front-armored.svg",
  11466. extra: 1,
  11467. bottom: 0.021
  11468. }
  11469. },
  11470. },
  11471. [
  11472. {
  11473. name: "Macro",
  11474. height: math.unit(220, "feet"),
  11475. default: true
  11476. },
  11477. {
  11478. name: "Guardian Dragon",
  11479. height: math.unit(50, "miles")
  11480. },
  11481. {
  11482. name: "Cosmic",
  11483. height: math.unit(800000, "miles")
  11484. },
  11485. ]
  11486. ))
  11487. characterMakers.push(() => makeCharacter(
  11488. { name: "Cassidy" },
  11489. {
  11490. front: {
  11491. height: math.unit(6, "feet"),
  11492. weight: math.unit(150, "lb"),
  11493. name: "Front",
  11494. image: {
  11495. source: "./media/characters/cassidy/front.svg",
  11496. extra: 1,
  11497. bottom: 0.043
  11498. }
  11499. },
  11500. },
  11501. [
  11502. {
  11503. name: "Canon Height",
  11504. height: math.unit(120, "feet"),
  11505. default: true
  11506. },
  11507. {
  11508. name: "Macro+",
  11509. height: math.unit(400, "feet")
  11510. },
  11511. {
  11512. name: "Macro++",
  11513. height: math.unit(4000, "feet")
  11514. },
  11515. {
  11516. name: "Megamacro",
  11517. height: math.unit(3, "miles")
  11518. },
  11519. ]
  11520. ))
  11521. characterMakers.push(() => makeCharacter(
  11522. { name: "Isaac" },
  11523. {
  11524. front: {
  11525. height: math.unit(6, "feet"),
  11526. weight: math.unit(150, "lb"),
  11527. name: "Front",
  11528. image: {
  11529. source: "./media/characters/isaac/front.svg",
  11530. extra: 896 / 815,
  11531. bottom: 0.11
  11532. }
  11533. },
  11534. },
  11535. [
  11536. {
  11537. name: "Human Size",
  11538. height: math.unit(8, "feet"),
  11539. default: true
  11540. },
  11541. {
  11542. name: "Macro",
  11543. height: math.unit(400, "feet")
  11544. },
  11545. {
  11546. name: "Megamacro",
  11547. height: math.unit(50, "miles")
  11548. },
  11549. {
  11550. name: "Canon Height",
  11551. height: math.unit(200, "AU")
  11552. },
  11553. ]
  11554. ))
  11555. characterMakers.push(() => makeCharacter(
  11556. { name: "Sleekit" },
  11557. {
  11558. front: {
  11559. height: math.unit(6, "feet"),
  11560. weight: math.unit(72, "kg"),
  11561. name: "Front",
  11562. image: {
  11563. source: "./media/characters/sleekit/front.svg",
  11564. extra: 4693 / 4487,
  11565. bottom: 0.012
  11566. }
  11567. },
  11568. },
  11569. [
  11570. {
  11571. name: "Minimum Height",
  11572. height: math.unit(10, "meters")
  11573. },
  11574. {
  11575. name: "Smaller",
  11576. height: math.unit(25, "meters")
  11577. },
  11578. {
  11579. name: "Larger",
  11580. height: math.unit(38, "meters"),
  11581. default: true
  11582. },
  11583. {
  11584. name: "Maximum height",
  11585. height: math.unit(100, "meters")
  11586. },
  11587. ]
  11588. ))
  11589. characterMakers.push(() => makeCharacter(
  11590. { name: "Nillia" },
  11591. {
  11592. front: {
  11593. height: math.unit(6, "feet"),
  11594. weight: math.unit(150, "lb"),
  11595. name: "Front",
  11596. image: {
  11597. source: "./media/characters/nillia/front.svg",
  11598. extra: 2195 / 2037,
  11599. bottom: 0.005
  11600. }
  11601. },
  11602. back: {
  11603. height: math.unit(6, "feet"),
  11604. weight: math.unit(150, "lb"),
  11605. name: "Back",
  11606. image: {
  11607. source: "./media/characters/nillia/back.svg",
  11608. extra: 2195 / 2037,
  11609. bottom: 0.005
  11610. }
  11611. },
  11612. },
  11613. [
  11614. {
  11615. name: "Canon Height",
  11616. height: math.unit(489, "feet"),
  11617. default: true
  11618. }
  11619. ]
  11620. ))
  11621. characterMakers.push(() => makeCharacter(
  11622. { name: "Mesmyriza" },
  11623. {
  11624. front: {
  11625. height: math.unit(6, "feet"),
  11626. weight: math.unit(150, "lb"),
  11627. name: "Front",
  11628. image: {
  11629. source: "./media/characters/mesmyriza/front.svg",
  11630. extra: 2067 / 1784,
  11631. bottom: 0.035
  11632. }
  11633. },
  11634. foot: {
  11635. height: math.unit(6 / (250 / 35), "feet"),
  11636. name: "Foot",
  11637. image: {
  11638. source: "./media/characters/mesmyriza/foot.svg"
  11639. }
  11640. },
  11641. },
  11642. [
  11643. {
  11644. name: "Macro",
  11645. height: math.unit(457, "meters"),
  11646. default: true
  11647. },
  11648. {
  11649. name: "Megamacro",
  11650. height: math.unit(8, "megameters")
  11651. },
  11652. ]
  11653. ))
  11654. characterMakers.push(() => makeCharacter(
  11655. { name: "Saudade" },
  11656. {
  11657. front: {
  11658. height: math.unit(6, "feet"),
  11659. weight: math.unit(250, "lb"),
  11660. name: "Front",
  11661. image: {
  11662. source: "./media/characters/saudade/front.svg",
  11663. extra: 1172 / 1139,
  11664. bottom: 0.035
  11665. }
  11666. },
  11667. },
  11668. [
  11669. {
  11670. name: "Micro",
  11671. height: math.unit(3, "inches")
  11672. },
  11673. {
  11674. name: "Normal",
  11675. height: math.unit(6, "feet"),
  11676. default: true
  11677. },
  11678. {
  11679. name: "Macro",
  11680. height: math.unit(50, "feet")
  11681. },
  11682. {
  11683. name: "Megamacro",
  11684. height: math.unit(2800, "feet")
  11685. },
  11686. ]
  11687. ))
  11688. characterMakers.push(() => makeCharacter(
  11689. { name: "Keireer" },
  11690. {
  11691. front: {
  11692. height: math.unit(5 + 4 / 12, "feet"),
  11693. weight: math.unit(100, "lb"),
  11694. name: "Front",
  11695. image: {
  11696. source: "./media/characters/keireer/front.svg",
  11697. extra: 716 / 666,
  11698. bottom: 0.05
  11699. }
  11700. },
  11701. },
  11702. [
  11703. {
  11704. name: "Normal",
  11705. height: math.unit(5 + 4 / 12, "feet"),
  11706. default: true
  11707. },
  11708. ]
  11709. ))
  11710. characterMakers.push(() => makeCharacter(
  11711. { name: "Mirja" },
  11712. {
  11713. front: {
  11714. height: math.unit(6, "feet"),
  11715. weight: math.unit(90, "kg"),
  11716. name: "Front",
  11717. image: {
  11718. source: "./media/characters/mirja/front.svg",
  11719. extra: 1789 / 1683,
  11720. bottom: 0.05
  11721. }
  11722. },
  11723. frontDressed: {
  11724. height: math.unit(6, "feet"),
  11725. weight: math.unit(90, "lb"),
  11726. name: "Front (Dressed)",
  11727. image: {
  11728. source: "./media/characters/mirja/front-dressed.svg",
  11729. extra: 1789 / 1683,
  11730. bottom: 0.05
  11731. }
  11732. },
  11733. back: {
  11734. height: math.unit(6, "feet"),
  11735. weight: math.unit(90, "lb"),
  11736. name: "Back",
  11737. image: {
  11738. source: "./media/characters/mirja/back.svg",
  11739. extra: 953 / 917,
  11740. bottom: 0.017
  11741. }
  11742. },
  11743. },
  11744. [
  11745. {
  11746. name: "\"Incognito\"",
  11747. height: math.unit(3, "meters")
  11748. },
  11749. {
  11750. name: "Strolling Size",
  11751. height: math.unit(15, "km")
  11752. },
  11753. {
  11754. name: "Larger Strolling Size",
  11755. height: math.unit(400, "km")
  11756. },
  11757. {
  11758. name: "Preferred Size",
  11759. height: math.unit(5000, "km")
  11760. },
  11761. {
  11762. name: "True Size",
  11763. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11764. default: true
  11765. },
  11766. ]
  11767. ))
  11768. characterMakers.push(() => makeCharacter(
  11769. { name: "Nightraver" },
  11770. {
  11771. front: {
  11772. height: math.unit(15, "feet"),
  11773. weight: math.unit(880, "kg"),
  11774. name: "Front",
  11775. image: {
  11776. source: "./media/characters/nightraver/front.svg",
  11777. extra: 2444 / 2160,
  11778. bottom: 0.027
  11779. }
  11780. },
  11781. back: {
  11782. height: math.unit(15, "feet"),
  11783. weight: math.unit(880, "kg"),
  11784. name: "Back",
  11785. image: {
  11786. source: "./media/characters/nightraver/back.svg",
  11787. extra: 2309 / 2180,
  11788. bottom: 0.005
  11789. }
  11790. },
  11791. sole: {
  11792. height: math.unit(2.878, "feet"),
  11793. name: "Sole",
  11794. image: {
  11795. source: "./media/characters/nightraver/sole.svg"
  11796. }
  11797. },
  11798. foot: {
  11799. height: math.unit(2.285, "feet"),
  11800. name: "Foot",
  11801. image: {
  11802. source: "./media/characters/nightraver/foot.svg"
  11803. }
  11804. },
  11805. maw: {
  11806. height: math.unit(2.67, "feet"),
  11807. name: "Maw",
  11808. image: {
  11809. source: "./media/characters/nightraver/maw.svg"
  11810. }
  11811. },
  11812. },
  11813. [
  11814. {
  11815. name: "Micro",
  11816. height: math.unit(1, "cm")
  11817. },
  11818. {
  11819. name: "Normal",
  11820. height: math.unit(15, "feet"),
  11821. default: true
  11822. },
  11823. {
  11824. name: "Macro",
  11825. height: math.unit(300, "feet")
  11826. },
  11827. {
  11828. name: "Megamacro",
  11829. height: math.unit(300, "miles")
  11830. },
  11831. {
  11832. name: "Gigamacro",
  11833. height: math.unit(10000, "miles")
  11834. },
  11835. ]
  11836. ))
  11837. characterMakers.push(() => makeCharacter(
  11838. { name: "Arc" },
  11839. {
  11840. side: {
  11841. height: math.unit(2, "inches"),
  11842. weight: math.unit(5, "grams"),
  11843. name: "Side",
  11844. image: {
  11845. source: "./media/characters/arc/side.svg"
  11846. }
  11847. },
  11848. },
  11849. [
  11850. {
  11851. name: "Micro",
  11852. height: math.unit(2, "inches"),
  11853. default: true
  11854. },
  11855. ]
  11856. ))
  11857. characterMakers.push(() => makeCharacter(
  11858. { name: "Nebula Shahar" },
  11859. {
  11860. front: {
  11861. height: math.unit(1.1938, "meters"),
  11862. weight: math.unit(54, "kg"),
  11863. name: "Front",
  11864. image: {
  11865. source: "./media/characters/nebula-shahar/front.svg",
  11866. extra: 1642 / 1436,
  11867. bottom: 0.06
  11868. }
  11869. },
  11870. },
  11871. [
  11872. {
  11873. name: "Megamicro",
  11874. height: math.unit(0.3, "mm")
  11875. },
  11876. {
  11877. name: "Micro",
  11878. height: math.unit(3, "cm")
  11879. },
  11880. {
  11881. name: "Normal",
  11882. height: math.unit(138, "cm"),
  11883. default: true
  11884. },
  11885. {
  11886. name: "Macro",
  11887. height: math.unit(30, "m")
  11888. },
  11889. ]
  11890. ))
  11891. characterMakers.push(() => makeCharacter(
  11892. { name: "Shayla" },
  11893. {
  11894. front: {
  11895. height: math.unit(5.24, "feet"),
  11896. weight: math.unit(150, "lb"),
  11897. name: "Front",
  11898. image: {
  11899. source: "./media/characters/shayla/front.svg",
  11900. extra: 1512 / 1414,
  11901. bottom: 0.01
  11902. }
  11903. },
  11904. back: {
  11905. height: math.unit(5.24, "feet"),
  11906. weight: math.unit(150, "lb"),
  11907. name: "Back",
  11908. image: {
  11909. source: "./media/characters/shayla/back.svg",
  11910. extra: 1512 / 1414
  11911. }
  11912. },
  11913. hand: {
  11914. height: math.unit(0.7781496062992126, "feet"),
  11915. name: "Hand",
  11916. image: {
  11917. source: "./media/characters/shayla/hand.svg"
  11918. }
  11919. },
  11920. foot: {
  11921. height: math.unit(1.4206036745406823, "feet"),
  11922. name: "Foot",
  11923. image: {
  11924. source: "./media/characters/shayla/foot.svg"
  11925. }
  11926. },
  11927. },
  11928. [
  11929. {
  11930. name: "Micro",
  11931. height: math.unit(0.32, "feet")
  11932. },
  11933. {
  11934. name: "Normal",
  11935. height: math.unit(5.24, "feet"),
  11936. default: true
  11937. },
  11938. {
  11939. name: "Macro",
  11940. height: math.unit(492.12, "feet")
  11941. },
  11942. {
  11943. name: "Megamacro",
  11944. height: math.unit(186.41, "miles")
  11945. },
  11946. ]
  11947. ))
  11948. characterMakers.push(() => makeCharacter(
  11949. { name: "Pia Jr." },
  11950. {
  11951. front: {
  11952. height: math.unit(2.2, "m"),
  11953. weight: math.unit(120, "kg"),
  11954. name: "Front",
  11955. image: {
  11956. source: "./media/characters/pia-jr/front.svg",
  11957. extra: 1000 / 970,
  11958. bottom: 0.035
  11959. }
  11960. },
  11961. hand: {
  11962. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11963. name: "Hand",
  11964. image: {
  11965. source: "./media/characters/pia-jr/hand.svg"
  11966. }
  11967. },
  11968. paw: {
  11969. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11970. name: "Paw",
  11971. image: {
  11972. source: "./media/characters/pia-jr/paw.svg"
  11973. }
  11974. },
  11975. },
  11976. [
  11977. {
  11978. name: "Micro",
  11979. height: math.unit(1.2, "cm")
  11980. },
  11981. {
  11982. name: "Normal",
  11983. height: math.unit(2.2, "m"),
  11984. default: true
  11985. },
  11986. {
  11987. name: "Macro",
  11988. height: math.unit(180, "m")
  11989. },
  11990. {
  11991. name: "Megamacro",
  11992. height: math.unit(420, "km")
  11993. },
  11994. ]
  11995. ))
  11996. characterMakers.push(() => makeCharacter(
  11997. { name: "Pia Sr." },
  11998. {
  11999. front: {
  12000. height: math.unit(2, "m"),
  12001. weight: math.unit(115, "kg"),
  12002. name: "Front",
  12003. image: {
  12004. source: "./media/characters/pia-sr/front.svg",
  12005. extra: 760 / 730,
  12006. bottom: 0.015
  12007. }
  12008. },
  12009. back: {
  12010. height: math.unit(2, "m"),
  12011. weight: math.unit(115, "kg"),
  12012. name: "Back",
  12013. image: {
  12014. source: "./media/characters/pia-sr/back.svg",
  12015. extra: 760 / 730,
  12016. bottom: 0.01
  12017. }
  12018. },
  12019. hand: {
  12020. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12021. name: "Hand",
  12022. image: {
  12023. source: "./media/characters/pia-sr/hand.svg"
  12024. }
  12025. },
  12026. foot: {
  12027. height: math.unit(1.83, "feet"),
  12028. name: "Foot",
  12029. image: {
  12030. source: "./media/characters/pia-sr/foot.svg"
  12031. }
  12032. },
  12033. },
  12034. [
  12035. {
  12036. name: "Micro",
  12037. height: math.unit(88, "mm")
  12038. },
  12039. {
  12040. name: "Normal",
  12041. height: math.unit(2, "m"),
  12042. default: true
  12043. },
  12044. {
  12045. name: "Macro",
  12046. height: math.unit(200, "m")
  12047. },
  12048. {
  12049. name: "Megamacro",
  12050. height: math.unit(420, "km")
  12051. },
  12052. ]
  12053. ))
  12054. characterMakers.push(() => makeCharacter(
  12055. { name: "KIBIBYTE" },
  12056. {
  12057. front: {
  12058. height: math.unit(8 + 2 / 12, "feet"),
  12059. weight: math.unit(300, "lb"),
  12060. name: "Front",
  12061. image: {
  12062. source: "./media/characters/kibibyte/front.svg",
  12063. extra: 2221 / 2098,
  12064. bottom: 0.04
  12065. }
  12066. },
  12067. },
  12068. [
  12069. {
  12070. name: "Normal",
  12071. height: math.unit(8 + 2 / 12, "feet"),
  12072. default: true
  12073. },
  12074. {
  12075. name: "Socialable Macro",
  12076. height: math.unit(50, "feet")
  12077. },
  12078. {
  12079. name: "Macro",
  12080. height: math.unit(300, "feet")
  12081. },
  12082. {
  12083. name: "Megamacro",
  12084. height: math.unit(500, "miles")
  12085. },
  12086. ]
  12087. ))
  12088. characterMakers.push(() => makeCharacter(
  12089. { name: "Felix" },
  12090. {
  12091. front: {
  12092. height: math.unit(6, "feet"),
  12093. weight: math.unit(150, "lb"),
  12094. name: "Front",
  12095. image: {
  12096. source: "./media/characters/felix/front.svg",
  12097. extra: 762 / 722,
  12098. bottom: 0.02
  12099. }
  12100. },
  12101. frontClothed: {
  12102. height: math.unit(6, "feet"),
  12103. weight: math.unit(150, "lb"),
  12104. name: "Front (Clothed)",
  12105. image: {
  12106. source: "./media/characters/felix/front-clothed.svg",
  12107. extra: 762 / 722,
  12108. bottom: 0.02
  12109. }
  12110. },
  12111. },
  12112. [
  12113. {
  12114. name: "Normal",
  12115. height: math.unit(6 + 8 / 12, "feet"),
  12116. default: true
  12117. },
  12118. {
  12119. name: "Macro",
  12120. height: math.unit(2600, "feet")
  12121. },
  12122. {
  12123. name: "Megamacro",
  12124. height: math.unit(450, "miles")
  12125. },
  12126. ]
  12127. ))
  12128. characterMakers.push(() => makeCharacter(
  12129. { name: "Tobo" },
  12130. {
  12131. front: {
  12132. height: math.unit(6 + 1 / 12, "feet"),
  12133. weight: math.unit(250, "lb"),
  12134. name: "Front",
  12135. image: {
  12136. source: "./media/characters/tobo/front.svg",
  12137. extra: 608 / 586,
  12138. bottom: 0.023
  12139. }
  12140. },
  12141. back: {
  12142. height: math.unit(6 + 1 / 12, "feet"),
  12143. weight: math.unit(250, "lb"),
  12144. name: "Back",
  12145. image: {
  12146. source: "./media/characters/tobo/back.svg",
  12147. extra: 608 / 586
  12148. }
  12149. },
  12150. },
  12151. [
  12152. {
  12153. name: "Nano",
  12154. height: math.unit(2, "nm")
  12155. },
  12156. {
  12157. name: "Megamicro",
  12158. height: math.unit(0.1, "mm")
  12159. },
  12160. {
  12161. name: "Micro",
  12162. height: math.unit(1, "inch"),
  12163. default: true
  12164. },
  12165. {
  12166. name: "Human-sized",
  12167. height: math.unit(6 + 1 / 12, "feet")
  12168. },
  12169. {
  12170. name: "Macro",
  12171. height: math.unit(250, "feet")
  12172. },
  12173. {
  12174. name: "Megamacro",
  12175. height: math.unit(75, "miles")
  12176. },
  12177. {
  12178. name: "Texas-sized",
  12179. height: math.unit(750, "miles")
  12180. },
  12181. {
  12182. name: "Teramacro",
  12183. height: math.unit(50000, "miles")
  12184. },
  12185. ]
  12186. ))
  12187. characterMakers.push(() => makeCharacter(
  12188. { name: "Danny Kapowsky" },
  12189. {
  12190. front: {
  12191. height: math.unit(6, "feet"),
  12192. weight: math.unit(269, "lb"),
  12193. name: "Front",
  12194. image: {
  12195. source: "./media/characters/danny-kapowsky/front.svg",
  12196. extra: 766 / 736,
  12197. bottom: 0.044
  12198. }
  12199. },
  12200. back: {
  12201. height: math.unit(6, "feet"),
  12202. weight: math.unit(269, "lb"),
  12203. name: "Back",
  12204. image: {
  12205. source: "./media/characters/danny-kapowsky/back.svg",
  12206. extra: 797 / 760,
  12207. bottom: 0.025
  12208. }
  12209. },
  12210. },
  12211. [
  12212. {
  12213. name: "Macro",
  12214. height: math.unit(150, "feet"),
  12215. default: true
  12216. },
  12217. {
  12218. name: "Macro+",
  12219. height: math.unit(200, "feet")
  12220. },
  12221. {
  12222. name: "Macro++",
  12223. height: math.unit(300, "feet")
  12224. },
  12225. {
  12226. name: "Macro+++",
  12227. height: math.unit(400, "feet")
  12228. },
  12229. ]
  12230. ))
  12231. characterMakers.push(() => makeCharacter(
  12232. { name: "Finn" },
  12233. {
  12234. side: {
  12235. height: math.unit(6, "feet"),
  12236. weight: math.unit(170, "lb"),
  12237. name: "Side",
  12238. image: {
  12239. source: "./media/characters/finn/side.svg",
  12240. extra: 1953 / 1807,
  12241. bottom: 0.057
  12242. }
  12243. },
  12244. },
  12245. [
  12246. {
  12247. name: "Megamacro",
  12248. height: math.unit(14445, "feet"),
  12249. default: true
  12250. },
  12251. ]
  12252. ))
  12253. characterMakers.push(() => makeCharacter(
  12254. { name: "Roy" },
  12255. {
  12256. front: {
  12257. height: math.unit(5 + 6 / 12, "feet"),
  12258. weight: math.unit(125, "lb"),
  12259. name: "Front",
  12260. image: {
  12261. source: "./media/characters/roy/front.svg",
  12262. extra: 1,
  12263. bottom: 0.11
  12264. }
  12265. },
  12266. },
  12267. [
  12268. {
  12269. name: "Micro",
  12270. height: math.unit(3, "inches"),
  12271. default: true
  12272. },
  12273. {
  12274. name: "Normal",
  12275. height: math.unit(5 + 6 / 12, "feet")
  12276. },
  12277. {
  12278. name: "Lesser Macro",
  12279. height: math.unit(60, "feet")
  12280. },
  12281. {
  12282. name: "Greater Macro",
  12283. height: math.unit(120, "feet")
  12284. },
  12285. ]
  12286. ))
  12287. characterMakers.push(() => makeCharacter(
  12288. { name: "Aevsivs" },
  12289. {
  12290. front: {
  12291. height: math.unit(6, "feet"),
  12292. weight: math.unit(100, "lb"),
  12293. name: "Front",
  12294. image: {
  12295. source: "./media/characters/aevsivs/front.svg",
  12296. extra: 1,
  12297. bottom: 0.03
  12298. }
  12299. },
  12300. back: {
  12301. height: math.unit(6, "feet"),
  12302. weight: math.unit(100, "lb"),
  12303. name: "Back",
  12304. image: {
  12305. source: "./media/characters/aevsivs/back.svg"
  12306. }
  12307. },
  12308. },
  12309. [
  12310. {
  12311. name: "Micro",
  12312. height: math.unit(2, "inches"),
  12313. default: true
  12314. },
  12315. {
  12316. name: "Normal",
  12317. height: math.unit(5, "feet")
  12318. },
  12319. ]
  12320. ))
  12321. characterMakers.push(() => makeCharacter(
  12322. { name: "Hildegard" },
  12323. {
  12324. front: {
  12325. height: math.unit(5 + 7 / 12, "feet"),
  12326. weight: math.unit(159, "lb"),
  12327. name: "Front",
  12328. image: {
  12329. source: "./media/characters/hildegard/front.svg",
  12330. extra: 312 / 286,
  12331. bottom: 0.005
  12332. }
  12333. },
  12334. },
  12335. [
  12336. {
  12337. name: "Normal",
  12338. height: math.unit(5 + 7 / 12, "feet"),
  12339. default: true
  12340. },
  12341. ]
  12342. ))
  12343. characterMakers.push(() => makeCharacter(
  12344. { name: "Bernard & Wilder" },
  12345. {
  12346. bernard: {
  12347. height: math.unit(2 + 7 / 12, "feet"),
  12348. weight: math.unit(66, "lb"),
  12349. name: "Bernard",
  12350. rename: true,
  12351. image: {
  12352. source: "./media/characters/bernard-wilder/bernard.svg",
  12353. extra: 192 / 128,
  12354. bottom: 0.05
  12355. }
  12356. },
  12357. wilder: {
  12358. height: math.unit(5 + 8 / 12, "feet"),
  12359. weight: math.unit(143, "lb"),
  12360. name: "Wilder",
  12361. rename: true,
  12362. image: {
  12363. source: "./media/characters/bernard-wilder/wilder.svg",
  12364. extra: 361 / 312,
  12365. bottom: 0.02
  12366. }
  12367. },
  12368. },
  12369. [
  12370. {
  12371. name: "Normal",
  12372. height: math.unit(2 + 7 / 12, "feet"),
  12373. default: true
  12374. },
  12375. ]
  12376. ))
  12377. characterMakers.push(() => makeCharacter(
  12378. { name: "Hearth" },
  12379. {
  12380. anthro: {
  12381. height: math.unit(6 + 1 / 12, "feet"),
  12382. weight: math.unit(155, "lb"),
  12383. name: "Anthro",
  12384. image: {
  12385. source: "./media/characters/hearth/anthro.svg",
  12386. extra: 260 / 250,
  12387. bottom: 0.02
  12388. }
  12389. },
  12390. feral: {
  12391. height: math.unit(3.78, "feet"),
  12392. weight: math.unit(35, "kg"),
  12393. name: "Feral",
  12394. image: {
  12395. source: "./media/characters/hearth/feral.svg",
  12396. extra: 153 / 135,
  12397. bottom: 0.03
  12398. }
  12399. },
  12400. },
  12401. [
  12402. {
  12403. name: "Normal",
  12404. height: math.unit(6 + 1 / 12, "feet"),
  12405. default: true
  12406. },
  12407. ]
  12408. ))
  12409. characterMakers.push(() => makeCharacter(
  12410. { name: "Ingrid" },
  12411. {
  12412. front: {
  12413. height: math.unit(6, "feet"),
  12414. weight: math.unit(182, "lb"),
  12415. name: "Front",
  12416. image: {
  12417. source: "./media/characters/ingrid/front.svg",
  12418. extra: 294 / 268,
  12419. bottom: 0.027
  12420. }
  12421. },
  12422. },
  12423. [
  12424. {
  12425. name: "Normal",
  12426. height: math.unit(6, "feet"),
  12427. default: true
  12428. },
  12429. ]
  12430. ))
  12431. characterMakers.push(() => makeCharacter(
  12432. { name: "Malgam" },
  12433. {
  12434. eevee: {
  12435. height: math.unit(2 + 10 / 12, "feet"),
  12436. weight: math.unit(86, "lb"),
  12437. name: "Malgam",
  12438. image: {
  12439. source: "./media/characters/malgam/eevee.svg",
  12440. extra: 218 / 180,
  12441. bottom: 0.2
  12442. }
  12443. },
  12444. sylveon: {
  12445. height: math.unit(4, "feet"),
  12446. weight: math.unit(101, "lb"),
  12447. name: "Future Malgam",
  12448. rename: true,
  12449. image: {
  12450. source: "./media/characters/malgam/sylveon.svg",
  12451. extra: 371 / 325,
  12452. bottom: 0.015
  12453. }
  12454. },
  12455. gigantamax: {
  12456. height: math.unit(50, "feet"),
  12457. name: "Gigantamax Malgam",
  12458. rename: true,
  12459. image: {
  12460. source: "./media/characters/malgam/gigantamax.svg"
  12461. }
  12462. },
  12463. },
  12464. [
  12465. {
  12466. name: "Normal",
  12467. height: math.unit(2 + 10 / 12, "feet"),
  12468. default: true
  12469. },
  12470. ]
  12471. ))
  12472. characterMakers.push(() => makeCharacter(
  12473. { name: "Fleur" },
  12474. {
  12475. front: {
  12476. height: math.unit(5 + 11 / 12, "feet"),
  12477. weight: math.unit(188, "lb"),
  12478. name: "Front",
  12479. image: {
  12480. source: "./media/characters/fleur/front.svg",
  12481. extra: 309 / 283,
  12482. bottom: 0.007
  12483. }
  12484. },
  12485. },
  12486. [
  12487. {
  12488. name: "Normal",
  12489. height: math.unit(5 + 11 / 12, "feet"),
  12490. default: true
  12491. },
  12492. ]
  12493. ))
  12494. characterMakers.push(() => makeCharacter(
  12495. { name: "Jude" },
  12496. {
  12497. front: {
  12498. height: math.unit(5 + 4 / 12, "feet"),
  12499. weight: math.unit(122, "lb"),
  12500. name: "Front",
  12501. image: {
  12502. source: "./media/characters/jude/front.svg",
  12503. extra: 288 / 273,
  12504. bottom: 0.03
  12505. }
  12506. },
  12507. },
  12508. [
  12509. {
  12510. name: "Normal",
  12511. height: math.unit(5 + 4 / 12, "feet"),
  12512. default: true
  12513. },
  12514. ]
  12515. ))
  12516. characterMakers.push(() => makeCharacter(
  12517. { name: "Seara" },
  12518. {
  12519. front: {
  12520. height: math.unit(5 + 11 / 12, "feet"),
  12521. weight: math.unit(190, "lb"),
  12522. name: "Front",
  12523. image: {
  12524. source: "./media/characters/seara/front.svg",
  12525. extra: 1,
  12526. bottom: 0.05
  12527. }
  12528. },
  12529. },
  12530. [
  12531. {
  12532. name: "Normal",
  12533. height: math.unit(5 + 11 / 12, "feet"),
  12534. default: true
  12535. },
  12536. ]
  12537. ))
  12538. characterMakers.push(() => makeCharacter(
  12539. { name: "Caspian" },
  12540. {
  12541. front: {
  12542. height: math.unit(16 + 5 / 12, "feet"),
  12543. weight: math.unit(524, "lb"),
  12544. name: "Front",
  12545. image: {
  12546. source: "./media/characters/caspian/front.svg",
  12547. extra: 1,
  12548. bottom: 0.04
  12549. }
  12550. },
  12551. },
  12552. [
  12553. {
  12554. name: "Normal",
  12555. height: math.unit(16 + 5 / 12, "feet"),
  12556. default: true
  12557. },
  12558. ]
  12559. ))
  12560. characterMakers.push(() => makeCharacter(
  12561. { name: "Mika" },
  12562. {
  12563. front: {
  12564. height: math.unit(5 + 7 / 12, "feet"),
  12565. weight: math.unit(170, "lb"),
  12566. name: "Front",
  12567. image: {
  12568. source: "./media/characters/mika/front.svg",
  12569. extra: 1,
  12570. bottom: 0.016
  12571. }
  12572. },
  12573. },
  12574. [
  12575. {
  12576. name: "Normal",
  12577. height: math.unit(5 + 7 / 12, "feet"),
  12578. default: true
  12579. },
  12580. ]
  12581. ))
  12582. characterMakers.push(() => makeCharacter(
  12583. { name: "Sol" },
  12584. {
  12585. front: {
  12586. height: math.unit(6 + 2 / 12, "feet"),
  12587. weight: math.unit(268, "lb"),
  12588. name: "Front",
  12589. image: {
  12590. source: "./media/characters/sol/front.svg",
  12591. extra: 247 / 231,
  12592. bottom: 0.05
  12593. }
  12594. },
  12595. },
  12596. [
  12597. {
  12598. name: "Normal",
  12599. height: math.unit(6 + 2 / 12, "feet"),
  12600. default: true
  12601. },
  12602. ]
  12603. ))
  12604. characterMakers.push(() => makeCharacter(
  12605. { name: "Umiko" },
  12606. {
  12607. buizel: {
  12608. height: math.unit(2 + 5 / 12, "feet"),
  12609. weight: math.unit(87, "lb"),
  12610. name: "Buizel",
  12611. image: {
  12612. source: "./media/characters/umiko/buizel.svg",
  12613. extra: 172 / 157,
  12614. bottom: 0.01
  12615. }
  12616. },
  12617. floatzel: {
  12618. height: math.unit(5 + 9 / 12, "feet"),
  12619. weight: math.unit(250, "lb"),
  12620. name: "Floatzel",
  12621. image: {
  12622. source: "./media/characters/umiko/floatzel.svg",
  12623. extra: 262 / 248
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Normal",
  12630. height: math.unit(2 + 5 / 12, "feet"),
  12631. default: true
  12632. },
  12633. ]
  12634. ))
  12635. characterMakers.push(() => makeCharacter(
  12636. { name: "Iliac" },
  12637. {
  12638. front: {
  12639. height: math.unit(6 + 2 / 12, "feet"),
  12640. weight: math.unit(146, "lb"),
  12641. name: "Front",
  12642. image: {
  12643. source: "./media/characters/iliac/front.svg",
  12644. extra: 389 / 365,
  12645. bottom: 0.035
  12646. }
  12647. },
  12648. },
  12649. [
  12650. {
  12651. name: "Normal",
  12652. height: math.unit(6 + 2 / 12, "feet"),
  12653. default: true
  12654. },
  12655. ]
  12656. ))
  12657. characterMakers.push(() => makeCharacter(
  12658. { name: "Topaz" },
  12659. {
  12660. front: {
  12661. height: math.unit(6, "feet"),
  12662. weight: math.unit(170, "lb"),
  12663. name: "Front",
  12664. image: {
  12665. source: "./media/characters/topaz/front.svg",
  12666. extra: 317 / 303,
  12667. bottom: 0.055
  12668. }
  12669. },
  12670. },
  12671. [
  12672. {
  12673. name: "Normal",
  12674. height: math.unit(6, "feet"),
  12675. default: true
  12676. },
  12677. ]
  12678. ))
  12679. characterMakers.push(() => makeCharacter(
  12680. { name: "Gabriel" },
  12681. {
  12682. front: {
  12683. height: math.unit(5 + 11 / 12, "feet"),
  12684. weight: math.unit(144, "lb"),
  12685. name: "Front",
  12686. image: {
  12687. source: "./media/characters/gabriel/front.svg",
  12688. extra: 285 / 262,
  12689. bottom: 0.004
  12690. }
  12691. },
  12692. },
  12693. [
  12694. {
  12695. name: "Normal",
  12696. height: math.unit(5 + 11 / 12, "feet"),
  12697. default: true
  12698. },
  12699. ]
  12700. ))
  12701. characterMakers.push(() => makeCharacter(
  12702. { name: "Tempest (Suicune)" },
  12703. {
  12704. side: {
  12705. height: math.unit(6 + 5 / 12, "feet"),
  12706. weight: math.unit(300, "lb"),
  12707. name: "Side",
  12708. image: {
  12709. source: "./media/characters/tempest-suicune/side.svg",
  12710. extra: 195 / 154,
  12711. bottom: 0.04
  12712. }
  12713. },
  12714. },
  12715. [
  12716. {
  12717. name: "Normal",
  12718. height: math.unit(6 + 5 / 12, "feet"),
  12719. default: true
  12720. },
  12721. ]
  12722. ))
  12723. characterMakers.push(() => makeCharacter(
  12724. { name: "Vulcan" },
  12725. {
  12726. front: {
  12727. height: math.unit(7 + 2 / 12, "feet"),
  12728. weight: math.unit(322, "lb"),
  12729. name: "Front",
  12730. image: {
  12731. source: "./media/characters/vulcan/front.svg",
  12732. extra: 154 / 147,
  12733. bottom: 0.04
  12734. }
  12735. },
  12736. },
  12737. [
  12738. {
  12739. name: "Normal",
  12740. height: math.unit(7 + 2 / 12, "feet"),
  12741. default: true
  12742. },
  12743. ]
  12744. ))
  12745. characterMakers.push(() => makeCharacter(
  12746. { name: "Gault" },
  12747. {
  12748. front: {
  12749. height: math.unit(5 + 10 / 12, "feet"),
  12750. weight: math.unit(264, "lb"),
  12751. name: "Front",
  12752. image: {
  12753. source: "./media/characters/gault/front.svg",
  12754. extra: 161 / 140,
  12755. bottom: 0.028
  12756. }
  12757. },
  12758. },
  12759. [
  12760. {
  12761. name: "Normal",
  12762. height: math.unit(5 + 10 / 12, "feet"),
  12763. default: true
  12764. },
  12765. ]
  12766. ))
  12767. characterMakers.push(() => makeCharacter(
  12768. { name: "Shard" },
  12769. {
  12770. front: {
  12771. height: math.unit(6, "feet"),
  12772. weight: math.unit(150, "lb"),
  12773. name: "Front",
  12774. image: {
  12775. source: "./media/characters/shard/front.svg",
  12776. extra: 273 / 238,
  12777. bottom: 0.02
  12778. }
  12779. },
  12780. },
  12781. [
  12782. {
  12783. name: "Normal",
  12784. height: math.unit(3 + 6 / 12, "feet"),
  12785. default: true
  12786. },
  12787. ]
  12788. ))
  12789. characterMakers.push(() => makeCharacter(
  12790. { name: "Ashe" },
  12791. {
  12792. front: {
  12793. height: math.unit(5 + 11 / 12, "feet"),
  12794. weight: math.unit(146, "lb"),
  12795. name: "Front",
  12796. image: {
  12797. source: "./media/characters/ashe/front.svg",
  12798. extra: 400 / 373,
  12799. bottom: 0.01
  12800. }
  12801. },
  12802. },
  12803. [
  12804. {
  12805. name: "Normal",
  12806. height: math.unit(5 + 11 / 12, "feet"),
  12807. default: true
  12808. },
  12809. ]
  12810. ))
  12811. characterMakers.push(() => makeCharacter(
  12812. { name: "Beatrix" },
  12813. {
  12814. front: {
  12815. height: math.unit(5 + 5 / 12, "feet"),
  12816. weight: math.unit(135, "lb"),
  12817. name: "Front",
  12818. image: {
  12819. source: "./media/characters/beatrix/front.svg",
  12820. extra: 392 / 379,
  12821. bottom: 0.01
  12822. }
  12823. },
  12824. },
  12825. [
  12826. {
  12827. name: "Normal",
  12828. height: math.unit(6, "feet"),
  12829. default: true
  12830. },
  12831. ]
  12832. ))
  12833. characterMakers.push(() => makeCharacter(
  12834. { name: "Ignatius" },
  12835. {
  12836. front: {
  12837. height: math.unit(6, "feet"),
  12838. weight: math.unit(150, "lb"),
  12839. name: "Front",
  12840. image: {
  12841. source: "./media/characters/ignatius/front.svg",
  12842. extra: 245 / 222,
  12843. bottom: 0.01
  12844. }
  12845. },
  12846. },
  12847. [
  12848. {
  12849. name: "Normal",
  12850. height: math.unit(5 + 5 / 12, "feet"),
  12851. default: true
  12852. },
  12853. ]
  12854. ))
  12855. characterMakers.push(() => makeCharacter(
  12856. { name: "Mei Li" },
  12857. {
  12858. front: {
  12859. height: math.unit(6 + 2 / 12, "feet"),
  12860. weight: math.unit(138, "lb"),
  12861. name: "Front",
  12862. image: {
  12863. source: "./media/characters/mei-li/front.svg",
  12864. extra: 237 / 229,
  12865. bottom: 0.03
  12866. }
  12867. },
  12868. },
  12869. [
  12870. {
  12871. name: "Normal",
  12872. height: math.unit(6 + 2 / 12, "feet"),
  12873. default: true
  12874. },
  12875. ]
  12876. ))
  12877. characterMakers.push(() => makeCharacter(
  12878. { name: "Puru" },
  12879. {
  12880. front: {
  12881. height: math.unit(2 + 4 / 12, "feet"),
  12882. weight: math.unit(62, "lb"),
  12883. name: "Front",
  12884. image: {
  12885. source: "./media/characters/puru/front.svg",
  12886. extra: 206 / 149,
  12887. bottom: 0.06
  12888. }
  12889. },
  12890. },
  12891. [
  12892. {
  12893. name: "Normal",
  12894. height: math.unit(2 + 4 / 12, "feet"),
  12895. default: true
  12896. },
  12897. ]
  12898. ))
  12899. characterMakers.push(() => makeCharacter(
  12900. { name: "Kee" },
  12901. {
  12902. taur: {
  12903. height: math.unit(11, "feet"),
  12904. weight: math.unit(500, "lb"),
  12905. name: "Taur",
  12906. image: {
  12907. source: "./media/characters/kee/taur.svg",
  12908. extra: 1,
  12909. bottom: 0.04
  12910. }
  12911. },
  12912. },
  12913. [
  12914. {
  12915. name: "Normal",
  12916. height: math.unit(11, "feet"),
  12917. default: true
  12918. },
  12919. ]
  12920. ))
  12921. characterMakers.push(() => makeCharacter(
  12922. { name: "Cobalt (Dracha)" },
  12923. {
  12924. anthro: {
  12925. height: math.unit(7, "feet"),
  12926. weight: math.unit(190, "lb"),
  12927. name: "Anthro",
  12928. image: {
  12929. source: "./media/characters/cobalt-dracha/anthro.svg",
  12930. extra: 231 / 225,
  12931. bottom: 0.04
  12932. }
  12933. },
  12934. feral: {
  12935. height: math.unit(9 + 7 / 12, "feet"),
  12936. weight: math.unit(294, "lb"),
  12937. name: "Feral",
  12938. image: {
  12939. source: "./media/characters/cobalt-dracha/feral.svg",
  12940. extra: 692 / 633,
  12941. bottom: 0.05
  12942. }
  12943. },
  12944. },
  12945. [
  12946. {
  12947. name: "Normal",
  12948. height: math.unit(7, "feet"),
  12949. default: true
  12950. },
  12951. ]
  12952. ))
  12953. characterMakers.push(() => makeCharacter(
  12954. { name: "Java" },
  12955. {
  12956. fallen: {
  12957. height: math.unit(11 + 8 / 12, "feet"),
  12958. weight: math.unit(485, "lb"),
  12959. name: "Java (Fallen)",
  12960. rename: true,
  12961. image: {
  12962. source: "./media/characters/java/fallen.svg",
  12963. extra: 226 / 208,
  12964. bottom: 0.005
  12965. }
  12966. },
  12967. godkin: {
  12968. height: math.unit(10 + 6 / 12, "feet"),
  12969. weight: math.unit(328, "lb"),
  12970. name: "Java (Godkin)",
  12971. rename: true,
  12972. image: {
  12973. source: "./media/characters/java/godkin.svg",
  12974. extra: 270 / 262,
  12975. bottom: 0.02
  12976. }
  12977. },
  12978. },
  12979. [
  12980. {
  12981. name: "Normal",
  12982. height: math.unit(11 + 8 / 12, "feet"),
  12983. default: true
  12984. },
  12985. ]
  12986. ))
  12987. characterMakers.push(() => makeCharacter(
  12988. { name: "Skoll" },
  12989. {
  12990. front: {
  12991. height: math.unit(7 + 8 / 12, "feet"),
  12992. weight: math.unit(320, "lb"),
  12993. name: "Front",
  12994. image: {
  12995. source: "./media/characters/skoll/front.svg",
  12996. extra: 232 / 220,
  12997. bottom: 0.02
  12998. }
  12999. },
  13000. },
  13001. [
  13002. {
  13003. name: "Normal",
  13004. height: math.unit(7 + 8 / 12, "feet"),
  13005. default: true
  13006. },
  13007. ]
  13008. ))
  13009. characterMakers.push(() => makeCharacter(
  13010. { name: "Purna" },
  13011. {
  13012. front: {
  13013. height: math.unit(5 + 9 / 12, "feet"),
  13014. weight: math.unit(170, "lb"),
  13015. name: "Front",
  13016. image: {
  13017. source: "./media/characters/purna/front.svg",
  13018. extra: 239 / 229,
  13019. bottom: 0.01
  13020. }
  13021. },
  13022. },
  13023. [
  13024. {
  13025. name: "Normal",
  13026. height: math.unit(5 + 9 / 12, "feet"),
  13027. default: true
  13028. },
  13029. ]
  13030. ))
  13031. characterMakers.push(() => makeCharacter(
  13032. { name: "Kuva" },
  13033. {
  13034. front: {
  13035. height: math.unit(5 + 9 / 12, "feet"),
  13036. weight: math.unit(142, "lb"),
  13037. name: "Front",
  13038. image: {
  13039. source: "./media/characters/kuva/front.svg",
  13040. extra: 281 / 271,
  13041. bottom: 0.006
  13042. }
  13043. },
  13044. },
  13045. [
  13046. {
  13047. name: "Normal",
  13048. height: math.unit(5 + 9 / 12, "feet"),
  13049. default: true
  13050. },
  13051. ]
  13052. ))
  13053. characterMakers.push(() => makeCharacter(
  13054. { name: "Embra" },
  13055. {
  13056. anthro: {
  13057. height: math.unit(9 + 2 / 12, "feet"),
  13058. weight: math.unit(270, "lb"),
  13059. name: "Anthro",
  13060. image: {
  13061. source: "./media/characters/embra/anthro.svg",
  13062. extra: 200 / 187,
  13063. bottom: 0.02
  13064. }
  13065. },
  13066. feral: {
  13067. height: math.unit(18 + 8 / 12, "feet"),
  13068. weight: math.unit(576, "lb"),
  13069. name: "Feral",
  13070. image: {
  13071. source: "./media/characters/embra/feral.svg",
  13072. extra: 152 / 137,
  13073. bottom: 0.037
  13074. }
  13075. },
  13076. },
  13077. [
  13078. {
  13079. name: "Normal",
  13080. height: math.unit(9 + 2 / 12, "feet"),
  13081. default: true
  13082. },
  13083. ]
  13084. ))
  13085. characterMakers.push(() => makeCharacter(
  13086. { name: "Grottos" },
  13087. {
  13088. anthro: {
  13089. height: math.unit(10 + 9 / 12, "feet"),
  13090. weight: math.unit(224, "lb"),
  13091. name: "Anthro",
  13092. image: {
  13093. source: "./media/characters/grottos/anthro.svg",
  13094. extra: 350 / 332,
  13095. bottom: 0.045
  13096. }
  13097. },
  13098. feral: {
  13099. height: math.unit(20 + 7 / 12, "feet"),
  13100. weight: math.unit(629, "lb"),
  13101. name: "Feral",
  13102. image: {
  13103. source: "./media/characters/grottos/feral.svg",
  13104. extra: 207 / 190,
  13105. bottom: 0.05
  13106. }
  13107. },
  13108. },
  13109. [
  13110. {
  13111. name: "Normal",
  13112. height: math.unit(10 + 9 / 12, "feet"),
  13113. default: true
  13114. },
  13115. ]
  13116. ))
  13117. characterMakers.push(() => makeCharacter(
  13118. { name: "Frifna" },
  13119. {
  13120. anthro: {
  13121. height: math.unit(9 + 6 / 12, "feet"),
  13122. weight: math.unit(298, "lb"),
  13123. name: "Anthro",
  13124. image: {
  13125. source: "./media/characters/frifna/anthro.svg",
  13126. extra: 282 / 269,
  13127. bottom: 0.015
  13128. }
  13129. },
  13130. feral: {
  13131. height: math.unit(16 + 2 / 12, "feet"),
  13132. weight: math.unit(624, "lb"),
  13133. name: "Feral",
  13134. image: {
  13135. source: "./media/characters/frifna/feral.svg"
  13136. }
  13137. },
  13138. },
  13139. [
  13140. {
  13141. name: "Normal",
  13142. height: math.unit(9 + 6 / 12, "feet"),
  13143. default: true
  13144. },
  13145. ]
  13146. ))
  13147. characterMakers.push(() => makeCharacter(
  13148. { name: "Elise" },
  13149. {
  13150. front: {
  13151. height: math.unit(6 + 2 / 12, "feet"),
  13152. weight: math.unit(168, "lb"),
  13153. name: "Front",
  13154. image: {
  13155. source: "./media/characters/elise/front.svg",
  13156. extra: 276 / 271
  13157. }
  13158. },
  13159. },
  13160. [
  13161. {
  13162. name: "Normal",
  13163. height: math.unit(6 + 2 / 12, "feet"),
  13164. default: true
  13165. },
  13166. ]
  13167. ))
  13168. characterMakers.push(() => makeCharacter(
  13169. { name: "Glade" },
  13170. {
  13171. front: {
  13172. height: math.unit(5 + 10 / 12, "feet"),
  13173. weight: math.unit(210, "lb"),
  13174. name: "Front",
  13175. image: {
  13176. source: "./media/characters/glade/front.svg",
  13177. extra: 258 / 247,
  13178. bottom: 0.008
  13179. }
  13180. },
  13181. },
  13182. [
  13183. {
  13184. name: "Normal",
  13185. height: math.unit(5 + 10 / 12, "feet"),
  13186. default: true
  13187. },
  13188. ]
  13189. ))
  13190. characterMakers.push(() => makeCharacter(
  13191. { name: "Rina" },
  13192. {
  13193. front: {
  13194. height: math.unit(5 + 10 / 12, "feet"),
  13195. weight: math.unit(129, "lb"),
  13196. name: "Front",
  13197. image: {
  13198. source: "./media/characters/rina/front.svg",
  13199. extra: 266 / 255,
  13200. bottom: 0.005
  13201. }
  13202. },
  13203. },
  13204. [
  13205. {
  13206. name: "Normal",
  13207. height: math.unit(5 + 10 / 12, "feet"),
  13208. default: true
  13209. },
  13210. ]
  13211. ))
  13212. characterMakers.push(() => makeCharacter(
  13213. { name: "Veronica" },
  13214. {
  13215. front: {
  13216. height: math.unit(6 + 1 / 12, "feet"),
  13217. weight: math.unit(192, "lb"),
  13218. name: "Front",
  13219. image: {
  13220. source: "./media/characters/veronica/front.svg",
  13221. extra: 319 / 309,
  13222. bottom: 0.005
  13223. }
  13224. },
  13225. },
  13226. [
  13227. {
  13228. name: "Normal",
  13229. height: math.unit(6 + 1 / 12, "feet"),
  13230. default: true
  13231. },
  13232. ]
  13233. ))
  13234. characterMakers.push(() => makeCharacter(
  13235. { name: "Braxton" },
  13236. {
  13237. front: {
  13238. height: math.unit(9 + 3 / 12, "feet"),
  13239. weight: math.unit(1100, "lb"),
  13240. name: "Front",
  13241. image: {
  13242. source: "./media/characters/braxton/front.svg",
  13243. extra: 1057 / 984,
  13244. bottom: 0.05
  13245. }
  13246. },
  13247. },
  13248. [
  13249. {
  13250. name: "Normal",
  13251. height: math.unit(9 + 3 / 12, "feet")
  13252. },
  13253. {
  13254. name: "Giant",
  13255. height: math.unit(300, "feet"),
  13256. default: true
  13257. },
  13258. {
  13259. name: "Macro",
  13260. height: math.unit(700, "feet")
  13261. },
  13262. {
  13263. name: "Megamacro",
  13264. height: math.unit(6000, "feet")
  13265. },
  13266. ]
  13267. ))
  13268. characterMakers.push(() => makeCharacter(
  13269. { name: "Blue Feyonics" },
  13270. {
  13271. front: {
  13272. height: math.unit(6 + 7 / 12, "feet"),
  13273. weight: math.unit(150, "lb"),
  13274. name: "Front",
  13275. image: {
  13276. source: "./media/characters/blue-feyonics/front.svg",
  13277. extra: 1403 / 1306,
  13278. bottom: 0.047
  13279. }
  13280. },
  13281. },
  13282. [
  13283. {
  13284. name: "Normal",
  13285. height: math.unit(6 + 7 / 12, "feet"),
  13286. default: true
  13287. },
  13288. ]
  13289. ))
  13290. characterMakers.push(() => makeCharacter(
  13291. { name: "Maxwell" },
  13292. {
  13293. front: {
  13294. height: math.unit(1.8, "meters"),
  13295. weight: math.unit(60, "kg"),
  13296. name: "Front",
  13297. image: {
  13298. source: "./media/characters/maxwell/front.svg",
  13299. extra: 2060 / 1873
  13300. }
  13301. },
  13302. },
  13303. [
  13304. {
  13305. name: "Micro",
  13306. height: math.unit(1, "mm")
  13307. },
  13308. {
  13309. name: "Normal",
  13310. height: math.unit(1.8, "meter"),
  13311. default: true
  13312. },
  13313. {
  13314. name: "Macro",
  13315. height: math.unit(30, "meters")
  13316. },
  13317. {
  13318. name: "Megamacro",
  13319. height: math.unit(10, "km")
  13320. },
  13321. ]
  13322. ))
  13323. characterMakers.push(() => makeCharacter(
  13324. { name: "Jack" },
  13325. {
  13326. front: {
  13327. height: math.unit(6, "feet"),
  13328. weight: math.unit(150, "lb"),
  13329. name: "Front",
  13330. image: {
  13331. source: "./media/characters/jack/front.svg",
  13332. extra: 1754 / 1640,
  13333. bottom: 0.01
  13334. }
  13335. },
  13336. },
  13337. [
  13338. {
  13339. name: "Normal",
  13340. height: math.unit(80000, "feet"),
  13341. default: true
  13342. },
  13343. {
  13344. name: "Max size",
  13345. height: math.unit(10, "lightyears")
  13346. },
  13347. ]
  13348. ))
  13349. characterMakers.push(() => makeCharacter(
  13350. { name: "Cafat" },
  13351. {
  13352. upright: {
  13353. height: math.unit(7, "feet"),
  13354. weight: math.unit(170, "lb"),
  13355. name: "Upright",
  13356. image: {
  13357. source: "./media/characters/cafat/upright.svg",
  13358. bottom: 0.01
  13359. }
  13360. },
  13361. uprightFull: {
  13362. height: math.unit(7, "feet"),
  13363. weight: math.unit(170, "lb"),
  13364. name: "Upright (Full)",
  13365. image: {
  13366. source: "./media/characters/cafat/upright-full.svg",
  13367. bottom: 0.01
  13368. }
  13369. },
  13370. side: {
  13371. height: math.unit(5, "feet"),
  13372. weight: math.unit(150, "lb"),
  13373. name: "Side",
  13374. image: {
  13375. source: "./media/characters/cafat/side.svg"
  13376. }
  13377. },
  13378. },
  13379. [
  13380. {
  13381. name: "Small",
  13382. height: math.unit(7, "feet"),
  13383. default: true
  13384. },
  13385. {
  13386. name: "Large",
  13387. height: math.unit(15.5, "feet")
  13388. },
  13389. ]
  13390. ))
  13391. characterMakers.push(() => makeCharacter(
  13392. { name: "Verin Raharra" },
  13393. {
  13394. front: {
  13395. height: math.unit(6, "feet"),
  13396. weight: math.unit(150, "lb"),
  13397. name: "Front",
  13398. image: {
  13399. source: "./media/characters/verin-raharra/front.svg",
  13400. extra: 5019 / 4835,
  13401. bottom: 0.023
  13402. }
  13403. },
  13404. },
  13405. [
  13406. {
  13407. name: "Normal",
  13408. height: math.unit(7 + 5 / 12, "feet"),
  13409. default: true
  13410. },
  13411. {
  13412. name: "Upsized",
  13413. height: math.unit(20, "feet")
  13414. },
  13415. ]
  13416. ))
  13417. characterMakers.push(() => makeCharacter(
  13418. { name: "Nakata" },
  13419. {
  13420. front: {
  13421. height: math.unit(7, "feet"),
  13422. weight: math.unit(230, "lb"),
  13423. name: "Front",
  13424. image: {
  13425. source: "./media/characters/nakata/front.svg",
  13426. extra: 1.005,
  13427. bottom: 0.01
  13428. }
  13429. },
  13430. },
  13431. [
  13432. {
  13433. name: "Normal",
  13434. height: math.unit(7, "feet"),
  13435. default: true
  13436. },
  13437. {
  13438. name: "Big",
  13439. height: math.unit(14, "feet")
  13440. },
  13441. {
  13442. name: "Macro",
  13443. height: math.unit(400, "feet")
  13444. },
  13445. ]
  13446. ))
  13447. characterMakers.push(() => makeCharacter(
  13448. { name: "Lily" },
  13449. {
  13450. front: {
  13451. height: math.unit(4.91, "feet"),
  13452. weight: math.unit(100, "lb"),
  13453. name: "Front",
  13454. image: {
  13455. source: "./media/characters/lily/front.svg",
  13456. extra: 1585 / 1415,
  13457. bottom: 0.02
  13458. }
  13459. },
  13460. },
  13461. [
  13462. {
  13463. name: "Normal",
  13464. height: math.unit(4.91, "feet"),
  13465. default: true
  13466. },
  13467. ]
  13468. ))
  13469. characterMakers.push(() => makeCharacter(
  13470. { name: "Sheila" },
  13471. {
  13472. laying: {
  13473. height: math.unit(4 + 4 / 12, "feet"),
  13474. weight: math.unit(600, "lb"),
  13475. name: "Laying",
  13476. image: {
  13477. source: "./media/characters/sheila/laying.svg",
  13478. extra: 1333 / 1265,
  13479. bottom: 0.16
  13480. }
  13481. },
  13482. },
  13483. [
  13484. {
  13485. name: "Normal",
  13486. height: math.unit(4 + 4 / 12, "feet"),
  13487. default: true
  13488. },
  13489. ]
  13490. ))
  13491. characterMakers.push(() => makeCharacter(
  13492. { name: "Sax" },
  13493. {
  13494. front: {
  13495. height: math.unit(6, "feet"),
  13496. weight: math.unit(190, "lb"),
  13497. name: "Front",
  13498. image: {
  13499. source: "./media/characters/sax/front.svg",
  13500. extra: 1187 / 973,
  13501. bottom: 0.042
  13502. }
  13503. },
  13504. },
  13505. [
  13506. {
  13507. name: "Micro",
  13508. height: math.unit(4, "inches"),
  13509. default: true
  13510. },
  13511. ]
  13512. ))
  13513. characterMakers.push(() => makeCharacter(
  13514. { name: "Pandora" },
  13515. {
  13516. front: {
  13517. height: math.unit(6, "feet"),
  13518. weight: math.unit(150, "lb"),
  13519. name: "Front",
  13520. image: {
  13521. source: "./media/characters/pandora/front.svg",
  13522. extra: 2720 / 2556,
  13523. bottom: 0.015
  13524. }
  13525. },
  13526. back: {
  13527. height: math.unit(6, "feet"),
  13528. weight: math.unit(150, "lb"),
  13529. name: "Back",
  13530. image: {
  13531. source: "./media/characters/pandora/back.svg",
  13532. extra: 2720 / 2556,
  13533. bottom: 0.01
  13534. }
  13535. },
  13536. beans: {
  13537. height: math.unit(6 / 8, "feet"),
  13538. name: "Beans",
  13539. image: {
  13540. source: "./media/characters/pandora/beans.svg"
  13541. }
  13542. },
  13543. skirt: {
  13544. height: math.unit(6, "feet"),
  13545. weight: math.unit(150, "lb"),
  13546. name: "Skirt",
  13547. image: {
  13548. source: "./media/characters/pandora/skirt.svg",
  13549. extra: 1622 / 1525,
  13550. bottom: 0.015
  13551. }
  13552. },
  13553. hoodie: {
  13554. height: math.unit(6, "feet"),
  13555. weight: math.unit(150, "lb"),
  13556. name: "Hoodie",
  13557. image: {
  13558. source: "./media/characters/pandora/hoodie.svg",
  13559. extra: 1622 / 1525,
  13560. bottom: 0.015
  13561. }
  13562. },
  13563. casual: {
  13564. height: math.unit(6, "feet"),
  13565. weight: math.unit(150, "lb"),
  13566. name: "Casual",
  13567. image: {
  13568. source: "./media/characters/pandora/casual.svg",
  13569. extra: 1622 / 1525,
  13570. bottom: 0.015
  13571. }
  13572. },
  13573. },
  13574. [
  13575. {
  13576. name: "Normal",
  13577. height: math.unit(6, "feet")
  13578. },
  13579. {
  13580. name: "Big Steppy",
  13581. height: math.unit(1, "km"),
  13582. default: true
  13583. },
  13584. ]
  13585. ))
  13586. characterMakers.push(() => makeCharacter(
  13587. { name: "Venio Darcony" },
  13588. {
  13589. side: {
  13590. height: math.unit(10, "feet"),
  13591. weight: math.unit(800, "kg"),
  13592. name: "Side",
  13593. image: {
  13594. source: "./media/characters/venio-darcony/side.svg",
  13595. extra: 1373 / 1003,
  13596. bottom: 0.037
  13597. }
  13598. },
  13599. front: {
  13600. height: math.unit(19, "feet"),
  13601. weight: math.unit(800, "kg"),
  13602. name: "Front",
  13603. image: {
  13604. source: "./media/characters/venio-darcony/front.svg"
  13605. }
  13606. },
  13607. back: {
  13608. height: math.unit(19, "feet"),
  13609. weight: math.unit(800, "kg"),
  13610. name: "Back",
  13611. image: {
  13612. source: "./media/characters/venio-darcony/back.svg"
  13613. }
  13614. },
  13615. sideNsfw: {
  13616. height: math.unit(10, "feet"),
  13617. weight: math.unit(800, "kg"),
  13618. name: "Side (NSFW)",
  13619. image: {
  13620. source: "./media/characters/venio-darcony/side-nsfw.svg",
  13621. extra: 1373 / 1003,
  13622. bottom: 0.037
  13623. }
  13624. },
  13625. frontNsfw: {
  13626. height: math.unit(19, "feet"),
  13627. weight: math.unit(800, "kg"),
  13628. name: "Front (NSFW)",
  13629. image: {
  13630. source: "./media/characters/venio-darcony/front-nsfw.svg"
  13631. }
  13632. },
  13633. backNsfw: {
  13634. height: math.unit(19, "feet"),
  13635. weight: math.unit(800, "kg"),
  13636. name: "Back (NSFW)",
  13637. image: {
  13638. source: "./media/characters/venio-darcony/back-nsfw.svg"
  13639. }
  13640. },
  13641. sideArmored: {
  13642. height: math.unit(10, "feet"),
  13643. weight: math.unit(800, "kg"),
  13644. name: "Side (Armored)",
  13645. image: {
  13646. source: "./media/characters/venio-darcony/side-armored.svg",
  13647. extra: 1373 / 1003,
  13648. bottom: 0.037
  13649. }
  13650. },
  13651. frontArmored: {
  13652. height: math.unit(19, "feet"),
  13653. weight: math.unit(900, "kg"),
  13654. name: "Front (Armored)",
  13655. image: {
  13656. source: "./media/characters/venio-darcony/front-armored.svg"
  13657. }
  13658. },
  13659. backArmored: {
  13660. height: math.unit(19, "feet"),
  13661. weight: math.unit(900, "kg"),
  13662. name: "Back (Armored)",
  13663. image: {
  13664. source: "./media/characters/venio-darcony/back-armored.svg"
  13665. }
  13666. },
  13667. sword: {
  13668. height: math.unit(10, "feet"),
  13669. weight: math.unit(50, "lb"),
  13670. name: "Sword",
  13671. image: {
  13672. source: "./media/characters/venio-darcony/sword.svg"
  13673. }
  13674. },
  13675. },
  13676. [
  13677. {
  13678. name: "Normal",
  13679. height: math.unit(10, "feet")
  13680. },
  13681. {
  13682. name: "Macro",
  13683. height: math.unit(130, "feet"),
  13684. default: true
  13685. },
  13686. {
  13687. name: "Macro+",
  13688. height: math.unit(240, "feet")
  13689. },
  13690. ]
  13691. ))
  13692. characterMakers.push(() => makeCharacter(
  13693. { name: "Veski" },
  13694. {
  13695. front: {
  13696. height: math.unit(6, "feet"),
  13697. weight: math.unit(150, "lb"),
  13698. name: "Front",
  13699. image: {
  13700. source: "./media/characters/veski/front.svg",
  13701. extra: 1299 / 1225,
  13702. bottom: 0.04
  13703. }
  13704. },
  13705. back: {
  13706. height: math.unit(6, "feet"),
  13707. weight: math.unit(150, "lb"),
  13708. name: "Back",
  13709. image: {
  13710. source: "./media/characters/veski/back.svg",
  13711. extra: 1299 / 1225,
  13712. bottom: 0.008
  13713. }
  13714. },
  13715. maw: {
  13716. height: math.unit(1.5 * 1.21, "feet"),
  13717. name: "Maw",
  13718. image: {
  13719. source: "./media/characters/veski/maw.svg"
  13720. }
  13721. },
  13722. },
  13723. [
  13724. {
  13725. name: "Macro",
  13726. height: math.unit(2, "km"),
  13727. default: true
  13728. },
  13729. ]
  13730. ))
  13731. characterMakers.push(() => makeCharacter(
  13732. { name: "Isabelle" },
  13733. {
  13734. front: {
  13735. height: math.unit(5 + 7 / 12, "feet"),
  13736. name: "Front",
  13737. image: {
  13738. source: "./media/characters/isabelle/front.svg",
  13739. extra: 2130 / 1976,
  13740. bottom: 0.05
  13741. }
  13742. },
  13743. },
  13744. [
  13745. {
  13746. name: "Supermicro",
  13747. height: math.unit(10, "micrometers")
  13748. },
  13749. {
  13750. name: "Micro",
  13751. height: math.unit(1, "inch")
  13752. },
  13753. {
  13754. name: "Tiny",
  13755. height: math.unit(5, "inches")
  13756. },
  13757. {
  13758. name: "Standard",
  13759. height: math.unit(5 + 7 / 12, "inches")
  13760. },
  13761. {
  13762. name: "Macro",
  13763. height: math.unit(80, "meters"),
  13764. default: true
  13765. },
  13766. {
  13767. name: "Megamacro",
  13768. height: math.unit(250, "meters")
  13769. },
  13770. {
  13771. name: "Gigamacro",
  13772. height: math.unit(5, "km")
  13773. },
  13774. {
  13775. name: "Cosmic",
  13776. height: math.unit(2.5e6, "miles")
  13777. },
  13778. ]
  13779. ))
  13780. characterMakers.push(() => makeCharacter(
  13781. { name: "Hanzo" },
  13782. {
  13783. front: {
  13784. height: math.unit(6, "feet"),
  13785. weight: math.unit(150, "lb"),
  13786. name: "Front",
  13787. image: {
  13788. source: "./media/characters/hanzo/front.svg",
  13789. extra: 374 / 344,
  13790. bottom: 0.02
  13791. }
  13792. },
  13793. },
  13794. [
  13795. {
  13796. name: "Normal",
  13797. height: math.unit(8, "feet"),
  13798. default: true
  13799. },
  13800. ]
  13801. ))
  13802. characterMakers.push(() => makeCharacter(
  13803. { name: "Anna" },
  13804. {
  13805. front: {
  13806. height: math.unit(7, "feet"),
  13807. weight: math.unit(130, "lb"),
  13808. name: "Front",
  13809. image: {
  13810. source: "./media/characters/anna/front.svg",
  13811. extra: 169 / 145,
  13812. bottom: 0.06
  13813. }
  13814. },
  13815. full: {
  13816. height: math.unit(4.96, "feet"),
  13817. weight: math.unit(220, "lb"),
  13818. name: "Full",
  13819. image: {
  13820. source: "./media/characters/anna/full.svg",
  13821. extra: 138 / 114,
  13822. bottom: 0.15
  13823. }
  13824. },
  13825. tongue: {
  13826. height: math.unit(2.53, "feet"),
  13827. name: "Tongue",
  13828. image: {
  13829. source: "./media/characters/anna/tongue.svg"
  13830. }
  13831. },
  13832. },
  13833. [
  13834. {
  13835. name: "Normal",
  13836. height: math.unit(7, "feet"),
  13837. default: true
  13838. },
  13839. ]
  13840. ))
  13841. characterMakers.push(() => makeCharacter(
  13842. { name: "Ian Corvid" },
  13843. {
  13844. front: {
  13845. height: math.unit(7, "feet"),
  13846. weight: math.unit(150, "lb"),
  13847. name: "Front",
  13848. image: {
  13849. source: "./media/characters/ian-corvid/front.svg",
  13850. extra: 150 / 142,
  13851. bottom: 0.02
  13852. }
  13853. },
  13854. back: {
  13855. height: math.unit(7, "feet"),
  13856. weight: math.unit(150, "lb"),
  13857. name: "Back",
  13858. image: {
  13859. source: "./media/characters/ian-corvid/back.svg",
  13860. extra: 150 / 143,
  13861. bottom: 0.01
  13862. }
  13863. },
  13864. stomping: {
  13865. height: math.unit(7, "feet"),
  13866. weight: math.unit(150, "lb"),
  13867. name: "Stomping",
  13868. image: {
  13869. source: "./media/characters/ian-corvid/stomping.svg",
  13870. extra: 76 / 72
  13871. }
  13872. },
  13873. sitting: {
  13874. height: math.unit(7 / 1.8, "feet"),
  13875. weight: math.unit(150, "lb"),
  13876. name: "Sitting",
  13877. image: {
  13878. source: "./media/characters/ian-corvid/sitting.svg",
  13879. extra: 1400 / 1269,
  13880. bottom: 0.15
  13881. }
  13882. },
  13883. },
  13884. [
  13885. {
  13886. name: "Tiny Microw",
  13887. height: math.unit(1, "inch")
  13888. },
  13889. {
  13890. name: "Microw",
  13891. height: math.unit(6, "inches")
  13892. },
  13893. {
  13894. name: "Crow",
  13895. height: math.unit(7 + 1 / 12, "feet"),
  13896. default: true
  13897. },
  13898. {
  13899. name: "Macrow",
  13900. height: math.unit(176, "feet")
  13901. },
  13902. ]
  13903. ))
  13904. characterMakers.push(() => makeCharacter(
  13905. { name: "Natalie Kellon" },
  13906. {
  13907. front: {
  13908. height: math.unit(5 + 7 / 12, "feet"),
  13909. weight: math.unit(147, "lb"),
  13910. name: "Front",
  13911. image: {
  13912. source: "./media/characters/natalie-kellon/front.svg",
  13913. extra: 1214 / 1141,
  13914. bottom: 0.02
  13915. }
  13916. },
  13917. },
  13918. [
  13919. {
  13920. name: "Micro",
  13921. height: math.unit(1 / 16, "inch")
  13922. },
  13923. {
  13924. name: "Tiny",
  13925. height: math.unit(4, "inches")
  13926. },
  13927. {
  13928. name: "Normal",
  13929. height: math.unit(5 + 7 / 12, "feet"),
  13930. default: true
  13931. },
  13932. {
  13933. name: "Amazon",
  13934. height: math.unit(12, "feet")
  13935. },
  13936. {
  13937. name: "Giantess",
  13938. height: math.unit(160, "meters")
  13939. },
  13940. {
  13941. name: "Titaness",
  13942. height: math.unit(800, "meters")
  13943. },
  13944. ]
  13945. ))
  13946. characterMakers.push(() => makeCharacter(
  13947. { name: "Alluria" },
  13948. {
  13949. front: {
  13950. height: math.unit(6, "feet"),
  13951. weight: math.unit(150, "lb"),
  13952. name: "Front",
  13953. image: {
  13954. source: "./media/characters/alluria/front.svg",
  13955. extra: 806 / 738,
  13956. bottom: 0.01
  13957. }
  13958. },
  13959. side: {
  13960. height: math.unit(6, "feet"),
  13961. weight: math.unit(150, "lb"),
  13962. name: "Side",
  13963. image: {
  13964. source: "./media/characters/alluria/side.svg",
  13965. extra: 800 / 750,
  13966. }
  13967. },
  13968. back: {
  13969. height: math.unit(6, "feet"),
  13970. weight: math.unit(150, "lb"),
  13971. name: "Back",
  13972. image: {
  13973. source: "./media/characters/alluria/back.svg",
  13974. extra: 806 / 738,
  13975. }
  13976. },
  13977. frontMaid: {
  13978. height: math.unit(6, "feet"),
  13979. weight: math.unit(150, "lb"),
  13980. name: "Front (Maid)",
  13981. image: {
  13982. source: "./media/characters/alluria/front-maid.svg",
  13983. extra: 806 / 738,
  13984. bottom: 0.01
  13985. }
  13986. },
  13987. sideMaid: {
  13988. height: math.unit(6, "feet"),
  13989. weight: math.unit(150, "lb"),
  13990. name: "Side (Maid)",
  13991. image: {
  13992. source: "./media/characters/alluria/side-maid.svg",
  13993. extra: 800 / 750,
  13994. bottom: 0.005
  13995. }
  13996. },
  13997. backMaid: {
  13998. height: math.unit(6, "feet"),
  13999. weight: math.unit(150, "lb"),
  14000. name: "Back (Maid)",
  14001. image: {
  14002. source: "./media/characters/alluria/back-maid.svg",
  14003. extra: 806 / 738,
  14004. }
  14005. },
  14006. },
  14007. [
  14008. {
  14009. name: "Micro",
  14010. height: math.unit(6, "inches"),
  14011. default: true
  14012. },
  14013. ]
  14014. ))
  14015. characterMakers.push(() => makeCharacter(
  14016. { name: "Kyle" },
  14017. {
  14018. front: {
  14019. height: math.unit(6, "feet"),
  14020. weight: math.unit(150, "lb"),
  14021. name: "Front",
  14022. image: {
  14023. source: "./media/characters/kyle/front.svg",
  14024. extra: 1069 / 962,
  14025. bottom: 77.228 / 1727.45
  14026. }
  14027. },
  14028. },
  14029. [
  14030. {
  14031. name: "Macro",
  14032. height: math.unit(150, "feet"),
  14033. default: true
  14034. },
  14035. ]
  14036. ))
  14037. characterMakers.push(() => makeCharacter(
  14038. { name: "Duncan" },
  14039. {
  14040. front: {
  14041. height: math.unit(6, "feet"),
  14042. weight: math.unit(300, "lb"),
  14043. name: "Front",
  14044. image: {
  14045. source: "./media/characters/duncan/front.svg",
  14046. extra: 1650 / 1482,
  14047. bottom: 0.05
  14048. }
  14049. },
  14050. },
  14051. [
  14052. {
  14053. name: "Macro",
  14054. height: math.unit(100, "feet"),
  14055. default: true
  14056. },
  14057. ]
  14058. ))
  14059. characterMakers.push(() => makeCharacter(
  14060. { name: "Memory" },
  14061. {
  14062. front: {
  14063. height: math.unit(5 + 4 / 12, "feet"),
  14064. weight: math.unit(220, "lb"),
  14065. name: "Front",
  14066. image: {
  14067. source: "./media/characters/memory/front.svg",
  14068. extra: 3641 / 3545,
  14069. bottom: 0.03
  14070. }
  14071. },
  14072. back: {
  14073. height: math.unit(5 + 4 / 12, "feet"),
  14074. weight: math.unit(220, "lb"),
  14075. name: "Back",
  14076. image: {
  14077. source: "./media/characters/memory/back.svg",
  14078. extra: 3641 / 3545,
  14079. bottom: 0.025
  14080. }
  14081. },
  14082. frontSkirt: {
  14083. height: math.unit(5 + 4 / 12, "feet"),
  14084. weight: math.unit(220, "lb"),
  14085. name: "Front (Skirt)",
  14086. image: {
  14087. source: "./media/characters/memory/front-skirt.svg",
  14088. extra: 3641 / 3545,
  14089. bottom: 0.03
  14090. }
  14091. },
  14092. frontDress: {
  14093. height: math.unit(5 + 4 / 12, "feet"),
  14094. weight: math.unit(220, "lb"),
  14095. name: "Front (Dress)",
  14096. image: {
  14097. source: "./media/characters/memory/front-dress.svg",
  14098. extra: 3641 / 3545,
  14099. bottom: 0.03
  14100. }
  14101. },
  14102. },
  14103. [
  14104. {
  14105. name: "Micro",
  14106. height: math.unit(6, "inches"),
  14107. default: true
  14108. },
  14109. {
  14110. name: "Normal",
  14111. height: math.unit(5 + 4 / 12, "feet")
  14112. },
  14113. ]
  14114. ))
  14115. characterMakers.push(() => makeCharacter(
  14116. { name: "Luno" },
  14117. {
  14118. front: {
  14119. height: math.unit(4 + 11 / 12, "feet"),
  14120. weight: math.unit(100, "lb"),
  14121. name: "Front",
  14122. image: {
  14123. source: "./media/characters/luno/front.svg",
  14124. extra: 1535 / 1487,
  14125. bottom: 0.03
  14126. }
  14127. },
  14128. },
  14129. [
  14130. {
  14131. name: "Micro",
  14132. height: math.unit(3, "inches")
  14133. },
  14134. {
  14135. name: "Normal",
  14136. height: math.unit(4 + 11 / 12, "feet"),
  14137. default: true
  14138. },
  14139. {
  14140. name: "Macro",
  14141. height: math.unit(300, "feet")
  14142. },
  14143. {
  14144. name: "Megamacro",
  14145. height: math.unit(700, "miles")
  14146. },
  14147. ]
  14148. ))
  14149. characterMakers.push(() => makeCharacter(
  14150. { name: "Jamesy" },
  14151. {
  14152. front: {
  14153. height: math.unit(6 + 2 / 12, "feet"),
  14154. weight: math.unit(170, "lb"),
  14155. name: "Front",
  14156. image: {
  14157. source: "./media/characters/jamesy/front.svg",
  14158. extra: 440 / 382,
  14159. bottom: 0.005
  14160. }
  14161. },
  14162. },
  14163. [
  14164. {
  14165. name: "Micro",
  14166. height: math.unit(3, "inches")
  14167. },
  14168. {
  14169. name: "Normal",
  14170. height: math.unit(6 + 2 / 12, "feet"),
  14171. default: true
  14172. },
  14173. {
  14174. name: "Macro",
  14175. height: math.unit(300, "feet")
  14176. },
  14177. {
  14178. name: "Megamacro",
  14179. height: math.unit(700, "miles")
  14180. },
  14181. ]
  14182. ))
  14183. characterMakers.push(() => makeCharacter(
  14184. { name: "Mark" },
  14185. {
  14186. front: {
  14187. height: math.unit(6, "feet"),
  14188. weight: math.unit(160, "lb"),
  14189. name: "Front",
  14190. image: {
  14191. source: "./media/characters/mark/front.svg",
  14192. extra: 3300 / 3100,
  14193. bottom: 136.42 / 3440.47
  14194. }
  14195. },
  14196. },
  14197. [
  14198. {
  14199. name: "Macro",
  14200. height: math.unit(120, "meters")
  14201. },
  14202. {
  14203. name: "Bigger Macro",
  14204. height: math.unit(350, "meters")
  14205. },
  14206. {
  14207. name: "Megamacro",
  14208. height: math.unit(8, "km"),
  14209. default: true
  14210. },
  14211. {
  14212. name: "Continental",
  14213. height: math.unit(4550, "km")
  14214. },
  14215. {
  14216. name: "Planetary",
  14217. height: math.unit(65000, "km")
  14218. },
  14219. ]
  14220. ))
  14221. characterMakers.push(() => makeCharacter(
  14222. { name: "Mac" },
  14223. {
  14224. front: {
  14225. height: math.unit(6, "feet"),
  14226. weight: math.unit(400, "lb"),
  14227. name: "Front",
  14228. image: {
  14229. source: "./media/characters/mac/front.svg",
  14230. extra: 1048 / 987.7,
  14231. bottom: 60 / 1107.6,
  14232. }
  14233. },
  14234. },
  14235. [
  14236. {
  14237. name: "Macro",
  14238. height: math.unit(500, "feet"),
  14239. default: true
  14240. },
  14241. ]
  14242. ))
  14243. characterMakers.push(() => makeCharacter(
  14244. { name: "Bari" },
  14245. {
  14246. front: {
  14247. height: math.unit(5 + 2 / 12, "feet"),
  14248. weight: math.unit(190, "lb"),
  14249. name: "Front",
  14250. image: {
  14251. source: "./media/characters/bari/front.svg",
  14252. extra: 3156 / 2880,
  14253. bottom: 0.03
  14254. }
  14255. },
  14256. back: {
  14257. height: math.unit(5 + 2 / 12, "feet"),
  14258. weight: math.unit(190, "lb"),
  14259. name: "Back",
  14260. image: {
  14261. source: "./media/characters/bari/back.svg",
  14262. extra: 3260 / 2834,
  14263. bottom: 0.025
  14264. }
  14265. },
  14266. frontPlush: {
  14267. height: math.unit(5 + 2 / 12, "feet"),
  14268. weight: math.unit(190, "lb"),
  14269. name: "Front (Plush)",
  14270. image: {
  14271. source: "./media/characters/bari/front-plush.svg",
  14272. extra: 1112 / 1061,
  14273. bottom: 0.002
  14274. }
  14275. },
  14276. },
  14277. [
  14278. {
  14279. name: "Micro",
  14280. height: math.unit(3, "inches")
  14281. },
  14282. {
  14283. name: "Normal",
  14284. height: math.unit(5 + 2 / 12, "feet"),
  14285. default: true
  14286. },
  14287. {
  14288. name: "Macro",
  14289. height: math.unit(20, "feet")
  14290. },
  14291. ]
  14292. ))
  14293. characterMakers.push(() => makeCharacter(
  14294. { name: "Hunter Misha Raven" },
  14295. {
  14296. front: {
  14297. height: math.unit(6 + 1 / 12, "feet"),
  14298. weight: math.unit(275, "lb"),
  14299. name: "Front",
  14300. image: {
  14301. source: "./media/characters/hunter-misha-raven/front.svg"
  14302. }
  14303. },
  14304. },
  14305. [
  14306. {
  14307. name: "Mortal",
  14308. height: math.unit(6 + 1 / 12, "feet")
  14309. },
  14310. {
  14311. name: "Divine",
  14312. height: math.unit(1.12134e34, "parsecs"),
  14313. default: true
  14314. },
  14315. ]
  14316. ))
  14317. characterMakers.push(() => makeCharacter(
  14318. { name: "Max Calore" },
  14319. {
  14320. front: {
  14321. height: math.unit(6 + 3 / 12, "feet"),
  14322. weight: math.unit(220, "lb"),
  14323. name: "Front",
  14324. image: {
  14325. source: "./media/characters/max-calore/front.svg",
  14326. extra: 1700 / 1648,
  14327. bottom: 0.01
  14328. }
  14329. },
  14330. back: {
  14331. height: math.unit(6 + 3 / 12, "feet"),
  14332. weight: math.unit(220, "lb"),
  14333. name: "Back",
  14334. image: {
  14335. source: "./media/characters/max-calore/back.svg",
  14336. extra: 1700 / 1648,
  14337. bottom: 0.01
  14338. }
  14339. },
  14340. },
  14341. [
  14342. {
  14343. name: "Normal",
  14344. height: math.unit(6 + 3 / 12, "feet"),
  14345. default: true
  14346. },
  14347. ]
  14348. ))
  14349. characterMakers.push(() => makeCharacter(
  14350. { name: "Aspen" },
  14351. {
  14352. side: {
  14353. height: math.unit(2 + 8 / 12, "feet"),
  14354. weight: math.unit(99, "lb"),
  14355. name: "Side",
  14356. image: {
  14357. source: "./media/characters/aspen/side.svg",
  14358. extra: 152 / 138,
  14359. bottom: 0.032
  14360. }
  14361. },
  14362. },
  14363. [
  14364. {
  14365. name: "Normal",
  14366. height: math.unit(2 + 8 / 12, "feet"),
  14367. default: true
  14368. },
  14369. ]
  14370. ))
  14371. characterMakers.push(() => makeCharacter(
  14372. { name: "Sheila (Feral Wolf)" },
  14373. {
  14374. side: {
  14375. height: math.unit(3 + 2 / 12, "feet"),
  14376. weight: math.unit(224, "lb"),
  14377. name: "Side",
  14378. image: {
  14379. source: "./media/characters/sheila-feral-wolf/side.svg",
  14380. extra: 179 / 166,
  14381. bottom: 0.03
  14382. }
  14383. },
  14384. },
  14385. [
  14386. {
  14387. name: "Normal",
  14388. height: math.unit(3 + 2 / 12, "feet"),
  14389. default: true
  14390. },
  14391. ]
  14392. ))
  14393. characterMakers.push(() => makeCharacter(
  14394. { name: "Michelle" },
  14395. {
  14396. side: {
  14397. height: math.unit(1 + 9 / 12, "feet"),
  14398. weight: math.unit(38, "lb"),
  14399. name: "Side",
  14400. image: {
  14401. source: "./media/characters/michelle/side.svg",
  14402. extra: 147 / 136.7,
  14403. bottom: 0.03
  14404. }
  14405. },
  14406. },
  14407. [
  14408. {
  14409. name: "Normal",
  14410. height: math.unit(1 + 9 / 12, "feet"),
  14411. default: true
  14412. },
  14413. ]
  14414. ))
  14415. characterMakers.push(() => makeCharacter(
  14416. { name: "Nino" },
  14417. {
  14418. front: {
  14419. height: math.unit(1 + 1 / 12, "feet"),
  14420. weight: math.unit(18, "lb"),
  14421. name: "Front",
  14422. image: {
  14423. source: "./media/characters/nino/front.svg"
  14424. }
  14425. },
  14426. },
  14427. [
  14428. {
  14429. name: "Normal",
  14430. height: math.unit(1 + 1 / 12, "feet"),
  14431. default: true
  14432. },
  14433. ]
  14434. ))
  14435. characterMakers.push(() => makeCharacter(
  14436. { name: "Viola" },
  14437. {
  14438. front: {
  14439. height: math.unit(1, "feet"),
  14440. weight: math.unit(16, "lb"),
  14441. name: "Front",
  14442. image: {
  14443. source: "./media/characters/viola/front.svg"
  14444. }
  14445. },
  14446. },
  14447. [
  14448. {
  14449. name: "Normal",
  14450. height: math.unit(1, "feet"),
  14451. default: true
  14452. },
  14453. ]
  14454. ))
  14455. characterMakers.push(() => makeCharacter(
  14456. { name: "Atlas" },
  14457. {
  14458. front: {
  14459. height: math.unit(6 + 5 / 12, "feet"),
  14460. weight: math.unit(580, "lb"),
  14461. name: "Front",
  14462. image: {
  14463. source: "./media/characters/atlas/front.svg",
  14464. extra: 298.5 / 290,
  14465. bottom: 0.015
  14466. }
  14467. },
  14468. },
  14469. [
  14470. {
  14471. name: "Normal",
  14472. height: math.unit(6 + 5 / 12, "feet"),
  14473. default: true
  14474. },
  14475. ]
  14476. ))
  14477. characterMakers.push(() => makeCharacter(
  14478. { name: "Davy" },
  14479. {
  14480. side: {
  14481. height: math.unit(1 + 10 / 12, "feet"),
  14482. weight: math.unit(25, "lb"),
  14483. name: "Side",
  14484. image: {
  14485. source: "./media/characters/davy/side.svg",
  14486. extra: 200 / 170,
  14487. bottom: 0.01
  14488. }
  14489. },
  14490. },
  14491. [
  14492. {
  14493. name: "Normal",
  14494. height: math.unit(1 + 10 / 12, "feet"),
  14495. default: true
  14496. },
  14497. ]
  14498. ))
  14499. characterMakers.push(() => makeCharacter(
  14500. { name: "Fiona" },
  14501. {
  14502. side: {
  14503. height: math.unit(4 + 8 / 12, "feet"),
  14504. weight: math.unit(166, "lb"),
  14505. name: "Side",
  14506. image: {
  14507. source: "./media/characters/fiona/side.svg",
  14508. extra: 232 / 220,
  14509. bottom: 0.03
  14510. }
  14511. },
  14512. },
  14513. [
  14514. {
  14515. name: "Normal",
  14516. height: math.unit(4 + 8 / 12, "feet"),
  14517. default: true
  14518. },
  14519. ]
  14520. ))
  14521. characterMakers.push(() => makeCharacter(
  14522. { name: "Lyla" },
  14523. {
  14524. front: {
  14525. height: math.unit(2, "feet"),
  14526. weight: math.unit(62, "lb"),
  14527. name: "Front",
  14528. image: {
  14529. source: "./media/characters/lyla/front.svg",
  14530. bottom: 0.1
  14531. }
  14532. },
  14533. },
  14534. [
  14535. {
  14536. name: "Normal",
  14537. height: math.unit(2, "feet"),
  14538. default: true
  14539. },
  14540. ]
  14541. ))
  14542. characterMakers.push(() => makeCharacter(
  14543. { name: "Perseus" },
  14544. {
  14545. side: {
  14546. height: math.unit(1.8, "feet"),
  14547. weight: math.unit(44, "lb"),
  14548. name: "Side",
  14549. image: {
  14550. source: "./media/characters/perseus/side.svg",
  14551. bottom: 0.21
  14552. }
  14553. },
  14554. },
  14555. [
  14556. {
  14557. name: "Normal",
  14558. height: math.unit(1.8, "feet"),
  14559. default: true
  14560. },
  14561. ]
  14562. ))
  14563. characterMakers.push(() => makeCharacter(
  14564. { name: "Remus" },
  14565. {
  14566. side: {
  14567. height: math.unit(4 + 2 / 12, "feet"),
  14568. weight: math.unit(20, "lb"),
  14569. name: "Side",
  14570. image: {
  14571. source: "./media/characters/remus/side.svg"
  14572. }
  14573. },
  14574. },
  14575. [
  14576. {
  14577. name: "Normal",
  14578. height: math.unit(4 + 2 / 12, "feet"),
  14579. default: true
  14580. },
  14581. ]
  14582. ))
  14583. characterMakers.push(() => makeCharacter(
  14584. { name: "Raf" },
  14585. {
  14586. front: {
  14587. height: math.unit(4 + 11 / 12, "feet"),
  14588. weight: math.unit(114, "lb"),
  14589. name: "Front",
  14590. image: {
  14591. source: "./media/characters/raf/front.svg",
  14592. bottom: 0.01
  14593. }
  14594. },
  14595. side: {
  14596. height: math.unit(4 + 11 / 12, "feet"),
  14597. weight: math.unit(114, "lb"),
  14598. name: "Side",
  14599. image: {
  14600. source: "./media/characters/raf/side.svg",
  14601. bottom: 0.005
  14602. }
  14603. },
  14604. },
  14605. [
  14606. {
  14607. name: "Micro",
  14608. height: math.unit(2, "inches")
  14609. },
  14610. {
  14611. name: "Normal",
  14612. height: math.unit(4 + 11 / 12, "feet"),
  14613. default: true
  14614. },
  14615. {
  14616. name: "Macro",
  14617. height: math.unit(70, "feet")
  14618. },
  14619. ]
  14620. ))
  14621. characterMakers.push(() => makeCharacter(
  14622. { name: "Liam Einarr" },
  14623. {
  14624. front: {
  14625. height: math.unit(1.5, "meters"),
  14626. weight: math.unit(68, "kg"),
  14627. name: "Front",
  14628. image: {
  14629. source: "./media/characters/liam-einarr/front.svg",
  14630. extra: 2822 / 2666
  14631. }
  14632. },
  14633. back: {
  14634. height: math.unit(1.5, "meters"),
  14635. weight: math.unit(68, "kg"),
  14636. name: "Back",
  14637. image: {
  14638. source: "./media/characters/liam-einarr/back.svg",
  14639. extra: 2822 / 2666,
  14640. bottom: 0.015
  14641. }
  14642. },
  14643. },
  14644. [
  14645. {
  14646. name: "Normal",
  14647. height: math.unit(1.5, "meters"),
  14648. default: true
  14649. },
  14650. {
  14651. name: "Macro",
  14652. height: math.unit(150, "meters")
  14653. },
  14654. {
  14655. name: "Megamacro",
  14656. height: math.unit(35, "km")
  14657. },
  14658. ]
  14659. ))
  14660. characterMakers.push(() => makeCharacter(
  14661. { name: "Linda" },
  14662. {
  14663. front: {
  14664. height: math.unit(6, "feet"),
  14665. weight: math.unit(75, "kg"),
  14666. name: "Front",
  14667. image: {
  14668. source: "./media/characters/linda/front.svg",
  14669. extra: 930 / 874,
  14670. bottom: 0.004
  14671. }
  14672. },
  14673. },
  14674. [
  14675. {
  14676. name: "Normal",
  14677. height: math.unit(6, "feet"),
  14678. default: true
  14679. },
  14680. ]
  14681. ))
  14682. characterMakers.push(() => makeCharacter(
  14683. { name: "Caylex" },
  14684. {
  14685. front: {
  14686. height: math.unit(6 + 8 / 12, "feet"),
  14687. weight: math.unit(220, "lb"),
  14688. name: "Front",
  14689. image: {
  14690. source: "./media/characters/caylex/front.svg",
  14691. extra: 821 / 772,
  14692. bottom: 0.07
  14693. }
  14694. },
  14695. back: {
  14696. height: math.unit(6 + 8 / 12, "feet"),
  14697. weight: math.unit(220, "lb"),
  14698. name: "Back",
  14699. image: {
  14700. source: "./media/characters/caylex/back.svg",
  14701. extra: 821 / 772,
  14702. bottom: 0.022
  14703. }
  14704. },
  14705. hand: {
  14706. height: math.unit(1.25, "feet"),
  14707. name: "Hand",
  14708. image: {
  14709. source: "./media/characters/caylex/hand.svg"
  14710. }
  14711. },
  14712. foot: {
  14713. height: math.unit(1.6, "feet"),
  14714. name: "Foot",
  14715. image: {
  14716. source: "./media/characters/caylex/foot.svg"
  14717. }
  14718. },
  14719. armored: {
  14720. height: math.unit(6 + 8 / 12, "feet"),
  14721. weight: math.unit(250, "lb"),
  14722. name: "Armored",
  14723. image: {
  14724. source: "./media/characters/caylex/armored.svg",
  14725. extra: 1420 / 1310,
  14726. bottom: 0.045
  14727. }
  14728. },
  14729. },
  14730. [
  14731. {
  14732. name: "Normal",
  14733. height: math.unit(6 + 8 / 12, "feet"),
  14734. default: true
  14735. },
  14736. {
  14737. name: "Normal+",
  14738. height: math.unit(12, "feet")
  14739. },
  14740. ]
  14741. ))
  14742. characterMakers.push(() => makeCharacter(
  14743. { name: "Alana" },
  14744. {
  14745. front: {
  14746. height: math.unit(7 + 6 / 12, "feet"),
  14747. weight: math.unit(288, "lb"),
  14748. name: "Front",
  14749. image: {
  14750. source: "./media/characters/alana/front.svg",
  14751. extra: 679 / 653,
  14752. bottom: 22.5 / 701
  14753. }
  14754. },
  14755. },
  14756. [
  14757. {
  14758. name: "Normal",
  14759. height: math.unit(7 + 6 / 12, "feet")
  14760. },
  14761. {
  14762. name: "Large",
  14763. height: math.unit(50, "feet")
  14764. },
  14765. {
  14766. name: "Macro",
  14767. height: math.unit(100, "feet"),
  14768. default: true
  14769. },
  14770. {
  14771. name: "Macro+",
  14772. height: math.unit(200, "feet")
  14773. },
  14774. ]
  14775. ))
  14776. characterMakers.push(() => makeCharacter(
  14777. { name: "Hasani" },
  14778. {
  14779. front: {
  14780. height: math.unit(6 + 1 / 12, "feet"),
  14781. weight: math.unit(210, "lb"),
  14782. name: "Front",
  14783. image: {
  14784. source: "./media/characters/hasani/front.svg",
  14785. extra: 244 / 232,
  14786. bottom: 0.01
  14787. }
  14788. },
  14789. back: {
  14790. height: math.unit(6 + 1 / 12, "feet"),
  14791. weight: math.unit(210, "lb"),
  14792. name: "Back",
  14793. image: {
  14794. source: "./media/characters/hasani/back.svg",
  14795. extra: 244 / 232,
  14796. bottom: 0.01
  14797. }
  14798. },
  14799. },
  14800. [
  14801. {
  14802. name: "Normal",
  14803. height: math.unit(6 + 1 / 12, "feet")
  14804. },
  14805. {
  14806. name: "Macro",
  14807. height: math.unit(175, "feet"),
  14808. default: true
  14809. },
  14810. ]
  14811. ))
  14812. characterMakers.push(() => makeCharacter(
  14813. { name: "Nita" },
  14814. {
  14815. front: {
  14816. height: math.unit(1.82, "meters"),
  14817. weight: math.unit(140, "lb"),
  14818. name: "Front",
  14819. image: {
  14820. source: "./media/characters/nita/front.svg",
  14821. extra: 2473 / 2363,
  14822. bottom: 0.01
  14823. }
  14824. },
  14825. },
  14826. [
  14827. {
  14828. name: "Normal",
  14829. height: math.unit(1.82, "m")
  14830. },
  14831. {
  14832. name: "Macro",
  14833. height: math.unit(300, "m")
  14834. },
  14835. {
  14836. name: "Mistake Canon",
  14837. height: math.unit(0.5, "miles"),
  14838. default: true
  14839. },
  14840. {
  14841. name: "Big Mistake",
  14842. height: math.unit(13, "miles")
  14843. },
  14844. {
  14845. name: "Playing God",
  14846. height: math.unit(2450, "miles")
  14847. },
  14848. ]
  14849. ))
  14850. characterMakers.push(() => makeCharacter(
  14851. { name: "Shiriko" },
  14852. {
  14853. front: {
  14854. height: math.unit(4, "feet"),
  14855. weight: math.unit(120, "lb"),
  14856. name: "Front",
  14857. image: {
  14858. source: "./media/characters/shiriko/front.svg",
  14859. extra: 195 / 188
  14860. }
  14861. },
  14862. },
  14863. [
  14864. {
  14865. name: "Normal",
  14866. height: math.unit(4, "feet"),
  14867. default: true
  14868. },
  14869. ]
  14870. ))
  14871. characterMakers.push(() => makeCharacter(
  14872. { name: "Deja" },
  14873. {
  14874. front: {
  14875. height: math.unit(6, "feet"),
  14876. name: "front",
  14877. image: {
  14878. source: "./media/characters/deja/front.svg",
  14879. extra: 926 / 840,
  14880. bottom: 0.07
  14881. }
  14882. },
  14883. },
  14884. [
  14885. {
  14886. name: "Planck Length",
  14887. height: math.unit(1.6e-35, "meters")
  14888. },
  14889. {
  14890. name: "Normal",
  14891. height: math.unit(30.48, "meters"),
  14892. default: true
  14893. },
  14894. {
  14895. name: "Universal",
  14896. height: math.unit(8.8e26, "meters")
  14897. },
  14898. ]
  14899. ))
  14900. characterMakers.push(() => makeCharacter(
  14901. { name: "Anima" },
  14902. {
  14903. side: {
  14904. height: math.unit(8, "feet"),
  14905. weight: math.unit(6300, "lb"),
  14906. name: "Side",
  14907. image: {
  14908. source: "./media/characters/anima/side.svg",
  14909. bottom: 0.035
  14910. }
  14911. },
  14912. },
  14913. [
  14914. {
  14915. name: "Normal",
  14916. height: math.unit(8, "feet"),
  14917. default: true
  14918. },
  14919. ]
  14920. ))
  14921. characterMakers.push(() => makeCharacter(
  14922. { name: "Bianca" },
  14923. {
  14924. front: {
  14925. height: math.unit(8, "feet"),
  14926. weight: math.unit(350, "lb"),
  14927. name: "Front",
  14928. image: {
  14929. source: "./media/characters/bianca/front.svg",
  14930. extra: 234 / 225,
  14931. bottom: 0.03
  14932. }
  14933. },
  14934. },
  14935. [
  14936. {
  14937. name: "Normal",
  14938. height: math.unit(8, "feet"),
  14939. default: true
  14940. },
  14941. ]
  14942. ))
  14943. characterMakers.push(() => makeCharacter(
  14944. { name: "Adinia" },
  14945. {
  14946. front: {
  14947. height: math.unit(6, "feet"),
  14948. weight: math.unit(150, "lb"),
  14949. name: "Front",
  14950. image: {
  14951. source: "./media/characters/adinia/front.svg",
  14952. extra: 1845 / 1672,
  14953. bottom: 0.02
  14954. }
  14955. },
  14956. back: {
  14957. height: math.unit(6, "feet"),
  14958. weight: math.unit(150, "lb"),
  14959. name: "Back",
  14960. image: {
  14961. source: "./media/characters/adinia/back.svg",
  14962. extra: 1845 / 1672,
  14963. bottom: 0.002
  14964. }
  14965. },
  14966. },
  14967. [
  14968. {
  14969. name: "Normal",
  14970. height: math.unit(11 + 5 / 12, "feet"),
  14971. default: true
  14972. },
  14973. ]
  14974. ))
  14975. characterMakers.push(() => makeCharacter(
  14976. { name: "Lykasa" },
  14977. {
  14978. front: {
  14979. height: math.unit(3, "meters"),
  14980. weight: math.unit(200, "kg"),
  14981. name: "Front",
  14982. image: {
  14983. source: "./media/characters/lykasa/front.svg",
  14984. extra: 1076 / 976,
  14985. bottom: 0.06
  14986. }
  14987. },
  14988. },
  14989. [
  14990. {
  14991. name: "Normal",
  14992. height: math.unit(3, "meters")
  14993. },
  14994. {
  14995. name: "Kaiju",
  14996. height: math.unit(120, "meters"),
  14997. default: true
  14998. },
  14999. {
  15000. name: "Mega Kaiju",
  15001. height: math.unit(240, "km")
  15002. },
  15003. {
  15004. name: "Giga Kaiju",
  15005. height: math.unit(400, "megameters")
  15006. },
  15007. {
  15008. name: "Tera Kaiju",
  15009. height: math.unit(800, "gigameters")
  15010. },
  15011. {
  15012. name: "Kaiju Dragon Goddess",
  15013. height: math.unit(26, "zettaparsecs")
  15014. },
  15015. ]
  15016. ))
  15017. characterMakers.push(() => makeCharacter(
  15018. { name: "Malfaren" },
  15019. {
  15020. side: {
  15021. height: math.unit(283 / 124 * 6, "feet"),
  15022. weight: math.unit(35000, "lb"),
  15023. name: "Side",
  15024. image: {
  15025. source: "./media/characters/malfaren/side.svg",
  15026. extra: 2500 / 1010,
  15027. bottom: 0.01
  15028. }
  15029. },
  15030. front: {
  15031. height: math.unit(22.36, "feet"),
  15032. weight: math.unit(35000, "lb"),
  15033. name: "Front",
  15034. image: {
  15035. source: "./media/characters/malfaren/front.svg",
  15036. extra: 1631 / 1476,
  15037. bottom: 0.01
  15038. }
  15039. },
  15040. maw: {
  15041. height: math.unit(6.9, "feet"),
  15042. name: "Maw",
  15043. image: {
  15044. source: "./media/characters/malfaren/maw.svg"
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Big",
  15051. height: math.unit(283 / 162 * 6, "feet"),
  15052. },
  15053. {
  15054. name: "Bigger",
  15055. height: math.unit(283 / 124 * 6, "feet")
  15056. },
  15057. {
  15058. name: "Massive",
  15059. height: math.unit(283 / 92 * 6, "feet"),
  15060. default: true
  15061. },
  15062. {
  15063. name: "👀💦",
  15064. height: math.unit(283 / 73 * 6, "feet"),
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Kernel" },
  15070. {
  15071. front: {
  15072. height: math.unit(1.7, "m"),
  15073. weight: math.unit(70, "kg"),
  15074. name: "Front",
  15075. image: {
  15076. source: "./media/characters/kernel/front.svg",
  15077. extra: 222 / 210,
  15078. bottom: 0.007
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Nano",
  15085. height: math.unit(17, "micrometers")
  15086. },
  15087. {
  15088. name: "Micro",
  15089. height: math.unit(1.7, "mm")
  15090. },
  15091. {
  15092. name: "Small",
  15093. height: math.unit(1.7, "cm")
  15094. },
  15095. {
  15096. name: "Normal",
  15097. height: math.unit(1.7, "m"),
  15098. default: true
  15099. },
  15100. ]
  15101. ))
  15102. characterMakers.push(() => makeCharacter(
  15103. { name: "Jayne Folest" },
  15104. {
  15105. front: {
  15106. height: math.unit(1.75, "meters"),
  15107. weight: math.unit(65, "kg"),
  15108. name: "Front",
  15109. image: {
  15110. source: "./media/characters/jayne-folest/front.svg",
  15111. extra: 2115 / 2007,
  15112. bottom: 0.02
  15113. }
  15114. },
  15115. back: {
  15116. height: math.unit(1.75, "meters"),
  15117. weight: math.unit(65, "kg"),
  15118. name: "Back",
  15119. image: {
  15120. source: "./media/characters/jayne-folest/back.svg",
  15121. extra: 2115 / 2007,
  15122. bottom: 0.005
  15123. }
  15124. },
  15125. frontClothed: {
  15126. height: math.unit(1.75, "meters"),
  15127. weight: math.unit(65, "kg"),
  15128. name: "Front (Clothed)",
  15129. image: {
  15130. source: "./media/characters/jayne-folest/front-clothed.svg",
  15131. extra: 2115 / 2007,
  15132. bottom: 0.035
  15133. }
  15134. },
  15135. hand: {
  15136. height: math.unit(1 / 1.260, "feet"),
  15137. name: "Hand",
  15138. image: {
  15139. source: "./media/characters/jayne-folest/hand.svg"
  15140. }
  15141. },
  15142. foot: {
  15143. height: math.unit(1 / 0.918, "feet"),
  15144. name: "Foot",
  15145. image: {
  15146. source: "./media/characters/jayne-folest/foot.svg"
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Micro",
  15153. height: math.unit(4, "cm")
  15154. },
  15155. {
  15156. name: "Normal",
  15157. height: math.unit(1.75, "meters")
  15158. },
  15159. {
  15160. name: "Macro",
  15161. height: math.unit(47.5, "meters"),
  15162. default: true
  15163. },
  15164. ]
  15165. ))
  15166. characterMakers.push(() => makeCharacter(
  15167. { name: "Algier" },
  15168. {
  15169. front: {
  15170. height: math.unit(180, "cm"),
  15171. weight: math.unit(70, "kg"),
  15172. name: "Front",
  15173. image: {
  15174. source: "./media/characters/algier/front.svg",
  15175. extra: 596 / 572,
  15176. bottom: 0.04
  15177. }
  15178. },
  15179. back: {
  15180. height: math.unit(180, "cm"),
  15181. weight: math.unit(70, "kg"),
  15182. name: "Back",
  15183. image: {
  15184. source: "./media/characters/algier/back.svg",
  15185. extra: 596 / 572,
  15186. bottom: 0.025
  15187. }
  15188. },
  15189. frontdressed: {
  15190. height: math.unit(180, "cm"),
  15191. weight: math.unit(150, "kg"),
  15192. name: "Front-dressed",
  15193. image: {
  15194. source: "./media/characters/algier/front-dressed.svg",
  15195. extra: 596 / 572,
  15196. bottom: 0.038
  15197. }
  15198. },
  15199. },
  15200. [
  15201. {
  15202. name: "Micro",
  15203. height: math.unit(5, "cm")
  15204. },
  15205. {
  15206. name: "Normal",
  15207. height: math.unit(180, "cm"),
  15208. default: true
  15209. },
  15210. {
  15211. name: "Macro",
  15212. height: math.unit(64, "m")
  15213. },
  15214. ]
  15215. ))
  15216. characterMakers.push(() => makeCharacter(
  15217. { name: "Pretzel" },
  15218. {
  15219. upright: {
  15220. height: math.unit(7, "feet"),
  15221. weight: math.unit(300, "lb"),
  15222. name: "Upright",
  15223. image: {
  15224. source: "./media/characters/pretzel/upright.svg",
  15225. extra: 534 / 522,
  15226. bottom: 0.065
  15227. }
  15228. },
  15229. sprawling: {
  15230. height: math.unit(3.75, "feet"),
  15231. weight: math.unit(300, "lb"),
  15232. name: "Sprawling",
  15233. image: {
  15234. source: "./media/characters/pretzel/sprawling.svg",
  15235. extra: 314 / 281,
  15236. bottom: 0.1
  15237. }
  15238. },
  15239. tongue: {
  15240. height: math.unit(2, "feet"),
  15241. name: "Tongue",
  15242. image: {
  15243. source: "./media/characters/pretzel/tongue.svg"
  15244. }
  15245. },
  15246. },
  15247. [
  15248. {
  15249. name: "Normal",
  15250. height: math.unit(7, "feet"),
  15251. default: true
  15252. },
  15253. {
  15254. name: "Oversized",
  15255. height: math.unit(15, "feet")
  15256. },
  15257. {
  15258. name: "Huge",
  15259. height: math.unit(30, "feet")
  15260. },
  15261. {
  15262. name: "Macro",
  15263. height: math.unit(250, "feet")
  15264. },
  15265. ]
  15266. ))
  15267. characterMakers.push(() => makeCharacter(
  15268. { name: "Roxi" },
  15269. {
  15270. sideFront: {
  15271. height: math.unit(5 + 2 / 12, "feet"),
  15272. weight: math.unit(120, "lb"),
  15273. name: "Front Side",
  15274. image: {
  15275. source: "./media/characters/roxi/side-front.svg",
  15276. extra: 2924 / 2717,
  15277. bottom: 0.08
  15278. }
  15279. },
  15280. sideBack: {
  15281. height: math.unit(5 + 2 / 12, "feet"),
  15282. weight: math.unit(120, "lb"),
  15283. name: "Back Side",
  15284. image: {
  15285. source: "./media/characters/roxi/side-back.svg",
  15286. extra: 2904 / 2693,
  15287. bottom: 0.06
  15288. }
  15289. },
  15290. front: {
  15291. height: math.unit(5 + 2 / 12, "feet"),
  15292. weight: math.unit(120, "lb"),
  15293. name: "Front",
  15294. image: {
  15295. source: "./media/characters/roxi/front.svg",
  15296. extra: 2028 / 1907,
  15297. bottom: 0.01
  15298. }
  15299. },
  15300. frontAlt: {
  15301. height: math.unit(5 + 2 / 12, "feet"),
  15302. weight: math.unit(120, "lb"),
  15303. name: "Front (Alt)",
  15304. image: {
  15305. source: "./media/characters/roxi/front-alt.svg",
  15306. extra: 1828 / 1798,
  15307. bottom: 0.01
  15308. }
  15309. },
  15310. sitting: {
  15311. height: math.unit(2.8, "feet"),
  15312. weight: math.unit(120, "lb"),
  15313. name: "Sitting",
  15314. image: {
  15315. source: "./media/characters/roxi/sitting.svg",
  15316. extra: 2660 / 2462,
  15317. bottom: 0.1
  15318. }
  15319. },
  15320. },
  15321. [
  15322. {
  15323. name: "Normal",
  15324. height: math.unit(5 + 2 / 12, "feet"),
  15325. default: true
  15326. },
  15327. ]
  15328. ))
  15329. characterMakers.push(() => makeCharacter(
  15330. { name: "Shadow" },
  15331. {
  15332. side: {
  15333. height: math.unit(55, "feet"),
  15334. weight: math.unit(153, "tons"),
  15335. name: "Side",
  15336. image: {
  15337. source: "./media/characters/shadow/side.svg",
  15338. extra: 701 / 628,
  15339. bottom: 0.02
  15340. }
  15341. },
  15342. flying: {
  15343. height: math.unit(145, "feet"),
  15344. weight: math.unit(153, "tons"),
  15345. name: "Flying",
  15346. image: {
  15347. source: "./media/characters/shadow/flying.svg"
  15348. }
  15349. },
  15350. },
  15351. [
  15352. {
  15353. name: "Normal",
  15354. height: math.unit(55, "feet"),
  15355. default: true
  15356. },
  15357. ]
  15358. ))
  15359. characterMakers.push(() => makeCharacter(
  15360. { name: "Marcie" },
  15361. {
  15362. front: {
  15363. height: math.unit(6, "feet"),
  15364. weight: math.unit(200, "lb"),
  15365. name: "Front",
  15366. image: {
  15367. source: "./media/characters/marcie/front.svg",
  15368. extra: 960 / 876,
  15369. bottom: 58 / 1017.87
  15370. }
  15371. },
  15372. },
  15373. [
  15374. {
  15375. name: "Macro",
  15376. height: math.unit(1, "mile"),
  15377. default: true
  15378. },
  15379. ]
  15380. ))
  15381. characterMakers.push(() => makeCharacter(
  15382. { name: "Kachina" },
  15383. {
  15384. front: {
  15385. height: math.unit(7, "feet"),
  15386. weight: math.unit(200, "lb"),
  15387. name: "Front",
  15388. image: {
  15389. source: "./media/characters/kachina/front.svg",
  15390. extra: 1290.68 / 1119,
  15391. bottom: 36.5 / 1327.18
  15392. }
  15393. },
  15394. },
  15395. [
  15396. {
  15397. name: "Normal",
  15398. height: math.unit(7, "feet"),
  15399. default: true
  15400. },
  15401. ]
  15402. ))
  15403. characterMakers.push(() => makeCharacter(
  15404. { name: "Kash" },
  15405. {
  15406. looking: {
  15407. height: math.unit(2, "meters"),
  15408. weight: math.unit(300, "kg"),
  15409. name: "Looking",
  15410. image: {
  15411. source: "./media/characters/kash/looking.svg",
  15412. extra: 474 / 344,
  15413. bottom: 0.03
  15414. }
  15415. },
  15416. side: {
  15417. height: math.unit(2, "meters"),
  15418. weight: math.unit(300, "kg"),
  15419. name: "Side",
  15420. image: {
  15421. source: "./media/characters/kash/side.svg",
  15422. extra: 302 / 251,
  15423. bottom: 0.03
  15424. }
  15425. },
  15426. front: {
  15427. height: math.unit(2, "meters"),
  15428. weight: math.unit(300, "kg"),
  15429. name: "Front",
  15430. image: {
  15431. source: "./media/characters/kash/front.svg",
  15432. extra: 495 / 360,
  15433. bottom: 0.015
  15434. }
  15435. },
  15436. },
  15437. [
  15438. {
  15439. name: "Normal",
  15440. height: math.unit(2, "meters"),
  15441. default: true
  15442. },
  15443. {
  15444. name: "Big",
  15445. height: math.unit(3, "meters")
  15446. },
  15447. {
  15448. name: "Large",
  15449. height: math.unit(5, "meters")
  15450. },
  15451. ]
  15452. ))
  15453. characterMakers.push(() => makeCharacter(
  15454. { name: "Lalim" },
  15455. {
  15456. feeding: {
  15457. height: math.unit(6.7, "feet"),
  15458. weight: math.unit(350, "lb"),
  15459. name: "Feeding",
  15460. image: {
  15461. source: "./media/characters/lalim/feeding.svg",
  15462. }
  15463. },
  15464. },
  15465. [
  15466. {
  15467. name: "Normal",
  15468. height: math.unit(6.7, "feet"),
  15469. default: true
  15470. },
  15471. ]
  15472. ))
  15473. characterMakers.push(() => makeCharacter(
  15474. { name: "De'Vout" },
  15475. {
  15476. front: {
  15477. height: math.unit(9.5, "feet"),
  15478. weight: math.unit(600, "lb"),
  15479. name: "Front",
  15480. image: {
  15481. source: "./media/characters/de'vout/front.svg",
  15482. extra: 1443 / 1328,
  15483. bottom: 0.025
  15484. }
  15485. },
  15486. back: {
  15487. height: math.unit(9.5, "feet"),
  15488. weight: math.unit(600, "lb"),
  15489. name: "Back",
  15490. image: {
  15491. source: "./media/characters/de'vout/back.svg",
  15492. extra: 1443 / 1328
  15493. }
  15494. },
  15495. frontDressed: {
  15496. height: math.unit(9.5, "feet"),
  15497. weight: math.unit(600, "lb"),
  15498. name: "Front (Dressed",
  15499. image: {
  15500. source: "./media/characters/de'vout/front-dressed.svg",
  15501. extra: 1443 / 1328,
  15502. bottom: 0.025
  15503. }
  15504. },
  15505. backDressed: {
  15506. height: math.unit(9.5, "feet"),
  15507. weight: math.unit(600, "lb"),
  15508. name: "Back (Dressed",
  15509. image: {
  15510. source: "./media/characters/de'vout/back-dressed.svg",
  15511. extra: 1443 / 1328
  15512. }
  15513. },
  15514. },
  15515. [
  15516. {
  15517. name: "Normal",
  15518. height: math.unit(9.5, "feet"),
  15519. default: true
  15520. },
  15521. ]
  15522. ))
  15523. characterMakers.push(() => makeCharacter(
  15524. { name: "Talana" },
  15525. {
  15526. front: {
  15527. height: math.unit(8, "feet"),
  15528. weight: math.unit(225, "lb"),
  15529. name: "Front",
  15530. image: {
  15531. source: "./media/characters/talana/front.svg",
  15532. extra: 1410 / 1300,
  15533. bottom: 0.015
  15534. }
  15535. },
  15536. frontDressed: {
  15537. height: math.unit(8, "feet"),
  15538. weight: math.unit(225, "lb"),
  15539. name: "Front (Dressed",
  15540. image: {
  15541. source: "./media/characters/talana/front-dressed.svg",
  15542. extra: 1410 / 1300,
  15543. bottom: 0.015
  15544. }
  15545. },
  15546. },
  15547. [
  15548. {
  15549. name: "Normal",
  15550. height: math.unit(8, "feet"),
  15551. default: true
  15552. },
  15553. ]
  15554. ))
  15555. characterMakers.push(() => makeCharacter(
  15556. { name: "Xeauvok" },
  15557. {
  15558. side: {
  15559. height: math.unit(7.2, "feet"),
  15560. weight: math.unit(150, "lb"),
  15561. name: "Side",
  15562. image: {
  15563. source: "./media/characters/xeauvok/side.svg",
  15564. extra: 1975 / 1523,
  15565. bottom: 0.07
  15566. }
  15567. },
  15568. },
  15569. [
  15570. {
  15571. name: "Normal",
  15572. height: math.unit(7.2, "feet"),
  15573. default: true
  15574. },
  15575. ]
  15576. ))
  15577. characterMakers.push(() => makeCharacter(
  15578. { name: "Zara" },
  15579. {
  15580. side: {
  15581. height: math.unit(10, "feet"),
  15582. weight: math.unit(900, "kg"),
  15583. name: "Side",
  15584. image: {
  15585. source: "./media/characters/zara/side.svg",
  15586. extra: 504 / 498
  15587. }
  15588. },
  15589. },
  15590. [
  15591. {
  15592. name: "Normal",
  15593. height: math.unit(10, "feet"),
  15594. default: true
  15595. },
  15596. ]
  15597. ))
  15598. characterMakers.push(() => makeCharacter(
  15599. { name: "Richard (Dragon)" },
  15600. {
  15601. side: {
  15602. height: math.unit(6, "feet"),
  15603. weight: math.unit(150, "lb"),
  15604. name: "Side",
  15605. image: {
  15606. source: "./media/characters/richard-dragon/side.svg",
  15607. extra: 845 / 340,
  15608. bottom: 0.017
  15609. }
  15610. },
  15611. maw: {
  15612. height: math.unit(2.97, "feet"),
  15613. name: "Maw",
  15614. image: {
  15615. source: "./media/characters/richard-dragon/maw.svg"
  15616. }
  15617. },
  15618. },
  15619. [
  15620. ]
  15621. ))
  15622. characterMakers.push(() => makeCharacter(
  15623. { name: "Richard (Smeargle)" },
  15624. {
  15625. front: {
  15626. height: math.unit(4, "feet"),
  15627. weight: math.unit(100, "lb"),
  15628. name: "Front",
  15629. image: {
  15630. source: "./media/characters/richard-smeargle/front.svg",
  15631. extra: 2952 / 2820,
  15632. bottom: 0.028
  15633. }
  15634. },
  15635. },
  15636. [
  15637. {
  15638. name: "Normal",
  15639. height: math.unit(4, "feet"),
  15640. default: true
  15641. },
  15642. {
  15643. name: "Dynamax",
  15644. height: math.unit(20, "meters")
  15645. },
  15646. ]
  15647. ))
  15648. characterMakers.push(() => makeCharacter(
  15649. { name: "Klay" },
  15650. {
  15651. front: {
  15652. height: math.unit(6, "feet"),
  15653. weight: math.unit(110, "lb"),
  15654. name: "Front",
  15655. image: {
  15656. source: "./media/characters/klay/front.svg",
  15657. extra: 962 / 883,
  15658. bottom: 0.04
  15659. }
  15660. },
  15661. back: {
  15662. height: math.unit(6, "feet"),
  15663. weight: math.unit(110, "lb"),
  15664. name: "Back",
  15665. image: {
  15666. source: "./media/characters/klay/back.svg",
  15667. extra: 962 / 883
  15668. }
  15669. },
  15670. beans: {
  15671. height: math.unit(1.15, "feet"),
  15672. name: "Beans",
  15673. image: {
  15674. source: "./media/characters/klay/beans.svg"
  15675. }
  15676. },
  15677. },
  15678. [
  15679. {
  15680. name: "Micro",
  15681. height: math.unit(6, "inches")
  15682. },
  15683. {
  15684. name: "Mini",
  15685. height: math.unit(3, "feet")
  15686. },
  15687. {
  15688. name: "Normal",
  15689. height: math.unit(6, "feet"),
  15690. default: true
  15691. },
  15692. {
  15693. name: "Big",
  15694. height: math.unit(25, "feet")
  15695. },
  15696. {
  15697. name: "Macro",
  15698. height: math.unit(100, "feet")
  15699. },
  15700. {
  15701. name: "Megamacro",
  15702. height: math.unit(400, "feet")
  15703. },
  15704. ]
  15705. ))
  15706. characterMakers.push(() => makeCharacter(
  15707. { name: "Marcus" },
  15708. {
  15709. front: {
  15710. height: math.unit(6, "feet"),
  15711. weight: math.unit(160, "lb"),
  15712. name: "Front",
  15713. image: {
  15714. source: "./media/characters/marcus/front.svg",
  15715. extra: 734 / 676,
  15716. bottom: 0.03
  15717. }
  15718. },
  15719. },
  15720. [
  15721. {
  15722. name: "Little",
  15723. height: math.unit(6, "feet")
  15724. },
  15725. {
  15726. name: "Normal",
  15727. height: math.unit(110, "feet"),
  15728. default: true
  15729. },
  15730. {
  15731. name: "Macro",
  15732. height: math.unit(250, "feet")
  15733. },
  15734. {
  15735. name: "Megamacro",
  15736. height: math.unit(1000, "feet")
  15737. },
  15738. ]
  15739. ))
  15740. characterMakers.push(() => makeCharacter(
  15741. { name: "Claude DelRoute" },
  15742. {
  15743. front: {
  15744. height: math.unit(7, "feet"),
  15745. weight: math.unit(275, "lb"),
  15746. name: "Front",
  15747. image: {
  15748. source: "./media/characters/claude-delroute/front.svg",
  15749. extra: 230 / 214,
  15750. bottom: 0.007
  15751. }
  15752. },
  15753. side: {
  15754. height: math.unit(7, "feet"),
  15755. weight: math.unit(275, "lb"),
  15756. name: "Side",
  15757. image: {
  15758. source: "./media/characters/claude-delroute/side.svg",
  15759. extra: 222 / 214,
  15760. bottom: 0.01
  15761. }
  15762. },
  15763. back: {
  15764. height: math.unit(7, "feet"),
  15765. weight: math.unit(275, "lb"),
  15766. name: "Back",
  15767. image: {
  15768. source: "./media/characters/claude-delroute/back.svg",
  15769. extra: 230 / 214,
  15770. bottom: 0.015
  15771. }
  15772. },
  15773. maw: {
  15774. height: math.unit(0.6407, "meters"),
  15775. name: "Maw",
  15776. image: {
  15777. source: "./media/characters/claude-delroute/maw.svg"
  15778. }
  15779. },
  15780. },
  15781. [
  15782. {
  15783. name: "Normal",
  15784. height: math.unit(7, "feet"),
  15785. default: true
  15786. },
  15787. {
  15788. name: "Lorge",
  15789. height: math.unit(20, "feet")
  15790. },
  15791. ]
  15792. ))
  15793. characterMakers.push(() => makeCharacter(
  15794. { name: "Dragonien" },
  15795. {
  15796. front: {
  15797. height: math.unit(8 + 4 / 12, "feet"),
  15798. weight: math.unit(600, "lb"),
  15799. name: "Front",
  15800. image: {
  15801. source: "./media/characters/dragonien/front.svg",
  15802. extra: 100 / 94,
  15803. bottom: 3.3 / 103.3445
  15804. }
  15805. },
  15806. back: {
  15807. height: math.unit(8 + 4 / 12, "feet"),
  15808. weight: math.unit(600, "lb"),
  15809. name: "Back",
  15810. image: {
  15811. source: "./media/characters/dragonien/back.svg",
  15812. extra: 776 / 746,
  15813. bottom: 6.4 / 782.0616
  15814. }
  15815. },
  15816. foot: {
  15817. height: math.unit(1.54, "feet"),
  15818. name: "Foot",
  15819. image: {
  15820. source: "./media/characters/dragonien/foot.svg",
  15821. }
  15822. },
  15823. },
  15824. [
  15825. {
  15826. name: "Normal",
  15827. height: math.unit(8 + 4 / 12, "feet"),
  15828. default: true
  15829. },
  15830. {
  15831. name: "Macro",
  15832. height: math.unit(200, "feet")
  15833. },
  15834. {
  15835. name: "Megamacro",
  15836. height: math.unit(1, "mile")
  15837. },
  15838. {
  15839. name: "Gigamacro",
  15840. height: math.unit(1000, "miles")
  15841. },
  15842. ]
  15843. ))
  15844. characterMakers.push(() => makeCharacter(
  15845. { name: "Desta" },
  15846. {
  15847. front: {
  15848. height: math.unit(5 + 2 / 12, "feet"),
  15849. weight: math.unit(110, "lb"),
  15850. name: "Front",
  15851. image: {
  15852. source: "./media/characters/desta/front.svg",
  15853. extra: 1482 / 1417
  15854. }
  15855. },
  15856. side: {
  15857. height: math.unit(5 + 2 / 12, "feet"),
  15858. weight: math.unit(110, "lb"),
  15859. name: "Side",
  15860. image: {
  15861. source: "./media/characters/desta/side.svg",
  15862. extra: 2579 / 2491,
  15863. bottom: 0.053
  15864. }
  15865. },
  15866. },
  15867. [
  15868. {
  15869. name: "Micro",
  15870. height: math.unit(6, "inches")
  15871. },
  15872. {
  15873. name: "Normal",
  15874. height: math.unit(5 + 2 / 12, "feet"),
  15875. default: true
  15876. },
  15877. {
  15878. name: "Macro",
  15879. height: math.unit(62, "feet")
  15880. },
  15881. {
  15882. name: "Megamacro",
  15883. height: math.unit(1800, "feet")
  15884. },
  15885. ]
  15886. ))
  15887. characterMakers.push(() => makeCharacter(
  15888. { name: "Storm Alystar" },
  15889. {
  15890. front: {
  15891. height: math.unit(10, "feet"),
  15892. weight: math.unit(700, "lb"),
  15893. name: "Front",
  15894. image: {
  15895. source: "./media/characters/storm-alystar/front.svg",
  15896. extra: 2112 / 1898,
  15897. bottom: 0.034
  15898. }
  15899. },
  15900. },
  15901. [
  15902. {
  15903. name: "Micro",
  15904. height: math.unit(3.5, "inches")
  15905. },
  15906. {
  15907. name: "Normal",
  15908. height: math.unit(10, "feet"),
  15909. default: true
  15910. },
  15911. {
  15912. name: "Macro",
  15913. height: math.unit(400, "feet")
  15914. },
  15915. {
  15916. name: "Deific",
  15917. height: math.unit(60, "miles")
  15918. },
  15919. ]
  15920. ))
  15921. characterMakers.push(() => makeCharacter(
  15922. { name: "Ilia" },
  15923. {
  15924. front: {
  15925. height: math.unit(2.35, "meters"),
  15926. weight: math.unit(119, "kg"),
  15927. name: "Front",
  15928. image: {
  15929. source: "./media/characters/ilia/front.svg",
  15930. extra: 1285 / 1255,
  15931. bottom: 0.06
  15932. }
  15933. },
  15934. },
  15935. [
  15936. {
  15937. name: "Normal",
  15938. height: math.unit(2.35, "meters")
  15939. },
  15940. {
  15941. name: "Macro",
  15942. height: math.unit(140, "meters"),
  15943. default: true
  15944. },
  15945. {
  15946. name: "Megamacro",
  15947. height: math.unit(100, "miles")
  15948. },
  15949. ]
  15950. ))
  15951. characterMakers.push(() => makeCharacter(
  15952. { name: "KingDead" },
  15953. {
  15954. front: {
  15955. height: math.unit(6 + 5 / 12, "feet"),
  15956. weight: math.unit(190, "lb"),
  15957. name: "Front",
  15958. image: {
  15959. source: "./media/characters/kingdead/front.svg",
  15960. extra: 1228 / 1177
  15961. }
  15962. },
  15963. },
  15964. [
  15965. {
  15966. name: "Micro",
  15967. height: math.unit(7, "inches")
  15968. },
  15969. {
  15970. name: "Normal",
  15971. height: math.unit(6 + 5 / 12, "feet")
  15972. },
  15973. {
  15974. name: "Macro",
  15975. height: math.unit(150, "feet"),
  15976. default: true
  15977. },
  15978. {
  15979. name: "Megamacro",
  15980. height: math.unit(200, "miles")
  15981. },
  15982. ]
  15983. ))
  15984. characterMakers.push(() => makeCharacter(
  15985. { name: "Kyrehx" },
  15986. {
  15987. front: {
  15988. height: math.unit(8, "feet"),
  15989. weight: math.unit(600, "lb"),
  15990. name: "Front",
  15991. image: {
  15992. source: "./media/characters/kyrehx/front.svg",
  15993. extra: 1195 / 1095,
  15994. bottom: 0.034
  15995. }
  15996. },
  15997. },
  15998. [
  15999. {
  16000. name: "Micro",
  16001. height: math.unit(2, "inches")
  16002. },
  16003. {
  16004. name: "Normal",
  16005. height: math.unit(8, "feet"),
  16006. default: true
  16007. },
  16008. {
  16009. name: "Macro",
  16010. height: math.unit(255, "feet")
  16011. },
  16012. ]
  16013. ))
  16014. characterMakers.push(() => makeCharacter(
  16015. { name: "Xang" },
  16016. {
  16017. front: {
  16018. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16019. weight: math.unit(184, "lb"),
  16020. name: "Front",
  16021. image: {
  16022. source: "./media/characters/xang/front.svg",
  16023. extra: 845 / 755
  16024. }
  16025. },
  16026. },
  16027. [
  16028. {
  16029. name: "Normal",
  16030. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16031. default: true
  16032. },
  16033. {
  16034. name: "Macro",
  16035. height: math.unit(0.935 * 146, "feet")
  16036. },
  16037. {
  16038. name: "Megamacro",
  16039. height: math.unit(0.935 * 3, "miles")
  16040. },
  16041. ]
  16042. ))
  16043. characterMakers.push(() => makeCharacter(
  16044. { name: "Doc Weardno" },
  16045. {
  16046. frontDressed: {
  16047. height: math.unit(5 + 7 / 12, "feet"),
  16048. weight: math.unit(140, "lb"),
  16049. name: "Front (Dressed)",
  16050. image: {
  16051. source: "./media/characters/doc-weardno/front-dressed.svg",
  16052. extra: 263 / 234
  16053. }
  16054. },
  16055. backDressed: {
  16056. height: math.unit(5 + 7 / 12, "feet"),
  16057. weight: math.unit(140, "lb"),
  16058. name: "Back (Dressed)",
  16059. image: {
  16060. source: "./media/characters/doc-weardno/back-dressed.svg",
  16061. extra: 266 / 238
  16062. }
  16063. },
  16064. front: {
  16065. height: math.unit(5 + 7 / 12, "feet"),
  16066. weight: math.unit(140, "lb"),
  16067. name: "Front",
  16068. image: {
  16069. source: "./media/characters/doc-weardno/front.svg",
  16070. extra: 254 / 233
  16071. }
  16072. },
  16073. },
  16074. [
  16075. {
  16076. name: "Micro",
  16077. height: math.unit(3, "inches")
  16078. },
  16079. {
  16080. name: "Normal",
  16081. height: math.unit(5 + 7 / 12, "feet"),
  16082. default: true
  16083. },
  16084. {
  16085. name: "Macro",
  16086. height: math.unit(25, "feet")
  16087. },
  16088. {
  16089. name: "Megamacro",
  16090. height: math.unit(2, "miles")
  16091. },
  16092. ]
  16093. ))
  16094. characterMakers.push(() => makeCharacter(
  16095. { name: "Seth Whilst" },
  16096. {
  16097. front: {
  16098. height: math.unit(6 + 2 / 12, "feet"),
  16099. weight: math.unit(153, "lb"),
  16100. name: "Front",
  16101. image: {
  16102. source: "./media/characters/seth-whilst/front.svg",
  16103. bottom: 0.07
  16104. }
  16105. },
  16106. },
  16107. [
  16108. {
  16109. name: "Micro",
  16110. height: math.unit(5, "inches")
  16111. },
  16112. {
  16113. name: "Normal",
  16114. height: math.unit(6 + 2 / 12, "feet"),
  16115. default: true
  16116. },
  16117. ]
  16118. ))
  16119. characterMakers.push(() => makeCharacter(
  16120. { name: "Pocket Jabari" },
  16121. {
  16122. front: {
  16123. height: math.unit(3, "inches"),
  16124. weight: math.unit(8, "grams"),
  16125. name: "Front",
  16126. image: {
  16127. source: "./media/characters/pocket-jabari/front.svg",
  16128. extra: 1024 / 974,
  16129. bottom: 0.039
  16130. }
  16131. },
  16132. },
  16133. [
  16134. {
  16135. name: "Minimicro",
  16136. height: math.unit(8, "mm")
  16137. },
  16138. {
  16139. name: "Micro",
  16140. height: math.unit(3, "inches"),
  16141. default: true
  16142. },
  16143. {
  16144. name: "Normal",
  16145. height: math.unit(3, "feet")
  16146. },
  16147. ]
  16148. ))
  16149. characterMakers.push(() => makeCharacter(
  16150. { name: "Sapphy" },
  16151. {
  16152. front: {
  16153. height: math.unit(15, "feet"),
  16154. weight: math.unit(3280, "lb"),
  16155. name: "Front",
  16156. image: {
  16157. source: "./media/characters/sapphy/front.svg",
  16158. extra: 671 / 577,
  16159. bottom: 0.085
  16160. }
  16161. },
  16162. back: {
  16163. height: math.unit(15, "feet"),
  16164. weight: math.unit(3280, "lb"),
  16165. name: "Back",
  16166. image: {
  16167. source: "./media/characters/sapphy/back.svg",
  16168. extra: 631 / 607,
  16169. bottom: 0.045
  16170. }
  16171. },
  16172. },
  16173. [
  16174. {
  16175. name: "Normal",
  16176. height: math.unit(15, "feet")
  16177. },
  16178. {
  16179. name: "Casual Macro",
  16180. height: math.unit(120, "feet")
  16181. },
  16182. {
  16183. name: "Macro",
  16184. height: math.unit(2150, "feet"),
  16185. default: true
  16186. },
  16187. {
  16188. name: "Megamacro",
  16189. height: math.unit(8, "miles")
  16190. },
  16191. {
  16192. name: "Galaxy Mom",
  16193. height: math.unit(6, "megalightyears")
  16194. },
  16195. ]
  16196. ))
  16197. characterMakers.push(() => makeCharacter(
  16198. { name: "Kiro" },
  16199. {
  16200. front: {
  16201. height: math.unit(6, "feet"),
  16202. weight: math.unit(170, "lb"),
  16203. name: "Front",
  16204. image: {
  16205. source: "./media/characters/kiro/front.svg",
  16206. extra: 1064 / 1012,
  16207. bottom: 0.052
  16208. }
  16209. },
  16210. },
  16211. [
  16212. {
  16213. name: "Micro",
  16214. height: math.unit(6, "inches")
  16215. },
  16216. {
  16217. name: "Normal",
  16218. height: math.unit(6, "feet"),
  16219. default: true
  16220. },
  16221. {
  16222. name: "Macro",
  16223. height: math.unit(72, "feet")
  16224. },
  16225. ]
  16226. ))
  16227. characterMakers.push(() => makeCharacter(
  16228. { name: "Irishfox" },
  16229. {
  16230. front: {
  16231. height: math.unit(5 + 9 / 12, "feet"),
  16232. weight: math.unit(175, "lb"),
  16233. name: "Front",
  16234. image: {
  16235. source: "./media/characters/irishfox/front.svg",
  16236. extra: 1912 / 1680,
  16237. bottom: 0.02
  16238. }
  16239. },
  16240. },
  16241. [
  16242. {
  16243. name: "Nano",
  16244. height: math.unit(1, "mm")
  16245. },
  16246. {
  16247. name: "Micro",
  16248. height: math.unit(2, "inches")
  16249. },
  16250. {
  16251. name: "Normal",
  16252. height: math.unit(5 + 9 / 12, "feet"),
  16253. default: true
  16254. },
  16255. {
  16256. name: "Macro",
  16257. height: math.unit(45, "feet")
  16258. },
  16259. ]
  16260. ))
  16261. characterMakers.push(() => makeCharacter(
  16262. { name: "Aronai Sieyes" },
  16263. {
  16264. front: {
  16265. height: math.unit(6 + 1 / 12, "feet"),
  16266. weight: math.unit(150, "lb"),
  16267. name: "Front",
  16268. image: {
  16269. source: "./media/characters/aronai-sieyes/front.svg",
  16270. extra: 1556 / 1480,
  16271. bottom: 0.015
  16272. }
  16273. },
  16274. side: {
  16275. height: math.unit(6 + 1 / 12, "feet"),
  16276. weight: math.unit(150, "lb"),
  16277. name: "Side",
  16278. image: {
  16279. source: "./media/characters/aronai-sieyes/side.svg",
  16280. extra: 1433 / 1390,
  16281. bottom: 0.0393
  16282. }
  16283. },
  16284. back: {
  16285. height: math.unit(6 + 1 / 12, "feet"),
  16286. weight: math.unit(150, "lb"),
  16287. name: "Back",
  16288. image: {
  16289. source: "./media/characters/aronai-sieyes/back.svg",
  16290. extra: 1544 / 1494,
  16291. bottom: 0.02
  16292. }
  16293. },
  16294. frontClothed: {
  16295. height: math.unit(6 + 1 / 12, "feet"),
  16296. weight: math.unit(150, "lb"),
  16297. name: "Front (Clothed)",
  16298. image: {
  16299. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16300. extra: 1582 / 1527
  16301. }
  16302. },
  16303. feral: {
  16304. height: math.unit(18, "feet"),
  16305. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16306. name: "Feral",
  16307. image: {
  16308. source: "./media/characters/aronai-sieyes/feral.svg",
  16309. extra: 1530 / 1240,
  16310. bottom: 0.035
  16311. }
  16312. },
  16313. },
  16314. [
  16315. {
  16316. name: "Micro",
  16317. height: math.unit(2, "inches")
  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: "Xuna" },
  16328. {
  16329. front: {
  16330. height: math.unit(12, "feet"),
  16331. weight: math.unit(410, "kg"),
  16332. name: "Front",
  16333. image: {
  16334. source: "./media/characters/xuna/front.svg",
  16335. extra: 2184 / 1980
  16336. }
  16337. },
  16338. side: {
  16339. height: math.unit(12, "feet"),
  16340. weight: math.unit(410, "kg"),
  16341. name: "Side",
  16342. image: {
  16343. source: "./media/characters/xuna/side.svg",
  16344. extra: 2184 / 1980
  16345. }
  16346. },
  16347. back: {
  16348. height: math.unit(12, "feet"),
  16349. weight: math.unit(410, "kg"),
  16350. name: "Back",
  16351. image: {
  16352. source: "./media/characters/xuna/back.svg",
  16353. extra: 2184 / 1980
  16354. }
  16355. },
  16356. },
  16357. [
  16358. {
  16359. name: "Nano glow",
  16360. height: math.unit(10, "nm")
  16361. },
  16362. {
  16363. name: "Micro floof",
  16364. height: math.unit(0.3, "m")
  16365. },
  16366. {
  16367. name: "Huggable softy boi",
  16368. height: math.unit(3.6576, "m"),
  16369. default: true
  16370. },
  16371. {
  16372. name: "Admirable floof",
  16373. height: math.unit(80, "meters")
  16374. },
  16375. {
  16376. name: "Gentle macro",
  16377. height: math.unit(300, "meters")
  16378. },
  16379. {
  16380. name: "Very careful floof",
  16381. height: math.unit(3200, "meters")
  16382. },
  16383. {
  16384. name: "The mega floof",
  16385. height: math.unit(36000, "meters")
  16386. },
  16387. {
  16388. name: "Giga-fur-Wicker",
  16389. height: math.unit(4800000, "meters")
  16390. },
  16391. {
  16392. name: "Licky world",
  16393. height: math.unit(20000000, "meters")
  16394. },
  16395. {
  16396. name: "Floofy cyan sun",
  16397. height: math.unit(1500000000, "meters")
  16398. },
  16399. {
  16400. name: "Milky Wicker",
  16401. height: math.unit(1000000000000000000000, "meters")
  16402. },
  16403. {
  16404. name: "The observing Wicker",
  16405. height: math.unit(999999999999999999999999999, "meters")
  16406. },
  16407. ]
  16408. ))
  16409. characterMakers.push(() => makeCharacter(
  16410. { name: "Arokha Sieyes" },
  16411. {
  16412. front: {
  16413. height: math.unit(5 + 9 / 12, "feet"),
  16414. weight: math.unit(150, "lb"),
  16415. name: "Front",
  16416. image: {
  16417. source: "./media/characters/arokha-sieyes/front.svg",
  16418. extra: 1425 / 1284,
  16419. bottom: 0.05
  16420. }
  16421. },
  16422. },
  16423. [
  16424. {
  16425. name: "Normal",
  16426. height: math.unit(5 + 9 / 12, "feet")
  16427. },
  16428. {
  16429. name: "Macro",
  16430. height: math.unit(30, "meters"),
  16431. default: true
  16432. },
  16433. ]
  16434. ))
  16435. characterMakers.push(() => makeCharacter(
  16436. { name: "Arokh Sieyes" },
  16437. {
  16438. front: {
  16439. height: math.unit(6, "feet"),
  16440. weight: math.unit(180, "lb"),
  16441. name: "Front",
  16442. image: {
  16443. source: "./media/characters/arokh-sieyes/front.svg",
  16444. extra: 1830 / 1769,
  16445. bottom: 0.01
  16446. }
  16447. },
  16448. },
  16449. [
  16450. {
  16451. name: "Normal",
  16452. height: math.unit(6, "feet")
  16453. },
  16454. {
  16455. name: "Macro",
  16456. height: math.unit(30, "meters"),
  16457. default: true
  16458. },
  16459. ]
  16460. ))
  16461. characterMakers.push(() => makeCharacter(
  16462. { name: "Goldeneye" },
  16463. {
  16464. side: {
  16465. height: math.unit(13 + 1 / 12, "feet"),
  16466. weight: math.unit(8.5, "tonnes"),
  16467. name: "Side",
  16468. image: {
  16469. source: "./media/characters/goldeneye/side.svg",
  16470. extra: 1182 / 778,
  16471. bottom: 0.067
  16472. }
  16473. },
  16474. paw: {
  16475. height: math.unit(3.4, "feet"),
  16476. name: "Paw",
  16477. image: {
  16478. source: "./media/characters/goldeneye/paw.svg"
  16479. }
  16480. },
  16481. },
  16482. [
  16483. {
  16484. name: "Normal",
  16485. height: math.unit(13 + 1 / 12, "feet"),
  16486. default: true
  16487. },
  16488. ]
  16489. ))
  16490. characterMakers.push(() => makeCharacter(
  16491. { name: "Leonardo Lycheborne" },
  16492. {
  16493. front: {
  16494. height: math.unit(6 + 1 / 12, "feet"),
  16495. weight: math.unit(210, "lb"),
  16496. name: "Front",
  16497. image: {
  16498. source: "./media/characters/leonardo-lycheborne/front.svg",
  16499. extra: 390 / 365,
  16500. bottom: 0.032
  16501. }
  16502. },
  16503. side: {
  16504. height: math.unit(6 + 1 / 12, "feet"),
  16505. weight: math.unit(210, "lb"),
  16506. name: "Side",
  16507. image: {
  16508. source: "./media/characters/leonardo-lycheborne/side.svg",
  16509. extra: 390 / 365,
  16510. bottom: 0.005
  16511. }
  16512. },
  16513. back: {
  16514. height: math.unit(6 + 1 / 12, "feet"),
  16515. weight: math.unit(210, "lb"),
  16516. name: "Back",
  16517. image: {
  16518. source: "./media/characters/leonardo-lycheborne/back.svg",
  16519. extra: 392 / 366,
  16520. bottom: 0.01
  16521. }
  16522. },
  16523. hand: {
  16524. height: math.unit(1.08, "feet"),
  16525. name: "Hand",
  16526. image: {
  16527. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16528. }
  16529. },
  16530. foot: {
  16531. height: math.unit(1.32, "feet"),
  16532. name: "Foot",
  16533. image: {
  16534. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16535. }
  16536. },
  16537. were: {
  16538. height: math.unit(20, "feet"),
  16539. weight: math.unit(7800, "lb"),
  16540. name: "Were",
  16541. image: {
  16542. source: "./media/characters/leonardo-lycheborne/were.svg",
  16543. extra: 308 / 294,
  16544. bottom: 0.048
  16545. }
  16546. },
  16547. feral: {
  16548. height: math.unit(7.5, "feet"),
  16549. weight: math.unit(600, "lb"),
  16550. name: "Feral",
  16551. image: {
  16552. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16553. extra: 210 / 186,
  16554. bottom: 0.108
  16555. }
  16556. },
  16557. taur: {
  16558. height: math.unit(11, "feet"),
  16559. weight: math.unit(3300, "lb"),
  16560. name: "Taur",
  16561. image: {
  16562. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16563. extra: 320 / 303,
  16564. bottom: 0.025
  16565. }
  16566. },
  16567. barghest: {
  16568. height: math.unit(11, "feet"),
  16569. weight: math.unit(1300, "lb"),
  16570. name: "Barghest",
  16571. image: {
  16572. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16573. extra: 323 / 302,
  16574. bottom: 0.027
  16575. }
  16576. },
  16577. dick: {
  16578. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16579. name: "Dick",
  16580. image: {
  16581. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16582. }
  16583. },
  16584. dickWere: {
  16585. height: math.unit((20) / 3.8, "feet"),
  16586. name: "Dick (Were)",
  16587. image: {
  16588. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16589. }
  16590. },
  16591. },
  16592. [
  16593. {
  16594. name: "Normal",
  16595. height: math.unit(6 + 1 / 12, "feet"),
  16596. default: true
  16597. },
  16598. ]
  16599. ))
  16600. characterMakers.push(() => makeCharacter(
  16601. { name: "Jet" },
  16602. {
  16603. front: {
  16604. height: math.unit(10, "feet"),
  16605. weight: math.unit(350, "lb"),
  16606. name: "Front",
  16607. image: {
  16608. source: "./media/characters/jet/front.svg",
  16609. extra: 2050 / 1980,
  16610. bottom: 0.013
  16611. }
  16612. },
  16613. back: {
  16614. height: math.unit(10, "feet"),
  16615. weight: math.unit(350, "lb"),
  16616. name: "Back",
  16617. image: {
  16618. source: "./media/characters/jet/back.svg",
  16619. extra: 2050 / 1980,
  16620. bottom: 0.013
  16621. }
  16622. },
  16623. },
  16624. [
  16625. {
  16626. name: "Micro",
  16627. height: math.unit(6, "inches")
  16628. },
  16629. {
  16630. name: "Normal",
  16631. height: math.unit(10, "feet"),
  16632. default: true
  16633. },
  16634. {
  16635. name: "Macro",
  16636. height: math.unit(100, "feet")
  16637. },
  16638. ]
  16639. ))
  16640. characterMakers.push(() => makeCharacter(
  16641. { name: "Tanarath" },
  16642. {
  16643. front: {
  16644. height: math.unit(15, "feet"),
  16645. weight: math.unit(2800, "lb"),
  16646. name: "Front",
  16647. image: {
  16648. source: "./media/characters/tanarath/front.svg",
  16649. extra: 2392 / 2220,
  16650. bottom: 0.03
  16651. }
  16652. },
  16653. back: {
  16654. height: math.unit(15, "feet"),
  16655. weight: math.unit(2800, "lb"),
  16656. name: "Back",
  16657. image: {
  16658. source: "./media/characters/tanarath/back.svg",
  16659. extra: 2392 / 2220,
  16660. bottom: 0.03
  16661. }
  16662. },
  16663. },
  16664. [
  16665. {
  16666. name: "Normal",
  16667. height: math.unit(15, "feet"),
  16668. default: true
  16669. },
  16670. ]
  16671. ))
  16672. characterMakers.push(() => makeCharacter(
  16673. { name: "Patty CattyBatty" },
  16674. {
  16675. front: {
  16676. height: math.unit(7 + 1 / 12, "feet"),
  16677. weight: math.unit(175, "lb"),
  16678. name: "Front",
  16679. image: {
  16680. source: "./media/characters/patty-cattybatty/front.svg",
  16681. extra: 908 / 874,
  16682. bottom: 0.025
  16683. }
  16684. },
  16685. },
  16686. [
  16687. {
  16688. name: "Micro",
  16689. height: math.unit(1, "inch")
  16690. },
  16691. {
  16692. name: "Normal",
  16693. height: math.unit(7 + 1 / 12, "feet")
  16694. },
  16695. {
  16696. name: "Mini Macro",
  16697. height: math.unit(155, "feet")
  16698. },
  16699. {
  16700. name: "Macro",
  16701. height: math.unit(1077, "feet")
  16702. },
  16703. {
  16704. name: "Mega Macro",
  16705. height: math.unit(47650, "feet"),
  16706. default: true
  16707. },
  16708. {
  16709. name: "Giga Macro",
  16710. height: math.unit(440, "miles")
  16711. },
  16712. {
  16713. name: "Tera Macro",
  16714. height: math.unit(8700, "miles")
  16715. },
  16716. {
  16717. name: "Planetary Macro",
  16718. height: math.unit(32700, "miles")
  16719. },
  16720. {
  16721. name: "Solar Macro",
  16722. height: math.unit(550000, "miles")
  16723. },
  16724. {
  16725. name: "Celestial Macro",
  16726. height: math.unit(2.5, "AU")
  16727. },
  16728. ]
  16729. ))
  16730. characterMakers.push(() => makeCharacter(
  16731. { name: "Cappu" },
  16732. {
  16733. front: {
  16734. height: math.unit(4 + 5 / 12, "feet"),
  16735. weight: math.unit(90, "lb"),
  16736. name: "Front",
  16737. image: {
  16738. source: "./media/characters/cappu/front.svg",
  16739. extra: 1247 / 1152,
  16740. bottom: 0.012
  16741. }
  16742. },
  16743. },
  16744. [
  16745. {
  16746. name: "Normal",
  16747. height: math.unit(4 + 5 / 12, "feet"),
  16748. default: true
  16749. },
  16750. ]
  16751. ))
  16752. characterMakers.push(() => makeCharacter(
  16753. { name: "Sebi" },
  16754. {
  16755. frontDressed: {
  16756. height: math.unit(70, "cm"),
  16757. weight: math.unit(6, "kg"),
  16758. name: "Front (Dressed)",
  16759. image: {
  16760. source: "./media/characters/sebi/front-dressed.svg",
  16761. extra: 713.5 / 686.5,
  16762. bottom: 0.003
  16763. }
  16764. },
  16765. front: {
  16766. height: math.unit(70, "cm"),
  16767. weight: math.unit(5, "kg"),
  16768. name: "Front",
  16769. image: {
  16770. source: "./media/characters/sebi/front.svg",
  16771. extra: 713.5 / 686.5,
  16772. bottom: 0.003
  16773. }
  16774. }
  16775. },
  16776. [
  16777. {
  16778. name: "Normal",
  16779. height: math.unit(70, "cm"),
  16780. default: true
  16781. },
  16782. {
  16783. name: "Macro",
  16784. height: math.unit(8, "meters")
  16785. },
  16786. ]
  16787. ))
  16788. characterMakers.push(() => makeCharacter(
  16789. { name: "Typhek" },
  16790. {
  16791. front: {
  16792. height: math.unit(6, "feet"),
  16793. weight: math.unit(150, "lb"),
  16794. name: "Front",
  16795. image: {
  16796. source: "./media/characters/typhek/front.svg",
  16797. extra: 1948 / 1929,
  16798. bottom: 0.025
  16799. }
  16800. },
  16801. side: {
  16802. height: math.unit(6, "feet"),
  16803. weight: math.unit(150, "lb"),
  16804. name: "Side",
  16805. image: {
  16806. source: "./media/characters/typhek/side.svg",
  16807. extra: 2034 / 2010,
  16808. bottom: 0.003
  16809. }
  16810. },
  16811. back: {
  16812. height: math.unit(6, "feet"),
  16813. weight: math.unit(150, "lb"),
  16814. name: "Back",
  16815. image: {
  16816. source: "./media/characters/typhek/back.svg",
  16817. extra: 2005 / 1978,
  16818. bottom: 0.004
  16819. }
  16820. },
  16821. palm: {
  16822. height: math.unit(1.2, "feet"),
  16823. name: "Palm",
  16824. image: {
  16825. source: "./media/characters/typhek/palm.svg"
  16826. }
  16827. },
  16828. fist: {
  16829. height: math.unit(1.1, "feet"),
  16830. name: "Fist",
  16831. image: {
  16832. source: "./media/characters/typhek/fist.svg"
  16833. }
  16834. },
  16835. foot: {
  16836. height: math.unit(1.57, "feet"),
  16837. name: "Foot",
  16838. image: {
  16839. source: "./media/characters/typhek/foot.svg"
  16840. }
  16841. },
  16842. sole: {
  16843. height: math.unit(2.05, "feet"),
  16844. name: "Sole",
  16845. image: {
  16846. source: "./media/characters/typhek/sole.svg"
  16847. }
  16848. },
  16849. },
  16850. [
  16851. {
  16852. name: "Macro",
  16853. height: math.unit(40, "stories"),
  16854. default: true
  16855. },
  16856. {
  16857. name: "Megamacro",
  16858. height: math.unit(1, "mile")
  16859. },
  16860. {
  16861. name: "Gigamacro",
  16862. height: math.unit(4000, "solarradii")
  16863. },
  16864. {
  16865. name: "Universal",
  16866. height: math.unit(1.1, "universes")
  16867. }
  16868. ]
  16869. ))
  16870. characterMakers.push(() => makeCharacter(
  16871. { name: "Kassy" },
  16872. {
  16873. side: {
  16874. height: math.unit(5 + 7 / 12, "feet"),
  16875. weight: math.unit(150, "lb"),
  16876. name: "Side",
  16877. image: {
  16878. source: "./media/characters/kassy/side.svg",
  16879. extra: 1280 / 1225,
  16880. bottom: 0.002
  16881. }
  16882. },
  16883. front: {
  16884. height: math.unit(5 + 7 / 12, "feet"),
  16885. weight: math.unit(150, "lb"),
  16886. name: "Front",
  16887. image: {
  16888. source: "./media/characters/kassy/front.svg",
  16889. extra: 1280 / 1225,
  16890. bottom: 0.025
  16891. }
  16892. },
  16893. back: {
  16894. height: math.unit(5 + 7 / 12, "feet"),
  16895. weight: math.unit(150, "lb"),
  16896. name: "Back",
  16897. image: {
  16898. source: "./media/characters/kassy/back.svg",
  16899. extra: 1280 / 1225,
  16900. bottom: 0.002
  16901. }
  16902. },
  16903. foot: {
  16904. height: math.unit(1.266, "feet"),
  16905. name: "Foot",
  16906. image: {
  16907. source: "./media/characters/kassy/foot.svg"
  16908. }
  16909. },
  16910. },
  16911. [
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(5 + 7 / 12, "feet")
  16915. },
  16916. {
  16917. name: "Macro",
  16918. height: math.unit(137, "feet"),
  16919. default: true
  16920. },
  16921. {
  16922. name: "Megamacro",
  16923. height: math.unit(1, "mile")
  16924. },
  16925. ]
  16926. ))
  16927. characterMakers.push(() => makeCharacter(
  16928. { name: "Neil" },
  16929. {
  16930. front: {
  16931. height: math.unit(6 + 1 / 12, "feet"),
  16932. weight: math.unit(200, "lb"),
  16933. name: "Front",
  16934. image: {
  16935. source: "./media/characters/neil/front.svg",
  16936. extra: 1326 / 1250,
  16937. bottom: 0.023
  16938. }
  16939. },
  16940. },
  16941. [
  16942. {
  16943. name: "Normal",
  16944. height: math.unit(6 + 1 / 12, "feet"),
  16945. default: true
  16946. },
  16947. {
  16948. name: "Macro",
  16949. height: math.unit(200, "feet")
  16950. },
  16951. ]
  16952. ))
  16953. characterMakers.push(() => makeCharacter(
  16954. { name: "Atticus" },
  16955. {
  16956. front: {
  16957. height: math.unit(5 + 9 / 12, "feet"),
  16958. weight: math.unit(190, "lb"),
  16959. name: "Front",
  16960. image: {
  16961. source: "./media/characters/atticus/front.svg",
  16962. extra: 2934 / 2785,
  16963. bottom: 0.025
  16964. }
  16965. },
  16966. },
  16967. [
  16968. {
  16969. name: "Normal",
  16970. height: math.unit(5 + 9 / 12, "feet"),
  16971. default: true
  16972. },
  16973. {
  16974. name: "Macro",
  16975. height: math.unit(180, "feet")
  16976. },
  16977. ]
  16978. ))
  16979. characterMakers.push(() => makeCharacter(
  16980. { name: "Milo" },
  16981. {
  16982. side: {
  16983. height: math.unit(9, "feet"),
  16984. weight: math.unit(650, "lb"),
  16985. name: "Side",
  16986. image: {
  16987. source: "./media/characters/milo/side.svg",
  16988. extra: 2644 / 2310,
  16989. bottom: 0.032
  16990. }
  16991. },
  16992. },
  16993. [
  16994. {
  16995. name: "Normal",
  16996. height: math.unit(9, "feet"),
  16997. default: true
  16998. },
  16999. {
  17000. name: "Macro",
  17001. height: math.unit(300, "feet")
  17002. },
  17003. ]
  17004. ))
  17005. characterMakers.push(() => makeCharacter(
  17006. { name: "Ijzer" },
  17007. {
  17008. side: {
  17009. height: math.unit(8, "meters"),
  17010. weight: math.unit(90000, "kg"),
  17011. name: "Side",
  17012. image: {
  17013. source: "./media/characters/ijzer/side.svg",
  17014. extra: 2756 / 1600,
  17015. bottom: 0.01
  17016. }
  17017. },
  17018. },
  17019. [
  17020. {
  17021. name: "Small",
  17022. height: math.unit(3, "meters")
  17023. },
  17024. {
  17025. name: "Normal",
  17026. height: math.unit(8, "meters"),
  17027. default: true
  17028. },
  17029. {
  17030. name: "Normal+",
  17031. height: math.unit(10, "meters")
  17032. },
  17033. {
  17034. name: "Bigger",
  17035. height: math.unit(24, "meters")
  17036. },
  17037. {
  17038. name: "Huge",
  17039. height: math.unit(80, "meters")
  17040. },
  17041. ]
  17042. ))
  17043. characterMakers.push(() => makeCharacter(
  17044. { name: "Luca Cervicum" },
  17045. {
  17046. front: {
  17047. height: math.unit(6 + 2 / 12, "feet"),
  17048. weight: math.unit(153, "lb"),
  17049. name: "Front",
  17050. image: {
  17051. source: "./media/characters/luca-cervicum/front.svg",
  17052. extra: 370 / 327,
  17053. bottom: 0.015
  17054. }
  17055. },
  17056. back: {
  17057. height: math.unit(6 + 2 / 12, "feet"),
  17058. weight: math.unit(153, "lb"),
  17059. name: "Back",
  17060. image: {
  17061. source: "./media/characters/luca-cervicum/back.svg",
  17062. extra: 367 / 333,
  17063. bottom: 0.005
  17064. }
  17065. },
  17066. frontGear: {
  17067. height: math.unit(6 + 2 / 12, "feet"),
  17068. weight: math.unit(173, "lb"),
  17069. name: "Front (Gear)",
  17070. image: {
  17071. source: "./media/characters/luca-cervicum/front-gear.svg",
  17072. extra: 377 / 333,
  17073. bottom: 0.006
  17074. }
  17075. },
  17076. },
  17077. [
  17078. {
  17079. name: "Normal",
  17080. height: math.unit(6 + 2 / 12, "feet"),
  17081. default: true
  17082. },
  17083. ]
  17084. ))
  17085. characterMakers.push(() => makeCharacter(
  17086. { name: "Oliver" },
  17087. {
  17088. front: {
  17089. height: math.unit(6 + 1 / 12, "feet"),
  17090. weight: math.unit(304, "lb"),
  17091. name: "Front",
  17092. image: {
  17093. source: "./media/characters/oliver/front.svg",
  17094. extra: 157 / 143,
  17095. bottom: 0.08
  17096. }
  17097. },
  17098. },
  17099. [
  17100. {
  17101. name: "Normal",
  17102. height: math.unit(6 + 1 / 12, "feet"),
  17103. default: true
  17104. },
  17105. ]
  17106. ))
  17107. characterMakers.push(() => makeCharacter(
  17108. { name: "Shane" },
  17109. {
  17110. front: {
  17111. height: math.unit(5 + 7 / 12, "feet"),
  17112. weight: math.unit(140, "lb"),
  17113. name: "Front",
  17114. image: {
  17115. source: "./media/characters/shane/front.svg",
  17116. extra: 304 / 289,
  17117. bottom: 0.005
  17118. }
  17119. },
  17120. },
  17121. [
  17122. {
  17123. name: "Normal",
  17124. height: math.unit(5 + 7 / 12, "feet"),
  17125. default: true
  17126. },
  17127. ]
  17128. ))
  17129. characterMakers.push(() => makeCharacter(
  17130. { name: "Shin" },
  17131. {
  17132. front: {
  17133. height: math.unit(5 + 9 / 12, "feet"),
  17134. weight: math.unit(178, "lb"),
  17135. name: "Front",
  17136. image: {
  17137. source: "./media/characters/shin/front.svg",
  17138. extra: 159 / 151,
  17139. bottom: 0.015
  17140. }
  17141. },
  17142. },
  17143. [
  17144. {
  17145. name: "Normal",
  17146. height: math.unit(5 + 9 / 12, "feet"),
  17147. default: true
  17148. },
  17149. ]
  17150. ))
  17151. characterMakers.push(() => makeCharacter(
  17152. { name: "Xerxes" },
  17153. {
  17154. front: {
  17155. height: math.unit(5 + 10 / 12, "feet"),
  17156. weight: math.unit(168, "lb"),
  17157. name: "Front",
  17158. image: {
  17159. source: "./media/characters/xerxes/front.svg",
  17160. extra: 282 / 260,
  17161. bottom: 0.045
  17162. }
  17163. },
  17164. },
  17165. [
  17166. {
  17167. name: "Normal",
  17168. height: math.unit(5 + 10 / 12, "feet"),
  17169. default: true
  17170. },
  17171. ]
  17172. ))
  17173. characterMakers.push(() => makeCharacter(
  17174. { name: "Chaska" },
  17175. {
  17176. front: {
  17177. height: math.unit(6 + 7 / 12, "feet"),
  17178. weight: math.unit(208, "lb"),
  17179. name: "Front",
  17180. image: {
  17181. source: "./media/characters/chaska/front.svg",
  17182. extra: 332 / 319,
  17183. bottom: 0.015
  17184. }
  17185. },
  17186. },
  17187. [
  17188. {
  17189. name: "Normal",
  17190. height: math.unit(6 + 7 / 12, "feet"),
  17191. default: true
  17192. },
  17193. ]
  17194. ))
  17195. characterMakers.push(() => makeCharacter(
  17196. { name: "Enuk" },
  17197. {
  17198. front: {
  17199. height: math.unit(5 + 8 / 12, "feet"),
  17200. weight: math.unit(208, "lb"),
  17201. name: "Front",
  17202. image: {
  17203. source: "./media/characters/enuk/front.svg",
  17204. extra: 437 / 406,
  17205. bottom: 0.02
  17206. }
  17207. },
  17208. },
  17209. [
  17210. {
  17211. name: "Normal",
  17212. height: math.unit(5 + 8 / 12, "feet"),
  17213. default: true
  17214. },
  17215. ]
  17216. ))
  17217. characterMakers.push(() => makeCharacter(
  17218. { name: "Bruun" },
  17219. {
  17220. front: {
  17221. height: math.unit(5 + 10 / 12, "feet"),
  17222. weight: math.unit(252, "lb"),
  17223. name: "Front",
  17224. image: {
  17225. source: "./media/characters/bruun/front.svg",
  17226. extra: 197 / 187,
  17227. bottom: 0.012
  17228. }
  17229. },
  17230. },
  17231. [
  17232. {
  17233. name: "Normal",
  17234. height: math.unit(5 + 10 / 12, "feet"),
  17235. default: true
  17236. },
  17237. ]
  17238. ))
  17239. characterMakers.push(() => makeCharacter(
  17240. { name: "Alexeev" },
  17241. {
  17242. front: {
  17243. height: math.unit(6 + 10 / 12, "feet"),
  17244. weight: math.unit(255, "lb"),
  17245. name: "Front",
  17246. image: {
  17247. source: "./media/characters/alexeev/front.svg",
  17248. extra: 213 / 200,
  17249. bottom: 0.05
  17250. }
  17251. },
  17252. },
  17253. [
  17254. {
  17255. name: "Normal",
  17256. height: math.unit(6 + 10 / 12, "feet"),
  17257. default: true
  17258. },
  17259. ]
  17260. ))
  17261. characterMakers.push(() => makeCharacter(
  17262. { name: "Evelyn" },
  17263. {
  17264. front: {
  17265. height: math.unit(2 + 8 / 12, "feet"),
  17266. weight: math.unit(22, "lb"),
  17267. name: "Front",
  17268. image: {
  17269. source: "./media/characters/evelyn/front.svg",
  17270. extra: 208 / 180
  17271. }
  17272. },
  17273. },
  17274. [
  17275. {
  17276. name: "Normal",
  17277. height: math.unit(2 + 8 / 12, "feet"),
  17278. default: true
  17279. },
  17280. ]
  17281. ))
  17282. characterMakers.push(() => makeCharacter(
  17283. { name: "Inca" },
  17284. {
  17285. front: {
  17286. height: math.unit(5 + 9 / 12, "feet"),
  17287. weight: math.unit(139, "lb"),
  17288. name: "Front",
  17289. image: {
  17290. source: "./media/characters/inca/front.svg",
  17291. extra: 294 / 291,
  17292. bottom: 0.03
  17293. }
  17294. },
  17295. },
  17296. [
  17297. {
  17298. name: "Normal",
  17299. height: math.unit(5 + 9 / 12, "feet"),
  17300. default: true
  17301. },
  17302. ]
  17303. ))
  17304. characterMakers.push(() => makeCharacter(
  17305. { name: "Magdalene" },
  17306. {
  17307. front: {
  17308. height: math.unit(5 + 1 / 12, "feet"),
  17309. weight: math.unit(84, "lb"),
  17310. name: "Front",
  17311. image: {
  17312. source: "./media/characters/magdalene/front.svg",
  17313. extra: 293 / 273
  17314. }
  17315. },
  17316. },
  17317. [
  17318. {
  17319. name: "Normal",
  17320. height: math.unit(5 + 1 / 12, "feet"),
  17321. default: true
  17322. },
  17323. ]
  17324. ))
  17325. characterMakers.push(() => makeCharacter(
  17326. { name: "Mera" },
  17327. {
  17328. front: {
  17329. height: math.unit(6 + 3 / 12, "feet"),
  17330. weight: math.unit(185, "lb"),
  17331. name: "Front",
  17332. image: {
  17333. source: "./media/characters/mera/front.svg",
  17334. extra: 291 / 277,
  17335. bottom: 0.03
  17336. }
  17337. },
  17338. },
  17339. [
  17340. {
  17341. name: "Normal",
  17342. height: math.unit(6 + 3 / 12, "feet"),
  17343. default: true
  17344. },
  17345. ]
  17346. ))
  17347. characterMakers.push(() => makeCharacter(
  17348. { name: "Ceres" },
  17349. {
  17350. front: {
  17351. height: math.unit(6 + 7 / 12, "feet"),
  17352. weight: math.unit(160, "lb"),
  17353. name: "Front",
  17354. image: {
  17355. source: "./media/characters/ceres/front.svg",
  17356. extra: 1023 / 950,
  17357. bottom: 0.027
  17358. }
  17359. },
  17360. back: {
  17361. height: math.unit(6 + 7 / 12, "feet"),
  17362. weight: math.unit(160, "lb"),
  17363. name: "Back",
  17364. image: {
  17365. source: "./media/characters/ceres/back.svg",
  17366. extra: 1023 / 950
  17367. }
  17368. },
  17369. },
  17370. [
  17371. {
  17372. name: "Normal",
  17373. height: math.unit(6 + 7 / 12, "feet"),
  17374. default: true
  17375. },
  17376. ]
  17377. ))
  17378. characterMakers.push(() => makeCharacter(
  17379. { name: "Kris" },
  17380. {
  17381. front: {
  17382. height: math.unit(5 + 10 / 12, "feet"),
  17383. weight: math.unit(150, "lb"),
  17384. name: "Front",
  17385. image: {
  17386. source: "./media/characters/kris/front.svg",
  17387. extra: 885 / 803,
  17388. bottom: 0.03
  17389. }
  17390. },
  17391. },
  17392. [
  17393. {
  17394. name: "Normal",
  17395. height: math.unit(5 + 10 / 12, "feet"),
  17396. default: true
  17397. },
  17398. ]
  17399. ))
  17400. characterMakers.push(() => makeCharacter(
  17401. { name: "Taluthus" },
  17402. {
  17403. front: {
  17404. height: math.unit(7, "feet"),
  17405. weight: math.unit(120, "kg"),
  17406. name: "Front",
  17407. image: {
  17408. source: "./media/characters/taluthus/front.svg",
  17409. extra: 903 / 833,
  17410. bottom: 0.015
  17411. }
  17412. },
  17413. },
  17414. [
  17415. {
  17416. name: "Normal",
  17417. height: math.unit(7, "feet"),
  17418. default: true
  17419. },
  17420. {
  17421. name: "Macro",
  17422. height: math.unit(300, "feet")
  17423. },
  17424. ]
  17425. ))
  17426. characterMakers.push(() => makeCharacter(
  17427. { name: "Dawn" },
  17428. {
  17429. front: {
  17430. height: math.unit(5 + 9 / 12, "feet"),
  17431. weight: math.unit(145, "lb"),
  17432. name: "Front",
  17433. image: {
  17434. source: "./media/characters/dawn/front.svg",
  17435. extra: 2094 / 2016,
  17436. bottom: 0.025
  17437. }
  17438. },
  17439. back: {
  17440. height: math.unit(5 + 9 / 12, "feet"),
  17441. weight: math.unit(160, "lb"),
  17442. name: "Back",
  17443. image: {
  17444. source: "./media/characters/dawn/back.svg",
  17445. extra: 2112 / 2080,
  17446. bottom: 0.005
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Normal",
  17453. height: math.unit(6 + 7 / 12, "feet"),
  17454. default: true
  17455. },
  17456. ]
  17457. ))
  17458. characterMakers.push(() => makeCharacter(
  17459. { name: "Arador" },
  17460. {
  17461. anthro: {
  17462. height: math.unit(8 + 3 / 12, "feet"),
  17463. weight: math.unit(450, "lb"),
  17464. name: "Anthro",
  17465. image: {
  17466. source: "./media/characters/arador/anthro.svg",
  17467. extra: 1835 / 1718,
  17468. bottom: 0.025
  17469. }
  17470. },
  17471. feral: {
  17472. height: math.unit(4, "feet"),
  17473. weight: math.unit(200, "lb"),
  17474. name: "Feral",
  17475. image: {
  17476. source: "./media/characters/arador/feral.svg",
  17477. extra: 1683 / 1514,
  17478. bottom: 0.07
  17479. }
  17480. },
  17481. },
  17482. [
  17483. {
  17484. name: "Normal",
  17485. height: math.unit(8 + 3 / 12, "feet")
  17486. },
  17487. {
  17488. name: "Macro",
  17489. height: math.unit(82.5, "feet"),
  17490. default: true
  17491. },
  17492. ]
  17493. ))
  17494. characterMakers.push(() => makeCharacter(
  17495. { name: "Dharsi" },
  17496. {
  17497. front: {
  17498. height: math.unit(5 + 10 / 12, "feet"),
  17499. weight: math.unit(125, "lb"),
  17500. name: "Front",
  17501. image: {
  17502. source: "./media/characters/dharsi/front.svg",
  17503. extra: 716 / 630,
  17504. bottom: 0.035
  17505. }
  17506. },
  17507. },
  17508. [
  17509. {
  17510. name: "Nano",
  17511. height: math.unit(100, "nm")
  17512. },
  17513. {
  17514. name: "Micro",
  17515. height: math.unit(2, "inches")
  17516. },
  17517. {
  17518. name: "Normal",
  17519. height: math.unit(5 + 10 / 12, "feet"),
  17520. default: true
  17521. },
  17522. {
  17523. name: "Macro",
  17524. height: math.unit(1000, "feet")
  17525. },
  17526. {
  17527. name: "Megamacro",
  17528. height: math.unit(10, "miles")
  17529. },
  17530. {
  17531. name: "Gigamacro",
  17532. height: math.unit(3000, "miles")
  17533. },
  17534. {
  17535. name: "Teramacro",
  17536. height: math.unit(500000, "miles")
  17537. },
  17538. {
  17539. name: "Teramacro+",
  17540. height: math.unit(30, "galaxies")
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Deathy" },
  17546. {
  17547. front: {
  17548. height: math.unit(6, "feet"),
  17549. weight: math.unit(150, "lb"),
  17550. name: "Front",
  17551. image: {
  17552. source: "./media/characters/deathy/front.svg",
  17553. extra: 1552 / 1463,
  17554. bottom: 0.025
  17555. }
  17556. },
  17557. side: {
  17558. height: math.unit(6, "feet"),
  17559. weight: math.unit(150, "lb"),
  17560. name: "Side",
  17561. image: {
  17562. source: "./media/characters/deathy/side.svg",
  17563. extra: 1604 / 1455,
  17564. bottom: 0.025
  17565. }
  17566. },
  17567. back: {
  17568. height: math.unit(6, "feet"),
  17569. weight: math.unit(150, "lb"),
  17570. name: "Back",
  17571. image: {
  17572. source: "./media/characters/deathy/back.svg",
  17573. extra: 1580 / 1463,
  17574. bottom: 0.005
  17575. }
  17576. },
  17577. },
  17578. [
  17579. {
  17580. name: "Micro",
  17581. height: math.unit(5, "millimeters")
  17582. },
  17583. {
  17584. name: "Normal",
  17585. height: math.unit(6 + 5 / 12, "feet"),
  17586. default: true
  17587. },
  17588. ]
  17589. ))
  17590. characterMakers.push(() => makeCharacter(
  17591. { name: "Juniper" },
  17592. {
  17593. front: {
  17594. height: math.unit(16, "feet"),
  17595. weight: math.unit(4000, "lb"),
  17596. name: "Front",
  17597. image: {
  17598. source: "./media/characters/juniper/front.svg",
  17599. bottom: 0.04
  17600. }
  17601. },
  17602. },
  17603. [
  17604. {
  17605. name: "Normal",
  17606. height: math.unit(16, "feet"),
  17607. default: true
  17608. },
  17609. ]
  17610. ))
  17611. characterMakers.push(() => makeCharacter(
  17612. { name: "Hipster" },
  17613. {
  17614. front: {
  17615. height: math.unit(6, "feet"),
  17616. weight: math.unit(150, "lb"),
  17617. name: "Front",
  17618. image: {
  17619. source: "./media/characters/hipster/front.svg",
  17620. extra: 1312 / 1209,
  17621. bottom: 0.025
  17622. }
  17623. },
  17624. back: {
  17625. height: math.unit(6, "feet"),
  17626. weight: math.unit(150, "lb"),
  17627. name: "Back",
  17628. image: {
  17629. source: "./media/characters/hipster/back.svg",
  17630. extra: 1281 / 1196,
  17631. bottom: 0.01
  17632. }
  17633. },
  17634. },
  17635. [
  17636. {
  17637. name: "Micro",
  17638. height: math.unit(1, "mm")
  17639. },
  17640. {
  17641. name: "Normal",
  17642. height: math.unit(4, "inches"),
  17643. default: true
  17644. },
  17645. {
  17646. name: "Macro",
  17647. height: math.unit(500, "feet")
  17648. },
  17649. {
  17650. name: "Megamacro",
  17651. height: math.unit(1000, "miles")
  17652. },
  17653. ]
  17654. ))
  17655. characterMakers.push(() => makeCharacter(
  17656. { name: "Tendirmuldr" },
  17657. {
  17658. front: {
  17659. height: math.unit(6, "feet"),
  17660. weight: math.unit(150, "lb"),
  17661. name: "Front",
  17662. image: {
  17663. source: "./media/characters/tendirmuldr/front.svg",
  17664. extra: 1878 / 1772,
  17665. bottom: 0.015
  17666. }
  17667. },
  17668. },
  17669. [
  17670. {
  17671. name: "Megamacro",
  17672. height: math.unit(1500, "miles"),
  17673. default: true
  17674. },
  17675. ]
  17676. ))
  17677. characterMakers.push(() => makeCharacter(
  17678. { name: "Mort" },
  17679. {
  17680. front: {
  17681. height: math.unit(14, "feet"),
  17682. weight: math.unit(12000, "lb"),
  17683. name: "Front",
  17684. image: {
  17685. source: "./media/characters/mort/front.svg",
  17686. extra: 365 / 318,
  17687. bottom: 0.01
  17688. }
  17689. },
  17690. side: {
  17691. height: math.unit(14, "feet"),
  17692. weight: math.unit(12000, "lb"),
  17693. name: "Side",
  17694. image: {
  17695. source: "./media/characters/mort/side.svg",
  17696. extra: 365 / 318,
  17697. bottom: 0.052
  17698. },
  17699. default: true
  17700. },
  17701. back: {
  17702. height: math.unit(14, "feet"),
  17703. weight: math.unit(12000, "lb"),
  17704. name: "Back",
  17705. image: {
  17706. source: "./media/characters/mort/back.svg",
  17707. extra: 371 / 332,
  17708. bottom: 0.18
  17709. }
  17710. },
  17711. },
  17712. [
  17713. {
  17714. name: "Normal",
  17715. height: math.unit(14, "feet"),
  17716. default: true
  17717. },
  17718. ]
  17719. ))
  17720. characterMakers.push(() => makeCharacter(
  17721. { name: "Lycoa" },
  17722. {
  17723. front: {
  17724. height: math.unit(8, "feet"),
  17725. weight: math.unit(1, "ton"),
  17726. name: "Front",
  17727. image: {
  17728. source: "./media/characters/lycoa/front.svg",
  17729. extra: 1875 / 1789,
  17730. bottom: 0.022
  17731. }
  17732. },
  17733. back: {
  17734. height: math.unit(8, "feet"),
  17735. weight: math.unit(1, "ton"),
  17736. name: "Back",
  17737. image: {
  17738. source: "./media/characters/lycoa/back.svg",
  17739. extra: 1835 / 1781,
  17740. bottom: 0.03
  17741. }
  17742. },
  17743. },
  17744. [
  17745. {
  17746. name: "Normal",
  17747. height: math.unit(8, "feet"),
  17748. default: true
  17749. },
  17750. {
  17751. name: "Macro",
  17752. height: math.unit(30, "feet")
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "Naldara" },
  17758. {
  17759. front: {
  17760. height: math.unit(4 + 2 / 12, "feet"),
  17761. weight: math.unit(70, "lb"),
  17762. name: "Front",
  17763. image: {
  17764. source: "./media/characters/naldara/front.svg",
  17765. extra: 841 / 720,
  17766. bottom: 0.04
  17767. }
  17768. },
  17769. },
  17770. [
  17771. {
  17772. name: "Normal",
  17773. height: math.unit(4 + 2 / 12, "feet"),
  17774. default: true
  17775. },
  17776. ]
  17777. ))
  17778. characterMakers.push(() => makeCharacter(
  17779. { name: "Briar" },
  17780. {
  17781. front: {
  17782. height: math.unit(13 + 7 / 12, "feet"),
  17783. weight: math.unit(1500, "lb"),
  17784. name: "Front",
  17785. image: {
  17786. source: "./media/characters/briar/front.svg",
  17787. extra: 626 / 596,
  17788. bottom: 0.08
  17789. }
  17790. },
  17791. },
  17792. [
  17793. {
  17794. name: "Normal",
  17795. height: math.unit(13 + 7 / 12, "feet"),
  17796. default: true
  17797. },
  17798. ]
  17799. ))
  17800. characterMakers.push(() => makeCharacter(
  17801. { name: "Vanguard" },
  17802. {
  17803. side: {
  17804. height: math.unit(10, "feet"),
  17805. weight: math.unit(500, "lb"),
  17806. name: "Side",
  17807. image: {
  17808. source: "./media/characters/vanguard/side.svg",
  17809. extra: 502 / 425,
  17810. bottom: 0.087
  17811. }
  17812. },
  17813. },
  17814. [
  17815. {
  17816. name: "Normal",
  17817. height: math.unit(10, "feet"),
  17818. default: true
  17819. },
  17820. ]
  17821. ))
  17822. characterMakers.push(() => makeCharacter(
  17823. { name: "Artemis" },
  17824. {
  17825. front: {
  17826. height: math.unit(7.5, "feet"),
  17827. weight: math.unit(2, "lb"),
  17828. name: "Front",
  17829. image: {
  17830. source: "./media/characters/artemis/front.svg",
  17831. extra: 1192 / 1075,
  17832. bottom: 0.07
  17833. }
  17834. },
  17835. },
  17836. [
  17837. {
  17838. name: "Normal",
  17839. height: math.unit(7.5, "feet"),
  17840. default: true
  17841. },
  17842. {
  17843. name: "Enlarged",
  17844. height: math.unit(12, "feet")
  17845. },
  17846. ]
  17847. ))
  17848. characterMakers.push(() => makeCharacter(
  17849. { name: "Kira" },
  17850. {
  17851. front: {
  17852. height: math.unit(5 + 3 / 12, "feet"),
  17853. weight: math.unit(160, "lb"),
  17854. name: "Front",
  17855. image: {
  17856. source: "./media/characters/kira/front.svg",
  17857. extra: 906 / 786,
  17858. bottom: 0.01
  17859. }
  17860. },
  17861. back: {
  17862. height: math.unit(5 + 3 / 12, "feet"),
  17863. weight: math.unit(160, "lb"),
  17864. name: "Back",
  17865. image: {
  17866. source: "./media/characters/kira/back.svg",
  17867. extra: 882 / 757,
  17868. bottom: 0.005
  17869. }
  17870. },
  17871. frontDressed: {
  17872. height: math.unit(5 + 3 / 12, "feet"),
  17873. weight: math.unit(160, "lb"),
  17874. name: "Front (Dressed)",
  17875. image: {
  17876. source: "./media/characters/kira/front-dressed.svg",
  17877. extra: 906 / 786,
  17878. bottom: 0.01
  17879. }
  17880. },
  17881. beans: {
  17882. height: math.unit(0.92, "feet"),
  17883. name: "Beans",
  17884. image: {
  17885. source: "./media/characters/kira/beans.svg"
  17886. }
  17887. },
  17888. },
  17889. [
  17890. {
  17891. name: "Normal",
  17892. height: math.unit(5 + 3 / 12, "feet"),
  17893. default: true
  17894. },
  17895. ]
  17896. ))
  17897. characterMakers.push(() => makeCharacter(
  17898. { name: "Scramble" },
  17899. {
  17900. front: {
  17901. height: math.unit(5 + 4 / 12, "feet"),
  17902. weight: math.unit(145, "lb"),
  17903. name: "Front",
  17904. image: {
  17905. source: "./media/characters/scramble/front.svg",
  17906. extra: 763 / 727,
  17907. bottom: 0.05
  17908. }
  17909. },
  17910. back: {
  17911. height: math.unit(5 + 4 / 12, "feet"),
  17912. weight: math.unit(145, "lb"),
  17913. name: "Back",
  17914. image: {
  17915. source: "./media/characters/scramble/back.svg",
  17916. extra: 826 / 737,
  17917. bottom: 0.002
  17918. }
  17919. },
  17920. },
  17921. [
  17922. {
  17923. name: "Normal",
  17924. height: math.unit(5 + 4 / 12, "feet"),
  17925. default: true
  17926. },
  17927. ]
  17928. ))
  17929. characterMakers.push(() => makeCharacter(
  17930. { name: "Biscuit" },
  17931. {
  17932. side: {
  17933. height: math.unit(6 + 2 / 12, "feet"),
  17934. weight: math.unit(190, "lb"),
  17935. name: "Side",
  17936. image: {
  17937. source: "./media/characters/biscuit/side.svg",
  17938. extra: 858 / 791,
  17939. bottom: 0.044
  17940. }
  17941. },
  17942. },
  17943. [
  17944. {
  17945. name: "Normal",
  17946. height: math.unit(6 + 2 / 12, "feet"),
  17947. default: true
  17948. },
  17949. ]
  17950. ))
  17951. characterMakers.push(() => makeCharacter(
  17952. { name: "Poffin" },
  17953. {
  17954. front: {
  17955. height: math.unit(5 + 2 / 12, "feet"),
  17956. weight: math.unit(120, "lb"),
  17957. name: "Front",
  17958. image: {
  17959. source: "./media/characters/poffin/front.svg",
  17960. extra: 786 / 680,
  17961. bottom: 0.005
  17962. }
  17963. },
  17964. },
  17965. [
  17966. {
  17967. name: "Normal",
  17968. height: math.unit(5 + 2 / 12, "feet"),
  17969. default: true
  17970. },
  17971. ]
  17972. ))
  17973. characterMakers.push(() => makeCharacter(
  17974. { name: "Dhari" },
  17975. {
  17976. front: {
  17977. height: math.unit(6 + 3 / 12, "feet"),
  17978. weight: math.unit(519, "lb"),
  17979. name: "Front",
  17980. image: {
  17981. source: "./media/characters/dhari/front.svg",
  17982. extra: 1048 / 946,
  17983. bottom: 0.015
  17984. }
  17985. },
  17986. back: {
  17987. height: math.unit(6 + 3 / 12, "feet"),
  17988. weight: math.unit(519, "lb"),
  17989. name: "Back",
  17990. image: {
  17991. source: "./media/characters/dhari/back.svg",
  17992. extra: 1048 / 931,
  17993. bottom: 0.005
  17994. }
  17995. },
  17996. frontDressed: {
  17997. height: math.unit(6 + 3 / 12, "feet"),
  17998. weight: math.unit(519, "lb"),
  17999. name: "Front (Dressed)",
  18000. image: {
  18001. source: "./media/characters/dhari/front-dressed.svg",
  18002. extra: 1713 / 1546,
  18003. bottom: 0.02
  18004. }
  18005. },
  18006. backDressed: {
  18007. height: math.unit(6 + 3 / 12, "feet"),
  18008. weight: math.unit(519, "lb"),
  18009. name: "Back (Dressed)",
  18010. image: {
  18011. source: "./media/characters/dhari/back-dressed.svg",
  18012. extra: 1699 / 1537,
  18013. bottom: 0.01
  18014. }
  18015. },
  18016. maw: {
  18017. height: math.unit(0.95, "feet"),
  18018. name: "Maw",
  18019. image: {
  18020. source: "./media/characters/dhari/maw.svg"
  18021. }
  18022. },
  18023. wereFront: {
  18024. height: math.unit(12 + 8 / 12, "feet"),
  18025. weight: math.unit(4000, "lb"),
  18026. name: "Front (Were)",
  18027. image: {
  18028. source: "./media/characters/dhari/were-front.svg",
  18029. extra: 1065 / 969,
  18030. bottom: 0.015
  18031. }
  18032. },
  18033. wereBack: {
  18034. height: math.unit(12 + 8 / 12, "feet"),
  18035. weight: math.unit(4000, "lb"),
  18036. name: "Back (Were)",
  18037. image: {
  18038. source: "./media/characters/dhari/were-back.svg",
  18039. extra: 1065 / 969,
  18040. bottom: 0.012
  18041. }
  18042. },
  18043. wereMaw: {
  18044. height: math.unit(0.625, "meters"),
  18045. name: "Maw (Were)",
  18046. image: {
  18047. source: "./media/characters/dhari/were-maw.svg"
  18048. }
  18049. },
  18050. },
  18051. [
  18052. {
  18053. name: "Normal",
  18054. height: math.unit(6 + 3 / 12, "feet"),
  18055. default: true
  18056. },
  18057. ]
  18058. ))
  18059. characterMakers.push(() => makeCharacter(
  18060. { name: "Rena Dyne" },
  18061. {
  18062. anthro: {
  18063. height: math.unit(5 + 7 / 12, "feet"),
  18064. weight: math.unit(175, "lb"),
  18065. name: "Anthro",
  18066. image: {
  18067. source: "./media/characters/rena-dyne/anthro.svg",
  18068. extra: 1849 / 1785,
  18069. bottom: 0.005
  18070. }
  18071. },
  18072. taur: {
  18073. height: math.unit(15 + 6 / 12, "feet"),
  18074. weight: math.unit(8000, "lb"),
  18075. name: "Taur",
  18076. image: {
  18077. source: "./media/characters/rena-dyne/taur.svg",
  18078. extra: 2315 / 2234,
  18079. bottom: 0.033
  18080. }
  18081. },
  18082. },
  18083. [
  18084. {
  18085. name: "Normal",
  18086. height: math.unit(5 + 7 / 12, "feet"),
  18087. default: true
  18088. },
  18089. ]
  18090. ))
  18091. characterMakers.push(() => makeCharacter(
  18092. { name: "Weremeep" },
  18093. {
  18094. front: {
  18095. height: math.unit(8, "feet"),
  18096. weight: math.unit(600, "lb"),
  18097. name: "Front",
  18098. image: {
  18099. source: "./media/characters/weremeep/front.svg",
  18100. extra: 967 / 862,
  18101. bottom: 0.01
  18102. }
  18103. },
  18104. },
  18105. [
  18106. {
  18107. name: "Normal",
  18108. height: math.unit(8, "feet"),
  18109. default: true
  18110. },
  18111. {
  18112. name: "Lorg",
  18113. height: math.unit(12, "feet")
  18114. },
  18115. {
  18116. name: "Oh Lawd She Comin'",
  18117. height: math.unit(20, "feet")
  18118. },
  18119. ]
  18120. ))
  18121. characterMakers.push(() => makeCharacter(
  18122. { name: "Reza" },
  18123. {
  18124. front: {
  18125. height: math.unit(4, "feet"),
  18126. weight: math.unit(90, "lb"),
  18127. name: "Front",
  18128. image: {
  18129. source: "./media/characters/reza/front.svg",
  18130. extra: 1183 / 1111,
  18131. bottom: 0.017
  18132. }
  18133. },
  18134. back: {
  18135. height: math.unit(4, "feet"),
  18136. weight: math.unit(90, "lb"),
  18137. name: "Back",
  18138. image: {
  18139. source: "./media/characters/reza/back.svg",
  18140. extra: 1183 / 1111,
  18141. bottom: 0.01
  18142. }
  18143. },
  18144. drake: {
  18145. height: math.unit(30, "feet"),
  18146. weight: math.unit(246960, "lb"),
  18147. name: "Drake",
  18148. image: {
  18149. source: "./media/characters/reza/drake.svg",
  18150. extra: 2350/2024,
  18151. bottom: 60.7/2403
  18152. }
  18153. },
  18154. },
  18155. [
  18156. {
  18157. name: "Normal",
  18158. height: math.unit(4, "feet"),
  18159. default: true
  18160. },
  18161. ]
  18162. ))
  18163. characterMakers.push(() => makeCharacter(
  18164. { name: "Athea" },
  18165. {
  18166. side: {
  18167. height: math.unit(15, "feet"),
  18168. weight: math.unit(14, "tons"),
  18169. name: "Side",
  18170. image: {
  18171. source: "./media/characters/athea/side.svg",
  18172. extra: 960 / 540,
  18173. bottom: 0.003
  18174. }
  18175. },
  18176. sitting: {
  18177. height: math.unit(6 * 2.85, "feet"),
  18178. weight: math.unit(14, "tons"),
  18179. name: "Sitting",
  18180. image: {
  18181. source: "./media/characters/athea/sitting.svg",
  18182. extra: 621 / 581,
  18183. bottom: 0.075
  18184. }
  18185. },
  18186. maw: {
  18187. height: math.unit(7.59498031496063, "feet"),
  18188. name: "Maw",
  18189. image: {
  18190. source: "./media/characters/athea/maw.svg"
  18191. }
  18192. },
  18193. },
  18194. [
  18195. {
  18196. name: "Lap Cat",
  18197. height: math.unit(2.5, "feet")
  18198. },
  18199. {
  18200. name: "Minimacro",
  18201. height: math.unit(15, "feet"),
  18202. default: true
  18203. },
  18204. {
  18205. name: "Macro",
  18206. height: math.unit(120, "feet")
  18207. },
  18208. {
  18209. name: "Macro+",
  18210. height: math.unit(640, "feet")
  18211. },
  18212. {
  18213. name: "Colossus",
  18214. height: math.unit(2.2, "miles")
  18215. },
  18216. ]
  18217. ))
  18218. characterMakers.push(() => makeCharacter(
  18219. { name: "Seroko" },
  18220. {
  18221. front: {
  18222. height: math.unit(8 + 8 / 12, "feet"),
  18223. weight: math.unit(130, "kg"),
  18224. name: "Front",
  18225. image: {
  18226. source: "./media/characters/seroko/front.svg",
  18227. extra: 1385 / 1280,
  18228. bottom: 0.025
  18229. }
  18230. },
  18231. back: {
  18232. height: math.unit(8 + 8 / 12, "feet"),
  18233. weight: math.unit(130, "kg"),
  18234. name: "Back",
  18235. image: {
  18236. source: "./media/characters/seroko/back.svg",
  18237. extra: 1369 / 1238,
  18238. bottom: 0.018
  18239. }
  18240. },
  18241. frontDressed: {
  18242. height: math.unit(8 + 8 / 12, "feet"),
  18243. weight: math.unit(130, "kg"),
  18244. name: "Front (Dressed)",
  18245. image: {
  18246. source: "./media/characters/seroko/front-dressed.svg",
  18247. extra: 1366 / 1275,
  18248. bottom: 0.03
  18249. }
  18250. },
  18251. },
  18252. [
  18253. {
  18254. name: "Normal",
  18255. height: math.unit(8 + 8 / 12, "feet"),
  18256. default: true
  18257. },
  18258. ]
  18259. ))
  18260. characterMakers.push(() => makeCharacter(
  18261. { name: "Quatzi" },
  18262. {
  18263. front: {
  18264. height: math.unit(5.5, "feet"),
  18265. weight: math.unit(160, "lb"),
  18266. name: "Front",
  18267. image: {
  18268. source: "./media/characters/quatzi/front.svg",
  18269. extra: 2346 / 2242,
  18270. bottom: 0.015
  18271. }
  18272. },
  18273. },
  18274. [
  18275. {
  18276. name: "Normal",
  18277. height: math.unit(5.5, "feet"),
  18278. default: true
  18279. },
  18280. {
  18281. name: "Big",
  18282. height: math.unit(7.7, "feet")
  18283. },
  18284. ]
  18285. ))
  18286. characterMakers.push(() => makeCharacter(
  18287. { name: "Sen" },
  18288. {
  18289. front: {
  18290. height: math.unit(5 + 11 / 12, "feet"),
  18291. weight: math.unit(180, "lb"),
  18292. name: "Front",
  18293. image: {
  18294. source: "./media/characters/sen/front.svg",
  18295. extra: 1321 / 1254,
  18296. bottom: 0.015
  18297. }
  18298. },
  18299. side: {
  18300. height: math.unit(5 + 11 / 12, "feet"),
  18301. weight: math.unit(180, "lb"),
  18302. name: "Side",
  18303. image: {
  18304. source: "./media/characters/sen/side.svg",
  18305. extra: 1321 / 1254,
  18306. bottom: 0.007
  18307. }
  18308. },
  18309. back: {
  18310. height: math.unit(5 + 11 / 12, "feet"),
  18311. weight: math.unit(180, "lb"),
  18312. name: "Back",
  18313. image: {
  18314. source: "./media/characters/sen/back.svg",
  18315. extra: 1321 / 1254
  18316. }
  18317. },
  18318. },
  18319. [
  18320. {
  18321. name: "Normal",
  18322. height: math.unit(5 + 11 / 12, "feet"),
  18323. default: true
  18324. },
  18325. ]
  18326. ))
  18327. characterMakers.push(() => makeCharacter(
  18328. { name: "Fruity" },
  18329. {
  18330. front: {
  18331. height: math.unit(166.6, "cm"),
  18332. weight: math.unit(66.6, "kg"),
  18333. name: "Front",
  18334. image: {
  18335. source: "./media/characters/fruity/front.svg",
  18336. extra: 1510 / 1386,
  18337. bottom: 0.04
  18338. }
  18339. },
  18340. back: {
  18341. height: math.unit(166.6, "cm"),
  18342. weight: math.unit(66.6, "lb"),
  18343. name: "Back",
  18344. image: {
  18345. source: "./media/characters/fruity/back.svg",
  18346. extra: 1563 / 1435,
  18347. bottom: 0.005
  18348. }
  18349. },
  18350. },
  18351. [
  18352. {
  18353. name: "Normal",
  18354. height: math.unit(166.6, "cm"),
  18355. default: true
  18356. },
  18357. {
  18358. name: "Demonic",
  18359. height: math.unit(166.6, "feet")
  18360. },
  18361. ]
  18362. ))
  18363. characterMakers.push(() => makeCharacter(
  18364. { name: "Zost" },
  18365. {
  18366. side: {
  18367. height: math.unit(10, "feet"),
  18368. weight: math.unit(500, "lb"),
  18369. name: "Side",
  18370. image: {
  18371. source: "./media/characters/zost/side.svg",
  18372. extra: 966 / 880,
  18373. bottom: 0.075
  18374. }
  18375. },
  18376. mawFront: {
  18377. height: math.unit(1.08, "meters"),
  18378. name: "Maw (Front)",
  18379. image: {
  18380. source: "./media/characters/zost/maw-front.svg"
  18381. }
  18382. },
  18383. mawSide: {
  18384. height: math.unit(2.66, "feet"),
  18385. name: "Maw (Side)",
  18386. image: {
  18387. source: "./media/characters/zost/maw-side.svg"
  18388. }
  18389. },
  18390. },
  18391. [
  18392. {
  18393. name: "Normal",
  18394. height: math.unit(10, "feet"),
  18395. default: true
  18396. },
  18397. ]
  18398. ))
  18399. characterMakers.push(() => makeCharacter(
  18400. { name: "Luci" },
  18401. {
  18402. front: {
  18403. height: math.unit(5 + 4 / 12, "feet"),
  18404. weight: math.unit(120, "lb"),
  18405. name: "Front",
  18406. image: {
  18407. source: "./media/characters/luci/front.svg",
  18408. extra: 1985 / 1884,
  18409. bottom: 0.04
  18410. }
  18411. },
  18412. back: {
  18413. height: math.unit(5 + 4 / 12, "feet"),
  18414. weight: math.unit(120, "lb"),
  18415. name: "Back",
  18416. image: {
  18417. source: "./media/characters/luci/back.svg",
  18418. extra: 1892 / 1791,
  18419. bottom: 0.002
  18420. }
  18421. },
  18422. },
  18423. [
  18424. {
  18425. name: "Normal",
  18426. height: math.unit(5 + 4 / 12, "feet"),
  18427. default: true
  18428. },
  18429. ]
  18430. ))
  18431. characterMakers.push(() => makeCharacter(
  18432. { name: "2th" },
  18433. {
  18434. front: {
  18435. height: math.unit(1500, "feet"),
  18436. weight: math.unit(3.8e6, "tons"),
  18437. name: "Front",
  18438. image: {
  18439. source: "./media/characters/2th/front.svg",
  18440. extra: 3489 / 3350,
  18441. bottom: 0.1
  18442. }
  18443. },
  18444. foot: {
  18445. height: math.unit(461, "feet"),
  18446. name: "Foot",
  18447. image: {
  18448. source: "./media/characters/2th/foot.svg"
  18449. }
  18450. },
  18451. },
  18452. [
  18453. {
  18454. name: "\"Micro\"",
  18455. height: math.unit(15 + 7 / 12, "feet")
  18456. },
  18457. {
  18458. name: "Normal",
  18459. height: math.unit(1500, "feet"),
  18460. default: true
  18461. },
  18462. {
  18463. name: "Macro",
  18464. height: math.unit(5000, "feet")
  18465. },
  18466. {
  18467. name: "Megamacro",
  18468. height: math.unit(15, "miles")
  18469. },
  18470. {
  18471. name: "Gigamacro",
  18472. height: math.unit(4000, "miles")
  18473. },
  18474. {
  18475. name: "Galactic",
  18476. height: math.unit(50, "AU")
  18477. },
  18478. ]
  18479. ))
  18480. characterMakers.push(() => makeCharacter(
  18481. { name: "Amethyst" },
  18482. {
  18483. front: {
  18484. height: math.unit(5 + 6 / 12, "feet"),
  18485. weight: math.unit(220, "lb"),
  18486. name: "Front",
  18487. image: {
  18488. source: "./media/characters/amethyst/front.svg",
  18489. extra: 2078 / 2040,
  18490. bottom: 0.045
  18491. }
  18492. },
  18493. back: {
  18494. height: math.unit(5 + 6 / 12, "feet"),
  18495. weight: math.unit(220, "lb"),
  18496. name: "Back",
  18497. image: {
  18498. source: "./media/characters/amethyst/back.svg",
  18499. extra: 2021 / 1989,
  18500. bottom: 0.02
  18501. }
  18502. },
  18503. },
  18504. [
  18505. {
  18506. name: "Normal",
  18507. height: math.unit(5 + 6 / 12, "feet"),
  18508. default: true
  18509. },
  18510. ]
  18511. ))
  18512. characterMakers.push(() => makeCharacter(
  18513. { name: "Yumi Akiyama" },
  18514. {
  18515. front: {
  18516. height: math.unit(4 + 11 / 12, "feet"),
  18517. weight: math.unit(120, "lb"),
  18518. name: "Front",
  18519. image: {
  18520. source: "./media/characters/yumi-akiyama/front.svg",
  18521. extra: 1327 / 1235,
  18522. bottom: 0.02
  18523. }
  18524. },
  18525. back: {
  18526. height: math.unit(4 + 11 / 12, "feet"),
  18527. weight: math.unit(120, "lb"),
  18528. name: "Back",
  18529. image: {
  18530. source: "./media/characters/yumi-akiyama/back.svg",
  18531. extra: 1287 / 1245,
  18532. bottom: 0.002
  18533. }
  18534. },
  18535. },
  18536. [
  18537. {
  18538. name: "Galactic",
  18539. height: math.unit(50, "galaxies"),
  18540. default: true
  18541. },
  18542. {
  18543. name: "Universal",
  18544. height: math.unit(100, "universes")
  18545. },
  18546. ]
  18547. ))
  18548. characterMakers.push(() => makeCharacter(
  18549. { name: "Rifter Yrmori" },
  18550. {
  18551. front: {
  18552. height: math.unit(8, "feet"),
  18553. weight: math.unit(500, "lb"),
  18554. name: "Front",
  18555. image: {
  18556. source: "./media/characters/rifter-yrmori/front.svg",
  18557. extra: 1180 / 1125,
  18558. bottom: 0.02
  18559. }
  18560. },
  18561. back: {
  18562. height: math.unit(8, "feet"),
  18563. weight: math.unit(500, "lb"),
  18564. name: "Back",
  18565. image: {
  18566. source: "./media/characters/rifter-yrmori/back.svg",
  18567. extra: 1190 / 1145,
  18568. bottom: 0.001
  18569. }
  18570. },
  18571. wings: {
  18572. height: math.unit(7.75, "feet"),
  18573. weight: math.unit(500, "lb"),
  18574. name: "Wings",
  18575. image: {
  18576. source: "./media/characters/rifter-yrmori/wings.svg",
  18577. extra: 1357 / 1285
  18578. }
  18579. },
  18580. maw: {
  18581. height: math.unit(0.8, "feet"),
  18582. name: "Maw",
  18583. image: {
  18584. source: "./media/characters/rifter-yrmori/maw.svg"
  18585. }
  18586. },
  18587. },
  18588. [
  18589. {
  18590. name: "Normal",
  18591. height: math.unit(8, "feet"),
  18592. default: true
  18593. },
  18594. {
  18595. name: "Macro",
  18596. height: math.unit(42, "meters")
  18597. },
  18598. ]
  18599. ))
  18600. characterMakers.push(() => makeCharacter(
  18601. { name: "Tahajin" },
  18602. {
  18603. were: {
  18604. height: math.unit(25 + 6 / 12, "feet"),
  18605. weight: math.unit(10000, "lb"),
  18606. name: "Were",
  18607. image: {
  18608. source: "./media/characters/tahajin/were.svg",
  18609. extra: 801 / 770,
  18610. bottom: 0.042
  18611. }
  18612. },
  18613. aquatic: {
  18614. height: math.unit(6 + 4 / 12, "feet"),
  18615. weight: math.unit(160, "lb"),
  18616. name: "Aquatic",
  18617. image: {
  18618. source: "./media/characters/tahajin/aquatic.svg",
  18619. extra: 572 / 542,
  18620. bottom: 0.04
  18621. }
  18622. },
  18623. chow: {
  18624. height: math.unit(8 + 11 / 12, "feet"),
  18625. weight: math.unit(450, "lb"),
  18626. name: "Chow",
  18627. image: {
  18628. source: "./media/characters/tahajin/chow.svg",
  18629. extra: 660 / 640,
  18630. bottom: 0.015
  18631. }
  18632. },
  18633. demiNaga: {
  18634. height: math.unit(6 + 8 / 12, "feet"),
  18635. weight: math.unit(300, "lb"),
  18636. name: "Demi Naga",
  18637. image: {
  18638. source: "./media/characters/tahajin/demi-naga.svg",
  18639. extra: 643 / 615,
  18640. bottom: 0.1
  18641. }
  18642. },
  18643. data: {
  18644. height: math.unit(5, "inches"),
  18645. weight: math.unit(0.1, "lb"),
  18646. name: "Data",
  18647. image: {
  18648. source: "./media/characters/tahajin/data.svg"
  18649. }
  18650. },
  18651. fluu: {
  18652. height: math.unit(5 + 7 / 12, "feet"),
  18653. weight: math.unit(140, "lb"),
  18654. name: "Fluu",
  18655. image: {
  18656. source: "./media/characters/tahajin/fluu.svg",
  18657. extra: 628 / 592,
  18658. bottom: 0.02
  18659. }
  18660. },
  18661. starWarrior: {
  18662. height: math.unit(4 + 5 / 12, "feet"),
  18663. weight: math.unit(50, "lb"),
  18664. name: "Star Warrior",
  18665. image: {
  18666. source: "./media/characters/tahajin/star-warrior.svg"
  18667. }
  18668. },
  18669. },
  18670. [
  18671. {
  18672. name: "Normal",
  18673. height: math.unit(25 + 6 / 12, "feet"),
  18674. default: true
  18675. },
  18676. ]
  18677. ))
  18678. characterMakers.push(() => makeCharacter(
  18679. { name: "Gabira" },
  18680. {
  18681. front: {
  18682. height: math.unit(8, "feet"),
  18683. weight: math.unit(350, "lb"),
  18684. name: "Front",
  18685. image: {
  18686. source: "./media/characters/gabira/front.svg",
  18687. extra: 608 / 580,
  18688. bottom: 0.03
  18689. }
  18690. },
  18691. back: {
  18692. height: math.unit(8, "feet"),
  18693. weight: math.unit(350, "lb"),
  18694. name: "Back",
  18695. image: {
  18696. source: "./media/characters/gabira/back.svg",
  18697. extra: 608 / 580,
  18698. bottom: 0.03
  18699. }
  18700. },
  18701. },
  18702. [
  18703. {
  18704. name: "Normal",
  18705. height: math.unit(8, "feet"),
  18706. default: true
  18707. },
  18708. ]
  18709. ))
  18710. characterMakers.push(() => makeCharacter(
  18711. { name: "Sasha Katraine" },
  18712. {
  18713. front: {
  18714. height: math.unit(5 + 3 / 12, "feet"),
  18715. weight: math.unit(137, "lb"),
  18716. name: "Front",
  18717. image: {
  18718. source: "./media/characters/sasha-katraine/front.svg",
  18719. bottom: 0.045
  18720. }
  18721. },
  18722. },
  18723. [
  18724. {
  18725. name: "Micro",
  18726. height: math.unit(5, "inches")
  18727. },
  18728. {
  18729. name: "Normal",
  18730. height: math.unit(5 + 3 / 12, "feet"),
  18731. default: true
  18732. },
  18733. ]
  18734. ))
  18735. characterMakers.push(() => makeCharacter(
  18736. { name: "Der" },
  18737. {
  18738. side: {
  18739. height: math.unit(4, "inches"),
  18740. weight: math.unit(200, "grams"),
  18741. name: "Side",
  18742. image: {
  18743. source: "./media/characters/der/side.svg",
  18744. extra: 719 / 400,
  18745. bottom: 30.6 / 749.9187
  18746. }
  18747. },
  18748. },
  18749. [
  18750. {
  18751. name: "Micro",
  18752. height: math.unit(4, "inches"),
  18753. default: true
  18754. },
  18755. ]
  18756. ))
  18757. characterMakers.push(() => makeCharacter(
  18758. { name: "Fixerdragon" },
  18759. {
  18760. side: {
  18761. height: math.unit(30, "meters"),
  18762. weight: math.unit(700, "tonnes"),
  18763. name: "Side",
  18764. image: {
  18765. source: "./media/characters/fixerdragon/side.svg",
  18766. extra: (1293.0514 - 116.03) / 1106.86,
  18767. bottom: 116.03 / 1293.0514
  18768. }
  18769. },
  18770. },
  18771. [
  18772. {
  18773. name: "Planck",
  18774. height: math.unit(1.6e-35, "meters")
  18775. },
  18776. {
  18777. name: "Micro",
  18778. height: math.unit(0.4, "meters")
  18779. },
  18780. {
  18781. name: "Normal",
  18782. height: math.unit(30, "meters"),
  18783. default: true
  18784. },
  18785. {
  18786. name: "Megamacro",
  18787. height: math.unit(1.2, "megameters")
  18788. },
  18789. {
  18790. name: "Teramacro",
  18791. height: math.unit(130, "terameters")
  18792. },
  18793. {
  18794. name: "Yottamacro",
  18795. height: math.unit(6200, "yottameters")
  18796. },
  18797. ]
  18798. ));
  18799. characterMakers.push(() => makeCharacter(
  18800. { name: "Kite" },
  18801. {
  18802. front: {
  18803. height: math.unit(8, "feet"),
  18804. weight: math.unit(250, "lb"),
  18805. name: "Front",
  18806. image: {
  18807. source: "./media/characters/kite/front.svg",
  18808. extra: 2796 / 2659,
  18809. bottom: 0.002
  18810. }
  18811. },
  18812. },
  18813. [
  18814. {
  18815. name: "Normal",
  18816. height: math.unit(8, "feet"),
  18817. default: true
  18818. },
  18819. {
  18820. name: "Macro",
  18821. height: math.unit(360, "feet")
  18822. },
  18823. {
  18824. name: "Megamacro",
  18825. height: math.unit(1500, "feet")
  18826. },
  18827. ]
  18828. ))
  18829. characterMakers.push(() => makeCharacter(
  18830. { name: "Poojawa Vynar" },
  18831. {
  18832. front: {
  18833. height: math.unit(5 + 10 / 12, "feet"),
  18834. weight: math.unit(150, "lb"),
  18835. name: "Front",
  18836. image: {
  18837. source: "./media/characters/poojawa-vynar/front.svg",
  18838. extra: (1506.1547 - 55) / 1356.6,
  18839. bottom: 55 / 1506.1547
  18840. }
  18841. },
  18842. frontTailless: {
  18843. height: math.unit(5 + 10 / 12, "feet"),
  18844. weight: math.unit(150, "lb"),
  18845. name: "Front (Tailless)",
  18846. image: {
  18847. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18848. extra: (1506.1547 - 55) / 1356.6,
  18849. bottom: 55 / 1506.1547
  18850. }
  18851. },
  18852. },
  18853. [
  18854. {
  18855. name: "Normal",
  18856. height: math.unit(5 + 10 / 12, "feet"),
  18857. default: true
  18858. },
  18859. ]
  18860. ))
  18861. characterMakers.push(() => makeCharacter(
  18862. { name: "Violette" },
  18863. {
  18864. front: {
  18865. height: math.unit(293, "meters"),
  18866. weight: math.unit(70400, "tons"),
  18867. name: "Front",
  18868. image: {
  18869. source: "./media/characters/violette/front.svg",
  18870. extra: 1227 / 1180,
  18871. bottom: 0.005
  18872. }
  18873. },
  18874. back: {
  18875. height: math.unit(293, "meters"),
  18876. weight: math.unit(70400, "tons"),
  18877. name: "Back",
  18878. image: {
  18879. source: "./media/characters/violette/back.svg",
  18880. extra: 1227 / 1180,
  18881. bottom: 0.005
  18882. }
  18883. },
  18884. },
  18885. [
  18886. {
  18887. name: "Macro",
  18888. height: math.unit(293, "meters"),
  18889. default: true
  18890. },
  18891. ]
  18892. ))
  18893. characterMakers.push(() => makeCharacter(
  18894. { name: "Alessandra" },
  18895. {
  18896. front: {
  18897. height: math.unit(1050, "feet"),
  18898. weight: math.unit(200000, "tons"),
  18899. name: "Front",
  18900. image: {
  18901. source: "./media/characters/alessandra/front.svg",
  18902. extra: 960 / 912,
  18903. bottom: 0.06
  18904. }
  18905. },
  18906. },
  18907. [
  18908. {
  18909. name: "Macro",
  18910. height: math.unit(1050, "feet")
  18911. },
  18912. {
  18913. name: "Macro+",
  18914. height: math.unit(900, "meters"),
  18915. default: true
  18916. },
  18917. ]
  18918. ))
  18919. characterMakers.push(() => makeCharacter(
  18920. { name: "Person", species: "Catdragon" },
  18921. {
  18922. front: {
  18923. height: math.unit(5, "feet"),
  18924. weight: math.unit(187, "lb"),
  18925. name: "Front",
  18926. image: {
  18927. source: "./media/characters/person/front.svg",
  18928. extra: 3087 / 2945,
  18929. bottom: 91 / 3181
  18930. }
  18931. },
  18932. },
  18933. [
  18934. {
  18935. name: "Micro",
  18936. height: math.unit(3, "inches")
  18937. },
  18938. {
  18939. name: "Normal",
  18940. height: math.unit(5, "feet"),
  18941. default: true
  18942. },
  18943. {
  18944. name: "Macro",
  18945. height: math.unit(90, "feet")
  18946. },
  18947. {
  18948. name: "Max Size",
  18949. height: math.unit(280, "feet")
  18950. },
  18951. ]
  18952. ))
  18953. characterMakers.push(() => makeCharacter(
  18954. { name: "Ty" },
  18955. {
  18956. front: {
  18957. height: math.unit(4.5, "meters"),
  18958. weight: math.unit(3200, "lb"),
  18959. name: "Front",
  18960. image: {
  18961. source: "./media/characters/ty/front.svg",
  18962. extra: 1038 / 960,
  18963. bottom: 31.156 / 1068
  18964. }
  18965. },
  18966. back: {
  18967. height: math.unit(4.5, "meters"),
  18968. weight: math.unit(3200, "lb"),
  18969. name: "Back",
  18970. image: {
  18971. source: "./media/characters/ty/back.svg",
  18972. extra: 1044 / 966,
  18973. bottom: 7.48 / 1049
  18974. }
  18975. },
  18976. },
  18977. [
  18978. {
  18979. name: "Normal",
  18980. height: math.unit(4.5, "meters"),
  18981. default: true
  18982. },
  18983. ]
  18984. ))
  18985. characterMakers.push(() => makeCharacter(
  18986. { name: "Rocky" },
  18987. {
  18988. front: {
  18989. height: math.unit(5 + 4 / 12, "feet"),
  18990. weight: math.unit(115, "lb"),
  18991. name: "Front",
  18992. image: {
  18993. source: "./media/characters/rocky/front.svg",
  18994. extra: 1012 / 975,
  18995. bottom: 54 / 1066
  18996. }
  18997. },
  18998. },
  18999. [
  19000. {
  19001. name: "Normal",
  19002. height: math.unit(5 + 4 / 12, "feet"),
  19003. default: true
  19004. },
  19005. ]
  19006. ))
  19007. characterMakers.push(() => makeCharacter(
  19008. { name: "Ruin" },
  19009. {
  19010. upright: {
  19011. height: math.unit(6, "meters"),
  19012. weight: math.unit(4000, "kg"),
  19013. name: "Upright",
  19014. image: {
  19015. source: "./media/characters/ruin/upright.svg",
  19016. extra: 668 / 661,
  19017. bottom: 42 / 799.8396
  19018. }
  19019. },
  19020. },
  19021. [
  19022. {
  19023. name: "Normal",
  19024. height: math.unit(6, "meters"),
  19025. default: true
  19026. },
  19027. ]
  19028. ))
  19029. characterMakers.push(() => makeCharacter(
  19030. { name: "Robin" },
  19031. {
  19032. front: {
  19033. height: math.unit(5, "feet"),
  19034. weight: math.unit(106, "lb"),
  19035. name: "Front",
  19036. image: {
  19037. source: "./media/characters/robin/front.svg",
  19038. extra: 862 / 799,
  19039. bottom: 42.4 / 914.8856
  19040. }
  19041. },
  19042. },
  19043. [
  19044. {
  19045. name: "Normal",
  19046. height: math.unit(5, "feet"),
  19047. default: true
  19048. },
  19049. ]
  19050. ))
  19051. characterMakers.push(() => makeCharacter(
  19052. { name: "Saian" },
  19053. {
  19054. side: {
  19055. height: math.unit(3, "feet"),
  19056. weight: math.unit(225, "lb"),
  19057. name: "Side",
  19058. image: {
  19059. source: "./media/characters/saian/side.svg",
  19060. extra: 566 / 356,
  19061. bottom: 79.7 / 643
  19062. }
  19063. },
  19064. maw: {
  19065. height: math.unit(2.85, "feet"),
  19066. name: "Maw",
  19067. image: {
  19068. source: "./media/characters/saian/maw.svg"
  19069. }
  19070. },
  19071. },
  19072. [
  19073. {
  19074. name: "Normal",
  19075. height: math.unit(3, "feet"),
  19076. default: true
  19077. },
  19078. ]
  19079. ))
  19080. characterMakers.push(() => makeCharacter(
  19081. { name: "Equus Silvermane" },
  19082. {
  19083. side: {
  19084. height: math.unit(8, "feet"),
  19085. weight: math.unit(300, "lb"),
  19086. name: "Side",
  19087. image: {
  19088. source: "./media/characters/equus-silvermane/side.svg",
  19089. extra: 2176 / 2050,
  19090. bottom: 65.7 / 2245
  19091. }
  19092. },
  19093. front: {
  19094. height: math.unit(8, "feet"),
  19095. weight: math.unit(300, "lb"),
  19096. name: "Front",
  19097. image: {
  19098. source: "./media/characters/equus-silvermane/front.svg",
  19099. extra: 4633 / 4400,
  19100. bottom: 71.3 / 4706.915
  19101. }
  19102. },
  19103. sideStepping: {
  19104. height: math.unit(8, "feet"),
  19105. weight: math.unit(300, "lb"),
  19106. name: "Side (Stepping)",
  19107. image: {
  19108. source: "./media/characters/equus-silvermane/side-stepping.svg",
  19109. extra: 1968 / 1860,
  19110. bottom: 16.4 / 1989
  19111. }
  19112. },
  19113. },
  19114. [
  19115. {
  19116. name: "Normal",
  19117. height: math.unit(8, "feet")
  19118. },
  19119. {
  19120. name: "Minimacro",
  19121. height: math.unit(75, "feet"),
  19122. default: true
  19123. },
  19124. {
  19125. name: "Macro",
  19126. height: math.unit(150, "feet")
  19127. },
  19128. {
  19129. name: "Macro+",
  19130. height: math.unit(1000, "feet")
  19131. },
  19132. {
  19133. name: "Megamacro",
  19134. height: math.unit(1, "mile")
  19135. },
  19136. ]
  19137. ))
  19138. characterMakers.push(() => makeCharacter(
  19139. { name: "Windar" },
  19140. {
  19141. side: {
  19142. height: math.unit(20, "feet"),
  19143. weight: math.unit(30000, "kg"),
  19144. name: "Side",
  19145. image: {
  19146. source: "./media/characters/windar/side.svg",
  19147. extra: 1491 / 1248,
  19148. bottom: 82.56 / 1568
  19149. }
  19150. },
  19151. },
  19152. [
  19153. {
  19154. name: "Normal",
  19155. height: math.unit(20, "feet"),
  19156. default: true
  19157. },
  19158. ]
  19159. ))
  19160. characterMakers.push(() => makeCharacter(
  19161. { name: "Melody" },
  19162. {
  19163. side: {
  19164. height: math.unit(15.66, "feet"),
  19165. weight: math.unit(150, "lb"),
  19166. name: "Side",
  19167. image: {
  19168. source: "./media/characters/melody/side.svg",
  19169. extra: 1097 / 944,
  19170. bottom: 11.8 / 1109
  19171. }
  19172. },
  19173. sideOutfit: {
  19174. height: math.unit(15.66, "feet"),
  19175. weight: math.unit(150, "lb"),
  19176. name: "Side (Outfit)",
  19177. image: {
  19178. source: "./media/characters/melody/side-outfit.svg",
  19179. extra: 1097 / 944,
  19180. bottom: 11.8 / 1109
  19181. }
  19182. },
  19183. },
  19184. [
  19185. {
  19186. name: "Normal",
  19187. height: math.unit(15.66, "feet"),
  19188. default: true
  19189. },
  19190. ]
  19191. ))
  19192. characterMakers.push(() => makeCharacter(
  19193. { name: "Windera" },
  19194. {
  19195. front: {
  19196. height: math.unit(8, "feet"),
  19197. weight: math.unit(325, "lb"),
  19198. name: "Front",
  19199. image: {
  19200. source: "./media/characters/windera/front.svg",
  19201. extra: 3180 / 2845,
  19202. bottom: 178 / 3365
  19203. }
  19204. },
  19205. },
  19206. [
  19207. {
  19208. name: "Normal",
  19209. height: math.unit(8, "feet"),
  19210. default: true
  19211. },
  19212. ]
  19213. ))
  19214. characterMakers.push(() => makeCharacter(
  19215. { name: "Sonear" },
  19216. {
  19217. front: {
  19218. height: math.unit(28.75, "feet"),
  19219. weight: math.unit(2000, "kg"),
  19220. name: "Front",
  19221. image: {
  19222. source: "./media/characters/sonear/front.svg",
  19223. extra: 1041.1 / 964.9,
  19224. bottom: 53.7 / 1096.6
  19225. }
  19226. },
  19227. },
  19228. [
  19229. {
  19230. name: "Normal",
  19231. height: math.unit(28.75, "feet"),
  19232. default: true
  19233. },
  19234. ]
  19235. ))
  19236. characterMakers.push(() => makeCharacter(
  19237. { name: "Kanara" },
  19238. {
  19239. side: {
  19240. height: math.unit(25.5, "feet"),
  19241. weight: math.unit(23000, "kg"),
  19242. name: "Side",
  19243. image: {
  19244. source: "./media/characters/kanara/side.svg"
  19245. }
  19246. },
  19247. },
  19248. [
  19249. {
  19250. name: "Normal",
  19251. height: math.unit(25.5, "feet"),
  19252. default: true
  19253. },
  19254. ]
  19255. ))
  19256. characterMakers.push(() => makeCharacter(
  19257. { name: "Ereus" },
  19258. {
  19259. side: {
  19260. height: math.unit(10, "feet"),
  19261. weight: math.unit(1000, "kg"),
  19262. name: "Side",
  19263. image: {
  19264. source: "./media/characters/ereus/side.svg",
  19265. extra: 1157 / 959,
  19266. bottom: 153 / 1312.5
  19267. }
  19268. },
  19269. },
  19270. [
  19271. {
  19272. name: "Normal",
  19273. height: math.unit(10, "feet"),
  19274. default: true
  19275. },
  19276. ]
  19277. ))
  19278. characterMakers.push(() => makeCharacter(
  19279. { name: "E-ter" },
  19280. {
  19281. side: {
  19282. height: math.unit(4.5, "feet"),
  19283. weight: math.unit(500, "lb"),
  19284. name: "Side",
  19285. image: {
  19286. source: "./media/characters/e-ter/side.svg",
  19287. extra: 1550 / 1248,
  19288. bottom: 146 / 1694
  19289. }
  19290. },
  19291. },
  19292. [
  19293. {
  19294. name: "Normal",
  19295. height: math.unit(4.5, "feet"),
  19296. default: true
  19297. },
  19298. ]
  19299. ))
  19300. characterMakers.push(() => makeCharacter(
  19301. { name: "Yamie" },
  19302. {
  19303. side: {
  19304. height: math.unit(9.7, "feet"),
  19305. weight: math.unit(4000, "kg"),
  19306. name: "Side",
  19307. image: {
  19308. source: "./media/characters/yamie/side.svg"
  19309. }
  19310. },
  19311. },
  19312. [
  19313. {
  19314. name: "Normal",
  19315. height: math.unit(9.7, "feet"),
  19316. default: true
  19317. },
  19318. ]
  19319. ))
  19320. characterMakers.push(() => makeCharacter(
  19321. { name: "Anders" },
  19322. {
  19323. front: {
  19324. height: math.unit(50, "feet"),
  19325. weight: math.unit(50000, "kg"),
  19326. name: "Front",
  19327. image: {
  19328. source: "./media/characters/anders/front.svg",
  19329. extra: 570 / 539,
  19330. bottom: 14.7 / 586.7
  19331. }
  19332. },
  19333. },
  19334. [
  19335. {
  19336. name: "Large",
  19337. height: math.unit(50, "feet")
  19338. },
  19339. {
  19340. name: "Macro",
  19341. height: math.unit(2000, "feet"),
  19342. default: true
  19343. },
  19344. {
  19345. name: "Megamacro",
  19346. height: math.unit(12, "miles")
  19347. },
  19348. ]
  19349. ))
  19350. characterMakers.push(() => makeCharacter(
  19351. { name: "Reban" },
  19352. {
  19353. front: {
  19354. height: math.unit(7 + 2 / 12, "feet"),
  19355. weight: math.unit(300, "lb"),
  19356. name: "Front",
  19357. image: {
  19358. source: "./media/characters/reban/front.svg",
  19359. extra: 516 / 487,
  19360. bottom: 42.82 / 558.356
  19361. }
  19362. },
  19363. dick: {
  19364. height: math.unit(7 / 5, "feet"),
  19365. name: "Dick",
  19366. image: {
  19367. source: "./media/characters/reban/dick.svg"
  19368. }
  19369. },
  19370. },
  19371. [
  19372. {
  19373. name: "Natural Height",
  19374. height: math.unit(7 + 2 / 12, "feet")
  19375. },
  19376. {
  19377. name: "Macro",
  19378. height: math.unit(500, "feet"),
  19379. default: true
  19380. },
  19381. {
  19382. name: "Canon Height",
  19383. height: math.unit(50, "AU")
  19384. },
  19385. ]
  19386. ))
  19387. characterMakers.push(() => makeCharacter(
  19388. { name: "Terrance Keayes" },
  19389. {
  19390. front: {
  19391. height: math.unit(6, "feet"),
  19392. weight: math.unit(150, "lb"),
  19393. name: "Front",
  19394. image: {
  19395. source: "./media/characters/terrance-keayes/front.svg",
  19396. extra: 1.005,
  19397. bottom: 151 / 1615
  19398. }
  19399. },
  19400. side: {
  19401. height: math.unit(6, "feet"),
  19402. weight: math.unit(150, "lb"),
  19403. name: "Side",
  19404. image: {
  19405. source: "./media/characters/terrance-keayes/side.svg",
  19406. extra: 1.005,
  19407. bottom: 129.4 / 1544
  19408. }
  19409. },
  19410. back: {
  19411. height: math.unit(6, "feet"),
  19412. weight: math.unit(150, "lb"),
  19413. name: "Back",
  19414. image: {
  19415. source: "./media/characters/terrance-keayes/back.svg",
  19416. extra: 1.005,
  19417. bottom: 58.4 / 1557.3
  19418. }
  19419. },
  19420. dick: {
  19421. height: math.unit(6 * 0.208, "feet"),
  19422. name: "Dick",
  19423. image: {
  19424. source: "./media/characters/terrance-keayes/dick.svg"
  19425. }
  19426. },
  19427. },
  19428. [
  19429. {
  19430. name: "Canon Height",
  19431. height: math.unit(35, "miles"),
  19432. default: true
  19433. },
  19434. ]
  19435. ))
  19436. characterMakers.push(() => makeCharacter(
  19437. { name: "Ofelia" },
  19438. {
  19439. front: {
  19440. height: math.unit(6, "feet"),
  19441. weight: math.unit(150, "lb"),
  19442. name: "Front",
  19443. image: {
  19444. source: "./media/characters/ofelia/front.svg",
  19445. extra: 546 / 541,
  19446. bottom: 39 / 583
  19447. }
  19448. },
  19449. back: {
  19450. height: math.unit(6, "feet"),
  19451. weight: math.unit(150, "lb"),
  19452. name: "Back",
  19453. image: {
  19454. source: "./media/characters/ofelia/back.svg",
  19455. extra: 564 / 559.5,
  19456. bottom: 8.69 / 573.02
  19457. }
  19458. },
  19459. maw: {
  19460. height: math.unit(1, "feet"),
  19461. name: "Maw",
  19462. image: {
  19463. source: "./media/characters/ofelia/maw.svg"
  19464. }
  19465. },
  19466. foot: {
  19467. height: math.unit(1.949, "feet"),
  19468. name: "Foot",
  19469. image: {
  19470. source: "./media/characters/ofelia/foot.svg"
  19471. }
  19472. },
  19473. },
  19474. [
  19475. {
  19476. name: "Canon Height",
  19477. height: math.unit(2000, "miles"),
  19478. default: true
  19479. },
  19480. ]
  19481. ))
  19482. characterMakers.push(() => makeCharacter(
  19483. { name: "Samuel" },
  19484. {
  19485. front: {
  19486. height: math.unit(6, "feet"),
  19487. weight: math.unit(150, "lb"),
  19488. name: "Front",
  19489. image: {
  19490. source: "./media/characters/samuel/front.svg",
  19491. extra: 265 / 258,
  19492. bottom: 2 / 266.1566
  19493. }
  19494. },
  19495. },
  19496. [
  19497. {
  19498. name: "Macro",
  19499. height: math.unit(100, "feet"),
  19500. default: true
  19501. },
  19502. {
  19503. name: "Full Size",
  19504. height: math.unit(1000, "miles")
  19505. },
  19506. ]
  19507. ))
  19508. characterMakers.push(() => makeCharacter(
  19509. { name: "Beishir Kiel" },
  19510. {
  19511. front: {
  19512. height: math.unit(6, "feet"),
  19513. weight: math.unit(300, "lb"),
  19514. name: "Front",
  19515. image: {
  19516. source: "./media/characters/beishir-kiel/front.svg",
  19517. extra: 569 / 547,
  19518. bottom: 41.9 / 609
  19519. }
  19520. },
  19521. maw: {
  19522. height: math.unit(6 * 0.202, "feet"),
  19523. name: "Maw",
  19524. image: {
  19525. source: "./media/characters/beishir-kiel/maw.svg"
  19526. }
  19527. },
  19528. },
  19529. [
  19530. {
  19531. name: "Macro",
  19532. height: math.unit(300, "feet"),
  19533. default: true
  19534. },
  19535. ]
  19536. ))
  19537. characterMakers.push(() => makeCharacter(
  19538. { name: "Logan Grey" },
  19539. {
  19540. front: {
  19541. height: math.unit(5 + 8 / 12, "feet"),
  19542. weight: math.unit(120, "lb"),
  19543. name: "Front",
  19544. image: {
  19545. source: "./media/characters/logan-grey/front.svg",
  19546. extra: 2539 / 2393,
  19547. bottom: 97.6 / 2636.37
  19548. }
  19549. },
  19550. frontAlt: {
  19551. height: math.unit(5 + 8 / 12, "feet"),
  19552. weight: math.unit(120, "lb"),
  19553. name: "Front (Alt)",
  19554. image: {
  19555. source: "./media/characters/logan-grey/front-alt.svg",
  19556. extra: 958 / 893,
  19557. bottom: 15 / 970.768
  19558. }
  19559. },
  19560. back: {
  19561. height: math.unit(5 + 8 / 12, "feet"),
  19562. weight: math.unit(120, "lb"),
  19563. name: "Back",
  19564. image: {
  19565. source: "./media/characters/logan-grey/back.svg",
  19566. extra: 958 / 893,
  19567. bottom: 2.1881 / 970.9788
  19568. }
  19569. },
  19570. dick: {
  19571. height: math.unit(1.437, "feet"),
  19572. name: "Dick",
  19573. image: {
  19574. source: "./media/characters/logan-grey/dick.svg"
  19575. }
  19576. },
  19577. },
  19578. [
  19579. {
  19580. name: "Normal",
  19581. height: math.unit(5 + 8 / 12, "feet")
  19582. },
  19583. {
  19584. name: "The 500 Foot Femboy",
  19585. height: math.unit(500, "feet"),
  19586. default: true
  19587. },
  19588. {
  19589. name: "Megmacro",
  19590. height: math.unit(20, "miles")
  19591. },
  19592. ]
  19593. ))
  19594. characterMakers.push(() => makeCharacter(
  19595. { name: "Draganta" },
  19596. {
  19597. front: {
  19598. height: math.unit(8 + 2 / 12, "feet"),
  19599. weight: math.unit(275, "lb"),
  19600. name: "Front",
  19601. image: {
  19602. source: "./media/characters/draganta/front.svg",
  19603. extra: 1177 / 1135,
  19604. bottom: 33.46 / 1212.1
  19605. }
  19606. },
  19607. },
  19608. [
  19609. {
  19610. name: "Normal",
  19611. height: math.unit(8 + 6 / 12, "feet"),
  19612. default: true
  19613. },
  19614. {
  19615. name: "Macro",
  19616. height: math.unit(150, "feet")
  19617. },
  19618. {
  19619. name: "Megamacro",
  19620. height: math.unit(1000, "miles")
  19621. },
  19622. ]
  19623. ))
  19624. characterMakers.push(() => makeCharacter(
  19625. { name: "Voski", species: "Corvid" },
  19626. {
  19627. front: {
  19628. height: math.unit(1.72, "m"),
  19629. weight: math.unit(80, "lb"),
  19630. name: "Front",
  19631. image: {
  19632. source: "./media/characters/voski/front.svg",
  19633. extra: 2076.22 / 2022.4,
  19634. bottom: 102.7 / 2177.3866
  19635. }
  19636. },
  19637. frontNsfw: {
  19638. height: math.unit(1.72, "m"),
  19639. weight: math.unit(80, "lb"),
  19640. name: "Front (NSFW)",
  19641. image: {
  19642. source: "./media/characters/voski/front-nsfw.svg",
  19643. extra: 2076.22 / 2022.4,
  19644. bottom: 102.7 / 2177.3866
  19645. }
  19646. },
  19647. back: {
  19648. height: math.unit(1.72, "m"),
  19649. weight: math.unit(80, "lb"),
  19650. name: "Back",
  19651. image: {
  19652. source: "./media/characters/voski/back.svg",
  19653. extra: 2104 / 2051,
  19654. bottom: 10.45 / 2113.63
  19655. }
  19656. },
  19657. },
  19658. [
  19659. {
  19660. name: "Normal",
  19661. height: math.unit(1.72, "m")
  19662. },
  19663. {
  19664. name: "Macro",
  19665. height: math.unit(55, "m"),
  19666. default: true
  19667. },
  19668. {
  19669. name: "Macro+",
  19670. height: math.unit(300, "m")
  19671. },
  19672. {
  19673. name: "Macro++",
  19674. height: math.unit(700, "m")
  19675. },
  19676. {
  19677. name: "Macro+++",
  19678. height: math.unit(4500, "m")
  19679. },
  19680. {
  19681. name: "Macro++++",
  19682. height: math.unit(45, "km")
  19683. },
  19684. {
  19685. name: "Macro+++++",
  19686. height: math.unit(1220, "km")
  19687. },
  19688. ]
  19689. ))
  19690. characterMakers.push(() => makeCharacter(
  19691. { name: "Icowom Lee" },
  19692. {
  19693. front: {
  19694. height: math.unit(2.3, "m"),
  19695. weight: math.unit(304, "kg"),
  19696. name: "Front",
  19697. image: {
  19698. source: "./media/characters/icowom-lee/front.svg",
  19699. extra: 3076 / 2933,
  19700. bottom: 51.4 / 3125.1889
  19701. }
  19702. },
  19703. },
  19704. [
  19705. {
  19706. name: "Normal",
  19707. height: math.unit(2.3, "meters"),
  19708. default: true
  19709. },
  19710. {
  19711. name: "Macro",
  19712. height: math.unit(94, "meters"),
  19713. default: true
  19714. },
  19715. ]
  19716. ))
  19717. characterMakers.push(() => makeCharacter(
  19718. { name: "Shock Diamond", species: "Aeromorphic Synthetic Pharaoh Hound" },
  19719. {
  19720. front: {
  19721. height: math.unit(22, "meters"),
  19722. weight: math.unit(21000, "kg"),
  19723. name: "Front",
  19724. image: {
  19725. source: "./media/characters/shock-diamond/front.svg",
  19726. extra: 2204 / 2053,
  19727. bottom: 65 / 2239.47
  19728. }
  19729. },
  19730. frontNude: {
  19731. height: math.unit(22, "meters"),
  19732. weight: math.unit(21000, "kg"),
  19733. name: "Front (Nude)",
  19734. image: {
  19735. source: "./media/characters/shock-diamond/front-nude.svg",
  19736. extra: 2514 / 2285,
  19737. bottom: 13 / 2527.56
  19738. }
  19739. },
  19740. },
  19741. [
  19742. {
  19743. name: "Normal",
  19744. height: math.unit(3, "meters")
  19745. },
  19746. {
  19747. name: "Macro",
  19748. height: math.unit(22, "meters"),
  19749. default: true
  19750. },
  19751. ]
  19752. ))
  19753. characterMakers.push(() => makeCharacter(
  19754. { name: "Rory" },
  19755. {
  19756. front: {
  19757. height: math.unit(5 + 4 / 12, "feet"),
  19758. weight: math.unit(120, "lb"),
  19759. name: "Front",
  19760. image: {
  19761. source: "./media/characters/rory/front.svg",
  19762. extra: 589 / 556,
  19763. bottom: 45.7 / 635.76
  19764. }
  19765. },
  19766. frontNude: {
  19767. height: math.unit(5 + 4 / 12, "feet"),
  19768. weight: math.unit(120, "lb"),
  19769. name: "Front (Nude)",
  19770. image: {
  19771. source: "./media/characters/rory/front-nude.svg",
  19772. extra: 589 / 556,
  19773. bottom: 45.7 / 635.76
  19774. }
  19775. },
  19776. side: {
  19777. height: math.unit(5 + 4 / 12, "feet"),
  19778. weight: math.unit(120, "lb"),
  19779. name: "Side",
  19780. image: {
  19781. source: "./media/characters/rory/side.svg",
  19782. extra: 597 / 564,
  19783. bottom: 55 / 653
  19784. }
  19785. },
  19786. back: {
  19787. height: math.unit(5 + 4 / 12, "feet"),
  19788. weight: math.unit(120, "lb"),
  19789. name: "Back",
  19790. image: {
  19791. source: "./media/characters/rory/back.svg",
  19792. extra: 620 / 585,
  19793. bottom: 8.86 / 630.43
  19794. }
  19795. },
  19796. dick: {
  19797. height: math.unit(0.86, "feet"),
  19798. name: "Dick",
  19799. image: {
  19800. source: "./media/characters/rory/dick.svg"
  19801. }
  19802. },
  19803. },
  19804. [
  19805. {
  19806. name: "Normal",
  19807. height: math.unit(5 + 4 / 12, "feet"),
  19808. default: true
  19809. },
  19810. {
  19811. name: "Macro",
  19812. height: math.unit(100, "feet")
  19813. },
  19814. {
  19815. name: "Macro+",
  19816. height: math.unit(140, "feet")
  19817. },
  19818. {
  19819. name: "Macro++",
  19820. height: math.unit(300, "feet")
  19821. },
  19822. ]
  19823. ))
  19824. characterMakers.push(() => makeCharacter(
  19825. { name: "Sprisk" },
  19826. {
  19827. front: {
  19828. height: math.unit(5 + 9 / 12, "feet"),
  19829. weight: math.unit(190, "lb"),
  19830. name: "Front",
  19831. image: {
  19832. source: "./media/characters/sprisk/front.svg",
  19833. extra: 1225 / 1180,
  19834. bottom: 42.7 / 1266.4
  19835. }
  19836. },
  19837. frontNsfw: {
  19838. height: math.unit(5 + 9 / 12, "feet"),
  19839. weight: math.unit(190, "lb"),
  19840. name: "Front (NSFW)",
  19841. image: {
  19842. source: "./media/characters/sprisk/front-nsfw.svg",
  19843. extra: 1225 / 1180,
  19844. bottom: 42.7 / 1266.4
  19845. }
  19846. },
  19847. back: {
  19848. height: math.unit(5 + 9 / 12, "feet"),
  19849. weight: math.unit(190, "lb"),
  19850. name: "Back",
  19851. image: {
  19852. source: "./media/characters/sprisk/back.svg",
  19853. extra: 1247 / 1200,
  19854. bottom: 5.6 / 1253.04
  19855. }
  19856. },
  19857. },
  19858. [
  19859. {
  19860. name: "Tiny",
  19861. height: math.unit(2, "inches")
  19862. },
  19863. {
  19864. name: "Normal",
  19865. height: math.unit(5 + 9 / 12, "feet"),
  19866. default: true
  19867. },
  19868. {
  19869. name: "Mini Macro",
  19870. height: math.unit(18, "feet")
  19871. },
  19872. {
  19873. name: "Macro",
  19874. height: math.unit(100, "feet")
  19875. },
  19876. {
  19877. name: "MACRO",
  19878. height: math.unit(50, "miles")
  19879. },
  19880. {
  19881. name: "M A C R O",
  19882. height: math.unit(300, "miles")
  19883. },
  19884. ]
  19885. ))
  19886. characterMakers.push(() => makeCharacter(
  19887. { name: "Bunsen" },
  19888. {
  19889. side: {
  19890. height: math.unit(15.6, "meters"),
  19891. weight: math.unit(700000, "kg"),
  19892. name: "Side",
  19893. image: {
  19894. source: "./media/characters/bunsen/side.svg",
  19895. extra: 1644 / 358
  19896. }
  19897. },
  19898. foot: {
  19899. height: math.unit(1.611 * 1644 / 358, "meter"),
  19900. name: "Foot",
  19901. image: {
  19902. source: "./media/characters/bunsen/foot.svg"
  19903. }
  19904. },
  19905. },
  19906. [
  19907. {
  19908. name: "Small",
  19909. height: math.unit(10, "feet")
  19910. },
  19911. {
  19912. name: "Normal",
  19913. height: math.unit(15.6, "meters"),
  19914. default: true
  19915. },
  19916. ]
  19917. ))
  19918. characterMakers.push(() => makeCharacter(
  19919. { name: "Sesh" },
  19920. {
  19921. front: {
  19922. height: math.unit(4 + 11 / 12, "feet"),
  19923. weight: math.unit(140, "lb"),
  19924. name: "Front",
  19925. image: {
  19926. source: "./media/characters/sesh/front.svg",
  19927. extra: 3420 / 3231,
  19928. bottom: 72 / 3949.5
  19929. }
  19930. },
  19931. },
  19932. [
  19933. {
  19934. name: "Normal",
  19935. height: math.unit(4 + 11 / 12, "feet")
  19936. },
  19937. {
  19938. name: "Grown",
  19939. height: math.unit(15, "feet"),
  19940. default: true
  19941. },
  19942. {
  19943. name: "Macro",
  19944. height: math.unit(1500, "feet")
  19945. },
  19946. {
  19947. name: "Megamacro",
  19948. height: math.unit(30, "miles")
  19949. },
  19950. {
  19951. name: "Continental",
  19952. height: math.unit(3000, "miles")
  19953. },
  19954. {
  19955. name: "Gravity Mass",
  19956. height: math.unit(300000, "miles")
  19957. },
  19958. {
  19959. name: "Planet Buster",
  19960. height: math.unit(30000000, "miles")
  19961. },
  19962. {
  19963. name: "Big",
  19964. height: math.unit(3000000000, "miles")
  19965. },
  19966. ]
  19967. ))
  19968. characterMakers.push(() => makeCharacter(
  19969. { name: "Pepper" },
  19970. {
  19971. front: {
  19972. height: math.unit(9, "feet"),
  19973. weight: math.unit(350, "lb"),
  19974. name: "Front",
  19975. image: {
  19976. source: "./media/characters/pepper/front.svg",
  19977. extra: 1448/1312,
  19978. bottom: 9.4/1457.88
  19979. }
  19980. },
  19981. back: {
  19982. height: math.unit(9, "feet"),
  19983. weight: math.unit(350, "lb"),
  19984. name: "Back",
  19985. image: {
  19986. source: "./media/characters/pepper/back.svg",
  19987. extra: 1423/1300,
  19988. bottom: 4.6/1429
  19989. }
  19990. },
  19991. maw: {
  19992. height: math.unit(0.932, "feet"),
  19993. name: "Maw",
  19994. image: {
  19995. source: "./media/characters/pepper/maw.svg"
  19996. }
  19997. },
  19998. },
  19999. [
  20000. {
  20001. name: "Normal",
  20002. height: math.unit(9, "feet"),
  20003. default: true
  20004. },
  20005. ]
  20006. ))
  20007. characterMakers.push(() => makeCharacter(
  20008. { name: "Maelstrom" },
  20009. {
  20010. front: {
  20011. height: math.unit(6, "feet"),
  20012. weight: math.unit(150, "lb"),
  20013. name: "Front",
  20014. image: {
  20015. source: "./media/characters/maelstrom/front.svg",
  20016. extra: 2100/1883,
  20017. bottom: 94/2196.7
  20018. }
  20019. },
  20020. },
  20021. [
  20022. {
  20023. name: "Less Kaiju",
  20024. height: math.unit(200, "feet")
  20025. },
  20026. {
  20027. name: "Kaiju",
  20028. height: math.unit(400, "feet"),
  20029. default: true
  20030. },
  20031. {
  20032. name: "Kaiju-er",
  20033. height: math.unit(600, "feet")
  20034. },
  20035. ]
  20036. ))
  20037. characterMakers.push(() => makeCharacter(
  20038. { name: "Lexir" },
  20039. {
  20040. front: {
  20041. height: math.unit(6 + 5/12, "feet"),
  20042. weight: math.unit(180, "lb"),
  20043. name: "Front",
  20044. image: {
  20045. source: "./media/characters/lexir/front.svg",
  20046. extra: 180/172,
  20047. bottom: 12/192
  20048. }
  20049. },
  20050. back: {
  20051. height: math.unit(6 + 5/12, "feet"),
  20052. weight: math.unit(180, "lb"),
  20053. name: "Back",
  20054. image: {
  20055. source: "./media/characters/lexir/back.svg",
  20056. extra: 183.84/175.5,
  20057. bottom: 3.1/187
  20058. }
  20059. },
  20060. },
  20061. [
  20062. {
  20063. name: "Very Smal",
  20064. height: math.unit(1, "nm")
  20065. },
  20066. {
  20067. name: "Normal",
  20068. height: math.unit(6 + 5/12, "feet"),
  20069. default: true
  20070. },
  20071. {
  20072. name: "Macro",
  20073. height: math.unit(1, "mile")
  20074. },
  20075. {
  20076. name: "Megamacro",
  20077. height: math.unit(50, "miles")
  20078. },
  20079. ]
  20080. ))
  20081. characterMakers.push(() => makeCharacter(
  20082. { name: "Maksio" },
  20083. {
  20084. front: {
  20085. height: math.unit(1.5, "meters"),
  20086. weight: math.unit(100, "lb"),
  20087. name: "Front",
  20088. image: {
  20089. source: "./media/characters/maksio/front.svg",
  20090. extra: 1549/1531,
  20091. bottom: 123.7/1674.5429
  20092. }
  20093. },
  20094. back: {
  20095. height: math.unit(1.5, "meters"),
  20096. weight: math.unit(100, "lb"),
  20097. name: "Back",
  20098. image: {
  20099. source: "./media/characters/maksio/back.svg",
  20100. extra: 1541/1509,
  20101. bottom: 97/1639
  20102. }
  20103. },
  20104. hand: {
  20105. height: math.unit(0.621, "feet"),
  20106. name: "Hand",
  20107. image: {
  20108. source: "./media/characters/maksio/hand.svg"
  20109. }
  20110. },
  20111. foot: {
  20112. height: math.unit(1.611, "feet"),
  20113. name: "Foot",
  20114. image: {
  20115. source: "./media/characters/maksio/foot.svg"
  20116. }
  20117. },
  20118. },
  20119. [
  20120. {
  20121. name: "Shrunken",
  20122. height: math.unit(10, "cm")
  20123. },
  20124. {
  20125. name: "Normal",
  20126. height: math.unit(150, "cm"),
  20127. default: true
  20128. },
  20129. ]
  20130. ))
  20131. characterMakers.push(() => makeCharacter(
  20132. { name: "Erza Bear" },
  20133. {
  20134. front: {
  20135. height: math.unit(100, "feet"),
  20136. name: "Front",
  20137. image: {
  20138. source: "./media/characters/erza-bear/front.svg",
  20139. extra: 2449/2390,
  20140. bottom: 46/2494
  20141. }
  20142. },
  20143. back: {
  20144. height: math.unit(100, "feet"),
  20145. name: "Back",
  20146. image: {
  20147. source: "./media/characters/erza-bear/back.svg",
  20148. extra: 2489/2430,
  20149. bottom: 85.4/2480
  20150. }
  20151. },
  20152. tail: {
  20153. height: math.unit(42, "feet"),
  20154. name: "Tail",
  20155. image: {
  20156. source: "./media/characters/erza-bear/tail.svg"
  20157. }
  20158. },
  20159. tongue: {
  20160. height: math.unit(8, "feet"),
  20161. name: "Tongue",
  20162. image: {
  20163. source: "./media/characters/erza-bear/tongue.svg"
  20164. }
  20165. },
  20166. dick: {
  20167. height: math.unit(10.5, "feet"),
  20168. name: "Dick",
  20169. image: {
  20170. source: "./media/characters/erza-bear/dick.svg"
  20171. }
  20172. },
  20173. dickVertical: {
  20174. height: math.unit(16.9, "feet"),
  20175. name: "Dick (Vertical)",
  20176. image: {
  20177. source: "./media/characters/erza-bear/dick-vertical.svg"
  20178. }
  20179. },
  20180. },
  20181. [
  20182. {
  20183. name: "Macro",
  20184. height: math.unit(100, "feet"),
  20185. default: true
  20186. },
  20187. ]
  20188. ))
  20189. characterMakers.push(() => makeCharacter(
  20190. { name: "Violet Flor", species: "Skunk" },
  20191. {
  20192. front: {
  20193. height: math.unit(172, "cm"),
  20194. weight: math.unit(73, "kg"),
  20195. name: "Front",
  20196. image: {
  20197. source: "./media/characters/violet-flor/front.svg",
  20198. extra: 1530/1442,
  20199. bottom: 61.9/1588.8
  20200. }
  20201. },
  20202. back: {
  20203. height: math.unit(180, "cm"),
  20204. weight: math.unit(73, "kg"),
  20205. name: "Back",
  20206. image: {
  20207. source: "./media/characters/violet-flor/back.svg",
  20208. extra: 1692/1630,
  20209. bottom: 20/1712
  20210. }
  20211. },
  20212. },
  20213. [
  20214. {
  20215. name: "Normal",
  20216. height: math.unit(172, "cm"),
  20217. default: true
  20218. },
  20219. ]
  20220. ))
  20221. characterMakers.push(() => makeCharacter(
  20222. { name: "Lynn Rhea", species: "Shark" },
  20223. {
  20224. front: {
  20225. height: math.unit(6, "feet"),
  20226. weight: math.unit(220, "lb"),
  20227. name: "Front",
  20228. image: {
  20229. source: "./media/characters/lynn-rhea/front.svg",
  20230. extra: 310/273
  20231. }
  20232. },
  20233. back: {
  20234. height: math.unit(6, "feet"),
  20235. weight: math.unit(220, "lb"),
  20236. name: "Back",
  20237. image: {
  20238. source: "./media/characters/lynn-rhea/back.svg",
  20239. extra: 310/273
  20240. }
  20241. },
  20242. dicks: {
  20243. height: math.unit(0.9, "feet"),
  20244. name: "Dicks",
  20245. image: {
  20246. source: "./media/characters/lynn-rhea/dicks.svg"
  20247. }
  20248. },
  20249. slit: {
  20250. height: math.unit(0.4, "feet"),
  20251. name: "Slit",
  20252. image: {
  20253. source: "./media/characters/lynn-rhea/slit.svg"
  20254. }
  20255. },
  20256. },
  20257. [
  20258. {
  20259. name: "Micro",
  20260. height: math.unit(1, "inch")
  20261. },
  20262. {
  20263. name: "Macro",
  20264. height: math.unit(60, "feet"),
  20265. default: true
  20266. },
  20267. {
  20268. name: "Megamacro",
  20269. height: math.unit(2, "miles")
  20270. },
  20271. {
  20272. name: "Gigamacro",
  20273. height: math.unit(3, "earths")
  20274. },
  20275. {
  20276. name: "Galactic",
  20277. height: math.unit(0.8, "galaxies")
  20278. },
  20279. ]
  20280. ))
  20281. characterMakers.push(() => makeCharacter(
  20282. { name: "Valathos" },
  20283. {
  20284. front: {
  20285. height: math.unit(1600, "feet"),
  20286. weight: math.unit(85758785169, "kg"),
  20287. name: "Front",
  20288. image: {
  20289. source: "./media/characters/valathos/front.svg",
  20290. extra: 1451/1339
  20291. }
  20292. },
  20293. },
  20294. [
  20295. {
  20296. name: "Macro",
  20297. height: math.unit(1600, "feet"),
  20298. default: true
  20299. },
  20300. ]
  20301. ))
  20302. characterMakers.push(() => makeCharacter(
  20303. { name: "Azula" },
  20304. {
  20305. front: {
  20306. height: math.unit(7 + 5/12, "feet"),
  20307. weight: math.unit(300, "lb"),
  20308. name: "Front",
  20309. image: {
  20310. source: "./media/characters/azula/front.svg",
  20311. extra: 3208/2880,
  20312. bottom: 80.2/3277
  20313. }
  20314. },
  20315. back: {
  20316. height: math.unit(7 + 5/12, "feet"),
  20317. weight: math.unit(300, "lb"),
  20318. name: "Back",
  20319. image: {
  20320. source: "./media/characters/azula/back.svg",
  20321. extra: 3169/2822,
  20322. bottom: 150.6/3321
  20323. }
  20324. },
  20325. },
  20326. [
  20327. {
  20328. name: "Normal",
  20329. height: math.unit(7 + 5/12, "feet"),
  20330. default: true
  20331. },
  20332. {
  20333. name: "Big",
  20334. height: math.unit(20, "feet")
  20335. },
  20336. ]
  20337. ))
  20338. characterMakers.push(() => makeCharacter(
  20339. { name: "Rupert" },
  20340. {
  20341. front: {
  20342. height: math.unit(5 + 1/12, "feet"),
  20343. weight: math.unit(110, "lb"),
  20344. name: "Front",
  20345. image: {
  20346. source: "./media/characters/rupert/front.svg",
  20347. extra: 1549/1495,
  20348. bottom: 54.2/1604.4
  20349. }
  20350. },
  20351. },
  20352. [
  20353. {
  20354. name: "Normal",
  20355. height: math.unit(5 + 1/12, "feet"),
  20356. default: true
  20357. },
  20358. ]
  20359. ))
  20360. characterMakers.push(() => makeCharacter(
  20361. { name: "Sheera Castellar" },
  20362. {
  20363. front: {
  20364. height: math.unit(8 + 4/12, "feet"),
  20365. weight: math.unit(350, "lb"),
  20366. name: "Front",
  20367. image: {
  20368. source: "./media/characters/sheera-castellar/front.svg",
  20369. extra: 1957/1894,
  20370. bottom: 26.97/1975.017
  20371. }
  20372. },
  20373. side: {
  20374. height: math.unit(8 + 4/12, "feet"),
  20375. weight: math.unit(350, "lb"),
  20376. name: "Side",
  20377. image: {
  20378. source: "./media/characters/sheera-castellar/side.svg",
  20379. extra: 1957/1894
  20380. }
  20381. },
  20382. back: {
  20383. height: math.unit(8 + 4/12, "feet"),
  20384. weight: math.unit(350, "lb"),
  20385. name: "Back",
  20386. image: {
  20387. source: "./media/characters/sheera-castellar/back.svg",
  20388. extra: 1957/1894
  20389. }
  20390. },
  20391. angled: {
  20392. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  20393. weight: math.unit(350, "lb"),
  20394. name: "Angled",
  20395. image: {
  20396. source: "./media/characters/sheera-castellar/angled.svg",
  20397. extra: 1807/1707,
  20398. bottom: 68/1875
  20399. }
  20400. },
  20401. genitals: {
  20402. height: math.unit(2.2, "feet"),
  20403. name: "Genitals",
  20404. image: {
  20405. source: "./media/characters/sheera-castellar/genitals.svg"
  20406. }
  20407. },
  20408. },
  20409. [
  20410. {
  20411. name: "Normal",
  20412. height: math.unit(8 + 4/12, "feet")
  20413. },
  20414. {
  20415. name: "Macro",
  20416. height: math.unit(150, "feet"),
  20417. default: true
  20418. },
  20419. {
  20420. name: "Macro+",
  20421. height: math.unit(800, "feet")
  20422. },
  20423. ]
  20424. ))
  20425. characterMakers.push(() => makeCharacter(
  20426. { name: "Jaipur", species: "Black Panther" },
  20427. {
  20428. front: {
  20429. height: math.unit(6, "feet"),
  20430. weight: math.unit(150, "lb"),
  20431. name: "Front",
  20432. image: {
  20433. source: "./media/characters/jaipur/front.svg",
  20434. extra: 3860/3731,
  20435. bottom: 287/4140
  20436. }
  20437. },
  20438. back: {
  20439. height: math.unit(6, "feet"),
  20440. weight: math.unit(150, "lb"),
  20441. name: "Back",
  20442. image: {
  20443. source: "./media/characters/jaipur/back.svg",
  20444. extra: 4060/3930,
  20445. bottom: 151/4200
  20446. }
  20447. },
  20448. },
  20449. [
  20450. {
  20451. name: "Normal",
  20452. height: math.unit(1.85, "meters"),
  20453. default: true
  20454. },
  20455. {
  20456. name: "Macro",
  20457. height: math.unit(150, "meters")
  20458. },
  20459. {
  20460. name: "Macro+",
  20461. height: math.unit(0.5, "miles")
  20462. },
  20463. {
  20464. name: "Macro++",
  20465. height: math.unit(2.5, "miles")
  20466. },
  20467. {
  20468. name: "Macro+++",
  20469. height: math.unit(12, "miles")
  20470. },
  20471. {
  20472. name: "Macro++++",
  20473. height: math.unit(120, "miles")
  20474. },
  20475. {
  20476. name: "Macro+++++",
  20477. height: math.unit(1200, "miles")
  20478. },
  20479. ]
  20480. ))
  20481. characterMakers.push(() => makeCharacter(
  20482. { name: "Sheila (Wolf)" },
  20483. {
  20484. front: {
  20485. height: math.unit(6, "feet"),
  20486. weight: math.unit(150, "lb"),
  20487. name: "Front",
  20488. image: {
  20489. source: "./media/characters/sheila-wolf/front.svg",
  20490. extra: 1931/1808,
  20491. bottom: 29.5/1960
  20492. }
  20493. },
  20494. dick: {
  20495. height: math.unit(1.464, "feet"),
  20496. name: "Dick",
  20497. image: {
  20498. source: "./media/characters/sheila-wolf/dick.svg"
  20499. }
  20500. },
  20501. muzzle: {
  20502. height: math.unit(0.513, "feet"),
  20503. name: "Muzzle",
  20504. image: {
  20505. source: "./media/characters/sheila-wolf/muzzle.svg"
  20506. }
  20507. },
  20508. },
  20509. [
  20510. {
  20511. name: "Macro",
  20512. height: math.unit(70, "feet"),
  20513. default: true
  20514. },
  20515. ]
  20516. ))
  20517. characterMakers.push(() => makeCharacter(
  20518. { name: "Almor", species: "Dragon" },
  20519. {
  20520. front: {
  20521. height: math.unit(32, "meters"),
  20522. weight: math.unit(300000, "kg"),
  20523. name: "Front",
  20524. image: {
  20525. source: "./media/characters/almor/front.svg",
  20526. extra: 1408/1322,
  20527. bottom: 94.6/1506.5
  20528. }
  20529. },
  20530. },
  20531. [
  20532. {
  20533. name: "Macro",
  20534. height: math.unit(32, "meters"),
  20535. default: true
  20536. },
  20537. ]
  20538. ))
  20539. characterMakers.push(() => makeCharacter(
  20540. { name: "Silver" },
  20541. {
  20542. front: {
  20543. height: math.unit(7, "feet"),
  20544. weight: math.unit(200, "lb"),
  20545. name: "Front",
  20546. image: {
  20547. source: "./media/characters/silver/front.svg",
  20548. extra: 472.1/450.5,
  20549. bottom: 26.5/499.424
  20550. }
  20551. },
  20552. },
  20553. [
  20554. {
  20555. name: "Normal",
  20556. height: math.unit(7, "feet"),
  20557. default: true
  20558. },
  20559. {
  20560. name: "Macro",
  20561. height: math.unit(800, "feet")
  20562. },
  20563. {
  20564. name: "Megamacro",
  20565. height: math.unit(250, "miles")
  20566. },
  20567. ]
  20568. ))
  20569. characterMakers.push(() => makeCharacter(
  20570. { name: "Pliskin" },
  20571. {
  20572. front: {
  20573. height: math.unit(6, "feet"),
  20574. weight: math.unit(150, "lb"),
  20575. name: "Front",
  20576. image: {
  20577. source: "./media/characters/pliskin/front.svg",
  20578. extra: 1469/1359,
  20579. bottom: 70/1540
  20580. }
  20581. },
  20582. },
  20583. [
  20584. {
  20585. name: "Micro",
  20586. height: math.unit(3, "inches")
  20587. },
  20588. {
  20589. name: "Normal",
  20590. height: math.unit(5 + 11/12, "feet"),
  20591. default: true
  20592. },
  20593. {
  20594. name: "Macro",
  20595. height: math.unit(120, "feet")
  20596. },
  20597. ]
  20598. ))
  20599. characterMakers.push(() => makeCharacter(
  20600. { name: "Sammy" },
  20601. {
  20602. front: {
  20603. height: math.unit(6, "feet"),
  20604. weight: math.unit(150, "lb"),
  20605. name: "Front",
  20606. image: {
  20607. source: "./media/characters/sammy/front.svg",
  20608. extra: 1193/1089,
  20609. bottom: 30.5/1226
  20610. }
  20611. },
  20612. },
  20613. [
  20614. {
  20615. name: "Macro",
  20616. height: math.unit(1700, "feet"),
  20617. default: true
  20618. },
  20619. {
  20620. name: "Examacro",
  20621. height: math.unit(2.5e9, "lightyears")
  20622. },
  20623. ]
  20624. ))
  20625. characterMakers.push(() => makeCharacter(
  20626. { name: "Kuru", species: "Umbra" },
  20627. {
  20628. front: {
  20629. height: math.unit(21, "meters"),
  20630. weight: math.unit(12, "tonnes"),
  20631. name: "Front",
  20632. image: {
  20633. source: "./media/characters/kuru/front.svg",
  20634. extra: 4301/3785,
  20635. bottom: 371.3/4691
  20636. }
  20637. },
  20638. },
  20639. [
  20640. {
  20641. name: "Macro",
  20642. height: math.unit(21, "meters"),
  20643. default: true
  20644. },
  20645. ]
  20646. ))
  20647. characterMakers.push(() => makeCharacter(
  20648. { name: "Rakka", species: "Umbra" },
  20649. {
  20650. front: {
  20651. height: math.unit(23, "meters"),
  20652. weight: math.unit(12.2, "tonnes"),
  20653. name: "Front",
  20654. image: {
  20655. source: "./media/characters/rakka/front.svg",
  20656. extra: 4670/4169,
  20657. bottom: 301/4968.7
  20658. }
  20659. },
  20660. },
  20661. [
  20662. {
  20663. name: "Macro",
  20664. height: math.unit(23, "meters"),
  20665. default: true
  20666. },
  20667. ]
  20668. ))
  20669. characterMakers.push(() => makeCharacter(
  20670. { name: "Rhys (Feline)" },
  20671. {
  20672. front: {
  20673. height: math.unit(6, "feet"),
  20674. weight: math.unit(150, "lb"),
  20675. name: "Front",
  20676. image: {
  20677. source: "./media/characters/rhys-feline/front.svg",
  20678. extra: 2488/2308,
  20679. bottom: 35.67/2519.19
  20680. }
  20681. },
  20682. },
  20683. [
  20684. {
  20685. name: "Really Small",
  20686. height: math.unit(1, "nm")
  20687. },
  20688. {
  20689. name: "Micro",
  20690. height: math.unit(4, "inches")
  20691. },
  20692. {
  20693. name: "Normal",
  20694. height: math.unit(4 + 10/12, "feet"),
  20695. default: true
  20696. },
  20697. {
  20698. name: "Macro",
  20699. height: math.unit(100, "feet")
  20700. },
  20701. {
  20702. name: "Megamacto",
  20703. height: math.unit(50, "miles")
  20704. },
  20705. ]
  20706. ))
  20707. characterMakers.push(() => makeCharacter(
  20708. { name: "Alydar", species: "Raven/Snow Leopard" },
  20709. {
  20710. side: {
  20711. height: math.unit(30, "feet"),
  20712. weight: math.unit(35000, "kg"),
  20713. name: "Side",
  20714. image: {
  20715. source: "./media/characters/alydar/side.svg",
  20716. extra: 234/222,
  20717. bottom: 6.5/241
  20718. }
  20719. },
  20720. front: {
  20721. height: math.unit(30, "feet"),
  20722. weight: math.unit(35000, "kg"),
  20723. name: "Front",
  20724. image: {
  20725. source: "./media/characters/alydar/front.svg",
  20726. extra: 223.37/210.2,
  20727. bottom: 22.3/246.76
  20728. }
  20729. },
  20730. top: {
  20731. height: math.unit(64.54, "feet"),
  20732. weight: math.unit(35000, "kg"),
  20733. name: "Top",
  20734. image: {
  20735. source: "./media/characters/alydar/top.svg"
  20736. }
  20737. },
  20738. anthro: {
  20739. height: math.unit(30, "feet"),
  20740. weight: math.unit(9000, "kg"),
  20741. name: "Anthro",
  20742. image: {
  20743. source: "./media/characters/alydar/anthro.svg",
  20744. extra: 432/421,
  20745. bottom: 7.18/440
  20746. }
  20747. },
  20748. maw: {
  20749. height: math.unit(11.693, "feet"),
  20750. name: "Maw",
  20751. image: {
  20752. source: "./media/characters/alydar/maw.svg"
  20753. }
  20754. },
  20755. head: {
  20756. height: math.unit(11.693, "feet"),
  20757. name: "Head",
  20758. image: {
  20759. source: "./media/characters/alydar/head.svg"
  20760. }
  20761. },
  20762. headAlt: {
  20763. height: math.unit(12.861, "feet"),
  20764. name: "Head (Alt)",
  20765. image: {
  20766. source: "./media/characters/alydar/head-alt.svg"
  20767. }
  20768. },
  20769. wing: {
  20770. height: math.unit(20.712, "feet"),
  20771. name: "Wing",
  20772. image: {
  20773. source: "./media/characters/alydar/wing.svg"
  20774. }
  20775. },
  20776. wingFeather: {
  20777. height: math.unit(9.662, "feet"),
  20778. name: "Wing Feather",
  20779. image: {
  20780. source: "./media/characters/alydar/wing-feather.svg"
  20781. }
  20782. },
  20783. countourFeather: {
  20784. height: math.unit(4.154, "feet"),
  20785. name: "Contour Feather",
  20786. image: {
  20787. source: "./media/characters/alydar/contour-feather.svg"
  20788. }
  20789. },
  20790. },
  20791. [
  20792. {
  20793. name: "Diplomatic",
  20794. height: math.unit(13, "feet"),
  20795. default: true
  20796. },
  20797. {
  20798. name: "Small",
  20799. height: math.unit(30, "feet")
  20800. },
  20801. {
  20802. name: "Normal",
  20803. height: math.unit(95, "feet"),
  20804. default: true
  20805. },
  20806. {
  20807. name: "Large",
  20808. height: math.unit(285, "feet")
  20809. },
  20810. {
  20811. name: "Incomprehensible",
  20812. height: math.unit(450, "megameters")
  20813. },
  20814. ]
  20815. ))
  20816. characterMakers.push(() => makeCharacter(
  20817. { name: "Selicia" },
  20818. {
  20819. side: {
  20820. height: math.unit(11, "feet"),
  20821. weight: math.unit(1750, "kg"),
  20822. name: "Side",
  20823. image: {
  20824. source: "./media/characters/selicia/side.svg",
  20825. extra: 440/396,
  20826. bottom: 24.8/465.979
  20827. }
  20828. },
  20829. maw: {
  20830. height: math.unit(4.665, "feet"),
  20831. name: "Maw",
  20832. image: {
  20833. source: "./media/characters/selicia/maw.svg"
  20834. }
  20835. },
  20836. },
  20837. [
  20838. {
  20839. name: "Normal",
  20840. height: math.unit(11, "feet"),
  20841. default: true
  20842. },
  20843. ]
  20844. ))
  20845. characterMakers.push(() => makeCharacter(
  20846. { name: "Layla" },
  20847. {
  20848. side: {
  20849. height: math.unit(2 + 6 /12, "feet"),
  20850. weight: math.unit(30, "lb"),
  20851. name: "Side",
  20852. image: {
  20853. source: "./media/characters/layla/side.svg",
  20854. extra: 244/188,
  20855. bottom: 18.2/262.1
  20856. }
  20857. },
  20858. back: {
  20859. height: math.unit(2 + 6 /12, "feet"),
  20860. weight: math.unit(30, "lb"),
  20861. name: "Back",
  20862. image: {
  20863. source: "./media/characters/layla/back.svg",
  20864. extra: 308/241.5,
  20865. bottom: 8.9/316.8
  20866. }
  20867. },
  20868. cumming: {
  20869. height: math.unit(2 + 6 /12, "feet"),
  20870. weight: math.unit(30, "lb"),
  20871. name: "Cumming",
  20872. image: {
  20873. source: "./media/characters/layla/cumming.svg",
  20874. extra: 342/279,
  20875. bottom: 595/938
  20876. }
  20877. },
  20878. dickFlaccid: {
  20879. height: math.unit(2.595, "feet"),
  20880. name: "Flaccid Genitals",
  20881. image: {
  20882. source: "./media/characters/layla/dick-flaccid.svg"
  20883. }
  20884. },
  20885. dickErect: {
  20886. height: math.unit(2.359, "feet"),
  20887. name: "Erect Genitals",
  20888. image: {
  20889. source: "./media/characters/layla/dick-erect.svg"
  20890. }
  20891. },
  20892. },
  20893. [
  20894. {
  20895. name: "Micro",
  20896. height: math.unit(1, "inch")
  20897. },
  20898. {
  20899. name: "Small",
  20900. height: math.unit(1, "foot")
  20901. },
  20902. {
  20903. name: "Normal",
  20904. height: math.unit(2 + 6/12, "feet"),
  20905. default: true
  20906. },
  20907. {
  20908. name: "Macro",
  20909. height: math.unit(200, "feet")
  20910. },
  20911. {
  20912. name: "Megamacro",
  20913. height: math.unit(1000, "miles")
  20914. },
  20915. {
  20916. name: "Planetary",
  20917. height: math.unit(8000, "miles")
  20918. },
  20919. {
  20920. name: "True Layla",
  20921. height: math.unit(200000*7, "multiverses")
  20922. },
  20923. ]
  20924. ))
  20925. characterMakers.push(() => makeCharacter(
  20926. { name: "Knox" },
  20927. {
  20928. back: {
  20929. height: math.unit(10.5, "feet"),
  20930. weight: math.unit(800, "lb"),
  20931. name: "Back",
  20932. image: {
  20933. source: "./media/characters/knox/back.svg",
  20934. extra: 1486/1089,
  20935. bottom: 107/1601.4
  20936. }
  20937. },
  20938. side: {
  20939. height: math.unit(10.5, "feet"),
  20940. weight: math.unit(800, "lb"),
  20941. name: "Side",
  20942. image: {
  20943. source: "./media/characters/knox/side.svg",
  20944. extra: 244/218,
  20945. bottom: 14/260
  20946. }
  20947. },
  20948. },
  20949. [
  20950. {
  20951. name: "Compact",
  20952. height: math.unit(10.5, "feet"),
  20953. default: true
  20954. },
  20955. {
  20956. name: "Dynamax",
  20957. height: math.unit(210, "feet")
  20958. },
  20959. {
  20960. name: "Full Macro",
  20961. height: math.unit(850, "feet")
  20962. },
  20963. ]
  20964. ))
  20965. characterMakers.push(() => makeCharacter(
  20966. { name: "Shin (Pikachu)" },
  20967. {
  20968. front: {
  20969. height: math.unit(6, "feet"),
  20970. weight: math.unit(152, "lb"),
  20971. name: "Front",
  20972. image: {
  20973. source: "./media/characters/shin-pikachu/front.svg",
  20974. extra: 1574/1480,
  20975. bottom: 53.3/1626
  20976. }
  20977. },
  20978. hand: {
  20979. height: math.unit(1.055, "feet"),
  20980. name: "Hand",
  20981. image: {
  20982. source: "./media/characters/shin-pikachu/hand.svg"
  20983. }
  20984. },
  20985. foot: {
  20986. height: math.unit(1.1, "feet"),
  20987. name: "Foot",
  20988. image: {
  20989. source: "./media/characters/shin-pikachu/foot.svg"
  20990. }
  20991. },
  20992. collar: {
  20993. height: math.unit(0.386, "feet"),
  20994. name: "Collar",
  20995. image: {
  20996. source: "./media/characters/shin-pikachu/collar.svg"
  20997. }
  20998. },
  20999. },
  21000. [
  21001. {
  21002. name: "Smallest",
  21003. height: math.unit(0.5, "inches")
  21004. },
  21005. {
  21006. name: "Micro",
  21007. height: math.unit(6, "inches")
  21008. },
  21009. {
  21010. name: "Normal",
  21011. height: math.unit(6, "feet"),
  21012. default: true
  21013. },
  21014. {
  21015. name: "Macro",
  21016. height: math.unit(150, "feet")
  21017. },
  21018. ]
  21019. ))
  21020. characterMakers.push(() => makeCharacter(
  21021. { name: "Kayda" },
  21022. {
  21023. front: {
  21024. height: math.unit(28, "feet"),
  21025. weight: math.unit(10500, "lb"),
  21026. name: "Front",
  21027. image: {
  21028. source: "./media/characters/kayda/front.svg",
  21029. extra: 1536/1428,
  21030. bottom: 68.7/1603
  21031. }
  21032. },
  21033. back: {
  21034. height: math.unit(28, "feet"),
  21035. weight: math.unit(10500, "lb"),
  21036. name: "Back",
  21037. image: {
  21038. source: "./media/characters/kayda/back.svg",
  21039. extra: 1557/1464,
  21040. bottom: 39.5/1597.49
  21041. }
  21042. },
  21043. dick: {
  21044. height: math.unit(3.858, "feet"),
  21045. name: "Dick",
  21046. image: {
  21047. source: "./media/characters/kayda/dick.svg"
  21048. }
  21049. },
  21050. },
  21051. [
  21052. {
  21053. name: "Macro",
  21054. height: math.unit(28, "feet"),
  21055. default: true
  21056. },
  21057. ]
  21058. ))
  21059. characterMakers.push(() => makeCharacter(
  21060. { name: "Brian", species: "Barbary Lion" },
  21061. {
  21062. front: {
  21063. height: math.unit(10 + 11/12, "feet"),
  21064. weight: math.unit(1400, "lb"),
  21065. name: "Front",
  21066. image: {
  21067. source: "./media/characters/brian/front.svg",
  21068. extra: 737/692,
  21069. bottom: 55.4/785
  21070. }
  21071. },
  21072. },
  21073. [
  21074. {
  21075. name: "Normal",
  21076. height: math.unit(10 + 11/12, "feet"),
  21077. default: true
  21078. },
  21079. ]
  21080. ))
  21081. characterMakers.push(() => makeCharacter(
  21082. { name: "Khemri", species: "Jackal" },
  21083. {
  21084. front: {
  21085. height: math.unit(5 + 8/12, "feet"),
  21086. weight: math.unit(140, "lb"),
  21087. name: "Front",
  21088. image: {
  21089. source: "./media/characters/khemri/front.svg",
  21090. extra: 4780/4059,
  21091. bottom: 80.1/4859.25
  21092. }
  21093. },
  21094. },
  21095. [
  21096. {
  21097. name: "Micro",
  21098. height: math.unit(6, "inches")
  21099. },
  21100. {
  21101. name: "Normal",
  21102. height: math.unit(5 + 8/12, "feet"),
  21103. default: true
  21104. },
  21105. ]
  21106. ))
  21107. characterMakers.push(() => makeCharacter(
  21108. { name: "Felix Braveheart" },
  21109. {
  21110. front: {
  21111. height: math.unit(13, "feet"),
  21112. weight: math.unit(1700, "lb"),
  21113. name: "Front",
  21114. image: {
  21115. source: "./media/characters/felix-braveheart/front.svg",
  21116. extra: 1222/1157,
  21117. bottom: 53.2/1280
  21118. }
  21119. },
  21120. back: {
  21121. height: math.unit(13, "feet"),
  21122. weight: math.unit(1700, "lb"),
  21123. name: "Back",
  21124. image: {
  21125. source: "./media/characters/felix-braveheart/back.svg",
  21126. extra: 1277/1203,
  21127. bottom: 50.2/1327
  21128. }
  21129. },
  21130. feral: {
  21131. height: math.unit(6, "feet"),
  21132. weight: math.unit(400, "lb"),
  21133. name: "Feral",
  21134. image: {
  21135. source: "./media/characters/felix-braveheart/feral.svg",
  21136. extra: 682/625,
  21137. bottom: 6.9/688
  21138. }
  21139. },
  21140. },
  21141. [
  21142. {
  21143. name: "Normal",
  21144. height: math.unit(13, "feet"),
  21145. default: true
  21146. },
  21147. ]
  21148. ))
  21149. characterMakers.push(() => makeCharacter(
  21150. { name: "Shadow Blade" },
  21151. {
  21152. side: {
  21153. height: math.unit(5 + 11/12, "feet"),
  21154. weight: math.unit(1400, "lb"),
  21155. name: "Side",
  21156. image: {
  21157. source: "./media/characters/shadow-blade/side.svg",
  21158. extra: 1726/1267,
  21159. bottom: 58.4/1785
  21160. }
  21161. },
  21162. },
  21163. [
  21164. {
  21165. name: "Normal",
  21166. height: math.unit(5 + 11/12, "feet"),
  21167. default: true
  21168. },
  21169. ]
  21170. ))
  21171. characterMakers.push(() => makeCharacter(
  21172. { name: "Karla Halldor" },
  21173. {
  21174. front: {
  21175. height: math.unit(1 + 6/12, "feet"),
  21176. weight: math.unit(25, "lb"),
  21177. name: "Front",
  21178. image: {
  21179. source: "./media/characters/karla-halldor/front.svg",
  21180. extra: 1459/1383,
  21181. bottom: 12/1472
  21182. }
  21183. },
  21184. },
  21185. [
  21186. {
  21187. name: "Normal",
  21188. height: math.unit(1 + 6/12, "feet"),
  21189. default: true
  21190. },
  21191. ]
  21192. ))
  21193. characterMakers.push(() => makeCharacter(
  21194. { name: "Ariam" },
  21195. {
  21196. front: {
  21197. height: math.unit(6 + 2/12, "feet"),
  21198. weight: math.unit(160, "lb"),
  21199. name: "Front",
  21200. image: {
  21201. source: "./media/characters/ariam/front.svg",
  21202. extra: 714/617,
  21203. bottom: 23.4/737,
  21204. }
  21205. },
  21206. squatting: {
  21207. height: math.unit(4.1, "feet"),
  21208. weight: math.unit(160, "lb"),
  21209. name: "Squatting",
  21210. image: {
  21211. source: "./media/characters/ariam/squatting.svg",
  21212. extra: 2617/2112,
  21213. bottom: 61.2/2681,
  21214. }
  21215. },
  21216. },
  21217. [
  21218. {
  21219. name: "Normal",
  21220. height: math.unit(6 + 2/12, "feet"),
  21221. default: true
  21222. },
  21223. {
  21224. name: "Normal+",
  21225. height: math.unit(4, "meters")
  21226. },
  21227. {
  21228. name: "Macro",
  21229. height: math.unit(50, "meters")
  21230. },
  21231. {
  21232. name: "Macro+",
  21233. height: math.unit(100, "meters")
  21234. },
  21235. {
  21236. name: "Megamacro",
  21237. height: math.unit(20, "km")
  21238. },
  21239. ]
  21240. ))
  21241. characterMakers.push(() => makeCharacter(
  21242. { name: "Qodri Class-of-'Fortwelve-Six" },
  21243. {
  21244. front: {
  21245. height: math.unit(1.67, "meters"),
  21246. weight: math.unit(140, "lb"),
  21247. name: "Front",
  21248. image: {
  21249. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  21250. extra: 438/410,
  21251. bottom: 0.75/439
  21252. }
  21253. },
  21254. },
  21255. [
  21256. {
  21257. name: "Shrunken",
  21258. height: math.unit(7.6, "cm")
  21259. },
  21260. {
  21261. name: "Human Scale",
  21262. height: math.unit(1.67, "meters")
  21263. },
  21264. {
  21265. name: "Wolxi Scale",
  21266. height: math.unit(36.7, "meters"),
  21267. default: true
  21268. },
  21269. ]
  21270. ))
  21271. characterMakers.push(() => makeCharacter(
  21272. { name: "Izue Two-Mothers" },
  21273. {
  21274. front: {
  21275. height: math.unit(1.73, "meters"),
  21276. weight: math.unit(240, "lb"),
  21277. name: "Front",
  21278. image: {
  21279. source: "./media/characters/izue-two-mothers/front.svg",
  21280. extra: 469/437,
  21281. bottom: 1.24/470.6
  21282. }
  21283. },
  21284. },
  21285. [
  21286. {
  21287. name: "Shrunken",
  21288. height: math.unit(7.86, "cm")
  21289. },
  21290. {
  21291. name: "Human Scale",
  21292. height: math.unit(1.73, "meters")
  21293. },
  21294. {
  21295. name: "Wolxi Scale",
  21296. height: math.unit(38, "meters"),
  21297. default: true
  21298. },
  21299. ]
  21300. ))
  21301. characterMakers.push(() => makeCharacter(
  21302. { name: "Teeku Love-Shack" },
  21303. {
  21304. front: {
  21305. height: math.unit(1.55, "meters"),
  21306. weight: math.unit(120, "lb"),
  21307. name: "Front",
  21308. image: {
  21309. source: "./media/characters/teeku-love-shack/front.svg",
  21310. extra: 387/362,
  21311. bottom: 1.51/388
  21312. }
  21313. },
  21314. },
  21315. [
  21316. {
  21317. name: "Shrunken",
  21318. height: math.unit(7, "cm")
  21319. },
  21320. {
  21321. name: "Human Scale",
  21322. height: math.unit(1.55, "meters")
  21323. },
  21324. {
  21325. name: "Wolxi Scale",
  21326. height: math.unit(34.1, "meters"),
  21327. default: true
  21328. },
  21329. ]
  21330. ))
  21331. characterMakers.push(() => makeCharacter(
  21332. { name: "Dejma the Red" },
  21333. {
  21334. front: {
  21335. height: math.unit(1.83, "meters"),
  21336. weight: math.unit(135, "lb"),
  21337. name: "Front",
  21338. image: {
  21339. source: "./media/characters/dejma-the-red/front.svg",
  21340. extra: 480/458,
  21341. bottom: 1.8/482
  21342. }
  21343. },
  21344. },
  21345. [
  21346. {
  21347. name: "Shrunken",
  21348. height: math.unit(8.3, "cm")
  21349. },
  21350. {
  21351. name: "Human Scale",
  21352. height: math.unit(1.83, "meters")
  21353. },
  21354. {
  21355. name: "Wolxi Scale",
  21356. height: math.unit(40, "meters"),
  21357. default: true
  21358. },
  21359. ]
  21360. ))
  21361. characterMakers.push(() => makeCharacter(
  21362. { name: "Aki" },
  21363. {
  21364. front: {
  21365. height: math.unit(1.78, "meters"),
  21366. weight: math.unit(65, "kg"),
  21367. name: "Front",
  21368. image: {
  21369. source: "./media/characters/aki/front.svg",
  21370. extra: 452/415
  21371. }
  21372. },
  21373. frontNsfw: {
  21374. height: math.unit(1.78, "meters"),
  21375. weight: math.unit(65, "kg"),
  21376. name: "Front (NSFW)",
  21377. image: {
  21378. source: "./media/characters/aki/front-nsfw.svg",
  21379. extra: 452/415
  21380. }
  21381. },
  21382. back: {
  21383. height: math.unit(1.78, "meters"),
  21384. weight: math.unit(65, "kg"),
  21385. name: "Back",
  21386. image: {
  21387. source: "./media/characters/aki/back.svg",
  21388. extra: 452/415
  21389. }
  21390. },
  21391. rump: {
  21392. height: math.unit(2.05, "feet"),
  21393. name: "Rump",
  21394. image: {
  21395. source: "./media/characters/aki/rump.svg"
  21396. }
  21397. },
  21398. dick: {
  21399. height: math.unit(0.95, "feet"),
  21400. name: "Dick",
  21401. image: {
  21402. source: "./media/characters/aki/dick.svg"
  21403. }
  21404. },
  21405. },
  21406. [
  21407. {
  21408. name: "Micro",
  21409. height: math.unit(15, "cm")
  21410. },
  21411. {
  21412. name: "Normal",
  21413. height: math.unit(178, "cm"),
  21414. default: true
  21415. },
  21416. {
  21417. name: "Macro",
  21418. height: math.unit(214, "m")
  21419. },
  21420. {
  21421. name: "Macro+",
  21422. height: math.unit(534, "m")
  21423. },
  21424. ]
  21425. ))
  21426. characterMakers.push(() => makeCharacter(
  21427. { name: "Ari" },
  21428. {
  21429. front: {
  21430. height: math.unit(5 + 5/12, "feet"),
  21431. weight: math.unit(120, "lb"),
  21432. name: "Front",
  21433. image: {
  21434. source: "./media/characters/ari/front.svg",
  21435. extra: 714.5/682,
  21436. bottom: 8/722.5
  21437. }
  21438. },
  21439. },
  21440. [
  21441. {
  21442. name: "Normal",
  21443. height: math.unit(5 + 5/12, "feet")
  21444. },
  21445. {
  21446. name: "Macro",
  21447. height: math.unit(100, "feet"),
  21448. default: true
  21449. },
  21450. {
  21451. name: "Megamacro",
  21452. height: math.unit(100, "miles")
  21453. },
  21454. {
  21455. name: "Gigamacro",
  21456. height: math.unit(80000, "miles")
  21457. },
  21458. ]
  21459. ))
  21460. characterMakers.push(() => makeCharacter(
  21461. { name: "Bolt" },
  21462. {
  21463. side: {
  21464. height: math.unit(9, "feet"),
  21465. weight: math.unit(400, "kg"),
  21466. name: "Side",
  21467. image: {
  21468. source: "./media/characters/bolt/side.svg",
  21469. extra: 1126/896,
  21470. bottom: 60/1187.3,
  21471. }
  21472. },
  21473. },
  21474. [
  21475. {
  21476. name: "Micro",
  21477. height: math.unit(5, "inches")
  21478. },
  21479. {
  21480. name: "Normal",
  21481. height: math.unit(9, "feet"),
  21482. default: true
  21483. },
  21484. {
  21485. name: "Macro",
  21486. height: math.unit(700, "feet")
  21487. },
  21488. {
  21489. name: "Max Size",
  21490. height: math.unit(1.52e22, "yottameters")
  21491. },
  21492. ]
  21493. ))
  21494. characterMakers.push(() => makeCharacter(
  21495. { name: "Draekon Sylviar", species: "Dra'gal" },
  21496. {
  21497. front: {
  21498. height: math.unit(4.53, "meters"),
  21499. weight: math.unit(3, "tons"),
  21500. name: "Front",
  21501. image: {
  21502. source: "./media/characters/draekon-sylviar/front.svg",
  21503. extra: 1228/1068,
  21504. bottom: 41/1270
  21505. }
  21506. },
  21507. tail: {
  21508. height: math.unit(1.772, "meter"),
  21509. name: "Tail",
  21510. image: {
  21511. source: "./media/characters/draekon-sylviar/tail.svg"
  21512. }
  21513. },
  21514. head: {
  21515. height: math.unit(1.331, "meter"),
  21516. name: "Head",
  21517. image: {
  21518. source: "./media/characters/draekon-sylviar/head.svg"
  21519. }
  21520. },
  21521. hand: {
  21522. height: math.unit(0.564, "meter"),
  21523. name: "Hand",
  21524. image: {
  21525. source: "./media/characters/draekon-sylviar/hand.svg"
  21526. }
  21527. },
  21528. foot: {
  21529. height: math.unit(0.621, "meter"),
  21530. name: "Foot",
  21531. image: {
  21532. source: "./media/characters/draekon-sylviar/foot.svg",
  21533. bottom: 32/324
  21534. }
  21535. },
  21536. dick: {
  21537. height: math.unit(61, "cm"),
  21538. name: "Dick",
  21539. image: {
  21540. source: "./media/characters/draekon-sylviar/dick.svg"
  21541. }
  21542. },
  21543. dickseparated: {
  21544. height: math.unit(61, "cm"),
  21545. name: "Dick-separated",
  21546. image: {
  21547. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  21548. }
  21549. },
  21550. },
  21551. [
  21552. {
  21553. name: "Small",
  21554. height: math.unit(4.53/2, "meters"),
  21555. default: true
  21556. },
  21557. {
  21558. name: "Normal",
  21559. height: math.unit(4.53, "meters"),
  21560. default: true
  21561. },
  21562. {
  21563. name: "Large",
  21564. height: math.unit(4.53*2, "meters"),
  21565. },
  21566. ]
  21567. ))
  21568. characterMakers.push(() => makeCharacter(
  21569. { name: "Brawler", species: "German Shepherd" },
  21570. {
  21571. front: {
  21572. height: math.unit(6 + 2/12, "feet"),
  21573. weight: math.unit(180, "lb"),
  21574. name: "Front",
  21575. image: {
  21576. source: "./media/characters/brawler/front.svg",
  21577. extra: 3301/3027,
  21578. bottom: 138/3439
  21579. }
  21580. },
  21581. },
  21582. [
  21583. {
  21584. name: "Normal",
  21585. height: math.unit(6 + 2/12, "feet"),
  21586. default: true
  21587. },
  21588. ]
  21589. ))
  21590. characterMakers.push(() => makeCharacter(
  21591. { name: "Alex", species: "Bayleef" },
  21592. {
  21593. front: {
  21594. height: math.unit(11, "feet"),
  21595. weight: math.unit(1000, "lb"),
  21596. name: "Front",
  21597. image: {
  21598. source: "./media/characters/alex/front.svg",
  21599. bottom: 44.5/620
  21600. }
  21601. },
  21602. },
  21603. [
  21604. {
  21605. name: "Micro",
  21606. height: math.unit(5, "inches")
  21607. },
  21608. {
  21609. name: "Normal",
  21610. height: math.unit(11, "feet"),
  21611. default: true
  21612. },
  21613. {
  21614. name: "Macro",
  21615. height: math.unit(9.5e9, "feet")
  21616. },
  21617. {
  21618. name: "Max Size",
  21619. height: math.unit(1.4e283, "yottameters")
  21620. },
  21621. ]
  21622. ))
  21623. characterMakers.push(() => makeCharacter(
  21624. { name: "Zenari" },
  21625. {
  21626. female: {
  21627. height: math.unit(29.9, "m"),
  21628. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  21629. name: "Female",
  21630. image: {
  21631. source: "./media/characters/zenari/female.svg",
  21632. extra: 3281.6/3217,
  21633. bottom: 72.2/3353
  21634. }
  21635. },
  21636. male: {
  21637. height: math.unit(27.7, "m"),
  21638. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  21639. name: "Male",
  21640. image: {
  21641. source: "./media/characters/zenari/male.svg",
  21642. extra: 3008/2991,
  21643. bottom: 54.6/3069
  21644. }
  21645. },
  21646. },
  21647. [
  21648. {
  21649. name: "Macro",
  21650. height: math.unit(29.7, "meters"),
  21651. default: true
  21652. },
  21653. ]
  21654. ))
  21655. characterMakers.push(() => makeCharacter(
  21656. { name: "Mactarian" },
  21657. {
  21658. female: {
  21659. height: math.unit(23.8, "m"),
  21660. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  21661. name: "Female",
  21662. image: {
  21663. source: "./media/characters/mactarian/female.svg",
  21664. extra: 2662/2569,
  21665. bottom: 73/2736
  21666. }
  21667. },
  21668. male: {
  21669. height: math.unit(23.8, "m"),
  21670. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  21671. name: "Male",
  21672. image: {
  21673. source: "./media/characters/mactarian/male.svg",
  21674. extra: 2673/2600,
  21675. bottom: 76/2750
  21676. }
  21677. },
  21678. },
  21679. [
  21680. {
  21681. name: "Macro",
  21682. height: math.unit(23.8, "meters"),
  21683. default: true
  21684. },
  21685. ]
  21686. ))
  21687. characterMakers.push(() => makeCharacter(
  21688. { name: "Umok" },
  21689. {
  21690. female: {
  21691. height: math.unit(19.3, "m"),
  21692. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  21693. name: "Female",
  21694. image: {
  21695. source: "./media/characters/umok/female.svg",
  21696. extra: 2186/2078,
  21697. bottom: 87/2277
  21698. }
  21699. },
  21700. male: {
  21701. height: math.unit(19.5, "m"),
  21702. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  21703. name: "Male",
  21704. image: {
  21705. source: "./media/characters/umok/male.svg",
  21706. extra: 2233/2140,
  21707. bottom: 24.4/2258
  21708. }
  21709. },
  21710. },
  21711. [
  21712. {
  21713. name: "Macro",
  21714. height: math.unit(19.3, "meters"),
  21715. default: true
  21716. },
  21717. ]
  21718. ))
  21719. characterMakers.push(() => makeCharacter(
  21720. { name: "Joraxian" },
  21721. {
  21722. female: {
  21723. height: math.unit(26.15, "m"),
  21724. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  21725. name: "Female",
  21726. image: {
  21727. source: "./media/characters/joraxian/female.svg",
  21728. extra: 2943/2831,
  21729. bottom: 27/2972
  21730. }
  21731. },
  21732. male: {
  21733. height: math.unit(25.4, "m"),
  21734. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  21735. name: "Male",
  21736. image: {
  21737. source: "./media/characters/joraxian/male.svg",
  21738. extra: 2835/2741,
  21739. bottom: 27/2862
  21740. }
  21741. },
  21742. },
  21743. [
  21744. {
  21745. name: "Macro",
  21746. height: math.unit(26.15, "meters"),
  21747. default: true
  21748. },
  21749. ]
  21750. ))
  21751. characterMakers.push(() => makeCharacter(
  21752. { name: "Sthara" },
  21753. {
  21754. female: {
  21755. height: math.unit(21.6, "m"),
  21756. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  21757. name: "Female",
  21758. image: {
  21759. source: "./media/characters/sthara/female.svg",
  21760. extra: 2516/2347,
  21761. bottom: 21.5/2537
  21762. }
  21763. },
  21764. male: {
  21765. height: math.unit(24, "m"),
  21766. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  21767. name: "Male",
  21768. image: {
  21769. source: "./media/characters/sthara/male.svg",
  21770. extra: 2732/2607,
  21771. bottom: 23/2732
  21772. }
  21773. },
  21774. },
  21775. [
  21776. {
  21777. name: "Macro",
  21778. height: math.unit(21.6, "meters"),
  21779. default: true
  21780. },
  21781. ]
  21782. ))
  21783. characterMakers.push(() => makeCharacter(
  21784. { name: "Luka Bryzant" },
  21785. {
  21786. front: {
  21787. height: math.unit(6 + 4/12, "feet"),
  21788. weight: math.unit(175, "lb"),
  21789. name: "Front",
  21790. image: {
  21791. source: "./media/characters/luka-bryzant/front.svg",
  21792. extra: 311/289,
  21793. bottom: 4/315
  21794. }
  21795. },
  21796. back: {
  21797. height: math.unit(6 + 4/12, "feet"),
  21798. weight: math.unit(175, "lb"),
  21799. name: "Back",
  21800. image: {
  21801. source: "./media/characters/luka-bryzant/back.svg",
  21802. extra: 311/289,
  21803. bottom: 3.8/313.7
  21804. }
  21805. },
  21806. },
  21807. [
  21808. {
  21809. name: "Micro",
  21810. height: math.unit(10, "inches")
  21811. },
  21812. {
  21813. name: "Normal",
  21814. height: math.unit(6 + 4/12, "feet"),
  21815. default: true
  21816. },
  21817. {
  21818. name: "Large",
  21819. height: math.unit(12, "feet")
  21820. },
  21821. ]
  21822. ))
  21823. characterMakers.push(() => makeCharacter(
  21824. { name: "Aman Aquila" },
  21825. {
  21826. front: {
  21827. height: math.unit(5 + 7/12, "feet"),
  21828. weight: math.unit(185, "lb"),
  21829. name: "Front",
  21830. image: {
  21831. source: "./media/characters/aman-aquila/front.svg",
  21832. extra: 1013/976,
  21833. bottom: 45.6/1057
  21834. }
  21835. },
  21836. side: {
  21837. height: math.unit(5 + 7/12, "feet"),
  21838. weight: math.unit(185, "lb"),
  21839. name: "Side",
  21840. image: {
  21841. source: "./media/characters/aman-aquila/side.svg",
  21842. extra: 1054/1011,
  21843. bottom: 15/1070
  21844. }
  21845. },
  21846. back: {
  21847. height: math.unit(5 + 7/12, "feet"),
  21848. weight: math.unit(185, "lb"),
  21849. name: "Back",
  21850. image: {
  21851. source: "./media/characters/aman-aquila/back.svg",
  21852. extra: 1026/970,
  21853. bottom: 12/1039
  21854. }
  21855. },
  21856. head: {
  21857. height: math.unit(1.211, "feet"),
  21858. name: "Head",
  21859. image: {
  21860. source: "./media/characters/aman-aquila/head.svg",
  21861. }
  21862. },
  21863. },
  21864. [
  21865. {
  21866. name: "Minimicro",
  21867. height: math.unit(0.057, "inches")
  21868. },
  21869. {
  21870. name: "Micro",
  21871. height: math.unit(7, "inches")
  21872. },
  21873. {
  21874. name: "Mini",
  21875. height: math.unit(3 + 7/12, "feet")
  21876. },
  21877. {
  21878. name: "Normal",
  21879. height: math.unit(5 + 7/12, "feet"),
  21880. default: true
  21881. },
  21882. {
  21883. name: "Macro",
  21884. height: math.unit(157 + 7/12, "feet")
  21885. },
  21886. {
  21887. name: "Megamacro",
  21888. height: math.unit(1557 + 7/12, "feet")
  21889. },
  21890. {
  21891. name: "Gigamacro",
  21892. height: math.unit(15557 + 7/12, "feet")
  21893. },
  21894. ]
  21895. ))
  21896. characterMakers.push(() => makeCharacter(
  21897. { name: "Hiphae", species: "Mouse" },
  21898. {
  21899. front: {
  21900. height: math.unit(3 + 2/12, "inches"),
  21901. weight: math.unit(0.3, "ounces"),
  21902. name: "Front",
  21903. image: {
  21904. source: "./media/characters/hiphae/front.svg",
  21905. extra: 1931/1683,
  21906. bottom: 24/1955
  21907. }
  21908. },
  21909. },
  21910. [
  21911. {
  21912. name: "Normal",
  21913. height: math.unit(3 + 1/2, "inches"),
  21914. default: true
  21915. },
  21916. ]
  21917. ))
  21918. characterMakers.push(() => makeCharacter(
  21919. { name: "Nicky", species: "Shark" },
  21920. {
  21921. front: {
  21922. height: math.unit(5 + 10/12, "feet"),
  21923. weight: math.unit(165, "lb"),
  21924. name: "Front",
  21925. image: {
  21926. source: "./media/characters/nicky/front.svg",
  21927. extra: 3144/2886,
  21928. bottom: 45.6/3192
  21929. }
  21930. },
  21931. back: {
  21932. height: math.unit(5 + 10/12, "feet"),
  21933. weight: math.unit(165, "lb"),
  21934. name: "Back",
  21935. image: {
  21936. source: "./media/characters/nicky/back.svg",
  21937. extra: 3055/2804,
  21938. bottom: 28.4/3087
  21939. }
  21940. },
  21941. frontclothed: {
  21942. height: math.unit(5 + 10/12, "feet"),
  21943. weight: math.unit(165, "lb"),
  21944. name: "Front-clothed",
  21945. image: {
  21946. source: "./media/characters/nicky/front-clothed.svg",
  21947. extra: 3184.9/2926.9,
  21948. bottom: 86.5/3239.9
  21949. }
  21950. },
  21951. foot: {
  21952. height: math.unit(1.16, "feet"),
  21953. name: "Foot",
  21954. image: {
  21955. source: "./media/characters/nicky/foot.svg"
  21956. }
  21957. },
  21958. feet: {
  21959. height: math.unit(1.34, "feet"),
  21960. name: "Feet",
  21961. image: {
  21962. source: "./media/characters/nicky/feet.svg"
  21963. }
  21964. },
  21965. maw: {
  21966. height: math.unit(0.9, "feet"),
  21967. name: "Maw",
  21968. image: {
  21969. source: "./media/characters/nicky/maw.svg"
  21970. }
  21971. },
  21972. },
  21973. [
  21974. {
  21975. name: "Normal",
  21976. height: math.unit(5 + 10/12, "feet"),
  21977. default: true
  21978. },
  21979. {
  21980. name: "Macro",
  21981. height: math.unit(60, "feet")
  21982. },
  21983. {
  21984. name: "Megamacro",
  21985. height: math.unit(1, "mile")
  21986. },
  21987. ]
  21988. ))
  21989. characterMakers.push(() => makeCharacter(
  21990. { name: "Blair" },
  21991. {
  21992. side: {
  21993. height: math.unit(10, "feet"),
  21994. weight: math.unit(600, "lb"),
  21995. name: "Side",
  21996. image: {
  21997. source: "./media/characters/blair/side.svg",
  21998. bottom: 16.6/475,
  21999. extra: 458/431
  22000. }
  22001. },
  22002. },
  22003. [
  22004. {
  22005. name: "Micro",
  22006. height: math.unit(8, "inches")
  22007. },
  22008. {
  22009. name: "Normal",
  22010. height: math.unit(10, "feet"),
  22011. default: true
  22012. },
  22013. {
  22014. name: "Macro",
  22015. height: math.unit(180, "feet")
  22016. },
  22017. ]
  22018. ))
  22019. characterMakers.push(() => makeCharacter(
  22020. { name: "Fisher" },
  22021. {
  22022. front: {
  22023. height: math.unit(5 + 4/12, "feet"),
  22024. weight: math.unit(125, "lb"),
  22025. name: "Front",
  22026. image: {
  22027. source: "./media/characters/fisher/front.svg",
  22028. extra: 444/390,
  22029. bottom: 2/444.8
  22030. }
  22031. },
  22032. },
  22033. [
  22034. {
  22035. name: "Micro",
  22036. height: math.unit(4, "inches")
  22037. },
  22038. {
  22039. name: "Normal",
  22040. height: math.unit(5 + 4/12, "feet"),
  22041. default: true
  22042. },
  22043. {
  22044. name: "Macro",
  22045. height: math.unit(100, "feet")
  22046. },
  22047. ]
  22048. ))
  22049. characterMakers.push(() => makeCharacter(
  22050. { name: "Gliss" },
  22051. {
  22052. front: {
  22053. height: math.unit(6.71, "feet"),
  22054. weight: math.unit(200, "lb"),
  22055. capacity: math.unit(1000000, "people"),
  22056. name: "Front",
  22057. image: {
  22058. source: "./media/characters/gliss/front.svg",
  22059. extra: 2347/2231,
  22060. bottom: 113/2462
  22061. }
  22062. },
  22063. hammerspaceSize: {
  22064. height: math.unit(6.71*717, "feet"),
  22065. weight: math.unit(200, "lb"),
  22066. capacity: math.unit(1000000, "people"),
  22067. name: "Hammerspace Size",
  22068. image: {
  22069. source: "./media/characters/gliss/front.svg",
  22070. extra: 2347/2231,
  22071. bottom: 113/2462
  22072. }
  22073. },
  22074. },
  22075. [
  22076. {
  22077. name: "Normal",
  22078. height: math.unit(6.71, "feet"),
  22079. default: true
  22080. },
  22081. ]
  22082. ))
  22083. characterMakers.push(() => makeCharacter(
  22084. { name: "Dune Anderson" },
  22085. {
  22086. side: {
  22087. height: math.unit(1.44, "m"),
  22088. weight: math.unit(80, "kg"),
  22089. name: "Side",
  22090. image: {
  22091. source: "./media/characters/dune-anderson/side.svg",
  22092. bottom: 49/1426
  22093. }
  22094. },
  22095. },
  22096. [
  22097. {
  22098. name: "Wolf-sized",
  22099. height: math.unit(1.44, "meters")
  22100. },
  22101. {
  22102. name: "Normal",
  22103. height: math.unit(5.05, "meters"),
  22104. default: true
  22105. },
  22106. {
  22107. name: "Big",
  22108. height: math.unit(14.4, "meters")
  22109. },
  22110. {
  22111. name: "Huge",
  22112. height: math.unit(144, "meters")
  22113. },
  22114. ]
  22115. ))
  22116. characterMakers.push(() => makeCharacter(
  22117. { name: "Hind" },
  22118. {
  22119. front: {
  22120. height: math.unit(7, "feet"),
  22121. weight: math.unit(425, "lb"),
  22122. name: "Front",
  22123. image: {
  22124. source: "./media/characters/hind/front.svg",
  22125. extra: 2091/1860,
  22126. bottom: 129/2220
  22127. }
  22128. },
  22129. back: {
  22130. height: math.unit(7, "feet"),
  22131. weight: math.unit(425, "lb"),
  22132. name: "Back",
  22133. image: {
  22134. source: "./media/characters/hind/back.svg",
  22135. extra: 2091/1860,
  22136. bottom: 24.6/2309
  22137. }
  22138. },
  22139. tail: {
  22140. height: math.unit(2.8, "feet"),
  22141. name: "Tail",
  22142. image: {
  22143. source: "./media/characters/hind/tail.svg"
  22144. }
  22145. },
  22146. head: {
  22147. height: math.unit(2.55, "feet"),
  22148. name: "Head",
  22149. image: {
  22150. source: "./media/characters/hind/head.svg"
  22151. }
  22152. },
  22153. },
  22154. [
  22155. {
  22156. name: "XS",
  22157. height: math.unit(0.7, "feet")
  22158. },
  22159. {
  22160. name: "Normal",
  22161. height: math.unit(7, "feet"),
  22162. default: true
  22163. },
  22164. {
  22165. name: "XL",
  22166. height: math.unit(70, "feet")
  22167. },
  22168. ]
  22169. ))
  22170. characterMakers.push(() => makeCharacter(
  22171. { name: "Dylan (Skaven)" },
  22172. {
  22173. front: {
  22174. height: math.unit(6, "feet"),
  22175. weight: math.unit(150, "lb"),
  22176. name: "Front",
  22177. image: {
  22178. source: "./media/characters/dylan-skaven/front.svg",
  22179. extra: 2318/2063,
  22180. bottom: 93.4/2410
  22181. }
  22182. },
  22183. },
  22184. [
  22185. {
  22186. name: "Nano",
  22187. height: math.unit(1, "mm")
  22188. },
  22189. {
  22190. name: "Micro",
  22191. height: math.unit(1, "cm")
  22192. },
  22193. {
  22194. name: "Normal",
  22195. height: math.unit(2.1, "meters"),
  22196. default: true
  22197. },
  22198. ]
  22199. ))
  22200. characterMakers.push(() => makeCharacter(
  22201. { name: "Solex Draconov", species: "Drasune" },
  22202. {
  22203. front: {
  22204. height: math.unit(7 + 5/12, "feet"),
  22205. weight: math.unit(357, "lb"),
  22206. name: "Front",
  22207. image: {
  22208. source: "./media/characters/solex-draconov/front.svg",
  22209. extra: 1993/1865,
  22210. bottom: 117/2111
  22211. }
  22212. },
  22213. },
  22214. [
  22215. {
  22216. name: "Natural Height",
  22217. height: math.unit(7 + 5/12, "feet"),
  22218. default: true
  22219. },
  22220. {
  22221. name: "Macro",
  22222. height: math.unit(350, "feet")
  22223. },
  22224. {
  22225. name: "Macro+",
  22226. height: math.unit(1000, "feet")
  22227. },
  22228. {
  22229. name: "Megamacro",
  22230. height: math.unit(20, "km")
  22231. },
  22232. {
  22233. name: "Megamacro+",
  22234. height: math.unit(1000, "km")
  22235. },
  22236. {
  22237. name: "Gigamacro",
  22238. height: math.unit(2.5, "Gm")
  22239. },
  22240. {
  22241. name: "Teramacro",
  22242. height: math.unit(15, "Tm")
  22243. },
  22244. {
  22245. name: "Galactic",
  22246. height: math.unit(30, "Zm")
  22247. },
  22248. {
  22249. name: "Universal",
  22250. height: math.unit(21000, "Ym")
  22251. },
  22252. {
  22253. name: "Omniversal",
  22254. height: math.unit(9.861e50, "Ym")
  22255. },
  22256. {
  22257. name: "Existential",
  22258. height: math.unit(1e300, "meters")
  22259. },
  22260. ]
  22261. ))
  22262. //characters
  22263. function makeCharacters() {
  22264. const results = [];
  22265. characterMakers.forEach(character => {
  22266. results.push(character());
  22267. });
  22268. return results;
  22269. }