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

22669 строки
543 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(2, "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. },
  13602. [
  13603. {
  13604. name: "Normal",
  13605. height: math.unit(10, "feet")
  13606. },
  13607. {
  13608. name: "Macro",
  13609. height: math.unit(130, "feet"),
  13610. default: true
  13611. },
  13612. {
  13613. name: "Macro+",
  13614. height: math.unit(240, "feet")
  13615. },
  13616. ]
  13617. ))
  13618. characterMakers.push(() => makeCharacter(
  13619. { name: "Veski" },
  13620. {
  13621. front: {
  13622. height: math.unit(6, "feet"),
  13623. weight: math.unit(150, "lb"),
  13624. name: "Front",
  13625. image: {
  13626. source: "./media/characters/veski/front.svg",
  13627. extra: 1299 / 1225,
  13628. bottom: 0.04
  13629. }
  13630. },
  13631. back: {
  13632. height: math.unit(6, "feet"),
  13633. weight: math.unit(150, "lb"),
  13634. name: "Back",
  13635. image: {
  13636. source: "./media/characters/veski/back.svg",
  13637. extra: 1299 / 1225,
  13638. bottom: 0.008
  13639. }
  13640. },
  13641. maw: {
  13642. height: math.unit(1.5 * 1.21, "feet"),
  13643. name: "Maw",
  13644. image: {
  13645. source: "./media/characters/veski/maw.svg"
  13646. }
  13647. },
  13648. },
  13649. [
  13650. {
  13651. name: "Macro",
  13652. height: math.unit(2, "km"),
  13653. default: true
  13654. },
  13655. ]
  13656. ))
  13657. characterMakers.push(() => makeCharacter(
  13658. { name: "Isabelle" },
  13659. {
  13660. front: {
  13661. height: math.unit(5 + 7 / 12, "feet"),
  13662. name: "Front",
  13663. image: {
  13664. source: "./media/characters/isabelle/front.svg",
  13665. extra: 2130 / 1976,
  13666. bottom: 0.05
  13667. }
  13668. },
  13669. },
  13670. [
  13671. {
  13672. name: "Supermicro",
  13673. height: math.unit(10, "micrometers")
  13674. },
  13675. {
  13676. name: "Micro",
  13677. height: math.unit(1, "inch")
  13678. },
  13679. {
  13680. name: "Tiny",
  13681. height: math.unit(5, "inches")
  13682. },
  13683. {
  13684. name: "Standard",
  13685. height: math.unit(5 + 7 / 12, "inches")
  13686. },
  13687. {
  13688. name: "Macro",
  13689. height: math.unit(80, "meters"),
  13690. default: true
  13691. },
  13692. {
  13693. name: "Megamacro",
  13694. height: math.unit(250, "meters")
  13695. },
  13696. {
  13697. name: "Gigamacro",
  13698. height: math.unit(5, "km")
  13699. },
  13700. {
  13701. name: "Cosmic",
  13702. height: math.unit(2.5e6, "miles")
  13703. },
  13704. ]
  13705. ))
  13706. characterMakers.push(() => makeCharacter(
  13707. { name: "Hanzo" },
  13708. {
  13709. front: {
  13710. height: math.unit(6, "feet"),
  13711. weight: math.unit(150, "lb"),
  13712. name: "Front",
  13713. image: {
  13714. source: "./media/characters/hanzo/front.svg",
  13715. extra: 374 / 344,
  13716. bottom: 0.02
  13717. }
  13718. },
  13719. },
  13720. [
  13721. {
  13722. name: "Normal",
  13723. height: math.unit(8, "feet"),
  13724. default: true
  13725. },
  13726. ]
  13727. ))
  13728. characterMakers.push(() => makeCharacter(
  13729. { name: "Anna" },
  13730. {
  13731. front: {
  13732. height: math.unit(7, "feet"),
  13733. weight: math.unit(130, "lb"),
  13734. name: "Front",
  13735. image: {
  13736. source: "./media/characters/anna/front.svg",
  13737. extra: 169 / 145,
  13738. bottom: 0.06
  13739. }
  13740. },
  13741. full: {
  13742. height: math.unit(4.96, "feet"),
  13743. weight: math.unit(220, "lb"),
  13744. name: "Full",
  13745. image: {
  13746. source: "./media/characters/anna/full.svg",
  13747. extra: 138 / 114,
  13748. bottom: 0.15
  13749. }
  13750. },
  13751. tongue: {
  13752. height: math.unit(2.53, "feet"),
  13753. name: "Tongue",
  13754. image: {
  13755. source: "./media/characters/anna/tongue.svg"
  13756. }
  13757. },
  13758. },
  13759. [
  13760. {
  13761. name: "Normal",
  13762. height: math.unit(7, "feet"),
  13763. default: true
  13764. },
  13765. ]
  13766. ))
  13767. characterMakers.push(() => makeCharacter(
  13768. { name: "Ian Corvid" },
  13769. {
  13770. front: {
  13771. height: math.unit(7, "feet"),
  13772. weight: math.unit(150, "lb"),
  13773. name: "Front",
  13774. image: {
  13775. source: "./media/characters/ian-corvid/front.svg",
  13776. extra: 150 / 142,
  13777. bottom: 0.02
  13778. }
  13779. },
  13780. back: {
  13781. height: math.unit(7, "feet"),
  13782. weight: math.unit(150, "lb"),
  13783. name: "Back",
  13784. image: {
  13785. source: "./media/characters/ian-corvid/back.svg",
  13786. extra: 150 / 143,
  13787. bottom: 0.01
  13788. }
  13789. },
  13790. stomping: {
  13791. height: math.unit(7, "feet"),
  13792. weight: math.unit(150, "lb"),
  13793. name: "Stomping",
  13794. image: {
  13795. source: "./media/characters/ian-corvid/stomping.svg",
  13796. extra: 76 / 72
  13797. }
  13798. },
  13799. sitting: {
  13800. height: math.unit(7 / 1.8, "feet"),
  13801. weight: math.unit(150, "lb"),
  13802. name: "Sitting",
  13803. image: {
  13804. source: "./media/characters/ian-corvid/sitting.svg",
  13805. extra: 1400 / 1269,
  13806. bottom: 0.15
  13807. }
  13808. },
  13809. },
  13810. [
  13811. {
  13812. name: "Tiny Microw",
  13813. height: math.unit(1, "inch")
  13814. },
  13815. {
  13816. name: "Microw",
  13817. height: math.unit(6, "inches")
  13818. },
  13819. {
  13820. name: "Crow",
  13821. height: math.unit(7 + 1 / 12, "feet"),
  13822. default: true
  13823. },
  13824. {
  13825. name: "Macrow",
  13826. height: math.unit(176, "feet")
  13827. },
  13828. ]
  13829. ))
  13830. characterMakers.push(() => makeCharacter(
  13831. { name: "Natalie Kellon" },
  13832. {
  13833. front: {
  13834. height: math.unit(5 + 7 / 12, "feet"),
  13835. weight: math.unit(147, "lb"),
  13836. name: "Front",
  13837. image: {
  13838. source: "./media/characters/natalie-kellon/front.svg",
  13839. extra: 1214 / 1141,
  13840. bottom: 0.02
  13841. }
  13842. },
  13843. },
  13844. [
  13845. {
  13846. name: "Micro",
  13847. height: math.unit(1 / 16, "inch")
  13848. },
  13849. {
  13850. name: "Tiny",
  13851. height: math.unit(4, "inches")
  13852. },
  13853. {
  13854. name: "Normal",
  13855. height: math.unit(5 + 7 / 12, "feet"),
  13856. default: true
  13857. },
  13858. {
  13859. name: "Amazon",
  13860. height: math.unit(12, "feet")
  13861. },
  13862. {
  13863. name: "Giantess",
  13864. height: math.unit(160, "meters")
  13865. },
  13866. {
  13867. name: "Titaness",
  13868. height: math.unit(800, "meters")
  13869. },
  13870. ]
  13871. ))
  13872. characterMakers.push(() => makeCharacter(
  13873. { name: "Alluria" },
  13874. {
  13875. front: {
  13876. height: math.unit(6, "feet"),
  13877. weight: math.unit(150, "lb"),
  13878. name: "Front",
  13879. image: {
  13880. source: "./media/characters/alluria/front.svg",
  13881. extra: 806 / 738,
  13882. bottom: 0.01
  13883. }
  13884. },
  13885. side: {
  13886. height: math.unit(6, "feet"),
  13887. weight: math.unit(150, "lb"),
  13888. name: "Side",
  13889. image: {
  13890. source: "./media/characters/alluria/side.svg",
  13891. extra: 800 / 750,
  13892. }
  13893. },
  13894. back: {
  13895. height: math.unit(6, "feet"),
  13896. weight: math.unit(150, "lb"),
  13897. name: "Back",
  13898. image: {
  13899. source: "./media/characters/alluria/back.svg",
  13900. extra: 806 / 738,
  13901. }
  13902. },
  13903. frontMaid: {
  13904. height: math.unit(6, "feet"),
  13905. weight: math.unit(150, "lb"),
  13906. name: "Front (Maid)",
  13907. image: {
  13908. source: "./media/characters/alluria/front-maid.svg",
  13909. extra: 806 / 738,
  13910. bottom: 0.01
  13911. }
  13912. },
  13913. sideMaid: {
  13914. height: math.unit(6, "feet"),
  13915. weight: math.unit(150, "lb"),
  13916. name: "Side (Maid)",
  13917. image: {
  13918. source: "./media/characters/alluria/side-maid.svg",
  13919. extra: 800 / 750,
  13920. bottom: 0.005
  13921. }
  13922. },
  13923. backMaid: {
  13924. height: math.unit(6, "feet"),
  13925. weight: math.unit(150, "lb"),
  13926. name: "Back (Maid)",
  13927. image: {
  13928. source: "./media/characters/alluria/back-maid.svg",
  13929. extra: 806 / 738,
  13930. }
  13931. },
  13932. },
  13933. [
  13934. {
  13935. name: "Micro",
  13936. height: math.unit(6, "inches"),
  13937. default: true
  13938. },
  13939. ]
  13940. ))
  13941. characterMakers.push(() => makeCharacter(
  13942. { name: "Kyle" },
  13943. {
  13944. front: {
  13945. height: math.unit(6, "feet"),
  13946. weight: math.unit(150, "lb"),
  13947. name: "Front",
  13948. image: {
  13949. source: "./media/characters/kyle/front.svg",
  13950. extra: 1069 / 962,
  13951. bottom: 77.228 / 1727.45
  13952. }
  13953. },
  13954. },
  13955. [
  13956. {
  13957. name: "Macro",
  13958. height: math.unit(150, "feet"),
  13959. default: true
  13960. },
  13961. ]
  13962. ))
  13963. characterMakers.push(() => makeCharacter(
  13964. { name: "Duncan" },
  13965. {
  13966. front: {
  13967. height: math.unit(6, "feet"),
  13968. weight: math.unit(300, "lb"),
  13969. name: "Front",
  13970. image: {
  13971. source: "./media/characters/duncan/front.svg",
  13972. extra: 1650 / 1482,
  13973. bottom: 0.05
  13974. }
  13975. },
  13976. },
  13977. [
  13978. {
  13979. name: "Macro",
  13980. height: math.unit(100, "feet"),
  13981. default: true
  13982. },
  13983. ]
  13984. ))
  13985. characterMakers.push(() => makeCharacter(
  13986. { name: "Memory" },
  13987. {
  13988. front: {
  13989. height: math.unit(5 + 4 / 12, "feet"),
  13990. weight: math.unit(220, "lb"),
  13991. name: "Front",
  13992. image: {
  13993. source: "./media/characters/memory/front.svg",
  13994. extra: 3641 / 3545,
  13995. bottom: 0.03
  13996. }
  13997. },
  13998. back: {
  13999. height: math.unit(5 + 4 / 12, "feet"),
  14000. weight: math.unit(220, "lb"),
  14001. name: "Back",
  14002. image: {
  14003. source: "./media/characters/memory/back.svg",
  14004. extra: 3641 / 3545,
  14005. bottom: 0.025
  14006. }
  14007. },
  14008. frontSkirt: {
  14009. height: math.unit(5 + 4 / 12, "feet"),
  14010. weight: math.unit(220, "lb"),
  14011. name: "Front (Skirt)",
  14012. image: {
  14013. source: "./media/characters/memory/front-skirt.svg",
  14014. extra: 3641 / 3545,
  14015. bottom: 0.03
  14016. }
  14017. },
  14018. frontDress: {
  14019. height: math.unit(5 + 4 / 12, "feet"),
  14020. weight: math.unit(220, "lb"),
  14021. name: "Front (Dress)",
  14022. image: {
  14023. source: "./media/characters/memory/front-dress.svg",
  14024. extra: 3641 / 3545,
  14025. bottom: 0.03
  14026. }
  14027. },
  14028. },
  14029. [
  14030. {
  14031. name: "Micro",
  14032. height: math.unit(6, "inches"),
  14033. default: true
  14034. },
  14035. {
  14036. name: "Normal",
  14037. height: math.unit(5 + 4 / 12, "feet")
  14038. },
  14039. ]
  14040. ))
  14041. characterMakers.push(() => makeCharacter(
  14042. { name: "Luno" },
  14043. {
  14044. front: {
  14045. height: math.unit(4 + 11 / 12, "feet"),
  14046. weight: math.unit(100, "lb"),
  14047. name: "Front",
  14048. image: {
  14049. source: "./media/characters/luno/front.svg",
  14050. extra: 1535 / 1487,
  14051. bottom: 0.03
  14052. }
  14053. },
  14054. },
  14055. [
  14056. {
  14057. name: "Micro",
  14058. height: math.unit(3, "inches")
  14059. },
  14060. {
  14061. name: "Normal",
  14062. height: math.unit(4 + 11 / 12, "feet"),
  14063. default: true
  14064. },
  14065. {
  14066. name: "Macro",
  14067. height: math.unit(300, "feet")
  14068. },
  14069. {
  14070. name: "Megamacro",
  14071. height: math.unit(700, "miles")
  14072. },
  14073. ]
  14074. ))
  14075. characterMakers.push(() => makeCharacter(
  14076. { name: "Jamesy" },
  14077. {
  14078. front: {
  14079. height: math.unit(6 + 2 / 12, "feet"),
  14080. weight: math.unit(170, "lb"),
  14081. name: "Front",
  14082. image: {
  14083. source: "./media/characters/jamesy/front.svg",
  14084. extra: 440 / 382,
  14085. bottom: 0.005
  14086. }
  14087. },
  14088. },
  14089. [
  14090. {
  14091. name: "Micro",
  14092. height: math.unit(3, "inches")
  14093. },
  14094. {
  14095. name: "Normal",
  14096. height: math.unit(6 + 2 / 12, "feet"),
  14097. default: true
  14098. },
  14099. {
  14100. name: "Macro",
  14101. height: math.unit(300, "feet")
  14102. },
  14103. {
  14104. name: "Megamacro",
  14105. height: math.unit(700, "miles")
  14106. },
  14107. ]
  14108. ))
  14109. characterMakers.push(() => makeCharacter(
  14110. { name: "Mark" },
  14111. {
  14112. front: {
  14113. height: math.unit(6, "feet"),
  14114. weight: math.unit(160, "lb"),
  14115. name: "Front",
  14116. image: {
  14117. source: "./media/characters/mark/front.svg",
  14118. extra: 3300 / 3100,
  14119. bottom: 136.42 / 3440.47
  14120. }
  14121. },
  14122. },
  14123. [
  14124. {
  14125. name: "Macro",
  14126. height: math.unit(120, "meters")
  14127. },
  14128. {
  14129. name: "Bigger Macro",
  14130. height: math.unit(350, "meters")
  14131. },
  14132. {
  14133. name: "Megamacro",
  14134. height: math.unit(8, "km"),
  14135. default: true
  14136. },
  14137. {
  14138. name: "Continental",
  14139. height: math.unit(4550, "km")
  14140. },
  14141. {
  14142. name: "Planetary",
  14143. height: math.unit(65000, "km")
  14144. },
  14145. ]
  14146. ))
  14147. characterMakers.push(() => makeCharacter(
  14148. { name: "Mac" },
  14149. {
  14150. front: {
  14151. height: math.unit(6, "feet"),
  14152. weight: math.unit(400, "lb"),
  14153. name: "Front",
  14154. image: {
  14155. source: "./media/characters/mac/front.svg",
  14156. extra: 1048 / 987.7,
  14157. bottom: 60 / 1107.6,
  14158. }
  14159. },
  14160. },
  14161. [
  14162. {
  14163. name: "Macro",
  14164. height: math.unit(500, "feet"),
  14165. default: true
  14166. },
  14167. ]
  14168. ))
  14169. characterMakers.push(() => makeCharacter(
  14170. { name: "Bari" },
  14171. {
  14172. front: {
  14173. height: math.unit(5 + 2 / 12, "feet"),
  14174. weight: math.unit(190, "lb"),
  14175. name: "Front",
  14176. image: {
  14177. source: "./media/characters/bari/front.svg",
  14178. extra: 3156 / 2880,
  14179. bottom: 0.03
  14180. }
  14181. },
  14182. back: {
  14183. height: math.unit(5 + 2 / 12, "feet"),
  14184. weight: math.unit(190, "lb"),
  14185. name: "Back",
  14186. image: {
  14187. source: "./media/characters/bari/back.svg",
  14188. extra: 3260 / 2834,
  14189. bottom: 0.025
  14190. }
  14191. },
  14192. frontPlush: {
  14193. height: math.unit(5 + 2 / 12, "feet"),
  14194. weight: math.unit(190, "lb"),
  14195. name: "Front (Plush)",
  14196. image: {
  14197. source: "./media/characters/bari/front-plush.svg",
  14198. extra: 1112 / 1061,
  14199. bottom: 0.002
  14200. }
  14201. },
  14202. },
  14203. [
  14204. {
  14205. name: "Micro",
  14206. height: math.unit(3, "inches")
  14207. },
  14208. {
  14209. name: "Normal",
  14210. height: math.unit(5 + 2 / 12, "feet"),
  14211. default: true
  14212. },
  14213. {
  14214. name: "Macro",
  14215. height: math.unit(20, "feet")
  14216. },
  14217. ]
  14218. ))
  14219. characterMakers.push(() => makeCharacter(
  14220. { name: "Hunter Misha Raven" },
  14221. {
  14222. front: {
  14223. height: math.unit(6 + 1 / 12, "feet"),
  14224. weight: math.unit(275, "lb"),
  14225. name: "Front",
  14226. image: {
  14227. source: "./media/characters/hunter-misha-raven/front.svg"
  14228. }
  14229. },
  14230. },
  14231. [
  14232. {
  14233. name: "Mortal",
  14234. height: math.unit(6 + 1 / 12, "feet")
  14235. },
  14236. {
  14237. name: "Divine",
  14238. height: math.unit(1.12134e34, "parsecs"),
  14239. default: true
  14240. },
  14241. ]
  14242. ))
  14243. characterMakers.push(() => makeCharacter(
  14244. { name: "Max Calore" },
  14245. {
  14246. front: {
  14247. height: math.unit(6 + 3 / 12, "feet"),
  14248. weight: math.unit(220, "lb"),
  14249. name: "Front",
  14250. image: {
  14251. source: "./media/characters/max-calore/front.svg",
  14252. extra: 1700 / 1648,
  14253. bottom: 0.01
  14254. }
  14255. },
  14256. back: {
  14257. height: math.unit(6 + 3 / 12, "feet"),
  14258. weight: math.unit(220, "lb"),
  14259. name: "Back",
  14260. image: {
  14261. source: "./media/characters/max-calore/back.svg",
  14262. extra: 1700 / 1648,
  14263. bottom: 0.01
  14264. }
  14265. },
  14266. },
  14267. [
  14268. {
  14269. name: "Normal",
  14270. height: math.unit(6 + 3 / 12, "feet"),
  14271. default: true
  14272. },
  14273. ]
  14274. ))
  14275. characterMakers.push(() => makeCharacter(
  14276. { name: "Aspen" },
  14277. {
  14278. side: {
  14279. height: math.unit(2 + 8 / 12, "feet"),
  14280. weight: math.unit(99, "lb"),
  14281. name: "Side",
  14282. image: {
  14283. source: "./media/characters/aspen/side.svg",
  14284. extra: 152 / 138,
  14285. bottom: 0.032
  14286. }
  14287. },
  14288. },
  14289. [
  14290. {
  14291. name: "Normal",
  14292. height: math.unit(2 + 8 / 12, "feet"),
  14293. default: true
  14294. },
  14295. ]
  14296. ))
  14297. characterMakers.push(() => makeCharacter(
  14298. { name: "Sheila (Feral Wolf)" },
  14299. {
  14300. side: {
  14301. height: math.unit(3 + 2 / 12, "feet"),
  14302. weight: math.unit(224, "lb"),
  14303. name: "Side",
  14304. image: {
  14305. source: "./media/characters/sheila-feral-wolf/side.svg",
  14306. extra: 179 / 166,
  14307. bottom: 0.03
  14308. }
  14309. },
  14310. },
  14311. [
  14312. {
  14313. name: "Normal",
  14314. height: math.unit(3 + 2 / 12, "feet"),
  14315. default: true
  14316. },
  14317. ]
  14318. ))
  14319. characterMakers.push(() => makeCharacter(
  14320. { name: "Michelle" },
  14321. {
  14322. side: {
  14323. height: math.unit(1 + 9 / 12, "feet"),
  14324. weight: math.unit(38, "lb"),
  14325. name: "Side",
  14326. image: {
  14327. source: "./media/characters/michelle/side.svg",
  14328. extra: 147 / 136.7,
  14329. bottom: 0.03
  14330. }
  14331. },
  14332. },
  14333. [
  14334. {
  14335. name: "Normal",
  14336. height: math.unit(1 + 9 / 12, "feet"),
  14337. default: true
  14338. },
  14339. ]
  14340. ))
  14341. characterMakers.push(() => makeCharacter(
  14342. { name: "Nino" },
  14343. {
  14344. front: {
  14345. height: math.unit(1 + 1 / 12, "feet"),
  14346. weight: math.unit(18, "lb"),
  14347. name: "Front",
  14348. image: {
  14349. source: "./media/characters/nino/front.svg"
  14350. }
  14351. },
  14352. },
  14353. [
  14354. {
  14355. name: "Normal",
  14356. height: math.unit(1 + 1 / 12, "feet"),
  14357. default: true
  14358. },
  14359. ]
  14360. ))
  14361. characterMakers.push(() => makeCharacter(
  14362. { name: "Viola" },
  14363. {
  14364. front: {
  14365. height: math.unit(1, "feet"),
  14366. weight: math.unit(16, "lb"),
  14367. name: "Front",
  14368. image: {
  14369. source: "./media/characters/viola/front.svg"
  14370. }
  14371. },
  14372. },
  14373. [
  14374. {
  14375. name: "Normal",
  14376. height: math.unit(1, "feet"),
  14377. default: true
  14378. },
  14379. ]
  14380. ))
  14381. characterMakers.push(() => makeCharacter(
  14382. { name: "Atlas" },
  14383. {
  14384. front: {
  14385. height: math.unit(6 + 5 / 12, "feet"),
  14386. weight: math.unit(580, "lb"),
  14387. name: "Front",
  14388. image: {
  14389. source: "./media/characters/atlas/front.svg",
  14390. extra: 298.5 / 290,
  14391. bottom: 0.015
  14392. }
  14393. },
  14394. },
  14395. [
  14396. {
  14397. name: "Normal",
  14398. height: math.unit(6 + 5 / 12, "feet"),
  14399. default: true
  14400. },
  14401. ]
  14402. ))
  14403. characterMakers.push(() => makeCharacter(
  14404. { name: "Davy" },
  14405. {
  14406. side: {
  14407. height: math.unit(1 + 10 / 12, "feet"),
  14408. weight: math.unit(25, "lb"),
  14409. name: "Side",
  14410. image: {
  14411. source: "./media/characters/davy/side.svg",
  14412. extra: 200 / 170,
  14413. bottom: 0.01
  14414. }
  14415. },
  14416. },
  14417. [
  14418. {
  14419. name: "Normal",
  14420. height: math.unit(1 + 10 / 12, "feet"),
  14421. default: true
  14422. },
  14423. ]
  14424. ))
  14425. characterMakers.push(() => makeCharacter(
  14426. { name: "Fiona" },
  14427. {
  14428. side: {
  14429. height: math.unit(4 + 8 / 12, "feet"),
  14430. weight: math.unit(166, "lb"),
  14431. name: "Side",
  14432. image: {
  14433. source: "./media/characters/fiona/side.svg",
  14434. extra: 232 / 220,
  14435. bottom: 0.03
  14436. }
  14437. },
  14438. },
  14439. [
  14440. {
  14441. name: "Normal",
  14442. height: math.unit(4 + 8 / 12, "feet"),
  14443. default: true
  14444. },
  14445. ]
  14446. ))
  14447. characterMakers.push(() => makeCharacter(
  14448. { name: "Lyla" },
  14449. {
  14450. front: {
  14451. height: math.unit(2, "feet"),
  14452. weight: math.unit(62, "lb"),
  14453. name: "Front",
  14454. image: {
  14455. source: "./media/characters/lyla/front.svg",
  14456. bottom: 0.1
  14457. }
  14458. },
  14459. },
  14460. [
  14461. {
  14462. name: "Normal",
  14463. height: math.unit(2, "feet"),
  14464. default: true
  14465. },
  14466. ]
  14467. ))
  14468. characterMakers.push(() => makeCharacter(
  14469. { name: "Perseus" },
  14470. {
  14471. side: {
  14472. height: math.unit(1.8, "feet"),
  14473. weight: math.unit(44, "lb"),
  14474. name: "Side",
  14475. image: {
  14476. source: "./media/characters/perseus/side.svg",
  14477. bottom: 0.21
  14478. }
  14479. },
  14480. },
  14481. [
  14482. {
  14483. name: "Normal",
  14484. height: math.unit(1.8, "feet"),
  14485. default: true
  14486. },
  14487. ]
  14488. ))
  14489. characterMakers.push(() => makeCharacter(
  14490. { name: "Remus" },
  14491. {
  14492. side: {
  14493. height: math.unit(4 + 2 / 12, "feet"),
  14494. weight: math.unit(20, "lb"),
  14495. name: "Side",
  14496. image: {
  14497. source: "./media/characters/remus/side.svg"
  14498. }
  14499. },
  14500. },
  14501. [
  14502. {
  14503. name: "Normal",
  14504. height: math.unit(4 + 2 / 12, "feet"),
  14505. default: true
  14506. },
  14507. ]
  14508. ))
  14509. characterMakers.push(() => makeCharacter(
  14510. { name: "Raf" },
  14511. {
  14512. front: {
  14513. height: math.unit(4 + 11 / 12, "feet"),
  14514. weight: math.unit(114, "lb"),
  14515. name: "Front",
  14516. image: {
  14517. source: "./media/characters/raf/front.svg",
  14518. bottom: 0.01
  14519. }
  14520. },
  14521. side: {
  14522. height: math.unit(4 + 11 / 12, "feet"),
  14523. weight: math.unit(114, "lb"),
  14524. name: "Side",
  14525. image: {
  14526. source: "./media/characters/raf/side.svg",
  14527. bottom: 0.005
  14528. }
  14529. },
  14530. },
  14531. [
  14532. {
  14533. name: "Micro",
  14534. height: math.unit(2, "inches")
  14535. },
  14536. {
  14537. name: "Normal",
  14538. height: math.unit(4 + 11 / 12, "feet"),
  14539. default: true
  14540. },
  14541. {
  14542. name: "Macro",
  14543. height: math.unit(70, "feet")
  14544. },
  14545. ]
  14546. ))
  14547. characterMakers.push(() => makeCharacter(
  14548. { name: "Liam Einarr" },
  14549. {
  14550. front: {
  14551. height: math.unit(1.5, "meters"),
  14552. weight: math.unit(68, "kg"),
  14553. name: "Front",
  14554. image: {
  14555. source: "./media/characters/liam-einarr/front.svg",
  14556. extra: 2822 / 2666
  14557. }
  14558. },
  14559. back: {
  14560. height: math.unit(1.5, "meters"),
  14561. weight: math.unit(68, "kg"),
  14562. name: "Back",
  14563. image: {
  14564. source: "./media/characters/liam-einarr/back.svg",
  14565. extra: 2822 / 2666,
  14566. bottom: 0.015
  14567. }
  14568. },
  14569. },
  14570. [
  14571. {
  14572. name: "Normal",
  14573. height: math.unit(1.5, "meters"),
  14574. default: true
  14575. },
  14576. {
  14577. name: "Macro",
  14578. height: math.unit(150, "meters")
  14579. },
  14580. {
  14581. name: "Megamacro",
  14582. height: math.unit(35, "km")
  14583. },
  14584. ]
  14585. ))
  14586. characterMakers.push(() => makeCharacter(
  14587. { name: "Linda" },
  14588. {
  14589. front: {
  14590. height: math.unit(6, "feet"),
  14591. weight: math.unit(75, "kg"),
  14592. name: "Front",
  14593. image: {
  14594. source: "./media/characters/linda/front.svg",
  14595. extra: 930 / 874,
  14596. bottom: 0.004
  14597. }
  14598. },
  14599. },
  14600. [
  14601. {
  14602. name: "Normal",
  14603. height: math.unit(6, "feet"),
  14604. default: true
  14605. },
  14606. ]
  14607. ))
  14608. characterMakers.push(() => makeCharacter(
  14609. { name: "Caylex" },
  14610. {
  14611. front: {
  14612. height: math.unit(6 + 8 / 12, "feet"),
  14613. weight: math.unit(220, "lb"),
  14614. name: "Front",
  14615. image: {
  14616. source: "./media/characters/caylex/front.svg",
  14617. extra: 821 / 772,
  14618. bottom: 0.07
  14619. }
  14620. },
  14621. back: {
  14622. height: math.unit(6 + 8 / 12, "feet"),
  14623. weight: math.unit(220, "lb"),
  14624. name: "Back",
  14625. image: {
  14626. source: "./media/characters/caylex/back.svg",
  14627. extra: 821 / 772,
  14628. bottom: 0.022
  14629. }
  14630. },
  14631. hand: {
  14632. height: math.unit(1.25, "feet"),
  14633. name: "Hand",
  14634. image: {
  14635. source: "./media/characters/caylex/hand.svg"
  14636. }
  14637. },
  14638. foot: {
  14639. height: math.unit(1.6, "feet"),
  14640. name: "Foot",
  14641. image: {
  14642. source: "./media/characters/caylex/foot.svg"
  14643. }
  14644. },
  14645. armored: {
  14646. height: math.unit(6 + 8 / 12, "feet"),
  14647. weight: math.unit(250, "lb"),
  14648. name: "Armored",
  14649. image: {
  14650. source: "./media/characters/caylex/armored.svg",
  14651. extra: 1420 / 1310,
  14652. bottom: 0.045
  14653. }
  14654. },
  14655. },
  14656. [
  14657. {
  14658. name: "Normal",
  14659. height: math.unit(6 + 8 / 12, "feet"),
  14660. default: true
  14661. },
  14662. {
  14663. name: "Normal+",
  14664. height: math.unit(12, "feet")
  14665. },
  14666. ]
  14667. ))
  14668. characterMakers.push(() => makeCharacter(
  14669. { name: "Alana" },
  14670. {
  14671. front: {
  14672. height: math.unit(7 + 6 / 12, "feet"),
  14673. weight: math.unit(288, "lb"),
  14674. name: "Front",
  14675. image: {
  14676. source: "./media/characters/alana/front.svg",
  14677. extra: 679 / 653,
  14678. bottom: 22.5 / 701
  14679. }
  14680. },
  14681. },
  14682. [
  14683. {
  14684. name: "Normal",
  14685. height: math.unit(7 + 6 / 12, "feet")
  14686. },
  14687. {
  14688. name: "Large",
  14689. height: math.unit(50, "feet")
  14690. },
  14691. {
  14692. name: "Macro",
  14693. height: math.unit(100, "feet"),
  14694. default: true
  14695. },
  14696. {
  14697. name: "Macro+",
  14698. height: math.unit(200, "feet")
  14699. },
  14700. ]
  14701. ))
  14702. characterMakers.push(() => makeCharacter(
  14703. { name: "Hasani" },
  14704. {
  14705. front: {
  14706. height: math.unit(6 + 1 / 12, "feet"),
  14707. weight: math.unit(210, "lb"),
  14708. name: "Front",
  14709. image: {
  14710. source: "./media/characters/hasani/front.svg",
  14711. extra: 244 / 232,
  14712. bottom: 0.01
  14713. }
  14714. },
  14715. back: {
  14716. height: math.unit(6 + 1 / 12, "feet"),
  14717. weight: math.unit(210, "lb"),
  14718. name: "Back",
  14719. image: {
  14720. source: "./media/characters/hasani/back.svg",
  14721. extra: 244 / 232,
  14722. bottom: 0.01
  14723. }
  14724. },
  14725. },
  14726. [
  14727. {
  14728. name: "Normal",
  14729. height: math.unit(6 + 1 / 12, "feet")
  14730. },
  14731. {
  14732. name: "Macro",
  14733. height: math.unit(175, "feet"),
  14734. default: true
  14735. },
  14736. ]
  14737. ))
  14738. characterMakers.push(() => makeCharacter(
  14739. { name: "Nita" },
  14740. {
  14741. front: {
  14742. height: math.unit(1.82, "meters"),
  14743. weight: math.unit(140, "lb"),
  14744. name: "Front",
  14745. image: {
  14746. source: "./media/characters/nita/front.svg",
  14747. extra: 2473 / 2363,
  14748. bottom: 0.01
  14749. }
  14750. },
  14751. },
  14752. [
  14753. {
  14754. name: "Normal",
  14755. height: math.unit(1.82, "m")
  14756. },
  14757. {
  14758. name: "Macro",
  14759. height: math.unit(300, "m")
  14760. },
  14761. {
  14762. name: "Mistake Canon",
  14763. height: math.unit(0.5, "miles"),
  14764. default: true
  14765. },
  14766. {
  14767. name: "Big Mistake",
  14768. height: math.unit(13, "miles")
  14769. },
  14770. {
  14771. name: "Playing God",
  14772. height: math.unit(2450, "miles")
  14773. },
  14774. ]
  14775. ))
  14776. characterMakers.push(() => makeCharacter(
  14777. { name: "Shiriko" },
  14778. {
  14779. front: {
  14780. height: math.unit(4, "feet"),
  14781. weight: math.unit(120, "lb"),
  14782. name: "Front",
  14783. image: {
  14784. source: "./media/characters/shiriko/front.svg",
  14785. extra: 195 / 188
  14786. }
  14787. },
  14788. },
  14789. [
  14790. {
  14791. name: "Normal",
  14792. height: math.unit(4, "feet"),
  14793. default: true
  14794. },
  14795. ]
  14796. ))
  14797. characterMakers.push(() => makeCharacter(
  14798. { name: "Deja" },
  14799. {
  14800. front: {
  14801. height: math.unit(6, "feet"),
  14802. name: "front",
  14803. image: {
  14804. source: "./media/characters/deja/front.svg",
  14805. extra: 926 / 840,
  14806. bottom: 0.07
  14807. }
  14808. },
  14809. },
  14810. [
  14811. {
  14812. name: "Planck Length",
  14813. height: math.unit(1.6e-35, "meters")
  14814. },
  14815. {
  14816. name: "Normal",
  14817. height: math.unit(30.48, "meters"),
  14818. default: true
  14819. },
  14820. {
  14821. name: "Universal",
  14822. height: math.unit(8.8e26, "meters")
  14823. },
  14824. ]
  14825. ))
  14826. characterMakers.push(() => makeCharacter(
  14827. { name: "Anima" },
  14828. {
  14829. side: {
  14830. height: math.unit(8, "feet"),
  14831. weight: math.unit(6300, "lb"),
  14832. name: "Side",
  14833. image: {
  14834. source: "./media/characters/anima/side.svg",
  14835. bottom: 0.035
  14836. }
  14837. },
  14838. },
  14839. [
  14840. {
  14841. name: "Normal",
  14842. height: math.unit(8, "feet"),
  14843. default: true
  14844. },
  14845. ]
  14846. ))
  14847. characterMakers.push(() => makeCharacter(
  14848. { name: "Bianca" },
  14849. {
  14850. front: {
  14851. height: math.unit(8, "feet"),
  14852. weight: math.unit(350, "lb"),
  14853. name: "Front",
  14854. image: {
  14855. source: "./media/characters/bianca/front.svg",
  14856. extra: 234 / 225,
  14857. bottom: 0.03
  14858. }
  14859. },
  14860. },
  14861. [
  14862. {
  14863. name: "Normal",
  14864. height: math.unit(8, "feet"),
  14865. default: true
  14866. },
  14867. ]
  14868. ))
  14869. characterMakers.push(() => makeCharacter(
  14870. { name: "Adinia" },
  14871. {
  14872. front: {
  14873. height: math.unit(6, "feet"),
  14874. weight: math.unit(150, "lb"),
  14875. name: "Front",
  14876. image: {
  14877. source: "./media/characters/adinia/front.svg",
  14878. extra: 1845 / 1672,
  14879. bottom: 0.02
  14880. }
  14881. },
  14882. back: {
  14883. height: math.unit(6, "feet"),
  14884. weight: math.unit(150, "lb"),
  14885. name: "Back",
  14886. image: {
  14887. source: "./media/characters/adinia/back.svg",
  14888. extra: 1845 / 1672,
  14889. bottom: 0.002
  14890. }
  14891. },
  14892. },
  14893. [
  14894. {
  14895. name: "Normal",
  14896. height: math.unit(11 + 5 / 12, "feet"),
  14897. default: true
  14898. },
  14899. ]
  14900. ))
  14901. characterMakers.push(() => makeCharacter(
  14902. { name: "Lykasa" },
  14903. {
  14904. front: {
  14905. height: math.unit(3, "meters"),
  14906. weight: math.unit(200, "kg"),
  14907. name: "Front",
  14908. image: {
  14909. source: "./media/characters/lykasa/front.svg",
  14910. extra: 1076 / 976,
  14911. bottom: 0.06
  14912. }
  14913. },
  14914. },
  14915. [
  14916. {
  14917. name: "Normal",
  14918. height: math.unit(3, "meters")
  14919. },
  14920. {
  14921. name: "Kaiju",
  14922. height: math.unit(120, "meters"),
  14923. default: true
  14924. },
  14925. {
  14926. name: "Mega Kaiju",
  14927. height: math.unit(240, "km")
  14928. },
  14929. {
  14930. name: "Giga Kaiju",
  14931. height: math.unit(400, "megameters")
  14932. },
  14933. {
  14934. name: "Tera Kaiju",
  14935. height: math.unit(800, "gigameters")
  14936. },
  14937. {
  14938. name: "Kaiju Dragon Goddess",
  14939. height: math.unit(26, "zettaparsecs")
  14940. },
  14941. ]
  14942. ))
  14943. characterMakers.push(() => makeCharacter(
  14944. { name: "Malfaren" },
  14945. {
  14946. side: {
  14947. height: math.unit(283 / 124 * 6, "feet"),
  14948. weight: math.unit(35000, "lb"),
  14949. name: "Side",
  14950. image: {
  14951. source: "./media/characters/malfaren/side.svg",
  14952. extra: 2500 / 1010,
  14953. bottom: 0.01
  14954. }
  14955. },
  14956. front: {
  14957. height: math.unit(22.36, "feet"),
  14958. weight: math.unit(35000, "lb"),
  14959. name: "Front",
  14960. image: {
  14961. source: "./media/characters/malfaren/front.svg",
  14962. extra: 1631 / 1476,
  14963. bottom: 0.01
  14964. }
  14965. },
  14966. maw: {
  14967. height: math.unit(6.9, "feet"),
  14968. name: "Maw",
  14969. image: {
  14970. source: "./media/characters/malfaren/maw.svg"
  14971. }
  14972. },
  14973. },
  14974. [
  14975. {
  14976. name: "Big",
  14977. height: math.unit(283 / 162 * 6, "feet"),
  14978. },
  14979. {
  14980. name: "Bigger",
  14981. height: math.unit(283 / 124 * 6, "feet")
  14982. },
  14983. {
  14984. name: "Massive",
  14985. height: math.unit(283 / 92 * 6, "feet"),
  14986. default: true
  14987. },
  14988. {
  14989. name: "👀💦",
  14990. height: math.unit(283 / 73 * 6, "feet"),
  14991. },
  14992. ]
  14993. ))
  14994. characterMakers.push(() => makeCharacter(
  14995. { name: "Kernel" },
  14996. {
  14997. front: {
  14998. height: math.unit(1.7, "m"),
  14999. weight: math.unit(70, "kg"),
  15000. name: "Front",
  15001. image: {
  15002. source: "./media/characters/kernel/front.svg",
  15003. extra: 222 / 210,
  15004. bottom: 0.007
  15005. }
  15006. },
  15007. },
  15008. [
  15009. {
  15010. name: "Nano",
  15011. height: math.unit(17, "micrometers")
  15012. },
  15013. {
  15014. name: "Micro",
  15015. height: math.unit(1.7, "mm")
  15016. },
  15017. {
  15018. name: "Small",
  15019. height: math.unit(1.7, "cm")
  15020. },
  15021. {
  15022. name: "Normal",
  15023. height: math.unit(1.7, "m"),
  15024. default: true
  15025. },
  15026. ]
  15027. ))
  15028. characterMakers.push(() => makeCharacter(
  15029. { name: "Jayne Folest" },
  15030. {
  15031. front: {
  15032. height: math.unit(1.75, "meters"),
  15033. weight: math.unit(65, "kg"),
  15034. name: "Front",
  15035. image: {
  15036. source: "./media/characters/jayne-folest/front.svg",
  15037. extra: 2115 / 2007,
  15038. bottom: 0.02
  15039. }
  15040. },
  15041. back: {
  15042. height: math.unit(1.75, "meters"),
  15043. weight: math.unit(65, "kg"),
  15044. name: "Back",
  15045. image: {
  15046. source: "./media/characters/jayne-folest/back.svg",
  15047. extra: 2115 / 2007,
  15048. bottom: 0.005
  15049. }
  15050. },
  15051. frontClothed: {
  15052. height: math.unit(1.75, "meters"),
  15053. weight: math.unit(65, "kg"),
  15054. name: "Front (Clothed)",
  15055. image: {
  15056. source: "./media/characters/jayne-folest/front-clothed.svg",
  15057. extra: 2115 / 2007,
  15058. bottom: 0.035
  15059. }
  15060. },
  15061. hand: {
  15062. height: math.unit(1 / 1.260, "feet"),
  15063. name: "Hand",
  15064. image: {
  15065. source: "./media/characters/jayne-folest/hand.svg"
  15066. }
  15067. },
  15068. foot: {
  15069. height: math.unit(1 / 0.918, "feet"),
  15070. name: "Foot",
  15071. image: {
  15072. source: "./media/characters/jayne-folest/foot.svg"
  15073. }
  15074. },
  15075. },
  15076. [
  15077. {
  15078. name: "Micro",
  15079. height: math.unit(4, "cm")
  15080. },
  15081. {
  15082. name: "Normal",
  15083. height: math.unit(1.75, "meters")
  15084. },
  15085. {
  15086. name: "Macro",
  15087. height: math.unit(47.5, "meters"),
  15088. default: true
  15089. },
  15090. ]
  15091. ))
  15092. characterMakers.push(() => makeCharacter(
  15093. { name: "Algier" },
  15094. {
  15095. front: {
  15096. height: math.unit(180, "cm"),
  15097. weight: math.unit(70, "kg"),
  15098. name: "Front",
  15099. image: {
  15100. source: "./media/characters/algier/front.svg",
  15101. extra: 596 / 572,
  15102. bottom: 0.04
  15103. }
  15104. },
  15105. back: {
  15106. height: math.unit(180, "cm"),
  15107. weight: math.unit(70, "kg"),
  15108. name: "Back",
  15109. image: {
  15110. source: "./media/characters/algier/back.svg",
  15111. extra: 596 / 572,
  15112. bottom: 0.025
  15113. }
  15114. },
  15115. frontdressed: {
  15116. height: math.unit(180, "cm"),
  15117. weight: math.unit(150, "kg"),
  15118. name: "Front-dressed",
  15119. image: {
  15120. source: "./media/characters/algier/front-dressed.svg",
  15121. extra: 596 / 572,
  15122. bottom: 0.038
  15123. }
  15124. },
  15125. },
  15126. [
  15127. {
  15128. name: "Micro",
  15129. height: math.unit(5, "cm")
  15130. },
  15131. {
  15132. name: "Normal",
  15133. height: math.unit(180, "cm"),
  15134. default: true
  15135. },
  15136. {
  15137. name: "Macro",
  15138. height: math.unit(64, "m")
  15139. },
  15140. ]
  15141. ))
  15142. characterMakers.push(() => makeCharacter(
  15143. { name: "Pretzel" },
  15144. {
  15145. upright: {
  15146. height: math.unit(7, "feet"),
  15147. weight: math.unit(300, "lb"),
  15148. name: "Upright",
  15149. image: {
  15150. source: "./media/characters/pretzel/upright.svg",
  15151. extra: 534 / 522,
  15152. bottom: 0.065
  15153. }
  15154. },
  15155. sprawling: {
  15156. height: math.unit(3.75, "feet"),
  15157. weight: math.unit(300, "lb"),
  15158. name: "Sprawling",
  15159. image: {
  15160. source: "./media/characters/pretzel/sprawling.svg",
  15161. extra: 314 / 281,
  15162. bottom: 0.1
  15163. }
  15164. },
  15165. tongue: {
  15166. height: math.unit(2, "feet"),
  15167. name: "Tongue",
  15168. image: {
  15169. source: "./media/characters/pretzel/tongue.svg"
  15170. }
  15171. },
  15172. },
  15173. [
  15174. {
  15175. name: "Normal",
  15176. height: math.unit(7, "feet"),
  15177. default: true
  15178. },
  15179. {
  15180. name: "Oversized",
  15181. height: math.unit(15, "feet")
  15182. },
  15183. {
  15184. name: "Huge",
  15185. height: math.unit(30, "feet")
  15186. },
  15187. {
  15188. name: "Macro",
  15189. height: math.unit(250, "feet")
  15190. },
  15191. ]
  15192. ))
  15193. characterMakers.push(() => makeCharacter(
  15194. { name: "Roxi" },
  15195. {
  15196. sideFront: {
  15197. height: math.unit(5 + 2 / 12, "feet"),
  15198. weight: math.unit(120, "lb"),
  15199. name: "Front Side",
  15200. image: {
  15201. source: "./media/characters/roxi/side-front.svg",
  15202. extra: 2924 / 2717,
  15203. bottom: 0.08
  15204. }
  15205. },
  15206. sideBack: {
  15207. height: math.unit(5 + 2 / 12, "feet"),
  15208. weight: math.unit(120, "lb"),
  15209. name: "Back Side",
  15210. image: {
  15211. source: "./media/characters/roxi/side-back.svg",
  15212. extra: 2904 / 2693,
  15213. bottom: 0.06
  15214. }
  15215. },
  15216. front: {
  15217. height: math.unit(5 + 2 / 12, "feet"),
  15218. weight: math.unit(120, "lb"),
  15219. name: "Front",
  15220. image: {
  15221. source: "./media/characters/roxi/front.svg",
  15222. extra: 2028 / 1907,
  15223. bottom: 0.01
  15224. }
  15225. },
  15226. frontAlt: {
  15227. height: math.unit(5 + 2 / 12, "feet"),
  15228. weight: math.unit(120, "lb"),
  15229. name: "Front (Alt)",
  15230. image: {
  15231. source: "./media/characters/roxi/front-alt.svg",
  15232. extra: 1828 / 1798,
  15233. bottom: 0.01
  15234. }
  15235. },
  15236. sitting: {
  15237. height: math.unit(2.8, "feet"),
  15238. weight: math.unit(120, "lb"),
  15239. name: "Sitting",
  15240. image: {
  15241. source: "./media/characters/roxi/sitting.svg",
  15242. extra: 2660 / 2462,
  15243. bottom: 0.1
  15244. }
  15245. },
  15246. },
  15247. [
  15248. {
  15249. name: "Normal",
  15250. height: math.unit(5 + 2 / 12, "feet"),
  15251. default: true
  15252. },
  15253. ]
  15254. ))
  15255. characterMakers.push(() => makeCharacter(
  15256. { name: "Shadow" },
  15257. {
  15258. side: {
  15259. height: math.unit(55, "feet"),
  15260. weight: math.unit(153, "tons"),
  15261. name: "Side",
  15262. image: {
  15263. source: "./media/characters/shadow/side.svg",
  15264. extra: 701 / 628,
  15265. bottom: 0.02
  15266. }
  15267. },
  15268. flying: {
  15269. height: math.unit(145, "feet"),
  15270. weight: math.unit(153, "tons"),
  15271. name: "Flying",
  15272. image: {
  15273. source: "./media/characters/shadow/flying.svg"
  15274. }
  15275. },
  15276. },
  15277. [
  15278. {
  15279. name: "Normal",
  15280. height: math.unit(55, "feet"),
  15281. default: true
  15282. },
  15283. ]
  15284. ))
  15285. characterMakers.push(() => makeCharacter(
  15286. { name: "Marcie" },
  15287. {
  15288. front: {
  15289. height: math.unit(6, "feet"),
  15290. weight: math.unit(200, "lb"),
  15291. name: "Front",
  15292. image: {
  15293. source: "./media/characters/marcie/front.svg",
  15294. extra: 960 / 876,
  15295. bottom: 58 / 1017.87
  15296. }
  15297. },
  15298. },
  15299. [
  15300. {
  15301. name: "Macro",
  15302. height: math.unit(1, "mile"),
  15303. default: true
  15304. },
  15305. ]
  15306. ))
  15307. characterMakers.push(() => makeCharacter(
  15308. { name: "Kachina" },
  15309. {
  15310. front: {
  15311. height: math.unit(7, "feet"),
  15312. weight: math.unit(200, "lb"),
  15313. name: "Front",
  15314. image: {
  15315. source: "./media/characters/kachina/front.svg",
  15316. extra: 1290.68 / 1119,
  15317. bottom: 36.5 / 1327.18
  15318. }
  15319. },
  15320. },
  15321. [
  15322. {
  15323. name: "Normal",
  15324. height: math.unit(7, "feet"),
  15325. default: true
  15326. },
  15327. ]
  15328. ))
  15329. characterMakers.push(() => makeCharacter(
  15330. { name: "Kash" },
  15331. {
  15332. looking: {
  15333. height: math.unit(2, "meters"),
  15334. weight: math.unit(300, "kg"),
  15335. name: "Looking",
  15336. image: {
  15337. source: "./media/characters/kash/looking.svg",
  15338. extra: 474 / 344,
  15339. bottom: 0.03
  15340. }
  15341. },
  15342. side: {
  15343. height: math.unit(2, "meters"),
  15344. weight: math.unit(300, "kg"),
  15345. name: "Side",
  15346. image: {
  15347. source: "./media/characters/kash/side.svg",
  15348. extra: 302 / 251,
  15349. bottom: 0.03
  15350. }
  15351. },
  15352. front: {
  15353. height: math.unit(2, "meters"),
  15354. weight: math.unit(300, "kg"),
  15355. name: "Front",
  15356. image: {
  15357. source: "./media/characters/kash/front.svg",
  15358. extra: 495 / 360,
  15359. bottom: 0.015
  15360. }
  15361. },
  15362. },
  15363. [
  15364. {
  15365. name: "Normal",
  15366. height: math.unit(2, "meters"),
  15367. default: true
  15368. },
  15369. {
  15370. name: "Big",
  15371. height: math.unit(3, "meters")
  15372. },
  15373. {
  15374. name: "Large",
  15375. height: math.unit(5, "meters")
  15376. },
  15377. ]
  15378. ))
  15379. characterMakers.push(() => makeCharacter(
  15380. { name: "Lalim" },
  15381. {
  15382. feeding: {
  15383. height: math.unit(6.7, "feet"),
  15384. weight: math.unit(350, "lb"),
  15385. name: "Feeding",
  15386. image: {
  15387. source: "./media/characters/lalim/feeding.svg",
  15388. }
  15389. },
  15390. },
  15391. [
  15392. {
  15393. name: "Normal",
  15394. height: math.unit(6.7, "feet"),
  15395. default: true
  15396. },
  15397. ]
  15398. ))
  15399. characterMakers.push(() => makeCharacter(
  15400. { name: "De'Vout" },
  15401. {
  15402. front: {
  15403. height: math.unit(9.5, "feet"),
  15404. weight: math.unit(600, "lb"),
  15405. name: "Front",
  15406. image: {
  15407. source: "./media/characters/de'vout/front.svg",
  15408. extra: 1443 / 1328,
  15409. bottom: 0.025
  15410. }
  15411. },
  15412. back: {
  15413. height: math.unit(9.5, "feet"),
  15414. weight: math.unit(600, "lb"),
  15415. name: "Back",
  15416. image: {
  15417. source: "./media/characters/de'vout/back.svg",
  15418. extra: 1443 / 1328
  15419. }
  15420. },
  15421. frontDressed: {
  15422. height: math.unit(9.5, "feet"),
  15423. weight: math.unit(600, "lb"),
  15424. name: "Front (Dressed",
  15425. image: {
  15426. source: "./media/characters/de'vout/front-dressed.svg",
  15427. extra: 1443 / 1328,
  15428. bottom: 0.025
  15429. }
  15430. },
  15431. backDressed: {
  15432. height: math.unit(9.5, "feet"),
  15433. weight: math.unit(600, "lb"),
  15434. name: "Back (Dressed",
  15435. image: {
  15436. source: "./media/characters/de'vout/back-dressed.svg",
  15437. extra: 1443 / 1328
  15438. }
  15439. },
  15440. },
  15441. [
  15442. {
  15443. name: "Normal",
  15444. height: math.unit(9.5, "feet"),
  15445. default: true
  15446. },
  15447. ]
  15448. ))
  15449. characterMakers.push(() => makeCharacter(
  15450. { name: "Talana" },
  15451. {
  15452. front: {
  15453. height: math.unit(8, "feet"),
  15454. weight: math.unit(225, "lb"),
  15455. name: "Front",
  15456. image: {
  15457. source: "./media/characters/talana/front.svg",
  15458. extra: 1410 / 1300,
  15459. bottom: 0.015
  15460. }
  15461. },
  15462. frontDressed: {
  15463. height: math.unit(8, "feet"),
  15464. weight: math.unit(225, "lb"),
  15465. name: "Front (Dressed",
  15466. image: {
  15467. source: "./media/characters/talana/front-dressed.svg",
  15468. extra: 1410 / 1300,
  15469. bottom: 0.015
  15470. }
  15471. },
  15472. },
  15473. [
  15474. {
  15475. name: "Normal",
  15476. height: math.unit(8, "feet"),
  15477. default: true
  15478. },
  15479. ]
  15480. ))
  15481. characterMakers.push(() => makeCharacter(
  15482. { name: "Xeauvok" },
  15483. {
  15484. side: {
  15485. height: math.unit(7.2, "feet"),
  15486. weight: math.unit(150, "lb"),
  15487. name: "Side",
  15488. image: {
  15489. source: "./media/characters/xeauvok/side.svg",
  15490. extra: 1975 / 1523,
  15491. bottom: 0.07
  15492. }
  15493. },
  15494. },
  15495. [
  15496. {
  15497. name: "Normal",
  15498. height: math.unit(7.2, "feet"),
  15499. default: true
  15500. },
  15501. ]
  15502. ))
  15503. characterMakers.push(() => makeCharacter(
  15504. { name: "Zara" },
  15505. {
  15506. side: {
  15507. height: math.unit(10, "feet"),
  15508. weight: math.unit(900, "kg"),
  15509. name: "Side",
  15510. image: {
  15511. source: "./media/characters/zara/side.svg",
  15512. extra: 504 / 498
  15513. }
  15514. },
  15515. },
  15516. [
  15517. {
  15518. name: "Normal",
  15519. height: math.unit(10, "feet"),
  15520. default: true
  15521. },
  15522. ]
  15523. ))
  15524. characterMakers.push(() => makeCharacter(
  15525. { name: "Richard (Dragon)" },
  15526. {
  15527. side: {
  15528. height: math.unit(6, "feet"),
  15529. weight: math.unit(150, "lb"),
  15530. name: "Side",
  15531. image: {
  15532. source: "./media/characters/richard-dragon/side.svg",
  15533. extra: 845 / 340,
  15534. bottom: 0.017
  15535. }
  15536. },
  15537. maw: {
  15538. height: math.unit(2.97, "feet"),
  15539. name: "Maw",
  15540. image: {
  15541. source: "./media/characters/richard-dragon/maw.svg"
  15542. }
  15543. },
  15544. },
  15545. [
  15546. ]
  15547. ))
  15548. characterMakers.push(() => makeCharacter(
  15549. { name: "Richard (Smeargle)" },
  15550. {
  15551. front: {
  15552. height: math.unit(4, "feet"),
  15553. weight: math.unit(100, "lb"),
  15554. name: "Front",
  15555. image: {
  15556. source: "./media/characters/richard-smeargle/front.svg",
  15557. extra: 2952 / 2820,
  15558. bottom: 0.028
  15559. }
  15560. },
  15561. },
  15562. [
  15563. {
  15564. name: "Normal",
  15565. height: math.unit(4, "feet"),
  15566. default: true
  15567. },
  15568. {
  15569. name: "Dynamax",
  15570. height: math.unit(20, "meters")
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "Klay" },
  15576. {
  15577. front: {
  15578. height: math.unit(6, "feet"),
  15579. weight: math.unit(110, "lb"),
  15580. name: "Front",
  15581. image: {
  15582. source: "./media/characters/klay/front.svg",
  15583. extra: 962 / 883,
  15584. bottom: 0.04
  15585. }
  15586. },
  15587. back: {
  15588. height: math.unit(6, "feet"),
  15589. weight: math.unit(110, "lb"),
  15590. name: "Back",
  15591. image: {
  15592. source: "./media/characters/klay/back.svg",
  15593. extra: 962 / 883
  15594. }
  15595. },
  15596. beans: {
  15597. height: math.unit(1.15, "feet"),
  15598. name: "Beans",
  15599. image: {
  15600. source: "./media/characters/klay/beans.svg"
  15601. }
  15602. },
  15603. },
  15604. [
  15605. {
  15606. name: "Micro",
  15607. height: math.unit(6, "inches")
  15608. },
  15609. {
  15610. name: "Mini",
  15611. height: math.unit(3, "feet")
  15612. },
  15613. {
  15614. name: "Normal",
  15615. height: math.unit(6, "feet"),
  15616. default: true
  15617. },
  15618. {
  15619. name: "Big",
  15620. height: math.unit(25, "feet")
  15621. },
  15622. {
  15623. name: "Macro",
  15624. height: math.unit(100, "feet")
  15625. },
  15626. {
  15627. name: "Megamacro",
  15628. height: math.unit(400, "feet")
  15629. },
  15630. ]
  15631. ))
  15632. characterMakers.push(() => makeCharacter(
  15633. { name: "Marcus" },
  15634. {
  15635. front: {
  15636. height: math.unit(6, "feet"),
  15637. weight: math.unit(160, "lb"),
  15638. name: "Front",
  15639. image: {
  15640. source: "./media/characters/marcus/front.svg",
  15641. extra: 734 / 676,
  15642. bottom: 0.03
  15643. }
  15644. },
  15645. },
  15646. [
  15647. {
  15648. name: "Little",
  15649. height: math.unit(6, "feet")
  15650. },
  15651. {
  15652. name: "Normal",
  15653. height: math.unit(110, "feet"),
  15654. default: true
  15655. },
  15656. {
  15657. name: "Macro",
  15658. height: math.unit(250, "feet")
  15659. },
  15660. {
  15661. name: "Megamacro",
  15662. height: math.unit(1000, "feet")
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Claude DelRoute" },
  15668. {
  15669. front: {
  15670. height: math.unit(7, "feet"),
  15671. weight: math.unit(275, "lb"),
  15672. name: "Front",
  15673. image: {
  15674. source: "./media/characters/claude-delroute/front.svg",
  15675. extra: 230 / 214,
  15676. bottom: 0.007
  15677. }
  15678. },
  15679. side: {
  15680. height: math.unit(7, "feet"),
  15681. weight: math.unit(275, "lb"),
  15682. name: "Side",
  15683. image: {
  15684. source: "./media/characters/claude-delroute/side.svg",
  15685. extra: 222 / 214,
  15686. bottom: 0.01
  15687. }
  15688. },
  15689. back: {
  15690. height: math.unit(7, "feet"),
  15691. weight: math.unit(275, "lb"),
  15692. name: "Back",
  15693. image: {
  15694. source: "./media/characters/claude-delroute/back.svg",
  15695. extra: 230 / 214,
  15696. bottom: 0.015
  15697. }
  15698. },
  15699. maw: {
  15700. height: math.unit(0.6407, "meters"),
  15701. name: "Maw",
  15702. image: {
  15703. source: "./media/characters/claude-delroute/maw.svg"
  15704. }
  15705. },
  15706. },
  15707. [
  15708. {
  15709. name: "Normal",
  15710. height: math.unit(7, "feet"),
  15711. default: true
  15712. },
  15713. {
  15714. name: "Lorge",
  15715. height: math.unit(20, "feet")
  15716. },
  15717. ]
  15718. ))
  15719. characterMakers.push(() => makeCharacter(
  15720. { name: "Dragonien" },
  15721. {
  15722. front: {
  15723. height: math.unit(8 + 4 / 12, "feet"),
  15724. weight: math.unit(600, "lb"),
  15725. name: "Front",
  15726. image: {
  15727. source: "./media/characters/dragonien/front.svg",
  15728. extra: 100 / 94,
  15729. bottom: 3.3 / 103.3445
  15730. }
  15731. },
  15732. back: {
  15733. height: math.unit(8 + 4 / 12, "feet"),
  15734. weight: math.unit(600, "lb"),
  15735. name: "Back",
  15736. image: {
  15737. source: "./media/characters/dragonien/back.svg",
  15738. extra: 776 / 746,
  15739. bottom: 6.4 / 782.0616
  15740. }
  15741. },
  15742. foot: {
  15743. height: math.unit(1.54, "feet"),
  15744. name: "Foot",
  15745. image: {
  15746. source: "./media/characters/dragonien/foot.svg",
  15747. }
  15748. },
  15749. },
  15750. [
  15751. {
  15752. name: "Normal",
  15753. height: math.unit(8 + 4 / 12, "feet"),
  15754. default: true
  15755. },
  15756. {
  15757. name: "Macro",
  15758. height: math.unit(200, "feet")
  15759. },
  15760. {
  15761. name: "Megamacro",
  15762. height: math.unit(1, "mile")
  15763. },
  15764. {
  15765. name: "Gigamacro",
  15766. height: math.unit(1000, "miles")
  15767. },
  15768. ]
  15769. ))
  15770. characterMakers.push(() => makeCharacter(
  15771. { name: "Desta" },
  15772. {
  15773. front: {
  15774. height: math.unit(5 + 2 / 12, "feet"),
  15775. weight: math.unit(110, "lb"),
  15776. name: "Front",
  15777. image: {
  15778. source: "./media/characters/desta/front.svg",
  15779. extra: 1482 / 1417
  15780. }
  15781. },
  15782. side: {
  15783. height: math.unit(5 + 2 / 12, "feet"),
  15784. weight: math.unit(110, "lb"),
  15785. name: "Side",
  15786. image: {
  15787. source: "./media/characters/desta/side.svg",
  15788. extra: 2579 / 2491,
  15789. bottom: 0.053
  15790. }
  15791. },
  15792. },
  15793. [
  15794. {
  15795. name: "Micro",
  15796. height: math.unit(6, "inches")
  15797. },
  15798. {
  15799. name: "Normal",
  15800. height: math.unit(5 + 2 / 12, "feet"),
  15801. default: true
  15802. },
  15803. {
  15804. name: "Macro",
  15805. height: math.unit(62, "feet")
  15806. },
  15807. {
  15808. name: "Megamacro",
  15809. height: math.unit(1800, "feet")
  15810. },
  15811. ]
  15812. ))
  15813. characterMakers.push(() => makeCharacter(
  15814. { name: "Storm Alystar" },
  15815. {
  15816. front: {
  15817. height: math.unit(10, "feet"),
  15818. weight: math.unit(700, "lb"),
  15819. name: "Front",
  15820. image: {
  15821. source: "./media/characters/storm-alystar/front.svg",
  15822. extra: 2112 / 1898,
  15823. bottom: 0.034
  15824. }
  15825. },
  15826. },
  15827. [
  15828. {
  15829. name: "Micro",
  15830. height: math.unit(3.5, "inches")
  15831. },
  15832. {
  15833. name: "Normal",
  15834. height: math.unit(10, "feet"),
  15835. default: true
  15836. },
  15837. {
  15838. name: "Macro",
  15839. height: math.unit(400, "feet")
  15840. },
  15841. {
  15842. name: "Deific",
  15843. height: math.unit(60, "miles")
  15844. },
  15845. ]
  15846. ))
  15847. characterMakers.push(() => makeCharacter(
  15848. { name: "Ilia" },
  15849. {
  15850. front: {
  15851. height: math.unit(2.35, "meters"),
  15852. weight: math.unit(119, "kg"),
  15853. name: "Front",
  15854. image: {
  15855. source: "./media/characters/ilia/front.svg",
  15856. extra: 1285 / 1255,
  15857. bottom: 0.06
  15858. }
  15859. },
  15860. },
  15861. [
  15862. {
  15863. name: "Normal",
  15864. height: math.unit(2.35, "meters")
  15865. },
  15866. {
  15867. name: "Macro",
  15868. height: math.unit(140, "meters"),
  15869. default: true
  15870. },
  15871. {
  15872. name: "Megamacro",
  15873. height: math.unit(100, "miles")
  15874. },
  15875. ]
  15876. ))
  15877. characterMakers.push(() => makeCharacter(
  15878. { name: "KingDead" },
  15879. {
  15880. front: {
  15881. height: math.unit(6 + 5 / 12, "feet"),
  15882. weight: math.unit(190, "lb"),
  15883. name: "Front",
  15884. image: {
  15885. source: "./media/characters/kingdead/front.svg",
  15886. extra: 1228 / 1177
  15887. }
  15888. },
  15889. },
  15890. [
  15891. {
  15892. name: "Micro",
  15893. height: math.unit(7, "inches")
  15894. },
  15895. {
  15896. name: "Normal",
  15897. height: math.unit(6 + 5 / 12, "feet")
  15898. },
  15899. {
  15900. name: "Macro",
  15901. height: math.unit(150, "feet"),
  15902. default: true
  15903. },
  15904. {
  15905. name: "Megamacro",
  15906. height: math.unit(200, "miles")
  15907. },
  15908. ]
  15909. ))
  15910. characterMakers.push(() => makeCharacter(
  15911. { name: "Kyrehx" },
  15912. {
  15913. front: {
  15914. height: math.unit(8, "feet"),
  15915. weight: math.unit(600, "lb"),
  15916. name: "Front",
  15917. image: {
  15918. source: "./media/characters/kyrehx/front.svg",
  15919. extra: 1195 / 1095,
  15920. bottom: 0.034
  15921. }
  15922. },
  15923. },
  15924. [
  15925. {
  15926. name: "Micro",
  15927. height: math.unit(2, "inches")
  15928. },
  15929. {
  15930. name: "Normal",
  15931. height: math.unit(8, "feet"),
  15932. default: true
  15933. },
  15934. {
  15935. name: "Macro",
  15936. height: math.unit(255, "feet")
  15937. },
  15938. ]
  15939. ))
  15940. characterMakers.push(() => makeCharacter(
  15941. { name: "Xang" },
  15942. {
  15943. front: {
  15944. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15945. weight: math.unit(184, "lb"),
  15946. name: "Front",
  15947. image: {
  15948. source: "./media/characters/xang/front.svg",
  15949. extra: 845 / 755
  15950. }
  15951. },
  15952. },
  15953. [
  15954. {
  15955. name: "Normal",
  15956. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15957. default: true
  15958. },
  15959. {
  15960. name: "Macro",
  15961. height: math.unit(0.935 * 146, "feet")
  15962. },
  15963. {
  15964. name: "Megamacro",
  15965. height: math.unit(0.935 * 3, "miles")
  15966. },
  15967. ]
  15968. ))
  15969. characterMakers.push(() => makeCharacter(
  15970. { name: "Doc Weardno" },
  15971. {
  15972. frontDressed: {
  15973. height: math.unit(5 + 7 / 12, "feet"),
  15974. weight: math.unit(140, "lb"),
  15975. name: "Front (Dressed)",
  15976. image: {
  15977. source: "./media/characters/doc-weardno/front-dressed.svg",
  15978. extra: 263 / 234
  15979. }
  15980. },
  15981. backDressed: {
  15982. height: math.unit(5 + 7 / 12, "feet"),
  15983. weight: math.unit(140, "lb"),
  15984. name: "Back (Dressed)",
  15985. image: {
  15986. source: "./media/characters/doc-weardno/back-dressed.svg",
  15987. extra: 266 / 238
  15988. }
  15989. },
  15990. front: {
  15991. height: math.unit(5 + 7 / 12, "feet"),
  15992. weight: math.unit(140, "lb"),
  15993. name: "Front",
  15994. image: {
  15995. source: "./media/characters/doc-weardno/front.svg",
  15996. extra: 254 / 233
  15997. }
  15998. },
  15999. },
  16000. [
  16001. {
  16002. name: "Micro",
  16003. height: math.unit(3, "inches")
  16004. },
  16005. {
  16006. name: "Normal",
  16007. height: math.unit(5 + 7 / 12, "feet"),
  16008. default: true
  16009. },
  16010. {
  16011. name: "Macro",
  16012. height: math.unit(25, "feet")
  16013. },
  16014. {
  16015. name: "Megamacro",
  16016. height: math.unit(2, "miles")
  16017. },
  16018. ]
  16019. ))
  16020. characterMakers.push(() => makeCharacter(
  16021. { name: "Seth Whilst" },
  16022. {
  16023. front: {
  16024. height: math.unit(6 + 2 / 12, "feet"),
  16025. weight: math.unit(153, "lb"),
  16026. name: "Front",
  16027. image: {
  16028. source: "./media/characters/seth-whilst/front.svg",
  16029. bottom: 0.07
  16030. }
  16031. },
  16032. },
  16033. [
  16034. {
  16035. name: "Micro",
  16036. height: math.unit(5, "inches")
  16037. },
  16038. {
  16039. name: "Normal",
  16040. height: math.unit(6 + 2 / 12, "feet"),
  16041. default: true
  16042. },
  16043. ]
  16044. ))
  16045. characterMakers.push(() => makeCharacter(
  16046. { name: "Pocket Jabari" },
  16047. {
  16048. front: {
  16049. height: math.unit(3, "inches"),
  16050. weight: math.unit(8, "grams"),
  16051. name: "Front",
  16052. image: {
  16053. source: "./media/characters/pocket-jabari/front.svg",
  16054. extra: 1024 / 974,
  16055. bottom: 0.039
  16056. }
  16057. },
  16058. },
  16059. [
  16060. {
  16061. name: "Minimicro",
  16062. height: math.unit(8, "mm")
  16063. },
  16064. {
  16065. name: "Micro",
  16066. height: math.unit(3, "inches"),
  16067. default: true
  16068. },
  16069. {
  16070. name: "Normal",
  16071. height: math.unit(3, "feet")
  16072. },
  16073. ]
  16074. ))
  16075. characterMakers.push(() => makeCharacter(
  16076. { name: "Sapphy" },
  16077. {
  16078. front: {
  16079. height: math.unit(15, "feet"),
  16080. weight: math.unit(3280, "lb"),
  16081. name: "Front",
  16082. image: {
  16083. source: "./media/characters/sapphy/front.svg",
  16084. extra: 671 / 577,
  16085. bottom: 0.085
  16086. }
  16087. },
  16088. back: {
  16089. height: math.unit(15, "feet"),
  16090. weight: math.unit(3280, "lb"),
  16091. name: "Back",
  16092. image: {
  16093. source: "./media/characters/sapphy/back.svg",
  16094. extra: 631 / 607,
  16095. bottom: 0.045
  16096. }
  16097. },
  16098. },
  16099. [
  16100. {
  16101. name: "Normal",
  16102. height: math.unit(15, "feet")
  16103. },
  16104. {
  16105. name: "Casual Macro",
  16106. height: math.unit(120, "feet")
  16107. },
  16108. {
  16109. name: "Macro",
  16110. height: math.unit(2150, "feet"),
  16111. default: true
  16112. },
  16113. {
  16114. name: "Megamacro",
  16115. height: math.unit(8, "miles")
  16116. },
  16117. {
  16118. name: "Galaxy Mom",
  16119. height: math.unit(6, "megalightyears")
  16120. },
  16121. ]
  16122. ))
  16123. characterMakers.push(() => makeCharacter(
  16124. { name: "Kiro" },
  16125. {
  16126. front: {
  16127. height: math.unit(6, "feet"),
  16128. weight: math.unit(170, "lb"),
  16129. name: "Front",
  16130. image: {
  16131. source: "./media/characters/kiro/front.svg",
  16132. extra: 1064 / 1012,
  16133. bottom: 0.052
  16134. }
  16135. },
  16136. },
  16137. [
  16138. {
  16139. name: "Micro",
  16140. height: math.unit(6, "inches")
  16141. },
  16142. {
  16143. name: "Normal",
  16144. height: math.unit(6, "feet"),
  16145. default: true
  16146. },
  16147. {
  16148. name: "Macro",
  16149. height: math.unit(72, "feet")
  16150. },
  16151. ]
  16152. ))
  16153. characterMakers.push(() => makeCharacter(
  16154. { name: "Irishfox" },
  16155. {
  16156. front: {
  16157. height: math.unit(5 + 9 / 12, "feet"),
  16158. weight: math.unit(175, "lb"),
  16159. name: "Front",
  16160. image: {
  16161. source: "./media/characters/irishfox/front.svg",
  16162. extra: 1912 / 1680,
  16163. bottom: 0.02
  16164. }
  16165. },
  16166. },
  16167. [
  16168. {
  16169. name: "Nano",
  16170. height: math.unit(1, "mm")
  16171. },
  16172. {
  16173. name: "Micro",
  16174. height: math.unit(2, "inches")
  16175. },
  16176. {
  16177. name: "Normal",
  16178. height: math.unit(5 + 9 / 12, "feet"),
  16179. default: true
  16180. },
  16181. {
  16182. name: "Macro",
  16183. height: math.unit(45, "feet")
  16184. },
  16185. ]
  16186. ))
  16187. characterMakers.push(() => makeCharacter(
  16188. { name: "Aronai Sieyes" },
  16189. {
  16190. front: {
  16191. height: math.unit(6 + 1 / 12, "feet"),
  16192. weight: math.unit(150, "lb"),
  16193. name: "Front",
  16194. image: {
  16195. source: "./media/characters/aronai-sieyes/front.svg",
  16196. extra: 1556 / 1480,
  16197. bottom: 0.015
  16198. }
  16199. },
  16200. side: {
  16201. height: math.unit(6 + 1 / 12, "feet"),
  16202. weight: math.unit(150, "lb"),
  16203. name: "Side",
  16204. image: {
  16205. source: "./media/characters/aronai-sieyes/side.svg",
  16206. extra: 1433 / 1390,
  16207. bottom: 0.0393
  16208. }
  16209. },
  16210. back: {
  16211. height: math.unit(6 + 1 / 12, "feet"),
  16212. weight: math.unit(150, "lb"),
  16213. name: "Back",
  16214. image: {
  16215. source: "./media/characters/aronai-sieyes/back.svg",
  16216. extra: 1544 / 1494,
  16217. bottom: 0.02
  16218. }
  16219. },
  16220. frontClothed: {
  16221. height: math.unit(6 + 1 / 12, "feet"),
  16222. weight: math.unit(150, "lb"),
  16223. name: "Front (Clothed)",
  16224. image: {
  16225. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16226. extra: 1582 / 1527
  16227. }
  16228. },
  16229. feral: {
  16230. height: math.unit(18, "feet"),
  16231. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16232. name: "Feral",
  16233. image: {
  16234. source: "./media/characters/aronai-sieyes/feral.svg",
  16235. extra: 1530 / 1240,
  16236. bottom: 0.035
  16237. }
  16238. },
  16239. },
  16240. [
  16241. {
  16242. name: "Micro",
  16243. height: math.unit(2, "inches")
  16244. },
  16245. {
  16246. name: "Normal",
  16247. height: math.unit(6 + 1 / 12, "feet"),
  16248. default: true
  16249. }
  16250. ]
  16251. ))
  16252. characterMakers.push(() => makeCharacter(
  16253. { name: "Xuna" },
  16254. {
  16255. front: {
  16256. height: math.unit(12, "feet"),
  16257. weight: math.unit(410, "kg"),
  16258. name: "Front",
  16259. image: {
  16260. source: "./media/characters/xuna/front.svg",
  16261. extra: 2184 / 1980
  16262. }
  16263. },
  16264. side: {
  16265. height: math.unit(12, "feet"),
  16266. weight: math.unit(410, "kg"),
  16267. name: "Side",
  16268. image: {
  16269. source: "./media/characters/xuna/side.svg",
  16270. extra: 2184 / 1980
  16271. }
  16272. },
  16273. back: {
  16274. height: math.unit(12, "feet"),
  16275. weight: math.unit(410, "kg"),
  16276. name: "Back",
  16277. image: {
  16278. source: "./media/characters/xuna/back.svg",
  16279. extra: 2184 / 1980
  16280. }
  16281. },
  16282. },
  16283. [
  16284. {
  16285. name: "Nano glow",
  16286. height: math.unit(10, "nm")
  16287. },
  16288. {
  16289. name: "Micro floof",
  16290. height: math.unit(0.3, "m")
  16291. },
  16292. {
  16293. name: "Huggable softy boi",
  16294. height: math.unit(3.6576, "m"),
  16295. default: true
  16296. },
  16297. {
  16298. name: "Admirable floof",
  16299. height: math.unit(80, "meters")
  16300. },
  16301. {
  16302. name: "Gentle macro",
  16303. height: math.unit(300, "meters")
  16304. },
  16305. {
  16306. name: "Very careful floof",
  16307. height: math.unit(3200, "meters")
  16308. },
  16309. {
  16310. name: "The mega floof",
  16311. height: math.unit(36000, "meters")
  16312. },
  16313. {
  16314. name: "Giga-fur-Wicker",
  16315. height: math.unit(4800000, "meters")
  16316. },
  16317. {
  16318. name: "Licky world",
  16319. height: math.unit(20000000, "meters")
  16320. },
  16321. {
  16322. name: "Floofy cyan sun",
  16323. height: math.unit(1500000000, "meters")
  16324. },
  16325. {
  16326. name: "Milky Wicker",
  16327. height: math.unit(1000000000000000000000, "meters")
  16328. },
  16329. {
  16330. name: "The observing Wicker",
  16331. height: math.unit(999999999999999999999999999, "meters")
  16332. },
  16333. ]
  16334. ))
  16335. characterMakers.push(() => makeCharacter(
  16336. { name: "Arokha Sieyes" },
  16337. {
  16338. front: {
  16339. height: math.unit(5 + 9 / 12, "feet"),
  16340. weight: math.unit(150, "lb"),
  16341. name: "Front",
  16342. image: {
  16343. source: "./media/characters/arokha-sieyes/front.svg",
  16344. extra: 1425 / 1284,
  16345. bottom: 0.05
  16346. }
  16347. },
  16348. },
  16349. [
  16350. {
  16351. name: "Normal",
  16352. height: math.unit(5 + 9 / 12, "feet")
  16353. },
  16354. {
  16355. name: "Macro",
  16356. height: math.unit(30, "meters"),
  16357. default: true
  16358. },
  16359. ]
  16360. ))
  16361. characterMakers.push(() => makeCharacter(
  16362. { name: "Arokh Sieyes" },
  16363. {
  16364. front: {
  16365. height: math.unit(6, "feet"),
  16366. weight: math.unit(180, "lb"),
  16367. name: "Front",
  16368. image: {
  16369. source: "./media/characters/arokh-sieyes/front.svg",
  16370. extra: 1830 / 1769,
  16371. bottom: 0.01
  16372. }
  16373. },
  16374. },
  16375. [
  16376. {
  16377. name: "Normal",
  16378. height: math.unit(6, "feet")
  16379. },
  16380. {
  16381. name: "Macro",
  16382. height: math.unit(30, "meters"),
  16383. default: true
  16384. },
  16385. ]
  16386. ))
  16387. characterMakers.push(() => makeCharacter(
  16388. { name: "Goldeneye" },
  16389. {
  16390. side: {
  16391. height: math.unit(13 + 1 / 12, "feet"),
  16392. weight: math.unit(8.5, "tonnes"),
  16393. name: "Side",
  16394. image: {
  16395. source: "./media/characters/goldeneye/side.svg",
  16396. extra: 1182 / 778,
  16397. bottom: 0.067
  16398. }
  16399. },
  16400. paw: {
  16401. height: math.unit(3.4, "feet"),
  16402. name: "Paw",
  16403. image: {
  16404. source: "./media/characters/goldeneye/paw.svg"
  16405. }
  16406. },
  16407. },
  16408. [
  16409. {
  16410. name: "Normal",
  16411. height: math.unit(13 + 1 / 12, "feet"),
  16412. default: true
  16413. },
  16414. ]
  16415. ))
  16416. characterMakers.push(() => makeCharacter(
  16417. { name: "Leonardo Lycheborne" },
  16418. {
  16419. front: {
  16420. height: math.unit(6 + 1 / 12, "feet"),
  16421. weight: math.unit(210, "lb"),
  16422. name: "Front",
  16423. image: {
  16424. source: "./media/characters/leonardo-lycheborne/front.svg",
  16425. extra: 390 / 365,
  16426. bottom: 0.032
  16427. }
  16428. },
  16429. side: {
  16430. height: math.unit(6 + 1 / 12, "feet"),
  16431. weight: math.unit(210, "lb"),
  16432. name: "Side",
  16433. image: {
  16434. source: "./media/characters/leonardo-lycheborne/side.svg",
  16435. extra: 390 / 365,
  16436. bottom: 0.005
  16437. }
  16438. },
  16439. back: {
  16440. height: math.unit(6 + 1 / 12, "feet"),
  16441. weight: math.unit(210, "lb"),
  16442. name: "Back",
  16443. image: {
  16444. source: "./media/characters/leonardo-lycheborne/back.svg",
  16445. extra: 392 / 366,
  16446. bottom: 0.01
  16447. }
  16448. },
  16449. hand: {
  16450. height: math.unit(1.08, "feet"),
  16451. name: "Hand",
  16452. image: {
  16453. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16454. }
  16455. },
  16456. foot: {
  16457. height: math.unit(1.32, "feet"),
  16458. name: "Foot",
  16459. image: {
  16460. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16461. }
  16462. },
  16463. were: {
  16464. height: math.unit(20, "feet"),
  16465. weight: math.unit(7800, "lb"),
  16466. name: "Were",
  16467. image: {
  16468. source: "./media/characters/leonardo-lycheborne/were.svg",
  16469. extra: 308 / 294,
  16470. bottom: 0.048
  16471. }
  16472. },
  16473. feral: {
  16474. height: math.unit(7.5, "feet"),
  16475. weight: math.unit(600, "lb"),
  16476. name: "Feral",
  16477. image: {
  16478. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16479. extra: 210 / 186,
  16480. bottom: 0.108
  16481. }
  16482. },
  16483. taur: {
  16484. height: math.unit(11, "feet"),
  16485. weight: math.unit(3300, "lb"),
  16486. name: "Taur",
  16487. image: {
  16488. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16489. extra: 320 / 303,
  16490. bottom: 0.025
  16491. }
  16492. },
  16493. barghest: {
  16494. height: math.unit(11, "feet"),
  16495. weight: math.unit(1300, "lb"),
  16496. name: "Barghest",
  16497. image: {
  16498. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16499. extra: 323 / 302,
  16500. bottom: 0.027
  16501. }
  16502. },
  16503. dick: {
  16504. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16505. name: "Dick",
  16506. image: {
  16507. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16508. }
  16509. },
  16510. dickWere: {
  16511. height: math.unit((20) / 3.8, "feet"),
  16512. name: "Dick (Were)",
  16513. image: {
  16514. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Normal",
  16521. height: math.unit(6 + 1 / 12, "feet"),
  16522. default: true
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Jet" },
  16528. {
  16529. front: {
  16530. height: math.unit(10, "feet"),
  16531. weight: math.unit(350, "lb"),
  16532. name: "Front",
  16533. image: {
  16534. source: "./media/characters/jet/front.svg",
  16535. extra: 2050 / 1980,
  16536. bottom: 0.013
  16537. }
  16538. },
  16539. back: {
  16540. height: math.unit(10, "feet"),
  16541. weight: math.unit(350, "lb"),
  16542. name: "Back",
  16543. image: {
  16544. source: "./media/characters/jet/back.svg",
  16545. extra: 2050 / 1980,
  16546. bottom: 0.013
  16547. }
  16548. },
  16549. },
  16550. [
  16551. {
  16552. name: "Micro",
  16553. height: math.unit(6, "inches")
  16554. },
  16555. {
  16556. name: "Normal",
  16557. height: math.unit(10, "feet"),
  16558. default: true
  16559. },
  16560. {
  16561. name: "Macro",
  16562. height: math.unit(100, "feet")
  16563. },
  16564. ]
  16565. ))
  16566. characterMakers.push(() => makeCharacter(
  16567. { name: "Tanarath" },
  16568. {
  16569. front: {
  16570. height: math.unit(15, "feet"),
  16571. weight: math.unit(2800, "lb"),
  16572. name: "Front",
  16573. image: {
  16574. source: "./media/characters/tanarath/front.svg",
  16575. extra: 2392 / 2220,
  16576. bottom: 0.03
  16577. }
  16578. },
  16579. back: {
  16580. height: math.unit(15, "feet"),
  16581. weight: math.unit(2800, "lb"),
  16582. name: "Back",
  16583. image: {
  16584. source: "./media/characters/tanarath/back.svg",
  16585. extra: 2392 / 2220,
  16586. bottom: 0.03
  16587. }
  16588. },
  16589. },
  16590. [
  16591. {
  16592. name: "Normal",
  16593. height: math.unit(15, "feet"),
  16594. default: true
  16595. },
  16596. ]
  16597. ))
  16598. characterMakers.push(() => makeCharacter(
  16599. { name: "Patty CattyBatty" },
  16600. {
  16601. front: {
  16602. height: math.unit(7 + 1 / 12, "feet"),
  16603. weight: math.unit(175, "lb"),
  16604. name: "Front",
  16605. image: {
  16606. source: "./media/characters/patty-cattybatty/front.svg",
  16607. extra: 908 / 874,
  16608. bottom: 0.025
  16609. }
  16610. },
  16611. },
  16612. [
  16613. {
  16614. name: "Micro",
  16615. height: math.unit(1, "inch")
  16616. },
  16617. {
  16618. name: "Normal",
  16619. height: math.unit(7 + 1 / 12, "feet")
  16620. },
  16621. {
  16622. name: "Mini Macro",
  16623. height: math.unit(155, "feet")
  16624. },
  16625. {
  16626. name: "Macro",
  16627. height: math.unit(1077, "feet")
  16628. },
  16629. {
  16630. name: "Mega Macro",
  16631. height: math.unit(47650, "feet"),
  16632. default: true
  16633. },
  16634. {
  16635. name: "Giga Macro",
  16636. height: math.unit(440, "miles")
  16637. },
  16638. {
  16639. name: "Tera Macro",
  16640. height: math.unit(8700, "miles")
  16641. },
  16642. {
  16643. name: "Planetary Macro",
  16644. height: math.unit(32700, "miles")
  16645. },
  16646. {
  16647. name: "Solar Macro",
  16648. height: math.unit(550000, "miles")
  16649. },
  16650. {
  16651. name: "Celestial Macro",
  16652. height: math.unit(2.5, "AU")
  16653. },
  16654. ]
  16655. ))
  16656. characterMakers.push(() => makeCharacter(
  16657. { name: "Cappu" },
  16658. {
  16659. front: {
  16660. height: math.unit(4 + 5 / 12, "feet"),
  16661. weight: math.unit(90, "lb"),
  16662. name: "Front",
  16663. image: {
  16664. source: "./media/characters/cappu/front.svg",
  16665. extra: 1247 / 1152,
  16666. bottom: 0.012
  16667. }
  16668. },
  16669. },
  16670. [
  16671. {
  16672. name: "Normal",
  16673. height: math.unit(4 + 5 / 12, "feet"),
  16674. default: true
  16675. },
  16676. ]
  16677. ))
  16678. characterMakers.push(() => makeCharacter(
  16679. { name: "Sebi" },
  16680. {
  16681. frontDressed: {
  16682. height: math.unit(70, "cm"),
  16683. weight: math.unit(6, "kg"),
  16684. name: "Front (Dressed)",
  16685. image: {
  16686. source: "./media/characters/sebi/front-dressed.svg",
  16687. extra: 713.5 / 686.5,
  16688. bottom: 0.003
  16689. }
  16690. },
  16691. front: {
  16692. height: math.unit(70, "cm"),
  16693. weight: math.unit(5, "kg"),
  16694. name: "Front",
  16695. image: {
  16696. source: "./media/characters/sebi/front.svg",
  16697. extra: 713.5 / 686.5,
  16698. bottom: 0.003
  16699. }
  16700. }
  16701. },
  16702. [
  16703. {
  16704. name: "Normal",
  16705. height: math.unit(70, "cm"),
  16706. default: true
  16707. },
  16708. {
  16709. name: "Macro",
  16710. height: math.unit(8, "meters")
  16711. },
  16712. ]
  16713. ))
  16714. characterMakers.push(() => makeCharacter(
  16715. { name: "Typhek" },
  16716. {
  16717. front: {
  16718. height: math.unit(6, "feet"),
  16719. weight: math.unit(150, "lb"),
  16720. name: "Front",
  16721. image: {
  16722. source: "./media/characters/typhek/front.svg",
  16723. extra: 1948 / 1929,
  16724. bottom: 0.025
  16725. }
  16726. },
  16727. side: {
  16728. height: math.unit(6, "feet"),
  16729. weight: math.unit(150, "lb"),
  16730. name: "Side",
  16731. image: {
  16732. source: "./media/characters/typhek/side.svg",
  16733. extra: 2034 / 2010,
  16734. bottom: 0.003
  16735. }
  16736. },
  16737. back: {
  16738. height: math.unit(6, "feet"),
  16739. weight: math.unit(150, "lb"),
  16740. name: "Back",
  16741. image: {
  16742. source: "./media/characters/typhek/back.svg",
  16743. extra: 2005 / 1978,
  16744. bottom: 0.004
  16745. }
  16746. },
  16747. palm: {
  16748. height: math.unit(1.2, "feet"),
  16749. name: "Palm",
  16750. image: {
  16751. source: "./media/characters/typhek/palm.svg"
  16752. }
  16753. },
  16754. fist: {
  16755. height: math.unit(1.1, "feet"),
  16756. name: "Fist",
  16757. image: {
  16758. source: "./media/characters/typhek/fist.svg"
  16759. }
  16760. },
  16761. foot: {
  16762. height: math.unit(1.57, "feet"),
  16763. name: "Foot",
  16764. image: {
  16765. source: "./media/characters/typhek/foot.svg"
  16766. }
  16767. },
  16768. sole: {
  16769. height: math.unit(2.05, "feet"),
  16770. name: "Sole",
  16771. image: {
  16772. source: "./media/characters/typhek/sole.svg"
  16773. }
  16774. },
  16775. },
  16776. [
  16777. {
  16778. name: "Macro",
  16779. height: math.unit(40, "stories"),
  16780. default: true
  16781. },
  16782. {
  16783. name: "Megamacro",
  16784. height: math.unit(1, "mile")
  16785. },
  16786. {
  16787. name: "Gigamacro",
  16788. height: math.unit(4000, "solarradii")
  16789. },
  16790. {
  16791. name: "Universal",
  16792. height: math.unit(1.1, "universes")
  16793. }
  16794. ]
  16795. ))
  16796. characterMakers.push(() => makeCharacter(
  16797. { name: "Kassy" },
  16798. {
  16799. side: {
  16800. height: math.unit(5 + 7 / 12, "feet"),
  16801. weight: math.unit(150, "lb"),
  16802. name: "Side",
  16803. image: {
  16804. source: "./media/characters/kassy/side.svg",
  16805. extra: 1280 / 1225,
  16806. bottom: 0.002
  16807. }
  16808. },
  16809. front: {
  16810. height: math.unit(5 + 7 / 12, "feet"),
  16811. weight: math.unit(150, "lb"),
  16812. name: "Front",
  16813. image: {
  16814. source: "./media/characters/kassy/front.svg",
  16815. extra: 1280 / 1225,
  16816. bottom: 0.025
  16817. }
  16818. },
  16819. back: {
  16820. height: math.unit(5 + 7 / 12, "feet"),
  16821. weight: math.unit(150, "lb"),
  16822. name: "Back",
  16823. image: {
  16824. source: "./media/characters/kassy/back.svg",
  16825. extra: 1280 / 1225,
  16826. bottom: 0.002
  16827. }
  16828. },
  16829. foot: {
  16830. height: math.unit(1.266, "feet"),
  16831. name: "Foot",
  16832. image: {
  16833. source: "./media/characters/kassy/foot.svg"
  16834. }
  16835. },
  16836. },
  16837. [
  16838. {
  16839. name: "Normal",
  16840. height: math.unit(5 + 7 / 12, "feet")
  16841. },
  16842. {
  16843. name: "Macro",
  16844. height: math.unit(137, "feet"),
  16845. default: true
  16846. },
  16847. {
  16848. name: "Megamacro",
  16849. height: math.unit(1, "mile")
  16850. },
  16851. ]
  16852. ))
  16853. characterMakers.push(() => makeCharacter(
  16854. { name: "Neil" },
  16855. {
  16856. front: {
  16857. height: math.unit(6 + 1 / 12, "feet"),
  16858. weight: math.unit(200, "lb"),
  16859. name: "Front",
  16860. image: {
  16861. source: "./media/characters/neil/front.svg",
  16862. extra: 1326 / 1250,
  16863. bottom: 0.023
  16864. }
  16865. },
  16866. },
  16867. [
  16868. {
  16869. name: "Normal",
  16870. height: math.unit(6 + 1 / 12, "feet"),
  16871. default: true
  16872. },
  16873. {
  16874. name: "Macro",
  16875. height: math.unit(200, "feet")
  16876. },
  16877. ]
  16878. ))
  16879. characterMakers.push(() => makeCharacter(
  16880. { name: "Atticus" },
  16881. {
  16882. front: {
  16883. height: math.unit(5 + 9 / 12, "feet"),
  16884. weight: math.unit(190, "lb"),
  16885. name: "Front",
  16886. image: {
  16887. source: "./media/characters/atticus/front.svg",
  16888. extra: 2934 / 2785,
  16889. bottom: 0.025
  16890. }
  16891. },
  16892. },
  16893. [
  16894. {
  16895. name: "Normal",
  16896. height: math.unit(5 + 9 / 12, "feet"),
  16897. default: true
  16898. },
  16899. {
  16900. name: "Macro",
  16901. height: math.unit(180, "feet")
  16902. },
  16903. ]
  16904. ))
  16905. characterMakers.push(() => makeCharacter(
  16906. { name: "Milo" },
  16907. {
  16908. side: {
  16909. height: math.unit(9, "feet"),
  16910. weight: math.unit(650, "lb"),
  16911. name: "Side",
  16912. image: {
  16913. source: "./media/characters/milo/side.svg",
  16914. extra: 2644 / 2310,
  16915. bottom: 0.032
  16916. }
  16917. },
  16918. },
  16919. [
  16920. {
  16921. name: "Normal",
  16922. height: math.unit(9, "feet"),
  16923. default: true
  16924. },
  16925. {
  16926. name: "Macro",
  16927. height: math.unit(300, "feet")
  16928. },
  16929. ]
  16930. ))
  16931. characterMakers.push(() => makeCharacter(
  16932. { name: "Ijzer" },
  16933. {
  16934. side: {
  16935. height: math.unit(8, "meters"),
  16936. weight: math.unit(90000, "kg"),
  16937. name: "Side",
  16938. image: {
  16939. source: "./media/characters/ijzer/side.svg",
  16940. extra: 2756 / 1600,
  16941. bottom: 0.01
  16942. }
  16943. },
  16944. },
  16945. [
  16946. {
  16947. name: "Small",
  16948. height: math.unit(3, "meters")
  16949. },
  16950. {
  16951. name: "Normal",
  16952. height: math.unit(8, "meters"),
  16953. default: true
  16954. },
  16955. {
  16956. name: "Normal+",
  16957. height: math.unit(10, "meters")
  16958. },
  16959. {
  16960. name: "Bigger",
  16961. height: math.unit(24, "meters")
  16962. },
  16963. {
  16964. name: "Huge",
  16965. height: math.unit(80, "meters")
  16966. },
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Luca Cervicum" },
  16971. {
  16972. front: {
  16973. height: math.unit(6 + 2 / 12, "feet"),
  16974. weight: math.unit(153, "lb"),
  16975. name: "Front",
  16976. image: {
  16977. source: "./media/characters/luca-cervicum/front.svg",
  16978. extra: 370 / 327,
  16979. bottom: 0.015
  16980. }
  16981. },
  16982. back: {
  16983. height: math.unit(6 + 2 / 12, "feet"),
  16984. weight: math.unit(153, "lb"),
  16985. name: "Back",
  16986. image: {
  16987. source: "./media/characters/luca-cervicum/back.svg",
  16988. extra: 367 / 333,
  16989. bottom: 0.005
  16990. }
  16991. },
  16992. frontGear: {
  16993. height: math.unit(6 + 2 / 12, "feet"),
  16994. weight: math.unit(173, "lb"),
  16995. name: "Front (Gear)",
  16996. image: {
  16997. source: "./media/characters/luca-cervicum/front-gear.svg",
  16998. extra: 377 / 333,
  16999. bottom: 0.006
  17000. }
  17001. },
  17002. },
  17003. [
  17004. {
  17005. name: "Normal",
  17006. height: math.unit(6 + 2 / 12, "feet"),
  17007. default: true
  17008. },
  17009. ]
  17010. ))
  17011. characterMakers.push(() => makeCharacter(
  17012. { name: "Oliver" },
  17013. {
  17014. front: {
  17015. height: math.unit(6 + 1 / 12, "feet"),
  17016. weight: math.unit(304, "lb"),
  17017. name: "Front",
  17018. image: {
  17019. source: "./media/characters/oliver/front.svg",
  17020. extra: 157 / 143,
  17021. bottom: 0.08
  17022. }
  17023. },
  17024. },
  17025. [
  17026. {
  17027. name: "Normal",
  17028. height: math.unit(6 + 1 / 12, "feet"),
  17029. default: true
  17030. },
  17031. ]
  17032. ))
  17033. characterMakers.push(() => makeCharacter(
  17034. { name: "Shane" },
  17035. {
  17036. front: {
  17037. height: math.unit(5 + 7 / 12, "feet"),
  17038. weight: math.unit(140, "lb"),
  17039. name: "Front",
  17040. image: {
  17041. source: "./media/characters/shane/front.svg",
  17042. extra: 304 / 289,
  17043. bottom: 0.005
  17044. }
  17045. },
  17046. },
  17047. [
  17048. {
  17049. name: "Normal",
  17050. height: math.unit(5 + 7 / 12, "feet"),
  17051. default: true
  17052. },
  17053. ]
  17054. ))
  17055. characterMakers.push(() => makeCharacter(
  17056. { name: "Shin" },
  17057. {
  17058. front: {
  17059. height: math.unit(5 + 9 / 12, "feet"),
  17060. weight: math.unit(178, "lb"),
  17061. name: "Front",
  17062. image: {
  17063. source: "./media/characters/shin/front.svg",
  17064. extra: 159 / 151,
  17065. bottom: 0.015
  17066. }
  17067. },
  17068. },
  17069. [
  17070. {
  17071. name: "Normal",
  17072. height: math.unit(5 + 9 / 12, "feet"),
  17073. default: true
  17074. },
  17075. ]
  17076. ))
  17077. characterMakers.push(() => makeCharacter(
  17078. { name: "Xerxes" },
  17079. {
  17080. front: {
  17081. height: math.unit(5 + 10 / 12, "feet"),
  17082. weight: math.unit(168, "lb"),
  17083. name: "Front",
  17084. image: {
  17085. source: "./media/characters/xerxes/front.svg",
  17086. extra: 282 / 260,
  17087. bottom: 0.045
  17088. }
  17089. },
  17090. },
  17091. [
  17092. {
  17093. name: "Normal",
  17094. height: math.unit(5 + 10 / 12, "feet"),
  17095. default: true
  17096. },
  17097. ]
  17098. ))
  17099. characterMakers.push(() => makeCharacter(
  17100. { name: "Chaska" },
  17101. {
  17102. front: {
  17103. height: math.unit(6 + 7 / 12, "feet"),
  17104. weight: math.unit(208, "lb"),
  17105. name: "Front",
  17106. image: {
  17107. source: "./media/characters/chaska/front.svg",
  17108. extra: 332 / 319,
  17109. bottom: 0.015
  17110. }
  17111. },
  17112. },
  17113. [
  17114. {
  17115. name: "Normal",
  17116. height: math.unit(6 + 7 / 12, "feet"),
  17117. default: true
  17118. },
  17119. ]
  17120. ))
  17121. characterMakers.push(() => makeCharacter(
  17122. { name: "Enuk" },
  17123. {
  17124. front: {
  17125. height: math.unit(5 + 8 / 12, "feet"),
  17126. weight: math.unit(208, "lb"),
  17127. name: "Front",
  17128. image: {
  17129. source: "./media/characters/enuk/front.svg",
  17130. extra: 437 / 406,
  17131. bottom: 0.02
  17132. }
  17133. },
  17134. },
  17135. [
  17136. {
  17137. name: "Normal",
  17138. height: math.unit(5 + 8 / 12, "feet"),
  17139. default: true
  17140. },
  17141. ]
  17142. ))
  17143. characterMakers.push(() => makeCharacter(
  17144. { name: "Bruun" },
  17145. {
  17146. front: {
  17147. height: math.unit(5 + 10 / 12, "feet"),
  17148. weight: math.unit(252, "lb"),
  17149. name: "Front",
  17150. image: {
  17151. source: "./media/characters/bruun/front.svg",
  17152. extra: 197 / 187,
  17153. bottom: 0.012
  17154. }
  17155. },
  17156. },
  17157. [
  17158. {
  17159. name: "Normal",
  17160. height: math.unit(5 + 10 / 12, "feet"),
  17161. default: true
  17162. },
  17163. ]
  17164. ))
  17165. characterMakers.push(() => makeCharacter(
  17166. { name: "Alexeev" },
  17167. {
  17168. front: {
  17169. height: math.unit(6 + 10 / 12, "feet"),
  17170. weight: math.unit(255, "lb"),
  17171. name: "Front",
  17172. image: {
  17173. source: "./media/characters/alexeev/front.svg",
  17174. extra: 213 / 200,
  17175. bottom: 0.05
  17176. }
  17177. },
  17178. },
  17179. [
  17180. {
  17181. name: "Normal",
  17182. height: math.unit(6 + 10 / 12, "feet"),
  17183. default: true
  17184. },
  17185. ]
  17186. ))
  17187. characterMakers.push(() => makeCharacter(
  17188. { name: "Evelyn" },
  17189. {
  17190. front: {
  17191. height: math.unit(2 + 8 / 12, "feet"),
  17192. weight: math.unit(22, "lb"),
  17193. name: "Front",
  17194. image: {
  17195. source: "./media/characters/evelyn/front.svg",
  17196. extra: 208 / 180
  17197. }
  17198. },
  17199. },
  17200. [
  17201. {
  17202. name: "Normal",
  17203. height: math.unit(2 + 8 / 12, "feet"),
  17204. default: true
  17205. },
  17206. ]
  17207. ))
  17208. characterMakers.push(() => makeCharacter(
  17209. { name: "Inca" },
  17210. {
  17211. front: {
  17212. height: math.unit(5 + 9 / 12, "feet"),
  17213. weight: math.unit(139, "lb"),
  17214. name: "Front",
  17215. image: {
  17216. source: "./media/characters/inca/front.svg",
  17217. extra: 294 / 291,
  17218. bottom: 0.03
  17219. }
  17220. },
  17221. },
  17222. [
  17223. {
  17224. name: "Normal",
  17225. height: math.unit(5 + 9 / 12, "feet"),
  17226. default: true
  17227. },
  17228. ]
  17229. ))
  17230. characterMakers.push(() => makeCharacter(
  17231. { name: "Magdalene" },
  17232. {
  17233. front: {
  17234. height: math.unit(5 + 1 / 12, "feet"),
  17235. weight: math.unit(84, "lb"),
  17236. name: "Front",
  17237. image: {
  17238. source: "./media/characters/magdalene/front.svg",
  17239. extra: 293 / 273
  17240. }
  17241. },
  17242. },
  17243. [
  17244. {
  17245. name: "Normal",
  17246. height: math.unit(5 + 1 / 12, "feet"),
  17247. default: true
  17248. },
  17249. ]
  17250. ))
  17251. characterMakers.push(() => makeCharacter(
  17252. { name: "Mera" },
  17253. {
  17254. front: {
  17255. height: math.unit(6 + 3 / 12, "feet"),
  17256. weight: math.unit(185, "lb"),
  17257. name: "Front",
  17258. image: {
  17259. source: "./media/characters/mera/front.svg",
  17260. extra: 291 / 277,
  17261. bottom: 0.03
  17262. }
  17263. },
  17264. },
  17265. [
  17266. {
  17267. name: "Normal",
  17268. height: math.unit(6 + 3 / 12, "feet"),
  17269. default: true
  17270. },
  17271. ]
  17272. ))
  17273. characterMakers.push(() => makeCharacter(
  17274. { name: "Ceres" },
  17275. {
  17276. front: {
  17277. height: math.unit(6 + 7 / 12, "feet"),
  17278. weight: math.unit(160, "lb"),
  17279. name: "Front",
  17280. image: {
  17281. source: "./media/characters/ceres/front.svg",
  17282. extra: 1023 / 950,
  17283. bottom: 0.027
  17284. }
  17285. },
  17286. back: {
  17287. height: math.unit(6 + 7 / 12, "feet"),
  17288. weight: math.unit(160, "lb"),
  17289. name: "Back",
  17290. image: {
  17291. source: "./media/characters/ceres/back.svg",
  17292. extra: 1023 / 950
  17293. }
  17294. },
  17295. },
  17296. [
  17297. {
  17298. name: "Normal",
  17299. height: math.unit(6 + 7 / 12, "feet"),
  17300. default: true
  17301. },
  17302. ]
  17303. ))
  17304. characterMakers.push(() => makeCharacter(
  17305. { name: "Kris" },
  17306. {
  17307. front: {
  17308. height: math.unit(5 + 10 / 12, "feet"),
  17309. weight: math.unit(150, "lb"),
  17310. name: "Front",
  17311. image: {
  17312. source: "./media/characters/kris/front.svg",
  17313. extra: 885 / 803,
  17314. bottom: 0.03
  17315. }
  17316. },
  17317. },
  17318. [
  17319. {
  17320. name: "Normal",
  17321. height: math.unit(5 + 10 / 12, "feet"),
  17322. default: true
  17323. },
  17324. ]
  17325. ))
  17326. characterMakers.push(() => makeCharacter(
  17327. { name: "Taluthus" },
  17328. {
  17329. front: {
  17330. height: math.unit(7, "feet"),
  17331. weight: math.unit(120, "kg"),
  17332. name: "Front",
  17333. image: {
  17334. source: "./media/characters/taluthus/front.svg",
  17335. extra: 903 / 833,
  17336. bottom: 0.015
  17337. }
  17338. },
  17339. },
  17340. [
  17341. {
  17342. name: "Normal",
  17343. height: math.unit(7, "feet"),
  17344. default: true
  17345. },
  17346. {
  17347. name: "Macro",
  17348. height: math.unit(300, "feet")
  17349. },
  17350. ]
  17351. ))
  17352. characterMakers.push(() => makeCharacter(
  17353. { name: "Dawn" },
  17354. {
  17355. front: {
  17356. height: math.unit(5 + 9 / 12, "feet"),
  17357. weight: math.unit(145, "lb"),
  17358. name: "Front",
  17359. image: {
  17360. source: "./media/characters/dawn/front.svg",
  17361. extra: 2094 / 2016,
  17362. bottom: 0.025
  17363. }
  17364. },
  17365. back: {
  17366. height: math.unit(5 + 9 / 12, "feet"),
  17367. weight: math.unit(160, "lb"),
  17368. name: "Back",
  17369. image: {
  17370. source: "./media/characters/dawn/back.svg",
  17371. extra: 2112 / 2080,
  17372. bottom: 0.005
  17373. }
  17374. },
  17375. },
  17376. [
  17377. {
  17378. name: "Normal",
  17379. height: math.unit(6 + 7 / 12, "feet"),
  17380. default: true
  17381. },
  17382. ]
  17383. ))
  17384. characterMakers.push(() => makeCharacter(
  17385. { name: "Arador" },
  17386. {
  17387. anthro: {
  17388. height: math.unit(8 + 3 / 12, "feet"),
  17389. weight: math.unit(450, "lb"),
  17390. name: "Anthro",
  17391. image: {
  17392. source: "./media/characters/arador/anthro.svg",
  17393. extra: 1835 / 1718,
  17394. bottom: 0.025
  17395. }
  17396. },
  17397. feral: {
  17398. height: math.unit(4, "feet"),
  17399. weight: math.unit(200, "lb"),
  17400. name: "Feral",
  17401. image: {
  17402. source: "./media/characters/arador/feral.svg",
  17403. extra: 1683 / 1514,
  17404. bottom: 0.07
  17405. }
  17406. },
  17407. },
  17408. [
  17409. {
  17410. name: "Normal",
  17411. height: math.unit(8 + 3 / 12, "feet")
  17412. },
  17413. {
  17414. name: "Macro",
  17415. height: math.unit(82.5, "feet"),
  17416. default: true
  17417. },
  17418. ]
  17419. ))
  17420. characterMakers.push(() => makeCharacter(
  17421. { name: "Dharsi" },
  17422. {
  17423. front: {
  17424. height: math.unit(5 + 10 / 12, "feet"),
  17425. weight: math.unit(125, "lb"),
  17426. name: "Front",
  17427. image: {
  17428. source: "./media/characters/dharsi/front.svg",
  17429. extra: 716 / 630,
  17430. bottom: 0.035
  17431. }
  17432. },
  17433. },
  17434. [
  17435. {
  17436. name: "Nano",
  17437. height: math.unit(100, "nm")
  17438. },
  17439. {
  17440. name: "Micro",
  17441. height: math.unit(2, "inches")
  17442. },
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(5 + 10 / 12, "feet"),
  17446. default: true
  17447. },
  17448. {
  17449. name: "Macro",
  17450. height: math.unit(1000, "feet")
  17451. },
  17452. {
  17453. name: "Megamacro",
  17454. height: math.unit(10, "miles")
  17455. },
  17456. {
  17457. name: "Gigamacro",
  17458. height: math.unit(3000, "miles")
  17459. },
  17460. {
  17461. name: "Teramacro",
  17462. height: math.unit(500000, "miles")
  17463. },
  17464. {
  17465. name: "Teramacro+",
  17466. height: math.unit(30, "galaxies")
  17467. },
  17468. ]
  17469. ))
  17470. characterMakers.push(() => makeCharacter(
  17471. { name: "Deathy" },
  17472. {
  17473. front: {
  17474. height: math.unit(6, "feet"),
  17475. weight: math.unit(150, "lb"),
  17476. name: "Front",
  17477. image: {
  17478. source: "./media/characters/deathy/front.svg",
  17479. extra: 1552 / 1463,
  17480. bottom: 0.025
  17481. }
  17482. },
  17483. side: {
  17484. height: math.unit(6, "feet"),
  17485. weight: math.unit(150, "lb"),
  17486. name: "Side",
  17487. image: {
  17488. source: "./media/characters/deathy/side.svg",
  17489. extra: 1604 / 1455,
  17490. bottom: 0.025
  17491. }
  17492. },
  17493. back: {
  17494. height: math.unit(6, "feet"),
  17495. weight: math.unit(150, "lb"),
  17496. name: "Back",
  17497. image: {
  17498. source: "./media/characters/deathy/back.svg",
  17499. extra: 1580 / 1463,
  17500. bottom: 0.005
  17501. }
  17502. },
  17503. },
  17504. [
  17505. {
  17506. name: "Micro",
  17507. height: math.unit(5, "millimeters")
  17508. },
  17509. {
  17510. name: "Normal",
  17511. height: math.unit(6 + 5 / 12, "feet"),
  17512. default: true
  17513. },
  17514. ]
  17515. ))
  17516. characterMakers.push(() => makeCharacter(
  17517. { name: "Juniper" },
  17518. {
  17519. front: {
  17520. height: math.unit(16, "feet"),
  17521. weight: math.unit(4000, "lb"),
  17522. name: "Front",
  17523. image: {
  17524. source: "./media/characters/juniper/front.svg",
  17525. bottom: 0.04
  17526. }
  17527. },
  17528. },
  17529. [
  17530. {
  17531. name: "Normal",
  17532. height: math.unit(16, "feet"),
  17533. default: true
  17534. },
  17535. ]
  17536. ))
  17537. characterMakers.push(() => makeCharacter(
  17538. { name: "Hipster" },
  17539. {
  17540. front: {
  17541. height: math.unit(6, "feet"),
  17542. weight: math.unit(150, "lb"),
  17543. name: "Front",
  17544. image: {
  17545. source: "./media/characters/hipster/front.svg",
  17546. extra: 1312 / 1209,
  17547. bottom: 0.025
  17548. }
  17549. },
  17550. back: {
  17551. height: math.unit(6, "feet"),
  17552. weight: math.unit(150, "lb"),
  17553. name: "Back",
  17554. image: {
  17555. source: "./media/characters/hipster/back.svg",
  17556. extra: 1281 / 1196,
  17557. bottom: 0.01
  17558. }
  17559. },
  17560. },
  17561. [
  17562. {
  17563. name: "Micro",
  17564. height: math.unit(1, "mm")
  17565. },
  17566. {
  17567. name: "Normal",
  17568. height: math.unit(4, "inches"),
  17569. default: true
  17570. },
  17571. {
  17572. name: "Macro",
  17573. height: math.unit(500, "feet")
  17574. },
  17575. {
  17576. name: "Megamacro",
  17577. height: math.unit(1000, "miles")
  17578. },
  17579. ]
  17580. ))
  17581. characterMakers.push(() => makeCharacter(
  17582. { name: "Tendirmuldr" },
  17583. {
  17584. front: {
  17585. height: math.unit(6, "feet"),
  17586. weight: math.unit(150, "lb"),
  17587. name: "Front",
  17588. image: {
  17589. source: "./media/characters/tendirmuldr/front.svg",
  17590. extra: 1878 / 1772,
  17591. bottom: 0.015
  17592. }
  17593. },
  17594. },
  17595. [
  17596. {
  17597. name: "Megamacro",
  17598. height: math.unit(1500, "miles"),
  17599. default: true
  17600. },
  17601. ]
  17602. ))
  17603. characterMakers.push(() => makeCharacter(
  17604. { name: "Mort" },
  17605. {
  17606. front: {
  17607. height: math.unit(14, "feet"),
  17608. weight: math.unit(12000, "lb"),
  17609. name: "Front",
  17610. image: {
  17611. source: "./media/characters/mort/front.svg",
  17612. extra: 365 / 318,
  17613. bottom: 0.01
  17614. }
  17615. },
  17616. side: {
  17617. height: math.unit(14, "feet"),
  17618. weight: math.unit(12000, "lb"),
  17619. name: "Side",
  17620. image: {
  17621. source: "./media/characters/mort/side.svg",
  17622. extra: 365 / 318,
  17623. bottom: 0.052
  17624. },
  17625. default: true
  17626. },
  17627. back: {
  17628. height: math.unit(14, "feet"),
  17629. weight: math.unit(12000, "lb"),
  17630. name: "Back",
  17631. image: {
  17632. source: "./media/characters/mort/back.svg",
  17633. extra: 371 / 332,
  17634. bottom: 0.18
  17635. }
  17636. },
  17637. },
  17638. [
  17639. {
  17640. name: "Normal",
  17641. height: math.unit(14, "feet"),
  17642. default: true
  17643. },
  17644. ]
  17645. ))
  17646. characterMakers.push(() => makeCharacter(
  17647. { name: "Lycoa" },
  17648. {
  17649. front: {
  17650. height: math.unit(8, "feet"),
  17651. weight: math.unit(1, "ton"),
  17652. name: "Front",
  17653. image: {
  17654. source: "./media/characters/lycoa/front.svg",
  17655. extra: 1875 / 1789,
  17656. bottom: 0.022
  17657. }
  17658. },
  17659. back: {
  17660. height: math.unit(8, "feet"),
  17661. weight: math.unit(1, "ton"),
  17662. name: "Back",
  17663. image: {
  17664. source: "./media/characters/lycoa/back.svg",
  17665. extra: 1835 / 1781,
  17666. bottom: 0.03
  17667. }
  17668. },
  17669. },
  17670. [
  17671. {
  17672. name: "Normal",
  17673. height: math.unit(8, "feet"),
  17674. default: true
  17675. },
  17676. {
  17677. name: "Macro",
  17678. height: math.unit(30, "feet")
  17679. },
  17680. ]
  17681. ))
  17682. characterMakers.push(() => makeCharacter(
  17683. { name: "Naldara" },
  17684. {
  17685. front: {
  17686. height: math.unit(4 + 2 / 12, "feet"),
  17687. weight: math.unit(70, "lb"),
  17688. name: "Front",
  17689. image: {
  17690. source: "./media/characters/naldara/front.svg",
  17691. extra: 841 / 720,
  17692. bottom: 0.04
  17693. }
  17694. },
  17695. },
  17696. [
  17697. {
  17698. name: "Normal",
  17699. height: math.unit(4 + 2 / 12, "feet"),
  17700. default: true
  17701. },
  17702. ]
  17703. ))
  17704. characterMakers.push(() => makeCharacter(
  17705. { name: "Briar" },
  17706. {
  17707. front: {
  17708. height: math.unit(13 + 7 / 12, "feet"),
  17709. weight: math.unit(1500, "lb"),
  17710. name: "Front",
  17711. image: {
  17712. source: "./media/characters/briar/front.svg",
  17713. extra: 626 / 596,
  17714. bottom: 0.08
  17715. }
  17716. },
  17717. },
  17718. [
  17719. {
  17720. name: "Normal",
  17721. height: math.unit(13 + 7 / 12, "feet"),
  17722. default: true
  17723. },
  17724. ]
  17725. ))
  17726. characterMakers.push(() => makeCharacter(
  17727. { name: "Vanguard" },
  17728. {
  17729. side: {
  17730. height: math.unit(10, "feet"),
  17731. weight: math.unit(500, "lb"),
  17732. name: "Side",
  17733. image: {
  17734. source: "./media/characters/vanguard/side.svg",
  17735. extra: 502 / 425,
  17736. bottom: 0.087
  17737. }
  17738. },
  17739. },
  17740. [
  17741. {
  17742. name: "Normal",
  17743. height: math.unit(10, "feet"),
  17744. default: true
  17745. },
  17746. ]
  17747. ))
  17748. characterMakers.push(() => makeCharacter(
  17749. { name: "Artemis" },
  17750. {
  17751. front: {
  17752. height: math.unit(7.5, "feet"),
  17753. weight: math.unit(2, "lb"),
  17754. name: "Front",
  17755. image: {
  17756. source: "./media/characters/artemis/front.svg",
  17757. extra: 1192 / 1075,
  17758. bottom: 0.07
  17759. }
  17760. },
  17761. },
  17762. [
  17763. {
  17764. name: "Normal",
  17765. height: math.unit(7.5, "feet"),
  17766. default: true
  17767. },
  17768. {
  17769. name: "Enlarged",
  17770. height: math.unit(12, "feet")
  17771. },
  17772. ]
  17773. ))
  17774. characterMakers.push(() => makeCharacter(
  17775. { name: "Kira" },
  17776. {
  17777. front: {
  17778. height: math.unit(5 + 3 / 12, "feet"),
  17779. weight: math.unit(160, "lb"),
  17780. name: "Front",
  17781. image: {
  17782. source: "./media/characters/kira/front.svg",
  17783. extra: 906 / 786,
  17784. bottom: 0.01
  17785. }
  17786. },
  17787. back: {
  17788. height: math.unit(5 + 3 / 12, "feet"),
  17789. weight: math.unit(160, "lb"),
  17790. name: "Back",
  17791. image: {
  17792. source: "./media/characters/kira/back.svg",
  17793. extra: 882 / 757,
  17794. bottom: 0.005
  17795. }
  17796. },
  17797. frontDressed: {
  17798. height: math.unit(5 + 3 / 12, "feet"),
  17799. weight: math.unit(160, "lb"),
  17800. name: "Front (Dressed)",
  17801. image: {
  17802. source: "./media/characters/kira/front-dressed.svg",
  17803. extra: 906 / 786,
  17804. bottom: 0.01
  17805. }
  17806. },
  17807. beans: {
  17808. height: math.unit(0.92, "feet"),
  17809. name: "Beans",
  17810. image: {
  17811. source: "./media/characters/kira/beans.svg"
  17812. }
  17813. },
  17814. },
  17815. [
  17816. {
  17817. name: "Normal",
  17818. height: math.unit(5 + 3 / 12, "feet"),
  17819. default: true
  17820. },
  17821. ]
  17822. ))
  17823. characterMakers.push(() => makeCharacter(
  17824. { name: "Scramble" },
  17825. {
  17826. front: {
  17827. height: math.unit(5 + 4 / 12, "feet"),
  17828. weight: math.unit(145, "lb"),
  17829. name: "Front",
  17830. image: {
  17831. source: "./media/characters/scramble/front.svg",
  17832. extra: 763 / 727,
  17833. bottom: 0.05
  17834. }
  17835. },
  17836. back: {
  17837. height: math.unit(5 + 4 / 12, "feet"),
  17838. weight: math.unit(145, "lb"),
  17839. name: "Back",
  17840. image: {
  17841. source: "./media/characters/scramble/back.svg",
  17842. extra: 826 / 737,
  17843. bottom: 0.002
  17844. }
  17845. },
  17846. },
  17847. [
  17848. {
  17849. name: "Normal",
  17850. height: math.unit(5 + 4 / 12, "feet"),
  17851. default: true
  17852. },
  17853. ]
  17854. ))
  17855. characterMakers.push(() => makeCharacter(
  17856. { name: "Biscuit" },
  17857. {
  17858. side: {
  17859. height: math.unit(6 + 2 / 12, "feet"),
  17860. weight: math.unit(190, "lb"),
  17861. name: "Side",
  17862. image: {
  17863. source: "./media/characters/biscuit/side.svg",
  17864. extra: 858 / 791,
  17865. bottom: 0.044
  17866. }
  17867. },
  17868. },
  17869. [
  17870. {
  17871. name: "Normal",
  17872. height: math.unit(6 + 2 / 12, "feet"),
  17873. default: true
  17874. },
  17875. ]
  17876. ))
  17877. characterMakers.push(() => makeCharacter(
  17878. { name: "Poffin" },
  17879. {
  17880. front: {
  17881. height: math.unit(5 + 2 / 12, "feet"),
  17882. weight: math.unit(120, "lb"),
  17883. name: "Front",
  17884. image: {
  17885. source: "./media/characters/poffin/front.svg",
  17886. extra: 786 / 680,
  17887. bottom: 0.005
  17888. }
  17889. },
  17890. },
  17891. [
  17892. {
  17893. name: "Normal",
  17894. height: math.unit(5 + 2 / 12, "feet"),
  17895. default: true
  17896. },
  17897. ]
  17898. ))
  17899. characterMakers.push(() => makeCharacter(
  17900. { name: "Dhari" },
  17901. {
  17902. front: {
  17903. height: math.unit(6 + 3 / 12, "feet"),
  17904. weight: math.unit(519, "lb"),
  17905. name: "Front",
  17906. image: {
  17907. source: "./media/characters/dhari/front.svg",
  17908. extra: 1048 / 946,
  17909. bottom: 0.015
  17910. }
  17911. },
  17912. back: {
  17913. height: math.unit(6 + 3 / 12, "feet"),
  17914. weight: math.unit(519, "lb"),
  17915. name: "Back",
  17916. image: {
  17917. source: "./media/characters/dhari/back.svg",
  17918. extra: 1048 / 931,
  17919. bottom: 0.005
  17920. }
  17921. },
  17922. frontDressed: {
  17923. height: math.unit(6 + 3 / 12, "feet"),
  17924. weight: math.unit(519, "lb"),
  17925. name: "Front (Dressed)",
  17926. image: {
  17927. source: "./media/characters/dhari/front-dressed.svg",
  17928. extra: 1713 / 1546,
  17929. bottom: 0.02
  17930. }
  17931. },
  17932. backDressed: {
  17933. height: math.unit(6 + 3 / 12, "feet"),
  17934. weight: math.unit(519, "lb"),
  17935. name: "Back (Dressed)",
  17936. image: {
  17937. source: "./media/characters/dhari/back-dressed.svg",
  17938. extra: 1699 / 1537,
  17939. bottom: 0.01
  17940. }
  17941. },
  17942. maw: {
  17943. height: math.unit(0.95, "feet"),
  17944. name: "Maw",
  17945. image: {
  17946. source: "./media/characters/dhari/maw.svg"
  17947. }
  17948. },
  17949. wereFront: {
  17950. height: math.unit(12 + 8 / 12, "feet"),
  17951. weight: math.unit(4000, "lb"),
  17952. name: "Front (Were)",
  17953. image: {
  17954. source: "./media/characters/dhari/were-front.svg",
  17955. extra: 1065 / 969,
  17956. bottom: 0.015
  17957. }
  17958. },
  17959. wereBack: {
  17960. height: math.unit(12 + 8 / 12, "feet"),
  17961. weight: math.unit(4000, "lb"),
  17962. name: "Back (Were)",
  17963. image: {
  17964. source: "./media/characters/dhari/were-back.svg",
  17965. extra: 1065 / 969,
  17966. bottom: 0.012
  17967. }
  17968. },
  17969. wereMaw: {
  17970. height: math.unit(0.625, "meters"),
  17971. name: "Maw (Were)",
  17972. image: {
  17973. source: "./media/characters/dhari/were-maw.svg"
  17974. }
  17975. },
  17976. },
  17977. [
  17978. {
  17979. name: "Normal",
  17980. height: math.unit(6 + 3 / 12, "feet"),
  17981. default: true
  17982. },
  17983. ]
  17984. ))
  17985. characterMakers.push(() => makeCharacter(
  17986. { name: "Rena Dyne" },
  17987. {
  17988. anthro: {
  17989. height: math.unit(5 + 7 / 12, "feet"),
  17990. weight: math.unit(175, "lb"),
  17991. name: "Anthro",
  17992. image: {
  17993. source: "./media/characters/rena-dyne/anthro.svg",
  17994. extra: 1849 / 1785,
  17995. bottom: 0.005
  17996. }
  17997. },
  17998. taur: {
  17999. height: math.unit(15 + 6 / 12, "feet"),
  18000. weight: math.unit(8000, "lb"),
  18001. name: "Taur",
  18002. image: {
  18003. source: "./media/characters/rena-dyne/taur.svg",
  18004. extra: 2315 / 2234,
  18005. bottom: 0.033
  18006. }
  18007. },
  18008. },
  18009. [
  18010. {
  18011. name: "Normal",
  18012. height: math.unit(5 + 7 / 12, "feet"),
  18013. default: true
  18014. },
  18015. ]
  18016. ))
  18017. characterMakers.push(() => makeCharacter(
  18018. { name: "Weremeep" },
  18019. {
  18020. front: {
  18021. height: math.unit(8, "feet"),
  18022. weight: math.unit(600, "lb"),
  18023. name: "Front",
  18024. image: {
  18025. source: "./media/characters/weremeep/front.svg",
  18026. extra: 967 / 862,
  18027. bottom: 0.01
  18028. }
  18029. },
  18030. },
  18031. [
  18032. {
  18033. name: "Normal",
  18034. height: math.unit(8, "feet"),
  18035. default: true
  18036. },
  18037. {
  18038. name: "Lorg",
  18039. height: math.unit(12, "feet")
  18040. },
  18041. {
  18042. name: "Oh Lawd She Comin'",
  18043. height: math.unit(20, "feet")
  18044. },
  18045. ]
  18046. ))
  18047. characterMakers.push(() => makeCharacter(
  18048. { name: "Reza" },
  18049. {
  18050. front: {
  18051. height: math.unit(4, "feet"),
  18052. weight: math.unit(90, "lb"),
  18053. name: "Front",
  18054. image: {
  18055. source: "./media/characters/reza/front.svg",
  18056. extra: 1183 / 1111,
  18057. bottom: 0.017
  18058. }
  18059. },
  18060. back: {
  18061. height: math.unit(4, "feet"),
  18062. weight: math.unit(90, "lb"),
  18063. name: "Back",
  18064. image: {
  18065. source: "./media/characters/reza/back.svg",
  18066. extra: 1183 / 1111,
  18067. bottom: 0.01
  18068. }
  18069. },
  18070. drake: {
  18071. height: math.unit(30, "feet"),
  18072. weight: math.unit(246960, "lb"),
  18073. name: "Drake",
  18074. image: {
  18075. source: "./media/characters/reza/drake.svg",
  18076. extra: 2350/2024,
  18077. bottom: 60.7/2403
  18078. }
  18079. },
  18080. },
  18081. [
  18082. {
  18083. name: "Normal",
  18084. height: math.unit(4, "feet"),
  18085. default: true
  18086. },
  18087. ]
  18088. ))
  18089. characterMakers.push(() => makeCharacter(
  18090. { name: "Athea" },
  18091. {
  18092. side: {
  18093. height: math.unit(15, "feet"),
  18094. weight: math.unit(14, "tons"),
  18095. name: "Side",
  18096. image: {
  18097. source: "./media/characters/athea/side.svg",
  18098. extra: 960 / 540,
  18099. bottom: 0.003
  18100. }
  18101. },
  18102. sitting: {
  18103. height: math.unit(6 * 2.85, "feet"),
  18104. weight: math.unit(14, "tons"),
  18105. name: "Sitting",
  18106. image: {
  18107. source: "./media/characters/athea/sitting.svg",
  18108. extra: 621 / 581,
  18109. bottom: 0.075
  18110. }
  18111. },
  18112. maw: {
  18113. height: math.unit(7.59498031496063, "feet"),
  18114. name: "Maw",
  18115. image: {
  18116. source: "./media/characters/athea/maw.svg"
  18117. }
  18118. },
  18119. },
  18120. [
  18121. {
  18122. name: "Lap Cat",
  18123. height: math.unit(2.5, "feet")
  18124. },
  18125. {
  18126. name: "Minimacro",
  18127. height: math.unit(15, "feet"),
  18128. default: true
  18129. },
  18130. {
  18131. name: "Macro",
  18132. height: math.unit(120, "feet")
  18133. },
  18134. {
  18135. name: "Macro+",
  18136. height: math.unit(640, "feet")
  18137. },
  18138. {
  18139. name: "Colossus",
  18140. height: math.unit(2.2, "miles")
  18141. },
  18142. ]
  18143. ))
  18144. characterMakers.push(() => makeCharacter(
  18145. { name: "Seroko" },
  18146. {
  18147. front: {
  18148. height: math.unit(8 + 8 / 12, "feet"),
  18149. weight: math.unit(130, "kg"),
  18150. name: "Front",
  18151. image: {
  18152. source: "./media/characters/seroko/front.svg",
  18153. extra: 1385 / 1280,
  18154. bottom: 0.025
  18155. }
  18156. },
  18157. back: {
  18158. height: math.unit(8 + 8 / 12, "feet"),
  18159. weight: math.unit(130, "kg"),
  18160. name: "Back",
  18161. image: {
  18162. source: "./media/characters/seroko/back.svg",
  18163. extra: 1369 / 1238,
  18164. bottom: 0.018
  18165. }
  18166. },
  18167. frontDressed: {
  18168. height: math.unit(8 + 8 / 12, "feet"),
  18169. weight: math.unit(130, "kg"),
  18170. name: "Front (Dressed)",
  18171. image: {
  18172. source: "./media/characters/seroko/front-dressed.svg",
  18173. extra: 1366 / 1275,
  18174. bottom: 0.03
  18175. }
  18176. },
  18177. },
  18178. [
  18179. {
  18180. name: "Normal",
  18181. height: math.unit(8 + 8 / 12, "feet"),
  18182. default: true
  18183. },
  18184. ]
  18185. ))
  18186. characterMakers.push(() => makeCharacter(
  18187. { name: "Quatzi" },
  18188. {
  18189. front: {
  18190. height: math.unit(5.5, "feet"),
  18191. weight: math.unit(160, "lb"),
  18192. name: "Front",
  18193. image: {
  18194. source: "./media/characters/quatzi/front.svg",
  18195. extra: 2346 / 2242,
  18196. bottom: 0.015
  18197. }
  18198. },
  18199. },
  18200. [
  18201. {
  18202. name: "Normal",
  18203. height: math.unit(5.5, "feet"),
  18204. default: true
  18205. },
  18206. {
  18207. name: "Big",
  18208. height: math.unit(7.7, "feet")
  18209. },
  18210. ]
  18211. ))
  18212. characterMakers.push(() => makeCharacter(
  18213. { name: "Sen" },
  18214. {
  18215. front: {
  18216. height: math.unit(5 + 11 / 12, "feet"),
  18217. weight: math.unit(180, "lb"),
  18218. name: "Front",
  18219. image: {
  18220. source: "./media/characters/sen/front.svg",
  18221. extra: 1321 / 1254,
  18222. bottom: 0.015
  18223. }
  18224. },
  18225. side: {
  18226. height: math.unit(5 + 11 / 12, "feet"),
  18227. weight: math.unit(180, "lb"),
  18228. name: "Side",
  18229. image: {
  18230. source: "./media/characters/sen/side.svg",
  18231. extra: 1321 / 1254,
  18232. bottom: 0.007
  18233. }
  18234. },
  18235. back: {
  18236. height: math.unit(5 + 11 / 12, "feet"),
  18237. weight: math.unit(180, "lb"),
  18238. name: "Back",
  18239. image: {
  18240. source: "./media/characters/sen/back.svg",
  18241. extra: 1321 / 1254
  18242. }
  18243. },
  18244. },
  18245. [
  18246. {
  18247. name: "Normal",
  18248. height: math.unit(5 + 11 / 12, "feet"),
  18249. default: true
  18250. },
  18251. ]
  18252. ))
  18253. characterMakers.push(() => makeCharacter(
  18254. { name: "Fruity" },
  18255. {
  18256. front: {
  18257. height: math.unit(166.6, "cm"),
  18258. weight: math.unit(66.6, "kg"),
  18259. name: "Front",
  18260. image: {
  18261. source: "./media/characters/fruity/front.svg",
  18262. extra: 1510 / 1386,
  18263. bottom: 0.04
  18264. }
  18265. },
  18266. back: {
  18267. height: math.unit(166.6, "cm"),
  18268. weight: math.unit(66.6, "lb"),
  18269. name: "Back",
  18270. image: {
  18271. source: "./media/characters/fruity/back.svg",
  18272. extra: 1563 / 1435,
  18273. bottom: 0.005
  18274. }
  18275. },
  18276. },
  18277. [
  18278. {
  18279. name: "Normal",
  18280. height: math.unit(166.6, "cm"),
  18281. default: true
  18282. },
  18283. {
  18284. name: "Demonic",
  18285. height: math.unit(166.6, "feet")
  18286. },
  18287. ]
  18288. ))
  18289. characterMakers.push(() => makeCharacter(
  18290. { name: "Zost" },
  18291. {
  18292. side: {
  18293. height: math.unit(10, "feet"),
  18294. weight: math.unit(500, "lb"),
  18295. name: "Side",
  18296. image: {
  18297. source: "./media/characters/zost/side.svg",
  18298. extra: 966 / 880,
  18299. bottom: 0.075
  18300. }
  18301. },
  18302. mawFront: {
  18303. height: math.unit(1.08, "meters"),
  18304. name: "Maw (Front)",
  18305. image: {
  18306. source: "./media/characters/zost/maw-front.svg"
  18307. }
  18308. },
  18309. mawSide: {
  18310. height: math.unit(2.66, "feet"),
  18311. name: "Maw (Side)",
  18312. image: {
  18313. source: "./media/characters/zost/maw-side.svg"
  18314. }
  18315. },
  18316. },
  18317. [
  18318. {
  18319. name: "Normal",
  18320. height: math.unit(10, "feet"),
  18321. default: true
  18322. },
  18323. ]
  18324. ))
  18325. characterMakers.push(() => makeCharacter(
  18326. { name: "Luci" },
  18327. {
  18328. front: {
  18329. height: math.unit(5 + 4 / 12, "feet"),
  18330. weight: math.unit(120, "lb"),
  18331. name: "Front",
  18332. image: {
  18333. source: "./media/characters/luci/front.svg",
  18334. extra: 1985 / 1884,
  18335. bottom: 0.04
  18336. }
  18337. },
  18338. back: {
  18339. height: math.unit(5 + 4 / 12, "feet"),
  18340. weight: math.unit(120, "lb"),
  18341. name: "Back",
  18342. image: {
  18343. source: "./media/characters/luci/back.svg",
  18344. extra: 1892 / 1791,
  18345. bottom: 0.002
  18346. }
  18347. },
  18348. },
  18349. [
  18350. {
  18351. name: "Normal",
  18352. height: math.unit(5 + 4 / 12, "feet"),
  18353. default: true
  18354. },
  18355. ]
  18356. ))
  18357. characterMakers.push(() => makeCharacter(
  18358. { name: "2th" },
  18359. {
  18360. front: {
  18361. height: math.unit(1500, "feet"),
  18362. weight: math.unit(3.8e6, "tons"),
  18363. name: "Front",
  18364. image: {
  18365. source: "./media/characters/2th/front.svg",
  18366. extra: 3489 / 3350,
  18367. bottom: 0.1
  18368. }
  18369. },
  18370. foot: {
  18371. height: math.unit(461, "feet"),
  18372. name: "Foot",
  18373. image: {
  18374. source: "./media/characters/2th/foot.svg"
  18375. }
  18376. },
  18377. },
  18378. [
  18379. {
  18380. name: "\"Micro\"",
  18381. height: math.unit(15 + 7 / 12, "feet")
  18382. },
  18383. {
  18384. name: "Normal",
  18385. height: math.unit(1500, "feet"),
  18386. default: true
  18387. },
  18388. {
  18389. name: "Macro",
  18390. height: math.unit(5000, "feet")
  18391. },
  18392. {
  18393. name: "Megamacro",
  18394. height: math.unit(15, "miles")
  18395. },
  18396. {
  18397. name: "Gigamacro",
  18398. height: math.unit(4000, "miles")
  18399. },
  18400. {
  18401. name: "Galactic",
  18402. height: math.unit(50, "AU")
  18403. },
  18404. ]
  18405. ))
  18406. characterMakers.push(() => makeCharacter(
  18407. { name: "Amethyst" },
  18408. {
  18409. front: {
  18410. height: math.unit(5 + 6 / 12, "feet"),
  18411. weight: math.unit(220, "lb"),
  18412. name: "Front",
  18413. image: {
  18414. source: "./media/characters/amethyst/front.svg",
  18415. extra: 2078 / 2040,
  18416. bottom: 0.045
  18417. }
  18418. },
  18419. back: {
  18420. height: math.unit(5 + 6 / 12, "feet"),
  18421. weight: math.unit(220, "lb"),
  18422. name: "Back",
  18423. image: {
  18424. source: "./media/characters/amethyst/back.svg",
  18425. extra: 2021 / 1989,
  18426. bottom: 0.02
  18427. }
  18428. },
  18429. },
  18430. [
  18431. {
  18432. name: "Normal",
  18433. height: math.unit(5 + 6 / 12, "feet"),
  18434. default: true
  18435. },
  18436. ]
  18437. ))
  18438. characterMakers.push(() => makeCharacter(
  18439. { name: "Yumi Akiyama" },
  18440. {
  18441. front: {
  18442. height: math.unit(4 + 11 / 12, "feet"),
  18443. weight: math.unit(120, "lb"),
  18444. name: "Front",
  18445. image: {
  18446. source: "./media/characters/yumi-akiyama/front.svg",
  18447. extra: 1327 / 1235,
  18448. bottom: 0.02
  18449. }
  18450. },
  18451. back: {
  18452. height: math.unit(4 + 11 / 12, "feet"),
  18453. weight: math.unit(120, "lb"),
  18454. name: "Back",
  18455. image: {
  18456. source: "./media/characters/yumi-akiyama/back.svg",
  18457. extra: 1287 / 1245,
  18458. bottom: 0.002
  18459. }
  18460. },
  18461. },
  18462. [
  18463. {
  18464. name: "Galactic",
  18465. height: math.unit(50, "galaxies"),
  18466. default: true
  18467. },
  18468. {
  18469. name: "Universal",
  18470. height: math.unit(100, "universes")
  18471. },
  18472. ]
  18473. ))
  18474. characterMakers.push(() => makeCharacter(
  18475. { name: "Rifter Yrmori" },
  18476. {
  18477. front: {
  18478. height: math.unit(8, "feet"),
  18479. weight: math.unit(500, "lb"),
  18480. name: "Front",
  18481. image: {
  18482. source: "./media/characters/rifter-yrmori/front.svg",
  18483. extra: 1180 / 1125,
  18484. bottom: 0.02
  18485. }
  18486. },
  18487. back: {
  18488. height: math.unit(8, "feet"),
  18489. weight: math.unit(500, "lb"),
  18490. name: "Back",
  18491. image: {
  18492. source: "./media/characters/rifter-yrmori/back.svg",
  18493. extra: 1190 / 1145,
  18494. bottom: 0.001
  18495. }
  18496. },
  18497. wings: {
  18498. height: math.unit(7.75, "feet"),
  18499. weight: math.unit(500, "lb"),
  18500. name: "Wings",
  18501. image: {
  18502. source: "./media/characters/rifter-yrmori/wings.svg",
  18503. extra: 1357 / 1285
  18504. }
  18505. },
  18506. maw: {
  18507. height: math.unit(0.8, "feet"),
  18508. name: "Maw",
  18509. image: {
  18510. source: "./media/characters/rifter-yrmori/maw.svg"
  18511. }
  18512. },
  18513. },
  18514. [
  18515. {
  18516. name: "Normal",
  18517. height: math.unit(8, "feet"),
  18518. default: true
  18519. },
  18520. {
  18521. name: "Macro",
  18522. height: math.unit(42, "meters")
  18523. },
  18524. ]
  18525. ))
  18526. characterMakers.push(() => makeCharacter(
  18527. { name: "Tahajin" },
  18528. {
  18529. were: {
  18530. height: math.unit(25 + 6 / 12, "feet"),
  18531. weight: math.unit(10000, "lb"),
  18532. name: "Were",
  18533. image: {
  18534. source: "./media/characters/tahajin/were.svg",
  18535. extra: 801 / 770,
  18536. bottom: 0.042
  18537. }
  18538. },
  18539. aquatic: {
  18540. height: math.unit(6 + 4 / 12, "feet"),
  18541. weight: math.unit(160, "lb"),
  18542. name: "Aquatic",
  18543. image: {
  18544. source: "./media/characters/tahajin/aquatic.svg",
  18545. extra: 572 / 542,
  18546. bottom: 0.04
  18547. }
  18548. },
  18549. chow: {
  18550. height: math.unit(8 + 11 / 12, "feet"),
  18551. weight: math.unit(450, "lb"),
  18552. name: "Chow",
  18553. image: {
  18554. source: "./media/characters/tahajin/chow.svg",
  18555. extra: 660 / 640,
  18556. bottom: 0.015
  18557. }
  18558. },
  18559. demiNaga: {
  18560. height: math.unit(6 + 8 / 12, "feet"),
  18561. weight: math.unit(300, "lb"),
  18562. name: "Demi Naga",
  18563. image: {
  18564. source: "./media/characters/tahajin/demi-naga.svg",
  18565. extra: 643 / 615,
  18566. bottom: 0.1
  18567. }
  18568. },
  18569. data: {
  18570. height: math.unit(5, "inches"),
  18571. weight: math.unit(0.1, "lb"),
  18572. name: "Data",
  18573. image: {
  18574. source: "./media/characters/tahajin/data.svg"
  18575. }
  18576. },
  18577. fluu: {
  18578. height: math.unit(5 + 7 / 12, "feet"),
  18579. weight: math.unit(140, "lb"),
  18580. name: "Fluu",
  18581. image: {
  18582. source: "./media/characters/tahajin/fluu.svg",
  18583. extra: 628 / 592,
  18584. bottom: 0.02
  18585. }
  18586. },
  18587. starWarrior: {
  18588. height: math.unit(4 + 5 / 12, "feet"),
  18589. weight: math.unit(50, "lb"),
  18590. name: "Star Warrior",
  18591. image: {
  18592. source: "./media/characters/tahajin/star-warrior.svg"
  18593. }
  18594. },
  18595. },
  18596. [
  18597. {
  18598. name: "Normal",
  18599. height: math.unit(25 + 6 / 12, "feet"),
  18600. default: true
  18601. },
  18602. ]
  18603. ))
  18604. characterMakers.push(() => makeCharacter(
  18605. { name: "Gabira" },
  18606. {
  18607. front: {
  18608. height: math.unit(8, "feet"),
  18609. weight: math.unit(350, "lb"),
  18610. name: "Front",
  18611. image: {
  18612. source: "./media/characters/gabira/front.svg",
  18613. extra: 608 / 580,
  18614. bottom: 0.03
  18615. }
  18616. },
  18617. back: {
  18618. height: math.unit(8, "feet"),
  18619. weight: math.unit(350, "lb"),
  18620. name: "Back",
  18621. image: {
  18622. source: "./media/characters/gabira/back.svg",
  18623. extra: 608 / 580,
  18624. bottom: 0.03
  18625. }
  18626. },
  18627. },
  18628. [
  18629. {
  18630. name: "Normal",
  18631. height: math.unit(8, "feet"),
  18632. default: true
  18633. },
  18634. ]
  18635. ))
  18636. characterMakers.push(() => makeCharacter(
  18637. { name: "Sasha Katraine" },
  18638. {
  18639. front: {
  18640. height: math.unit(5 + 3 / 12, "feet"),
  18641. weight: math.unit(137, "lb"),
  18642. name: "Front",
  18643. image: {
  18644. source: "./media/characters/sasha-katraine/front.svg",
  18645. bottom: 0.045
  18646. }
  18647. },
  18648. },
  18649. [
  18650. {
  18651. name: "Micro",
  18652. height: math.unit(5, "inches")
  18653. },
  18654. {
  18655. name: "Normal",
  18656. height: math.unit(5 + 3 / 12, "feet"),
  18657. default: true
  18658. },
  18659. ]
  18660. ))
  18661. characterMakers.push(() => makeCharacter(
  18662. { name: "Der" },
  18663. {
  18664. side: {
  18665. height: math.unit(4, "inches"),
  18666. weight: math.unit(200, "grams"),
  18667. name: "Side",
  18668. image: {
  18669. source: "./media/characters/der/side.svg",
  18670. extra: 719 / 400,
  18671. bottom: 30.6 / 749.9187
  18672. }
  18673. },
  18674. },
  18675. [
  18676. {
  18677. name: "Micro",
  18678. height: math.unit(4, "inches"),
  18679. default: true
  18680. },
  18681. ]
  18682. ))
  18683. characterMakers.push(() => makeCharacter(
  18684. { name: "Fixerdragon" },
  18685. {
  18686. side: {
  18687. height: math.unit(30, "meters"),
  18688. weight: math.unit(700, "tonnes"),
  18689. name: "Side",
  18690. image: {
  18691. source: "./media/characters/fixerdragon/side.svg",
  18692. extra: (1293.0514 - 116.03) / 1106.86,
  18693. bottom: 116.03 / 1293.0514
  18694. }
  18695. },
  18696. },
  18697. [
  18698. {
  18699. name: "Planck",
  18700. height: math.unit(1.6e-35, "meters")
  18701. },
  18702. {
  18703. name: "Micro",
  18704. height: math.unit(0.4, "meters")
  18705. },
  18706. {
  18707. name: "Normal",
  18708. height: math.unit(30, "meters"),
  18709. default: true
  18710. },
  18711. {
  18712. name: "Megamacro",
  18713. height: math.unit(1.2, "megameters")
  18714. },
  18715. {
  18716. name: "Teramacro",
  18717. height: math.unit(130, "terameters")
  18718. },
  18719. {
  18720. name: "Yottamacro",
  18721. height: math.unit(6200, "yottameters")
  18722. },
  18723. ]
  18724. ));
  18725. characterMakers.push(() => makeCharacter(
  18726. { name: "Kite" },
  18727. {
  18728. front: {
  18729. height: math.unit(8, "feet"),
  18730. weight: math.unit(250, "lb"),
  18731. name: "Front",
  18732. image: {
  18733. source: "./media/characters/kite/front.svg",
  18734. extra: 2796 / 2659,
  18735. bottom: 0.002
  18736. }
  18737. },
  18738. },
  18739. [
  18740. {
  18741. name: "Normal",
  18742. height: math.unit(8, "feet"),
  18743. default: true
  18744. },
  18745. {
  18746. name: "Macro",
  18747. height: math.unit(360, "feet")
  18748. },
  18749. {
  18750. name: "Megamacro",
  18751. height: math.unit(1500, "feet")
  18752. },
  18753. ]
  18754. ))
  18755. characterMakers.push(() => makeCharacter(
  18756. { name: "Poojawa Vynar" },
  18757. {
  18758. front: {
  18759. height: math.unit(5 + 10 / 12, "feet"),
  18760. weight: math.unit(150, "lb"),
  18761. name: "Front",
  18762. image: {
  18763. source: "./media/characters/poojawa-vynar/front.svg",
  18764. extra: (1506.1547 - 55) / 1356.6,
  18765. bottom: 55 / 1506.1547
  18766. }
  18767. },
  18768. frontTailless: {
  18769. height: math.unit(5 + 10 / 12, "feet"),
  18770. weight: math.unit(150, "lb"),
  18771. name: "Front (Tailless)",
  18772. image: {
  18773. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18774. extra: (1506.1547 - 55) / 1356.6,
  18775. bottom: 55 / 1506.1547
  18776. }
  18777. },
  18778. },
  18779. [
  18780. {
  18781. name: "Normal",
  18782. height: math.unit(5 + 10 / 12, "feet"),
  18783. default: true
  18784. },
  18785. ]
  18786. ))
  18787. characterMakers.push(() => makeCharacter(
  18788. { name: "Violette" },
  18789. {
  18790. front: {
  18791. height: math.unit(293, "meters"),
  18792. weight: math.unit(70400, "tons"),
  18793. name: "Front",
  18794. image: {
  18795. source: "./media/characters/violette/front.svg",
  18796. extra: 1227 / 1180,
  18797. bottom: 0.005
  18798. }
  18799. },
  18800. back: {
  18801. height: math.unit(293, "meters"),
  18802. weight: math.unit(70400, "tons"),
  18803. name: "Back",
  18804. image: {
  18805. source: "./media/characters/violette/back.svg",
  18806. extra: 1227 / 1180,
  18807. bottom: 0.005
  18808. }
  18809. },
  18810. },
  18811. [
  18812. {
  18813. name: "Macro",
  18814. height: math.unit(293, "meters"),
  18815. default: true
  18816. },
  18817. ]
  18818. ))
  18819. characterMakers.push(() => makeCharacter(
  18820. { name: "Alessandra" },
  18821. {
  18822. front: {
  18823. height: math.unit(1050, "feet"),
  18824. weight: math.unit(200000, "tons"),
  18825. name: "Front",
  18826. image: {
  18827. source: "./media/characters/alessandra/front.svg",
  18828. extra: 960 / 912,
  18829. bottom: 0.06
  18830. }
  18831. },
  18832. },
  18833. [
  18834. {
  18835. name: "Macro",
  18836. height: math.unit(1050, "feet")
  18837. },
  18838. {
  18839. name: "Macro+",
  18840. height: math.unit(900, "meters"),
  18841. default: true
  18842. },
  18843. ]
  18844. ))
  18845. characterMakers.push(() => makeCharacter(
  18846. { name: "Person", species: "Catdragon" },
  18847. {
  18848. front: {
  18849. height: math.unit(5, "feet"),
  18850. weight: math.unit(187, "lb"),
  18851. name: "Front",
  18852. image: {
  18853. source: "./media/characters/person/front.svg",
  18854. extra: 3087 / 2945,
  18855. bottom: 91 / 3181
  18856. }
  18857. },
  18858. },
  18859. [
  18860. {
  18861. name: "Micro",
  18862. height: math.unit(3, "inches")
  18863. },
  18864. {
  18865. name: "Normal",
  18866. height: math.unit(5, "feet"),
  18867. default: true
  18868. },
  18869. {
  18870. name: "Macro",
  18871. height: math.unit(90, "feet")
  18872. },
  18873. {
  18874. name: "Max Size",
  18875. height: math.unit(280, "feet")
  18876. },
  18877. ]
  18878. ))
  18879. characterMakers.push(() => makeCharacter(
  18880. { name: "Ty" },
  18881. {
  18882. front: {
  18883. height: math.unit(4.5, "meters"),
  18884. weight: math.unit(3200, "lb"),
  18885. name: "Front",
  18886. image: {
  18887. source: "./media/characters/ty/front.svg",
  18888. extra: 1038 / 960,
  18889. bottom: 31.156 / 1068
  18890. }
  18891. },
  18892. back: {
  18893. height: math.unit(4.5, "meters"),
  18894. weight: math.unit(3200, "lb"),
  18895. name: "Back",
  18896. image: {
  18897. source: "./media/characters/ty/back.svg",
  18898. extra: 1044 / 966,
  18899. bottom: 7.48 / 1049
  18900. }
  18901. },
  18902. },
  18903. [
  18904. {
  18905. name: "Normal",
  18906. height: math.unit(4.5, "meters"),
  18907. default: true
  18908. },
  18909. ]
  18910. ))
  18911. characterMakers.push(() => makeCharacter(
  18912. { name: "Rocky" },
  18913. {
  18914. front: {
  18915. height: math.unit(5 + 4 / 12, "feet"),
  18916. weight: math.unit(115, "lb"),
  18917. name: "Front",
  18918. image: {
  18919. source: "./media/characters/rocky/front.svg",
  18920. extra: 1012 / 975,
  18921. bottom: 54 / 1066
  18922. }
  18923. },
  18924. },
  18925. [
  18926. {
  18927. name: "Normal",
  18928. height: math.unit(5 + 4 / 12, "feet"),
  18929. default: true
  18930. },
  18931. ]
  18932. ))
  18933. characterMakers.push(() => makeCharacter(
  18934. { name: "Ruin" },
  18935. {
  18936. upright: {
  18937. height: math.unit(6, "meters"),
  18938. weight: math.unit(4000, "kg"),
  18939. name: "Upright",
  18940. image: {
  18941. source: "./media/characters/ruin/upright.svg",
  18942. extra: 668 / 661,
  18943. bottom: 42 / 799.8396
  18944. }
  18945. },
  18946. },
  18947. [
  18948. {
  18949. name: "Normal",
  18950. height: math.unit(6, "meters"),
  18951. default: true
  18952. },
  18953. ]
  18954. ))
  18955. characterMakers.push(() => makeCharacter(
  18956. { name: "Robin" },
  18957. {
  18958. front: {
  18959. height: math.unit(5, "feet"),
  18960. weight: math.unit(106, "lb"),
  18961. name: "Front",
  18962. image: {
  18963. source: "./media/characters/robin/front.svg",
  18964. extra: 862 / 799,
  18965. bottom: 42.4 / 914.8856
  18966. }
  18967. },
  18968. },
  18969. [
  18970. {
  18971. name: "Normal",
  18972. height: math.unit(5, "feet"),
  18973. default: true
  18974. },
  18975. ]
  18976. ))
  18977. characterMakers.push(() => makeCharacter(
  18978. { name: "Saian" },
  18979. {
  18980. side: {
  18981. height: math.unit(3, "feet"),
  18982. weight: math.unit(225, "lb"),
  18983. name: "Side",
  18984. image: {
  18985. source: "./media/characters/saian/side.svg",
  18986. extra: 566 / 356,
  18987. bottom: 79.7 / 643
  18988. }
  18989. },
  18990. maw: {
  18991. height: math.unit(2.85, "feet"),
  18992. name: "Maw",
  18993. image: {
  18994. source: "./media/characters/saian/maw.svg"
  18995. }
  18996. },
  18997. },
  18998. [
  18999. {
  19000. name: "Normal",
  19001. height: math.unit(3, "feet"),
  19002. default: true
  19003. },
  19004. ]
  19005. ))
  19006. characterMakers.push(() => makeCharacter(
  19007. { name: "Equus Silvermane" },
  19008. {
  19009. side: {
  19010. height: math.unit(8, "feet"),
  19011. weight: math.unit(300, "lb"),
  19012. name: "Side",
  19013. image: {
  19014. source: "./media/characters/equus-silvermane/side.svg",
  19015. extra: 2176 / 2050,
  19016. bottom: 65.7 / 2245
  19017. }
  19018. },
  19019. front: {
  19020. height: math.unit(8, "feet"),
  19021. weight: math.unit(300, "lb"),
  19022. name: "Front",
  19023. image: {
  19024. source: "./media/characters/equus-silvermane/front.svg",
  19025. extra: 4633 / 4400,
  19026. bottom: 71.3 / 4706.915
  19027. }
  19028. },
  19029. sideStepping: {
  19030. height: math.unit(8, "feet"),
  19031. weight: math.unit(300, "lb"),
  19032. name: "Side (Stepping)",
  19033. image: {
  19034. source: "./media/characters/equus-silvermane/side-stepping.svg",
  19035. extra: 1968 / 1860,
  19036. bottom: 16.4 / 1989
  19037. }
  19038. },
  19039. },
  19040. [
  19041. {
  19042. name: "Normal",
  19043. height: math.unit(8, "feet")
  19044. },
  19045. {
  19046. name: "Minimacro",
  19047. height: math.unit(75, "feet"),
  19048. default: true
  19049. },
  19050. {
  19051. name: "Macro",
  19052. height: math.unit(150, "feet")
  19053. },
  19054. {
  19055. name: "Macro+",
  19056. height: math.unit(1000, "feet")
  19057. },
  19058. {
  19059. name: "Megamacro",
  19060. height: math.unit(1, "mile")
  19061. },
  19062. ]
  19063. ))
  19064. characterMakers.push(() => makeCharacter(
  19065. { name: "Windar" },
  19066. {
  19067. side: {
  19068. height: math.unit(20, "feet"),
  19069. weight: math.unit(30000, "kg"),
  19070. name: "Side",
  19071. image: {
  19072. source: "./media/characters/windar/side.svg",
  19073. extra: 1491 / 1248,
  19074. bottom: 82.56 / 1568
  19075. }
  19076. },
  19077. },
  19078. [
  19079. {
  19080. name: "Normal",
  19081. height: math.unit(20, "feet"),
  19082. default: true
  19083. },
  19084. ]
  19085. ))
  19086. characterMakers.push(() => makeCharacter(
  19087. { name: "Melody" },
  19088. {
  19089. side: {
  19090. height: math.unit(15.66, "feet"),
  19091. weight: math.unit(150, "lb"),
  19092. name: "Side",
  19093. image: {
  19094. source: "./media/characters/melody/side.svg",
  19095. extra: 1097 / 944,
  19096. bottom: 11.8 / 1109
  19097. }
  19098. },
  19099. sideOutfit: {
  19100. height: math.unit(15.66, "feet"),
  19101. weight: math.unit(150, "lb"),
  19102. name: "Side (Outfit)",
  19103. image: {
  19104. source: "./media/characters/melody/side-outfit.svg",
  19105. extra: 1097 / 944,
  19106. bottom: 11.8 / 1109
  19107. }
  19108. },
  19109. },
  19110. [
  19111. {
  19112. name: "Normal",
  19113. height: math.unit(15.66, "feet"),
  19114. default: true
  19115. },
  19116. ]
  19117. ))
  19118. characterMakers.push(() => makeCharacter(
  19119. { name: "Windera" },
  19120. {
  19121. front: {
  19122. height: math.unit(8, "feet"),
  19123. weight: math.unit(325, "lb"),
  19124. name: "Front",
  19125. image: {
  19126. source: "./media/characters/windera/front.svg",
  19127. extra: 3180 / 2845,
  19128. bottom: 178 / 3365
  19129. }
  19130. },
  19131. },
  19132. [
  19133. {
  19134. name: "Normal",
  19135. height: math.unit(8, "feet"),
  19136. default: true
  19137. },
  19138. ]
  19139. ))
  19140. characterMakers.push(() => makeCharacter(
  19141. { name: "Sonear" },
  19142. {
  19143. front: {
  19144. height: math.unit(28.75, "feet"),
  19145. weight: math.unit(2000, "kg"),
  19146. name: "Front",
  19147. image: {
  19148. source: "./media/characters/sonear/front.svg",
  19149. extra: 1041.1 / 964.9,
  19150. bottom: 53.7 / 1096.6
  19151. }
  19152. },
  19153. },
  19154. [
  19155. {
  19156. name: "Normal",
  19157. height: math.unit(28.75, "feet"),
  19158. default: true
  19159. },
  19160. ]
  19161. ))
  19162. characterMakers.push(() => makeCharacter(
  19163. { name: "Kanara" },
  19164. {
  19165. side: {
  19166. height: math.unit(25.5, "feet"),
  19167. weight: math.unit(23000, "kg"),
  19168. name: "Side",
  19169. image: {
  19170. source: "./media/characters/kanara/side.svg"
  19171. }
  19172. },
  19173. },
  19174. [
  19175. {
  19176. name: "Normal",
  19177. height: math.unit(25.5, "feet"),
  19178. default: true
  19179. },
  19180. ]
  19181. ))
  19182. characterMakers.push(() => makeCharacter(
  19183. { name: "Ereus" },
  19184. {
  19185. side: {
  19186. height: math.unit(10, "feet"),
  19187. weight: math.unit(1000, "kg"),
  19188. name: "Side",
  19189. image: {
  19190. source: "./media/characters/ereus/side.svg",
  19191. extra: 1157 / 959,
  19192. bottom: 153 / 1312.5
  19193. }
  19194. },
  19195. },
  19196. [
  19197. {
  19198. name: "Normal",
  19199. height: math.unit(10, "feet"),
  19200. default: true
  19201. },
  19202. ]
  19203. ))
  19204. characterMakers.push(() => makeCharacter(
  19205. { name: "E-ter" },
  19206. {
  19207. side: {
  19208. height: math.unit(4.5, "feet"),
  19209. weight: math.unit(500, "lb"),
  19210. name: "Side",
  19211. image: {
  19212. source: "./media/characters/e-ter/side.svg",
  19213. extra: 1550 / 1248,
  19214. bottom: 146 / 1694
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Normal",
  19221. height: math.unit(4.5, "feet"),
  19222. default: true
  19223. },
  19224. ]
  19225. ))
  19226. characterMakers.push(() => makeCharacter(
  19227. { name: "Yamie" },
  19228. {
  19229. side: {
  19230. height: math.unit(9.7, "feet"),
  19231. weight: math.unit(4000, "kg"),
  19232. name: "Side",
  19233. image: {
  19234. source: "./media/characters/yamie/side.svg"
  19235. }
  19236. },
  19237. },
  19238. [
  19239. {
  19240. name: "Normal",
  19241. height: math.unit(9.7, "feet"),
  19242. default: true
  19243. },
  19244. ]
  19245. ))
  19246. characterMakers.push(() => makeCharacter(
  19247. { name: "Anders" },
  19248. {
  19249. front: {
  19250. height: math.unit(50, "feet"),
  19251. weight: math.unit(50000, "kg"),
  19252. name: "Front",
  19253. image: {
  19254. source: "./media/characters/anders/front.svg",
  19255. extra: 570 / 539,
  19256. bottom: 14.7 / 586.7
  19257. }
  19258. },
  19259. },
  19260. [
  19261. {
  19262. name: "Large",
  19263. height: math.unit(50, "feet")
  19264. },
  19265. {
  19266. name: "Macro",
  19267. height: math.unit(2000, "feet"),
  19268. default: true
  19269. },
  19270. {
  19271. name: "Megamacro",
  19272. height: math.unit(12, "miles")
  19273. },
  19274. ]
  19275. ))
  19276. characterMakers.push(() => makeCharacter(
  19277. { name: "Reban" },
  19278. {
  19279. front: {
  19280. height: math.unit(7 + 2 / 12, "feet"),
  19281. weight: math.unit(300, "lb"),
  19282. name: "Front",
  19283. image: {
  19284. source: "./media/characters/reban/front.svg",
  19285. extra: 516 / 487,
  19286. bottom: 42.82 / 558.356
  19287. }
  19288. },
  19289. dick: {
  19290. height: math.unit(7 / 5, "feet"),
  19291. name: "Dick",
  19292. image: {
  19293. source: "./media/characters/reban/dick.svg"
  19294. }
  19295. },
  19296. },
  19297. [
  19298. {
  19299. name: "Natural Height",
  19300. height: math.unit(7 + 2 / 12, "feet")
  19301. },
  19302. {
  19303. name: "Macro",
  19304. height: math.unit(500, "feet"),
  19305. default: true
  19306. },
  19307. {
  19308. name: "Canon Height",
  19309. height: math.unit(50, "AU")
  19310. },
  19311. ]
  19312. ))
  19313. characterMakers.push(() => makeCharacter(
  19314. { name: "Terrance Keayes" },
  19315. {
  19316. front: {
  19317. height: math.unit(6, "feet"),
  19318. weight: math.unit(150, "lb"),
  19319. name: "Front",
  19320. image: {
  19321. source: "./media/characters/terrance-keayes/front.svg",
  19322. extra: 1.005,
  19323. bottom: 151 / 1615
  19324. }
  19325. },
  19326. side: {
  19327. height: math.unit(6, "feet"),
  19328. weight: math.unit(150, "lb"),
  19329. name: "Side",
  19330. image: {
  19331. source: "./media/characters/terrance-keayes/side.svg",
  19332. extra: 1.005,
  19333. bottom: 129.4 / 1544
  19334. }
  19335. },
  19336. back: {
  19337. height: math.unit(6, "feet"),
  19338. weight: math.unit(150, "lb"),
  19339. name: "Back",
  19340. image: {
  19341. source: "./media/characters/terrance-keayes/back.svg",
  19342. extra: 1.005,
  19343. bottom: 58.4 / 1557.3
  19344. }
  19345. },
  19346. dick: {
  19347. height: math.unit(6 * 0.208, "feet"),
  19348. name: "Dick",
  19349. image: {
  19350. source: "./media/characters/terrance-keayes/dick.svg"
  19351. }
  19352. },
  19353. },
  19354. [
  19355. {
  19356. name: "Canon Height",
  19357. height: math.unit(35, "miles"),
  19358. default: true
  19359. },
  19360. ]
  19361. ))
  19362. characterMakers.push(() => makeCharacter(
  19363. { name: "Ofelia" },
  19364. {
  19365. front: {
  19366. height: math.unit(6, "feet"),
  19367. weight: math.unit(150, "lb"),
  19368. name: "Front",
  19369. image: {
  19370. source: "./media/characters/ofelia/front.svg",
  19371. extra: 546 / 541,
  19372. bottom: 39 / 583
  19373. }
  19374. },
  19375. back: {
  19376. height: math.unit(6, "feet"),
  19377. weight: math.unit(150, "lb"),
  19378. name: "Back",
  19379. image: {
  19380. source: "./media/characters/ofelia/back.svg",
  19381. extra: 564 / 559.5,
  19382. bottom: 8.69 / 573.02
  19383. }
  19384. },
  19385. maw: {
  19386. height: math.unit(1, "feet"),
  19387. name: "Maw",
  19388. image: {
  19389. source: "./media/characters/ofelia/maw.svg"
  19390. }
  19391. },
  19392. foot: {
  19393. height: math.unit(1.949, "feet"),
  19394. name: "Foot",
  19395. image: {
  19396. source: "./media/characters/ofelia/foot.svg"
  19397. }
  19398. },
  19399. },
  19400. [
  19401. {
  19402. name: "Canon Height",
  19403. height: math.unit(2000, "miles"),
  19404. default: true
  19405. },
  19406. ]
  19407. ))
  19408. characterMakers.push(() => makeCharacter(
  19409. { name: "Samuel" },
  19410. {
  19411. front: {
  19412. height: math.unit(6, "feet"),
  19413. weight: math.unit(150, "lb"),
  19414. name: "Front",
  19415. image: {
  19416. source: "./media/characters/samuel/front.svg",
  19417. extra: 265 / 258,
  19418. bottom: 2 / 266.1566
  19419. }
  19420. },
  19421. },
  19422. [
  19423. {
  19424. name: "Macro",
  19425. height: math.unit(100, "feet"),
  19426. default: true
  19427. },
  19428. {
  19429. name: "Full Size",
  19430. height: math.unit(1000, "miles")
  19431. },
  19432. ]
  19433. ))
  19434. characterMakers.push(() => makeCharacter(
  19435. { name: "Beishir Kiel" },
  19436. {
  19437. front: {
  19438. height: math.unit(6, "feet"),
  19439. weight: math.unit(300, "lb"),
  19440. name: "Front",
  19441. image: {
  19442. source: "./media/characters/beishir-kiel/front.svg",
  19443. extra: 569 / 547,
  19444. bottom: 41.9 / 609
  19445. }
  19446. },
  19447. maw: {
  19448. height: math.unit(6 * 0.202, "feet"),
  19449. name: "Maw",
  19450. image: {
  19451. source: "./media/characters/beishir-kiel/maw.svg"
  19452. }
  19453. },
  19454. },
  19455. [
  19456. {
  19457. name: "Macro",
  19458. height: math.unit(300, "feet"),
  19459. default: true
  19460. },
  19461. ]
  19462. ))
  19463. characterMakers.push(() => makeCharacter(
  19464. { name: "Logan Grey" },
  19465. {
  19466. front: {
  19467. height: math.unit(5 + 8 / 12, "feet"),
  19468. weight: math.unit(120, "lb"),
  19469. name: "Front",
  19470. image: {
  19471. source: "./media/characters/logan-grey/front.svg",
  19472. extra: 2539 / 2393,
  19473. bottom: 97.6 / 2636.37
  19474. }
  19475. },
  19476. frontAlt: {
  19477. height: math.unit(5 + 8 / 12, "feet"),
  19478. weight: math.unit(120, "lb"),
  19479. name: "Front (Alt)",
  19480. image: {
  19481. source: "./media/characters/logan-grey/front-alt.svg",
  19482. extra: 958 / 893,
  19483. bottom: 15 / 970.768
  19484. }
  19485. },
  19486. back: {
  19487. height: math.unit(5 + 8 / 12, "feet"),
  19488. weight: math.unit(120, "lb"),
  19489. name: "Back",
  19490. image: {
  19491. source: "./media/characters/logan-grey/back.svg",
  19492. extra: 958 / 893,
  19493. bottom: 2.1881 / 970.9788
  19494. }
  19495. },
  19496. dick: {
  19497. height: math.unit(1.437, "feet"),
  19498. name: "Dick",
  19499. image: {
  19500. source: "./media/characters/logan-grey/dick.svg"
  19501. }
  19502. },
  19503. },
  19504. [
  19505. {
  19506. name: "Normal",
  19507. height: math.unit(5 + 8 / 12, "feet")
  19508. },
  19509. {
  19510. name: "The 500 Foot Femboy",
  19511. height: math.unit(500, "feet"),
  19512. default: true
  19513. },
  19514. {
  19515. name: "Megmacro",
  19516. height: math.unit(20, "miles")
  19517. },
  19518. ]
  19519. ))
  19520. characterMakers.push(() => makeCharacter(
  19521. { name: "Draganta" },
  19522. {
  19523. front: {
  19524. height: math.unit(8 + 2 / 12, "feet"),
  19525. weight: math.unit(275, "lb"),
  19526. name: "Front",
  19527. image: {
  19528. source: "./media/characters/draganta/front.svg",
  19529. extra: 1177 / 1135,
  19530. bottom: 33.46 / 1212.1
  19531. }
  19532. },
  19533. },
  19534. [
  19535. {
  19536. name: "Normal",
  19537. height: math.unit(8 + 6 / 12, "feet"),
  19538. default: true
  19539. },
  19540. {
  19541. name: "Macro",
  19542. height: math.unit(150, "feet")
  19543. },
  19544. {
  19545. name: "Megamacro",
  19546. height: math.unit(1000, "miles")
  19547. },
  19548. ]
  19549. ))
  19550. characterMakers.push(() => makeCharacter(
  19551. { name: "Voski", species: "Corvid" },
  19552. {
  19553. front: {
  19554. height: math.unit(1.72, "m"),
  19555. weight: math.unit(80, "lb"),
  19556. name: "Front",
  19557. image: {
  19558. source: "./media/characters/voski/front.svg",
  19559. extra: 2076.22 / 2022.4,
  19560. bottom: 102.7 / 2177.3866
  19561. }
  19562. },
  19563. frontNsfw: {
  19564. height: math.unit(1.72, "m"),
  19565. weight: math.unit(80, "lb"),
  19566. name: "Front (NSFW)",
  19567. image: {
  19568. source: "./media/characters/voski/front-nsfw.svg",
  19569. extra: 2076.22 / 2022.4,
  19570. bottom: 102.7 / 2177.3866
  19571. }
  19572. },
  19573. back: {
  19574. height: math.unit(1.72, "m"),
  19575. weight: math.unit(80, "lb"),
  19576. name: "Back",
  19577. image: {
  19578. source: "./media/characters/voski/back.svg",
  19579. extra: 2104 / 2051,
  19580. bottom: 10.45 / 2113.63
  19581. }
  19582. },
  19583. },
  19584. [
  19585. {
  19586. name: "Normal",
  19587. height: math.unit(1.72, "m")
  19588. },
  19589. {
  19590. name: "Macro",
  19591. height: math.unit(55, "m"),
  19592. default: true
  19593. },
  19594. {
  19595. name: "Macro+",
  19596. height: math.unit(300, "m")
  19597. },
  19598. {
  19599. name: "Macro++",
  19600. height: math.unit(700, "m")
  19601. },
  19602. {
  19603. name: "Macro+++",
  19604. height: math.unit(4500, "m")
  19605. },
  19606. {
  19607. name: "Macro++++",
  19608. height: math.unit(45, "km")
  19609. },
  19610. {
  19611. name: "Macro+++++",
  19612. height: math.unit(1220, "km")
  19613. },
  19614. ]
  19615. ))
  19616. characterMakers.push(() => makeCharacter(
  19617. { name: "Icowom Lee" },
  19618. {
  19619. front: {
  19620. height: math.unit(2.3, "m"),
  19621. weight: math.unit(304, "kg"),
  19622. name: "Front",
  19623. image: {
  19624. source: "./media/characters/icowom-lee/front.svg",
  19625. extra: 3076 / 2933,
  19626. bottom: 51.4 / 3125.1889
  19627. }
  19628. },
  19629. },
  19630. [
  19631. {
  19632. name: "Normal",
  19633. height: math.unit(2.3, "meters"),
  19634. default: true
  19635. },
  19636. {
  19637. name: "Macro",
  19638. height: math.unit(94, "meters"),
  19639. default: true
  19640. },
  19641. ]
  19642. ))
  19643. characterMakers.push(() => makeCharacter(
  19644. { name: "Shock Diamond", species: "Aeromorphic Synthetic Pharaoh Hound" },
  19645. {
  19646. front: {
  19647. height: math.unit(22, "meters"),
  19648. weight: math.unit(21000, "kg"),
  19649. name: "Front",
  19650. image: {
  19651. source: "./media/characters/shock-diamond/front.svg",
  19652. extra: 2204 / 2053,
  19653. bottom: 65 / 2239.47
  19654. }
  19655. },
  19656. frontNude: {
  19657. height: math.unit(22, "meters"),
  19658. weight: math.unit(21000, "kg"),
  19659. name: "Front (Nude)",
  19660. image: {
  19661. source: "./media/characters/shock-diamond/front-nude.svg",
  19662. extra: 2514 / 2285,
  19663. bottom: 13 / 2527.56
  19664. }
  19665. },
  19666. },
  19667. [
  19668. {
  19669. name: "Normal",
  19670. height: math.unit(3, "meters")
  19671. },
  19672. {
  19673. name: "Macro",
  19674. height: math.unit(22, "meters"),
  19675. default: true
  19676. },
  19677. ]
  19678. ))
  19679. characterMakers.push(() => makeCharacter(
  19680. { name: "Rory" },
  19681. {
  19682. front: {
  19683. height: math.unit(5 + 4 / 12, "feet"),
  19684. weight: math.unit(120, "lb"),
  19685. name: "Front",
  19686. image: {
  19687. source: "./media/characters/rory/front.svg",
  19688. extra: 589 / 556,
  19689. bottom: 45.7 / 635.76
  19690. }
  19691. },
  19692. frontNude: {
  19693. height: math.unit(5 + 4 / 12, "feet"),
  19694. weight: math.unit(120, "lb"),
  19695. name: "Front (Nude)",
  19696. image: {
  19697. source: "./media/characters/rory/front-nude.svg",
  19698. extra: 589 / 556,
  19699. bottom: 45.7 / 635.76
  19700. }
  19701. },
  19702. side: {
  19703. height: math.unit(5 + 4 / 12, "feet"),
  19704. weight: math.unit(120, "lb"),
  19705. name: "Side",
  19706. image: {
  19707. source: "./media/characters/rory/side.svg",
  19708. extra: 597 / 564,
  19709. bottom: 55 / 653
  19710. }
  19711. },
  19712. back: {
  19713. height: math.unit(5 + 4 / 12, "feet"),
  19714. weight: math.unit(120, "lb"),
  19715. name: "Back",
  19716. image: {
  19717. source: "./media/characters/rory/back.svg",
  19718. extra: 620 / 585,
  19719. bottom: 8.86 / 630.43
  19720. }
  19721. },
  19722. dick: {
  19723. height: math.unit(0.86, "feet"),
  19724. name: "Dick",
  19725. image: {
  19726. source: "./media/characters/rory/dick.svg"
  19727. }
  19728. },
  19729. },
  19730. [
  19731. {
  19732. name: "Normal",
  19733. height: math.unit(5 + 4 / 12, "feet"),
  19734. default: true
  19735. },
  19736. {
  19737. name: "Macro",
  19738. height: math.unit(100, "feet")
  19739. },
  19740. {
  19741. name: "Macro+",
  19742. height: math.unit(140, "feet")
  19743. },
  19744. {
  19745. name: "Macro++",
  19746. height: math.unit(300, "feet")
  19747. },
  19748. ]
  19749. ))
  19750. characterMakers.push(() => makeCharacter(
  19751. { name: "Sprisk" },
  19752. {
  19753. front: {
  19754. height: math.unit(5 + 9 / 12, "feet"),
  19755. weight: math.unit(190, "lb"),
  19756. name: "Front",
  19757. image: {
  19758. source: "./media/characters/sprisk/front.svg",
  19759. extra: 1225 / 1180,
  19760. bottom: 42.7 / 1266.4
  19761. }
  19762. },
  19763. frontNsfw: {
  19764. height: math.unit(5 + 9 / 12, "feet"),
  19765. weight: math.unit(190, "lb"),
  19766. name: "Front (NSFW)",
  19767. image: {
  19768. source: "./media/characters/sprisk/front-nsfw.svg",
  19769. extra: 1225 / 1180,
  19770. bottom: 42.7 / 1266.4
  19771. }
  19772. },
  19773. back: {
  19774. height: math.unit(5 + 9 / 12, "feet"),
  19775. weight: math.unit(190, "lb"),
  19776. name: "Back",
  19777. image: {
  19778. source: "./media/characters/sprisk/back.svg",
  19779. extra: 1247 / 1200,
  19780. bottom: 5.6 / 1253.04
  19781. }
  19782. },
  19783. },
  19784. [
  19785. {
  19786. name: "Tiny",
  19787. height: math.unit(2, "inches")
  19788. },
  19789. {
  19790. name: "Normal",
  19791. height: math.unit(5 + 9 / 12, "feet"),
  19792. default: true
  19793. },
  19794. {
  19795. name: "Mini Macro",
  19796. height: math.unit(18, "feet")
  19797. },
  19798. {
  19799. name: "Macro",
  19800. height: math.unit(100, "feet")
  19801. },
  19802. {
  19803. name: "MACRO",
  19804. height: math.unit(50, "miles")
  19805. },
  19806. {
  19807. name: "M A C R O",
  19808. height: math.unit(300, "miles")
  19809. },
  19810. ]
  19811. ))
  19812. characterMakers.push(() => makeCharacter(
  19813. { name: "Bunsen" },
  19814. {
  19815. side: {
  19816. height: math.unit(15.6, "meters"),
  19817. weight: math.unit(700000, "kg"),
  19818. name: "Side",
  19819. image: {
  19820. source: "./media/characters/bunsen/side.svg",
  19821. extra: 1644 / 358
  19822. }
  19823. },
  19824. foot: {
  19825. height: math.unit(1.611 * 1644 / 358, "meter"),
  19826. name: "Foot",
  19827. image: {
  19828. source: "./media/characters/bunsen/foot.svg"
  19829. }
  19830. },
  19831. },
  19832. [
  19833. {
  19834. name: "Small",
  19835. height: math.unit(10, "feet")
  19836. },
  19837. {
  19838. name: "Normal",
  19839. height: math.unit(15.6, "meters"),
  19840. default: true
  19841. },
  19842. ]
  19843. ))
  19844. characterMakers.push(() => makeCharacter(
  19845. { name: "Sesh" },
  19846. {
  19847. front: {
  19848. height: math.unit(4 + 11 / 12, "feet"),
  19849. weight: math.unit(140, "lb"),
  19850. name: "Front",
  19851. image: {
  19852. source: "./media/characters/sesh/front.svg",
  19853. extra: 3420 / 3231,
  19854. bottom: 72 / 3949.5
  19855. }
  19856. },
  19857. },
  19858. [
  19859. {
  19860. name: "Normal",
  19861. height: math.unit(4 + 11 / 12, "feet")
  19862. },
  19863. {
  19864. name: "Grown",
  19865. height: math.unit(15, "feet"),
  19866. default: true
  19867. },
  19868. {
  19869. name: "Macro",
  19870. height: math.unit(1500, "feet")
  19871. },
  19872. {
  19873. name: "Megamacro",
  19874. height: math.unit(30, "miles")
  19875. },
  19876. {
  19877. name: "Continental",
  19878. height: math.unit(3000, "miles")
  19879. },
  19880. {
  19881. name: "Gravity Mass",
  19882. height: math.unit(300000, "miles")
  19883. },
  19884. {
  19885. name: "Planet Buster",
  19886. height: math.unit(30000000, "miles")
  19887. },
  19888. {
  19889. name: "Big",
  19890. height: math.unit(3000000000, "miles")
  19891. },
  19892. ]
  19893. ))
  19894. characterMakers.push(() => makeCharacter(
  19895. { name: "Pepper" },
  19896. {
  19897. front: {
  19898. height: math.unit(9, "feet"),
  19899. weight: math.unit(350, "lb"),
  19900. name: "Front",
  19901. image: {
  19902. source: "./media/characters/pepper/front.svg",
  19903. extra: 1448/1312,
  19904. bottom: 9.4/1457.88
  19905. }
  19906. },
  19907. back: {
  19908. height: math.unit(9, "feet"),
  19909. weight: math.unit(350, "lb"),
  19910. name: "Back",
  19911. image: {
  19912. source: "./media/characters/pepper/back.svg",
  19913. extra: 1423/1300,
  19914. bottom: 4.6/1429
  19915. }
  19916. },
  19917. maw: {
  19918. height: math.unit(0.932, "feet"),
  19919. name: "Maw",
  19920. image: {
  19921. source: "./media/characters/pepper/maw.svg"
  19922. }
  19923. },
  19924. },
  19925. [
  19926. {
  19927. name: "Normal",
  19928. height: math.unit(9, "feet"),
  19929. default: true
  19930. },
  19931. ]
  19932. ))
  19933. characterMakers.push(() => makeCharacter(
  19934. { name: "Maelstrom" },
  19935. {
  19936. front: {
  19937. height: math.unit(6, "feet"),
  19938. weight: math.unit(150, "lb"),
  19939. name: "Front",
  19940. image: {
  19941. source: "./media/characters/maelstrom/front.svg",
  19942. extra: 2100/1883,
  19943. bottom: 94/2196.7
  19944. }
  19945. },
  19946. },
  19947. [
  19948. {
  19949. name: "Less Kaiju",
  19950. height: math.unit(200, "feet")
  19951. },
  19952. {
  19953. name: "Kaiju",
  19954. height: math.unit(400, "feet"),
  19955. default: true
  19956. },
  19957. {
  19958. name: "Kaiju-er",
  19959. height: math.unit(600, "feet")
  19960. },
  19961. ]
  19962. ))
  19963. characterMakers.push(() => makeCharacter(
  19964. { name: "Lexir" },
  19965. {
  19966. front: {
  19967. height: math.unit(6 + 5/12, "feet"),
  19968. weight: math.unit(180, "lb"),
  19969. name: "Front",
  19970. image: {
  19971. source: "./media/characters/lexir/front.svg",
  19972. extra: 180/172,
  19973. bottom: 12/192
  19974. }
  19975. },
  19976. back: {
  19977. height: math.unit(6 + 5/12, "feet"),
  19978. weight: math.unit(180, "lb"),
  19979. name: "Back",
  19980. image: {
  19981. source: "./media/characters/lexir/back.svg",
  19982. extra: 183.84/175.5,
  19983. bottom: 3.1/187
  19984. }
  19985. },
  19986. },
  19987. [
  19988. {
  19989. name: "Very Smal",
  19990. height: math.unit(1, "nm")
  19991. },
  19992. {
  19993. name: "Normal",
  19994. height: math.unit(6 + 5/12, "feet"),
  19995. default: true
  19996. },
  19997. {
  19998. name: "Macro",
  19999. height: math.unit(1, "mile")
  20000. },
  20001. {
  20002. name: "Megamacro",
  20003. height: math.unit(50, "miles")
  20004. },
  20005. ]
  20006. ))
  20007. characterMakers.push(() => makeCharacter(
  20008. { name: "Maksio" },
  20009. {
  20010. front: {
  20011. height: math.unit(1.5, "meters"),
  20012. weight: math.unit(100, "lb"),
  20013. name: "Front",
  20014. image: {
  20015. source: "./media/characters/maksio/front.svg",
  20016. extra: 1549/1531,
  20017. bottom: 123.7/1674.5429
  20018. }
  20019. },
  20020. back: {
  20021. height: math.unit(1.5, "meters"),
  20022. weight: math.unit(100, "lb"),
  20023. name: "Back",
  20024. image: {
  20025. source: "./media/characters/maksio/back.svg",
  20026. extra: 1541/1509,
  20027. bottom: 97/1639
  20028. }
  20029. },
  20030. hand: {
  20031. height: math.unit(0.621, "feet"),
  20032. name: "Hand",
  20033. image: {
  20034. source: "./media/characters/maksio/hand.svg"
  20035. }
  20036. },
  20037. foot: {
  20038. height: math.unit(1.611, "feet"),
  20039. name: "Foot",
  20040. image: {
  20041. source: "./media/characters/maksio/foot.svg"
  20042. }
  20043. },
  20044. },
  20045. [
  20046. {
  20047. name: "Shrunken",
  20048. height: math.unit(10, "cm")
  20049. },
  20050. {
  20051. name: "Normal",
  20052. height: math.unit(150, "cm"),
  20053. default: true
  20054. },
  20055. ]
  20056. ))
  20057. characterMakers.push(() => makeCharacter(
  20058. { name: "Erza Bear" },
  20059. {
  20060. front: {
  20061. height: math.unit(100, "feet"),
  20062. name: "Front",
  20063. image: {
  20064. source: "./media/characters/erza-bear/front.svg",
  20065. extra: 2449/2390,
  20066. bottom: 46/2494
  20067. }
  20068. },
  20069. back: {
  20070. height: math.unit(100, "feet"),
  20071. name: "Back",
  20072. image: {
  20073. source: "./media/characters/erza-bear/back.svg",
  20074. extra: 2489/2430,
  20075. bottom: 85.4/2480
  20076. }
  20077. },
  20078. tail: {
  20079. height: math.unit(42, "feet"),
  20080. name: "Tail",
  20081. image: {
  20082. source: "./media/characters/erza-bear/tail.svg"
  20083. }
  20084. },
  20085. tongue: {
  20086. height: math.unit(8, "feet"),
  20087. name: "Tongue",
  20088. image: {
  20089. source: "./media/characters/erza-bear/tongue.svg"
  20090. }
  20091. },
  20092. dick: {
  20093. height: math.unit(10.5, "feet"),
  20094. name: "Dick",
  20095. image: {
  20096. source: "./media/characters/erza-bear/dick.svg"
  20097. }
  20098. },
  20099. dickVertical: {
  20100. height: math.unit(16.9, "feet"),
  20101. name: "Dick (Vertical)",
  20102. image: {
  20103. source: "./media/characters/erza-bear/dick-vertical.svg"
  20104. }
  20105. },
  20106. },
  20107. [
  20108. {
  20109. name: "Macro",
  20110. height: math.unit(100, "feet"),
  20111. default: true
  20112. },
  20113. ]
  20114. ))
  20115. characterMakers.push(() => makeCharacter(
  20116. { name: "Violet Flor", species: "Skunk" },
  20117. {
  20118. front: {
  20119. height: math.unit(172, "cm"),
  20120. weight: math.unit(73, "kg"),
  20121. name: "Front",
  20122. image: {
  20123. source: "./media/characters/violet-flor/front.svg",
  20124. extra: 1530/1442,
  20125. bottom: 61.9/1588.8
  20126. }
  20127. },
  20128. back: {
  20129. height: math.unit(180, "cm"),
  20130. weight: math.unit(73, "kg"),
  20131. name: "Back",
  20132. image: {
  20133. source: "./media/characters/violet-flor/back.svg",
  20134. extra: 1692/1630,
  20135. bottom: 20/1712
  20136. }
  20137. },
  20138. },
  20139. [
  20140. {
  20141. name: "Normal",
  20142. height: math.unit(172, "cm"),
  20143. default: true
  20144. },
  20145. ]
  20146. ))
  20147. characterMakers.push(() => makeCharacter(
  20148. { name: "Lynn Rhea", species: "Shark" },
  20149. {
  20150. front: {
  20151. height: math.unit(6, "feet"),
  20152. weight: math.unit(220, "lb"),
  20153. name: "Front",
  20154. image: {
  20155. source: "./media/characters/lynn-rhea/front.svg",
  20156. extra: 310/273
  20157. }
  20158. },
  20159. back: {
  20160. height: math.unit(6, "feet"),
  20161. weight: math.unit(220, "lb"),
  20162. name: "Back",
  20163. image: {
  20164. source: "./media/characters/lynn-rhea/back.svg",
  20165. extra: 310/273
  20166. }
  20167. },
  20168. dicks: {
  20169. height: math.unit(0.9, "feet"),
  20170. name: "Dicks",
  20171. image: {
  20172. source: "./media/characters/lynn-rhea/dicks.svg"
  20173. }
  20174. },
  20175. slit: {
  20176. height: math.unit(0.4, "feet"),
  20177. name: "Slit",
  20178. image: {
  20179. source: "./media/characters/lynn-rhea/slit.svg"
  20180. }
  20181. },
  20182. },
  20183. [
  20184. {
  20185. name: "Micro",
  20186. height: math.unit(1, "inch")
  20187. },
  20188. {
  20189. name: "Macro",
  20190. height: math.unit(60, "feet"),
  20191. default: true
  20192. },
  20193. {
  20194. name: "Megamacro",
  20195. height: math.unit(2, "miles")
  20196. },
  20197. {
  20198. name: "Gigamacro",
  20199. height: math.unit(3, "earths")
  20200. },
  20201. {
  20202. name: "Galactic",
  20203. height: math.unit(0.8, "galaxies")
  20204. },
  20205. ]
  20206. ))
  20207. characterMakers.push(() => makeCharacter(
  20208. { name: "Valathos" },
  20209. {
  20210. front: {
  20211. height: math.unit(1600, "feet"),
  20212. weight: math.unit(85758785169, "kg"),
  20213. name: "Front",
  20214. image: {
  20215. source: "./media/characters/valathos/front.svg",
  20216. extra: 1451/1339
  20217. }
  20218. },
  20219. },
  20220. [
  20221. {
  20222. name: "Macro",
  20223. height: math.unit(1600, "feet"),
  20224. default: true
  20225. },
  20226. ]
  20227. ))
  20228. characterMakers.push(() => makeCharacter(
  20229. { name: "Azula" },
  20230. {
  20231. front: {
  20232. height: math.unit(7 + 5/12, "feet"),
  20233. weight: math.unit(300, "lb"),
  20234. name: "Front",
  20235. image: {
  20236. source: "./media/characters/azula/front.svg",
  20237. extra: 3208/2880,
  20238. bottom: 80.2/3277
  20239. }
  20240. },
  20241. back: {
  20242. height: math.unit(7 + 5/12, "feet"),
  20243. weight: math.unit(300, "lb"),
  20244. name: "Back",
  20245. image: {
  20246. source: "./media/characters/azula/back.svg",
  20247. extra: 3169/2822,
  20248. bottom: 150.6/3321
  20249. }
  20250. },
  20251. },
  20252. [
  20253. {
  20254. name: "Normal",
  20255. height: math.unit(7 + 5/12, "feet"),
  20256. default: true
  20257. },
  20258. {
  20259. name: "Big",
  20260. height: math.unit(20, "feet")
  20261. },
  20262. ]
  20263. ))
  20264. characterMakers.push(() => makeCharacter(
  20265. { name: "Rupert" },
  20266. {
  20267. front: {
  20268. height: math.unit(5 + 1/12, "feet"),
  20269. weight: math.unit(110, "lb"),
  20270. name: "Front",
  20271. image: {
  20272. source: "./media/characters/rupert/front.svg",
  20273. extra: 1549/1495,
  20274. bottom: 54.2/1604.4
  20275. }
  20276. },
  20277. },
  20278. [
  20279. {
  20280. name: "Normal",
  20281. height: math.unit(5 + 1/12, "feet"),
  20282. default: true
  20283. },
  20284. ]
  20285. ))
  20286. characterMakers.push(() => makeCharacter(
  20287. { name: "Sheera Castellar" },
  20288. {
  20289. front: {
  20290. height: math.unit(8 + 4/12, "feet"),
  20291. weight: math.unit(350, "lb"),
  20292. name: "Front",
  20293. image: {
  20294. source: "./media/characters/sheera-castellar/front.svg",
  20295. extra: 1957/1894,
  20296. bottom: 26.97/1975.017
  20297. }
  20298. },
  20299. side: {
  20300. height: math.unit(8 + 4/12, "feet"),
  20301. weight: math.unit(350, "lb"),
  20302. name: "Side",
  20303. image: {
  20304. source: "./media/characters/sheera-castellar/side.svg",
  20305. extra: 1957/1894
  20306. }
  20307. },
  20308. back: {
  20309. height: math.unit(8 + 4/12, "feet"),
  20310. weight: math.unit(350, "lb"),
  20311. name: "Back",
  20312. image: {
  20313. source: "./media/characters/sheera-castellar/back.svg",
  20314. extra: 1957/1894
  20315. }
  20316. },
  20317. angled: {
  20318. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  20319. weight: math.unit(350, "lb"),
  20320. name: "Angled",
  20321. image: {
  20322. source: "./media/characters/sheera-castellar/angled.svg",
  20323. extra: 1807/1707,
  20324. bottom: 68/1875
  20325. }
  20326. },
  20327. genitals: {
  20328. height: math.unit(2.2, "feet"),
  20329. name: "Genitals",
  20330. image: {
  20331. source: "./media/characters/sheera-castellar/genitals.svg"
  20332. }
  20333. },
  20334. },
  20335. [
  20336. {
  20337. name: "Normal",
  20338. height: math.unit(8 + 4/12, "feet")
  20339. },
  20340. {
  20341. name: "Macro",
  20342. height: math.unit(150, "feet"),
  20343. default: true
  20344. },
  20345. {
  20346. name: "Macro+",
  20347. height: math.unit(800, "feet")
  20348. },
  20349. ]
  20350. ))
  20351. characterMakers.push(() => makeCharacter(
  20352. { name: "Jaipur", species: "Black Panther" },
  20353. {
  20354. front: {
  20355. height: math.unit(6, "feet"),
  20356. weight: math.unit(150, "lb"),
  20357. name: "Front",
  20358. image: {
  20359. source: "./media/characters/jaipur/front.svg",
  20360. extra: 3860/3731,
  20361. bottom: 287/4140
  20362. }
  20363. },
  20364. back: {
  20365. height: math.unit(6, "feet"),
  20366. weight: math.unit(150, "lb"),
  20367. name: "Back",
  20368. image: {
  20369. source: "./media/characters/jaipur/back.svg",
  20370. extra: 4060/3930,
  20371. bottom: 151/4200
  20372. }
  20373. },
  20374. },
  20375. [
  20376. {
  20377. name: "Normal",
  20378. height: math.unit(1.85, "meters"),
  20379. default: true
  20380. },
  20381. {
  20382. name: "Macro",
  20383. height: math.unit(150, "meters")
  20384. },
  20385. {
  20386. name: "Macro+",
  20387. height: math.unit(0.5, "miles")
  20388. },
  20389. {
  20390. name: "Macro++",
  20391. height: math.unit(2.5, "miles")
  20392. },
  20393. {
  20394. name: "Macro+++",
  20395. height: math.unit(12, "miles")
  20396. },
  20397. {
  20398. name: "Macro++++",
  20399. height: math.unit(120, "miles")
  20400. },
  20401. {
  20402. name: "Macro+++++",
  20403. height: math.unit(1200, "miles")
  20404. },
  20405. ]
  20406. ))
  20407. characterMakers.push(() => makeCharacter(
  20408. { name: "Sheila (Wolf)" },
  20409. {
  20410. front: {
  20411. height: math.unit(6, "feet"),
  20412. weight: math.unit(150, "lb"),
  20413. name: "Front",
  20414. image: {
  20415. source: "./media/characters/sheila-wolf/front.svg",
  20416. extra: 1931/1808,
  20417. bottom: 29.5/1960
  20418. }
  20419. },
  20420. dick: {
  20421. height: math.unit(1.464, "feet"),
  20422. name: "Dick",
  20423. image: {
  20424. source: "./media/characters/sheila-wolf/dick.svg"
  20425. }
  20426. },
  20427. muzzle: {
  20428. height: math.unit(0.513, "feet"),
  20429. name: "Muzzle",
  20430. image: {
  20431. source: "./media/characters/sheila-wolf/muzzle.svg"
  20432. }
  20433. },
  20434. },
  20435. [
  20436. {
  20437. name: "Macro",
  20438. height: math.unit(70, "feet"),
  20439. default: true
  20440. },
  20441. ]
  20442. ))
  20443. characterMakers.push(() => makeCharacter(
  20444. { name: "Almor", species: "Dragon" },
  20445. {
  20446. front: {
  20447. height: math.unit(32, "meters"),
  20448. weight: math.unit(300000, "kg"),
  20449. name: "Front",
  20450. image: {
  20451. source: "./media/characters/almor/front.svg",
  20452. extra: 1408/1322,
  20453. bottom: 94.6/1506.5
  20454. }
  20455. },
  20456. },
  20457. [
  20458. {
  20459. name: "Macro",
  20460. height: math.unit(32, "meters"),
  20461. default: true
  20462. },
  20463. ]
  20464. ))
  20465. characterMakers.push(() => makeCharacter(
  20466. { name: "Silver" },
  20467. {
  20468. front: {
  20469. height: math.unit(7, "feet"),
  20470. weight: math.unit(200, "lb"),
  20471. name: "Front",
  20472. image: {
  20473. source: "./media/characters/silver/front.svg",
  20474. extra: 472.1/450.5,
  20475. bottom: 26.5/499.424
  20476. }
  20477. },
  20478. },
  20479. [
  20480. {
  20481. name: "Normal",
  20482. height: math.unit(7, "feet"),
  20483. default: true
  20484. },
  20485. {
  20486. name: "Macro",
  20487. height: math.unit(800, "feet")
  20488. },
  20489. {
  20490. name: "Megamacro",
  20491. height: math.unit(250, "miles")
  20492. },
  20493. ]
  20494. ))
  20495. characterMakers.push(() => makeCharacter(
  20496. { name: "Pliskin" },
  20497. {
  20498. front: {
  20499. height: math.unit(6, "feet"),
  20500. weight: math.unit(150, "lb"),
  20501. name: "Front",
  20502. image: {
  20503. source: "./media/characters/pliskin/front.svg",
  20504. extra: 1469/1359,
  20505. bottom: 70/1540
  20506. }
  20507. },
  20508. },
  20509. [
  20510. {
  20511. name: "Micro",
  20512. height: math.unit(3, "inches")
  20513. },
  20514. {
  20515. name: "Normal",
  20516. height: math.unit(5 + 11/12, "feet"),
  20517. default: true
  20518. },
  20519. {
  20520. name: "Macro",
  20521. height: math.unit(120, "feet")
  20522. },
  20523. ]
  20524. ))
  20525. characterMakers.push(() => makeCharacter(
  20526. { name: "Sammy" },
  20527. {
  20528. front: {
  20529. height: math.unit(6, "feet"),
  20530. weight: math.unit(150, "lb"),
  20531. name: "Front",
  20532. image: {
  20533. source: "./media/characters/sammy/front.svg",
  20534. extra: 1193/1089,
  20535. bottom: 30.5/1226
  20536. }
  20537. },
  20538. },
  20539. [
  20540. {
  20541. name: "Macro",
  20542. height: math.unit(1700, "feet"),
  20543. default: true
  20544. },
  20545. {
  20546. name: "Examacro",
  20547. height: math.unit(2.5e9, "lightyears")
  20548. },
  20549. ]
  20550. ))
  20551. characterMakers.push(() => makeCharacter(
  20552. { name: "Kuru", species: "Umbra" },
  20553. {
  20554. front: {
  20555. height: math.unit(21, "meters"),
  20556. weight: math.unit(12, "tonnes"),
  20557. name: "Front",
  20558. image: {
  20559. source: "./media/characters/kuru/front.svg",
  20560. extra: 4301/3785,
  20561. bottom: 371.3/4691
  20562. }
  20563. },
  20564. },
  20565. [
  20566. {
  20567. name: "Macro",
  20568. height: math.unit(21, "meters"),
  20569. default: true
  20570. },
  20571. ]
  20572. ))
  20573. characterMakers.push(() => makeCharacter(
  20574. { name: "Rakka", species: "Umbra" },
  20575. {
  20576. front: {
  20577. height: math.unit(23, "meters"),
  20578. weight: math.unit(12.2, "tonnes"),
  20579. name: "Front",
  20580. image: {
  20581. source: "./media/characters/rakka/front.svg",
  20582. extra: 4670/4169,
  20583. bottom: 301/4968.7
  20584. }
  20585. },
  20586. },
  20587. [
  20588. {
  20589. name: "Macro",
  20590. height: math.unit(23, "meters"),
  20591. default: true
  20592. },
  20593. ]
  20594. ))
  20595. characterMakers.push(() => makeCharacter(
  20596. { name: "Rhys (Feline)" },
  20597. {
  20598. front: {
  20599. height: math.unit(6, "feet"),
  20600. weight: math.unit(150, "lb"),
  20601. name: "Front",
  20602. image: {
  20603. source: "./media/characters/rhys-feline/front.svg",
  20604. extra: 2488/2308,
  20605. bottom: 35.67/2519.19
  20606. }
  20607. },
  20608. },
  20609. [
  20610. {
  20611. name: "Really Small",
  20612. height: math.unit(1, "nm")
  20613. },
  20614. {
  20615. name: "Micro",
  20616. height: math.unit(4, "inches")
  20617. },
  20618. {
  20619. name: "Normal",
  20620. height: math.unit(4 + 10/12, "feet"),
  20621. default: true
  20622. },
  20623. {
  20624. name: "Macro",
  20625. height: math.unit(100, "feet")
  20626. },
  20627. {
  20628. name: "Megamacto",
  20629. height: math.unit(50, "miles")
  20630. },
  20631. ]
  20632. ))
  20633. characterMakers.push(() => makeCharacter(
  20634. { name: "Alydar", species: "Raven/Snow Leopard" },
  20635. {
  20636. side: {
  20637. height: math.unit(30, "feet"),
  20638. weight: math.unit(35000, "kg"),
  20639. name: "Side",
  20640. image: {
  20641. source: "./media/characters/alydar/side.svg",
  20642. extra: 234/222,
  20643. bottom: 6.5/241
  20644. }
  20645. },
  20646. front: {
  20647. height: math.unit(30, "feet"),
  20648. weight: math.unit(35000, "kg"),
  20649. name: "Front",
  20650. image: {
  20651. source: "./media/characters/alydar/front.svg",
  20652. extra: 223.37/210.2,
  20653. bottom: 22.3/246.76
  20654. }
  20655. },
  20656. top: {
  20657. height: math.unit(64.54, "feet"),
  20658. weight: math.unit(35000, "kg"),
  20659. name: "Top",
  20660. image: {
  20661. source: "./media/characters/alydar/top.svg"
  20662. }
  20663. },
  20664. anthro: {
  20665. height: math.unit(30, "feet"),
  20666. weight: math.unit(9000, "kg"),
  20667. name: "Anthro",
  20668. image: {
  20669. source: "./media/characters/alydar/anthro.svg",
  20670. extra: 432/421,
  20671. bottom: 7.18/440
  20672. }
  20673. },
  20674. maw: {
  20675. height: math.unit(11.693, "feet"),
  20676. name: "Maw",
  20677. image: {
  20678. source: "./media/characters/alydar/maw.svg"
  20679. }
  20680. },
  20681. head: {
  20682. height: math.unit(11.693, "feet"),
  20683. name: "Head",
  20684. image: {
  20685. source: "./media/characters/alydar/head.svg"
  20686. }
  20687. },
  20688. headAlt: {
  20689. height: math.unit(12.861, "feet"),
  20690. name: "Head (Alt)",
  20691. image: {
  20692. source: "./media/characters/alydar/head-alt.svg"
  20693. }
  20694. },
  20695. wing: {
  20696. height: math.unit(20.712, "feet"),
  20697. name: "Wing",
  20698. image: {
  20699. source: "./media/characters/alydar/wing.svg"
  20700. }
  20701. },
  20702. wingFeather: {
  20703. height: math.unit(9.662, "feet"),
  20704. name: "Wing Feather",
  20705. image: {
  20706. source: "./media/characters/alydar/wing-feather.svg"
  20707. }
  20708. },
  20709. countourFeather: {
  20710. height: math.unit(4.154, "feet"),
  20711. name: "Contour Feather",
  20712. image: {
  20713. source: "./media/characters/alydar/contour-feather.svg"
  20714. }
  20715. },
  20716. },
  20717. [
  20718. {
  20719. name: "Diplomatic",
  20720. height: math.unit(13, "feet"),
  20721. default: true
  20722. },
  20723. {
  20724. name: "Small",
  20725. height: math.unit(30, "feet")
  20726. },
  20727. {
  20728. name: "Normal",
  20729. height: math.unit(95, "feet"),
  20730. default: true
  20731. },
  20732. {
  20733. name: "Large",
  20734. height: math.unit(285, "feet")
  20735. },
  20736. {
  20737. name: "Incomprehensible",
  20738. height: math.unit(450, "megameters")
  20739. },
  20740. ]
  20741. ))
  20742. characterMakers.push(() => makeCharacter(
  20743. { name: "Selicia" },
  20744. {
  20745. side: {
  20746. height: math.unit(11, "feet"),
  20747. weight: math.unit(1750, "kg"),
  20748. name: "Side",
  20749. image: {
  20750. source: "./media/characters/selicia/side.svg",
  20751. extra: 440/396,
  20752. bottom: 24.8/465.979
  20753. }
  20754. },
  20755. maw: {
  20756. height: math.unit(4.665, "feet"),
  20757. name: "Maw",
  20758. image: {
  20759. source: "./media/characters/selicia/maw.svg"
  20760. }
  20761. },
  20762. },
  20763. [
  20764. {
  20765. name: "Normal",
  20766. height: math.unit(11, "feet"),
  20767. default: true
  20768. },
  20769. ]
  20770. ))
  20771. characterMakers.push(() => makeCharacter(
  20772. { name: "Layla" },
  20773. {
  20774. side: {
  20775. height: math.unit(2 + 6 /12, "feet"),
  20776. weight: math.unit(30, "lb"),
  20777. name: "Side",
  20778. image: {
  20779. source: "./media/characters/layla/side.svg",
  20780. extra: 244/188,
  20781. bottom: 18.2/262.1
  20782. }
  20783. },
  20784. back: {
  20785. height: math.unit(2 + 6 /12, "feet"),
  20786. weight: math.unit(30, "lb"),
  20787. name: "Back",
  20788. image: {
  20789. source: "./media/characters/layla/back.svg",
  20790. extra: 308/241.5,
  20791. bottom: 8.9/316.8
  20792. }
  20793. },
  20794. cumming: {
  20795. height: math.unit(2 + 6 /12, "feet"),
  20796. weight: math.unit(30, "lb"),
  20797. name: "Cumming",
  20798. image: {
  20799. source: "./media/characters/layla/cumming.svg",
  20800. extra: 342/279,
  20801. bottom: 595/938
  20802. }
  20803. },
  20804. dickFlaccid: {
  20805. height: math.unit(2.595, "feet"),
  20806. name: "Flaccid Genitals",
  20807. image: {
  20808. source: "./media/characters/layla/dick-flaccid.svg"
  20809. }
  20810. },
  20811. dickErect: {
  20812. height: math.unit(2.359, "feet"),
  20813. name: "Erect Genitals",
  20814. image: {
  20815. source: "./media/characters/layla/dick-erect.svg"
  20816. }
  20817. },
  20818. },
  20819. [
  20820. {
  20821. name: "Micro",
  20822. height: math.unit(1, "inch")
  20823. },
  20824. {
  20825. name: "Small",
  20826. height: math.unit(1, "foot")
  20827. },
  20828. {
  20829. name: "Normal",
  20830. height: math.unit(2 + 6/12, "feet"),
  20831. default: true
  20832. },
  20833. {
  20834. name: "Macro",
  20835. height: math.unit(200, "feet")
  20836. },
  20837. {
  20838. name: "Megamacro",
  20839. height: math.unit(1000, "miles")
  20840. },
  20841. {
  20842. name: "Planetary",
  20843. height: math.unit(8000, "miles")
  20844. },
  20845. {
  20846. name: "True Layla",
  20847. height: math.unit(200000*7, "multiverses")
  20848. },
  20849. ]
  20850. ))
  20851. characterMakers.push(() => makeCharacter(
  20852. { name: "Knox" },
  20853. {
  20854. back: {
  20855. height: math.unit(10.5, "feet"),
  20856. weight: math.unit(800, "lb"),
  20857. name: "Back",
  20858. image: {
  20859. source: "./media/characters/knox/back.svg",
  20860. extra: 1486/1089,
  20861. bottom: 107/1601.4
  20862. }
  20863. },
  20864. side: {
  20865. height: math.unit(10.5, "feet"),
  20866. weight: math.unit(800, "lb"),
  20867. name: "Side",
  20868. image: {
  20869. source: "./media/characters/knox/side.svg",
  20870. extra: 244/218,
  20871. bottom: 14/260
  20872. }
  20873. },
  20874. },
  20875. [
  20876. {
  20877. name: "Compact",
  20878. height: math.unit(10.5, "feet"),
  20879. default: true
  20880. },
  20881. {
  20882. name: "Dynamax",
  20883. height: math.unit(210, "feet")
  20884. },
  20885. {
  20886. name: "Full Macro",
  20887. height: math.unit(850, "feet")
  20888. },
  20889. ]
  20890. ))
  20891. characterMakers.push(() => makeCharacter(
  20892. { name: "Shin (Pikachu)" },
  20893. {
  20894. front: {
  20895. height: math.unit(6, "feet"),
  20896. weight: math.unit(152, "lb"),
  20897. name: "Front",
  20898. image: {
  20899. source: "./media/characters/shin-pikachu/front.svg",
  20900. extra: 1574/1480,
  20901. bottom: 53.3/1626
  20902. }
  20903. },
  20904. hand: {
  20905. height: math.unit(1.055, "feet"),
  20906. name: "Hand",
  20907. image: {
  20908. source: "./media/characters/shin-pikachu/hand.svg"
  20909. }
  20910. },
  20911. foot: {
  20912. height: math.unit(1.1, "feet"),
  20913. name: "Foot",
  20914. image: {
  20915. source: "./media/characters/shin-pikachu/foot.svg"
  20916. }
  20917. },
  20918. collar: {
  20919. height: math.unit(0.386, "feet"),
  20920. name: "Collar",
  20921. image: {
  20922. source: "./media/characters/shin-pikachu/collar.svg"
  20923. }
  20924. },
  20925. },
  20926. [
  20927. {
  20928. name: "Smallest",
  20929. height: math.unit(0.5, "inches")
  20930. },
  20931. {
  20932. name: "Micro",
  20933. height: math.unit(6, "inches")
  20934. },
  20935. {
  20936. name: "Normal",
  20937. height: math.unit(6, "feet"),
  20938. default: true
  20939. },
  20940. {
  20941. name: "Macro",
  20942. height: math.unit(150, "feet")
  20943. },
  20944. ]
  20945. ))
  20946. characterMakers.push(() => makeCharacter(
  20947. { name: "Kayda" },
  20948. {
  20949. front: {
  20950. height: math.unit(28, "feet"),
  20951. weight: math.unit(10500, "lb"),
  20952. name: "Front",
  20953. image: {
  20954. source: "./media/characters/kayda/front.svg",
  20955. extra: 1536/1428,
  20956. bottom: 68.7/1603
  20957. }
  20958. },
  20959. back: {
  20960. height: math.unit(28, "feet"),
  20961. weight: math.unit(10500, "lb"),
  20962. name: "Back",
  20963. image: {
  20964. source: "./media/characters/kayda/back.svg",
  20965. extra: 1557/1464,
  20966. bottom: 39.5/1597.49
  20967. }
  20968. },
  20969. dick: {
  20970. height: math.unit(3.858, "feet"),
  20971. name: "Dick",
  20972. image: {
  20973. source: "./media/characters/kayda/dick.svg"
  20974. }
  20975. },
  20976. },
  20977. [
  20978. {
  20979. name: "Macro",
  20980. height: math.unit(28, "feet"),
  20981. default: true
  20982. },
  20983. ]
  20984. ))
  20985. characterMakers.push(() => makeCharacter(
  20986. { name: "Brian", species: "Barbary Lion" },
  20987. {
  20988. front: {
  20989. height: math.unit(10 + 11/12, "feet"),
  20990. weight: math.unit(1400, "lb"),
  20991. name: "Front",
  20992. image: {
  20993. source: "./media/characters/brian/front.svg",
  20994. extra: 737/692,
  20995. bottom: 55.4/785
  20996. }
  20997. },
  20998. },
  20999. [
  21000. {
  21001. name: "Normal",
  21002. height: math.unit(10 + 11/12, "feet"),
  21003. default: true
  21004. },
  21005. ]
  21006. ))
  21007. characterMakers.push(() => makeCharacter(
  21008. { name: "Khemri", species: "Jackal" },
  21009. {
  21010. front: {
  21011. height: math.unit(5 + 8/12, "feet"),
  21012. weight: math.unit(140, "lb"),
  21013. name: "Front",
  21014. image: {
  21015. source: "./media/characters/khemri/front.svg",
  21016. extra: 4780/4059,
  21017. bottom: 80.1/4859.25
  21018. }
  21019. },
  21020. },
  21021. [
  21022. {
  21023. name: "Micro",
  21024. height: math.unit(6, "inches")
  21025. },
  21026. {
  21027. name: "Normal",
  21028. height: math.unit(5 + 8/12, "feet"),
  21029. default: true
  21030. },
  21031. ]
  21032. ))
  21033. characterMakers.push(() => makeCharacter(
  21034. { name: "Felix Braveheart" },
  21035. {
  21036. front: {
  21037. height: math.unit(13, "feet"),
  21038. weight: math.unit(1700, "lb"),
  21039. name: "Front",
  21040. image: {
  21041. source: "./media/characters/felix-braveheart/front.svg",
  21042. extra: 1222/1157,
  21043. bottom: 53.2/1280
  21044. }
  21045. },
  21046. back: {
  21047. height: math.unit(13, "feet"),
  21048. weight: math.unit(1700, "lb"),
  21049. name: "Back",
  21050. image: {
  21051. source: "./media/characters/felix-braveheart/back.svg",
  21052. extra: 1277/1203,
  21053. bottom: 50.2/1327
  21054. }
  21055. },
  21056. feral: {
  21057. height: math.unit(6, "feet"),
  21058. weight: math.unit(400, "lb"),
  21059. name: "Feral",
  21060. image: {
  21061. source: "./media/characters/felix-braveheart/feral.svg",
  21062. extra: 682/625,
  21063. bottom: 6.9/688
  21064. }
  21065. },
  21066. },
  21067. [
  21068. {
  21069. name: "Normal",
  21070. height: math.unit(13, "feet"),
  21071. default: true
  21072. },
  21073. ]
  21074. ))
  21075. characterMakers.push(() => makeCharacter(
  21076. { name: "Shadow Blade" },
  21077. {
  21078. side: {
  21079. height: math.unit(5 + 11/12, "feet"),
  21080. weight: math.unit(1400, "lb"),
  21081. name: "Side",
  21082. image: {
  21083. source: "./media/characters/shadow-blade/side.svg",
  21084. extra: 1726/1267,
  21085. bottom: 58.4/1785
  21086. }
  21087. },
  21088. },
  21089. [
  21090. {
  21091. name: "Normal",
  21092. height: math.unit(5 + 11/12, "feet"),
  21093. default: true
  21094. },
  21095. ]
  21096. ))
  21097. characterMakers.push(() => makeCharacter(
  21098. { name: "Karla Halldor" },
  21099. {
  21100. front: {
  21101. height: math.unit(1 + 6/12, "feet"),
  21102. weight: math.unit(25, "lb"),
  21103. name: "Front",
  21104. image: {
  21105. source: "./media/characters/karla-halldor/front.svg",
  21106. extra: 1459/1383,
  21107. bottom: 12/1472
  21108. }
  21109. },
  21110. },
  21111. [
  21112. {
  21113. name: "Normal",
  21114. height: math.unit(1 + 6/12, "feet"),
  21115. default: true
  21116. },
  21117. ]
  21118. ))
  21119. characterMakers.push(() => makeCharacter(
  21120. { name: "Ariam" },
  21121. {
  21122. front: {
  21123. height: math.unit(6 + 2/12, "feet"),
  21124. weight: math.unit(160, "lb"),
  21125. name: "Front",
  21126. image: {
  21127. source: "./media/characters/ariam/front.svg",
  21128. extra: 714/617,
  21129. bottom: 23.4/737,
  21130. }
  21131. },
  21132. squatting: {
  21133. height: math.unit(4.1, "feet"),
  21134. weight: math.unit(160, "lb"),
  21135. name: "Squatting",
  21136. image: {
  21137. source: "./media/characters/ariam/squatting.svg",
  21138. extra: 2617/2112,
  21139. bottom: 61.2/2681,
  21140. }
  21141. },
  21142. },
  21143. [
  21144. {
  21145. name: "Normal",
  21146. height: math.unit(6 + 2/12, "feet"),
  21147. default: true
  21148. },
  21149. {
  21150. name: "Normal+",
  21151. height: math.unit(4, "meters")
  21152. },
  21153. {
  21154. name: "Macro",
  21155. height: math.unit(50, "meters")
  21156. },
  21157. {
  21158. name: "Macro+",
  21159. height: math.unit(100, "meters")
  21160. },
  21161. {
  21162. name: "Megamacro",
  21163. height: math.unit(20, "km")
  21164. },
  21165. ]
  21166. ))
  21167. characterMakers.push(() => makeCharacter(
  21168. { name: "Qodri Class-of-'Fortwelve-Six" },
  21169. {
  21170. front: {
  21171. height: math.unit(1.67, "meters"),
  21172. weight: math.unit(140, "lb"),
  21173. name: "Front",
  21174. image: {
  21175. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  21176. extra: 438/410,
  21177. bottom: 0.75/439
  21178. }
  21179. },
  21180. },
  21181. [
  21182. {
  21183. name: "Shrunken",
  21184. height: math.unit(7.6, "cm")
  21185. },
  21186. {
  21187. name: "Human Scale",
  21188. height: math.unit(1.67, "meters")
  21189. },
  21190. {
  21191. name: "Wolxi Scale",
  21192. height: math.unit(36.7, "meters"),
  21193. default: true
  21194. },
  21195. ]
  21196. ))
  21197. characterMakers.push(() => makeCharacter(
  21198. { name: "Izue Two-Mothers" },
  21199. {
  21200. front: {
  21201. height: math.unit(1.73, "meters"),
  21202. weight: math.unit(240, "lb"),
  21203. name: "Front",
  21204. image: {
  21205. source: "./media/characters/izue-two-mothers/front.svg",
  21206. extra: 469/437,
  21207. bottom: 1.24/470.6
  21208. }
  21209. },
  21210. },
  21211. [
  21212. {
  21213. name: "Shrunken",
  21214. height: math.unit(7.86, "cm")
  21215. },
  21216. {
  21217. name: "Human Scale",
  21218. height: math.unit(1.73, "meters")
  21219. },
  21220. {
  21221. name: "Wolxi Scale",
  21222. height: math.unit(38, "meters"),
  21223. default: true
  21224. },
  21225. ]
  21226. ))
  21227. characterMakers.push(() => makeCharacter(
  21228. { name: "Teeku Love-Shack" },
  21229. {
  21230. front: {
  21231. height: math.unit(1.55, "meters"),
  21232. weight: math.unit(120, "lb"),
  21233. name: "Front",
  21234. image: {
  21235. source: "./media/characters/teeku-love-shack/front.svg",
  21236. extra: 387/362,
  21237. bottom: 1.51/388
  21238. }
  21239. },
  21240. },
  21241. [
  21242. {
  21243. name: "Shrunken",
  21244. height: math.unit(7, "cm")
  21245. },
  21246. {
  21247. name: "Human Scale",
  21248. height: math.unit(1.55, "meters")
  21249. },
  21250. {
  21251. name: "Wolxi Scale",
  21252. height: math.unit(34.1, "meters"),
  21253. default: true
  21254. },
  21255. ]
  21256. ))
  21257. characterMakers.push(() => makeCharacter(
  21258. { name: "Dejma the Red" },
  21259. {
  21260. front: {
  21261. height: math.unit(1.83, "meters"),
  21262. weight: math.unit(135, "lb"),
  21263. name: "Front",
  21264. image: {
  21265. source: "./media/characters/dejma-the-red/front.svg",
  21266. extra: 480/458,
  21267. bottom: 1.8/482
  21268. }
  21269. },
  21270. },
  21271. [
  21272. {
  21273. name: "Shrunken",
  21274. height: math.unit(8.3, "cm")
  21275. },
  21276. {
  21277. name: "Human Scale",
  21278. height: math.unit(1.83, "meters")
  21279. },
  21280. {
  21281. name: "Wolxi Scale",
  21282. height: math.unit(40, "meters"),
  21283. default: true
  21284. },
  21285. ]
  21286. ))
  21287. characterMakers.push(() => makeCharacter(
  21288. { name: "Aki" },
  21289. {
  21290. front: {
  21291. height: math.unit(1.78, "meters"),
  21292. weight: math.unit(65, "kg"),
  21293. name: "Front",
  21294. image: {
  21295. source: "./media/characters/aki/front.svg",
  21296. extra: 452/415
  21297. }
  21298. },
  21299. frontNsfw: {
  21300. height: math.unit(1.78, "meters"),
  21301. weight: math.unit(65, "kg"),
  21302. name: "Front (NSFW)",
  21303. image: {
  21304. source: "./media/characters/aki/front-nsfw.svg",
  21305. extra: 452/415
  21306. }
  21307. },
  21308. back: {
  21309. height: math.unit(1.78, "meters"),
  21310. weight: math.unit(65, "kg"),
  21311. name: "Back",
  21312. image: {
  21313. source: "./media/characters/aki/back.svg",
  21314. extra: 452/415
  21315. }
  21316. },
  21317. rump: {
  21318. height: math.unit(2.05, "feet"),
  21319. name: "Rump",
  21320. image: {
  21321. source: "./media/characters/aki/rump.svg"
  21322. }
  21323. },
  21324. dick: {
  21325. height: math.unit(0.95, "feet"),
  21326. name: "Dick",
  21327. image: {
  21328. source: "./media/characters/aki/dick.svg"
  21329. }
  21330. },
  21331. },
  21332. [
  21333. {
  21334. name: "Micro",
  21335. height: math.unit(15, "cm")
  21336. },
  21337. {
  21338. name: "Normal",
  21339. height: math.unit(178, "cm"),
  21340. default: true
  21341. },
  21342. {
  21343. name: "Macro",
  21344. height: math.unit(214, "m")
  21345. },
  21346. {
  21347. name: "Macro+",
  21348. height: math.unit(534, "m")
  21349. },
  21350. ]
  21351. ))
  21352. characterMakers.push(() => makeCharacter(
  21353. { name: "Ari" },
  21354. {
  21355. front: {
  21356. height: math.unit(5 + 5/12, "feet"),
  21357. weight: math.unit(120, "lb"),
  21358. name: "Front",
  21359. image: {
  21360. source: "./media/characters/ari/front.svg",
  21361. extra: 714.5/682,
  21362. bottom: 8/722.5
  21363. }
  21364. },
  21365. },
  21366. [
  21367. {
  21368. name: "Normal",
  21369. height: math.unit(5 + 5/12, "feet")
  21370. },
  21371. {
  21372. name: "Macro",
  21373. height: math.unit(100, "feet"),
  21374. default: true
  21375. },
  21376. {
  21377. name: "Megamacro",
  21378. height: math.unit(100, "miles")
  21379. },
  21380. {
  21381. name: "Gigamacro",
  21382. height: math.unit(80000, "miles")
  21383. },
  21384. ]
  21385. ))
  21386. characterMakers.push(() => makeCharacter(
  21387. { name: "Bolt" },
  21388. {
  21389. side: {
  21390. height: math.unit(9, "feet"),
  21391. weight: math.unit(400, "kg"),
  21392. name: "Side",
  21393. image: {
  21394. source: "./media/characters/bolt/side.svg",
  21395. extra: 1126/896,
  21396. bottom: 60/1187.3,
  21397. }
  21398. },
  21399. },
  21400. [
  21401. {
  21402. name: "Micro",
  21403. height: math.unit(5, "inches")
  21404. },
  21405. {
  21406. name: "Normal",
  21407. height: math.unit(9, "feet"),
  21408. default: true
  21409. },
  21410. {
  21411. name: "Macro",
  21412. height: math.unit(700, "feet")
  21413. },
  21414. {
  21415. name: "Max Size",
  21416. height: math.unit(1.52e22, "yottameters")
  21417. },
  21418. ]
  21419. ))
  21420. characterMakers.push(() => makeCharacter(
  21421. { name: "Draekon Sylviar", species: "Dra'gal" },
  21422. {
  21423. front: {
  21424. height: math.unit(4.53, "meters"),
  21425. weight: math.unit(3, "tons"),
  21426. name: "Front",
  21427. image: {
  21428. source: "./media/characters/draekon-sylviar/front.svg",
  21429. extra: 1228/1068,
  21430. bottom: 41/1270
  21431. }
  21432. },
  21433. tail: {
  21434. height: math.unit(1.772, "meter"),
  21435. name: "Tail",
  21436. image: {
  21437. source: "./media/characters/draekon-sylviar/tail.svg"
  21438. }
  21439. },
  21440. head: {
  21441. height: math.unit(1.331, "meter"),
  21442. name: "Head",
  21443. image: {
  21444. source: "./media/characters/draekon-sylviar/head.svg"
  21445. }
  21446. },
  21447. hand: {
  21448. height: math.unit(0.564, "meter"),
  21449. name: "Hand",
  21450. image: {
  21451. source: "./media/characters/draekon-sylviar/hand.svg"
  21452. }
  21453. },
  21454. foot: {
  21455. height: math.unit(0.621, "meter"),
  21456. name: "Foot",
  21457. image: {
  21458. source: "./media/characters/draekon-sylviar/foot.svg",
  21459. bottom: 32/324
  21460. }
  21461. },
  21462. dick: {
  21463. height: math.unit(61, "cm"),
  21464. name: "Dick",
  21465. image: {
  21466. source: "./media/characters/draekon-sylviar/dick.svg"
  21467. }
  21468. },
  21469. dickseparated: {
  21470. height: math.unit(61, "cm"),
  21471. name: "Dick-separated",
  21472. image: {
  21473. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  21474. }
  21475. },
  21476. },
  21477. [
  21478. {
  21479. name: "Small",
  21480. height: math.unit(4.53/2, "meters"),
  21481. default: true
  21482. },
  21483. {
  21484. name: "Normal",
  21485. height: math.unit(4.53, "meters"),
  21486. default: true
  21487. },
  21488. {
  21489. name: "Large",
  21490. height: math.unit(4.53*2, "meters"),
  21491. },
  21492. ]
  21493. ))
  21494. characterMakers.push(() => makeCharacter(
  21495. { name: "Brawler", species: "German Shepherd" },
  21496. {
  21497. front: {
  21498. height: math.unit(6 + 2/12, "feet"),
  21499. weight: math.unit(180, "lb"),
  21500. name: "Front",
  21501. image: {
  21502. source: "./media/characters/brawler/front.svg",
  21503. extra: 3301/3027,
  21504. bottom: 138/3439
  21505. }
  21506. },
  21507. },
  21508. [
  21509. {
  21510. name: "Normal",
  21511. height: math.unit(6 + 2/12, "feet"),
  21512. default: true
  21513. },
  21514. ]
  21515. ))
  21516. characterMakers.push(() => makeCharacter(
  21517. { name: "Alex", species: "Bayleef" },
  21518. {
  21519. front: {
  21520. height: math.unit(11, "feet"),
  21521. weight: math.unit(1000, "lb"),
  21522. name: "Front",
  21523. image: {
  21524. source: "./media/characters/alex/front.svg",
  21525. bottom: 44.5/620
  21526. }
  21527. },
  21528. },
  21529. [
  21530. {
  21531. name: "Micro",
  21532. height: math.unit(5, "inches")
  21533. },
  21534. {
  21535. name: "Normal",
  21536. height: math.unit(11, "feet"),
  21537. default: true
  21538. },
  21539. {
  21540. name: "Macro",
  21541. height: math.unit(9.5e9, "feet")
  21542. },
  21543. {
  21544. name: "Max Size",
  21545. height: math.unit(1.4e283, "yottameters")
  21546. },
  21547. ]
  21548. ))
  21549. characterMakers.push(() => makeCharacter(
  21550. { name: "Zenari" },
  21551. {
  21552. female: {
  21553. height: math.unit(29.9, "m"),
  21554. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  21555. name: "Female",
  21556. image: {
  21557. source: "./media/characters/zenari/female.svg",
  21558. extra: 3281.6/3217,
  21559. bottom: 72.2/3353
  21560. }
  21561. },
  21562. male: {
  21563. height: math.unit(27.7, "m"),
  21564. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  21565. name: "Male",
  21566. image: {
  21567. source: "./media/characters/zenari/male.svg",
  21568. extra: 3008/2991,
  21569. bottom: 54.6/3069
  21570. }
  21571. },
  21572. },
  21573. [
  21574. {
  21575. name: "Macro",
  21576. height: math.unit(29.7, "meters"),
  21577. default: true
  21578. },
  21579. ]
  21580. ))
  21581. characterMakers.push(() => makeCharacter(
  21582. { name: "Mactarian" },
  21583. {
  21584. female: {
  21585. height: math.unit(23.8, "m"),
  21586. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  21587. name: "Female",
  21588. image: {
  21589. source: "./media/characters/mactarian/female.svg",
  21590. extra: 2662/2569,
  21591. bottom: 73/2736
  21592. }
  21593. },
  21594. male: {
  21595. height: math.unit(23.8, "m"),
  21596. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  21597. name: "Male",
  21598. image: {
  21599. source: "./media/characters/mactarian/male.svg",
  21600. extra: 2673/2600,
  21601. bottom: 76/2750
  21602. }
  21603. },
  21604. },
  21605. [
  21606. {
  21607. name: "Macro",
  21608. height: math.unit(23.8, "meters"),
  21609. default: true
  21610. },
  21611. ]
  21612. ))
  21613. characterMakers.push(() => makeCharacter(
  21614. { name: "Umok" },
  21615. {
  21616. female: {
  21617. height: math.unit(19.3, "m"),
  21618. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  21619. name: "Female",
  21620. image: {
  21621. source: "./media/characters/umok/female.svg",
  21622. extra: 2186/2078,
  21623. bottom: 87/2277
  21624. }
  21625. },
  21626. male: {
  21627. height: math.unit(19.5, "m"),
  21628. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  21629. name: "Male",
  21630. image: {
  21631. source: "./media/characters/umok/male.svg",
  21632. extra: 2233/2140,
  21633. bottom: 24.4/2258
  21634. }
  21635. },
  21636. },
  21637. [
  21638. {
  21639. name: "Macro",
  21640. height: math.unit(19.3, "meters"),
  21641. default: true
  21642. },
  21643. ]
  21644. ))
  21645. characterMakers.push(() => makeCharacter(
  21646. { name: "Joraxian" },
  21647. {
  21648. female: {
  21649. height: math.unit(26.15, "m"),
  21650. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  21651. name: "Female",
  21652. image: {
  21653. source: "./media/characters/joraxian/female.svg",
  21654. extra: 2943/2831,
  21655. bottom: 27/2972
  21656. }
  21657. },
  21658. male: {
  21659. height: math.unit(25.4, "m"),
  21660. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  21661. name: "Male",
  21662. image: {
  21663. source: "./media/characters/joraxian/male.svg",
  21664. extra: 2835/2741,
  21665. bottom: 27/2862
  21666. }
  21667. },
  21668. },
  21669. [
  21670. {
  21671. name: "Macro",
  21672. height: math.unit(26.15, "meters"),
  21673. default: true
  21674. },
  21675. ]
  21676. ))
  21677. characterMakers.push(() => makeCharacter(
  21678. { name: "Sthara" },
  21679. {
  21680. female: {
  21681. height: math.unit(21.6, "m"),
  21682. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  21683. name: "Female",
  21684. image: {
  21685. source: "./media/characters/sthara/female.svg",
  21686. extra: 2516/2347,
  21687. bottom: 21.5/2537
  21688. }
  21689. },
  21690. male: {
  21691. height: math.unit(24, "m"),
  21692. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  21693. name: "Male",
  21694. image: {
  21695. source: "./media/characters/sthara/male.svg",
  21696. extra: 2732/2607,
  21697. bottom: 23/2732
  21698. }
  21699. },
  21700. },
  21701. [
  21702. {
  21703. name: "Macro",
  21704. height: math.unit(21.6, "meters"),
  21705. default: true
  21706. },
  21707. ]
  21708. ))
  21709. characterMakers.push(() => makeCharacter(
  21710. { name: "Luka Bryzant" },
  21711. {
  21712. front: {
  21713. height: math.unit(6 + 4/12, "feet"),
  21714. weight: math.unit(175, "lb"),
  21715. name: "Front",
  21716. image: {
  21717. source: "./media/characters/luka-bryzant/front.svg",
  21718. extra: 311/289,
  21719. bottom: 4/315
  21720. }
  21721. },
  21722. back: {
  21723. height: math.unit(6 + 4/12, "feet"),
  21724. weight: math.unit(175, "lb"),
  21725. name: "Back",
  21726. image: {
  21727. source: "./media/characters/luka-bryzant/back.svg",
  21728. extra: 311/289,
  21729. bottom: 3.8/313.7
  21730. }
  21731. },
  21732. },
  21733. [
  21734. {
  21735. name: "Micro",
  21736. height: math.unit(10, "inches")
  21737. },
  21738. {
  21739. name: "Normal",
  21740. height: math.unit(6 + 4/12, "feet"),
  21741. default: true
  21742. },
  21743. {
  21744. name: "Large",
  21745. height: math.unit(12, "feet")
  21746. },
  21747. ]
  21748. ))
  21749. characterMakers.push(() => makeCharacter(
  21750. { name: "Aman Aquila" },
  21751. {
  21752. front: {
  21753. height: math.unit(5 + 7/12, "feet"),
  21754. weight: math.unit(185, "lb"),
  21755. name: "Front",
  21756. image: {
  21757. source: "./media/characters/aman-aquila/front.svg",
  21758. extra: 1013/976,
  21759. bottom: 45.6/1057
  21760. }
  21761. },
  21762. side: {
  21763. height: math.unit(5 + 7/12, "feet"),
  21764. weight: math.unit(185, "lb"),
  21765. name: "Side",
  21766. image: {
  21767. source: "./media/characters/aman-aquila/side.svg",
  21768. extra: 1054/1011,
  21769. bottom: 15/1070
  21770. }
  21771. },
  21772. back: {
  21773. height: math.unit(5 + 7/12, "feet"),
  21774. weight: math.unit(185, "lb"),
  21775. name: "Back",
  21776. image: {
  21777. source: "./media/characters/aman-aquila/back.svg",
  21778. extra: 1026/970,
  21779. bottom: 12/1039
  21780. }
  21781. },
  21782. head: {
  21783. height: math.unit(1.211, "feet"),
  21784. name: "Head",
  21785. image: {
  21786. source: "./media/characters/aman-aquila/head.svg",
  21787. }
  21788. },
  21789. },
  21790. [
  21791. {
  21792. name: "Minimicro",
  21793. height: math.unit(0.057, "inches")
  21794. },
  21795. {
  21796. name: "Micro",
  21797. height: math.unit(7, "inches")
  21798. },
  21799. {
  21800. name: "Mini",
  21801. height: math.unit(3 + 7/12, "feet")
  21802. },
  21803. {
  21804. name: "Normal",
  21805. height: math.unit(5 + 7/12, "feet"),
  21806. default: true
  21807. },
  21808. {
  21809. name: "Macro",
  21810. height: math.unit(157 + 7/12, "feet")
  21811. },
  21812. {
  21813. name: "Megamacro",
  21814. height: math.unit(1557 + 7/12, "feet")
  21815. },
  21816. {
  21817. name: "Gigamacro",
  21818. height: math.unit(15557 + 7/12, "feet")
  21819. },
  21820. ]
  21821. ))
  21822. characterMakers.push(() => makeCharacter(
  21823. { name: "Hiphae", species: "Mouse" },
  21824. {
  21825. front: {
  21826. height: math.unit(3 + 2/12, "inches"),
  21827. weight: math.unit(0.3, "ounces"),
  21828. name: "Front",
  21829. image: {
  21830. source: "./media/characters/hiphae/front.svg",
  21831. extra: 1931/1683,
  21832. bottom: 24/1955
  21833. }
  21834. },
  21835. },
  21836. [
  21837. {
  21838. name: "Normal",
  21839. height: math.unit(3 + 1/2, "inches"),
  21840. default: true
  21841. },
  21842. ]
  21843. ))
  21844. characterMakers.push(() => makeCharacter(
  21845. { name: "Nicky", species: "Shark" },
  21846. {
  21847. front: {
  21848. height: math.unit(5 + 10/12, "feet"),
  21849. weight: math.unit(165, "lb"),
  21850. name: "Front",
  21851. image: {
  21852. source: "./media/characters/nicky/front.svg",
  21853. extra: 3144/2886,
  21854. bottom: 45.6/3192
  21855. }
  21856. },
  21857. back: {
  21858. height: math.unit(5 + 10/12, "feet"),
  21859. weight: math.unit(165, "lb"),
  21860. name: "Back",
  21861. image: {
  21862. source: "./media/characters/nicky/back.svg",
  21863. extra: 3055/2804,
  21864. bottom: 28.4/3087
  21865. }
  21866. },
  21867. frontclothed: {
  21868. height: math.unit(5 + 10/12, "feet"),
  21869. weight: math.unit(165, "lb"),
  21870. name: "Front-clothed",
  21871. image: {
  21872. source: "./media/characters/nicky/front-clothed.svg",
  21873. extra: 3184.9/2926.9,
  21874. bottom: 86.5/3239.9
  21875. }
  21876. },
  21877. foot: {
  21878. height: math.unit(1.16, "feet"),
  21879. name: "Foot",
  21880. image: {
  21881. source: "./media/characters/nicky/foot.svg"
  21882. }
  21883. },
  21884. feet: {
  21885. height: math.unit(1.34, "feet"),
  21886. name: "Feet",
  21887. image: {
  21888. source: "./media/characters/nicky/feet.svg"
  21889. }
  21890. },
  21891. maw: {
  21892. height: math.unit(0.9, "feet"),
  21893. name: "Maw",
  21894. image: {
  21895. source: "./media/characters/nicky/maw.svg"
  21896. }
  21897. },
  21898. },
  21899. [
  21900. {
  21901. name: "Normal",
  21902. height: math.unit(5 + 10/12, "feet"),
  21903. default: true
  21904. },
  21905. {
  21906. name: "Macro",
  21907. height: math.unit(60, "feet")
  21908. },
  21909. {
  21910. name: "Megamacro",
  21911. height: math.unit(1, "mile")
  21912. },
  21913. ]
  21914. ))
  21915. characterMakers.push(() => makeCharacter(
  21916. { name: "Blair" },
  21917. {
  21918. side: {
  21919. height: math.unit(10, "feet"),
  21920. weight: math.unit(600, "lb"),
  21921. name: "Side",
  21922. image: {
  21923. source: "./media/characters/blair/side.svg",
  21924. bottom: 16.6/475,
  21925. extra: 458/431
  21926. }
  21927. },
  21928. },
  21929. [
  21930. {
  21931. name: "Micro",
  21932. height: math.unit(8, "inches")
  21933. },
  21934. {
  21935. name: "Normal",
  21936. height: math.unit(10, "feet"),
  21937. default: true
  21938. },
  21939. {
  21940. name: "Macro",
  21941. height: math.unit(180, "feet")
  21942. },
  21943. ]
  21944. ))
  21945. characterMakers.push(() => makeCharacter(
  21946. { name: "Fisher" },
  21947. {
  21948. front: {
  21949. height: math.unit(5 + 4/12, "feet"),
  21950. weight: math.unit(125, "lb"),
  21951. name: "Front",
  21952. image: {
  21953. source: "./media/characters/fisher/front.svg",
  21954. extra: 444/390,
  21955. bottom: 2/444.8
  21956. }
  21957. },
  21958. },
  21959. [
  21960. {
  21961. name: "Micro",
  21962. height: math.unit(4, "inches")
  21963. },
  21964. {
  21965. name: "Normal",
  21966. height: math.unit(5 + 4/12, "feet"),
  21967. default: true
  21968. },
  21969. {
  21970. name: "Macro",
  21971. height: math.unit(100, "feet")
  21972. },
  21973. ]
  21974. ))
  21975. characterMakers.push(() => makeCharacter(
  21976. { name: "Gliss" },
  21977. {
  21978. front: {
  21979. height: math.unit(6.71, "feet"),
  21980. weight: math.unit(200, "lb"),
  21981. capacity: math.unit(1000000, "people"),
  21982. name: "Front",
  21983. image: {
  21984. source: "./media/characters/gliss/front.svg",
  21985. extra: 2347/2231,
  21986. bottom: 113/2462
  21987. }
  21988. },
  21989. hammerspaceSize: {
  21990. height: math.unit(6.71*717, "feet"),
  21991. weight: math.unit(200, "lb"),
  21992. capacity: math.unit(1000000, "people"),
  21993. name: "Hammerspace Size",
  21994. image: {
  21995. source: "./media/characters/gliss/front.svg",
  21996. extra: 2347/2231,
  21997. bottom: 113/2462
  21998. }
  21999. },
  22000. },
  22001. [
  22002. {
  22003. name: "Normal",
  22004. height: math.unit(6.71, "feet"),
  22005. default: true
  22006. },
  22007. ]
  22008. ))
  22009. characterMakers.push(() => makeCharacter(
  22010. { name: "Dune Anderson" },
  22011. {
  22012. side: {
  22013. height: math.unit(1.44, "m"),
  22014. weight: math.unit(80, "kg"),
  22015. name: "Side",
  22016. image: {
  22017. source: "./media/characters/dune-anderson/side.svg",
  22018. bottom: 49/1426
  22019. }
  22020. },
  22021. },
  22022. [
  22023. {
  22024. name: "Wolf-sized",
  22025. height: math.unit(1.44, "meters")
  22026. },
  22027. {
  22028. name: "Normal",
  22029. height: math.unit(5.05, "meters"),
  22030. default: true
  22031. },
  22032. {
  22033. name: "Big",
  22034. height: math.unit(14.4, "meters")
  22035. },
  22036. {
  22037. name: "Huge",
  22038. height: math.unit(144, "meters")
  22039. },
  22040. ]
  22041. ))
  22042. //characters
  22043. function makeCharacters() {
  22044. const results = [];
  22045. characterMakers.forEach(character => {
  22046. results.push(character());
  22047. });
  22048. return results;
  22049. }