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

22815 строки
547 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. name: "Front",
  5818. image: {
  5819. source: "./media/characters/aura-starwind/front.svg",
  5820. extra: 1455 / 1335
  5821. }
  5822. },
  5823. side: {
  5824. height: math.unit(14, "feet"),
  5825. weight: math.unit(1450, "kg"),
  5826. name: "Side",
  5827. image: {
  5828. source: "./media/characters/aura-starwind/side.svg",
  5829. extra: 1654 / 1497
  5830. }
  5831. },
  5832. taur: {
  5833. height: math.unit(18, "feet"),
  5834. weight: math.unit(5500, "kg"),
  5835. name: "Taur",
  5836. image: {
  5837. source: "./media/characters/aura-starwind/taur.svg",
  5838. extra: 1760 / 1650
  5839. }
  5840. },
  5841. feral: {
  5842. height: math.unit(46, "feet"),
  5843. weight: math.unit(25000, "kg"),
  5844. name: "Feral",
  5845. image: {
  5846. source: "./media/characters/aura-starwind/feral.svg"
  5847. }
  5848. },
  5849. },
  5850. [
  5851. {
  5852. name: "Normal",
  5853. height: math.unit(14, "feet"),
  5854. default: true
  5855. },
  5856. {
  5857. name: "Macro",
  5858. height: math.unit(50, "meters")
  5859. },
  5860. {
  5861. name: "Megamacro",
  5862. height: math.unit(5000, "meters")
  5863. },
  5864. {
  5865. name: "Gigamacro",
  5866. height: math.unit(100000, "kilometers")
  5867. },
  5868. ]
  5869. ))
  5870. characterMakers.push(() => makeCharacter(
  5871. { name: "Rivet" },
  5872. {
  5873. front: {
  5874. height: math.unit(2 + 7 / 12, "feet"),
  5875. weight: math.unit(32, "lbs"),
  5876. name: "Front",
  5877. image: {
  5878. source: "./media/characters/rivet/front.svg",
  5879. extra: 1716 / 1658,
  5880. bottom: 0.03
  5881. }
  5882. },
  5883. foot: {
  5884. height: math.unit(0.551, "feet"),
  5885. name: "Rivet's Foot",
  5886. image: {
  5887. source: "./media/characters/rivet/foot.svg"
  5888. },
  5889. rename: true
  5890. }
  5891. },
  5892. [
  5893. {
  5894. name: "Micro",
  5895. height: math.unit(1.5, "inches"),
  5896. },
  5897. {
  5898. name: "Normal",
  5899. height: math.unit(2 + 7 / 12, "feet"),
  5900. default: true
  5901. },
  5902. {
  5903. name: "Macro",
  5904. height: math.unit(85, "feet")
  5905. },
  5906. {
  5907. name: "Megamacro",
  5908. height: math.unit(2.2, "km")
  5909. }
  5910. ]
  5911. ))
  5912. characterMakers.push(() => makeCharacter(
  5913. { name: "Coffee" },
  5914. {
  5915. front: {
  5916. height: math.unit(5 + 9 / 12, "feet"),
  5917. weight: math.unit(150, "lbs"),
  5918. name: "Front",
  5919. image: {
  5920. source: "./media/characters/coffee/front.svg",
  5921. extra: 3666 / 3032,
  5922. bottom: 0.04
  5923. }
  5924. },
  5925. foot: {
  5926. height: math.unit(1.29, "feet"),
  5927. name: "Foot",
  5928. image: {
  5929. source: "./media/characters/coffee/foot.svg"
  5930. }
  5931. },
  5932. },
  5933. [
  5934. {
  5935. name: "Micro",
  5936. height: math.unit(2, "inches"),
  5937. },
  5938. {
  5939. name: "Normal",
  5940. height: math.unit(5 + 9 / 12, "feet"),
  5941. default: true
  5942. },
  5943. {
  5944. name: "Macro",
  5945. height: math.unit(800, "feet")
  5946. },
  5947. {
  5948. name: "Megamacro",
  5949. height: math.unit(25, "miles")
  5950. }
  5951. ]
  5952. ))
  5953. characterMakers.push(() => makeCharacter(
  5954. { name: "Chari-Gal" },
  5955. {
  5956. front: {
  5957. height: math.unit(6, "feet"),
  5958. weight: math.unit(200, "lbs"),
  5959. name: "Front",
  5960. image: {
  5961. source: "./media/characters/chari-gal/front.svg",
  5962. extra: 1568 / 1385,
  5963. bottom: 0.047
  5964. }
  5965. },
  5966. gigantamax: {
  5967. height: math.unit(6 * 16, "feet"),
  5968. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  5969. name: "Gigantamax",
  5970. image: {
  5971. source: "./media/characters/chari-gal/gigantamax.svg",
  5972. extra: 1124 / 888,
  5973. bottom: 0.03
  5974. }
  5975. },
  5976. },
  5977. [
  5978. {
  5979. name: "Normal",
  5980. height: math.unit(5 + 7 / 12, "feet")
  5981. },
  5982. {
  5983. name: "Macro",
  5984. height: math.unit(200, "feet"),
  5985. default: true
  5986. }
  5987. ]
  5988. ))
  5989. characterMakers.push(() => makeCharacter(
  5990. { name: "Nova" },
  5991. {
  5992. front: {
  5993. height: math.unit(6, "feet"),
  5994. weight: math.unit(150, "lbs"),
  5995. name: "Front",
  5996. image: {
  5997. source: "./media/characters/nova/front.svg",
  5998. extra: 5000 / 4722,
  5999. bottom: 0.02
  6000. }
  6001. }
  6002. },
  6003. [
  6004. {
  6005. name: "Micro-",
  6006. height: math.unit(0.8, "inches")
  6007. },
  6008. {
  6009. name: "Micro",
  6010. height: math.unit(2, "inches"),
  6011. default: true
  6012. },
  6013. ]
  6014. ))
  6015. characterMakers.push(() => makeCharacter(
  6016. { name: "Argent" },
  6017. {
  6018. front: {
  6019. height: math.unit(3 + 1 / 12, "feet"),
  6020. weight: math.unit(21.7, "lbs"),
  6021. name: "Front",
  6022. image: {
  6023. source: "./media/characters/argent/front.svg",
  6024. extra: 1565 / 1416,
  6025. bottom: 0.01
  6026. }
  6027. }
  6028. },
  6029. [
  6030. {
  6031. name: "Micro",
  6032. height: math.unit(2, "inches")
  6033. },
  6034. {
  6035. name: "Normal",
  6036. height: math.unit(3 + 1 / 12, "feet"),
  6037. default: true
  6038. },
  6039. {
  6040. name: "Macro",
  6041. height: math.unit(120, "feet")
  6042. },
  6043. ]
  6044. ))
  6045. characterMakers.push(() => makeCharacter(
  6046. { name: "Mira al-Cul" },
  6047. {
  6048. lamp: {
  6049. height: math.unit(7 * 1559 / 989, "feet"),
  6050. name: "Magic Lamp",
  6051. image: {
  6052. source: "./media/characters/mira-al-cul/lamp.svg",
  6053. extra: 1617 / 1559
  6054. }
  6055. },
  6056. front: {
  6057. height: math.unit(7, "feet"),
  6058. name: "Front",
  6059. image: {
  6060. source: "./media/characters/mira-al-cul/front.svg",
  6061. extra: 1044 / 990
  6062. }
  6063. },
  6064. },
  6065. [
  6066. {
  6067. name: "Heavily Restricted",
  6068. height: math.unit(7 * 1559 / 989, "feet")
  6069. },
  6070. {
  6071. name: "Freshly Freed",
  6072. height: math.unit(50 * 1559 / 989, "feet")
  6073. },
  6074. {
  6075. name: "World Encompassing",
  6076. height: math.unit(10000 * 1559 / 989, "miles")
  6077. },
  6078. {
  6079. name: "Galactic",
  6080. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6081. },
  6082. {
  6083. name: "Palmed Universe",
  6084. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6085. default: true
  6086. },
  6087. {
  6088. name: "Multiversal Matriarch",
  6089. height: math.unit(8.87e10, "yottameters")
  6090. },
  6091. {
  6092. name: "Void Mother",
  6093. height: math.unit(3.14e110, "yottaparsecs")
  6094. },
  6095. ]
  6096. ))
  6097. characterMakers.push(() => makeCharacter(
  6098. { name: "Kuro-shi Uchū" },
  6099. {
  6100. front: {
  6101. height: math.unit(17 + 1 / 12, "feet"),
  6102. weight: math.unit(476.2 * 5, "lbs"),
  6103. name: "Front",
  6104. image: {
  6105. source: "./media/characters/kuro-shi-uchū/front.svg",
  6106. extra: 2329 / 1835,
  6107. bottom: 0.02
  6108. }
  6109. },
  6110. },
  6111. [
  6112. {
  6113. name: "Micro",
  6114. height: math.unit(2, "inches")
  6115. },
  6116. {
  6117. name: "Normal",
  6118. height: math.unit(12, "meters")
  6119. },
  6120. {
  6121. name: "Planetary",
  6122. height: math.unit(0.00929, "AU"),
  6123. default: true
  6124. },
  6125. {
  6126. name: "Universal",
  6127. height: math.unit(20, "gigaparsecs")
  6128. },
  6129. ]
  6130. ))
  6131. characterMakers.push(() => makeCharacter(
  6132. { name: "Katherine" },
  6133. {
  6134. front: {
  6135. height: math.unit(5 + 2 / 12, "feet"),
  6136. weight: math.unit(120, "lbs"),
  6137. name: "Front",
  6138. image: {
  6139. source: "./media/characters/katherine/front.svg",
  6140. extra: 2075 / 1969
  6141. }
  6142. },
  6143. dress: {
  6144. height: math.unit(5 + 2 / 12, "feet"),
  6145. weight: math.unit(120, "lbs"),
  6146. name: "Dress",
  6147. image: {
  6148. source: "./media/characters/katherine/dress.svg",
  6149. extra: 2258 / 2064
  6150. }
  6151. },
  6152. },
  6153. [
  6154. {
  6155. name: "Micro",
  6156. height: math.unit(1, "inches"),
  6157. default: true
  6158. },
  6159. {
  6160. name: "Normal",
  6161. height: math.unit(5 + 2 / 12, "feet")
  6162. },
  6163. {
  6164. name: "Macro",
  6165. height: math.unit(100, "meters")
  6166. },
  6167. {
  6168. name: "Megamacro",
  6169. height: math.unit(80, "miles")
  6170. },
  6171. ]
  6172. ))
  6173. characterMakers.push(() => makeCharacter(
  6174. { name: "Yevis" },
  6175. {
  6176. front: {
  6177. height: math.unit(7 + 8 / 12, "feet"),
  6178. weight: math.unit(250, "lbs"),
  6179. name: "Front",
  6180. image: {
  6181. source: "./media/characters/yevis/front.svg",
  6182. extra: 1938 / 1755
  6183. }
  6184. }
  6185. },
  6186. [
  6187. {
  6188. name: "Mortal",
  6189. height: math.unit(7 + 8 / 12, "feet")
  6190. },
  6191. {
  6192. name: "Battle",
  6193. height: math.unit(25 + 11 / 12, "feet")
  6194. },
  6195. {
  6196. name: "Wrath",
  6197. height: math.unit(1654 + 11 / 12, "feet")
  6198. },
  6199. {
  6200. name: "Planet Destroyer",
  6201. height: math.unit(12000, "miles")
  6202. },
  6203. {
  6204. name: "Galaxy Conqueror",
  6205. height: math.unit(1.45, "zettameters"),
  6206. default: true
  6207. },
  6208. {
  6209. name: "Universal War",
  6210. height: math.unit(184, "gigaparsecs")
  6211. },
  6212. {
  6213. name: "Eternity War",
  6214. height: math.unit(1.98e55, "yottaparsecs")
  6215. },
  6216. ]
  6217. ))
  6218. characterMakers.push(() => makeCharacter(
  6219. { name: "Xavier" },
  6220. {
  6221. front: {
  6222. height: math.unit(5 + 8 / 12, "feet"),
  6223. weight: math.unit(63, "kg"),
  6224. name: "Front",
  6225. image: {
  6226. source: "./media/characters/xavier/front.svg",
  6227. extra: 944 / 883
  6228. }
  6229. },
  6230. frontStretch: {
  6231. height: math.unit(5 + 8 / 12, "feet"),
  6232. weight: math.unit(63, "kg"),
  6233. name: "Stretching",
  6234. image: {
  6235. source: "./media/characters/xavier/front-stretch.svg",
  6236. extra: 962 / 820
  6237. }
  6238. },
  6239. },
  6240. [
  6241. {
  6242. name: "Normal",
  6243. height: math.unit(5 + 8 / 12, "feet")
  6244. },
  6245. {
  6246. name: "Macro",
  6247. height: math.unit(100, "meters"),
  6248. default: true
  6249. },
  6250. {
  6251. name: "McLargeHuge",
  6252. height: math.unit(10, "miles")
  6253. },
  6254. ]
  6255. ))
  6256. characterMakers.push(() => makeCharacter(
  6257. { name: "Joshii" },
  6258. {
  6259. front: {
  6260. height: math.unit(5 + 5 / 12, "feet"),
  6261. weight: math.unit(150, "lb"),
  6262. name: "Front",
  6263. image: {
  6264. source: "./media/characters/joshii/front.svg"
  6265. }
  6266. },
  6267. foot: {
  6268. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6269. name: "Foot",
  6270. image: {
  6271. source: "./media/characters/joshii/foot.svg"
  6272. }
  6273. },
  6274. },
  6275. [
  6276. {
  6277. name: "Micro",
  6278. height: math.unit(2, "inches")
  6279. },
  6280. {
  6281. name: "Normal",
  6282. height: math.unit(5 + 5 / 12, "feet"),
  6283. default: true
  6284. },
  6285. {
  6286. name: "Macro",
  6287. height: math.unit(785, "feet")
  6288. },
  6289. {
  6290. name: "Megamacro",
  6291. height: math.unit(24.5, "miles")
  6292. },
  6293. ]
  6294. ))
  6295. characterMakers.push(() => makeCharacter(
  6296. { name: "Goddess Elizabeth" },
  6297. {
  6298. front: {
  6299. height: math.unit(6, "feet"),
  6300. weight: math.unit(150, "lb"),
  6301. name: "Front",
  6302. image: {
  6303. source: "./media/characters/goddess-elizabeth/front.svg",
  6304. extra: 1800 / 1525,
  6305. bottom: 0.005
  6306. }
  6307. },
  6308. foot: {
  6309. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6310. name: "Foot",
  6311. image: {
  6312. source: "./media/characters/goddess-elizabeth/foot.svg"
  6313. }
  6314. },
  6315. mouth: {
  6316. height: math.unit(6, "feet"),
  6317. name: "Mouth",
  6318. image: {
  6319. source: "./media/characters/goddess-elizabeth/mouth.svg"
  6320. }
  6321. },
  6322. },
  6323. [
  6324. {
  6325. name: "Micro",
  6326. height: math.unit(12, "feet")
  6327. },
  6328. {
  6329. name: "Normal",
  6330. height: math.unit(80, "miles"),
  6331. default: true
  6332. },
  6333. {
  6334. name: "Macro",
  6335. height: math.unit(15000, "parsecs")
  6336. },
  6337. ]
  6338. ))
  6339. characterMakers.push(() => makeCharacter(
  6340. { name: "Kara" },
  6341. {
  6342. front: {
  6343. height: math.unit(5 + 9 / 12, "feet"),
  6344. weight: math.unit(144, "lb"),
  6345. name: "Front",
  6346. image: {
  6347. source: "./media/characters/kara/front.svg"
  6348. }
  6349. },
  6350. feet: {
  6351. height: math.unit(6 / 6.765, "feet"),
  6352. name: "Kara's Feet",
  6353. rename: true,
  6354. image: {
  6355. source: "./media/characters/kara/feet.svg"
  6356. }
  6357. },
  6358. },
  6359. [
  6360. {
  6361. name: "Normal",
  6362. height: math.unit(5 + 9 / 12, "feet")
  6363. },
  6364. {
  6365. name: "Macro",
  6366. height: math.unit(174, "feet"),
  6367. default: true
  6368. },
  6369. ]
  6370. ))
  6371. characterMakers.push(() => makeCharacter(
  6372. { name: "Tyrone" },
  6373. {
  6374. front: {
  6375. height: math.unit(18, "feet"),
  6376. weight: math.unit(4050, "lb"),
  6377. name: "Front",
  6378. image: {
  6379. source: "./media/characters/tyrone/front.svg",
  6380. extra: 2520 / 2402,
  6381. bottom: 0.025
  6382. }
  6383. },
  6384. },
  6385. [
  6386. {
  6387. name: "Normal",
  6388. height: math.unit(18, "feet"),
  6389. default: true
  6390. },
  6391. {
  6392. name: "Macro",
  6393. height: math.unit(300, "feet")
  6394. },
  6395. ]
  6396. ))
  6397. characterMakers.push(() => makeCharacter(
  6398. { name: "Danny" },
  6399. {
  6400. front: {
  6401. height: math.unit(7 + 8 / 12, "feet"),
  6402. weight: math.unit(120, "lb"),
  6403. name: "Front",
  6404. image: {
  6405. source: "./media/characters/danny/front.svg",
  6406. extra: 1490 / 1350
  6407. }
  6408. },
  6409. back: {
  6410. height: math.unit(7 + 8 / 12, "feet"),
  6411. weight: math.unit(120, "lb"),
  6412. name: "Back",
  6413. image: {
  6414. source: "./media/characters/danny/back.svg",
  6415. extra: 1490 / 1350
  6416. }
  6417. },
  6418. },
  6419. [
  6420. {
  6421. name: "Normal",
  6422. height: math.unit(7 + 8 / 12, "feet"),
  6423. default: true
  6424. },
  6425. ]
  6426. ))
  6427. characterMakers.push(() => makeCharacter(
  6428. { name: "Mallow" },
  6429. {
  6430. front: {
  6431. height: math.unit(3.5, "inches"),
  6432. weight: math.unit(19, "grams"),
  6433. name: "Front",
  6434. image: {
  6435. source: "./media/characters/mallow/front.svg",
  6436. extra: 471 / 431
  6437. }
  6438. },
  6439. back: {
  6440. height: math.unit(3.5, "inches"),
  6441. weight: math.unit(19, "grams"),
  6442. name: "Back",
  6443. image: {
  6444. source: "./media/characters/mallow/back.svg",
  6445. extra: 471 / 431
  6446. }
  6447. },
  6448. },
  6449. [
  6450. {
  6451. name: "Normal",
  6452. height: math.unit(3.5, "inches"),
  6453. default: true
  6454. },
  6455. ]
  6456. ))
  6457. characterMakers.push(() => makeCharacter(
  6458. { name: "Starry Aqua" },
  6459. {
  6460. front: {
  6461. height: math.unit(9, "feet"),
  6462. weight: math.unit(230, "kg"),
  6463. name: "Front",
  6464. image: {
  6465. source: "./media/characters/starry-aqua/front.svg"
  6466. }
  6467. },
  6468. back: {
  6469. height: math.unit(9, "feet"),
  6470. weight: math.unit(230, "kg"),
  6471. name: "Back",
  6472. image: {
  6473. source: "./media/characters/starry-aqua/back.svg"
  6474. }
  6475. },
  6476. hand: {
  6477. height: math.unit(9 * 0.1168, "feet"),
  6478. name: "Hand",
  6479. image: {
  6480. source: "./media/characters/starry-aqua/hand.svg"
  6481. }
  6482. },
  6483. foot: {
  6484. height: math.unit(9 * 0.18, "feet"),
  6485. name: "Foot",
  6486. image: {
  6487. source: "./media/characters/starry-aqua/foot.svg"
  6488. }
  6489. }
  6490. },
  6491. [
  6492. {
  6493. name: "Micro",
  6494. height: math.unit(3, "inches")
  6495. },
  6496. {
  6497. name: "Normal",
  6498. height: math.unit(9, "feet")
  6499. },
  6500. {
  6501. name: "Macro",
  6502. height: math.unit(300, "feet"),
  6503. default: true
  6504. },
  6505. {
  6506. name: "Megamacro",
  6507. height: math.unit(3200, "feet")
  6508. }
  6509. ]
  6510. ))
  6511. characterMakers.push(() => makeCharacter(
  6512. { name: "Luka" },
  6513. {
  6514. front: {
  6515. height: math.unit(6, "feet"),
  6516. weight: math.unit(230, "lb"),
  6517. name: "Front",
  6518. image: {
  6519. source: "./media/characters/luka/front.svg",
  6520. extra: 1,
  6521. bottom: 0.025
  6522. }
  6523. },
  6524. },
  6525. [
  6526. {
  6527. name: "Normal",
  6528. height: math.unit(12 + 8 / 12, "feet"),
  6529. default: true
  6530. },
  6531. {
  6532. name: "Minimacro",
  6533. height: math.unit(20, "feet")
  6534. },
  6535. {
  6536. name: "Macro",
  6537. height: math.unit(250, "feet")
  6538. },
  6539. {
  6540. name: "Megamacro",
  6541. height: math.unit(5, "miles")
  6542. },
  6543. {
  6544. name: "Gigamacro",
  6545. height: math.unit(8000, "miles")
  6546. },
  6547. ]
  6548. ))
  6549. characterMakers.push(() => makeCharacter(
  6550. { name: "Natalie Nightring" },
  6551. {
  6552. front: {
  6553. height: math.unit(6, "feet"),
  6554. weight: math.unit(150, "lb"),
  6555. name: "Front",
  6556. image: {
  6557. source: "./media/characters/natalie-nightring/front.svg",
  6558. extra: 1,
  6559. bottom: 0.06
  6560. }
  6561. },
  6562. },
  6563. [
  6564. {
  6565. name: "Uh Oh",
  6566. height: math.unit(0.1, "mm")
  6567. },
  6568. {
  6569. name: "Small",
  6570. height: math.unit(3, "inches")
  6571. },
  6572. {
  6573. name: "Human Scale",
  6574. height: math.unit(6, "feet")
  6575. },
  6576. {
  6577. name: "Librarian",
  6578. height: math.unit(50, "feet"),
  6579. default: true
  6580. },
  6581. {
  6582. name: "Immense",
  6583. height: math.unit(200, "miles")
  6584. },
  6585. ]
  6586. ))
  6587. characterMakers.push(() => makeCharacter(
  6588. { name: "Danni Rosie" },
  6589. {
  6590. front: {
  6591. height: math.unit(6, "feet"),
  6592. weight: math.unit(180, "lbs"),
  6593. name: "Front",
  6594. image: {
  6595. source: "./media/characters/danni-rosie/front.svg",
  6596. extra: 1260 / 1128,
  6597. bottom: 0.022
  6598. }
  6599. },
  6600. },
  6601. [
  6602. {
  6603. name: "Micro",
  6604. height: math.unit(2, "inches"),
  6605. default: true
  6606. },
  6607. ]
  6608. ))
  6609. characterMakers.push(() => makeCharacter(
  6610. { name: "Samantha Kruse" },
  6611. {
  6612. front: {
  6613. height: math.unit(5 + 9 / 12, "feet"),
  6614. weight: math.unit(220, "lb"),
  6615. name: "Front",
  6616. image: {
  6617. source: "./media/characters/samantha-kruse/front.svg",
  6618. extra: (985 / 935),
  6619. bottom: 0.03
  6620. }
  6621. },
  6622. frontUndressed: {
  6623. height: math.unit(5 + 9 / 12, "feet"),
  6624. weight: math.unit(220, "lb"),
  6625. name: "Front (Undressed)",
  6626. image: {
  6627. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6628. extra: (973 / 923),
  6629. bottom: 0.025
  6630. }
  6631. },
  6632. fat: {
  6633. height: math.unit(5 + 9 / 12, "feet"),
  6634. weight: math.unit(900, "lb"),
  6635. name: "Front (Fat)",
  6636. image: {
  6637. source: "./media/characters/samantha-kruse/fat.svg",
  6638. extra: 2688 / 2561
  6639. }
  6640. },
  6641. },
  6642. [
  6643. {
  6644. name: "Normal",
  6645. height: math.unit(5 + 9 / 12, "feet"),
  6646. default: true
  6647. }
  6648. ]
  6649. ))
  6650. characterMakers.push(() => makeCharacter(
  6651. { name: "Amelia Rosie" },
  6652. {
  6653. back: {
  6654. height: math.unit(5 + 4 / 12, "feet"),
  6655. weight: math.unit(4963, "lb"),
  6656. name: "Back",
  6657. image: {
  6658. source: "./media/characters/amelia-rosie/back.svg",
  6659. extra: 1113 / 963,
  6660. bottom: 0.01
  6661. }
  6662. },
  6663. },
  6664. [
  6665. {
  6666. name: "Level 0",
  6667. height: math.unit(5 + 4 / 12, "feet")
  6668. },
  6669. {
  6670. name: "Level 1",
  6671. height: math.unit(164597, "feet"),
  6672. default: true
  6673. },
  6674. {
  6675. name: "Level 2",
  6676. height: math.unit(956243, "miles")
  6677. },
  6678. {
  6679. name: "Level 3",
  6680. height: math.unit(29421709423, "miles")
  6681. },
  6682. {
  6683. name: "Level 4",
  6684. height: math.unit(154, "lightyears")
  6685. },
  6686. {
  6687. name: "Level 5",
  6688. height: math.unit(4738272, "lightyears")
  6689. },
  6690. {
  6691. name: "Level 6",
  6692. height: math.unit(145787152896, "lightyears")
  6693. },
  6694. ]
  6695. ))
  6696. characterMakers.push(() => makeCharacter(
  6697. { name: "Rook Kitara" },
  6698. {
  6699. front: {
  6700. height: math.unit(5 + 11 / 12, "feet"),
  6701. weight: math.unit(65, "kg"),
  6702. name: "Front",
  6703. image: {
  6704. source: "./media/characters/rook-kitara/front.svg",
  6705. extra: 1347 / 1274,
  6706. bottom: 0.005
  6707. }
  6708. },
  6709. },
  6710. [
  6711. {
  6712. name: "Totally Unfair",
  6713. height: math.unit(1.8, "mm")
  6714. },
  6715. {
  6716. name: "Lap Rookie",
  6717. height: math.unit(1.4, "feet")
  6718. },
  6719. {
  6720. name: "Normal",
  6721. height: math.unit(5 + 11 / 12, "feet"),
  6722. default: true
  6723. },
  6724. {
  6725. name: "How Did This Happen",
  6726. height: math.unit(80, "miles")
  6727. }
  6728. ]
  6729. ))
  6730. characterMakers.push(() => makeCharacter(
  6731. { name: "Pisces" },
  6732. {
  6733. front: {
  6734. height: math.unit(7, "feet"),
  6735. weight: math.unit(300, "lb"),
  6736. name: "Front",
  6737. image: {
  6738. source: "./media/characters/pisces/front.svg",
  6739. extra: 2255 / 2115,
  6740. bottom: 0.03
  6741. }
  6742. },
  6743. back: {
  6744. height: math.unit(7, "feet"),
  6745. weight: math.unit(300, "lb"),
  6746. name: "Back",
  6747. image: {
  6748. source: "./media/characters/pisces/back.svg",
  6749. extra: 2146 / 2055,
  6750. bottom: 0.04
  6751. }
  6752. },
  6753. },
  6754. [
  6755. {
  6756. name: "Normal",
  6757. height: math.unit(7, "feet"),
  6758. default: true
  6759. },
  6760. {
  6761. name: "Swimming Pool",
  6762. height: math.unit(12.2, "meters")
  6763. },
  6764. {
  6765. name: "Olympic Swimming Pool",
  6766. height: math.unit(56.3, "meters")
  6767. },
  6768. {
  6769. name: "Lake Superior",
  6770. height: math.unit(93900, "meters")
  6771. },
  6772. {
  6773. name: "Mediterranean Sea",
  6774. height: math.unit(644457, "meters")
  6775. },
  6776. {
  6777. name: "World's Oceans",
  6778. height: math.unit(4567491, "meters")
  6779. },
  6780. ]
  6781. ))
  6782. characterMakers.push(() => makeCharacter(
  6783. { name: "Zelas" },
  6784. {
  6785. front: {
  6786. height: math.unit(2.3, "meters"),
  6787. weight: math.unit(120, "kg"),
  6788. name: "Front",
  6789. image: {
  6790. source: "./media/characters/zelas/front.svg"
  6791. }
  6792. },
  6793. side: {
  6794. height: math.unit(2.3, "meters"),
  6795. weight: math.unit(120, "kg"),
  6796. name: "Side",
  6797. image: {
  6798. source: "./media/characters/zelas/side.svg"
  6799. }
  6800. },
  6801. back: {
  6802. height: math.unit(2.3, "meters"),
  6803. weight: math.unit(120, "kg"),
  6804. name: "Back",
  6805. image: {
  6806. source: "./media/characters/zelas/back.svg"
  6807. }
  6808. },
  6809. foot: {
  6810. height: math.unit(1.116, "feet"),
  6811. name: "Foot",
  6812. image: {
  6813. source: "./media/characters/zelas/foot.svg"
  6814. }
  6815. },
  6816. },
  6817. [
  6818. {
  6819. name: "Normal",
  6820. height: math.unit(2.3, "meters")
  6821. },
  6822. {
  6823. name: "Macro",
  6824. height: math.unit(30, "meters"),
  6825. default: true
  6826. },
  6827. ]
  6828. ))
  6829. characterMakers.push(() => makeCharacter(
  6830. { name: "Talbot" },
  6831. {
  6832. front: {
  6833. height: math.unit(1, "inch"),
  6834. weight: math.unit(0.21, "grams"),
  6835. name: "Front",
  6836. image: {
  6837. source: "./media/characters/talbot/front.svg",
  6838. extra: 594 / 544
  6839. }
  6840. },
  6841. },
  6842. [
  6843. {
  6844. name: "Micro",
  6845. height: math.unit(1, "inch"),
  6846. default: true
  6847. },
  6848. ]
  6849. ))
  6850. characterMakers.push(() => makeCharacter(
  6851. { name: "Fliss" },
  6852. {
  6853. front: {
  6854. height: math.unit(3 + 3 / 12, "feet"),
  6855. weight: math.unit(51.8, "lb"),
  6856. name: "Front",
  6857. image: {
  6858. source: "./media/characters/fliss/front.svg",
  6859. extra: 840 / 640
  6860. }
  6861. },
  6862. },
  6863. [
  6864. {
  6865. name: "Teeny Tiny",
  6866. height: math.unit(1, "mm")
  6867. },
  6868. {
  6869. name: "Small",
  6870. height: math.unit(1, "inch"),
  6871. default: true
  6872. },
  6873. {
  6874. name: "Standard Sylveon",
  6875. height: math.unit(3 + 3 / 12, "feet")
  6876. },
  6877. {
  6878. name: "Large Nuisance",
  6879. height: math.unit(33, "feet")
  6880. },
  6881. {
  6882. name: "City Filler",
  6883. height: math.unit(3000, "feet")
  6884. },
  6885. {
  6886. name: "New Horizon",
  6887. height: math.unit(6000, "miles")
  6888. },
  6889. ]
  6890. ))
  6891. characterMakers.push(() => makeCharacter(
  6892. { name: "Fleta" },
  6893. {
  6894. front: {
  6895. height: math.unit(5, "cm"),
  6896. weight: math.unit(1.94, "g"),
  6897. name: "Front",
  6898. image: {
  6899. source: "./media/characters/fleta/front.svg",
  6900. extra: 835 / 803
  6901. }
  6902. },
  6903. back: {
  6904. height: math.unit(5, "cm"),
  6905. weight: math.unit(1.94, "g"),
  6906. name: "Back",
  6907. image: {
  6908. source: "./media/characters/fleta/back.svg",
  6909. extra: 835 / 803
  6910. }
  6911. },
  6912. },
  6913. [
  6914. {
  6915. name: "Micro",
  6916. height: math.unit(5, "cm"),
  6917. default: true
  6918. },
  6919. ]
  6920. ))
  6921. characterMakers.push(() => makeCharacter(
  6922. { name: "Dominic" },
  6923. {
  6924. front: {
  6925. height: math.unit(6, "feet"),
  6926. weight: math.unit(225, "lb"),
  6927. name: "Front",
  6928. image: {
  6929. source: "./media/characters/dominic/front.svg",
  6930. extra: 1770 / 1620,
  6931. bottom: 0.025
  6932. }
  6933. },
  6934. back: {
  6935. height: math.unit(6, "feet"),
  6936. weight: math.unit(225, "lb"),
  6937. name: "Back",
  6938. image: {
  6939. source: "./media/characters/dominic/back.svg",
  6940. extra: 1745 / 1620,
  6941. bottom: 0.065
  6942. }
  6943. },
  6944. },
  6945. [
  6946. {
  6947. name: "Nano",
  6948. height: math.unit(0.1, "mm")
  6949. },
  6950. {
  6951. name: "Micro-",
  6952. height: math.unit(1, "mm")
  6953. },
  6954. {
  6955. name: "Micro",
  6956. height: math.unit(4, "inches")
  6957. },
  6958. {
  6959. name: "Normal",
  6960. height: math.unit(6 + 4 / 12, "feet"),
  6961. default: true
  6962. },
  6963. {
  6964. name: "Macro",
  6965. height: math.unit(115, "feet")
  6966. },
  6967. {
  6968. name: "Macro+",
  6969. height: math.unit(955, "feet")
  6970. },
  6971. {
  6972. name: "Megamacro",
  6973. height: math.unit(8990, "feet")
  6974. },
  6975. {
  6976. name: "Gigmacro",
  6977. height: math.unit(9310, "miles")
  6978. },
  6979. {
  6980. name: "Teramacro",
  6981. height: math.unit(1567005010, "miles")
  6982. },
  6983. {
  6984. name: "Examacro",
  6985. height: math.unit(1425, "parsecs")
  6986. },
  6987. ]
  6988. ))
  6989. characterMakers.push(() => makeCharacter(
  6990. { name: "Major Colonel" },
  6991. {
  6992. front: {
  6993. height: math.unit(400, "feet"),
  6994. weight: math.unit(44444444, "lb"),
  6995. name: "Front",
  6996. image: {
  6997. source: "./media/characters/major-colonel/front.svg"
  6998. }
  6999. },
  7000. back: {
  7001. height: math.unit(400, "feet"),
  7002. weight: math.unit(44444444, "lb"),
  7003. name: "Back",
  7004. image: {
  7005. source: "./media/characters/major-colonel/back.svg"
  7006. }
  7007. },
  7008. },
  7009. [
  7010. {
  7011. name: "Macro",
  7012. height: math.unit(400, "feet"),
  7013. default: true
  7014. },
  7015. ]
  7016. ))
  7017. characterMakers.push(() => makeCharacter(
  7018. { name: "Axel Lycan" },
  7019. {
  7020. front: {
  7021. height: math.unit(6, "feet"),
  7022. weight: math.unit(120, "lb"),
  7023. name: "Front",
  7024. image: {
  7025. source: "./media/characters/axel-lycan/front.svg",
  7026. extra: 1,
  7027. bottom: 0.08
  7028. }
  7029. },
  7030. },
  7031. [
  7032. {
  7033. name: "Macro",
  7034. height: math.unit(1, "km"),
  7035. default: true
  7036. },
  7037. ]
  7038. ))
  7039. characterMakers.push(() => makeCharacter(
  7040. { name: "Vanrel (Hyena)" },
  7041. {
  7042. front: {
  7043. height: math.unit(5 + 9 / 12, "feet"),
  7044. weight: math.unit(175, "lb"),
  7045. name: "Front",
  7046. image: {
  7047. source: "./media/characters/vanrel-hyena/front.svg",
  7048. extra: 1086 / 1010,
  7049. bottom: 0.04
  7050. }
  7051. },
  7052. },
  7053. [
  7054. {
  7055. name: "Normal",
  7056. height: math.unit(5 + 9 / 12, "feet"),
  7057. default: true
  7058. },
  7059. ]
  7060. ))
  7061. characterMakers.push(() => makeCharacter(
  7062. { name: "Abbott Absol" },
  7063. {
  7064. front: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(103, "lb"),
  7067. name: "Front",
  7068. image: {
  7069. source: "./media/characters/abbott-absol/front.svg",
  7070. extra: 2010 / 1842
  7071. }
  7072. },
  7073. },
  7074. [
  7075. {
  7076. name: "Megamicro",
  7077. height: math.unit(0.1, "mm")
  7078. },
  7079. {
  7080. name: "Micro",
  7081. height: math.unit(1, "inch")
  7082. },
  7083. {
  7084. name: "Normal",
  7085. height: math.unit(6, "feet"),
  7086. default: true
  7087. },
  7088. ]
  7089. ))
  7090. characterMakers.push(() => makeCharacter(
  7091. { name: "Hector" },
  7092. {
  7093. front: {
  7094. height: math.unit(6, "feet"),
  7095. weight: math.unit(264, "lb"),
  7096. name: "Front",
  7097. image: {
  7098. source: "./media/characters/hector/front.svg",
  7099. extra: 2280 / 2130,
  7100. bottom: 0.07
  7101. }
  7102. },
  7103. },
  7104. [
  7105. {
  7106. name: "Normal",
  7107. height: math.unit(12.25, "foot"),
  7108. default: true
  7109. },
  7110. {
  7111. name: "Macro",
  7112. height: math.unit(160, "feet")
  7113. },
  7114. ]
  7115. ))
  7116. characterMakers.push(() => makeCharacter(
  7117. { name: "Sal" },
  7118. {
  7119. front: {
  7120. height: math.unit(6, "feet"),
  7121. weight: math.unit(150, "lb"),
  7122. name: "Front",
  7123. image: {
  7124. source: "./media/characters/sal/front.svg",
  7125. extra: 1846 / 1699,
  7126. bottom: 0.04
  7127. }
  7128. },
  7129. },
  7130. [
  7131. {
  7132. name: "Megamacro",
  7133. height: math.unit(10, "miles"),
  7134. default: true
  7135. },
  7136. ]
  7137. ))
  7138. characterMakers.push(() => makeCharacter(
  7139. { name: "Ranger" },
  7140. {
  7141. front: {
  7142. height: math.unit(3, "meters"),
  7143. weight: math.unit(450, "kg"),
  7144. name: "front",
  7145. image: {
  7146. source: "./media/characters/ranger/front.svg",
  7147. extra: 2401 / 2243,
  7148. bottom: 0.05
  7149. }
  7150. },
  7151. },
  7152. [
  7153. {
  7154. name: "Normal",
  7155. height: math.unit(3, "meters"),
  7156. default: true
  7157. },
  7158. ]
  7159. ))
  7160. characterMakers.push(() => makeCharacter(
  7161. { name: "Theresa" },
  7162. {
  7163. front: {
  7164. height: math.unit(14, "feet"),
  7165. weight: math.unit(800, "kg"),
  7166. name: "Front",
  7167. image: {
  7168. source: "./media/characters/theresa/front.svg",
  7169. extra: 3575 / 3346,
  7170. bottom: 0.03
  7171. }
  7172. },
  7173. },
  7174. [
  7175. {
  7176. name: "Normal",
  7177. height: math.unit(14, "feet"),
  7178. default: true
  7179. },
  7180. ]
  7181. ))
  7182. characterMakers.push(() => makeCharacter(
  7183. { name: "Ine" },
  7184. {
  7185. front: {
  7186. height: math.unit(6, "feet"),
  7187. weight: math.unit(3, "kg"),
  7188. name: "Front",
  7189. image: {
  7190. source: "./media/characters/ine/front.svg",
  7191. extra: 678 / 539,
  7192. bottom: 0.023
  7193. }
  7194. },
  7195. },
  7196. [
  7197. {
  7198. name: "Normal",
  7199. height: math.unit(2.265, "feet"),
  7200. default: true
  7201. },
  7202. ]
  7203. ))
  7204. characterMakers.push(() => makeCharacter(
  7205. { name: "Vial" },
  7206. {
  7207. front: {
  7208. height: math.unit(5, "feet"),
  7209. weight: math.unit(30, "kg"),
  7210. name: "Front",
  7211. image: {
  7212. source: "./media/characters/vial/front.svg",
  7213. extra: 1365 / 1277,
  7214. bottom: 0.04
  7215. }
  7216. },
  7217. },
  7218. [
  7219. {
  7220. name: "Normal",
  7221. height: math.unit(5, "feet"),
  7222. default: true
  7223. },
  7224. ]
  7225. ))
  7226. characterMakers.push(() => makeCharacter(
  7227. { name: "Rovoska" },
  7228. {
  7229. side: {
  7230. height: math.unit(3.4, "meters"),
  7231. weight: math.unit(1000, "lb"),
  7232. name: "Side",
  7233. image: {
  7234. source: "./media/characters/rovoska/side.svg",
  7235. extra: 4403 / 1515
  7236. }
  7237. },
  7238. },
  7239. [
  7240. {
  7241. name: "Normal",
  7242. height: math.unit(3.4, "meters"),
  7243. default: true
  7244. },
  7245. ]
  7246. ))
  7247. characterMakers.push(() => makeCharacter(
  7248. { name: "Gunner Rotthbauer" },
  7249. {
  7250. front: {
  7251. height: math.unit(8, "feet"),
  7252. weight: math.unit(315, "lb"),
  7253. name: "Front",
  7254. image: {
  7255. source: "./media/characters/gunner-rotthbauer/front.svg"
  7256. }
  7257. },
  7258. back: {
  7259. height: math.unit(8, "feet"),
  7260. weight: math.unit(315, "lb"),
  7261. name: "Back",
  7262. image: {
  7263. source: "./media/characters/gunner-rotthbauer/back.svg"
  7264. }
  7265. },
  7266. },
  7267. [
  7268. {
  7269. name: "Micro",
  7270. height: math.unit(3.5, "inches")
  7271. },
  7272. {
  7273. name: "Normal",
  7274. height: math.unit(8, "feet"),
  7275. default: true
  7276. },
  7277. {
  7278. name: "Macro",
  7279. height: math.unit(250, "feet")
  7280. },
  7281. {
  7282. name: "Megamacro",
  7283. height: math.unit(1, "AU")
  7284. },
  7285. ]
  7286. ))
  7287. characterMakers.push(() => makeCharacter(
  7288. { name: "Allatia" },
  7289. {
  7290. front: {
  7291. height: math.unit(5 + 5 / 12, "feet"),
  7292. weight: math.unit(140, "lb"),
  7293. name: "Front",
  7294. image: {
  7295. source: "./media/characters/allatia/front.svg",
  7296. extra: 1227 / 1180,
  7297. bottom: 0.027
  7298. }
  7299. },
  7300. },
  7301. [
  7302. {
  7303. name: "Normal",
  7304. height: math.unit(5 + 5 / 12, "feet")
  7305. },
  7306. {
  7307. name: "Macro",
  7308. height: math.unit(250, "feet"),
  7309. default: true
  7310. },
  7311. {
  7312. name: "Megamacro",
  7313. height: math.unit(8, "miles")
  7314. }
  7315. ]
  7316. ))
  7317. characterMakers.push(() => makeCharacter(
  7318. { name: "Tene" },
  7319. {
  7320. front: {
  7321. height: math.unit(6, "feet"),
  7322. weight: math.unit(120, "lb"),
  7323. name: "Front",
  7324. image: {
  7325. source: "./media/characters/tene/front.svg",
  7326. extra: 1728 / 1578,
  7327. bottom: 0.022
  7328. }
  7329. },
  7330. stomping: {
  7331. height: math.unit(2.025, "meters"),
  7332. weight: math.unit(120, "lb"),
  7333. name: "Stomping",
  7334. image: {
  7335. source: "./media/characters/tene/stomping.svg",
  7336. extra: 938 / 873,
  7337. bottom: 0.01
  7338. }
  7339. },
  7340. sitting: {
  7341. height: math.unit(1, "meter"),
  7342. weight: math.unit(120, "lb"),
  7343. name: "Sitting",
  7344. image: {
  7345. source: "./media/characters/tene/sitting.svg",
  7346. extra: 437 / 415,
  7347. bottom: 0.1
  7348. }
  7349. },
  7350. feral: {
  7351. height: math.unit(3.9, "feet"),
  7352. weight: math.unit(250, "lb"),
  7353. name: "Feral",
  7354. image: {
  7355. source: "./media/characters/tene/feral.svg",
  7356. extra: 717 / 458,
  7357. bottom: 0.179
  7358. }
  7359. },
  7360. },
  7361. [
  7362. {
  7363. name: "Normal",
  7364. height: math.unit(6, "feet")
  7365. },
  7366. {
  7367. name: "Macro",
  7368. height: math.unit(300, "feet"),
  7369. default: true
  7370. },
  7371. {
  7372. name: "Megamacro",
  7373. height: math.unit(5, "miles")
  7374. },
  7375. ]
  7376. ))
  7377. characterMakers.push(() => makeCharacter(
  7378. { name: "Evander" },
  7379. {
  7380. side: {
  7381. height: math.unit(6, "feet"),
  7382. name: "Side",
  7383. image: {
  7384. source: "./media/characters/evander/side.svg",
  7385. extra: 877 / 477
  7386. }
  7387. },
  7388. },
  7389. [
  7390. {
  7391. name: "Normal",
  7392. height: math.unit(0.83, "meters"),
  7393. default: true
  7394. },
  7395. ]
  7396. ))
  7397. characterMakers.push(() => makeCharacter(
  7398. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7399. {
  7400. front: {
  7401. height: math.unit(12, "feet"),
  7402. weight: math.unit(1000, "lb"),
  7403. name: "Front",
  7404. image: {
  7405. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7406. extra: 1762 / 1611
  7407. }
  7408. },
  7409. back: {
  7410. height: math.unit(12, "feet"),
  7411. weight: math.unit(1000, "lb"),
  7412. name: "Back",
  7413. image: {
  7414. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7415. extra: 1762 / 1611
  7416. }
  7417. },
  7418. },
  7419. [
  7420. {
  7421. name: "Normal",
  7422. height: math.unit(12, "feet"),
  7423. default: true
  7424. },
  7425. {
  7426. name: "Kaiju",
  7427. height: math.unit(150, "feet")
  7428. },
  7429. ]
  7430. ))
  7431. characterMakers.push(() => makeCharacter(
  7432. { name: "Zero Alurus" },
  7433. {
  7434. front: {
  7435. height: math.unit(6, "feet"),
  7436. weight: math.unit(150, "lb"),
  7437. name: "Front",
  7438. image: {
  7439. source: "./media/characters/zero-alurus/front.svg"
  7440. }
  7441. },
  7442. back: {
  7443. height: math.unit(6, "feet"),
  7444. weight: math.unit(150, "lb"),
  7445. name: "Back",
  7446. image: {
  7447. source: "./media/characters/zero-alurus/back.svg"
  7448. }
  7449. },
  7450. },
  7451. [
  7452. {
  7453. name: "Normal",
  7454. height: math.unit(5 + 10 / 12, "feet")
  7455. },
  7456. {
  7457. name: "Macro",
  7458. height: math.unit(60, "feet"),
  7459. default: true
  7460. },
  7461. {
  7462. name: "Macro+",
  7463. height: math.unit(450, "feet")
  7464. },
  7465. ]
  7466. ))
  7467. characterMakers.push(() => makeCharacter(
  7468. { name: "Mega Shi" },
  7469. {
  7470. front: {
  7471. height: math.unit(6, "feet"),
  7472. weight: math.unit(200, "lb"),
  7473. name: "Front",
  7474. image: {
  7475. source: "./media/characters/mega-shi/front.svg",
  7476. extra: 1279 / 1250,
  7477. bottom: 0.02
  7478. }
  7479. },
  7480. back: {
  7481. height: math.unit(6, "feet"),
  7482. weight: math.unit(200, "lb"),
  7483. name: "Back",
  7484. image: {
  7485. source: "./media/characters/mega-shi/back.svg",
  7486. extra: 1279 / 1250,
  7487. bottom: 0.02
  7488. }
  7489. },
  7490. },
  7491. [
  7492. {
  7493. name: "Micro",
  7494. height: math.unit(16 + 6 / 12, "feet")
  7495. },
  7496. {
  7497. name: "Third Dimension",
  7498. height: math.unit(40, "meters")
  7499. },
  7500. {
  7501. name: "Normal",
  7502. height: math.unit(660, "feet"),
  7503. default: true
  7504. },
  7505. {
  7506. name: "Megamacro",
  7507. height: math.unit(10, "miles")
  7508. },
  7509. {
  7510. name: "Planetary Launch",
  7511. height: math.unit(500, "miles")
  7512. },
  7513. {
  7514. name: "Interstellar",
  7515. height: math.unit(1e9, "miles")
  7516. },
  7517. {
  7518. name: "Leaving the Universe",
  7519. height: math.unit(1, "gigaparsec")
  7520. },
  7521. {
  7522. name: "Travelling Universes",
  7523. height: math.unit(30e15, "parsecs")
  7524. },
  7525. ]
  7526. ))
  7527. characterMakers.push(() => makeCharacter(
  7528. { name: "Odyssey" },
  7529. {
  7530. front: {
  7531. height: math.unit(6, "feet"),
  7532. weight: math.unit(150, "lb"),
  7533. name: "Front",
  7534. image: {
  7535. source: "./media/characters/odyssey/front.svg",
  7536. extra: 1782 / 1582,
  7537. bottom: 0.01
  7538. }
  7539. },
  7540. side: {
  7541. height: math.unit(5.7, "feet"),
  7542. weight: math.unit(140, "lb"),
  7543. name: "Side",
  7544. image: {
  7545. source: "./media/characters/odyssey/side.svg",
  7546. extra: 6462 / 5700
  7547. }
  7548. },
  7549. },
  7550. [
  7551. {
  7552. name: "Normal",
  7553. height: math.unit(5 + 4 / 12, "feet")
  7554. },
  7555. {
  7556. name: "Macro",
  7557. height: math.unit(1, "km")
  7558. },
  7559. {
  7560. name: "Megamacro",
  7561. height: math.unit(3000, "km")
  7562. },
  7563. {
  7564. name: "Gigamacro",
  7565. height: math.unit(1, "AU"),
  7566. default: true
  7567. },
  7568. {
  7569. name: "Omniversal",
  7570. height: math.unit(100e14, "lightyears")
  7571. },
  7572. ]
  7573. ))
  7574. characterMakers.push(() => makeCharacter(
  7575. { name: "Mekuto" },
  7576. {
  7577. front: {
  7578. height: math.unit(6, "feet"),
  7579. weight: math.unit(300, "lb"),
  7580. name: "Front",
  7581. image: {
  7582. source: "./media/characters/mekuto/front.svg",
  7583. extra: 921 / 832,
  7584. bottom: 0.03
  7585. }
  7586. },
  7587. hand: {
  7588. height: math.unit(6 / 10.24, "feet"),
  7589. name: "Hand",
  7590. image: {
  7591. source: "./media/characters/mekuto/hand.svg"
  7592. }
  7593. },
  7594. foot: {
  7595. height: math.unit(6 / 5.05, "feet"),
  7596. name: "Foot",
  7597. image: {
  7598. source: "./media/characters/mekuto/foot.svg"
  7599. }
  7600. },
  7601. },
  7602. [
  7603. {
  7604. name: "Minimicro",
  7605. height: math.unit(0.2, "inches")
  7606. },
  7607. {
  7608. name: "Micro",
  7609. height: math.unit(1.5, "inches")
  7610. },
  7611. {
  7612. name: "Normal",
  7613. height: math.unit(5 + 11 / 12, "feet"),
  7614. default: true
  7615. },
  7616. {
  7617. name: "Minimacro",
  7618. height: math.unit(17 + 9 / 12, "feet")
  7619. },
  7620. {
  7621. name: "Macro",
  7622. height: math.unit(177.5, "feet")
  7623. },
  7624. {
  7625. name: "Megamacro",
  7626. height: math.unit(152, "miles")
  7627. },
  7628. ]
  7629. ))
  7630. characterMakers.push(() => makeCharacter(
  7631. { name: "Dafydd Tomos" },
  7632. {
  7633. front: {
  7634. height: math.unit(6.5, "inches"),
  7635. weight: math.unit(13, "oz"),
  7636. name: "Front",
  7637. image: {
  7638. source: "./media/characters/dafydd-tomos/front.svg",
  7639. extra: 2990 / 2603,
  7640. bottom: 0.03
  7641. }
  7642. },
  7643. },
  7644. [
  7645. {
  7646. name: "Micro",
  7647. height: math.unit(6.5, "inches"),
  7648. default: true
  7649. },
  7650. ]
  7651. ))
  7652. characterMakers.push(() => makeCharacter(
  7653. { name: "Splinter" },
  7654. {
  7655. front: {
  7656. height: math.unit(6, "feet"),
  7657. weight: math.unit(150, "lb"),
  7658. name: "Front",
  7659. image: {
  7660. source: "./media/characters/splinter/front.svg",
  7661. extra: 2990 / 2882,
  7662. bottom: 0.04
  7663. }
  7664. },
  7665. back: {
  7666. height: math.unit(6, "feet"),
  7667. weight: math.unit(150, "lb"),
  7668. name: "Back",
  7669. image: {
  7670. source: "./media/characters/splinter/back.svg",
  7671. extra: 2990 / 2882,
  7672. bottom: 0.04
  7673. }
  7674. },
  7675. },
  7676. [
  7677. {
  7678. name: "Normal",
  7679. height: math.unit(6, "feet")
  7680. },
  7681. {
  7682. name: "Macro",
  7683. height: math.unit(230, "meters"),
  7684. default: true
  7685. },
  7686. ]
  7687. ))
  7688. characterMakers.push(() => makeCharacter(
  7689. { name: "SnowGabumon" },
  7690. {
  7691. front: {
  7692. height: math.unit(4 + 10 / 12, "feet"),
  7693. weight: math.unit(480, "lb"),
  7694. name: "Front",
  7695. image: {
  7696. source: "./media/characters/snow-gabumon/front.svg",
  7697. extra: 1140 / 963,
  7698. bottom: 0.058
  7699. }
  7700. },
  7701. back: {
  7702. height: math.unit(4 + 10 / 12, "feet"),
  7703. weight: math.unit(480, "lb"),
  7704. name: "Back",
  7705. image: {
  7706. source: "./media/characters/snow-gabumon/back.svg",
  7707. extra: 1115 / 962,
  7708. bottom: 0.041
  7709. }
  7710. },
  7711. frontUndresed: {
  7712. height: math.unit(4 + 10 / 12, "feet"),
  7713. weight: math.unit(480, "lb"),
  7714. name: "Front (Undressed)",
  7715. image: {
  7716. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7717. extra: 1061 / 960,
  7718. bottom: 0.045
  7719. }
  7720. },
  7721. },
  7722. [
  7723. {
  7724. name: "Micro",
  7725. height: math.unit(1, "inch")
  7726. },
  7727. {
  7728. name: "Normal",
  7729. height: math.unit(4 + 10 / 12, "feet"),
  7730. default: true
  7731. },
  7732. {
  7733. name: "Macro",
  7734. height: math.unit(200, "feet")
  7735. },
  7736. {
  7737. name: "Megamacro",
  7738. height: math.unit(120, "miles")
  7739. },
  7740. {
  7741. name: "Gigamacro",
  7742. height: math.unit(9800, "miles")
  7743. },
  7744. ]
  7745. ))
  7746. characterMakers.push(() => makeCharacter(
  7747. { name: "Moody" },
  7748. {
  7749. front: {
  7750. height: math.unit(1.7, "meters"),
  7751. weight: math.unit(140, "lb"),
  7752. name: "Front",
  7753. image: {
  7754. source: "./media/characters/moody/front.svg",
  7755. extra: 3226 / 3007,
  7756. bottom: 0.087
  7757. }
  7758. },
  7759. },
  7760. [
  7761. {
  7762. name: "Micro",
  7763. height: math.unit(1, "mm")
  7764. },
  7765. {
  7766. name: "Normal",
  7767. height: math.unit(1.7, "meters"),
  7768. default: true
  7769. },
  7770. {
  7771. name: "Macro",
  7772. height: math.unit(80, "meters")
  7773. },
  7774. {
  7775. name: "Macro+",
  7776. height: math.unit(500, "meters")
  7777. },
  7778. ]
  7779. ))
  7780. characterMakers.push(() => makeCharacter(
  7781. { name: "Zyas" },
  7782. {
  7783. front: {
  7784. height: math.unit(6, "feet"),
  7785. weight: math.unit(150, "lb"),
  7786. name: "Front",
  7787. image: {
  7788. source: "./media/characters/zyas/front.svg",
  7789. extra: 1180 / 1120,
  7790. bottom: 0.045
  7791. }
  7792. },
  7793. },
  7794. [
  7795. {
  7796. name: "Normal",
  7797. height: math.unit(10, "feet"),
  7798. default: true
  7799. },
  7800. {
  7801. name: "Macro",
  7802. height: math.unit(500, "feet")
  7803. },
  7804. {
  7805. name: "Megamacro",
  7806. height: math.unit(5, "miles")
  7807. },
  7808. {
  7809. name: "Teramacro",
  7810. height: math.unit(150000, "miles")
  7811. },
  7812. ]
  7813. ))
  7814. characterMakers.push(() => makeCharacter(
  7815. { name: "Cuon" },
  7816. {
  7817. front: {
  7818. height: math.unit(6, "feet"),
  7819. weight: math.unit(150, "lb"),
  7820. name: "Front",
  7821. image: {
  7822. source: "./media/characters/cuon/front.svg",
  7823. extra: 1390 / 1320,
  7824. bottom: 0.008
  7825. }
  7826. },
  7827. },
  7828. [
  7829. {
  7830. name: "Micro",
  7831. height: math.unit(3, "inches")
  7832. },
  7833. {
  7834. name: "Normal",
  7835. height: math.unit(18 + 9 / 12, "feet"),
  7836. default: true
  7837. },
  7838. {
  7839. name: "Macro",
  7840. height: math.unit(360, "feet")
  7841. },
  7842. {
  7843. name: "Megamacro",
  7844. height: math.unit(360, "miles")
  7845. },
  7846. ]
  7847. ))
  7848. characterMakers.push(() => makeCharacter(
  7849. { name: "Nyanuxk" },
  7850. {
  7851. front: {
  7852. height: math.unit(2.4, "meters"),
  7853. weight: math.unit(70, "kg"),
  7854. name: "Front",
  7855. image: {
  7856. source: "./media/characters/nyanuxk/front.svg",
  7857. extra: 1172 / 1084,
  7858. bottom: 0.065
  7859. }
  7860. },
  7861. side: {
  7862. height: math.unit(2.4, "meters"),
  7863. weight: math.unit(70, "kg"),
  7864. name: "Side",
  7865. image: {
  7866. source: "./media/characters/nyanuxk/side.svg",
  7867. extra: 1190 / 1132,
  7868. bottom: 0.007
  7869. }
  7870. },
  7871. back: {
  7872. height: math.unit(2.4, "meters"),
  7873. weight: math.unit(70, "kg"),
  7874. name: "Back",
  7875. image: {
  7876. source: "./media/characters/nyanuxk/back.svg",
  7877. extra: 1200 / 1141,
  7878. bottom: 0.015
  7879. }
  7880. },
  7881. foot: {
  7882. height: math.unit(0.52, "meters"),
  7883. name: "Foot",
  7884. image: {
  7885. source: "./media/characters/nyanuxk/foot.svg"
  7886. }
  7887. },
  7888. },
  7889. [
  7890. {
  7891. name: "Micro",
  7892. height: math.unit(2, "cm")
  7893. },
  7894. {
  7895. name: "Normal",
  7896. height: math.unit(2.4, "meters"),
  7897. default: true
  7898. },
  7899. {
  7900. name: "Smaller Macro",
  7901. height: math.unit(120, "meters")
  7902. },
  7903. {
  7904. name: "Bigger Macro",
  7905. height: math.unit(1.2, "km")
  7906. },
  7907. {
  7908. name: "Megamacro",
  7909. height: math.unit(15, "kilometers")
  7910. },
  7911. {
  7912. name: "Gigamacro",
  7913. height: math.unit(2000, "km")
  7914. },
  7915. {
  7916. name: "Teramacro",
  7917. height: math.unit(500000, "km")
  7918. },
  7919. ]
  7920. ))
  7921. characterMakers.push(() => makeCharacter(
  7922. { name: "Ailbhe" },
  7923. {
  7924. side: {
  7925. height: math.unit(6, "feet"),
  7926. name: "Side",
  7927. image: {
  7928. source: "./media/characters/ailbhe/side.svg",
  7929. extra: 757 / 464,
  7930. bottom: 0.041
  7931. }
  7932. },
  7933. },
  7934. [
  7935. {
  7936. name: "Normal",
  7937. height: math.unit(1.07, "meters"),
  7938. default: true
  7939. },
  7940. ]
  7941. ))
  7942. characterMakers.push(() => makeCharacter(
  7943. { name: "Zevulfius" },
  7944. {
  7945. front: {
  7946. height: math.unit(6, "feet"),
  7947. weight: math.unit(120, "kg"),
  7948. name: "Front",
  7949. image: {
  7950. source: "./media/characters/zevulfius/front.svg",
  7951. extra: 965 / 903
  7952. }
  7953. },
  7954. side: {
  7955. height: math.unit(6, "feet"),
  7956. weight: math.unit(120, "kg"),
  7957. name: "Side",
  7958. image: {
  7959. source: "./media/characters/zevulfius/side.svg",
  7960. extra: 939 / 900
  7961. }
  7962. },
  7963. back: {
  7964. height: math.unit(6, "feet"),
  7965. weight: math.unit(120, "kg"),
  7966. name: "Back",
  7967. image: {
  7968. source: "./media/characters/zevulfius/back.svg",
  7969. extra: 918 / 854,
  7970. bottom: 0.005
  7971. }
  7972. },
  7973. foot: {
  7974. height: math.unit(6 / 3.72, "feet"),
  7975. name: "Foot",
  7976. image: {
  7977. source: "./media/characters/zevulfius/foot.svg"
  7978. }
  7979. },
  7980. },
  7981. [
  7982. {
  7983. name: "Macro",
  7984. height: math.unit(750, "meters")
  7985. },
  7986. {
  7987. name: "Megamacro",
  7988. height: math.unit(20, "km"),
  7989. default: true
  7990. },
  7991. {
  7992. name: "Gigamacro",
  7993. height: math.unit(2000, "km")
  7994. },
  7995. {
  7996. name: "Teramacro",
  7997. height: math.unit(250000, "km")
  7998. },
  7999. ]
  8000. ))
  8001. characterMakers.push(() => makeCharacter(
  8002. { name: "Rikes" },
  8003. {
  8004. front: {
  8005. height: math.unit(100, "feet"),
  8006. weight: math.unit(350, "kg"),
  8007. name: "Front",
  8008. image: {
  8009. source: "./media/characters/rikes/front.svg",
  8010. extra: 1565 / 1483,
  8011. bottom: 0.017
  8012. }
  8013. },
  8014. },
  8015. [
  8016. {
  8017. name: "Macro",
  8018. height: math.unit(100, "feet"),
  8019. default: true
  8020. },
  8021. ]
  8022. ))
  8023. characterMakers.push(() => makeCharacter(
  8024. { name: "Adam Silver-Mane" },
  8025. {
  8026. anthro: {
  8027. height: math.unit(8, "feet"),
  8028. weight: math.unit(120, "kg"),
  8029. name: "Anthro",
  8030. image: {
  8031. source: "./media/characters/adam-silver-mane/anthro.svg",
  8032. extra: 5743 / 5339,
  8033. bottom: 0.07
  8034. }
  8035. },
  8036. taur: {
  8037. height: math.unit(16, "feet"),
  8038. weight: math.unit(1500, "kg"),
  8039. name: "Taur",
  8040. image: {
  8041. source: "./media/characters/adam-silver-mane/taur.svg",
  8042. extra: 1713 / 1571,
  8043. bottom: 0.01
  8044. }
  8045. },
  8046. },
  8047. [
  8048. {
  8049. name: "Normal",
  8050. height: math.unit(8, "feet")
  8051. },
  8052. {
  8053. name: "Minimacro",
  8054. height: math.unit(80, "feet")
  8055. },
  8056. {
  8057. name: "Macro",
  8058. height: math.unit(800, "feet"),
  8059. default: true
  8060. },
  8061. {
  8062. name: "Megamacro",
  8063. height: math.unit(8000, "feet")
  8064. },
  8065. {
  8066. name: "Gigamacro",
  8067. height: math.unit(800, "miles")
  8068. },
  8069. {
  8070. name: "Teramacro",
  8071. height: math.unit(80000, "miles")
  8072. },
  8073. {
  8074. name: "Celestial",
  8075. height: math.unit(8e6, "miles")
  8076. },
  8077. {
  8078. name: "Star Dragon",
  8079. height: math.unit(800000, "parsecs")
  8080. },
  8081. {
  8082. name: "Godly",
  8083. height: math.unit(800, "teraparsecs")
  8084. },
  8085. ]
  8086. ))
  8087. characterMakers.push(() => makeCharacter(
  8088. { name: "Ky'owin" },
  8089. {
  8090. front: {
  8091. height: math.unit(6, "feet"),
  8092. weight: math.unit(150, "lb"),
  8093. name: "Front",
  8094. image: {
  8095. source: "./media/characters/ky'owin/front.svg",
  8096. extra: 3888 / 3068,
  8097. bottom: 0.015
  8098. }
  8099. },
  8100. },
  8101. [
  8102. {
  8103. name: "Normal",
  8104. height: math.unit(6 + 8 / 12, "feet")
  8105. },
  8106. {
  8107. name: "Large",
  8108. height: math.unit(68, "feet")
  8109. },
  8110. {
  8111. name: "Macro",
  8112. height: math.unit(132, "feet")
  8113. },
  8114. {
  8115. name: "Macro+",
  8116. height: math.unit(340, "feet")
  8117. },
  8118. {
  8119. name: "Macro++",
  8120. height: math.unit(680, "feet"),
  8121. default: true
  8122. },
  8123. {
  8124. name: "Megamacro",
  8125. height: math.unit(1, "mile")
  8126. },
  8127. {
  8128. name: "Megamacro+",
  8129. height: math.unit(10, "miles")
  8130. },
  8131. ]
  8132. ))
  8133. characterMakers.push(() => makeCharacter(
  8134. { name: "Mal" },
  8135. {
  8136. front: {
  8137. height: math.unit(4, "feet"),
  8138. weight: math.unit(50, "lb"),
  8139. name: "Front",
  8140. image: {
  8141. source: "./media/characters/mal/front.svg",
  8142. extra: 785 / 724,
  8143. bottom: 0.07
  8144. }
  8145. },
  8146. },
  8147. [
  8148. {
  8149. name: "Micro",
  8150. height: math.unit(4, "inches")
  8151. },
  8152. {
  8153. name: "Normal",
  8154. height: math.unit(4, "feet"),
  8155. default: true
  8156. },
  8157. {
  8158. name: "Macro",
  8159. height: math.unit(200, "feet")
  8160. },
  8161. ]
  8162. ))
  8163. characterMakers.push(() => makeCharacter(
  8164. { name: "Jordan Deware" },
  8165. {
  8166. front: {
  8167. height: math.unit(6, "feet"),
  8168. weight: math.unit(150, "lb"),
  8169. name: "Front",
  8170. image: {
  8171. source: "./media/characters/jordan-deware/front.svg",
  8172. extra: 1191 / 1012
  8173. }
  8174. },
  8175. },
  8176. [
  8177. {
  8178. name: "Nano",
  8179. height: math.unit(0.01, "mm")
  8180. },
  8181. {
  8182. name: "Minimicro",
  8183. height: math.unit(1, "mm")
  8184. },
  8185. {
  8186. name: "Micro",
  8187. height: math.unit(0.5, "inches")
  8188. },
  8189. {
  8190. name: "Normal",
  8191. height: math.unit(4, "feet"),
  8192. default: true
  8193. },
  8194. {
  8195. name: "Minimacro",
  8196. height: math.unit(40, "meters")
  8197. },
  8198. {
  8199. name: "Small Macro",
  8200. height: math.unit(400, "meters")
  8201. },
  8202. {
  8203. name: "Macro",
  8204. height: math.unit(4, "miles")
  8205. },
  8206. {
  8207. name: "Megamacro",
  8208. height: math.unit(40, "miles")
  8209. },
  8210. {
  8211. name: "Megamacro+",
  8212. height: math.unit(400, "miles")
  8213. },
  8214. {
  8215. name: "Gigamacro",
  8216. height: math.unit(400000, "miles")
  8217. },
  8218. ]
  8219. ))
  8220. characterMakers.push(() => makeCharacter(
  8221. { name: "Kimiko" },
  8222. {
  8223. side: {
  8224. height: math.unit(6, "feet"),
  8225. weight: math.unit(150, "lb"),
  8226. name: "Side",
  8227. image: {
  8228. source: "./media/characters/kimiko/side.svg",
  8229. extra: 600 / 358
  8230. }
  8231. },
  8232. },
  8233. [
  8234. {
  8235. name: "Normal",
  8236. height: math.unit(15, "feet"),
  8237. default: true
  8238. },
  8239. {
  8240. name: "Macro",
  8241. height: math.unit(220, "feet")
  8242. },
  8243. {
  8244. name: "Macro+",
  8245. height: math.unit(1450, "feet")
  8246. },
  8247. {
  8248. name: "Megamacro",
  8249. height: math.unit(11500, "feet")
  8250. },
  8251. {
  8252. name: "Gigamacro",
  8253. height: math.unit(9500, "miles")
  8254. },
  8255. {
  8256. name: "Teramacro",
  8257. height: math.unit(2208005005, "miles")
  8258. },
  8259. {
  8260. name: "Examacro",
  8261. height: math.unit(2750, "parsecs")
  8262. },
  8263. {
  8264. name: "Zettamacro",
  8265. height: math.unit(101500, "parsecs")
  8266. },
  8267. ]
  8268. ))
  8269. characterMakers.push(() => makeCharacter(
  8270. { name: "Andrew Sleepy" },
  8271. {
  8272. front: {
  8273. height: math.unit(6, "feet"),
  8274. weight: math.unit(70, "kg"),
  8275. name: "Front",
  8276. image: {
  8277. source: "./media/characters/andrew-sleepy/front.svg"
  8278. }
  8279. },
  8280. side: {
  8281. height: math.unit(6, "feet"),
  8282. weight: math.unit(70, "kg"),
  8283. name: "Side",
  8284. image: {
  8285. source: "./media/characters/andrew-sleepy/side.svg"
  8286. }
  8287. },
  8288. },
  8289. [
  8290. {
  8291. name: "Micro",
  8292. height: math.unit(1, "mm"),
  8293. default: true
  8294. },
  8295. ]
  8296. ))
  8297. characterMakers.push(() => makeCharacter(
  8298. { name: "Judio" },
  8299. {
  8300. front: {
  8301. height: math.unit(6, "feet"),
  8302. weight: math.unit(150, "lb"),
  8303. name: "Front",
  8304. image: {
  8305. source: "./media/characters/judio/front.svg",
  8306. extra: 1258 / 1110
  8307. }
  8308. },
  8309. },
  8310. [
  8311. {
  8312. name: "Normal",
  8313. height: math.unit(5 + 6 / 12, "feet")
  8314. },
  8315. {
  8316. name: "Macro",
  8317. height: math.unit(1000, "feet"),
  8318. default: true
  8319. },
  8320. {
  8321. name: "Megamacro",
  8322. height: math.unit(10, "miles")
  8323. },
  8324. ]
  8325. ))
  8326. characterMakers.push(() => makeCharacter(
  8327. { name: "Nomaxice" },
  8328. {
  8329. front: {
  8330. height: math.unit(6, "feet"),
  8331. weight: math.unit(68, "kg"),
  8332. name: "Front",
  8333. image: {
  8334. source: "./media/characters/nomaxice/front.svg",
  8335. extra: 1498 / 1073,
  8336. bottom: 0.075
  8337. }
  8338. },
  8339. foot: {
  8340. height: math.unit(1.1, "feet"),
  8341. name: "Foot",
  8342. image: {
  8343. source: "./media/characters/nomaxice/foot.svg"
  8344. }
  8345. },
  8346. },
  8347. [
  8348. {
  8349. name: "Micro",
  8350. height: math.unit(8, "cm")
  8351. },
  8352. {
  8353. name: "Norm",
  8354. height: math.unit(1.82, "m")
  8355. },
  8356. {
  8357. name: "Norm+",
  8358. height: math.unit(8.8, "feet")
  8359. },
  8360. {
  8361. name: "Big",
  8362. height: math.unit(8, "meters"),
  8363. default: true
  8364. },
  8365. {
  8366. name: "Macro",
  8367. height: math.unit(18, "meters")
  8368. },
  8369. {
  8370. name: "Macro+",
  8371. height: math.unit(88, "meters")
  8372. },
  8373. ]
  8374. ))
  8375. characterMakers.push(() => makeCharacter(
  8376. { name: "Dydros" },
  8377. {
  8378. front: {
  8379. height: math.unit(12, "feet"),
  8380. weight: math.unit(1.5, "tons"),
  8381. name: "Front",
  8382. image: {
  8383. source: "./media/characters/dydros/front.svg",
  8384. extra: 863 / 800,
  8385. bottom: 0.015
  8386. }
  8387. },
  8388. back: {
  8389. height: math.unit(12, "feet"),
  8390. weight: math.unit(1.5, "tons"),
  8391. name: "Back",
  8392. image: {
  8393. source: "./media/characters/dydros/back.svg",
  8394. extra: 900 / 843,
  8395. bottom: 0.005
  8396. }
  8397. },
  8398. },
  8399. [
  8400. {
  8401. name: "Normal",
  8402. height: math.unit(12, "feet"),
  8403. default: true
  8404. },
  8405. ]
  8406. ))
  8407. characterMakers.push(() => makeCharacter(
  8408. { name: "Riggi" },
  8409. {
  8410. front: {
  8411. height: math.unit(6, "feet"),
  8412. weight: math.unit(100, "kg"),
  8413. name: "Front",
  8414. image: {
  8415. source: "./media/characters/riggi/front.svg",
  8416. extra: 5787 / 5303
  8417. }
  8418. },
  8419. hyper: {
  8420. height: math.unit(6 * 5 / 3, "feet"),
  8421. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8422. name: "Hyper",
  8423. image: {
  8424. source: "./media/characters/riggi/hyper.svg",
  8425. extra: 3595 / 3485
  8426. }
  8427. },
  8428. },
  8429. [
  8430. {
  8431. name: "Small Macro",
  8432. height: math.unit(50, "feet")
  8433. },
  8434. {
  8435. name: "Default",
  8436. height: math.unit(200, "feet"),
  8437. default: true
  8438. },
  8439. {
  8440. name: "Loom",
  8441. height: math.unit(10000, "feet")
  8442. },
  8443. {
  8444. name: "Cruising Altitude",
  8445. height: math.unit(30000, "feet")
  8446. },
  8447. {
  8448. name: "Megamacro",
  8449. height: math.unit(100, "miles")
  8450. },
  8451. {
  8452. name: "Continent Sized",
  8453. height: math.unit(2800, "miles")
  8454. },
  8455. {
  8456. name: "Earth Sized",
  8457. height: math.unit(8000, "miles")
  8458. },
  8459. ]
  8460. ))
  8461. characterMakers.push(() => makeCharacter(
  8462. { name: "Alexi" },
  8463. {
  8464. front: {
  8465. height: math.unit(6, "feet"),
  8466. weight: math.unit(250, "lb"),
  8467. name: "Front",
  8468. image: {
  8469. source: "./media/characters/alexi/front.svg",
  8470. extra: 3483 / 3291,
  8471. bottom: 0.04
  8472. }
  8473. },
  8474. back: {
  8475. height: math.unit(6, "feet"),
  8476. weight: math.unit(250, "lb"),
  8477. name: "Back",
  8478. image: {
  8479. source: "./media/characters/alexi/back.svg",
  8480. extra: 3533 / 3356,
  8481. bottom: 0.021
  8482. }
  8483. },
  8484. frontTransformed: {
  8485. height: math.unit(12.5, "feet"),
  8486. weight: math.unit(4000, "lb"),
  8487. name: "Front (Transformed)",
  8488. image: {
  8489. source: "./media/characters/alexi/front-transformed.svg",
  8490. extra: 5345 / 5100,
  8491. bottom: 0.03
  8492. }
  8493. },
  8494. },
  8495. [
  8496. {
  8497. name: "Normal",
  8498. height: math.unit(3, "meters"),
  8499. default: true
  8500. },
  8501. {
  8502. name: "Minimacro",
  8503. height: math.unit(30, "meters")
  8504. },
  8505. {
  8506. name: "Macro",
  8507. height: math.unit(500, "meters")
  8508. },
  8509. {
  8510. name: "Megamacro",
  8511. height: math.unit(9000, "km")
  8512. },
  8513. {
  8514. name: "Teramacro",
  8515. height: math.unit(384000, "km")
  8516. },
  8517. ]
  8518. ))
  8519. characterMakers.push(() => makeCharacter(
  8520. { name: "Kayroo" },
  8521. {
  8522. front: {
  8523. height: math.unit(6, "feet"),
  8524. weight: math.unit(150, "lb"),
  8525. name: "Front",
  8526. image: {
  8527. source: "./media/characters/kayroo/front.svg",
  8528. extra: 1153 / 1038,
  8529. bottom: 0.06
  8530. }
  8531. },
  8532. foot: {
  8533. height: math.unit(6, "feet"),
  8534. weight: math.unit(150, "lb"),
  8535. name: "Foot",
  8536. image: {
  8537. source: "./media/characters/kayroo/foot.svg"
  8538. }
  8539. },
  8540. },
  8541. [
  8542. {
  8543. name: "Normal",
  8544. height: math.unit(8, "feet"),
  8545. default: true
  8546. },
  8547. {
  8548. name: "Minimacro",
  8549. height: math.unit(250, "feet")
  8550. },
  8551. {
  8552. name: "Macro",
  8553. height: math.unit(2800, "feet")
  8554. },
  8555. {
  8556. name: "Megamacro",
  8557. height: math.unit(5200, "feet")
  8558. },
  8559. {
  8560. name: "Gigamacro",
  8561. height: math.unit(27000, "feet")
  8562. },
  8563. {
  8564. name: "Omega",
  8565. height: math.unit(45000, "feet")
  8566. },
  8567. ]
  8568. ))
  8569. characterMakers.push(() => makeCharacter(
  8570. { name: "Rhys" },
  8571. {
  8572. front: {
  8573. height: math.unit(18, "feet"),
  8574. weight: math.unit(5800, "lb"),
  8575. name: "Front",
  8576. image: {
  8577. source: "./media/characters/rhys/front.svg",
  8578. extra: 3386 / 3090,
  8579. bottom: 0.07
  8580. }
  8581. },
  8582. },
  8583. [
  8584. {
  8585. name: "Normal",
  8586. height: math.unit(18, "feet"),
  8587. default: true
  8588. },
  8589. {
  8590. name: "Working Size",
  8591. height: math.unit(200, "feet")
  8592. },
  8593. {
  8594. name: "Demolition Size",
  8595. height: math.unit(2000, "feet")
  8596. },
  8597. {
  8598. name: "Maximum Licensed Size",
  8599. height: math.unit(5, "miles")
  8600. },
  8601. {
  8602. name: "Maximum Observed Size",
  8603. height: math.unit(10, "yottameters")
  8604. },
  8605. ]
  8606. ))
  8607. characterMakers.push(() => makeCharacter(
  8608. { name: "Toto" },
  8609. {
  8610. front: {
  8611. height: math.unit(6, "feet"),
  8612. weight: math.unit(250, "lb"),
  8613. name: "Front",
  8614. image: {
  8615. source: "./media/characters/toto/front.svg",
  8616. extra: 527 / 479,
  8617. bottom: 0.05
  8618. }
  8619. },
  8620. },
  8621. [
  8622. {
  8623. name: "Micro",
  8624. height: math.unit(3, "feet")
  8625. },
  8626. {
  8627. name: "Normal",
  8628. height: math.unit(10, "feet")
  8629. },
  8630. {
  8631. name: "Macro",
  8632. height: math.unit(150, "feet"),
  8633. default: true
  8634. },
  8635. {
  8636. name: "Megamacro",
  8637. height: math.unit(1200, "feet")
  8638. },
  8639. ]
  8640. ))
  8641. characterMakers.push(() => makeCharacter(
  8642. { name: "King" },
  8643. {
  8644. back: {
  8645. height: math.unit(6, "feet"),
  8646. weight: math.unit(150, "lb"),
  8647. name: "Back",
  8648. image: {
  8649. source: "./media/characters/king/back.svg"
  8650. }
  8651. },
  8652. },
  8653. [
  8654. {
  8655. name: "Micro",
  8656. height: math.unit(2, "inches")
  8657. },
  8658. {
  8659. name: "Normal",
  8660. height: math.unit(8, "feet")
  8661. },
  8662. {
  8663. name: "Macro",
  8664. height: math.unit(200, "feet"),
  8665. default: true
  8666. },
  8667. {
  8668. name: "Megamacro",
  8669. height: math.unit(50, "miles")
  8670. },
  8671. ]
  8672. ))
  8673. characterMakers.push(() => makeCharacter(
  8674. { name: "Cordite" },
  8675. {
  8676. anthro: {
  8677. height: math.unit(6 + 5 / 12, "feet"),
  8678. weight: math.unit(280, "lb"),
  8679. name: "Anthro",
  8680. image: {
  8681. source: "./media/characters/cordite/anthro.svg",
  8682. extra: 1986 / 1905,
  8683. bottom: 0.025
  8684. }
  8685. },
  8686. feral: {
  8687. height: math.unit(2, "feet"),
  8688. weight: math.unit(90, "lb"),
  8689. name: "Feral",
  8690. image: {
  8691. source: "./media/characters/cordite/feral.svg",
  8692. extra: 1260 / 755,
  8693. bottom: 0.05
  8694. }
  8695. },
  8696. },
  8697. [
  8698. {
  8699. name: "Normal",
  8700. height: math.unit(6 + 5 / 12, "feet"),
  8701. default: true
  8702. },
  8703. ]
  8704. ))
  8705. characterMakers.push(() => makeCharacter(
  8706. { name: "Pianostrong" },
  8707. {
  8708. front: {
  8709. height: math.unit(6, "feet"),
  8710. weight: math.unit(150, "lb"),
  8711. name: "Front",
  8712. image: {
  8713. source: "./media/characters/pianostrong/front.svg",
  8714. extra: 6577 / 6254,
  8715. bottom: 0.02
  8716. }
  8717. },
  8718. side: {
  8719. height: math.unit(6, "feet"),
  8720. weight: math.unit(150, "lb"),
  8721. name: "Side",
  8722. image: {
  8723. source: "./media/characters/pianostrong/side.svg",
  8724. extra: 6106 / 5730
  8725. }
  8726. },
  8727. back: {
  8728. height: math.unit(6, "feet"),
  8729. weight: math.unit(150, "lb"),
  8730. name: "Back",
  8731. image: {
  8732. source: "./media/characters/pianostrong/back.svg",
  8733. extra: 6085 / 5733,
  8734. bottom: 0.01
  8735. }
  8736. },
  8737. },
  8738. [
  8739. {
  8740. name: "Macro",
  8741. height: math.unit(100, "feet")
  8742. },
  8743. {
  8744. name: "Macro+",
  8745. height: math.unit(300, "feet"),
  8746. default: true
  8747. },
  8748. {
  8749. name: "Macro++",
  8750. height: math.unit(1000, "feet")
  8751. },
  8752. ]
  8753. ))
  8754. characterMakers.push(() => makeCharacter(
  8755. { name: "Kona" },
  8756. {
  8757. front: {
  8758. height: math.unit(6, "feet"),
  8759. weight: math.unit(150, "lb"),
  8760. name: "Front",
  8761. image: {
  8762. source: "./media/characters/kona/front.svg",
  8763. extra: 2960 / 2629,
  8764. bottom: 0.005
  8765. }
  8766. },
  8767. },
  8768. [
  8769. {
  8770. name: "Normal",
  8771. height: math.unit(11 + 8 / 12, "feet")
  8772. },
  8773. {
  8774. name: "Macro",
  8775. height: math.unit(850, "feet"),
  8776. default: true
  8777. },
  8778. {
  8779. name: "Macro+",
  8780. height: math.unit(1.5, "km"),
  8781. default: true
  8782. },
  8783. {
  8784. name: "Megamacro",
  8785. height: math.unit(80, "miles")
  8786. },
  8787. {
  8788. name: "Gigamacro",
  8789. height: math.unit(3500, "miles")
  8790. },
  8791. ]
  8792. ))
  8793. characterMakers.push(() => makeCharacter(
  8794. { name: "Levi" },
  8795. {
  8796. side: {
  8797. height: math.unit(1.9, "meters"),
  8798. weight: math.unit(326, "kg"),
  8799. name: "Side",
  8800. image: {
  8801. source: "./media/characters/levi/side.svg",
  8802. extra: 1704 / 1334,
  8803. bottom: 0.02
  8804. }
  8805. },
  8806. },
  8807. [
  8808. {
  8809. name: "Normal",
  8810. height: math.unit(1.9, "meters"),
  8811. default: true
  8812. },
  8813. {
  8814. name: "Macro",
  8815. height: math.unit(20, "meters")
  8816. },
  8817. {
  8818. name: "Macro+",
  8819. height: math.unit(200, "meters")
  8820. },
  8821. {
  8822. name: "Megamacro",
  8823. height: math.unit(2, "km")
  8824. },
  8825. {
  8826. name: "Megamacro+",
  8827. height: math.unit(20, "km")
  8828. },
  8829. {
  8830. name: "Gigamacro",
  8831. height: math.unit(2500, "km")
  8832. },
  8833. {
  8834. name: "Gigamacro+",
  8835. height: math.unit(120000, "km")
  8836. },
  8837. {
  8838. name: "Teramacro",
  8839. height: math.unit(7.77e6, "km")
  8840. },
  8841. ]
  8842. ))
  8843. characterMakers.push(() => makeCharacter(
  8844. { name: "BMC" },
  8845. {
  8846. front: {
  8847. height: math.unit(6 + 4 / 12, "feet"),
  8848. weight: math.unit(188, "lb"),
  8849. name: "Front",
  8850. image: {
  8851. source: "./media/characters/bmc/front.svg",
  8852. extra: 1067 / 1022,
  8853. bottom: 0.047
  8854. }
  8855. },
  8856. },
  8857. [
  8858. {
  8859. name: "Human-sized",
  8860. height: math.unit(6 + 4 / 12, "feet")
  8861. },
  8862. {
  8863. name: "Small",
  8864. height: math.unit(250, "feet")
  8865. },
  8866. {
  8867. name: "Normal",
  8868. height: math.unit(1250, "feet"),
  8869. default: true
  8870. },
  8871. {
  8872. name: "Good Day",
  8873. height: math.unit(88, "miles")
  8874. },
  8875. {
  8876. name: "Largest Measured Size",
  8877. height: math.unit(11.2e6, "lightyears")
  8878. },
  8879. ]
  8880. ))
  8881. characterMakers.push(() => makeCharacter(
  8882. { name: "Sven the Kaiju" },
  8883. {
  8884. front: {
  8885. height: math.unit(20, "feet"),
  8886. weight: math.unit(2016, "kg"),
  8887. name: "Front",
  8888. image: {
  8889. source: "./media/characters/sven-the-kaiju/front.svg",
  8890. extra: 1479 / 1449,
  8891. bottom: 0.05
  8892. }
  8893. },
  8894. },
  8895. [
  8896. {
  8897. name: "Fairy",
  8898. height: math.unit(6, "inches")
  8899. },
  8900. {
  8901. name: "Normal",
  8902. height: math.unit(20, "feet"),
  8903. default: true
  8904. },
  8905. {
  8906. name: "Rampage",
  8907. height: math.unit(200, "feet")
  8908. },
  8909. {
  8910. name: "Archfey Forest Guardian",
  8911. height: math.unit(1, "mile")
  8912. },
  8913. ]
  8914. ))
  8915. characterMakers.push(() => makeCharacter(
  8916. { name: "Marik" },
  8917. {
  8918. front: {
  8919. height: math.unit(4, "meters"),
  8920. weight: math.unit(2, "tons"),
  8921. name: "Front",
  8922. image: {
  8923. source: "./media/characters/marik/front.svg",
  8924. extra: 1057 / 1003,
  8925. bottom: 0.08
  8926. }
  8927. },
  8928. },
  8929. [
  8930. {
  8931. name: "Normal",
  8932. height: math.unit(4, "meters"),
  8933. default: true
  8934. },
  8935. {
  8936. name: "Macro",
  8937. height: math.unit(20, "meters")
  8938. },
  8939. {
  8940. name: "Megamacro",
  8941. height: math.unit(50, "km")
  8942. },
  8943. {
  8944. name: "Gigamacro",
  8945. height: math.unit(100, "km")
  8946. },
  8947. {
  8948. name: "Alpha Macro",
  8949. height: math.unit(7.88e7, "yottameters")
  8950. },
  8951. ]
  8952. ))
  8953. characterMakers.push(() => makeCharacter(
  8954. { name: "Mel" },
  8955. {
  8956. front: {
  8957. height: math.unit(6, "feet"),
  8958. weight: math.unit(110, "lb"),
  8959. name: "Front",
  8960. image: {
  8961. source: "./media/characters/mel/front.svg",
  8962. extra: 736 / 617,
  8963. bottom: 0.017
  8964. }
  8965. },
  8966. },
  8967. [
  8968. {
  8969. name: "Pico",
  8970. height: math.unit(3, "pm")
  8971. },
  8972. {
  8973. name: "Nano",
  8974. height: math.unit(3, "nm")
  8975. },
  8976. {
  8977. name: "Micro",
  8978. height: math.unit(0.3, "mm"),
  8979. default: true
  8980. },
  8981. {
  8982. name: "Micro+",
  8983. height: math.unit(3, "mm")
  8984. },
  8985. {
  8986. name: "Normal",
  8987. height: math.unit(5 + 10.5 / 12, "feet")
  8988. },
  8989. ]
  8990. ))
  8991. characterMakers.push(() => makeCharacter(
  8992. { name: "Lykonous" },
  8993. {
  8994. kaiju: {
  8995. height: math.unit(1.75, "meters"),
  8996. weight: math.unit(55, "kg"),
  8997. name: "Kaiju",
  8998. image: {
  8999. source: "./media/characters/lykonous/kaiju.svg",
  9000. extra: 1055 / 946,
  9001. bottom: 0.135
  9002. }
  9003. },
  9004. },
  9005. [
  9006. {
  9007. name: "Normal",
  9008. height: math.unit(2.5, "meters"),
  9009. default: true
  9010. },
  9011. {
  9012. name: "Kaiju Dragon",
  9013. height: math.unit(60, "meters")
  9014. },
  9015. {
  9016. name: "Mega Kaiju",
  9017. height: math.unit(120, "km")
  9018. },
  9019. {
  9020. name: "Giga Kaiju",
  9021. height: math.unit(200, "megameters")
  9022. },
  9023. {
  9024. name: "Terra Kaiju",
  9025. height: math.unit(400, "gigameters")
  9026. },
  9027. {
  9028. name: "Kaiju Dragon God",
  9029. height: math.unit(13000, "exaparsecs")
  9030. },
  9031. ]
  9032. ))
  9033. characterMakers.push(() => makeCharacter(
  9034. { name: "Blü" },
  9035. {
  9036. front: {
  9037. height: math.unit(6, "feet"),
  9038. weight: math.unit(150, "lb"),
  9039. name: "Front",
  9040. image: {
  9041. source: "./media/characters/blü/front.svg",
  9042. extra: 1883 / 1564,
  9043. bottom: 0.031
  9044. }
  9045. },
  9046. },
  9047. [
  9048. {
  9049. name: "Normal",
  9050. height: math.unit(13, "feet"),
  9051. default: true
  9052. },
  9053. {
  9054. name: "Big Boi",
  9055. height: math.unit(150, "meters")
  9056. },
  9057. {
  9058. name: "Mini Stomper",
  9059. height: math.unit(300, "meters")
  9060. },
  9061. {
  9062. name: "Macro",
  9063. height: math.unit(1000, "meters")
  9064. },
  9065. {
  9066. name: "Megamacro",
  9067. height: math.unit(11000, "meters")
  9068. },
  9069. {
  9070. name: "Gigamacro",
  9071. height: math.unit(11000, "km")
  9072. },
  9073. {
  9074. name: "Teramacro",
  9075. height: math.unit(420000, "km")
  9076. },
  9077. {
  9078. name: "Examacro",
  9079. height: math.unit(120, "parsecs")
  9080. },
  9081. {
  9082. name: "God Tho",
  9083. height: math.unit(98000000000, "parsecs")
  9084. },
  9085. ]
  9086. ))
  9087. characterMakers.push(() => makeCharacter(
  9088. { name: "Scales" },
  9089. {
  9090. taurFront: {
  9091. height: math.unit(6, "feet"),
  9092. weight: math.unit(200, "lb"),
  9093. name: "Taur (Front)",
  9094. image: {
  9095. source: "./media/characters/scales/taur-front.svg",
  9096. extra: 1,
  9097. bottom: 0.05
  9098. }
  9099. },
  9100. taurBack: {
  9101. height: math.unit(6, "feet"),
  9102. weight: math.unit(200, "lb"),
  9103. name: "Taur (Back)",
  9104. image: {
  9105. source: "./media/characters/scales/taur-back.svg",
  9106. extra: 1,
  9107. bottom: 0.08
  9108. }
  9109. },
  9110. anthro: {
  9111. height: math.unit(6 * 7 / 12, "feet"),
  9112. weight: math.unit(100, "lb"),
  9113. name: "Anthro",
  9114. image: {
  9115. source: "./media/characters/scales/anthro.svg",
  9116. extra: 1,
  9117. bottom: 0.06
  9118. }
  9119. },
  9120. },
  9121. [
  9122. {
  9123. name: "Normal",
  9124. height: math.unit(12, "feet"),
  9125. default: true
  9126. },
  9127. ]
  9128. ))
  9129. characterMakers.push(() => makeCharacter(
  9130. { name: "Koragos" },
  9131. {
  9132. front: {
  9133. height: math.unit(6, "feet"),
  9134. weight: math.unit(150, "lb"),
  9135. name: "Front",
  9136. image: {
  9137. source: "./media/characters/koragos/front.svg",
  9138. extra: 841 / 794,
  9139. bottom: 0.035
  9140. }
  9141. },
  9142. back: {
  9143. height: math.unit(6, "feet"),
  9144. weight: math.unit(150, "lb"),
  9145. name: "Back",
  9146. image: {
  9147. source: "./media/characters/koragos/back.svg",
  9148. extra: 841 / 810,
  9149. bottom: 0.022
  9150. }
  9151. },
  9152. },
  9153. [
  9154. {
  9155. name: "Normal",
  9156. height: math.unit(6 + 11 / 12, "feet"),
  9157. default: true
  9158. },
  9159. {
  9160. name: "Macro",
  9161. height: math.unit(490, "feet")
  9162. },
  9163. {
  9164. name: "Megamacro",
  9165. height: math.unit(10, "miles")
  9166. },
  9167. {
  9168. name: "Gigamacro",
  9169. height: math.unit(50, "miles")
  9170. },
  9171. ]
  9172. ))
  9173. characterMakers.push(() => makeCharacter(
  9174. { name: "Xylrem" },
  9175. {
  9176. front: {
  9177. height: math.unit(6, "feet"),
  9178. weight: math.unit(250, "lb"),
  9179. name: "Front",
  9180. image: {
  9181. source: "./media/characters/xylrem/front.svg",
  9182. extra: 3323 / 3050,
  9183. bottom: 0.065
  9184. }
  9185. },
  9186. },
  9187. [
  9188. {
  9189. name: "Micro",
  9190. height: math.unit(4, "feet")
  9191. },
  9192. {
  9193. name: "Normal",
  9194. height: math.unit(16, "feet"),
  9195. default: true
  9196. },
  9197. {
  9198. name: "Macro",
  9199. height: math.unit(2720, "feet")
  9200. },
  9201. {
  9202. name: "Megamacro",
  9203. height: math.unit(25000, "miles")
  9204. },
  9205. ]
  9206. ))
  9207. characterMakers.push(() => makeCharacter(
  9208. { name: "Ikideru" },
  9209. {
  9210. front: {
  9211. height: math.unit(8, "feet"),
  9212. weight: math.unit(250, "kg"),
  9213. name: "Front",
  9214. image: {
  9215. source: "./media/characters/ikideru/front.svg",
  9216. extra: 930 / 870,
  9217. bottom: 0.087
  9218. }
  9219. },
  9220. back: {
  9221. height: math.unit(8, "feet"),
  9222. weight: math.unit(250, "kg"),
  9223. name: "Back",
  9224. image: {
  9225. source: "./media/characters/ikideru/back.svg",
  9226. extra: 919 / 852,
  9227. bottom: 0.055
  9228. }
  9229. },
  9230. },
  9231. [
  9232. {
  9233. name: "Rare",
  9234. height: math.unit(8, "feet"),
  9235. default: true
  9236. },
  9237. {
  9238. name: "Playful Loom",
  9239. height: math.unit(80, "feet")
  9240. },
  9241. {
  9242. name: "City Leaner",
  9243. height: math.unit(230, "feet")
  9244. },
  9245. {
  9246. name: "Megamacro",
  9247. height: math.unit(2500, "feet")
  9248. },
  9249. {
  9250. name: "Gigamacro",
  9251. height: math.unit(26400, "feet")
  9252. },
  9253. {
  9254. name: "Tectonic Shifter",
  9255. height: math.unit(1.7, "megameters")
  9256. },
  9257. {
  9258. name: "Planet Carer",
  9259. height: math.unit(21, "megameters")
  9260. },
  9261. {
  9262. name: "God",
  9263. height: math.unit(11157.22, "parsecs")
  9264. },
  9265. ]
  9266. ))
  9267. characterMakers.push(() => makeCharacter(
  9268. { name: "Neo" },
  9269. {
  9270. front: {
  9271. height: math.unit(6, "feet"),
  9272. weight: math.unit(120, "lb"),
  9273. name: "Front",
  9274. image: {
  9275. source: "./media/characters/neo/front.svg"
  9276. }
  9277. },
  9278. },
  9279. [
  9280. {
  9281. name: "Micro",
  9282. height: math.unit(2, "inches"),
  9283. default: true
  9284. },
  9285. {
  9286. name: "Human Size",
  9287. height: math.unit(5 + 8 / 12, "feet")
  9288. },
  9289. ]
  9290. ))
  9291. characterMakers.push(() => makeCharacter(
  9292. { name: "Chauncey (Chantz)" },
  9293. {
  9294. front: {
  9295. height: math.unit(13 + 10 / 12, "feet"),
  9296. weight: math.unit(5320, "lb"),
  9297. name: "Front",
  9298. image: {
  9299. source: "./media/characters/chauncey-chantz/front.svg",
  9300. extra: 1587 / 1435,
  9301. bottom: 0.02
  9302. }
  9303. },
  9304. },
  9305. [
  9306. {
  9307. name: "Normal",
  9308. height: math.unit(13 + 10 / 12, "feet"),
  9309. default: true
  9310. },
  9311. {
  9312. name: "Macro",
  9313. height: math.unit(45, "feet")
  9314. },
  9315. {
  9316. name: "Megamacro",
  9317. height: math.unit(250, "miles")
  9318. },
  9319. {
  9320. name: "Planetary",
  9321. height: math.unit(10000, "miles")
  9322. },
  9323. {
  9324. name: "Galactic",
  9325. height: math.unit(40000, "parsecs")
  9326. },
  9327. {
  9328. name: "Universal",
  9329. height: math.unit(1, "yottameter")
  9330. },
  9331. ]
  9332. ))
  9333. characterMakers.push(() => makeCharacter(
  9334. { name: "Epifox" },
  9335. {
  9336. front: {
  9337. height: math.unit(6, "feet"),
  9338. weight: math.unit(150, "lb"),
  9339. name: "Front",
  9340. image: {
  9341. source: "./media/characters/epifox/front.svg",
  9342. extra: 1,
  9343. bottom: 0.075
  9344. }
  9345. },
  9346. },
  9347. [
  9348. {
  9349. name: "Micro",
  9350. height: math.unit(6, "inches")
  9351. },
  9352. {
  9353. name: "Normal",
  9354. height: math.unit(12, "feet"),
  9355. default: true
  9356. },
  9357. {
  9358. name: "Macro",
  9359. height: math.unit(3810, "feet")
  9360. },
  9361. {
  9362. name: "Megamacro",
  9363. height: math.unit(500, "miles")
  9364. },
  9365. ]
  9366. ))
  9367. characterMakers.push(() => makeCharacter(
  9368. { name: "Colin T." },
  9369. {
  9370. front: {
  9371. height: math.unit(1.8796, "m"),
  9372. weight: math.unit(230, "lb"),
  9373. name: "Front",
  9374. image: {
  9375. source: "./media/characters/colin-t/front.svg",
  9376. extra: 1272 / 1193,
  9377. bottom: 0.07
  9378. }
  9379. },
  9380. },
  9381. [
  9382. {
  9383. name: "Micro",
  9384. height: math.unit(0.571, "meters")
  9385. },
  9386. {
  9387. name: "Normal",
  9388. height: math.unit(1.8796, "meters"),
  9389. default: true
  9390. },
  9391. {
  9392. name: "Tall",
  9393. height: math.unit(4, "meters")
  9394. },
  9395. {
  9396. name: "Macro",
  9397. height: math.unit(67.241, "meters")
  9398. },
  9399. {
  9400. name: "Megamacro",
  9401. height: math.unit(371.856, "meters")
  9402. },
  9403. {
  9404. name: "Planetary",
  9405. height: math.unit(12631.5689, "km")
  9406. },
  9407. ]
  9408. ))
  9409. characterMakers.push(() => makeCharacter(
  9410. { name: "Matvei" },
  9411. {
  9412. front: {
  9413. height: math.unit(1.85, "meters"),
  9414. weight: math.unit(80, "kg"),
  9415. name: "Front",
  9416. image: {
  9417. source: "./media/characters/matvei/front.svg",
  9418. extra: 614 / 594,
  9419. bottom: 0.01
  9420. }
  9421. },
  9422. },
  9423. [
  9424. {
  9425. name: "Normal",
  9426. height: math.unit(1.85, "meters"),
  9427. default: true
  9428. },
  9429. ]
  9430. ))
  9431. characterMakers.push(() => makeCharacter(
  9432. { name: "Quincy" },
  9433. {
  9434. front: {
  9435. height: math.unit(5 + 9 / 12, "feet"),
  9436. weight: math.unit(70, "lb"),
  9437. name: "Front",
  9438. image: {
  9439. source: "./media/characters/quincy/front.svg",
  9440. extra: 3041 / 2751
  9441. }
  9442. },
  9443. back: {
  9444. height: math.unit(5 + 9 / 12, "feet"),
  9445. weight: math.unit(70, "lb"),
  9446. name: "Back",
  9447. image: {
  9448. source: "./media/characters/quincy/back.svg",
  9449. extra: 3041 / 2751
  9450. }
  9451. },
  9452. flying: {
  9453. height: math.unit(5 + 4 / 12, "feet"),
  9454. weight: math.unit(70, "lb"),
  9455. name: "Flying",
  9456. image: {
  9457. source: "./media/characters/quincy/flying.svg",
  9458. extra: 1044 / 930
  9459. }
  9460. },
  9461. },
  9462. [
  9463. {
  9464. name: "Micro",
  9465. height: math.unit(3, "cm")
  9466. },
  9467. {
  9468. name: "Normal",
  9469. height: math.unit(5 + 9 / 12, "feet")
  9470. },
  9471. {
  9472. name: "Macro",
  9473. height: math.unit(200, "meters"),
  9474. default: true
  9475. },
  9476. {
  9477. name: "Megamacro",
  9478. height: math.unit(1000, "meters")
  9479. },
  9480. ]
  9481. ))
  9482. characterMakers.push(() => makeCharacter(
  9483. { name: "Vanrel" },
  9484. {
  9485. front: {
  9486. height: math.unit(4 + 7 / 12, "feet"),
  9487. weight: math.unit(150, "lb"),
  9488. name: "Front",
  9489. image: {
  9490. source: "./media/characters/vanrel/front.svg",
  9491. extra: 1,
  9492. bottom: 0.02
  9493. }
  9494. },
  9495. elemental: {
  9496. height: math.unit(3, "feet"),
  9497. weight: math.unit(150, "lb"),
  9498. name: "Elemental",
  9499. image: {
  9500. source: "./media/characters/vanrel/elemental.svg",
  9501. extra: 192.3/162.8,
  9502. bottom: 1.79/194.17
  9503. }
  9504. },
  9505. side: {
  9506. height: math.unit(4 + 7 / 12, "feet"),
  9507. weight: math.unit(150, "lb"),
  9508. name: "Side",
  9509. image: {
  9510. source: "./media/characters/vanrel/side.svg",
  9511. extra: 1,
  9512. bottom: 0.025
  9513. }
  9514. },
  9515. tome: {
  9516. height: math.unit(1.35, "feet"),
  9517. weight: math.unit(10, "lb"),
  9518. name: "Vanrel's Tome",
  9519. rename: true,
  9520. image: {
  9521. source: "./media/characters/vanrel/tome.svg"
  9522. }
  9523. },
  9524. beans: {
  9525. height: math.unit(0.89, "feet"),
  9526. name: "Beans",
  9527. image: {
  9528. source: "./media/characters/vanrel/beans.svg"
  9529. }
  9530. },
  9531. },
  9532. [
  9533. {
  9534. name: "Normal",
  9535. height: math.unit(4 + 7 / 12, "feet"),
  9536. default: true
  9537. },
  9538. ]
  9539. ))
  9540. characterMakers.push(() => makeCharacter(
  9541. { name: "Kuiper Vanrel" },
  9542. {
  9543. front: {
  9544. height: math.unit(7 + 5 / 12, "feet"),
  9545. weight: math.unit(150, "lb"),
  9546. name: "Front",
  9547. image: {
  9548. source: "./media/characters/kuiper-vanrel/front.svg",
  9549. extra: 1118 / 1068,
  9550. bottom: 0.09
  9551. }
  9552. },
  9553. foot: {
  9554. height: math.unit(0.55, "meters"),
  9555. name: "Foot",
  9556. image: {
  9557. source: "./media/characters/kuiper-vanrel/foot.svg",
  9558. }
  9559. },
  9560. battle: {
  9561. height: math.unit(6.824, "feet"),
  9562. weight: math.unit(150, "lb"),
  9563. name: "Battle",
  9564. image: {
  9565. source: "./media/characters/kuiper-vanrel/battle.svg",
  9566. extra: 1466/1327,
  9567. bottom: 29/1492.5
  9568. }
  9569. },
  9570. },
  9571. [
  9572. {
  9573. name: "Normal",
  9574. height: math.unit(7 + 5 / 12, "feet"),
  9575. default: true
  9576. },
  9577. ]
  9578. ))
  9579. characterMakers.push(() => makeCharacter(
  9580. { name: "Keset Vanrel" },
  9581. {
  9582. front: {
  9583. height: math.unit(8 + 5 / 12, "feet"),
  9584. weight: math.unit(150, "lb"),
  9585. name: "Front",
  9586. image: {
  9587. source: "./media/characters/keset-vanrel/front.svg",
  9588. extra: 1150 / 1084,
  9589. bottom: 0.05
  9590. }
  9591. },
  9592. hand: {
  9593. height: math.unit(0.6, "meters"),
  9594. name: "Hand",
  9595. image: {
  9596. source: "./media/characters/keset-vanrel/hand.svg"
  9597. }
  9598. },
  9599. foot: {
  9600. height: math.unit(0.94978, "meters"),
  9601. name: "Foot",
  9602. image: {
  9603. source: "./media/characters/keset-vanrel/foot.svg"
  9604. }
  9605. },
  9606. battle: {
  9607. height: math.unit(7.408, "feet"),
  9608. weight: math.unit(150, "lb"),
  9609. name: "Battle",
  9610. image: {
  9611. source: "./media/characters/keset-vanrel/battle.svg",
  9612. extra: 1890/1386,
  9613. bottom: 73.28/1970
  9614. }
  9615. },
  9616. },
  9617. [
  9618. {
  9619. name: "Normal",
  9620. height: math.unit(8 + 5 / 12, "feet"),
  9621. default: true
  9622. },
  9623. ]
  9624. ))
  9625. characterMakers.push(() => makeCharacter(
  9626. { name: "Neos" },
  9627. {
  9628. front: {
  9629. height: math.unit(6, "feet"),
  9630. weight: math.unit(150, "lb"),
  9631. name: "Front",
  9632. image: {
  9633. source: "./media/characters/neos/front.svg",
  9634. extra: 1696 / 992,
  9635. bottom: 0.14
  9636. }
  9637. },
  9638. },
  9639. [
  9640. {
  9641. name: "Normal",
  9642. height: math.unit(54, "cm"),
  9643. default: true
  9644. },
  9645. {
  9646. name: "Macro",
  9647. height: math.unit(100, "m")
  9648. },
  9649. {
  9650. name: "Megamacro",
  9651. height: math.unit(10, "km")
  9652. },
  9653. {
  9654. name: "Megamacro+",
  9655. height: math.unit(100, "km")
  9656. },
  9657. {
  9658. name: "Gigamacro",
  9659. height: math.unit(100, "Mm")
  9660. },
  9661. {
  9662. name: "Teramacro",
  9663. height: math.unit(100, "Gm")
  9664. },
  9665. {
  9666. name: "Examacro",
  9667. height: math.unit(100, "Em")
  9668. },
  9669. {
  9670. name: "Godly",
  9671. height: math.unit(10000, "Ym")
  9672. },
  9673. {
  9674. name: "Beyond Godly",
  9675. height: math.unit(10000000, "Ym")
  9676. },
  9677. ]
  9678. ))
  9679. characterMakers.push(() => makeCharacter(
  9680. { name: "Sammy Mouse" },
  9681. {
  9682. feminine: {
  9683. height: math.unit(5, "feet"),
  9684. weight: math.unit(100, "lb"),
  9685. name: "Feminine",
  9686. image: {
  9687. source: "./media/characters/sammy-mouse/feminine.svg",
  9688. extra: 2526 / 2425,
  9689. bottom: 0.123
  9690. }
  9691. },
  9692. masculine: {
  9693. height: math.unit(5, "feet"),
  9694. weight: math.unit(100, "lb"),
  9695. name: "Masculine",
  9696. image: {
  9697. source: "./media/characters/sammy-mouse/masculine.svg",
  9698. extra: 2526 / 2425,
  9699. bottom: 0.123
  9700. }
  9701. },
  9702. },
  9703. [
  9704. {
  9705. name: "Micro",
  9706. height: math.unit(5, "inches")
  9707. },
  9708. {
  9709. name: "Normal",
  9710. height: math.unit(5, "feet"),
  9711. default: true
  9712. },
  9713. {
  9714. name: "Macro",
  9715. height: math.unit(60, "feet")
  9716. },
  9717. ]
  9718. ))
  9719. characterMakers.push(() => makeCharacter(
  9720. { name: "Kole" },
  9721. {
  9722. front: {
  9723. height: math.unit(4, "feet"),
  9724. weight: math.unit(50, "lb"),
  9725. name: "Front",
  9726. image: {
  9727. source: "./media/characters/kole/front.svg",
  9728. extra: 1423 / 1303,
  9729. bottom: 0.025
  9730. }
  9731. },
  9732. back: {
  9733. height: math.unit(4, "feet"),
  9734. weight: math.unit(50, "lb"),
  9735. name: "Back",
  9736. image: {
  9737. source: "./media/characters/kole/back.svg",
  9738. extra: 1426 / 1280,
  9739. bottom: 0.02
  9740. }
  9741. },
  9742. },
  9743. [
  9744. {
  9745. name: "Normal",
  9746. height: math.unit(4, "feet"),
  9747. default: true
  9748. },
  9749. ]
  9750. ))
  9751. characterMakers.push(() => makeCharacter(
  9752. { name: "Rufran" },
  9753. {
  9754. front: {
  9755. height: math.unit(2 + 6 / 12, "feet"),
  9756. weight: math.unit(20, "lb"),
  9757. name: "Front",
  9758. image: {
  9759. source: "./media/characters/rufran/front.svg",
  9760. extra: 2041 / 1839,
  9761. bottom: 0.055
  9762. }
  9763. },
  9764. back: {
  9765. height: math.unit(2 + 6 / 12, "feet"),
  9766. weight: math.unit(20, "lb"),
  9767. name: "Back",
  9768. image: {
  9769. source: "./media/characters/rufran/back.svg",
  9770. extra: 2054 / 1839,
  9771. bottom: 0.01
  9772. }
  9773. },
  9774. hand: {
  9775. height: math.unit(0.2166, "meters"),
  9776. name: "Hand",
  9777. image: {
  9778. source: "./media/characters/rufran/hand.svg"
  9779. }
  9780. },
  9781. foot: {
  9782. height: math.unit(0.185, "meters"),
  9783. name: "Foot",
  9784. image: {
  9785. source: "./media/characters/rufran/foot.svg"
  9786. }
  9787. },
  9788. },
  9789. [
  9790. {
  9791. name: "Micro",
  9792. height: math.unit(1, "inch")
  9793. },
  9794. {
  9795. name: "Normal",
  9796. height: math.unit(2 + 6 / 12, "feet"),
  9797. default: true
  9798. },
  9799. {
  9800. name: "Big",
  9801. height: math.unit(60, "feet")
  9802. },
  9803. {
  9804. name: "Macro",
  9805. height: math.unit(325, "feet")
  9806. },
  9807. ]
  9808. ))
  9809. characterMakers.push(() => makeCharacter(
  9810. { name: "Chip" },
  9811. {
  9812. front: {
  9813. height: math.unit(0.3, "meters"),
  9814. weight: math.unit(3.5, "kg"),
  9815. name: "Front",
  9816. image: {
  9817. source: "./media/characters/chip/front.svg",
  9818. extra: 748 / 674
  9819. }
  9820. },
  9821. },
  9822. [
  9823. {
  9824. name: "Micro",
  9825. height: math.unit(1, "inch"),
  9826. default: true
  9827. },
  9828. ]
  9829. ))
  9830. characterMakers.push(() => makeCharacter(
  9831. { name: "Torvid" },
  9832. {
  9833. side: {
  9834. height: math.unit(2.3, "meters"),
  9835. weight: math.unit(3500, "lb"),
  9836. name: "Side",
  9837. image: {
  9838. source: "./media/characters/torvid/side.svg",
  9839. extra: 1972 / 722,
  9840. bottom: 0.035
  9841. }
  9842. },
  9843. },
  9844. [
  9845. {
  9846. name: "Normal",
  9847. height: math.unit(2.3, "meters"),
  9848. default: true
  9849. },
  9850. ]
  9851. ))
  9852. characterMakers.push(() => makeCharacter(
  9853. { name: "Susan" },
  9854. {
  9855. front: {
  9856. height: math.unit(2, "meters"),
  9857. weight: math.unit(150.5, "kg"),
  9858. name: "Front",
  9859. image: {
  9860. source: "./media/characters/susan/front.svg",
  9861. extra: 693 / 635,
  9862. bottom: 0.05
  9863. }
  9864. },
  9865. },
  9866. [
  9867. {
  9868. name: "Megamacro",
  9869. height: math.unit(505, "miles"),
  9870. default: true
  9871. },
  9872. ]
  9873. ))
  9874. characterMakers.push(() => makeCharacter(
  9875. { name: "Raindrops" },
  9876. {
  9877. front: {
  9878. height: math.unit(6, "feet"),
  9879. weight: math.unit(150, "lb"),
  9880. name: "Front",
  9881. image: {
  9882. source: "./media/characters/raindrops/front.svg",
  9883. extra: 2655 / 2461,
  9884. bottom: 0.02
  9885. }
  9886. },
  9887. back: {
  9888. height: math.unit(6, "feet"),
  9889. weight: math.unit(150, "lb"),
  9890. name: "Back",
  9891. image: {
  9892. source: "./media/characters/raindrops/back.svg",
  9893. extra: 2574 / 2400,
  9894. bottom: 0.03
  9895. }
  9896. },
  9897. },
  9898. [
  9899. {
  9900. name: "Micro",
  9901. height: math.unit(6, "inches")
  9902. },
  9903. {
  9904. name: "Normal",
  9905. height: math.unit(6 + 2 / 12, "feet")
  9906. },
  9907. {
  9908. name: "Macro",
  9909. height: math.unit(131, "feet"),
  9910. default: true
  9911. },
  9912. {
  9913. name: "Megamacro",
  9914. height: math.unit(15, "miles")
  9915. },
  9916. {
  9917. name: "Gigamacro",
  9918. height: math.unit(4000, "miles")
  9919. },
  9920. {
  9921. name: "Teramacro",
  9922. height: math.unit(315000, "miles")
  9923. },
  9924. ]
  9925. ))
  9926. characterMakers.push(() => makeCharacter(
  9927. { name: "Tezwa" },
  9928. {
  9929. front: {
  9930. height: math.unit(2.794, "meters"),
  9931. weight: math.unit(325, "kg"),
  9932. name: "Front",
  9933. image: {
  9934. source: "./media/characters/tezwa/front.svg",
  9935. extra: 2083 / 1906,
  9936. bottom: 0.031
  9937. }
  9938. },
  9939. foot: {
  9940. height: math.unit(0.687, "meters"),
  9941. name: "Foot",
  9942. image: {
  9943. source: "./media/characters/tezwa/foot.svg"
  9944. }
  9945. },
  9946. },
  9947. [
  9948. {
  9949. name: "Normal",
  9950. height: math.unit(9 + 2 / 12, "feet"),
  9951. default: true
  9952. },
  9953. ]
  9954. ))
  9955. characterMakers.push(() => makeCharacter(
  9956. { name: "Typhus" },
  9957. {
  9958. front: {
  9959. height: math.unit(58, "feet"),
  9960. weight: math.unit(89000, "lb"),
  9961. name: "Front",
  9962. image: {
  9963. source: "./media/characters/typhus/front.svg",
  9964. extra: 816 / 800,
  9965. bottom: 0.065
  9966. }
  9967. },
  9968. },
  9969. [
  9970. {
  9971. name: "Macro",
  9972. height: math.unit(58, "feet"),
  9973. default: true
  9974. },
  9975. ]
  9976. ))
  9977. characterMakers.push(() => makeCharacter(
  9978. { name: "Lyra Von Wulf" },
  9979. {
  9980. front: {
  9981. height: math.unit(12, "feet"),
  9982. weight: math.unit(6, "tonnes"),
  9983. name: "Front",
  9984. image: {
  9985. source: "./media/characters/lyra-von-wulf/front.svg",
  9986. extra: 1,
  9987. bottom: 0.10
  9988. }
  9989. },
  9990. frontMecha: {
  9991. height: math.unit(12, "feet"),
  9992. weight: math.unit(12, "tonnes"),
  9993. name: "Front (Mecha)",
  9994. image: {
  9995. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  9996. extra: 1,
  9997. bottom: 0.042
  9998. }
  9999. },
  10000. maw: {
  10001. height: math.unit(2.2, "feet"),
  10002. name: "Maw",
  10003. image: {
  10004. source: "./media/characters/lyra-von-wulf/maw.svg"
  10005. }
  10006. },
  10007. },
  10008. [
  10009. {
  10010. name: "Normal",
  10011. height: math.unit(12, "feet"),
  10012. default: true
  10013. },
  10014. {
  10015. name: "Classic",
  10016. height: math.unit(50, "feet")
  10017. },
  10018. {
  10019. name: "Macro",
  10020. height: math.unit(500, "feet")
  10021. },
  10022. {
  10023. name: "Megamacro",
  10024. height: math.unit(1, "mile")
  10025. },
  10026. {
  10027. name: "Gigamacro",
  10028. height: math.unit(400, "miles")
  10029. },
  10030. {
  10031. name: "Teramacro",
  10032. height: math.unit(22000, "miles")
  10033. },
  10034. {
  10035. name: "Solarmacro",
  10036. height: math.unit(8600000, "miles")
  10037. },
  10038. {
  10039. name: "Galactic",
  10040. height: math.unit(1057000, "lightyears")
  10041. },
  10042. ]
  10043. ))
  10044. characterMakers.push(() => makeCharacter(
  10045. { name: "Dixon" },
  10046. {
  10047. front: {
  10048. height: math.unit(6 + 10 / 12, "feet"),
  10049. weight: math.unit(150, "lb"),
  10050. name: "Front",
  10051. image: {
  10052. source: "./media/characters/dixon/front.svg",
  10053. extra: 3361 / 3209,
  10054. bottom: 0.01
  10055. }
  10056. },
  10057. },
  10058. [
  10059. {
  10060. name: "Normal",
  10061. height: math.unit(6 + 10 / 12, "feet"),
  10062. default: true
  10063. },
  10064. {
  10065. name: "Big",
  10066. height: math.unit(12, "meters")
  10067. },
  10068. {
  10069. name: "Macro",
  10070. height: math.unit(500, "meters")
  10071. },
  10072. {
  10073. name: "Megamacro",
  10074. height: math.unit(2, "km")
  10075. },
  10076. ]
  10077. ))
  10078. characterMakers.push(() => makeCharacter(
  10079. { name: "Kauko" },
  10080. {
  10081. front: {
  10082. height: math.unit(185, "cm"),
  10083. weight: math.unit(68, "kg"),
  10084. name: "Front",
  10085. image: {
  10086. source: "./media/characters/kauko/front.svg",
  10087. extra: 1455 / 1421,
  10088. bottom: 0.03
  10089. }
  10090. },
  10091. back: {
  10092. height: math.unit(185, "cm"),
  10093. weight: math.unit(68, "kg"),
  10094. name: "Back",
  10095. image: {
  10096. source: "./media/characters/kauko/back.svg",
  10097. extra: 1455 / 1421,
  10098. bottom: 0.004
  10099. }
  10100. },
  10101. },
  10102. [
  10103. {
  10104. name: "Normal",
  10105. height: math.unit(185, "cm"),
  10106. default: true
  10107. },
  10108. ]
  10109. ))
  10110. characterMakers.push(() => makeCharacter(
  10111. { name: "Varg" },
  10112. {
  10113. front: {
  10114. height: math.unit(6, "feet"),
  10115. weight: math.unit(150, "kg"),
  10116. name: "Front",
  10117. image: {
  10118. source: "./media/characters/varg/front.svg",
  10119. extra: 1108 / 1018,
  10120. bottom: 0.0375
  10121. }
  10122. },
  10123. },
  10124. [
  10125. {
  10126. name: "Normal",
  10127. height: math.unit(5, "meters")
  10128. },
  10129. {
  10130. name: "Macro",
  10131. height: math.unit(200, "meters")
  10132. },
  10133. {
  10134. name: "Megamacro",
  10135. height: math.unit(20, "kilometers")
  10136. },
  10137. {
  10138. name: "True Size",
  10139. height: math.unit(211, "km"),
  10140. default: true
  10141. },
  10142. {
  10143. name: "Gigamacro",
  10144. height: math.unit(1000, "km")
  10145. },
  10146. {
  10147. name: "Gigamacro+",
  10148. height: math.unit(8000, "km")
  10149. },
  10150. {
  10151. name: "Teramacro",
  10152. height: math.unit(1000000, "km")
  10153. },
  10154. ]
  10155. ))
  10156. characterMakers.push(() => makeCharacter(
  10157. { name: "Dayza" },
  10158. {
  10159. front: {
  10160. height: math.unit(7 + 7 / 12, "feet"),
  10161. weight: math.unit(267, "lb"),
  10162. name: "Front",
  10163. image: {
  10164. source: "./media/characters/dayza/front.svg",
  10165. extra: 1262 / 1200,
  10166. bottom: 0.035
  10167. }
  10168. },
  10169. side: {
  10170. height: math.unit(7 + 7 / 12, "feet"),
  10171. weight: math.unit(267, "lb"),
  10172. name: "Side",
  10173. image: {
  10174. source: "./media/characters/dayza/side.svg",
  10175. extra: 1295 / 1245,
  10176. bottom: 0.05
  10177. }
  10178. },
  10179. back: {
  10180. height: math.unit(7 + 7 / 12, "feet"),
  10181. weight: math.unit(267, "lb"),
  10182. name: "Back",
  10183. image: {
  10184. source: "./media/characters/dayza/back.svg",
  10185. extra: 1241 / 1170
  10186. }
  10187. },
  10188. },
  10189. [
  10190. {
  10191. name: "Normal",
  10192. height: math.unit(7 + 7 / 12, "feet"),
  10193. default: true
  10194. },
  10195. {
  10196. name: "Macro",
  10197. height: math.unit(155, "feet")
  10198. },
  10199. ]
  10200. ))
  10201. characterMakers.push(() => makeCharacter(
  10202. { name: "Xanthos" },
  10203. {
  10204. front: {
  10205. height: math.unit(6 + 5 / 12, "feet"),
  10206. weight: math.unit(160, "lb"),
  10207. name: "Front",
  10208. image: {
  10209. source: "./media/characters/xanthos/front.svg",
  10210. extra: 1,
  10211. bottom: 0.04
  10212. }
  10213. },
  10214. back: {
  10215. height: math.unit(6 + 5 / 12, "feet"),
  10216. weight: math.unit(160, "lb"),
  10217. name: "Back",
  10218. image: {
  10219. source: "./media/characters/xanthos/back.svg",
  10220. extra: 1,
  10221. bottom: 0.03
  10222. }
  10223. },
  10224. hand: {
  10225. height: math.unit(0.928, "feet"),
  10226. name: "Hand",
  10227. image: {
  10228. source: "./media/characters/xanthos/hand.svg"
  10229. }
  10230. },
  10231. foot: {
  10232. height: math.unit(1.286, "feet"),
  10233. name: "Foot",
  10234. image: {
  10235. source: "./media/characters/xanthos/foot.svg"
  10236. }
  10237. },
  10238. },
  10239. [
  10240. {
  10241. name: "Normal",
  10242. height: math.unit(6 + 5 / 12, "feet"),
  10243. default: true
  10244. },
  10245. {
  10246. name: "Normal+",
  10247. height: math.unit(6, "meters")
  10248. },
  10249. {
  10250. name: "Macro",
  10251. height: math.unit(40, "feet")
  10252. },
  10253. {
  10254. name: "Macro+",
  10255. height: math.unit(200, "meters")
  10256. },
  10257. {
  10258. name: "Megamacro",
  10259. height: math.unit(20, "km")
  10260. },
  10261. {
  10262. name: "Megamacro+",
  10263. height: math.unit(100, "km")
  10264. },
  10265. ]
  10266. ))
  10267. characterMakers.push(() => makeCharacter(
  10268. { name: "Grynn" },
  10269. {
  10270. front: {
  10271. height: math.unit(6 + 3 / 12, "feet"),
  10272. weight: math.unit(215, "lb"),
  10273. name: "Front",
  10274. image: {
  10275. source: "./media/characters/grynn/front.svg",
  10276. extra: 4627 / 4209,
  10277. bottom: 0.047
  10278. }
  10279. },
  10280. },
  10281. [
  10282. {
  10283. name: "Micro",
  10284. height: math.unit(6, "inches")
  10285. },
  10286. {
  10287. name: "Normal",
  10288. height: math.unit(6 + 3 / 12, "feet"),
  10289. default: true
  10290. },
  10291. {
  10292. name: "Big",
  10293. height: math.unit(104, "feet")
  10294. },
  10295. {
  10296. name: "Macro",
  10297. height: math.unit(944, "feet")
  10298. },
  10299. {
  10300. name: "Macro+",
  10301. height: math.unit(9480, "feet")
  10302. },
  10303. {
  10304. name: "Megamacro",
  10305. height: math.unit(78752, "feet")
  10306. },
  10307. {
  10308. name: "Megamacro+",
  10309. height: math.unit(630128, "feet")
  10310. },
  10311. {
  10312. name: "Megamacro++",
  10313. height: math.unit(3150695, "feet")
  10314. },
  10315. ]
  10316. ))
  10317. characterMakers.push(() => makeCharacter(
  10318. { name: "Mocha Aura" },
  10319. {
  10320. front: {
  10321. height: math.unit(7 + 5 / 12, "feet"),
  10322. weight: math.unit(450, "lb"),
  10323. name: "Front",
  10324. image: {
  10325. source: "./media/characters/mocha-aura/front.svg",
  10326. extra: 1907 / 1817,
  10327. bottom: 0.04
  10328. }
  10329. },
  10330. back: {
  10331. height: math.unit(7 + 5 / 12, "feet"),
  10332. weight: math.unit(450, "lb"),
  10333. name: "Back",
  10334. image: {
  10335. source: "./media/characters/mocha-aura/back.svg",
  10336. extra: 1900 / 1825,
  10337. bottom: 0.045
  10338. }
  10339. },
  10340. },
  10341. [
  10342. {
  10343. name: "Nano",
  10344. height: math.unit(1, "nm")
  10345. },
  10346. {
  10347. name: "Megamicro",
  10348. height: math.unit(1, "mm")
  10349. },
  10350. {
  10351. name: "Micro",
  10352. height: math.unit(3, "inches")
  10353. },
  10354. {
  10355. name: "Normal",
  10356. height: math.unit(7 + 5 / 12, "feet"),
  10357. default: true
  10358. },
  10359. {
  10360. name: "Macro",
  10361. height: math.unit(30, "feet")
  10362. },
  10363. {
  10364. name: "Megamacro",
  10365. height: math.unit(3500, "feet")
  10366. },
  10367. {
  10368. name: "Teramacro",
  10369. height: math.unit(500000, "miles")
  10370. },
  10371. {
  10372. name: "Petamacro",
  10373. height: math.unit(50000000000000000, "parsecs")
  10374. },
  10375. ]
  10376. ))
  10377. characterMakers.push(() => makeCharacter(
  10378. { name: "Ilisha Devya" },
  10379. {
  10380. front: {
  10381. height: math.unit(6, "feet"),
  10382. weight: math.unit(150, "lb"),
  10383. name: "Front",
  10384. image: {
  10385. source: "./media/characters/ilisha-devya/front.svg",
  10386. extra: 1,
  10387. bottom: 0.175
  10388. }
  10389. },
  10390. back: {
  10391. height: math.unit(6, "feet"),
  10392. weight: math.unit(150, "lb"),
  10393. name: "Back",
  10394. image: {
  10395. source: "./media/characters/ilisha-devya/back.svg",
  10396. extra: 1,
  10397. bottom: 0.015
  10398. }
  10399. },
  10400. },
  10401. [
  10402. {
  10403. name: "Macro",
  10404. height: math.unit(500, "feet"),
  10405. default: true
  10406. },
  10407. {
  10408. name: "Megamacro",
  10409. height: math.unit(10, "miles")
  10410. },
  10411. {
  10412. name: "Gigamacro",
  10413. height: math.unit(100000, "miles")
  10414. },
  10415. {
  10416. name: "Examacro",
  10417. height: math.unit(1e9, "lightyears")
  10418. },
  10419. {
  10420. name: "Omniversal",
  10421. height: math.unit(1e33, "lightyears")
  10422. },
  10423. {
  10424. name: "Beyond Infinite",
  10425. height: math.unit(1e100, "lightyears")
  10426. },
  10427. ]
  10428. ))
  10429. characterMakers.push(() => makeCharacter(
  10430. { name: "Mira" },
  10431. {
  10432. Side: {
  10433. height: math.unit(6, "feet"),
  10434. weight: math.unit(150, "lb"),
  10435. name: "Side",
  10436. image: {
  10437. source: "./media/characters/mira/side.svg",
  10438. extra: 900 / 799,
  10439. bottom: 0.02
  10440. }
  10441. },
  10442. },
  10443. [
  10444. {
  10445. name: "Human Size",
  10446. height: math.unit(6, "feet")
  10447. },
  10448. {
  10449. name: "Macro",
  10450. height: math.unit(100, "feet"),
  10451. default: true
  10452. },
  10453. {
  10454. name: "Megamacro",
  10455. height: math.unit(10, "miles")
  10456. },
  10457. {
  10458. name: "Gigamacro",
  10459. height: math.unit(25000, "miles")
  10460. },
  10461. {
  10462. name: "Teramacro",
  10463. height: math.unit(300, "AU")
  10464. },
  10465. {
  10466. name: "Full Size",
  10467. height: math.unit(4.5e10, "lightyears")
  10468. },
  10469. ]
  10470. ))
  10471. characterMakers.push(() => makeCharacter(
  10472. { name: "Holly" },
  10473. {
  10474. front: {
  10475. height: math.unit(6, "feet"),
  10476. weight: math.unit(150, "lb"),
  10477. name: "Front",
  10478. image: {
  10479. source: "./media/characters/holly/front.svg",
  10480. extra: 639 / 606
  10481. }
  10482. },
  10483. back: {
  10484. height: math.unit(6, "feet"),
  10485. weight: math.unit(150, "lb"),
  10486. name: "Back",
  10487. image: {
  10488. source: "./media/characters/holly/back.svg",
  10489. extra: 623 / 598
  10490. }
  10491. },
  10492. frontWorking: {
  10493. height: math.unit(6, "feet"),
  10494. weight: math.unit(150, "lb"),
  10495. name: "Front (Working)",
  10496. image: {
  10497. source: "./media/characters/holly/front-working.svg",
  10498. extra: 607 / 577,
  10499. bottom: 0.048
  10500. }
  10501. },
  10502. },
  10503. [
  10504. {
  10505. name: "Normal",
  10506. height: math.unit(12 + 3 / 12, "feet"),
  10507. default: true
  10508. },
  10509. ]
  10510. ))
  10511. characterMakers.push(() => makeCharacter(
  10512. { name: "Porter" },
  10513. {
  10514. front: {
  10515. height: math.unit(6, "feet"),
  10516. weight: math.unit(150, "lb"),
  10517. name: "Front",
  10518. image: {
  10519. source: "./media/characters/porter/front.svg",
  10520. extra: 1,
  10521. bottom: 0.01
  10522. }
  10523. },
  10524. frontRobes: {
  10525. height: math.unit(6, "feet"),
  10526. weight: math.unit(150, "lb"),
  10527. name: "Front (Robes)",
  10528. image: {
  10529. source: "./media/characters/porter/front-robes.svg",
  10530. extra: 1.01,
  10531. bottom: 0.01
  10532. }
  10533. },
  10534. },
  10535. [
  10536. {
  10537. name: "Normal",
  10538. height: math.unit(11 + 9 / 12, "feet"),
  10539. default: true
  10540. },
  10541. ]
  10542. ))
  10543. characterMakers.push(() => makeCharacter(
  10544. { name: "Lucy" },
  10545. {
  10546. legendary: {
  10547. height: math.unit(6, "feet"),
  10548. weight: math.unit(150, "lb"),
  10549. name: "Legendary",
  10550. image: {
  10551. source: "./media/characters/lucy/legendary.svg",
  10552. extra: 1355 / 1100,
  10553. bottom: 0.045
  10554. }
  10555. },
  10556. },
  10557. [
  10558. {
  10559. name: "Legendary",
  10560. height: math.unit(86882 * 2, "miles"),
  10561. default: true
  10562. },
  10563. ]
  10564. ))
  10565. characterMakers.push(() => makeCharacter(
  10566. { name: "Drusilla" },
  10567. {
  10568. front: {
  10569. height: math.unit(6, "feet"),
  10570. weight: math.unit(150, "lb"),
  10571. name: "Front",
  10572. image: {
  10573. source: "./media/characters/drusilla/front.svg",
  10574. extra: 678 / 635,
  10575. bottom: 0.03
  10576. }
  10577. },
  10578. back: {
  10579. height: math.unit(6, "feet"),
  10580. weight: math.unit(150, "lb"),
  10581. name: "Back",
  10582. image: {
  10583. source: "./media/characters/drusilla/back.svg",
  10584. extra: 678 / 635,
  10585. bottom: 0.005
  10586. }
  10587. },
  10588. },
  10589. [
  10590. {
  10591. name: "Macro",
  10592. height: math.unit(100, "feet")
  10593. },
  10594. {
  10595. name: "Canon Height",
  10596. height: math.unit(2000, "feet"),
  10597. default: true
  10598. },
  10599. ]
  10600. ))
  10601. characterMakers.push(() => makeCharacter(
  10602. { name: "Renard Thatch" },
  10603. {
  10604. front: {
  10605. height: math.unit(6, "feet"),
  10606. weight: math.unit(180, "lb"),
  10607. name: "Front",
  10608. image: {
  10609. source: "./media/characters/renard-thatch/front.svg",
  10610. extra: 2411 / 2275,
  10611. bottom: 0.01
  10612. }
  10613. },
  10614. frontPosing: {
  10615. height: math.unit(6, "feet"),
  10616. weight: math.unit(180, "lb"),
  10617. name: "Front (Posing)",
  10618. image: {
  10619. source: "./media/characters/renard-thatch/front-posing.svg",
  10620. extra: 2381 / 2261,
  10621. bottom: 0.01
  10622. }
  10623. },
  10624. back: {
  10625. height: math.unit(6, "feet"),
  10626. weight: math.unit(180, "lb"),
  10627. name: "Back",
  10628. image: {
  10629. source: "./media/characters/renard-thatch/back.svg",
  10630. extra: 2428 / 2288
  10631. }
  10632. },
  10633. },
  10634. [
  10635. {
  10636. name: "Micro",
  10637. height: math.unit(3, "inches")
  10638. },
  10639. {
  10640. name: "Default",
  10641. height: math.unit(6, "feet"),
  10642. default: true
  10643. },
  10644. {
  10645. name: "Macro",
  10646. height: math.unit(75, "feet")
  10647. },
  10648. ]
  10649. ))
  10650. characterMakers.push(() => makeCharacter(
  10651. { name: "Sekvra" },
  10652. {
  10653. front: {
  10654. height: math.unit(1450, "feet"),
  10655. weight: math.unit(1.21e6, "tons"),
  10656. name: "Front",
  10657. image: {
  10658. source: "./media/characters/sekvra/front.svg",
  10659. extra: 1,
  10660. bottom: 0.03
  10661. }
  10662. },
  10663. frontClothed: {
  10664. height: math.unit(1450, "feet"),
  10665. weight: math.unit(1.21e6, "tons"),
  10666. name: "Front (Clothed)",
  10667. image: {
  10668. source: "./media/characters/sekvra/front-clothed.svg",
  10669. extra: 1,
  10670. bottom: 0.03
  10671. }
  10672. },
  10673. side: {
  10674. height: math.unit(1450, "feet"),
  10675. weight: math.unit(1.21e6, "tons"),
  10676. name: "Side",
  10677. image: {
  10678. source: "./media/characters/sekvra/side.svg",
  10679. extra: 1,
  10680. bottom: 0.025
  10681. }
  10682. },
  10683. back: {
  10684. height: math.unit(1450, "feet"),
  10685. weight: math.unit(1.21e6, "tons"),
  10686. name: "Back",
  10687. image: {
  10688. source: "./media/characters/sekvra/back.svg",
  10689. extra: 1,
  10690. bottom: 0.005
  10691. }
  10692. },
  10693. },
  10694. [
  10695. {
  10696. name: "Macro",
  10697. height: math.unit(1450, "feet"),
  10698. default: true
  10699. },
  10700. {
  10701. name: "Megamacro",
  10702. height: math.unit(15000, "feet")
  10703. },
  10704. ]
  10705. ))
  10706. characterMakers.push(() => makeCharacter(
  10707. { name: "Carmine" },
  10708. {
  10709. front: {
  10710. height: math.unit(6, "feet"),
  10711. weight: math.unit(150, "lb"),
  10712. name: "Front",
  10713. image: {
  10714. source: "./media/characters/carmine/front.svg",
  10715. extra: 1,
  10716. bottom: 0.035
  10717. }
  10718. },
  10719. frontArmor: {
  10720. height: math.unit(6, "feet"),
  10721. weight: math.unit(150, "lb"),
  10722. name: "Front (Armor)",
  10723. image: {
  10724. source: "./media/characters/carmine/front-armor.svg",
  10725. extra: 1,
  10726. bottom: 0.035
  10727. }
  10728. },
  10729. },
  10730. [
  10731. {
  10732. name: "Large",
  10733. height: math.unit(1, "mile")
  10734. },
  10735. {
  10736. name: "Huge",
  10737. height: math.unit(40, "miles"),
  10738. default: true
  10739. },
  10740. {
  10741. name: "Colossal",
  10742. height: math.unit(2500, "miles")
  10743. },
  10744. ]
  10745. ))
  10746. characterMakers.push(() => makeCharacter(
  10747. { name: "Elyssia" },
  10748. {
  10749. front: {
  10750. height: math.unit(6, "feet"),
  10751. weight: math.unit(150, "lb"),
  10752. name: "Front",
  10753. image: {
  10754. source: "./media/characters/elyssia/front.svg",
  10755. extra: 2201 / 2035,
  10756. bottom: 0.05
  10757. }
  10758. },
  10759. frontClothed: {
  10760. height: math.unit(6, "feet"),
  10761. weight: math.unit(150, "lb"),
  10762. name: "Front (Clothed)",
  10763. image: {
  10764. source: "./media/characters/elyssia/front-clothed.svg",
  10765. extra: 2201 / 2035,
  10766. bottom: 0.05
  10767. }
  10768. },
  10769. back: {
  10770. height: math.unit(6, "feet"),
  10771. weight: math.unit(150, "lb"),
  10772. name: "Back",
  10773. image: {
  10774. source: "./media/characters/elyssia/back.svg",
  10775. extra: 2201 / 2035,
  10776. bottom: 0.013
  10777. }
  10778. },
  10779. },
  10780. [
  10781. {
  10782. name: "Smaller",
  10783. height: math.unit(150, "feet")
  10784. },
  10785. {
  10786. name: "Standard",
  10787. height: math.unit(1400, "feet"),
  10788. default: true
  10789. },
  10790. {
  10791. name: "Distracted",
  10792. height: math.unit(15000, "feet")
  10793. },
  10794. ]
  10795. ))
  10796. characterMakers.push(() => makeCharacter(
  10797. { name: "Geno Maxwell" },
  10798. {
  10799. front: {
  10800. height: math.unit(7 + 4 / 12, "feet"),
  10801. weight: math.unit(500, "lb"),
  10802. name: "Front",
  10803. image: {
  10804. source: "./media/characters/geno-maxwell/front.svg",
  10805. extra: 2207 / 2040,
  10806. bottom: 0.015
  10807. }
  10808. },
  10809. },
  10810. [
  10811. {
  10812. name: "Micro",
  10813. height: math.unit(3, "inches")
  10814. },
  10815. {
  10816. name: "Normal",
  10817. height: math.unit(7 + 4 / 12, "feet"),
  10818. default: true
  10819. },
  10820. {
  10821. name: "Macro",
  10822. height: math.unit(220, "feet")
  10823. },
  10824. {
  10825. name: "Megamacro",
  10826. height: math.unit(11, "miles")
  10827. },
  10828. ]
  10829. ))
  10830. characterMakers.push(() => makeCharacter(
  10831. { name: "Regena Maxwell" },
  10832. {
  10833. front: {
  10834. height: math.unit(7 + 4 / 12, "feet"),
  10835. weight: math.unit(500, "lb"),
  10836. name: "Front",
  10837. image: {
  10838. source: "./media/characters/regena-maxwell/front.svg",
  10839. extra: 3115 / 2770,
  10840. bottom: 0.02
  10841. }
  10842. },
  10843. },
  10844. [
  10845. {
  10846. name: "Normal",
  10847. height: math.unit(7 + 4 / 12, "feet"),
  10848. default: true
  10849. },
  10850. {
  10851. name: "Macro",
  10852. height: math.unit(220, "feet")
  10853. },
  10854. {
  10855. name: "Megamacro",
  10856. height: math.unit(11, "miles")
  10857. },
  10858. ]
  10859. ))
  10860. characterMakers.push(() => makeCharacter(
  10861. { name: "XGlidingDragonX" },
  10862. {
  10863. front: {
  10864. height: math.unit(6, "feet"),
  10865. weight: math.unit(150, "lb"),
  10866. name: "Front",
  10867. image: {
  10868. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10869. extra: 860 / 690,
  10870. bottom: 0.03
  10871. }
  10872. },
  10873. },
  10874. [
  10875. {
  10876. name: "Normal",
  10877. height: math.unit(1.7, "meters"),
  10878. default: true
  10879. },
  10880. ]
  10881. ))
  10882. characterMakers.push(() => makeCharacter(
  10883. { name: "Quilly" },
  10884. {
  10885. front: {
  10886. height: math.unit(6, "feet"),
  10887. weight: math.unit(150, "lb"),
  10888. name: "Front",
  10889. image: {
  10890. source: "./media/characters/quilly/front.svg",
  10891. extra: 890 / 776
  10892. }
  10893. },
  10894. },
  10895. [
  10896. {
  10897. name: "Gigamacro",
  10898. height: math.unit(404090, "miles"),
  10899. default: true
  10900. },
  10901. ]
  10902. ))
  10903. characterMakers.push(() => makeCharacter(
  10904. { name: "Tempest" },
  10905. {
  10906. front: {
  10907. height: math.unit(7 + 8 / 12, "feet"),
  10908. weight: math.unit(350, "lb"),
  10909. name: "Front",
  10910. image: {
  10911. source: "./media/characters/tempest/front.svg",
  10912. extra: 1175 / 1086,
  10913. bottom: 0.02
  10914. }
  10915. },
  10916. },
  10917. [
  10918. {
  10919. name: "Normal",
  10920. height: math.unit(7 + 8 / 12, "feet"),
  10921. default: true
  10922. },
  10923. ]
  10924. ))
  10925. characterMakers.push(() => makeCharacter(
  10926. { name: "Rodger" },
  10927. {
  10928. side: {
  10929. height: math.unit(4 + 5 / 12, "feet"),
  10930. weight: math.unit(80, "lb"),
  10931. name: "Side",
  10932. image: {
  10933. source: "./media/characters/rodger/side.svg",
  10934. extra: 1235 / 1118
  10935. }
  10936. },
  10937. },
  10938. [
  10939. {
  10940. name: "Micro",
  10941. height: math.unit(1, "inch")
  10942. },
  10943. {
  10944. name: "Normal",
  10945. height: math.unit(4 + 5 / 12, "feet"),
  10946. default: true
  10947. },
  10948. {
  10949. name: "Macro",
  10950. height: math.unit(120, "feet")
  10951. },
  10952. ]
  10953. ))
  10954. characterMakers.push(() => makeCharacter(
  10955. { name: "Danyel" },
  10956. {
  10957. front: {
  10958. height: math.unit(6, "feet"),
  10959. weight: math.unit(150, "lb"),
  10960. name: "Front",
  10961. image: {
  10962. source: "./media/characters/danyel/front.svg",
  10963. extra: 1185 / 1123,
  10964. bottom: 0.05
  10965. }
  10966. },
  10967. },
  10968. [
  10969. {
  10970. name: "Shrunken",
  10971. height: math.unit(0.5, "mm")
  10972. },
  10973. {
  10974. name: "Micro",
  10975. height: math.unit(1, "mm"),
  10976. default: true
  10977. },
  10978. {
  10979. name: "Upsized",
  10980. height: math.unit(5 + 5 / 12, "feet")
  10981. },
  10982. ]
  10983. ))
  10984. characterMakers.push(() => makeCharacter(
  10985. { name: "Vivian Bijoux" },
  10986. {
  10987. front: {
  10988. height: math.unit(5 + 6 / 12, "feet"),
  10989. weight: math.unit(200, "lb"),
  10990. name: "Front",
  10991. image: {
  10992. source: "./media/characters/vivian-bijoux/front.svg",
  10993. extra: 1,
  10994. bottom: 0.072
  10995. }
  10996. },
  10997. },
  10998. [
  10999. {
  11000. name: "Normal",
  11001. height: math.unit(5 + 6 / 12, "feet"),
  11002. default: true
  11003. },
  11004. {
  11005. name: "Bad Dream",
  11006. height: math.unit(500, "feet")
  11007. },
  11008. {
  11009. name: "Nightmare",
  11010. height: math.unit(500, "miles")
  11011. },
  11012. ]
  11013. ))
  11014. characterMakers.push(() => makeCharacter(
  11015. { name: "Zeta" },
  11016. {
  11017. front: {
  11018. height: math.unit(6 + 1 / 12, "feet"),
  11019. weight: math.unit(260, "lb"),
  11020. name: "Front",
  11021. image: {
  11022. source: "./media/characters/zeta/front.svg",
  11023. extra: 1968 / 1889,
  11024. bottom: 0.06
  11025. }
  11026. },
  11027. back: {
  11028. height: math.unit(6 + 1 / 12, "feet"),
  11029. weight: math.unit(260, "lb"),
  11030. name: "Back",
  11031. image: {
  11032. source: "./media/characters/zeta/back.svg",
  11033. extra: 1944 / 1858,
  11034. bottom: 0.03
  11035. }
  11036. },
  11037. hand: {
  11038. height: math.unit(1.112, "feet"),
  11039. name: "Hand",
  11040. image: {
  11041. source: "./media/characters/zeta/hand.svg"
  11042. }
  11043. },
  11044. foot: {
  11045. height: math.unit(1.48, "feet"),
  11046. name: "Foot",
  11047. image: {
  11048. source: "./media/characters/zeta/foot.svg"
  11049. }
  11050. },
  11051. },
  11052. [
  11053. {
  11054. name: "Micro",
  11055. height: math.unit(6, "inches")
  11056. },
  11057. {
  11058. name: "Normal",
  11059. height: math.unit(6 + 1 / 12, "feet"),
  11060. default: true
  11061. },
  11062. {
  11063. name: "Macro",
  11064. height: math.unit(20, "feet")
  11065. },
  11066. ]
  11067. ))
  11068. characterMakers.push(() => makeCharacter(
  11069. { name: "Jamie Larsen" },
  11070. {
  11071. front: {
  11072. height: math.unit(6, "feet"),
  11073. weight: math.unit(150, "lb"),
  11074. name: "Front",
  11075. image: {
  11076. source: "./media/characters/jamie-larsen/front.svg",
  11077. extra: 962 / 933,
  11078. bottom: 0.02
  11079. }
  11080. },
  11081. back: {
  11082. height: math.unit(6, "feet"),
  11083. weight: math.unit(150, "lb"),
  11084. name: "Back",
  11085. image: {
  11086. source: "./media/characters/jamie-larsen/back.svg",
  11087. extra: 997 / 946
  11088. }
  11089. },
  11090. },
  11091. [
  11092. {
  11093. name: "Macro",
  11094. height: math.unit(28 + 7 / 12, "feet"),
  11095. default: true
  11096. },
  11097. {
  11098. name: "Macro+",
  11099. height: math.unit(180, "feet")
  11100. },
  11101. {
  11102. name: "Megamacro",
  11103. height: math.unit(10, "miles")
  11104. },
  11105. {
  11106. name: "Gigamacro",
  11107. height: math.unit(200000, "miles")
  11108. },
  11109. ]
  11110. ))
  11111. characterMakers.push(() => makeCharacter(
  11112. { name: "Vance" },
  11113. {
  11114. front: {
  11115. height: math.unit(6, "feet"),
  11116. weight: math.unit(120, "lb"),
  11117. name: "Front",
  11118. image: {
  11119. source: "./media/characters/vance/front.svg",
  11120. extra: 1980 / 1890,
  11121. bottom: 0.09
  11122. }
  11123. },
  11124. back: {
  11125. height: math.unit(6, "feet"),
  11126. weight: math.unit(120, "lb"),
  11127. name: "Back",
  11128. image: {
  11129. source: "./media/characters/vance/back.svg",
  11130. extra: 2081 / 1994,
  11131. bottom: 0.014
  11132. }
  11133. },
  11134. hand: {
  11135. height: math.unit(0.88, "feet"),
  11136. name: "Hand",
  11137. image: {
  11138. source: "./media/characters/vance/hand.svg"
  11139. }
  11140. },
  11141. foot: {
  11142. height: math.unit(0.64, "feet"),
  11143. name: "Foot",
  11144. image: {
  11145. source: "./media/characters/vance/foot.svg"
  11146. }
  11147. },
  11148. },
  11149. [
  11150. {
  11151. name: "Small",
  11152. height: math.unit(90, "feet"),
  11153. default: true
  11154. },
  11155. {
  11156. name: "Macro",
  11157. height: math.unit(100, "meters")
  11158. },
  11159. {
  11160. name: "Megamacro",
  11161. height: math.unit(15, "miles")
  11162. },
  11163. ]
  11164. ))
  11165. characterMakers.push(() => makeCharacter(
  11166. { name: "Xochitl" },
  11167. {
  11168. front: {
  11169. height: math.unit(6, "feet"),
  11170. weight: math.unit(180, "lb"),
  11171. name: "Front",
  11172. image: {
  11173. source: "./media/characters/xochitl/front.svg",
  11174. extra: 2297 / 2261,
  11175. bottom: 0.065
  11176. }
  11177. },
  11178. back: {
  11179. height: math.unit(6, "feet"),
  11180. weight: math.unit(180, "lb"),
  11181. name: "Back",
  11182. image: {
  11183. source: "./media/characters/xochitl/back.svg",
  11184. extra: 2386 / 2354,
  11185. bottom: 0.01
  11186. }
  11187. },
  11188. foot: {
  11189. height: math.unit(6 / 5 * 1.15, "feet"),
  11190. weight: math.unit(150, "lb"),
  11191. name: "Foot",
  11192. image: {
  11193. source: "./media/characters/xochitl/foot.svg"
  11194. }
  11195. },
  11196. },
  11197. [
  11198. {
  11199. name: "Macro",
  11200. height: math.unit(80, "feet")
  11201. },
  11202. {
  11203. name: "Macro+",
  11204. height: math.unit(400, "feet"),
  11205. default: true
  11206. },
  11207. {
  11208. name: "Gigamacro",
  11209. height: math.unit(80000, "miles")
  11210. },
  11211. {
  11212. name: "Gigamacro+",
  11213. height: math.unit(400000, "miles")
  11214. },
  11215. {
  11216. name: "Teramacro",
  11217. height: math.unit(300, "AU")
  11218. },
  11219. ]
  11220. ))
  11221. characterMakers.push(() => makeCharacter(
  11222. { name: "Vincent" },
  11223. {
  11224. front: {
  11225. height: math.unit(6, "feet"),
  11226. weight: math.unit(150, "lb"),
  11227. name: "Front",
  11228. image: {
  11229. source: "./media/characters/vincent/front.svg",
  11230. extra: 1130 / 1080,
  11231. bottom: 0.055
  11232. }
  11233. },
  11234. beak: {
  11235. height: math.unit(6 * 0.1, "feet"),
  11236. name: "Beak",
  11237. image: {
  11238. source: "./media/characters/vincent/beak.svg"
  11239. }
  11240. },
  11241. hand: {
  11242. height: math.unit(6 * 0.85, "feet"),
  11243. weight: math.unit(150, "lb"),
  11244. name: "Hand",
  11245. image: {
  11246. source: "./media/characters/vincent/hand.svg"
  11247. }
  11248. },
  11249. foot: {
  11250. height: math.unit(6 * 0.19, "feet"),
  11251. weight: math.unit(150, "lb"),
  11252. name: "Foot",
  11253. image: {
  11254. source: "./media/characters/vincent/foot.svg"
  11255. }
  11256. },
  11257. },
  11258. [
  11259. {
  11260. name: "Base",
  11261. height: math.unit(6 + 5 / 12, "feet"),
  11262. default: true
  11263. },
  11264. {
  11265. name: "Macro",
  11266. height: math.unit(300, "feet")
  11267. },
  11268. {
  11269. name: "Megamacro",
  11270. height: math.unit(2, "miles")
  11271. },
  11272. {
  11273. name: "Gigamacro",
  11274. height: math.unit(1000, "miles")
  11275. },
  11276. ]
  11277. ))
  11278. characterMakers.push(() => makeCharacter(
  11279. { name: "Jay" },
  11280. {
  11281. front: {
  11282. height: math.unit(6 + 2 / 12, "feet"),
  11283. weight: math.unit(265, "lb"),
  11284. name: "Front",
  11285. image: {
  11286. source: "./media/characters/jay/front.svg",
  11287. extra: 1510 / 1430,
  11288. bottom: 0.042
  11289. }
  11290. },
  11291. back: {
  11292. height: math.unit(6 + 2 / 12, "feet"),
  11293. weight: math.unit(265, "lb"),
  11294. name: "Back",
  11295. image: {
  11296. source: "./media/characters/jay/back.svg",
  11297. extra: 1510 / 1430,
  11298. bottom: 0.025
  11299. }
  11300. },
  11301. clothed: {
  11302. height: math.unit(6 + 2 / 12, "feet"),
  11303. weight: math.unit(265, "lb"),
  11304. name: "Front (Clothed)",
  11305. image: {
  11306. source: "./media/characters/jay/clothed.svg",
  11307. extra: 744 / 699,
  11308. bottom: 0.043
  11309. }
  11310. },
  11311. head: {
  11312. height: math.unit(1.772, "feet"),
  11313. name: "Head",
  11314. image: {
  11315. source: "./media/characters/jay/head.svg"
  11316. }
  11317. },
  11318. sizeRay: {
  11319. height: math.unit(1.331, "feet"),
  11320. name: "Size Ray",
  11321. image: {
  11322. source: "./media/characters/jay/size-ray.svg"
  11323. }
  11324. },
  11325. },
  11326. [
  11327. {
  11328. name: "Micro",
  11329. height: math.unit(1, "inch")
  11330. },
  11331. {
  11332. name: "Normal",
  11333. height: math.unit(6 + 2 / 12, "feet"),
  11334. default: true
  11335. },
  11336. {
  11337. name: "Macro",
  11338. height: math.unit(1, "mile")
  11339. },
  11340. {
  11341. name: "Megamacro",
  11342. height: math.unit(100, "miles")
  11343. },
  11344. ]
  11345. ))
  11346. characterMakers.push(() => makeCharacter(
  11347. { name: "Coatl" },
  11348. {
  11349. front: {
  11350. height: math.unit(2, "meters"),
  11351. weight: math.unit(500, "kg"),
  11352. name: "Front",
  11353. image: {
  11354. source: "./media/characters/coatl/front.svg",
  11355. extra: 3948 / 3500,
  11356. bottom: 0.082
  11357. }
  11358. },
  11359. },
  11360. [
  11361. {
  11362. name: "Normal",
  11363. height: math.unit(4, "meters")
  11364. },
  11365. {
  11366. name: "Macro",
  11367. height: math.unit(100, "meters"),
  11368. default: true
  11369. },
  11370. {
  11371. name: "Macro+",
  11372. height: math.unit(300, "meters")
  11373. },
  11374. {
  11375. name: "Megamacro",
  11376. height: math.unit(3, "gigameters")
  11377. },
  11378. {
  11379. name: "Megamacro+",
  11380. height: math.unit(300, "terameters")
  11381. },
  11382. {
  11383. name: "Megamacro++",
  11384. height: math.unit(3, "lightyears")
  11385. },
  11386. ]
  11387. ))
  11388. characterMakers.push(() => makeCharacter(
  11389. { name: "Shiroryu" },
  11390. {
  11391. front: {
  11392. height: math.unit(6, "feet"),
  11393. weight: math.unit(50, "kg"),
  11394. name: "front",
  11395. image: {
  11396. source: "./media/characters/shiroryu/front.svg",
  11397. extra: 1990 / 1935
  11398. }
  11399. },
  11400. },
  11401. [
  11402. {
  11403. name: "Mortal Mingling",
  11404. height: math.unit(3, "meters")
  11405. },
  11406. {
  11407. name: "Kaiju-ish",
  11408. height: math.unit(250, "meters")
  11409. },
  11410. {
  11411. name: "Somewhat Godly",
  11412. height: math.unit(400, "km"),
  11413. default: true
  11414. },
  11415. {
  11416. name: "Planetary",
  11417. height: math.unit(300, "megameters")
  11418. },
  11419. {
  11420. name: "Galaxy-dwarfing",
  11421. height: math.unit(450, "kiloparsecs")
  11422. },
  11423. {
  11424. name: "Universe Eater",
  11425. height: math.unit(150, "gigaparsecs")
  11426. },
  11427. {
  11428. name: "Almost Immeasurable",
  11429. height: math.unit(1.3e266, "yottaparsecs")
  11430. },
  11431. ]
  11432. ))
  11433. characterMakers.push(() => makeCharacter(
  11434. { name: "Umeko" },
  11435. {
  11436. front: {
  11437. height: math.unit(6, "feet"),
  11438. weight: math.unit(150, "lb"),
  11439. name: "Front",
  11440. image: {
  11441. source: "./media/characters/umeko/front.svg",
  11442. extra: 1,
  11443. bottom: 0.019
  11444. }
  11445. },
  11446. frontArmored: {
  11447. height: math.unit(6, "feet"),
  11448. weight: math.unit(150, "lb"),
  11449. name: "Front (Armored)",
  11450. image: {
  11451. source: "./media/characters/umeko/front-armored.svg",
  11452. extra: 1,
  11453. bottom: 0.021
  11454. }
  11455. },
  11456. },
  11457. [
  11458. {
  11459. name: "Macro",
  11460. height: math.unit(220, "feet"),
  11461. default: true
  11462. },
  11463. {
  11464. name: "Guardian Dragon",
  11465. height: math.unit(50, "miles")
  11466. },
  11467. {
  11468. name: "Cosmic",
  11469. height: math.unit(800000, "miles")
  11470. },
  11471. ]
  11472. ))
  11473. characterMakers.push(() => makeCharacter(
  11474. { name: "Cassidy" },
  11475. {
  11476. front: {
  11477. height: math.unit(6, "feet"),
  11478. weight: math.unit(150, "lb"),
  11479. name: "Front",
  11480. image: {
  11481. source: "./media/characters/cassidy/front.svg",
  11482. extra: 1,
  11483. bottom: 0.043
  11484. }
  11485. },
  11486. },
  11487. [
  11488. {
  11489. name: "Canon Height",
  11490. height: math.unit(120, "feet"),
  11491. default: true
  11492. },
  11493. {
  11494. name: "Macro+",
  11495. height: math.unit(400, "feet")
  11496. },
  11497. {
  11498. name: "Macro++",
  11499. height: math.unit(4000, "feet")
  11500. },
  11501. {
  11502. name: "Megamacro",
  11503. height: math.unit(3, "miles")
  11504. },
  11505. ]
  11506. ))
  11507. characterMakers.push(() => makeCharacter(
  11508. { name: "Isaac" },
  11509. {
  11510. front: {
  11511. height: math.unit(6, "feet"),
  11512. weight: math.unit(150, "lb"),
  11513. name: "Front",
  11514. image: {
  11515. source: "./media/characters/isaac/front.svg",
  11516. extra: 896 / 815,
  11517. bottom: 0.11
  11518. }
  11519. },
  11520. },
  11521. [
  11522. {
  11523. name: "Human Size",
  11524. height: math.unit(8, "feet"),
  11525. default: true
  11526. },
  11527. {
  11528. name: "Macro",
  11529. height: math.unit(400, "feet")
  11530. },
  11531. {
  11532. name: "Megamacro",
  11533. height: math.unit(50, "miles")
  11534. },
  11535. {
  11536. name: "Canon Height",
  11537. height: math.unit(200, "AU")
  11538. },
  11539. ]
  11540. ))
  11541. characterMakers.push(() => makeCharacter(
  11542. { name: "Sleekit" },
  11543. {
  11544. front: {
  11545. height: math.unit(6, "feet"),
  11546. weight: math.unit(72, "kg"),
  11547. name: "Front",
  11548. image: {
  11549. source: "./media/characters/sleekit/front.svg",
  11550. extra: 4693 / 4487,
  11551. bottom: 0.012
  11552. }
  11553. },
  11554. },
  11555. [
  11556. {
  11557. name: "Minimum Height",
  11558. height: math.unit(10, "meters")
  11559. },
  11560. {
  11561. name: "Smaller",
  11562. height: math.unit(25, "meters")
  11563. },
  11564. {
  11565. name: "Larger",
  11566. height: math.unit(38, "meters"),
  11567. default: true
  11568. },
  11569. {
  11570. name: "Maximum height",
  11571. height: math.unit(100, "meters")
  11572. },
  11573. ]
  11574. ))
  11575. characterMakers.push(() => makeCharacter(
  11576. { name: "Nillia" },
  11577. {
  11578. front: {
  11579. height: math.unit(6, "feet"),
  11580. weight: math.unit(150, "lb"),
  11581. name: "Front",
  11582. image: {
  11583. source: "./media/characters/nillia/front.svg",
  11584. extra: 2195 / 2037,
  11585. bottom: 0.005
  11586. }
  11587. },
  11588. back: {
  11589. height: math.unit(6, "feet"),
  11590. weight: math.unit(150, "lb"),
  11591. name: "Back",
  11592. image: {
  11593. source: "./media/characters/nillia/back.svg",
  11594. extra: 2195 / 2037,
  11595. bottom: 0.005
  11596. }
  11597. },
  11598. },
  11599. [
  11600. {
  11601. name: "Canon Height",
  11602. height: math.unit(489, "feet"),
  11603. default: true
  11604. }
  11605. ]
  11606. ))
  11607. characterMakers.push(() => makeCharacter(
  11608. { name: "Mesmyriza" },
  11609. {
  11610. front: {
  11611. height: math.unit(6, "feet"),
  11612. weight: math.unit(150, "lb"),
  11613. name: "Front",
  11614. image: {
  11615. source: "./media/characters/mesmyriza/front.svg",
  11616. extra: 2067 / 1784,
  11617. bottom: 0.035
  11618. }
  11619. },
  11620. foot: {
  11621. height: math.unit(6 / (250 / 35), "feet"),
  11622. name: "Foot",
  11623. image: {
  11624. source: "./media/characters/mesmyriza/foot.svg"
  11625. }
  11626. },
  11627. },
  11628. [
  11629. {
  11630. name: "Macro",
  11631. height: math.unit(457, "meters"),
  11632. default: true
  11633. },
  11634. {
  11635. name: "Megamacro",
  11636. height: math.unit(8, "megameters")
  11637. },
  11638. ]
  11639. ))
  11640. characterMakers.push(() => makeCharacter(
  11641. { name: "Saudade" },
  11642. {
  11643. front: {
  11644. height: math.unit(6, "feet"),
  11645. weight: math.unit(250, "lb"),
  11646. name: "Front",
  11647. image: {
  11648. source: "./media/characters/saudade/front.svg",
  11649. extra: 1172 / 1139,
  11650. bottom: 0.035
  11651. }
  11652. },
  11653. },
  11654. [
  11655. {
  11656. name: "Micro",
  11657. height: math.unit(3, "inches")
  11658. },
  11659. {
  11660. name: "Normal",
  11661. height: math.unit(6, "feet"),
  11662. default: true
  11663. },
  11664. {
  11665. name: "Macro",
  11666. height: math.unit(50, "feet")
  11667. },
  11668. {
  11669. name: "Megamacro",
  11670. height: math.unit(2800, "feet")
  11671. },
  11672. ]
  11673. ))
  11674. characterMakers.push(() => makeCharacter(
  11675. { name: "Keireer" },
  11676. {
  11677. front: {
  11678. height: math.unit(5 + 4 / 12, "feet"),
  11679. weight: math.unit(100, "lb"),
  11680. name: "Front",
  11681. image: {
  11682. source: "./media/characters/keireer/front.svg",
  11683. extra: 716 / 666,
  11684. bottom: 0.05
  11685. }
  11686. },
  11687. },
  11688. [
  11689. {
  11690. name: "Normal",
  11691. height: math.unit(5 + 4 / 12, "feet"),
  11692. default: true
  11693. },
  11694. ]
  11695. ))
  11696. characterMakers.push(() => makeCharacter(
  11697. { name: "Mirja" },
  11698. {
  11699. front: {
  11700. height: math.unit(6, "feet"),
  11701. weight: math.unit(90, "kg"),
  11702. name: "Front",
  11703. image: {
  11704. source: "./media/characters/mirja/front.svg",
  11705. extra: 1789 / 1683,
  11706. bottom: 0.05
  11707. }
  11708. },
  11709. frontDressed: {
  11710. height: math.unit(6, "feet"),
  11711. weight: math.unit(90, "lb"),
  11712. name: "Front (Dressed)",
  11713. image: {
  11714. source: "./media/characters/mirja/front-dressed.svg",
  11715. extra: 1789 / 1683,
  11716. bottom: 0.05
  11717. }
  11718. },
  11719. back: {
  11720. height: math.unit(6, "feet"),
  11721. weight: math.unit(90, "lb"),
  11722. name: "Back",
  11723. image: {
  11724. source: "./media/characters/mirja/back.svg",
  11725. extra: 953 / 917,
  11726. bottom: 0.017
  11727. }
  11728. },
  11729. },
  11730. [
  11731. {
  11732. name: "\"Incognito\"",
  11733. height: math.unit(3, "meters")
  11734. },
  11735. {
  11736. name: "Strolling Size",
  11737. height: math.unit(15, "km")
  11738. },
  11739. {
  11740. name: "Larger Strolling Size",
  11741. height: math.unit(400, "km")
  11742. },
  11743. {
  11744. name: "Preferred Size",
  11745. height: math.unit(5000, "km")
  11746. },
  11747. {
  11748. name: "True Size",
  11749. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11750. default: true
  11751. },
  11752. ]
  11753. ))
  11754. characterMakers.push(() => makeCharacter(
  11755. { name: "Nightraver" },
  11756. {
  11757. front: {
  11758. height: math.unit(15, "feet"),
  11759. weight: math.unit(880, "kg"),
  11760. name: "Front",
  11761. image: {
  11762. source: "./media/characters/nightraver/front.svg",
  11763. extra: 2444 / 2160,
  11764. bottom: 0.027
  11765. }
  11766. },
  11767. back: {
  11768. height: math.unit(15, "feet"),
  11769. weight: math.unit(880, "kg"),
  11770. name: "Back",
  11771. image: {
  11772. source: "./media/characters/nightraver/back.svg",
  11773. extra: 2309 / 2180,
  11774. bottom: 0.005
  11775. }
  11776. },
  11777. sole: {
  11778. height: math.unit(2.878, "feet"),
  11779. name: "Sole",
  11780. image: {
  11781. source: "./media/characters/nightraver/sole.svg"
  11782. }
  11783. },
  11784. foot: {
  11785. height: math.unit(2.285, "feet"),
  11786. name: "Foot",
  11787. image: {
  11788. source: "./media/characters/nightraver/foot.svg"
  11789. }
  11790. },
  11791. maw: {
  11792. height: math.unit(2.67, "feet"),
  11793. name: "Maw",
  11794. image: {
  11795. source: "./media/characters/nightraver/maw.svg"
  11796. }
  11797. },
  11798. },
  11799. [
  11800. {
  11801. name: "Micro",
  11802. height: math.unit(1, "cm")
  11803. },
  11804. {
  11805. name: "Normal",
  11806. height: math.unit(15, "feet"),
  11807. default: true
  11808. },
  11809. {
  11810. name: "Macro",
  11811. height: math.unit(300, "feet")
  11812. },
  11813. {
  11814. name: "Megamacro",
  11815. height: math.unit(300, "miles")
  11816. },
  11817. {
  11818. name: "Gigamacro",
  11819. height: math.unit(10000, "miles")
  11820. },
  11821. ]
  11822. ))
  11823. characterMakers.push(() => makeCharacter(
  11824. { name: "Arc" },
  11825. {
  11826. side: {
  11827. height: math.unit(2, "inches"),
  11828. weight: math.unit(5, "grams"),
  11829. name: "Side",
  11830. image: {
  11831. source: "./media/characters/arc/side.svg"
  11832. }
  11833. },
  11834. },
  11835. [
  11836. {
  11837. name: "Micro",
  11838. height: math.unit(2, "inches"),
  11839. default: true
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Nebula Shahar" },
  11845. {
  11846. front: {
  11847. height: math.unit(1.1938, "meters"),
  11848. weight: math.unit(54, "kg"),
  11849. name: "Front",
  11850. image: {
  11851. source: "./media/characters/nebula-shahar/front.svg",
  11852. extra: 1642 / 1436,
  11853. bottom: 0.06
  11854. }
  11855. },
  11856. },
  11857. [
  11858. {
  11859. name: "Megamicro",
  11860. height: math.unit(0.3, "mm")
  11861. },
  11862. {
  11863. name: "Micro",
  11864. height: math.unit(3, "cm")
  11865. },
  11866. {
  11867. name: "Normal",
  11868. height: math.unit(138, "cm"),
  11869. default: true
  11870. },
  11871. {
  11872. name: "Macro",
  11873. height: math.unit(30, "m")
  11874. },
  11875. ]
  11876. ))
  11877. characterMakers.push(() => makeCharacter(
  11878. { name: "Shayla" },
  11879. {
  11880. front: {
  11881. height: math.unit(5.24, "feet"),
  11882. weight: math.unit(150, "lb"),
  11883. name: "Front",
  11884. image: {
  11885. source: "./media/characters/shayla/front.svg",
  11886. extra: 1512 / 1414,
  11887. bottom: 0.01
  11888. }
  11889. },
  11890. back: {
  11891. height: math.unit(5.24, "feet"),
  11892. weight: math.unit(150, "lb"),
  11893. name: "Back",
  11894. image: {
  11895. source: "./media/characters/shayla/back.svg",
  11896. extra: 1512 / 1414
  11897. }
  11898. },
  11899. hand: {
  11900. height: math.unit(0.7781496062992126, "feet"),
  11901. name: "Hand",
  11902. image: {
  11903. source: "./media/characters/shayla/hand.svg"
  11904. }
  11905. },
  11906. foot: {
  11907. height: math.unit(1.4206036745406823, "feet"),
  11908. name: "Foot",
  11909. image: {
  11910. source: "./media/characters/shayla/foot.svg"
  11911. }
  11912. },
  11913. },
  11914. [
  11915. {
  11916. name: "Micro",
  11917. height: math.unit(0.32, "feet")
  11918. },
  11919. {
  11920. name: "Normal",
  11921. height: math.unit(5.24, "feet"),
  11922. default: true
  11923. },
  11924. {
  11925. name: "Macro",
  11926. height: math.unit(492.12, "feet")
  11927. },
  11928. {
  11929. name: "Megamacro",
  11930. height: math.unit(186.41, "miles")
  11931. },
  11932. ]
  11933. ))
  11934. characterMakers.push(() => makeCharacter(
  11935. { name: "Pia Jr." },
  11936. {
  11937. front: {
  11938. height: math.unit(2.2, "m"),
  11939. weight: math.unit(120, "kg"),
  11940. name: "Front",
  11941. image: {
  11942. source: "./media/characters/pia-jr/front.svg",
  11943. extra: 1000 / 970,
  11944. bottom: 0.035
  11945. }
  11946. },
  11947. hand: {
  11948. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11949. name: "Hand",
  11950. image: {
  11951. source: "./media/characters/pia-jr/hand.svg"
  11952. }
  11953. },
  11954. paw: {
  11955. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11956. name: "Paw",
  11957. image: {
  11958. source: "./media/characters/pia-jr/paw.svg"
  11959. }
  11960. },
  11961. },
  11962. [
  11963. {
  11964. name: "Micro",
  11965. height: math.unit(1.2, "cm")
  11966. },
  11967. {
  11968. name: "Normal",
  11969. height: math.unit(2.2, "m"),
  11970. default: true
  11971. },
  11972. {
  11973. name: "Macro",
  11974. height: math.unit(180, "m")
  11975. },
  11976. {
  11977. name: "Megamacro",
  11978. height: math.unit(420, "km")
  11979. },
  11980. ]
  11981. ))
  11982. characterMakers.push(() => makeCharacter(
  11983. { name: "Pia Sr." },
  11984. {
  11985. front: {
  11986. height: math.unit(2, "m"),
  11987. weight: math.unit(115, "kg"),
  11988. name: "Front",
  11989. image: {
  11990. source: "./media/characters/pia-sr/front.svg",
  11991. extra: 760 / 730,
  11992. bottom: 0.015
  11993. }
  11994. },
  11995. back: {
  11996. height: math.unit(2, "m"),
  11997. weight: math.unit(115, "kg"),
  11998. name: "Back",
  11999. image: {
  12000. source: "./media/characters/pia-sr/back.svg",
  12001. extra: 760 / 730,
  12002. bottom: 0.01
  12003. }
  12004. },
  12005. hand: {
  12006. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12007. name: "Hand",
  12008. image: {
  12009. source: "./media/characters/pia-sr/hand.svg"
  12010. }
  12011. },
  12012. foot: {
  12013. height: math.unit(1.83, "feet"),
  12014. name: "Foot",
  12015. image: {
  12016. source: "./media/characters/pia-sr/foot.svg"
  12017. }
  12018. },
  12019. },
  12020. [
  12021. {
  12022. name: "Micro",
  12023. height: math.unit(88, "mm")
  12024. },
  12025. {
  12026. name: "Normal",
  12027. height: math.unit(2, "m"),
  12028. default: true
  12029. },
  12030. {
  12031. name: "Macro",
  12032. height: math.unit(200, "m")
  12033. },
  12034. {
  12035. name: "Megamacro",
  12036. height: math.unit(420, "km")
  12037. },
  12038. ]
  12039. ))
  12040. characterMakers.push(() => makeCharacter(
  12041. { name: "KIBIBYTE" },
  12042. {
  12043. front: {
  12044. height: math.unit(8 + 2 / 12, "feet"),
  12045. weight: math.unit(300, "lb"),
  12046. name: "Front",
  12047. image: {
  12048. source: "./media/characters/kibibyte/front.svg",
  12049. extra: 2221 / 2098,
  12050. bottom: 0.04
  12051. }
  12052. },
  12053. },
  12054. [
  12055. {
  12056. name: "Normal",
  12057. height: math.unit(8 + 2 / 12, "feet"),
  12058. default: true
  12059. },
  12060. {
  12061. name: "Socialable Macro",
  12062. height: math.unit(50, "feet")
  12063. },
  12064. {
  12065. name: "Macro",
  12066. height: math.unit(300, "feet")
  12067. },
  12068. {
  12069. name: "Megamacro",
  12070. height: math.unit(500, "miles")
  12071. },
  12072. ]
  12073. ))
  12074. characterMakers.push(() => makeCharacter(
  12075. { name: "Felix" },
  12076. {
  12077. front: {
  12078. height: math.unit(6, "feet"),
  12079. weight: math.unit(150, "lb"),
  12080. name: "Front",
  12081. image: {
  12082. source: "./media/characters/felix/front.svg",
  12083. extra: 762 / 722,
  12084. bottom: 0.02
  12085. }
  12086. },
  12087. frontClothed: {
  12088. height: math.unit(6, "feet"),
  12089. weight: math.unit(150, "lb"),
  12090. name: "Front (Clothed)",
  12091. image: {
  12092. source: "./media/characters/felix/front-clothed.svg",
  12093. extra: 762 / 722,
  12094. bottom: 0.02
  12095. }
  12096. },
  12097. },
  12098. [
  12099. {
  12100. name: "Normal",
  12101. height: math.unit(6 + 8 / 12, "feet"),
  12102. default: true
  12103. },
  12104. {
  12105. name: "Macro",
  12106. height: math.unit(2600, "feet")
  12107. },
  12108. {
  12109. name: "Megamacro",
  12110. height: math.unit(450, "miles")
  12111. },
  12112. ]
  12113. ))
  12114. characterMakers.push(() => makeCharacter(
  12115. { name: "Tobo" },
  12116. {
  12117. front: {
  12118. height: math.unit(6 + 1 / 12, "feet"),
  12119. weight: math.unit(250, "lb"),
  12120. name: "Front",
  12121. image: {
  12122. source: "./media/characters/tobo/front.svg",
  12123. extra: 608 / 586,
  12124. bottom: 0.023
  12125. }
  12126. },
  12127. back: {
  12128. height: math.unit(6 + 1 / 12, "feet"),
  12129. weight: math.unit(250, "lb"),
  12130. name: "Back",
  12131. image: {
  12132. source: "./media/characters/tobo/back.svg",
  12133. extra: 608 / 586
  12134. }
  12135. },
  12136. },
  12137. [
  12138. {
  12139. name: "Nano",
  12140. height: math.unit(2, "nm")
  12141. },
  12142. {
  12143. name: "Megamicro",
  12144. height: math.unit(0.1, "mm")
  12145. },
  12146. {
  12147. name: "Micro",
  12148. height: math.unit(1, "inch"),
  12149. default: true
  12150. },
  12151. {
  12152. name: "Human-sized",
  12153. height: math.unit(6 + 1 / 12, "feet")
  12154. },
  12155. {
  12156. name: "Macro",
  12157. height: math.unit(250, "feet")
  12158. },
  12159. {
  12160. name: "Megamacro",
  12161. height: math.unit(75, "miles")
  12162. },
  12163. {
  12164. name: "Texas-sized",
  12165. height: math.unit(750, "miles")
  12166. },
  12167. {
  12168. name: "Teramacro",
  12169. height: math.unit(50000, "miles")
  12170. },
  12171. ]
  12172. ))
  12173. characterMakers.push(() => makeCharacter(
  12174. { name: "Danny Kapowsky" },
  12175. {
  12176. front: {
  12177. height: math.unit(6, "feet"),
  12178. weight: math.unit(269, "lb"),
  12179. name: "Front",
  12180. image: {
  12181. source: "./media/characters/danny-kapowsky/front.svg",
  12182. extra: 766 / 736,
  12183. bottom: 0.044
  12184. }
  12185. },
  12186. back: {
  12187. height: math.unit(6, "feet"),
  12188. weight: math.unit(269, "lb"),
  12189. name: "Back",
  12190. image: {
  12191. source: "./media/characters/danny-kapowsky/back.svg",
  12192. extra: 797 / 760,
  12193. bottom: 0.025
  12194. }
  12195. },
  12196. },
  12197. [
  12198. {
  12199. name: "Macro",
  12200. height: math.unit(150, "feet"),
  12201. default: true
  12202. },
  12203. {
  12204. name: "Macro+",
  12205. height: math.unit(200, "feet")
  12206. },
  12207. {
  12208. name: "Macro++",
  12209. height: math.unit(300, "feet")
  12210. },
  12211. {
  12212. name: "Macro+++",
  12213. height: math.unit(400, "feet")
  12214. },
  12215. ]
  12216. ))
  12217. characterMakers.push(() => makeCharacter(
  12218. { name: "Finn" },
  12219. {
  12220. side: {
  12221. height: math.unit(6, "feet"),
  12222. weight: math.unit(170, "lb"),
  12223. name: "Side",
  12224. image: {
  12225. source: "./media/characters/finn/side.svg",
  12226. extra: 1953 / 1807,
  12227. bottom: 0.057
  12228. }
  12229. },
  12230. },
  12231. [
  12232. {
  12233. name: "Megamacro",
  12234. height: math.unit(14445, "feet"),
  12235. default: true
  12236. },
  12237. ]
  12238. ))
  12239. characterMakers.push(() => makeCharacter(
  12240. { name: "Roy" },
  12241. {
  12242. front: {
  12243. height: math.unit(5 + 6 / 12, "feet"),
  12244. weight: math.unit(125, "lb"),
  12245. name: "Front",
  12246. image: {
  12247. source: "./media/characters/roy/front.svg",
  12248. extra: 1,
  12249. bottom: 0.11
  12250. }
  12251. },
  12252. },
  12253. [
  12254. {
  12255. name: "Micro",
  12256. height: math.unit(3, "inches"),
  12257. default: true
  12258. },
  12259. {
  12260. name: "Normal",
  12261. height: math.unit(5 + 6 / 12, "feet")
  12262. },
  12263. {
  12264. name: "Lesser Macro",
  12265. height: math.unit(60, "feet")
  12266. },
  12267. {
  12268. name: "Greater Macro",
  12269. height: math.unit(120, "feet")
  12270. },
  12271. ]
  12272. ))
  12273. characterMakers.push(() => makeCharacter(
  12274. { name: "Aevsivs" },
  12275. {
  12276. front: {
  12277. height: math.unit(6, "feet"),
  12278. weight: math.unit(100, "lb"),
  12279. name: "Front",
  12280. image: {
  12281. source: "./media/characters/aevsivs/front.svg",
  12282. extra: 1,
  12283. bottom: 0.03
  12284. }
  12285. },
  12286. back: {
  12287. height: math.unit(6, "feet"),
  12288. weight: math.unit(100, "lb"),
  12289. name: "Back",
  12290. image: {
  12291. source: "./media/characters/aevsivs/back.svg"
  12292. }
  12293. },
  12294. },
  12295. [
  12296. {
  12297. name: "Micro",
  12298. height: math.unit(2, "inches"),
  12299. default: true
  12300. },
  12301. {
  12302. name: "Normal",
  12303. height: math.unit(5, "feet")
  12304. },
  12305. ]
  12306. ))
  12307. characterMakers.push(() => makeCharacter(
  12308. { name: "Hildegard" },
  12309. {
  12310. front: {
  12311. height: math.unit(5 + 7 / 12, "feet"),
  12312. weight: math.unit(159, "lb"),
  12313. name: "Front",
  12314. image: {
  12315. source: "./media/characters/hildegard/front.svg",
  12316. extra: 312 / 286,
  12317. bottom: 0.005
  12318. }
  12319. },
  12320. },
  12321. [
  12322. {
  12323. name: "Normal",
  12324. height: math.unit(5 + 7 / 12, "feet"),
  12325. default: true
  12326. },
  12327. ]
  12328. ))
  12329. characterMakers.push(() => makeCharacter(
  12330. { name: "Bernard & Wilder" },
  12331. {
  12332. bernard: {
  12333. height: math.unit(2 + 7 / 12, "feet"),
  12334. weight: math.unit(66, "lb"),
  12335. name: "Bernard",
  12336. rename: true,
  12337. image: {
  12338. source: "./media/characters/bernard-wilder/bernard.svg",
  12339. extra: 192 / 128,
  12340. bottom: 0.05
  12341. }
  12342. },
  12343. wilder: {
  12344. height: math.unit(5 + 8 / 12, "feet"),
  12345. weight: math.unit(143, "lb"),
  12346. name: "Wilder",
  12347. rename: true,
  12348. image: {
  12349. source: "./media/characters/bernard-wilder/wilder.svg",
  12350. extra: 361 / 312,
  12351. bottom: 0.02
  12352. }
  12353. },
  12354. },
  12355. [
  12356. {
  12357. name: "Normal",
  12358. height: math.unit(2 + 7 / 12, "feet"),
  12359. default: true
  12360. },
  12361. ]
  12362. ))
  12363. characterMakers.push(() => makeCharacter(
  12364. { name: "Hearth" },
  12365. {
  12366. anthro: {
  12367. height: math.unit(6 + 1 / 12, "feet"),
  12368. weight: math.unit(155, "lb"),
  12369. name: "Anthro",
  12370. image: {
  12371. source: "./media/characters/hearth/anthro.svg",
  12372. extra: 260 / 250,
  12373. bottom: 0.02
  12374. }
  12375. },
  12376. feral: {
  12377. height: math.unit(3.78, "feet"),
  12378. weight: math.unit(35, "kg"),
  12379. name: "Feral",
  12380. image: {
  12381. source: "./media/characters/hearth/feral.svg",
  12382. extra: 153 / 135,
  12383. bottom: 0.03
  12384. }
  12385. },
  12386. },
  12387. [
  12388. {
  12389. name: "Normal",
  12390. height: math.unit(6 + 1 / 12, "feet"),
  12391. default: true
  12392. },
  12393. ]
  12394. ))
  12395. characterMakers.push(() => makeCharacter(
  12396. { name: "Ingrid" },
  12397. {
  12398. front: {
  12399. height: math.unit(6, "feet"),
  12400. weight: math.unit(182, "lb"),
  12401. name: "Front",
  12402. image: {
  12403. source: "./media/characters/ingrid/front.svg",
  12404. extra: 294 / 268,
  12405. bottom: 0.027
  12406. }
  12407. },
  12408. },
  12409. [
  12410. {
  12411. name: "Normal",
  12412. height: math.unit(6, "feet"),
  12413. default: true
  12414. },
  12415. ]
  12416. ))
  12417. characterMakers.push(() => makeCharacter(
  12418. { name: "Malgam" },
  12419. {
  12420. eevee: {
  12421. height: math.unit(2 + 10 / 12, "feet"),
  12422. weight: math.unit(86, "lb"),
  12423. name: "Malgam",
  12424. image: {
  12425. source: "./media/characters/malgam/eevee.svg",
  12426. extra: 218 / 180,
  12427. bottom: 0.2
  12428. }
  12429. },
  12430. sylveon: {
  12431. height: math.unit(4, "feet"),
  12432. weight: math.unit(101, "lb"),
  12433. name: "Future Malgam",
  12434. rename: true,
  12435. image: {
  12436. source: "./media/characters/malgam/sylveon.svg",
  12437. extra: 371 / 325,
  12438. bottom: 0.015
  12439. }
  12440. },
  12441. gigantamax: {
  12442. height: math.unit(50, "feet"),
  12443. name: "Gigantamax Malgam",
  12444. rename: true,
  12445. image: {
  12446. source: "./media/characters/malgam/gigantamax.svg"
  12447. }
  12448. },
  12449. },
  12450. [
  12451. {
  12452. name: "Normal",
  12453. height: math.unit(2 + 10 / 12, "feet"),
  12454. default: true
  12455. },
  12456. ]
  12457. ))
  12458. characterMakers.push(() => makeCharacter(
  12459. { name: "Fleur" },
  12460. {
  12461. front: {
  12462. height: math.unit(5 + 11 / 12, "feet"),
  12463. weight: math.unit(188, "lb"),
  12464. name: "Front",
  12465. image: {
  12466. source: "./media/characters/fleur/front.svg",
  12467. extra: 309 / 283,
  12468. bottom: 0.007
  12469. }
  12470. },
  12471. },
  12472. [
  12473. {
  12474. name: "Normal",
  12475. height: math.unit(5 + 11 / 12, "feet"),
  12476. default: true
  12477. },
  12478. ]
  12479. ))
  12480. characterMakers.push(() => makeCharacter(
  12481. { name: "Jude" },
  12482. {
  12483. front: {
  12484. height: math.unit(5 + 4 / 12, "feet"),
  12485. weight: math.unit(122, "lb"),
  12486. name: "Front",
  12487. image: {
  12488. source: "./media/characters/jude/front.svg",
  12489. extra: 288 / 273,
  12490. bottom: 0.03
  12491. }
  12492. },
  12493. },
  12494. [
  12495. {
  12496. name: "Normal",
  12497. height: math.unit(5 + 4 / 12, "feet"),
  12498. default: true
  12499. },
  12500. ]
  12501. ))
  12502. characterMakers.push(() => makeCharacter(
  12503. { name: "Seara" },
  12504. {
  12505. front: {
  12506. height: math.unit(5 + 11 / 12, "feet"),
  12507. weight: math.unit(190, "lb"),
  12508. name: "Front",
  12509. image: {
  12510. source: "./media/characters/seara/front.svg",
  12511. extra: 1,
  12512. bottom: 0.05
  12513. }
  12514. },
  12515. },
  12516. [
  12517. {
  12518. name: "Normal",
  12519. height: math.unit(5 + 11 / 12, "feet"),
  12520. default: true
  12521. },
  12522. ]
  12523. ))
  12524. characterMakers.push(() => makeCharacter(
  12525. { name: "Caspian" },
  12526. {
  12527. front: {
  12528. height: math.unit(16 + 5 / 12, "feet"),
  12529. weight: math.unit(524, "lb"),
  12530. name: "Front",
  12531. image: {
  12532. source: "./media/characters/caspian/front.svg",
  12533. extra: 1,
  12534. bottom: 0.04
  12535. }
  12536. },
  12537. },
  12538. [
  12539. {
  12540. name: "Normal",
  12541. height: math.unit(16 + 5 / 12, "feet"),
  12542. default: true
  12543. },
  12544. ]
  12545. ))
  12546. characterMakers.push(() => makeCharacter(
  12547. { name: "Mika" },
  12548. {
  12549. front: {
  12550. height: math.unit(5 + 7 / 12, "feet"),
  12551. weight: math.unit(170, "lb"),
  12552. name: "Front",
  12553. image: {
  12554. source: "./media/characters/mika/front.svg",
  12555. extra: 1,
  12556. bottom: 0.016
  12557. }
  12558. },
  12559. },
  12560. [
  12561. {
  12562. name: "Normal",
  12563. height: math.unit(5 + 7 / 12, "feet"),
  12564. default: true
  12565. },
  12566. ]
  12567. ))
  12568. characterMakers.push(() => makeCharacter(
  12569. { name: "Sol" },
  12570. {
  12571. front: {
  12572. height: math.unit(6 + 2 / 12, "feet"),
  12573. weight: math.unit(268, "lb"),
  12574. name: "Front",
  12575. image: {
  12576. source: "./media/characters/sol/front.svg",
  12577. extra: 247 / 231,
  12578. bottom: 0.05
  12579. }
  12580. },
  12581. },
  12582. [
  12583. {
  12584. name: "Normal",
  12585. height: math.unit(6 + 2 / 12, "feet"),
  12586. default: true
  12587. },
  12588. ]
  12589. ))
  12590. characterMakers.push(() => makeCharacter(
  12591. { name: "Umiko" },
  12592. {
  12593. buizel: {
  12594. height: math.unit(2 + 5 / 12, "feet"),
  12595. weight: math.unit(87, "lb"),
  12596. name: "Buizel",
  12597. image: {
  12598. source: "./media/characters/umiko/buizel.svg",
  12599. extra: 172 / 157,
  12600. bottom: 0.01
  12601. }
  12602. },
  12603. floatzel: {
  12604. height: math.unit(5 + 9 / 12, "feet"),
  12605. weight: math.unit(250, "lb"),
  12606. name: "Floatzel",
  12607. image: {
  12608. source: "./media/characters/umiko/floatzel.svg",
  12609. extra: 262 / 248
  12610. }
  12611. },
  12612. },
  12613. [
  12614. {
  12615. name: "Normal",
  12616. height: math.unit(2 + 5 / 12, "feet"),
  12617. default: true
  12618. },
  12619. ]
  12620. ))
  12621. characterMakers.push(() => makeCharacter(
  12622. { name: "Iliac" },
  12623. {
  12624. front: {
  12625. height: math.unit(6 + 2 / 12, "feet"),
  12626. weight: math.unit(146, "lb"),
  12627. name: "Front",
  12628. image: {
  12629. source: "./media/characters/iliac/front.svg",
  12630. extra: 389 / 365,
  12631. bottom: 0.035
  12632. }
  12633. },
  12634. },
  12635. [
  12636. {
  12637. name: "Normal",
  12638. height: math.unit(6 + 2 / 12, "feet"),
  12639. default: true
  12640. },
  12641. ]
  12642. ))
  12643. characterMakers.push(() => makeCharacter(
  12644. { name: "Topaz" },
  12645. {
  12646. front: {
  12647. height: math.unit(6, "feet"),
  12648. weight: math.unit(170, "lb"),
  12649. name: "Front",
  12650. image: {
  12651. source: "./media/characters/topaz/front.svg",
  12652. extra: 317 / 303,
  12653. bottom: 0.055
  12654. }
  12655. },
  12656. },
  12657. [
  12658. {
  12659. name: "Normal",
  12660. height: math.unit(6, "feet"),
  12661. default: true
  12662. },
  12663. ]
  12664. ))
  12665. characterMakers.push(() => makeCharacter(
  12666. { name: "Gabriel" },
  12667. {
  12668. front: {
  12669. height: math.unit(5 + 11 / 12, "feet"),
  12670. weight: math.unit(144, "lb"),
  12671. name: "Front",
  12672. image: {
  12673. source: "./media/characters/gabriel/front.svg",
  12674. extra: 285 / 262,
  12675. bottom: 0.004
  12676. }
  12677. },
  12678. },
  12679. [
  12680. {
  12681. name: "Normal",
  12682. height: math.unit(5 + 11 / 12, "feet"),
  12683. default: true
  12684. },
  12685. ]
  12686. ))
  12687. characterMakers.push(() => makeCharacter(
  12688. { name: "Tempest (Suicune)" },
  12689. {
  12690. side: {
  12691. height: math.unit(6 + 5 / 12, "feet"),
  12692. weight: math.unit(300, "lb"),
  12693. name: "Side",
  12694. image: {
  12695. source: "./media/characters/tempest-suicune/side.svg",
  12696. extra: 195 / 154,
  12697. bottom: 0.04
  12698. }
  12699. },
  12700. },
  12701. [
  12702. {
  12703. name: "Normal",
  12704. height: math.unit(6 + 5 / 12, "feet"),
  12705. default: true
  12706. },
  12707. ]
  12708. ))
  12709. characterMakers.push(() => makeCharacter(
  12710. { name: "Vulcan" },
  12711. {
  12712. front: {
  12713. height: math.unit(7 + 2 / 12, "feet"),
  12714. weight: math.unit(322, "lb"),
  12715. name: "Front",
  12716. image: {
  12717. source: "./media/characters/vulcan/front.svg",
  12718. extra: 154 / 147,
  12719. bottom: 0.04
  12720. }
  12721. },
  12722. },
  12723. [
  12724. {
  12725. name: "Normal",
  12726. height: math.unit(7 + 2 / 12, "feet"),
  12727. default: true
  12728. },
  12729. ]
  12730. ))
  12731. characterMakers.push(() => makeCharacter(
  12732. { name: "Gault" },
  12733. {
  12734. front: {
  12735. height: math.unit(5 + 10 / 12, "feet"),
  12736. weight: math.unit(264, "lb"),
  12737. name: "Front",
  12738. image: {
  12739. source: "./media/characters/gault/front.svg",
  12740. extra: 161 / 140,
  12741. bottom: 0.028
  12742. }
  12743. },
  12744. },
  12745. [
  12746. {
  12747. name: "Normal",
  12748. height: math.unit(5 + 10 / 12, "feet"),
  12749. default: true
  12750. },
  12751. ]
  12752. ))
  12753. characterMakers.push(() => makeCharacter(
  12754. { name: "Shard" },
  12755. {
  12756. front: {
  12757. height: math.unit(6, "feet"),
  12758. weight: math.unit(150, "lb"),
  12759. name: "Front",
  12760. image: {
  12761. source: "./media/characters/shard/front.svg",
  12762. extra: 273 / 238,
  12763. bottom: 0.02
  12764. }
  12765. },
  12766. },
  12767. [
  12768. {
  12769. name: "Normal",
  12770. height: math.unit(3 + 6 / 12, "feet"),
  12771. default: true
  12772. },
  12773. ]
  12774. ))
  12775. characterMakers.push(() => makeCharacter(
  12776. { name: "Ashe" },
  12777. {
  12778. front: {
  12779. height: math.unit(5 + 11 / 12, "feet"),
  12780. weight: math.unit(146, "lb"),
  12781. name: "Front",
  12782. image: {
  12783. source: "./media/characters/ashe/front.svg",
  12784. extra: 400 / 373,
  12785. bottom: 0.01
  12786. }
  12787. },
  12788. },
  12789. [
  12790. {
  12791. name: "Normal",
  12792. height: math.unit(5 + 11 / 12, "feet"),
  12793. default: true
  12794. },
  12795. ]
  12796. ))
  12797. characterMakers.push(() => makeCharacter(
  12798. { name: "Beatrix" },
  12799. {
  12800. front: {
  12801. height: math.unit(5 + 5 / 12, "feet"),
  12802. weight: math.unit(135, "lb"),
  12803. name: "Front",
  12804. image: {
  12805. source: "./media/characters/beatrix/front.svg",
  12806. extra: 392 / 379,
  12807. bottom: 0.01
  12808. }
  12809. },
  12810. },
  12811. [
  12812. {
  12813. name: "Normal",
  12814. height: math.unit(6, "feet"),
  12815. default: true
  12816. },
  12817. ]
  12818. ))
  12819. characterMakers.push(() => makeCharacter(
  12820. { name: "Ignatius" },
  12821. {
  12822. front: {
  12823. height: math.unit(6, "feet"),
  12824. weight: math.unit(150, "lb"),
  12825. name: "Front",
  12826. image: {
  12827. source: "./media/characters/ignatius/front.svg",
  12828. extra: 245 / 222,
  12829. bottom: 0.01
  12830. }
  12831. },
  12832. },
  12833. [
  12834. {
  12835. name: "Normal",
  12836. height: math.unit(5 + 5 / 12, "feet"),
  12837. default: true
  12838. },
  12839. ]
  12840. ))
  12841. characterMakers.push(() => makeCharacter(
  12842. { name: "Mei Li" },
  12843. {
  12844. front: {
  12845. height: math.unit(6 + 2 / 12, "feet"),
  12846. weight: math.unit(138, "lb"),
  12847. name: "Front",
  12848. image: {
  12849. source: "./media/characters/mei-li/front.svg",
  12850. extra: 237 / 229,
  12851. bottom: 0.03
  12852. }
  12853. },
  12854. },
  12855. [
  12856. {
  12857. name: "Normal",
  12858. height: math.unit(6 + 2 / 12, "feet"),
  12859. default: true
  12860. },
  12861. ]
  12862. ))
  12863. characterMakers.push(() => makeCharacter(
  12864. { name: "Puru" },
  12865. {
  12866. front: {
  12867. height: math.unit(2 + 4 / 12, "feet"),
  12868. weight: math.unit(62, "lb"),
  12869. name: "Front",
  12870. image: {
  12871. source: "./media/characters/puru/front.svg",
  12872. extra: 206 / 149,
  12873. bottom: 0.06
  12874. }
  12875. },
  12876. },
  12877. [
  12878. {
  12879. name: "Normal",
  12880. height: math.unit(2 + 4 / 12, "feet"),
  12881. default: true
  12882. },
  12883. ]
  12884. ))
  12885. characterMakers.push(() => makeCharacter(
  12886. { name: "Kee" },
  12887. {
  12888. taur: {
  12889. height: math.unit(11, "feet"),
  12890. weight: math.unit(500, "lb"),
  12891. name: "Taur",
  12892. image: {
  12893. source: "./media/characters/kee/taur.svg",
  12894. extra: 1,
  12895. bottom: 0.04
  12896. }
  12897. },
  12898. },
  12899. [
  12900. {
  12901. name: "Normal",
  12902. height: math.unit(11, "feet"),
  12903. default: true
  12904. },
  12905. ]
  12906. ))
  12907. characterMakers.push(() => makeCharacter(
  12908. { name: "Cobalt (Dracha)" },
  12909. {
  12910. anthro: {
  12911. height: math.unit(7, "feet"),
  12912. weight: math.unit(190, "lb"),
  12913. name: "Anthro",
  12914. image: {
  12915. source: "./media/characters/cobalt-dracha/anthro.svg",
  12916. extra: 231 / 225,
  12917. bottom: 0.04
  12918. }
  12919. },
  12920. feral: {
  12921. height: math.unit(9 + 7 / 12, "feet"),
  12922. weight: math.unit(294, "lb"),
  12923. name: "Feral",
  12924. image: {
  12925. source: "./media/characters/cobalt-dracha/feral.svg",
  12926. extra: 692 / 633,
  12927. bottom: 0.05
  12928. }
  12929. },
  12930. },
  12931. [
  12932. {
  12933. name: "Normal",
  12934. height: math.unit(7, "feet"),
  12935. default: true
  12936. },
  12937. ]
  12938. ))
  12939. characterMakers.push(() => makeCharacter(
  12940. { name: "Java" },
  12941. {
  12942. fallen: {
  12943. height: math.unit(11 + 8 / 12, "feet"),
  12944. weight: math.unit(485, "lb"),
  12945. name: "Java (Fallen)",
  12946. rename: true,
  12947. image: {
  12948. source: "./media/characters/java/fallen.svg",
  12949. extra: 226 / 208,
  12950. bottom: 0.005
  12951. }
  12952. },
  12953. godkin: {
  12954. height: math.unit(10 + 6 / 12, "feet"),
  12955. weight: math.unit(328, "lb"),
  12956. name: "Java (Godkin)",
  12957. rename: true,
  12958. image: {
  12959. source: "./media/characters/java/godkin.svg",
  12960. extra: 270 / 262,
  12961. bottom: 0.02
  12962. }
  12963. },
  12964. },
  12965. [
  12966. {
  12967. name: "Normal",
  12968. height: math.unit(11 + 8 / 12, "feet"),
  12969. default: true
  12970. },
  12971. ]
  12972. ))
  12973. characterMakers.push(() => makeCharacter(
  12974. { name: "Skoll" },
  12975. {
  12976. front: {
  12977. height: math.unit(7 + 8 / 12, "feet"),
  12978. weight: math.unit(320, "lb"),
  12979. name: "Front",
  12980. image: {
  12981. source: "./media/characters/skoll/front.svg",
  12982. extra: 232 / 220,
  12983. bottom: 0.02
  12984. }
  12985. },
  12986. },
  12987. [
  12988. {
  12989. name: "Normal",
  12990. height: math.unit(7 + 8 / 12, "feet"),
  12991. default: true
  12992. },
  12993. ]
  12994. ))
  12995. characterMakers.push(() => makeCharacter(
  12996. { name: "Purna" },
  12997. {
  12998. front: {
  12999. height: math.unit(5 + 9 / 12, "feet"),
  13000. weight: math.unit(170, "lb"),
  13001. name: "Front",
  13002. image: {
  13003. source: "./media/characters/purna/front.svg",
  13004. extra: 239 / 229,
  13005. bottom: 0.01
  13006. }
  13007. },
  13008. },
  13009. [
  13010. {
  13011. name: "Normal",
  13012. height: math.unit(5 + 9 / 12, "feet"),
  13013. default: true
  13014. },
  13015. ]
  13016. ))
  13017. characterMakers.push(() => makeCharacter(
  13018. { name: "Kuva" },
  13019. {
  13020. front: {
  13021. height: math.unit(5 + 9 / 12, "feet"),
  13022. weight: math.unit(142, "lb"),
  13023. name: "Front",
  13024. image: {
  13025. source: "./media/characters/kuva/front.svg",
  13026. extra: 281 / 271,
  13027. bottom: 0.006
  13028. }
  13029. },
  13030. },
  13031. [
  13032. {
  13033. name: "Normal",
  13034. height: math.unit(5 + 9 / 12, "feet"),
  13035. default: true
  13036. },
  13037. ]
  13038. ))
  13039. characterMakers.push(() => makeCharacter(
  13040. { name: "Embra" },
  13041. {
  13042. anthro: {
  13043. height: math.unit(9 + 2 / 12, "feet"),
  13044. weight: math.unit(270, "lb"),
  13045. name: "Anthro",
  13046. image: {
  13047. source: "./media/characters/embra/anthro.svg",
  13048. extra: 200 / 187,
  13049. bottom: 0.02
  13050. }
  13051. },
  13052. feral: {
  13053. height: math.unit(18 + 8 / 12, "feet"),
  13054. weight: math.unit(576, "lb"),
  13055. name: "Feral",
  13056. image: {
  13057. source: "./media/characters/embra/feral.svg",
  13058. extra: 152 / 137,
  13059. bottom: 0.037
  13060. }
  13061. },
  13062. },
  13063. [
  13064. {
  13065. name: "Normal",
  13066. height: math.unit(9 + 2 / 12, "feet"),
  13067. default: true
  13068. },
  13069. ]
  13070. ))
  13071. characterMakers.push(() => makeCharacter(
  13072. { name: "Grottos" },
  13073. {
  13074. anthro: {
  13075. height: math.unit(10 + 9 / 12, "feet"),
  13076. weight: math.unit(224, "lb"),
  13077. name: "Anthro",
  13078. image: {
  13079. source: "./media/characters/grottos/anthro.svg",
  13080. extra: 350 / 332,
  13081. bottom: 0.045
  13082. }
  13083. },
  13084. feral: {
  13085. height: math.unit(20 + 7 / 12, "feet"),
  13086. weight: math.unit(629, "lb"),
  13087. name: "Feral",
  13088. image: {
  13089. source: "./media/characters/grottos/feral.svg",
  13090. extra: 207 / 190,
  13091. bottom: 0.05
  13092. }
  13093. },
  13094. },
  13095. [
  13096. {
  13097. name: "Normal",
  13098. height: math.unit(10 + 9 / 12, "feet"),
  13099. default: true
  13100. },
  13101. ]
  13102. ))
  13103. characterMakers.push(() => makeCharacter(
  13104. { name: "Frifna" },
  13105. {
  13106. anthro: {
  13107. height: math.unit(9 + 6 / 12, "feet"),
  13108. weight: math.unit(298, "lb"),
  13109. name: "Anthro",
  13110. image: {
  13111. source: "./media/characters/frifna/anthro.svg",
  13112. extra: 282 / 269,
  13113. bottom: 0.015
  13114. }
  13115. },
  13116. feral: {
  13117. height: math.unit(16 + 2 / 12, "feet"),
  13118. weight: math.unit(624, "lb"),
  13119. name: "Feral",
  13120. image: {
  13121. source: "./media/characters/frifna/feral.svg"
  13122. }
  13123. },
  13124. },
  13125. [
  13126. {
  13127. name: "Normal",
  13128. height: math.unit(9 + 6 / 12, "feet"),
  13129. default: true
  13130. },
  13131. ]
  13132. ))
  13133. characterMakers.push(() => makeCharacter(
  13134. { name: "Elise" },
  13135. {
  13136. front: {
  13137. height: math.unit(6 + 2 / 12, "feet"),
  13138. weight: math.unit(168, "lb"),
  13139. name: "Front",
  13140. image: {
  13141. source: "./media/characters/elise/front.svg",
  13142. extra: 276 / 271
  13143. }
  13144. },
  13145. },
  13146. [
  13147. {
  13148. name: "Normal",
  13149. height: math.unit(6 + 2 / 12, "feet"),
  13150. default: true
  13151. },
  13152. ]
  13153. ))
  13154. characterMakers.push(() => makeCharacter(
  13155. { name: "Glade" },
  13156. {
  13157. front: {
  13158. height: math.unit(5 + 10 / 12, "feet"),
  13159. weight: math.unit(210, "lb"),
  13160. name: "Front",
  13161. image: {
  13162. source: "./media/characters/glade/front.svg",
  13163. extra: 258 / 247,
  13164. bottom: 0.008
  13165. }
  13166. },
  13167. },
  13168. [
  13169. {
  13170. name: "Normal",
  13171. height: math.unit(5 + 10 / 12, "feet"),
  13172. default: true
  13173. },
  13174. ]
  13175. ))
  13176. characterMakers.push(() => makeCharacter(
  13177. { name: "Rina" },
  13178. {
  13179. front: {
  13180. height: math.unit(5 + 10 / 12, "feet"),
  13181. weight: math.unit(129, "lb"),
  13182. name: "Front",
  13183. image: {
  13184. source: "./media/characters/rina/front.svg",
  13185. extra: 266 / 255,
  13186. bottom: 0.005
  13187. }
  13188. },
  13189. },
  13190. [
  13191. {
  13192. name: "Normal",
  13193. height: math.unit(5 + 10 / 12, "feet"),
  13194. default: true
  13195. },
  13196. ]
  13197. ))
  13198. characterMakers.push(() => makeCharacter(
  13199. { name: "Veronica" },
  13200. {
  13201. front: {
  13202. height: math.unit(6 + 1 / 12, "feet"),
  13203. weight: math.unit(192, "lb"),
  13204. name: "Front",
  13205. image: {
  13206. source: "./media/characters/veronica/front.svg",
  13207. extra: 319 / 309,
  13208. bottom: 0.005
  13209. }
  13210. },
  13211. },
  13212. [
  13213. {
  13214. name: "Normal",
  13215. height: math.unit(6 + 1 / 12, "feet"),
  13216. default: true
  13217. },
  13218. ]
  13219. ))
  13220. characterMakers.push(() => makeCharacter(
  13221. { name: "Braxton" },
  13222. {
  13223. front: {
  13224. height: math.unit(9 + 3 / 12, "feet"),
  13225. weight: math.unit(1100, "lb"),
  13226. name: "Front",
  13227. image: {
  13228. source: "./media/characters/braxton/front.svg",
  13229. extra: 1057 / 984,
  13230. bottom: 0.05
  13231. }
  13232. },
  13233. },
  13234. [
  13235. {
  13236. name: "Normal",
  13237. height: math.unit(9 + 3 / 12, "feet")
  13238. },
  13239. {
  13240. name: "Giant",
  13241. height: math.unit(300, "feet"),
  13242. default: true
  13243. },
  13244. {
  13245. name: "Macro",
  13246. height: math.unit(700, "feet")
  13247. },
  13248. {
  13249. name: "Megamacro",
  13250. height: math.unit(6000, "feet")
  13251. },
  13252. ]
  13253. ))
  13254. characterMakers.push(() => makeCharacter(
  13255. { name: "Blue Feyonics" },
  13256. {
  13257. front: {
  13258. height: math.unit(6 + 7 / 12, "feet"),
  13259. weight: math.unit(150, "lb"),
  13260. name: "Front",
  13261. image: {
  13262. source: "./media/characters/blue-feyonics/front.svg",
  13263. extra: 1403 / 1306,
  13264. bottom: 0.047
  13265. }
  13266. },
  13267. },
  13268. [
  13269. {
  13270. name: "Normal",
  13271. height: math.unit(6 + 7 / 12, "feet"),
  13272. default: true
  13273. },
  13274. ]
  13275. ))
  13276. characterMakers.push(() => makeCharacter(
  13277. { name: "Maxwell" },
  13278. {
  13279. front: {
  13280. height: math.unit(1.8, "meters"),
  13281. weight: math.unit(60, "kg"),
  13282. name: "Front",
  13283. image: {
  13284. source: "./media/characters/maxwell/front.svg",
  13285. extra: 2060 / 1873
  13286. }
  13287. },
  13288. },
  13289. [
  13290. {
  13291. name: "Micro",
  13292. height: math.unit(1, "mm")
  13293. },
  13294. {
  13295. name: "Normal",
  13296. height: math.unit(1.8, "meter"),
  13297. default: true
  13298. },
  13299. {
  13300. name: "Macro",
  13301. height: math.unit(30, "meters")
  13302. },
  13303. {
  13304. name: "Megamacro",
  13305. height: math.unit(10, "km")
  13306. },
  13307. ]
  13308. ))
  13309. characterMakers.push(() => makeCharacter(
  13310. { name: "Jack" },
  13311. {
  13312. front: {
  13313. height: math.unit(6, "feet"),
  13314. weight: math.unit(150, "lb"),
  13315. name: "Front",
  13316. image: {
  13317. source: "./media/characters/jack/front.svg",
  13318. extra: 1754 / 1640,
  13319. bottom: 0.01
  13320. }
  13321. },
  13322. },
  13323. [
  13324. {
  13325. name: "Normal",
  13326. height: math.unit(80000, "feet"),
  13327. default: true
  13328. },
  13329. {
  13330. name: "Max size",
  13331. height: math.unit(10, "lightyears")
  13332. },
  13333. ]
  13334. ))
  13335. characterMakers.push(() => makeCharacter(
  13336. { name: "Cafat" },
  13337. {
  13338. upright: {
  13339. height: math.unit(7, "feet"),
  13340. weight: math.unit(170, "lb"),
  13341. name: "Upright",
  13342. image: {
  13343. source: "./media/characters/cafat/upright.svg",
  13344. bottom: 0.01
  13345. }
  13346. },
  13347. uprightFull: {
  13348. height: math.unit(7, "feet"),
  13349. weight: math.unit(170, "lb"),
  13350. name: "Upright (Full)",
  13351. image: {
  13352. source: "./media/characters/cafat/upright-full.svg",
  13353. bottom: 0.01
  13354. }
  13355. },
  13356. side: {
  13357. height: math.unit(5, "feet"),
  13358. weight: math.unit(150, "lb"),
  13359. name: "Side",
  13360. image: {
  13361. source: "./media/characters/cafat/side.svg"
  13362. }
  13363. },
  13364. },
  13365. [
  13366. {
  13367. name: "Small",
  13368. height: math.unit(7, "feet"),
  13369. default: true
  13370. },
  13371. {
  13372. name: "Large",
  13373. height: math.unit(15.5, "feet")
  13374. },
  13375. ]
  13376. ))
  13377. characterMakers.push(() => makeCharacter(
  13378. { name: "Verin Raharra" },
  13379. {
  13380. front: {
  13381. height: math.unit(6, "feet"),
  13382. weight: math.unit(150, "lb"),
  13383. name: "Front",
  13384. image: {
  13385. source: "./media/characters/verin-raharra/front.svg",
  13386. extra: 5019 / 4835,
  13387. bottom: 0.023
  13388. }
  13389. },
  13390. },
  13391. [
  13392. {
  13393. name: "Normal",
  13394. height: math.unit(7 + 5 / 12, "feet"),
  13395. default: true
  13396. },
  13397. {
  13398. name: "Upsized",
  13399. height: math.unit(20, "feet")
  13400. },
  13401. ]
  13402. ))
  13403. characterMakers.push(() => makeCharacter(
  13404. { name: "Nakata" },
  13405. {
  13406. front: {
  13407. height: math.unit(7, "feet"),
  13408. weight: math.unit(230, "lb"),
  13409. name: "Front",
  13410. image: {
  13411. source: "./media/characters/nakata/front.svg",
  13412. extra: 1.005,
  13413. bottom: 0.01
  13414. }
  13415. },
  13416. },
  13417. [
  13418. {
  13419. name: "Normal",
  13420. height: math.unit(7, "feet"),
  13421. default: true
  13422. },
  13423. {
  13424. name: "Big",
  13425. height: math.unit(14, "feet")
  13426. },
  13427. {
  13428. name: "Macro",
  13429. height: math.unit(400, "feet")
  13430. },
  13431. ]
  13432. ))
  13433. characterMakers.push(() => makeCharacter(
  13434. { name: "Lily" },
  13435. {
  13436. front: {
  13437. height: math.unit(4.91, "feet"),
  13438. weight: math.unit(100, "lb"),
  13439. name: "Front",
  13440. image: {
  13441. source: "./media/characters/lily/front.svg",
  13442. extra: 1585 / 1415,
  13443. bottom: 0.02
  13444. }
  13445. },
  13446. },
  13447. [
  13448. {
  13449. name: "Normal",
  13450. height: math.unit(4.91, "feet"),
  13451. default: true
  13452. },
  13453. ]
  13454. ))
  13455. characterMakers.push(() => makeCharacter(
  13456. { name: "Sheila" },
  13457. {
  13458. laying: {
  13459. height: math.unit(4 + 4 / 12, "feet"),
  13460. weight: math.unit(600, "lb"),
  13461. name: "Laying",
  13462. image: {
  13463. source: "./media/characters/sheila/laying.svg",
  13464. extra: 1333 / 1265,
  13465. bottom: 0.16
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Normal",
  13472. height: math.unit(4 + 4 / 12, "feet"),
  13473. default: true
  13474. },
  13475. ]
  13476. ))
  13477. characterMakers.push(() => makeCharacter(
  13478. { name: "Sax" },
  13479. {
  13480. front: {
  13481. height: math.unit(6, "feet"),
  13482. weight: math.unit(190, "lb"),
  13483. name: "Front",
  13484. image: {
  13485. source: "./media/characters/sax/front.svg",
  13486. extra: 1187 / 973,
  13487. bottom: 0.042
  13488. }
  13489. },
  13490. },
  13491. [
  13492. {
  13493. name: "Micro",
  13494. height: math.unit(4, "inches"),
  13495. default: true
  13496. },
  13497. ]
  13498. ))
  13499. characterMakers.push(() => makeCharacter(
  13500. { name: "Pandora" },
  13501. {
  13502. front: {
  13503. height: math.unit(6, "feet"),
  13504. weight: math.unit(150, "lb"),
  13505. name: "Front",
  13506. image: {
  13507. source: "./media/characters/pandora/front.svg",
  13508. extra: 2720 / 2556,
  13509. bottom: 0.015
  13510. }
  13511. },
  13512. back: {
  13513. height: math.unit(6, "feet"),
  13514. weight: math.unit(150, "lb"),
  13515. name: "Back",
  13516. image: {
  13517. source: "./media/characters/pandora/back.svg",
  13518. extra: 2720 / 2556,
  13519. bottom: 0.01
  13520. }
  13521. },
  13522. beans: {
  13523. height: math.unit(6 / 8, "feet"),
  13524. name: "Beans",
  13525. image: {
  13526. source: "./media/characters/pandora/beans.svg"
  13527. }
  13528. },
  13529. skirt: {
  13530. height: math.unit(6, "feet"),
  13531. weight: math.unit(150, "lb"),
  13532. name: "Skirt",
  13533. image: {
  13534. source: "./media/characters/pandora/skirt.svg",
  13535. extra: 1622 / 1525,
  13536. bottom: 0.015
  13537. }
  13538. },
  13539. hoodie: {
  13540. height: math.unit(6, "feet"),
  13541. weight: math.unit(150, "lb"),
  13542. name: "Hoodie",
  13543. image: {
  13544. source: "./media/characters/pandora/hoodie.svg",
  13545. extra: 1622 / 1525,
  13546. bottom: 0.015
  13547. }
  13548. },
  13549. casual: {
  13550. height: math.unit(6, "feet"),
  13551. weight: math.unit(150, "lb"),
  13552. name: "Casual",
  13553. image: {
  13554. source: "./media/characters/pandora/casual.svg",
  13555. extra: 1622 / 1525,
  13556. bottom: 0.015
  13557. }
  13558. },
  13559. },
  13560. [
  13561. {
  13562. name: "Normal",
  13563. height: math.unit(6, "feet")
  13564. },
  13565. {
  13566. name: "Big Steppy",
  13567. height: math.unit(1, "km"),
  13568. default: true
  13569. },
  13570. ]
  13571. ))
  13572. characterMakers.push(() => makeCharacter(
  13573. { name: "Venio Darcony" },
  13574. {
  13575. side: {
  13576. height: math.unit(10, "feet"),
  13577. weight: math.unit(800, "kg"),
  13578. name: "Side",
  13579. image: {
  13580. source: "./media/characters/venio-darcony/side.svg",
  13581. extra: 1373 / 1003,
  13582. bottom: 0.037
  13583. }
  13584. },
  13585. front: {
  13586. height: math.unit(19, "feet"),
  13587. weight: math.unit(800, "kg"),
  13588. name: "Front",
  13589. image: {
  13590. source: "./media/characters/venio-darcony/front.svg"
  13591. }
  13592. },
  13593. back: {
  13594. height: math.unit(19, "feet"),
  13595. weight: math.unit(800, "kg"),
  13596. name: "Back",
  13597. image: {
  13598. source: "./media/characters/venio-darcony/back.svg"
  13599. }
  13600. },
  13601. sideNsfw: {
  13602. height: math.unit(10, "feet"),
  13603. weight: math.unit(800, "kg"),
  13604. name: "Side (NSFW)",
  13605. image: {
  13606. source: "./media/characters/venio-darcony/side-nsfw.svg",
  13607. extra: 1373 / 1003,
  13608. bottom: 0.037
  13609. }
  13610. },
  13611. frontNsfw: {
  13612. height: math.unit(19, "feet"),
  13613. weight: math.unit(800, "kg"),
  13614. name: "Front (NSFW)",
  13615. image: {
  13616. source: "./media/characters/venio-darcony/front-nsfw.svg"
  13617. }
  13618. },
  13619. backNsfw: {
  13620. height: math.unit(19, "feet"),
  13621. weight: math.unit(800, "kg"),
  13622. name: "Back (NSFW)",
  13623. image: {
  13624. source: "./media/characters/venio-darcony/back-nsfw.svg"
  13625. }
  13626. },
  13627. sideArmored: {
  13628. height: math.unit(10, "feet"),
  13629. weight: math.unit(800, "kg"),
  13630. name: "Side (Armored)",
  13631. image: {
  13632. source: "./media/characters/venio-darcony/side-armored.svg",
  13633. extra: 1373 / 1003,
  13634. bottom: 0.037
  13635. }
  13636. },
  13637. frontArmored: {
  13638. height: math.unit(19, "feet"),
  13639. weight: math.unit(900, "kg"),
  13640. name: "Front (Armored)",
  13641. image: {
  13642. source: "./media/characters/venio-darcony/front-armored.svg"
  13643. }
  13644. },
  13645. backArmored: {
  13646. height: math.unit(19, "feet"),
  13647. weight: math.unit(900, "kg"),
  13648. name: "Back (Armored)",
  13649. image: {
  13650. source: "./media/characters/venio-darcony/back-armored.svg"
  13651. }
  13652. },
  13653. sword: {
  13654. height: math.unit(10, "feet"),
  13655. weight: math.unit(50, "lb"),
  13656. name: "Sword",
  13657. image: {
  13658. source: "./media/characters/venio-darcony/sword.svg"
  13659. }
  13660. },
  13661. },
  13662. [
  13663. {
  13664. name: "Normal",
  13665. height: math.unit(10, "feet")
  13666. },
  13667. {
  13668. name: "Macro",
  13669. height: math.unit(130, "feet"),
  13670. default: true
  13671. },
  13672. {
  13673. name: "Macro+",
  13674. height: math.unit(240, "feet")
  13675. },
  13676. ]
  13677. ))
  13678. characterMakers.push(() => makeCharacter(
  13679. { name: "Veski" },
  13680. {
  13681. front: {
  13682. height: math.unit(6, "feet"),
  13683. weight: math.unit(150, "lb"),
  13684. name: "Front",
  13685. image: {
  13686. source: "./media/characters/veski/front.svg",
  13687. extra: 1299 / 1225,
  13688. bottom: 0.04
  13689. }
  13690. },
  13691. back: {
  13692. height: math.unit(6, "feet"),
  13693. weight: math.unit(150, "lb"),
  13694. name: "Back",
  13695. image: {
  13696. source: "./media/characters/veski/back.svg",
  13697. extra: 1299 / 1225,
  13698. bottom: 0.008
  13699. }
  13700. },
  13701. maw: {
  13702. height: math.unit(1.5 * 1.21, "feet"),
  13703. name: "Maw",
  13704. image: {
  13705. source: "./media/characters/veski/maw.svg"
  13706. }
  13707. },
  13708. },
  13709. [
  13710. {
  13711. name: "Macro",
  13712. height: math.unit(2, "km"),
  13713. default: true
  13714. },
  13715. ]
  13716. ))
  13717. characterMakers.push(() => makeCharacter(
  13718. { name: "Isabelle" },
  13719. {
  13720. front: {
  13721. height: math.unit(5 + 7 / 12, "feet"),
  13722. name: "Front",
  13723. image: {
  13724. source: "./media/characters/isabelle/front.svg",
  13725. extra: 2130 / 1976,
  13726. bottom: 0.05
  13727. }
  13728. },
  13729. },
  13730. [
  13731. {
  13732. name: "Supermicro",
  13733. height: math.unit(10, "micrometers")
  13734. },
  13735. {
  13736. name: "Micro",
  13737. height: math.unit(1, "inch")
  13738. },
  13739. {
  13740. name: "Tiny",
  13741. height: math.unit(5, "inches")
  13742. },
  13743. {
  13744. name: "Standard",
  13745. height: math.unit(5 + 7 / 12, "inches")
  13746. },
  13747. {
  13748. name: "Macro",
  13749. height: math.unit(80, "meters"),
  13750. default: true
  13751. },
  13752. {
  13753. name: "Megamacro",
  13754. height: math.unit(250, "meters")
  13755. },
  13756. {
  13757. name: "Gigamacro",
  13758. height: math.unit(5, "km")
  13759. },
  13760. {
  13761. name: "Cosmic",
  13762. height: math.unit(2.5e6, "miles")
  13763. },
  13764. ]
  13765. ))
  13766. characterMakers.push(() => makeCharacter(
  13767. { name: "Hanzo" },
  13768. {
  13769. front: {
  13770. height: math.unit(6, "feet"),
  13771. weight: math.unit(150, "lb"),
  13772. name: "Front",
  13773. image: {
  13774. source: "./media/characters/hanzo/front.svg",
  13775. extra: 374 / 344,
  13776. bottom: 0.02
  13777. }
  13778. },
  13779. },
  13780. [
  13781. {
  13782. name: "Normal",
  13783. height: math.unit(8, "feet"),
  13784. default: true
  13785. },
  13786. ]
  13787. ))
  13788. characterMakers.push(() => makeCharacter(
  13789. { name: "Anna" },
  13790. {
  13791. front: {
  13792. height: math.unit(7, "feet"),
  13793. weight: math.unit(130, "lb"),
  13794. name: "Front",
  13795. image: {
  13796. source: "./media/characters/anna/front.svg",
  13797. extra: 169 / 145,
  13798. bottom: 0.06
  13799. }
  13800. },
  13801. full: {
  13802. height: math.unit(4.96, "feet"),
  13803. weight: math.unit(220, "lb"),
  13804. name: "Full",
  13805. image: {
  13806. source: "./media/characters/anna/full.svg",
  13807. extra: 138 / 114,
  13808. bottom: 0.15
  13809. }
  13810. },
  13811. tongue: {
  13812. height: math.unit(2.53, "feet"),
  13813. name: "Tongue",
  13814. image: {
  13815. source: "./media/characters/anna/tongue.svg"
  13816. }
  13817. },
  13818. },
  13819. [
  13820. {
  13821. name: "Normal",
  13822. height: math.unit(7, "feet"),
  13823. default: true
  13824. },
  13825. ]
  13826. ))
  13827. characterMakers.push(() => makeCharacter(
  13828. { name: "Ian Corvid" },
  13829. {
  13830. front: {
  13831. height: math.unit(7, "feet"),
  13832. weight: math.unit(150, "lb"),
  13833. name: "Front",
  13834. image: {
  13835. source: "./media/characters/ian-corvid/front.svg",
  13836. extra: 150 / 142,
  13837. bottom: 0.02
  13838. }
  13839. },
  13840. back: {
  13841. height: math.unit(7, "feet"),
  13842. weight: math.unit(150, "lb"),
  13843. name: "Back",
  13844. image: {
  13845. source: "./media/characters/ian-corvid/back.svg",
  13846. extra: 150 / 143,
  13847. bottom: 0.01
  13848. }
  13849. },
  13850. stomping: {
  13851. height: math.unit(7, "feet"),
  13852. weight: math.unit(150, "lb"),
  13853. name: "Stomping",
  13854. image: {
  13855. source: "./media/characters/ian-corvid/stomping.svg",
  13856. extra: 76 / 72
  13857. }
  13858. },
  13859. sitting: {
  13860. height: math.unit(7 / 1.8, "feet"),
  13861. weight: math.unit(150, "lb"),
  13862. name: "Sitting",
  13863. image: {
  13864. source: "./media/characters/ian-corvid/sitting.svg",
  13865. extra: 1400 / 1269,
  13866. bottom: 0.15
  13867. }
  13868. },
  13869. },
  13870. [
  13871. {
  13872. name: "Tiny Microw",
  13873. height: math.unit(1, "inch")
  13874. },
  13875. {
  13876. name: "Microw",
  13877. height: math.unit(6, "inches")
  13878. },
  13879. {
  13880. name: "Crow",
  13881. height: math.unit(7 + 1 / 12, "feet"),
  13882. default: true
  13883. },
  13884. {
  13885. name: "Macrow",
  13886. height: math.unit(176, "feet")
  13887. },
  13888. ]
  13889. ))
  13890. characterMakers.push(() => makeCharacter(
  13891. { name: "Natalie Kellon" },
  13892. {
  13893. front: {
  13894. height: math.unit(5 + 7 / 12, "feet"),
  13895. weight: math.unit(147, "lb"),
  13896. name: "Front",
  13897. image: {
  13898. source: "./media/characters/natalie-kellon/front.svg",
  13899. extra: 1214 / 1141,
  13900. bottom: 0.02
  13901. }
  13902. },
  13903. },
  13904. [
  13905. {
  13906. name: "Micro",
  13907. height: math.unit(1 / 16, "inch")
  13908. },
  13909. {
  13910. name: "Tiny",
  13911. height: math.unit(4, "inches")
  13912. },
  13913. {
  13914. name: "Normal",
  13915. height: math.unit(5 + 7 / 12, "feet"),
  13916. default: true
  13917. },
  13918. {
  13919. name: "Amazon",
  13920. height: math.unit(12, "feet")
  13921. },
  13922. {
  13923. name: "Giantess",
  13924. height: math.unit(160, "meters")
  13925. },
  13926. {
  13927. name: "Titaness",
  13928. height: math.unit(800, "meters")
  13929. },
  13930. ]
  13931. ))
  13932. characterMakers.push(() => makeCharacter(
  13933. { name: "Alluria" },
  13934. {
  13935. front: {
  13936. height: math.unit(6, "feet"),
  13937. weight: math.unit(150, "lb"),
  13938. name: "Front",
  13939. image: {
  13940. source: "./media/characters/alluria/front.svg",
  13941. extra: 806 / 738,
  13942. bottom: 0.01
  13943. }
  13944. },
  13945. side: {
  13946. height: math.unit(6, "feet"),
  13947. weight: math.unit(150, "lb"),
  13948. name: "Side",
  13949. image: {
  13950. source: "./media/characters/alluria/side.svg",
  13951. extra: 800 / 750,
  13952. }
  13953. },
  13954. back: {
  13955. height: math.unit(6, "feet"),
  13956. weight: math.unit(150, "lb"),
  13957. name: "Back",
  13958. image: {
  13959. source: "./media/characters/alluria/back.svg",
  13960. extra: 806 / 738,
  13961. }
  13962. },
  13963. frontMaid: {
  13964. height: math.unit(6, "feet"),
  13965. weight: math.unit(150, "lb"),
  13966. name: "Front (Maid)",
  13967. image: {
  13968. source: "./media/characters/alluria/front-maid.svg",
  13969. extra: 806 / 738,
  13970. bottom: 0.01
  13971. }
  13972. },
  13973. sideMaid: {
  13974. height: math.unit(6, "feet"),
  13975. weight: math.unit(150, "lb"),
  13976. name: "Side (Maid)",
  13977. image: {
  13978. source: "./media/characters/alluria/side-maid.svg",
  13979. extra: 800 / 750,
  13980. bottom: 0.005
  13981. }
  13982. },
  13983. backMaid: {
  13984. height: math.unit(6, "feet"),
  13985. weight: math.unit(150, "lb"),
  13986. name: "Back (Maid)",
  13987. image: {
  13988. source: "./media/characters/alluria/back-maid.svg",
  13989. extra: 806 / 738,
  13990. }
  13991. },
  13992. },
  13993. [
  13994. {
  13995. name: "Micro",
  13996. height: math.unit(6, "inches"),
  13997. default: true
  13998. },
  13999. ]
  14000. ))
  14001. characterMakers.push(() => makeCharacter(
  14002. { name: "Kyle" },
  14003. {
  14004. front: {
  14005. height: math.unit(6, "feet"),
  14006. weight: math.unit(150, "lb"),
  14007. name: "Front",
  14008. image: {
  14009. source: "./media/characters/kyle/front.svg",
  14010. extra: 1069 / 962,
  14011. bottom: 77.228 / 1727.45
  14012. }
  14013. },
  14014. },
  14015. [
  14016. {
  14017. name: "Macro",
  14018. height: math.unit(150, "feet"),
  14019. default: true
  14020. },
  14021. ]
  14022. ))
  14023. characterMakers.push(() => makeCharacter(
  14024. { name: "Duncan" },
  14025. {
  14026. front: {
  14027. height: math.unit(6, "feet"),
  14028. weight: math.unit(300, "lb"),
  14029. name: "Front",
  14030. image: {
  14031. source: "./media/characters/duncan/front.svg",
  14032. extra: 1650 / 1482,
  14033. bottom: 0.05
  14034. }
  14035. },
  14036. },
  14037. [
  14038. {
  14039. name: "Macro",
  14040. height: math.unit(100, "feet"),
  14041. default: true
  14042. },
  14043. ]
  14044. ))
  14045. characterMakers.push(() => makeCharacter(
  14046. { name: "Memory" },
  14047. {
  14048. front: {
  14049. height: math.unit(5 + 4 / 12, "feet"),
  14050. weight: math.unit(220, "lb"),
  14051. name: "Front",
  14052. image: {
  14053. source: "./media/characters/memory/front.svg",
  14054. extra: 3641 / 3545,
  14055. bottom: 0.03
  14056. }
  14057. },
  14058. back: {
  14059. height: math.unit(5 + 4 / 12, "feet"),
  14060. weight: math.unit(220, "lb"),
  14061. name: "Back",
  14062. image: {
  14063. source: "./media/characters/memory/back.svg",
  14064. extra: 3641 / 3545,
  14065. bottom: 0.025
  14066. }
  14067. },
  14068. frontSkirt: {
  14069. height: math.unit(5 + 4 / 12, "feet"),
  14070. weight: math.unit(220, "lb"),
  14071. name: "Front (Skirt)",
  14072. image: {
  14073. source: "./media/characters/memory/front-skirt.svg",
  14074. extra: 3641 / 3545,
  14075. bottom: 0.03
  14076. }
  14077. },
  14078. frontDress: {
  14079. height: math.unit(5 + 4 / 12, "feet"),
  14080. weight: math.unit(220, "lb"),
  14081. name: "Front (Dress)",
  14082. image: {
  14083. source: "./media/characters/memory/front-dress.svg",
  14084. extra: 3641 / 3545,
  14085. bottom: 0.03
  14086. }
  14087. },
  14088. },
  14089. [
  14090. {
  14091. name: "Micro",
  14092. height: math.unit(6, "inches"),
  14093. default: true
  14094. },
  14095. {
  14096. name: "Normal",
  14097. height: math.unit(5 + 4 / 12, "feet")
  14098. },
  14099. ]
  14100. ))
  14101. characterMakers.push(() => makeCharacter(
  14102. { name: "Luno" },
  14103. {
  14104. front: {
  14105. height: math.unit(4 + 11 / 12, "feet"),
  14106. weight: math.unit(100, "lb"),
  14107. name: "Front",
  14108. image: {
  14109. source: "./media/characters/luno/front.svg",
  14110. extra: 1535 / 1487,
  14111. bottom: 0.03
  14112. }
  14113. },
  14114. },
  14115. [
  14116. {
  14117. name: "Micro",
  14118. height: math.unit(3, "inches")
  14119. },
  14120. {
  14121. name: "Normal",
  14122. height: math.unit(4 + 11 / 12, "feet"),
  14123. default: true
  14124. },
  14125. {
  14126. name: "Macro",
  14127. height: math.unit(300, "feet")
  14128. },
  14129. {
  14130. name: "Megamacro",
  14131. height: math.unit(700, "miles")
  14132. },
  14133. ]
  14134. ))
  14135. characterMakers.push(() => makeCharacter(
  14136. { name: "Jamesy" },
  14137. {
  14138. front: {
  14139. height: math.unit(6 + 2 / 12, "feet"),
  14140. weight: math.unit(170, "lb"),
  14141. name: "Front",
  14142. image: {
  14143. source: "./media/characters/jamesy/front.svg",
  14144. extra: 440 / 382,
  14145. bottom: 0.005
  14146. }
  14147. },
  14148. },
  14149. [
  14150. {
  14151. name: "Micro",
  14152. height: math.unit(3, "inches")
  14153. },
  14154. {
  14155. name: "Normal",
  14156. height: math.unit(6 + 2 / 12, "feet"),
  14157. default: true
  14158. },
  14159. {
  14160. name: "Macro",
  14161. height: math.unit(300, "feet")
  14162. },
  14163. {
  14164. name: "Megamacro",
  14165. height: math.unit(700, "miles")
  14166. },
  14167. ]
  14168. ))
  14169. characterMakers.push(() => makeCharacter(
  14170. { name: "Mark" },
  14171. {
  14172. front: {
  14173. height: math.unit(6, "feet"),
  14174. weight: math.unit(160, "lb"),
  14175. name: "Front",
  14176. image: {
  14177. source: "./media/characters/mark/front.svg",
  14178. extra: 3300 / 3100,
  14179. bottom: 136.42 / 3440.47
  14180. }
  14181. },
  14182. },
  14183. [
  14184. {
  14185. name: "Macro",
  14186. height: math.unit(120, "meters")
  14187. },
  14188. {
  14189. name: "Bigger Macro",
  14190. height: math.unit(350, "meters")
  14191. },
  14192. {
  14193. name: "Megamacro",
  14194. height: math.unit(8, "km"),
  14195. default: true
  14196. },
  14197. {
  14198. name: "Continental",
  14199. height: math.unit(4550, "km")
  14200. },
  14201. {
  14202. name: "Planetary",
  14203. height: math.unit(65000, "km")
  14204. },
  14205. ]
  14206. ))
  14207. characterMakers.push(() => makeCharacter(
  14208. { name: "Mac" },
  14209. {
  14210. front: {
  14211. height: math.unit(6, "feet"),
  14212. weight: math.unit(400, "lb"),
  14213. name: "Front",
  14214. image: {
  14215. source: "./media/characters/mac/front.svg",
  14216. extra: 1048 / 987.7,
  14217. bottom: 60 / 1107.6,
  14218. }
  14219. },
  14220. },
  14221. [
  14222. {
  14223. name: "Macro",
  14224. height: math.unit(500, "feet"),
  14225. default: true
  14226. },
  14227. ]
  14228. ))
  14229. characterMakers.push(() => makeCharacter(
  14230. { name: "Bari" },
  14231. {
  14232. front: {
  14233. height: math.unit(5 + 2 / 12, "feet"),
  14234. weight: math.unit(190, "lb"),
  14235. name: "Front",
  14236. image: {
  14237. source: "./media/characters/bari/front.svg",
  14238. extra: 3156 / 2880,
  14239. bottom: 0.03
  14240. }
  14241. },
  14242. back: {
  14243. height: math.unit(5 + 2 / 12, "feet"),
  14244. weight: math.unit(190, "lb"),
  14245. name: "Back",
  14246. image: {
  14247. source: "./media/characters/bari/back.svg",
  14248. extra: 3260 / 2834,
  14249. bottom: 0.025
  14250. }
  14251. },
  14252. frontPlush: {
  14253. height: math.unit(5 + 2 / 12, "feet"),
  14254. weight: math.unit(190, "lb"),
  14255. name: "Front (Plush)",
  14256. image: {
  14257. source: "./media/characters/bari/front-plush.svg",
  14258. extra: 1112 / 1061,
  14259. bottom: 0.002
  14260. }
  14261. },
  14262. },
  14263. [
  14264. {
  14265. name: "Micro",
  14266. height: math.unit(3, "inches")
  14267. },
  14268. {
  14269. name: "Normal",
  14270. height: math.unit(5 + 2 / 12, "feet"),
  14271. default: true
  14272. },
  14273. {
  14274. name: "Macro",
  14275. height: math.unit(20, "feet")
  14276. },
  14277. ]
  14278. ))
  14279. characterMakers.push(() => makeCharacter(
  14280. { name: "Hunter Misha Raven" },
  14281. {
  14282. front: {
  14283. height: math.unit(6 + 1 / 12, "feet"),
  14284. weight: math.unit(275, "lb"),
  14285. name: "Front",
  14286. image: {
  14287. source: "./media/characters/hunter-misha-raven/front.svg"
  14288. }
  14289. },
  14290. },
  14291. [
  14292. {
  14293. name: "Mortal",
  14294. height: math.unit(6 + 1 / 12, "feet")
  14295. },
  14296. {
  14297. name: "Divine",
  14298. height: math.unit(1.12134e34, "parsecs"),
  14299. default: true
  14300. },
  14301. ]
  14302. ))
  14303. characterMakers.push(() => makeCharacter(
  14304. { name: "Max Calore" },
  14305. {
  14306. front: {
  14307. height: math.unit(6 + 3 / 12, "feet"),
  14308. weight: math.unit(220, "lb"),
  14309. name: "Front",
  14310. image: {
  14311. source: "./media/characters/max-calore/front.svg",
  14312. extra: 1700 / 1648,
  14313. bottom: 0.01
  14314. }
  14315. },
  14316. back: {
  14317. height: math.unit(6 + 3 / 12, "feet"),
  14318. weight: math.unit(220, "lb"),
  14319. name: "Back",
  14320. image: {
  14321. source: "./media/characters/max-calore/back.svg",
  14322. extra: 1700 / 1648,
  14323. bottom: 0.01
  14324. }
  14325. },
  14326. },
  14327. [
  14328. {
  14329. name: "Normal",
  14330. height: math.unit(6 + 3 / 12, "feet"),
  14331. default: true
  14332. },
  14333. ]
  14334. ))
  14335. characterMakers.push(() => makeCharacter(
  14336. { name: "Aspen" },
  14337. {
  14338. side: {
  14339. height: math.unit(2 + 8 / 12, "feet"),
  14340. weight: math.unit(99, "lb"),
  14341. name: "Side",
  14342. image: {
  14343. source: "./media/characters/aspen/side.svg",
  14344. extra: 152 / 138,
  14345. bottom: 0.032
  14346. }
  14347. },
  14348. },
  14349. [
  14350. {
  14351. name: "Normal",
  14352. height: math.unit(2 + 8 / 12, "feet"),
  14353. default: true
  14354. },
  14355. ]
  14356. ))
  14357. characterMakers.push(() => makeCharacter(
  14358. { name: "Sheila (Feral Wolf)" },
  14359. {
  14360. side: {
  14361. height: math.unit(3 + 2 / 12, "feet"),
  14362. weight: math.unit(224, "lb"),
  14363. name: "Side",
  14364. image: {
  14365. source: "./media/characters/sheila-feral-wolf/side.svg",
  14366. extra: 179 / 166,
  14367. bottom: 0.03
  14368. }
  14369. },
  14370. },
  14371. [
  14372. {
  14373. name: "Normal",
  14374. height: math.unit(3 + 2 / 12, "feet"),
  14375. default: true
  14376. },
  14377. ]
  14378. ))
  14379. characterMakers.push(() => makeCharacter(
  14380. { name: "Michelle" },
  14381. {
  14382. side: {
  14383. height: math.unit(1 + 9 / 12, "feet"),
  14384. weight: math.unit(38, "lb"),
  14385. name: "Side",
  14386. image: {
  14387. source: "./media/characters/michelle/side.svg",
  14388. extra: 147 / 136.7,
  14389. bottom: 0.03
  14390. }
  14391. },
  14392. },
  14393. [
  14394. {
  14395. name: "Normal",
  14396. height: math.unit(1 + 9 / 12, "feet"),
  14397. default: true
  14398. },
  14399. ]
  14400. ))
  14401. characterMakers.push(() => makeCharacter(
  14402. { name: "Nino" },
  14403. {
  14404. front: {
  14405. height: math.unit(1 + 1 / 12, "feet"),
  14406. weight: math.unit(18, "lb"),
  14407. name: "Front",
  14408. image: {
  14409. source: "./media/characters/nino/front.svg"
  14410. }
  14411. },
  14412. },
  14413. [
  14414. {
  14415. name: "Normal",
  14416. height: math.unit(1 + 1 / 12, "feet"),
  14417. default: true
  14418. },
  14419. ]
  14420. ))
  14421. characterMakers.push(() => makeCharacter(
  14422. { name: "Viola" },
  14423. {
  14424. front: {
  14425. height: math.unit(1, "feet"),
  14426. weight: math.unit(16, "lb"),
  14427. name: "Front",
  14428. image: {
  14429. source: "./media/characters/viola/front.svg"
  14430. }
  14431. },
  14432. },
  14433. [
  14434. {
  14435. name: "Normal",
  14436. height: math.unit(1, "feet"),
  14437. default: true
  14438. },
  14439. ]
  14440. ))
  14441. characterMakers.push(() => makeCharacter(
  14442. { name: "Atlas" },
  14443. {
  14444. front: {
  14445. height: math.unit(6 + 5 / 12, "feet"),
  14446. weight: math.unit(580, "lb"),
  14447. name: "Front",
  14448. image: {
  14449. source: "./media/characters/atlas/front.svg",
  14450. extra: 298.5 / 290,
  14451. bottom: 0.015
  14452. }
  14453. },
  14454. },
  14455. [
  14456. {
  14457. name: "Normal",
  14458. height: math.unit(6 + 5 / 12, "feet"),
  14459. default: true
  14460. },
  14461. ]
  14462. ))
  14463. characterMakers.push(() => makeCharacter(
  14464. { name: "Davy" },
  14465. {
  14466. side: {
  14467. height: math.unit(1 + 10 / 12, "feet"),
  14468. weight: math.unit(25, "lb"),
  14469. name: "Side",
  14470. image: {
  14471. source: "./media/characters/davy/side.svg",
  14472. extra: 200 / 170,
  14473. bottom: 0.01
  14474. }
  14475. },
  14476. },
  14477. [
  14478. {
  14479. name: "Normal",
  14480. height: math.unit(1 + 10 / 12, "feet"),
  14481. default: true
  14482. },
  14483. ]
  14484. ))
  14485. characterMakers.push(() => makeCharacter(
  14486. { name: "Fiona" },
  14487. {
  14488. side: {
  14489. height: math.unit(4 + 8 / 12, "feet"),
  14490. weight: math.unit(166, "lb"),
  14491. name: "Side",
  14492. image: {
  14493. source: "./media/characters/fiona/side.svg",
  14494. extra: 232 / 220,
  14495. bottom: 0.03
  14496. }
  14497. },
  14498. },
  14499. [
  14500. {
  14501. name: "Normal",
  14502. height: math.unit(4 + 8 / 12, "feet"),
  14503. default: true
  14504. },
  14505. ]
  14506. ))
  14507. characterMakers.push(() => makeCharacter(
  14508. { name: "Lyla" },
  14509. {
  14510. front: {
  14511. height: math.unit(2, "feet"),
  14512. weight: math.unit(62, "lb"),
  14513. name: "Front",
  14514. image: {
  14515. source: "./media/characters/lyla/front.svg",
  14516. bottom: 0.1
  14517. }
  14518. },
  14519. },
  14520. [
  14521. {
  14522. name: "Normal",
  14523. height: math.unit(2, "feet"),
  14524. default: true
  14525. },
  14526. ]
  14527. ))
  14528. characterMakers.push(() => makeCharacter(
  14529. { name: "Perseus" },
  14530. {
  14531. side: {
  14532. height: math.unit(1.8, "feet"),
  14533. weight: math.unit(44, "lb"),
  14534. name: "Side",
  14535. image: {
  14536. source: "./media/characters/perseus/side.svg",
  14537. bottom: 0.21
  14538. }
  14539. },
  14540. },
  14541. [
  14542. {
  14543. name: "Normal",
  14544. height: math.unit(1.8, "feet"),
  14545. default: true
  14546. },
  14547. ]
  14548. ))
  14549. characterMakers.push(() => makeCharacter(
  14550. { name: "Remus" },
  14551. {
  14552. side: {
  14553. height: math.unit(4 + 2 / 12, "feet"),
  14554. weight: math.unit(20, "lb"),
  14555. name: "Side",
  14556. image: {
  14557. source: "./media/characters/remus/side.svg"
  14558. }
  14559. },
  14560. },
  14561. [
  14562. {
  14563. name: "Normal",
  14564. height: math.unit(4 + 2 / 12, "feet"),
  14565. default: true
  14566. },
  14567. ]
  14568. ))
  14569. characterMakers.push(() => makeCharacter(
  14570. { name: "Raf" },
  14571. {
  14572. front: {
  14573. height: math.unit(4 + 11 / 12, "feet"),
  14574. weight: math.unit(114, "lb"),
  14575. name: "Front",
  14576. image: {
  14577. source: "./media/characters/raf/front.svg",
  14578. bottom: 0.01
  14579. }
  14580. },
  14581. side: {
  14582. height: math.unit(4 + 11 / 12, "feet"),
  14583. weight: math.unit(114, "lb"),
  14584. name: "Side",
  14585. image: {
  14586. source: "./media/characters/raf/side.svg",
  14587. bottom: 0.005
  14588. }
  14589. },
  14590. },
  14591. [
  14592. {
  14593. name: "Micro",
  14594. height: math.unit(2, "inches")
  14595. },
  14596. {
  14597. name: "Normal",
  14598. height: math.unit(4 + 11 / 12, "feet"),
  14599. default: true
  14600. },
  14601. {
  14602. name: "Macro",
  14603. height: math.unit(70, "feet")
  14604. },
  14605. ]
  14606. ))
  14607. characterMakers.push(() => makeCharacter(
  14608. { name: "Liam Einarr" },
  14609. {
  14610. front: {
  14611. height: math.unit(1.5, "meters"),
  14612. weight: math.unit(68, "kg"),
  14613. name: "Front",
  14614. image: {
  14615. source: "./media/characters/liam-einarr/front.svg",
  14616. extra: 2822 / 2666
  14617. }
  14618. },
  14619. back: {
  14620. height: math.unit(1.5, "meters"),
  14621. weight: math.unit(68, "kg"),
  14622. name: "Back",
  14623. image: {
  14624. source: "./media/characters/liam-einarr/back.svg",
  14625. extra: 2822 / 2666,
  14626. bottom: 0.015
  14627. }
  14628. },
  14629. },
  14630. [
  14631. {
  14632. name: "Normal",
  14633. height: math.unit(1.5, "meters"),
  14634. default: true
  14635. },
  14636. {
  14637. name: "Macro",
  14638. height: math.unit(150, "meters")
  14639. },
  14640. {
  14641. name: "Megamacro",
  14642. height: math.unit(35, "km")
  14643. },
  14644. ]
  14645. ))
  14646. characterMakers.push(() => makeCharacter(
  14647. { name: "Linda" },
  14648. {
  14649. front: {
  14650. height: math.unit(6, "feet"),
  14651. weight: math.unit(75, "kg"),
  14652. name: "Front",
  14653. image: {
  14654. source: "./media/characters/linda/front.svg",
  14655. extra: 930 / 874,
  14656. bottom: 0.004
  14657. }
  14658. },
  14659. },
  14660. [
  14661. {
  14662. name: "Normal",
  14663. height: math.unit(6, "feet"),
  14664. default: true
  14665. },
  14666. ]
  14667. ))
  14668. characterMakers.push(() => makeCharacter(
  14669. { name: "Caylex" },
  14670. {
  14671. front: {
  14672. height: math.unit(6 + 8 / 12, "feet"),
  14673. weight: math.unit(220, "lb"),
  14674. name: "Front",
  14675. image: {
  14676. source: "./media/characters/caylex/front.svg",
  14677. extra: 821 / 772,
  14678. bottom: 0.07
  14679. }
  14680. },
  14681. back: {
  14682. height: math.unit(6 + 8 / 12, "feet"),
  14683. weight: math.unit(220, "lb"),
  14684. name: "Back",
  14685. image: {
  14686. source: "./media/characters/caylex/back.svg",
  14687. extra: 821 / 772,
  14688. bottom: 0.022
  14689. }
  14690. },
  14691. hand: {
  14692. height: math.unit(1.25, "feet"),
  14693. name: "Hand",
  14694. image: {
  14695. source: "./media/characters/caylex/hand.svg"
  14696. }
  14697. },
  14698. foot: {
  14699. height: math.unit(1.6, "feet"),
  14700. name: "Foot",
  14701. image: {
  14702. source: "./media/characters/caylex/foot.svg"
  14703. }
  14704. },
  14705. armored: {
  14706. height: math.unit(6 + 8 / 12, "feet"),
  14707. weight: math.unit(250, "lb"),
  14708. name: "Armored",
  14709. image: {
  14710. source: "./media/characters/caylex/armored.svg",
  14711. extra: 1420 / 1310,
  14712. bottom: 0.045
  14713. }
  14714. },
  14715. },
  14716. [
  14717. {
  14718. name: "Normal",
  14719. height: math.unit(6 + 8 / 12, "feet"),
  14720. default: true
  14721. },
  14722. {
  14723. name: "Normal+",
  14724. height: math.unit(12, "feet")
  14725. },
  14726. ]
  14727. ))
  14728. characterMakers.push(() => makeCharacter(
  14729. { name: "Alana" },
  14730. {
  14731. front: {
  14732. height: math.unit(7 + 6 / 12, "feet"),
  14733. weight: math.unit(288, "lb"),
  14734. name: "Front",
  14735. image: {
  14736. source: "./media/characters/alana/front.svg",
  14737. extra: 679 / 653,
  14738. bottom: 22.5 / 701
  14739. }
  14740. },
  14741. },
  14742. [
  14743. {
  14744. name: "Normal",
  14745. height: math.unit(7 + 6 / 12, "feet")
  14746. },
  14747. {
  14748. name: "Large",
  14749. height: math.unit(50, "feet")
  14750. },
  14751. {
  14752. name: "Macro",
  14753. height: math.unit(100, "feet"),
  14754. default: true
  14755. },
  14756. {
  14757. name: "Macro+",
  14758. height: math.unit(200, "feet")
  14759. },
  14760. ]
  14761. ))
  14762. characterMakers.push(() => makeCharacter(
  14763. { name: "Hasani" },
  14764. {
  14765. front: {
  14766. height: math.unit(6 + 1 / 12, "feet"),
  14767. weight: math.unit(210, "lb"),
  14768. name: "Front",
  14769. image: {
  14770. source: "./media/characters/hasani/front.svg",
  14771. extra: 244 / 232,
  14772. bottom: 0.01
  14773. }
  14774. },
  14775. back: {
  14776. height: math.unit(6 + 1 / 12, "feet"),
  14777. weight: math.unit(210, "lb"),
  14778. name: "Back",
  14779. image: {
  14780. source: "./media/characters/hasani/back.svg",
  14781. extra: 244 / 232,
  14782. bottom: 0.01
  14783. }
  14784. },
  14785. },
  14786. [
  14787. {
  14788. name: "Normal",
  14789. height: math.unit(6 + 1 / 12, "feet")
  14790. },
  14791. {
  14792. name: "Macro",
  14793. height: math.unit(175, "feet"),
  14794. default: true
  14795. },
  14796. ]
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Nita" },
  14800. {
  14801. front: {
  14802. height: math.unit(1.82, "meters"),
  14803. weight: math.unit(140, "lb"),
  14804. name: "Front",
  14805. image: {
  14806. source: "./media/characters/nita/front.svg",
  14807. extra: 2473 / 2363,
  14808. bottom: 0.01
  14809. }
  14810. },
  14811. },
  14812. [
  14813. {
  14814. name: "Normal",
  14815. height: math.unit(1.82, "m")
  14816. },
  14817. {
  14818. name: "Macro",
  14819. height: math.unit(300, "m")
  14820. },
  14821. {
  14822. name: "Mistake Canon",
  14823. height: math.unit(0.5, "miles"),
  14824. default: true
  14825. },
  14826. {
  14827. name: "Big Mistake",
  14828. height: math.unit(13, "miles")
  14829. },
  14830. {
  14831. name: "Playing God",
  14832. height: math.unit(2450, "miles")
  14833. },
  14834. ]
  14835. ))
  14836. characterMakers.push(() => makeCharacter(
  14837. { name: "Shiriko" },
  14838. {
  14839. front: {
  14840. height: math.unit(4, "feet"),
  14841. weight: math.unit(120, "lb"),
  14842. name: "Front",
  14843. image: {
  14844. source: "./media/characters/shiriko/front.svg",
  14845. extra: 195 / 188
  14846. }
  14847. },
  14848. },
  14849. [
  14850. {
  14851. name: "Normal",
  14852. height: math.unit(4, "feet"),
  14853. default: true
  14854. },
  14855. ]
  14856. ))
  14857. characterMakers.push(() => makeCharacter(
  14858. { name: "Deja" },
  14859. {
  14860. front: {
  14861. height: math.unit(6, "feet"),
  14862. name: "front",
  14863. image: {
  14864. source: "./media/characters/deja/front.svg",
  14865. extra: 926 / 840,
  14866. bottom: 0.07
  14867. }
  14868. },
  14869. },
  14870. [
  14871. {
  14872. name: "Planck Length",
  14873. height: math.unit(1.6e-35, "meters")
  14874. },
  14875. {
  14876. name: "Normal",
  14877. height: math.unit(30.48, "meters"),
  14878. default: true
  14879. },
  14880. {
  14881. name: "Universal",
  14882. height: math.unit(8.8e26, "meters")
  14883. },
  14884. ]
  14885. ))
  14886. characterMakers.push(() => makeCharacter(
  14887. { name: "Anima" },
  14888. {
  14889. side: {
  14890. height: math.unit(8, "feet"),
  14891. weight: math.unit(6300, "lb"),
  14892. name: "Side",
  14893. image: {
  14894. source: "./media/characters/anima/side.svg",
  14895. bottom: 0.035
  14896. }
  14897. },
  14898. },
  14899. [
  14900. {
  14901. name: "Normal",
  14902. height: math.unit(8, "feet"),
  14903. default: true
  14904. },
  14905. ]
  14906. ))
  14907. characterMakers.push(() => makeCharacter(
  14908. { name: "Bianca" },
  14909. {
  14910. front: {
  14911. height: math.unit(8, "feet"),
  14912. weight: math.unit(350, "lb"),
  14913. name: "Front",
  14914. image: {
  14915. source: "./media/characters/bianca/front.svg",
  14916. extra: 234 / 225,
  14917. bottom: 0.03
  14918. }
  14919. },
  14920. },
  14921. [
  14922. {
  14923. name: "Normal",
  14924. height: math.unit(8, "feet"),
  14925. default: true
  14926. },
  14927. ]
  14928. ))
  14929. characterMakers.push(() => makeCharacter(
  14930. { name: "Adinia" },
  14931. {
  14932. front: {
  14933. height: math.unit(6, "feet"),
  14934. weight: math.unit(150, "lb"),
  14935. name: "Front",
  14936. image: {
  14937. source: "./media/characters/adinia/front.svg",
  14938. extra: 1845 / 1672,
  14939. bottom: 0.02
  14940. }
  14941. },
  14942. back: {
  14943. height: math.unit(6, "feet"),
  14944. weight: math.unit(150, "lb"),
  14945. name: "Back",
  14946. image: {
  14947. source: "./media/characters/adinia/back.svg",
  14948. extra: 1845 / 1672,
  14949. bottom: 0.002
  14950. }
  14951. },
  14952. },
  14953. [
  14954. {
  14955. name: "Normal",
  14956. height: math.unit(11 + 5 / 12, "feet"),
  14957. default: true
  14958. },
  14959. ]
  14960. ))
  14961. characterMakers.push(() => makeCharacter(
  14962. { name: "Lykasa" },
  14963. {
  14964. front: {
  14965. height: math.unit(3, "meters"),
  14966. weight: math.unit(200, "kg"),
  14967. name: "Front",
  14968. image: {
  14969. source: "./media/characters/lykasa/front.svg",
  14970. extra: 1076 / 976,
  14971. bottom: 0.06
  14972. }
  14973. },
  14974. },
  14975. [
  14976. {
  14977. name: "Normal",
  14978. height: math.unit(3, "meters")
  14979. },
  14980. {
  14981. name: "Kaiju",
  14982. height: math.unit(120, "meters"),
  14983. default: true
  14984. },
  14985. {
  14986. name: "Mega Kaiju",
  14987. height: math.unit(240, "km")
  14988. },
  14989. {
  14990. name: "Giga Kaiju",
  14991. height: math.unit(400, "megameters")
  14992. },
  14993. {
  14994. name: "Tera Kaiju",
  14995. height: math.unit(800, "gigameters")
  14996. },
  14997. {
  14998. name: "Kaiju Dragon Goddess",
  14999. height: math.unit(26, "zettaparsecs")
  15000. },
  15001. ]
  15002. ))
  15003. characterMakers.push(() => makeCharacter(
  15004. { name: "Malfaren" },
  15005. {
  15006. side: {
  15007. height: math.unit(283 / 124 * 6, "feet"),
  15008. weight: math.unit(35000, "lb"),
  15009. name: "Side",
  15010. image: {
  15011. source: "./media/characters/malfaren/side.svg",
  15012. extra: 2500 / 1010,
  15013. bottom: 0.01
  15014. }
  15015. },
  15016. front: {
  15017. height: math.unit(22.36, "feet"),
  15018. weight: math.unit(35000, "lb"),
  15019. name: "Front",
  15020. image: {
  15021. source: "./media/characters/malfaren/front.svg",
  15022. extra: 1631 / 1476,
  15023. bottom: 0.01
  15024. }
  15025. },
  15026. maw: {
  15027. height: math.unit(6.9, "feet"),
  15028. name: "Maw",
  15029. image: {
  15030. source: "./media/characters/malfaren/maw.svg"
  15031. }
  15032. },
  15033. },
  15034. [
  15035. {
  15036. name: "Big",
  15037. height: math.unit(283 / 162 * 6, "feet"),
  15038. },
  15039. {
  15040. name: "Bigger",
  15041. height: math.unit(283 / 124 * 6, "feet")
  15042. },
  15043. {
  15044. name: "Massive",
  15045. height: math.unit(283 / 92 * 6, "feet"),
  15046. default: true
  15047. },
  15048. {
  15049. name: "👀💦",
  15050. height: math.unit(283 / 73 * 6, "feet"),
  15051. },
  15052. ]
  15053. ))
  15054. characterMakers.push(() => makeCharacter(
  15055. { name: "Kernel" },
  15056. {
  15057. front: {
  15058. height: math.unit(1.7, "m"),
  15059. weight: math.unit(70, "kg"),
  15060. name: "Front",
  15061. image: {
  15062. source: "./media/characters/kernel/front.svg",
  15063. extra: 222 / 210,
  15064. bottom: 0.007
  15065. }
  15066. },
  15067. },
  15068. [
  15069. {
  15070. name: "Nano",
  15071. height: math.unit(17, "micrometers")
  15072. },
  15073. {
  15074. name: "Micro",
  15075. height: math.unit(1.7, "mm")
  15076. },
  15077. {
  15078. name: "Small",
  15079. height: math.unit(1.7, "cm")
  15080. },
  15081. {
  15082. name: "Normal",
  15083. height: math.unit(1.7, "m"),
  15084. default: true
  15085. },
  15086. ]
  15087. ))
  15088. characterMakers.push(() => makeCharacter(
  15089. { name: "Jayne Folest" },
  15090. {
  15091. front: {
  15092. height: math.unit(1.75, "meters"),
  15093. weight: math.unit(65, "kg"),
  15094. name: "Front",
  15095. image: {
  15096. source: "./media/characters/jayne-folest/front.svg",
  15097. extra: 2115 / 2007,
  15098. bottom: 0.02
  15099. }
  15100. },
  15101. back: {
  15102. height: math.unit(1.75, "meters"),
  15103. weight: math.unit(65, "kg"),
  15104. name: "Back",
  15105. image: {
  15106. source: "./media/characters/jayne-folest/back.svg",
  15107. extra: 2115 / 2007,
  15108. bottom: 0.005
  15109. }
  15110. },
  15111. frontClothed: {
  15112. height: math.unit(1.75, "meters"),
  15113. weight: math.unit(65, "kg"),
  15114. name: "Front (Clothed)",
  15115. image: {
  15116. source: "./media/characters/jayne-folest/front-clothed.svg",
  15117. extra: 2115 / 2007,
  15118. bottom: 0.035
  15119. }
  15120. },
  15121. hand: {
  15122. height: math.unit(1 / 1.260, "feet"),
  15123. name: "Hand",
  15124. image: {
  15125. source: "./media/characters/jayne-folest/hand.svg"
  15126. }
  15127. },
  15128. foot: {
  15129. height: math.unit(1 / 0.918, "feet"),
  15130. name: "Foot",
  15131. image: {
  15132. source: "./media/characters/jayne-folest/foot.svg"
  15133. }
  15134. },
  15135. },
  15136. [
  15137. {
  15138. name: "Micro",
  15139. height: math.unit(4, "cm")
  15140. },
  15141. {
  15142. name: "Normal",
  15143. height: math.unit(1.75, "meters")
  15144. },
  15145. {
  15146. name: "Macro",
  15147. height: math.unit(47.5, "meters"),
  15148. default: true
  15149. },
  15150. ]
  15151. ))
  15152. characterMakers.push(() => makeCharacter(
  15153. { name: "Algier" },
  15154. {
  15155. front: {
  15156. height: math.unit(180, "cm"),
  15157. weight: math.unit(70, "kg"),
  15158. name: "Front",
  15159. image: {
  15160. source: "./media/characters/algier/front.svg",
  15161. extra: 596 / 572,
  15162. bottom: 0.04
  15163. }
  15164. },
  15165. back: {
  15166. height: math.unit(180, "cm"),
  15167. weight: math.unit(70, "kg"),
  15168. name: "Back",
  15169. image: {
  15170. source: "./media/characters/algier/back.svg",
  15171. extra: 596 / 572,
  15172. bottom: 0.025
  15173. }
  15174. },
  15175. frontdressed: {
  15176. height: math.unit(180, "cm"),
  15177. weight: math.unit(150, "kg"),
  15178. name: "Front-dressed",
  15179. image: {
  15180. source: "./media/characters/algier/front-dressed.svg",
  15181. extra: 596 / 572,
  15182. bottom: 0.038
  15183. }
  15184. },
  15185. },
  15186. [
  15187. {
  15188. name: "Micro",
  15189. height: math.unit(5, "cm")
  15190. },
  15191. {
  15192. name: "Normal",
  15193. height: math.unit(180, "cm"),
  15194. default: true
  15195. },
  15196. {
  15197. name: "Macro",
  15198. height: math.unit(64, "m")
  15199. },
  15200. ]
  15201. ))
  15202. characterMakers.push(() => makeCharacter(
  15203. { name: "Pretzel" },
  15204. {
  15205. upright: {
  15206. height: math.unit(7, "feet"),
  15207. weight: math.unit(300, "lb"),
  15208. name: "Upright",
  15209. image: {
  15210. source: "./media/characters/pretzel/upright.svg",
  15211. extra: 534 / 522,
  15212. bottom: 0.065
  15213. }
  15214. },
  15215. sprawling: {
  15216. height: math.unit(3.75, "feet"),
  15217. weight: math.unit(300, "lb"),
  15218. name: "Sprawling",
  15219. image: {
  15220. source: "./media/characters/pretzel/sprawling.svg",
  15221. extra: 314 / 281,
  15222. bottom: 0.1
  15223. }
  15224. },
  15225. tongue: {
  15226. height: math.unit(2, "feet"),
  15227. name: "Tongue",
  15228. image: {
  15229. source: "./media/characters/pretzel/tongue.svg"
  15230. }
  15231. },
  15232. },
  15233. [
  15234. {
  15235. name: "Normal",
  15236. height: math.unit(7, "feet"),
  15237. default: true
  15238. },
  15239. {
  15240. name: "Oversized",
  15241. height: math.unit(15, "feet")
  15242. },
  15243. {
  15244. name: "Huge",
  15245. height: math.unit(30, "feet")
  15246. },
  15247. {
  15248. name: "Macro",
  15249. height: math.unit(250, "feet")
  15250. },
  15251. ]
  15252. ))
  15253. characterMakers.push(() => makeCharacter(
  15254. { name: "Roxi" },
  15255. {
  15256. sideFront: {
  15257. height: math.unit(5 + 2 / 12, "feet"),
  15258. weight: math.unit(120, "lb"),
  15259. name: "Front Side",
  15260. image: {
  15261. source: "./media/characters/roxi/side-front.svg",
  15262. extra: 2924 / 2717,
  15263. bottom: 0.08
  15264. }
  15265. },
  15266. sideBack: {
  15267. height: math.unit(5 + 2 / 12, "feet"),
  15268. weight: math.unit(120, "lb"),
  15269. name: "Back Side",
  15270. image: {
  15271. source: "./media/characters/roxi/side-back.svg",
  15272. extra: 2904 / 2693,
  15273. bottom: 0.06
  15274. }
  15275. },
  15276. front: {
  15277. height: math.unit(5 + 2 / 12, "feet"),
  15278. weight: math.unit(120, "lb"),
  15279. name: "Front",
  15280. image: {
  15281. source: "./media/characters/roxi/front.svg",
  15282. extra: 2028 / 1907,
  15283. bottom: 0.01
  15284. }
  15285. },
  15286. frontAlt: {
  15287. height: math.unit(5 + 2 / 12, "feet"),
  15288. weight: math.unit(120, "lb"),
  15289. name: "Front (Alt)",
  15290. image: {
  15291. source: "./media/characters/roxi/front-alt.svg",
  15292. extra: 1828 / 1798,
  15293. bottom: 0.01
  15294. }
  15295. },
  15296. sitting: {
  15297. height: math.unit(2.8, "feet"),
  15298. weight: math.unit(120, "lb"),
  15299. name: "Sitting",
  15300. image: {
  15301. source: "./media/characters/roxi/sitting.svg",
  15302. extra: 2660 / 2462,
  15303. bottom: 0.1
  15304. }
  15305. },
  15306. },
  15307. [
  15308. {
  15309. name: "Normal",
  15310. height: math.unit(5 + 2 / 12, "feet"),
  15311. default: true
  15312. },
  15313. ]
  15314. ))
  15315. characterMakers.push(() => makeCharacter(
  15316. { name: "Shadow" },
  15317. {
  15318. side: {
  15319. height: math.unit(55, "feet"),
  15320. weight: math.unit(153, "tons"),
  15321. name: "Side",
  15322. image: {
  15323. source: "./media/characters/shadow/side.svg",
  15324. extra: 701 / 628,
  15325. bottom: 0.02
  15326. }
  15327. },
  15328. flying: {
  15329. height: math.unit(145, "feet"),
  15330. weight: math.unit(153, "tons"),
  15331. name: "Flying",
  15332. image: {
  15333. source: "./media/characters/shadow/flying.svg"
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Normal",
  15340. height: math.unit(55, "feet"),
  15341. default: true
  15342. },
  15343. ]
  15344. ))
  15345. characterMakers.push(() => makeCharacter(
  15346. { name: "Marcie" },
  15347. {
  15348. front: {
  15349. height: math.unit(6, "feet"),
  15350. weight: math.unit(200, "lb"),
  15351. name: "Front",
  15352. image: {
  15353. source: "./media/characters/marcie/front.svg",
  15354. extra: 960 / 876,
  15355. bottom: 58 / 1017.87
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Macro",
  15362. height: math.unit(1, "mile"),
  15363. default: true
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Kachina" },
  15369. {
  15370. front: {
  15371. height: math.unit(7, "feet"),
  15372. weight: math.unit(200, "lb"),
  15373. name: "Front",
  15374. image: {
  15375. source: "./media/characters/kachina/front.svg",
  15376. extra: 1290.68 / 1119,
  15377. bottom: 36.5 / 1327.18
  15378. }
  15379. },
  15380. },
  15381. [
  15382. {
  15383. name: "Normal",
  15384. height: math.unit(7, "feet"),
  15385. default: true
  15386. },
  15387. ]
  15388. ))
  15389. characterMakers.push(() => makeCharacter(
  15390. { name: "Kash" },
  15391. {
  15392. looking: {
  15393. height: math.unit(2, "meters"),
  15394. weight: math.unit(300, "kg"),
  15395. name: "Looking",
  15396. image: {
  15397. source: "./media/characters/kash/looking.svg",
  15398. extra: 474 / 344,
  15399. bottom: 0.03
  15400. }
  15401. },
  15402. side: {
  15403. height: math.unit(2, "meters"),
  15404. weight: math.unit(300, "kg"),
  15405. name: "Side",
  15406. image: {
  15407. source: "./media/characters/kash/side.svg",
  15408. extra: 302 / 251,
  15409. bottom: 0.03
  15410. }
  15411. },
  15412. front: {
  15413. height: math.unit(2, "meters"),
  15414. weight: math.unit(300, "kg"),
  15415. name: "Front",
  15416. image: {
  15417. source: "./media/characters/kash/front.svg",
  15418. extra: 495 / 360,
  15419. bottom: 0.015
  15420. }
  15421. },
  15422. },
  15423. [
  15424. {
  15425. name: "Normal",
  15426. height: math.unit(2, "meters"),
  15427. default: true
  15428. },
  15429. {
  15430. name: "Big",
  15431. height: math.unit(3, "meters")
  15432. },
  15433. {
  15434. name: "Large",
  15435. height: math.unit(5, "meters")
  15436. },
  15437. ]
  15438. ))
  15439. characterMakers.push(() => makeCharacter(
  15440. { name: "Lalim" },
  15441. {
  15442. feeding: {
  15443. height: math.unit(6.7, "feet"),
  15444. weight: math.unit(350, "lb"),
  15445. name: "Feeding",
  15446. image: {
  15447. source: "./media/characters/lalim/feeding.svg",
  15448. }
  15449. },
  15450. },
  15451. [
  15452. {
  15453. name: "Normal",
  15454. height: math.unit(6.7, "feet"),
  15455. default: true
  15456. },
  15457. ]
  15458. ))
  15459. characterMakers.push(() => makeCharacter(
  15460. { name: "De'Vout" },
  15461. {
  15462. front: {
  15463. height: math.unit(9.5, "feet"),
  15464. weight: math.unit(600, "lb"),
  15465. name: "Front",
  15466. image: {
  15467. source: "./media/characters/de'vout/front.svg",
  15468. extra: 1443 / 1328,
  15469. bottom: 0.025
  15470. }
  15471. },
  15472. back: {
  15473. height: math.unit(9.5, "feet"),
  15474. weight: math.unit(600, "lb"),
  15475. name: "Back",
  15476. image: {
  15477. source: "./media/characters/de'vout/back.svg",
  15478. extra: 1443 / 1328
  15479. }
  15480. },
  15481. frontDressed: {
  15482. height: math.unit(9.5, "feet"),
  15483. weight: math.unit(600, "lb"),
  15484. name: "Front (Dressed",
  15485. image: {
  15486. source: "./media/characters/de'vout/front-dressed.svg",
  15487. extra: 1443 / 1328,
  15488. bottom: 0.025
  15489. }
  15490. },
  15491. backDressed: {
  15492. height: math.unit(9.5, "feet"),
  15493. weight: math.unit(600, "lb"),
  15494. name: "Back (Dressed",
  15495. image: {
  15496. source: "./media/characters/de'vout/back-dressed.svg",
  15497. extra: 1443 / 1328
  15498. }
  15499. },
  15500. },
  15501. [
  15502. {
  15503. name: "Normal",
  15504. height: math.unit(9.5, "feet"),
  15505. default: true
  15506. },
  15507. ]
  15508. ))
  15509. characterMakers.push(() => makeCharacter(
  15510. { name: "Talana" },
  15511. {
  15512. front: {
  15513. height: math.unit(8, "feet"),
  15514. weight: math.unit(225, "lb"),
  15515. name: "Front",
  15516. image: {
  15517. source: "./media/characters/talana/front.svg",
  15518. extra: 1410 / 1300,
  15519. bottom: 0.015
  15520. }
  15521. },
  15522. frontDressed: {
  15523. height: math.unit(8, "feet"),
  15524. weight: math.unit(225, "lb"),
  15525. name: "Front (Dressed",
  15526. image: {
  15527. source: "./media/characters/talana/front-dressed.svg",
  15528. extra: 1410 / 1300,
  15529. bottom: 0.015
  15530. }
  15531. },
  15532. },
  15533. [
  15534. {
  15535. name: "Normal",
  15536. height: math.unit(8, "feet"),
  15537. default: true
  15538. },
  15539. ]
  15540. ))
  15541. characterMakers.push(() => makeCharacter(
  15542. { name: "Xeauvok" },
  15543. {
  15544. side: {
  15545. height: math.unit(7.2, "feet"),
  15546. weight: math.unit(150, "lb"),
  15547. name: "Side",
  15548. image: {
  15549. source: "./media/characters/xeauvok/side.svg",
  15550. extra: 1975 / 1523,
  15551. bottom: 0.07
  15552. }
  15553. },
  15554. },
  15555. [
  15556. {
  15557. name: "Normal",
  15558. height: math.unit(7.2, "feet"),
  15559. default: true
  15560. },
  15561. ]
  15562. ))
  15563. characterMakers.push(() => makeCharacter(
  15564. { name: "Zara" },
  15565. {
  15566. side: {
  15567. height: math.unit(10, "feet"),
  15568. weight: math.unit(900, "kg"),
  15569. name: "Side",
  15570. image: {
  15571. source: "./media/characters/zara/side.svg",
  15572. extra: 504 / 498
  15573. }
  15574. },
  15575. },
  15576. [
  15577. {
  15578. name: "Normal",
  15579. height: math.unit(10, "feet"),
  15580. default: true
  15581. },
  15582. ]
  15583. ))
  15584. characterMakers.push(() => makeCharacter(
  15585. { name: "Richard (Dragon)" },
  15586. {
  15587. side: {
  15588. height: math.unit(6, "feet"),
  15589. weight: math.unit(150, "lb"),
  15590. name: "Side",
  15591. image: {
  15592. source: "./media/characters/richard-dragon/side.svg",
  15593. extra: 845 / 340,
  15594. bottom: 0.017
  15595. }
  15596. },
  15597. maw: {
  15598. height: math.unit(2.97, "feet"),
  15599. name: "Maw",
  15600. image: {
  15601. source: "./media/characters/richard-dragon/maw.svg"
  15602. }
  15603. },
  15604. },
  15605. [
  15606. ]
  15607. ))
  15608. characterMakers.push(() => makeCharacter(
  15609. { name: "Richard (Smeargle)" },
  15610. {
  15611. front: {
  15612. height: math.unit(4, "feet"),
  15613. weight: math.unit(100, "lb"),
  15614. name: "Front",
  15615. image: {
  15616. source: "./media/characters/richard-smeargle/front.svg",
  15617. extra: 2952 / 2820,
  15618. bottom: 0.028
  15619. }
  15620. },
  15621. },
  15622. [
  15623. {
  15624. name: "Normal",
  15625. height: math.unit(4, "feet"),
  15626. default: true
  15627. },
  15628. {
  15629. name: "Dynamax",
  15630. height: math.unit(20, "meters")
  15631. },
  15632. ]
  15633. ))
  15634. characterMakers.push(() => makeCharacter(
  15635. { name: "Klay" },
  15636. {
  15637. front: {
  15638. height: math.unit(6, "feet"),
  15639. weight: math.unit(110, "lb"),
  15640. name: "Front",
  15641. image: {
  15642. source: "./media/characters/klay/front.svg",
  15643. extra: 962 / 883,
  15644. bottom: 0.04
  15645. }
  15646. },
  15647. back: {
  15648. height: math.unit(6, "feet"),
  15649. weight: math.unit(110, "lb"),
  15650. name: "Back",
  15651. image: {
  15652. source: "./media/characters/klay/back.svg",
  15653. extra: 962 / 883
  15654. }
  15655. },
  15656. beans: {
  15657. height: math.unit(1.15, "feet"),
  15658. name: "Beans",
  15659. image: {
  15660. source: "./media/characters/klay/beans.svg"
  15661. }
  15662. },
  15663. },
  15664. [
  15665. {
  15666. name: "Micro",
  15667. height: math.unit(6, "inches")
  15668. },
  15669. {
  15670. name: "Mini",
  15671. height: math.unit(3, "feet")
  15672. },
  15673. {
  15674. name: "Normal",
  15675. height: math.unit(6, "feet"),
  15676. default: true
  15677. },
  15678. {
  15679. name: "Big",
  15680. height: math.unit(25, "feet")
  15681. },
  15682. {
  15683. name: "Macro",
  15684. height: math.unit(100, "feet")
  15685. },
  15686. {
  15687. name: "Megamacro",
  15688. height: math.unit(400, "feet")
  15689. },
  15690. ]
  15691. ))
  15692. characterMakers.push(() => makeCharacter(
  15693. { name: "Marcus" },
  15694. {
  15695. front: {
  15696. height: math.unit(6, "feet"),
  15697. weight: math.unit(160, "lb"),
  15698. name: "Front",
  15699. image: {
  15700. source: "./media/characters/marcus/front.svg",
  15701. extra: 734 / 676,
  15702. bottom: 0.03
  15703. }
  15704. },
  15705. },
  15706. [
  15707. {
  15708. name: "Little",
  15709. height: math.unit(6, "feet")
  15710. },
  15711. {
  15712. name: "Normal",
  15713. height: math.unit(110, "feet"),
  15714. default: true
  15715. },
  15716. {
  15717. name: "Macro",
  15718. height: math.unit(250, "feet")
  15719. },
  15720. {
  15721. name: "Megamacro",
  15722. height: math.unit(1000, "feet")
  15723. },
  15724. ]
  15725. ))
  15726. characterMakers.push(() => makeCharacter(
  15727. { name: "Claude DelRoute" },
  15728. {
  15729. front: {
  15730. height: math.unit(7, "feet"),
  15731. weight: math.unit(275, "lb"),
  15732. name: "Front",
  15733. image: {
  15734. source: "./media/characters/claude-delroute/front.svg",
  15735. extra: 230 / 214,
  15736. bottom: 0.007
  15737. }
  15738. },
  15739. side: {
  15740. height: math.unit(7, "feet"),
  15741. weight: math.unit(275, "lb"),
  15742. name: "Side",
  15743. image: {
  15744. source: "./media/characters/claude-delroute/side.svg",
  15745. extra: 222 / 214,
  15746. bottom: 0.01
  15747. }
  15748. },
  15749. back: {
  15750. height: math.unit(7, "feet"),
  15751. weight: math.unit(275, "lb"),
  15752. name: "Back",
  15753. image: {
  15754. source: "./media/characters/claude-delroute/back.svg",
  15755. extra: 230 / 214,
  15756. bottom: 0.015
  15757. }
  15758. },
  15759. maw: {
  15760. height: math.unit(0.6407, "meters"),
  15761. name: "Maw",
  15762. image: {
  15763. source: "./media/characters/claude-delroute/maw.svg"
  15764. }
  15765. },
  15766. },
  15767. [
  15768. {
  15769. name: "Normal",
  15770. height: math.unit(7, "feet"),
  15771. default: true
  15772. },
  15773. {
  15774. name: "Lorge",
  15775. height: math.unit(20, "feet")
  15776. },
  15777. ]
  15778. ))
  15779. characterMakers.push(() => makeCharacter(
  15780. { name: "Dragonien" },
  15781. {
  15782. front: {
  15783. height: math.unit(8 + 4 / 12, "feet"),
  15784. weight: math.unit(600, "lb"),
  15785. name: "Front",
  15786. image: {
  15787. source: "./media/characters/dragonien/front.svg",
  15788. extra: 100 / 94,
  15789. bottom: 3.3 / 103.3445
  15790. }
  15791. },
  15792. back: {
  15793. height: math.unit(8 + 4 / 12, "feet"),
  15794. weight: math.unit(600, "lb"),
  15795. name: "Back",
  15796. image: {
  15797. source: "./media/characters/dragonien/back.svg",
  15798. extra: 776 / 746,
  15799. bottom: 6.4 / 782.0616
  15800. }
  15801. },
  15802. foot: {
  15803. height: math.unit(1.54, "feet"),
  15804. name: "Foot",
  15805. image: {
  15806. source: "./media/characters/dragonien/foot.svg",
  15807. }
  15808. },
  15809. },
  15810. [
  15811. {
  15812. name: "Normal",
  15813. height: math.unit(8 + 4 / 12, "feet"),
  15814. default: true
  15815. },
  15816. {
  15817. name: "Macro",
  15818. height: math.unit(200, "feet")
  15819. },
  15820. {
  15821. name: "Megamacro",
  15822. height: math.unit(1, "mile")
  15823. },
  15824. {
  15825. name: "Gigamacro",
  15826. height: math.unit(1000, "miles")
  15827. },
  15828. ]
  15829. ))
  15830. characterMakers.push(() => makeCharacter(
  15831. { name: "Desta" },
  15832. {
  15833. front: {
  15834. height: math.unit(5 + 2 / 12, "feet"),
  15835. weight: math.unit(110, "lb"),
  15836. name: "Front",
  15837. image: {
  15838. source: "./media/characters/desta/front.svg",
  15839. extra: 1482 / 1417
  15840. }
  15841. },
  15842. side: {
  15843. height: math.unit(5 + 2 / 12, "feet"),
  15844. weight: math.unit(110, "lb"),
  15845. name: "Side",
  15846. image: {
  15847. source: "./media/characters/desta/side.svg",
  15848. extra: 2579 / 2491,
  15849. bottom: 0.053
  15850. }
  15851. },
  15852. },
  15853. [
  15854. {
  15855. name: "Micro",
  15856. height: math.unit(6, "inches")
  15857. },
  15858. {
  15859. name: "Normal",
  15860. height: math.unit(5 + 2 / 12, "feet"),
  15861. default: true
  15862. },
  15863. {
  15864. name: "Macro",
  15865. height: math.unit(62, "feet")
  15866. },
  15867. {
  15868. name: "Megamacro",
  15869. height: math.unit(1800, "feet")
  15870. },
  15871. ]
  15872. ))
  15873. characterMakers.push(() => makeCharacter(
  15874. { name: "Storm Alystar" },
  15875. {
  15876. front: {
  15877. height: math.unit(10, "feet"),
  15878. weight: math.unit(700, "lb"),
  15879. name: "Front",
  15880. image: {
  15881. source: "./media/characters/storm-alystar/front.svg",
  15882. extra: 2112 / 1898,
  15883. bottom: 0.034
  15884. }
  15885. },
  15886. },
  15887. [
  15888. {
  15889. name: "Micro",
  15890. height: math.unit(3.5, "inches")
  15891. },
  15892. {
  15893. name: "Normal",
  15894. height: math.unit(10, "feet"),
  15895. default: true
  15896. },
  15897. {
  15898. name: "Macro",
  15899. height: math.unit(400, "feet")
  15900. },
  15901. {
  15902. name: "Deific",
  15903. height: math.unit(60, "miles")
  15904. },
  15905. ]
  15906. ))
  15907. characterMakers.push(() => makeCharacter(
  15908. { name: "Ilia" },
  15909. {
  15910. front: {
  15911. height: math.unit(2.35, "meters"),
  15912. weight: math.unit(119, "kg"),
  15913. name: "Front",
  15914. image: {
  15915. source: "./media/characters/ilia/front.svg",
  15916. extra: 1285 / 1255,
  15917. bottom: 0.06
  15918. }
  15919. },
  15920. },
  15921. [
  15922. {
  15923. name: "Normal",
  15924. height: math.unit(2.35, "meters")
  15925. },
  15926. {
  15927. name: "Macro",
  15928. height: math.unit(140, "meters"),
  15929. default: true
  15930. },
  15931. {
  15932. name: "Megamacro",
  15933. height: math.unit(100, "miles")
  15934. },
  15935. ]
  15936. ))
  15937. characterMakers.push(() => makeCharacter(
  15938. { name: "KingDead" },
  15939. {
  15940. front: {
  15941. height: math.unit(6 + 5 / 12, "feet"),
  15942. weight: math.unit(190, "lb"),
  15943. name: "Front",
  15944. image: {
  15945. source: "./media/characters/kingdead/front.svg",
  15946. extra: 1228 / 1177
  15947. }
  15948. },
  15949. },
  15950. [
  15951. {
  15952. name: "Micro",
  15953. height: math.unit(7, "inches")
  15954. },
  15955. {
  15956. name: "Normal",
  15957. height: math.unit(6 + 5 / 12, "feet")
  15958. },
  15959. {
  15960. name: "Macro",
  15961. height: math.unit(150, "feet"),
  15962. default: true
  15963. },
  15964. {
  15965. name: "Megamacro",
  15966. height: math.unit(200, "miles")
  15967. },
  15968. ]
  15969. ))
  15970. characterMakers.push(() => makeCharacter(
  15971. { name: "Kyrehx" },
  15972. {
  15973. front: {
  15974. height: math.unit(8, "feet"),
  15975. weight: math.unit(600, "lb"),
  15976. name: "Front",
  15977. image: {
  15978. source: "./media/characters/kyrehx/front.svg",
  15979. extra: 1195 / 1095,
  15980. bottom: 0.034
  15981. }
  15982. },
  15983. },
  15984. [
  15985. {
  15986. name: "Micro",
  15987. height: math.unit(2, "inches")
  15988. },
  15989. {
  15990. name: "Normal",
  15991. height: math.unit(8, "feet"),
  15992. default: true
  15993. },
  15994. {
  15995. name: "Macro",
  15996. height: math.unit(255, "feet")
  15997. },
  15998. ]
  15999. ))
  16000. characterMakers.push(() => makeCharacter(
  16001. { name: "Xang" },
  16002. {
  16003. front: {
  16004. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16005. weight: math.unit(184, "lb"),
  16006. name: "Front",
  16007. image: {
  16008. source: "./media/characters/xang/front.svg",
  16009. extra: 845 / 755
  16010. }
  16011. },
  16012. },
  16013. [
  16014. {
  16015. name: "Normal",
  16016. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16017. default: true
  16018. },
  16019. {
  16020. name: "Macro",
  16021. height: math.unit(0.935 * 146, "feet")
  16022. },
  16023. {
  16024. name: "Megamacro",
  16025. height: math.unit(0.935 * 3, "miles")
  16026. },
  16027. ]
  16028. ))
  16029. characterMakers.push(() => makeCharacter(
  16030. { name: "Doc Weardno" },
  16031. {
  16032. frontDressed: {
  16033. height: math.unit(5 + 7 / 12, "feet"),
  16034. weight: math.unit(140, "lb"),
  16035. name: "Front (Dressed)",
  16036. image: {
  16037. source: "./media/characters/doc-weardno/front-dressed.svg",
  16038. extra: 263 / 234
  16039. }
  16040. },
  16041. backDressed: {
  16042. height: math.unit(5 + 7 / 12, "feet"),
  16043. weight: math.unit(140, "lb"),
  16044. name: "Back (Dressed)",
  16045. image: {
  16046. source: "./media/characters/doc-weardno/back-dressed.svg",
  16047. extra: 266 / 238
  16048. }
  16049. },
  16050. front: {
  16051. height: math.unit(5 + 7 / 12, "feet"),
  16052. weight: math.unit(140, "lb"),
  16053. name: "Front",
  16054. image: {
  16055. source: "./media/characters/doc-weardno/front.svg",
  16056. extra: 254 / 233
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Micro",
  16063. height: math.unit(3, "inches")
  16064. },
  16065. {
  16066. name: "Normal",
  16067. height: math.unit(5 + 7 / 12, "feet"),
  16068. default: true
  16069. },
  16070. {
  16071. name: "Macro",
  16072. height: math.unit(25, "feet")
  16073. },
  16074. {
  16075. name: "Megamacro",
  16076. height: math.unit(2, "miles")
  16077. },
  16078. ]
  16079. ))
  16080. characterMakers.push(() => makeCharacter(
  16081. { name: "Seth Whilst" },
  16082. {
  16083. front: {
  16084. height: math.unit(6 + 2 / 12, "feet"),
  16085. weight: math.unit(153, "lb"),
  16086. name: "Front",
  16087. image: {
  16088. source: "./media/characters/seth-whilst/front.svg",
  16089. bottom: 0.07
  16090. }
  16091. },
  16092. },
  16093. [
  16094. {
  16095. name: "Micro",
  16096. height: math.unit(5, "inches")
  16097. },
  16098. {
  16099. name: "Normal",
  16100. height: math.unit(6 + 2 / 12, "feet"),
  16101. default: true
  16102. },
  16103. ]
  16104. ))
  16105. characterMakers.push(() => makeCharacter(
  16106. { name: "Pocket Jabari" },
  16107. {
  16108. front: {
  16109. height: math.unit(3, "inches"),
  16110. weight: math.unit(8, "grams"),
  16111. name: "Front",
  16112. image: {
  16113. source: "./media/characters/pocket-jabari/front.svg",
  16114. extra: 1024 / 974,
  16115. bottom: 0.039
  16116. }
  16117. },
  16118. },
  16119. [
  16120. {
  16121. name: "Minimicro",
  16122. height: math.unit(8, "mm")
  16123. },
  16124. {
  16125. name: "Micro",
  16126. height: math.unit(3, "inches"),
  16127. default: true
  16128. },
  16129. {
  16130. name: "Normal",
  16131. height: math.unit(3, "feet")
  16132. },
  16133. ]
  16134. ))
  16135. characterMakers.push(() => makeCharacter(
  16136. { name: "Sapphy" },
  16137. {
  16138. front: {
  16139. height: math.unit(15, "feet"),
  16140. weight: math.unit(3280, "lb"),
  16141. name: "Front",
  16142. image: {
  16143. source: "./media/characters/sapphy/front.svg",
  16144. extra: 671 / 577,
  16145. bottom: 0.085
  16146. }
  16147. },
  16148. back: {
  16149. height: math.unit(15, "feet"),
  16150. weight: math.unit(3280, "lb"),
  16151. name: "Back",
  16152. image: {
  16153. source: "./media/characters/sapphy/back.svg",
  16154. extra: 631 / 607,
  16155. bottom: 0.045
  16156. }
  16157. },
  16158. },
  16159. [
  16160. {
  16161. name: "Normal",
  16162. height: math.unit(15, "feet")
  16163. },
  16164. {
  16165. name: "Casual Macro",
  16166. height: math.unit(120, "feet")
  16167. },
  16168. {
  16169. name: "Macro",
  16170. height: math.unit(2150, "feet"),
  16171. default: true
  16172. },
  16173. {
  16174. name: "Megamacro",
  16175. height: math.unit(8, "miles")
  16176. },
  16177. {
  16178. name: "Galaxy Mom",
  16179. height: math.unit(6, "megalightyears")
  16180. },
  16181. ]
  16182. ))
  16183. characterMakers.push(() => makeCharacter(
  16184. { name: "Kiro" },
  16185. {
  16186. front: {
  16187. height: math.unit(6, "feet"),
  16188. weight: math.unit(170, "lb"),
  16189. name: "Front",
  16190. image: {
  16191. source: "./media/characters/kiro/front.svg",
  16192. extra: 1064 / 1012,
  16193. bottom: 0.052
  16194. }
  16195. },
  16196. },
  16197. [
  16198. {
  16199. name: "Micro",
  16200. height: math.unit(6, "inches")
  16201. },
  16202. {
  16203. name: "Normal",
  16204. height: math.unit(6, "feet"),
  16205. default: true
  16206. },
  16207. {
  16208. name: "Macro",
  16209. height: math.unit(72, "feet")
  16210. },
  16211. ]
  16212. ))
  16213. characterMakers.push(() => makeCharacter(
  16214. { name: "Irishfox" },
  16215. {
  16216. front: {
  16217. height: math.unit(5 + 9 / 12, "feet"),
  16218. weight: math.unit(175, "lb"),
  16219. name: "Front",
  16220. image: {
  16221. source: "./media/characters/irishfox/front.svg",
  16222. extra: 1912 / 1680,
  16223. bottom: 0.02
  16224. }
  16225. },
  16226. },
  16227. [
  16228. {
  16229. name: "Nano",
  16230. height: math.unit(1, "mm")
  16231. },
  16232. {
  16233. name: "Micro",
  16234. height: math.unit(2, "inches")
  16235. },
  16236. {
  16237. name: "Normal",
  16238. height: math.unit(5 + 9 / 12, "feet"),
  16239. default: true
  16240. },
  16241. {
  16242. name: "Macro",
  16243. height: math.unit(45, "feet")
  16244. },
  16245. ]
  16246. ))
  16247. characterMakers.push(() => makeCharacter(
  16248. { name: "Aronai Sieyes" },
  16249. {
  16250. front: {
  16251. height: math.unit(6 + 1 / 12, "feet"),
  16252. weight: math.unit(150, "lb"),
  16253. name: "Front",
  16254. image: {
  16255. source: "./media/characters/aronai-sieyes/front.svg",
  16256. extra: 1556 / 1480,
  16257. bottom: 0.015
  16258. }
  16259. },
  16260. side: {
  16261. height: math.unit(6 + 1 / 12, "feet"),
  16262. weight: math.unit(150, "lb"),
  16263. name: "Side",
  16264. image: {
  16265. source: "./media/characters/aronai-sieyes/side.svg",
  16266. extra: 1433 / 1390,
  16267. bottom: 0.0393
  16268. }
  16269. },
  16270. back: {
  16271. height: math.unit(6 + 1 / 12, "feet"),
  16272. weight: math.unit(150, "lb"),
  16273. name: "Back",
  16274. image: {
  16275. source: "./media/characters/aronai-sieyes/back.svg",
  16276. extra: 1544 / 1494,
  16277. bottom: 0.02
  16278. }
  16279. },
  16280. frontClothed: {
  16281. height: math.unit(6 + 1 / 12, "feet"),
  16282. weight: math.unit(150, "lb"),
  16283. name: "Front (Clothed)",
  16284. image: {
  16285. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16286. extra: 1582 / 1527
  16287. }
  16288. },
  16289. feral: {
  16290. height: math.unit(18, "feet"),
  16291. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16292. name: "Feral",
  16293. image: {
  16294. source: "./media/characters/aronai-sieyes/feral.svg",
  16295. extra: 1530 / 1240,
  16296. bottom: 0.035
  16297. }
  16298. },
  16299. },
  16300. [
  16301. {
  16302. name: "Micro",
  16303. height: math.unit(2, "inches")
  16304. },
  16305. {
  16306. name: "Normal",
  16307. height: math.unit(6 + 1 / 12, "feet"),
  16308. default: true
  16309. }
  16310. ]
  16311. ))
  16312. characterMakers.push(() => makeCharacter(
  16313. { name: "Xuna" },
  16314. {
  16315. front: {
  16316. height: math.unit(12, "feet"),
  16317. weight: math.unit(410, "kg"),
  16318. name: "Front",
  16319. image: {
  16320. source: "./media/characters/xuna/front.svg",
  16321. extra: 2184 / 1980
  16322. }
  16323. },
  16324. side: {
  16325. height: math.unit(12, "feet"),
  16326. weight: math.unit(410, "kg"),
  16327. name: "Side",
  16328. image: {
  16329. source: "./media/characters/xuna/side.svg",
  16330. extra: 2184 / 1980
  16331. }
  16332. },
  16333. back: {
  16334. height: math.unit(12, "feet"),
  16335. weight: math.unit(410, "kg"),
  16336. name: "Back",
  16337. image: {
  16338. source: "./media/characters/xuna/back.svg",
  16339. extra: 2184 / 1980
  16340. }
  16341. },
  16342. },
  16343. [
  16344. {
  16345. name: "Nano glow",
  16346. height: math.unit(10, "nm")
  16347. },
  16348. {
  16349. name: "Micro floof",
  16350. height: math.unit(0.3, "m")
  16351. },
  16352. {
  16353. name: "Huggable softy boi",
  16354. height: math.unit(3.6576, "m"),
  16355. default: true
  16356. },
  16357. {
  16358. name: "Admirable floof",
  16359. height: math.unit(80, "meters")
  16360. },
  16361. {
  16362. name: "Gentle macro",
  16363. height: math.unit(300, "meters")
  16364. },
  16365. {
  16366. name: "Very careful floof",
  16367. height: math.unit(3200, "meters")
  16368. },
  16369. {
  16370. name: "The mega floof",
  16371. height: math.unit(36000, "meters")
  16372. },
  16373. {
  16374. name: "Giga-fur-Wicker",
  16375. height: math.unit(4800000, "meters")
  16376. },
  16377. {
  16378. name: "Licky world",
  16379. height: math.unit(20000000, "meters")
  16380. },
  16381. {
  16382. name: "Floofy cyan sun",
  16383. height: math.unit(1500000000, "meters")
  16384. },
  16385. {
  16386. name: "Milky Wicker",
  16387. height: math.unit(1000000000000000000000, "meters")
  16388. },
  16389. {
  16390. name: "The observing Wicker",
  16391. height: math.unit(999999999999999999999999999, "meters")
  16392. },
  16393. ]
  16394. ))
  16395. characterMakers.push(() => makeCharacter(
  16396. { name: "Arokha Sieyes" },
  16397. {
  16398. front: {
  16399. height: math.unit(5 + 9 / 12, "feet"),
  16400. weight: math.unit(150, "lb"),
  16401. name: "Front",
  16402. image: {
  16403. source: "./media/characters/arokha-sieyes/front.svg",
  16404. extra: 1425 / 1284,
  16405. bottom: 0.05
  16406. }
  16407. },
  16408. },
  16409. [
  16410. {
  16411. name: "Normal",
  16412. height: math.unit(5 + 9 / 12, "feet")
  16413. },
  16414. {
  16415. name: "Macro",
  16416. height: math.unit(30, "meters"),
  16417. default: true
  16418. },
  16419. ]
  16420. ))
  16421. characterMakers.push(() => makeCharacter(
  16422. { name: "Arokh Sieyes" },
  16423. {
  16424. front: {
  16425. height: math.unit(6, "feet"),
  16426. weight: math.unit(180, "lb"),
  16427. name: "Front",
  16428. image: {
  16429. source: "./media/characters/arokh-sieyes/front.svg",
  16430. extra: 1830 / 1769,
  16431. bottom: 0.01
  16432. }
  16433. },
  16434. },
  16435. [
  16436. {
  16437. name: "Normal",
  16438. height: math.unit(6, "feet")
  16439. },
  16440. {
  16441. name: "Macro",
  16442. height: math.unit(30, "meters"),
  16443. default: true
  16444. },
  16445. ]
  16446. ))
  16447. characterMakers.push(() => makeCharacter(
  16448. { name: "Goldeneye" },
  16449. {
  16450. side: {
  16451. height: math.unit(13 + 1 / 12, "feet"),
  16452. weight: math.unit(8.5, "tonnes"),
  16453. name: "Side",
  16454. image: {
  16455. source: "./media/characters/goldeneye/side.svg",
  16456. extra: 1182 / 778,
  16457. bottom: 0.067
  16458. }
  16459. },
  16460. paw: {
  16461. height: math.unit(3.4, "feet"),
  16462. name: "Paw",
  16463. image: {
  16464. source: "./media/characters/goldeneye/paw.svg"
  16465. }
  16466. },
  16467. },
  16468. [
  16469. {
  16470. name: "Normal",
  16471. height: math.unit(13 + 1 / 12, "feet"),
  16472. default: true
  16473. },
  16474. ]
  16475. ))
  16476. characterMakers.push(() => makeCharacter(
  16477. { name: "Leonardo Lycheborne" },
  16478. {
  16479. front: {
  16480. height: math.unit(6 + 1 / 12, "feet"),
  16481. weight: math.unit(210, "lb"),
  16482. name: "Front",
  16483. image: {
  16484. source: "./media/characters/leonardo-lycheborne/front.svg",
  16485. extra: 390 / 365,
  16486. bottom: 0.032
  16487. }
  16488. },
  16489. side: {
  16490. height: math.unit(6 + 1 / 12, "feet"),
  16491. weight: math.unit(210, "lb"),
  16492. name: "Side",
  16493. image: {
  16494. source: "./media/characters/leonardo-lycheborne/side.svg",
  16495. extra: 390 / 365,
  16496. bottom: 0.005
  16497. }
  16498. },
  16499. back: {
  16500. height: math.unit(6 + 1 / 12, "feet"),
  16501. weight: math.unit(210, "lb"),
  16502. name: "Back",
  16503. image: {
  16504. source: "./media/characters/leonardo-lycheborne/back.svg",
  16505. extra: 392 / 366,
  16506. bottom: 0.01
  16507. }
  16508. },
  16509. hand: {
  16510. height: math.unit(1.08, "feet"),
  16511. name: "Hand",
  16512. image: {
  16513. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16514. }
  16515. },
  16516. foot: {
  16517. height: math.unit(1.32, "feet"),
  16518. name: "Foot",
  16519. image: {
  16520. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16521. }
  16522. },
  16523. were: {
  16524. height: math.unit(20, "feet"),
  16525. weight: math.unit(7800, "lb"),
  16526. name: "Were",
  16527. image: {
  16528. source: "./media/characters/leonardo-lycheborne/were.svg",
  16529. extra: 308 / 294,
  16530. bottom: 0.048
  16531. }
  16532. },
  16533. feral: {
  16534. height: math.unit(7.5, "feet"),
  16535. weight: math.unit(600, "lb"),
  16536. name: "Feral",
  16537. image: {
  16538. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16539. extra: 210 / 186,
  16540. bottom: 0.108
  16541. }
  16542. },
  16543. taur: {
  16544. height: math.unit(11, "feet"),
  16545. weight: math.unit(3300, "lb"),
  16546. name: "Taur",
  16547. image: {
  16548. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16549. extra: 320 / 303,
  16550. bottom: 0.025
  16551. }
  16552. },
  16553. barghest: {
  16554. height: math.unit(11, "feet"),
  16555. weight: math.unit(1300, "lb"),
  16556. name: "Barghest",
  16557. image: {
  16558. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16559. extra: 323 / 302,
  16560. bottom: 0.027
  16561. }
  16562. },
  16563. dick: {
  16564. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16565. name: "Dick",
  16566. image: {
  16567. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16568. }
  16569. },
  16570. dickWere: {
  16571. height: math.unit((20) / 3.8, "feet"),
  16572. name: "Dick (Were)",
  16573. image: {
  16574. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16575. }
  16576. },
  16577. },
  16578. [
  16579. {
  16580. name: "Normal",
  16581. height: math.unit(6 + 1 / 12, "feet"),
  16582. default: true
  16583. },
  16584. ]
  16585. ))
  16586. characterMakers.push(() => makeCharacter(
  16587. { name: "Jet" },
  16588. {
  16589. front: {
  16590. height: math.unit(10, "feet"),
  16591. weight: math.unit(350, "lb"),
  16592. name: "Front",
  16593. image: {
  16594. source: "./media/characters/jet/front.svg",
  16595. extra: 2050 / 1980,
  16596. bottom: 0.013
  16597. }
  16598. },
  16599. back: {
  16600. height: math.unit(10, "feet"),
  16601. weight: math.unit(350, "lb"),
  16602. name: "Back",
  16603. image: {
  16604. source: "./media/characters/jet/back.svg",
  16605. extra: 2050 / 1980,
  16606. bottom: 0.013
  16607. }
  16608. },
  16609. },
  16610. [
  16611. {
  16612. name: "Micro",
  16613. height: math.unit(6, "inches")
  16614. },
  16615. {
  16616. name: "Normal",
  16617. height: math.unit(10, "feet"),
  16618. default: true
  16619. },
  16620. {
  16621. name: "Macro",
  16622. height: math.unit(100, "feet")
  16623. },
  16624. ]
  16625. ))
  16626. characterMakers.push(() => makeCharacter(
  16627. { name: "Tanarath" },
  16628. {
  16629. front: {
  16630. height: math.unit(15, "feet"),
  16631. weight: math.unit(2800, "lb"),
  16632. name: "Front",
  16633. image: {
  16634. source: "./media/characters/tanarath/front.svg",
  16635. extra: 2392 / 2220,
  16636. bottom: 0.03
  16637. }
  16638. },
  16639. back: {
  16640. height: math.unit(15, "feet"),
  16641. weight: math.unit(2800, "lb"),
  16642. name: "Back",
  16643. image: {
  16644. source: "./media/characters/tanarath/back.svg",
  16645. extra: 2392 / 2220,
  16646. bottom: 0.03
  16647. }
  16648. },
  16649. },
  16650. [
  16651. {
  16652. name: "Normal",
  16653. height: math.unit(15, "feet"),
  16654. default: true
  16655. },
  16656. ]
  16657. ))
  16658. characterMakers.push(() => makeCharacter(
  16659. { name: "Patty CattyBatty" },
  16660. {
  16661. front: {
  16662. height: math.unit(7 + 1 / 12, "feet"),
  16663. weight: math.unit(175, "lb"),
  16664. name: "Front",
  16665. image: {
  16666. source: "./media/characters/patty-cattybatty/front.svg",
  16667. extra: 908 / 874,
  16668. bottom: 0.025
  16669. }
  16670. },
  16671. },
  16672. [
  16673. {
  16674. name: "Micro",
  16675. height: math.unit(1, "inch")
  16676. },
  16677. {
  16678. name: "Normal",
  16679. height: math.unit(7 + 1 / 12, "feet")
  16680. },
  16681. {
  16682. name: "Mini Macro",
  16683. height: math.unit(155, "feet")
  16684. },
  16685. {
  16686. name: "Macro",
  16687. height: math.unit(1077, "feet")
  16688. },
  16689. {
  16690. name: "Mega Macro",
  16691. height: math.unit(47650, "feet"),
  16692. default: true
  16693. },
  16694. {
  16695. name: "Giga Macro",
  16696. height: math.unit(440, "miles")
  16697. },
  16698. {
  16699. name: "Tera Macro",
  16700. height: math.unit(8700, "miles")
  16701. },
  16702. {
  16703. name: "Planetary Macro",
  16704. height: math.unit(32700, "miles")
  16705. },
  16706. {
  16707. name: "Solar Macro",
  16708. height: math.unit(550000, "miles")
  16709. },
  16710. {
  16711. name: "Celestial Macro",
  16712. height: math.unit(2.5, "AU")
  16713. },
  16714. ]
  16715. ))
  16716. characterMakers.push(() => makeCharacter(
  16717. { name: "Cappu" },
  16718. {
  16719. front: {
  16720. height: math.unit(4 + 5 / 12, "feet"),
  16721. weight: math.unit(90, "lb"),
  16722. name: "Front",
  16723. image: {
  16724. source: "./media/characters/cappu/front.svg",
  16725. extra: 1247 / 1152,
  16726. bottom: 0.012
  16727. }
  16728. },
  16729. },
  16730. [
  16731. {
  16732. name: "Normal",
  16733. height: math.unit(4 + 5 / 12, "feet"),
  16734. default: true
  16735. },
  16736. ]
  16737. ))
  16738. characterMakers.push(() => makeCharacter(
  16739. { name: "Sebi" },
  16740. {
  16741. frontDressed: {
  16742. height: math.unit(70, "cm"),
  16743. weight: math.unit(6, "kg"),
  16744. name: "Front (Dressed)",
  16745. image: {
  16746. source: "./media/characters/sebi/front-dressed.svg",
  16747. extra: 713.5 / 686.5,
  16748. bottom: 0.003
  16749. }
  16750. },
  16751. front: {
  16752. height: math.unit(70, "cm"),
  16753. weight: math.unit(5, "kg"),
  16754. name: "Front",
  16755. image: {
  16756. source: "./media/characters/sebi/front.svg",
  16757. extra: 713.5 / 686.5,
  16758. bottom: 0.003
  16759. }
  16760. }
  16761. },
  16762. [
  16763. {
  16764. name: "Normal",
  16765. height: math.unit(70, "cm"),
  16766. default: true
  16767. },
  16768. {
  16769. name: "Macro",
  16770. height: math.unit(8, "meters")
  16771. },
  16772. ]
  16773. ))
  16774. characterMakers.push(() => makeCharacter(
  16775. { name: "Typhek" },
  16776. {
  16777. front: {
  16778. height: math.unit(6, "feet"),
  16779. weight: math.unit(150, "lb"),
  16780. name: "Front",
  16781. image: {
  16782. source: "./media/characters/typhek/front.svg",
  16783. extra: 1948 / 1929,
  16784. bottom: 0.025
  16785. }
  16786. },
  16787. side: {
  16788. height: math.unit(6, "feet"),
  16789. weight: math.unit(150, "lb"),
  16790. name: "Side",
  16791. image: {
  16792. source: "./media/characters/typhek/side.svg",
  16793. extra: 2034 / 2010,
  16794. bottom: 0.003
  16795. }
  16796. },
  16797. back: {
  16798. height: math.unit(6, "feet"),
  16799. weight: math.unit(150, "lb"),
  16800. name: "Back",
  16801. image: {
  16802. source: "./media/characters/typhek/back.svg",
  16803. extra: 2005 / 1978,
  16804. bottom: 0.004
  16805. }
  16806. },
  16807. palm: {
  16808. height: math.unit(1.2, "feet"),
  16809. name: "Palm",
  16810. image: {
  16811. source: "./media/characters/typhek/palm.svg"
  16812. }
  16813. },
  16814. fist: {
  16815. height: math.unit(1.1, "feet"),
  16816. name: "Fist",
  16817. image: {
  16818. source: "./media/characters/typhek/fist.svg"
  16819. }
  16820. },
  16821. foot: {
  16822. height: math.unit(1.57, "feet"),
  16823. name: "Foot",
  16824. image: {
  16825. source: "./media/characters/typhek/foot.svg"
  16826. }
  16827. },
  16828. sole: {
  16829. height: math.unit(2.05, "feet"),
  16830. name: "Sole",
  16831. image: {
  16832. source: "./media/characters/typhek/sole.svg"
  16833. }
  16834. },
  16835. },
  16836. [
  16837. {
  16838. name: "Macro",
  16839. height: math.unit(40, "stories"),
  16840. default: true
  16841. },
  16842. {
  16843. name: "Megamacro",
  16844. height: math.unit(1, "mile")
  16845. },
  16846. {
  16847. name: "Gigamacro",
  16848. height: math.unit(4000, "solarradii")
  16849. },
  16850. {
  16851. name: "Universal",
  16852. height: math.unit(1.1, "universes")
  16853. }
  16854. ]
  16855. ))
  16856. characterMakers.push(() => makeCharacter(
  16857. { name: "Kassy" },
  16858. {
  16859. side: {
  16860. height: math.unit(5 + 7 / 12, "feet"),
  16861. weight: math.unit(150, "lb"),
  16862. name: "Side",
  16863. image: {
  16864. source: "./media/characters/kassy/side.svg",
  16865. extra: 1280 / 1225,
  16866. bottom: 0.002
  16867. }
  16868. },
  16869. front: {
  16870. height: math.unit(5 + 7 / 12, "feet"),
  16871. weight: math.unit(150, "lb"),
  16872. name: "Front",
  16873. image: {
  16874. source: "./media/characters/kassy/front.svg",
  16875. extra: 1280 / 1225,
  16876. bottom: 0.025
  16877. }
  16878. },
  16879. back: {
  16880. height: math.unit(5 + 7 / 12, "feet"),
  16881. weight: math.unit(150, "lb"),
  16882. name: "Back",
  16883. image: {
  16884. source: "./media/characters/kassy/back.svg",
  16885. extra: 1280 / 1225,
  16886. bottom: 0.002
  16887. }
  16888. },
  16889. foot: {
  16890. height: math.unit(1.266, "feet"),
  16891. name: "Foot",
  16892. image: {
  16893. source: "./media/characters/kassy/foot.svg"
  16894. }
  16895. },
  16896. },
  16897. [
  16898. {
  16899. name: "Normal",
  16900. height: math.unit(5 + 7 / 12, "feet")
  16901. },
  16902. {
  16903. name: "Macro",
  16904. height: math.unit(137, "feet"),
  16905. default: true
  16906. },
  16907. {
  16908. name: "Megamacro",
  16909. height: math.unit(1, "mile")
  16910. },
  16911. ]
  16912. ))
  16913. characterMakers.push(() => makeCharacter(
  16914. { name: "Neil" },
  16915. {
  16916. front: {
  16917. height: math.unit(6 + 1 / 12, "feet"),
  16918. weight: math.unit(200, "lb"),
  16919. name: "Front",
  16920. image: {
  16921. source: "./media/characters/neil/front.svg",
  16922. extra: 1326 / 1250,
  16923. bottom: 0.023
  16924. }
  16925. },
  16926. },
  16927. [
  16928. {
  16929. name: "Normal",
  16930. height: math.unit(6 + 1 / 12, "feet"),
  16931. default: true
  16932. },
  16933. {
  16934. name: "Macro",
  16935. height: math.unit(200, "feet")
  16936. },
  16937. ]
  16938. ))
  16939. characterMakers.push(() => makeCharacter(
  16940. { name: "Atticus" },
  16941. {
  16942. front: {
  16943. height: math.unit(5 + 9 / 12, "feet"),
  16944. weight: math.unit(190, "lb"),
  16945. name: "Front",
  16946. image: {
  16947. source: "./media/characters/atticus/front.svg",
  16948. extra: 2934 / 2785,
  16949. bottom: 0.025
  16950. }
  16951. },
  16952. },
  16953. [
  16954. {
  16955. name: "Normal",
  16956. height: math.unit(5 + 9 / 12, "feet"),
  16957. default: true
  16958. },
  16959. {
  16960. name: "Macro",
  16961. height: math.unit(180, "feet")
  16962. },
  16963. ]
  16964. ))
  16965. characterMakers.push(() => makeCharacter(
  16966. { name: "Milo" },
  16967. {
  16968. side: {
  16969. height: math.unit(9, "feet"),
  16970. weight: math.unit(650, "lb"),
  16971. name: "Side",
  16972. image: {
  16973. source: "./media/characters/milo/side.svg",
  16974. extra: 2644 / 2310,
  16975. bottom: 0.032
  16976. }
  16977. },
  16978. },
  16979. [
  16980. {
  16981. name: "Normal",
  16982. height: math.unit(9, "feet"),
  16983. default: true
  16984. },
  16985. {
  16986. name: "Macro",
  16987. height: math.unit(300, "feet")
  16988. },
  16989. ]
  16990. ))
  16991. characterMakers.push(() => makeCharacter(
  16992. { name: "Ijzer" },
  16993. {
  16994. side: {
  16995. height: math.unit(8, "meters"),
  16996. weight: math.unit(90000, "kg"),
  16997. name: "Side",
  16998. image: {
  16999. source: "./media/characters/ijzer/side.svg",
  17000. extra: 2756 / 1600,
  17001. bottom: 0.01
  17002. }
  17003. },
  17004. },
  17005. [
  17006. {
  17007. name: "Small",
  17008. height: math.unit(3, "meters")
  17009. },
  17010. {
  17011. name: "Normal",
  17012. height: math.unit(8, "meters"),
  17013. default: true
  17014. },
  17015. {
  17016. name: "Normal+",
  17017. height: math.unit(10, "meters")
  17018. },
  17019. {
  17020. name: "Bigger",
  17021. height: math.unit(24, "meters")
  17022. },
  17023. {
  17024. name: "Huge",
  17025. height: math.unit(80, "meters")
  17026. },
  17027. ]
  17028. ))
  17029. characterMakers.push(() => makeCharacter(
  17030. { name: "Luca Cervicum" },
  17031. {
  17032. front: {
  17033. height: math.unit(6 + 2 / 12, "feet"),
  17034. weight: math.unit(153, "lb"),
  17035. name: "Front",
  17036. image: {
  17037. source: "./media/characters/luca-cervicum/front.svg",
  17038. extra: 370 / 327,
  17039. bottom: 0.015
  17040. }
  17041. },
  17042. back: {
  17043. height: math.unit(6 + 2 / 12, "feet"),
  17044. weight: math.unit(153, "lb"),
  17045. name: "Back",
  17046. image: {
  17047. source: "./media/characters/luca-cervicum/back.svg",
  17048. extra: 367 / 333,
  17049. bottom: 0.005
  17050. }
  17051. },
  17052. frontGear: {
  17053. height: math.unit(6 + 2 / 12, "feet"),
  17054. weight: math.unit(173, "lb"),
  17055. name: "Front (Gear)",
  17056. image: {
  17057. source: "./media/characters/luca-cervicum/front-gear.svg",
  17058. extra: 377 / 333,
  17059. bottom: 0.006
  17060. }
  17061. },
  17062. },
  17063. [
  17064. {
  17065. name: "Normal",
  17066. height: math.unit(6 + 2 / 12, "feet"),
  17067. default: true
  17068. },
  17069. ]
  17070. ))
  17071. characterMakers.push(() => makeCharacter(
  17072. { name: "Oliver" },
  17073. {
  17074. front: {
  17075. height: math.unit(6 + 1 / 12, "feet"),
  17076. weight: math.unit(304, "lb"),
  17077. name: "Front",
  17078. image: {
  17079. source: "./media/characters/oliver/front.svg",
  17080. extra: 157 / 143,
  17081. bottom: 0.08
  17082. }
  17083. },
  17084. },
  17085. [
  17086. {
  17087. name: "Normal",
  17088. height: math.unit(6 + 1 / 12, "feet"),
  17089. default: true
  17090. },
  17091. ]
  17092. ))
  17093. characterMakers.push(() => makeCharacter(
  17094. { name: "Shane" },
  17095. {
  17096. front: {
  17097. height: math.unit(5 + 7 / 12, "feet"),
  17098. weight: math.unit(140, "lb"),
  17099. name: "Front",
  17100. image: {
  17101. source: "./media/characters/shane/front.svg",
  17102. extra: 304 / 289,
  17103. bottom: 0.005
  17104. }
  17105. },
  17106. },
  17107. [
  17108. {
  17109. name: "Normal",
  17110. height: math.unit(5 + 7 / 12, "feet"),
  17111. default: true
  17112. },
  17113. ]
  17114. ))
  17115. characterMakers.push(() => makeCharacter(
  17116. { name: "Shin" },
  17117. {
  17118. front: {
  17119. height: math.unit(5 + 9 / 12, "feet"),
  17120. weight: math.unit(178, "lb"),
  17121. name: "Front",
  17122. image: {
  17123. source: "./media/characters/shin/front.svg",
  17124. extra: 159 / 151,
  17125. bottom: 0.015
  17126. }
  17127. },
  17128. },
  17129. [
  17130. {
  17131. name: "Normal",
  17132. height: math.unit(5 + 9 / 12, "feet"),
  17133. default: true
  17134. },
  17135. ]
  17136. ))
  17137. characterMakers.push(() => makeCharacter(
  17138. { name: "Xerxes" },
  17139. {
  17140. front: {
  17141. height: math.unit(5 + 10 / 12, "feet"),
  17142. weight: math.unit(168, "lb"),
  17143. name: "Front",
  17144. image: {
  17145. source: "./media/characters/xerxes/front.svg",
  17146. extra: 282 / 260,
  17147. bottom: 0.045
  17148. }
  17149. },
  17150. },
  17151. [
  17152. {
  17153. name: "Normal",
  17154. height: math.unit(5 + 10 / 12, "feet"),
  17155. default: true
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Chaska" },
  17161. {
  17162. front: {
  17163. height: math.unit(6 + 7 / 12, "feet"),
  17164. weight: math.unit(208, "lb"),
  17165. name: "Front",
  17166. image: {
  17167. source: "./media/characters/chaska/front.svg",
  17168. extra: 332 / 319,
  17169. bottom: 0.015
  17170. }
  17171. },
  17172. },
  17173. [
  17174. {
  17175. name: "Normal",
  17176. height: math.unit(6 + 7 / 12, "feet"),
  17177. default: true
  17178. },
  17179. ]
  17180. ))
  17181. characterMakers.push(() => makeCharacter(
  17182. { name: "Enuk" },
  17183. {
  17184. front: {
  17185. height: math.unit(5 + 8 / 12, "feet"),
  17186. weight: math.unit(208, "lb"),
  17187. name: "Front",
  17188. image: {
  17189. source: "./media/characters/enuk/front.svg",
  17190. extra: 437 / 406,
  17191. bottom: 0.02
  17192. }
  17193. },
  17194. },
  17195. [
  17196. {
  17197. name: "Normal",
  17198. height: math.unit(5 + 8 / 12, "feet"),
  17199. default: true
  17200. },
  17201. ]
  17202. ))
  17203. characterMakers.push(() => makeCharacter(
  17204. { name: "Bruun" },
  17205. {
  17206. front: {
  17207. height: math.unit(5 + 10 / 12, "feet"),
  17208. weight: math.unit(252, "lb"),
  17209. name: "Front",
  17210. image: {
  17211. source: "./media/characters/bruun/front.svg",
  17212. extra: 197 / 187,
  17213. bottom: 0.012
  17214. }
  17215. },
  17216. },
  17217. [
  17218. {
  17219. name: "Normal",
  17220. height: math.unit(5 + 10 / 12, "feet"),
  17221. default: true
  17222. },
  17223. ]
  17224. ))
  17225. characterMakers.push(() => makeCharacter(
  17226. { name: "Alexeev" },
  17227. {
  17228. front: {
  17229. height: math.unit(6 + 10 / 12, "feet"),
  17230. weight: math.unit(255, "lb"),
  17231. name: "Front",
  17232. image: {
  17233. source: "./media/characters/alexeev/front.svg",
  17234. extra: 213 / 200,
  17235. bottom: 0.05
  17236. }
  17237. },
  17238. },
  17239. [
  17240. {
  17241. name: "Normal",
  17242. height: math.unit(6 + 10 / 12, "feet"),
  17243. default: true
  17244. },
  17245. ]
  17246. ))
  17247. characterMakers.push(() => makeCharacter(
  17248. { name: "Evelyn" },
  17249. {
  17250. front: {
  17251. height: math.unit(2 + 8 / 12, "feet"),
  17252. weight: math.unit(22, "lb"),
  17253. name: "Front",
  17254. image: {
  17255. source: "./media/characters/evelyn/front.svg",
  17256. extra: 208 / 180
  17257. }
  17258. },
  17259. },
  17260. [
  17261. {
  17262. name: "Normal",
  17263. height: math.unit(2 + 8 / 12, "feet"),
  17264. default: true
  17265. },
  17266. ]
  17267. ))
  17268. characterMakers.push(() => makeCharacter(
  17269. { name: "Inca" },
  17270. {
  17271. front: {
  17272. height: math.unit(5 + 9 / 12, "feet"),
  17273. weight: math.unit(139, "lb"),
  17274. name: "Front",
  17275. image: {
  17276. source: "./media/characters/inca/front.svg",
  17277. extra: 294 / 291,
  17278. bottom: 0.03
  17279. }
  17280. },
  17281. },
  17282. [
  17283. {
  17284. name: "Normal",
  17285. height: math.unit(5 + 9 / 12, "feet"),
  17286. default: true
  17287. },
  17288. ]
  17289. ))
  17290. characterMakers.push(() => makeCharacter(
  17291. { name: "Magdalene" },
  17292. {
  17293. front: {
  17294. height: math.unit(5 + 1 / 12, "feet"),
  17295. weight: math.unit(84, "lb"),
  17296. name: "Front",
  17297. image: {
  17298. source: "./media/characters/magdalene/front.svg",
  17299. extra: 293 / 273
  17300. }
  17301. },
  17302. },
  17303. [
  17304. {
  17305. name: "Normal",
  17306. height: math.unit(5 + 1 / 12, "feet"),
  17307. default: true
  17308. },
  17309. ]
  17310. ))
  17311. characterMakers.push(() => makeCharacter(
  17312. { name: "Mera" },
  17313. {
  17314. front: {
  17315. height: math.unit(6 + 3 / 12, "feet"),
  17316. weight: math.unit(185, "lb"),
  17317. name: "Front",
  17318. image: {
  17319. source: "./media/characters/mera/front.svg",
  17320. extra: 291 / 277,
  17321. bottom: 0.03
  17322. }
  17323. },
  17324. },
  17325. [
  17326. {
  17327. name: "Normal",
  17328. height: math.unit(6 + 3 / 12, "feet"),
  17329. default: true
  17330. },
  17331. ]
  17332. ))
  17333. characterMakers.push(() => makeCharacter(
  17334. { name: "Ceres" },
  17335. {
  17336. front: {
  17337. height: math.unit(6 + 7 / 12, "feet"),
  17338. weight: math.unit(160, "lb"),
  17339. name: "Front",
  17340. image: {
  17341. source: "./media/characters/ceres/front.svg",
  17342. extra: 1023 / 950,
  17343. bottom: 0.027
  17344. }
  17345. },
  17346. back: {
  17347. height: math.unit(6 + 7 / 12, "feet"),
  17348. weight: math.unit(160, "lb"),
  17349. name: "Back",
  17350. image: {
  17351. source: "./media/characters/ceres/back.svg",
  17352. extra: 1023 / 950
  17353. }
  17354. },
  17355. },
  17356. [
  17357. {
  17358. name: "Normal",
  17359. height: math.unit(6 + 7 / 12, "feet"),
  17360. default: true
  17361. },
  17362. ]
  17363. ))
  17364. characterMakers.push(() => makeCharacter(
  17365. { name: "Kris" },
  17366. {
  17367. front: {
  17368. height: math.unit(5 + 10 / 12, "feet"),
  17369. weight: math.unit(150, "lb"),
  17370. name: "Front",
  17371. image: {
  17372. source: "./media/characters/kris/front.svg",
  17373. extra: 885 / 803,
  17374. bottom: 0.03
  17375. }
  17376. },
  17377. },
  17378. [
  17379. {
  17380. name: "Normal",
  17381. height: math.unit(5 + 10 / 12, "feet"),
  17382. default: true
  17383. },
  17384. ]
  17385. ))
  17386. characterMakers.push(() => makeCharacter(
  17387. { name: "Taluthus" },
  17388. {
  17389. front: {
  17390. height: math.unit(7, "feet"),
  17391. weight: math.unit(120, "kg"),
  17392. name: "Front",
  17393. image: {
  17394. source: "./media/characters/taluthus/front.svg",
  17395. extra: 903 / 833,
  17396. bottom: 0.015
  17397. }
  17398. },
  17399. },
  17400. [
  17401. {
  17402. name: "Normal",
  17403. height: math.unit(7, "feet"),
  17404. default: true
  17405. },
  17406. {
  17407. name: "Macro",
  17408. height: math.unit(300, "feet")
  17409. },
  17410. ]
  17411. ))
  17412. characterMakers.push(() => makeCharacter(
  17413. { name: "Dawn" },
  17414. {
  17415. front: {
  17416. height: math.unit(5 + 9 / 12, "feet"),
  17417. weight: math.unit(145, "lb"),
  17418. name: "Front",
  17419. image: {
  17420. source: "./media/characters/dawn/front.svg",
  17421. extra: 2094 / 2016,
  17422. bottom: 0.025
  17423. }
  17424. },
  17425. back: {
  17426. height: math.unit(5 + 9 / 12, "feet"),
  17427. weight: math.unit(160, "lb"),
  17428. name: "Back",
  17429. image: {
  17430. source: "./media/characters/dawn/back.svg",
  17431. extra: 2112 / 2080,
  17432. bottom: 0.005
  17433. }
  17434. },
  17435. },
  17436. [
  17437. {
  17438. name: "Normal",
  17439. height: math.unit(6 + 7 / 12, "feet"),
  17440. default: true
  17441. },
  17442. ]
  17443. ))
  17444. characterMakers.push(() => makeCharacter(
  17445. { name: "Arador" },
  17446. {
  17447. anthro: {
  17448. height: math.unit(8 + 3 / 12, "feet"),
  17449. weight: math.unit(450, "lb"),
  17450. name: "Anthro",
  17451. image: {
  17452. source: "./media/characters/arador/anthro.svg",
  17453. extra: 1835 / 1718,
  17454. bottom: 0.025
  17455. }
  17456. },
  17457. feral: {
  17458. height: math.unit(4, "feet"),
  17459. weight: math.unit(200, "lb"),
  17460. name: "Feral",
  17461. image: {
  17462. source: "./media/characters/arador/feral.svg",
  17463. extra: 1683 / 1514,
  17464. bottom: 0.07
  17465. }
  17466. },
  17467. },
  17468. [
  17469. {
  17470. name: "Normal",
  17471. height: math.unit(8 + 3 / 12, "feet")
  17472. },
  17473. {
  17474. name: "Macro",
  17475. height: math.unit(82.5, "feet"),
  17476. default: true
  17477. },
  17478. ]
  17479. ))
  17480. characterMakers.push(() => makeCharacter(
  17481. { name: "Dharsi" },
  17482. {
  17483. front: {
  17484. height: math.unit(5 + 10 / 12, "feet"),
  17485. weight: math.unit(125, "lb"),
  17486. name: "Front",
  17487. image: {
  17488. source: "./media/characters/dharsi/front.svg",
  17489. extra: 716 / 630,
  17490. bottom: 0.035
  17491. }
  17492. },
  17493. },
  17494. [
  17495. {
  17496. name: "Nano",
  17497. height: math.unit(100, "nm")
  17498. },
  17499. {
  17500. name: "Micro",
  17501. height: math.unit(2, "inches")
  17502. },
  17503. {
  17504. name: "Normal",
  17505. height: math.unit(5 + 10 / 12, "feet"),
  17506. default: true
  17507. },
  17508. {
  17509. name: "Macro",
  17510. height: math.unit(1000, "feet")
  17511. },
  17512. {
  17513. name: "Megamacro",
  17514. height: math.unit(10, "miles")
  17515. },
  17516. {
  17517. name: "Gigamacro",
  17518. height: math.unit(3000, "miles")
  17519. },
  17520. {
  17521. name: "Teramacro",
  17522. height: math.unit(500000, "miles")
  17523. },
  17524. {
  17525. name: "Teramacro+",
  17526. height: math.unit(30, "galaxies")
  17527. },
  17528. ]
  17529. ))
  17530. characterMakers.push(() => makeCharacter(
  17531. { name: "Deathy" },
  17532. {
  17533. front: {
  17534. height: math.unit(6, "feet"),
  17535. weight: math.unit(150, "lb"),
  17536. name: "Front",
  17537. image: {
  17538. source: "./media/characters/deathy/front.svg",
  17539. extra: 1552 / 1463,
  17540. bottom: 0.025
  17541. }
  17542. },
  17543. side: {
  17544. height: math.unit(6, "feet"),
  17545. weight: math.unit(150, "lb"),
  17546. name: "Side",
  17547. image: {
  17548. source: "./media/characters/deathy/side.svg",
  17549. extra: 1604 / 1455,
  17550. bottom: 0.025
  17551. }
  17552. },
  17553. back: {
  17554. height: math.unit(6, "feet"),
  17555. weight: math.unit(150, "lb"),
  17556. name: "Back",
  17557. image: {
  17558. source: "./media/characters/deathy/back.svg",
  17559. extra: 1580 / 1463,
  17560. bottom: 0.005
  17561. }
  17562. },
  17563. },
  17564. [
  17565. {
  17566. name: "Micro",
  17567. height: math.unit(5, "millimeters")
  17568. },
  17569. {
  17570. name: "Normal",
  17571. height: math.unit(6 + 5 / 12, "feet"),
  17572. default: true
  17573. },
  17574. ]
  17575. ))
  17576. characterMakers.push(() => makeCharacter(
  17577. { name: "Juniper" },
  17578. {
  17579. front: {
  17580. height: math.unit(16, "feet"),
  17581. weight: math.unit(4000, "lb"),
  17582. name: "Front",
  17583. image: {
  17584. source: "./media/characters/juniper/front.svg",
  17585. bottom: 0.04
  17586. }
  17587. },
  17588. },
  17589. [
  17590. {
  17591. name: "Normal",
  17592. height: math.unit(16, "feet"),
  17593. default: true
  17594. },
  17595. ]
  17596. ))
  17597. characterMakers.push(() => makeCharacter(
  17598. { name: "Hipster" },
  17599. {
  17600. front: {
  17601. height: math.unit(6, "feet"),
  17602. weight: math.unit(150, "lb"),
  17603. name: "Front",
  17604. image: {
  17605. source: "./media/characters/hipster/front.svg",
  17606. extra: 1312 / 1209,
  17607. bottom: 0.025
  17608. }
  17609. },
  17610. back: {
  17611. height: math.unit(6, "feet"),
  17612. weight: math.unit(150, "lb"),
  17613. name: "Back",
  17614. image: {
  17615. source: "./media/characters/hipster/back.svg",
  17616. extra: 1281 / 1196,
  17617. bottom: 0.01
  17618. }
  17619. },
  17620. },
  17621. [
  17622. {
  17623. name: "Micro",
  17624. height: math.unit(1, "mm")
  17625. },
  17626. {
  17627. name: "Normal",
  17628. height: math.unit(4, "inches"),
  17629. default: true
  17630. },
  17631. {
  17632. name: "Macro",
  17633. height: math.unit(500, "feet")
  17634. },
  17635. {
  17636. name: "Megamacro",
  17637. height: math.unit(1000, "miles")
  17638. },
  17639. ]
  17640. ))
  17641. characterMakers.push(() => makeCharacter(
  17642. { name: "Tendirmuldr" },
  17643. {
  17644. front: {
  17645. height: math.unit(6, "feet"),
  17646. weight: math.unit(150, "lb"),
  17647. name: "Front",
  17648. image: {
  17649. source: "./media/characters/tendirmuldr/front.svg",
  17650. extra: 1878 / 1772,
  17651. bottom: 0.015
  17652. }
  17653. },
  17654. },
  17655. [
  17656. {
  17657. name: "Megamacro",
  17658. height: math.unit(1500, "miles"),
  17659. default: true
  17660. },
  17661. ]
  17662. ))
  17663. characterMakers.push(() => makeCharacter(
  17664. { name: "Mort" },
  17665. {
  17666. front: {
  17667. height: math.unit(14, "feet"),
  17668. weight: math.unit(12000, "lb"),
  17669. name: "Front",
  17670. image: {
  17671. source: "./media/characters/mort/front.svg",
  17672. extra: 365 / 318,
  17673. bottom: 0.01
  17674. }
  17675. },
  17676. side: {
  17677. height: math.unit(14, "feet"),
  17678. weight: math.unit(12000, "lb"),
  17679. name: "Side",
  17680. image: {
  17681. source: "./media/characters/mort/side.svg",
  17682. extra: 365 / 318,
  17683. bottom: 0.052
  17684. },
  17685. default: true
  17686. },
  17687. back: {
  17688. height: math.unit(14, "feet"),
  17689. weight: math.unit(12000, "lb"),
  17690. name: "Back",
  17691. image: {
  17692. source: "./media/characters/mort/back.svg",
  17693. extra: 371 / 332,
  17694. bottom: 0.18
  17695. }
  17696. },
  17697. },
  17698. [
  17699. {
  17700. name: "Normal",
  17701. height: math.unit(14, "feet"),
  17702. default: true
  17703. },
  17704. ]
  17705. ))
  17706. characterMakers.push(() => makeCharacter(
  17707. { name: "Lycoa" },
  17708. {
  17709. front: {
  17710. height: math.unit(8, "feet"),
  17711. weight: math.unit(1, "ton"),
  17712. name: "Front",
  17713. image: {
  17714. source: "./media/characters/lycoa/front.svg",
  17715. extra: 1875 / 1789,
  17716. bottom: 0.022
  17717. }
  17718. },
  17719. back: {
  17720. height: math.unit(8, "feet"),
  17721. weight: math.unit(1, "ton"),
  17722. name: "Back",
  17723. image: {
  17724. source: "./media/characters/lycoa/back.svg",
  17725. extra: 1835 / 1781,
  17726. bottom: 0.03
  17727. }
  17728. },
  17729. },
  17730. [
  17731. {
  17732. name: "Normal",
  17733. height: math.unit(8, "feet"),
  17734. default: true
  17735. },
  17736. {
  17737. name: "Macro",
  17738. height: math.unit(30, "feet")
  17739. },
  17740. ]
  17741. ))
  17742. characterMakers.push(() => makeCharacter(
  17743. { name: "Naldara" },
  17744. {
  17745. front: {
  17746. height: math.unit(4 + 2 / 12, "feet"),
  17747. weight: math.unit(70, "lb"),
  17748. name: "Front",
  17749. image: {
  17750. source: "./media/characters/naldara/front.svg",
  17751. extra: 841 / 720,
  17752. bottom: 0.04
  17753. }
  17754. },
  17755. },
  17756. [
  17757. {
  17758. name: "Normal",
  17759. height: math.unit(4 + 2 / 12, "feet"),
  17760. default: true
  17761. },
  17762. ]
  17763. ))
  17764. characterMakers.push(() => makeCharacter(
  17765. { name: "Briar" },
  17766. {
  17767. front: {
  17768. height: math.unit(13 + 7 / 12, "feet"),
  17769. weight: math.unit(1500, "lb"),
  17770. name: "Front",
  17771. image: {
  17772. source: "./media/characters/briar/front.svg",
  17773. extra: 626 / 596,
  17774. bottom: 0.08
  17775. }
  17776. },
  17777. },
  17778. [
  17779. {
  17780. name: "Normal",
  17781. height: math.unit(13 + 7 / 12, "feet"),
  17782. default: true
  17783. },
  17784. ]
  17785. ))
  17786. characterMakers.push(() => makeCharacter(
  17787. { name: "Vanguard" },
  17788. {
  17789. side: {
  17790. height: math.unit(10, "feet"),
  17791. weight: math.unit(500, "lb"),
  17792. name: "Side",
  17793. image: {
  17794. source: "./media/characters/vanguard/side.svg",
  17795. extra: 502 / 425,
  17796. bottom: 0.087
  17797. }
  17798. },
  17799. },
  17800. [
  17801. {
  17802. name: "Normal",
  17803. height: math.unit(10, "feet"),
  17804. default: true
  17805. },
  17806. ]
  17807. ))
  17808. characterMakers.push(() => makeCharacter(
  17809. { name: "Artemis" },
  17810. {
  17811. front: {
  17812. height: math.unit(7.5, "feet"),
  17813. weight: math.unit(2, "lb"),
  17814. name: "Front",
  17815. image: {
  17816. source: "./media/characters/artemis/front.svg",
  17817. extra: 1192 / 1075,
  17818. bottom: 0.07
  17819. }
  17820. },
  17821. },
  17822. [
  17823. {
  17824. name: "Normal",
  17825. height: math.unit(7.5, "feet"),
  17826. default: true
  17827. },
  17828. {
  17829. name: "Enlarged",
  17830. height: math.unit(12, "feet")
  17831. },
  17832. ]
  17833. ))
  17834. characterMakers.push(() => makeCharacter(
  17835. { name: "Kira" },
  17836. {
  17837. front: {
  17838. height: math.unit(5 + 3 / 12, "feet"),
  17839. weight: math.unit(160, "lb"),
  17840. name: "Front",
  17841. image: {
  17842. source: "./media/characters/kira/front.svg",
  17843. extra: 906 / 786,
  17844. bottom: 0.01
  17845. }
  17846. },
  17847. back: {
  17848. height: math.unit(5 + 3 / 12, "feet"),
  17849. weight: math.unit(160, "lb"),
  17850. name: "Back",
  17851. image: {
  17852. source: "./media/characters/kira/back.svg",
  17853. extra: 882 / 757,
  17854. bottom: 0.005
  17855. }
  17856. },
  17857. frontDressed: {
  17858. height: math.unit(5 + 3 / 12, "feet"),
  17859. weight: math.unit(160, "lb"),
  17860. name: "Front (Dressed)",
  17861. image: {
  17862. source: "./media/characters/kira/front-dressed.svg",
  17863. extra: 906 / 786,
  17864. bottom: 0.01
  17865. }
  17866. },
  17867. beans: {
  17868. height: math.unit(0.92, "feet"),
  17869. name: "Beans",
  17870. image: {
  17871. source: "./media/characters/kira/beans.svg"
  17872. }
  17873. },
  17874. },
  17875. [
  17876. {
  17877. name: "Normal",
  17878. height: math.unit(5 + 3 / 12, "feet"),
  17879. default: true
  17880. },
  17881. ]
  17882. ))
  17883. characterMakers.push(() => makeCharacter(
  17884. { name: "Scramble" },
  17885. {
  17886. front: {
  17887. height: math.unit(5 + 4 / 12, "feet"),
  17888. weight: math.unit(145, "lb"),
  17889. name: "Front",
  17890. image: {
  17891. source: "./media/characters/scramble/front.svg",
  17892. extra: 763 / 727,
  17893. bottom: 0.05
  17894. }
  17895. },
  17896. back: {
  17897. height: math.unit(5 + 4 / 12, "feet"),
  17898. weight: math.unit(145, "lb"),
  17899. name: "Back",
  17900. image: {
  17901. source: "./media/characters/scramble/back.svg",
  17902. extra: 826 / 737,
  17903. bottom: 0.002
  17904. }
  17905. },
  17906. },
  17907. [
  17908. {
  17909. name: "Normal",
  17910. height: math.unit(5 + 4 / 12, "feet"),
  17911. default: true
  17912. },
  17913. ]
  17914. ))
  17915. characterMakers.push(() => makeCharacter(
  17916. { name: "Biscuit" },
  17917. {
  17918. side: {
  17919. height: math.unit(6 + 2 / 12, "feet"),
  17920. weight: math.unit(190, "lb"),
  17921. name: "Side",
  17922. image: {
  17923. source: "./media/characters/biscuit/side.svg",
  17924. extra: 858 / 791,
  17925. bottom: 0.044
  17926. }
  17927. },
  17928. },
  17929. [
  17930. {
  17931. name: "Normal",
  17932. height: math.unit(6 + 2 / 12, "feet"),
  17933. default: true
  17934. },
  17935. ]
  17936. ))
  17937. characterMakers.push(() => makeCharacter(
  17938. { name: "Poffin" },
  17939. {
  17940. front: {
  17941. height: math.unit(5 + 2 / 12, "feet"),
  17942. weight: math.unit(120, "lb"),
  17943. name: "Front",
  17944. image: {
  17945. source: "./media/characters/poffin/front.svg",
  17946. extra: 786 / 680,
  17947. bottom: 0.005
  17948. }
  17949. },
  17950. },
  17951. [
  17952. {
  17953. name: "Normal",
  17954. height: math.unit(5 + 2 / 12, "feet"),
  17955. default: true
  17956. },
  17957. ]
  17958. ))
  17959. characterMakers.push(() => makeCharacter(
  17960. { name: "Dhari" },
  17961. {
  17962. front: {
  17963. height: math.unit(6 + 3 / 12, "feet"),
  17964. weight: math.unit(519, "lb"),
  17965. name: "Front",
  17966. image: {
  17967. source: "./media/characters/dhari/front.svg",
  17968. extra: 1048 / 946,
  17969. bottom: 0.015
  17970. }
  17971. },
  17972. back: {
  17973. height: math.unit(6 + 3 / 12, "feet"),
  17974. weight: math.unit(519, "lb"),
  17975. name: "Back",
  17976. image: {
  17977. source: "./media/characters/dhari/back.svg",
  17978. extra: 1048 / 931,
  17979. bottom: 0.005
  17980. }
  17981. },
  17982. frontDressed: {
  17983. height: math.unit(6 + 3 / 12, "feet"),
  17984. weight: math.unit(519, "lb"),
  17985. name: "Front (Dressed)",
  17986. image: {
  17987. source: "./media/characters/dhari/front-dressed.svg",
  17988. extra: 1713 / 1546,
  17989. bottom: 0.02
  17990. }
  17991. },
  17992. backDressed: {
  17993. height: math.unit(6 + 3 / 12, "feet"),
  17994. weight: math.unit(519, "lb"),
  17995. name: "Back (Dressed)",
  17996. image: {
  17997. source: "./media/characters/dhari/back-dressed.svg",
  17998. extra: 1699 / 1537,
  17999. bottom: 0.01
  18000. }
  18001. },
  18002. maw: {
  18003. height: math.unit(0.95, "feet"),
  18004. name: "Maw",
  18005. image: {
  18006. source: "./media/characters/dhari/maw.svg"
  18007. }
  18008. },
  18009. wereFront: {
  18010. height: math.unit(12 + 8 / 12, "feet"),
  18011. weight: math.unit(4000, "lb"),
  18012. name: "Front (Were)",
  18013. image: {
  18014. source: "./media/characters/dhari/were-front.svg",
  18015. extra: 1065 / 969,
  18016. bottom: 0.015
  18017. }
  18018. },
  18019. wereBack: {
  18020. height: math.unit(12 + 8 / 12, "feet"),
  18021. weight: math.unit(4000, "lb"),
  18022. name: "Back (Were)",
  18023. image: {
  18024. source: "./media/characters/dhari/were-back.svg",
  18025. extra: 1065 / 969,
  18026. bottom: 0.012
  18027. }
  18028. },
  18029. wereMaw: {
  18030. height: math.unit(0.625, "meters"),
  18031. name: "Maw (Were)",
  18032. image: {
  18033. source: "./media/characters/dhari/were-maw.svg"
  18034. }
  18035. },
  18036. },
  18037. [
  18038. {
  18039. name: "Normal",
  18040. height: math.unit(6 + 3 / 12, "feet"),
  18041. default: true
  18042. },
  18043. ]
  18044. ))
  18045. characterMakers.push(() => makeCharacter(
  18046. { name: "Rena Dyne" },
  18047. {
  18048. anthro: {
  18049. height: math.unit(5 + 7 / 12, "feet"),
  18050. weight: math.unit(175, "lb"),
  18051. name: "Anthro",
  18052. image: {
  18053. source: "./media/characters/rena-dyne/anthro.svg",
  18054. extra: 1849 / 1785,
  18055. bottom: 0.005
  18056. }
  18057. },
  18058. taur: {
  18059. height: math.unit(15 + 6 / 12, "feet"),
  18060. weight: math.unit(8000, "lb"),
  18061. name: "Taur",
  18062. image: {
  18063. source: "./media/characters/rena-dyne/taur.svg",
  18064. extra: 2315 / 2234,
  18065. bottom: 0.033
  18066. }
  18067. },
  18068. },
  18069. [
  18070. {
  18071. name: "Normal",
  18072. height: math.unit(5 + 7 / 12, "feet"),
  18073. default: true
  18074. },
  18075. ]
  18076. ))
  18077. characterMakers.push(() => makeCharacter(
  18078. { name: "Weremeep" },
  18079. {
  18080. front: {
  18081. height: math.unit(8, "feet"),
  18082. weight: math.unit(600, "lb"),
  18083. name: "Front",
  18084. image: {
  18085. source: "./media/characters/weremeep/front.svg",
  18086. extra: 967 / 862,
  18087. bottom: 0.01
  18088. }
  18089. },
  18090. },
  18091. [
  18092. {
  18093. name: "Normal",
  18094. height: math.unit(8, "feet"),
  18095. default: true
  18096. },
  18097. {
  18098. name: "Lorg",
  18099. height: math.unit(12, "feet")
  18100. },
  18101. {
  18102. name: "Oh Lawd She Comin'",
  18103. height: math.unit(20, "feet")
  18104. },
  18105. ]
  18106. ))
  18107. characterMakers.push(() => makeCharacter(
  18108. { name: "Reza" },
  18109. {
  18110. front: {
  18111. height: math.unit(4, "feet"),
  18112. weight: math.unit(90, "lb"),
  18113. name: "Front",
  18114. image: {
  18115. source: "./media/characters/reza/front.svg",
  18116. extra: 1183 / 1111,
  18117. bottom: 0.017
  18118. }
  18119. },
  18120. back: {
  18121. height: math.unit(4, "feet"),
  18122. weight: math.unit(90, "lb"),
  18123. name: "Back",
  18124. image: {
  18125. source: "./media/characters/reza/back.svg",
  18126. extra: 1183 / 1111,
  18127. bottom: 0.01
  18128. }
  18129. },
  18130. drake: {
  18131. height: math.unit(30, "feet"),
  18132. weight: math.unit(246960, "lb"),
  18133. name: "Drake",
  18134. image: {
  18135. source: "./media/characters/reza/drake.svg",
  18136. extra: 2350/2024,
  18137. bottom: 60.7/2403
  18138. }
  18139. },
  18140. },
  18141. [
  18142. {
  18143. name: "Normal",
  18144. height: math.unit(4, "feet"),
  18145. default: true
  18146. },
  18147. ]
  18148. ))
  18149. characterMakers.push(() => makeCharacter(
  18150. { name: "Athea" },
  18151. {
  18152. side: {
  18153. height: math.unit(15, "feet"),
  18154. weight: math.unit(14, "tons"),
  18155. name: "Side",
  18156. image: {
  18157. source: "./media/characters/athea/side.svg",
  18158. extra: 960 / 540,
  18159. bottom: 0.003
  18160. }
  18161. },
  18162. sitting: {
  18163. height: math.unit(6 * 2.85, "feet"),
  18164. weight: math.unit(14, "tons"),
  18165. name: "Sitting",
  18166. image: {
  18167. source: "./media/characters/athea/sitting.svg",
  18168. extra: 621 / 581,
  18169. bottom: 0.075
  18170. }
  18171. },
  18172. maw: {
  18173. height: math.unit(7.59498031496063, "feet"),
  18174. name: "Maw",
  18175. image: {
  18176. source: "./media/characters/athea/maw.svg"
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Lap Cat",
  18183. height: math.unit(2.5, "feet")
  18184. },
  18185. {
  18186. name: "Minimacro",
  18187. height: math.unit(15, "feet"),
  18188. default: true
  18189. },
  18190. {
  18191. name: "Macro",
  18192. height: math.unit(120, "feet")
  18193. },
  18194. {
  18195. name: "Macro+",
  18196. height: math.unit(640, "feet")
  18197. },
  18198. {
  18199. name: "Colossus",
  18200. height: math.unit(2.2, "miles")
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Seroko" },
  18206. {
  18207. front: {
  18208. height: math.unit(8 + 8 / 12, "feet"),
  18209. weight: math.unit(130, "kg"),
  18210. name: "Front",
  18211. image: {
  18212. source: "./media/characters/seroko/front.svg",
  18213. extra: 1385 / 1280,
  18214. bottom: 0.025
  18215. }
  18216. },
  18217. back: {
  18218. height: math.unit(8 + 8 / 12, "feet"),
  18219. weight: math.unit(130, "kg"),
  18220. name: "Back",
  18221. image: {
  18222. source: "./media/characters/seroko/back.svg",
  18223. extra: 1369 / 1238,
  18224. bottom: 0.018
  18225. }
  18226. },
  18227. frontDressed: {
  18228. height: math.unit(8 + 8 / 12, "feet"),
  18229. weight: math.unit(130, "kg"),
  18230. name: "Front (Dressed)",
  18231. image: {
  18232. source: "./media/characters/seroko/front-dressed.svg",
  18233. extra: 1366 / 1275,
  18234. bottom: 0.03
  18235. }
  18236. },
  18237. },
  18238. [
  18239. {
  18240. name: "Normal",
  18241. height: math.unit(8 + 8 / 12, "feet"),
  18242. default: true
  18243. },
  18244. ]
  18245. ))
  18246. characterMakers.push(() => makeCharacter(
  18247. { name: "Quatzi" },
  18248. {
  18249. front: {
  18250. height: math.unit(5.5, "feet"),
  18251. weight: math.unit(160, "lb"),
  18252. name: "Front",
  18253. image: {
  18254. source: "./media/characters/quatzi/front.svg",
  18255. extra: 2346 / 2242,
  18256. bottom: 0.015
  18257. }
  18258. },
  18259. },
  18260. [
  18261. {
  18262. name: "Normal",
  18263. height: math.unit(5.5, "feet"),
  18264. default: true
  18265. },
  18266. {
  18267. name: "Big",
  18268. height: math.unit(7.7, "feet")
  18269. },
  18270. ]
  18271. ))
  18272. characterMakers.push(() => makeCharacter(
  18273. { name: "Sen" },
  18274. {
  18275. front: {
  18276. height: math.unit(5 + 11 / 12, "feet"),
  18277. weight: math.unit(180, "lb"),
  18278. name: "Front",
  18279. image: {
  18280. source: "./media/characters/sen/front.svg",
  18281. extra: 1321 / 1254,
  18282. bottom: 0.015
  18283. }
  18284. },
  18285. side: {
  18286. height: math.unit(5 + 11 / 12, "feet"),
  18287. weight: math.unit(180, "lb"),
  18288. name: "Side",
  18289. image: {
  18290. source: "./media/characters/sen/side.svg",
  18291. extra: 1321 / 1254,
  18292. bottom: 0.007
  18293. }
  18294. },
  18295. back: {
  18296. height: math.unit(5 + 11 / 12, "feet"),
  18297. weight: math.unit(180, "lb"),
  18298. name: "Back",
  18299. image: {
  18300. source: "./media/characters/sen/back.svg",
  18301. extra: 1321 / 1254
  18302. }
  18303. },
  18304. },
  18305. [
  18306. {
  18307. name: "Normal",
  18308. height: math.unit(5 + 11 / 12, "feet"),
  18309. default: true
  18310. },
  18311. ]
  18312. ))
  18313. characterMakers.push(() => makeCharacter(
  18314. { name: "Fruity" },
  18315. {
  18316. front: {
  18317. height: math.unit(166.6, "cm"),
  18318. weight: math.unit(66.6, "kg"),
  18319. name: "Front",
  18320. image: {
  18321. source: "./media/characters/fruity/front.svg",
  18322. extra: 1510 / 1386,
  18323. bottom: 0.04
  18324. }
  18325. },
  18326. back: {
  18327. height: math.unit(166.6, "cm"),
  18328. weight: math.unit(66.6, "lb"),
  18329. name: "Back",
  18330. image: {
  18331. source: "./media/characters/fruity/back.svg",
  18332. extra: 1563 / 1435,
  18333. bottom: 0.005
  18334. }
  18335. },
  18336. },
  18337. [
  18338. {
  18339. name: "Normal",
  18340. height: math.unit(166.6, "cm"),
  18341. default: true
  18342. },
  18343. {
  18344. name: "Demonic",
  18345. height: math.unit(166.6, "feet")
  18346. },
  18347. ]
  18348. ))
  18349. characterMakers.push(() => makeCharacter(
  18350. { name: "Zost" },
  18351. {
  18352. side: {
  18353. height: math.unit(10, "feet"),
  18354. weight: math.unit(500, "lb"),
  18355. name: "Side",
  18356. image: {
  18357. source: "./media/characters/zost/side.svg",
  18358. extra: 966 / 880,
  18359. bottom: 0.075
  18360. }
  18361. },
  18362. mawFront: {
  18363. height: math.unit(1.08, "meters"),
  18364. name: "Maw (Front)",
  18365. image: {
  18366. source: "./media/characters/zost/maw-front.svg"
  18367. }
  18368. },
  18369. mawSide: {
  18370. height: math.unit(2.66, "feet"),
  18371. name: "Maw (Side)",
  18372. image: {
  18373. source: "./media/characters/zost/maw-side.svg"
  18374. }
  18375. },
  18376. },
  18377. [
  18378. {
  18379. name: "Normal",
  18380. height: math.unit(10, "feet"),
  18381. default: true
  18382. },
  18383. ]
  18384. ))
  18385. characterMakers.push(() => makeCharacter(
  18386. { name: "Luci" },
  18387. {
  18388. front: {
  18389. height: math.unit(5 + 4 / 12, "feet"),
  18390. weight: math.unit(120, "lb"),
  18391. name: "Front",
  18392. image: {
  18393. source: "./media/characters/luci/front.svg",
  18394. extra: 1985 / 1884,
  18395. bottom: 0.04
  18396. }
  18397. },
  18398. back: {
  18399. height: math.unit(5 + 4 / 12, "feet"),
  18400. weight: math.unit(120, "lb"),
  18401. name: "Back",
  18402. image: {
  18403. source: "./media/characters/luci/back.svg",
  18404. extra: 1892 / 1791,
  18405. bottom: 0.002
  18406. }
  18407. },
  18408. },
  18409. [
  18410. {
  18411. name: "Normal",
  18412. height: math.unit(5 + 4 / 12, "feet"),
  18413. default: true
  18414. },
  18415. ]
  18416. ))
  18417. characterMakers.push(() => makeCharacter(
  18418. { name: "2th" },
  18419. {
  18420. front: {
  18421. height: math.unit(1500, "feet"),
  18422. weight: math.unit(3.8e6, "tons"),
  18423. name: "Front",
  18424. image: {
  18425. source: "./media/characters/2th/front.svg",
  18426. extra: 3489 / 3350,
  18427. bottom: 0.1
  18428. }
  18429. },
  18430. foot: {
  18431. height: math.unit(461, "feet"),
  18432. name: "Foot",
  18433. image: {
  18434. source: "./media/characters/2th/foot.svg"
  18435. }
  18436. },
  18437. },
  18438. [
  18439. {
  18440. name: "\"Micro\"",
  18441. height: math.unit(15 + 7 / 12, "feet")
  18442. },
  18443. {
  18444. name: "Normal",
  18445. height: math.unit(1500, "feet"),
  18446. default: true
  18447. },
  18448. {
  18449. name: "Macro",
  18450. height: math.unit(5000, "feet")
  18451. },
  18452. {
  18453. name: "Megamacro",
  18454. height: math.unit(15, "miles")
  18455. },
  18456. {
  18457. name: "Gigamacro",
  18458. height: math.unit(4000, "miles")
  18459. },
  18460. {
  18461. name: "Galactic",
  18462. height: math.unit(50, "AU")
  18463. },
  18464. ]
  18465. ))
  18466. characterMakers.push(() => makeCharacter(
  18467. { name: "Amethyst" },
  18468. {
  18469. front: {
  18470. height: math.unit(5 + 6 / 12, "feet"),
  18471. weight: math.unit(220, "lb"),
  18472. name: "Front",
  18473. image: {
  18474. source: "./media/characters/amethyst/front.svg",
  18475. extra: 2078 / 2040,
  18476. bottom: 0.045
  18477. }
  18478. },
  18479. back: {
  18480. height: math.unit(5 + 6 / 12, "feet"),
  18481. weight: math.unit(220, "lb"),
  18482. name: "Back",
  18483. image: {
  18484. source: "./media/characters/amethyst/back.svg",
  18485. extra: 2021 / 1989,
  18486. bottom: 0.02
  18487. }
  18488. },
  18489. },
  18490. [
  18491. {
  18492. name: "Normal",
  18493. height: math.unit(5 + 6 / 12, "feet"),
  18494. default: true
  18495. },
  18496. ]
  18497. ))
  18498. characterMakers.push(() => makeCharacter(
  18499. { name: "Yumi Akiyama" },
  18500. {
  18501. front: {
  18502. height: math.unit(4 + 11 / 12, "feet"),
  18503. weight: math.unit(120, "lb"),
  18504. name: "Front",
  18505. image: {
  18506. source: "./media/characters/yumi-akiyama/front.svg",
  18507. extra: 1327 / 1235,
  18508. bottom: 0.02
  18509. }
  18510. },
  18511. back: {
  18512. height: math.unit(4 + 11 / 12, "feet"),
  18513. weight: math.unit(120, "lb"),
  18514. name: "Back",
  18515. image: {
  18516. source: "./media/characters/yumi-akiyama/back.svg",
  18517. extra: 1287 / 1245,
  18518. bottom: 0.002
  18519. }
  18520. },
  18521. },
  18522. [
  18523. {
  18524. name: "Galactic",
  18525. height: math.unit(50, "galaxies"),
  18526. default: true
  18527. },
  18528. {
  18529. name: "Universal",
  18530. height: math.unit(100, "universes")
  18531. },
  18532. ]
  18533. ))
  18534. characterMakers.push(() => makeCharacter(
  18535. { name: "Rifter Yrmori" },
  18536. {
  18537. front: {
  18538. height: math.unit(8, "feet"),
  18539. weight: math.unit(500, "lb"),
  18540. name: "Front",
  18541. image: {
  18542. source: "./media/characters/rifter-yrmori/front.svg",
  18543. extra: 1180 / 1125,
  18544. bottom: 0.02
  18545. }
  18546. },
  18547. back: {
  18548. height: math.unit(8, "feet"),
  18549. weight: math.unit(500, "lb"),
  18550. name: "Back",
  18551. image: {
  18552. source: "./media/characters/rifter-yrmori/back.svg",
  18553. extra: 1190 / 1145,
  18554. bottom: 0.001
  18555. }
  18556. },
  18557. wings: {
  18558. height: math.unit(7.75, "feet"),
  18559. weight: math.unit(500, "lb"),
  18560. name: "Wings",
  18561. image: {
  18562. source: "./media/characters/rifter-yrmori/wings.svg",
  18563. extra: 1357 / 1285
  18564. }
  18565. },
  18566. maw: {
  18567. height: math.unit(0.8, "feet"),
  18568. name: "Maw",
  18569. image: {
  18570. source: "./media/characters/rifter-yrmori/maw.svg"
  18571. }
  18572. },
  18573. },
  18574. [
  18575. {
  18576. name: "Normal",
  18577. height: math.unit(8, "feet"),
  18578. default: true
  18579. },
  18580. {
  18581. name: "Macro",
  18582. height: math.unit(42, "meters")
  18583. },
  18584. ]
  18585. ))
  18586. characterMakers.push(() => makeCharacter(
  18587. { name: "Tahajin" },
  18588. {
  18589. were: {
  18590. height: math.unit(25 + 6 / 12, "feet"),
  18591. weight: math.unit(10000, "lb"),
  18592. name: "Were",
  18593. image: {
  18594. source: "./media/characters/tahajin/were.svg",
  18595. extra: 801 / 770,
  18596. bottom: 0.042
  18597. }
  18598. },
  18599. aquatic: {
  18600. height: math.unit(6 + 4 / 12, "feet"),
  18601. weight: math.unit(160, "lb"),
  18602. name: "Aquatic",
  18603. image: {
  18604. source: "./media/characters/tahajin/aquatic.svg",
  18605. extra: 572 / 542,
  18606. bottom: 0.04
  18607. }
  18608. },
  18609. chow: {
  18610. height: math.unit(8 + 11 / 12, "feet"),
  18611. weight: math.unit(450, "lb"),
  18612. name: "Chow",
  18613. image: {
  18614. source: "./media/characters/tahajin/chow.svg",
  18615. extra: 660 / 640,
  18616. bottom: 0.015
  18617. }
  18618. },
  18619. demiNaga: {
  18620. height: math.unit(6 + 8 / 12, "feet"),
  18621. weight: math.unit(300, "lb"),
  18622. name: "Demi Naga",
  18623. image: {
  18624. source: "./media/characters/tahajin/demi-naga.svg",
  18625. extra: 643 / 615,
  18626. bottom: 0.1
  18627. }
  18628. },
  18629. data: {
  18630. height: math.unit(5, "inches"),
  18631. weight: math.unit(0.1, "lb"),
  18632. name: "Data",
  18633. image: {
  18634. source: "./media/characters/tahajin/data.svg"
  18635. }
  18636. },
  18637. fluu: {
  18638. height: math.unit(5 + 7 / 12, "feet"),
  18639. weight: math.unit(140, "lb"),
  18640. name: "Fluu",
  18641. image: {
  18642. source: "./media/characters/tahajin/fluu.svg",
  18643. extra: 628 / 592,
  18644. bottom: 0.02
  18645. }
  18646. },
  18647. starWarrior: {
  18648. height: math.unit(4 + 5 / 12, "feet"),
  18649. weight: math.unit(50, "lb"),
  18650. name: "Star Warrior",
  18651. image: {
  18652. source: "./media/characters/tahajin/star-warrior.svg"
  18653. }
  18654. },
  18655. },
  18656. [
  18657. {
  18658. name: "Normal",
  18659. height: math.unit(25 + 6 / 12, "feet"),
  18660. default: true
  18661. },
  18662. ]
  18663. ))
  18664. characterMakers.push(() => makeCharacter(
  18665. { name: "Gabira" },
  18666. {
  18667. front: {
  18668. height: math.unit(8, "feet"),
  18669. weight: math.unit(350, "lb"),
  18670. name: "Front",
  18671. image: {
  18672. source: "./media/characters/gabira/front.svg",
  18673. extra: 608 / 580,
  18674. bottom: 0.03
  18675. }
  18676. },
  18677. back: {
  18678. height: math.unit(8, "feet"),
  18679. weight: math.unit(350, "lb"),
  18680. name: "Back",
  18681. image: {
  18682. source: "./media/characters/gabira/back.svg",
  18683. extra: 608 / 580,
  18684. bottom: 0.03
  18685. }
  18686. },
  18687. },
  18688. [
  18689. {
  18690. name: "Normal",
  18691. height: math.unit(8, "feet"),
  18692. default: true
  18693. },
  18694. ]
  18695. ))
  18696. characterMakers.push(() => makeCharacter(
  18697. { name: "Sasha Katraine" },
  18698. {
  18699. front: {
  18700. height: math.unit(5 + 3 / 12, "feet"),
  18701. weight: math.unit(137, "lb"),
  18702. name: "Front",
  18703. image: {
  18704. source: "./media/characters/sasha-katraine/front.svg",
  18705. bottom: 0.045
  18706. }
  18707. },
  18708. },
  18709. [
  18710. {
  18711. name: "Micro",
  18712. height: math.unit(5, "inches")
  18713. },
  18714. {
  18715. name: "Normal",
  18716. height: math.unit(5 + 3 / 12, "feet"),
  18717. default: true
  18718. },
  18719. ]
  18720. ))
  18721. characterMakers.push(() => makeCharacter(
  18722. { name: "Der" },
  18723. {
  18724. side: {
  18725. height: math.unit(4, "inches"),
  18726. weight: math.unit(200, "grams"),
  18727. name: "Side",
  18728. image: {
  18729. source: "./media/characters/der/side.svg",
  18730. extra: 719 / 400,
  18731. bottom: 30.6 / 749.9187
  18732. }
  18733. },
  18734. },
  18735. [
  18736. {
  18737. name: "Micro",
  18738. height: math.unit(4, "inches"),
  18739. default: true
  18740. },
  18741. ]
  18742. ))
  18743. characterMakers.push(() => makeCharacter(
  18744. { name: "Fixerdragon" },
  18745. {
  18746. side: {
  18747. height: math.unit(30, "meters"),
  18748. weight: math.unit(700, "tonnes"),
  18749. name: "Side",
  18750. image: {
  18751. source: "./media/characters/fixerdragon/side.svg",
  18752. extra: (1293.0514 - 116.03) / 1106.86,
  18753. bottom: 116.03 / 1293.0514
  18754. }
  18755. },
  18756. },
  18757. [
  18758. {
  18759. name: "Planck",
  18760. height: math.unit(1.6e-35, "meters")
  18761. },
  18762. {
  18763. name: "Micro",
  18764. height: math.unit(0.4, "meters")
  18765. },
  18766. {
  18767. name: "Normal",
  18768. height: math.unit(30, "meters"),
  18769. default: true
  18770. },
  18771. {
  18772. name: "Megamacro",
  18773. height: math.unit(1.2, "megameters")
  18774. },
  18775. {
  18776. name: "Teramacro",
  18777. height: math.unit(130, "terameters")
  18778. },
  18779. {
  18780. name: "Yottamacro",
  18781. height: math.unit(6200, "yottameters")
  18782. },
  18783. ]
  18784. ));
  18785. characterMakers.push(() => makeCharacter(
  18786. { name: "Kite" },
  18787. {
  18788. front: {
  18789. height: math.unit(8, "feet"),
  18790. weight: math.unit(250, "lb"),
  18791. name: "Front",
  18792. image: {
  18793. source: "./media/characters/kite/front.svg",
  18794. extra: 2796 / 2659,
  18795. bottom: 0.002
  18796. }
  18797. },
  18798. },
  18799. [
  18800. {
  18801. name: "Normal",
  18802. height: math.unit(8, "feet"),
  18803. default: true
  18804. },
  18805. {
  18806. name: "Macro",
  18807. height: math.unit(360, "feet")
  18808. },
  18809. {
  18810. name: "Megamacro",
  18811. height: math.unit(1500, "feet")
  18812. },
  18813. ]
  18814. ))
  18815. characterMakers.push(() => makeCharacter(
  18816. { name: "Poojawa Vynar" },
  18817. {
  18818. front: {
  18819. height: math.unit(5 + 10 / 12, "feet"),
  18820. weight: math.unit(150, "lb"),
  18821. name: "Front",
  18822. image: {
  18823. source: "./media/characters/poojawa-vynar/front.svg",
  18824. extra: (1506.1547 - 55) / 1356.6,
  18825. bottom: 55 / 1506.1547
  18826. }
  18827. },
  18828. frontTailless: {
  18829. height: math.unit(5 + 10 / 12, "feet"),
  18830. weight: math.unit(150, "lb"),
  18831. name: "Front (Tailless)",
  18832. image: {
  18833. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18834. extra: (1506.1547 - 55) / 1356.6,
  18835. bottom: 55 / 1506.1547
  18836. }
  18837. },
  18838. },
  18839. [
  18840. {
  18841. name: "Normal",
  18842. height: math.unit(5 + 10 / 12, "feet"),
  18843. default: true
  18844. },
  18845. ]
  18846. ))
  18847. characterMakers.push(() => makeCharacter(
  18848. { name: "Violette" },
  18849. {
  18850. front: {
  18851. height: math.unit(293, "meters"),
  18852. weight: math.unit(70400, "tons"),
  18853. name: "Front",
  18854. image: {
  18855. source: "./media/characters/violette/front.svg",
  18856. extra: 1227 / 1180,
  18857. bottom: 0.005
  18858. }
  18859. },
  18860. back: {
  18861. height: math.unit(293, "meters"),
  18862. weight: math.unit(70400, "tons"),
  18863. name: "Back",
  18864. image: {
  18865. source: "./media/characters/violette/back.svg",
  18866. extra: 1227 / 1180,
  18867. bottom: 0.005
  18868. }
  18869. },
  18870. },
  18871. [
  18872. {
  18873. name: "Macro",
  18874. height: math.unit(293, "meters"),
  18875. default: true
  18876. },
  18877. ]
  18878. ))
  18879. characterMakers.push(() => makeCharacter(
  18880. { name: "Alessandra" },
  18881. {
  18882. front: {
  18883. height: math.unit(1050, "feet"),
  18884. weight: math.unit(200000, "tons"),
  18885. name: "Front",
  18886. image: {
  18887. source: "./media/characters/alessandra/front.svg",
  18888. extra: 960 / 912,
  18889. bottom: 0.06
  18890. }
  18891. },
  18892. },
  18893. [
  18894. {
  18895. name: "Macro",
  18896. height: math.unit(1050, "feet")
  18897. },
  18898. {
  18899. name: "Macro+",
  18900. height: math.unit(900, "meters"),
  18901. default: true
  18902. },
  18903. ]
  18904. ))
  18905. characterMakers.push(() => makeCharacter(
  18906. { name: "Person", species: "Catdragon" },
  18907. {
  18908. front: {
  18909. height: math.unit(5, "feet"),
  18910. weight: math.unit(187, "lb"),
  18911. name: "Front",
  18912. image: {
  18913. source: "./media/characters/person/front.svg",
  18914. extra: 3087 / 2945,
  18915. bottom: 91 / 3181
  18916. }
  18917. },
  18918. },
  18919. [
  18920. {
  18921. name: "Micro",
  18922. height: math.unit(3, "inches")
  18923. },
  18924. {
  18925. name: "Normal",
  18926. height: math.unit(5, "feet"),
  18927. default: true
  18928. },
  18929. {
  18930. name: "Macro",
  18931. height: math.unit(90, "feet")
  18932. },
  18933. {
  18934. name: "Max Size",
  18935. height: math.unit(280, "feet")
  18936. },
  18937. ]
  18938. ))
  18939. characterMakers.push(() => makeCharacter(
  18940. { name: "Ty" },
  18941. {
  18942. front: {
  18943. height: math.unit(4.5, "meters"),
  18944. weight: math.unit(3200, "lb"),
  18945. name: "Front",
  18946. image: {
  18947. source: "./media/characters/ty/front.svg",
  18948. extra: 1038 / 960,
  18949. bottom: 31.156 / 1068
  18950. }
  18951. },
  18952. back: {
  18953. height: math.unit(4.5, "meters"),
  18954. weight: math.unit(3200, "lb"),
  18955. name: "Back",
  18956. image: {
  18957. source: "./media/characters/ty/back.svg",
  18958. extra: 1044 / 966,
  18959. bottom: 7.48 / 1049
  18960. }
  18961. },
  18962. },
  18963. [
  18964. {
  18965. name: "Normal",
  18966. height: math.unit(4.5, "meters"),
  18967. default: true
  18968. },
  18969. ]
  18970. ))
  18971. characterMakers.push(() => makeCharacter(
  18972. { name: "Rocky" },
  18973. {
  18974. front: {
  18975. height: math.unit(5 + 4 / 12, "feet"),
  18976. weight: math.unit(115, "lb"),
  18977. name: "Front",
  18978. image: {
  18979. source: "./media/characters/rocky/front.svg",
  18980. extra: 1012 / 975,
  18981. bottom: 54 / 1066
  18982. }
  18983. },
  18984. },
  18985. [
  18986. {
  18987. name: "Normal",
  18988. height: math.unit(5 + 4 / 12, "feet"),
  18989. default: true
  18990. },
  18991. ]
  18992. ))
  18993. characterMakers.push(() => makeCharacter(
  18994. { name: "Ruin" },
  18995. {
  18996. upright: {
  18997. height: math.unit(6, "meters"),
  18998. weight: math.unit(4000, "kg"),
  18999. name: "Upright",
  19000. image: {
  19001. source: "./media/characters/ruin/upright.svg",
  19002. extra: 668 / 661,
  19003. bottom: 42 / 799.8396
  19004. }
  19005. },
  19006. },
  19007. [
  19008. {
  19009. name: "Normal",
  19010. height: math.unit(6, "meters"),
  19011. default: true
  19012. },
  19013. ]
  19014. ))
  19015. characterMakers.push(() => makeCharacter(
  19016. { name: "Robin" },
  19017. {
  19018. front: {
  19019. height: math.unit(5, "feet"),
  19020. weight: math.unit(106, "lb"),
  19021. name: "Front",
  19022. image: {
  19023. source: "./media/characters/robin/front.svg",
  19024. extra: 862 / 799,
  19025. bottom: 42.4 / 914.8856
  19026. }
  19027. },
  19028. },
  19029. [
  19030. {
  19031. name: "Normal",
  19032. height: math.unit(5, "feet"),
  19033. default: true
  19034. },
  19035. ]
  19036. ))
  19037. characterMakers.push(() => makeCharacter(
  19038. { name: "Saian" },
  19039. {
  19040. side: {
  19041. height: math.unit(3, "feet"),
  19042. weight: math.unit(225, "lb"),
  19043. name: "Side",
  19044. image: {
  19045. source: "./media/characters/saian/side.svg",
  19046. extra: 566 / 356,
  19047. bottom: 79.7 / 643
  19048. }
  19049. },
  19050. maw: {
  19051. height: math.unit(2.85, "feet"),
  19052. name: "Maw",
  19053. image: {
  19054. source: "./media/characters/saian/maw.svg"
  19055. }
  19056. },
  19057. },
  19058. [
  19059. {
  19060. name: "Normal",
  19061. height: math.unit(3, "feet"),
  19062. default: true
  19063. },
  19064. ]
  19065. ))
  19066. characterMakers.push(() => makeCharacter(
  19067. { name: "Equus Silvermane" },
  19068. {
  19069. side: {
  19070. height: math.unit(8, "feet"),
  19071. weight: math.unit(300, "lb"),
  19072. name: "Side",
  19073. image: {
  19074. source: "./media/characters/equus-silvermane/side.svg",
  19075. extra: 2176 / 2050,
  19076. bottom: 65.7 / 2245
  19077. }
  19078. },
  19079. front: {
  19080. height: math.unit(8, "feet"),
  19081. weight: math.unit(300, "lb"),
  19082. name: "Front",
  19083. image: {
  19084. source: "./media/characters/equus-silvermane/front.svg",
  19085. extra: 4633 / 4400,
  19086. bottom: 71.3 / 4706.915
  19087. }
  19088. },
  19089. sideStepping: {
  19090. height: math.unit(8, "feet"),
  19091. weight: math.unit(300, "lb"),
  19092. name: "Side (Stepping)",
  19093. image: {
  19094. source: "./media/characters/equus-silvermane/side-stepping.svg",
  19095. extra: 1968 / 1860,
  19096. bottom: 16.4 / 1989
  19097. }
  19098. },
  19099. },
  19100. [
  19101. {
  19102. name: "Normal",
  19103. height: math.unit(8, "feet")
  19104. },
  19105. {
  19106. name: "Minimacro",
  19107. height: math.unit(75, "feet"),
  19108. default: true
  19109. },
  19110. {
  19111. name: "Macro",
  19112. height: math.unit(150, "feet")
  19113. },
  19114. {
  19115. name: "Macro+",
  19116. height: math.unit(1000, "feet")
  19117. },
  19118. {
  19119. name: "Megamacro",
  19120. height: math.unit(1, "mile")
  19121. },
  19122. ]
  19123. ))
  19124. characterMakers.push(() => makeCharacter(
  19125. { name: "Windar" },
  19126. {
  19127. side: {
  19128. height: math.unit(20, "feet"),
  19129. weight: math.unit(30000, "kg"),
  19130. name: "Side",
  19131. image: {
  19132. source: "./media/characters/windar/side.svg",
  19133. extra: 1491 / 1248,
  19134. bottom: 82.56 / 1568
  19135. }
  19136. },
  19137. },
  19138. [
  19139. {
  19140. name: "Normal",
  19141. height: math.unit(20, "feet"),
  19142. default: true
  19143. },
  19144. ]
  19145. ))
  19146. characterMakers.push(() => makeCharacter(
  19147. { name: "Melody" },
  19148. {
  19149. side: {
  19150. height: math.unit(15.66, "feet"),
  19151. weight: math.unit(150, "lb"),
  19152. name: "Side",
  19153. image: {
  19154. source: "./media/characters/melody/side.svg",
  19155. extra: 1097 / 944,
  19156. bottom: 11.8 / 1109
  19157. }
  19158. },
  19159. sideOutfit: {
  19160. height: math.unit(15.66, "feet"),
  19161. weight: math.unit(150, "lb"),
  19162. name: "Side (Outfit)",
  19163. image: {
  19164. source: "./media/characters/melody/side-outfit.svg",
  19165. extra: 1097 / 944,
  19166. bottom: 11.8 / 1109
  19167. }
  19168. },
  19169. },
  19170. [
  19171. {
  19172. name: "Normal",
  19173. height: math.unit(15.66, "feet"),
  19174. default: true
  19175. },
  19176. ]
  19177. ))
  19178. characterMakers.push(() => makeCharacter(
  19179. { name: "Windera" },
  19180. {
  19181. front: {
  19182. height: math.unit(8, "feet"),
  19183. weight: math.unit(325, "lb"),
  19184. name: "Front",
  19185. image: {
  19186. source: "./media/characters/windera/front.svg",
  19187. extra: 3180 / 2845,
  19188. bottom: 178 / 3365
  19189. }
  19190. },
  19191. },
  19192. [
  19193. {
  19194. name: "Normal",
  19195. height: math.unit(8, "feet"),
  19196. default: true
  19197. },
  19198. ]
  19199. ))
  19200. characterMakers.push(() => makeCharacter(
  19201. { name: "Sonear" },
  19202. {
  19203. front: {
  19204. height: math.unit(28.75, "feet"),
  19205. weight: math.unit(2000, "kg"),
  19206. name: "Front",
  19207. image: {
  19208. source: "./media/characters/sonear/front.svg",
  19209. extra: 1041.1 / 964.9,
  19210. bottom: 53.7 / 1096.6
  19211. }
  19212. },
  19213. },
  19214. [
  19215. {
  19216. name: "Normal",
  19217. height: math.unit(28.75, "feet"),
  19218. default: true
  19219. },
  19220. ]
  19221. ))
  19222. characterMakers.push(() => makeCharacter(
  19223. { name: "Kanara" },
  19224. {
  19225. side: {
  19226. height: math.unit(25.5, "feet"),
  19227. weight: math.unit(23000, "kg"),
  19228. name: "Side",
  19229. image: {
  19230. source: "./media/characters/kanara/side.svg"
  19231. }
  19232. },
  19233. },
  19234. [
  19235. {
  19236. name: "Normal",
  19237. height: math.unit(25.5, "feet"),
  19238. default: true
  19239. },
  19240. ]
  19241. ))
  19242. characterMakers.push(() => makeCharacter(
  19243. { name: "Ereus" },
  19244. {
  19245. side: {
  19246. height: math.unit(10, "feet"),
  19247. weight: math.unit(1000, "kg"),
  19248. name: "Side",
  19249. image: {
  19250. source: "./media/characters/ereus/side.svg",
  19251. extra: 1157 / 959,
  19252. bottom: 153 / 1312.5
  19253. }
  19254. },
  19255. },
  19256. [
  19257. {
  19258. name: "Normal",
  19259. height: math.unit(10, "feet"),
  19260. default: true
  19261. },
  19262. ]
  19263. ))
  19264. characterMakers.push(() => makeCharacter(
  19265. { name: "E-ter" },
  19266. {
  19267. side: {
  19268. height: math.unit(4.5, "feet"),
  19269. weight: math.unit(500, "lb"),
  19270. name: "Side",
  19271. image: {
  19272. source: "./media/characters/e-ter/side.svg",
  19273. extra: 1550 / 1248,
  19274. bottom: 146 / 1694
  19275. }
  19276. },
  19277. },
  19278. [
  19279. {
  19280. name: "Normal",
  19281. height: math.unit(4.5, "feet"),
  19282. default: true
  19283. },
  19284. ]
  19285. ))
  19286. characterMakers.push(() => makeCharacter(
  19287. { name: "Yamie" },
  19288. {
  19289. side: {
  19290. height: math.unit(9.7, "feet"),
  19291. weight: math.unit(4000, "kg"),
  19292. name: "Side",
  19293. image: {
  19294. source: "./media/characters/yamie/side.svg"
  19295. }
  19296. },
  19297. },
  19298. [
  19299. {
  19300. name: "Normal",
  19301. height: math.unit(9.7, "feet"),
  19302. default: true
  19303. },
  19304. ]
  19305. ))
  19306. characterMakers.push(() => makeCharacter(
  19307. { name: "Anders" },
  19308. {
  19309. front: {
  19310. height: math.unit(50, "feet"),
  19311. weight: math.unit(50000, "kg"),
  19312. name: "Front",
  19313. image: {
  19314. source: "./media/characters/anders/front.svg",
  19315. extra: 570 / 539,
  19316. bottom: 14.7 / 586.7
  19317. }
  19318. },
  19319. },
  19320. [
  19321. {
  19322. name: "Large",
  19323. height: math.unit(50, "feet")
  19324. },
  19325. {
  19326. name: "Macro",
  19327. height: math.unit(2000, "feet"),
  19328. default: true
  19329. },
  19330. {
  19331. name: "Megamacro",
  19332. height: math.unit(12, "miles")
  19333. },
  19334. ]
  19335. ))
  19336. characterMakers.push(() => makeCharacter(
  19337. { name: "Reban" },
  19338. {
  19339. front: {
  19340. height: math.unit(7 + 2 / 12, "feet"),
  19341. weight: math.unit(300, "lb"),
  19342. name: "Front",
  19343. image: {
  19344. source: "./media/characters/reban/front.svg",
  19345. extra: 516 / 487,
  19346. bottom: 42.82 / 558.356
  19347. }
  19348. },
  19349. dick: {
  19350. height: math.unit(7 / 5, "feet"),
  19351. name: "Dick",
  19352. image: {
  19353. source: "./media/characters/reban/dick.svg"
  19354. }
  19355. },
  19356. },
  19357. [
  19358. {
  19359. name: "Natural Height",
  19360. height: math.unit(7 + 2 / 12, "feet")
  19361. },
  19362. {
  19363. name: "Macro",
  19364. height: math.unit(500, "feet"),
  19365. default: true
  19366. },
  19367. {
  19368. name: "Canon Height",
  19369. height: math.unit(50, "AU")
  19370. },
  19371. ]
  19372. ))
  19373. characterMakers.push(() => makeCharacter(
  19374. { name: "Terrance Keayes" },
  19375. {
  19376. front: {
  19377. height: math.unit(6, "feet"),
  19378. weight: math.unit(150, "lb"),
  19379. name: "Front",
  19380. image: {
  19381. source: "./media/characters/terrance-keayes/front.svg",
  19382. extra: 1.005,
  19383. bottom: 151 / 1615
  19384. }
  19385. },
  19386. side: {
  19387. height: math.unit(6, "feet"),
  19388. weight: math.unit(150, "lb"),
  19389. name: "Side",
  19390. image: {
  19391. source: "./media/characters/terrance-keayes/side.svg",
  19392. extra: 1.005,
  19393. bottom: 129.4 / 1544
  19394. }
  19395. },
  19396. back: {
  19397. height: math.unit(6, "feet"),
  19398. weight: math.unit(150, "lb"),
  19399. name: "Back",
  19400. image: {
  19401. source: "./media/characters/terrance-keayes/back.svg",
  19402. extra: 1.005,
  19403. bottom: 58.4 / 1557.3
  19404. }
  19405. },
  19406. dick: {
  19407. height: math.unit(6 * 0.208, "feet"),
  19408. name: "Dick",
  19409. image: {
  19410. source: "./media/characters/terrance-keayes/dick.svg"
  19411. }
  19412. },
  19413. },
  19414. [
  19415. {
  19416. name: "Canon Height",
  19417. height: math.unit(35, "miles"),
  19418. default: true
  19419. },
  19420. ]
  19421. ))
  19422. characterMakers.push(() => makeCharacter(
  19423. { name: "Ofelia" },
  19424. {
  19425. front: {
  19426. height: math.unit(6, "feet"),
  19427. weight: math.unit(150, "lb"),
  19428. name: "Front",
  19429. image: {
  19430. source: "./media/characters/ofelia/front.svg",
  19431. extra: 546 / 541,
  19432. bottom: 39 / 583
  19433. }
  19434. },
  19435. back: {
  19436. height: math.unit(6, "feet"),
  19437. weight: math.unit(150, "lb"),
  19438. name: "Back",
  19439. image: {
  19440. source: "./media/characters/ofelia/back.svg",
  19441. extra: 564 / 559.5,
  19442. bottom: 8.69 / 573.02
  19443. }
  19444. },
  19445. maw: {
  19446. height: math.unit(1, "feet"),
  19447. name: "Maw",
  19448. image: {
  19449. source: "./media/characters/ofelia/maw.svg"
  19450. }
  19451. },
  19452. foot: {
  19453. height: math.unit(1.949, "feet"),
  19454. name: "Foot",
  19455. image: {
  19456. source: "./media/characters/ofelia/foot.svg"
  19457. }
  19458. },
  19459. },
  19460. [
  19461. {
  19462. name: "Canon Height",
  19463. height: math.unit(2000, "miles"),
  19464. default: true
  19465. },
  19466. ]
  19467. ))
  19468. characterMakers.push(() => makeCharacter(
  19469. { name: "Samuel" },
  19470. {
  19471. front: {
  19472. height: math.unit(6, "feet"),
  19473. weight: math.unit(150, "lb"),
  19474. name: "Front",
  19475. image: {
  19476. source: "./media/characters/samuel/front.svg",
  19477. extra: 265 / 258,
  19478. bottom: 2 / 266.1566
  19479. }
  19480. },
  19481. },
  19482. [
  19483. {
  19484. name: "Macro",
  19485. height: math.unit(100, "feet"),
  19486. default: true
  19487. },
  19488. {
  19489. name: "Full Size",
  19490. height: math.unit(1000, "miles")
  19491. },
  19492. ]
  19493. ))
  19494. characterMakers.push(() => makeCharacter(
  19495. { name: "Beishir Kiel" },
  19496. {
  19497. front: {
  19498. height: math.unit(6, "feet"),
  19499. weight: math.unit(300, "lb"),
  19500. name: "Front",
  19501. image: {
  19502. source: "./media/characters/beishir-kiel/front.svg",
  19503. extra: 569 / 547,
  19504. bottom: 41.9 / 609
  19505. }
  19506. },
  19507. maw: {
  19508. height: math.unit(6 * 0.202, "feet"),
  19509. name: "Maw",
  19510. image: {
  19511. source: "./media/characters/beishir-kiel/maw.svg"
  19512. }
  19513. },
  19514. },
  19515. [
  19516. {
  19517. name: "Macro",
  19518. height: math.unit(300, "feet"),
  19519. default: true
  19520. },
  19521. ]
  19522. ))
  19523. characterMakers.push(() => makeCharacter(
  19524. { name: "Logan Grey" },
  19525. {
  19526. front: {
  19527. height: math.unit(5 + 8 / 12, "feet"),
  19528. weight: math.unit(120, "lb"),
  19529. name: "Front",
  19530. image: {
  19531. source: "./media/characters/logan-grey/front.svg",
  19532. extra: 2539 / 2393,
  19533. bottom: 97.6 / 2636.37
  19534. }
  19535. },
  19536. frontAlt: {
  19537. height: math.unit(5 + 8 / 12, "feet"),
  19538. weight: math.unit(120, "lb"),
  19539. name: "Front (Alt)",
  19540. image: {
  19541. source: "./media/characters/logan-grey/front-alt.svg",
  19542. extra: 958 / 893,
  19543. bottom: 15 / 970.768
  19544. }
  19545. },
  19546. back: {
  19547. height: math.unit(5 + 8 / 12, "feet"),
  19548. weight: math.unit(120, "lb"),
  19549. name: "Back",
  19550. image: {
  19551. source: "./media/characters/logan-grey/back.svg",
  19552. extra: 958 / 893,
  19553. bottom: 2.1881 / 970.9788
  19554. }
  19555. },
  19556. dick: {
  19557. height: math.unit(1.437, "feet"),
  19558. name: "Dick",
  19559. image: {
  19560. source: "./media/characters/logan-grey/dick.svg"
  19561. }
  19562. },
  19563. },
  19564. [
  19565. {
  19566. name: "Normal",
  19567. height: math.unit(5 + 8 / 12, "feet")
  19568. },
  19569. {
  19570. name: "The 500 Foot Femboy",
  19571. height: math.unit(500, "feet"),
  19572. default: true
  19573. },
  19574. {
  19575. name: "Megmacro",
  19576. height: math.unit(20, "miles")
  19577. },
  19578. ]
  19579. ))
  19580. characterMakers.push(() => makeCharacter(
  19581. { name: "Draganta" },
  19582. {
  19583. front: {
  19584. height: math.unit(8 + 2 / 12, "feet"),
  19585. weight: math.unit(275, "lb"),
  19586. name: "Front",
  19587. image: {
  19588. source: "./media/characters/draganta/front.svg",
  19589. extra: 1177 / 1135,
  19590. bottom: 33.46 / 1212.1
  19591. }
  19592. },
  19593. },
  19594. [
  19595. {
  19596. name: "Normal",
  19597. height: math.unit(8 + 6 / 12, "feet"),
  19598. default: true
  19599. },
  19600. {
  19601. name: "Macro",
  19602. height: math.unit(150, "feet")
  19603. },
  19604. {
  19605. name: "Megamacro",
  19606. height: math.unit(1000, "miles")
  19607. },
  19608. ]
  19609. ))
  19610. characterMakers.push(() => makeCharacter(
  19611. { name: "Voski", species: "Corvid" },
  19612. {
  19613. front: {
  19614. height: math.unit(1.72, "m"),
  19615. weight: math.unit(80, "lb"),
  19616. name: "Front",
  19617. image: {
  19618. source: "./media/characters/voski/front.svg",
  19619. extra: 2076.22 / 2022.4,
  19620. bottom: 102.7 / 2177.3866
  19621. }
  19622. },
  19623. frontNsfw: {
  19624. height: math.unit(1.72, "m"),
  19625. weight: math.unit(80, "lb"),
  19626. name: "Front (NSFW)",
  19627. image: {
  19628. source: "./media/characters/voski/front-nsfw.svg",
  19629. extra: 2076.22 / 2022.4,
  19630. bottom: 102.7 / 2177.3866
  19631. }
  19632. },
  19633. back: {
  19634. height: math.unit(1.72, "m"),
  19635. weight: math.unit(80, "lb"),
  19636. name: "Back",
  19637. image: {
  19638. source: "./media/characters/voski/back.svg",
  19639. extra: 2104 / 2051,
  19640. bottom: 10.45 / 2113.63
  19641. }
  19642. },
  19643. },
  19644. [
  19645. {
  19646. name: "Normal",
  19647. height: math.unit(1.72, "m")
  19648. },
  19649. {
  19650. name: "Macro",
  19651. height: math.unit(55, "m"),
  19652. default: true
  19653. },
  19654. {
  19655. name: "Macro+",
  19656. height: math.unit(300, "m")
  19657. },
  19658. {
  19659. name: "Macro++",
  19660. height: math.unit(700, "m")
  19661. },
  19662. {
  19663. name: "Macro+++",
  19664. height: math.unit(4500, "m")
  19665. },
  19666. {
  19667. name: "Macro++++",
  19668. height: math.unit(45, "km")
  19669. },
  19670. {
  19671. name: "Macro+++++",
  19672. height: math.unit(1220, "km")
  19673. },
  19674. ]
  19675. ))
  19676. characterMakers.push(() => makeCharacter(
  19677. { name: "Icowom Lee" },
  19678. {
  19679. front: {
  19680. height: math.unit(2.3, "m"),
  19681. weight: math.unit(304, "kg"),
  19682. name: "Front",
  19683. image: {
  19684. source: "./media/characters/icowom-lee/front.svg",
  19685. extra: 3076 / 2933,
  19686. bottom: 51.4 / 3125.1889
  19687. }
  19688. },
  19689. },
  19690. [
  19691. {
  19692. name: "Normal",
  19693. height: math.unit(2.3, "meters"),
  19694. default: true
  19695. },
  19696. {
  19697. name: "Macro",
  19698. height: math.unit(94, "meters"),
  19699. default: true
  19700. },
  19701. ]
  19702. ))
  19703. characterMakers.push(() => makeCharacter(
  19704. { name: "Shock Diamond", species: "Aeromorphic Synthetic Pharaoh Hound" },
  19705. {
  19706. front: {
  19707. height: math.unit(22, "meters"),
  19708. weight: math.unit(21000, "kg"),
  19709. name: "Front",
  19710. image: {
  19711. source: "./media/characters/shock-diamond/front.svg",
  19712. extra: 2204 / 2053,
  19713. bottom: 65 / 2239.47
  19714. }
  19715. },
  19716. frontNude: {
  19717. height: math.unit(22, "meters"),
  19718. weight: math.unit(21000, "kg"),
  19719. name: "Front (Nude)",
  19720. image: {
  19721. source: "./media/characters/shock-diamond/front-nude.svg",
  19722. extra: 2514 / 2285,
  19723. bottom: 13 / 2527.56
  19724. }
  19725. },
  19726. },
  19727. [
  19728. {
  19729. name: "Normal",
  19730. height: math.unit(3, "meters")
  19731. },
  19732. {
  19733. name: "Macro",
  19734. height: math.unit(22, "meters"),
  19735. default: true
  19736. },
  19737. ]
  19738. ))
  19739. characterMakers.push(() => makeCharacter(
  19740. { name: "Rory" },
  19741. {
  19742. front: {
  19743. height: math.unit(5 + 4 / 12, "feet"),
  19744. weight: math.unit(120, "lb"),
  19745. name: "Front",
  19746. image: {
  19747. source: "./media/characters/rory/front.svg",
  19748. extra: 589 / 556,
  19749. bottom: 45.7 / 635.76
  19750. }
  19751. },
  19752. frontNude: {
  19753. height: math.unit(5 + 4 / 12, "feet"),
  19754. weight: math.unit(120, "lb"),
  19755. name: "Front (Nude)",
  19756. image: {
  19757. source: "./media/characters/rory/front-nude.svg",
  19758. extra: 589 / 556,
  19759. bottom: 45.7 / 635.76
  19760. }
  19761. },
  19762. side: {
  19763. height: math.unit(5 + 4 / 12, "feet"),
  19764. weight: math.unit(120, "lb"),
  19765. name: "Side",
  19766. image: {
  19767. source: "./media/characters/rory/side.svg",
  19768. extra: 597 / 564,
  19769. bottom: 55 / 653
  19770. }
  19771. },
  19772. back: {
  19773. height: math.unit(5 + 4 / 12, "feet"),
  19774. weight: math.unit(120, "lb"),
  19775. name: "Back",
  19776. image: {
  19777. source: "./media/characters/rory/back.svg",
  19778. extra: 620 / 585,
  19779. bottom: 8.86 / 630.43
  19780. }
  19781. },
  19782. dick: {
  19783. height: math.unit(0.86, "feet"),
  19784. name: "Dick",
  19785. image: {
  19786. source: "./media/characters/rory/dick.svg"
  19787. }
  19788. },
  19789. },
  19790. [
  19791. {
  19792. name: "Normal",
  19793. height: math.unit(5 + 4 / 12, "feet"),
  19794. default: true
  19795. },
  19796. {
  19797. name: "Macro",
  19798. height: math.unit(100, "feet")
  19799. },
  19800. {
  19801. name: "Macro+",
  19802. height: math.unit(140, "feet")
  19803. },
  19804. {
  19805. name: "Macro++",
  19806. height: math.unit(300, "feet")
  19807. },
  19808. ]
  19809. ))
  19810. characterMakers.push(() => makeCharacter(
  19811. { name: "Sprisk" },
  19812. {
  19813. front: {
  19814. height: math.unit(5 + 9 / 12, "feet"),
  19815. weight: math.unit(190, "lb"),
  19816. name: "Front",
  19817. image: {
  19818. source: "./media/characters/sprisk/front.svg",
  19819. extra: 1225 / 1180,
  19820. bottom: 42.7 / 1266.4
  19821. }
  19822. },
  19823. frontNsfw: {
  19824. height: math.unit(5 + 9 / 12, "feet"),
  19825. weight: math.unit(190, "lb"),
  19826. name: "Front (NSFW)",
  19827. image: {
  19828. source: "./media/characters/sprisk/front-nsfw.svg",
  19829. extra: 1225 / 1180,
  19830. bottom: 42.7 / 1266.4
  19831. }
  19832. },
  19833. back: {
  19834. height: math.unit(5 + 9 / 12, "feet"),
  19835. weight: math.unit(190, "lb"),
  19836. name: "Back",
  19837. image: {
  19838. source: "./media/characters/sprisk/back.svg",
  19839. extra: 1247 / 1200,
  19840. bottom: 5.6 / 1253.04
  19841. }
  19842. },
  19843. },
  19844. [
  19845. {
  19846. name: "Tiny",
  19847. height: math.unit(2, "inches")
  19848. },
  19849. {
  19850. name: "Normal",
  19851. height: math.unit(5 + 9 / 12, "feet"),
  19852. default: true
  19853. },
  19854. {
  19855. name: "Mini Macro",
  19856. height: math.unit(18, "feet")
  19857. },
  19858. {
  19859. name: "Macro",
  19860. height: math.unit(100, "feet")
  19861. },
  19862. {
  19863. name: "MACRO",
  19864. height: math.unit(50, "miles")
  19865. },
  19866. {
  19867. name: "M A C R O",
  19868. height: math.unit(300, "miles")
  19869. },
  19870. ]
  19871. ))
  19872. characterMakers.push(() => makeCharacter(
  19873. { name: "Bunsen" },
  19874. {
  19875. side: {
  19876. height: math.unit(15.6, "meters"),
  19877. weight: math.unit(700000, "kg"),
  19878. name: "Side",
  19879. image: {
  19880. source: "./media/characters/bunsen/side.svg",
  19881. extra: 1644 / 358
  19882. }
  19883. },
  19884. foot: {
  19885. height: math.unit(1.611 * 1644 / 358, "meter"),
  19886. name: "Foot",
  19887. image: {
  19888. source: "./media/characters/bunsen/foot.svg"
  19889. }
  19890. },
  19891. },
  19892. [
  19893. {
  19894. name: "Small",
  19895. height: math.unit(10, "feet")
  19896. },
  19897. {
  19898. name: "Normal",
  19899. height: math.unit(15.6, "meters"),
  19900. default: true
  19901. },
  19902. ]
  19903. ))
  19904. characterMakers.push(() => makeCharacter(
  19905. { name: "Sesh" },
  19906. {
  19907. front: {
  19908. height: math.unit(4 + 11 / 12, "feet"),
  19909. weight: math.unit(140, "lb"),
  19910. name: "Front",
  19911. image: {
  19912. source: "./media/characters/sesh/front.svg",
  19913. extra: 3420 / 3231,
  19914. bottom: 72 / 3949.5
  19915. }
  19916. },
  19917. },
  19918. [
  19919. {
  19920. name: "Normal",
  19921. height: math.unit(4 + 11 / 12, "feet")
  19922. },
  19923. {
  19924. name: "Grown",
  19925. height: math.unit(15, "feet"),
  19926. default: true
  19927. },
  19928. {
  19929. name: "Macro",
  19930. height: math.unit(1500, "feet")
  19931. },
  19932. {
  19933. name: "Megamacro",
  19934. height: math.unit(30, "miles")
  19935. },
  19936. {
  19937. name: "Continental",
  19938. height: math.unit(3000, "miles")
  19939. },
  19940. {
  19941. name: "Gravity Mass",
  19942. height: math.unit(300000, "miles")
  19943. },
  19944. {
  19945. name: "Planet Buster",
  19946. height: math.unit(30000000, "miles")
  19947. },
  19948. {
  19949. name: "Big",
  19950. height: math.unit(3000000000, "miles")
  19951. },
  19952. ]
  19953. ))
  19954. characterMakers.push(() => makeCharacter(
  19955. { name: "Pepper" },
  19956. {
  19957. front: {
  19958. height: math.unit(9, "feet"),
  19959. weight: math.unit(350, "lb"),
  19960. name: "Front",
  19961. image: {
  19962. source: "./media/characters/pepper/front.svg",
  19963. extra: 1448/1312,
  19964. bottom: 9.4/1457.88
  19965. }
  19966. },
  19967. back: {
  19968. height: math.unit(9, "feet"),
  19969. weight: math.unit(350, "lb"),
  19970. name: "Back",
  19971. image: {
  19972. source: "./media/characters/pepper/back.svg",
  19973. extra: 1423/1300,
  19974. bottom: 4.6/1429
  19975. }
  19976. },
  19977. maw: {
  19978. height: math.unit(0.932, "feet"),
  19979. name: "Maw",
  19980. image: {
  19981. source: "./media/characters/pepper/maw.svg"
  19982. }
  19983. },
  19984. },
  19985. [
  19986. {
  19987. name: "Normal",
  19988. height: math.unit(9, "feet"),
  19989. default: true
  19990. },
  19991. ]
  19992. ))
  19993. characterMakers.push(() => makeCharacter(
  19994. { name: "Maelstrom" },
  19995. {
  19996. front: {
  19997. height: math.unit(6, "feet"),
  19998. weight: math.unit(150, "lb"),
  19999. name: "Front",
  20000. image: {
  20001. source: "./media/characters/maelstrom/front.svg",
  20002. extra: 2100/1883,
  20003. bottom: 94/2196.7
  20004. }
  20005. },
  20006. },
  20007. [
  20008. {
  20009. name: "Less Kaiju",
  20010. height: math.unit(200, "feet")
  20011. },
  20012. {
  20013. name: "Kaiju",
  20014. height: math.unit(400, "feet"),
  20015. default: true
  20016. },
  20017. {
  20018. name: "Kaiju-er",
  20019. height: math.unit(600, "feet")
  20020. },
  20021. ]
  20022. ))
  20023. characterMakers.push(() => makeCharacter(
  20024. { name: "Lexir" },
  20025. {
  20026. front: {
  20027. height: math.unit(6 + 5/12, "feet"),
  20028. weight: math.unit(180, "lb"),
  20029. name: "Front",
  20030. image: {
  20031. source: "./media/characters/lexir/front.svg",
  20032. extra: 180/172,
  20033. bottom: 12/192
  20034. }
  20035. },
  20036. back: {
  20037. height: math.unit(6 + 5/12, "feet"),
  20038. weight: math.unit(180, "lb"),
  20039. name: "Back",
  20040. image: {
  20041. source: "./media/characters/lexir/back.svg",
  20042. extra: 183.84/175.5,
  20043. bottom: 3.1/187
  20044. }
  20045. },
  20046. },
  20047. [
  20048. {
  20049. name: "Very Smal",
  20050. height: math.unit(1, "nm")
  20051. },
  20052. {
  20053. name: "Normal",
  20054. height: math.unit(6 + 5/12, "feet"),
  20055. default: true
  20056. },
  20057. {
  20058. name: "Macro",
  20059. height: math.unit(1, "mile")
  20060. },
  20061. {
  20062. name: "Megamacro",
  20063. height: math.unit(50, "miles")
  20064. },
  20065. ]
  20066. ))
  20067. characterMakers.push(() => makeCharacter(
  20068. { name: "Maksio" },
  20069. {
  20070. front: {
  20071. height: math.unit(1.5, "meters"),
  20072. weight: math.unit(100, "lb"),
  20073. name: "Front",
  20074. image: {
  20075. source: "./media/characters/maksio/front.svg",
  20076. extra: 1549/1531,
  20077. bottom: 123.7/1674.5429
  20078. }
  20079. },
  20080. back: {
  20081. height: math.unit(1.5, "meters"),
  20082. weight: math.unit(100, "lb"),
  20083. name: "Back",
  20084. image: {
  20085. source: "./media/characters/maksio/back.svg",
  20086. extra: 1541/1509,
  20087. bottom: 97/1639
  20088. }
  20089. },
  20090. hand: {
  20091. height: math.unit(0.621, "feet"),
  20092. name: "Hand",
  20093. image: {
  20094. source: "./media/characters/maksio/hand.svg"
  20095. }
  20096. },
  20097. foot: {
  20098. height: math.unit(1.611, "feet"),
  20099. name: "Foot",
  20100. image: {
  20101. source: "./media/characters/maksio/foot.svg"
  20102. }
  20103. },
  20104. },
  20105. [
  20106. {
  20107. name: "Shrunken",
  20108. height: math.unit(10, "cm")
  20109. },
  20110. {
  20111. name: "Normal",
  20112. height: math.unit(150, "cm"),
  20113. default: true
  20114. },
  20115. ]
  20116. ))
  20117. characterMakers.push(() => makeCharacter(
  20118. { name: "Erza Bear" },
  20119. {
  20120. front: {
  20121. height: math.unit(100, "feet"),
  20122. name: "Front",
  20123. image: {
  20124. source: "./media/characters/erza-bear/front.svg",
  20125. extra: 2449/2390,
  20126. bottom: 46/2494
  20127. }
  20128. },
  20129. back: {
  20130. height: math.unit(100, "feet"),
  20131. name: "Back",
  20132. image: {
  20133. source: "./media/characters/erza-bear/back.svg",
  20134. extra: 2489/2430,
  20135. bottom: 85.4/2480
  20136. }
  20137. },
  20138. tail: {
  20139. height: math.unit(42, "feet"),
  20140. name: "Tail",
  20141. image: {
  20142. source: "./media/characters/erza-bear/tail.svg"
  20143. }
  20144. },
  20145. tongue: {
  20146. height: math.unit(8, "feet"),
  20147. name: "Tongue",
  20148. image: {
  20149. source: "./media/characters/erza-bear/tongue.svg"
  20150. }
  20151. },
  20152. dick: {
  20153. height: math.unit(10.5, "feet"),
  20154. name: "Dick",
  20155. image: {
  20156. source: "./media/characters/erza-bear/dick.svg"
  20157. }
  20158. },
  20159. dickVertical: {
  20160. height: math.unit(16.9, "feet"),
  20161. name: "Dick (Vertical)",
  20162. image: {
  20163. source: "./media/characters/erza-bear/dick-vertical.svg"
  20164. }
  20165. },
  20166. },
  20167. [
  20168. {
  20169. name: "Macro",
  20170. height: math.unit(100, "feet"),
  20171. default: true
  20172. },
  20173. ]
  20174. ))
  20175. characterMakers.push(() => makeCharacter(
  20176. { name: "Violet Flor", species: "Skunk" },
  20177. {
  20178. front: {
  20179. height: math.unit(172, "cm"),
  20180. weight: math.unit(73, "kg"),
  20181. name: "Front",
  20182. image: {
  20183. source: "./media/characters/violet-flor/front.svg",
  20184. extra: 1530/1442,
  20185. bottom: 61.9/1588.8
  20186. }
  20187. },
  20188. back: {
  20189. height: math.unit(180, "cm"),
  20190. weight: math.unit(73, "kg"),
  20191. name: "Back",
  20192. image: {
  20193. source: "./media/characters/violet-flor/back.svg",
  20194. extra: 1692/1630,
  20195. bottom: 20/1712
  20196. }
  20197. },
  20198. },
  20199. [
  20200. {
  20201. name: "Normal",
  20202. height: math.unit(172, "cm"),
  20203. default: true
  20204. },
  20205. ]
  20206. ))
  20207. characterMakers.push(() => makeCharacter(
  20208. { name: "Lynn Rhea", species: "Shark" },
  20209. {
  20210. front: {
  20211. height: math.unit(6, "feet"),
  20212. weight: math.unit(220, "lb"),
  20213. name: "Front",
  20214. image: {
  20215. source: "./media/characters/lynn-rhea/front.svg",
  20216. extra: 310/273
  20217. }
  20218. },
  20219. back: {
  20220. height: math.unit(6, "feet"),
  20221. weight: math.unit(220, "lb"),
  20222. name: "Back",
  20223. image: {
  20224. source: "./media/characters/lynn-rhea/back.svg",
  20225. extra: 310/273
  20226. }
  20227. },
  20228. dicks: {
  20229. height: math.unit(0.9, "feet"),
  20230. name: "Dicks",
  20231. image: {
  20232. source: "./media/characters/lynn-rhea/dicks.svg"
  20233. }
  20234. },
  20235. slit: {
  20236. height: math.unit(0.4, "feet"),
  20237. name: "Slit",
  20238. image: {
  20239. source: "./media/characters/lynn-rhea/slit.svg"
  20240. }
  20241. },
  20242. },
  20243. [
  20244. {
  20245. name: "Micro",
  20246. height: math.unit(1, "inch")
  20247. },
  20248. {
  20249. name: "Macro",
  20250. height: math.unit(60, "feet"),
  20251. default: true
  20252. },
  20253. {
  20254. name: "Megamacro",
  20255. height: math.unit(2, "miles")
  20256. },
  20257. {
  20258. name: "Gigamacro",
  20259. height: math.unit(3, "earths")
  20260. },
  20261. {
  20262. name: "Galactic",
  20263. height: math.unit(0.8, "galaxies")
  20264. },
  20265. ]
  20266. ))
  20267. characterMakers.push(() => makeCharacter(
  20268. { name: "Valathos" },
  20269. {
  20270. front: {
  20271. height: math.unit(1600, "feet"),
  20272. weight: math.unit(85758785169, "kg"),
  20273. name: "Front",
  20274. image: {
  20275. source: "./media/characters/valathos/front.svg",
  20276. extra: 1451/1339
  20277. }
  20278. },
  20279. },
  20280. [
  20281. {
  20282. name: "Macro",
  20283. height: math.unit(1600, "feet"),
  20284. default: true
  20285. },
  20286. ]
  20287. ))
  20288. characterMakers.push(() => makeCharacter(
  20289. { name: "Azula" },
  20290. {
  20291. front: {
  20292. height: math.unit(7 + 5/12, "feet"),
  20293. weight: math.unit(300, "lb"),
  20294. name: "Front",
  20295. image: {
  20296. source: "./media/characters/azula/front.svg",
  20297. extra: 3208/2880,
  20298. bottom: 80.2/3277
  20299. }
  20300. },
  20301. back: {
  20302. height: math.unit(7 + 5/12, "feet"),
  20303. weight: math.unit(300, "lb"),
  20304. name: "Back",
  20305. image: {
  20306. source: "./media/characters/azula/back.svg",
  20307. extra: 3169/2822,
  20308. bottom: 150.6/3321
  20309. }
  20310. },
  20311. },
  20312. [
  20313. {
  20314. name: "Normal",
  20315. height: math.unit(7 + 5/12, "feet"),
  20316. default: true
  20317. },
  20318. {
  20319. name: "Big",
  20320. height: math.unit(20, "feet")
  20321. },
  20322. ]
  20323. ))
  20324. characterMakers.push(() => makeCharacter(
  20325. { name: "Rupert" },
  20326. {
  20327. front: {
  20328. height: math.unit(5 + 1/12, "feet"),
  20329. weight: math.unit(110, "lb"),
  20330. name: "Front",
  20331. image: {
  20332. source: "./media/characters/rupert/front.svg",
  20333. extra: 1549/1495,
  20334. bottom: 54.2/1604.4
  20335. }
  20336. },
  20337. },
  20338. [
  20339. {
  20340. name: "Normal",
  20341. height: math.unit(5 + 1/12, "feet"),
  20342. default: true
  20343. },
  20344. ]
  20345. ))
  20346. characterMakers.push(() => makeCharacter(
  20347. { name: "Sheera Castellar" },
  20348. {
  20349. front: {
  20350. height: math.unit(8 + 4/12, "feet"),
  20351. weight: math.unit(350, "lb"),
  20352. name: "Front",
  20353. image: {
  20354. source: "./media/characters/sheera-castellar/front.svg",
  20355. extra: 1957/1894,
  20356. bottom: 26.97/1975.017
  20357. }
  20358. },
  20359. side: {
  20360. height: math.unit(8 + 4/12, "feet"),
  20361. weight: math.unit(350, "lb"),
  20362. name: "Side",
  20363. image: {
  20364. source: "./media/characters/sheera-castellar/side.svg",
  20365. extra: 1957/1894
  20366. }
  20367. },
  20368. back: {
  20369. height: math.unit(8 + 4/12, "feet"),
  20370. weight: math.unit(350, "lb"),
  20371. name: "Back",
  20372. image: {
  20373. source: "./media/characters/sheera-castellar/back.svg",
  20374. extra: 1957/1894
  20375. }
  20376. },
  20377. angled: {
  20378. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  20379. weight: math.unit(350, "lb"),
  20380. name: "Angled",
  20381. image: {
  20382. source: "./media/characters/sheera-castellar/angled.svg",
  20383. extra: 1807/1707,
  20384. bottom: 68/1875
  20385. }
  20386. },
  20387. genitals: {
  20388. height: math.unit(2.2, "feet"),
  20389. name: "Genitals",
  20390. image: {
  20391. source: "./media/characters/sheera-castellar/genitals.svg"
  20392. }
  20393. },
  20394. },
  20395. [
  20396. {
  20397. name: "Normal",
  20398. height: math.unit(8 + 4/12, "feet")
  20399. },
  20400. {
  20401. name: "Macro",
  20402. height: math.unit(150, "feet"),
  20403. default: true
  20404. },
  20405. {
  20406. name: "Macro+",
  20407. height: math.unit(800, "feet")
  20408. },
  20409. ]
  20410. ))
  20411. characterMakers.push(() => makeCharacter(
  20412. { name: "Jaipur", species: "Black Panther" },
  20413. {
  20414. front: {
  20415. height: math.unit(6, "feet"),
  20416. weight: math.unit(150, "lb"),
  20417. name: "Front",
  20418. image: {
  20419. source: "./media/characters/jaipur/front.svg",
  20420. extra: 3860/3731,
  20421. bottom: 287/4140
  20422. }
  20423. },
  20424. back: {
  20425. height: math.unit(6, "feet"),
  20426. weight: math.unit(150, "lb"),
  20427. name: "Back",
  20428. image: {
  20429. source: "./media/characters/jaipur/back.svg",
  20430. extra: 4060/3930,
  20431. bottom: 151/4200
  20432. }
  20433. },
  20434. },
  20435. [
  20436. {
  20437. name: "Normal",
  20438. height: math.unit(1.85, "meters"),
  20439. default: true
  20440. },
  20441. {
  20442. name: "Macro",
  20443. height: math.unit(150, "meters")
  20444. },
  20445. {
  20446. name: "Macro+",
  20447. height: math.unit(0.5, "miles")
  20448. },
  20449. {
  20450. name: "Macro++",
  20451. height: math.unit(2.5, "miles")
  20452. },
  20453. {
  20454. name: "Macro+++",
  20455. height: math.unit(12, "miles")
  20456. },
  20457. {
  20458. name: "Macro++++",
  20459. height: math.unit(120, "miles")
  20460. },
  20461. {
  20462. name: "Macro+++++",
  20463. height: math.unit(1200, "miles")
  20464. },
  20465. ]
  20466. ))
  20467. characterMakers.push(() => makeCharacter(
  20468. { name: "Sheila (Wolf)" },
  20469. {
  20470. front: {
  20471. height: math.unit(6, "feet"),
  20472. weight: math.unit(150, "lb"),
  20473. name: "Front",
  20474. image: {
  20475. source: "./media/characters/sheila-wolf/front.svg",
  20476. extra: 1931/1808,
  20477. bottom: 29.5/1960
  20478. }
  20479. },
  20480. dick: {
  20481. height: math.unit(1.464, "feet"),
  20482. name: "Dick",
  20483. image: {
  20484. source: "./media/characters/sheila-wolf/dick.svg"
  20485. }
  20486. },
  20487. muzzle: {
  20488. height: math.unit(0.513, "feet"),
  20489. name: "Muzzle",
  20490. image: {
  20491. source: "./media/characters/sheila-wolf/muzzle.svg"
  20492. }
  20493. },
  20494. },
  20495. [
  20496. {
  20497. name: "Macro",
  20498. height: math.unit(70, "feet"),
  20499. default: true
  20500. },
  20501. ]
  20502. ))
  20503. characterMakers.push(() => makeCharacter(
  20504. { name: "Almor", species: "Dragon" },
  20505. {
  20506. front: {
  20507. height: math.unit(32, "meters"),
  20508. weight: math.unit(300000, "kg"),
  20509. name: "Front",
  20510. image: {
  20511. source: "./media/characters/almor/front.svg",
  20512. extra: 1408/1322,
  20513. bottom: 94.6/1506.5
  20514. }
  20515. },
  20516. },
  20517. [
  20518. {
  20519. name: "Macro",
  20520. height: math.unit(32, "meters"),
  20521. default: true
  20522. },
  20523. ]
  20524. ))
  20525. characterMakers.push(() => makeCharacter(
  20526. { name: "Silver" },
  20527. {
  20528. front: {
  20529. height: math.unit(7, "feet"),
  20530. weight: math.unit(200, "lb"),
  20531. name: "Front",
  20532. image: {
  20533. source: "./media/characters/silver/front.svg",
  20534. extra: 472.1/450.5,
  20535. bottom: 26.5/499.424
  20536. }
  20537. },
  20538. },
  20539. [
  20540. {
  20541. name: "Normal",
  20542. height: math.unit(7, "feet"),
  20543. default: true
  20544. },
  20545. {
  20546. name: "Macro",
  20547. height: math.unit(800, "feet")
  20548. },
  20549. {
  20550. name: "Megamacro",
  20551. height: math.unit(250, "miles")
  20552. },
  20553. ]
  20554. ))
  20555. characterMakers.push(() => makeCharacter(
  20556. { name: "Pliskin" },
  20557. {
  20558. front: {
  20559. height: math.unit(6, "feet"),
  20560. weight: math.unit(150, "lb"),
  20561. name: "Front",
  20562. image: {
  20563. source: "./media/characters/pliskin/front.svg",
  20564. extra: 1469/1359,
  20565. bottom: 70/1540
  20566. }
  20567. },
  20568. },
  20569. [
  20570. {
  20571. name: "Micro",
  20572. height: math.unit(3, "inches")
  20573. },
  20574. {
  20575. name: "Normal",
  20576. height: math.unit(5 + 11/12, "feet"),
  20577. default: true
  20578. },
  20579. {
  20580. name: "Macro",
  20581. height: math.unit(120, "feet")
  20582. },
  20583. ]
  20584. ))
  20585. characterMakers.push(() => makeCharacter(
  20586. { name: "Sammy" },
  20587. {
  20588. front: {
  20589. height: math.unit(6, "feet"),
  20590. weight: math.unit(150, "lb"),
  20591. name: "Front",
  20592. image: {
  20593. source: "./media/characters/sammy/front.svg",
  20594. extra: 1193/1089,
  20595. bottom: 30.5/1226
  20596. }
  20597. },
  20598. },
  20599. [
  20600. {
  20601. name: "Macro",
  20602. height: math.unit(1700, "feet"),
  20603. default: true
  20604. },
  20605. {
  20606. name: "Examacro",
  20607. height: math.unit(2.5e9, "lightyears")
  20608. },
  20609. ]
  20610. ))
  20611. characterMakers.push(() => makeCharacter(
  20612. { name: "Kuru", species: "Umbra" },
  20613. {
  20614. front: {
  20615. height: math.unit(21, "meters"),
  20616. weight: math.unit(12, "tonnes"),
  20617. name: "Front",
  20618. image: {
  20619. source: "./media/characters/kuru/front.svg",
  20620. extra: 4301/3785,
  20621. bottom: 371.3/4691
  20622. }
  20623. },
  20624. },
  20625. [
  20626. {
  20627. name: "Macro",
  20628. height: math.unit(21, "meters"),
  20629. default: true
  20630. },
  20631. ]
  20632. ))
  20633. characterMakers.push(() => makeCharacter(
  20634. { name: "Rakka", species: "Umbra" },
  20635. {
  20636. front: {
  20637. height: math.unit(23, "meters"),
  20638. weight: math.unit(12.2, "tonnes"),
  20639. name: "Front",
  20640. image: {
  20641. source: "./media/characters/rakka/front.svg",
  20642. extra: 4670/4169,
  20643. bottom: 301/4968.7
  20644. }
  20645. },
  20646. },
  20647. [
  20648. {
  20649. name: "Macro",
  20650. height: math.unit(23, "meters"),
  20651. default: true
  20652. },
  20653. ]
  20654. ))
  20655. characterMakers.push(() => makeCharacter(
  20656. { name: "Rhys (Feline)" },
  20657. {
  20658. front: {
  20659. height: math.unit(6, "feet"),
  20660. weight: math.unit(150, "lb"),
  20661. name: "Front",
  20662. image: {
  20663. source: "./media/characters/rhys-feline/front.svg",
  20664. extra: 2488/2308,
  20665. bottom: 35.67/2519.19
  20666. }
  20667. },
  20668. },
  20669. [
  20670. {
  20671. name: "Really Small",
  20672. height: math.unit(1, "nm")
  20673. },
  20674. {
  20675. name: "Micro",
  20676. height: math.unit(4, "inches")
  20677. },
  20678. {
  20679. name: "Normal",
  20680. height: math.unit(4 + 10/12, "feet"),
  20681. default: true
  20682. },
  20683. {
  20684. name: "Macro",
  20685. height: math.unit(100, "feet")
  20686. },
  20687. {
  20688. name: "Megamacto",
  20689. height: math.unit(50, "miles")
  20690. },
  20691. ]
  20692. ))
  20693. characterMakers.push(() => makeCharacter(
  20694. { name: "Alydar", species: "Raven/Snow Leopard" },
  20695. {
  20696. side: {
  20697. height: math.unit(30, "feet"),
  20698. weight: math.unit(35000, "kg"),
  20699. name: "Side",
  20700. image: {
  20701. source: "./media/characters/alydar/side.svg",
  20702. extra: 234/222,
  20703. bottom: 6.5/241
  20704. }
  20705. },
  20706. front: {
  20707. height: math.unit(30, "feet"),
  20708. weight: math.unit(35000, "kg"),
  20709. name: "Front",
  20710. image: {
  20711. source: "./media/characters/alydar/front.svg",
  20712. extra: 223.37/210.2,
  20713. bottom: 22.3/246.76
  20714. }
  20715. },
  20716. top: {
  20717. height: math.unit(64.54, "feet"),
  20718. weight: math.unit(35000, "kg"),
  20719. name: "Top",
  20720. image: {
  20721. source: "./media/characters/alydar/top.svg"
  20722. }
  20723. },
  20724. anthro: {
  20725. height: math.unit(30, "feet"),
  20726. weight: math.unit(9000, "kg"),
  20727. name: "Anthro",
  20728. image: {
  20729. source: "./media/characters/alydar/anthro.svg",
  20730. extra: 432/421,
  20731. bottom: 7.18/440
  20732. }
  20733. },
  20734. maw: {
  20735. height: math.unit(11.693, "feet"),
  20736. name: "Maw",
  20737. image: {
  20738. source: "./media/characters/alydar/maw.svg"
  20739. }
  20740. },
  20741. head: {
  20742. height: math.unit(11.693, "feet"),
  20743. name: "Head",
  20744. image: {
  20745. source: "./media/characters/alydar/head.svg"
  20746. }
  20747. },
  20748. headAlt: {
  20749. height: math.unit(12.861, "feet"),
  20750. name: "Head (Alt)",
  20751. image: {
  20752. source: "./media/characters/alydar/head-alt.svg"
  20753. }
  20754. },
  20755. wing: {
  20756. height: math.unit(20.712, "feet"),
  20757. name: "Wing",
  20758. image: {
  20759. source: "./media/characters/alydar/wing.svg"
  20760. }
  20761. },
  20762. wingFeather: {
  20763. height: math.unit(9.662, "feet"),
  20764. name: "Wing Feather",
  20765. image: {
  20766. source: "./media/characters/alydar/wing-feather.svg"
  20767. }
  20768. },
  20769. countourFeather: {
  20770. height: math.unit(4.154, "feet"),
  20771. name: "Contour Feather",
  20772. image: {
  20773. source: "./media/characters/alydar/contour-feather.svg"
  20774. }
  20775. },
  20776. },
  20777. [
  20778. {
  20779. name: "Diplomatic",
  20780. height: math.unit(13, "feet"),
  20781. default: true
  20782. },
  20783. {
  20784. name: "Small",
  20785. height: math.unit(30, "feet")
  20786. },
  20787. {
  20788. name: "Normal",
  20789. height: math.unit(95, "feet"),
  20790. default: true
  20791. },
  20792. {
  20793. name: "Large",
  20794. height: math.unit(285, "feet")
  20795. },
  20796. {
  20797. name: "Incomprehensible",
  20798. height: math.unit(450, "megameters")
  20799. },
  20800. ]
  20801. ))
  20802. characterMakers.push(() => makeCharacter(
  20803. { name: "Selicia" },
  20804. {
  20805. side: {
  20806. height: math.unit(11, "feet"),
  20807. weight: math.unit(1750, "kg"),
  20808. name: "Side",
  20809. image: {
  20810. source: "./media/characters/selicia/side.svg",
  20811. extra: 440/396,
  20812. bottom: 24.8/465.979
  20813. }
  20814. },
  20815. maw: {
  20816. height: math.unit(4.665, "feet"),
  20817. name: "Maw",
  20818. image: {
  20819. source: "./media/characters/selicia/maw.svg"
  20820. }
  20821. },
  20822. },
  20823. [
  20824. {
  20825. name: "Normal",
  20826. height: math.unit(11, "feet"),
  20827. default: true
  20828. },
  20829. ]
  20830. ))
  20831. characterMakers.push(() => makeCharacter(
  20832. { name: "Layla" },
  20833. {
  20834. side: {
  20835. height: math.unit(2 + 6 /12, "feet"),
  20836. weight: math.unit(30, "lb"),
  20837. name: "Side",
  20838. image: {
  20839. source: "./media/characters/layla/side.svg",
  20840. extra: 244/188,
  20841. bottom: 18.2/262.1
  20842. }
  20843. },
  20844. back: {
  20845. height: math.unit(2 + 6 /12, "feet"),
  20846. weight: math.unit(30, "lb"),
  20847. name: "Back",
  20848. image: {
  20849. source: "./media/characters/layla/back.svg",
  20850. extra: 308/241.5,
  20851. bottom: 8.9/316.8
  20852. }
  20853. },
  20854. cumming: {
  20855. height: math.unit(2 + 6 /12, "feet"),
  20856. weight: math.unit(30, "lb"),
  20857. name: "Cumming",
  20858. image: {
  20859. source: "./media/characters/layla/cumming.svg",
  20860. extra: 342/279,
  20861. bottom: 595/938
  20862. }
  20863. },
  20864. dickFlaccid: {
  20865. height: math.unit(2.595, "feet"),
  20866. name: "Flaccid Genitals",
  20867. image: {
  20868. source: "./media/characters/layla/dick-flaccid.svg"
  20869. }
  20870. },
  20871. dickErect: {
  20872. height: math.unit(2.359, "feet"),
  20873. name: "Erect Genitals",
  20874. image: {
  20875. source: "./media/characters/layla/dick-erect.svg"
  20876. }
  20877. },
  20878. },
  20879. [
  20880. {
  20881. name: "Micro",
  20882. height: math.unit(1, "inch")
  20883. },
  20884. {
  20885. name: "Small",
  20886. height: math.unit(1, "foot")
  20887. },
  20888. {
  20889. name: "Normal",
  20890. height: math.unit(2 + 6/12, "feet"),
  20891. default: true
  20892. },
  20893. {
  20894. name: "Macro",
  20895. height: math.unit(200, "feet")
  20896. },
  20897. {
  20898. name: "Megamacro",
  20899. height: math.unit(1000, "miles")
  20900. },
  20901. {
  20902. name: "Planetary",
  20903. height: math.unit(8000, "miles")
  20904. },
  20905. {
  20906. name: "True Layla",
  20907. height: math.unit(200000*7, "multiverses")
  20908. },
  20909. ]
  20910. ))
  20911. characterMakers.push(() => makeCharacter(
  20912. { name: "Knox" },
  20913. {
  20914. back: {
  20915. height: math.unit(10.5, "feet"),
  20916. weight: math.unit(800, "lb"),
  20917. name: "Back",
  20918. image: {
  20919. source: "./media/characters/knox/back.svg",
  20920. extra: 1486/1089,
  20921. bottom: 107/1601.4
  20922. }
  20923. },
  20924. side: {
  20925. height: math.unit(10.5, "feet"),
  20926. weight: math.unit(800, "lb"),
  20927. name: "Side",
  20928. image: {
  20929. source: "./media/characters/knox/side.svg",
  20930. extra: 244/218,
  20931. bottom: 14/260
  20932. }
  20933. },
  20934. },
  20935. [
  20936. {
  20937. name: "Compact",
  20938. height: math.unit(10.5, "feet"),
  20939. default: true
  20940. },
  20941. {
  20942. name: "Dynamax",
  20943. height: math.unit(210, "feet")
  20944. },
  20945. {
  20946. name: "Full Macro",
  20947. height: math.unit(850, "feet")
  20948. },
  20949. ]
  20950. ))
  20951. characterMakers.push(() => makeCharacter(
  20952. { name: "Shin (Pikachu)" },
  20953. {
  20954. front: {
  20955. height: math.unit(6, "feet"),
  20956. weight: math.unit(152, "lb"),
  20957. name: "Front",
  20958. image: {
  20959. source: "./media/characters/shin-pikachu/front.svg",
  20960. extra: 1574/1480,
  20961. bottom: 53.3/1626
  20962. }
  20963. },
  20964. hand: {
  20965. height: math.unit(1.055, "feet"),
  20966. name: "Hand",
  20967. image: {
  20968. source: "./media/characters/shin-pikachu/hand.svg"
  20969. }
  20970. },
  20971. foot: {
  20972. height: math.unit(1.1, "feet"),
  20973. name: "Foot",
  20974. image: {
  20975. source: "./media/characters/shin-pikachu/foot.svg"
  20976. }
  20977. },
  20978. collar: {
  20979. height: math.unit(0.386, "feet"),
  20980. name: "Collar",
  20981. image: {
  20982. source: "./media/characters/shin-pikachu/collar.svg"
  20983. }
  20984. },
  20985. },
  20986. [
  20987. {
  20988. name: "Smallest",
  20989. height: math.unit(0.5, "inches")
  20990. },
  20991. {
  20992. name: "Micro",
  20993. height: math.unit(6, "inches")
  20994. },
  20995. {
  20996. name: "Normal",
  20997. height: math.unit(6, "feet"),
  20998. default: true
  20999. },
  21000. {
  21001. name: "Macro",
  21002. height: math.unit(150, "feet")
  21003. },
  21004. ]
  21005. ))
  21006. characterMakers.push(() => makeCharacter(
  21007. { name: "Kayda" },
  21008. {
  21009. front: {
  21010. height: math.unit(28, "feet"),
  21011. weight: math.unit(10500, "lb"),
  21012. name: "Front",
  21013. image: {
  21014. source: "./media/characters/kayda/front.svg",
  21015. extra: 1536/1428,
  21016. bottom: 68.7/1603
  21017. }
  21018. },
  21019. back: {
  21020. height: math.unit(28, "feet"),
  21021. weight: math.unit(10500, "lb"),
  21022. name: "Back",
  21023. image: {
  21024. source: "./media/characters/kayda/back.svg",
  21025. extra: 1557/1464,
  21026. bottom: 39.5/1597.49
  21027. }
  21028. },
  21029. dick: {
  21030. height: math.unit(3.858, "feet"),
  21031. name: "Dick",
  21032. image: {
  21033. source: "./media/characters/kayda/dick.svg"
  21034. }
  21035. },
  21036. },
  21037. [
  21038. {
  21039. name: "Macro",
  21040. height: math.unit(28, "feet"),
  21041. default: true
  21042. },
  21043. ]
  21044. ))
  21045. characterMakers.push(() => makeCharacter(
  21046. { name: "Brian", species: "Barbary Lion" },
  21047. {
  21048. front: {
  21049. height: math.unit(10 + 11/12, "feet"),
  21050. weight: math.unit(1400, "lb"),
  21051. name: "Front",
  21052. image: {
  21053. source: "./media/characters/brian/front.svg",
  21054. extra: 737/692,
  21055. bottom: 55.4/785
  21056. }
  21057. },
  21058. },
  21059. [
  21060. {
  21061. name: "Normal",
  21062. height: math.unit(10 + 11/12, "feet"),
  21063. default: true
  21064. },
  21065. ]
  21066. ))
  21067. characterMakers.push(() => makeCharacter(
  21068. { name: "Khemri", species: "Jackal" },
  21069. {
  21070. front: {
  21071. height: math.unit(5 + 8/12, "feet"),
  21072. weight: math.unit(140, "lb"),
  21073. name: "Front",
  21074. image: {
  21075. source: "./media/characters/khemri/front.svg",
  21076. extra: 4780/4059,
  21077. bottom: 80.1/4859.25
  21078. }
  21079. },
  21080. },
  21081. [
  21082. {
  21083. name: "Micro",
  21084. height: math.unit(6, "inches")
  21085. },
  21086. {
  21087. name: "Normal",
  21088. height: math.unit(5 + 8/12, "feet"),
  21089. default: true
  21090. },
  21091. ]
  21092. ))
  21093. characterMakers.push(() => makeCharacter(
  21094. { name: "Felix Braveheart" },
  21095. {
  21096. front: {
  21097. height: math.unit(13, "feet"),
  21098. weight: math.unit(1700, "lb"),
  21099. name: "Front",
  21100. image: {
  21101. source: "./media/characters/felix-braveheart/front.svg",
  21102. extra: 1222/1157,
  21103. bottom: 53.2/1280
  21104. }
  21105. },
  21106. back: {
  21107. height: math.unit(13, "feet"),
  21108. weight: math.unit(1700, "lb"),
  21109. name: "Back",
  21110. image: {
  21111. source: "./media/characters/felix-braveheart/back.svg",
  21112. extra: 1277/1203,
  21113. bottom: 50.2/1327
  21114. }
  21115. },
  21116. feral: {
  21117. height: math.unit(6, "feet"),
  21118. weight: math.unit(400, "lb"),
  21119. name: "Feral",
  21120. image: {
  21121. source: "./media/characters/felix-braveheart/feral.svg",
  21122. extra: 682/625,
  21123. bottom: 6.9/688
  21124. }
  21125. },
  21126. },
  21127. [
  21128. {
  21129. name: "Normal",
  21130. height: math.unit(13, "feet"),
  21131. default: true
  21132. },
  21133. ]
  21134. ))
  21135. characterMakers.push(() => makeCharacter(
  21136. { name: "Shadow Blade" },
  21137. {
  21138. side: {
  21139. height: math.unit(5 + 11/12, "feet"),
  21140. weight: math.unit(1400, "lb"),
  21141. name: "Side",
  21142. image: {
  21143. source: "./media/characters/shadow-blade/side.svg",
  21144. extra: 1726/1267,
  21145. bottom: 58.4/1785
  21146. }
  21147. },
  21148. },
  21149. [
  21150. {
  21151. name: "Normal",
  21152. height: math.unit(5 + 11/12, "feet"),
  21153. default: true
  21154. },
  21155. ]
  21156. ))
  21157. characterMakers.push(() => makeCharacter(
  21158. { name: "Karla Halldor" },
  21159. {
  21160. front: {
  21161. height: math.unit(1 + 6/12, "feet"),
  21162. weight: math.unit(25, "lb"),
  21163. name: "Front",
  21164. image: {
  21165. source: "./media/characters/karla-halldor/front.svg",
  21166. extra: 1459/1383,
  21167. bottom: 12/1472
  21168. }
  21169. },
  21170. },
  21171. [
  21172. {
  21173. name: "Normal",
  21174. height: math.unit(1 + 6/12, "feet"),
  21175. default: true
  21176. },
  21177. ]
  21178. ))
  21179. characterMakers.push(() => makeCharacter(
  21180. { name: "Ariam" },
  21181. {
  21182. front: {
  21183. height: math.unit(6 + 2/12, "feet"),
  21184. weight: math.unit(160, "lb"),
  21185. name: "Front",
  21186. image: {
  21187. source: "./media/characters/ariam/front.svg",
  21188. extra: 714/617,
  21189. bottom: 23.4/737,
  21190. }
  21191. },
  21192. squatting: {
  21193. height: math.unit(4.1, "feet"),
  21194. weight: math.unit(160, "lb"),
  21195. name: "Squatting",
  21196. image: {
  21197. source: "./media/characters/ariam/squatting.svg",
  21198. extra: 2617/2112,
  21199. bottom: 61.2/2681,
  21200. }
  21201. },
  21202. },
  21203. [
  21204. {
  21205. name: "Normal",
  21206. height: math.unit(6 + 2/12, "feet"),
  21207. default: true
  21208. },
  21209. {
  21210. name: "Normal+",
  21211. height: math.unit(4, "meters")
  21212. },
  21213. {
  21214. name: "Macro",
  21215. height: math.unit(50, "meters")
  21216. },
  21217. {
  21218. name: "Macro+",
  21219. height: math.unit(100, "meters")
  21220. },
  21221. {
  21222. name: "Megamacro",
  21223. height: math.unit(20, "km")
  21224. },
  21225. ]
  21226. ))
  21227. characterMakers.push(() => makeCharacter(
  21228. { name: "Qodri Class-of-'Fortwelve-Six" },
  21229. {
  21230. front: {
  21231. height: math.unit(1.67, "meters"),
  21232. weight: math.unit(140, "lb"),
  21233. name: "Front",
  21234. image: {
  21235. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  21236. extra: 438/410,
  21237. bottom: 0.75/439
  21238. }
  21239. },
  21240. },
  21241. [
  21242. {
  21243. name: "Shrunken",
  21244. height: math.unit(7.6, "cm")
  21245. },
  21246. {
  21247. name: "Human Scale",
  21248. height: math.unit(1.67, "meters")
  21249. },
  21250. {
  21251. name: "Wolxi Scale",
  21252. height: math.unit(36.7, "meters"),
  21253. default: true
  21254. },
  21255. ]
  21256. ))
  21257. characterMakers.push(() => makeCharacter(
  21258. { name: "Izue Two-Mothers" },
  21259. {
  21260. front: {
  21261. height: math.unit(1.73, "meters"),
  21262. weight: math.unit(240, "lb"),
  21263. name: "Front",
  21264. image: {
  21265. source: "./media/characters/izue-two-mothers/front.svg",
  21266. extra: 469/437,
  21267. bottom: 1.24/470.6
  21268. }
  21269. },
  21270. },
  21271. [
  21272. {
  21273. name: "Shrunken",
  21274. height: math.unit(7.86, "cm")
  21275. },
  21276. {
  21277. name: "Human Scale",
  21278. height: math.unit(1.73, "meters")
  21279. },
  21280. {
  21281. name: "Wolxi Scale",
  21282. height: math.unit(38, "meters"),
  21283. default: true
  21284. },
  21285. ]
  21286. ))
  21287. characterMakers.push(() => makeCharacter(
  21288. { name: "Teeku Love-Shack" },
  21289. {
  21290. front: {
  21291. height: math.unit(1.55, "meters"),
  21292. weight: math.unit(120, "lb"),
  21293. name: "Front",
  21294. image: {
  21295. source: "./media/characters/teeku-love-shack/front.svg",
  21296. extra: 387/362,
  21297. bottom: 1.51/388
  21298. }
  21299. },
  21300. },
  21301. [
  21302. {
  21303. name: "Shrunken",
  21304. height: math.unit(7, "cm")
  21305. },
  21306. {
  21307. name: "Human Scale",
  21308. height: math.unit(1.55, "meters")
  21309. },
  21310. {
  21311. name: "Wolxi Scale",
  21312. height: math.unit(34.1, "meters"),
  21313. default: true
  21314. },
  21315. ]
  21316. ))
  21317. characterMakers.push(() => makeCharacter(
  21318. { name: "Dejma the Red" },
  21319. {
  21320. front: {
  21321. height: math.unit(1.83, "meters"),
  21322. weight: math.unit(135, "lb"),
  21323. name: "Front",
  21324. image: {
  21325. source: "./media/characters/dejma-the-red/front.svg",
  21326. extra: 480/458,
  21327. bottom: 1.8/482
  21328. }
  21329. },
  21330. },
  21331. [
  21332. {
  21333. name: "Shrunken",
  21334. height: math.unit(8.3, "cm")
  21335. },
  21336. {
  21337. name: "Human Scale",
  21338. height: math.unit(1.83, "meters")
  21339. },
  21340. {
  21341. name: "Wolxi Scale",
  21342. height: math.unit(40, "meters"),
  21343. default: true
  21344. },
  21345. ]
  21346. ))
  21347. characterMakers.push(() => makeCharacter(
  21348. { name: "Aki" },
  21349. {
  21350. front: {
  21351. height: math.unit(1.78, "meters"),
  21352. weight: math.unit(65, "kg"),
  21353. name: "Front",
  21354. image: {
  21355. source: "./media/characters/aki/front.svg",
  21356. extra: 452/415
  21357. }
  21358. },
  21359. frontNsfw: {
  21360. height: math.unit(1.78, "meters"),
  21361. weight: math.unit(65, "kg"),
  21362. name: "Front (NSFW)",
  21363. image: {
  21364. source: "./media/characters/aki/front-nsfw.svg",
  21365. extra: 452/415
  21366. }
  21367. },
  21368. back: {
  21369. height: math.unit(1.78, "meters"),
  21370. weight: math.unit(65, "kg"),
  21371. name: "Back",
  21372. image: {
  21373. source: "./media/characters/aki/back.svg",
  21374. extra: 452/415
  21375. }
  21376. },
  21377. rump: {
  21378. height: math.unit(2.05, "feet"),
  21379. name: "Rump",
  21380. image: {
  21381. source: "./media/characters/aki/rump.svg"
  21382. }
  21383. },
  21384. dick: {
  21385. height: math.unit(0.95, "feet"),
  21386. name: "Dick",
  21387. image: {
  21388. source: "./media/characters/aki/dick.svg"
  21389. }
  21390. },
  21391. },
  21392. [
  21393. {
  21394. name: "Micro",
  21395. height: math.unit(15, "cm")
  21396. },
  21397. {
  21398. name: "Normal",
  21399. height: math.unit(178, "cm"),
  21400. default: true
  21401. },
  21402. {
  21403. name: "Macro",
  21404. height: math.unit(214, "m")
  21405. },
  21406. {
  21407. name: "Macro+",
  21408. height: math.unit(534, "m")
  21409. },
  21410. ]
  21411. ))
  21412. characterMakers.push(() => makeCharacter(
  21413. { name: "Ari" },
  21414. {
  21415. front: {
  21416. height: math.unit(5 + 5/12, "feet"),
  21417. weight: math.unit(120, "lb"),
  21418. name: "Front",
  21419. image: {
  21420. source: "./media/characters/ari/front.svg",
  21421. extra: 714.5/682,
  21422. bottom: 8/722.5
  21423. }
  21424. },
  21425. },
  21426. [
  21427. {
  21428. name: "Normal",
  21429. height: math.unit(5 + 5/12, "feet")
  21430. },
  21431. {
  21432. name: "Macro",
  21433. height: math.unit(100, "feet"),
  21434. default: true
  21435. },
  21436. {
  21437. name: "Megamacro",
  21438. height: math.unit(100, "miles")
  21439. },
  21440. {
  21441. name: "Gigamacro",
  21442. height: math.unit(80000, "miles")
  21443. },
  21444. ]
  21445. ))
  21446. characterMakers.push(() => makeCharacter(
  21447. { name: "Bolt" },
  21448. {
  21449. side: {
  21450. height: math.unit(9, "feet"),
  21451. weight: math.unit(400, "kg"),
  21452. name: "Side",
  21453. image: {
  21454. source: "./media/characters/bolt/side.svg",
  21455. extra: 1126/896,
  21456. bottom: 60/1187.3,
  21457. }
  21458. },
  21459. },
  21460. [
  21461. {
  21462. name: "Micro",
  21463. height: math.unit(5, "inches")
  21464. },
  21465. {
  21466. name: "Normal",
  21467. height: math.unit(9, "feet"),
  21468. default: true
  21469. },
  21470. {
  21471. name: "Macro",
  21472. height: math.unit(700, "feet")
  21473. },
  21474. {
  21475. name: "Max Size",
  21476. height: math.unit(1.52e22, "yottameters")
  21477. },
  21478. ]
  21479. ))
  21480. characterMakers.push(() => makeCharacter(
  21481. { name: "Draekon Sylviar", species: "Dra'gal" },
  21482. {
  21483. front: {
  21484. height: math.unit(4.53, "meters"),
  21485. weight: math.unit(3, "tons"),
  21486. name: "Front",
  21487. image: {
  21488. source: "./media/characters/draekon-sylviar/front.svg",
  21489. extra: 1228/1068,
  21490. bottom: 41/1270
  21491. }
  21492. },
  21493. tail: {
  21494. height: math.unit(1.772, "meter"),
  21495. name: "Tail",
  21496. image: {
  21497. source: "./media/characters/draekon-sylviar/tail.svg"
  21498. }
  21499. },
  21500. head: {
  21501. height: math.unit(1.331, "meter"),
  21502. name: "Head",
  21503. image: {
  21504. source: "./media/characters/draekon-sylviar/head.svg"
  21505. }
  21506. },
  21507. hand: {
  21508. height: math.unit(0.564, "meter"),
  21509. name: "Hand",
  21510. image: {
  21511. source: "./media/characters/draekon-sylviar/hand.svg"
  21512. }
  21513. },
  21514. foot: {
  21515. height: math.unit(0.621, "meter"),
  21516. name: "Foot",
  21517. image: {
  21518. source: "./media/characters/draekon-sylviar/foot.svg",
  21519. bottom: 32/324
  21520. }
  21521. },
  21522. dick: {
  21523. height: math.unit(61, "cm"),
  21524. name: "Dick",
  21525. image: {
  21526. source: "./media/characters/draekon-sylviar/dick.svg"
  21527. }
  21528. },
  21529. dickseparated: {
  21530. height: math.unit(61, "cm"),
  21531. name: "Dick-separated",
  21532. image: {
  21533. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  21534. }
  21535. },
  21536. },
  21537. [
  21538. {
  21539. name: "Small",
  21540. height: math.unit(4.53/2, "meters"),
  21541. default: true
  21542. },
  21543. {
  21544. name: "Normal",
  21545. height: math.unit(4.53, "meters"),
  21546. default: true
  21547. },
  21548. {
  21549. name: "Large",
  21550. height: math.unit(4.53*2, "meters"),
  21551. },
  21552. ]
  21553. ))
  21554. characterMakers.push(() => makeCharacter(
  21555. { name: "Brawler", species: "German Shepherd" },
  21556. {
  21557. front: {
  21558. height: math.unit(6 + 2/12, "feet"),
  21559. weight: math.unit(180, "lb"),
  21560. name: "Front",
  21561. image: {
  21562. source: "./media/characters/brawler/front.svg",
  21563. extra: 3301/3027,
  21564. bottom: 138/3439
  21565. }
  21566. },
  21567. },
  21568. [
  21569. {
  21570. name: "Normal",
  21571. height: math.unit(6 + 2/12, "feet"),
  21572. default: true
  21573. },
  21574. ]
  21575. ))
  21576. characterMakers.push(() => makeCharacter(
  21577. { name: "Alex", species: "Bayleef" },
  21578. {
  21579. front: {
  21580. height: math.unit(11, "feet"),
  21581. weight: math.unit(1000, "lb"),
  21582. name: "Front",
  21583. image: {
  21584. source: "./media/characters/alex/front.svg",
  21585. bottom: 44.5/620
  21586. }
  21587. },
  21588. },
  21589. [
  21590. {
  21591. name: "Micro",
  21592. height: math.unit(5, "inches")
  21593. },
  21594. {
  21595. name: "Normal",
  21596. height: math.unit(11, "feet"),
  21597. default: true
  21598. },
  21599. {
  21600. name: "Macro",
  21601. height: math.unit(9.5e9, "feet")
  21602. },
  21603. {
  21604. name: "Max Size",
  21605. height: math.unit(1.4e283, "yottameters")
  21606. },
  21607. ]
  21608. ))
  21609. characterMakers.push(() => makeCharacter(
  21610. { name: "Zenari" },
  21611. {
  21612. female: {
  21613. height: math.unit(29.9, "m"),
  21614. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  21615. name: "Female",
  21616. image: {
  21617. source: "./media/characters/zenari/female.svg",
  21618. extra: 3281.6/3217,
  21619. bottom: 72.2/3353
  21620. }
  21621. },
  21622. male: {
  21623. height: math.unit(27.7, "m"),
  21624. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  21625. name: "Male",
  21626. image: {
  21627. source: "./media/characters/zenari/male.svg",
  21628. extra: 3008/2991,
  21629. bottom: 54.6/3069
  21630. }
  21631. },
  21632. },
  21633. [
  21634. {
  21635. name: "Macro",
  21636. height: math.unit(29.7, "meters"),
  21637. default: true
  21638. },
  21639. ]
  21640. ))
  21641. characterMakers.push(() => makeCharacter(
  21642. { name: "Mactarian" },
  21643. {
  21644. female: {
  21645. height: math.unit(23.8, "m"),
  21646. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  21647. name: "Female",
  21648. image: {
  21649. source: "./media/characters/mactarian/female.svg",
  21650. extra: 2662/2569,
  21651. bottom: 73/2736
  21652. }
  21653. },
  21654. male: {
  21655. height: math.unit(23.8, "m"),
  21656. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  21657. name: "Male",
  21658. image: {
  21659. source: "./media/characters/mactarian/male.svg",
  21660. extra: 2673/2600,
  21661. bottom: 76/2750
  21662. }
  21663. },
  21664. },
  21665. [
  21666. {
  21667. name: "Macro",
  21668. height: math.unit(23.8, "meters"),
  21669. default: true
  21670. },
  21671. ]
  21672. ))
  21673. characterMakers.push(() => makeCharacter(
  21674. { name: "Umok" },
  21675. {
  21676. female: {
  21677. height: math.unit(19.3, "m"),
  21678. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  21679. name: "Female",
  21680. image: {
  21681. source: "./media/characters/umok/female.svg",
  21682. extra: 2186/2078,
  21683. bottom: 87/2277
  21684. }
  21685. },
  21686. male: {
  21687. height: math.unit(19.5, "m"),
  21688. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  21689. name: "Male",
  21690. image: {
  21691. source: "./media/characters/umok/male.svg",
  21692. extra: 2233/2140,
  21693. bottom: 24.4/2258
  21694. }
  21695. },
  21696. },
  21697. [
  21698. {
  21699. name: "Macro",
  21700. height: math.unit(19.3, "meters"),
  21701. default: true
  21702. },
  21703. ]
  21704. ))
  21705. characterMakers.push(() => makeCharacter(
  21706. { name: "Joraxian" },
  21707. {
  21708. female: {
  21709. height: math.unit(26.15, "m"),
  21710. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  21711. name: "Female",
  21712. image: {
  21713. source: "./media/characters/joraxian/female.svg",
  21714. extra: 2943/2831,
  21715. bottom: 27/2972
  21716. }
  21717. },
  21718. male: {
  21719. height: math.unit(25.4, "m"),
  21720. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  21721. name: "Male",
  21722. image: {
  21723. source: "./media/characters/joraxian/male.svg",
  21724. extra: 2835/2741,
  21725. bottom: 27/2862
  21726. }
  21727. },
  21728. },
  21729. [
  21730. {
  21731. name: "Macro",
  21732. height: math.unit(26.15, "meters"),
  21733. default: true
  21734. },
  21735. ]
  21736. ))
  21737. characterMakers.push(() => makeCharacter(
  21738. { name: "Sthara" },
  21739. {
  21740. female: {
  21741. height: math.unit(21.6, "m"),
  21742. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  21743. name: "Female",
  21744. image: {
  21745. source: "./media/characters/sthara/female.svg",
  21746. extra: 2516/2347,
  21747. bottom: 21.5/2537
  21748. }
  21749. },
  21750. male: {
  21751. height: math.unit(24, "m"),
  21752. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  21753. name: "Male",
  21754. image: {
  21755. source: "./media/characters/sthara/male.svg",
  21756. extra: 2732/2607,
  21757. bottom: 23/2732
  21758. }
  21759. },
  21760. },
  21761. [
  21762. {
  21763. name: "Macro",
  21764. height: math.unit(21.6, "meters"),
  21765. default: true
  21766. },
  21767. ]
  21768. ))
  21769. characterMakers.push(() => makeCharacter(
  21770. { name: "Luka Bryzant" },
  21771. {
  21772. front: {
  21773. height: math.unit(6 + 4/12, "feet"),
  21774. weight: math.unit(175, "lb"),
  21775. name: "Front",
  21776. image: {
  21777. source: "./media/characters/luka-bryzant/front.svg",
  21778. extra: 311/289,
  21779. bottom: 4/315
  21780. }
  21781. },
  21782. back: {
  21783. height: math.unit(6 + 4/12, "feet"),
  21784. weight: math.unit(175, "lb"),
  21785. name: "Back",
  21786. image: {
  21787. source: "./media/characters/luka-bryzant/back.svg",
  21788. extra: 311/289,
  21789. bottom: 3.8/313.7
  21790. }
  21791. },
  21792. },
  21793. [
  21794. {
  21795. name: "Micro",
  21796. height: math.unit(10, "inches")
  21797. },
  21798. {
  21799. name: "Normal",
  21800. height: math.unit(6 + 4/12, "feet"),
  21801. default: true
  21802. },
  21803. {
  21804. name: "Large",
  21805. height: math.unit(12, "feet")
  21806. },
  21807. ]
  21808. ))
  21809. characterMakers.push(() => makeCharacter(
  21810. { name: "Aman Aquila" },
  21811. {
  21812. front: {
  21813. height: math.unit(5 + 7/12, "feet"),
  21814. weight: math.unit(185, "lb"),
  21815. name: "Front",
  21816. image: {
  21817. source: "./media/characters/aman-aquila/front.svg",
  21818. extra: 1013/976,
  21819. bottom: 45.6/1057
  21820. }
  21821. },
  21822. side: {
  21823. height: math.unit(5 + 7/12, "feet"),
  21824. weight: math.unit(185, "lb"),
  21825. name: "Side",
  21826. image: {
  21827. source: "./media/characters/aman-aquila/side.svg",
  21828. extra: 1054/1011,
  21829. bottom: 15/1070
  21830. }
  21831. },
  21832. back: {
  21833. height: math.unit(5 + 7/12, "feet"),
  21834. weight: math.unit(185, "lb"),
  21835. name: "Back",
  21836. image: {
  21837. source: "./media/characters/aman-aquila/back.svg",
  21838. extra: 1026/970,
  21839. bottom: 12/1039
  21840. }
  21841. },
  21842. head: {
  21843. height: math.unit(1.211, "feet"),
  21844. name: "Head",
  21845. image: {
  21846. source: "./media/characters/aman-aquila/head.svg",
  21847. }
  21848. },
  21849. },
  21850. [
  21851. {
  21852. name: "Minimicro",
  21853. height: math.unit(0.057, "inches")
  21854. },
  21855. {
  21856. name: "Micro",
  21857. height: math.unit(7, "inches")
  21858. },
  21859. {
  21860. name: "Mini",
  21861. height: math.unit(3 + 7/12, "feet")
  21862. },
  21863. {
  21864. name: "Normal",
  21865. height: math.unit(5 + 7/12, "feet"),
  21866. default: true
  21867. },
  21868. {
  21869. name: "Macro",
  21870. height: math.unit(157 + 7/12, "feet")
  21871. },
  21872. {
  21873. name: "Megamacro",
  21874. height: math.unit(1557 + 7/12, "feet")
  21875. },
  21876. {
  21877. name: "Gigamacro",
  21878. height: math.unit(15557 + 7/12, "feet")
  21879. },
  21880. ]
  21881. ))
  21882. characterMakers.push(() => makeCharacter(
  21883. { name: "Hiphae", species: "Mouse" },
  21884. {
  21885. front: {
  21886. height: math.unit(3 + 2/12, "inches"),
  21887. weight: math.unit(0.3, "ounces"),
  21888. name: "Front",
  21889. image: {
  21890. source: "./media/characters/hiphae/front.svg",
  21891. extra: 1931/1683,
  21892. bottom: 24/1955
  21893. }
  21894. },
  21895. },
  21896. [
  21897. {
  21898. name: "Normal",
  21899. height: math.unit(3 + 1/2, "inches"),
  21900. default: true
  21901. },
  21902. ]
  21903. ))
  21904. characterMakers.push(() => makeCharacter(
  21905. { name: "Nicky", species: "Shark" },
  21906. {
  21907. front: {
  21908. height: math.unit(5 + 10/12, "feet"),
  21909. weight: math.unit(165, "lb"),
  21910. name: "Front",
  21911. image: {
  21912. source: "./media/characters/nicky/front.svg",
  21913. extra: 3144/2886,
  21914. bottom: 45.6/3192
  21915. }
  21916. },
  21917. back: {
  21918. height: math.unit(5 + 10/12, "feet"),
  21919. weight: math.unit(165, "lb"),
  21920. name: "Back",
  21921. image: {
  21922. source: "./media/characters/nicky/back.svg",
  21923. extra: 3055/2804,
  21924. bottom: 28.4/3087
  21925. }
  21926. },
  21927. frontclothed: {
  21928. height: math.unit(5 + 10/12, "feet"),
  21929. weight: math.unit(165, "lb"),
  21930. name: "Front-clothed",
  21931. image: {
  21932. source: "./media/characters/nicky/front-clothed.svg",
  21933. extra: 3184.9/2926.9,
  21934. bottom: 86.5/3239.9
  21935. }
  21936. },
  21937. foot: {
  21938. height: math.unit(1.16, "feet"),
  21939. name: "Foot",
  21940. image: {
  21941. source: "./media/characters/nicky/foot.svg"
  21942. }
  21943. },
  21944. feet: {
  21945. height: math.unit(1.34, "feet"),
  21946. name: "Feet",
  21947. image: {
  21948. source: "./media/characters/nicky/feet.svg"
  21949. }
  21950. },
  21951. maw: {
  21952. height: math.unit(0.9, "feet"),
  21953. name: "Maw",
  21954. image: {
  21955. source: "./media/characters/nicky/maw.svg"
  21956. }
  21957. },
  21958. },
  21959. [
  21960. {
  21961. name: "Normal",
  21962. height: math.unit(5 + 10/12, "feet"),
  21963. default: true
  21964. },
  21965. {
  21966. name: "Macro",
  21967. height: math.unit(60, "feet")
  21968. },
  21969. {
  21970. name: "Megamacro",
  21971. height: math.unit(1, "mile")
  21972. },
  21973. ]
  21974. ))
  21975. characterMakers.push(() => makeCharacter(
  21976. { name: "Blair" },
  21977. {
  21978. side: {
  21979. height: math.unit(10, "feet"),
  21980. weight: math.unit(600, "lb"),
  21981. name: "Side",
  21982. image: {
  21983. source: "./media/characters/blair/side.svg",
  21984. bottom: 16.6/475,
  21985. extra: 458/431
  21986. }
  21987. },
  21988. },
  21989. [
  21990. {
  21991. name: "Micro",
  21992. height: math.unit(8, "inches")
  21993. },
  21994. {
  21995. name: "Normal",
  21996. height: math.unit(10, "feet"),
  21997. default: true
  21998. },
  21999. {
  22000. name: "Macro",
  22001. height: math.unit(180, "feet")
  22002. },
  22003. ]
  22004. ))
  22005. characterMakers.push(() => makeCharacter(
  22006. { name: "Fisher" },
  22007. {
  22008. front: {
  22009. height: math.unit(5 + 4/12, "feet"),
  22010. weight: math.unit(125, "lb"),
  22011. name: "Front",
  22012. image: {
  22013. source: "./media/characters/fisher/front.svg",
  22014. extra: 444/390,
  22015. bottom: 2/444.8
  22016. }
  22017. },
  22018. },
  22019. [
  22020. {
  22021. name: "Micro",
  22022. height: math.unit(4, "inches")
  22023. },
  22024. {
  22025. name: "Normal",
  22026. height: math.unit(5 + 4/12, "feet"),
  22027. default: true
  22028. },
  22029. {
  22030. name: "Macro",
  22031. height: math.unit(100, "feet")
  22032. },
  22033. ]
  22034. ))
  22035. characterMakers.push(() => makeCharacter(
  22036. { name: "Gliss" },
  22037. {
  22038. front: {
  22039. height: math.unit(6.71, "feet"),
  22040. weight: math.unit(200, "lb"),
  22041. capacity: math.unit(1000000, "people"),
  22042. name: "Front",
  22043. image: {
  22044. source: "./media/characters/gliss/front.svg",
  22045. extra: 2347/2231,
  22046. bottom: 113/2462
  22047. }
  22048. },
  22049. hammerspaceSize: {
  22050. height: math.unit(6.71*717, "feet"),
  22051. weight: math.unit(200, "lb"),
  22052. capacity: math.unit(1000000, "people"),
  22053. name: "Hammerspace Size",
  22054. image: {
  22055. source: "./media/characters/gliss/front.svg",
  22056. extra: 2347/2231,
  22057. bottom: 113/2462
  22058. }
  22059. },
  22060. },
  22061. [
  22062. {
  22063. name: "Normal",
  22064. height: math.unit(6.71, "feet"),
  22065. default: true
  22066. },
  22067. ]
  22068. ))
  22069. characterMakers.push(() => makeCharacter(
  22070. { name: "Dune Anderson" },
  22071. {
  22072. side: {
  22073. height: math.unit(1.44, "m"),
  22074. weight: math.unit(80, "kg"),
  22075. name: "Side",
  22076. image: {
  22077. source: "./media/characters/dune-anderson/side.svg",
  22078. bottom: 49/1426
  22079. }
  22080. },
  22081. },
  22082. [
  22083. {
  22084. name: "Wolf-sized",
  22085. height: math.unit(1.44, "meters")
  22086. },
  22087. {
  22088. name: "Normal",
  22089. height: math.unit(5.05, "meters"),
  22090. default: true
  22091. },
  22092. {
  22093. name: "Big",
  22094. height: math.unit(14.4, "meters")
  22095. },
  22096. {
  22097. name: "Huge",
  22098. height: math.unit(144, "meters")
  22099. },
  22100. ]
  22101. ))
  22102. characterMakers.push(() => makeCharacter(
  22103. { name: "Hind" },
  22104. {
  22105. front: {
  22106. height: math.unit(7, "feet"),
  22107. weight: math.unit(425, "lb"),
  22108. name: "Front",
  22109. image: {
  22110. source: "./media/characters/hind/front.svg",
  22111. extra: 2091/1860,
  22112. bottom: 129/2220
  22113. }
  22114. },
  22115. back: {
  22116. height: math.unit(7, "feet"),
  22117. weight: math.unit(425, "lb"),
  22118. name: "Back",
  22119. image: {
  22120. source: "./media/characters/hind/back.svg",
  22121. extra: 2091/1860,
  22122. bottom: 24.6/2309
  22123. }
  22124. },
  22125. tail: {
  22126. height: math.unit(2.8, "feet"),
  22127. name: "Tail",
  22128. image: {
  22129. source: "./media/characters/hind/tail.svg"
  22130. }
  22131. },
  22132. head: {
  22133. height: math.unit(2.55, "feet"),
  22134. name: "Head",
  22135. image: {
  22136. source: "./media/characters/hind/head.svg"
  22137. }
  22138. },
  22139. },
  22140. [
  22141. {
  22142. name: "XS",
  22143. height: math.unit(0.7, "feet")
  22144. },
  22145. {
  22146. name: "Normal",
  22147. height: math.unit(7, "feet"),
  22148. default: true
  22149. },
  22150. {
  22151. name: "XL",
  22152. height: math.unit(70, "feet")
  22153. },
  22154. ]
  22155. ))
  22156. characterMakers.push(() => makeCharacter(
  22157. { name: "Dylan (Skaven)" },
  22158. {
  22159. front: {
  22160. height: math.unit(6, "feet"),
  22161. weight: math.unit(150, "lb"),
  22162. name: "Front",
  22163. image: {
  22164. source: "./media/characters/dylan-skaven/front.svg",
  22165. extra: 2318/2063,
  22166. bottom: 93.4/2410
  22167. }
  22168. },
  22169. },
  22170. [
  22171. {
  22172. name: "Nano",
  22173. height: math.unit(1, "mm")
  22174. },
  22175. {
  22176. name: "Micro",
  22177. height: math.unit(1, "cm")
  22178. },
  22179. {
  22180. name: "Normal",
  22181. height: math.unit(2.1, "meters"),
  22182. default: true
  22183. },
  22184. ]
  22185. ))
  22186. //characters
  22187. function makeCharacters() {
  22188. const results = [];
  22189. characterMakers.forEach(character => {
  22190. results.push(character());
  22191. });
  22192. return results;
  22193. }