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

22640 строки
542 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. },
  88. [
  89. {
  90. name: "Normal",
  91. height: math.unit(2.2428, "meter")
  92. },
  93. {
  94. name: "Big",
  95. height: math.unit(12, "feet")
  96. },
  97. {
  98. name: "Minimacro",
  99. height: math.unit(40, "feet"),
  100. default: true,
  101. info: {
  102. description: {
  103. mode: "append",
  104. text: "\n\nTOO DAMN BIG"
  105. }
  106. }
  107. },
  108. {
  109. name: "Macro",
  110. height: math.unit(100, "feet"),
  111. info: {
  112. description: {
  113. mode: "append",
  114. text: "\n\nTOO DAMN BIG"
  115. }
  116. }
  117. },
  118. {
  119. name: "Macro+",
  120. height: math.unit(300, "feet")
  121. },
  122. {
  123. name: "Megamacro",
  124. height: math.unit(2, "miles")
  125. }
  126. ]
  127. ))
  128. characterMakers.push(() => makeCharacter(
  129. { name: "Sofia Fluttertail" },
  130. {
  131. front: {
  132. height: math.unit(183, "cm"),
  133. weight: math.unit(80, "kg"),
  134. name: "Front",
  135. image: {
  136. source: "./media/characters/sofia-fluttertail/front.svg",
  137. bottom: 0.01,
  138. extra: 2154 / 2081
  139. }
  140. },
  141. frontAlt: {
  142. height: math.unit(183, "cm"),
  143. weight: math.unit(80, "kg"),
  144. name: "Front (alt)",
  145. image: {
  146. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  147. }
  148. },
  149. back: {
  150. height: math.unit(183, "cm"),
  151. weight: math.unit(80, "kg"),
  152. name: "Back",
  153. image: {
  154. source: "./media/characters/sofia-fluttertail/back.svg"
  155. }
  156. },
  157. kneeling: {
  158. height: math.unit(125, "cm"),
  159. weight: math.unit(80, "kg"),
  160. name: "Kneeling",
  161. image: {
  162. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  163. extra: 1033/977,
  164. bottom: 23.7/1057
  165. }
  166. },
  167. maw: {
  168. height: math.unit(183 / 5, "cm"),
  169. name: "Maw",
  170. image: {
  171. source: "./media/characters/sofia-fluttertail/maw.svg"
  172. }
  173. },
  174. mawcloseup: {
  175. height: math.unit(183 / 5 * 0.41, "cm"),
  176. name: "Maw (Closeup)",
  177. image: {
  178. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  179. }
  180. },
  181. },
  182. [
  183. {
  184. name: "Normal",
  185. height: math.unit(1.83, "meter")
  186. },
  187. {
  188. name: "Size Thief",
  189. height: math.unit(18, "feet")
  190. },
  191. {
  192. name: "50 Foot Collie",
  193. height: math.unit(50, "feet")
  194. },
  195. {
  196. name: "Macro",
  197. height: math.unit(96, "feet"),
  198. default: true
  199. },
  200. {
  201. name: "Megamerger",
  202. height: math.unit(650, "feet")
  203. },
  204. ]
  205. ))
  206. characterMakers.push(() => makeCharacter(
  207. { name: "March" },
  208. {
  209. front: {
  210. height: math.unit(7, "feet"),
  211. weight: math.unit(100, "kg"),
  212. name: "Front",
  213. image: {
  214. source: "./media/characters/march/front.svg",
  215. extra: 1,
  216. bottom: 0.015
  217. }
  218. },
  219. foot: {
  220. height: math.unit(0.9, "feet"),
  221. name: "Foot",
  222. image: {
  223. source: "./media/characters/march/foot.svg"
  224. }
  225. },
  226. },
  227. [
  228. {
  229. name: "Normal",
  230. height: math.unit(7.9, "feet")
  231. },
  232. {
  233. name: "Macro",
  234. height: math.unit(220, "meters")
  235. },
  236. {
  237. name: "Megamacro",
  238. height: math.unit(2.98, "km"),
  239. default: true
  240. },
  241. {
  242. name: "Gigamacro",
  243. height: math.unit(15963, "km")
  244. },
  245. {
  246. name: "Teramacro",
  247. height: math.unit(2980000000, "km")
  248. },
  249. {
  250. name: "Examacro",
  251. height: math.unit(250, "parsecs")
  252. },
  253. ]
  254. ))
  255. characterMakers.push(() => makeCharacter(
  256. { name: "Noir" },
  257. {
  258. front: {
  259. height: math.unit(6, "feet"),
  260. weight: math.unit(60, "kg"),
  261. name: "Front",
  262. image: {
  263. source: "./media/characters/noir/front.svg",
  264. extra: 1,
  265. bottom: 0.032
  266. }
  267. },
  268. },
  269. [
  270. {
  271. name: "Normal",
  272. height: math.unit(6.6, "feet")
  273. },
  274. {
  275. name: "Macro",
  276. height: math.unit(500, "feet")
  277. },
  278. {
  279. name: "Megamacro",
  280. height: math.unit(2.5, "km"),
  281. default: true
  282. },
  283. {
  284. name: "Gigamacro",
  285. height: math.unit(22500, "km")
  286. },
  287. {
  288. name: "Teramacro",
  289. height: math.unit(2500000000, "km")
  290. },
  291. {
  292. name: "Examacro",
  293. height: math.unit(200, "parsecs")
  294. },
  295. ]
  296. ))
  297. characterMakers.push(() => makeCharacter(
  298. { name: "Okuri" },
  299. {
  300. front: {
  301. height: math.unit(7, "feet"),
  302. weight: math.unit(100, "kg"),
  303. name: "Front",
  304. image: {
  305. source: "./media/characters/okuri/front.svg",
  306. extra: 1,
  307. bottom: 0.037
  308. }
  309. },
  310. back: {
  311. height: math.unit(7, "feet"),
  312. weight: math.unit(100, "kg"),
  313. name: "Back",
  314. image: {
  315. source: "./media/characters/okuri/back.svg",
  316. extra: 1,
  317. bottom: 0.007
  318. }
  319. },
  320. },
  321. [
  322. {
  323. name: "Megamacro",
  324. height: math.unit(100, "miles"),
  325. default: true
  326. },
  327. ]
  328. ))
  329. characterMakers.push(() => makeCharacter(
  330. { name: "Manny" },
  331. {
  332. front: {
  333. height: math.unit(7, "feet"),
  334. weight: math.unit(100, "kg"),
  335. name: "Front",
  336. image: {
  337. source: "./media/characters/manny/front.svg",
  338. extra: 1,
  339. bottom: 0.06
  340. }
  341. },
  342. back: {
  343. height: math.unit(7, "feet"),
  344. weight: math.unit(100, "kg"),
  345. name: "Back",
  346. image: {
  347. source: "./media/characters/manny/back.svg",
  348. extra: 1,
  349. bottom: 0.014
  350. }
  351. },
  352. },
  353. [
  354. {
  355. name: "Normal",
  356. height: math.unit(7, "feet"),
  357. },
  358. {
  359. name: "Macro",
  360. height: math.unit(78, "feet"),
  361. default: true
  362. },
  363. {
  364. name: "Macro+",
  365. height: math.unit(300, "meters")
  366. },
  367. {
  368. name: "Macro++",
  369. height: math.unit(2400, "meters")
  370. },
  371. {
  372. name: "Megamacro",
  373. height: math.unit(5167, "meters")
  374. },
  375. {
  376. name: "Gigamacro",
  377. height: math.unit(41769, "miles")
  378. },
  379. ]
  380. ))
  381. characterMakers.push(() => makeCharacter(
  382. { name: "Adake" },
  383. {
  384. front: {
  385. height: math.unit(7, "feet"),
  386. weight: math.unit(100, "kg"),
  387. name: "Front",
  388. image: {
  389. source: "./media/characters/adake/front-1.svg"
  390. }
  391. },
  392. frontAlt: {
  393. height: math.unit(7, "feet"),
  394. weight: math.unit(100, "kg"),
  395. name: "Front (Alt)",
  396. image: {
  397. source: "./media/characters/adake/front-2.svg",
  398. extra: 1,
  399. bottom: 0.01
  400. }
  401. },
  402. back: {
  403. height: math.unit(7, "feet"),
  404. weight: math.unit(100, "kg"),
  405. name: "Back",
  406. image: {
  407. source: "./media/characters/adake/back.svg",
  408. }
  409. },
  410. kneel: {
  411. height: math.unit(5.385, "feet"),
  412. weight: math.unit(100, "kg"),
  413. name: "Kneeling",
  414. image: {
  415. source: "./media/characters/adake/kneel.svg",
  416. bottom: 0.052
  417. }
  418. },
  419. },
  420. [
  421. {
  422. name: "Normal",
  423. height: math.unit(7, "feet"),
  424. },
  425. {
  426. name: "Macro",
  427. height: math.unit(78, "feet"),
  428. default: true
  429. },
  430. {
  431. name: "Macro+",
  432. height: math.unit(300, "meters")
  433. },
  434. {
  435. name: "Macro++",
  436. height: math.unit(2400, "meters")
  437. },
  438. {
  439. name: "Megamacro",
  440. height: math.unit(5167, "meters")
  441. },
  442. {
  443. name: "Gigamacro",
  444. height: math.unit(41769, "miles")
  445. },
  446. ]
  447. ))
  448. characterMakers.push(() => makeCharacter(
  449. { name: "Elijah" },
  450. {
  451. front: {
  452. height: math.unit(1.65, "meters"),
  453. weight: math.unit(50, "kg"),
  454. name: "Front",
  455. image: {
  456. source: "./media/characters/elijah/front.svg",
  457. extra: 858/830,
  458. bottom: 95.5/953.8559
  459. }
  460. },
  461. back: {
  462. height: math.unit(1.65, "meters"),
  463. weight: math.unit(50, "kg"),
  464. name: "Back",
  465. image: {
  466. source: "./media/characters/elijah/back.svg",
  467. extra: 895/850,
  468. bottom: 5.3/897.956
  469. }
  470. },
  471. frontNsfw: {
  472. height: math.unit(1.65, "meters"),
  473. weight: math.unit(50, "kg"),
  474. name: "Front (NSFW)",
  475. image: {
  476. source: "./media/characters/elijah/front-nsfw.svg",
  477. extra: 858/830,
  478. bottom: 95.5/953.8559
  479. }
  480. },
  481. backNsfw: {
  482. height: math.unit(1.65, "meters"),
  483. weight: math.unit(50, "kg"),
  484. name: "Back (NSFW)",
  485. image: {
  486. source: "./media/characters/elijah/back-nsfw.svg",
  487. extra: 895/850,
  488. bottom: 5.3/897.956
  489. }
  490. },
  491. dick: {
  492. height: math.unit(1, "feet"),
  493. name: "Dick",
  494. image: {
  495. source: "./media/characters/elijah/dick.svg"
  496. }
  497. },
  498. beakOpen: {
  499. height: math.unit(1.25, "feet"),
  500. name: "Beak (Open)",
  501. image: {
  502. source: "./media/characters/elijah/beak-open.svg"
  503. }
  504. },
  505. beakShut: {
  506. height: math.unit(1.25, "feet"),
  507. name: "Beak (Shut)",
  508. image: {
  509. source: "./media/characters/elijah/beak-shut.svg"
  510. }
  511. },
  512. footFlexing: {
  513. height: math.unit(1.61, "feet"),
  514. name: "Foot (Flexing)",
  515. image: {
  516. source: "./media/characters/elijah/foot-flexing.svg"
  517. }
  518. },
  519. footStepping: {
  520. height: math.unit(1.44, "feet"),
  521. name: "Foot (Stepping)",
  522. image: {
  523. source: "./media/characters/elijah/foot-stepping.svg"
  524. }
  525. },
  526. plantigradeLeg: {
  527. height: math.unit(2.34, "feet"),
  528. name: "Plantigrade Leg",
  529. image: {
  530. source: "./media/characters/elijah/plantigrade-leg.svg"
  531. }
  532. },
  533. plantigradeFootLeft: {
  534. height: math.unit(0.9, "feet"),
  535. name: "Plantigrade Foot (Left)",
  536. image: {
  537. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  538. }
  539. },
  540. plantigradeFootRight: {
  541. height: math.unit(0.9, "feet"),
  542. name: "Plantigrade Foot (Right)",
  543. image: {
  544. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  545. }
  546. },
  547. },
  548. [
  549. {
  550. name: "Normal",
  551. height: math.unit(1.65, "meters")
  552. },
  553. {
  554. name: "Macro",
  555. height: math.unit(55, "meters"),
  556. default: true
  557. },
  558. {
  559. name: "Macro+",
  560. height: math.unit(105, "meters")
  561. },
  562. ]
  563. ))
  564. characterMakers.push(() => makeCharacter(
  565. { name: "Rai" },
  566. {
  567. front: {
  568. height: math.unit(11, "feet"),
  569. weight: math.unit(80, "kg"),
  570. name: "Front",
  571. image: {
  572. source: "./media/characters/rai/front.svg",
  573. extra: 1,
  574. bottom: 0.03
  575. }
  576. },
  577. side: {
  578. height: math.unit(11, "feet"),
  579. weight: math.unit(80, "kg"),
  580. name: "Side",
  581. image: {
  582. source: "./media/characters/rai/side.svg"
  583. }
  584. },
  585. back: {
  586. height: math.unit(11, "feet"),
  587. weight: math.unit(80, "lb"),
  588. name: "Back",
  589. image: {
  590. source: "./media/characters/rai/back.svg",
  591. extra: 1,
  592. bottom: 0.01
  593. }
  594. },
  595. feral: {
  596. height: math.unit(11, "feet"),
  597. weight: math.unit(800, "lb"),
  598. name: "Feral",
  599. image: {
  600. source: "./media/characters/rai/feral.svg",
  601. extra: 1050 / 659,
  602. bottom: 0.07
  603. }
  604. },
  605. dragon: {
  606. height: math.unit(23, "feet"),
  607. weight: math.unit(50000, "lb"),
  608. name: "Dragon",
  609. image: {
  610. source: "./media/characters/rai/dragon.svg",
  611. extra: 2498/2030,
  612. bottom: 85.2/2584
  613. }
  614. },
  615. maw: {
  616. height: math.unit(6 / 3.81416, "feet"),
  617. name: "Maw",
  618. image: {
  619. source: "./media/characters/rai/maw.svg"
  620. }
  621. },
  622. },
  623. [
  624. {
  625. name: "Normal",
  626. height: math.unit(11, "feet")
  627. },
  628. {
  629. name: "Macro",
  630. height: math.unit(302, "feet"),
  631. default: true
  632. },
  633. ]
  634. ))
  635. characterMakers.push(() => makeCharacter(
  636. { name: "Jazzy" },
  637. {
  638. front: {
  639. height: math.unit(7, "feet"),
  640. weight: math.unit(80, "kg"),
  641. name: "Front",
  642. image: {
  643. source: "./media/characters/jazzy/front.svg",
  644. extra: 1,
  645. bottom: 0.01
  646. }
  647. },
  648. back: {
  649. height: math.unit(7, "feet"),
  650. weight: math.unit(80, "kg"),
  651. name: "Back",
  652. image: {
  653. source: "./media/characters/jazzy/back.svg",
  654. extra: 1,
  655. bottom: 0.01
  656. }
  657. },
  658. },
  659. [
  660. {
  661. name: "Macro",
  662. height: math.unit(216, "feet"),
  663. default: true
  664. },
  665. ]
  666. ))
  667. characterMakers.push(() => makeCharacter(
  668. { name: "Flamm" },
  669. {
  670. front: {
  671. height: math.unit(7, "feet"),
  672. weight: math.unit(80, "kg"),
  673. name: "Front",
  674. image: {
  675. source: "./media/characters/flamm/front.svg",
  676. extra: 1794 / 1677,
  677. bottom: 31.7 / 1828.5
  678. }
  679. },
  680. },
  681. [
  682. {
  683. name: "Normal",
  684. height: math.unit(9.5, "feet")
  685. },
  686. {
  687. name: "Macro",
  688. height: math.unit(200, "feet"),
  689. default: true
  690. },
  691. ]
  692. ))
  693. characterMakers.push(() => makeCharacter(
  694. { name: "Zephiro" },
  695. {
  696. front: {
  697. height: math.unit(7, "feet"),
  698. weight: math.unit(80, "kg"),
  699. name: "Front",
  700. image: {
  701. source: "./media/characters/zephiro/front.svg",
  702. extra: 2309 / 2162,
  703. bottom: 0.069
  704. }
  705. },
  706. side: {
  707. height: math.unit(7, "feet"),
  708. weight: math.unit(80, "kg"),
  709. name: "Side",
  710. image: {
  711. source: "./media/characters/zephiro/side.svg",
  712. extra: 2403 / 2279,
  713. bottom: 0.015
  714. }
  715. },
  716. back: {
  717. height: math.unit(7, "feet"),
  718. weight: math.unit(80, "kg"),
  719. name: "Back",
  720. image: {
  721. source: "./media/characters/zephiro/back.svg",
  722. extra: 2373 / 2244,
  723. bottom: 0.013
  724. }
  725. },
  726. },
  727. [
  728. {
  729. name: "Micro",
  730. height: math.unit(3, "inches")
  731. },
  732. {
  733. name: "Normal",
  734. height: math.unit(5 + 3 / 12, "feet"),
  735. default: true
  736. },
  737. {
  738. name: "Macro",
  739. height: math.unit(118, "feet")
  740. },
  741. ]
  742. ))
  743. characterMakers.push(() => makeCharacter(
  744. { name: "Fory" },
  745. {
  746. front: {
  747. height: math.unit(5, "feet"),
  748. weight: math.unit(90, "kg"),
  749. name: "Front",
  750. image: {
  751. source: "./media/characters/fory/front.svg",
  752. extra: 2862 / 2674,
  753. bottom: 180 / 3043.8
  754. }
  755. },
  756. back: {
  757. height: math.unit(5, "feet"),
  758. weight: math.unit(90, "kg"),
  759. name: "Back",
  760. image: {
  761. source: "./media/characters/fory/back.svg",
  762. extra: 2962 / 2791,
  763. bottom: 106 / 3071.8
  764. }
  765. },
  766. foot: {
  767. height: math.unit(2.14, "feet"),
  768. name: "Foot",
  769. image: {
  770. source: "./media/characters/fory/foot.svg"
  771. }
  772. },
  773. },
  774. [
  775. {
  776. name: "Normal",
  777. height: math.unit(5, "feet")
  778. },
  779. {
  780. name: "Macro",
  781. height: math.unit(50, "feet"),
  782. default: true
  783. },
  784. {
  785. name: "Megamacro",
  786. height: math.unit(10, "miles")
  787. },
  788. {
  789. name: "Gigamacro",
  790. height: math.unit(5, "earths")
  791. },
  792. ]
  793. ))
  794. characterMakers.push(() => makeCharacter(
  795. { name: "Kurrikage" },
  796. {
  797. front: {
  798. height: math.unit(7, "feet"),
  799. weight: math.unit(90, "kg"),
  800. name: "Front",
  801. image: {
  802. source: "./media/characters/kurrikage/front.svg",
  803. extra: 1,
  804. bottom: 0.035
  805. }
  806. },
  807. back: {
  808. height: math.unit(7, "feet"),
  809. weight: math.unit(90, "lb"),
  810. name: "Back",
  811. image: {
  812. source: "./media/characters/kurrikage/back.svg"
  813. }
  814. },
  815. paw: {
  816. height: math.unit(1.5, "feet"),
  817. name: "Paw",
  818. image: {
  819. source: "./media/characters/kurrikage/paw.svg"
  820. }
  821. },
  822. staff: {
  823. height: math.unit(6.7, "feet"),
  824. name: "Staff",
  825. image: {
  826. source: "./media/characters/kurrikage/staff.svg"
  827. }
  828. },
  829. peek: {
  830. height: math.unit(1.05, "feet"),
  831. name: "Peeking",
  832. image: {
  833. source: "./media/characters/kurrikage/peek.svg",
  834. bottom: 0.08
  835. }
  836. },
  837. },
  838. [
  839. {
  840. name: "Normal",
  841. height: math.unit(12, "feet"),
  842. default: true
  843. },
  844. {
  845. name: "Big",
  846. height: math.unit(20, "feet")
  847. },
  848. {
  849. name: "Macro",
  850. height: math.unit(500, "feet")
  851. },
  852. {
  853. name: "Megamacro",
  854. height: math.unit(20, "miles")
  855. },
  856. ]
  857. ))
  858. characterMakers.push(() => makeCharacter(
  859. { name: "Shingo" },
  860. {
  861. front: {
  862. height: math.unit(6, "feet"),
  863. weight: math.unit(75, "kg"),
  864. name: "Front",
  865. image: {
  866. source: "./media/characters/shingo/front.svg",
  867. extra: 3511 / 3338,
  868. bottom: 0.005
  869. }
  870. },
  871. },
  872. [
  873. {
  874. name: "Micro",
  875. height: math.unit(4, "inches")
  876. },
  877. {
  878. name: "Normal",
  879. height: math.unit(6, "feet"),
  880. default: true
  881. },
  882. {
  883. name: "Macro",
  884. height: math.unit(108, "feet")
  885. }
  886. ]
  887. ))
  888. characterMakers.push(() => makeCharacter(
  889. { name: "Aigey" },
  890. {
  891. side: {
  892. height: math.unit(6, "feet"),
  893. weight: math.unit(75, "kg"),
  894. name: "Side",
  895. image: {
  896. source: "./media/characters/aigey/side.svg"
  897. }
  898. },
  899. },
  900. [
  901. {
  902. name: "Macro",
  903. height: math.unit(200, "feet"),
  904. default: true
  905. },
  906. {
  907. name: "Megamacro",
  908. height: math.unit(100, "miles")
  909. },
  910. ]
  911. )
  912. )
  913. characterMakers.push(() => makeCharacter(
  914. { name: "Natasha" },
  915. {
  916. front: {
  917. height: math.unit(5 + 5 / 12, "feet"),
  918. weight: math.unit(75, "kg"),
  919. name: "Front",
  920. image: {
  921. source: "./media/characters/natasha/front.svg",
  922. extra: 859/824,
  923. bottom: 23/879.6
  924. }
  925. },
  926. frontNsfw: {
  927. height: math.unit(5 + 5 / 12, "feet"),
  928. weight: math.unit(75, "kg"),
  929. name: "Front (NSFW)",
  930. image: {
  931. source: "./media/characters/natasha/front-nsfw.svg",
  932. extra: 859/824,
  933. bottom: 23/879.6
  934. }
  935. },
  936. frontErect: {
  937. height: math.unit(5 + 5 / 12, "feet"),
  938. weight: math.unit(75, "kg"),
  939. name: "Front (Erect)",
  940. image: {
  941. source: "./media/characters/natasha/front-erect.svg",
  942. extra: 859/824,
  943. bottom: 23/879.6
  944. }
  945. },
  946. back: {
  947. height: math.unit(5 + 5 / 12, "feet"),
  948. weight: math.unit(75, "kg"),
  949. name: "Back",
  950. image: {
  951. source: "./media/characters/natasha/back.svg",
  952. extra: 887.9/852.6,
  953. bottom: 9.7/896.4
  954. }
  955. },
  956. backAlt: {
  957. height: math.unit(5 + 5 / 12, "feet"),
  958. weight: math.unit(75, "kg"),
  959. name: "Back (Alt)",
  960. image: {
  961. source: "./media/characters/natasha/back-alt.svg",
  962. extra: 1236.7/1192,
  963. bottom: 22.3/1258.2
  964. }
  965. },
  966. dick: {
  967. height: math.unit(1.772, "feet"),
  968. name: "Dick",
  969. image: {
  970. source: "./media/characters/natasha/dick.svg"
  971. }
  972. },
  973. },
  974. [
  975. {
  976. name: "Normal",
  977. height: math.unit(5 + 5 / 12, "feet")
  978. },
  979. {
  980. name: "Large",
  981. height: math.unit(12, "feet")
  982. },
  983. {
  984. name: "Macro",
  985. height: math.unit(100, "feet"),
  986. default: true
  987. },
  988. {
  989. name: "Macro+",
  990. height: math.unit(260, "feet")
  991. },
  992. {
  993. name: "Macro++",
  994. height: math.unit(1, "mile")
  995. },
  996. ]
  997. ))
  998. characterMakers.push(() => makeCharacter(
  999. { name: "Malik" },
  1000. {
  1001. front: {
  1002. height: math.unit(6, "feet"),
  1003. weight: math.unit(75, "kg"),
  1004. name: "Front",
  1005. image: {
  1006. source: "./media/characters/malik/front.svg"
  1007. }
  1008. },
  1009. side: {
  1010. height: math.unit(6, "feet"),
  1011. weight: math.unit(75, "kg"),
  1012. name: "Side",
  1013. image: {
  1014. source: "./media/characters/malik/side.svg",
  1015. extra: 1.1539
  1016. }
  1017. },
  1018. back: {
  1019. height: math.unit(6, "feet"),
  1020. weight: math.unit(75, "kg"),
  1021. name: "Back",
  1022. image: {
  1023. source: "./media/characters/malik/back.svg"
  1024. }
  1025. },
  1026. },
  1027. [
  1028. {
  1029. name: "Macro",
  1030. height: math.unit(156, "feet"),
  1031. default: true
  1032. },
  1033. {
  1034. name: "Macro+",
  1035. height: math.unit(1188, "feet")
  1036. },
  1037. ]
  1038. ))
  1039. characterMakers.push(() => makeCharacter(
  1040. { name: "Sefer" },
  1041. {
  1042. front: {
  1043. height: math.unit(6, "feet"),
  1044. weight: math.unit(75, "kg"),
  1045. name: "Front",
  1046. image: {
  1047. source: "./media/characters/sefer/front.svg"
  1048. }
  1049. },
  1050. back: {
  1051. height: math.unit(6, "feet"),
  1052. weight: math.unit(75, "kg"),
  1053. name: "Back",
  1054. image: {
  1055. source: "./media/characters/sefer/back.svg"
  1056. }
  1057. },
  1058. },
  1059. [
  1060. {
  1061. name: "Normal",
  1062. height: math.unit(6, "feet"),
  1063. default: true
  1064. },
  1065. ]
  1066. ))
  1067. characterMakers.push(() => makeCharacter(
  1068. { name: "North" },
  1069. {
  1070. body: {
  1071. height: math.unit(2.2428, "meter"),
  1072. weight: math.unit(124.738, "kg"),
  1073. name: "Body",
  1074. image: {
  1075. extra: 1225 / 1050,
  1076. source: "./media/characters/north/front.svg"
  1077. }
  1078. }
  1079. },
  1080. [
  1081. {
  1082. name: "Micro",
  1083. height: math.unit(4, "inches")
  1084. },
  1085. {
  1086. name: "Macro",
  1087. height: math.unit(63, "meters")
  1088. },
  1089. {
  1090. name: "Megamacro",
  1091. height: math.unit(101, "miles"),
  1092. default: true
  1093. }
  1094. ]
  1095. ))
  1096. characterMakers.push(() => makeCharacter(
  1097. { name: "Talan" },
  1098. {
  1099. angled: {
  1100. height: math.unit(4, "meter"),
  1101. weight: math.unit(150, "kg"),
  1102. name: "Angled",
  1103. image: {
  1104. source: "./media/characters/talan/angled-sfw.svg",
  1105. bottom: 29 / 3734
  1106. }
  1107. },
  1108. angledNsfw: {
  1109. height: math.unit(4, "meter"),
  1110. weight: math.unit(150, "kg"),
  1111. name: "Angled (NSFW)",
  1112. image: {
  1113. source: "./media/characters/talan/angled-nsfw.svg",
  1114. bottom: 29 / 3734
  1115. }
  1116. },
  1117. frontNsfw: {
  1118. height: math.unit(4, "meter"),
  1119. weight: math.unit(150, "kg"),
  1120. name: "Front (NSFW)",
  1121. image: {
  1122. source: "./media/characters/talan/front-nsfw.svg",
  1123. bottom: 29 / 3734
  1124. }
  1125. },
  1126. sideNsfw: {
  1127. height: math.unit(4, "meter"),
  1128. weight: math.unit(150, "kg"),
  1129. name: "Side (NSFW)",
  1130. image: {
  1131. source: "./media/characters/talan/side-nsfw.svg",
  1132. bottom: 29 / 3734
  1133. }
  1134. },
  1135. back: {
  1136. height: math.unit(4, "meter"),
  1137. weight: math.unit(150, "kg"),
  1138. name: "Back",
  1139. image: {
  1140. source: "./media/characters/talan/back.svg"
  1141. }
  1142. },
  1143. dickBottom: {
  1144. height: math.unit(0.621, "meter"),
  1145. name: "Dick (Bottom)",
  1146. image: {
  1147. source: "./media/characters/talan/dick-bottom.svg"
  1148. }
  1149. },
  1150. dickTop: {
  1151. height: math.unit(0.621, "meter"),
  1152. name: "Dick (Top)",
  1153. image: {
  1154. source: "./media/characters/talan/dick-top.svg"
  1155. }
  1156. },
  1157. dickSide: {
  1158. height: math.unit(0.305, "meter"),
  1159. name: "Dick (Side)",
  1160. image: {
  1161. source: "./media/characters/talan/dick-side.svg"
  1162. }
  1163. },
  1164. dickFront: {
  1165. height: math.unit(0.305, "meter"),
  1166. name: "Dick (Front)",
  1167. image: {
  1168. source: "./media/characters/talan/dick-front.svg"
  1169. }
  1170. },
  1171. },
  1172. [
  1173. {
  1174. name: "Normal",
  1175. height: math.unit(4, "meters")
  1176. },
  1177. {
  1178. name: "Macro",
  1179. height: math.unit(100, "meters")
  1180. },
  1181. {
  1182. name: "Megamacro",
  1183. height: math.unit(2, "miles"),
  1184. default: true
  1185. },
  1186. {
  1187. name: "Gigamacro",
  1188. height: math.unit(5000, "miles")
  1189. },
  1190. {
  1191. name: "Teramacro",
  1192. height: math.unit(100, "parsecs")
  1193. }
  1194. ]
  1195. ))
  1196. characterMakers.push(() => makeCharacter(
  1197. { name: "Gael'Rathus" },
  1198. {
  1199. front: {
  1200. height: math.unit(2, "meter"),
  1201. weight: math.unit(90, "kg"),
  1202. name: "Front",
  1203. image: {
  1204. source: "./media/characters/gael'rathus/front.svg"
  1205. }
  1206. },
  1207. frontAlt: {
  1208. height: math.unit(2, "meter"),
  1209. weight: math.unit(90, "kg"),
  1210. name: "Front (alt)",
  1211. image: {
  1212. source: "./media/characters/gael'rathus/front-alt.svg"
  1213. }
  1214. },
  1215. frontAlt2: {
  1216. height: math.unit(2, "meter"),
  1217. weight: math.unit(90, "kg"),
  1218. name: "Front (alt 2)",
  1219. image: {
  1220. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1221. }
  1222. }
  1223. },
  1224. [
  1225. {
  1226. name: "Normal",
  1227. height: math.unit(9, "feet"),
  1228. default: true
  1229. },
  1230. {
  1231. name: "Large",
  1232. height: math.unit(25, "feet")
  1233. },
  1234. {
  1235. name: "Macro",
  1236. height: math.unit(0.25, "miles")
  1237. },
  1238. {
  1239. name: "Megamacro",
  1240. height: math.unit(10, "miles")
  1241. }
  1242. ]
  1243. ))
  1244. characterMakers.push(() => makeCharacter(
  1245. { name: "Sosha" },
  1246. {
  1247. side: {
  1248. height: math.unit(2, "meter"),
  1249. weight: math.unit(140, "kg"),
  1250. name: "Side",
  1251. image: {
  1252. source: "./media/characters/sosha/side.svg",
  1253. bottom: 0.042
  1254. }
  1255. },
  1256. },
  1257. [
  1258. {
  1259. name: "Normal",
  1260. height: math.unit(12, "feet"),
  1261. default: true
  1262. }
  1263. ]
  1264. ))
  1265. characterMakers.push(() => makeCharacter(
  1266. { name: "RuNNoLa" },
  1267. {
  1268. side: {
  1269. height: math.unit(5 + 5 / 12, "feet"),
  1270. weight: math.unit(170, "kg"),
  1271. name: "Side",
  1272. image: {
  1273. source: "./media/characters/runnola/side.svg",
  1274. extra: 741 / 448,
  1275. bottom: 0.05
  1276. }
  1277. },
  1278. },
  1279. [
  1280. {
  1281. name: "Small",
  1282. height: math.unit(3, "feet")
  1283. },
  1284. {
  1285. name: "Normal",
  1286. height: math.unit(5 + 5 / 12, "feet"),
  1287. default: true
  1288. },
  1289. {
  1290. name: "Big",
  1291. height: math.unit(10, "feet")
  1292. },
  1293. ]
  1294. ))
  1295. characterMakers.push(() => makeCharacter(
  1296. { name: "Kurribird" },
  1297. {
  1298. front: {
  1299. height: math.unit(2, "meter"),
  1300. weight: math.unit(50, "kg"),
  1301. name: "Front",
  1302. image: {
  1303. source: "./media/characters/kurribird/front.svg",
  1304. bottom: 0.015
  1305. }
  1306. },
  1307. frontAlt: {
  1308. height: math.unit(1.5, "meter"),
  1309. weight: math.unit(50, "kg"),
  1310. name: "Front (Alt)",
  1311. image: {
  1312. source: "./media/characters/kurribird/front-alt.svg",
  1313. extra: 1.45
  1314. }
  1315. },
  1316. },
  1317. [
  1318. {
  1319. name: "Normal",
  1320. height: math.unit(7, "feet")
  1321. },
  1322. {
  1323. name: "Big",
  1324. height: math.unit(12, "feet"),
  1325. default: true
  1326. },
  1327. {
  1328. name: "Macro",
  1329. height: math.unit(1500, "feet")
  1330. },
  1331. {
  1332. name: "Megamacro",
  1333. height: math.unit(2, "miles")
  1334. }
  1335. ]
  1336. ))
  1337. characterMakers.push(() => makeCharacter(
  1338. { name: "Elbial" },
  1339. {
  1340. front: {
  1341. height: math.unit(2, "meter"),
  1342. weight: math.unit(80, "kg"),
  1343. name: "Front",
  1344. image: {
  1345. source: "./media/characters/elbial/front.svg",
  1346. extra: 1643 / 1556,
  1347. bottom: 60.2 / 1696
  1348. }
  1349. },
  1350. side: {
  1351. height: math.unit(2, "meter"),
  1352. weight: math.unit(80, "kg"),
  1353. name: "Side",
  1354. image: {
  1355. source: "./media/characters/elbial/side.svg",
  1356. extra: 1630 / 1565,
  1357. bottom: 71.5 / 1697
  1358. }
  1359. },
  1360. back: {
  1361. height: math.unit(2, "meter"),
  1362. weight: math.unit(80, "kg"),
  1363. name: "Back",
  1364. image: {
  1365. source: "./media/characters/elbial/back.svg",
  1366. extra: 1668 / 1595,
  1367. bottom: 5.6 / 1672
  1368. }
  1369. },
  1370. frontDressed: {
  1371. height: math.unit(2, "meter"),
  1372. weight: math.unit(80, "kg"),
  1373. name: "Front (Dressed)",
  1374. image: {
  1375. source: "./media/characters/elbial/front-dressed.svg",
  1376. extra: 1653 / 1584,
  1377. bottom: 57 / 1708
  1378. }
  1379. },
  1380. genitals: {
  1381. height: math.unit(2 / 3.367, "meter"),
  1382. name: "Genitals",
  1383. image: {
  1384. source: "./media/characters/elbial/genitals.svg"
  1385. }
  1386. },
  1387. },
  1388. [
  1389. {
  1390. name: "Large",
  1391. height: math.unit(100, "feet")
  1392. },
  1393. {
  1394. name: "Macro",
  1395. height: math.unit(500, "feet"),
  1396. default: true
  1397. },
  1398. {
  1399. name: "Megamacro",
  1400. height: math.unit(10, "miles")
  1401. },
  1402. {
  1403. name: "Gigamacro",
  1404. height: math.unit(25000, "miles")
  1405. },
  1406. {
  1407. name: "Full-Size",
  1408. height: math.unit(8000000, "gigaparsecs")
  1409. }
  1410. ]
  1411. ))
  1412. characterMakers.push(() => makeCharacter(
  1413. { name: "Noah" },
  1414. {
  1415. front: {
  1416. height: math.unit(2, "meter"),
  1417. weight: math.unit(60, "kg"),
  1418. name: "Front",
  1419. image: {
  1420. source: "./media/characters/noah/front.svg"
  1421. }
  1422. },
  1423. talons: {
  1424. height: math.unit(0.315, "meter"),
  1425. name: "Talons",
  1426. image: {
  1427. source: "./media/characters/noah/talons.svg"
  1428. }
  1429. }
  1430. },
  1431. [
  1432. {
  1433. name: "Large",
  1434. height: math.unit(50, "feet")
  1435. },
  1436. {
  1437. name: "Macro",
  1438. height: math.unit(750, "feet"),
  1439. default: true
  1440. },
  1441. {
  1442. name: "Megamacro",
  1443. height: math.unit(50, "miles")
  1444. },
  1445. {
  1446. name: "Gigamacro",
  1447. height: math.unit(100000, "miles")
  1448. },
  1449. {
  1450. name: "Full-Size",
  1451. height: math.unit(3000000000, "miles")
  1452. }
  1453. ]
  1454. ))
  1455. characterMakers.push(() => makeCharacter(
  1456. { name: "Natalya" },
  1457. {
  1458. front: {
  1459. height: math.unit(2, "meter"),
  1460. weight: math.unit(80, "kg"),
  1461. name: "Front",
  1462. image: {
  1463. source: "./media/characters/natalya/front.svg"
  1464. }
  1465. },
  1466. back: {
  1467. height: math.unit(2, "meter"),
  1468. weight: math.unit(80, "kg"),
  1469. name: "Back",
  1470. image: {
  1471. source: "./media/characters/natalya/back.svg"
  1472. }
  1473. }
  1474. },
  1475. [
  1476. {
  1477. name: "Normal",
  1478. height: math.unit(150, "feet"),
  1479. default: true
  1480. },
  1481. {
  1482. name: "Megamacro",
  1483. height: math.unit(5, "miles")
  1484. },
  1485. {
  1486. name: "Full-Size",
  1487. height: math.unit(600, "kiloparsecs")
  1488. }
  1489. ]
  1490. ))
  1491. characterMakers.push(() => makeCharacter(
  1492. { name: "Erestrebah" },
  1493. {
  1494. front: {
  1495. height: math.unit(2, "meter"),
  1496. weight: math.unit(50, "kg"),
  1497. name: "Front",
  1498. image: {
  1499. source: "./media/characters/erestrebah/front.svg",
  1500. extra: 208 / 193,
  1501. bottom: 0.055
  1502. }
  1503. },
  1504. back: {
  1505. height: math.unit(2, "meter"),
  1506. weight: math.unit(50, "kg"),
  1507. name: "Back",
  1508. image: {
  1509. source: "./media/characters/erestrebah/back.svg",
  1510. extra: 1.3
  1511. }
  1512. }
  1513. },
  1514. [
  1515. {
  1516. name: "Normal",
  1517. height: math.unit(10, "feet")
  1518. },
  1519. {
  1520. name: "Large",
  1521. height: math.unit(50, "feet"),
  1522. default: true
  1523. },
  1524. {
  1525. name: "Macro",
  1526. height: math.unit(300, "feet")
  1527. },
  1528. {
  1529. name: "Macro+",
  1530. height: math.unit(750, "feet")
  1531. },
  1532. {
  1533. name: "Megamacro",
  1534. height: math.unit(3, "miles")
  1535. }
  1536. ]
  1537. ))
  1538. characterMakers.push(() => makeCharacter(
  1539. { name: "Jennifer" },
  1540. {
  1541. front: {
  1542. height: math.unit(2, "meter"),
  1543. weight: math.unit(80, "kg"),
  1544. name: "Front",
  1545. image: {
  1546. source: "./media/characters/jennifer/front.svg",
  1547. bottom: 0.11,
  1548. extra: 1.16
  1549. }
  1550. },
  1551. frontAlt: {
  1552. height: math.unit(2, "meter"),
  1553. weight: math.unit(80, "kg"),
  1554. name: "Front (Alt)",
  1555. image: {
  1556. source: "./media/characters/jennifer/front-alt.svg"
  1557. }
  1558. }
  1559. },
  1560. [
  1561. {
  1562. name: "Canon Height",
  1563. height: math.unit(120, "feet"),
  1564. default: true
  1565. },
  1566. {
  1567. name: "Macro+",
  1568. height: math.unit(300, "feet")
  1569. },
  1570. {
  1571. name: "Megamacro",
  1572. height: math.unit(20000, "feet")
  1573. }
  1574. ]
  1575. ))
  1576. characterMakers.push(() => makeCharacter(
  1577. { name: "Kalista" },
  1578. {
  1579. front: {
  1580. height: math.unit(2, "meter"),
  1581. weight: math.unit(50, "kg"),
  1582. name: "Front",
  1583. image: {
  1584. source: "./media/characters/kalista/front.svg",
  1585. extra: 1947 / 1700,
  1586. bottom: 76.6/1412.98
  1587. }
  1588. },
  1589. back: {
  1590. height: math.unit(2, "meter"),
  1591. weight: math.unit(50, "kg"),
  1592. name: "Back",
  1593. image: {
  1594. source: "./media/characters/kalista/back.svg",
  1595. extra: 1366 / 1156,
  1596. bottom: 33.9/1362.78
  1597. }
  1598. }
  1599. },
  1600. [
  1601. {
  1602. name: "Uncomfortably Small",
  1603. height: math.unit(10, "feet")
  1604. },
  1605. {
  1606. name: "Small",
  1607. height: math.unit(30, "feet")
  1608. },
  1609. {
  1610. name: "Macro",
  1611. height: math.unit(100, "feet"),
  1612. default: true
  1613. },
  1614. {
  1615. name: "Macro+",
  1616. height: math.unit(2000, "feet")
  1617. },
  1618. {
  1619. name: "True Form",
  1620. height: math.unit(8924, "miles")
  1621. }
  1622. ]
  1623. ))
  1624. characterMakers.push(() => makeCharacter(
  1625. { name: "GiantGrowingVixen" },
  1626. {
  1627. front: {
  1628. height: math.unit(2, "meter"),
  1629. weight: math.unit(120, "kg"),
  1630. name: "Front",
  1631. image: {
  1632. source: "./media/characters/ggv/front.svg"
  1633. }
  1634. },
  1635. side: {
  1636. height: math.unit(2, "meter"),
  1637. weight: math.unit(120, "kg"),
  1638. name: "Side",
  1639. image: {
  1640. source: "./media/characters/ggv/side.svg"
  1641. }
  1642. }
  1643. },
  1644. [
  1645. {
  1646. name: "Extremely Puny",
  1647. height: math.unit(9 + 5 / 12, "feet")
  1648. },
  1649. {
  1650. name: "Horribly Small",
  1651. height: math.unit(47.7, "miles"),
  1652. default: true
  1653. },
  1654. {
  1655. name: "Reasonably Sized",
  1656. height: math.unit(25000, "parsecs")
  1657. },
  1658. {
  1659. name: "Slightly Uncompressed",
  1660. height: math.unit(7.77e31, "parsecs")
  1661. },
  1662. {
  1663. name: "Omniversal",
  1664. height: math.unit(1e300, "meters")
  1665. },
  1666. ]
  1667. ))
  1668. characterMakers.push(() => makeCharacter(
  1669. { name: "Napalm" },
  1670. {
  1671. front: {
  1672. height: math.unit(2, "meter"),
  1673. weight: math.unit(75, "lb"),
  1674. name: "Front",
  1675. image: {
  1676. source: "./media/characters/napalm/front.svg"
  1677. }
  1678. },
  1679. back: {
  1680. height: math.unit(2, "meter"),
  1681. weight: math.unit(75, "lb"),
  1682. name: "Back",
  1683. image: {
  1684. source: "./media/characters/napalm/back.svg"
  1685. }
  1686. }
  1687. },
  1688. [
  1689. {
  1690. name: "Standard",
  1691. height: math.unit(55, "feet"),
  1692. default: true
  1693. }
  1694. ]
  1695. ))
  1696. characterMakers.push(() => makeCharacter(
  1697. { name: "Asana" },
  1698. {
  1699. front: {
  1700. height: math.unit(7 + 5 / 6, "feet"),
  1701. weight: math.unit(325, "lb"),
  1702. name: "Front",
  1703. image: {
  1704. source: "./media/characters/asana/front.svg",
  1705. extra: 1128 / 1068
  1706. }
  1707. },
  1708. back: {
  1709. height: math.unit(7 + 5 / 6, "feet"),
  1710. weight: math.unit(325, "lb"),
  1711. name: "Back",
  1712. image: {
  1713. source: "./media/characters/asana/back.svg",
  1714. extra: 1128 / 1068
  1715. }
  1716. },
  1717. },
  1718. [
  1719. {
  1720. name: "Standard",
  1721. height: math.unit(7 + 5 / 6, "feet"),
  1722. default: true
  1723. },
  1724. {
  1725. name: "Large",
  1726. height: math.unit(10, "meters")
  1727. },
  1728. {
  1729. name: "Macro",
  1730. height: math.unit(2500, "meters")
  1731. },
  1732. {
  1733. name: "Megamacro",
  1734. height: math.unit(5e6, "meters")
  1735. },
  1736. {
  1737. name: "Examacro",
  1738. height: math.unit(5e12, "lightyears")
  1739. },
  1740. {
  1741. name: "Max Size",
  1742. height: math.unit(1e31, "lightyears")
  1743. }
  1744. ]
  1745. ))
  1746. characterMakers.push(() => makeCharacter(
  1747. { name: "Ebony" },
  1748. {
  1749. front: {
  1750. height: math.unit(2, "meter"),
  1751. weight: math.unit(60, "kg"),
  1752. name: "Front",
  1753. image: {
  1754. source: "./media/characters/ebony/front.svg",
  1755. bottom: 0.03,
  1756. extra: 1045 / 810 + 0.03
  1757. }
  1758. },
  1759. side: {
  1760. height: math.unit(2, "meter"),
  1761. weight: math.unit(60, "kg"),
  1762. name: "Side",
  1763. image: {
  1764. source: "./media/characters/ebony/side.svg",
  1765. bottom: 0.03,
  1766. extra: 1045 / 810 + 0.03
  1767. }
  1768. },
  1769. back: {
  1770. height: math.unit(2, "meter"),
  1771. weight: math.unit(60, "kg"),
  1772. name: "Back",
  1773. image: {
  1774. source: "./media/characters/ebony/back.svg",
  1775. bottom: 0.01,
  1776. extra: 1045 / 810 + 0.01
  1777. }
  1778. },
  1779. },
  1780. [
  1781. // TODO check why I did this lol
  1782. {
  1783. name: "Standard",
  1784. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1785. default: true
  1786. },
  1787. {
  1788. name: "Macro",
  1789. height: math.unit(200, "feet")
  1790. },
  1791. {
  1792. name: "Gigamacro",
  1793. height: math.unit(13000, "km")
  1794. }
  1795. ]
  1796. ))
  1797. characterMakers.push(() => makeCharacter(
  1798. { name: "Mountain" },
  1799. {
  1800. front: {
  1801. height: math.unit(6, "feet"),
  1802. weight: math.unit(175, "lb"),
  1803. name: "Front",
  1804. image: {
  1805. source: "./media/characters/mountain/front.svg"
  1806. }
  1807. },
  1808. back: {
  1809. height: math.unit(6, "feet"),
  1810. weight: math.unit(175, "lb"),
  1811. name: "Back",
  1812. image: {
  1813. source: "./media/characters/mountain/back.svg"
  1814. }
  1815. },
  1816. },
  1817. [
  1818. {
  1819. name: "Large",
  1820. height: math.unit(20, "meters")
  1821. },
  1822. {
  1823. name: "Macro",
  1824. height: math.unit(300, "meters")
  1825. },
  1826. {
  1827. name: "Gigamacro",
  1828. height: math.unit(10000, "km"),
  1829. default: true
  1830. },
  1831. {
  1832. name: "Examacro",
  1833. height: math.unit(10e9, "lightyears")
  1834. }
  1835. ]
  1836. ))
  1837. characterMakers.push(() => makeCharacter(
  1838. { name: "Rick" },
  1839. {
  1840. front: {
  1841. height: math.unit(8, "feet"),
  1842. weight: math.unit(500, "lb"),
  1843. name: "Front",
  1844. image: {
  1845. source: "./media/characters/rick/front.svg"
  1846. }
  1847. }
  1848. },
  1849. [
  1850. {
  1851. name: "Normal",
  1852. height: math.unit(8, "feet"),
  1853. default: true
  1854. },
  1855. {
  1856. name: "Macro",
  1857. height: math.unit(5, "km")
  1858. }
  1859. ]
  1860. ))
  1861. characterMakers.push(() => makeCharacter(
  1862. { name: "Ona" },
  1863. {
  1864. front: {
  1865. height: math.unit(8, "feet"),
  1866. weight: math.unit(120, "lb"),
  1867. name: "Front",
  1868. image: {
  1869. source: "./media/characters/ona/front.svg"
  1870. }
  1871. },
  1872. frontAlt: {
  1873. height: math.unit(8, "feet"),
  1874. weight: math.unit(120, "lb"),
  1875. name: "Front (Alt)",
  1876. image: {
  1877. source: "./media/characters/ona/front-alt.svg"
  1878. }
  1879. },
  1880. back: {
  1881. height: math.unit(8, "feet"),
  1882. weight: math.unit(120, "lb"),
  1883. name: "Back",
  1884. image: {
  1885. source: "./media/characters/ona/back.svg"
  1886. }
  1887. },
  1888. foot: {
  1889. height: math.unit(1.1, "feet"),
  1890. name: "Foot",
  1891. image: {
  1892. source: "./media/characters/ona/foot.svg"
  1893. }
  1894. }
  1895. },
  1896. [
  1897. {
  1898. name: "Megamacro",
  1899. height: math.unit(70, "km"),
  1900. default: true
  1901. },
  1902. {
  1903. name: "Gigamacro",
  1904. height: math.unit(681818, "miles")
  1905. },
  1906. {
  1907. name: "Examacro",
  1908. height: math.unit(3800000, "lightyears")
  1909. },
  1910. ]
  1911. ))
  1912. characterMakers.push(() => makeCharacter(
  1913. { name: "Mech" },
  1914. {
  1915. front: {
  1916. height: math.unit(12, "feet"),
  1917. weight: math.unit(3000, "lb"),
  1918. name: "Front",
  1919. image: {
  1920. source: "./media/characters/mech/front.svg",
  1921. bottom: 0.025,
  1922. }
  1923. },
  1924. back: {
  1925. height: math.unit(12, "feet"),
  1926. weight: math.unit(3000, "lb"),
  1927. name: "Back",
  1928. image: {
  1929. source: "./media/characters/mech/back.svg",
  1930. bottom: 0.03,
  1931. }
  1932. }
  1933. },
  1934. [
  1935. {
  1936. name: "Normal",
  1937. height: math.unit(12, "feet")
  1938. },
  1939. {
  1940. name: "Macro",
  1941. height: math.unit(300, "feet"),
  1942. default: true
  1943. },
  1944. {
  1945. name: "Macro+",
  1946. height: math.unit(1500, "feet")
  1947. },
  1948. ]
  1949. ))
  1950. characterMakers.push(() => makeCharacter(
  1951. { name: "Gregory" },
  1952. {
  1953. front: {
  1954. height: math.unit(1.3, "meter"),
  1955. weight: math.unit(30, "kg"),
  1956. name: "Front",
  1957. image: {
  1958. source: "./media/characters/gregory/front.svg",
  1959. }
  1960. }
  1961. },
  1962. [
  1963. {
  1964. name: "Normal",
  1965. height: math.unit(1.3, "meter"),
  1966. default: true
  1967. },
  1968. {
  1969. name: "Macro",
  1970. height: math.unit(20, "meter")
  1971. }
  1972. ]
  1973. ))
  1974. characterMakers.push(() => makeCharacter(
  1975. { name: "Elory" },
  1976. {
  1977. front: {
  1978. height: math.unit(2.8, "meter"),
  1979. weight: math.unit(200, "kg"),
  1980. name: "Front",
  1981. image: {
  1982. source: "./media/characters/elory/front.svg",
  1983. }
  1984. }
  1985. },
  1986. [
  1987. {
  1988. name: "Normal",
  1989. height: math.unit(2.8, "meter"),
  1990. default: true
  1991. },
  1992. {
  1993. name: "Macro",
  1994. height: math.unit(38, "meter")
  1995. }
  1996. ]
  1997. ))
  1998. characterMakers.push(() => makeCharacter(
  1999. { name: "Angelpatamon" },
  2000. {
  2001. front: {
  2002. height: math.unit(470, "feet"),
  2003. weight: math.unit(924, "tons"),
  2004. name: "Front",
  2005. image: {
  2006. source: "./media/characters/angelpatamon/front.svg",
  2007. }
  2008. }
  2009. },
  2010. [
  2011. {
  2012. name: "Normal",
  2013. height: math.unit(470, "feet"),
  2014. default: true
  2015. },
  2016. {
  2017. name: "Deity Size I",
  2018. height: math.unit(28651.2, "km")
  2019. },
  2020. {
  2021. name: "Deity Size II",
  2022. height: math.unit(171907.2, "km")
  2023. }
  2024. ]
  2025. ))
  2026. characterMakers.push(() => makeCharacter(
  2027. { name: "Cryae" },
  2028. {
  2029. side: {
  2030. height: math.unit(7.2, "meter"),
  2031. weight: math.unit(8.2, "tons"),
  2032. name: "Side",
  2033. image: {
  2034. source: "./media/characters/cryae/side.svg",
  2035. extra: 3500 / 1500
  2036. }
  2037. }
  2038. },
  2039. [
  2040. {
  2041. name: "Normal",
  2042. height: math.unit(7.2, "meter"),
  2043. default: true
  2044. }
  2045. ]
  2046. ))
  2047. characterMakers.push(() => makeCharacter(
  2048. { name: "Xera" },
  2049. {
  2050. front: {
  2051. height: math.unit(6, "feet"),
  2052. weight: math.unit(175, "lb"),
  2053. name: "Front",
  2054. image: {
  2055. source: "./media/characters/xera/front.svg",
  2056. extra: 2300 / 2061
  2057. }
  2058. },
  2059. side: {
  2060. height: math.unit(6, "feet"),
  2061. weight: math.unit(175, "lb"),
  2062. name: "Side",
  2063. image: {
  2064. source: "./media/characters/xera/side.svg",
  2065. extra: 2300 / 2061
  2066. }
  2067. },
  2068. back: {
  2069. height: math.unit(6, "feet"),
  2070. weight: math.unit(175, "lb"),
  2071. name: "Back",
  2072. image: {
  2073. source: "./media/characters/xera/back.svg"
  2074. }
  2075. },
  2076. },
  2077. [
  2078. {
  2079. name: "Small",
  2080. height: math.unit(10, "feet")
  2081. },
  2082. {
  2083. name: "Macro",
  2084. height: math.unit(500, "meters"),
  2085. default: true
  2086. },
  2087. {
  2088. name: "Macro+",
  2089. height: math.unit(10, "km")
  2090. },
  2091. {
  2092. name: "Gigamacro",
  2093. height: math.unit(25000, "km")
  2094. },
  2095. {
  2096. name: "Teramacro",
  2097. height: math.unit(3e6, "km")
  2098. }
  2099. ]
  2100. ))
  2101. characterMakers.push(() => makeCharacter(
  2102. { name: "Nebula" },
  2103. {
  2104. front: {
  2105. height: math.unit(6, "feet"),
  2106. weight: math.unit(175, "lb"),
  2107. name: "Front",
  2108. image: {
  2109. source: "./media/characters/nebula/front.svg",
  2110. extra: 2600 / 2450
  2111. }
  2112. }
  2113. },
  2114. [
  2115. {
  2116. name: "Small",
  2117. height: math.unit(4.5, "meters")
  2118. },
  2119. {
  2120. name: "Macro",
  2121. height: math.unit(1500, "meters"),
  2122. default: true
  2123. },
  2124. {
  2125. name: "Megamacro",
  2126. height: math.unit(150, "km")
  2127. },
  2128. {
  2129. name: "Gigamacro",
  2130. height: math.unit(27000, "km")
  2131. }
  2132. ]
  2133. ))
  2134. characterMakers.push(() => makeCharacter(
  2135. { name: "Abysgar" },
  2136. {
  2137. front: {
  2138. height: math.unit(6, "feet"),
  2139. weight: math.unit(225, "lb"),
  2140. name: "Front",
  2141. image: {
  2142. source: "./media/characters/abysgar/front.svg"
  2143. }
  2144. }
  2145. },
  2146. [
  2147. {
  2148. name: "Small",
  2149. height: math.unit(4.5, "meters")
  2150. },
  2151. {
  2152. name: "Macro",
  2153. height: math.unit(1250, "meters"),
  2154. default: true
  2155. },
  2156. {
  2157. name: "Megamacro",
  2158. height: math.unit(125, "km")
  2159. },
  2160. {
  2161. name: "Gigamacro",
  2162. height: math.unit(26000, "km")
  2163. }
  2164. ]
  2165. ))
  2166. characterMakers.push(() => makeCharacter(
  2167. { name: "Yakuz" },
  2168. {
  2169. front: {
  2170. height: math.unit(6, "feet"),
  2171. weight: math.unit(180, "lb"),
  2172. name: "Front",
  2173. image: {
  2174. source: "./media/characters/yakuz/front.svg"
  2175. }
  2176. }
  2177. },
  2178. [
  2179. {
  2180. name: "Small",
  2181. height: math.unit(5, "meters")
  2182. },
  2183. {
  2184. name: "Macro",
  2185. height: math.unit(1500, "meters"),
  2186. default: true
  2187. },
  2188. {
  2189. name: "Megamacro",
  2190. height: math.unit(200, "km")
  2191. },
  2192. {
  2193. name: "Gigamacro",
  2194. height: math.unit(100000, "km")
  2195. }
  2196. ]
  2197. ))
  2198. characterMakers.push(() => makeCharacter(
  2199. { name: "Mirova" },
  2200. {
  2201. front: {
  2202. height: math.unit(6, "feet"),
  2203. weight: math.unit(175, "lb"),
  2204. name: "Front",
  2205. image: {
  2206. source: "./media/characters/mirova/front.svg"
  2207. }
  2208. }
  2209. },
  2210. [
  2211. {
  2212. name: "Small",
  2213. height: math.unit(5, "meters")
  2214. },
  2215. {
  2216. name: "Macro",
  2217. height: math.unit(900, "meters"),
  2218. default: true
  2219. },
  2220. {
  2221. name: "Megamacro",
  2222. height: math.unit(135, "km")
  2223. },
  2224. {
  2225. name: "Gigamacro",
  2226. height: math.unit(20000, "km")
  2227. }
  2228. ]
  2229. ))
  2230. characterMakers.push(() => makeCharacter(
  2231. { name: "Asana (Mech)" },
  2232. {
  2233. side: {
  2234. height: math.unit(28.35, "feet"),
  2235. weight: math.unit(99.75, "tons"),
  2236. name: "Side",
  2237. image: {
  2238. source: "./media/characters/asana-mech/side.svg"
  2239. }
  2240. }
  2241. },
  2242. [
  2243. {
  2244. name: "Normal",
  2245. height: math.unit(28.35, "feet"),
  2246. default: true
  2247. },
  2248. {
  2249. name: "Macro",
  2250. height: math.unit(2500, "feet")
  2251. },
  2252. {
  2253. name: "Megamacro",
  2254. height: math.unit(25, "miles")
  2255. },
  2256. {
  2257. name: "Examacro",
  2258. height: math.unit(6e8, "lightyears")
  2259. },
  2260. ]
  2261. ))
  2262. characterMakers.push(() => makeCharacter(
  2263. { name: "Ashtrek" },
  2264. {
  2265. front: {
  2266. height: math.unit(2, "meters"),
  2267. weight: math.unit(70, "kg"),
  2268. name: "Front",
  2269. image: {
  2270. source: "./media/characters/ashtrek/front.svg",
  2271. extra: 560 / 524,
  2272. bottom: 0.01
  2273. }
  2274. },
  2275. frontArmor: {
  2276. height: math.unit(2, "meters"),
  2277. weight: math.unit(76, "kg"),
  2278. name: "Front (Armor)",
  2279. image: {
  2280. source: "./media/characters/ashtrek/front-armor.svg",
  2281. extra: 561 / 527,
  2282. bottom: 0.01
  2283. }
  2284. },
  2285. side: {
  2286. height: math.unit(2, "meters"),
  2287. weight: math.unit(70, "kg"),
  2288. name: "Side",
  2289. image: {
  2290. source: "./media/characters/ashtrek/side.svg",
  2291. extra: 1717 / 1609,
  2292. bottom: 0.005
  2293. }
  2294. },
  2295. back: {
  2296. height: math.unit(2, "meters"),
  2297. weight: math.unit(70, "kg"),
  2298. name: "Back",
  2299. image: {
  2300. source: "./media/characters/ashtrek/back.svg",
  2301. extra: 1570 / 1501
  2302. }
  2303. },
  2304. },
  2305. [
  2306. {
  2307. name: "DEFCON 5",
  2308. height: math.unit(5, "meters")
  2309. },
  2310. {
  2311. name: "DEFCON 4",
  2312. height: math.unit(500, "meters"),
  2313. default: true
  2314. },
  2315. {
  2316. name: "DEFCON 3",
  2317. height: math.unit(5, "km")
  2318. },
  2319. {
  2320. name: "DEFCON 2",
  2321. height: math.unit(500, "km")
  2322. },
  2323. {
  2324. name: "DEFCON 1",
  2325. height: math.unit(500000, "km")
  2326. },
  2327. {
  2328. name: "DEFCON 0",
  2329. height: math.unit(3, "gigaparsecs")
  2330. },
  2331. ]
  2332. ))
  2333. characterMakers.push(() => makeCharacter(
  2334. { name: "Gale" },
  2335. {
  2336. front: {
  2337. height: math.unit(2, "meters"),
  2338. weight: math.unit(76, "kg"),
  2339. name: "Front",
  2340. image: {
  2341. source: "./media/characters/gale/front.svg"
  2342. }
  2343. },
  2344. frontAlt1: {
  2345. height: math.unit(2, "meters"),
  2346. weight: math.unit(76, "kg"),
  2347. name: "Front (Alt 1)",
  2348. image: {
  2349. source: "./media/characters/gale/front-alt-1.svg"
  2350. }
  2351. },
  2352. frontAlt2: {
  2353. height: math.unit(2, "meters"),
  2354. weight: math.unit(76, "kg"),
  2355. name: "Front (Alt 2)",
  2356. image: {
  2357. source: "./media/characters/gale/front-alt-2.svg"
  2358. }
  2359. },
  2360. },
  2361. [
  2362. {
  2363. name: "Normal",
  2364. height: math.unit(7, "feet")
  2365. },
  2366. {
  2367. name: "Macro",
  2368. height: math.unit(150, "feet"),
  2369. default: true
  2370. },
  2371. {
  2372. name: "Macro+",
  2373. height: math.unit(300, "feet")
  2374. },
  2375. ]
  2376. ))
  2377. characterMakers.push(() => makeCharacter(
  2378. { name: "Draylen" },
  2379. {
  2380. front: {
  2381. height: math.unit(2, "meters"),
  2382. weight: math.unit(76, "kg"),
  2383. name: "Front",
  2384. image: {
  2385. source: "./media/characters/draylen/front.svg"
  2386. }
  2387. }
  2388. },
  2389. [
  2390. {
  2391. name: "Macro",
  2392. height: math.unit(150, "feet"),
  2393. default: true
  2394. }
  2395. ]
  2396. ))
  2397. characterMakers.push(() => makeCharacter(
  2398. { name: "Chez" },
  2399. {
  2400. front: {
  2401. height: math.unit(7 + 9 / 12, "feet"),
  2402. weight: math.unit(379, "lbs"),
  2403. name: "Front",
  2404. image: {
  2405. source: "./media/characters/chez/front.svg"
  2406. }
  2407. },
  2408. side: {
  2409. height: math.unit(7 + 9 / 12, "feet"),
  2410. weight: math.unit(379, "lbs"),
  2411. name: "Side",
  2412. image: {
  2413. source: "./media/characters/chez/side.svg"
  2414. }
  2415. }
  2416. },
  2417. [
  2418. {
  2419. name: "Normal",
  2420. height: math.unit(7 + 9 / 12, "feet"),
  2421. default: true
  2422. },
  2423. {
  2424. name: "God King",
  2425. height: math.unit(9750000, "meters")
  2426. }
  2427. ]
  2428. ))
  2429. characterMakers.push(() => makeCharacter(
  2430. { name: "Kaylum" },
  2431. {
  2432. front: {
  2433. height: math.unit(6, "feet"),
  2434. weight: math.unit(275, "lbs"),
  2435. name: "Front",
  2436. image: {
  2437. source: "./media/characters/kaylum/front.svg",
  2438. bottom: 0.01,
  2439. extra: 1166 / 1031
  2440. }
  2441. },
  2442. frontWingless: {
  2443. height: math.unit(6, "feet"),
  2444. weight: math.unit(275, "lbs"),
  2445. name: "Front (Wingless)",
  2446. image: {
  2447. source: "./media/characters/kaylum/front-wingless.svg",
  2448. bottom: 0.01,
  2449. extra: 1117 / 1031
  2450. }
  2451. }
  2452. },
  2453. [
  2454. {
  2455. name: "Normal",
  2456. height: math.unit(3.05, "meters")
  2457. },
  2458. {
  2459. name: "Master",
  2460. height: math.unit(5.5, "meters")
  2461. },
  2462. {
  2463. name: "Rampage",
  2464. height: math.unit(19, "meters")
  2465. },
  2466. {
  2467. name: "Macro Lite",
  2468. height: math.unit(37, "meters")
  2469. },
  2470. {
  2471. name: "Hyper Predator",
  2472. height: math.unit(61, "meters")
  2473. },
  2474. {
  2475. name: "Macro",
  2476. height: math.unit(138, "meters"),
  2477. default: true
  2478. }
  2479. ]
  2480. ))
  2481. characterMakers.push(() => makeCharacter(
  2482. { name: "Geta" },
  2483. {
  2484. front: {
  2485. height: math.unit(6, "feet"),
  2486. weight: math.unit(150, "lbs"),
  2487. name: "Front",
  2488. image: {
  2489. source: "./media/characters/geta/front.svg"
  2490. }
  2491. }
  2492. },
  2493. [
  2494. {
  2495. name: "Micro",
  2496. height: math.unit(3, "inches"),
  2497. default: true
  2498. },
  2499. {
  2500. name: "Normal",
  2501. height: math.unit(5 + 5 / 12, "feet")
  2502. }
  2503. ]
  2504. ))
  2505. characterMakers.push(() => makeCharacter(
  2506. { name: "Tyrnn" },
  2507. {
  2508. front: {
  2509. height: math.unit(6, "feet"),
  2510. weight: math.unit(300, "lbs"),
  2511. name: "Front",
  2512. image: {
  2513. source: "./media/characters/tyrnn/front.svg"
  2514. }
  2515. }
  2516. },
  2517. [
  2518. {
  2519. name: "Main Height",
  2520. height: math.unit(355, "feet"),
  2521. default: true
  2522. },
  2523. {
  2524. name: "Fave. Height",
  2525. height: math.unit(2400, "feet")
  2526. }
  2527. ]
  2528. ))
  2529. characterMakers.push(() => makeCharacter(
  2530. { name: "Apple" },
  2531. {
  2532. front: {
  2533. height: math.unit(6, "feet"),
  2534. weight: math.unit(300, "lbs"),
  2535. name: "Front",
  2536. image: {
  2537. source: "./media/characters/appledectomy/front.svg"
  2538. }
  2539. }
  2540. },
  2541. [
  2542. {
  2543. name: "Macro",
  2544. height: math.unit(2500, "feet")
  2545. },
  2546. {
  2547. name: "Megamacro",
  2548. height: math.unit(50, "miles"),
  2549. default: true
  2550. },
  2551. {
  2552. name: "Gigamacro",
  2553. height: math.unit(5000, "miles")
  2554. },
  2555. {
  2556. name: "Teramacro",
  2557. height: math.unit(250000, "miles")
  2558. },
  2559. ]
  2560. ))
  2561. characterMakers.push(() => makeCharacter(
  2562. { name: "Vulpes" },
  2563. {
  2564. front: {
  2565. height: math.unit(6, "feet"),
  2566. weight: math.unit(200, "lbs"),
  2567. name: "Front",
  2568. image: {
  2569. source: "./media/characters/vulpes/front.svg",
  2570. extra: 573 / 543,
  2571. bottom: 0.033
  2572. }
  2573. },
  2574. side: {
  2575. height: math.unit(6, "feet"),
  2576. weight: math.unit(200, "lbs"),
  2577. name: "Side",
  2578. image: {
  2579. source: "./media/characters/vulpes/side.svg",
  2580. extra: 573 / 543,
  2581. bottom: 0.01
  2582. }
  2583. },
  2584. back: {
  2585. height: math.unit(6, "feet"),
  2586. weight: math.unit(200, "lbs"),
  2587. name: "Back",
  2588. image: {
  2589. source: "./media/characters/vulpes/back.svg",
  2590. extra: 573 / 543,
  2591. }
  2592. },
  2593. feet: {
  2594. height: math.unit(1.276, "feet"),
  2595. name: "Feet",
  2596. image: {
  2597. source: "./media/characters/vulpes/feet.svg"
  2598. }
  2599. },
  2600. maw: {
  2601. height: math.unit(1.18, "feet"),
  2602. name: "Maw",
  2603. image: {
  2604. source: "./media/characters/vulpes/maw.svg"
  2605. }
  2606. },
  2607. },
  2608. [
  2609. {
  2610. name: "Micro",
  2611. height: math.unit(2, "inches")
  2612. },
  2613. {
  2614. name: "Normal",
  2615. height: math.unit(6.3, "feet")
  2616. },
  2617. {
  2618. name: "Macro",
  2619. height: math.unit(850, "feet")
  2620. },
  2621. {
  2622. name: "Megamacro",
  2623. height: math.unit(7500, "feet"),
  2624. default: true
  2625. },
  2626. {
  2627. name: "Gigamacro",
  2628. height: math.unit(570000, "miles")
  2629. }
  2630. ]
  2631. ))
  2632. characterMakers.push(() => makeCharacter(
  2633. { name: "Rain Fallen" },
  2634. {
  2635. front: {
  2636. height: math.unit(6, "feet"),
  2637. weight: math.unit(210, "lbs"),
  2638. name: "Front",
  2639. image: {
  2640. source: "./media/characters/rain-fallen/front.svg"
  2641. }
  2642. },
  2643. side: {
  2644. height: math.unit(6, "feet"),
  2645. weight: math.unit(210, "lbs"),
  2646. name: "Side",
  2647. image: {
  2648. source: "./media/characters/rain-fallen/side.svg"
  2649. }
  2650. },
  2651. back: {
  2652. height: math.unit(6, "feet"),
  2653. weight: math.unit(210, "lbs"),
  2654. name: "Back",
  2655. image: {
  2656. source: "./media/characters/rain-fallen/back.svg"
  2657. }
  2658. },
  2659. feral: {
  2660. height: math.unit(9, "feet"),
  2661. weight: math.unit(700, "lbs"),
  2662. name: "Feral",
  2663. image: {
  2664. source: "./media/characters/rain-fallen/feral.svg"
  2665. }
  2666. },
  2667. },
  2668. [
  2669. {
  2670. name: "Normal",
  2671. height: math.unit(5, "meter")
  2672. },
  2673. {
  2674. name: "Macro",
  2675. height: math.unit(150, "meter"),
  2676. default: true
  2677. },
  2678. {
  2679. name: "Megamacro",
  2680. height: math.unit(278e6, "meter")
  2681. },
  2682. {
  2683. name: "Gigamacro",
  2684. height: math.unit(2e9, "meter")
  2685. },
  2686. {
  2687. name: "Teramacro",
  2688. height: math.unit(8e12, "meter")
  2689. },
  2690. {
  2691. name: "Devourer",
  2692. height: math.unit(14, "zettameters")
  2693. },
  2694. {
  2695. name: "Scarlet King",
  2696. height: math.unit(18, "yottameters")
  2697. },
  2698. {
  2699. name: "Void",
  2700. height: math.unit(6.66e66, "yottameters")
  2701. }
  2702. ]
  2703. ))
  2704. characterMakers.push(() => makeCharacter(
  2705. { name: "Zaakira" },
  2706. {
  2707. standing: {
  2708. height: math.unit(6, "feet"),
  2709. weight: math.unit(180, "lbs"),
  2710. name: "Standing",
  2711. image: {
  2712. source: "./media/characters/zaakira/standing.svg"
  2713. }
  2714. },
  2715. laying: {
  2716. height: math.unit(3, "feet"),
  2717. weight: math.unit(180, "lbs"),
  2718. name: "Laying",
  2719. image: {
  2720. source: "./media/characters/zaakira/laying.svg"
  2721. }
  2722. },
  2723. },
  2724. [
  2725. {
  2726. name: "Normal",
  2727. height: math.unit(12, "feet")
  2728. },
  2729. {
  2730. name: "Macro",
  2731. height: math.unit(279, "feet"),
  2732. default: true
  2733. }
  2734. ]
  2735. ))
  2736. characterMakers.push(() => makeCharacter(
  2737. { name: "Sigvald" },
  2738. {
  2739. front: {
  2740. height: math.unit(6, "feet"),
  2741. weight: math.unit(250, "lbs"),
  2742. name: "Front",
  2743. image: {
  2744. source: "./media/characters/sigvald/front.svg",
  2745. extra: 1000 / 850
  2746. }
  2747. },
  2748. back: {
  2749. height: math.unit(6, "feet"),
  2750. weight: math.unit(250, "lbs"),
  2751. name: "Back",
  2752. image: {
  2753. source: "./media/characters/sigvald/back.svg"
  2754. }
  2755. },
  2756. },
  2757. [
  2758. {
  2759. name: "Normal",
  2760. height: math.unit(8, "feet")
  2761. },
  2762. {
  2763. name: "Large",
  2764. height: math.unit(12, "feet")
  2765. },
  2766. {
  2767. name: "Larger",
  2768. height: math.unit(20, "feet")
  2769. },
  2770. {
  2771. name: "Macro",
  2772. height: math.unit(150, "feet")
  2773. },
  2774. {
  2775. name: "Macro+",
  2776. height: math.unit(200, "feet"),
  2777. default: true
  2778. },
  2779. ]
  2780. ))
  2781. characterMakers.push(() => makeCharacter(
  2782. { name: "Scott" },
  2783. {
  2784. side: {
  2785. height: math.unit(12, "feet"),
  2786. weight: math.unit(2000, "kg"),
  2787. name: "Side",
  2788. image: {
  2789. source: "./media/characters/scott/side.svg",
  2790. extra: 754/724,
  2791. bottom: 0.069
  2792. }
  2793. },
  2794. upright: {
  2795. height: math.unit(12, "feet"),
  2796. weight: math.unit(2000, "kg"),
  2797. name: "Upright",
  2798. image: {
  2799. source: "./media/characters/scott/upright.svg",
  2800. extra: 3881/3722,
  2801. bottom: 0.05
  2802. }
  2803. },
  2804. },
  2805. [
  2806. {
  2807. name: "Normal",
  2808. height: math.unit(12, "feet"),
  2809. default: true
  2810. },
  2811. ]
  2812. ))
  2813. characterMakers.push(() => makeCharacter(
  2814. { name: "Tobias" },
  2815. {
  2816. side: {
  2817. height: math.unit(8, "meters"),
  2818. weight: math.unit(84755, "lbs"),
  2819. name: "Side",
  2820. image: {
  2821. source: "./media/characters/tobias/side.svg",
  2822. extra: 1474 / 1096,
  2823. bottom: 38.9 / 1513.1235
  2824. }
  2825. },
  2826. },
  2827. [
  2828. {
  2829. name: "Normal",
  2830. height: math.unit(8, "meters"),
  2831. default: true
  2832. },
  2833. ]
  2834. ))
  2835. characterMakers.push(() => makeCharacter(
  2836. { name: "Kieran" },
  2837. {
  2838. front: {
  2839. height: math.unit(5.5, "feet"),
  2840. weight: math.unit(400, "lbs"),
  2841. name: "Front",
  2842. image: {
  2843. source: "./media/characters/kieran/front.svg",
  2844. extra: 2694/2364,
  2845. bottom: 217/2908
  2846. }
  2847. },
  2848. side: {
  2849. height: math.unit(5.5, "feet"),
  2850. weight: math.unit(400, "lbs"),
  2851. name: "Side",
  2852. image: {
  2853. source: "./media/characters/kieran/side.svg",
  2854. extra: 875/777,
  2855. bottom: 84.6/959
  2856. }
  2857. },
  2858. },
  2859. [
  2860. {
  2861. name: "Normal",
  2862. height: math.unit(5.5, "feet"),
  2863. default: true
  2864. },
  2865. ]
  2866. ))
  2867. characterMakers.push(() => makeCharacter(
  2868. { name: "Sanya" },
  2869. {
  2870. side: {
  2871. height: math.unit(2, "meters"),
  2872. weight: math.unit(70, "kg"),
  2873. name: "Side",
  2874. image: {
  2875. source: "./media/characters/sanya/side.svg",
  2876. bottom: 0.02,
  2877. extra: 1.02
  2878. }
  2879. },
  2880. },
  2881. [
  2882. {
  2883. name: "Small",
  2884. height: math.unit(2, "meters")
  2885. },
  2886. {
  2887. name: "Normal",
  2888. height: math.unit(3, "meters")
  2889. },
  2890. {
  2891. name: "Macro",
  2892. height: math.unit(16, "meters"),
  2893. default: true
  2894. },
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Miranda" },
  2899. {
  2900. side: {
  2901. height: math.unit(2, "meters"),
  2902. weight: math.unit(120, "kg"),
  2903. name: "Front",
  2904. image: {
  2905. source: "./media/characters/miranda/front.svg",
  2906. extra: 10.6 / 10
  2907. }
  2908. },
  2909. },
  2910. [
  2911. {
  2912. name: "Normal",
  2913. height: math.unit(10, "feet"),
  2914. default: true
  2915. }
  2916. ]
  2917. ))
  2918. characterMakers.push(() => makeCharacter(
  2919. { name: "James" },
  2920. {
  2921. side: {
  2922. height: math.unit(2, "meters"),
  2923. weight: math.unit(100, "kg"),
  2924. name: "Front",
  2925. image: {
  2926. source: "./media/characters/james/front.svg",
  2927. extra: 10 / 8.5
  2928. }
  2929. },
  2930. },
  2931. [
  2932. {
  2933. name: "Normal",
  2934. height: math.unit(8.5, "feet"),
  2935. default: true
  2936. }
  2937. ]
  2938. ))
  2939. characterMakers.push(() => makeCharacter(
  2940. { name: "Heather" },
  2941. {
  2942. side: {
  2943. height: math.unit(9.5, "feet"),
  2944. weight: math.unit(2500, "lbs"),
  2945. name: "Side",
  2946. image: {
  2947. source: "./media/characters/heather/side.svg"
  2948. }
  2949. },
  2950. },
  2951. [
  2952. {
  2953. name: "Normal",
  2954. height: math.unit(9.5, "feet"),
  2955. default: true
  2956. }
  2957. ]
  2958. ))
  2959. characterMakers.push(() => makeCharacter(
  2960. { name: "Lukas" },
  2961. {
  2962. side: {
  2963. height: math.unit(6.5, "feet"),
  2964. weight: math.unit(400, "lbs"),
  2965. name: "Side",
  2966. image: {
  2967. source: "./media/characters/lukas/side.svg",
  2968. extra: 7.25 / 6.5
  2969. }
  2970. },
  2971. },
  2972. [
  2973. {
  2974. name: "Normal",
  2975. height: math.unit(6.5, "feet"),
  2976. default: true
  2977. }
  2978. ]
  2979. ))
  2980. characterMakers.push(() => makeCharacter(
  2981. { name: "Louise" },
  2982. {
  2983. side: {
  2984. height: math.unit(5, "feet"),
  2985. weight: math.unit(3000, "lbs"),
  2986. name: "Side",
  2987. image: {
  2988. source: "./media/characters/louise/side.svg"
  2989. }
  2990. },
  2991. },
  2992. [
  2993. {
  2994. name: "Normal",
  2995. height: math.unit(5, "feet"),
  2996. default: true
  2997. }
  2998. ]
  2999. ))
  3000. characterMakers.push(() => makeCharacter(
  3001. { name: "Ramona" },
  3002. {
  3003. side: {
  3004. height: math.unit(6, "feet"),
  3005. weight: math.unit(150, "lbs"),
  3006. name: "Side",
  3007. image: {
  3008. source: "./media/characters/ramona/side.svg"
  3009. }
  3010. },
  3011. },
  3012. [
  3013. {
  3014. name: "Normal",
  3015. height: math.unit(5.3, "meters"),
  3016. default: true
  3017. },
  3018. {
  3019. name: "Macro",
  3020. height: math.unit(20, "stories")
  3021. },
  3022. {
  3023. name: "Macro+",
  3024. height: math.unit(50, "stories")
  3025. },
  3026. ]
  3027. ))
  3028. characterMakers.push(() => makeCharacter(
  3029. { name: "Deerpuff" },
  3030. {
  3031. standing: {
  3032. height: math.unit(5.75, "feet"),
  3033. weight: math.unit(160, "lbs"),
  3034. name: "Standing",
  3035. image: {
  3036. source: "./media/characters/deerpuff/standing.svg",
  3037. extra: 682 / 624
  3038. }
  3039. },
  3040. sitting: {
  3041. height: math.unit(5.75 / 1.79, "feet"),
  3042. weight: math.unit(160, "lbs"),
  3043. name: "Sitting",
  3044. image: {
  3045. source: "./media/characters/deerpuff/sitting.svg",
  3046. bottom: 44 / 400,
  3047. extra: 1
  3048. }
  3049. },
  3050. taurLaying: {
  3051. height: math.unit(6, "feet"),
  3052. weight: math.unit(400, "lbs"),
  3053. name: "Taur (Laying)",
  3054. image: {
  3055. source: "./media/characters/deerpuff/taur-laying.svg"
  3056. }
  3057. },
  3058. },
  3059. [
  3060. {
  3061. name: "Puffball",
  3062. height: math.unit(6, "inches")
  3063. },
  3064. {
  3065. name: "Normalpuff",
  3066. height: math.unit(5.75, "feet")
  3067. },
  3068. {
  3069. name: "Macropuff",
  3070. height: math.unit(1500, "feet"),
  3071. default: true
  3072. },
  3073. {
  3074. name: "Megapuff",
  3075. height: math.unit(500, "miles")
  3076. },
  3077. {
  3078. name: "Gigapuff",
  3079. height: math.unit(250000, "miles")
  3080. },
  3081. {
  3082. name: "Omegapuff",
  3083. height: math.unit(1000, "lightyears")
  3084. },
  3085. ]
  3086. ))
  3087. characterMakers.push(() => makeCharacter(
  3088. { name: "Vivian" },
  3089. {
  3090. stomping: {
  3091. height: math.unit(6, "feet"),
  3092. weight: math.unit(170, "lbs"),
  3093. name: "Stomping",
  3094. image: {
  3095. source: "./media/characters/vivian/stomping.svg"
  3096. }
  3097. },
  3098. sitting: {
  3099. height: math.unit(6 / 1.75, "feet"),
  3100. weight: math.unit(170, "lbs"),
  3101. name: "Sitting",
  3102. image: {
  3103. source: "./media/characters/vivian/sitting.svg",
  3104. bottom: 1 / 6.4,
  3105. extra: 1,
  3106. }
  3107. },
  3108. },
  3109. [
  3110. {
  3111. name: "Normal",
  3112. height: math.unit(7, "feet"),
  3113. default: true
  3114. },
  3115. {
  3116. name: "Macro",
  3117. height: math.unit(10, "stories")
  3118. },
  3119. {
  3120. name: "Macro+",
  3121. height: math.unit(30, "stories")
  3122. },
  3123. {
  3124. name: "Megamacro",
  3125. height: math.unit(10, "miles")
  3126. },
  3127. {
  3128. name: "Megamacro+",
  3129. height: math.unit(2750000, "meters")
  3130. },
  3131. ]
  3132. ))
  3133. characterMakers.push(() => makeCharacter(
  3134. { name: "Prince" },
  3135. {
  3136. front: {
  3137. height: math.unit(6, "feet"),
  3138. weight: math.unit(160, "lbs"),
  3139. name: "Front",
  3140. image: {
  3141. source: "./media/characters/prince/front.svg",
  3142. extra: 3400 / 3000
  3143. }
  3144. },
  3145. jumping: {
  3146. height: math.unit(6, "feet"),
  3147. weight: math.unit(160, "lbs"),
  3148. name: "Jumping",
  3149. image: {
  3150. source: "./media/characters/prince/jump.svg",
  3151. extra: 2555 / 2134
  3152. }
  3153. },
  3154. },
  3155. [
  3156. {
  3157. name: "Normal",
  3158. height: math.unit(7.75, "feet"),
  3159. default: true
  3160. },
  3161. {
  3162. name: "Not cute",
  3163. height: math.unit(17, "feet")
  3164. },
  3165. {
  3166. name: "I said NOT",
  3167. height: math.unit(91, "feet")
  3168. },
  3169. {
  3170. name: "Please stop",
  3171. height: math.unit(560, "feet")
  3172. },
  3173. {
  3174. name: "What have you done",
  3175. height: math.unit(2200, "feet")
  3176. },
  3177. {
  3178. name: "Deer God",
  3179. height: math.unit(3.6, "miles")
  3180. },
  3181. ]
  3182. ))
  3183. characterMakers.push(() => makeCharacter(
  3184. { name: "Psymon" },
  3185. {
  3186. standing: {
  3187. height: math.unit(6, "feet"),
  3188. weight: math.unit(300, "lbs"),
  3189. name: "Standing",
  3190. image: {
  3191. source: "./media/characters/psymon/standing.svg",
  3192. extra: 1888 / 1810,
  3193. bottom: 0.05
  3194. }
  3195. },
  3196. slithering: {
  3197. height: math.unit(6, "feet"),
  3198. weight: math.unit(300, "lbs"),
  3199. name: "Slithering",
  3200. image: {
  3201. source: "./media/characters/psymon/slithering.svg",
  3202. extra: 1330 / 1224
  3203. }
  3204. },
  3205. slitheringAlt: {
  3206. height: math.unit(6, "feet"),
  3207. weight: math.unit(300, "lbs"),
  3208. name: "Slithering (Alt)",
  3209. image: {
  3210. source: "./media/characters/psymon/slithering-alt.svg",
  3211. extra: 1330 / 1224
  3212. }
  3213. },
  3214. },
  3215. [
  3216. {
  3217. name: "Normal",
  3218. height: math.unit(11.25, "feet"),
  3219. default: true
  3220. },
  3221. {
  3222. name: "Large",
  3223. height: math.unit(27, "feet")
  3224. },
  3225. {
  3226. name: "Giant",
  3227. height: math.unit(87, "feet")
  3228. },
  3229. {
  3230. name: "Macro",
  3231. height: math.unit(365, "feet")
  3232. },
  3233. {
  3234. name: "Megamacro",
  3235. height: math.unit(3, "miles")
  3236. },
  3237. {
  3238. name: "World Serpent",
  3239. height: math.unit(8000, "miles")
  3240. },
  3241. ]
  3242. ))
  3243. characterMakers.push(() => makeCharacter(
  3244. { name: "Daimos" },
  3245. {
  3246. front: {
  3247. height: math.unit(6, "feet"),
  3248. weight: math.unit(180, "lbs"),
  3249. name: "Front",
  3250. image: {
  3251. source: "./media/characters/daimos/front.svg",
  3252. extra: 4160 / 3897,
  3253. bottom: 0.021
  3254. }
  3255. }
  3256. },
  3257. [
  3258. {
  3259. name: "Normal",
  3260. height: math.unit(8, "feet"),
  3261. default: true
  3262. },
  3263. {
  3264. name: "Big Dog",
  3265. height: math.unit(22, "feet")
  3266. },
  3267. {
  3268. name: "Macro",
  3269. height: math.unit(127, "feet")
  3270. },
  3271. {
  3272. name: "Megamacro",
  3273. height: math.unit(3600, "feet")
  3274. },
  3275. ]
  3276. ))
  3277. characterMakers.push(() => makeCharacter(
  3278. { name: "Blake" },
  3279. {
  3280. side: {
  3281. height: math.unit(6, "feet"),
  3282. weight: math.unit(180, "lbs"),
  3283. name: "Side",
  3284. image: {
  3285. source: "./media/characters/blake/side.svg",
  3286. extra: 1212 / 1120,
  3287. bottom: 0.05
  3288. }
  3289. },
  3290. crouched: {
  3291. height: math.unit(6 * 0.57, "feet"),
  3292. weight: math.unit(180, "lbs"),
  3293. name: "Crouched",
  3294. image: {
  3295. source: "./media/characters/blake/crouched.svg",
  3296. extra: 840 / 587,
  3297. bottom: 0.04
  3298. }
  3299. },
  3300. bent: {
  3301. height: math.unit(6 * 0.75, "feet"),
  3302. weight: math.unit(180, "lbs"),
  3303. name: "Bent",
  3304. image: {
  3305. source: "./media/characters/blake/bent.svg",
  3306. extra: 592 / 544,
  3307. bottom: 0.035
  3308. }
  3309. },
  3310. },
  3311. [
  3312. {
  3313. name: "Normal",
  3314. height: math.unit(8 + 1 / 6, "feet"),
  3315. default: true
  3316. },
  3317. {
  3318. name: "Big Backside",
  3319. height: math.unit(37, "feet")
  3320. },
  3321. {
  3322. name: "Subway Shredder",
  3323. height: math.unit(72, "feet")
  3324. },
  3325. {
  3326. name: "City Carver",
  3327. height: math.unit(1675, "feet")
  3328. },
  3329. {
  3330. name: "Tectonic Tweaker",
  3331. height: math.unit(2300, "miles")
  3332. },
  3333. ]
  3334. ))
  3335. characterMakers.push(() => makeCharacter(
  3336. { name: "Guisetto" },
  3337. {
  3338. front: {
  3339. height: math.unit(6, "feet"),
  3340. weight: math.unit(180, "lbs"),
  3341. name: "Front",
  3342. image: {
  3343. source: "./media/characters/guisetto/front.svg",
  3344. extra: 856 / 817,
  3345. bottom: 0.06
  3346. }
  3347. },
  3348. airborne: {
  3349. height: math.unit(6, "feet"),
  3350. weight: math.unit(180, "lbs"),
  3351. name: "Airborne",
  3352. image: {
  3353. source: "./media/characters/guisetto/airborne.svg",
  3354. extra: 584 / 525
  3355. }
  3356. },
  3357. },
  3358. [
  3359. {
  3360. name: "Normal",
  3361. height: math.unit(10 + 11 / 12, "feet"),
  3362. default: true
  3363. },
  3364. {
  3365. name: "Large",
  3366. height: math.unit(35, "feet")
  3367. },
  3368. {
  3369. name: "Macro",
  3370. height: math.unit(475, "feet")
  3371. },
  3372. ]
  3373. ))
  3374. characterMakers.push(() => makeCharacter(
  3375. { name: "Luxor" },
  3376. {
  3377. front: {
  3378. height: math.unit(6, "feet"),
  3379. weight: math.unit(180, "lbs"),
  3380. name: "Front",
  3381. image: {
  3382. source: "./media/characters/luxor/front.svg",
  3383. extra: 2940 / 2152
  3384. }
  3385. },
  3386. back: {
  3387. height: math.unit(6, "feet"),
  3388. weight: math.unit(180, "lbs"),
  3389. name: "Back",
  3390. image: {
  3391. source: "./media/characters/luxor/back.svg",
  3392. extra: 1083 / 960
  3393. }
  3394. },
  3395. },
  3396. [
  3397. {
  3398. name: "Normal",
  3399. height: math.unit(5 + 5 / 6, "feet"),
  3400. default: true
  3401. },
  3402. {
  3403. name: "Lamp",
  3404. height: math.unit(50, "feet")
  3405. },
  3406. {
  3407. name: "Lämp",
  3408. height: math.unit(300, "feet")
  3409. },
  3410. {
  3411. name: "The sun is a lamp",
  3412. height: math.unit(250000, "miles")
  3413. },
  3414. ]
  3415. ))
  3416. characterMakers.push(() => makeCharacter(
  3417. { name: "Huoyan" },
  3418. {
  3419. front: {
  3420. height: math.unit(6, "feet"),
  3421. weight: math.unit(50, "lbs"),
  3422. name: "Front",
  3423. image: {
  3424. source: "./media/characters/huoyan/front.svg"
  3425. }
  3426. },
  3427. side: {
  3428. height: math.unit(6, "feet"),
  3429. weight: math.unit(180, "lbs"),
  3430. name: "Side",
  3431. image: {
  3432. source: "./media/characters/huoyan/side.svg"
  3433. }
  3434. },
  3435. },
  3436. [
  3437. {
  3438. name: "Chef",
  3439. height: math.unit(9, "feet")
  3440. },
  3441. {
  3442. name: "Normal",
  3443. height: math.unit(65, "feet"),
  3444. default: true
  3445. },
  3446. {
  3447. name: "Macro",
  3448. height: math.unit(780, "feet")
  3449. },
  3450. {
  3451. name: "Flaming Mountain",
  3452. height: math.unit(4.8, "miles")
  3453. },
  3454. {
  3455. name: "Celestial",
  3456. height: math.unit(765000, "miles")
  3457. },
  3458. ]
  3459. ))
  3460. characterMakers.push(() => makeCharacter(
  3461. { name: "Tails" },
  3462. {
  3463. front: {
  3464. height: math.unit(5 + 3 / 4, "feet"),
  3465. weight: math.unit(120, "lbs"),
  3466. name: "Front",
  3467. image: {
  3468. source: "./media/characters/tails/front.svg"
  3469. }
  3470. }
  3471. },
  3472. [
  3473. {
  3474. name: "Normal",
  3475. height: math.unit(5 + 3 / 4, "feet"),
  3476. default: true
  3477. }
  3478. ]
  3479. ))
  3480. characterMakers.push(() => makeCharacter(
  3481. { name: "Rainy" },
  3482. {
  3483. front: {
  3484. height: math.unit(4, "feet"),
  3485. weight: math.unit(50, "lbs"),
  3486. name: "Front",
  3487. image: {
  3488. source: "./media/characters/rainy/front.svg"
  3489. }
  3490. }
  3491. },
  3492. [
  3493. {
  3494. name: "Macro",
  3495. height: math.unit(800, "feet"),
  3496. default: true
  3497. }
  3498. ]
  3499. ))
  3500. characterMakers.push(() => makeCharacter(
  3501. { name: "Rainier" },
  3502. {
  3503. front: {
  3504. height: math.unit(6, "feet"),
  3505. weight: math.unit(150, "lbs"),
  3506. name: "Front",
  3507. image: {
  3508. source: "./media/characters/rainier/front.svg"
  3509. }
  3510. }
  3511. },
  3512. [
  3513. {
  3514. name: "Micro",
  3515. height: math.unit(2, "mm"),
  3516. default: true
  3517. }
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Andy" },
  3522. {
  3523. front: {
  3524. height: math.unit(6, "feet"),
  3525. weight: math.unit(180, "lbs"),
  3526. name: "Front",
  3527. image: {
  3528. source: "./media/characters/andy/front.svg"
  3529. }
  3530. }
  3531. },
  3532. [
  3533. {
  3534. name: "Normal",
  3535. height: math.unit(8, "feet"),
  3536. default: true
  3537. },
  3538. {
  3539. name: "Macro",
  3540. height: math.unit(1000, "feet")
  3541. },
  3542. {
  3543. name: "Megamacro",
  3544. height: math.unit(5, "miles")
  3545. },
  3546. {
  3547. name: "Gigamacro",
  3548. height: math.unit(5000, "miles")
  3549. },
  3550. ]
  3551. ))
  3552. characterMakers.push(() => makeCharacter(
  3553. { name: "Cimmaron" },
  3554. {
  3555. front: {
  3556. height: math.unit(6, "feet"),
  3557. weight: math.unit(210, "lbs"),
  3558. name: "Front",
  3559. image: {
  3560. source: "./media/characters/cimmaron/front-sfw.svg",
  3561. extra: 701 / 676,
  3562. bottom: 0.046
  3563. }
  3564. },
  3565. back: {
  3566. height: math.unit(6, "feet"),
  3567. weight: math.unit(210, "lbs"),
  3568. name: "Back",
  3569. image: {
  3570. source: "./media/characters/cimmaron/back-sfw.svg",
  3571. extra: 701 / 676,
  3572. bottom: 0.046
  3573. }
  3574. },
  3575. frontNsfw: {
  3576. height: math.unit(6, "feet"),
  3577. weight: math.unit(210, "lbs"),
  3578. name: "Front (NSFW)",
  3579. image: {
  3580. source: "./media/characters/cimmaron/front-nsfw.svg",
  3581. extra: 701 / 676,
  3582. bottom: 0.046
  3583. }
  3584. },
  3585. backNsfw: {
  3586. height: math.unit(6, "feet"),
  3587. weight: math.unit(210, "lbs"),
  3588. name: "Back (NSFW)",
  3589. image: {
  3590. source: "./media/characters/cimmaron/back-nsfw.svg",
  3591. extra: 701 / 676,
  3592. bottom: 0.046
  3593. }
  3594. },
  3595. dick: {
  3596. height: math.unit(1.714, "feet"),
  3597. name: "Dick",
  3598. image: {
  3599. source: "./media/characters/cimmaron/dick.svg"
  3600. }
  3601. },
  3602. },
  3603. [
  3604. {
  3605. name: "Normal",
  3606. height: math.unit(6, "feet"),
  3607. default: true
  3608. },
  3609. {
  3610. name: "Macro Mayor",
  3611. height: math.unit(350, "meters")
  3612. },
  3613. ]
  3614. ))
  3615. characterMakers.push(() => makeCharacter(
  3616. { name: "Akari Kaen" },
  3617. {
  3618. front: {
  3619. height: math.unit(6, "feet"),
  3620. weight: math.unit(200, "lbs"),
  3621. name: "Front",
  3622. image: {
  3623. source: "./media/characters/akari/front.svg",
  3624. extra: 962 / 901,
  3625. bottom: 0.04
  3626. }
  3627. }
  3628. },
  3629. [
  3630. {
  3631. name: "Micro",
  3632. height: math.unit(5, "inches"),
  3633. default: true
  3634. },
  3635. {
  3636. name: "Normal",
  3637. height: math.unit(7, "feet")
  3638. },
  3639. ]
  3640. ))
  3641. characterMakers.push(() => makeCharacter(
  3642. { name: "Cynosura" },
  3643. {
  3644. front: {
  3645. height: math.unit(6, "feet"),
  3646. weight: math.unit(140, "lbs"),
  3647. name: "Front",
  3648. image: {
  3649. source: "./media/characters/cynosura/front.svg",
  3650. extra: 896 / 847
  3651. }
  3652. },
  3653. back: {
  3654. height: math.unit(6, "feet"),
  3655. weight: math.unit(140, "lbs"),
  3656. name: "Back",
  3657. image: {
  3658. source: "./media/characters/cynosura/back.svg",
  3659. extra: 1365 / 1250
  3660. }
  3661. },
  3662. },
  3663. [
  3664. {
  3665. name: "Micro",
  3666. height: math.unit(4, "inches")
  3667. },
  3668. {
  3669. name: "Normal",
  3670. height: math.unit(5.75, "feet"),
  3671. default: true
  3672. },
  3673. {
  3674. name: "Tall",
  3675. height: math.unit(10, "feet")
  3676. },
  3677. {
  3678. name: "Big",
  3679. height: math.unit(20, "feet")
  3680. },
  3681. {
  3682. name: "Macro",
  3683. height: math.unit(50, "feet")
  3684. },
  3685. ]
  3686. ))
  3687. characterMakers.push(() => makeCharacter(
  3688. { name: "Gin" },
  3689. {
  3690. front: {
  3691. height: math.unit(6, "feet"),
  3692. weight: math.unit(170, "lbs"),
  3693. name: "Front",
  3694. image: {
  3695. source: "./media/characters/gin/front.svg",
  3696. extra: 1.053,
  3697. bottom: 0.025
  3698. }
  3699. },
  3700. foot: {
  3701. height: math.unit(6 / 4.25, "feet"),
  3702. name: "Foot",
  3703. image: {
  3704. source: "./media/characters/gin/foot.svg"
  3705. }
  3706. },
  3707. sole: {
  3708. height: math.unit(6 / 4.40, "feet"),
  3709. name: "Sole",
  3710. image: {
  3711. source: "./media/characters/gin/sole.svg"
  3712. }
  3713. },
  3714. },
  3715. [
  3716. {
  3717. name: "Normal",
  3718. height: math.unit(13 + 2/12, "feet")
  3719. },
  3720. {
  3721. name: "Macro",
  3722. height: math.unit(1500, "feet")
  3723. },
  3724. {
  3725. name: "Megamacro",
  3726. height: math.unit(200, "miles"),
  3727. default: true
  3728. },
  3729. {
  3730. name: "Gigamacro",
  3731. height: math.unit(500, "megameters")
  3732. },
  3733. {
  3734. name: "Teramacro",
  3735. height: math.unit(15, "lightyears")
  3736. }
  3737. ]
  3738. ))
  3739. characterMakers.push(() => makeCharacter(
  3740. { name: "Guy" },
  3741. {
  3742. front: {
  3743. height: math.unit(6 + 1 / 6, "feet"),
  3744. weight: math.unit(178, "lbs"),
  3745. name: "Front",
  3746. image: {
  3747. source: "./media/characters/guy/front.svg"
  3748. }
  3749. }
  3750. },
  3751. [
  3752. {
  3753. name: "Normal",
  3754. height: math.unit(6 + 1 / 6, "feet"),
  3755. default: true
  3756. },
  3757. {
  3758. name: "Large",
  3759. height: math.unit(25 + 7 / 12, "feet")
  3760. },
  3761. {
  3762. name: "Macro",
  3763. height: math.unit(60 + 9 / 12, "feet")
  3764. },
  3765. {
  3766. name: "Macro+",
  3767. height: math.unit(246, "feet")
  3768. },
  3769. {
  3770. name: "Macro++",
  3771. height: math.unit(878, "feet")
  3772. }
  3773. ]
  3774. ))
  3775. characterMakers.push(() => makeCharacter(
  3776. { name: "Tiberius" },
  3777. {
  3778. front: {
  3779. height: math.unit(9, "feet"),
  3780. weight: math.unit(800, "lbs"),
  3781. name: "Front",
  3782. image: {
  3783. source: "./media/characters/tiberius/front.svg",
  3784. extra: 2295 / 2071
  3785. }
  3786. },
  3787. back: {
  3788. height: math.unit(9, "feet"),
  3789. weight: math.unit(800, "lbs"),
  3790. name: "Back",
  3791. image: {
  3792. source: "./media/characters/tiberius/back.svg",
  3793. extra: 2373 / 2160
  3794. }
  3795. },
  3796. },
  3797. [
  3798. {
  3799. name: "Normal",
  3800. height: math.unit(9, "feet"),
  3801. default: true
  3802. }
  3803. ]
  3804. ))
  3805. characterMakers.push(() => makeCharacter(
  3806. { name: "Surgo" },
  3807. {
  3808. front: {
  3809. height: math.unit(6, "feet"),
  3810. weight: math.unit(600, "lbs"),
  3811. name: "Front",
  3812. image: {
  3813. source: "./media/characters/surgo/front.svg",
  3814. extra: 3591 / 2227
  3815. }
  3816. },
  3817. back: {
  3818. height: math.unit(6, "feet"),
  3819. weight: math.unit(600, "lbs"),
  3820. name: "Back",
  3821. image: {
  3822. source: "./media/characters/surgo/back.svg",
  3823. extra: 3557 / 2228
  3824. }
  3825. },
  3826. laying: {
  3827. height: math.unit(6 * 0.85, "feet"),
  3828. weight: math.unit(600, "lbs"),
  3829. name: "Laying",
  3830. image: {
  3831. source: "./media/characters/surgo/laying.svg"
  3832. }
  3833. },
  3834. },
  3835. [
  3836. {
  3837. name: "Normal",
  3838. height: math.unit(6, "feet"),
  3839. default: true
  3840. }
  3841. ]
  3842. ))
  3843. characterMakers.push(() => makeCharacter(
  3844. { name: "Cibus" },
  3845. {
  3846. side: {
  3847. height: math.unit(6, "feet"),
  3848. weight: math.unit(150, "lbs"),
  3849. name: "Side",
  3850. image: {
  3851. source: "./media/characters/cibus/side.svg",
  3852. extra: 800 / 400
  3853. }
  3854. },
  3855. },
  3856. [
  3857. {
  3858. name: "Normal",
  3859. height: math.unit(6, "feet"),
  3860. default: true
  3861. }
  3862. ]
  3863. ))
  3864. characterMakers.push(() => makeCharacter(
  3865. { name: "Nibbles" },
  3866. {
  3867. front: {
  3868. height: math.unit(6, "feet"),
  3869. weight: math.unit(240, "lbs"),
  3870. name: "Front",
  3871. image: {
  3872. source: "./media/characters/nibbles/front.svg"
  3873. }
  3874. },
  3875. side: {
  3876. height: math.unit(6, "feet"),
  3877. weight: math.unit(240, "lbs"),
  3878. name: "Side",
  3879. image: {
  3880. source: "./media/characters/nibbles/side.svg"
  3881. }
  3882. },
  3883. },
  3884. [
  3885. {
  3886. name: "Normal",
  3887. height: math.unit(9, "feet"),
  3888. default: true
  3889. }
  3890. ]
  3891. ))
  3892. characterMakers.push(() => makeCharacter(
  3893. { name: "Rikky" },
  3894. {
  3895. side: {
  3896. height: math.unit(5 + 1 / 6, "feet"),
  3897. weight: math.unit(130, "lbs"),
  3898. name: "Side",
  3899. image: {
  3900. source: "./media/characters/rikky/side.svg"
  3901. }
  3902. },
  3903. },
  3904. [
  3905. {
  3906. name: "Normal",
  3907. height: math.unit(5 + 1 / 6, "feet")
  3908. },
  3909. {
  3910. name: "Macro",
  3911. height: math.unit(152, "feet"),
  3912. default: true
  3913. },
  3914. {
  3915. name: "Megamacro",
  3916. height: math.unit(7, "miles")
  3917. }
  3918. ]
  3919. ))
  3920. characterMakers.push(() => makeCharacter(
  3921. { name: "Malfressa" },
  3922. {
  3923. side: {
  3924. height: math.unit(370, "cm"),
  3925. weight: math.unit(350, "lbs"),
  3926. name: "Side",
  3927. image: {
  3928. source: "./media/characters/malfressa/side.svg"
  3929. }
  3930. },
  3931. walking: {
  3932. height: math.unit(370, "cm"),
  3933. weight: math.unit(350, "lbs"),
  3934. name: "Walking",
  3935. image: {
  3936. source: "./media/characters/malfressa/walking.svg"
  3937. }
  3938. },
  3939. feral: {
  3940. height: math.unit(2500, "cm"),
  3941. weight: math.unit(100000, "lbs"),
  3942. name: "Feral",
  3943. image: {
  3944. source: "./media/characters/malfressa/feral.svg",
  3945. extra: 2108 / 837,
  3946. bottom: 0.02
  3947. }
  3948. },
  3949. },
  3950. [
  3951. {
  3952. name: "Normal",
  3953. height: math.unit(370, "cm")
  3954. },
  3955. {
  3956. name: "Macro",
  3957. height: math.unit(300, "meters"),
  3958. default: true
  3959. }
  3960. ]
  3961. ))
  3962. characterMakers.push(() => makeCharacter(
  3963. { name: "Jaro" },
  3964. {
  3965. front: {
  3966. height: math.unit(6, "feet"),
  3967. weight: math.unit(60, "kg"),
  3968. name: "Front",
  3969. image: {
  3970. source: "./media/characters/jaro/front.svg"
  3971. }
  3972. },
  3973. back: {
  3974. height: math.unit(6, "feet"),
  3975. weight: math.unit(60, "kg"),
  3976. name: "Back",
  3977. image: {
  3978. source: "./media/characters/jaro/back.svg"
  3979. }
  3980. },
  3981. },
  3982. [
  3983. {
  3984. name: "Micro",
  3985. height: math.unit(7, "inches")
  3986. },
  3987. {
  3988. name: "Normal",
  3989. height: math.unit(5.5, "feet"),
  3990. default: true
  3991. },
  3992. {
  3993. name: "Minimacro",
  3994. height: math.unit(20, "feet")
  3995. },
  3996. {
  3997. name: "Macro",
  3998. height: math.unit(200, "meters")
  3999. }
  4000. ]
  4001. ))
  4002. characterMakers.push(() => makeCharacter(
  4003. { name: "Rogue" },
  4004. {
  4005. front: {
  4006. height: math.unit(6, "feet"),
  4007. weight: math.unit(195, "lb"),
  4008. name: "Front",
  4009. image: {
  4010. source: "./media/characters/rogue/front.svg"
  4011. }
  4012. },
  4013. },
  4014. [
  4015. {
  4016. name: "Macro",
  4017. height: math.unit(90, "feet"),
  4018. default: true
  4019. },
  4020. ]
  4021. ))
  4022. characterMakers.push(() => makeCharacter(
  4023. { name: "Piper" },
  4024. {
  4025. front: {
  4026. height: math.unit(5 + 8 / 12, "feet"),
  4027. weight: math.unit(140, "lb"),
  4028. name: "Front",
  4029. image: {
  4030. source: "./media/characters/piper/front.svg",
  4031. extra: 3928 / 3681
  4032. }
  4033. },
  4034. },
  4035. [
  4036. {
  4037. name: "Micro",
  4038. height: math.unit(2, "inches")
  4039. },
  4040. {
  4041. name: "Normal",
  4042. height: math.unit(5 + 8 / 12, "feet")
  4043. },
  4044. {
  4045. name: "Macro",
  4046. height: math.unit(250, "feet"),
  4047. default: true
  4048. },
  4049. {
  4050. name: "Megamacro",
  4051. height: math.unit(7, "miles")
  4052. },
  4053. ]
  4054. ))
  4055. characterMakers.push(() => makeCharacter(
  4056. { name: "Gemini" },
  4057. {
  4058. front: {
  4059. height: math.unit(6, "feet"),
  4060. weight: math.unit(220, "lb"),
  4061. name: "Front",
  4062. image: {
  4063. source: "./media/characters/gemini/front.svg"
  4064. }
  4065. },
  4066. back: {
  4067. height: math.unit(6, "feet"),
  4068. weight: math.unit(220, "lb"),
  4069. name: "Back",
  4070. image: {
  4071. source: "./media/characters/gemini/back.svg"
  4072. }
  4073. },
  4074. kneeling: {
  4075. height: math.unit(6 / 1.5, "feet"),
  4076. weight: math.unit(220, "lb"),
  4077. name: "Kneeling",
  4078. image: {
  4079. source: "./media/characters/gemini/kneeling.svg",
  4080. bottom: 0.02
  4081. }
  4082. },
  4083. },
  4084. [
  4085. {
  4086. name: "Macro",
  4087. height: math.unit(300, "meters"),
  4088. default: true
  4089. },
  4090. {
  4091. name: "Megamacro",
  4092. height: math.unit(6900, "meters")
  4093. },
  4094. ]
  4095. ))
  4096. characterMakers.push(() => makeCharacter(
  4097. { name: "Alicia" },
  4098. {
  4099. anthro: {
  4100. height: math.unit(2.35, "meters"),
  4101. weight: math.unit(73, "kg"),
  4102. name: "Anthro",
  4103. image: {
  4104. source: "./media/characters/alicia/anthro.svg"
  4105. }
  4106. },
  4107. feral: {
  4108. height: math.unit(1.69, "meters"),
  4109. weight: math.unit(73, "kg"),
  4110. name: "Feral",
  4111. image: {
  4112. source: "./media/characters/alicia/feral.svg"
  4113. }
  4114. },
  4115. },
  4116. [
  4117. {
  4118. name: "Normal",
  4119. height: math.unit(2.35, "meters")
  4120. },
  4121. {
  4122. name: "Macro",
  4123. height: math.unit(60, "meters"),
  4124. default: true
  4125. },
  4126. {
  4127. name: "Megamacro",
  4128. height: math.unit(10000, "kilometers")
  4129. },
  4130. ]
  4131. ))
  4132. characterMakers.push(() => makeCharacter(
  4133. { name: "Archy" },
  4134. {
  4135. front: {
  4136. height: math.unit(7, "feet"),
  4137. weight: math.unit(250, "lbs"),
  4138. name: "Front",
  4139. image: {
  4140. source: "./media/characters/archy/front.svg"
  4141. }
  4142. }
  4143. },
  4144. [
  4145. {
  4146. name: "Micro",
  4147. height: math.unit(1, "inch")
  4148. },
  4149. {
  4150. name: "Shorty",
  4151. height: math.unit(5, "feet")
  4152. },
  4153. {
  4154. name: "Normal",
  4155. height: math.unit(7, "feet")
  4156. },
  4157. {
  4158. name: "Macro",
  4159. height: math.unit(600, "meters"),
  4160. default: true
  4161. },
  4162. {
  4163. name: "Megamacro",
  4164. height: math.unit(1, "mile")
  4165. },
  4166. ]
  4167. ))
  4168. characterMakers.push(() => makeCharacter(
  4169. { name: "Berri" },
  4170. {
  4171. front: {
  4172. height: math.unit(1.65, "meters"),
  4173. weight: math.unit(74, "kg"),
  4174. name: "Front",
  4175. image: {
  4176. source: "./media/characters/berri/front.svg"
  4177. }
  4178. }
  4179. },
  4180. [
  4181. {
  4182. name: "Normal",
  4183. height: math.unit(1.65, "meters")
  4184. },
  4185. {
  4186. name: "Macro",
  4187. height: math.unit(60, "m"),
  4188. default: true
  4189. },
  4190. {
  4191. name: "Megamacro",
  4192. height: math.unit(9.213, "km")
  4193. },
  4194. {
  4195. name: "Planet Eater",
  4196. height: math.unit(489, "megameters")
  4197. },
  4198. {
  4199. name: "Teramacro",
  4200. height: math.unit(2471635000000, "meters")
  4201. },
  4202. {
  4203. name: "Examacro",
  4204. height: math.unit(8.0624e+26, "meters")
  4205. }
  4206. ]
  4207. ))
  4208. characterMakers.push(() => makeCharacter(
  4209. { name: "Lexi" },
  4210. {
  4211. front: {
  4212. height: math.unit(1.72, "meters"),
  4213. weight: math.unit(68, "kg"),
  4214. name: "Front",
  4215. image: {
  4216. source: "./media/characters/lexi/front.svg"
  4217. }
  4218. }
  4219. },
  4220. [
  4221. {
  4222. name: "Very Smol",
  4223. height: math.unit(10, "mm")
  4224. },
  4225. {
  4226. name: "Micro",
  4227. height: math.unit(6.8, "cm"),
  4228. default: true
  4229. },
  4230. {
  4231. name: "Normal",
  4232. height: math.unit(1.72, "m")
  4233. }
  4234. ]
  4235. ))
  4236. characterMakers.push(() => makeCharacter(
  4237. { name: "Martin" },
  4238. {
  4239. front: {
  4240. height: math.unit(1.69, "meters"),
  4241. weight: math.unit(68, "kg"),
  4242. name: "Front",
  4243. image: {
  4244. source: "./media/characters/martin/front.svg",
  4245. extra: 596 / 581
  4246. }
  4247. }
  4248. },
  4249. [
  4250. {
  4251. name: "Micro",
  4252. height: math.unit(6.85, "cm"),
  4253. default: true
  4254. },
  4255. {
  4256. name: "Normal",
  4257. height: math.unit(1.69, "m")
  4258. }
  4259. ]
  4260. ))
  4261. characterMakers.push(() => makeCharacter(
  4262. { name: "Juno" },
  4263. {
  4264. front: {
  4265. height: math.unit(1.69, "meters"),
  4266. weight: math.unit(68, "kg"),
  4267. name: "Front",
  4268. image: {
  4269. source: "./media/characters/juno/front.svg"
  4270. }
  4271. }
  4272. },
  4273. [
  4274. {
  4275. name: "Micro",
  4276. height: math.unit(7, "cm")
  4277. },
  4278. {
  4279. name: "Normal",
  4280. height: math.unit(1.89, "m")
  4281. },
  4282. {
  4283. name: "Macro",
  4284. height: math.unit(353, "meters"),
  4285. default: true
  4286. }
  4287. ]
  4288. ))
  4289. characterMakers.push(() => makeCharacter(
  4290. { name: "Samantha" },
  4291. {
  4292. front: {
  4293. height: math.unit(1.93, "meters"),
  4294. weight: math.unit(83, "kg"),
  4295. name: "Front",
  4296. image: {
  4297. source: "./media/characters/samantha/front.svg"
  4298. }
  4299. },
  4300. frontClothed: {
  4301. height: math.unit(1.93, "meters"),
  4302. weight: math.unit(83, "kg"),
  4303. name: "Front (Clothed)",
  4304. image: {
  4305. source: "./media/characters/samantha/front-clothed.svg"
  4306. }
  4307. },
  4308. back: {
  4309. height: math.unit(1.93, "meters"),
  4310. weight: math.unit(83, "kg"),
  4311. name: "Back",
  4312. image: {
  4313. source: "./media/characters/samantha/back.svg"
  4314. }
  4315. },
  4316. },
  4317. [
  4318. {
  4319. name: "Normal",
  4320. height: math.unit(1.93, "m")
  4321. },
  4322. {
  4323. name: "Macro",
  4324. height: math.unit(74, "meters"),
  4325. default: true
  4326. },
  4327. {
  4328. name: "Macro+",
  4329. height: math.unit(223, "meters"),
  4330. },
  4331. {
  4332. name: "Megamacro",
  4333. height: math.unit(8381, "meters"),
  4334. },
  4335. {
  4336. name: "Megamacro+",
  4337. height: math.unit(12000, "kilometers")
  4338. },
  4339. ]
  4340. ))
  4341. characterMakers.push(() => makeCharacter(
  4342. { name: "Dr. Clay" },
  4343. {
  4344. front: {
  4345. height: math.unit(1.92, "meters"),
  4346. weight: math.unit(80, "kg"),
  4347. name: "Front",
  4348. image: {
  4349. source: "./media/characters/dr-clay/front.svg"
  4350. }
  4351. },
  4352. frontClothed: {
  4353. height: math.unit(1.92, "meters"),
  4354. weight: math.unit(80, "kg"),
  4355. name: "Front (Clothed)",
  4356. image: {
  4357. source: "./media/characters/dr-clay/front-clothed.svg"
  4358. }
  4359. }
  4360. },
  4361. [
  4362. {
  4363. name: "Normal",
  4364. height: math.unit(1.92, "m")
  4365. },
  4366. {
  4367. name: "Macro",
  4368. height: math.unit(214, "meters"),
  4369. default: true
  4370. },
  4371. {
  4372. name: "Macro+",
  4373. height: math.unit(12.237, "meters"),
  4374. },
  4375. {
  4376. name: "Megamacro",
  4377. height: math.unit(557, "megameters"),
  4378. },
  4379. {
  4380. name: "Unimaginable",
  4381. height: math.unit(120e9, "lightyears")
  4382. },
  4383. ]
  4384. ))
  4385. characterMakers.push(() => makeCharacter(
  4386. { name: "Wyvrn Ripsnarl" },
  4387. {
  4388. front: {
  4389. height: math.unit(2, "meters"),
  4390. weight: math.unit(80, "kg"),
  4391. name: "Front",
  4392. image: {
  4393. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4394. }
  4395. }
  4396. },
  4397. [
  4398. {
  4399. name: "Teramacro",
  4400. height: math.unit(500000, "lightyears"),
  4401. default: true
  4402. },
  4403. ]
  4404. ))
  4405. characterMakers.push(() => makeCharacter(
  4406. { name: "Vemus" },
  4407. {
  4408. front: {
  4409. height: math.unit(2, "meters"),
  4410. weight: math.unit(150, "kg"),
  4411. name: "Front",
  4412. image: {
  4413. source: "./media/characters/vemus/front.svg",
  4414. extra: 2384 / 2084,
  4415. bottom: 0.0123
  4416. }
  4417. }
  4418. },
  4419. [
  4420. {
  4421. name: "Normal",
  4422. height: math.unit(3.75, "meters"),
  4423. default: true
  4424. },
  4425. {
  4426. name: "Big",
  4427. height: math.unit(8, "meters")
  4428. },
  4429. {
  4430. name: "Macro",
  4431. height: math.unit(100, "meters")
  4432. },
  4433. {
  4434. name: "Macro+",
  4435. height: math.unit(1500, "meters")
  4436. },
  4437. {
  4438. name: "Stellar",
  4439. height: math.unit(14e8, "meters")
  4440. },
  4441. ]
  4442. ))
  4443. characterMakers.push(() => makeCharacter(
  4444. { name: "Beherit" },
  4445. {
  4446. front: {
  4447. height: math.unit(2, "meters"),
  4448. weight: math.unit(70, "kg"),
  4449. name: "Front",
  4450. image: {
  4451. source: "./media/characters/beherit/front.svg",
  4452. extra: 1408 / 1242
  4453. }
  4454. }
  4455. },
  4456. [
  4457. {
  4458. name: "Normal",
  4459. height: math.unit(6, "feet")
  4460. },
  4461. {
  4462. name: "Lorg",
  4463. height: math.unit(25, "feet"),
  4464. default: true
  4465. },
  4466. {
  4467. name: "Lorger",
  4468. height: math.unit(75, "feet")
  4469. },
  4470. {
  4471. name: "Macro",
  4472. height: math.unit(200, "meters")
  4473. },
  4474. ]
  4475. ))
  4476. characterMakers.push(() => makeCharacter(
  4477. { name: "Everett" },
  4478. {
  4479. front: {
  4480. height: math.unit(2, "meters"),
  4481. weight: math.unit(150, "kg"),
  4482. name: "Front",
  4483. image: {
  4484. source: "./media/characters/everett/front.svg",
  4485. extra: 2038 / 1737,
  4486. bottom: 0.03
  4487. }
  4488. },
  4489. paw: {
  4490. height: math.unit(2 / 3.6, "meters"),
  4491. name: "Paw",
  4492. image: {
  4493. source: "./media/characters/everett/paw.svg"
  4494. }
  4495. },
  4496. },
  4497. [
  4498. {
  4499. name: "Normal",
  4500. height: math.unit(15, "feet"),
  4501. default: true
  4502. },
  4503. {
  4504. name: "Lorg",
  4505. height: math.unit(70, "feet"),
  4506. default: true
  4507. },
  4508. {
  4509. name: "Lorger",
  4510. height: math.unit(250, "feet")
  4511. },
  4512. {
  4513. name: "Macro",
  4514. height: math.unit(500, "meters")
  4515. },
  4516. ]
  4517. ))
  4518. characterMakers.push(() => makeCharacter(
  4519. { name: "Rose Lion" },
  4520. {
  4521. front: {
  4522. height: math.unit(2, "meters"),
  4523. weight: math.unit(86, "kg"),
  4524. name: "Front",
  4525. image: {
  4526. source: "./media/characters/rose-lion/front.svg"
  4527. }
  4528. },
  4529. bent: {
  4530. height: math.unit(2 / 1.4288, "meters"),
  4531. weight: math.unit(86, "kg"),
  4532. name: "Bent",
  4533. image: {
  4534. source: "./media/characters/rose-lion/bent.svg"
  4535. }
  4536. }
  4537. },
  4538. [
  4539. {
  4540. name: "Mini-Micro",
  4541. height: math.unit(1, "cm")
  4542. },
  4543. {
  4544. name: "Micro",
  4545. height: math.unit(3.5, "inches"),
  4546. default: true
  4547. },
  4548. {
  4549. name: "Normal",
  4550. height: math.unit(6 + 1 / 6, "feet")
  4551. },
  4552. {
  4553. name: "Mini-Macro",
  4554. height: math.unit(9 + 10 / 12, "feet")
  4555. },
  4556. ]
  4557. ))
  4558. characterMakers.push(() => makeCharacter(
  4559. { name: "Regal" },
  4560. {
  4561. front: {
  4562. height: math.unit(2, "meters"),
  4563. weight: math.unit(350, "lbs"),
  4564. name: "Front",
  4565. image: {
  4566. source: "./media/characters/regal/front.svg"
  4567. }
  4568. },
  4569. back: {
  4570. height: math.unit(2, "meters"),
  4571. weight: math.unit(350, "lbs"),
  4572. name: "Back",
  4573. image: {
  4574. source: "./media/characters/regal/back.svg"
  4575. }
  4576. },
  4577. },
  4578. [
  4579. {
  4580. name: "Macro",
  4581. height: math.unit(350, "feet"),
  4582. default: true
  4583. }
  4584. ]
  4585. ))
  4586. characterMakers.push(() => makeCharacter(
  4587. { name: "Opal" },
  4588. {
  4589. front: {
  4590. height: math.unit(4 + 11 / 12, "feet"),
  4591. weight: math.unit(100, "lbs"),
  4592. name: "Front",
  4593. image: {
  4594. source: "./media/characters/opal/front.svg"
  4595. }
  4596. },
  4597. frontAlt: {
  4598. height: math.unit(4 + 11 / 12, "feet"),
  4599. weight: math.unit(100, "lbs"),
  4600. name: "Front (Alt)",
  4601. image: {
  4602. source: "./media/characters/opal/front-alt.svg"
  4603. }
  4604. },
  4605. },
  4606. [
  4607. {
  4608. name: "Small",
  4609. height: math.unit(4 + 11 / 12, "feet")
  4610. },
  4611. {
  4612. name: "Normal",
  4613. height: math.unit(20, "feet"),
  4614. default: true
  4615. },
  4616. {
  4617. name: "Macro",
  4618. height: math.unit(120, "feet")
  4619. },
  4620. {
  4621. name: "Megamacro",
  4622. height: math.unit(80, "miles")
  4623. },
  4624. {
  4625. name: "True Size",
  4626. height: math.unit(100000, "lightyears")
  4627. },
  4628. ]
  4629. ))
  4630. characterMakers.push(() => makeCharacter(
  4631. { name: "Vector Wuff" },
  4632. {
  4633. front: {
  4634. height: math.unit(6, "feet"),
  4635. weight: math.unit(200, "lbs"),
  4636. name: "Front",
  4637. image: {
  4638. source: "./media/characters/vector-wuff/front.svg"
  4639. }
  4640. }
  4641. },
  4642. [
  4643. {
  4644. name: "Normal",
  4645. height: math.unit(2.8, "meters")
  4646. },
  4647. {
  4648. name: "Macro",
  4649. height: math.unit(450, "meters"),
  4650. default: true
  4651. },
  4652. {
  4653. name: "Megamacro",
  4654. height: math.unit(15, "kilometers")
  4655. }
  4656. ]
  4657. ))
  4658. characterMakers.push(() => makeCharacter(
  4659. { name: "Dannik" },
  4660. {
  4661. front: {
  4662. height: math.unit(6, "feet"),
  4663. weight: math.unit(256, "lbs"),
  4664. name: "Front",
  4665. image: {
  4666. source: "./media/characters/dannik/front.svg"
  4667. }
  4668. }
  4669. },
  4670. [
  4671. {
  4672. name: "Macro",
  4673. height: math.unit(69.57, "meters"),
  4674. default: true
  4675. },
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Azura Saharah" },
  4680. {
  4681. front: {
  4682. height: math.unit(6, "feet"),
  4683. weight: math.unit(120, "lbs"),
  4684. name: "Front",
  4685. image: {
  4686. source: "./media/characters/azura-saharah/front.svg"
  4687. }
  4688. },
  4689. back: {
  4690. height: math.unit(6, "feet"),
  4691. weight: math.unit(120, "lbs"),
  4692. name: "Back",
  4693. image: {
  4694. source: "./media/characters/azura-saharah/back.svg"
  4695. }
  4696. },
  4697. },
  4698. [
  4699. {
  4700. name: "Macro",
  4701. height: math.unit(100, "feet"),
  4702. default: true
  4703. },
  4704. ]
  4705. ))
  4706. characterMakers.push(() => makeCharacter(
  4707. { name: "Kennedy" },
  4708. {
  4709. side: {
  4710. height: math.unit(5 + 4 / 12, "feet"),
  4711. weight: math.unit(163, "lbs"),
  4712. name: "Side",
  4713. image: {
  4714. source: "./media/characters/kennedy/side.svg"
  4715. }
  4716. }
  4717. },
  4718. [
  4719. {
  4720. name: "Standard Doggo",
  4721. height: math.unit(5 + 4 / 12, "feet")
  4722. },
  4723. {
  4724. name: "Big Doggo",
  4725. height: math.unit(25 + 3 / 12, "feet"),
  4726. default: true
  4727. },
  4728. ]
  4729. ))
  4730. characterMakers.push(() => makeCharacter(
  4731. { name: "Odi Lunar" },
  4732. {
  4733. front: {
  4734. height: math.unit(6, "feet"),
  4735. weight: math.unit(90, "lbs"),
  4736. name: "Front",
  4737. image: {
  4738. source: "./media/characters/odi-lunar/front.svg"
  4739. }
  4740. }
  4741. },
  4742. [
  4743. {
  4744. name: "Micro",
  4745. height: math.unit(3, "inches"),
  4746. default: true
  4747. },
  4748. {
  4749. name: "Normal",
  4750. height: math.unit(5.5, "feet")
  4751. }
  4752. ]
  4753. ))
  4754. characterMakers.push(() => makeCharacter(
  4755. { name: "Mandake" },
  4756. {
  4757. back: {
  4758. height: math.unit(6, "feet"),
  4759. weight: math.unit(220, "lbs"),
  4760. name: "Back",
  4761. image: {
  4762. source: "./media/characters/mandake/back.svg"
  4763. }
  4764. }
  4765. },
  4766. [
  4767. {
  4768. name: "Normal",
  4769. height: math.unit(7, "feet"),
  4770. default: true
  4771. },
  4772. {
  4773. name: "Macro",
  4774. height: math.unit(78, "feet")
  4775. },
  4776. {
  4777. name: "Macro+",
  4778. height: math.unit(300, "meters")
  4779. },
  4780. {
  4781. name: "Macro++",
  4782. height: math.unit(2400, "feet")
  4783. },
  4784. {
  4785. name: "Megamacro",
  4786. height: math.unit(5167, "meters")
  4787. },
  4788. {
  4789. name: "Gigamacro",
  4790. height: math.unit(41769, "miles")
  4791. },
  4792. ]
  4793. ))
  4794. characterMakers.push(() => makeCharacter(
  4795. { name: "Yozey" },
  4796. {
  4797. front: {
  4798. height: math.unit(6, "feet"),
  4799. weight: math.unit(120, "lbs"),
  4800. name: "Front",
  4801. image: {
  4802. source: "./media/characters/yozey/front.svg"
  4803. }
  4804. },
  4805. frontAlt: {
  4806. height: math.unit(6, "feet"),
  4807. weight: math.unit(120, "lbs"),
  4808. name: "Front (Alt)",
  4809. image: {
  4810. source: "./media/characters/yozey/front-alt.svg"
  4811. }
  4812. },
  4813. side: {
  4814. height: math.unit(6, "feet"),
  4815. weight: math.unit(120, "lbs"),
  4816. name: "Side",
  4817. image: {
  4818. source: "./media/characters/yozey/side.svg"
  4819. }
  4820. },
  4821. },
  4822. [
  4823. {
  4824. name: "Micro",
  4825. height: math.unit(3, "inches"),
  4826. default: true
  4827. },
  4828. {
  4829. name: "Normal",
  4830. height: math.unit(6, "feet")
  4831. }
  4832. ]
  4833. ))
  4834. characterMakers.push(() => makeCharacter(
  4835. { name: "Valeska Voss" },
  4836. {
  4837. front: {
  4838. height: math.unit(6, "feet"),
  4839. weight: math.unit(103, "lbs"),
  4840. name: "Front",
  4841. image: {
  4842. source: "./media/characters/valeska-voss/front.svg"
  4843. }
  4844. }
  4845. },
  4846. [
  4847. {
  4848. name: "Mini-Sized Sub",
  4849. height: math.unit(3.1, "inches")
  4850. },
  4851. {
  4852. name: "Mid-Sized Sub",
  4853. height: math.unit(6.2, "inches")
  4854. },
  4855. {
  4856. name: "Full-Sized Sub",
  4857. height: math.unit(9.3, "inches")
  4858. },
  4859. {
  4860. name: "Normal",
  4861. height: math.unit(5 + 2 / 12, "foot"),
  4862. default: true
  4863. },
  4864. ]
  4865. ))
  4866. characterMakers.push(() => makeCharacter(
  4867. { name: "Gene Zeta" },
  4868. {
  4869. front: {
  4870. height: math.unit(6, "feet"),
  4871. weight: math.unit(160, "lbs"),
  4872. name: "Front",
  4873. image: {
  4874. source: "./media/characters/gene-zeta/front.svg",
  4875. bottom: 0.03,
  4876. extra: 1
  4877. }
  4878. }
  4879. },
  4880. [
  4881. {
  4882. name: "Normal",
  4883. height: math.unit(6.25, "foot"),
  4884. default: true
  4885. },
  4886. ]
  4887. ))
  4888. characterMakers.push(() => makeCharacter(
  4889. { name: "Razinox" },
  4890. {
  4891. front: {
  4892. height: math.unit(6, "feet"),
  4893. weight: math.unit(350, "lbs"),
  4894. name: "Front",
  4895. image: {
  4896. source: "./media/characters/razinox/front.svg",
  4897. extra: 1686 / 1548,
  4898. bottom: 28.2/1868
  4899. }
  4900. },
  4901. back: {
  4902. height: math.unit(6, "feet"),
  4903. weight: math.unit(350, "lbs"),
  4904. name: "Back",
  4905. image: {
  4906. source: "./media/characters/razinox/back.svg",
  4907. extra: 1660 / 1590,
  4908. bottom: 15/1665
  4909. }
  4910. },
  4911. },
  4912. [
  4913. {
  4914. name: "Normal",
  4915. height: math.unit(10 + 8 / 12, "foot")
  4916. },
  4917. {
  4918. name: "Minimacro",
  4919. height: math.unit(15, "foot")
  4920. },
  4921. {
  4922. name: "Macro",
  4923. height: math.unit(60, "foot"),
  4924. default: true
  4925. },
  4926. {
  4927. name: "Megamacro",
  4928. height: math.unit(5, "miles")
  4929. },
  4930. {
  4931. name: "Gigamacro",
  4932. height: math.unit(6000, "miles")
  4933. },
  4934. ]
  4935. ))
  4936. characterMakers.push(() => makeCharacter(
  4937. { name: "Cobalt" },
  4938. {
  4939. front: {
  4940. height: math.unit(6, "feet"),
  4941. weight: math.unit(150, "lbs"),
  4942. name: "Front",
  4943. image: {
  4944. source: "./media/characters/cobalt/front.svg"
  4945. }
  4946. }
  4947. },
  4948. [
  4949. {
  4950. name: "Normal",
  4951. height: math.unit(8 + 1 / 12, "foot")
  4952. },
  4953. {
  4954. name: "Macro",
  4955. height: math.unit(111, "foot"),
  4956. default: true
  4957. },
  4958. {
  4959. name: "Supracosmic",
  4960. height: math.unit(1e42, "feet")
  4961. },
  4962. ]
  4963. ))
  4964. characterMakers.push(() => makeCharacter(
  4965. { name: "Amanda" },
  4966. {
  4967. front: {
  4968. height: math.unit(6, "feet"),
  4969. weight: math.unit(140, "lbs"),
  4970. name: "Front",
  4971. image: {
  4972. source: "./media/characters/amanda/front.svg"
  4973. }
  4974. }
  4975. },
  4976. [
  4977. {
  4978. name: "Micro",
  4979. height: math.unit(5, "inches"),
  4980. default: true
  4981. },
  4982. ]
  4983. ))
  4984. characterMakers.push(() => makeCharacter(
  4985. { name: "Teal" },
  4986. {
  4987. front: {
  4988. height: math.unit(5.59, "feet"),
  4989. weight: math.unit(250, "lbs"),
  4990. name: "Front",
  4991. image: {
  4992. source: "./media/characters/teal/front.svg"
  4993. }
  4994. },
  4995. frontAlt: {
  4996. height: math.unit(6, "feet"),
  4997. weight: math.unit(250, "lbs"),
  4998. name: "Front (Alt)",
  4999. image: {
  5000. source: "./media/characters/teal/front-alt.svg",
  5001. bottom: 0.04,
  5002. extra: 1
  5003. }
  5004. },
  5005. },
  5006. [
  5007. {
  5008. name: "Normal",
  5009. height: math.unit(12, "feet"),
  5010. default: true
  5011. },
  5012. {
  5013. name: "Macro",
  5014. height: math.unit(300, "feet")
  5015. },
  5016. ]
  5017. ))
  5018. characterMakers.push(() => makeCharacter(
  5019. { name: "Ravin Amulet" },
  5020. {
  5021. frontCat: {
  5022. height: math.unit(6, "feet"),
  5023. weight: math.unit(180, "lbs"),
  5024. name: "Front (Cat)",
  5025. image: {
  5026. source: "./media/characters/ravin-amulet/front-cat.svg"
  5027. }
  5028. },
  5029. frontCatAlt: {
  5030. height: math.unit(6, "feet"),
  5031. weight: math.unit(180, "lbs"),
  5032. name: "Front (Alt, Cat)",
  5033. image: {
  5034. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5035. }
  5036. },
  5037. frontWerewolf: {
  5038. height: math.unit(6 * 1.2, "feet"),
  5039. weight: math.unit(225, "lbs"),
  5040. name: "Front (Werewolf)",
  5041. image: {
  5042. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5043. }
  5044. },
  5045. backWerewolf: {
  5046. height: math.unit(6 * 1.2, "feet"),
  5047. weight: math.unit(225, "lbs"),
  5048. name: "Back (Werewolf)",
  5049. image: {
  5050. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5051. }
  5052. },
  5053. },
  5054. [
  5055. {
  5056. name: "Nano",
  5057. height: math.unit(1, "micrometer")
  5058. },
  5059. {
  5060. name: "Micro",
  5061. height: math.unit(1, "inch")
  5062. },
  5063. {
  5064. name: "Normal",
  5065. height: math.unit(6, "feet"),
  5066. default: true
  5067. },
  5068. {
  5069. name: "Macro",
  5070. height: math.unit(60, "feet")
  5071. }
  5072. ]
  5073. ))
  5074. characterMakers.push(() => makeCharacter(
  5075. { name: "Fluoresce" },
  5076. {
  5077. front: {
  5078. height: math.unit(6, "feet"),
  5079. weight: math.unit(165, "lbs"),
  5080. name: "Front",
  5081. image: {
  5082. source: "./media/characters/fluoresce/front.svg"
  5083. }
  5084. }
  5085. },
  5086. [
  5087. {
  5088. name: "Micro",
  5089. height: math.unit(6, "cm")
  5090. },
  5091. {
  5092. name: "Normal",
  5093. height: math.unit(5 + 7 / 12, "feet"),
  5094. default: true
  5095. },
  5096. {
  5097. name: "Macro",
  5098. height: math.unit(56, "feet")
  5099. },
  5100. {
  5101. name: "Megamacro",
  5102. height: math.unit(1.9, "miles")
  5103. },
  5104. ]
  5105. ))
  5106. characterMakers.push(() => makeCharacter(
  5107. { name: "Aurora" },
  5108. {
  5109. front: {
  5110. height: math.unit(9 + 6 / 12, "feet"),
  5111. weight: math.unit(523, "lbs"),
  5112. name: "Side",
  5113. image: {
  5114. source: "./media/characters/aurora/side.svg"
  5115. }
  5116. }
  5117. },
  5118. [
  5119. {
  5120. name: "Normal",
  5121. height: math.unit(9 + 6 / 12, "feet")
  5122. },
  5123. {
  5124. name: "Macro",
  5125. height: math.unit(96, "feet"),
  5126. default: true
  5127. },
  5128. {
  5129. name: "Macro+",
  5130. height: math.unit(243, "feet")
  5131. },
  5132. ]
  5133. ))
  5134. characterMakers.push(() => makeCharacter(
  5135. { name: "Ranek" },
  5136. {
  5137. front: {
  5138. height: math.unit(194, "cm"),
  5139. weight: math.unit(90, "kg"),
  5140. name: "Front",
  5141. image: {
  5142. source: "./media/characters/ranek/front.svg"
  5143. }
  5144. },
  5145. side: {
  5146. height: math.unit(194, "cm"),
  5147. weight: math.unit(90, "kg"),
  5148. name: "Side",
  5149. image: {
  5150. source: "./media/characters/ranek/side.svg"
  5151. }
  5152. },
  5153. back: {
  5154. height: math.unit(194, "cm"),
  5155. weight: math.unit(90, "kg"),
  5156. name: "Back",
  5157. image: {
  5158. source: "./media/characters/ranek/back.svg"
  5159. }
  5160. },
  5161. feral: {
  5162. height: math.unit(30, "cm"),
  5163. weight: math.unit(1.6, "lbs"),
  5164. name: "Feral",
  5165. image: {
  5166. source: "./media/characters/ranek/feral.svg"
  5167. }
  5168. },
  5169. },
  5170. [
  5171. {
  5172. name: "Normal",
  5173. height: math.unit(194, "cm"),
  5174. default: true
  5175. },
  5176. {
  5177. name: "Macro",
  5178. height: math.unit(100, "meters")
  5179. },
  5180. ]
  5181. ))
  5182. characterMakers.push(() => makeCharacter(
  5183. { name: "Andrew Cooper" },
  5184. {
  5185. front: {
  5186. height: math.unit(5 + 6 / 12, "feet"),
  5187. weight: math.unit(153, "lbs"),
  5188. name: "Front",
  5189. image: {
  5190. source: "./media/characters/andrew-cooper/front.svg"
  5191. }
  5192. },
  5193. },
  5194. [
  5195. {
  5196. name: "Nano",
  5197. height: math.unit(1, "mm")
  5198. },
  5199. {
  5200. name: "Micro",
  5201. height: math.unit(2, "inches")
  5202. },
  5203. {
  5204. name: "Normal",
  5205. height: math.unit(5 + 6 / 12, "feet"),
  5206. default: true
  5207. }
  5208. ]
  5209. ))
  5210. characterMakers.push(() => makeCharacter(
  5211. { name: "Akane Sato" },
  5212. {
  5213. front: {
  5214. height: math.unit(6, "feet"),
  5215. weight: math.unit(180, "lbs"),
  5216. name: "Front",
  5217. image: {
  5218. source: "./media/characters/akane-sato/front.svg",
  5219. extra: 1219 / 1140
  5220. }
  5221. },
  5222. back: {
  5223. height: math.unit(6, "feet"),
  5224. weight: math.unit(180, "lbs"),
  5225. name: "Back",
  5226. image: {
  5227. source: "./media/characters/akane-sato/back.svg",
  5228. extra: 1219 / 1170
  5229. }
  5230. },
  5231. },
  5232. [
  5233. {
  5234. name: "Normal",
  5235. height: math.unit(2.5, "meters")
  5236. },
  5237. {
  5238. name: "Macro",
  5239. height: math.unit(250, "meters"),
  5240. default: true
  5241. },
  5242. {
  5243. name: "Megamacro",
  5244. height: math.unit(25, "km")
  5245. },
  5246. ]
  5247. ))
  5248. characterMakers.push(() => makeCharacter(
  5249. { name: "Rook" },
  5250. {
  5251. front: {
  5252. height: math.unit(6, "feet"),
  5253. weight: math.unit(65, "kg"),
  5254. name: "Front",
  5255. image: {
  5256. source: "./media/characters/rook/front.svg",
  5257. extra: 960/950
  5258. }
  5259. }
  5260. },
  5261. [
  5262. {
  5263. name: "Normal",
  5264. height: math.unit(8.8, "feet")
  5265. },
  5266. {
  5267. name: "Macro",
  5268. height: math.unit(88, "feet"),
  5269. default: true
  5270. },
  5271. {
  5272. name: "Megamacro",
  5273. height: math.unit(8, "miles")
  5274. },
  5275. ]
  5276. ))
  5277. characterMakers.push(() => makeCharacter(
  5278. { name: "Prodigy" },
  5279. {
  5280. front: {
  5281. height: math.unit(12 + 2 / 12, "feet"),
  5282. weight: math.unit(808, "lbs"),
  5283. name: "Front",
  5284. image: {
  5285. source: "./media/characters/prodigy/front.svg"
  5286. }
  5287. }
  5288. },
  5289. [
  5290. {
  5291. name: "Normal",
  5292. height: math.unit(12 + 2 / 12, "feet"),
  5293. default: true
  5294. },
  5295. {
  5296. name: "Macro",
  5297. height: math.unit(143, "feet")
  5298. },
  5299. {
  5300. name: "Macro+",
  5301. height: math.unit(400, "feet")
  5302. },
  5303. ]
  5304. ))
  5305. characterMakers.push(() => makeCharacter(
  5306. { name: "Daniel" },
  5307. {
  5308. front: {
  5309. height: math.unit(6, "feet"),
  5310. weight: math.unit(225, "lbs"),
  5311. name: "Front",
  5312. image: {
  5313. source: "./media/characters/daniel/front.svg"
  5314. }
  5315. },
  5316. leaning: {
  5317. height: math.unit(6, "feet"),
  5318. weight: math.unit(225, "lbs"),
  5319. name: "Leaning",
  5320. image: {
  5321. source: "./media/characters/daniel/leaning.svg"
  5322. }
  5323. },
  5324. },
  5325. [
  5326. {
  5327. name: "Macro",
  5328. height: math.unit(1000, "feet"),
  5329. default: true
  5330. },
  5331. ]
  5332. ))
  5333. characterMakers.push(() => makeCharacter(
  5334. { name: "Chiros" },
  5335. {
  5336. front: {
  5337. height: math.unit(6, "feet"),
  5338. weight: math.unit(88, "lbs"),
  5339. name: "Front",
  5340. image: {
  5341. source: "./media/characters/chiros/front.svg",
  5342. extra: 306 / 226
  5343. }
  5344. },
  5345. side: {
  5346. height: math.unit(6, "feet"),
  5347. weight: math.unit(88, "lbs"),
  5348. name: "Side",
  5349. image: {
  5350. source: "./media/characters/chiros/side.svg",
  5351. extra: 306 / 226
  5352. }
  5353. },
  5354. },
  5355. [
  5356. {
  5357. name: "Normal",
  5358. height: math.unit(6, "cm"),
  5359. default: true
  5360. },
  5361. ]
  5362. ))
  5363. characterMakers.push(() => makeCharacter(
  5364. { name: "Selka" },
  5365. {
  5366. front: {
  5367. height: math.unit(6, "feet"),
  5368. weight: math.unit(100, "lbs"),
  5369. name: "Front",
  5370. image: {
  5371. source: "./media/characters/selka/front.svg",
  5372. extra: 947 / 887
  5373. }
  5374. }
  5375. },
  5376. [
  5377. {
  5378. name: "Normal",
  5379. height: math.unit(5, "cm"),
  5380. default: true
  5381. },
  5382. ]
  5383. ))
  5384. characterMakers.push(() => makeCharacter(
  5385. { name: "Verin" },
  5386. {
  5387. front: {
  5388. height: math.unit(8 + 3 / 12, "feet"),
  5389. weight: math.unit(424, "lbs"),
  5390. name: "Front",
  5391. image: {
  5392. source: "./media/characters/verin/front.svg",
  5393. extra: 1845 / 1550
  5394. }
  5395. },
  5396. frontArmored: {
  5397. height: math.unit(8 + 3 / 12, "feet"),
  5398. weight: math.unit(424, "lbs"),
  5399. name: "Front (Armored)",
  5400. image: {
  5401. source: "./media/characters/verin/front-armor.svg",
  5402. extra: 1845 / 1550,
  5403. bottom: 0.01
  5404. }
  5405. },
  5406. back: {
  5407. height: math.unit(8 + 3 / 12, "feet"),
  5408. weight: math.unit(424, "lbs"),
  5409. name: "Back",
  5410. image: {
  5411. source: "./media/characters/verin/back.svg",
  5412. bottom: 0.1,
  5413. extra: 1
  5414. }
  5415. },
  5416. foot: {
  5417. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5418. name: "Foot",
  5419. image: {
  5420. source: "./media/characters/verin/foot.svg"
  5421. }
  5422. },
  5423. },
  5424. [
  5425. {
  5426. name: "Normal",
  5427. height: math.unit(8 + 3 / 12, "feet")
  5428. },
  5429. {
  5430. name: "Minimacro",
  5431. height: math.unit(21, "feet"),
  5432. default: true
  5433. },
  5434. {
  5435. name: "Macro",
  5436. height: math.unit(626, "feet")
  5437. },
  5438. ]
  5439. ))
  5440. characterMakers.push(() => makeCharacter(
  5441. { name: "Sovrim Terraquian" },
  5442. {
  5443. front: {
  5444. height: math.unit(2.718, "meters"),
  5445. weight: math.unit(150, "lbs"),
  5446. name: "Front",
  5447. image: {
  5448. source: "./media/characters/sovrim-terraquian/front.svg"
  5449. }
  5450. },
  5451. back: {
  5452. height: math.unit(2.718, "meters"),
  5453. weight: math.unit(150, "lbs"),
  5454. name: "Back",
  5455. image: {
  5456. source: "./media/characters/sovrim-terraquian/back.svg"
  5457. }
  5458. }
  5459. },
  5460. [
  5461. {
  5462. name: "Micro",
  5463. height: math.unit(2, "inches")
  5464. },
  5465. {
  5466. name: "Small",
  5467. height: math.unit(1, "meter")
  5468. },
  5469. {
  5470. name: "Normal",
  5471. height: math.unit(Math.E, "meters"),
  5472. default: true
  5473. },
  5474. {
  5475. name: "Macro",
  5476. height: math.unit(20, "meters")
  5477. },
  5478. {
  5479. name: "Macro+",
  5480. height: math.unit(400, "meters")
  5481. },
  5482. ]
  5483. ))
  5484. characterMakers.push(() => makeCharacter(
  5485. { name: "Reece Silvermane" },
  5486. {
  5487. front: {
  5488. height: math.unit(7, "feet"),
  5489. weight: math.unit(489, "lbs"),
  5490. name: "Front",
  5491. image: {
  5492. source: "./media/characters/reece-silvermane/front.svg",
  5493. bottom: 0.02,
  5494. extra: 1
  5495. }
  5496. },
  5497. },
  5498. [
  5499. {
  5500. name: "Macro",
  5501. height: math.unit(1.5, "miles"),
  5502. default: true
  5503. },
  5504. ]
  5505. ))
  5506. characterMakers.push(() => makeCharacter(
  5507. { name: "Kane" },
  5508. {
  5509. front: {
  5510. height: math.unit(6, "feet"),
  5511. weight: math.unit(78, "kg"),
  5512. name: "Front",
  5513. image: {
  5514. source: "./media/characters/kane/front.svg",
  5515. extra: 978 / 899
  5516. }
  5517. },
  5518. },
  5519. [
  5520. {
  5521. name: "Normal",
  5522. height: math.unit(2.1, "m"),
  5523. },
  5524. {
  5525. name: "Macro",
  5526. height: math.unit(1, "km"),
  5527. default: true
  5528. },
  5529. ]
  5530. ))
  5531. characterMakers.push(() => makeCharacter(
  5532. { name: "Tegon" },
  5533. {
  5534. front: {
  5535. height: math.unit(6, "feet"),
  5536. weight: math.unit(200, "kg"),
  5537. name: "Front",
  5538. image: {
  5539. source: "./media/characters/tegon/front.svg",
  5540. bottom: 0.01,
  5541. extra: 1
  5542. }
  5543. },
  5544. },
  5545. [
  5546. {
  5547. name: "Micro",
  5548. height: math.unit(1, "inch")
  5549. },
  5550. {
  5551. name: "Normal",
  5552. height: math.unit(6 + 3 / 12, "feet"),
  5553. default: true
  5554. },
  5555. {
  5556. name: "Macro",
  5557. height: math.unit(300, "feet")
  5558. },
  5559. {
  5560. name: "Megamacro",
  5561. height: math.unit(69, "miles")
  5562. },
  5563. ]
  5564. ))
  5565. characterMakers.push(() => makeCharacter(
  5566. { name: "Arcturax" },
  5567. {
  5568. side: {
  5569. height: math.unit(6, "feet"),
  5570. weight: math.unit(2304, "lbs"),
  5571. name: "Side",
  5572. image: {
  5573. source: "./media/characters/arcturax/side.svg",
  5574. extra: 790 / 376,
  5575. bottom: 0.01
  5576. }
  5577. },
  5578. },
  5579. [
  5580. {
  5581. name: "Micro",
  5582. height: math.unit(2, "inch")
  5583. },
  5584. {
  5585. name: "Normal",
  5586. height: math.unit(6, "feet")
  5587. },
  5588. {
  5589. name: "Macro",
  5590. height: math.unit(39, "feet"),
  5591. default: true
  5592. },
  5593. {
  5594. name: "Megamacro",
  5595. height: math.unit(7, "miles")
  5596. },
  5597. ]
  5598. ))
  5599. characterMakers.push(() => makeCharacter(
  5600. { name: "Sentri" },
  5601. {
  5602. front: {
  5603. height: math.unit(6, "feet"),
  5604. weight: math.unit(50, "lbs"),
  5605. name: "Front",
  5606. image: {
  5607. source: "./media/characters/sentri/front.svg",
  5608. extra: 1750 / 1570,
  5609. bottom: 0.025
  5610. }
  5611. },
  5612. frontAlt: {
  5613. height: math.unit(6, "feet"),
  5614. weight: math.unit(50, "lbs"),
  5615. name: "Front (Alt)",
  5616. image: {
  5617. source: "./media/characters/sentri/front-alt.svg",
  5618. extra: 1750 / 1570,
  5619. bottom: 0.025
  5620. }
  5621. },
  5622. },
  5623. [
  5624. {
  5625. name: "Normal",
  5626. height: math.unit(15, "feet"),
  5627. default: true
  5628. },
  5629. {
  5630. name: "Macro",
  5631. height: math.unit(2500, "feet")
  5632. }
  5633. ]
  5634. ))
  5635. characterMakers.push(() => makeCharacter(
  5636. { name: "Corvin" },
  5637. {
  5638. front: {
  5639. height: math.unit(5 + 8 / 12, "feet"),
  5640. weight: math.unit(130, "lbs"),
  5641. name: "Front",
  5642. image: {
  5643. source: "./media/characters/corvin/front.svg",
  5644. extra: 1803 / 1629
  5645. }
  5646. },
  5647. frontShirt: {
  5648. height: math.unit(5 + 8 / 12, "feet"),
  5649. weight: math.unit(130, "lbs"),
  5650. name: "Front (Shirt)",
  5651. image: {
  5652. source: "./media/characters/corvin/front-shirt.svg",
  5653. extra: 1803 / 1629
  5654. }
  5655. },
  5656. frontPoncho: {
  5657. height: math.unit(5 + 8 / 12, "feet"),
  5658. weight: math.unit(130, "lbs"),
  5659. name: "Front (Poncho)",
  5660. image: {
  5661. source: "./media/characters/corvin/front-poncho.svg",
  5662. extra: 1803 / 1629
  5663. }
  5664. },
  5665. side: {
  5666. height: math.unit(5 + 8 / 12, "feet"),
  5667. weight: math.unit(130, "lbs"),
  5668. name: "Side",
  5669. image: {
  5670. source: "./media/characters/corvin/side.svg",
  5671. extra: 1012 / 945
  5672. }
  5673. },
  5674. back: {
  5675. height: math.unit(5 + 8 / 12, "feet"),
  5676. weight: math.unit(130, "lbs"),
  5677. name: "Back",
  5678. image: {
  5679. source: "./media/characters/corvin/back.svg",
  5680. extra: 1803 / 1629
  5681. }
  5682. },
  5683. },
  5684. [
  5685. {
  5686. name: "Micro",
  5687. height: math.unit(3, "inches")
  5688. },
  5689. {
  5690. name: "Normal",
  5691. height: math.unit(5 + 8 / 12, "feet")
  5692. },
  5693. {
  5694. name: "Macro",
  5695. height: math.unit(300, "feet"),
  5696. default: true
  5697. },
  5698. {
  5699. name: "Megamacro",
  5700. height: math.unit(500, "miles")
  5701. }
  5702. ]
  5703. ))
  5704. characterMakers.push(() => makeCharacter(
  5705. { name: "Q" },
  5706. {
  5707. front: {
  5708. height: math.unit(6, "feet"),
  5709. weight: math.unit(135, "lbs"),
  5710. name: "Front",
  5711. image: {
  5712. source: "./media/characters/q/front.svg",
  5713. extra: 854 / 752,
  5714. bottom: 0.005
  5715. }
  5716. },
  5717. back: {
  5718. height: math.unit(6, "feet"),
  5719. weight: math.unit(130, "lbs"),
  5720. name: "Back",
  5721. image: {
  5722. source: "./media/characters/q/back.svg",
  5723. extra: 854 / 752
  5724. }
  5725. },
  5726. },
  5727. [
  5728. {
  5729. name: "Macro",
  5730. height: math.unit(90, "feet"),
  5731. default: true
  5732. },
  5733. {
  5734. name: "Extra Macro",
  5735. height: math.unit(300, "feet"),
  5736. },
  5737. {
  5738. name: "BIG WALF",
  5739. height: math.unit(750, "feet"),
  5740. },
  5741. ]
  5742. ))
  5743. characterMakers.push(() => makeCharacter(
  5744. { name: "Carley" },
  5745. {
  5746. front: {
  5747. height: math.unit(6, "feet"),
  5748. weight: math.unit(150, "lbs"),
  5749. name: "Front",
  5750. image: {
  5751. source: "./media/characters/carley/front.svg",
  5752. extra: 3927 / 3540,
  5753. bottom: 0.03
  5754. }
  5755. }
  5756. },
  5757. [
  5758. {
  5759. name: "Normal",
  5760. height: math.unit(6 + 3 / 12, "feet")
  5761. },
  5762. {
  5763. name: "Macro",
  5764. height: math.unit(185, "feet"),
  5765. default: true
  5766. },
  5767. {
  5768. name: "Megamacro",
  5769. height: math.unit(8, "miles"),
  5770. },
  5771. ]
  5772. ))
  5773. characterMakers.push(() => makeCharacter(
  5774. { name: "Citrine" },
  5775. {
  5776. front: {
  5777. height: math.unit(3, "feet"),
  5778. weight: math.unit(28, "lbs"),
  5779. name: "Front",
  5780. image: {
  5781. source: "./media/characters/citrine/front.svg"
  5782. }
  5783. }
  5784. },
  5785. [
  5786. {
  5787. name: "Normal",
  5788. height: math.unit(3, "feet"),
  5789. default: true
  5790. }
  5791. ]
  5792. ))
  5793. characterMakers.push(() => makeCharacter(
  5794. { name: "Aura Starwind" },
  5795. {
  5796. front: {
  5797. height: math.unit(14, "feet"),
  5798. weight: math.unit(1450, "kg"),
  5799. name: "Front",
  5800. image: {
  5801. source: "./media/characters/aura-starwind/front.svg",
  5802. extra: 1455 / 1335
  5803. }
  5804. },
  5805. side: {
  5806. height: math.unit(14, "feet"),
  5807. weight: math.unit(1450, "kg"),
  5808. name: "Side",
  5809. image: {
  5810. source: "./media/characters/aura-starwind/side.svg",
  5811. extra: 1654 / 1497
  5812. }
  5813. },
  5814. taur: {
  5815. height: math.unit(18, "feet"),
  5816. weight: math.unit(5500, "kg"),
  5817. name: "Taur",
  5818. image: {
  5819. source: "./media/characters/aura-starwind/taur.svg",
  5820. extra: 1760 / 1650
  5821. }
  5822. },
  5823. feral: {
  5824. height: math.unit(46, "feet"),
  5825. weight: math.unit(25000, "kg"),
  5826. name: "Feral",
  5827. image: {
  5828. source: "./media/characters/aura-starwind/feral.svg"
  5829. }
  5830. },
  5831. },
  5832. [
  5833. {
  5834. name: "Normal",
  5835. height: math.unit(14, "feet"),
  5836. default: true
  5837. },
  5838. {
  5839. name: "Macro",
  5840. height: math.unit(50, "meters")
  5841. },
  5842. {
  5843. name: "Megamacro",
  5844. height: math.unit(5000, "meters")
  5845. },
  5846. {
  5847. name: "Gigamacro",
  5848. height: math.unit(100000, "kilometers")
  5849. },
  5850. ]
  5851. ))
  5852. characterMakers.push(() => makeCharacter(
  5853. { name: "Rivet" },
  5854. {
  5855. front: {
  5856. height: math.unit(2 + 7 / 12, "feet"),
  5857. weight: math.unit(32, "lbs"),
  5858. name: "Front",
  5859. image: {
  5860. source: "./media/characters/rivet/front.svg",
  5861. extra: 1716 / 1658,
  5862. bottom: 0.03
  5863. }
  5864. },
  5865. foot: {
  5866. height: math.unit(0.551, "feet"),
  5867. name: "Rivet's Foot",
  5868. image: {
  5869. source: "./media/characters/rivet/foot.svg"
  5870. },
  5871. rename: true
  5872. }
  5873. },
  5874. [
  5875. {
  5876. name: "Micro",
  5877. height: math.unit(1.5, "inches"),
  5878. },
  5879. {
  5880. name: "Normal",
  5881. height: math.unit(2 + 7 / 12, "feet"),
  5882. default: true
  5883. },
  5884. {
  5885. name: "Macro",
  5886. height: math.unit(85, "feet")
  5887. },
  5888. {
  5889. name: "Megamacro",
  5890. height: math.unit(2.2, "km")
  5891. }
  5892. ]
  5893. ))
  5894. characterMakers.push(() => makeCharacter(
  5895. { name: "Coffee" },
  5896. {
  5897. front: {
  5898. height: math.unit(5 + 9 / 12, "feet"),
  5899. weight: math.unit(150, "lbs"),
  5900. name: "Front",
  5901. image: {
  5902. source: "./media/characters/coffee/front.svg",
  5903. extra: 3666 / 3032,
  5904. bottom: 0.04
  5905. }
  5906. },
  5907. foot: {
  5908. height: math.unit(1.29, "feet"),
  5909. name: "Foot",
  5910. image: {
  5911. source: "./media/characters/coffee/foot.svg"
  5912. }
  5913. },
  5914. },
  5915. [
  5916. {
  5917. name: "Micro",
  5918. height: math.unit(2, "inches"),
  5919. },
  5920. {
  5921. name: "Normal",
  5922. height: math.unit(5 + 9 / 12, "feet"),
  5923. default: true
  5924. },
  5925. {
  5926. name: "Macro",
  5927. height: math.unit(800, "feet")
  5928. },
  5929. {
  5930. name: "Megamacro",
  5931. height: math.unit(25, "miles")
  5932. }
  5933. ]
  5934. ))
  5935. characterMakers.push(() => makeCharacter(
  5936. { name: "Chari-Gal" },
  5937. {
  5938. front: {
  5939. height: math.unit(6, "feet"),
  5940. weight: math.unit(200, "lbs"),
  5941. name: "Front",
  5942. image: {
  5943. source: "./media/characters/chari-gal/front.svg",
  5944. extra: 1568 / 1385,
  5945. bottom: 0.047
  5946. }
  5947. },
  5948. gigantamax: {
  5949. height: math.unit(6 * 16, "feet"),
  5950. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  5951. name: "Gigantamax",
  5952. image: {
  5953. source: "./media/characters/chari-gal/gigantamax.svg",
  5954. extra: 1124 / 888,
  5955. bottom: 0.03
  5956. }
  5957. },
  5958. },
  5959. [
  5960. {
  5961. name: "Normal",
  5962. height: math.unit(5 + 7 / 12, "feet")
  5963. },
  5964. {
  5965. name: "Macro",
  5966. height: math.unit(200, "feet"),
  5967. default: true
  5968. }
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Nova" },
  5973. {
  5974. front: {
  5975. height: math.unit(6, "feet"),
  5976. weight: math.unit(150, "lbs"),
  5977. name: "Front",
  5978. image: {
  5979. source: "./media/characters/nova/front.svg",
  5980. extra: 5000 / 4722,
  5981. bottom: 0.02
  5982. }
  5983. }
  5984. },
  5985. [
  5986. {
  5987. name: "Micro-",
  5988. height: math.unit(0.8, "inches")
  5989. },
  5990. {
  5991. name: "Micro",
  5992. height: math.unit(2, "inches"),
  5993. default: true
  5994. },
  5995. ]
  5996. ))
  5997. characterMakers.push(() => makeCharacter(
  5998. { name: "Argent" },
  5999. {
  6000. front: {
  6001. height: math.unit(3 + 1 / 12, "feet"),
  6002. weight: math.unit(21.7, "lbs"),
  6003. name: "Front",
  6004. image: {
  6005. source: "./media/characters/argent/front.svg",
  6006. extra: 1565 / 1416,
  6007. bottom: 0.01
  6008. }
  6009. }
  6010. },
  6011. [
  6012. {
  6013. name: "Micro",
  6014. height: math.unit(2, "inches")
  6015. },
  6016. {
  6017. name: "Normal",
  6018. height: math.unit(3 + 1 / 12, "feet"),
  6019. default: true
  6020. },
  6021. {
  6022. name: "Macro",
  6023. height: math.unit(120, "feet")
  6024. },
  6025. ]
  6026. ))
  6027. characterMakers.push(() => makeCharacter(
  6028. { name: "Mira al-Cul" },
  6029. {
  6030. lamp: {
  6031. height: math.unit(7 * 1559 / 989, "feet"),
  6032. name: "Magic Lamp",
  6033. image: {
  6034. source: "./media/characters/mira-al-cul/lamp.svg",
  6035. extra: 1617 / 1559
  6036. }
  6037. },
  6038. front: {
  6039. height: math.unit(7, "feet"),
  6040. name: "Front",
  6041. image: {
  6042. source: "./media/characters/mira-al-cul/front.svg",
  6043. extra: 1044 / 990
  6044. }
  6045. },
  6046. },
  6047. [
  6048. {
  6049. name: "Heavily Restricted",
  6050. height: math.unit(7 * 1559 / 989, "feet")
  6051. },
  6052. {
  6053. name: "Freshly Freed",
  6054. height: math.unit(50 * 1559 / 989, "feet")
  6055. },
  6056. {
  6057. name: "World Encompassing",
  6058. height: math.unit(10000 * 1559 / 989, "miles")
  6059. },
  6060. {
  6061. name: "Galactic",
  6062. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6063. },
  6064. {
  6065. name: "Palmed Universe",
  6066. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6067. default: true
  6068. },
  6069. {
  6070. name: "Multiversal Matriarch",
  6071. height: math.unit(8.87e10, "yottameters")
  6072. },
  6073. {
  6074. name: "Void Mother",
  6075. height: math.unit(3.14e110, "yottaparsecs")
  6076. },
  6077. ]
  6078. ))
  6079. characterMakers.push(() => makeCharacter(
  6080. { name: "Kuro-shi Uchū" },
  6081. {
  6082. front: {
  6083. height: math.unit(17 + 1 / 12, "feet"),
  6084. weight: math.unit(476.2 * 5, "lbs"),
  6085. name: "Front",
  6086. image: {
  6087. source: "./media/characters/kuro-shi-uchū/front.svg",
  6088. extra: 2329 / 1835,
  6089. bottom: 0.02
  6090. }
  6091. },
  6092. },
  6093. [
  6094. {
  6095. name: "Micro",
  6096. height: math.unit(2, "inches")
  6097. },
  6098. {
  6099. name: "Normal",
  6100. height: math.unit(12, "meters")
  6101. },
  6102. {
  6103. name: "Planetary",
  6104. height: math.unit(0.00929, "AU"),
  6105. default: true
  6106. },
  6107. {
  6108. name: "Universal",
  6109. height: math.unit(20, "gigaparsecs")
  6110. },
  6111. ]
  6112. ))
  6113. characterMakers.push(() => makeCharacter(
  6114. { name: "Katherine" },
  6115. {
  6116. front: {
  6117. height: math.unit(5 + 2 / 12, "feet"),
  6118. weight: math.unit(120, "lbs"),
  6119. name: "Front",
  6120. image: {
  6121. source: "./media/characters/katherine/front.svg",
  6122. extra: 2075 / 1969
  6123. }
  6124. },
  6125. dress: {
  6126. height: math.unit(5 + 2 / 12, "feet"),
  6127. weight: math.unit(120, "lbs"),
  6128. name: "Dress",
  6129. image: {
  6130. source: "./media/characters/katherine/dress.svg",
  6131. extra: 2258 / 2064
  6132. }
  6133. },
  6134. },
  6135. [
  6136. {
  6137. name: "Micro",
  6138. height: math.unit(1, "inches"),
  6139. default: true
  6140. },
  6141. {
  6142. name: "Normal",
  6143. height: math.unit(5 + 2 / 12, "feet")
  6144. },
  6145. {
  6146. name: "Macro",
  6147. height: math.unit(100, "meters")
  6148. },
  6149. {
  6150. name: "Megamacro",
  6151. height: math.unit(80, "miles")
  6152. },
  6153. ]
  6154. ))
  6155. characterMakers.push(() => makeCharacter(
  6156. { name: "Yevis" },
  6157. {
  6158. front: {
  6159. height: math.unit(7 + 8 / 12, "feet"),
  6160. weight: math.unit(250, "lbs"),
  6161. name: "Front",
  6162. image: {
  6163. source: "./media/characters/yevis/front.svg",
  6164. extra: 1938 / 1755
  6165. }
  6166. }
  6167. },
  6168. [
  6169. {
  6170. name: "Mortal",
  6171. height: math.unit(7 + 8 / 12, "feet")
  6172. },
  6173. {
  6174. name: "Battle",
  6175. height: math.unit(25 + 11 / 12, "feet")
  6176. },
  6177. {
  6178. name: "Wrath",
  6179. height: math.unit(1654 + 11 / 12, "feet")
  6180. },
  6181. {
  6182. name: "Planet Destroyer",
  6183. height: math.unit(12000, "miles")
  6184. },
  6185. {
  6186. name: "Galaxy Conqueror",
  6187. height: math.unit(1.45, "zettameters"),
  6188. default: true
  6189. },
  6190. {
  6191. name: "Universal War",
  6192. height: math.unit(184, "gigaparsecs")
  6193. },
  6194. {
  6195. name: "Eternity War",
  6196. height: math.unit(1.98e55, "yottaparsecs")
  6197. },
  6198. ]
  6199. ))
  6200. characterMakers.push(() => makeCharacter(
  6201. { name: "Xavier" },
  6202. {
  6203. front: {
  6204. height: math.unit(5 + 8 / 12, "feet"),
  6205. weight: math.unit(63, "kg"),
  6206. name: "Front",
  6207. image: {
  6208. source: "./media/characters/xavier/front.svg",
  6209. extra: 944 / 883
  6210. }
  6211. },
  6212. frontStretch: {
  6213. height: math.unit(5 + 8 / 12, "feet"),
  6214. weight: math.unit(63, "kg"),
  6215. name: "Stretching",
  6216. image: {
  6217. source: "./media/characters/xavier/front-stretch.svg",
  6218. extra: 962 / 820
  6219. }
  6220. },
  6221. },
  6222. [
  6223. {
  6224. name: "Normal",
  6225. height: math.unit(5 + 8 / 12, "feet")
  6226. },
  6227. {
  6228. name: "Macro",
  6229. height: math.unit(100, "meters"),
  6230. default: true
  6231. },
  6232. {
  6233. name: "McLargeHuge",
  6234. height: math.unit(10, "miles")
  6235. },
  6236. ]
  6237. ))
  6238. characterMakers.push(() => makeCharacter(
  6239. { name: "Joshii" },
  6240. {
  6241. front: {
  6242. height: math.unit(5 + 5 / 12, "feet"),
  6243. weight: math.unit(150, "lb"),
  6244. name: "Front",
  6245. image: {
  6246. source: "./media/characters/joshii/front.svg"
  6247. }
  6248. },
  6249. foot: {
  6250. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6251. name: "Foot",
  6252. image: {
  6253. source: "./media/characters/joshii/foot.svg"
  6254. }
  6255. },
  6256. },
  6257. [
  6258. {
  6259. name: "Micro",
  6260. height: math.unit(2, "inches")
  6261. },
  6262. {
  6263. name: "Normal",
  6264. height: math.unit(5 + 5 / 12, "feet"),
  6265. default: true
  6266. },
  6267. {
  6268. name: "Macro",
  6269. height: math.unit(785, "feet")
  6270. },
  6271. {
  6272. name: "Megamacro",
  6273. height: math.unit(24.5, "miles")
  6274. },
  6275. ]
  6276. ))
  6277. characterMakers.push(() => makeCharacter(
  6278. { name: "Goddess Elizabeth" },
  6279. {
  6280. front: {
  6281. height: math.unit(6, "feet"),
  6282. weight: math.unit(150, "lb"),
  6283. name: "Front",
  6284. image: {
  6285. source: "./media/characters/goddess-elizabeth/front.svg",
  6286. extra: 1800 / 1525,
  6287. bottom: 0.005
  6288. }
  6289. },
  6290. foot: {
  6291. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6292. name: "Foot",
  6293. image: {
  6294. source: "./media/characters/goddess-elizabeth/foot.svg"
  6295. }
  6296. },
  6297. mouth: {
  6298. height: math.unit(6, "feet"),
  6299. name: "Mouth",
  6300. image: {
  6301. source: "./media/characters/goddess-elizabeth/mouth.svg"
  6302. }
  6303. },
  6304. },
  6305. [
  6306. {
  6307. name: "Micro",
  6308. height: math.unit(12, "feet")
  6309. },
  6310. {
  6311. name: "Normal",
  6312. height: math.unit(80, "miles"),
  6313. default: true
  6314. },
  6315. {
  6316. name: "Macro",
  6317. height: math.unit(15000, "parsecs")
  6318. },
  6319. ]
  6320. ))
  6321. characterMakers.push(() => makeCharacter(
  6322. { name: "Kara" },
  6323. {
  6324. front: {
  6325. height: math.unit(5 + 9 / 12, "feet"),
  6326. weight: math.unit(144, "lb"),
  6327. name: "Front",
  6328. image: {
  6329. source: "./media/characters/kara/front.svg"
  6330. }
  6331. },
  6332. feet: {
  6333. height: math.unit(6 / 6.765, "feet"),
  6334. name: "Kara's Feet",
  6335. rename: true,
  6336. image: {
  6337. source: "./media/characters/kara/feet.svg"
  6338. }
  6339. },
  6340. },
  6341. [
  6342. {
  6343. name: "Normal",
  6344. height: math.unit(5 + 9 / 12, "feet")
  6345. },
  6346. {
  6347. name: "Macro",
  6348. height: math.unit(174, "feet"),
  6349. default: true
  6350. },
  6351. ]
  6352. ))
  6353. characterMakers.push(() => makeCharacter(
  6354. { name: "Tyrone" },
  6355. {
  6356. front: {
  6357. height: math.unit(18, "feet"),
  6358. weight: math.unit(4050, "lb"),
  6359. name: "Front",
  6360. image: {
  6361. source: "./media/characters/tyrone/front.svg",
  6362. extra: 2520 / 2402,
  6363. bottom: 0.025
  6364. }
  6365. },
  6366. },
  6367. [
  6368. {
  6369. name: "Normal",
  6370. height: math.unit(18, "feet"),
  6371. default: true
  6372. },
  6373. {
  6374. name: "Macro",
  6375. height: math.unit(300, "feet")
  6376. },
  6377. ]
  6378. ))
  6379. characterMakers.push(() => makeCharacter(
  6380. { name: "Danny" },
  6381. {
  6382. front: {
  6383. height: math.unit(7 + 8 / 12, "feet"),
  6384. weight: math.unit(120, "lb"),
  6385. name: "Front",
  6386. image: {
  6387. source: "./media/characters/danny/front.svg",
  6388. extra: 1490 / 1350
  6389. }
  6390. },
  6391. back: {
  6392. height: math.unit(7 + 8 / 12, "feet"),
  6393. weight: math.unit(120, "lb"),
  6394. name: "Back",
  6395. image: {
  6396. source: "./media/characters/danny/back.svg",
  6397. extra: 1490 / 1350
  6398. }
  6399. },
  6400. },
  6401. [
  6402. {
  6403. name: "Normal",
  6404. height: math.unit(7 + 8 / 12, "feet"),
  6405. default: true
  6406. },
  6407. ]
  6408. ))
  6409. characterMakers.push(() => makeCharacter(
  6410. { name: "Mallow" },
  6411. {
  6412. front: {
  6413. height: math.unit(3.5, "inches"),
  6414. weight: math.unit(19, "grams"),
  6415. name: "Front",
  6416. image: {
  6417. source: "./media/characters/mallow/front.svg",
  6418. extra: 471 / 431
  6419. }
  6420. },
  6421. back: {
  6422. height: math.unit(3.5, "inches"),
  6423. weight: math.unit(19, "grams"),
  6424. name: "Back",
  6425. image: {
  6426. source: "./media/characters/mallow/back.svg",
  6427. extra: 471 / 431
  6428. }
  6429. },
  6430. },
  6431. [
  6432. {
  6433. name: "Normal",
  6434. height: math.unit(3.5, "inches"),
  6435. default: true
  6436. },
  6437. ]
  6438. ))
  6439. characterMakers.push(() => makeCharacter(
  6440. { name: "Starry Aqua" },
  6441. {
  6442. front: {
  6443. height: math.unit(9, "feet"),
  6444. weight: math.unit(230, "kg"),
  6445. name: "Front",
  6446. image: {
  6447. source: "./media/characters/starry-aqua/front.svg"
  6448. }
  6449. },
  6450. back: {
  6451. height: math.unit(9, "feet"),
  6452. weight: math.unit(230, "kg"),
  6453. name: "Back",
  6454. image: {
  6455. source: "./media/characters/starry-aqua/back.svg"
  6456. }
  6457. },
  6458. hand: {
  6459. height: math.unit(9 * 0.1168, "feet"),
  6460. name: "Hand",
  6461. image: {
  6462. source: "./media/characters/starry-aqua/hand.svg"
  6463. }
  6464. },
  6465. foot: {
  6466. height: math.unit(9 * 0.18, "feet"),
  6467. name: "Foot",
  6468. image: {
  6469. source: "./media/characters/starry-aqua/foot.svg"
  6470. }
  6471. }
  6472. },
  6473. [
  6474. {
  6475. name: "Micro",
  6476. height: math.unit(3, "inches")
  6477. },
  6478. {
  6479. name: "Normal",
  6480. height: math.unit(9, "feet")
  6481. },
  6482. {
  6483. name: "Macro",
  6484. height: math.unit(300, "feet"),
  6485. default: true
  6486. },
  6487. {
  6488. name: "Megamacro",
  6489. height: math.unit(3200, "feet")
  6490. }
  6491. ]
  6492. ))
  6493. characterMakers.push(() => makeCharacter(
  6494. { name: "Luka" },
  6495. {
  6496. front: {
  6497. height: math.unit(6, "feet"),
  6498. weight: math.unit(230, "lb"),
  6499. name: "Front",
  6500. image: {
  6501. source: "./media/characters/luka/front.svg",
  6502. extra: 1,
  6503. bottom: 0.025
  6504. }
  6505. },
  6506. },
  6507. [
  6508. {
  6509. name: "Normal",
  6510. height: math.unit(12 + 8 / 12, "feet"),
  6511. default: true
  6512. },
  6513. {
  6514. name: "Minimacro",
  6515. height: math.unit(20, "feet")
  6516. },
  6517. {
  6518. name: "Macro",
  6519. height: math.unit(250, "feet")
  6520. },
  6521. {
  6522. name: "Megamacro",
  6523. height: math.unit(5, "miles")
  6524. },
  6525. {
  6526. name: "Gigamacro",
  6527. height: math.unit(8000, "miles")
  6528. },
  6529. ]
  6530. ))
  6531. characterMakers.push(() => makeCharacter(
  6532. { name: "Natalie Nightring" },
  6533. {
  6534. front: {
  6535. height: math.unit(6, "feet"),
  6536. weight: math.unit(150, "lb"),
  6537. name: "Front",
  6538. image: {
  6539. source: "./media/characters/natalie-nightring/front.svg",
  6540. extra: 1,
  6541. bottom: 0.06
  6542. }
  6543. },
  6544. },
  6545. [
  6546. {
  6547. name: "Uh Oh",
  6548. height: math.unit(0.1, "mm")
  6549. },
  6550. {
  6551. name: "Small",
  6552. height: math.unit(3, "inches")
  6553. },
  6554. {
  6555. name: "Human Scale",
  6556. height: math.unit(6, "feet")
  6557. },
  6558. {
  6559. name: "Librarian",
  6560. height: math.unit(50, "feet"),
  6561. default: true
  6562. },
  6563. {
  6564. name: "Immense",
  6565. height: math.unit(200, "miles")
  6566. },
  6567. ]
  6568. ))
  6569. characterMakers.push(() => makeCharacter(
  6570. { name: "Danni Rosie" },
  6571. {
  6572. front: {
  6573. height: math.unit(6, "feet"),
  6574. weight: math.unit(180, "lbs"),
  6575. name: "Front",
  6576. image: {
  6577. source: "./media/characters/danni-rosie/front.svg",
  6578. extra: 1260 / 1128,
  6579. bottom: 0.022
  6580. }
  6581. },
  6582. },
  6583. [
  6584. {
  6585. name: "Micro",
  6586. height: math.unit(2, "inches"),
  6587. default: true
  6588. },
  6589. ]
  6590. ))
  6591. characterMakers.push(() => makeCharacter(
  6592. { name: "Samantha Kruse" },
  6593. {
  6594. front: {
  6595. height: math.unit(5 + 9 / 12, "feet"),
  6596. weight: math.unit(220, "lb"),
  6597. name: "Front",
  6598. image: {
  6599. source: "./media/characters/samantha-kruse/front.svg",
  6600. extra: (985 / 935),
  6601. bottom: 0.03
  6602. }
  6603. },
  6604. frontUndressed: {
  6605. height: math.unit(5 + 9 / 12, "feet"),
  6606. weight: math.unit(220, "lb"),
  6607. name: "Front (Undressed)",
  6608. image: {
  6609. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6610. extra: (973 / 923),
  6611. bottom: 0.025
  6612. }
  6613. },
  6614. fat: {
  6615. height: math.unit(5 + 9 / 12, "feet"),
  6616. weight: math.unit(900, "lb"),
  6617. name: "Front (Fat)",
  6618. image: {
  6619. source: "./media/characters/samantha-kruse/fat.svg",
  6620. extra: 2688 / 2561
  6621. }
  6622. },
  6623. },
  6624. [
  6625. {
  6626. name: "Normal",
  6627. height: math.unit(5 + 9 / 12, "feet"),
  6628. default: true
  6629. }
  6630. ]
  6631. ))
  6632. characterMakers.push(() => makeCharacter(
  6633. { name: "Amelia Rosie" },
  6634. {
  6635. back: {
  6636. height: math.unit(5 + 4 / 12, "feet"),
  6637. weight: math.unit(4963, "lb"),
  6638. name: "Back",
  6639. image: {
  6640. source: "./media/characters/amelia-rosie/back.svg",
  6641. extra: 1113 / 963,
  6642. bottom: 0.01
  6643. }
  6644. },
  6645. },
  6646. [
  6647. {
  6648. name: "Level 0",
  6649. height: math.unit(5 + 4 / 12, "feet")
  6650. },
  6651. {
  6652. name: "Level 1",
  6653. height: math.unit(164597, "feet"),
  6654. default: true
  6655. },
  6656. {
  6657. name: "Level 2",
  6658. height: math.unit(956243, "miles")
  6659. },
  6660. {
  6661. name: "Level 3",
  6662. height: math.unit(29421709423, "miles")
  6663. },
  6664. {
  6665. name: "Level 4",
  6666. height: math.unit(154, "lightyears")
  6667. },
  6668. {
  6669. name: "Level 5",
  6670. height: math.unit(4738272, "lightyears")
  6671. },
  6672. {
  6673. name: "Level 6",
  6674. height: math.unit(145787152896, "lightyears")
  6675. },
  6676. ]
  6677. ))
  6678. characterMakers.push(() => makeCharacter(
  6679. { name: "Rook Kitara" },
  6680. {
  6681. front: {
  6682. height: math.unit(5 + 11 / 12, "feet"),
  6683. weight: math.unit(65, "kg"),
  6684. name: "Front",
  6685. image: {
  6686. source: "./media/characters/rook-kitara/front.svg",
  6687. extra: 1347 / 1274,
  6688. bottom: 0.005
  6689. }
  6690. },
  6691. },
  6692. [
  6693. {
  6694. name: "Totally Unfair",
  6695. height: math.unit(1.8, "mm")
  6696. },
  6697. {
  6698. name: "Lap Rookie",
  6699. height: math.unit(1.4, "feet")
  6700. },
  6701. {
  6702. name: "Normal",
  6703. height: math.unit(5 + 11 / 12, "feet"),
  6704. default: true
  6705. },
  6706. {
  6707. name: "How Did This Happen",
  6708. height: math.unit(80, "miles")
  6709. }
  6710. ]
  6711. ))
  6712. characterMakers.push(() => makeCharacter(
  6713. { name: "Pisces" },
  6714. {
  6715. front: {
  6716. height: math.unit(7, "feet"),
  6717. weight: math.unit(300, "lb"),
  6718. name: "Front",
  6719. image: {
  6720. source: "./media/characters/pisces/front.svg",
  6721. extra: 2255 / 2115,
  6722. bottom: 0.03
  6723. }
  6724. },
  6725. back: {
  6726. height: math.unit(7, "feet"),
  6727. weight: math.unit(300, "lb"),
  6728. name: "Back",
  6729. image: {
  6730. source: "./media/characters/pisces/back.svg",
  6731. extra: 2146 / 2055,
  6732. bottom: 0.04
  6733. }
  6734. },
  6735. },
  6736. [
  6737. {
  6738. name: "Normal",
  6739. height: math.unit(7, "feet"),
  6740. default: true
  6741. },
  6742. {
  6743. name: "Swimming Pool",
  6744. height: math.unit(12.2, "meters")
  6745. },
  6746. {
  6747. name: "Olympic Swimming Pool",
  6748. height: math.unit(56.3, "meters")
  6749. },
  6750. {
  6751. name: "Lake Superior",
  6752. height: math.unit(93900, "meters")
  6753. },
  6754. {
  6755. name: "Mediterranean Sea",
  6756. height: math.unit(644457, "meters")
  6757. },
  6758. {
  6759. name: "World's Oceans",
  6760. height: math.unit(4567491, "meters")
  6761. },
  6762. ]
  6763. ))
  6764. characterMakers.push(() => makeCharacter(
  6765. { name: "Zelas" },
  6766. {
  6767. front: {
  6768. height: math.unit(2.3, "meters"),
  6769. weight: math.unit(120, "kg"),
  6770. name: "Front",
  6771. image: {
  6772. source: "./media/characters/zelas/front.svg"
  6773. }
  6774. },
  6775. side: {
  6776. height: math.unit(2.3, "meters"),
  6777. weight: math.unit(120, "kg"),
  6778. name: "Side",
  6779. image: {
  6780. source: "./media/characters/zelas/side.svg"
  6781. }
  6782. },
  6783. back: {
  6784. height: math.unit(2.3, "meters"),
  6785. weight: math.unit(120, "kg"),
  6786. name: "Back",
  6787. image: {
  6788. source: "./media/characters/zelas/back.svg"
  6789. }
  6790. },
  6791. foot: {
  6792. height: math.unit(1.116, "feet"),
  6793. name: "Foot",
  6794. image: {
  6795. source: "./media/characters/zelas/foot.svg"
  6796. }
  6797. },
  6798. },
  6799. [
  6800. {
  6801. name: "Normal",
  6802. height: math.unit(2.3, "meters")
  6803. },
  6804. {
  6805. name: "Macro",
  6806. height: math.unit(30, "meters"),
  6807. default: true
  6808. },
  6809. ]
  6810. ))
  6811. characterMakers.push(() => makeCharacter(
  6812. { name: "Talbot" },
  6813. {
  6814. front: {
  6815. height: math.unit(1, "inch"),
  6816. weight: math.unit(0.21, "grams"),
  6817. name: "Front",
  6818. image: {
  6819. source: "./media/characters/talbot/front.svg",
  6820. extra: 594 / 544
  6821. }
  6822. },
  6823. },
  6824. [
  6825. {
  6826. name: "Micro",
  6827. height: math.unit(1, "inch"),
  6828. default: true
  6829. },
  6830. ]
  6831. ))
  6832. characterMakers.push(() => makeCharacter(
  6833. { name: "Fliss" },
  6834. {
  6835. front: {
  6836. height: math.unit(3 + 3 / 12, "feet"),
  6837. weight: math.unit(51.8, "lb"),
  6838. name: "Front",
  6839. image: {
  6840. source: "./media/characters/fliss/front.svg",
  6841. extra: 840 / 640
  6842. }
  6843. },
  6844. },
  6845. [
  6846. {
  6847. name: "Teeny Tiny",
  6848. height: math.unit(1, "mm")
  6849. },
  6850. {
  6851. name: "Small",
  6852. height: math.unit(1, "inch"),
  6853. default: true
  6854. },
  6855. {
  6856. name: "Standard Sylveon",
  6857. height: math.unit(3 + 3 / 12, "feet")
  6858. },
  6859. {
  6860. name: "Large Nuisance",
  6861. height: math.unit(33, "feet")
  6862. },
  6863. {
  6864. name: "City Filler",
  6865. height: math.unit(3000, "feet")
  6866. },
  6867. {
  6868. name: "New Horizon",
  6869. height: math.unit(6000, "miles")
  6870. },
  6871. ]
  6872. ))
  6873. characterMakers.push(() => makeCharacter(
  6874. { name: "Fleta" },
  6875. {
  6876. front: {
  6877. height: math.unit(5, "cm"),
  6878. weight: math.unit(1.94, "g"),
  6879. name: "Front",
  6880. image: {
  6881. source: "./media/characters/fleta/front.svg",
  6882. extra: 835 / 803
  6883. }
  6884. },
  6885. back: {
  6886. height: math.unit(5, "cm"),
  6887. weight: math.unit(1.94, "g"),
  6888. name: "Back",
  6889. image: {
  6890. source: "./media/characters/fleta/back.svg",
  6891. extra: 835 / 803
  6892. }
  6893. },
  6894. },
  6895. [
  6896. {
  6897. name: "Micro",
  6898. height: math.unit(5, "cm"),
  6899. default: true
  6900. },
  6901. ]
  6902. ))
  6903. characterMakers.push(() => makeCharacter(
  6904. { name: "Dominic" },
  6905. {
  6906. front: {
  6907. height: math.unit(6, "feet"),
  6908. weight: math.unit(225, "lb"),
  6909. name: "Front",
  6910. image: {
  6911. source: "./media/characters/dominic/front.svg",
  6912. extra: 1770 / 1620,
  6913. bottom: 0.025
  6914. }
  6915. },
  6916. back: {
  6917. height: math.unit(6, "feet"),
  6918. weight: math.unit(225, "lb"),
  6919. name: "Back",
  6920. image: {
  6921. source: "./media/characters/dominic/back.svg",
  6922. extra: 1745 / 1620,
  6923. bottom: 0.065
  6924. }
  6925. },
  6926. },
  6927. [
  6928. {
  6929. name: "Nano",
  6930. height: math.unit(0.1, "mm")
  6931. },
  6932. {
  6933. name: "Micro-",
  6934. height: math.unit(1, "mm")
  6935. },
  6936. {
  6937. name: "Micro",
  6938. height: math.unit(4, "inches")
  6939. },
  6940. {
  6941. name: "Normal",
  6942. height: math.unit(6 + 4 / 12, "feet"),
  6943. default: true
  6944. },
  6945. {
  6946. name: "Macro",
  6947. height: math.unit(115, "feet")
  6948. },
  6949. {
  6950. name: "Macro+",
  6951. height: math.unit(955, "feet")
  6952. },
  6953. {
  6954. name: "Megamacro",
  6955. height: math.unit(8990, "feet")
  6956. },
  6957. {
  6958. name: "Gigmacro",
  6959. height: math.unit(9310, "miles")
  6960. },
  6961. {
  6962. name: "Teramacro",
  6963. height: math.unit(1567005010, "miles")
  6964. },
  6965. {
  6966. name: "Examacro",
  6967. height: math.unit(1425, "parsecs")
  6968. },
  6969. ]
  6970. ))
  6971. characterMakers.push(() => makeCharacter(
  6972. { name: "Major Colonel" },
  6973. {
  6974. front: {
  6975. height: math.unit(400, "feet"),
  6976. weight: math.unit(44444444, "lb"),
  6977. name: "Front",
  6978. image: {
  6979. source: "./media/characters/major-colonel/front.svg"
  6980. }
  6981. },
  6982. back: {
  6983. height: math.unit(400, "feet"),
  6984. weight: math.unit(44444444, "lb"),
  6985. name: "Back",
  6986. image: {
  6987. source: "./media/characters/major-colonel/back.svg"
  6988. }
  6989. },
  6990. },
  6991. [
  6992. {
  6993. name: "Macro",
  6994. height: math.unit(400, "feet"),
  6995. default: true
  6996. },
  6997. ]
  6998. ))
  6999. characterMakers.push(() => makeCharacter(
  7000. { name: "Axel Lycan" },
  7001. {
  7002. front: {
  7003. height: math.unit(6, "feet"),
  7004. weight: math.unit(120, "lb"),
  7005. name: "Front",
  7006. image: {
  7007. source: "./media/characters/axel-lycan/front.svg",
  7008. extra: 1,
  7009. bottom: 0.08
  7010. }
  7011. },
  7012. },
  7013. [
  7014. {
  7015. name: "Macro",
  7016. height: math.unit(1, "km"),
  7017. default: true
  7018. },
  7019. ]
  7020. ))
  7021. characterMakers.push(() => makeCharacter(
  7022. { name: "Vanrel (Hyena)" },
  7023. {
  7024. front: {
  7025. height: math.unit(5 + 9 / 12, "feet"),
  7026. weight: math.unit(175, "lb"),
  7027. name: "Front",
  7028. image: {
  7029. source: "./media/characters/vanrel-hyena/front.svg",
  7030. extra: 1086 / 1010,
  7031. bottom: 0.04
  7032. }
  7033. },
  7034. },
  7035. [
  7036. {
  7037. name: "Normal",
  7038. height: math.unit(5 + 9 / 12, "feet"),
  7039. default: true
  7040. },
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Abbott Absol" },
  7045. {
  7046. front: {
  7047. height: math.unit(6, "feet"),
  7048. weight: math.unit(103, "lb"),
  7049. name: "Front",
  7050. image: {
  7051. source: "./media/characters/abbott-absol/front.svg",
  7052. extra: 2010 / 1842
  7053. }
  7054. },
  7055. },
  7056. [
  7057. {
  7058. name: "Megamicro",
  7059. height: math.unit(0.1, "mm")
  7060. },
  7061. {
  7062. name: "Micro",
  7063. height: math.unit(1, "inch")
  7064. },
  7065. {
  7066. name: "Normal",
  7067. height: math.unit(6, "feet"),
  7068. default: true
  7069. },
  7070. ]
  7071. ))
  7072. characterMakers.push(() => makeCharacter(
  7073. { name: "Hector" },
  7074. {
  7075. front: {
  7076. height: math.unit(6, "feet"),
  7077. weight: math.unit(264, "lb"),
  7078. name: "Front",
  7079. image: {
  7080. source: "./media/characters/hector/front.svg",
  7081. extra: 2280 / 2130,
  7082. bottom: 0.07
  7083. }
  7084. },
  7085. },
  7086. [
  7087. {
  7088. name: "Normal",
  7089. height: math.unit(12.25, "foot"),
  7090. default: true
  7091. },
  7092. {
  7093. name: "Macro",
  7094. height: math.unit(160, "feet")
  7095. },
  7096. ]
  7097. ))
  7098. characterMakers.push(() => makeCharacter(
  7099. { name: "Sal" },
  7100. {
  7101. front: {
  7102. height: math.unit(6, "feet"),
  7103. weight: math.unit(150, "lb"),
  7104. name: "Front",
  7105. image: {
  7106. source: "./media/characters/sal/front.svg",
  7107. extra: 1846 / 1699,
  7108. bottom: 0.04
  7109. }
  7110. },
  7111. },
  7112. [
  7113. {
  7114. name: "Megamacro",
  7115. height: math.unit(10, "miles"),
  7116. default: true
  7117. },
  7118. ]
  7119. ))
  7120. characterMakers.push(() => makeCharacter(
  7121. { name: "Ranger" },
  7122. {
  7123. front: {
  7124. height: math.unit(3, "meters"),
  7125. weight: math.unit(450, "kg"),
  7126. name: "front",
  7127. image: {
  7128. source: "./media/characters/ranger/front.svg",
  7129. extra: 2401 / 2243,
  7130. bottom: 0.05
  7131. }
  7132. },
  7133. },
  7134. [
  7135. {
  7136. name: "Normal",
  7137. height: math.unit(3, "meters"),
  7138. default: true
  7139. },
  7140. ]
  7141. ))
  7142. characterMakers.push(() => makeCharacter(
  7143. { name: "Theresa" },
  7144. {
  7145. front: {
  7146. height: math.unit(14, "feet"),
  7147. weight: math.unit(800, "kg"),
  7148. name: "Front",
  7149. image: {
  7150. source: "./media/characters/theresa/front.svg",
  7151. extra: 3575 / 3346,
  7152. bottom: 0.03
  7153. }
  7154. },
  7155. },
  7156. [
  7157. {
  7158. name: "Normal",
  7159. height: math.unit(14, "feet"),
  7160. default: true
  7161. },
  7162. ]
  7163. ))
  7164. characterMakers.push(() => makeCharacter(
  7165. { name: "Ine" },
  7166. {
  7167. front: {
  7168. height: math.unit(6, "feet"),
  7169. weight: math.unit(3, "kg"),
  7170. name: "Front",
  7171. image: {
  7172. source: "./media/characters/ine/front.svg",
  7173. extra: 678 / 539,
  7174. bottom: 0.023
  7175. }
  7176. },
  7177. },
  7178. [
  7179. {
  7180. name: "Normal",
  7181. height: math.unit(2.265, "feet"),
  7182. default: true
  7183. },
  7184. ]
  7185. ))
  7186. characterMakers.push(() => makeCharacter(
  7187. { name: "Vial" },
  7188. {
  7189. front: {
  7190. height: math.unit(5, "feet"),
  7191. weight: math.unit(30, "kg"),
  7192. name: "Front",
  7193. image: {
  7194. source: "./media/characters/vial/front.svg",
  7195. extra: 1365 / 1277,
  7196. bottom: 0.04
  7197. }
  7198. },
  7199. },
  7200. [
  7201. {
  7202. name: "Normal",
  7203. height: math.unit(5, "feet"),
  7204. default: true
  7205. },
  7206. ]
  7207. ))
  7208. characterMakers.push(() => makeCharacter(
  7209. { name: "Rovoska" },
  7210. {
  7211. side: {
  7212. height: math.unit(3.4, "meters"),
  7213. weight: math.unit(1000, "lb"),
  7214. name: "Side",
  7215. image: {
  7216. source: "./media/characters/rovoska/side.svg",
  7217. extra: 4403 / 1515
  7218. }
  7219. },
  7220. },
  7221. [
  7222. {
  7223. name: "Normal",
  7224. height: math.unit(3.4, "meters"),
  7225. default: true
  7226. },
  7227. ]
  7228. ))
  7229. characterMakers.push(() => makeCharacter(
  7230. { name: "Gunner Rotthbauer" },
  7231. {
  7232. front: {
  7233. height: math.unit(8, "feet"),
  7234. weight: math.unit(315, "lb"),
  7235. name: "Front",
  7236. image: {
  7237. source: "./media/characters/gunner-rotthbauer/front.svg"
  7238. }
  7239. },
  7240. back: {
  7241. height: math.unit(8, "feet"),
  7242. weight: math.unit(315, "lb"),
  7243. name: "Back",
  7244. image: {
  7245. source: "./media/characters/gunner-rotthbauer/back.svg"
  7246. }
  7247. },
  7248. },
  7249. [
  7250. {
  7251. name: "Micro",
  7252. height: math.unit(3.5, "inches")
  7253. },
  7254. {
  7255. name: "Normal",
  7256. height: math.unit(8, "feet"),
  7257. default: true
  7258. },
  7259. {
  7260. name: "Macro",
  7261. height: math.unit(250, "feet")
  7262. },
  7263. {
  7264. name: "Megamacro",
  7265. height: math.unit(1, "AU")
  7266. },
  7267. ]
  7268. ))
  7269. characterMakers.push(() => makeCharacter(
  7270. { name: "Allatia" },
  7271. {
  7272. front: {
  7273. height: math.unit(5 + 5 / 12, "feet"),
  7274. weight: math.unit(140, "lb"),
  7275. name: "Front",
  7276. image: {
  7277. source: "./media/characters/allatia/front.svg",
  7278. extra: 1227 / 1180,
  7279. bottom: 0.027
  7280. }
  7281. },
  7282. },
  7283. [
  7284. {
  7285. name: "Normal",
  7286. height: math.unit(5 + 5 / 12, "feet")
  7287. },
  7288. {
  7289. name: "Macro",
  7290. height: math.unit(250, "feet"),
  7291. default: true
  7292. },
  7293. {
  7294. name: "Megamacro",
  7295. height: math.unit(8, "miles")
  7296. }
  7297. ]
  7298. ))
  7299. characterMakers.push(() => makeCharacter(
  7300. { name: "Tene" },
  7301. {
  7302. front: {
  7303. height: math.unit(6, "feet"),
  7304. weight: math.unit(120, "lb"),
  7305. name: "Front",
  7306. image: {
  7307. source: "./media/characters/tene/front.svg",
  7308. extra: 1728 / 1578,
  7309. bottom: 0.022
  7310. }
  7311. },
  7312. stomping: {
  7313. height: math.unit(2.025, "meters"),
  7314. weight: math.unit(120, "lb"),
  7315. name: "Stomping",
  7316. image: {
  7317. source: "./media/characters/tene/stomping.svg",
  7318. extra: 938 / 873,
  7319. bottom: 0.01
  7320. }
  7321. },
  7322. sitting: {
  7323. height: math.unit(1, "meter"),
  7324. weight: math.unit(120, "lb"),
  7325. name: "Sitting",
  7326. image: {
  7327. source: "./media/characters/tene/sitting.svg",
  7328. extra: 437 / 415,
  7329. bottom: 0.1
  7330. }
  7331. },
  7332. feral: {
  7333. height: math.unit(3.9, "feet"),
  7334. weight: math.unit(250, "lb"),
  7335. name: "Feral",
  7336. image: {
  7337. source: "./media/characters/tene/feral.svg",
  7338. extra: 717 / 458,
  7339. bottom: 0.179
  7340. }
  7341. },
  7342. },
  7343. [
  7344. {
  7345. name: "Normal",
  7346. height: math.unit(6, "feet")
  7347. },
  7348. {
  7349. name: "Macro",
  7350. height: math.unit(300, "feet"),
  7351. default: true
  7352. },
  7353. {
  7354. name: "Megamacro",
  7355. height: math.unit(5, "miles")
  7356. },
  7357. ]
  7358. ))
  7359. characterMakers.push(() => makeCharacter(
  7360. { name: "Evander" },
  7361. {
  7362. side: {
  7363. height: math.unit(6, "feet"),
  7364. name: "Side",
  7365. image: {
  7366. source: "./media/characters/evander/side.svg",
  7367. extra: 877 / 477
  7368. }
  7369. },
  7370. },
  7371. [
  7372. {
  7373. name: "Normal",
  7374. height: math.unit(0.83, "meters"),
  7375. default: true
  7376. },
  7377. ]
  7378. ))
  7379. characterMakers.push(() => makeCharacter(
  7380. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7381. {
  7382. front: {
  7383. height: math.unit(12, "feet"),
  7384. weight: math.unit(1000, "lb"),
  7385. name: "Front",
  7386. image: {
  7387. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7388. extra: 1762 / 1611
  7389. }
  7390. },
  7391. back: {
  7392. height: math.unit(12, "feet"),
  7393. weight: math.unit(1000, "lb"),
  7394. name: "Back",
  7395. image: {
  7396. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7397. extra: 1762 / 1611
  7398. }
  7399. },
  7400. },
  7401. [
  7402. {
  7403. name: "Normal",
  7404. height: math.unit(12, "feet"),
  7405. default: true
  7406. },
  7407. {
  7408. name: "Kaiju",
  7409. height: math.unit(150, "feet")
  7410. },
  7411. ]
  7412. ))
  7413. characterMakers.push(() => makeCharacter(
  7414. { name: "Zero Alurus" },
  7415. {
  7416. front: {
  7417. height: math.unit(6, "feet"),
  7418. weight: math.unit(150, "lb"),
  7419. name: "Front",
  7420. image: {
  7421. source: "./media/characters/zero-alurus/front.svg"
  7422. }
  7423. },
  7424. back: {
  7425. height: math.unit(6, "feet"),
  7426. weight: math.unit(150, "lb"),
  7427. name: "Back",
  7428. image: {
  7429. source: "./media/characters/zero-alurus/back.svg"
  7430. }
  7431. },
  7432. },
  7433. [
  7434. {
  7435. name: "Normal",
  7436. height: math.unit(5 + 10 / 12, "feet")
  7437. },
  7438. {
  7439. name: "Macro",
  7440. height: math.unit(60, "feet"),
  7441. default: true
  7442. },
  7443. {
  7444. name: "Macro+",
  7445. height: math.unit(450, "feet")
  7446. },
  7447. ]
  7448. ))
  7449. characterMakers.push(() => makeCharacter(
  7450. { name: "Mega Shi" },
  7451. {
  7452. front: {
  7453. height: math.unit(6, "feet"),
  7454. weight: math.unit(200, "lb"),
  7455. name: "Front",
  7456. image: {
  7457. source: "./media/characters/mega-shi/front.svg",
  7458. extra: 1279 / 1250,
  7459. bottom: 0.02
  7460. }
  7461. },
  7462. back: {
  7463. height: math.unit(6, "feet"),
  7464. weight: math.unit(200, "lb"),
  7465. name: "Back",
  7466. image: {
  7467. source: "./media/characters/mega-shi/back.svg",
  7468. extra: 1279 / 1250,
  7469. bottom: 0.02
  7470. }
  7471. },
  7472. },
  7473. [
  7474. {
  7475. name: "Micro",
  7476. height: math.unit(16 + 6 / 12, "feet")
  7477. },
  7478. {
  7479. name: "Third Dimension",
  7480. height: math.unit(40, "meters")
  7481. },
  7482. {
  7483. name: "Normal",
  7484. height: math.unit(660, "feet"),
  7485. default: true
  7486. },
  7487. {
  7488. name: "Megamacro",
  7489. height: math.unit(10, "miles")
  7490. },
  7491. {
  7492. name: "Planetary Launch",
  7493. height: math.unit(500, "miles")
  7494. },
  7495. {
  7496. name: "Interstellar",
  7497. height: math.unit(1e9, "miles")
  7498. },
  7499. {
  7500. name: "Leaving the Universe",
  7501. height: math.unit(1, "gigaparsec")
  7502. },
  7503. {
  7504. name: "Travelling Universes",
  7505. height: math.unit(30e15, "parsecs")
  7506. },
  7507. ]
  7508. ))
  7509. characterMakers.push(() => makeCharacter(
  7510. { name: "Odyssey" },
  7511. {
  7512. front: {
  7513. height: math.unit(6, "feet"),
  7514. weight: math.unit(150, "lb"),
  7515. name: "Front",
  7516. image: {
  7517. source: "./media/characters/odyssey/front.svg",
  7518. extra: 1782 / 1582,
  7519. bottom: 0.01
  7520. }
  7521. },
  7522. side: {
  7523. height: math.unit(5.7, "feet"),
  7524. weight: math.unit(140, "lb"),
  7525. name: "Side",
  7526. image: {
  7527. source: "./media/characters/odyssey/side.svg",
  7528. extra: 6462 / 5700
  7529. }
  7530. },
  7531. },
  7532. [
  7533. {
  7534. name: "Normal",
  7535. height: math.unit(5 + 4 / 12, "feet")
  7536. },
  7537. {
  7538. name: "Macro",
  7539. height: math.unit(1, "km")
  7540. },
  7541. {
  7542. name: "Megamacro",
  7543. height: math.unit(3000, "km")
  7544. },
  7545. {
  7546. name: "Gigamacro",
  7547. height: math.unit(1, "AU"),
  7548. default: true
  7549. },
  7550. {
  7551. name: "Omniversal",
  7552. height: math.unit(100e14, "lightyears")
  7553. },
  7554. ]
  7555. ))
  7556. characterMakers.push(() => makeCharacter(
  7557. { name: "Mekuto" },
  7558. {
  7559. front: {
  7560. height: math.unit(6, "feet"),
  7561. weight: math.unit(300, "lb"),
  7562. name: "Front",
  7563. image: {
  7564. source: "./media/characters/mekuto/front.svg",
  7565. extra: 921 / 832,
  7566. bottom: 0.03
  7567. }
  7568. },
  7569. hand: {
  7570. height: math.unit(6 / 10.24, "feet"),
  7571. name: "Hand",
  7572. image: {
  7573. source: "./media/characters/mekuto/hand.svg"
  7574. }
  7575. },
  7576. foot: {
  7577. height: math.unit(6 / 5.05, "feet"),
  7578. name: "Foot",
  7579. image: {
  7580. source: "./media/characters/mekuto/foot.svg"
  7581. }
  7582. },
  7583. },
  7584. [
  7585. {
  7586. name: "Minimicro",
  7587. height: math.unit(0.2, "inches")
  7588. },
  7589. {
  7590. name: "Micro",
  7591. height: math.unit(1.5, "inches")
  7592. },
  7593. {
  7594. name: "Normal",
  7595. height: math.unit(5 + 11 / 12, "feet"),
  7596. default: true
  7597. },
  7598. {
  7599. name: "Minimacro",
  7600. height: math.unit(17 + 9 / 12, "feet")
  7601. },
  7602. {
  7603. name: "Macro",
  7604. height: math.unit(177.5, "feet")
  7605. },
  7606. {
  7607. name: "Megamacro",
  7608. height: math.unit(152, "miles")
  7609. },
  7610. ]
  7611. ))
  7612. characterMakers.push(() => makeCharacter(
  7613. { name: "Dafydd Tomos" },
  7614. {
  7615. front: {
  7616. height: math.unit(6.5, "inches"),
  7617. weight: math.unit(13, "oz"),
  7618. name: "Front",
  7619. image: {
  7620. source: "./media/characters/dafydd-tomos/front.svg",
  7621. extra: 2990 / 2603,
  7622. bottom: 0.03
  7623. }
  7624. },
  7625. },
  7626. [
  7627. {
  7628. name: "Micro",
  7629. height: math.unit(6.5, "inches"),
  7630. default: true
  7631. },
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Splinter" },
  7636. {
  7637. front: {
  7638. height: math.unit(6, "feet"),
  7639. weight: math.unit(150, "lb"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/splinter/front.svg",
  7643. extra: 2990 / 2882,
  7644. bottom: 0.04
  7645. }
  7646. },
  7647. back: {
  7648. height: math.unit(6, "feet"),
  7649. weight: math.unit(150, "lb"),
  7650. name: "Back",
  7651. image: {
  7652. source: "./media/characters/splinter/back.svg",
  7653. extra: 2990 / 2882,
  7654. bottom: 0.04
  7655. }
  7656. },
  7657. },
  7658. [
  7659. {
  7660. name: "Normal",
  7661. height: math.unit(6, "feet")
  7662. },
  7663. {
  7664. name: "Macro",
  7665. height: math.unit(230, "meters"),
  7666. default: true
  7667. },
  7668. ]
  7669. ))
  7670. characterMakers.push(() => makeCharacter(
  7671. { name: "SnowGabumon" },
  7672. {
  7673. front: {
  7674. height: math.unit(4 + 10 / 12, "feet"),
  7675. weight: math.unit(480, "lb"),
  7676. name: "Front",
  7677. image: {
  7678. source: "./media/characters/snow-gabumon/front.svg",
  7679. extra: 1140 / 963,
  7680. bottom: 0.058
  7681. }
  7682. },
  7683. back: {
  7684. height: math.unit(4 + 10 / 12, "feet"),
  7685. weight: math.unit(480, "lb"),
  7686. name: "Back",
  7687. image: {
  7688. source: "./media/characters/snow-gabumon/back.svg",
  7689. extra: 1115 / 962,
  7690. bottom: 0.041
  7691. }
  7692. },
  7693. frontUndresed: {
  7694. height: math.unit(4 + 10 / 12, "feet"),
  7695. weight: math.unit(480, "lb"),
  7696. name: "Front (Undressed)",
  7697. image: {
  7698. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7699. extra: 1061 / 960,
  7700. bottom: 0.045
  7701. }
  7702. },
  7703. },
  7704. [
  7705. {
  7706. name: "Micro",
  7707. height: math.unit(1, "inch")
  7708. },
  7709. {
  7710. name: "Normal",
  7711. height: math.unit(4 + 10 / 12, "feet"),
  7712. default: true
  7713. },
  7714. {
  7715. name: "Macro",
  7716. height: math.unit(200, "feet")
  7717. },
  7718. {
  7719. name: "Megamacro",
  7720. height: math.unit(120, "miles")
  7721. },
  7722. {
  7723. name: "Gigamacro",
  7724. height: math.unit(9800, "miles")
  7725. },
  7726. ]
  7727. ))
  7728. characterMakers.push(() => makeCharacter(
  7729. { name: "Moody" },
  7730. {
  7731. front: {
  7732. height: math.unit(1.7, "meters"),
  7733. weight: math.unit(140, "lb"),
  7734. name: "Front",
  7735. image: {
  7736. source: "./media/characters/moody/front.svg",
  7737. extra: 3226 / 3007,
  7738. bottom: 0.087
  7739. }
  7740. },
  7741. },
  7742. [
  7743. {
  7744. name: "Micro",
  7745. height: math.unit(1, "mm")
  7746. },
  7747. {
  7748. name: "Normal",
  7749. height: math.unit(1.7, "meters"),
  7750. default: true
  7751. },
  7752. {
  7753. name: "Macro",
  7754. height: math.unit(80, "meters")
  7755. },
  7756. {
  7757. name: "Macro+",
  7758. height: math.unit(500, "meters")
  7759. },
  7760. ]
  7761. ))
  7762. characterMakers.push(() => makeCharacter(
  7763. { name: "Zyas" },
  7764. {
  7765. front: {
  7766. height: math.unit(6, "feet"),
  7767. weight: math.unit(150, "lb"),
  7768. name: "Front",
  7769. image: {
  7770. source: "./media/characters/zyas/front.svg",
  7771. extra: 1180 / 1120,
  7772. bottom: 0.045
  7773. }
  7774. },
  7775. },
  7776. [
  7777. {
  7778. name: "Normal",
  7779. height: math.unit(10, "feet"),
  7780. default: true
  7781. },
  7782. {
  7783. name: "Macro",
  7784. height: math.unit(500, "feet")
  7785. },
  7786. {
  7787. name: "Megamacro",
  7788. height: math.unit(5, "miles")
  7789. },
  7790. {
  7791. name: "Teramacro",
  7792. height: math.unit(150000, "miles")
  7793. },
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Cuon" },
  7798. {
  7799. front: {
  7800. height: math.unit(6, "feet"),
  7801. weight: math.unit(150, "lb"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/cuon/front.svg",
  7805. extra: 1390 / 1320,
  7806. bottom: 0.008
  7807. }
  7808. },
  7809. },
  7810. [
  7811. {
  7812. name: "Micro",
  7813. height: math.unit(3, "inches")
  7814. },
  7815. {
  7816. name: "Normal",
  7817. height: math.unit(18 + 9 / 12, "feet"),
  7818. default: true
  7819. },
  7820. {
  7821. name: "Macro",
  7822. height: math.unit(360, "feet")
  7823. },
  7824. {
  7825. name: "Megamacro",
  7826. height: math.unit(360, "miles")
  7827. },
  7828. ]
  7829. ))
  7830. characterMakers.push(() => makeCharacter(
  7831. { name: "Nyanuxk" },
  7832. {
  7833. front: {
  7834. height: math.unit(2.4, "meters"),
  7835. weight: math.unit(70, "kg"),
  7836. name: "Front",
  7837. image: {
  7838. source: "./media/characters/nyanuxk/front.svg",
  7839. extra: 1172 / 1084,
  7840. bottom: 0.065
  7841. }
  7842. },
  7843. side: {
  7844. height: math.unit(2.4, "meters"),
  7845. weight: math.unit(70, "kg"),
  7846. name: "Side",
  7847. image: {
  7848. source: "./media/characters/nyanuxk/side.svg",
  7849. extra: 1190 / 1132,
  7850. bottom: 0.007
  7851. }
  7852. },
  7853. back: {
  7854. height: math.unit(2.4, "meters"),
  7855. weight: math.unit(70, "kg"),
  7856. name: "Back",
  7857. image: {
  7858. source: "./media/characters/nyanuxk/back.svg",
  7859. extra: 1200 / 1141,
  7860. bottom: 0.015
  7861. }
  7862. },
  7863. foot: {
  7864. height: math.unit(0.52, "meters"),
  7865. name: "Foot",
  7866. image: {
  7867. source: "./media/characters/nyanuxk/foot.svg"
  7868. }
  7869. },
  7870. },
  7871. [
  7872. {
  7873. name: "Micro",
  7874. height: math.unit(2, "cm")
  7875. },
  7876. {
  7877. name: "Normal",
  7878. height: math.unit(2.4, "meters"),
  7879. default: true
  7880. },
  7881. {
  7882. name: "Smaller Macro",
  7883. height: math.unit(120, "meters")
  7884. },
  7885. {
  7886. name: "Bigger Macro",
  7887. height: math.unit(1.2, "km")
  7888. },
  7889. {
  7890. name: "Megamacro",
  7891. height: math.unit(15, "kilometers")
  7892. },
  7893. {
  7894. name: "Gigamacro",
  7895. height: math.unit(2000, "km")
  7896. },
  7897. {
  7898. name: "Teramacro",
  7899. height: math.unit(500000, "km")
  7900. },
  7901. ]
  7902. ))
  7903. characterMakers.push(() => makeCharacter(
  7904. { name: "Ailbhe" },
  7905. {
  7906. side: {
  7907. height: math.unit(6, "feet"),
  7908. name: "Side",
  7909. image: {
  7910. source: "./media/characters/ailbhe/side.svg",
  7911. extra: 757 / 464,
  7912. bottom: 0.041
  7913. }
  7914. },
  7915. },
  7916. [
  7917. {
  7918. name: "Normal",
  7919. height: math.unit(1.07, "meters"),
  7920. default: true
  7921. },
  7922. ]
  7923. ))
  7924. characterMakers.push(() => makeCharacter(
  7925. { name: "Zevulfius" },
  7926. {
  7927. front: {
  7928. height: math.unit(6, "feet"),
  7929. weight: math.unit(120, "kg"),
  7930. name: "Front",
  7931. image: {
  7932. source: "./media/characters/zevulfius/front.svg",
  7933. extra: 965 / 903
  7934. }
  7935. },
  7936. side: {
  7937. height: math.unit(6, "feet"),
  7938. weight: math.unit(120, "kg"),
  7939. name: "Side",
  7940. image: {
  7941. source: "./media/characters/zevulfius/side.svg",
  7942. extra: 939 / 900
  7943. }
  7944. },
  7945. back: {
  7946. height: math.unit(6, "feet"),
  7947. weight: math.unit(120, "kg"),
  7948. name: "Back",
  7949. image: {
  7950. source: "./media/characters/zevulfius/back.svg",
  7951. extra: 918 / 854,
  7952. bottom: 0.005
  7953. }
  7954. },
  7955. foot: {
  7956. height: math.unit(6 / 3.72, "feet"),
  7957. name: "Foot",
  7958. image: {
  7959. source: "./media/characters/zevulfius/foot.svg"
  7960. }
  7961. },
  7962. },
  7963. [
  7964. {
  7965. name: "Macro",
  7966. height: math.unit(750, "meters")
  7967. },
  7968. {
  7969. name: "Megamacro",
  7970. height: math.unit(20, "km"),
  7971. default: true
  7972. },
  7973. {
  7974. name: "Gigamacro",
  7975. height: math.unit(2000, "km")
  7976. },
  7977. {
  7978. name: "Teramacro",
  7979. height: math.unit(250000, "km")
  7980. },
  7981. ]
  7982. ))
  7983. characterMakers.push(() => makeCharacter(
  7984. { name: "Rikes" },
  7985. {
  7986. front: {
  7987. height: math.unit(100, "feet"),
  7988. weight: math.unit(350, "kg"),
  7989. name: "Front",
  7990. image: {
  7991. source: "./media/characters/rikes/front.svg",
  7992. extra: 1565 / 1483,
  7993. bottom: 0.017
  7994. }
  7995. },
  7996. },
  7997. [
  7998. {
  7999. name: "Macro",
  8000. height: math.unit(100, "feet"),
  8001. default: true
  8002. },
  8003. ]
  8004. ))
  8005. characterMakers.push(() => makeCharacter(
  8006. { name: "Adam Silver-Mane" },
  8007. {
  8008. anthro: {
  8009. height: math.unit(8, "feet"),
  8010. weight: math.unit(120, "kg"),
  8011. name: "Anthro",
  8012. image: {
  8013. source: "./media/characters/adam-silver-mane/anthro.svg",
  8014. extra: 5743 / 5339,
  8015. bottom: 0.07
  8016. }
  8017. },
  8018. taur: {
  8019. height: math.unit(16, "feet"),
  8020. weight: math.unit(1500, "kg"),
  8021. name: "Taur",
  8022. image: {
  8023. source: "./media/characters/adam-silver-mane/taur.svg",
  8024. extra: 1713 / 1571,
  8025. bottom: 0.01
  8026. }
  8027. },
  8028. },
  8029. [
  8030. {
  8031. name: "Normal",
  8032. height: math.unit(8, "feet")
  8033. },
  8034. {
  8035. name: "Minimacro",
  8036. height: math.unit(80, "feet")
  8037. },
  8038. {
  8039. name: "Macro",
  8040. height: math.unit(800, "feet"),
  8041. default: true
  8042. },
  8043. {
  8044. name: "Megamacro",
  8045. height: math.unit(8000, "feet")
  8046. },
  8047. {
  8048. name: "Gigamacro",
  8049. height: math.unit(800, "miles")
  8050. },
  8051. {
  8052. name: "Teramacro",
  8053. height: math.unit(80000, "miles")
  8054. },
  8055. {
  8056. name: "Celestial",
  8057. height: math.unit(8e6, "miles")
  8058. },
  8059. {
  8060. name: "Star Dragon",
  8061. height: math.unit(800000, "parsecs")
  8062. },
  8063. {
  8064. name: "Godly",
  8065. height: math.unit(800, "teraparsecs")
  8066. },
  8067. ]
  8068. ))
  8069. characterMakers.push(() => makeCharacter(
  8070. { name: "Ky'owin" },
  8071. {
  8072. front: {
  8073. height: math.unit(6, "feet"),
  8074. weight: math.unit(150, "lb"),
  8075. name: "Front",
  8076. image: {
  8077. source: "./media/characters/ky'owin/front.svg",
  8078. extra: 3888 / 3068,
  8079. bottom: 0.015
  8080. }
  8081. },
  8082. },
  8083. [
  8084. {
  8085. name: "Normal",
  8086. height: math.unit(6 + 8 / 12, "feet")
  8087. },
  8088. {
  8089. name: "Large",
  8090. height: math.unit(68, "feet")
  8091. },
  8092. {
  8093. name: "Macro",
  8094. height: math.unit(132, "feet")
  8095. },
  8096. {
  8097. name: "Macro+",
  8098. height: math.unit(340, "feet")
  8099. },
  8100. {
  8101. name: "Macro++",
  8102. height: math.unit(680, "feet"),
  8103. default: true
  8104. },
  8105. {
  8106. name: "Megamacro",
  8107. height: math.unit(1, "mile")
  8108. },
  8109. {
  8110. name: "Megamacro+",
  8111. height: math.unit(10, "miles")
  8112. },
  8113. ]
  8114. ))
  8115. characterMakers.push(() => makeCharacter(
  8116. { name: "Mal" },
  8117. {
  8118. front: {
  8119. height: math.unit(4, "feet"),
  8120. weight: math.unit(50, "lb"),
  8121. name: "Front",
  8122. image: {
  8123. source: "./media/characters/mal/front.svg",
  8124. extra: 785 / 724,
  8125. bottom: 0.07
  8126. }
  8127. },
  8128. },
  8129. [
  8130. {
  8131. name: "Micro",
  8132. height: math.unit(4, "inches")
  8133. },
  8134. {
  8135. name: "Normal",
  8136. height: math.unit(4, "feet"),
  8137. default: true
  8138. },
  8139. {
  8140. name: "Macro",
  8141. height: math.unit(200, "feet")
  8142. },
  8143. ]
  8144. ))
  8145. characterMakers.push(() => makeCharacter(
  8146. { name: "Jordan Deware" },
  8147. {
  8148. front: {
  8149. height: math.unit(6, "feet"),
  8150. weight: math.unit(150, "lb"),
  8151. name: "Front",
  8152. image: {
  8153. source: "./media/characters/jordan-deware/front.svg",
  8154. extra: 1191 / 1012
  8155. }
  8156. },
  8157. },
  8158. [
  8159. {
  8160. name: "Nano",
  8161. height: math.unit(0.01, "mm")
  8162. },
  8163. {
  8164. name: "Minimicro",
  8165. height: math.unit(1, "mm")
  8166. },
  8167. {
  8168. name: "Micro",
  8169. height: math.unit(0.5, "inches")
  8170. },
  8171. {
  8172. name: "Normal",
  8173. height: math.unit(4, "feet"),
  8174. default: true
  8175. },
  8176. {
  8177. name: "Minimacro",
  8178. height: math.unit(40, "meters")
  8179. },
  8180. {
  8181. name: "Small Macro",
  8182. height: math.unit(400, "meters")
  8183. },
  8184. {
  8185. name: "Macro",
  8186. height: math.unit(4, "miles")
  8187. },
  8188. {
  8189. name: "Megamacro",
  8190. height: math.unit(40, "miles")
  8191. },
  8192. {
  8193. name: "Megamacro+",
  8194. height: math.unit(400, "miles")
  8195. },
  8196. {
  8197. name: "Gigamacro",
  8198. height: math.unit(400000, "miles")
  8199. },
  8200. ]
  8201. ))
  8202. characterMakers.push(() => makeCharacter(
  8203. { name: "Kimiko" },
  8204. {
  8205. side: {
  8206. height: math.unit(6, "feet"),
  8207. weight: math.unit(150, "lb"),
  8208. name: "Side",
  8209. image: {
  8210. source: "./media/characters/kimiko/side.svg",
  8211. extra: 600 / 358
  8212. }
  8213. },
  8214. },
  8215. [
  8216. {
  8217. name: "Normal",
  8218. height: math.unit(15, "feet"),
  8219. default: true
  8220. },
  8221. {
  8222. name: "Macro",
  8223. height: math.unit(220, "feet")
  8224. },
  8225. {
  8226. name: "Macro+",
  8227. height: math.unit(1450, "feet")
  8228. },
  8229. {
  8230. name: "Megamacro",
  8231. height: math.unit(11500, "feet")
  8232. },
  8233. {
  8234. name: "Gigamacro",
  8235. height: math.unit(9500, "miles")
  8236. },
  8237. {
  8238. name: "Teramacro",
  8239. height: math.unit(2208005005, "miles")
  8240. },
  8241. {
  8242. name: "Examacro",
  8243. height: math.unit(2750, "parsecs")
  8244. },
  8245. {
  8246. name: "Zettamacro",
  8247. height: math.unit(101500, "parsecs")
  8248. },
  8249. ]
  8250. ))
  8251. characterMakers.push(() => makeCharacter(
  8252. { name: "Andrew Sleepy" },
  8253. {
  8254. front: {
  8255. height: math.unit(6, "feet"),
  8256. weight: math.unit(70, "kg"),
  8257. name: "Front",
  8258. image: {
  8259. source: "./media/characters/andrew-sleepy/front.svg"
  8260. }
  8261. },
  8262. side: {
  8263. height: math.unit(6, "feet"),
  8264. weight: math.unit(70, "kg"),
  8265. name: "Side",
  8266. image: {
  8267. source: "./media/characters/andrew-sleepy/side.svg"
  8268. }
  8269. },
  8270. },
  8271. [
  8272. {
  8273. name: "Micro",
  8274. height: math.unit(1, "mm"),
  8275. default: true
  8276. },
  8277. ]
  8278. ))
  8279. characterMakers.push(() => makeCharacter(
  8280. { name: "Judio" },
  8281. {
  8282. front: {
  8283. height: math.unit(6, "feet"),
  8284. weight: math.unit(150, "lb"),
  8285. name: "Front",
  8286. image: {
  8287. source: "./media/characters/judio/front.svg",
  8288. extra: 1258 / 1110
  8289. }
  8290. },
  8291. },
  8292. [
  8293. {
  8294. name: "Normal",
  8295. height: math.unit(5 + 6 / 12, "feet")
  8296. },
  8297. {
  8298. name: "Macro",
  8299. height: math.unit(1000, "feet"),
  8300. default: true
  8301. },
  8302. {
  8303. name: "Megamacro",
  8304. height: math.unit(10, "miles")
  8305. },
  8306. ]
  8307. ))
  8308. characterMakers.push(() => makeCharacter(
  8309. { name: "Nomaxice" },
  8310. {
  8311. front: {
  8312. height: math.unit(6, "feet"),
  8313. weight: math.unit(68, "kg"),
  8314. name: "Front",
  8315. image: {
  8316. source: "./media/characters/nomaxice/front.svg",
  8317. extra: 1498 / 1073,
  8318. bottom: 0.075
  8319. }
  8320. },
  8321. foot: {
  8322. height: math.unit(1.1, "feet"),
  8323. name: "Foot",
  8324. image: {
  8325. source: "./media/characters/nomaxice/foot.svg"
  8326. }
  8327. },
  8328. },
  8329. [
  8330. {
  8331. name: "Micro",
  8332. height: math.unit(8, "cm")
  8333. },
  8334. {
  8335. name: "Norm",
  8336. height: math.unit(1.82, "m")
  8337. },
  8338. {
  8339. name: "Norm+",
  8340. height: math.unit(8.8, "feet")
  8341. },
  8342. {
  8343. name: "Big",
  8344. height: math.unit(8, "meters"),
  8345. default: true
  8346. },
  8347. {
  8348. name: "Macro",
  8349. height: math.unit(18, "meters")
  8350. },
  8351. {
  8352. name: "Macro+",
  8353. height: math.unit(88, "meters")
  8354. },
  8355. ]
  8356. ))
  8357. characterMakers.push(() => makeCharacter(
  8358. { name: "Dydros" },
  8359. {
  8360. front: {
  8361. height: math.unit(12, "feet"),
  8362. weight: math.unit(1.5, "tons"),
  8363. name: "Front",
  8364. image: {
  8365. source: "./media/characters/dydros/front.svg",
  8366. extra: 863 / 800,
  8367. bottom: 0.015
  8368. }
  8369. },
  8370. back: {
  8371. height: math.unit(12, "feet"),
  8372. weight: math.unit(1.5, "tons"),
  8373. name: "Back",
  8374. image: {
  8375. source: "./media/characters/dydros/back.svg",
  8376. extra: 900 / 843,
  8377. bottom: 0.005
  8378. }
  8379. },
  8380. },
  8381. [
  8382. {
  8383. name: "Normal",
  8384. height: math.unit(12, "feet"),
  8385. default: true
  8386. },
  8387. ]
  8388. ))
  8389. characterMakers.push(() => makeCharacter(
  8390. { name: "Riggi" },
  8391. {
  8392. front: {
  8393. height: math.unit(6, "feet"),
  8394. weight: math.unit(100, "kg"),
  8395. name: "Front",
  8396. image: {
  8397. source: "./media/characters/riggi/front.svg",
  8398. extra: 5787 / 5303
  8399. }
  8400. },
  8401. hyper: {
  8402. height: math.unit(6 * 5 / 3, "feet"),
  8403. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8404. name: "Hyper",
  8405. image: {
  8406. source: "./media/characters/riggi/hyper.svg",
  8407. extra: 3595 / 3485
  8408. }
  8409. },
  8410. },
  8411. [
  8412. {
  8413. name: "Small Macro",
  8414. height: math.unit(50, "feet")
  8415. },
  8416. {
  8417. name: "Default",
  8418. height: math.unit(200, "feet"),
  8419. default: true
  8420. },
  8421. {
  8422. name: "Loom",
  8423. height: math.unit(10000, "feet")
  8424. },
  8425. {
  8426. name: "Cruising Altitude",
  8427. height: math.unit(30000, "feet")
  8428. },
  8429. {
  8430. name: "Megamacro",
  8431. height: math.unit(100, "miles")
  8432. },
  8433. {
  8434. name: "Continent Sized",
  8435. height: math.unit(2800, "miles")
  8436. },
  8437. {
  8438. name: "Earth Sized",
  8439. height: math.unit(8000, "miles")
  8440. },
  8441. ]
  8442. ))
  8443. characterMakers.push(() => makeCharacter(
  8444. { name: "Alexi" },
  8445. {
  8446. front: {
  8447. height: math.unit(6, "feet"),
  8448. weight: math.unit(250, "lb"),
  8449. name: "Front",
  8450. image: {
  8451. source: "./media/characters/alexi/front.svg",
  8452. extra: 3483 / 3291,
  8453. bottom: 0.04
  8454. }
  8455. },
  8456. back: {
  8457. height: math.unit(6, "feet"),
  8458. weight: math.unit(250, "lb"),
  8459. name: "Back",
  8460. image: {
  8461. source: "./media/characters/alexi/back.svg",
  8462. extra: 3533 / 3356,
  8463. bottom: 0.021
  8464. }
  8465. },
  8466. frontTransformed: {
  8467. height: math.unit(12.5, "feet"),
  8468. weight: math.unit(4000, "lb"),
  8469. name: "Front (Transformed)",
  8470. image: {
  8471. source: "./media/characters/alexi/front-transformed.svg",
  8472. extra: 5345 / 5100,
  8473. bottom: 0.03
  8474. }
  8475. },
  8476. },
  8477. [
  8478. {
  8479. name: "Normal",
  8480. height: math.unit(3, "meters"),
  8481. default: true
  8482. },
  8483. {
  8484. name: "Minimacro",
  8485. height: math.unit(30, "meters")
  8486. },
  8487. {
  8488. name: "Macro",
  8489. height: math.unit(500, "meters")
  8490. },
  8491. {
  8492. name: "Megamacro",
  8493. height: math.unit(9000, "km")
  8494. },
  8495. {
  8496. name: "Teramacro",
  8497. height: math.unit(384000, "km")
  8498. },
  8499. ]
  8500. ))
  8501. characterMakers.push(() => makeCharacter(
  8502. { name: "Kayroo" },
  8503. {
  8504. front: {
  8505. height: math.unit(6, "feet"),
  8506. weight: math.unit(150, "lb"),
  8507. name: "Front",
  8508. image: {
  8509. source: "./media/characters/kayroo/front.svg",
  8510. extra: 1153 / 1038,
  8511. bottom: 0.06
  8512. }
  8513. },
  8514. foot: {
  8515. height: math.unit(6, "feet"),
  8516. weight: math.unit(150, "lb"),
  8517. name: "Foot",
  8518. image: {
  8519. source: "./media/characters/kayroo/foot.svg"
  8520. }
  8521. },
  8522. },
  8523. [
  8524. {
  8525. name: "Normal",
  8526. height: math.unit(8, "feet"),
  8527. default: true
  8528. },
  8529. {
  8530. name: "Minimacro",
  8531. height: math.unit(250, "feet")
  8532. },
  8533. {
  8534. name: "Macro",
  8535. height: math.unit(2800, "feet")
  8536. },
  8537. {
  8538. name: "Megamacro",
  8539. height: math.unit(5200, "feet")
  8540. },
  8541. {
  8542. name: "Gigamacro",
  8543. height: math.unit(27000, "feet")
  8544. },
  8545. {
  8546. name: "Omega",
  8547. height: math.unit(45000, "feet")
  8548. },
  8549. ]
  8550. ))
  8551. characterMakers.push(() => makeCharacter(
  8552. { name: "Rhys" },
  8553. {
  8554. front: {
  8555. height: math.unit(18, "feet"),
  8556. weight: math.unit(5800, "lb"),
  8557. name: "Front",
  8558. image: {
  8559. source: "./media/characters/rhys/front.svg",
  8560. extra: 3386 / 3090,
  8561. bottom: 0.07
  8562. }
  8563. },
  8564. },
  8565. [
  8566. {
  8567. name: "Normal",
  8568. height: math.unit(18, "feet"),
  8569. default: true
  8570. },
  8571. {
  8572. name: "Working Size",
  8573. height: math.unit(200, "feet")
  8574. },
  8575. {
  8576. name: "Demolition Size",
  8577. height: math.unit(2000, "feet")
  8578. },
  8579. {
  8580. name: "Maximum Licensed Size",
  8581. height: math.unit(5, "miles")
  8582. },
  8583. {
  8584. name: "Maximum Observed Size",
  8585. height: math.unit(10, "yottameters")
  8586. },
  8587. ]
  8588. ))
  8589. characterMakers.push(() => makeCharacter(
  8590. { name: "Toto" },
  8591. {
  8592. front: {
  8593. height: math.unit(6, "feet"),
  8594. weight: math.unit(250, "lb"),
  8595. name: "Front",
  8596. image: {
  8597. source: "./media/characters/toto/front.svg",
  8598. extra: 527 / 479,
  8599. bottom: 0.05
  8600. }
  8601. },
  8602. },
  8603. [
  8604. {
  8605. name: "Micro",
  8606. height: math.unit(3, "feet")
  8607. },
  8608. {
  8609. name: "Normal",
  8610. height: math.unit(10, "feet")
  8611. },
  8612. {
  8613. name: "Macro",
  8614. height: math.unit(150, "feet"),
  8615. default: true
  8616. },
  8617. {
  8618. name: "Megamacro",
  8619. height: math.unit(1200, "feet")
  8620. },
  8621. ]
  8622. ))
  8623. characterMakers.push(() => makeCharacter(
  8624. { name: "King" },
  8625. {
  8626. back: {
  8627. height: math.unit(6, "feet"),
  8628. weight: math.unit(150, "lb"),
  8629. name: "Back",
  8630. image: {
  8631. source: "./media/characters/king/back.svg"
  8632. }
  8633. },
  8634. },
  8635. [
  8636. {
  8637. name: "Micro",
  8638. height: math.unit(2, "inches")
  8639. },
  8640. {
  8641. name: "Normal",
  8642. height: math.unit(8, "feet")
  8643. },
  8644. {
  8645. name: "Macro",
  8646. height: math.unit(200, "feet"),
  8647. default: true
  8648. },
  8649. {
  8650. name: "Megamacro",
  8651. height: math.unit(50, "miles")
  8652. },
  8653. ]
  8654. ))
  8655. characterMakers.push(() => makeCharacter(
  8656. { name: "Cordite" },
  8657. {
  8658. anthro: {
  8659. height: math.unit(6 + 5 / 12, "feet"),
  8660. weight: math.unit(280, "lb"),
  8661. name: "Anthro",
  8662. image: {
  8663. source: "./media/characters/cordite/anthro.svg",
  8664. extra: 1986 / 1905,
  8665. bottom: 0.025
  8666. }
  8667. },
  8668. feral: {
  8669. height: math.unit(2, "feet"),
  8670. weight: math.unit(90, "lb"),
  8671. name: "Feral",
  8672. image: {
  8673. source: "./media/characters/cordite/feral.svg",
  8674. extra: 1260 / 755,
  8675. bottom: 0.05
  8676. }
  8677. },
  8678. },
  8679. [
  8680. {
  8681. name: "Normal",
  8682. height: math.unit(6 + 5 / 12, "feet"),
  8683. default: true
  8684. },
  8685. ]
  8686. ))
  8687. characterMakers.push(() => makeCharacter(
  8688. { name: "Pianostrong" },
  8689. {
  8690. front: {
  8691. height: math.unit(6, "feet"),
  8692. weight: math.unit(150, "lb"),
  8693. name: "Front",
  8694. image: {
  8695. source: "./media/characters/pianostrong/front.svg",
  8696. extra: 6577 / 6254,
  8697. bottom: 0.02
  8698. }
  8699. },
  8700. side: {
  8701. height: math.unit(6, "feet"),
  8702. weight: math.unit(150, "lb"),
  8703. name: "Side",
  8704. image: {
  8705. source: "./media/characters/pianostrong/side.svg",
  8706. extra: 6106 / 5730
  8707. }
  8708. },
  8709. back: {
  8710. height: math.unit(6, "feet"),
  8711. weight: math.unit(150, "lb"),
  8712. name: "Back",
  8713. image: {
  8714. source: "./media/characters/pianostrong/back.svg",
  8715. extra: 6085 / 5733,
  8716. bottom: 0.01
  8717. }
  8718. },
  8719. },
  8720. [
  8721. {
  8722. name: "Macro",
  8723. height: math.unit(100, "feet")
  8724. },
  8725. {
  8726. name: "Macro+",
  8727. height: math.unit(300, "feet"),
  8728. default: true
  8729. },
  8730. {
  8731. name: "Macro++",
  8732. height: math.unit(1000, "feet")
  8733. },
  8734. ]
  8735. ))
  8736. characterMakers.push(() => makeCharacter(
  8737. { name: "Kona" },
  8738. {
  8739. front: {
  8740. height: math.unit(6, "feet"),
  8741. weight: math.unit(150, "lb"),
  8742. name: "Front",
  8743. image: {
  8744. source: "./media/characters/kona/front.svg",
  8745. extra: 2960 / 2629,
  8746. bottom: 0.005
  8747. }
  8748. },
  8749. },
  8750. [
  8751. {
  8752. name: "Normal",
  8753. height: math.unit(11 + 8 / 12, "feet")
  8754. },
  8755. {
  8756. name: "Macro",
  8757. height: math.unit(850, "feet"),
  8758. default: true
  8759. },
  8760. {
  8761. name: "Macro+",
  8762. height: math.unit(1.5, "km"),
  8763. default: true
  8764. },
  8765. {
  8766. name: "Megamacro",
  8767. height: math.unit(80, "miles")
  8768. },
  8769. {
  8770. name: "Gigamacro",
  8771. height: math.unit(3500, "miles")
  8772. },
  8773. ]
  8774. ))
  8775. characterMakers.push(() => makeCharacter(
  8776. { name: "Levi" },
  8777. {
  8778. side: {
  8779. height: math.unit(1.9, "meters"),
  8780. weight: math.unit(326, "kg"),
  8781. name: "Side",
  8782. image: {
  8783. source: "./media/characters/levi/side.svg",
  8784. extra: 1704 / 1334,
  8785. bottom: 0.02
  8786. }
  8787. },
  8788. },
  8789. [
  8790. {
  8791. name: "Normal",
  8792. height: math.unit(1.9, "meters"),
  8793. default: true
  8794. },
  8795. {
  8796. name: "Macro",
  8797. height: math.unit(20, "meters")
  8798. },
  8799. {
  8800. name: "Macro+",
  8801. height: math.unit(200, "meters")
  8802. },
  8803. {
  8804. name: "Megamacro",
  8805. height: math.unit(2, "km")
  8806. },
  8807. {
  8808. name: "Megamacro+",
  8809. height: math.unit(20, "km")
  8810. },
  8811. {
  8812. name: "Gigamacro",
  8813. height: math.unit(2500, "km")
  8814. },
  8815. {
  8816. name: "Gigamacro+",
  8817. height: math.unit(120000, "km")
  8818. },
  8819. {
  8820. name: "Teramacro",
  8821. height: math.unit(7.77e6, "km")
  8822. },
  8823. ]
  8824. ))
  8825. characterMakers.push(() => makeCharacter(
  8826. { name: "BMC" },
  8827. {
  8828. front: {
  8829. height: math.unit(6 + 4 / 12, "feet"),
  8830. weight: math.unit(188, "lb"),
  8831. name: "Front",
  8832. image: {
  8833. source: "./media/characters/bmc/front.svg",
  8834. extra: 1067 / 1022,
  8835. bottom: 0.047
  8836. }
  8837. },
  8838. },
  8839. [
  8840. {
  8841. name: "Human-sized",
  8842. height: math.unit(6 + 4 / 12, "feet")
  8843. },
  8844. {
  8845. name: "Small",
  8846. height: math.unit(250, "feet")
  8847. },
  8848. {
  8849. name: "Normal",
  8850. height: math.unit(1250, "feet"),
  8851. default: true
  8852. },
  8853. {
  8854. name: "Good Day",
  8855. height: math.unit(88, "miles")
  8856. },
  8857. {
  8858. name: "Largest Measured Size",
  8859. height: math.unit(11.2e6, "lightyears")
  8860. },
  8861. ]
  8862. ))
  8863. characterMakers.push(() => makeCharacter(
  8864. { name: "Sven the Kaiju" },
  8865. {
  8866. front: {
  8867. height: math.unit(20, "feet"),
  8868. weight: math.unit(2016, "kg"),
  8869. name: "Front",
  8870. image: {
  8871. source: "./media/characters/sven-the-kaiju/front.svg",
  8872. extra: 1479 / 1449,
  8873. bottom: 0.05
  8874. }
  8875. },
  8876. },
  8877. [
  8878. {
  8879. name: "Fairy",
  8880. height: math.unit(6, "inches")
  8881. },
  8882. {
  8883. name: "Normal",
  8884. height: math.unit(20, "feet"),
  8885. default: true
  8886. },
  8887. {
  8888. name: "Rampage",
  8889. height: math.unit(200, "feet")
  8890. },
  8891. {
  8892. name: "Archfey Forest Guardian",
  8893. height: math.unit(1, "mile")
  8894. },
  8895. ]
  8896. ))
  8897. characterMakers.push(() => makeCharacter(
  8898. { name: "Marik" },
  8899. {
  8900. front: {
  8901. height: math.unit(4, "meters"),
  8902. weight: math.unit(2, "tons"),
  8903. name: "Front",
  8904. image: {
  8905. source: "./media/characters/marik/front.svg",
  8906. extra: 1057 / 1003,
  8907. bottom: 0.08
  8908. }
  8909. },
  8910. },
  8911. [
  8912. {
  8913. name: "Normal",
  8914. height: math.unit(4, "meters"),
  8915. default: true
  8916. },
  8917. {
  8918. name: "Macro",
  8919. height: math.unit(20, "meters")
  8920. },
  8921. {
  8922. name: "Megamacro",
  8923. height: math.unit(50, "km")
  8924. },
  8925. {
  8926. name: "Gigamacro",
  8927. height: math.unit(100, "km")
  8928. },
  8929. {
  8930. name: "Alpha Macro",
  8931. height: math.unit(7.88e7, "yottameters")
  8932. },
  8933. ]
  8934. ))
  8935. characterMakers.push(() => makeCharacter(
  8936. { name: "Mel" },
  8937. {
  8938. front: {
  8939. height: math.unit(6, "feet"),
  8940. weight: math.unit(110, "lb"),
  8941. name: "Front",
  8942. image: {
  8943. source: "./media/characters/mel/front.svg",
  8944. extra: 736 / 617,
  8945. bottom: 0.017
  8946. }
  8947. },
  8948. },
  8949. [
  8950. {
  8951. name: "Pico",
  8952. height: math.unit(3, "pm")
  8953. },
  8954. {
  8955. name: "Nano",
  8956. height: math.unit(3, "nm")
  8957. },
  8958. {
  8959. name: "Micro",
  8960. height: math.unit(0.3, "mm"),
  8961. default: true
  8962. },
  8963. {
  8964. name: "Micro+",
  8965. height: math.unit(3, "mm")
  8966. },
  8967. {
  8968. name: "Normal",
  8969. height: math.unit(5 + 10.5 / 12, "feet")
  8970. },
  8971. ]
  8972. ))
  8973. characterMakers.push(() => makeCharacter(
  8974. { name: "Lykonous" },
  8975. {
  8976. kaiju: {
  8977. height: math.unit(1.75, "meters"),
  8978. weight: math.unit(55, "kg"),
  8979. name: "Kaiju",
  8980. image: {
  8981. source: "./media/characters/lykonous/kaiju.svg",
  8982. extra: 1055 / 946,
  8983. bottom: 0.135
  8984. }
  8985. },
  8986. },
  8987. [
  8988. {
  8989. name: "Normal",
  8990. height: math.unit(2.5, "meters"),
  8991. default: true
  8992. },
  8993. {
  8994. name: "Kaiju Dragon",
  8995. height: math.unit(60, "meters")
  8996. },
  8997. {
  8998. name: "Mega Kaiju",
  8999. height: math.unit(120, "km")
  9000. },
  9001. {
  9002. name: "Giga Kaiju",
  9003. height: math.unit(200, "megameters")
  9004. },
  9005. {
  9006. name: "Terra Kaiju",
  9007. height: math.unit(400, "gigameters")
  9008. },
  9009. {
  9010. name: "Kaiju Dragon God",
  9011. height: math.unit(13000, "exaparsecs")
  9012. },
  9013. ]
  9014. ))
  9015. characterMakers.push(() => makeCharacter(
  9016. { name: "Blü" },
  9017. {
  9018. front: {
  9019. height: math.unit(6, "feet"),
  9020. weight: math.unit(150, "lb"),
  9021. name: "Front",
  9022. image: {
  9023. source: "./media/characters/blü/front.svg",
  9024. extra: 1883 / 1564,
  9025. bottom: 0.031
  9026. }
  9027. },
  9028. },
  9029. [
  9030. {
  9031. name: "Normal",
  9032. height: math.unit(13, "feet"),
  9033. default: true
  9034. },
  9035. {
  9036. name: "Big Boi",
  9037. height: math.unit(150, "meters")
  9038. },
  9039. {
  9040. name: "Mini Stomper",
  9041. height: math.unit(300, "meters")
  9042. },
  9043. {
  9044. name: "Macro",
  9045. height: math.unit(1000, "meters")
  9046. },
  9047. {
  9048. name: "Megamacro",
  9049. height: math.unit(11000, "meters")
  9050. },
  9051. {
  9052. name: "Gigamacro",
  9053. height: math.unit(11000, "km")
  9054. },
  9055. {
  9056. name: "Teramacro",
  9057. height: math.unit(420000, "km")
  9058. },
  9059. {
  9060. name: "Examacro",
  9061. height: math.unit(120, "parsecs")
  9062. },
  9063. {
  9064. name: "God Tho",
  9065. height: math.unit(98000000000, "parsecs")
  9066. },
  9067. ]
  9068. ))
  9069. characterMakers.push(() => makeCharacter(
  9070. { name: "Scales" },
  9071. {
  9072. taurFront: {
  9073. height: math.unit(6, "feet"),
  9074. weight: math.unit(200, "lb"),
  9075. name: "Taur (Front)",
  9076. image: {
  9077. source: "./media/characters/scales/taur-front.svg",
  9078. extra: 1,
  9079. bottom: 0.05
  9080. }
  9081. },
  9082. taurBack: {
  9083. height: math.unit(6, "feet"),
  9084. weight: math.unit(200, "lb"),
  9085. name: "Taur (Back)",
  9086. image: {
  9087. source: "./media/characters/scales/taur-back.svg",
  9088. extra: 1,
  9089. bottom: 0.08
  9090. }
  9091. },
  9092. anthro: {
  9093. height: math.unit(6 * 7 / 12, "feet"),
  9094. weight: math.unit(100, "lb"),
  9095. name: "Anthro",
  9096. image: {
  9097. source: "./media/characters/scales/anthro.svg",
  9098. extra: 1,
  9099. bottom: 0.06
  9100. }
  9101. },
  9102. },
  9103. [
  9104. {
  9105. name: "Normal",
  9106. height: math.unit(12, "feet"),
  9107. default: true
  9108. },
  9109. ]
  9110. ))
  9111. characterMakers.push(() => makeCharacter(
  9112. { name: "Koragos" },
  9113. {
  9114. front: {
  9115. height: math.unit(6, "feet"),
  9116. weight: math.unit(150, "lb"),
  9117. name: "Front",
  9118. image: {
  9119. source: "./media/characters/koragos/front.svg",
  9120. extra: 841 / 794,
  9121. bottom: 0.035
  9122. }
  9123. },
  9124. back: {
  9125. height: math.unit(6, "feet"),
  9126. weight: math.unit(150, "lb"),
  9127. name: "Back",
  9128. image: {
  9129. source: "./media/characters/koragos/back.svg",
  9130. extra: 841 / 810,
  9131. bottom: 0.022
  9132. }
  9133. },
  9134. },
  9135. [
  9136. {
  9137. name: "Normal",
  9138. height: math.unit(6 + 11 / 12, "feet"),
  9139. default: true
  9140. },
  9141. {
  9142. name: "Macro",
  9143. height: math.unit(490, "feet")
  9144. },
  9145. {
  9146. name: "Megamacro",
  9147. height: math.unit(10, "miles")
  9148. },
  9149. {
  9150. name: "Gigamacro",
  9151. height: math.unit(50, "miles")
  9152. },
  9153. ]
  9154. ))
  9155. characterMakers.push(() => makeCharacter(
  9156. { name: "Xylrem" },
  9157. {
  9158. front: {
  9159. height: math.unit(6, "feet"),
  9160. weight: math.unit(250, "lb"),
  9161. name: "Front",
  9162. image: {
  9163. source: "./media/characters/xylrem/front.svg",
  9164. extra: 3323 / 3050,
  9165. bottom: 0.065
  9166. }
  9167. },
  9168. },
  9169. [
  9170. {
  9171. name: "Micro",
  9172. height: math.unit(4, "feet")
  9173. },
  9174. {
  9175. name: "Normal",
  9176. height: math.unit(16, "feet"),
  9177. default: true
  9178. },
  9179. {
  9180. name: "Macro",
  9181. height: math.unit(2720, "feet")
  9182. },
  9183. {
  9184. name: "Megamacro",
  9185. height: math.unit(25000, "miles")
  9186. },
  9187. ]
  9188. ))
  9189. characterMakers.push(() => makeCharacter(
  9190. { name: "Ikideru" },
  9191. {
  9192. front: {
  9193. height: math.unit(8, "feet"),
  9194. weight: math.unit(250, "kg"),
  9195. name: "Front",
  9196. image: {
  9197. source: "./media/characters/ikideru/front.svg",
  9198. extra: 930 / 870,
  9199. bottom: 0.087
  9200. }
  9201. },
  9202. back: {
  9203. height: math.unit(8, "feet"),
  9204. weight: math.unit(250, "kg"),
  9205. name: "Back",
  9206. image: {
  9207. source: "./media/characters/ikideru/back.svg",
  9208. extra: 919 / 852,
  9209. bottom: 0.055
  9210. }
  9211. },
  9212. },
  9213. [
  9214. {
  9215. name: "Rare",
  9216. height: math.unit(8, "feet"),
  9217. default: true
  9218. },
  9219. {
  9220. name: "Playful Loom",
  9221. height: math.unit(80, "feet")
  9222. },
  9223. {
  9224. name: "City Leaner",
  9225. height: math.unit(230, "feet")
  9226. },
  9227. {
  9228. name: "Megamacro",
  9229. height: math.unit(2500, "feet")
  9230. },
  9231. {
  9232. name: "Gigamacro",
  9233. height: math.unit(26400, "feet")
  9234. },
  9235. {
  9236. name: "Tectonic Shifter",
  9237. height: math.unit(1.7, "megameters")
  9238. },
  9239. {
  9240. name: "Planet Carer",
  9241. height: math.unit(21, "megameters")
  9242. },
  9243. {
  9244. name: "God",
  9245. height: math.unit(11157.22, "parsecs")
  9246. },
  9247. ]
  9248. ))
  9249. characterMakers.push(() => makeCharacter(
  9250. { name: "Neo" },
  9251. {
  9252. front: {
  9253. height: math.unit(6, "feet"),
  9254. weight: math.unit(120, "lb"),
  9255. name: "Front",
  9256. image: {
  9257. source: "./media/characters/neo/front.svg"
  9258. }
  9259. },
  9260. },
  9261. [
  9262. {
  9263. name: "Micro",
  9264. height: math.unit(2, "inches"),
  9265. default: true
  9266. },
  9267. {
  9268. name: "Human Size",
  9269. height: math.unit(5 + 8 / 12, "feet")
  9270. },
  9271. ]
  9272. ))
  9273. characterMakers.push(() => makeCharacter(
  9274. { name: "Chauncey (Chantz)" },
  9275. {
  9276. front: {
  9277. height: math.unit(13 + 10 / 12, "feet"),
  9278. weight: math.unit(5320, "lb"),
  9279. name: "Front",
  9280. image: {
  9281. source: "./media/characters/chauncey-chantz/front.svg",
  9282. extra: 1587 / 1435,
  9283. bottom: 0.02
  9284. }
  9285. },
  9286. },
  9287. [
  9288. {
  9289. name: "Normal",
  9290. height: math.unit(13 + 10 / 12, "feet"),
  9291. default: true
  9292. },
  9293. {
  9294. name: "Macro",
  9295. height: math.unit(45, "feet")
  9296. },
  9297. {
  9298. name: "Megamacro",
  9299. height: math.unit(250, "miles")
  9300. },
  9301. {
  9302. name: "Planetary",
  9303. height: math.unit(10000, "miles")
  9304. },
  9305. {
  9306. name: "Galactic",
  9307. height: math.unit(40000, "parsecs")
  9308. },
  9309. {
  9310. name: "Universal",
  9311. height: math.unit(1, "yottameter")
  9312. },
  9313. ]
  9314. ))
  9315. characterMakers.push(() => makeCharacter(
  9316. { name: "Epifox" },
  9317. {
  9318. front: {
  9319. height: math.unit(6, "feet"),
  9320. weight: math.unit(150, "lb"),
  9321. name: "Front",
  9322. image: {
  9323. source: "./media/characters/epifox/front.svg",
  9324. extra: 1,
  9325. bottom: 0.075
  9326. }
  9327. },
  9328. },
  9329. [
  9330. {
  9331. name: "Micro",
  9332. height: math.unit(6, "inches")
  9333. },
  9334. {
  9335. name: "Normal",
  9336. height: math.unit(12, "feet"),
  9337. default: true
  9338. },
  9339. {
  9340. name: "Macro",
  9341. height: math.unit(3810, "feet")
  9342. },
  9343. {
  9344. name: "Megamacro",
  9345. height: math.unit(500, "miles")
  9346. },
  9347. ]
  9348. ))
  9349. characterMakers.push(() => makeCharacter(
  9350. { name: "Colin T." },
  9351. {
  9352. front: {
  9353. height: math.unit(1.8796, "m"),
  9354. weight: math.unit(230, "lb"),
  9355. name: "Front",
  9356. image: {
  9357. source: "./media/characters/colin-t/front.svg",
  9358. extra: 1272 / 1193,
  9359. bottom: 0.07
  9360. }
  9361. },
  9362. },
  9363. [
  9364. {
  9365. name: "Micro",
  9366. height: math.unit(0.571, "meters")
  9367. },
  9368. {
  9369. name: "Normal",
  9370. height: math.unit(1.8796, "meters"),
  9371. default: true
  9372. },
  9373. {
  9374. name: "Tall",
  9375. height: math.unit(4, "meters")
  9376. },
  9377. {
  9378. name: "Macro",
  9379. height: math.unit(67.241, "meters")
  9380. },
  9381. {
  9382. name: "Megamacro",
  9383. height: math.unit(371.856, "meters")
  9384. },
  9385. {
  9386. name: "Planetary",
  9387. height: math.unit(12631.5689, "km")
  9388. },
  9389. ]
  9390. ))
  9391. characterMakers.push(() => makeCharacter(
  9392. { name: "Matvei" },
  9393. {
  9394. front: {
  9395. height: math.unit(1.85, "meters"),
  9396. weight: math.unit(80, "kg"),
  9397. name: "Front",
  9398. image: {
  9399. source: "./media/characters/matvei/front.svg",
  9400. extra: 614 / 594,
  9401. bottom: 0.01
  9402. }
  9403. },
  9404. },
  9405. [
  9406. {
  9407. name: "Normal",
  9408. height: math.unit(1.85, "meters"),
  9409. default: true
  9410. },
  9411. ]
  9412. ))
  9413. characterMakers.push(() => makeCharacter(
  9414. { name: "Quincy" },
  9415. {
  9416. front: {
  9417. height: math.unit(5 + 9 / 12, "feet"),
  9418. weight: math.unit(70, "lb"),
  9419. name: "Front",
  9420. image: {
  9421. source: "./media/characters/quincy/front.svg",
  9422. extra: 3041 / 2751
  9423. }
  9424. },
  9425. back: {
  9426. height: math.unit(5 + 9 / 12, "feet"),
  9427. weight: math.unit(70, "lb"),
  9428. name: "Back",
  9429. image: {
  9430. source: "./media/characters/quincy/back.svg",
  9431. extra: 3041 / 2751
  9432. }
  9433. },
  9434. flying: {
  9435. height: math.unit(5 + 4 / 12, "feet"),
  9436. weight: math.unit(70, "lb"),
  9437. name: "Flying",
  9438. image: {
  9439. source: "./media/characters/quincy/flying.svg",
  9440. extra: 1044 / 930
  9441. }
  9442. },
  9443. },
  9444. [
  9445. {
  9446. name: "Micro",
  9447. height: math.unit(3, "cm")
  9448. },
  9449. {
  9450. name: "Normal",
  9451. height: math.unit(5 + 9 / 12, "feet")
  9452. },
  9453. {
  9454. name: "Macro",
  9455. height: math.unit(200, "meters"),
  9456. default: true
  9457. },
  9458. {
  9459. name: "Megamacro",
  9460. height: math.unit(1000, "meters")
  9461. },
  9462. ]
  9463. ))
  9464. characterMakers.push(() => makeCharacter(
  9465. { name: "Vanrel" },
  9466. {
  9467. front: {
  9468. height: math.unit(4 + 7 / 12, "feet"),
  9469. weight: math.unit(150, "lb"),
  9470. name: "Front",
  9471. image: {
  9472. source: "./media/characters/vanrel/front.svg",
  9473. extra: 1,
  9474. bottom: 0.02
  9475. }
  9476. },
  9477. elemental: {
  9478. height: math.unit(3, "feet"),
  9479. weight: math.unit(150, "lb"),
  9480. name: "Elemental",
  9481. image: {
  9482. source: "./media/characters/vanrel/elemental.svg",
  9483. extra: 192.3/162.8,
  9484. bottom: 1.79/194.17
  9485. }
  9486. },
  9487. side: {
  9488. height: math.unit(4 + 7 / 12, "feet"),
  9489. weight: math.unit(150, "lb"),
  9490. name: "Side",
  9491. image: {
  9492. source: "./media/characters/vanrel/side.svg",
  9493. extra: 1,
  9494. bottom: 0.025
  9495. }
  9496. },
  9497. tome: {
  9498. height: math.unit(1.35, "feet"),
  9499. weight: math.unit(10, "lb"),
  9500. name: "Vanrel's Tome",
  9501. rename: true,
  9502. image: {
  9503. source: "./media/characters/vanrel/tome.svg"
  9504. }
  9505. },
  9506. beans: {
  9507. height: math.unit(0.89, "feet"),
  9508. name: "Beans",
  9509. image: {
  9510. source: "./media/characters/vanrel/beans.svg"
  9511. }
  9512. },
  9513. },
  9514. [
  9515. {
  9516. name: "Normal",
  9517. height: math.unit(4 + 7 / 12, "feet"),
  9518. default: true
  9519. },
  9520. ]
  9521. ))
  9522. characterMakers.push(() => makeCharacter(
  9523. { name: "Kuiper Vanrel" },
  9524. {
  9525. front: {
  9526. height: math.unit(7 + 5 / 12, "feet"),
  9527. weight: math.unit(150, "lb"),
  9528. name: "Front",
  9529. image: {
  9530. source: "./media/characters/kuiper-vanrel/front.svg",
  9531. extra: 1118 / 1068,
  9532. bottom: 0.09
  9533. }
  9534. },
  9535. foot: {
  9536. height: math.unit(0.55, "meters"),
  9537. name: "Foot",
  9538. image: {
  9539. source: "./media/characters/kuiper-vanrel/foot.svg",
  9540. }
  9541. },
  9542. battle: {
  9543. height: math.unit(6.824, "feet"),
  9544. weight: math.unit(150, "lb"),
  9545. name: "Battle",
  9546. image: {
  9547. source: "./media/characters/kuiper-vanrel/battle.svg",
  9548. extra: 1466/1327,
  9549. bottom: 29/1492.5
  9550. }
  9551. },
  9552. },
  9553. [
  9554. {
  9555. name: "Normal",
  9556. height: math.unit(7 + 5 / 12, "feet"),
  9557. default: true
  9558. },
  9559. ]
  9560. ))
  9561. characterMakers.push(() => makeCharacter(
  9562. { name: "Keset Vanrel" },
  9563. {
  9564. front: {
  9565. height: math.unit(8 + 5 / 12, "feet"),
  9566. weight: math.unit(150, "lb"),
  9567. name: "Front",
  9568. image: {
  9569. source: "./media/characters/keset-vanrel/front.svg",
  9570. extra: 1150 / 1084,
  9571. bottom: 0.05
  9572. }
  9573. },
  9574. hand: {
  9575. height: math.unit(0.6, "meters"),
  9576. name: "Hand",
  9577. image: {
  9578. source: "./media/characters/keset-vanrel/hand.svg"
  9579. }
  9580. },
  9581. foot: {
  9582. height: math.unit(0.94978, "meters"),
  9583. name: "Foot",
  9584. image: {
  9585. source: "./media/characters/keset-vanrel/foot.svg"
  9586. }
  9587. },
  9588. battle: {
  9589. height: math.unit(7.408, "feet"),
  9590. weight: math.unit(150, "lb"),
  9591. name: "Battle",
  9592. image: {
  9593. source: "./media/characters/keset-vanrel/battle.svg",
  9594. extra: 1890/1386,
  9595. bottom: 73.28/1970
  9596. }
  9597. },
  9598. },
  9599. [
  9600. {
  9601. name: "Normal",
  9602. height: math.unit(8 + 5 / 12, "feet"),
  9603. default: true
  9604. },
  9605. ]
  9606. ))
  9607. characterMakers.push(() => makeCharacter(
  9608. { name: "Neos" },
  9609. {
  9610. front: {
  9611. height: math.unit(6, "feet"),
  9612. weight: math.unit(150, "lb"),
  9613. name: "Front",
  9614. image: {
  9615. source: "./media/characters/neos/front.svg",
  9616. extra: 1696 / 992,
  9617. bottom: 0.14
  9618. }
  9619. },
  9620. },
  9621. [
  9622. {
  9623. name: "Normal",
  9624. height: math.unit(54, "cm"),
  9625. default: true
  9626. },
  9627. {
  9628. name: "Macro",
  9629. height: math.unit(100, "m")
  9630. },
  9631. {
  9632. name: "Megamacro",
  9633. height: math.unit(10, "km")
  9634. },
  9635. {
  9636. name: "Megamacro+",
  9637. height: math.unit(100, "km")
  9638. },
  9639. {
  9640. name: "Gigamacro",
  9641. height: math.unit(100, "Mm")
  9642. },
  9643. {
  9644. name: "Teramacro",
  9645. height: math.unit(100, "Gm")
  9646. },
  9647. {
  9648. name: "Examacro",
  9649. height: math.unit(100, "Em")
  9650. },
  9651. {
  9652. name: "Godly",
  9653. height: math.unit(10000, "Ym")
  9654. },
  9655. {
  9656. name: "Beyond Godly",
  9657. height: math.unit(10000000, "Ym")
  9658. },
  9659. ]
  9660. ))
  9661. characterMakers.push(() => makeCharacter(
  9662. { name: "Sammy Mouse" },
  9663. {
  9664. feminine: {
  9665. height: math.unit(5, "feet"),
  9666. weight: math.unit(100, "lb"),
  9667. name: "Feminine",
  9668. image: {
  9669. source: "./media/characters/sammy-mouse/feminine.svg",
  9670. extra: 2526 / 2425,
  9671. bottom: 0.123
  9672. }
  9673. },
  9674. masculine: {
  9675. height: math.unit(5, "feet"),
  9676. weight: math.unit(100, "lb"),
  9677. name: "Masculine",
  9678. image: {
  9679. source: "./media/characters/sammy-mouse/masculine.svg",
  9680. extra: 2526 / 2425,
  9681. bottom: 0.123
  9682. }
  9683. },
  9684. },
  9685. [
  9686. {
  9687. name: "Micro",
  9688. height: math.unit(5, "inches")
  9689. },
  9690. {
  9691. name: "Normal",
  9692. height: math.unit(5, "feet"),
  9693. default: true
  9694. },
  9695. {
  9696. name: "Macro",
  9697. height: math.unit(60, "feet")
  9698. },
  9699. ]
  9700. ))
  9701. characterMakers.push(() => makeCharacter(
  9702. { name: "Kole" },
  9703. {
  9704. front: {
  9705. height: math.unit(4, "feet"),
  9706. weight: math.unit(50, "lb"),
  9707. name: "Front",
  9708. image: {
  9709. source: "./media/characters/kole/front.svg",
  9710. extra: 1423 / 1303,
  9711. bottom: 0.025
  9712. }
  9713. },
  9714. back: {
  9715. height: math.unit(4, "feet"),
  9716. weight: math.unit(50, "lb"),
  9717. name: "Back",
  9718. image: {
  9719. source: "./media/characters/kole/back.svg",
  9720. extra: 1426 / 1280,
  9721. bottom: 0.02
  9722. }
  9723. },
  9724. },
  9725. [
  9726. {
  9727. name: "Normal",
  9728. height: math.unit(4, "feet"),
  9729. default: true
  9730. },
  9731. ]
  9732. ))
  9733. characterMakers.push(() => makeCharacter(
  9734. { name: "Rufran" },
  9735. {
  9736. front: {
  9737. height: math.unit(2 + 6 / 12, "feet"),
  9738. weight: math.unit(20, "lb"),
  9739. name: "Front",
  9740. image: {
  9741. source: "./media/characters/rufran/front.svg",
  9742. extra: 2041 / 1839,
  9743. bottom: 0.055
  9744. }
  9745. },
  9746. back: {
  9747. height: math.unit(2 + 6 / 12, "feet"),
  9748. weight: math.unit(20, "lb"),
  9749. name: "Back",
  9750. image: {
  9751. source: "./media/characters/rufran/back.svg",
  9752. extra: 2054 / 1839,
  9753. bottom: 0.01
  9754. }
  9755. },
  9756. hand: {
  9757. height: math.unit(0.2166, "meters"),
  9758. name: "Hand",
  9759. image: {
  9760. source: "./media/characters/rufran/hand.svg"
  9761. }
  9762. },
  9763. foot: {
  9764. height: math.unit(0.185, "meters"),
  9765. name: "Foot",
  9766. image: {
  9767. source: "./media/characters/rufran/foot.svg"
  9768. }
  9769. },
  9770. },
  9771. [
  9772. {
  9773. name: "Micro",
  9774. height: math.unit(1, "inch")
  9775. },
  9776. {
  9777. name: "Normal",
  9778. height: math.unit(2 + 6 / 12, "feet"),
  9779. default: true
  9780. },
  9781. {
  9782. name: "Big",
  9783. height: math.unit(60, "feet")
  9784. },
  9785. {
  9786. name: "Macro",
  9787. height: math.unit(325, "feet")
  9788. },
  9789. ]
  9790. ))
  9791. characterMakers.push(() => makeCharacter(
  9792. { name: "Chip" },
  9793. {
  9794. front: {
  9795. height: math.unit(0.3, "meters"),
  9796. weight: math.unit(3.5, "kg"),
  9797. name: "Front",
  9798. image: {
  9799. source: "./media/characters/chip/front.svg",
  9800. extra: 748 / 674
  9801. }
  9802. },
  9803. },
  9804. [
  9805. {
  9806. name: "Micro",
  9807. height: math.unit(1, "inch"),
  9808. default: true
  9809. },
  9810. ]
  9811. ))
  9812. characterMakers.push(() => makeCharacter(
  9813. { name: "Torvid" },
  9814. {
  9815. side: {
  9816. height: math.unit(2.3, "meters"),
  9817. weight: math.unit(3500, "lb"),
  9818. name: "Side",
  9819. image: {
  9820. source: "./media/characters/torvid/side.svg",
  9821. extra: 1972 / 722,
  9822. bottom: 0.035
  9823. }
  9824. },
  9825. },
  9826. [
  9827. {
  9828. name: "Normal",
  9829. height: math.unit(2.3, "meters"),
  9830. default: true
  9831. },
  9832. ]
  9833. ))
  9834. characterMakers.push(() => makeCharacter(
  9835. { name: "Susan" },
  9836. {
  9837. front: {
  9838. height: math.unit(2, "meters"),
  9839. weight: math.unit(150.5, "kg"),
  9840. name: "Front",
  9841. image: {
  9842. source: "./media/characters/susan/front.svg",
  9843. extra: 693 / 635,
  9844. bottom: 0.05
  9845. }
  9846. },
  9847. },
  9848. [
  9849. {
  9850. name: "Megamacro",
  9851. height: math.unit(505, "miles"),
  9852. default: true
  9853. },
  9854. ]
  9855. ))
  9856. characterMakers.push(() => makeCharacter(
  9857. { name: "Raindrops" },
  9858. {
  9859. front: {
  9860. height: math.unit(6, "feet"),
  9861. weight: math.unit(150, "lb"),
  9862. name: "Front",
  9863. image: {
  9864. source: "./media/characters/raindrops/front.svg",
  9865. extra: 2655 / 2461,
  9866. bottom: 0.02
  9867. }
  9868. },
  9869. back: {
  9870. height: math.unit(6, "feet"),
  9871. weight: math.unit(150, "lb"),
  9872. name: "Back",
  9873. image: {
  9874. source: "./media/characters/raindrops/back.svg",
  9875. extra: 2574 / 2400,
  9876. bottom: 0.03
  9877. }
  9878. },
  9879. },
  9880. [
  9881. {
  9882. name: "Micro",
  9883. height: math.unit(6, "inches")
  9884. },
  9885. {
  9886. name: "Normal",
  9887. height: math.unit(6 + 2 / 12, "feet")
  9888. },
  9889. {
  9890. name: "Macro",
  9891. height: math.unit(131, "feet"),
  9892. default: true
  9893. },
  9894. {
  9895. name: "Megamacro",
  9896. height: math.unit(15, "miles")
  9897. },
  9898. {
  9899. name: "Gigamacro",
  9900. height: math.unit(4000, "miles")
  9901. },
  9902. {
  9903. name: "Teramacro",
  9904. height: math.unit(315000, "miles")
  9905. },
  9906. ]
  9907. ))
  9908. characterMakers.push(() => makeCharacter(
  9909. { name: "Tezwa" },
  9910. {
  9911. front: {
  9912. height: math.unit(2.794, "meters"),
  9913. weight: math.unit(325, "kg"),
  9914. name: "Front",
  9915. image: {
  9916. source: "./media/characters/tezwa/front.svg",
  9917. extra: 2083 / 1906,
  9918. bottom: 0.031
  9919. }
  9920. },
  9921. foot: {
  9922. height: math.unit(0.687, "meters"),
  9923. name: "Foot",
  9924. image: {
  9925. source: "./media/characters/tezwa/foot.svg"
  9926. }
  9927. },
  9928. },
  9929. [
  9930. {
  9931. name: "Normal",
  9932. height: math.unit(9 + 2 / 12, "feet"),
  9933. default: true
  9934. },
  9935. ]
  9936. ))
  9937. characterMakers.push(() => makeCharacter(
  9938. { name: "Typhus" },
  9939. {
  9940. front: {
  9941. height: math.unit(58, "feet"),
  9942. weight: math.unit(89000, "lb"),
  9943. name: "Front",
  9944. image: {
  9945. source: "./media/characters/typhus/front.svg",
  9946. extra: 816 / 800,
  9947. bottom: 0.065
  9948. }
  9949. },
  9950. },
  9951. [
  9952. {
  9953. name: "Macro",
  9954. height: math.unit(58, "feet"),
  9955. default: true
  9956. },
  9957. ]
  9958. ))
  9959. characterMakers.push(() => makeCharacter(
  9960. { name: "Lyra Von Wulf" },
  9961. {
  9962. front: {
  9963. height: math.unit(12, "feet"),
  9964. weight: math.unit(6, "tonnes"),
  9965. name: "Front",
  9966. image: {
  9967. source: "./media/characters/lyra-von-wulf/front.svg",
  9968. extra: 1,
  9969. bottom: 0.10
  9970. }
  9971. },
  9972. frontMecha: {
  9973. height: math.unit(12, "feet"),
  9974. weight: math.unit(12, "tonnes"),
  9975. name: "Front (Mecha)",
  9976. image: {
  9977. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  9978. extra: 1,
  9979. bottom: 0.042
  9980. }
  9981. },
  9982. maw: {
  9983. height: math.unit(2.2, "feet"),
  9984. name: "Maw",
  9985. image: {
  9986. source: "./media/characters/lyra-von-wulf/maw.svg"
  9987. }
  9988. },
  9989. },
  9990. [
  9991. {
  9992. name: "Normal",
  9993. height: math.unit(12, "feet"),
  9994. default: true
  9995. },
  9996. {
  9997. name: "Classic",
  9998. height: math.unit(50, "feet")
  9999. },
  10000. {
  10001. name: "Macro",
  10002. height: math.unit(500, "feet")
  10003. },
  10004. {
  10005. name: "Megamacro",
  10006. height: math.unit(1, "mile")
  10007. },
  10008. {
  10009. name: "Gigamacro",
  10010. height: math.unit(400, "miles")
  10011. },
  10012. {
  10013. name: "Teramacro",
  10014. height: math.unit(22000, "miles")
  10015. },
  10016. {
  10017. name: "Solarmacro",
  10018. height: math.unit(8600000, "miles")
  10019. },
  10020. {
  10021. name: "Galactic",
  10022. height: math.unit(1057000, "lightyears")
  10023. },
  10024. ]
  10025. ))
  10026. characterMakers.push(() => makeCharacter(
  10027. { name: "Dixon" },
  10028. {
  10029. front: {
  10030. height: math.unit(6 + 10 / 12, "feet"),
  10031. weight: math.unit(150, "lb"),
  10032. name: "Front",
  10033. image: {
  10034. source: "./media/characters/dixon/front.svg",
  10035. extra: 3361 / 3209,
  10036. bottom: 0.01
  10037. }
  10038. },
  10039. },
  10040. [
  10041. {
  10042. name: "Normal",
  10043. height: math.unit(6 + 10 / 12, "feet"),
  10044. default: true
  10045. },
  10046. {
  10047. name: "Big",
  10048. height: math.unit(12, "meters")
  10049. },
  10050. {
  10051. name: "Macro",
  10052. height: math.unit(500, "meters")
  10053. },
  10054. {
  10055. name: "Megamacro",
  10056. height: math.unit(2, "km")
  10057. },
  10058. ]
  10059. ))
  10060. characterMakers.push(() => makeCharacter(
  10061. { name: "Kauko" },
  10062. {
  10063. front: {
  10064. height: math.unit(185, "cm"),
  10065. weight: math.unit(68, "kg"),
  10066. name: "Front",
  10067. image: {
  10068. source: "./media/characters/kauko/front.svg",
  10069. extra: 1455 / 1421,
  10070. bottom: 0.03
  10071. }
  10072. },
  10073. back: {
  10074. height: math.unit(185, "cm"),
  10075. weight: math.unit(68, "kg"),
  10076. name: "Back",
  10077. image: {
  10078. source: "./media/characters/kauko/back.svg",
  10079. extra: 1455 / 1421,
  10080. bottom: 0.004
  10081. }
  10082. },
  10083. },
  10084. [
  10085. {
  10086. name: "Normal",
  10087. height: math.unit(185, "cm"),
  10088. default: true
  10089. },
  10090. ]
  10091. ))
  10092. characterMakers.push(() => makeCharacter(
  10093. { name: "Varg" },
  10094. {
  10095. front: {
  10096. height: math.unit(6, "feet"),
  10097. weight: math.unit(150, "kg"),
  10098. name: "Front",
  10099. image: {
  10100. source: "./media/characters/varg/front.svg",
  10101. extra: 1108 / 1018,
  10102. bottom: 0.0375
  10103. }
  10104. },
  10105. },
  10106. [
  10107. {
  10108. name: "Normal",
  10109. height: math.unit(5, "meters")
  10110. },
  10111. {
  10112. name: "Macro",
  10113. height: math.unit(200, "meters")
  10114. },
  10115. {
  10116. name: "Megamacro",
  10117. height: math.unit(20, "kilometers")
  10118. },
  10119. {
  10120. name: "True Size",
  10121. height: math.unit(211, "km"),
  10122. default: true
  10123. },
  10124. {
  10125. name: "Gigamacro",
  10126. height: math.unit(1000, "km")
  10127. },
  10128. {
  10129. name: "Gigamacro+",
  10130. height: math.unit(8000, "km")
  10131. },
  10132. {
  10133. name: "Teramacro",
  10134. height: math.unit(1000000, "km")
  10135. },
  10136. ]
  10137. ))
  10138. characterMakers.push(() => makeCharacter(
  10139. { name: "Dayza" },
  10140. {
  10141. front: {
  10142. height: math.unit(7 + 7 / 12, "feet"),
  10143. weight: math.unit(267, "lb"),
  10144. name: "Front",
  10145. image: {
  10146. source: "./media/characters/dayza/front.svg",
  10147. extra: 1262 / 1200,
  10148. bottom: 0.035
  10149. }
  10150. },
  10151. side: {
  10152. height: math.unit(7 + 7 / 12, "feet"),
  10153. weight: math.unit(267, "lb"),
  10154. name: "Side",
  10155. image: {
  10156. source: "./media/characters/dayza/side.svg",
  10157. extra: 1295 / 1245,
  10158. bottom: 0.05
  10159. }
  10160. },
  10161. back: {
  10162. height: math.unit(7 + 7 / 12, "feet"),
  10163. weight: math.unit(267, "lb"),
  10164. name: "Back",
  10165. image: {
  10166. source: "./media/characters/dayza/back.svg",
  10167. extra: 1241 / 1170
  10168. }
  10169. },
  10170. },
  10171. [
  10172. {
  10173. name: "Normal",
  10174. height: math.unit(7 + 7 / 12, "feet"),
  10175. default: true
  10176. },
  10177. {
  10178. name: "Macro",
  10179. height: math.unit(155, "feet")
  10180. },
  10181. ]
  10182. ))
  10183. characterMakers.push(() => makeCharacter(
  10184. { name: "Xanthos" },
  10185. {
  10186. front: {
  10187. height: math.unit(6 + 5 / 12, "feet"),
  10188. weight: math.unit(160, "lb"),
  10189. name: "Front",
  10190. image: {
  10191. source: "./media/characters/xanthos/front.svg",
  10192. extra: 1,
  10193. bottom: 0.04
  10194. }
  10195. },
  10196. back: {
  10197. height: math.unit(6 + 5 / 12, "feet"),
  10198. weight: math.unit(160, "lb"),
  10199. name: "Back",
  10200. image: {
  10201. source: "./media/characters/xanthos/back.svg",
  10202. extra: 1,
  10203. bottom: 0.03
  10204. }
  10205. },
  10206. hand: {
  10207. height: math.unit(0.928, "feet"),
  10208. name: "Hand",
  10209. image: {
  10210. source: "./media/characters/xanthos/hand.svg"
  10211. }
  10212. },
  10213. foot: {
  10214. height: math.unit(1.286, "feet"),
  10215. name: "Foot",
  10216. image: {
  10217. source: "./media/characters/xanthos/foot.svg"
  10218. }
  10219. },
  10220. },
  10221. [
  10222. {
  10223. name: "Normal",
  10224. height: math.unit(6 + 5 / 12, "feet"),
  10225. default: true
  10226. },
  10227. {
  10228. name: "Normal+",
  10229. height: math.unit(6, "meters")
  10230. },
  10231. {
  10232. name: "Macro",
  10233. height: math.unit(40, "feet")
  10234. },
  10235. {
  10236. name: "Macro+",
  10237. height: math.unit(200, "meters")
  10238. },
  10239. {
  10240. name: "Megamacro",
  10241. height: math.unit(20, "km")
  10242. },
  10243. {
  10244. name: "Megamacro+",
  10245. height: math.unit(100, "km")
  10246. },
  10247. ]
  10248. ))
  10249. characterMakers.push(() => makeCharacter(
  10250. { name: "Grynn" },
  10251. {
  10252. front: {
  10253. height: math.unit(6 + 3 / 12, "feet"),
  10254. weight: math.unit(215, "lb"),
  10255. name: "Front",
  10256. image: {
  10257. source: "./media/characters/grynn/front.svg",
  10258. extra: 4627 / 4209,
  10259. bottom: 0.047
  10260. }
  10261. },
  10262. },
  10263. [
  10264. {
  10265. name: "Micro",
  10266. height: math.unit(6, "inches")
  10267. },
  10268. {
  10269. name: "Normal",
  10270. height: math.unit(6 + 3 / 12, "feet"),
  10271. default: true
  10272. },
  10273. {
  10274. name: "Big",
  10275. height: math.unit(104, "feet")
  10276. },
  10277. {
  10278. name: "Macro",
  10279. height: math.unit(944, "feet")
  10280. },
  10281. {
  10282. name: "Macro+",
  10283. height: math.unit(9480, "feet")
  10284. },
  10285. {
  10286. name: "Megamacro",
  10287. height: math.unit(78752, "feet")
  10288. },
  10289. {
  10290. name: "Megamacro+",
  10291. height: math.unit(630128, "feet")
  10292. },
  10293. {
  10294. name: "Megamacro++",
  10295. height: math.unit(3150695, "feet")
  10296. },
  10297. ]
  10298. ))
  10299. characterMakers.push(() => makeCharacter(
  10300. { name: "Mocha Aura" },
  10301. {
  10302. front: {
  10303. height: math.unit(7 + 5 / 12, "feet"),
  10304. weight: math.unit(450, "lb"),
  10305. name: "Front",
  10306. image: {
  10307. source: "./media/characters/mocha-aura/front.svg",
  10308. extra: 1907 / 1817,
  10309. bottom: 0.04
  10310. }
  10311. },
  10312. back: {
  10313. height: math.unit(7 + 5 / 12, "feet"),
  10314. weight: math.unit(450, "lb"),
  10315. name: "Back",
  10316. image: {
  10317. source: "./media/characters/mocha-aura/back.svg",
  10318. extra: 1900 / 1825,
  10319. bottom: 0.045
  10320. }
  10321. },
  10322. },
  10323. [
  10324. {
  10325. name: "Nano",
  10326. height: math.unit(1, "nm")
  10327. },
  10328. {
  10329. name: "Megamicro",
  10330. height: math.unit(1, "mm")
  10331. },
  10332. {
  10333. name: "Micro",
  10334. height: math.unit(3, "inches")
  10335. },
  10336. {
  10337. name: "Normal",
  10338. height: math.unit(7 + 5 / 12, "feet"),
  10339. default: true
  10340. },
  10341. {
  10342. name: "Macro",
  10343. height: math.unit(30, "feet")
  10344. },
  10345. {
  10346. name: "Megamacro",
  10347. height: math.unit(3500, "feet")
  10348. },
  10349. {
  10350. name: "Teramacro",
  10351. height: math.unit(500000, "miles")
  10352. },
  10353. {
  10354. name: "Petamacro",
  10355. height: math.unit(50000000000000000, "parsecs")
  10356. },
  10357. ]
  10358. ))
  10359. characterMakers.push(() => makeCharacter(
  10360. { name: "Ilisha Devya" },
  10361. {
  10362. front: {
  10363. height: math.unit(6, "feet"),
  10364. weight: math.unit(150, "lb"),
  10365. name: "Front",
  10366. image: {
  10367. source: "./media/characters/ilisha-devya/front.svg",
  10368. extra: 1,
  10369. bottom: 0.175
  10370. }
  10371. },
  10372. back: {
  10373. height: math.unit(6, "feet"),
  10374. weight: math.unit(150, "lb"),
  10375. name: "Back",
  10376. image: {
  10377. source: "./media/characters/ilisha-devya/back.svg",
  10378. extra: 1,
  10379. bottom: 0.015
  10380. }
  10381. },
  10382. },
  10383. [
  10384. {
  10385. name: "Macro",
  10386. height: math.unit(500, "feet"),
  10387. default: true
  10388. },
  10389. {
  10390. name: "Megamacro",
  10391. height: math.unit(10, "miles")
  10392. },
  10393. {
  10394. name: "Gigamacro",
  10395. height: math.unit(100000, "miles")
  10396. },
  10397. {
  10398. name: "Examacro",
  10399. height: math.unit(1e9, "lightyears")
  10400. },
  10401. {
  10402. name: "Omniversal",
  10403. height: math.unit(1e33, "lightyears")
  10404. },
  10405. {
  10406. name: "Beyond Infinite",
  10407. height: math.unit(1e100, "lightyears")
  10408. },
  10409. ]
  10410. ))
  10411. characterMakers.push(() => makeCharacter(
  10412. { name: "Mira" },
  10413. {
  10414. Side: {
  10415. height: math.unit(6, "feet"),
  10416. weight: math.unit(150, "lb"),
  10417. name: "Side",
  10418. image: {
  10419. source: "./media/characters/mira/side.svg",
  10420. extra: 900 / 799,
  10421. bottom: 0.02
  10422. }
  10423. },
  10424. },
  10425. [
  10426. {
  10427. name: "Human Size",
  10428. height: math.unit(6, "feet")
  10429. },
  10430. {
  10431. name: "Macro",
  10432. height: math.unit(100, "feet"),
  10433. default: true
  10434. },
  10435. {
  10436. name: "Megamacro",
  10437. height: math.unit(10, "miles")
  10438. },
  10439. {
  10440. name: "Gigamacro",
  10441. height: math.unit(25000, "miles")
  10442. },
  10443. {
  10444. name: "Teramacro",
  10445. height: math.unit(300, "AU")
  10446. },
  10447. {
  10448. name: "Full Size",
  10449. height: math.unit(4.5e10, "lightyears")
  10450. },
  10451. ]
  10452. ))
  10453. characterMakers.push(() => makeCharacter(
  10454. { name: "Holly" },
  10455. {
  10456. front: {
  10457. height: math.unit(6, "feet"),
  10458. weight: math.unit(150, "lb"),
  10459. name: "Front",
  10460. image: {
  10461. source: "./media/characters/holly/front.svg",
  10462. extra: 639 / 606
  10463. }
  10464. },
  10465. back: {
  10466. height: math.unit(6, "feet"),
  10467. weight: math.unit(150, "lb"),
  10468. name: "Back",
  10469. image: {
  10470. source: "./media/characters/holly/back.svg",
  10471. extra: 623 / 598
  10472. }
  10473. },
  10474. frontWorking: {
  10475. height: math.unit(6, "feet"),
  10476. weight: math.unit(150, "lb"),
  10477. name: "Front (Working)",
  10478. image: {
  10479. source: "./media/characters/holly/front-working.svg",
  10480. extra: 607 / 577,
  10481. bottom: 0.048
  10482. }
  10483. },
  10484. },
  10485. [
  10486. {
  10487. name: "Normal",
  10488. height: math.unit(12 + 3 / 12, "feet"),
  10489. default: true
  10490. },
  10491. ]
  10492. ))
  10493. characterMakers.push(() => makeCharacter(
  10494. { name: "Porter" },
  10495. {
  10496. front: {
  10497. height: math.unit(6, "feet"),
  10498. weight: math.unit(150, "lb"),
  10499. name: "Front",
  10500. image: {
  10501. source: "./media/characters/porter/front.svg",
  10502. extra: 1,
  10503. bottom: 0.01
  10504. }
  10505. },
  10506. frontRobes: {
  10507. height: math.unit(6, "feet"),
  10508. weight: math.unit(150, "lb"),
  10509. name: "Front (Robes)",
  10510. image: {
  10511. source: "./media/characters/porter/front-robes.svg",
  10512. extra: 1.01,
  10513. bottom: 0.01
  10514. }
  10515. },
  10516. },
  10517. [
  10518. {
  10519. name: "Normal",
  10520. height: math.unit(11 + 9 / 12, "feet"),
  10521. default: true
  10522. },
  10523. ]
  10524. ))
  10525. characterMakers.push(() => makeCharacter(
  10526. { name: "Lucy" },
  10527. {
  10528. legendary: {
  10529. height: math.unit(6, "feet"),
  10530. weight: math.unit(150, "lb"),
  10531. name: "Legendary",
  10532. image: {
  10533. source: "./media/characters/lucy/legendary.svg",
  10534. extra: 1355 / 1100,
  10535. bottom: 0.045
  10536. }
  10537. },
  10538. },
  10539. [
  10540. {
  10541. name: "Legendary",
  10542. height: math.unit(86882 * 2, "miles"),
  10543. default: true
  10544. },
  10545. ]
  10546. ))
  10547. characterMakers.push(() => makeCharacter(
  10548. { name: "Drusilla" },
  10549. {
  10550. front: {
  10551. height: math.unit(6, "feet"),
  10552. weight: math.unit(150, "lb"),
  10553. name: "Front",
  10554. image: {
  10555. source: "./media/characters/drusilla/front.svg",
  10556. extra: 678 / 635,
  10557. bottom: 0.03
  10558. }
  10559. },
  10560. back: {
  10561. height: math.unit(6, "feet"),
  10562. weight: math.unit(150, "lb"),
  10563. name: "Back",
  10564. image: {
  10565. source: "./media/characters/drusilla/back.svg",
  10566. extra: 678 / 635,
  10567. bottom: 0.005
  10568. }
  10569. },
  10570. },
  10571. [
  10572. {
  10573. name: "Macro",
  10574. height: math.unit(100, "feet")
  10575. },
  10576. {
  10577. name: "Canon Height",
  10578. height: math.unit(2000, "feet"),
  10579. default: true
  10580. },
  10581. ]
  10582. ))
  10583. characterMakers.push(() => makeCharacter(
  10584. { name: "Renard Thatch" },
  10585. {
  10586. front: {
  10587. height: math.unit(6, "feet"),
  10588. weight: math.unit(180, "lb"),
  10589. name: "Front",
  10590. image: {
  10591. source: "./media/characters/renard-thatch/front.svg",
  10592. extra: 2411 / 2275,
  10593. bottom: 0.01
  10594. }
  10595. },
  10596. frontPosing: {
  10597. height: math.unit(6, "feet"),
  10598. weight: math.unit(180, "lb"),
  10599. name: "Front (Posing)",
  10600. image: {
  10601. source: "./media/characters/renard-thatch/front-posing.svg",
  10602. extra: 2381 / 2261,
  10603. bottom: 0.01
  10604. }
  10605. },
  10606. back: {
  10607. height: math.unit(6, "feet"),
  10608. weight: math.unit(180, "lb"),
  10609. name: "Back",
  10610. image: {
  10611. source: "./media/characters/renard-thatch/back.svg",
  10612. extra: 2428 / 2288
  10613. }
  10614. },
  10615. },
  10616. [
  10617. {
  10618. name: "Micro",
  10619. height: math.unit(3, "inches")
  10620. },
  10621. {
  10622. name: "Default",
  10623. height: math.unit(6, "feet"),
  10624. default: true
  10625. },
  10626. {
  10627. name: "Macro",
  10628. height: math.unit(75, "feet")
  10629. },
  10630. ]
  10631. ))
  10632. characterMakers.push(() => makeCharacter(
  10633. { name: "Sekvra" },
  10634. {
  10635. front: {
  10636. height: math.unit(1450, "feet"),
  10637. weight: math.unit(1.21e6, "tons"),
  10638. name: "Front",
  10639. image: {
  10640. source: "./media/characters/sekvra/front.svg",
  10641. extra: 1,
  10642. bottom: 0.03
  10643. }
  10644. },
  10645. frontClothed: {
  10646. height: math.unit(1450, "feet"),
  10647. weight: math.unit(1.21e6, "tons"),
  10648. name: "Front (Clothed)",
  10649. image: {
  10650. source: "./media/characters/sekvra/front-clothed.svg",
  10651. extra: 1,
  10652. bottom: 0.03
  10653. }
  10654. },
  10655. side: {
  10656. height: math.unit(1450, "feet"),
  10657. weight: math.unit(1.21e6, "tons"),
  10658. name: "Side",
  10659. image: {
  10660. source: "./media/characters/sekvra/side.svg",
  10661. extra: 1,
  10662. bottom: 0.025
  10663. }
  10664. },
  10665. back: {
  10666. height: math.unit(1450, "feet"),
  10667. weight: math.unit(1.21e6, "tons"),
  10668. name: "Back",
  10669. image: {
  10670. source: "./media/characters/sekvra/back.svg",
  10671. extra: 1,
  10672. bottom: 0.005
  10673. }
  10674. },
  10675. },
  10676. [
  10677. {
  10678. name: "Macro",
  10679. height: math.unit(1450, "feet"),
  10680. default: true
  10681. },
  10682. {
  10683. name: "Megamacro",
  10684. height: math.unit(15000, "feet")
  10685. },
  10686. ]
  10687. ))
  10688. characterMakers.push(() => makeCharacter(
  10689. { name: "Carmine" },
  10690. {
  10691. front: {
  10692. height: math.unit(6, "feet"),
  10693. weight: math.unit(150, "lb"),
  10694. name: "Front",
  10695. image: {
  10696. source: "./media/characters/carmine/front.svg",
  10697. extra: 1,
  10698. bottom: 0.035
  10699. }
  10700. },
  10701. frontArmor: {
  10702. height: math.unit(6, "feet"),
  10703. weight: math.unit(150, "lb"),
  10704. name: "Front (Armor)",
  10705. image: {
  10706. source: "./media/characters/carmine/front-armor.svg",
  10707. extra: 1,
  10708. bottom: 0.035
  10709. }
  10710. },
  10711. },
  10712. [
  10713. {
  10714. name: "Large",
  10715. height: math.unit(1, "mile")
  10716. },
  10717. {
  10718. name: "Huge",
  10719. height: math.unit(40, "miles"),
  10720. default: true
  10721. },
  10722. {
  10723. name: "Colossal",
  10724. height: math.unit(2500, "miles")
  10725. },
  10726. ]
  10727. ))
  10728. characterMakers.push(() => makeCharacter(
  10729. { name: "Elyssia" },
  10730. {
  10731. front: {
  10732. height: math.unit(6, "feet"),
  10733. weight: math.unit(150, "lb"),
  10734. name: "Front",
  10735. image: {
  10736. source: "./media/characters/elyssia/front.svg",
  10737. extra: 2201 / 2035,
  10738. bottom: 0.05
  10739. }
  10740. },
  10741. frontClothed: {
  10742. height: math.unit(6, "feet"),
  10743. weight: math.unit(150, "lb"),
  10744. name: "Front (Clothed)",
  10745. image: {
  10746. source: "./media/characters/elyssia/front-clothed.svg",
  10747. extra: 2201 / 2035,
  10748. bottom: 0.05
  10749. }
  10750. },
  10751. back: {
  10752. height: math.unit(6, "feet"),
  10753. weight: math.unit(150, "lb"),
  10754. name: "Back",
  10755. image: {
  10756. source: "./media/characters/elyssia/back.svg",
  10757. extra: 2201 / 2035,
  10758. bottom: 0.013
  10759. }
  10760. },
  10761. },
  10762. [
  10763. {
  10764. name: "Smaller",
  10765. height: math.unit(150, "feet")
  10766. },
  10767. {
  10768. name: "Standard",
  10769. height: math.unit(1400, "feet"),
  10770. default: true
  10771. },
  10772. {
  10773. name: "Distracted",
  10774. height: math.unit(15000, "feet")
  10775. },
  10776. ]
  10777. ))
  10778. characterMakers.push(() => makeCharacter(
  10779. { name: "Geno Maxwell" },
  10780. {
  10781. front: {
  10782. height: math.unit(7 + 4 / 12, "feet"),
  10783. weight: math.unit(500, "lb"),
  10784. name: "Front",
  10785. image: {
  10786. source: "./media/characters/geno-maxwell/front.svg",
  10787. extra: 2207 / 2040,
  10788. bottom: 0.015
  10789. }
  10790. },
  10791. },
  10792. [
  10793. {
  10794. name: "Micro",
  10795. height: math.unit(3, "inches")
  10796. },
  10797. {
  10798. name: "Normal",
  10799. height: math.unit(7 + 4 / 12, "feet"),
  10800. default: true
  10801. },
  10802. {
  10803. name: "Macro",
  10804. height: math.unit(220, "feet")
  10805. },
  10806. {
  10807. name: "Megamacro",
  10808. height: math.unit(11, "miles")
  10809. },
  10810. ]
  10811. ))
  10812. characterMakers.push(() => makeCharacter(
  10813. { name: "Regena Maxwell" },
  10814. {
  10815. front: {
  10816. height: math.unit(7 + 4 / 12, "feet"),
  10817. weight: math.unit(500, "lb"),
  10818. name: "Front",
  10819. image: {
  10820. source: "./media/characters/regena-maxwell/front.svg",
  10821. extra: 3115 / 2770,
  10822. bottom: 0.02
  10823. }
  10824. },
  10825. },
  10826. [
  10827. {
  10828. name: "Normal",
  10829. height: math.unit(7 + 4 / 12, "feet"),
  10830. default: true
  10831. },
  10832. {
  10833. name: "Macro",
  10834. height: math.unit(220, "feet")
  10835. },
  10836. {
  10837. name: "Megamacro",
  10838. height: math.unit(11, "miles")
  10839. },
  10840. ]
  10841. ))
  10842. characterMakers.push(() => makeCharacter(
  10843. { name: "XGlidingDragonX" },
  10844. {
  10845. front: {
  10846. height: math.unit(6, "feet"),
  10847. weight: math.unit(150, "lb"),
  10848. name: "Front",
  10849. image: {
  10850. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10851. extra: 860 / 690,
  10852. bottom: 0.03
  10853. }
  10854. },
  10855. },
  10856. [
  10857. {
  10858. name: "Normal",
  10859. height: math.unit(1.7, "meters"),
  10860. default: true
  10861. },
  10862. ]
  10863. ))
  10864. characterMakers.push(() => makeCharacter(
  10865. { name: "Quilly" },
  10866. {
  10867. front: {
  10868. height: math.unit(6, "feet"),
  10869. weight: math.unit(150, "lb"),
  10870. name: "Front",
  10871. image: {
  10872. source: "./media/characters/quilly/front.svg",
  10873. extra: 890 / 776
  10874. }
  10875. },
  10876. },
  10877. [
  10878. {
  10879. name: "Gigamacro",
  10880. height: math.unit(404090, "miles"),
  10881. default: true
  10882. },
  10883. ]
  10884. ))
  10885. characterMakers.push(() => makeCharacter(
  10886. { name: "Tempest" },
  10887. {
  10888. front: {
  10889. height: math.unit(7 + 8 / 12, "feet"),
  10890. weight: math.unit(350, "lb"),
  10891. name: "Front",
  10892. image: {
  10893. source: "./media/characters/tempest/front.svg",
  10894. extra: 1175 / 1086,
  10895. bottom: 0.02
  10896. }
  10897. },
  10898. },
  10899. [
  10900. {
  10901. name: "Normal",
  10902. height: math.unit(7 + 8 / 12, "feet"),
  10903. default: true
  10904. },
  10905. ]
  10906. ))
  10907. characterMakers.push(() => makeCharacter(
  10908. { name: "Rodger" },
  10909. {
  10910. side: {
  10911. height: math.unit(4 + 5 / 12, "feet"),
  10912. weight: math.unit(80, "lb"),
  10913. name: "Side",
  10914. image: {
  10915. source: "./media/characters/rodger/side.svg",
  10916. extra: 1235 / 1118
  10917. }
  10918. },
  10919. },
  10920. [
  10921. {
  10922. name: "Micro",
  10923. height: math.unit(1, "inch")
  10924. },
  10925. {
  10926. name: "Normal",
  10927. height: math.unit(4 + 5 / 12, "feet"),
  10928. default: true
  10929. },
  10930. {
  10931. name: "Macro",
  10932. height: math.unit(120, "feet")
  10933. },
  10934. ]
  10935. ))
  10936. characterMakers.push(() => makeCharacter(
  10937. { name: "Danyel" },
  10938. {
  10939. front: {
  10940. height: math.unit(6, "feet"),
  10941. weight: math.unit(150, "lb"),
  10942. name: "Front",
  10943. image: {
  10944. source: "./media/characters/danyel/front.svg",
  10945. extra: 1185 / 1123,
  10946. bottom: 0.05
  10947. }
  10948. },
  10949. },
  10950. [
  10951. {
  10952. name: "Shrunken",
  10953. height: math.unit(0.5, "mm")
  10954. },
  10955. {
  10956. name: "Micro",
  10957. height: math.unit(1, "mm"),
  10958. default: true
  10959. },
  10960. {
  10961. name: "Upsized",
  10962. height: math.unit(5 + 5 / 12, "feet")
  10963. },
  10964. ]
  10965. ))
  10966. characterMakers.push(() => makeCharacter(
  10967. { name: "Vivian Bijoux" },
  10968. {
  10969. front: {
  10970. height: math.unit(5 + 6 / 12, "feet"),
  10971. weight: math.unit(200, "lb"),
  10972. name: "Front",
  10973. image: {
  10974. source: "./media/characters/vivian-bijoux/front.svg",
  10975. extra: 1,
  10976. bottom: 0.072
  10977. }
  10978. },
  10979. },
  10980. [
  10981. {
  10982. name: "Normal",
  10983. height: math.unit(5 + 6 / 12, "feet"),
  10984. default: true
  10985. },
  10986. {
  10987. name: "Bad Dream",
  10988. height: math.unit(500, "feet")
  10989. },
  10990. {
  10991. name: "Nightmare",
  10992. height: math.unit(500, "miles")
  10993. },
  10994. ]
  10995. ))
  10996. characterMakers.push(() => makeCharacter(
  10997. { name: "Zeta" },
  10998. {
  10999. front: {
  11000. height: math.unit(6 + 1 / 12, "feet"),
  11001. weight: math.unit(260, "lb"),
  11002. name: "Front",
  11003. image: {
  11004. source: "./media/characters/zeta/front.svg",
  11005. extra: 1968 / 1889,
  11006. bottom: 0.06
  11007. }
  11008. },
  11009. back: {
  11010. height: math.unit(6 + 1 / 12, "feet"),
  11011. weight: math.unit(260, "lb"),
  11012. name: "Back",
  11013. image: {
  11014. source: "./media/characters/zeta/back.svg",
  11015. extra: 1944 / 1858,
  11016. bottom: 0.03
  11017. }
  11018. },
  11019. hand: {
  11020. height: math.unit(1.112, "feet"),
  11021. name: "Hand",
  11022. image: {
  11023. source: "./media/characters/zeta/hand.svg"
  11024. }
  11025. },
  11026. foot: {
  11027. height: math.unit(1.48, "feet"),
  11028. name: "Foot",
  11029. image: {
  11030. source: "./media/characters/zeta/foot.svg"
  11031. }
  11032. },
  11033. },
  11034. [
  11035. {
  11036. name: "Micro",
  11037. height: math.unit(6, "inches")
  11038. },
  11039. {
  11040. name: "Normal",
  11041. height: math.unit(6 + 1 / 12, "feet"),
  11042. default: true
  11043. },
  11044. {
  11045. name: "Macro",
  11046. height: math.unit(20, "feet")
  11047. },
  11048. ]
  11049. ))
  11050. characterMakers.push(() => makeCharacter(
  11051. { name: "Jamie Larsen" },
  11052. {
  11053. front: {
  11054. height: math.unit(6, "feet"),
  11055. weight: math.unit(150, "lb"),
  11056. name: "Front",
  11057. image: {
  11058. source: "./media/characters/jamie-larsen/front.svg",
  11059. extra: 962 / 933,
  11060. bottom: 0.02
  11061. }
  11062. },
  11063. back: {
  11064. height: math.unit(6, "feet"),
  11065. weight: math.unit(150, "lb"),
  11066. name: "Back",
  11067. image: {
  11068. source: "./media/characters/jamie-larsen/back.svg",
  11069. extra: 997 / 946
  11070. }
  11071. },
  11072. },
  11073. [
  11074. {
  11075. name: "Macro",
  11076. height: math.unit(28 + 7 / 12, "feet"),
  11077. default: true
  11078. },
  11079. {
  11080. name: "Macro+",
  11081. height: math.unit(180, "feet")
  11082. },
  11083. {
  11084. name: "Megamacro",
  11085. height: math.unit(10, "miles")
  11086. },
  11087. {
  11088. name: "Gigamacro",
  11089. height: math.unit(200000, "miles")
  11090. },
  11091. ]
  11092. ))
  11093. characterMakers.push(() => makeCharacter(
  11094. { name: "Vance" },
  11095. {
  11096. front: {
  11097. height: math.unit(6, "feet"),
  11098. weight: math.unit(120, "lb"),
  11099. name: "Front",
  11100. image: {
  11101. source: "./media/characters/vance/front.svg",
  11102. extra: 1980 / 1890,
  11103. bottom: 0.09
  11104. }
  11105. },
  11106. back: {
  11107. height: math.unit(6, "feet"),
  11108. weight: math.unit(120, "lb"),
  11109. name: "Back",
  11110. image: {
  11111. source: "./media/characters/vance/back.svg",
  11112. extra: 2081 / 1994,
  11113. bottom: 0.014
  11114. }
  11115. },
  11116. hand: {
  11117. height: math.unit(0.88, "feet"),
  11118. name: "Hand",
  11119. image: {
  11120. source: "./media/characters/vance/hand.svg"
  11121. }
  11122. },
  11123. foot: {
  11124. height: math.unit(0.64, "feet"),
  11125. name: "Foot",
  11126. image: {
  11127. source: "./media/characters/vance/foot.svg"
  11128. }
  11129. },
  11130. },
  11131. [
  11132. {
  11133. name: "Small",
  11134. height: math.unit(90, "feet"),
  11135. default: true
  11136. },
  11137. {
  11138. name: "Macro",
  11139. height: math.unit(100, "meters")
  11140. },
  11141. {
  11142. name: "Megamacro",
  11143. height: math.unit(15, "miles")
  11144. },
  11145. ]
  11146. ))
  11147. characterMakers.push(() => makeCharacter(
  11148. { name: "Xochitl" },
  11149. {
  11150. front: {
  11151. height: math.unit(6, "feet"),
  11152. weight: math.unit(180, "lb"),
  11153. name: "Front",
  11154. image: {
  11155. source: "./media/characters/xochitl/front.svg",
  11156. extra: 2297 / 2261,
  11157. bottom: 0.065
  11158. }
  11159. },
  11160. back: {
  11161. height: math.unit(6, "feet"),
  11162. weight: math.unit(180, "lb"),
  11163. name: "Back",
  11164. image: {
  11165. source: "./media/characters/xochitl/back.svg",
  11166. extra: 2386 / 2354,
  11167. bottom: 0.01
  11168. }
  11169. },
  11170. foot: {
  11171. height: math.unit(6 / 5 * 1.15, "feet"),
  11172. weight: math.unit(150, "lb"),
  11173. name: "Foot",
  11174. image: {
  11175. source: "./media/characters/xochitl/foot.svg"
  11176. }
  11177. },
  11178. },
  11179. [
  11180. {
  11181. name: "Macro",
  11182. height: math.unit(80, "feet")
  11183. },
  11184. {
  11185. name: "Macro+",
  11186. height: math.unit(400, "feet"),
  11187. default: true
  11188. },
  11189. {
  11190. name: "Gigamacro",
  11191. height: math.unit(80000, "miles")
  11192. },
  11193. {
  11194. name: "Gigamacro+",
  11195. height: math.unit(400000, "miles")
  11196. },
  11197. {
  11198. name: "Teramacro",
  11199. height: math.unit(300, "AU")
  11200. },
  11201. ]
  11202. ))
  11203. characterMakers.push(() => makeCharacter(
  11204. { name: "Vincent" },
  11205. {
  11206. front: {
  11207. height: math.unit(6, "feet"),
  11208. weight: math.unit(150, "lb"),
  11209. name: "Front",
  11210. image: {
  11211. source: "./media/characters/vincent/front.svg",
  11212. extra: 1130 / 1080,
  11213. bottom: 0.055
  11214. }
  11215. },
  11216. beak: {
  11217. height: math.unit(6 * 0.1, "feet"),
  11218. name: "Beak",
  11219. image: {
  11220. source: "./media/characters/vincent/beak.svg"
  11221. }
  11222. },
  11223. hand: {
  11224. height: math.unit(6 * 0.85, "feet"),
  11225. weight: math.unit(150, "lb"),
  11226. name: "Hand",
  11227. image: {
  11228. source: "./media/characters/vincent/hand.svg"
  11229. }
  11230. },
  11231. foot: {
  11232. height: math.unit(6 * 0.19, "feet"),
  11233. weight: math.unit(150, "lb"),
  11234. name: "Foot",
  11235. image: {
  11236. source: "./media/characters/vincent/foot.svg"
  11237. }
  11238. },
  11239. },
  11240. [
  11241. {
  11242. name: "Base",
  11243. height: math.unit(6 + 5 / 12, "feet"),
  11244. default: true
  11245. },
  11246. {
  11247. name: "Macro",
  11248. height: math.unit(300, "feet")
  11249. },
  11250. {
  11251. name: "Megamacro",
  11252. height: math.unit(2, "miles")
  11253. },
  11254. {
  11255. name: "Gigamacro",
  11256. height: math.unit(1000, "miles")
  11257. },
  11258. ]
  11259. ))
  11260. characterMakers.push(() => makeCharacter(
  11261. { name: "Jay" },
  11262. {
  11263. front: {
  11264. height: math.unit(6 + 2 / 12, "feet"),
  11265. weight: math.unit(265, "lb"),
  11266. name: "Front",
  11267. image: {
  11268. source: "./media/characters/jay/front.svg",
  11269. extra: 1510 / 1430,
  11270. bottom: 0.042
  11271. }
  11272. },
  11273. back: {
  11274. height: math.unit(6 + 2 / 12, "feet"),
  11275. weight: math.unit(265, "lb"),
  11276. name: "Back",
  11277. image: {
  11278. source: "./media/characters/jay/back.svg",
  11279. extra: 1510 / 1430,
  11280. bottom: 0.025
  11281. }
  11282. },
  11283. clothed: {
  11284. height: math.unit(6 + 2 / 12, "feet"),
  11285. weight: math.unit(265, "lb"),
  11286. name: "Front (Clothed)",
  11287. image: {
  11288. source: "./media/characters/jay/clothed.svg",
  11289. extra: 744 / 699,
  11290. bottom: 0.043
  11291. }
  11292. },
  11293. head: {
  11294. height: math.unit(1.772, "feet"),
  11295. name: "Head",
  11296. image: {
  11297. source: "./media/characters/jay/head.svg"
  11298. }
  11299. },
  11300. sizeRay: {
  11301. height: math.unit(1.331, "feet"),
  11302. name: "Size Ray",
  11303. image: {
  11304. source: "./media/characters/jay/size-ray.svg"
  11305. }
  11306. },
  11307. },
  11308. [
  11309. {
  11310. name: "Micro",
  11311. height: math.unit(1, "inch")
  11312. },
  11313. {
  11314. name: "Normal",
  11315. height: math.unit(6 + 2 / 12, "feet"),
  11316. default: true
  11317. },
  11318. {
  11319. name: "Macro",
  11320. height: math.unit(1, "mile")
  11321. },
  11322. {
  11323. name: "Megamacro",
  11324. height: math.unit(100, "miles")
  11325. },
  11326. ]
  11327. ))
  11328. characterMakers.push(() => makeCharacter(
  11329. { name: "Coatl" },
  11330. {
  11331. front: {
  11332. height: math.unit(2, "meters"),
  11333. weight: math.unit(500, "kg"),
  11334. name: "Front",
  11335. image: {
  11336. source: "./media/characters/coatl/front.svg",
  11337. extra: 3948 / 3500,
  11338. bottom: 0.082
  11339. }
  11340. },
  11341. },
  11342. [
  11343. {
  11344. name: "Normal",
  11345. height: math.unit(4, "meters")
  11346. },
  11347. {
  11348. name: "Macro",
  11349. height: math.unit(100, "meters"),
  11350. default: true
  11351. },
  11352. {
  11353. name: "Macro+",
  11354. height: math.unit(300, "meters")
  11355. },
  11356. {
  11357. name: "Megamacro",
  11358. height: math.unit(3, "gigameters")
  11359. },
  11360. {
  11361. name: "Megamacro+",
  11362. height: math.unit(300, "terameters")
  11363. },
  11364. {
  11365. name: "Megamacro++",
  11366. height: math.unit(3, "lightyears")
  11367. },
  11368. ]
  11369. ))
  11370. characterMakers.push(() => makeCharacter(
  11371. { name: "Shiroryu" },
  11372. {
  11373. front: {
  11374. height: math.unit(6, "feet"),
  11375. weight: math.unit(50, "kg"),
  11376. name: "front",
  11377. image: {
  11378. source: "./media/characters/shiroryu/front.svg",
  11379. extra: 1990 / 1935
  11380. }
  11381. },
  11382. },
  11383. [
  11384. {
  11385. name: "Mortal Mingling",
  11386. height: math.unit(3, "meters")
  11387. },
  11388. {
  11389. name: "Kaiju-ish",
  11390. height: math.unit(250, "meters")
  11391. },
  11392. {
  11393. name: "Somewhat Godly",
  11394. height: math.unit(400, "km"),
  11395. default: true
  11396. },
  11397. {
  11398. name: "Planetary",
  11399. height: math.unit(300, "megameters")
  11400. },
  11401. {
  11402. name: "Galaxy-dwarfing",
  11403. height: math.unit(450, "kiloparsecs")
  11404. },
  11405. {
  11406. name: "Universe Eater",
  11407. height: math.unit(150, "gigaparsecs")
  11408. },
  11409. {
  11410. name: "Almost Immeasurable",
  11411. height: math.unit(1.3e266, "yottaparsecs")
  11412. },
  11413. ]
  11414. ))
  11415. characterMakers.push(() => makeCharacter(
  11416. { name: "Umeko" },
  11417. {
  11418. front: {
  11419. height: math.unit(6, "feet"),
  11420. weight: math.unit(150, "lb"),
  11421. name: "Front",
  11422. image: {
  11423. source: "./media/characters/umeko/front.svg",
  11424. extra: 1,
  11425. bottom: 0.019
  11426. }
  11427. },
  11428. frontArmored: {
  11429. height: math.unit(6, "feet"),
  11430. weight: math.unit(150, "lb"),
  11431. name: "Front (Armored)",
  11432. image: {
  11433. source: "./media/characters/umeko/front-armored.svg",
  11434. extra: 1,
  11435. bottom: 0.021
  11436. }
  11437. },
  11438. },
  11439. [
  11440. {
  11441. name: "Macro",
  11442. height: math.unit(220, "feet"),
  11443. default: true
  11444. },
  11445. {
  11446. name: "Guardian Dragon",
  11447. height: math.unit(50, "miles")
  11448. },
  11449. {
  11450. name: "Cosmic",
  11451. height: math.unit(800000, "miles")
  11452. },
  11453. ]
  11454. ))
  11455. characterMakers.push(() => makeCharacter(
  11456. { name: "Cassidy" },
  11457. {
  11458. front: {
  11459. height: math.unit(6, "feet"),
  11460. weight: math.unit(150, "lb"),
  11461. name: "Front",
  11462. image: {
  11463. source: "./media/characters/cassidy/front.svg",
  11464. extra: 1,
  11465. bottom: 0.043
  11466. }
  11467. },
  11468. },
  11469. [
  11470. {
  11471. name: "Canon Height",
  11472. height: math.unit(120, "feet"),
  11473. default: true
  11474. },
  11475. {
  11476. name: "Macro+",
  11477. height: math.unit(400, "feet")
  11478. },
  11479. {
  11480. name: "Macro++",
  11481. height: math.unit(4000, "feet")
  11482. },
  11483. {
  11484. name: "Megamacro",
  11485. height: math.unit(3, "miles")
  11486. },
  11487. ]
  11488. ))
  11489. characterMakers.push(() => makeCharacter(
  11490. { name: "Isaac" },
  11491. {
  11492. front: {
  11493. height: math.unit(6, "feet"),
  11494. weight: math.unit(150, "lb"),
  11495. name: "Front",
  11496. image: {
  11497. source: "./media/characters/isaac/front.svg",
  11498. extra: 896 / 815,
  11499. bottom: 0.11
  11500. }
  11501. },
  11502. },
  11503. [
  11504. {
  11505. name: "Human Size",
  11506. height: math.unit(8, "feet"),
  11507. default: true
  11508. },
  11509. {
  11510. name: "Macro",
  11511. height: math.unit(400, "feet")
  11512. },
  11513. {
  11514. name: "Megamacro",
  11515. height: math.unit(50, "miles")
  11516. },
  11517. {
  11518. name: "Canon Height",
  11519. height: math.unit(200, "AU")
  11520. },
  11521. ]
  11522. ))
  11523. characterMakers.push(() => makeCharacter(
  11524. { name: "Sleekit" },
  11525. {
  11526. front: {
  11527. height: math.unit(6, "feet"),
  11528. weight: math.unit(72, "kg"),
  11529. name: "Front",
  11530. image: {
  11531. source: "./media/characters/sleekit/front.svg",
  11532. extra: 4693 / 4487,
  11533. bottom: 0.012
  11534. }
  11535. },
  11536. },
  11537. [
  11538. {
  11539. name: "Minimum Height",
  11540. height: math.unit(10, "meters")
  11541. },
  11542. {
  11543. name: "Smaller",
  11544. height: math.unit(25, "meters")
  11545. },
  11546. {
  11547. name: "Larger",
  11548. height: math.unit(38, "meters"),
  11549. default: true
  11550. },
  11551. {
  11552. name: "Maximum height",
  11553. height: math.unit(100, "meters")
  11554. },
  11555. ]
  11556. ))
  11557. characterMakers.push(() => makeCharacter(
  11558. { name: "Nillia" },
  11559. {
  11560. front: {
  11561. height: math.unit(6, "feet"),
  11562. weight: math.unit(150, "lb"),
  11563. name: "Front",
  11564. image: {
  11565. source: "./media/characters/nillia/front.svg",
  11566. extra: 2195 / 2037,
  11567. bottom: 0.005
  11568. }
  11569. },
  11570. back: {
  11571. height: math.unit(6, "feet"),
  11572. weight: math.unit(150, "lb"),
  11573. name: "Back",
  11574. image: {
  11575. source: "./media/characters/nillia/back.svg",
  11576. extra: 2195 / 2037,
  11577. bottom: 0.005
  11578. }
  11579. },
  11580. },
  11581. [
  11582. {
  11583. name: "Canon Height",
  11584. height: math.unit(489, "feet"),
  11585. default: true
  11586. }
  11587. ]
  11588. ))
  11589. characterMakers.push(() => makeCharacter(
  11590. { name: "Mesmyriza" },
  11591. {
  11592. front: {
  11593. height: math.unit(6, "feet"),
  11594. weight: math.unit(150, "lb"),
  11595. name: "Front",
  11596. image: {
  11597. source: "./media/characters/mesmyriza/front.svg",
  11598. extra: 2067 / 1784,
  11599. bottom: 0.035
  11600. }
  11601. },
  11602. foot: {
  11603. height: math.unit(6 / (250 / 35), "feet"),
  11604. name: "Foot",
  11605. image: {
  11606. source: "./media/characters/mesmyriza/foot.svg"
  11607. }
  11608. },
  11609. },
  11610. [
  11611. {
  11612. name: "Macro",
  11613. height: math.unit(457, "meters"),
  11614. default: true
  11615. },
  11616. {
  11617. name: "Megamacro",
  11618. height: math.unit(8, "megameters")
  11619. },
  11620. ]
  11621. ))
  11622. characterMakers.push(() => makeCharacter(
  11623. { name: "Saudade" },
  11624. {
  11625. front: {
  11626. height: math.unit(6, "feet"),
  11627. weight: math.unit(250, "lb"),
  11628. name: "Front",
  11629. image: {
  11630. source: "./media/characters/saudade/front.svg",
  11631. extra: 1172 / 1139,
  11632. bottom: 0.035
  11633. }
  11634. },
  11635. },
  11636. [
  11637. {
  11638. name: "Micro",
  11639. height: math.unit(3, "inches")
  11640. },
  11641. {
  11642. name: "Normal",
  11643. height: math.unit(6, "feet"),
  11644. default: true
  11645. },
  11646. {
  11647. name: "Macro",
  11648. height: math.unit(50, "feet")
  11649. },
  11650. {
  11651. name: "Megamacro",
  11652. height: math.unit(2800, "feet")
  11653. },
  11654. ]
  11655. ))
  11656. characterMakers.push(() => makeCharacter(
  11657. { name: "Keireer" },
  11658. {
  11659. front: {
  11660. height: math.unit(5 + 4 / 12, "feet"),
  11661. weight: math.unit(100, "lb"),
  11662. name: "Front",
  11663. image: {
  11664. source: "./media/characters/keireer/front.svg",
  11665. extra: 716 / 666,
  11666. bottom: 0.05
  11667. }
  11668. },
  11669. },
  11670. [
  11671. {
  11672. name: "Normal",
  11673. height: math.unit(5 + 4 / 12, "feet"),
  11674. default: true
  11675. },
  11676. ]
  11677. ))
  11678. characterMakers.push(() => makeCharacter(
  11679. { name: "Mirja" },
  11680. {
  11681. front: {
  11682. height: math.unit(6, "feet"),
  11683. weight: math.unit(90, "kg"),
  11684. name: "Front",
  11685. image: {
  11686. source: "./media/characters/mirja/front.svg",
  11687. extra: 1789 / 1683,
  11688. bottom: 0.05
  11689. }
  11690. },
  11691. frontDressed: {
  11692. height: math.unit(6, "feet"),
  11693. weight: math.unit(90, "lb"),
  11694. name: "Front (Dressed)",
  11695. image: {
  11696. source: "./media/characters/mirja/front-dressed.svg",
  11697. extra: 1789 / 1683,
  11698. bottom: 0.05
  11699. }
  11700. },
  11701. back: {
  11702. height: math.unit(6, "feet"),
  11703. weight: math.unit(90, "lb"),
  11704. name: "Back",
  11705. image: {
  11706. source: "./media/characters/mirja/back.svg",
  11707. extra: 953 / 917,
  11708. bottom: 0.017
  11709. }
  11710. },
  11711. },
  11712. [
  11713. {
  11714. name: "\"Incognito\"",
  11715. height: math.unit(3, "meters")
  11716. },
  11717. {
  11718. name: "Strolling Size",
  11719. height: math.unit(15, "km")
  11720. },
  11721. {
  11722. name: "Larger Strolling Size",
  11723. height: math.unit(400, "km")
  11724. },
  11725. {
  11726. name: "Preferred Size",
  11727. height: math.unit(5000, "km")
  11728. },
  11729. {
  11730. name: "True Size",
  11731. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11732. default: true
  11733. },
  11734. ]
  11735. ))
  11736. characterMakers.push(() => makeCharacter(
  11737. { name: "Nightraver" },
  11738. {
  11739. front: {
  11740. height: math.unit(15, "feet"),
  11741. weight: math.unit(880, "kg"),
  11742. name: "Front",
  11743. image: {
  11744. source: "./media/characters/nightraver/front.svg",
  11745. extra: 2444 / 2160,
  11746. bottom: 0.027
  11747. }
  11748. },
  11749. back: {
  11750. height: math.unit(15, "feet"),
  11751. weight: math.unit(880, "kg"),
  11752. name: "Back",
  11753. image: {
  11754. source: "./media/characters/nightraver/back.svg",
  11755. extra: 2309 / 2180,
  11756. bottom: 0.005
  11757. }
  11758. },
  11759. sole: {
  11760. height: math.unit(2.878, "feet"),
  11761. name: "Sole",
  11762. image: {
  11763. source: "./media/characters/nightraver/sole.svg"
  11764. }
  11765. },
  11766. foot: {
  11767. height: math.unit(2.285, "feet"),
  11768. name: "Foot",
  11769. image: {
  11770. source: "./media/characters/nightraver/foot.svg"
  11771. }
  11772. },
  11773. maw: {
  11774. height: math.unit(2.67, "feet"),
  11775. name: "Maw",
  11776. image: {
  11777. source: "./media/characters/nightraver/maw.svg"
  11778. }
  11779. },
  11780. },
  11781. [
  11782. {
  11783. name: "Micro",
  11784. height: math.unit(1, "cm")
  11785. },
  11786. {
  11787. name: "Normal",
  11788. height: math.unit(15, "feet"),
  11789. default: true
  11790. },
  11791. {
  11792. name: "Macro",
  11793. height: math.unit(300, "feet")
  11794. },
  11795. {
  11796. name: "Megamacro",
  11797. height: math.unit(300, "miles")
  11798. },
  11799. {
  11800. name: "Gigamacro",
  11801. height: math.unit(10000, "miles")
  11802. },
  11803. ]
  11804. ))
  11805. characterMakers.push(() => makeCharacter(
  11806. { name: "Arc" },
  11807. {
  11808. side: {
  11809. height: math.unit(2, "inches"),
  11810. weight: math.unit(5, "grams"),
  11811. name: "Side",
  11812. image: {
  11813. source: "./media/characters/arc/side.svg"
  11814. }
  11815. },
  11816. },
  11817. [
  11818. {
  11819. name: "Micro",
  11820. height: math.unit(2, "inches"),
  11821. default: true
  11822. },
  11823. ]
  11824. ))
  11825. characterMakers.push(() => makeCharacter(
  11826. { name: "Nebula Shahar" },
  11827. {
  11828. front: {
  11829. height: math.unit(1.1938, "meters"),
  11830. weight: math.unit(54, "kg"),
  11831. name: "Front",
  11832. image: {
  11833. source: "./media/characters/nebula-shahar/front.svg",
  11834. extra: 1642 / 1436,
  11835. bottom: 0.06
  11836. }
  11837. },
  11838. },
  11839. [
  11840. {
  11841. name: "Megamicro",
  11842. height: math.unit(0.3, "mm")
  11843. },
  11844. {
  11845. name: "Micro",
  11846. height: math.unit(3, "cm")
  11847. },
  11848. {
  11849. name: "Normal",
  11850. height: math.unit(138, "cm"),
  11851. default: true
  11852. },
  11853. {
  11854. name: "Macro",
  11855. height: math.unit(30, "m")
  11856. },
  11857. ]
  11858. ))
  11859. characterMakers.push(() => makeCharacter(
  11860. { name: "Shayla" },
  11861. {
  11862. front: {
  11863. height: math.unit(5.24, "feet"),
  11864. weight: math.unit(150, "lb"),
  11865. name: "Front",
  11866. image: {
  11867. source: "./media/characters/shayla/front.svg",
  11868. extra: 1512 / 1414,
  11869. bottom: 0.01
  11870. }
  11871. },
  11872. back: {
  11873. height: math.unit(5.24, "feet"),
  11874. weight: math.unit(150, "lb"),
  11875. name: "Back",
  11876. image: {
  11877. source: "./media/characters/shayla/back.svg",
  11878. extra: 1512 / 1414
  11879. }
  11880. },
  11881. hand: {
  11882. height: math.unit(0.7781496062992126, "feet"),
  11883. name: "Hand",
  11884. image: {
  11885. source: "./media/characters/shayla/hand.svg"
  11886. }
  11887. },
  11888. foot: {
  11889. height: math.unit(1.4206036745406823, "feet"),
  11890. name: "Foot",
  11891. image: {
  11892. source: "./media/characters/shayla/foot.svg"
  11893. }
  11894. },
  11895. },
  11896. [
  11897. {
  11898. name: "Micro",
  11899. height: math.unit(0.32, "feet")
  11900. },
  11901. {
  11902. name: "Normal",
  11903. height: math.unit(5.24, "feet"),
  11904. default: true
  11905. },
  11906. {
  11907. name: "Macro",
  11908. height: math.unit(492.12, "feet")
  11909. },
  11910. {
  11911. name: "Megamacro",
  11912. height: math.unit(186.41, "miles")
  11913. },
  11914. ]
  11915. ))
  11916. characterMakers.push(() => makeCharacter(
  11917. { name: "Pia Jr." },
  11918. {
  11919. front: {
  11920. height: math.unit(2.2, "m"),
  11921. weight: math.unit(120, "kg"),
  11922. name: "Front",
  11923. image: {
  11924. source: "./media/characters/pia-jr/front.svg",
  11925. extra: 1000 / 970,
  11926. bottom: 0.035
  11927. }
  11928. },
  11929. hand: {
  11930. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11931. name: "Hand",
  11932. image: {
  11933. source: "./media/characters/pia-jr/hand.svg"
  11934. }
  11935. },
  11936. paw: {
  11937. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11938. name: "Paw",
  11939. image: {
  11940. source: "./media/characters/pia-jr/paw.svg"
  11941. }
  11942. },
  11943. },
  11944. [
  11945. {
  11946. name: "Micro",
  11947. height: math.unit(1.2, "cm")
  11948. },
  11949. {
  11950. name: "Normal",
  11951. height: math.unit(2.2, "m"),
  11952. default: true
  11953. },
  11954. {
  11955. name: "Macro",
  11956. height: math.unit(180, "m")
  11957. },
  11958. {
  11959. name: "Megamacro",
  11960. height: math.unit(420, "km")
  11961. },
  11962. ]
  11963. ))
  11964. characterMakers.push(() => makeCharacter(
  11965. { name: "Pia Sr." },
  11966. {
  11967. front: {
  11968. height: math.unit(2, "m"),
  11969. weight: math.unit(115, "kg"),
  11970. name: "Front",
  11971. image: {
  11972. source: "./media/characters/pia-sr/front.svg",
  11973. extra: 760 / 730,
  11974. bottom: 0.015
  11975. }
  11976. },
  11977. back: {
  11978. height: math.unit(2, "m"),
  11979. weight: math.unit(115, "kg"),
  11980. name: "Back",
  11981. image: {
  11982. source: "./media/characters/pia-sr/back.svg",
  11983. extra: 760 / 730,
  11984. bottom: 0.01
  11985. }
  11986. },
  11987. hand: {
  11988. height: math.unit(0.89 * 6.56 / 6, "feet"),
  11989. name: "Hand",
  11990. image: {
  11991. source: "./media/characters/pia-sr/hand.svg"
  11992. }
  11993. },
  11994. foot: {
  11995. height: math.unit(1.83, "feet"),
  11996. name: "Foot",
  11997. image: {
  11998. source: "./media/characters/pia-sr/foot.svg"
  11999. }
  12000. },
  12001. },
  12002. [
  12003. {
  12004. name: "Micro",
  12005. height: math.unit(88, "mm")
  12006. },
  12007. {
  12008. name: "Normal",
  12009. height: math.unit(2, "m"),
  12010. default: true
  12011. },
  12012. {
  12013. name: "Macro",
  12014. height: math.unit(200, "m")
  12015. },
  12016. {
  12017. name: "Megamacro",
  12018. height: math.unit(420, "km")
  12019. },
  12020. ]
  12021. ))
  12022. characterMakers.push(() => makeCharacter(
  12023. { name: "KIBIBYTE" },
  12024. {
  12025. front: {
  12026. height: math.unit(8 + 2 / 12, "feet"),
  12027. weight: math.unit(300, "lb"),
  12028. name: "Front",
  12029. image: {
  12030. source: "./media/characters/kibibyte/front.svg",
  12031. extra: 2221 / 2098,
  12032. bottom: 0.04
  12033. }
  12034. },
  12035. },
  12036. [
  12037. {
  12038. name: "Normal",
  12039. height: math.unit(8 + 2 / 12, "feet"),
  12040. default: true
  12041. },
  12042. {
  12043. name: "Socialable Macro",
  12044. height: math.unit(50, "feet")
  12045. },
  12046. {
  12047. name: "Macro",
  12048. height: math.unit(300, "feet")
  12049. },
  12050. {
  12051. name: "Megamacro",
  12052. height: math.unit(500, "miles")
  12053. },
  12054. ]
  12055. ))
  12056. characterMakers.push(() => makeCharacter(
  12057. { name: "Felix" },
  12058. {
  12059. front: {
  12060. height: math.unit(6, "feet"),
  12061. weight: math.unit(150, "lb"),
  12062. name: "Front",
  12063. image: {
  12064. source: "./media/characters/felix/front.svg",
  12065. extra: 762 / 722,
  12066. bottom: 0.02
  12067. }
  12068. },
  12069. frontClothed: {
  12070. height: math.unit(6, "feet"),
  12071. weight: math.unit(150, "lb"),
  12072. name: "Front (Clothed)",
  12073. image: {
  12074. source: "./media/characters/felix/front-clothed.svg",
  12075. extra: 762 / 722,
  12076. bottom: 0.02
  12077. }
  12078. },
  12079. },
  12080. [
  12081. {
  12082. name: "Normal",
  12083. height: math.unit(6 + 8 / 12, "feet"),
  12084. default: true
  12085. },
  12086. {
  12087. name: "Macro",
  12088. height: math.unit(2600, "feet")
  12089. },
  12090. {
  12091. name: "Megamacro",
  12092. height: math.unit(450, "miles")
  12093. },
  12094. ]
  12095. ))
  12096. characterMakers.push(() => makeCharacter(
  12097. { name: "Tobo" },
  12098. {
  12099. front: {
  12100. height: math.unit(6 + 1 / 12, "feet"),
  12101. weight: math.unit(250, "lb"),
  12102. name: "Front",
  12103. image: {
  12104. source: "./media/characters/tobo/front.svg",
  12105. extra: 608 / 586,
  12106. bottom: 0.023
  12107. }
  12108. },
  12109. back: {
  12110. height: math.unit(6 + 1 / 12, "feet"),
  12111. weight: math.unit(250, "lb"),
  12112. name: "Back",
  12113. image: {
  12114. source: "./media/characters/tobo/back.svg",
  12115. extra: 608 / 586
  12116. }
  12117. },
  12118. },
  12119. [
  12120. {
  12121. name: "Nano",
  12122. height: math.unit(2, "nm")
  12123. },
  12124. {
  12125. name: "Megamicro",
  12126. height: math.unit(0.1, "mm")
  12127. },
  12128. {
  12129. name: "Micro",
  12130. height: math.unit(1, "inch"),
  12131. default: true
  12132. },
  12133. {
  12134. name: "Human-sized",
  12135. height: math.unit(6 + 1 / 12, "feet")
  12136. },
  12137. {
  12138. name: "Macro",
  12139. height: math.unit(250, "feet")
  12140. },
  12141. {
  12142. name: "Megamacro",
  12143. height: math.unit(75, "miles")
  12144. },
  12145. {
  12146. name: "Texas-sized",
  12147. height: math.unit(750, "miles")
  12148. },
  12149. {
  12150. name: "Teramacro",
  12151. height: math.unit(50000, "miles")
  12152. },
  12153. ]
  12154. ))
  12155. characterMakers.push(() => makeCharacter(
  12156. { name: "Danny Kapowsky" },
  12157. {
  12158. front: {
  12159. height: math.unit(6, "feet"),
  12160. weight: math.unit(269, "lb"),
  12161. name: "Front",
  12162. image: {
  12163. source: "./media/characters/danny-kapowsky/front.svg",
  12164. extra: 766 / 736,
  12165. bottom: 0.044
  12166. }
  12167. },
  12168. back: {
  12169. height: math.unit(6, "feet"),
  12170. weight: math.unit(269, "lb"),
  12171. name: "Back",
  12172. image: {
  12173. source: "./media/characters/danny-kapowsky/back.svg",
  12174. extra: 797 / 760,
  12175. bottom: 0.025
  12176. }
  12177. },
  12178. },
  12179. [
  12180. {
  12181. name: "Macro",
  12182. height: math.unit(150, "feet"),
  12183. default: true
  12184. },
  12185. {
  12186. name: "Macro+",
  12187. height: math.unit(200, "feet")
  12188. },
  12189. {
  12190. name: "Macro++",
  12191. height: math.unit(300, "feet")
  12192. },
  12193. {
  12194. name: "Macro+++",
  12195. height: math.unit(400, "feet")
  12196. },
  12197. ]
  12198. ))
  12199. characterMakers.push(() => makeCharacter(
  12200. { name: "Finn" },
  12201. {
  12202. side: {
  12203. height: math.unit(6, "feet"),
  12204. weight: math.unit(170, "lb"),
  12205. name: "Side",
  12206. image: {
  12207. source: "./media/characters/finn/side.svg",
  12208. extra: 1953 / 1807,
  12209. bottom: 0.057
  12210. }
  12211. },
  12212. },
  12213. [
  12214. {
  12215. name: "Megamacro",
  12216. height: math.unit(14445, "feet"),
  12217. default: true
  12218. },
  12219. ]
  12220. ))
  12221. characterMakers.push(() => makeCharacter(
  12222. { name: "Roy" },
  12223. {
  12224. front: {
  12225. height: math.unit(5 + 6 / 12, "feet"),
  12226. weight: math.unit(125, "lb"),
  12227. name: "Front",
  12228. image: {
  12229. source: "./media/characters/roy/front.svg",
  12230. extra: 1,
  12231. bottom: 0.11
  12232. }
  12233. },
  12234. },
  12235. [
  12236. {
  12237. name: "Micro",
  12238. height: math.unit(3, "inches"),
  12239. default: true
  12240. },
  12241. {
  12242. name: "Normal",
  12243. height: math.unit(5 + 6 / 12, "feet")
  12244. },
  12245. {
  12246. name: "Lesser Macro",
  12247. height: math.unit(60, "feet")
  12248. },
  12249. {
  12250. name: "Greater Macro",
  12251. height: math.unit(120, "feet")
  12252. },
  12253. ]
  12254. ))
  12255. characterMakers.push(() => makeCharacter(
  12256. { name: "Aevsivs" },
  12257. {
  12258. front: {
  12259. height: math.unit(6, "feet"),
  12260. weight: math.unit(100, "lb"),
  12261. name: "Front",
  12262. image: {
  12263. source: "./media/characters/aevsivs/front.svg",
  12264. extra: 1,
  12265. bottom: 0.03
  12266. }
  12267. },
  12268. back: {
  12269. height: math.unit(6, "feet"),
  12270. weight: math.unit(100, "lb"),
  12271. name: "Back",
  12272. image: {
  12273. source: "./media/characters/aevsivs/back.svg"
  12274. }
  12275. },
  12276. },
  12277. [
  12278. {
  12279. name: "Micro",
  12280. height: math.unit(2, "inches"),
  12281. default: true
  12282. },
  12283. {
  12284. name: "Normal",
  12285. height: math.unit(5, "feet")
  12286. },
  12287. ]
  12288. ))
  12289. characterMakers.push(() => makeCharacter(
  12290. { name: "Hildegard" },
  12291. {
  12292. front: {
  12293. height: math.unit(5 + 7 / 12, "feet"),
  12294. weight: math.unit(159, "lb"),
  12295. name: "Front",
  12296. image: {
  12297. source: "./media/characters/hildegard/front.svg",
  12298. extra: 312 / 286,
  12299. bottom: 0.005
  12300. }
  12301. },
  12302. },
  12303. [
  12304. {
  12305. name: "Normal",
  12306. height: math.unit(5 + 7 / 12, "feet"),
  12307. default: true
  12308. },
  12309. ]
  12310. ))
  12311. characterMakers.push(() => makeCharacter(
  12312. { name: "Bernard & Wilder" },
  12313. {
  12314. bernard: {
  12315. height: math.unit(2 + 7 / 12, "feet"),
  12316. weight: math.unit(66, "lb"),
  12317. name: "Bernard",
  12318. rename: true,
  12319. image: {
  12320. source: "./media/characters/bernard-wilder/bernard.svg",
  12321. extra: 192 / 128,
  12322. bottom: 0.05
  12323. }
  12324. },
  12325. wilder: {
  12326. height: math.unit(5 + 8 / 12, "feet"),
  12327. weight: math.unit(143, "lb"),
  12328. name: "Wilder",
  12329. rename: true,
  12330. image: {
  12331. source: "./media/characters/bernard-wilder/wilder.svg",
  12332. extra: 361 / 312,
  12333. bottom: 0.02
  12334. }
  12335. },
  12336. },
  12337. [
  12338. {
  12339. name: "Normal",
  12340. height: math.unit(2 + 7 / 12, "feet"),
  12341. default: true
  12342. },
  12343. ]
  12344. ))
  12345. characterMakers.push(() => makeCharacter(
  12346. { name: "Hearth" },
  12347. {
  12348. anthro: {
  12349. height: math.unit(6 + 1 / 12, "feet"),
  12350. weight: math.unit(155, "lb"),
  12351. name: "Anthro",
  12352. image: {
  12353. source: "./media/characters/hearth/anthro.svg",
  12354. extra: 260 / 250,
  12355. bottom: 0.02
  12356. }
  12357. },
  12358. feral: {
  12359. height: math.unit(3.78, "feet"),
  12360. weight: math.unit(35, "kg"),
  12361. name: "Feral",
  12362. image: {
  12363. source: "./media/characters/hearth/feral.svg",
  12364. extra: 153 / 135,
  12365. bottom: 0.03
  12366. }
  12367. },
  12368. },
  12369. [
  12370. {
  12371. name: "Normal",
  12372. height: math.unit(6 + 1 / 12, "feet"),
  12373. default: true
  12374. },
  12375. ]
  12376. ))
  12377. characterMakers.push(() => makeCharacter(
  12378. { name: "Ingrid" },
  12379. {
  12380. front: {
  12381. height: math.unit(6, "feet"),
  12382. weight: math.unit(182, "lb"),
  12383. name: "Front",
  12384. image: {
  12385. source: "./media/characters/ingrid/front.svg",
  12386. extra: 294 / 268,
  12387. bottom: 0.027
  12388. }
  12389. },
  12390. },
  12391. [
  12392. {
  12393. name: "Normal",
  12394. height: math.unit(6, "feet"),
  12395. default: true
  12396. },
  12397. ]
  12398. ))
  12399. characterMakers.push(() => makeCharacter(
  12400. { name: "Malgam" },
  12401. {
  12402. eevee: {
  12403. height: math.unit(2 + 10 / 12, "feet"),
  12404. weight: math.unit(86, "lb"),
  12405. name: "Malgam",
  12406. image: {
  12407. source: "./media/characters/malgam/eevee.svg",
  12408. extra: 218 / 180,
  12409. bottom: 0.2
  12410. }
  12411. },
  12412. sylveon: {
  12413. height: math.unit(4, "feet"),
  12414. weight: math.unit(101, "lb"),
  12415. name: "Future Malgam",
  12416. rename: true,
  12417. image: {
  12418. source: "./media/characters/malgam/sylveon.svg",
  12419. extra: 371 / 325,
  12420. bottom: 0.015
  12421. }
  12422. },
  12423. gigantamax: {
  12424. height: math.unit(50, "feet"),
  12425. name: "Gigantamax Malgam",
  12426. rename: true,
  12427. image: {
  12428. source: "./media/characters/malgam/gigantamax.svg"
  12429. }
  12430. },
  12431. },
  12432. [
  12433. {
  12434. name: "Normal",
  12435. height: math.unit(2 + 10 / 12, "feet"),
  12436. default: true
  12437. },
  12438. ]
  12439. ))
  12440. characterMakers.push(() => makeCharacter(
  12441. { name: "Fleur" },
  12442. {
  12443. front: {
  12444. height: math.unit(5 + 11 / 12, "feet"),
  12445. weight: math.unit(188, "lb"),
  12446. name: "Front",
  12447. image: {
  12448. source: "./media/characters/fleur/front.svg",
  12449. extra: 309 / 283,
  12450. bottom: 0.007
  12451. }
  12452. },
  12453. },
  12454. [
  12455. {
  12456. name: "Normal",
  12457. height: math.unit(5 + 11 / 12, "feet"),
  12458. default: true
  12459. },
  12460. ]
  12461. ))
  12462. characterMakers.push(() => makeCharacter(
  12463. { name: "Jude" },
  12464. {
  12465. front: {
  12466. height: math.unit(5 + 4 / 12, "feet"),
  12467. weight: math.unit(122, "lb"),
  12468. name: "Front",
  12469. image: {
  12470. source: "./media/characters/jude/front.svg",
  12471. extra: 288 / 273,
  12472. bottom: 0.03
  12473. }
  12474. },
  12475. },
  12476. [
  12477. {
  12478. name: "Normal",
  12479. height: math.unit(5 + 4 / 12, "feet"),
  12480. default: true
  12481. },
  12482. ]
  12483. ))
  12484. characterMakers.push(() => makeCharacter(
  12485. { name: "Seara" },
  12486. {
  12487. front: {
  12488. height: math.unit(5 + 11 / 12, "feet"),
  12489. weight: math.unit(190, "lb"),
  12490. name: "Front",
  12491. image: {
  12492. source: "./media/characters/seara/front.svg",
  12493. extra: 1,
  12494. bottom: 0.05
  12495. }
  12496. },
  12497. },
  12498. [
  12499. {
  12500. name: "Normal",
  12501. height: math.unit(5 + 11 / 12, "feet"),
  12502. default: true
  12503. },
  12504. ]
  12505. ))
  12506. characterMakers.push(() => makeCharacter(
  12507. { name: "Caspian" },
  12508. {
  12509. front: {
  12510. height: math.unit(16 + 5 / 12, "feet"),
  12511. weight: math.unit(524, "lb"),
  12512. name: "Front",
  12513. image: {
  12514. source: "./media/characters/caspian/front.svg",
  12515. extra: 1,
  12516. bottom: 0.04
  12517. }
  12518. },
  12519. },
  12520. [
  12521. {
  12522. name: "Normal",
  12523. height: math.unit(16 + 5 / 12, "feet"),
  12524. default: true
  12525. },
  12526. ]
  12527. ))
  12528. characterMakers.push(() => makeCharacter(
  12529. { name: "Mika" },
  12530. {
  12531. front: {
  12532. height: math.unit(5 + 7 / 12, "feet"),
  12533. weight: math.unit(170, "lb"),
  12534. name: "Front",
  12535. image: {
  12536. source: "./media/characters/mika/front.svg",
  12537. extra: 1,
  12538. bottom: 0.016
  12539. }
  12540. },
  12541. },
  12542. [
  12543. {
  12544. name: "Normal",
  12545. height: math.unit(5 + 7 / 12, "feet"),
  12546. default: true
  12547. },
  12548. ]
  12549. ))
  12550. characterMakers.push(() => makeCharacter(
  12551. { name: "Sol" },
  12552. {
  12553. front: {
  12554. height: math.unit(6 + 2 / 12, "feet"),
  12555. weight: math.unit(268, "lb"),
  12556. name: "Front",
  12557. image: {
  12558. source: "./media/characters/sol/front.svg",
  12559. extra: 247 / 231,
  12560. bottom: 0.05
  12561. }
  12562. },
  12563. },
  12564. [
  12565. {
  12566. name: "Normal",
  12567. height: math.unit(6 + 2 / 12, "feet"),
  12568. default: true
  12569. },
  12570. ]
  12571. ))
  12572. characterMakers.push(() => makeCharacter(
  12573. { name: "Umiko" },
  12574. {
  12575. buizel: {
  12576. height: math.unit(2 + 5 / 12, "feet"),
  12577. weight: math.unit(87, "lb"),
  12578. name: "Buizel",
  12579. image: {
  12580. source: "./media/characters/umiko/buizel.svg",
  12581. extra: 172 / 157,
  12582. bottom: 0.01
  12583. }
  12584. },
  12585. floatzel: {
  12586. height: math.unit(5 + 9 / 12, "feet"),
  12587. weight: math.unit(250, "lb"),
  12588. name: "Floatzel",
  12589. image: {
  12590. source: "./media/characters/umiko/floatzel.svg",
  12591. extra: 262 / 248
  12592. }
  12593. },
  12594. },
  12595. [
  12596. {
  12597. name: "Normal",
  12598. height: math.unit(2 + 5 / 12, "feet"),
  12599. default: true
  12600. },
  12601. ]
  12602. ))
  12603. characterMakers.push(() => makeCharacter(
  12604. { name: "Iliac" },
  12605. {
  12606. front: {
  12607. height: math.unit(6 + 2 / 12, "feet"),
  12608. weight: math.unit(146, "lb"),
  12609. name: "Front",
  12610. image: {
  12611. source: "./media/characters/iliac/front.svg",
  12612. extra: 389 / 365,
  12613. bottom: 0.035
  12614. }
  12615. },
  12616. },
  12617. [
  12618. {
  12619. name: "Normal",
  12620. height: math.unit(6 + 2 / 12, "feet"),
  12621. default: true
  12622. },
  12623. ]
  12624. ))
  12625. characterMakers.push(() => makeCharacter(
  12626. { name: "Topaz" },
  12627. {
  12628. front: {
  12629. height: math.unit(6, "feet"),
  12630. weight: math.unit(170, "lb"),
  12631. name: "Front",
  12632. image: {
  12633. source: "./media/characters/topaz/front.svg",
  12634. extra: 317 / 303,
  12635. bottom: 0.055
  12636. }
  12637. },
  12638. },
  12639. [
  12640. {
  12641. name: "Normal",
  12642. height: math.unit(6, "feet"),
  12643. default: true
  12644. },
  12645. ]
  12646. ))
  12647. characterMakers.push(() => makeCharacter(
  12648. { name: "Gabriel" },
  12649. {
  12650. front: {
  12651. height: math.unit(5 + 11 / 12, "feet"),
  12652. weight: math.unit(144, "lb"),
  12653. name: "Front",
  12654. image: {
  12655. source: "./media/characters/gabriel/front.svg",
  12656. extra: 285 / 262,
  12657. bottom: 0.004
  12658. }
  12659. },
  12660. },
  12661. [
  12662. {
  12663. name: "Normal",
  12664. height: math.unit(5 + 11 / 12, "feet"),
  12665. default: true
  12666. },
  12667. ]
  12668. ))
  12669. characterMakers.push(() => makeCharacter(
  12670. { name: "Tempest (Suicune)" },
  12671. {
  12672. side: {
  12673. height: math.unit(6 + 5 / 12, "feet"),
  12674. weight: math.unit(300, "lb"),
  12675. name: "Side",
  12676. image: {
  12677. source: "./media/characters/tempest-suicune/side.svg",
  12678. extra: 195 / 154,
  12679. bottom: 0.04
  12680. }
  12681. },
  12682. },
  12683. [
  12684. {
  12685. name: "Normal",
  12686. height: math.unit(6 + 5 / 12, "feet"),
  12687. default: true
  12688. },
  12689. ]
  12690. ))
  12691. characterMakers.push(() => makeCharacter(
  12692. { name: "Vulcan" },
  12693. {
  12694. front: {
  12695. height: math.unit(7 + 2 / 12, "feet"),
  12696. weight: math.unit(322, "lb"),
  12697. name: "Front",
  12698. image: {
  12699. source: "./media/characters/vulcan/front.svg",
  12700. extra: 154 / 147,
  12701. bottom: 0.04
  12702. }
  12703. },
  12704. },
  12705. [
  12706. {
  12707. name: "Normal",
  12708. height: math.unit(7 + 2 / 12, "feet"),
  12709. default: true
  12710. },
  12711. ]
  12712. ))
  12713. characterMakers.push(() => makeCharacter(
  12714. { name: "Gault" },
  12715. {
  12716. front: {
  12717. height: math.unit(5 + 10 / 12, "feet"),
  12718. weight: math.unit(264, "lb"),
  12719. name: "Front",
  12720. image: {
  12721. source: "./media/characters/gault/front.svg",
  12722. extra: 161 / 140,
  12723. bottom: 0.028
  12724. }
  12725. },
  12726. },
  12727. [
  12728. {
  12729. name: "Normal",
  12730. height: math.unit(5 + 10 / 12, "feet"),
  12731. default: true
  12732. },
  12733. ]
  12734. ))
  12735. characterMakers.push(() => makeCharacter(
  12736. { name: "Shard" },
  12737. {
  12738. front: {
  12739. height: math.unit(6, "feet"),
  12740. weight: math.unit(150, "lb"),
  12741. name: "Front",
  12742. image: {
  12743. source: "./media/characters/shard/front.svg",
  12744. extra: 273 / 238,
  12745. bottom: 0.02
  12746. }
  12747. },
  12748. },
  12749. [
  12750. {
  12751. name: "Normal",
  12752. height: math.unit(3 + 6 / 12, "feet"),
  12753. default: true
  12754. },
  12755. ]
  12756. ))
  12757. characterMakers.push(() => makeCharacter(
  12758. { name: "Ashe" },
  12759. {
  12760. front: {
  12761. height: math.unit(5 + 11 / 12, "feet"),
  12762. weight: math.unit(146, "lb"),
  12763. name: "Front",
  12764. image: {
  12765. source: "./media/characters/ashe/front.svg",
  12766. extra: 400 / 373,
  12767. bottom: 0.01
  12768. }
  12769. },
  12770. },
  12771. [
  12772. {
  12773. name: "Normal",
  12774. height: math.unit(5 + 11 / 12, "feet"),
  12775. default: true
  12776. },
  12777. ]
  12778. ))
  12779. characterMakers.push(() => makeCharacter(
  12780. { name: "Beatrix" },
  12781. {
  12782. front: {
  12783. height: math.unit(5 + 5 / 12, "feet"),
  12784. weight: math.unit(135, "lb"),
  12785. name: "Front",
  12786. image: {
  12787. source: "./media/characters/beatrix/front.svg",
  12788. extra: 392 / 379,
  12789. bottom: 0.01
  12790. }
  12791. },
  12792. },
  12793. [
  12794. {
  12795. name: "Normal",
  12796. height: math.unit(6, "feet"),
  12797. default: true
  12798. },
  12799. ]
  12800. ))
  12801. characterMakers.push(() => makeCharacter(
  12802. { name: "Ignatius" },
  12803. {
  12804. front: {
  12805. height: math.unit(6, "feet"),
  12806. weight: math.unit(150, "lb"),
  12807. name: "Front",
  12808. image: {
  12809. source: "./media/characters/ignatius/front.svg",
  12810. extra: 245 / 222,
  12811. bottom: 0.01
  12812. }
  12813. },
  12814. },
  12815. [
  12816. {
  12817. name: "Normal",
  12818. height: math.unit(5 + 5 / 12, "feet"),
  12819. default: true
  12820. },
  12821. ]
  12822. ))
  12823. characterMakers.push(() => makeCharacter(
  12824. { name: "Mei Li" },
  12825. {
  12826. front: {
  12827. height: math.unit(6 + 2 / 12, "feet"),
  12828. weight: math.unit(138, "lb"),
  12829. name: "Front",
  12830. image: {
  12831. source: "./media/characters/mei-li/front.svg",
  12832. extra: 237 / 229,
  12833. bottom: 0.03
  12834. }
  12835. },
  12836. },
  12837. [
  12838. {
  12839. name: "Normal",
  12840. height: math.unit(6 + 2 / 12, "feet"),
  12841. default: true
  12842. },
  12843. ]
  12844. ))
  12845. characterMakers.push(() => makeCharacter(
  12846. { name: "Puru" },
  12847. {
  12848. front: {
  12849. height: math.unit(2 + 4 / 12, "feet"),
  12850. weight: math.unit(62, "lb"),
  12851. name: "Front",
  12852. image: {
  12853. source: "./media/characters/puru/front.svg",
  12854. extra: 206 / 149,
  12855. bottom: 0.06
  12856. }
  12857. },
  12858. },
  12859. [
  12860. {
  12861. name: "Normal",
  12862. height: math.unit(2 + 4 / 12, "feet"),
  12863. default: true
  12864. },
  12865. ]
  12866. ))
  12867. characterMakers.push(() => makeCharacter(
  12868. { name: "Kee" },
  12869. {
  12870. taur: {
  12871. height: math.unit(11, "feet"),
  12872. weight: math.unit(500, "lb"),
  12873. name: "Taur",
  12874. image: {
  12875. source: "./media/characters/kee/taur.svg",
  12876. extra: 1,
  12877. bottom: 0.04
  12878. }
  12879. },
  12880. },
  12881. [
  12882. {
  12883. name: "Normal",
  12884. height: math.unit(11, "feet"),
  12885. default: true
  12886. },
  12887. ]
  12888. ))
  12889. characterMakers.push(() => makeCharacter(
  12890. { name: "Cobalt (Dracha)" },
  12891. {
  12892. anthro: {
  12893. height: math.unit(7, "feet"),
  12894. weight: math.unit(190, "lb"),
  12895. name: "Anthro",
  12896. image: {
  12897. source: "./media/characters/cobalt-dracha/anthro.svg",
  12898. extra: 231 / 225,
  12899. bottom: 0.04
  12900. }
  12901. },
  12902. feral: {
  12903. height: math.unit(9 + 7 / 12, "feet"),
  12904. weight: math.unit(294, "lb"),
  12905. name: "Feral",
  12906. image: {
  12907. source: "./media/characters/cobalt-dracha/feral.svg",
  12908. extra: 692 / 633,
  12909. bottom: 0.05
  12910. }
  12911. },
  12912. },
  12913. [
  12914. {
  12915. name: "Normal",
  12916. height: math.unit(7, "feet"),
  12917. default: true
  12918. },
  12919. ]
  12920. ))
  12921. characterMakers.push(() => makeCharacter(
  12922. { name: "Java" },
  12923. {
  12924. fallen: {
  12925. height: math.unit(11 + 8 / 12, "feet"),
  12926. weight: math.unit(485, "lb"),
  12927. name: "Java (Fallen)",
  12928. rename: true,
  12929. image: {
  12930. source: "./media/characters/java/fallen.svg",
  12931. extra: 226 / 208,
  12932. bottom: 0.005
  12933. }
  12934. },
  12935. godkin: {
  12936. height: math.unit(10 + 6 / 12, "feet"),
  12937. weight: math.unit(328, "lb"),
  12938. name: "Java (Godkin)",
  12939. rename: true,
  12940. image: {
  12941. source: "./media/characters/java/godkin.svg",
  12942. extra: 270 / 262,
  12943. bottom: 0.02
  12944. }
  12945. },
  12946. },
  12947. [
  12948. {
  12949. name: "Normal",
  12950. height: math.unit(11 + 8 / 12, "feet"),
  12951. default: true
  12952. },
  12953. ]
  12954. ))
  12955. characterMakers.push(() => makeCharacter(
  12956. { name: "Skoll" },
  12957. {
  12958. front: {
  12959. height: math.unit(7 + 8 / 12, "feet"),
  12960. weight: math.unit(320, "lb"),
  12961. name: "Front",
  12962. image: {
  12963. source: "./media/characters/skoll/front.svg",
  12964. extra: 232 / 220,
  12965. bottom: 0.02
  12966. }
  12967. },
  12968. },
  12969. [
  12970. {
  12971. name: "Normal",
  12972. height: math.unit(7 + 8 / 12, "feet"),
  12973. default: true
  12974. },
  12975. ]
  12976. ))
  12977. characterMakers.push(() => makeCharacter(
  12978. { name: "Purna" },
  12979. {
  12980. front: {
  12981. height: math.unit(5 + 9 / 12, "feet"),
  12982. weight: math.unit(170, "lb"),
  12983. name: "Front",
  12984. image: {
  12985. source: "./media/characters/purna/front.svg",
  12986. extra: 239 / 229,
  12987. bottom: 0.01
  12988. }
  12989. },
  12990. },
  12991. [
  12992. {
  12993. name: "Normal",
  12994. height: math.unit(5 + 9 / 12, "feet"),
  12995. default: true
  12996. },
  12997. ]
  12998. ))
  12999. characterMakers.push(() => makeCharacter(
  13000. { name: "Kuva" },
  13001. {
  13002. front: {
  13003. height: math.unit(5 + 9 / 12, "feet"),
  13004. weight: math.unit(142, "lb"),
  13005. name: "Front",
  13006. image: {
  13007. source: "./media/characters/kuva/front.svg",
  13008. extra: 281 / 271,
  13009. bottom: 0.006
  13010. }
  13011. },
  13012. },
  13013. [
  13014. {
  13015. name: "Normal",
  13016. height: math.unit(5 + 9 / 12, "feet"),
  13017. default: true
  13018. },
  13019. ]
  13020. ))
  13021. characterMakers.push(() => makeCharacter(
  13022. { name: "Embra" },
  13023. {
  13024. anthro: {
  13025. height: math.unit(9 + 2 / 12, "feet"),
  13026. weight: math.unit(270, "lb"),
  13027. name: "Anthro",
  13028. image: {
  13029. source: "./media/characters/embra/anthro.svg",
  13030. extra: 200 / 187,
  13031. bottom: 0.02
  13032. }
  13033. },
  13034. feral: {
  13035. height: math.unit(18 + 8 / 12, "feet"),
  13036. weight: math.unit(576, "lb"),
  13037. name: "Feral",
  13038. image: {
  13039. source: "./media/characters/embra/feral.svg",
  13040. extra: 152 / 137,
  13041. bottom: 0.037
  13042. }
  13043. },
  13044. },
  13045. [
  13046. {
  13047. name: "Normal",
  13048. height: math.unit(9 + 2 / 12, "feet"),
  13049. default: true
  13050. },
  13051. ]
  13052. ))
  13053. characterMakers.push(() => makeCharacter(
  13054. { name: "Grottos" },
  13055. {
  13056. anthro: {
  13057. height: math.unit(10 + 9 / 12, "feet"),
  13058. weight: math.unit(224, "lb"),
  13059. name: "Anthro",
  13060. image: {
  13061. source: "./media/characters/grottos/anthro.svg",
  13062. extra: 350 / 332,
  13063. bottom: 0.045
  13064. }
  13065. },
  13066. feral: {
  13067. height: math.unit(20 + 7 / 12, "feet"),
  13068. weight: math.unit(629, "lb"),
  13069. name: "Feral",
  13070. image: {
  13071. source: "./media/characters/grottos/feral.svg",
  13072. extra: 207 / 190,
  13073. bottom: 0.05
  13074. }
  13075. },
  13076. },
  13077. [
  13078. {
  13079. name: "Normal",
  13080. height: math.unit(10 + 9 / 12, "feet"),
  13081. default: true
  13082. },
  13083. ]
  13084. ))
  13085. characterMakers.push(() => makeCharacter(
  13086. { name: "Frifna" },
  13087. {
  13088. anthro: {
  13089. height: math.unit(9 + 6 / 12, "feet"),
  13090. weight: math.unit(298, "lb"),
  13091. name: "Anthro",
  13092. image: {
  13093. source: "./media/characters/frifna/anthro.svg",
  13094. extra: 282 / 269,
  13095. bottom: 0.015
  13096. }
  13097. },
  13098. feral: {
  13099. height: math.unit(16 + 2 / 12, "feet"),
  13100. weight: math.unit(624, "lb"),
  13101. name: "Feral",
  13102. image: {
  13103. source: "./media/characters/frifna/feral.svg"
  13104. }
  13105. },
  13106. },
  13107. [
  13108. {
  13109. name: "Normal",
  13110. height: math.unit(9 + 6 / 12, "feet"),
  13111. default: true
  13112. },
  13113. ]
  13114. ))
  13115. characterMakers.push(() => makeCharacter(
  13116. { name: "Elise" },
  13117. {
  13118. front: {
  13119. height: math.unit(6 + 2 / 12, "feet"),
  13120. weight: math.unit(168, "lb"),
  13121. name: "Front",
  13122. image: {
  13123. source: "./media/characters/elise/front.svg",
  13124. extra: 276 / 271
  13125. }
  13126. },
  13127. },
  13128. [
  13129. {
  13130. name: "Normal",
  13131. height: math.unit(6 + 2 / 12, "feet"),
  13132. default: true
  13133. },
  13134. ]
  13135. ))
  13136. characterMakers.push(() => makeCharacter(
  13137. { name: "Glade" },
  13138. {
  13139. front: {
  13140. height: math.unit(5 + 10 / 12, "feet"),
  13141. weight: math.unit(210, "lb"),
  13142. name: "Front",
  13143. image: {
  13144. source: "./media/characters/glade/front.svg",
  13145. extra: 258 / 247,
  13146. bottom: 0.008
  13147. }
  13148. },
  13149. },
  13150. [
  13151. {
  13152. name: "Normal",
  13153. height: math.unit(5 + 10 / 12, "feet"),
  13154. default: true
  13155. },
  13156. ]
  13157. ))
  13158. characterMakers.push(() => makeCharacter(
  13159. { name: "Rina" },
  13160. {
  13161. front: {
  13162. height: math.unit(5 + 10 / 12, "feet"),
  13163. weight: math.unit(129, "lb"),
  13164. name: "Front",
  13165. image: {
  13166. source: "./media/characters/rina/front.svg",
  13167. extra: 266 / 255,
  13168. bottom: 0.005
  13169. }
  13170. },
  13171. },
  13172. [
  13173. {
  13174. name: "Normal",
  13175. height: math.unit(5 + 10 / 12, "feet"),
  13176. default: true
  13177. },
  13178. ]
  13179. ))
  13180. characterMakers.push(() => makeCharacter(
  13181. { name: "Veronica" },
  13182. {
  13183. front: {
  13184. height: math.unit(6 + 1 / 12, "feet"),
  13185. weight: math.unit(192, "lb"),
  13186. name: "Front",
  13187. image: {
  13188. source: "./media/characters/veronica/front.svg",
  13189. extra: 319 / 309,
  13190. bottom: 0.005
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Normal",
  13197. height: math.unit(6 + 1 / 12, "feet"),
  13198. default: true
  13199. },
  13200. ]
  13201. ))
  13202. characterMakers.push(() => makeCharacter(
  13203. { name: "Braxton" },
  13204. {
  13205. front: {
  13206. height: math.unit(9 + 3 / 12, "feet"),
  13207. weight: math.unit(1100, "lb"),
  13208. name: "Front",
  13209. image: {
  13210. source: "./media/characters/braxton/front.svg",
  13211. extra: 1057 / 984,
  13212. bottom: 0.05
  13213. }
  13214. },
  13215. },
  13216. [
  13217. {
  13218. name: "Normal",
  13219. height: math.unit(9 + 3 / 12, "feet")
  13220. },
  13221. {
  13222. name: "Giant",
  13223. height: math.unit(300, "feet"),
  13224. default: true
  13225. },
  13226. {
  13227. name: "Macro",
  13228. height: math.unit(700, "feet")
  13229. },
  13230. {
  13231. name: "Megamacro",
  13232. height: math.unit(6000, "feet")
  13233. },
  13234. ]
  13235. ))
  13236. characterMakers.push(() => makeCharacter(
  13237. { name: "Blue Feyonics" },
  13238. {
  13239. front: {
  13240. height: math.unit(6 + 7 / 12, "feet"),
  13241. weight: math.unit(150, "lb"),
  13242. name: "Front",
  13243. image: {
  13244. source: "./media/characters/blue-feyonics/front.svg",
  13245. extra: 1403 / 1306,
  13246. bottom: 0.047
  13247. }
  13248. },
  13249. },
  13250. [
  13251. {
  13252. name: "Normal",
  13253. height: math.unit(6 + 7 / 12, "feet"),
  13254. default: true
  13255. },
  13256. ]
  13257. ))
  13258. characterMakers.push(() => makeCharacter(
  13259. { name: "Maxwell" },
  13260. {
  13261. front: {
  13262. height: math.unit(1.8, "meters"),
  13263. weight: math.unit(60, "kg"),
  13264. name: "Front",
  13265. image: {
  13266. source: "./media/characters/maxwell/front.svg",
  13267. extra: 2060 / 1873
  13268. }
  13269. },
  13270. },
  13271. [
  13272. {
  13273. name: "Micro",
  13274. height: math.unit(1, "mm")
  13275. },
  13276. {
  13277. name: "Normal",
  13278. height: math.unit(1.8, "meter"),
  13279. default: true
  13280. },
  13281. {
  13282. name: "Macro",
  13283. height: math.unit(30, "meters")
  13284. },
  13285. {
  13286. name: "Megamacro",
  13287. height: math.unit(10, "km")
  13288. },
  13289. ]
  13290. ))
  13291. characterMakers.push(() => makeCharacter(
  13292. { name: "Jack" },
  13293. {
  13294. front: {
  13295. height: math.unit(6, "feet"),
  13296. weight: math.unit(150, "lb"),
  13297. name: "Front",
  13298. image: {
  13299. source: "./media/characters/jack/front.svg",
  13300. extra: 1754 / 1640,
  13301. bottom: 0.01
  13302. }
  13303. },
  13304. },
  13305. [
  13306. {
  13307. name: "Normal",
  13308. height: math.unit(80000, "feet"),
  13309. default: true
  13310. },
  13311. {
  13312. name: "Max size",
  13313. height: math.unit(10, "lightyears")
  13314. },
  13315. ]
  13316. ))
  13317. characterMakers.push(() => makeCharacter(
  13318. { name: "Cafat" },
  13319. {
  13320. upright: {
  13321. height: math.unit(7, "feet"),
  13322. weight: math.unit(170, "lb"),
  13323. name: "Upright",
  13324. image: {
  13325. source: "./media/characters/cafat/upright.svg",
  13326. bottom: 0.01
  13327. }
  13328. },
  13329. uprightFull: {
  13330. height: math.unit(7, "feet"),
  13331. weight: math.unit(170, "lb"),
  13332. name: "Upright (Full)",
  13333. image: {
  13334. source: "./media/characters/cafat/upright-full.svg",
  13335. bottom: 0.01
  13336. }
  13337. },
  13338. side: {
  13339. height: math.unit(5, "feet"),
  13340. weight: math.unit(150, "lb"),
  13341. name: "Side",
  13342. image: {
  13343. source: "./media/characters/cafat/side.svg"
  13344. }
  13345. },
  13346. },
  13347. [
  13348. {
  13349. name: "Small",
  13350. height: math.unit(7, "feet"),
  13351. default: true
  13352. },
  13353. {
  13354. name: "Large",
  13355. height: math.unit(15.5, "feet")
  13356. },
  13357. ]
  13358. ))
  13359. characterMakers.push(() => makeCharacter(
  13360. { name: "Verin Raharra" },
  13361. {
  13362. front: {
  13363. height: math.unit(6, "feet"),
  13364. weight: math.unit(150, "lb"),
  13365. name: "Front",
  13366. image: {
  13367. source: "./media/characters/verin-raharra/front.svg",
  13368. extra: 5019 / 4835,
  13369. bottom: 0.023
  13370. }
  13371. },
  13372. },
  13373. [
  13374. {
  13375. name: "Normal",
  13376. height: math.unit(7 + 5 / 12, "feet"),
  13377. default: true
  13378. },
  13379. {
  13380. name: "Upsized",
  13381. height: math.unit(20, "feet")
  13382. },
  13383. ]
  13384. ))
  13385. characterMakers.push(() => makeCharacter(
  13386. { name: "Nakata" },
  13387. {
  13388. front: {
  13389. height: math.unit(7, "feet"),
  13390. weight: math.unit(230, "lb"),
  13391. name: "Front",
  13392. image: {
  13393. source: "./media/characters/nakata/front.svg",
  13394. extra: 1.005,
  13395. bottom: 0.01
  13396. }
  13397. },
  13398. },
  13399. [
  13400. {
  13401. name: "Normal",
  13402. height: math.unit(7, "feet"),
  13403. default: true
  13404. },
  13405. {
  13406. name: "Big",
  13407. height: math.unit(14, "feet")
  13408. },
  13409. {
  13410. name: "Macro",
  13411. height: math.unit(400, "feet")
  13412. },
  13413. ]
  13414. ))
  13415. characterMakers.push(() => makeCharacter(
  13416. { name: "Lily" },
  13417. {
  13418. front: {
  13419. height: math.unit(4.91, "feet"),
  13420. weight: math.unit(100, "lb"),
  13421. name: "Front",
  13422. image: {
  13423. source: "./media/characters/lily/front.svg",
  13424. extra: 1585 / 1415,
  13425. bottom: 0.02
  13426. }
  13427. },
  13428. },
  13429. [
  13430. {
  13431. name: "Normal",
  13432. height: math.unit(4.91, "feet"),
  13433. default: true
  13434. },
  13435. ]
  13436. ))
  13437. characterMakers.push(() => makeCharacter(
  13438. { name: "Sheila" },
  13439. {
  13440. laying: {
  13441. height: math.unit(4 + 4 / 12, "feet"),
  13442. weight: math.unit(600, "lb"),
  13443. name: "Laying",
  13444. image: {
  13445. source: "./media/characters/sheila/laying.svg",
  13446. extra: 1333 / 1265,
  13447. bottom: 0.16
  13448. }
  13449. },
  13450. },
  13451. [
  13452. {
  13453. name: "Normal",
  13454. height: math.unit(4 + 4 / 12, "feet"),
  13455. default: true
  13456. },
  13457. ]
  13458. ))
  13459. characterMakers.push(() => makeCharacter(
  13460. { name: "Sax" },
  13461. {
  13462. front: {
  13463. height: math.unit(6, "feet"),
  13464. weight: math.unit(190, "lb"),
  13465. name: "Front",
  13466. image: {
  13467. source: "./media/characters/sax/front.svg",
  13468. extra: 1187 / 973,
  13469. bottom: 0.042
  13470. }
  13471. },
  13472. },
  13473. [
  13474. {
  13475. name: "Micro",
  13476. height: math.unit(4, "inches"),
  13477. default: true
  13478. },
  13479. ]
  13480. ))
  13481. characterMakers.push(() => makeCharacter(
  13482. { name: "Pandora" },
  13483. {
  13484. front: {
  13485. height: math.unit(6, "feet"),
  13486. weight: math.unit(150, "lb"),
  13487. name: "Front",
  13488. image: {
  13489. source: "./media/characters/pandora/front.svg",
  13490. extra: 2720 / 2556,
  13491. bottom: 0.015
  13492. }
  13493. },
  13494. back: {
  13495. height: math.unit(6, "feet"),
  13496. weight: math.unit(150, "lb"),
  13497. name: "Back",
  13498. image: {
  13499. source: "./media/characters/pandora/back.svg",
  13500. extra: 2720 / 2556,
  13501. bottom: 0.01
  13502. }
  13503. },
  13504. beans: {
  13505. height: math.unit(6 / 8, "feet"),
  13506. name: "Beans",
  13507. image: {
  13508. source: "./media/characters/pandora/beans.svg"
  13509. }
  13510. },
  13511. skirt: {
  13512. height: math.unit(6, "feet"),
  13513. weight: math.unit(150, "lb"),
  13514. name: "Skirt",
  13515. image: {
  13516. source: "./media/characters/pandora/skirt.svg",
  13517. extra: 1622 / 1525,
  13518. bottom: 0.015
  13519. }
  13520. },
  13521. hoodie: {
  13522. height: math.unit(6, "feet"),
  13523. weight: math.unit(150, "lb"),
  13524. name: "Hoodie",
  13525. image: {
  13526. source: "./media/characters/pandora/hoodie.svg",
  13527. extra: 1622 / 1525,
  13528. bottom: 0.015
  13529. }
  13530. },
  13531. casual: {
  13532. height: math.unit(6, "feet"),
  13533. weight: math.unit(150, "lb"),
  13534. name: "Casual",
  13535. image: {
  13536. source: "./media/characters/pandora/casual.svg",
  13537. extra: 1622 / 1525,
  13538. bottom: 0.015
  13539. }
  13540. },
  13541. },
  13542. [
  13543. {
  13544. name: "Normal",
  13545. height: math.unit(6, "feet")
  13546. },
  13547. {
  13548. name: "Big Steppy",
  13549. height: math.unit(1, "km"),
  13550. default: true
  13551. },
  13552. ]
  13553. ))
  13554. characterMakers.push(() => makeCharacter(
  13555. { name: "Venio Darcony" },
  13556. {
  13557. side: {
  13558. height: math.unit(10, "feet"),
  13559. weight: math.unit(800, "kg"),
  13560. name: "Side",
  13561. image: {
  13562. source: "./media/characters/venio-darcony/side.svg",
  13563. extra: 1373 / 1003,
  13564. bottom: 0.037
  13565. }
  13566. },
  13567. front: {
  13568. height: math.unit(19, "feet"),
  13569. weight: math.unit(800, "kg"),
  13570. name: "Front",
  13571. image: {
  13572. source: "./media/characters/venio-darcony/front.svg"
  13573. }
  13574. },
  13575. back: {
  13576. height: math.unit(19, "feet"),
  13577. weight: math.unit(800, "kg"),
  13578. name: "Back",
  13579. image: {
  13580. source: "./media/characters/venio-darcony/back.svg"
  13581. }
  13582. },
  13583. },
  13584. [
  13585. {
  13586. name: "Normal",
  13587. height: math.unit(10, "feet")
  13588. },
  13589. {
  13590. name: "Macro",
  13591. height: math.unit(130, "feet"),
  13592. default: true
  13593. },
  13594. {
  13595. name: "Macro+",
  13596. height: math.unit(240, "feet")
  13597. },
  13598. ]
  13599. ))
  13600. characterMakers.push(() => makeCharacter(
  13601. { name: "Veski" },
  13602. {
  13603. front: {
  13604. height: math.unit(6, "feet"),
  13605. weight: math.unit(150, "lb"),
  13606. name: "Front",
  13607. image: {
  13608. source: "./media/characters/veski/front.svg",
  13609. extra: 1299 / 1225,
  13610. bottom: 0.04
  13611. }
  13612. },
  13613. back: {
  13614. height: math.unit(6, "feet"),
  13615. weight: math.unit(150, "lb"),
  13616. name: "Back",
  13617. image: {
  13618. source: "./media/characters/veski/back.svg",
  13619. extra: 1299 / 1225,
  13620. bottom: 0.008
  13621. }
  13622. },
  13623. maw: {
  13624. height: math.unit(1.5 * 1.21, "feet"),
  13625. name: "Maw",
  13626. image: {
  13627. source: "./media/characters/veski/maw.svg"
  13628. }
  13629. },
  13630. },
  13631. [
  13632. {
  13633. name: "Macro",
  13634. height: math.unit(2, "km"),
  13635. default: true
  13636. },
  13637. ]
  13638. ))
  13639. characterMakers.push(() => makeCharacter(
  13640. { name: "Isabelle" },
  13641. {
  13642. front: {
  13643. height: math.unit(5 + 7 / 12, "feet"),
  13644. name: "Front",
  13645. image: {
  13646. source: "./media/characters/isabelle/front.svg",
  13647. extra: 2130 / 1976,
  13648. bottom: 0.05
  13649. }
  13650. },
  13651. },
  13652. [
  13653. {
  13654. name: "Supermicro",
  13655. height: math.unit(10, "micrometers")
  13656. },
  13657. {
  13658. name: "Micro",
  13659. height: math.unit(1, "inch")
  13660. },
  13661. {
  13662. name: "Tiny",
  13663. height: math.unit(5, "inches")
  13664. },
  13665. {
  13666. name: "Standard",
  13667. height: math.unit(5 + 7 / 12, "inches")
  13668. },
  13669. {
  13670. name: "Macro",
  13671. height: math.unit(80, "meters"),
  13672. default: true
  13673. },
  13674. {
  13675. name: "Megamacro",
  13676. height: math.unit(250, "meters")
  13677. },
  13678. {
  13679. name: "Gigamacro",
  13680. height: math.unit(5, "km")
  13681. },
  13682. {
  13683. name: "Cosmic",
  13684. height: math.unit(2.5e6, "miles")
  13685. },
  13686. ]
  13687. ))
  13688. characterMakers.push(() => makeCharacter(
  13689. { name: "Hanzo" },
  13690. {
  13691. front: {
  13692. height: math.unit(6, "feet"),
  13693. weight: math.unit(150, "lb"),
  13694. name: "Front",
  13695. image: {
  13696. source: "./media/characters/hanzo/front.svg",
  13697. extra: 374 / 344,
  13698. bottom: 0.02
  13699. }
  13700. },
  13701. },
  13702. [
  13703. {
  13704. name: "Normal",
  13705. height: math.unit(8, "feet"),
  13706. default: true
  13707. },
  13708. ]
  13709. ))
  13710. characterMakers.push(() => makeCharacter(
  13711. { name: "Anna" },
  13712. {
  13713. front: {
  13714. height: math.unit(7, "feet"),
  13715. weight: math.unit(130, "lb"),
  13716. name: "Front",
  13717. image: {
  13718. source: "./media/characters/anna/front.svg",
  13719. extra: 169 / 145,
  13720. bottom: 0.06
  13721. }
  13722. },
  13723. full: {
  13724. height: math.unit(4.96, "feet"),
  13725. weight: math.unit(220, "lb"),
  13726. name: "Full",
  13727. image: {
  13728. source: "./media/characters/anna/full.svg",
  13729. extra: 138 / 114,
  13730. bottom: 0.15
  13731. }
  13732. },
  13733. tongue: {
  13734. height: math.unit(2.53, "feet"),
  13735. name: "Tongue",
  13736. image: {
  13737. source: "./media/characters/anna/tongue.svg"
  13738. }
  13739. },
  13740. },
  13741. [
  13742. {
  13743. name: "Normal",
  13744. height: math.unit(7, "feet"),
  13745. default: true
  13746. },
  13747. ]
  13748. ))
  13749. characterMakers.push(() => makeCharacter(
  13750. { name: "Ian Corvid" },
  13751. {
  13752. front: {
  13753. height: math.unit(7, "feet"),
  13754. weight: math.unit(150, "lb"),
  13755. name: "Front",
  13756. image: {
  13757. source: "./media/characters/ian-corvid/front.svg",
  13758. extra: 150 / 142,
  13759. bottom: 0.02
  13760. }
  13761. },
  13762. back: {
  13763. height: math.unit(7, "feet"),
  13764. weight: math.unit(150, "lb"),
  13765. name: "Back",
  13766. image: {
  13767. source: "./media/characters/ian-corvid/back.svg",
  13768. extra: 150 / 143,
  13769. bottom: 0.01
  13770. }
  13771. },
  13772. stomping: {
  13773. height: math.unit(7, "feet"),
  13774. weight: math.unit(150, "lb"),
  13775. name: "Stomping",
  13776. image: {
  13777. source: "./media/characters/ian-corvid/stomping.svg",
  13778. extra: 76 / 72
  13779. }
  13780. },
  13781. sitting: {
  13782. height: math.unit(7 / 1.8, "feet"),
  13783. weight: math.unit(150, "lb"),
  13784. name: "Sitting",
  13785. image: {
  13786. source: "./media/characters/ian-corvid/sitting.svg",
  13787. extra: 1400 / 1269,
  13788. bottom: 0.15
  13789. }
  13790. },
  13791. },
  13792. [
  13793. {
  13794. name: "Tiny Microw",
  13795. height: math.unit(1, "inch")
  13796. },
  13797. {
  13798. name: "Microw",
  13799. height: math.unit(6, "inches")
  13800. },
  13801. {
  13802. name: "Crow",
  13803. height: math.unit(7 + 1 / 12, "feet"),
  13804. default: true
  13805. },
  13806. {
  13807. name: "Macrow",
  13808. height: math.unit(176, "feet")
  13809. },
  13810. ]
  13811. ))
  13812. characterMakers.push(() => makeCharacter(
  13813. { name: "Natalie Kellon" },
  13814. {
  13815. front: {
  13816. height: math.unit(5 + 7 / 12, "feet"),
  13817. weight: math.unit(147, "lb"),
  13818. name: "Front",
  13819. image: {
  13820. source: "./media/characters/natalie-kellon/front.svg",
  13821. extra: 1214 / 1141,
  13822. bottom: 0.02
  13823. }
  13824. },
  13825. },
  13826. [
  13827. {
  13828. name: "Micro",
  13829. height: math.unit(1 / 16, "inch")
  13830. },
  13831. {
  13832. name: "Tiny",
  13833. height: math.unit(4, "inches")
  13834. },
  13835. {
  13836. name: "Normal",
  13837. height: math.unit(5 + 7 / 12, "feet"),
  13838. default: true
  13839. },
  13840. {
  13841. name: "Amazon",
  13842. height: math.unit(12, "feet")
  13843. },
  13844. {
  13845. name: "Giantess",
  13846. height: math.unit(160, "meters")
  13847. },
  13848. {
  13849. name: "Titaness",
  13850. height: math.unit(800, "meters")
  13851. },
  13852. ]
  13853. ))
  13854. characterMakers.push(() => makeCharacter(
  13855. { name: "Alluria" },
  13856. {
  13857. front: {
  13858. height: math.unit(6, "feet"),
  13859. weight: math.unit(150, "lb"),
  13860. name: "Front",
  13861. image: {
  13862. source: "./media/characters/alluria/front.svg",
  13863. extra: 806 / 738,
  13864. bottom: 0.01
  13865. }
  13866. },
  13867. side: {
  13868. height: math.unit(6, "feet"),
  13869. weight: math.unit(150, "lb"),
  13870. name: "Side",
  13871. image: {
  13872. source: "./media/characters/alluria/side.svg",
  13873. extra: 800 / 750,
  13874. }
  13875. },
  13876. back: {
  13877. height: math.unit(6, "feet"),
  13878. weight: math.unit(150, "lb"),
  13879. name: "Back",
  13880. image: {
  13881. source: "./media/characters/alluria/back.svg",
  13882. extra: 806 / 738,
  13883. }
  13884. },
  13885. frontMaid: {
  13886. height: math.unit(6, "feet"),
  13887. weight: math.unit(150, "lb"),
  13888. name: "Front (Maid)",
  13889. image: {
  13890. source: "./media/characters/alluria/front-maid.svg",
  13891. extra: 806 / 738,
  13892. bottom: 0.01
  13893. }
  13894. },
  13895. sideMaid: {
  13896. height: math.unit(6, "feet"),
  13897. weight: math.unit(150, "lb"),
  13898. name: "Side (Maid)",
  13899. image: {
  13900. source: "./media/characters/alluria/side-maid.svg",
  13901. extra: 800 / 750,
  13902. bottom: 0.005
  13903. }
  13904. },
  13905. backMaid: {
  13906. height: math.unit(6, "feet"),
  13907. weight: math.unit(150, "lb"),
  13908. name: "Back (Maid)",
  13909. image: {
  13910. source: "./media/characters/alluria/back-maid.svg",
  13911. extra: 806 / 738,
  13912. }
  13913. },
  13914. },
  13915. [
  13916. {
  13917. name: "Micro",
  13918. height: math.unit(6, "inches"),
  13919. default: true
  13920. },
  13921. ]
  13922. ))
  13923. characterMakers.push(() => makeCharacter(
  13924. { name: "Kyle" },
  13925. {
  13926. front: {
  13927. height: math.unit(6, "feet"),
  13928. weight: math.unit(150, "lb"),
  13929. name: "Front",
  13930. image: {
  13931. source: "./media/characters/kyle/front.svg",
  13932. extra: 1069 / 962,
  13933. bottom: 77.228 / 1727.45
  13934. }
  13935. },
  13936. },
  13937. [
  13938. {
  13939. name: "Macro",
  13940. height: math.unit(150, "feet"),
  13941. default: true
  13942. },
  13943. ]
  13944. ))
  13945. characterMakers.push(() => makeCharacter(
  13946. { name: "Duncan" },
  13947. {
  13948. front: {
  13949. height: math.unit(6, "feet"),
  13950. weight: math.unit(300, "lb"),
  13951. name: "Front",
  13952. image: {
  13953. source: "./media/characters/duncan/front.svg",
  13954. extra: 1650 / 1482,
  13955. bottom: 0.05
  13956. }
  13957. },
  13958. },
  13959. [
  13960. {
  13961. name: "Macro",
  13962. height: math.unit(100, "feet"),
  13963. default: true
  13964. },
  13965. ]
  13966. ))
  13967. characterMakers.push(() => makeCharacter(
  13968. { name: "Memory" },
  13969. {
  13970. front: {
  13971. height: math.unit(5 + 4 / 12, "feet"),
  13972. weight: math.unit(220, "lb"),
  13973. name: "Front",
  13974. image: {
  13975. source: "./media/characters/memory/front.svg",
  13976. extra: 3641 / 3545,
  13977. bottom: 0.03
  13978. }
  13979. },
  13980. back: {
  13981. height: math.unit(5 + 4 / 12, "feet"),
  13982. weight: math.unit(220, "lb"),
  13983. name: "Back",
  13984. image: {
  13985. source: "./media/characters/memory/back.svg",
  13986. extra: 3641 / 3545,
  13987. bottom: 0.025
  13988. }
  13989. },
  13990. frontSkirt: {
  13991. height: math.unit(5 + 4 / 12, "feet"),
  13992. weight: math.unit(220, "lb"),
  13993. name: "Front (Skirt)",
  13994. image: {
  13995. source: "./media/characters/memory/front-skirt.svg",
  13996. extra: 3641 / 3545,
  13997. bottom: 0.03
  13998. }
  13999. },
  14000. frontDress: {
  14001. height: math.unit(5 + 4 / 12, "feet"),
  14002. weight: math.unit(220, "lb"),
  14003. name: "Front (Dress)",
  14004. image: {
  14005. source: "./media/characters/memory/front-dress.svg",
  14006. extra: 3641 / 3545,
  14007. bottom: 0.03
  14008. }
  14009. },
  14010. },
  14011. [
  14012. {
  14013. name: "Micro",
  14014. height: math.unit(6, "inches"),
  14015. default: true
  14016. },
  14017. {
  14018. name: "Normal",
  14019. height: math.unit(5 + 4 / 12, "feet")
  14020. },
  14021. ]
  14022. ))
  14023. characterMakers.push(() => makeCharacter(
  14024. { name: "Luno" },
  14025. {
  14026. front: {
  14027. height: math.unit(4 + 11 / 12, "feet"),
  14028. weight: math.unit(100, "lb"),
  14029. name: "Front",
  14030. image: {
  14031. source: "./media/characters/luno/front.svg",
  14032. extra: 1535 / 1487,
  14033. bottom: 0.03
  14034. }
  14035. },
  14036. },
  14037. [
  14038. {
  14039. name: "Micro",
  14040. height: math.unit(3, "inches")
  14041. },
  14042. {
  14043. name: "Normal",
  14044. height: math.unit(4 + 11 / 12, "feet"),
  14045. default: true
  14046. },
  14047. {
  14048. name: "Macro",
  14049. height: math.unit(300, "feet")
  14050. },
  14051. {
  14052. name: "Megamacro",
  14053. height: math.unit(700, "miles")
  14054. },
  14055. ]
  14056. ))
  14057. characterMakers.push(() => makeCharacter(
  14058. { name: "Jamesy" },
  14059. {
  14060. front: {
  14061. height: math.unit(6 + 2 / 12, "feet"),
  14062. weight: math.unit(170, "lb"),
  14063. name: "Front",
  14064. image: {
  14065. source: "./media/characters/jamesy/front.svg",
  14066. extra: 440 / 382,
  14067. bottom: 0.005
  14068. }
  14069. },
  14070. },
  14071. [
  14072. {
  14073. name: "Micro",
  14074. height: math.unit(3, "inches")
  14075. },
  14076. {
  14077. name: "Normal",
  14078. height: math.unit(6 + 2 / 12, "feet"),
  14079. default: true
  14080. },
  14081. {
  14082. name: "Macro",
  14083. height: math.unit(300, "feet")
  14084. },
  14085. {
  14086. name: "Megamacro",
  14087. height: math.unit(700, "miles")
  14088. },
  14089. ]
  14090. ))
  14091. characterMakers.push(() => makeCharacter(
  14092. { name: "Mark" },
  14093. {
  14094. front: {
  14095. height: math.unit(6, "feet"),
  14096. weight: math.unit(160, "lb"),
  14097. name: "Front",
  14098. image: {
  14099. source: "./media/characters/mark/front.svg",
  14100. extra: 3300 / 3100,
  14101. bottom: 136.42 / 3440.47
  14102. }
  14103. },
  14104. },
  14105. [
  14106. {
  14107. name: "Macro",
  14108. height: math.unit(120, "meters")
  14109. },
  14110. {
  14111. name: "Bigger Macro",
  14112. height: math.unit(350, "meters")
  14113. },
  14114. {
  14115. name: "Megamacro",
  14116. height: math.unit(8, "km"),
  14117. default: true
  14118. },
  14119. {
  14120. name: "Continental",
  14121. height: math.unit(4550, "km")
  14122. },
  14123. {
  14124. name: "Planetary",
  14125. height: math.unit(65000, "km")
  14126. },
  14127. ]
  14128. ))
  14129. characterMakers.push(() => makeCharacter(
  14130. { name: "Mac" },
  14131. {
  14132. front: {
  14133. height: math.unit(6, "feet"),
  14134. weight: math.unit(400, "lb"),
  14135. name: "Front",
  14136. image: {
  14137. source: "./media/characters/mac/front.svg",
  14138. extra: 1048 / 987.7,
  14139. bottom: 60 / 1107.6,
  14140. }
  14141. },
  14142. },
  14143. [
  14144. {
  14145. name: "Macro",
  14146. height: math.unit(500, "feet"),
  14147. default: true
  14148. },
  14149. ]
  14150. ))
  14151. characterMakers.push(() => makeCharacter(
  14152. { name: "Bari" },
  14153. {
  14154. front: {
  14155. height: math.unit(5 + 2 / 12, "feet"),
  14156. weight: math.unit(190, "lb"),
  14157. name: "Front",
  14158. image: {
  14159. source: "./media/characters/bari/front.svg",
  14160. extra: 3156 / 2880,
  14161. bottom: 0.03
  14162. }
  14163. },
  14164. back: {
  14165. height: math.unit(5 + 2 / 12, "feet"),
  14166. weight: math.unit(190, "lb"),
  14167. name: "Back",
  14168. image: {
  14169. source: "./media/characters/bari/back.svg",
  14170. extra: 3260 / 2834,
  14171. bottom: 0.025
  14172. }
  14173. },
  14174. frontPlush: {
  14175. height: math.unit(5 + 2 / 12, "feet"),
  14176. weight: math.unit(190, "lb"),
  14177. name: "Front (Plush)",
  14178. image: {
  14179. source: "./media/characters/bari/front-plush.svg",
  14180. extra: 1112 / 1061,
  14181. bottom: 0.002
  14182. }
  14183. },
  14184. },
  14185. [
  14186. {
  14187. name: "Micro",
  14188. height: math.unit(3, "inches")
  14189. },
  14190. {
  14191. name: "Normal",
  14192. height: math.unit(5 + 2 / 12, "feet"),
  14193. default: true
  14194. },
  14195. {
  14196. name: "Macro",
  14197. height: math.unit(20, "feet")
  14198. },
  14199. ]
  14200. ))
  14201. characterMakers.push(() => makeCharacter(
  14202. { name: "Hunter Misha Raven" },
  14203. {
  14204. front: {
  14205. height: math.unit(6 + 1 / 12, "feet"),
  14206. weight: math.unit(275, "lb"),
  14207. name: "Front",
  14208. image: {
  14209. source: "./media/characters/hunter-misha-raven/front.svg"
  14210. }
  14211. },
  14212. },
  14213. [
  14214. {
  14215. name: "Mortal",
  14216. height: math.unit(6 + 1 / 12, "feet")
  14217. },
  14218. {
  14219. name: "Divine",
  14220. height: math.unit(1.12134e34, "parsecs"),
  14221. default: true
  14222. },
  14223. ]
  14224. ))
  14225. characterMakers.push(() => makeCharacter(
  14226. { name: "Max Calore" },
  14227. {
  14228. front: {
  14229. height: math.unit(6 + 3 / 12, "feet"),
  14230. weight: math.unit(220, "lb"),
  14231. name: "Front",
  14232. image: {
  14233. source: "./media/characters/max-calore/front.svg",
  14234. extra: 1700 / 1648,
  14235. bottom: 0.01
  14236. }
  14237. },
  14238. back: {
  14239. height: math.unit(6 + 3 / 12, "feet"),
  14240. weight: math.unit(220, "lb"),
  14241. name: "Back",
  14242. image: {
  14243. source: "./media/characters/max-calore/back.svg",
  14244. extra: 1700 / 1648,
  14245. bottom: 0.01
  14246. }
  14247. },
  14248. },
  14249. [
  14250. {
  14251. name: "Normal",
  14252. height: math.unit(6 + 3 / 12, "feet"),
  14253. default: true
  14254. },
  14255. ]
  14256. ))
  14257. characterMakers.push(() => makeCharacter(
  14258. { name: "Aspen" },
  14259. {
  14260. side: {
  14261. height: math.unit(2 + 8 / 12, "feet"),
  14262. weight: math.unit(99, "lb"),
  14263. name: "Side",
  14264. image: {
  14265. source: "./media/characters/aspen/side.svg",
  14266. extra: 152 / 138,
  14267. bottom: 0.032
  14268. }
  14269. },
  14270. },
  14271. [
  14272. {
  14273. name: "Normal",
  14274. height: math.unit(2 + 8 / 12, "feet"),
  14275. default: true
  14276. },
  14277. ]
  14278. ))
  14279. characterMakers.push(() => makeCharacter(
  14280. { name: "Sheila (Feral Wolf)" },
  14281. {
  14282. side: {
  14283. height: math.unit(3 + 2 / 12, "feet"),
  14284. weight: math.unit(224, "lb"),
  14285. name: "Side",
  14286. image: {
  14287. source: "./media/characters/sheila-feral-wolf/side.svg",
  14288. extra: 179 / 166,
  14289. bottom: 0.03
  14290. }
  14291. },
  14292. },
  14293. [
  14294. {
  14295. name: "Normal",
  14296. height: math.unit(3 + 2 / 12, "feet"),
  14297. default: true
  14298. },
  14299. ]
  14300. ))
  14301. characterMakers.push(() => makeCharacter(
  14302. { name: "Michelle" },
  14303. {
  14304. side: {
  14305. height: math.unit(1 + 9 / 12, "feet"),
  14306. weight: math.unit(38, "lb"),
  14307. name: "Side",
  14308. image: {
  14309. source: "./media/characters/michelle/side.svg",
  14310. extra: 147 / 136.7,
  14311. bottom: 0.03
  14312. }
  14313. },
  14314. },
  14315. [
  14316. {
  14317. name: "Normal",
  14318. height: math.unit(1 + 9 / 12, "feet"),
  14319. default: true
  14320. },
  14321. ]
  14322. ))
  14323. characterMakers.push(() => makeCharacter(
  14324. { name: "Nino" },
  14325. {
  14326. front: {
  14327. height: math.unit(1 + 1 / 12, "feet"),
  14328. weight: math.unit(18, "lb"),
  14329. name: "Front",
  14330. image: {
  14331. source: "./media/characters/nino/front.svg"
  14332. }
  14333. },
  14334. },
  14335. [
  14336. {
  14337. name: "Normal",
  14338. height: math.unit(1 + 1 / 12, "feet"),
  14339. default: true
  14340. },
  14341. ]
  14342. ))
  14343. characterMakers.push(() => makeCharacter(
  14344. { name: "Viola" },
  14345. {
  14346. front: {
  14347. height: math.unit(1, "feet"),
  14348. weight: math.unit(16, "lb"),
  14349. name: "Front",
  14350. image: {
  14351. source: "./media/characters/viola/front.svg"
  14352. }
  14353. },
  14354. },
  14355. [
  14356. {
  14357. name: "Normal",
  14358. height: math.unit(1, "feet"),
  14359. default: true
  14360. },
  14361. ]
  14362. ))
  14363. characterMakers.push(() => makeCharacter(
  14364. { name: "Atlas" },
  14365. {
  14366. front: {
  14367. height: math.unit(6 + 5 / 12, "feet"),
  14368. weight: math.unit(580, "lb"),
  14369. name: "Front",
  14370. image: {
  14371. source: "./media/characters/atlas/front.svg",
  14372. extra: 298.5 / 290,
  14373. bottom: 0.015
  14374. }
  14375. },
  14376. },
  14377. [
  14378. {
  14379. name: "Normal",
  14380. height: math.unit(6 + 5 / 12, "feet"),
  14381. default: true
  14382. },
  14383. ]
  14384. ))
  14385. characterMakers.push(() => makeCharacter(
  14386. { name: "Davy" },
  14387. {
  14388. side: {
  14389. height: math.unit(1 + 10 / 12, "feet"),
  14390. weight: math.unit(25, "lb"),
  14391. name: "Side",
  14392. image: {
  14393. source: "./media/characters/davy/side.svg",
  14394. extra: 200 / 170,
  14395. bottom: 0.01
  14396. }
  14397. },
  14398. },
  14399. [
  14400. {
  14401. name: "Normal",
  14402. height: math.unit(1 + 10 / 12, "feet"),
  14403. default: true
  14404. },
  14405. ]
  14406. ))
  14407. characterMakers.push(() => makeCharacter(
  14408. { name: "Fiona" },
  14409. {
  14410. side: {
  14411. height: math.unit(4 + 8 / 12, "feet"),
  14412. weight: math.unit(166, "lb"),
  14413. name: "Side",
  14414. image: {
  14415. source: "./media/characters/fiona/side.svg",
  14416. extra: 232 / 220,
  14417. bottom: 0.03
  14418. }
  14419. },
  14420. },
  14421. [
  14422. {
  14423. name: "Normal",
  14424. height: math.unit(4 + 8 / 12, "feet"),
  14425. default: true
  14426. },
  14427. ]
  14428. ))
  14429. characterMakers.push(() => makeCharacter(
  14430. { name: "Lyla" },
  14431. {
  14432. front: {
  14433. height: math.unit(2, "feet"),
  14434. weight: math.unit(62, "lb"),
  14435. name: "Front",
  14436. image: {
  14437. source: "./media/characters/lyla/front.svg",
  14438. bottom: 0.1
  14439. }
  14440. },
  14441. },
  14442. [
  14443. {
  14444. name: "Normal",
  14445. height: math.unit(2, "feet"),
  14446. default: true
  14447. },
  14448. ]
  14449. ))
  14450. characterMakers.push(() => makeCharacter(
  14451. { name: "Perseus" },
  14452. {
  14453. side: {
  14454. height: math.unit(1.8, "feet"),
  14455. weight: math.unit(44, "lb"),
  14456. name: "Side",
  14457. image: {
  14458. source: "./media/characters/perseus/side.svg",
  14459. bottom: 0.21
  14460. }
  14461. },
  14462. },
  14463. [
  14464. {
  14465. name: "Normal",
  14466. height: math.unit(1.8, "feet"),
  14467. default: true
  14468. },
  14469. ]
  14470. ))
  14471. characterMakers.push(() => makeCharacter(
  14472. { name: "Remus" },
  14473. {
  14474. side: {
  14475. height: math.unit(4 + 2 / 12, "feet"),
  14476. weight: math.unit(20, "lb"),
  14477. name: "Side",
  14478. image: {
  14479. source: "./media/characters/remus/side.svg"
  14480. }
  14481. },
  14482. },
  14483. [
  14484. {
  14485. name: "Normal",
  14486. height: math.unit(4 + 2 / 12, "feet"),
  14487. default: true
  14488. },
  14489. ]
  14490. ))
  14491. characterMakers.push(() => makeCharacter(
  14492. { name: "Raf" },
  14493. {
  14494. front: {
  14495. height: math.unit(4 + 11 / 12, "feet"),
  14496. weight: math.unit(114, "lb"),
  14497. name: "Front",
  14498. image: {
  14499. source: "./media/characters/raf/front.svg",
  14500. bottom: 0.01
  14501. }
  14502. },
  14503. side: {
  14504. height: math.unit(4 + 11 / 12, "feet"),
  14505. weight: math.unit(114, "lb"),
  14506. name: "Side",
  14507. image: {
  14508. source: "./media/characters/raf/side.svg",
  14509. bottom: 0.005
  14510. }
  14511. },
  14512. },
  14513. [
  14514. {
  14515. name: "Micro",
  14516. height: math.unit(2, "inches")
  14517. },
  14518. {
  14519. name: "Normal",
  14520. height: math.unit(4 + 11 / 12, "feet"),
  14521. default: true
  14522. },
  14523. {
  14524. name: "Macro",
  14525. height: math.unit(70, "feet")
  14526. },
  14527. ]
  14528. ))
  14529. characterMakers.push(() => makeCharacter(
  14530. { name: "Liam Einarr" },
  14531. {
  14532. front: {
  14533. height: math.unit(1.5, "meters"),
  14534. weight: math.unit(68, "kg"),
  14535. name: "Front",
  14536. image: {
  14537. source: "./media/characters/liam-einarr/front.svg",
  14538. extra: 2822 / 2666
  14539. }
  14540. },
  14541. back: {
  14542. height: math.unit(1.5, "meters"),
  14543. weight: math.unit(68, "kg"),
  14544. name: "Back",
  14545. image: {
  14546. source: "./media/characters/liam-einarr/back.svg",
  14547. extra: 2822 / 2666,
  14548. bottom: 0.015
  14549. }
  14550. },
  14551. },
  14552. [
  14553. {
  14554. name: "Normal",
  14555. height: math.unit(1.5, "meters"),
  14556. default: true
  14557. },
  14558. {
  14559. name: "Macro",
  14560. height: math.unit(150, "meters")
  14561. },
  14562. {
  14563. name: "Megamacro",
  14564. height: math.unit(35, "km")
  14565. },
  14566. ]
  14567. ))
  14568. characterMakers.push(() => makeCharacter(
  14569. { name: "Linda" },
  14570. {
  14571. front: {
  14572. height: math.unit(6, "feet"),
  14573. weight: math.unit(75, "kg"),
  14574. name: "Front",
  14575. image: {
  14576. source: "./media/characters/linda/front.svg",
  14577. extra: 930 / 874,
  14578. bottom: 0.004
  14579. }
  14580. },
  14581. },
  14582. [
  14583. {
  14584. name: "Normal",
  14585. height: math.unit(6, "feet"),
  14586. default: true
  14587. },
  14588. ]
  14589. ))
  14590. characterMakers.push(() => makeCharacter(
  14591. { name: "Caylex" },
  14592. {
  14593. front: {
  14594. height: math.unit(6 + 8 / 12, "feet"),
  14595. weight: math.unit(220, "lb"),
  14596. name: "Front",
  14597. image: {
  14598. source: "./media/characters/caylex/front.svg",
  14599. extra: 821 / 772,
  14600. bottom: 0.07
  14601. }
  14602. },
  14603. back: {
  14604. height: math.unit(6 + 8 / 12, "feet"),
  14605. weight: math.unit(220, "lb"),
  14606. name: "Back",
  14607. image: {
  14608. source: "./media/characters/caylex/back.svg",
  14609. extra: 821 / 772,
  14610. bottom: 0.022
  14611. }
  14612. },
  14613. hand: {
  14614. height: math.unit(1.25, "feet"),
  14615. name: "Hand",
  14616. image: {
  14617. source: "./media/characters/caylex/hand.svg"
  14618. }
  14619. },
  14620. foot: {
  14621. height: math.unit(1.6, "feet"),
  14622. name: "Foot",
  14623. image: {
  14624. source: "./media/characters/caylex/foot.svg"
  14625. }
  14626. },
  14627. armored: {
  14628. height: math.unit(6 + 8 / 12, "feet"),
  14629. weight: math.unit(250, "lb"),
  14630. name: "Armored",
  14631. image: {
  14632. source: "./media/characters/caylex/armored.svg",
  14633. extra: 1420 / 1310,
  14634. bottom: 0.045
  14635. }
  14636. },
  14637. },
  14638. [
  14639. {
  14640. name: "Normal",
  14641. height: math.unit(6 + 8 / 12, "feet"),
  14642. default: true
  14643. },
  14644. {
  14645. name: "Normal+",
  14646. height: math.unit(12, "feet")
  14647. },
  14648. ]
  14649. ))
  14650. characterMakers.push(() => makeCharacter(
  14651. { name: "Alana" },
  14652. {
  14653. front: {
  14654. height: math.unit(7 + 6 / 12, "feet"),
  14655. weight: math.unit(288, "lb"),
  14656. name: "Front",
  14657. image: {
  14658. source: "./media/characters/alana/front.svg",
  14659. extra: 679 / 653,
  14660. bottom: 22.5 / 701
  14661. }
  14662. },
  14663. },
  14664. [
  14665. {
  14666. name: "Normal",
  14667. height: math.unit(7 + 6 / 12, "feet")
  14668. },
  14669. {
  14670. name: "Large",
  14671. height: math.unit(50, "feet")
  14672. },
  14673. {
  14674. name: "Macro",
  14675. height: math.unit(100, "feet"),
  14676. default: true
  14677. },
  14678. {
  14679. name: "Macro+",
  14680. height: math.unit(200, "feet")
  14681. },
  14682. ]
  14683. ))
  14684. characterMakers.push(() => makeCharacter(
  14685. { name: "Hasani" },
  14686. {
  14687. front: {
  14688. height: math.unit(6 + 1 / 12, "feet"),
  14689. weight: math.unit(210, "lb"),
  14690. name: "Front",
  14691. image: {
  14692. source: "./media/characters/hasani/front.svg",
  14693. extra: 244 / 232,
  14694. bottom: 0.01
  14695. }
  14696. },
  14697. back: {
  14698. height: math.unit(6 + 1 / 12, "feet"),
  14699. weight: math.unit(210, "lb"),
  14700. name: "Back",
  14701. image: {
  14702. source: "./media/characters/hasani/back.svg",
  14703. extra: 244 / 232,
  14704. bottom: 0.01
  14705. }
  14706. },
  14707. },
  14708. [
  14709. {
  14710. name: "Normal",
  14711. height: math.unit(6 + 1 / 12, "feet")
  14712. },
  14713. {
  14714. name: "Macro",
  14715. height: math.unit(175, "feet"),
  14716. default: true
  14717. },
  14718. ]
  14719. ))
  14720. characterMakers.push(() => makeCharacter(
  14721. { name: "Nita" },
  14722. {
  14723. front: {
  14724. height: math.unit(1.82, "meters"),
  14725. weight: math.unit(140, "lb"),
  14726. name: "Front",
  14727. image: {
  14728. source: "./media/characters/nita/front.svg",
  14729. extra: 2473 / 2363,
  14730. bottom: 0.01
  14731. }
  14732. },
  14733. },
  14734. [
  14735. {
  14736. name: "Normal",
  14737. height: math.unit(1.82, "m")
  14738. },
  14739. {
  14740. name: "Macro",
  14741. height: math.unit(300, "m")
  14742. },
  14743. {
  14744. name: "Mistake Canon",
  14745. height: math.unit(0.5, "miles"),
  14746. default: true
  14747. },
  14748. {
  14749. name: "Big Mistake",
  14750. height: math.unit(13, "miles")
  14751. },
  14752. {
  14753. name: "Playing God",
  14754. height: math.unit(2450, "miles")
  14755. },
  14756. ]
  14757. ))
  14758. characterMakers.push(() => makeCharacter(
  14759. { name: "Shiriko" },
  14760. {
  14761. front: {
  14762. height: math.unit(4, "feet"),
  14763. weight: math.unit(120, "lb"),
  14764. name: "Front",
  14765. image: {
  14766. source: "./media/characters/shiriko/front.svg",
  14767. extra: 195 / 188
  14768. }
  14769. },
  14770. },
  14771. [
  14772. {
  14773. name: "Normal",
  14774. height: math.unit(4, "feet"),
  14775. default: true
  14776. },
  14777. ]
  14778. ))
  14779. characterMakers.push(() => makeCharacter(
  14780. { name: "Deja" },
  14781. {
  14782. front: {
  14783. height: math.unit(6, "feet"),
  14784. name: "front",
  14785. image: {
  14786. source: "./media/characters/deja/front.svg",
  14787. extra: 926 / 840,
  14788. bottom: 0.07
  14789. }
  14790. },
  14791. },
  14792. [
  14793. {
  14794. name: "Planck Length",
  14795. height: math.unit(1.6e-35, "meters")
  14796. },
  14797. {
  14798. name: "Normal",
  14799. height: math.unit(30.48, "meters"),
  14800. default: true
  14801. },
  14802. {
  14803. name: "Universal",
  14804. height: math.unit(8.8e26, "meters")
  14805. },
  14806. ]
  14807. ))
  14808. characterMakers.push(() => makeCharacter(
  14809. { name: "Anima" },
  14810. {
  14811. side: {
  14812. height: math.unit(8, "feet"),
  14813. weight: math.unit(6300, "lb"),
  14814. name: "Side",
  14815. image: {
  14816. source: "./media/characters/anima/side.svg",
  14817. bottom: 0.035
  14818. }
  14819. },
  14820. },
  14821. [
  14822. {
  14823. name: "Normal",
  14824. height: math.unit(8, "feet"),
  14825. default: true
  14826. },
  14827. ]
  14828. ))
  14829. characterMakers.push(() => makeCharacter(
  14830. { name: "Bianca" },
  14831. {
  14832. front: {
  14833. height: math.unit(8, "feet"),
  14834. weight: math.unit(350, "lb"),
  14835. name: "Front",
  14836. image: {
  14837. source: "./media/characters/bianca/front.svg",
  14838. extra: 234 / 225,
  14839. bottom: 0.03
  14840. }
  14841. },
  14842. },
  14843. [
  14844. {
  14845. name: "Normal",
  14846. height: math.unit(8, "feet"),
  14847. default: true
  14848. },
  14849. ]
  14850. ))
  14851. characterMakers.push(() => makeCharacter(
  14852. { name: "Adinia" },
  14853. {
  14854. front: {
  14855. height: math.unit(6, "feet"),
  14856. weight: math.unit(150, "lb"),
  14857. name: "Front",
  14858. image: {
  14859. source: "./media/characters/adinia/front.svg",
  14860. extra: 1845 / 1672,
  14861. bottom: 0.02
  14862. }
  14863. },
  14864. back: {
  14865. height: math.unit(6, "feet"),
  14866. weight: math.unit(150, "lb"),
  14867. name: "Back",
  14868. image: {
  14869. source: "./media/characters/adinia/back.svg",
  14870. extra: 1845 / 1672,
  14871. bottom: 0.002
  14872. }
  14873. },
  14874. },
  14875. [
  14876. {
  14877. name: "Normal",
  14878. height: math.unit(11 + 5 / 12, "feet"),
  14879. default: true
  14880. },
  14881. ]
  14882. ))
  14883. characterMakers.push(() => makeCharacter(
  14884. { name: "Lykasa" },
  14885. {
  14886. front: {
  14887. height: math.unit(3, "meters"),
  14888. weight: math.unit(200, "kg"),
  14889. name: "Front",
  14890. image: {
  14891. source: "./media/characters/lykasa/front.svg",
  14892. extra: 1076 / 976,
  14893. bottom: 0.06
  14894. }
  14895. },
  14896. },
  14897. [
  14898. {
  14899. name: "Normal",
  14900. height: math.unit(3, "meters")
  14901. },
  14902. {
  14903. name: "Kaiju",
  14904. height: math.unit(120, "meters"),
  14905. default: true
  14906. },
  14907. {
  14908. name: "Mega Kaiju",
  14909. height: math.unit(240, "km")
  14910. },
  14911. {
  14912. name: "Giga Kaiju",
  14913. height: math.unit(400, "megameters")
  14914. },
  14915. {
  14916. name: "Tera Kaiju",
  14917. height: math.unit(800, "gigameters")
  14918. },
  14919. {
  14920. name: "Kaiju Dragon Goddess",
  14921. height: math.unit(26, "zettaparsecs")
  14922. },
  14923. ]
  14924. ))
  14925. characterMakers.push(() => makeCharacter(
  14926. { name: "Malfaren" },
  14927. {
  14928. side: {
  14929. height: math.unit(283 / 124 * 6, "feet"),
  14930. weight: math.unit(35000, "lb"),
  14931. name: "Side",
  14932. image: {
  14933. source: "./media/characters/malfaren/side.svg",
  14934. extra: 2500 / 1010,
  14935. bottom: 0.01
  14936. }
  14937. },
  14938. front: {
  14939. height: math.unit(22.36, "feet"),
  14940. weight: math.unit(35000, "lb"),
  14941. name: "Front",
  14942. image: {
  14943. source: "./media/characters/malfaren/front.svg",
  14944. extra: 1631 / 1476,
  14945. bottom: 0.01
  14946. }
  14947. },
  14948. maw: {
  14949. height: math.unit(6.9, "feet"),
  14950. name: "Maw",
  14951. image: {
  14952. source: "./media/characters/malfaren/maw.svg"
  14953. }
  14954. },
  14955. },
  14956. [
  14957. {
  14958. name: "Big",
  14959. height: math.unit(283 / 162 * 6, "feet"),
  14960. },
  14961. {
  14962. name: "Bigger",
  14963. height: math.unit(283 / 124 * 6, "feet")
  14964. },
  14965. {
  14966. name: "Massive",
  14967. height: math.unit(283 / 92 * 6, "feet"),
  14968. default: true
  14969. },
  14970. {
  14971. name: "👀💦",
  14972. height: math.unit(283 / 73 * 6, "feet"),
  14973. },
  14974. ]
  14975. ))
  14976. characterMakers.push(() => makeCharacter(
  14977. { name: "Kernel" },
  14978. {
  14979. front: {
  14980. height: math.unit(1.7, "m"),
  14981. weight: math.unit(70, "kg"),
  14982. name: "Front",
  14983. image: {
  14984. source: "./media/characters/kernel/front.svg",
  14985. extra: 222 / 210,
  14986. bottom: 0.007
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Nano",
  14993. height: math.unit(17, "micrometers")
  14994. },
  14995. {
  14996. name: "Micro",
  14997. height: math.unit(1.7, "mm")
  14998. },
  14999. {
  15000. name: "Small",
  15001. height: math.unit(1.7, "cm")
  15002. },
  15003. {
  15004. name: "Normal",
  15005. height: math.unit(1.7, "m"),
  15006. default: true
  15007. },
  15008. ]
  15009. ))
  15010. characterMakers.push(() => makeCharacter(
  15011. { name: "Jayne Folest" },
  15012. {
  15013. front: {
  15014. height: math.unit(1.75, "meters"),
  15015. weight: math.unit(65, "kg"),
  15016. name: "Front",
  15017. image: {
  15018. source: "./media/characters/jayne-folest/front.svg",
  15019. extra: 2115 / 2007,
  15020. bottom: 0.02
  15021. }
  15022. },
  15023. back: {
  15024. height: math.unit(1.75, "meters"),
  15025. weight: math.unit(65, "kg"),
  15026. name: "Back",
  15027. image: {
  15028. source: "./media/characters/jayne-folest/back.svg",
  15029. extra: 2115 / 2007,
  15030. bottom: 0.005
  15031. }
  15032. },
  15033. frontClothed: {
  15034. height: math.unit(1.75, "meters"),
  15035. weight: math.unit(65, "kg"),
  15036. name: "Front (Clothed)",
  15037. image: {
  15038. source: "./media/characters/jayne-folest/front-clothed.svg",
  15039. extra: 2115 / 2007,
  15040. bottom: 0.035
  15041. }
  15042. },
  15043. hand: {
  15044. height: math.unit(1 / 1.260, "feet"),
  15045. name: "Hand",
  15046. image: {
  15047. source: "./media/characters/jayne-folest/hand.svg"
  15048. }
  15049. },
  15050. foot: {
  15051. height: math.unit(1 / 0.918, "feet"),
  15052. name: "Foot",
  15053. image: {
  15054. source: "./media/characters/jayne-folest/foot.svg"
  15055. }
  15056. },
  15057. },
  15058. [
  15059. {
  15060. name: "Micro",
  15061. height: math.unit(4, "cm")
  15062. },
  15063. {
  15064. name: "Normal",
  15065. height: math.unit(1.75, "meters")
  15066. },
  15067. {
  15068. name: "Macro",
  15069. height: math.unit(47.5, "meters"),
  15070. default: true
  15071. },
  15072. ]
  15073. ))
  15074. characterMakers.push(() => makeCharacter(
  15075. { name: "Algier" },
  15076. {
  15077. front: {
  15078. height: math.unit(180, "cm"),
  15079. weight: math.unit(70, "kg"),
  15080. name: "Front",
  15081. image: {
  15082. source: "./media/characters/algier/front.svg",
  15083. extra: 596 / 572,
  15084. bottom: 0.04
  15085. }
  15086. },
  15087. back: {
  15088. height: math.unit(180, "cm"),
  15089. weight: math.unit(70, "kg"),
  15090. name: "Back",
  15091. image: {
  15092. source: "./media/characters/algier/back.svg",
  15093. extra: 596 / 572,
  15094. bottom: 0.025
  15095. }
  15096. },
  15097. frontdressed: {
  15098. height: math.unit(180, "cm"),
  15099. weight: math.unit(150, "kg"),
  15100. name: "Front-dressed",
  15101. image: {
  15102. source: "./media/characters/algier/front-dressed.svg",
  15103. extra: 596 / 572,
  15104. bottom: 0.038
  15105. }
  15106. },
  15107. },
  15108. [
  15109. {
  15110. name: "Micro",
  15111. height: math.unit(5, "cm")
  15112. },
  15113. {
  15114. name: "Normal",
  15115. height: math.unit(180, "cm"),
  15116. default: true
  15117. },
  15118. {
  15119. name: "Macro",
  15120. height: math.unit(64, "m")
  15121. },
  15122. ]
  15123. ))
  15124. characterMakers.push(() => makeCharacter(
  15125. { name: "Pretzel" },
  15126. {
  15127. upright: {
  15128. height: math.unit(7, "feet"),
  15129. weight: math.unit(300, "lb"),
  15130. name: "Upright",
  15131. image: {
  15132. source: "./media/characters/pretzel/upright.svg",
  15133. extra: 534 / 522,
  15134. bottom: 0.065
  15135. }
  15136. },
  15137. sprawling: {
  15138. height: math.unit(3.75, "feet"),
  15139. weight: math.unit(300, "lb"),
  15140. name: "Sprawling",
  15141. image: {
  15142. source: "./media/characters/pretzel/sprawling.svg",
  15143. extra: 314 / 281,
  15144. bottom: 0.1
  15145. }
  15146. },
  15147. tongue: {
  15148. height: math.unit(2, "feet"),
  15149. name: "Tongue",
  15150. image: {
  15151. source: "./media/characters/pretzel/tongue.svg"
  15152. }
  15153. },
  15154. },
  15155. [
  15156. {
  15157. name: "Normal",
  15158. height: math.unit(7, "feet"),
  15159. default: true
  15160. },
  15161. {
  15162. name: "Oversized",
  15163. height: math.unit(15, "feet")
  15164. },
  15165. {
  15166. name: "Huge",
  15167. height: math.unit(30, "feet")
  15168. },
  15169. {
  15170. name: "Macro",
  15171. height: math.unit(250, "feet")
  15172. },
  15173. ]
  15174. ))
  15175. characterMakers.push(() => makeCharacter(
  15176. { name: "Roxi" },
  15177. {
  15178. sideFront: {
  15179. height: math.unit(5 + 2 / 12, "feet"),
  15180. weight: math.unit(120, "lb"),
  15181. name: "Front Side",
  15182. image: {
  15183. source: "./media/characters/roxi/side-front.svg",
  15184. extra: 2924 / 2717,
  15185. bottom: 0.08
  15186. }
  15187. },
  15188. sideBack: {
  15189. height: math.unit(5 + 2 / 12, "feet"),
  15190. weight: math.unit(120, "lb"),
  15191. name: "Back Side",
  15192. image: {
  15193. source: "./media/characters/roxi/side-back.svg",
  15194. extra: 2904 / 2693,
  15195. bottom: 0.06
  15196. }
  15197. },
  15198. front: {
  15199. height: math.unit(5 + 2 / 12, "feet"),
  15200. weight: math.unit(120, "lb"),
  15201. name: "Front",
  15202. image: {
  15203. source: "./media/characters/roxi/front.svg",
  15204. extra: 2028 / 1907,
  15205. bottom: 0.01
  15206. }
  15207. },
  15208. frontAlt: {
  15209. height: math.unit(5 + 2 / 12, "feet"),
  15210. weight: math.unit(120, "lb"),
  15211. name: "Front (Alt)",
  15212. image: {
  15213. source: "./media/characters/roxi/front-alt.svg",
  15214. extra: 1828 / 1798,
  15215. bottom: 0.01
  15216. }
  15217. },
  15218. sitting: {
  15219. height: math.unit(2.8, "feet"),
  15220. weight: math.unit(120, "lb"),
  15221. name: "Sitting",
  15222. image: {
  15223. source: "./media/characters/roxi/sitting.svg",
  15224. extra: 2660 / 2462,
  15225. bottom: 0.1
  15226. }
  15227. },
  15228. },
  15229. [
  15230. {
  15231. name: "Normal",
  15232. height: math.unit(5 + 2 / 12, "feet"),
  15233. default: true
  15234. },
  15235. ]
  15236. ))
  15237. characterMakers.push(() => makeCharacter(
  15238. { name: "Shadow" },
  15239. {
  15240. side: {
  15241. height: math.unit(55, "feet"),
  15242. weight: math.unit(153, "tons"),
  15243. name: "Side",
  15244. image: {
  15245. source: "./media/characters/shadow/side.svg",
  15246. extra: 701 / 628,
  15247. bottom: 0.02
  15248. }
  15249. },
  15250. flying: {
  15251. height: math.unit(145, "feet"),
  15252. weight: math.unit(153, "tons"),
  15253. name: "Flying",
  15254. image: {
  15255. source: "./media/characters/shadow/flying.svg"
  15256. }
  15257. },
  15258. },
  15259. [
  15260. {
  15261. name: "Normal",
  15262. height: math.unit(55, "feet"),
  15263. default: true
  15264. },
  15265. ]
  15266. ))
  15267. characterMakers.push(() => makeCharacter(
  15268. { name: "Marcie" },
  15269. {
  15270. front: {
  15271. height: math.unit(6, "feet"),
  15272. weight: math.unit(200, "lb"),
  15273. name: "Front",
  15274. image: {
  15275. source: "./media/characters/marcie/front.svg",
  15276. extra: 960 / 876,
  15277. bottom: 58 / 1017.87
  15278. }
  15279. },
  15280. },
  15281. [
  15282. {
  15283. name: "Macro",
  15284. height: math.unit(1, "mile"),
  15285. default: true
  15286. },
  15287. ]
  15288. ))
  15289. characterMakers.push(() => makeCharacter(
  15290. { name: "Kachina" },
  15291. {
  15292. front: {
  15293. height: math.unit(7, "feet"),
  15294. weight: math.unit(200, "lb"),
  15295. name: "Front",
  15296. image: {
  15297. source: "./media/characters/kachina/front.svg",
  15298. extra: 1290.68 / 1119,
  15299. bottom: 36.5 / 1327.18
  15300. }
  15301. },
  15302. },
  15303. [
  15304. {
  15305. name: "Normal",
  15306. height: math.unit(7, "feet"),
  15307. default: true
  15308. },
  15309. ]
  15310. ))
  15311. characterMakers.push(() => makeCharacter(
  15312. { name: "Kash" },
  15313. {
  15314. looking: {
  15315. height: math.unit(2, "meters"),
  15316. weight: math.unit(300, "kg"),
  15317. name: "Looking",
  15318. image: {
  15319. source: "./media/characters/kash/looking.svg",
  15320. extra: 474 / 344,
  15321. bottom: 0.03
  15322. }
  15323. },
  15324. side: {
  15325. height: math.unit(2, "meters"),
  15326. weight: math.unit(300, "kg"),
  15327. name: "Side",
  15328. image: {
  15329. source: "./media/characters/kash/side.svg",
  15330. extra: 302 / 251,
  15331. bottom: 0.03
  15332. }
  15333. },
  15334. front: {
  15335. height: math.unit(2, "meters"),
  15336. weight: math.unit(300, "kg"),
  15337. name: "Front",
  15338. image: {
  15339. source: "./media/characters/kash/front.svg",
  15340. extra: 495 / 360,
  15341. bottom: 0.015
  15342. }
  15343. },
  15344. },
  15345. [
  15346. {
  15347. name: "Normal",
  15348. height: math.unit(2, "meters"),
  15349. default: true
  15350. },
  15351. {
  15352. name: "Big",
  15353. height: math.unit(3, "meters")
  15354. },
  15355. {
  15356. name: "Large",
  15357. height: math.unit(5, "meters")
  15358. },
  15359. ]
  15360. ))
  15361. characterMakers.push(() => makeCharacter(
  15362. { name: "Lalim" },
  15363. {
  15364. feeding: {
  15365. height: math.unit(6.7, "feet"),
  15366. weight: math.unit(350, "lb"),
  15367. name: "Feeding",
  15368. image: {
  15369. source: "./media/characters/lalim/feeding.svg",
  15370. }
  15371. },
  15372. },
  15373. [
  15374. {
  15375. name: "Normal",
  15376. height: math.unit(6.7, "feet"),
  15377. default: true
  15378. },
  15379. ]
  15380. ))
  15381. characterMakers.push(() => makeCharacter(
  15382. { name: "De'Vout" },
  15383. {
  15384. front: {
  15385. height: math.unit(9.5, "feet"),
  15386. weight: math.unit(600, "lb"),
  15387. name: "Front",
  15388. image: {
  15389. source: "./media/characters/de'vout/front.svg",
  15390. extra: 1443 / 1328,
  15391. bottom: 0.025
  15392. }
  15393. },
  15394. back: {
  15395. height: math.unit(9.5, "feet"),
  15396. weight: math.unit(600, "lb"),
  15397. name: "Back",
  15398. image: {
  15399. source: "./media/characters/de'vout/back.svg",
  15400. extra: 1443 / 1328
  15401. }
  15402. },
  15403. frontDressed: {
  15404. height: math.unit(9.5, "feet"),
  15405. weight: math.unit(600, "lb"),
  15406. name: "Front (Dressed",
  15407. image: {
  15408. source: "./media/characters/de'vout/front-dressed.svg",
  15409. extra: 1443 / 1328,
  15410. bottom: 0.025
  15411. }
  15412. },
  15413. backDressed: {
  15414. height: math.unit(9.5, "feet"),
  15415. weight: math.unit(600, "lb"),
  15416. name: "Back (Dressed",
  15417. image: {
  15418. source: "./media/characters/de'vout/back-dressed.svg",
  15419. extra: 1443 / 1328
  15420. }
  15421. },
  15422. },
  15423. [
  15424. {
  15425. name: "Normal",
  15426. height: math.unit(9.5, "feet"),
  15427. default: true
  15428. },
  15429. ]
  15430. ))
  15431. characterMakers.push(() => makeCharacter(
  15432. { name: "Talana" },
  15433. {
  15434. front: {
  15435. height: math.unit(8, "feet"),
  15436. weight: math.unit(225, "lb"),
  15437. name: "Front",
  15438. image: {
  15439. source: "./media/characters/talana/front.svg",
  15440. extra: 1410 / 1300,
  15441. bottom: 0.015
  15442. }
  15443. },
  15444. frontDressed: {
  15445. height: math.unit(8, "feet"),
  15446. weight: math.unit(225, "lb"),
  15447. name: "Front (Dressed",
  15448. image: {
  15449. source: "./media/characters/talana/front-dressed.svg",
  15450. extra: 1410 / 1300,
  15451. bottom: 0.015
  15452. }
  15453. },
  15454. },
  15455. [
  15456. {
  15457. name: "Normal",
  15458. height: math.unit(8, "feet"),
  15459. default: true
  15460. },
  15461. ]
  15462. ))
  15463. characterMakers.push(() => makeCharacter(
  15464. { name: "Xeauvok" },
  15465. {
  15466. side: {
  15467. height: math.unit(7.2, "feet"),
  15468. weight: math.unit(150, "lb"),
  15469. name: "Side",
  15470. image: {
  15471. source: "./media/characters/xeauvok/side.svg",
  15472. extra: 1975 / 1523,
  15473. bottom: 0.07
  15474. }
  15475. },
  15476. },
  15477. [
  15478. {
  15479. name: "Normal",
  15480. height: math.unit(7.2, "feet"),
  15481. default: true
  15482. },
  15483. ]
  15484. ))
  15485. characterMakers.push(() => makeCharacter(
  15486. { name: "Zara" },
  15487. {
  15488. side: {
  15489. height: math.unit(10, "feet"),
  15490. weight: math.unit(900, "kg"),
  15491. name: "Side",
  15492. image: {
  15493. source: "./media/characters/zara/side.svg",
  15494. extra: 504 / 498
  15495. }
  15496. },
  15497. },
  15498. [
  15499. {
  15500. name: "Normal",
  15501. height: math.unit(10, "feet"),
  15502. default: true
  15503. },
  15504. ]
  15505. ))
  15506. characterMakers.push(() => makeCharacter(
  15507. { name: "Richard (Dragon)" },
  15508. {
  15509. side: {
  15510. height: math.unit(6, "feet"),
  15511. weight: math.unit(150, "lb"),
  15512. name: "Side",
  15513. image: {
  15514. source: "./media/characters/richard-dragon/side.svg",
  15515. extra: 845 / 340,
  15516. bottom: 0.017
  15517. }
  15518. },
  15519. maw: {
  15520. height: math.unit(2.97, "feet"),
  15521. name: "Maw",
  15522. image: {
  15523. source: "./media/characters/richard-dragon/maw.svg"
  15524. }
  15525. },
  15526. },
  15527. [
  15528. ]
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Richard (Smeargle)" },
  15532. {
  15533. front: {
  15534. height: math.unit(4, "feet"),
  15535. weight: math.unit(100, "lb"),
  15536. name: "Front",
  15537. image: {
  15538. source: "./media/characters/richard-smeargle/front.svg",
  15539. extra: 2952 / 2820,
  15540. bottom: 0.028
  15541. }
  15542. },
  15543. },
  15544. [
  15545. {
  15546. name: "Normal",
  15547. height: math.unit(4, "feet"),
  15548. default: true
  15549. },
  15550. {
  15551. name: "Dynamax",
  15552. height: math.unit(20, "meters")
  15553. },
  15554. ]
  15555. ))
  15556. characterMakers.push(() => makeCharacter(
  15557. { name: "Klay" },
  15558. {
  15559. front: {
  15560. height: math.unit(6, "feet"),
  15561. weight: math.unit(110, "lb"),
  15562. name: "Front",
  15563. image: {
  15564. source: "./media/characters/klay/front.svg",
  15565. extra: 962 / 883,
  15566. bottom: 0.04
  15567. }
  15568. },
  15569. back: {
  15570. height: math.unit(6, "feet"),
  15571. weight: math.unit(110, "lb"),
  15572. name: "Back",
  15573. image: {
  15574. source: "./media/characters/klay/back.svg",
  15575. extra: 962 / 883
  15576. }
  15577. },
  15578. beans: {
  15579. height: math.unit(1.15, "feet"),
  15580. name: "Beans",
  15581. image: {
  15582. source: "./media/characters/klay/beans.svg"
  15583. }
  15584. },
  15585. },
  15586. [
  15587. {
  15588. name: "Micro",
  15589. height: math.unit(6, "inches")
  15590. },
  15591. {
  15592. name: "Mini",
  15593. height: math.unit(3, "feet")
  15594. },
  15595. {
  15596. name: "Normal",
  15597. height: math.unit(6, "feet"),
  15598. default: true
  15599. },
  15600. {
  15601. name: "Big",
  15602. height: math.unit(25, "feet")
  15603. },
  15604. {
  15605. name: "Macro",
  15606. height: math.unit(100, "feet")
  15607. },
  15608. {
  15609. name: "Megamacro",
  15610. height: math.unit(400, "feet")
  15611. },
  15612. ]
  15613. ))
  15614. characterMakers.push(() => makeCharacter(
  15615. { name: "Marcus" },
  15616. {
  15617. front: {
  15618. height: math.unit(6, "feet"),
  15619. weight: math.unit(160, "lb"),
  15620. name: "Front",
  15621. image: {
  15622. source: "./media/characters/marcus/front.svg",
  15623. extra: 734 / 676,
  15624. bottom: 0.03
  15625. }
  15626. },
  15627. },
  15628. [
  15629. {
  15630. name: "Little",
  15631. height: math.unit(6, "feet")
  15632. },
  15633. {
  15634. name: "Normal",
  15635. height: math.unit(110, "feet"),
  15636. default: true
  15637. },
  15638. {
  15639. name: "Macro",
  15640. height: math.unit(250, "feet")
  15641. },
  15642. {
  15643. name: "Megamacro",
  15644. height: math.unit(1000, "feet")
  15645. },
  15646. ]
  15647. ))
  15648. characterMakers.push(() => makeCharacter(
  15649. { name: "Claude DelRoute" },
  15650. {
  15651. front: {
  15652. height: math.unit(7, "feet"),
  15653. weight: math.unit(275, "lb"),
  15654. name: "Front",
  15655. image: {
  15656. source: "./media/characters/claude-delroute/front.svg",
  15657. extra: 230 / 214,
  15658. bottom: 0.007
  15659. }
  15660. },
  15661. side: {
  15662. height: math.unit(7, "feet"),
  15663. weight: math.unit(275, "lb"),
  15664. name: "Side",
  15665. image: {
  15666. source: "./media/characters/claude-delroute/side.svg",
  15667. extra: 222 / 214,
  15668. bottom: 0.01
  15669. }
  15670. },
  15671. back: {
  15672. height: math.unit(7, "feet"),
  15673. weight: math.unit(275, "lb"),
  15674. name: "Back",
  15675. image: {
  15676. source: "./media/characters/claude-delroute/back.svg",
  15677. extra: 230 / 214,
  15678. bottom: 0.015
  15679. }
  15680. },
  15681. maw: {
  15682. height: math.unit(0.6407, "meters"),
  15683. name: "Maw",
  15684. image: {
  15685. source: "./media/characters/claude-delroute/maw.svg"
  15686. }
  15687. },
  15688. },
  15689. [
  15690. {
  15691. name: "Normal",
  15692. height: math.unit(7, "feet"),
  15693. default: true
  15694. },
  15695. {
  15696. name: "Lorge",
  15697. height: math.unit(20, "feet")
  15698. },
  15699. ]
  15700. ))
  15701. characterMakers.push(() => makeCharacter(
  15702. { name: "Dragonien" },
  15703. {
  15704. front: {
  15705. height: math.unit(8 + 4 / 12, "feet"),
  15706. weight: math.unit(600, "lb"),
  15707. name: "Front",
  15708. image: {
  15709. source: "./media/characters/dragonien/front.svg",
  15710. extra: 100 / 94,
  15711. bottom: 3.3 / 103.3445
  15712. }
  15713. },
  15714. back: {
  15715. height: math.unit(8 + 4 / 12, "feet"),
  15716. weight: math.unit(600, "lb"),
  15717. name: "Back",
  15718. image: {
  15719. source: "./media/characters/dragonien/back.svg",
  15720. extra: 776 / 746,
  15721. bottom: 6.4 / 782.0616
  15722. }
  15723. },
  15724. foot: {
  15725. height: math.unit(1.54, "feet"),
  15726. name: "Foot",
  15727. image: {
  15728. source: "./media/characters/dragonien/foot.svg",
  15729. }
  15730. },
  15731. },
  15732. [
  15733. {
  15734. name: "Normal",
  15735. height: math.unit(8 + 4 / 12, "feet"),
  15736. default: true
  15737. },
  15738. {
  15739. name: "Macro",
  15740. height: math.unit(200, "feet")
  15741. },
  15742. {
  15743. name: "Megamacro",
  15744. height: math.unit(1, "mile")
  15745. },
  15746. {
  15747. name: "Gigamacro",
  15748. height: math.unit(1000, "miles")
  15749. },
  15750. ]
  15751. ))
  15752. characterMakers.push(() => makeCharacter(
  15753. { name: "Desta" },
  15754. {
  15755. front: {
  15756. height: math.unit(5 + 2 / 12, "feet"),
  15757. weight: math.unit(110, "lb"),
  15758. name: "Front",
  15759. image: {
  15760. source: "./media/characters/desta/front.svg",
  15761. extra: 1482 / 1417
  15762. }
  15763. },
  15764. side: {
  15765. height: math.unit(5 + 2 / 12, "feet"),
  15766. weight: math.unit(110, "lb"),
  15767. name: "Side",
  15768. image: {
  15769. source: "./media/characters/desta/side.svg",
  15770. extra: 2579 / 2491,
  15771. bottom: 0.053
  15772. }
  15773. },
  15774. },
  15775. [
  15776. {
  15777. name: "Micro",
  15778. height: math.unit(6, "inches")
  15779. },
  15780. {
  15781. name: "Normal",
  15782. height: math.unit(5 + 2 / 12, "feet"),
  15783. default: true
  15784. },
  15785. {
  15786. name: "Macro",
  15787. height: math.unit(62, "feet")
  15788. },
  15789. {
  15790. name: "Megamacro",
  15791. height: math.unit(1800, "feet")
  15792. },
  15793. ]
  15794. ))
  15795. characterMakers.push(() => makeCharacter(
  15796. { name: "Storm Alystar" },
  15797. {
  15798. front: {
  15799. height: math.unit(10, "feet"),
  15800. weight: math.unit(700, "lb"),
  15801. name: "Front",
  15802. image: {
  15803. source: "./media/characters/storm-alystar/front.svg",
  15804. extra: 2112 / 1898,
  15805. bottom: 0.034
  15806. }
  15807. },
  15808. },
  15809. [
  15810. {
  15811. name: "Micro",
  15812. height: math.unit(3.5, "inches")
  15813. },
  15814. {
  15815. name: "Normal",
  15816. height: math.unit(10, "feet"),
  15817. default: true
  15818. },
  15819. {
  15820. name: "Macro",
  15821. height: math.unit(400, "feet")
  15822. },
  15823. {
  15824. name: "Deific",
  15825. height: math.unit(60, "miles")
  15826. },
  15827. ]
  15828. ))
  15829. characterMakers.push(() => makeCharacter(
  15830. { name: "Ilia" },
  15831. {
  15832. front: {
  15833. height: math.unit(2.35, "meters"),
  15834. weight: math.unit(119, "kg"),
  15835. name: "Front",
  15836. image: {
  15837. source: "./media/characters/ilia/front.svg",
  15838. extra: 1285 / 1255,
  15839. bottom: 0.06
  15840. }
  15841. },
  15842. },
  15843. [
  15844. {
  15845. name: "Normal",
  15846. height: math.unit(2.35, "meters")
  15847. },
  15848. {
  15849. name: "Macro",
  15850. height: math.unit(140, "meters"),
  15851. default: true
  15852. },
  15853. {
  15854. name: "Megamacro",
  15855. height: math.unit(100, "miles")
  15856. },
  15857. ]
  15858. ))
  15859. characterMakers.push(() => makeCharacter(
  15860. { name: "KingDead" },
  15861. {
  15862. front: {
  15863. height: math.unit(6 + 5 / 12, "feet"),
  15864. weight: math.unit(190, "lb"),
  15865. name: "Front",
  15866. image: {
  15867. source: "./media/characters/kingdead/front.svg",
  15868. extra: 1228 / 1177
  15869. }
  15870. },
  15871. },
  15872. [
  15873. {
  15874. name: "Micro",
  15875. height: math.unit(7, "inches")
  15876. },
  15877. {
  15878. name: "Normal",
  15879. height: math.unit(6 + 5 / 12, "feet")
  15880. },
  15881. {
  15882. name: "Macro",
  15883. height: math.unit(150, "feet"),
  15884. default: true
  15885. },
  15886. {
  15887. name: "Megamacro",
  15888. height: math.unit(200, "miles")
  15889. },
  15890. ]
  15891. ))
  15892. characterMakers.push(() => makeCharacter(
  15893. { name: "Kyrehx" },
  15894. {
  15895. front: {
  15896. height: math.unit(8, "feet"),
  15897. weight: math.unit(600, "lb"),
  15898. name: "Front",
  15899. image: {
  15900. source: "./media/characters/kyrehx/front.svg",
  15901. extra: 1195 / 1095,
  15902. bottom: 0.034
  15903. }
  15904. },
  15905. },
  15906. [
  15907. {
  15908. name: "Micro",
  15909. height: math.unit(2, "inches")
  15910. },
  15911. {
  15912. name: "Normal",
  15913. height: math.unit(8, "feet"),
  15914. default: true
  15915. },
  15916. {
  15917. name: "Macro",
  15918. height: math.unit(255, "feet")
  15919. },
  15920. ]
  15921. ))
  15922. characterMakers.push(() => makeCharacter(
  15923. { name: "Xang" },
  15924. {
  15925. front: {
  15926. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15927. weight: math.unit(184, "lb"),
  15928. name: "Front",
  15929. image: {
  15930. source: "./media/characters/xang/front.svg",
  15931. extra: 845 / 755
  15932. }
  15933. },
  15934. },
  15935. [
  15936. {
  15937. name: "Normal",
  15938. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15939. default: true
  15940. },
  15941. {
  15942. name: "Macro",
  15943. height: math.unit(0.935 * 146, "feet")
  15944. },
  15945. {
  15946. name: "Megamacro",
  15947. height: math.unit(0.935 * 3, "miles")
  15948. },
  15949. ]
  15950. ))
  15951. characterMakers.push(() => makeCharacter(
  15952. { name: "Doc Weardno" },
  15953. {
  15954. frontDressed: {
  15955. height: math.unit(5 + 7 / 12, "feet"),
  15956. weight: math.unit(140, "lb"),
  15957. name: "Front (Dressed)",
  15958. image: {
  15959. source: "./media/characters/doc-weardno/front-dressed.svg",
  15960. extra: 263 / 234
  15961. }
  15962. },
  15963. backDressed: {
  15964. height: math.unit(5 + 7 / 12, "feet"),
  15965. weight: math.unit(140, "lb"),
  15966. name: "Back (Dressed)",
  15967. image: {
  15968. source: "./media/characters/doc-weardno/back-dressed.svg",
  15969. extra: 266 / 238
  15970. }
  15971. },
  15972. front: {
  15973. height: math.unit(5 + 7 / 12, "feet"),
  15974. weight: math.unit(140, "lb"),
  15975. name: "Front",
  15976. image: {
  15977. source: "./media/characters/doc-weardno/front.svg",
  15978. extra: 254 / 233
  15979. }
  15980. },
  15981. },
  15982. [
  15983. {
  15984. name: "Micro",
  15985. height: math.unit(3, "inches")
  15986. },
  15987. {
  15988. name: "Normal",
  15989. height: math.unit(5 + 7 / 12, "feet"),
  15990. default: true
  15991. },
  15992. {
  15993. name: "Macro",
  15994. height: math.unit(25, "feet")
  15995. },
  15996. {
  15997. name: "Megamacro",
  15998. height: math.unit(2, "miles")
  15999. },
  16000. ]
  16001. ))
  16002. characterMakers.push(() => makeCharacter(
  16003. { name: "Seth Whilst" },
  16004. {
  16005. front: {
  16006. height: math.unit(6 + 2 / 12, "feet"),
  16007. weight: math.unit(153, "lb"),
  16008. name: "Front",
  16009. image: {
  16010. source: "./media/characters/seth-whilst/front.svg",
  16011. bottom: 0.07
  16012. }
  16013. },
  16014. },
  16015. [
  16016. {
  16017. name: "Micro",
  16018. height: math.unit(5, "inches")
  16019. },
  16020. {
  16021. name: "Normal",
  16022. height: math.unit(6 + 2 / 12, "feet"),
  16023. default: true
  16024. },
  16025. ]
  16026. ))
  16027. characterMakers.push(() => makeCharacter(
  16028. { name: "Pocket Jabari" },
  16029. {
  16030. front: {
  16031. height: math.unit(3, "inches"),
  16032. weight: math.unit(8, "grams"),
  16033. name: "Front",
  16034. image: {
  16035. source: "./media/characters/pocket-jabari/front.svg",
  16036. extra: 1024 / 974,
  16037. bottom: 0.039
  16038. }
  16039. },
  16040. },
  16041. [
  16042. {
  16043. name: "Minimicro",
  16044. height: math.unit(8, "mm")
  16045. },
  16046. {
  16047. name: "Micro",
  16048. height: math.unit(3, "inches"),
  16049. default: true
  16050. },
  16051. {
  16052. name: "Normal",
  16053. height: math.unit(3, "feet")
  16054. },
  16055. ]
  16056. ))
  16057. characterMakers.push(() => makeCharacter(
  16058. { name: "Sapphy" },
  16059. {
  16060. front: {
  16061. height: math.unit(15, "feet"),
  16062. weight: math.unit(3280, "lb"),
  16063. name: "Front",
  16064. image: {
  16065. source: "./media/characters/sapphy/front.svg",
  16066. extra: 671 / 577,
  16067. bottom: 0.085
  16068. }
  16069. },
  16070. back: {
  16071. height: math.unit(15, "feet"),
  16072. weight: math.unit(3280, "lb"),
  16073. name: "Back",
  16074. image: {
  16075. source: "./media/characters/sapphy/back.svg",
  16076. extra: 631 / 607,
  16077. bottom: 0.045
  16078. }
  16079. },
  16080. },
  16081. [
  16082. {
  16083. name: "Normal",
  16084. height: math.unit(15, "feet")
  16085. },
  16086. {
  16087. name: "Casual Macro",
  16088. height: math.unit(120, "feet")
  16089. },
  16090. {
  16091. name: "Macro",
  16092. height: math.unit(2150, "feet"),
  16093. default: true
  16094. },
  16095. {
  16096. name: "Megamacro",
  16097. height: math.unit(8, "miles")
  16098. },
  16099. {
  16100. name: "Galaxy Mom",
  16101. height: math.unit(6, "megalightyears")
  16102. },
  16103. ]
  16104. ))
  16105. characterMakers.push(() => makeCharacter(
  16106. { name: "Kiro" },
  16107. {
  16108. front: {
  16109. height: math.unit(6, "feet"),
  16110. weight: math.unit(170, "lb"),
  16111. name: "Front",
  16112. image: {
  16113. source: "./media/characters/kiro/front.svg",
  16114. extra: 1064 / 1012,
  16115. bottom: 0.052
  16116. }
  16117. },
  16118. },
  16119. [
  16120. {
  16121. name: "Micro",
  16122. height: math.unit(6, "inches")
  16123. },
  16124. {
  16125. name: "Normal",
  16126. height: math.unit(6, "feet"),
  16127. default: true
  16128. },
  16129. {
  16130. name: "Macro",
  16131. height: math.unit(72, "feet")
  16132. },
  16133. ]
  16134. ))
  16135. characterMakers.push(() => makeCharacter(
  16136. { name: "Irishfox" },
  16137. {
  16138. front: {
  16139. height: math.unit(5 + 9 / 12, "feet"),
  16140. weight: math.unit(175, "lb"),
  16141. name: "Front",
  16142. image: {
  16143. source: "./media/characters/irishfox/front.svg",
  16144. extra: 1912 / 1680,
  16145. bottom: 0.02
  16146. }
  16147. },
  16148. },
  16149. [
  16150. {
  16151. name: "Nano",
  16152. height: math.unit(1, "mm")
  16153. },
  16154. {
  16155. name: "Micro",
  16156. height: math.unit(2, "inches")
  16157. },
  16158. {
  16159. name: "Normal",
  16160. height: math.unit(5 + 9 / 12, "feet"),
  16161. default: true
  16162. },
  16163. {
  16164. name: "Macro",
  16165. height: math.unit(45, "feet")
  16166. },
  16167. ]
  16168. ))
  16169. characterMakers.push(() => makeCharacter(
  16170. { name: "Aronai Sieyes" },
  16171. {
  16172. front: {
  16173. height: math.unit(6 + 1 / 12, "feet"),
  16174. weight: math.unit(150, "lb"),
  16175. name: "Front",
  16176. image: {
  16177. source: "./media/characters/aronai-sieyes/front.svg",
  16178. extra: 1556 / 1480,
  16179. bottom: 0.015
  16180. }
  16181. },
  16182. side: {
  16183. height: math.unit(6 + 1 / 12, "feet"),
  16184. weight: math.unit(150, "lb"),
  16185. name: "Side",
  16186. image: {
  16187. source: "./media/characters/aronai-sieyes/side.svg",
  16188. extra: 1433 / 1390,
  16189. bottom: 0.0393
  16190. }
  16191. },
  16192. back: {
  16193. height: math.unit(6 + 1 / 12, "feet"),
  16194. weight: math.unit(150, "lb"),
  16195. name: "Back",
  16196. image: {
  16197. source: "./media/characters/aronai-sieyes/back.svg",
  16198. extra: 1544 / 1494,
  16199. bottom: 0.02
  16200. }
  16201. },
  16202. frontClothed: {
  16203. height: math.unit(6 + 1 / 12, "feet"),
  16204. weight: math.unit(150, "lb"),
  16205. name: "Front (Clothed)",
  16206. image: {
  16207. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16208. extra: 1582 / 1527
  16209. }
  16210. },
  16211. feral: {
  16212. height: math.unit(18, "feet"),
  16213. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16214. name: "Feral",
  16215. image: {
  16216. source: "./media/characters/aronai-sieyes/feral.svg",
  16217. extra: 1530 / 1240,
  16218. bottom: 0.035
  16219. }
  16220. },
  16221. },
  16222. [
  16223. {
  16224. name: "Micro",
  16225. height: math.unit(2, "inches")
  16226. },
  16227. {
  16228. name: "Normal",
  16229. height: math.unit(6 + 1 / 12, "feet"),
  16230. default: true
  16231. }
  16232. ]
  16233. ))
  16234. characterMakers.push(() => makeCharacter(
  16235. { name: "Xuna" },
  16236. {
  16237. front: {
  16238. height: math.unit(12, "feet"),
  16239. weight: math.unit(410, "kg"),
  16240. name: "Front",
  16241. image: {
  16242. source: "./media/characters/xuna/front.svg",
  16243. extra: 2184 / 1980
  16244. }
  16245. },
  16246. side: {
  16247. height: math.unit(12, "feet"),
  16248. weight: math.unit(410, "kg"),
  16249. name: "Side",
  16250. image: {
  16251. source: "./media/characters/xuna/side.svg",
  16252. extra: 2184 / 1980
  16253. }
  16254. },
  16255. back: {
  16256. height: math.unit(12, "feet"),
  16257. weight: math.unit(410, "kg"),
  16258. name: "Back",
  16259. image: {
  16260. source: "./media/characters/xuna/back.svg",
  16261. extra: 2184 / 1980
  16262. }
  16263. },
  16264. },
  16265. [
  16266. {
  16267. name: "Nano glow",
  16268. height: math.unit(10, "nm")
  16269. },
  16270. {
  16271. name: "Micro floof",
  16272. height: math.unit(0.3, "m")
  16273. },
  16274. {
  16275. name: "Huggable softy boi",
  16276. height: math.unit(3.6576, "m"),
  16277. default: true
  16278. },
  16279. {
  16280. name: "Admirable floof",
  16281. height: math.unit(80, "meters")
  16282. },
  16283. {
  16284. name: "Gentle macro",
  16285. height: math.unit(300, "meters")
  16286. },
  16287. {
  16288. name: "Very careful floof",
  16289. height: math.unit(3200, "meters")
  16290. },
  16291. {
  16292. name: "The mega floof",
  16293. height: math.unit(36000, "meters")
  16294. },
  16295. {
  16296. name: "Giga-fur-Wicker",
  16297. height: math.unit(4800000, "meters")
  16298. },
  16299. {
  16300. name: "Licky world",
  16301. height: math.unit(20000000, "meters")
  16302. },
  16303. {
  16304. name: "Floofy cyan sun",
  16305. height: math.unit(1500000000, "meters")
  16306. },
  16307. {
  16308. name: "Milky Wicker",
  16309. height: math.unit(1000000000000000000000, "meters")
  16310. },
  16311. {
  16312. name: "The observing Wicker",
  16313. height: math.unit(999999999999999999999999999, "meters")
  16314. },
  16315. ]
  16316. ))
  16317. characterMakers.push(() => makeCharacter(
  16318. { name: "Arokha Sieyes" },
  16319. {
  16320. front: {
  16321. height: math.unit(5 + 9 / 12, "feet"),
  16322. weight: math.unit(150, "lb"),
  16323. name: "Front",
  16324. image: {
  16325. source: "./media/characters/arokha-sieyes/front.svg",
  16326. extra: 1425 / 1284,
  16327. bottom: 0.05
  16328. }
  16329. },
  16330. },
  16331. [
  16332. {
  16333. name: "Normal",
  16334. height: math.unit(5 + 9 / 12, "feet")
  16335. },
  16336. {
  16337. name: "Macro",
  16338. height: math.unit(30, "meters"),
  16339. default: true
  16340. },
  16341. ]
  16342. ))
  16343. characterMakers.push(() => makeCharacter(
  16344. { name: "Arokh Sieyes" },
  16345. {
  16346. front: {
  16347. height: math.unit(6, "feet"),
  16348. weight: math.unit(180, "lb"),
  16349. name: "Front",
  16350. image: {
  16351. source: "./media/characters/arokh-sieyes/front.svg",
  16352. extra: 1830 / 1769,
  16353. bottom: 0.01
  16354. }
  16355. },
  16356. },
  16357. [
  16358. {
  16359. name: "Normal",
  16360. height: math.unit(6, "feet")
  16361. },
  16362. {
  16363. name: "Macro",
  16364. height: math.unit(30, "meters"),
  16365. default: true
  16366. },
  16367. ]
  16368. ))
  16369. characterMakers.push(() => makeCharacter(
  16370. { name: "Goldeneye" },
  16371. {
  16372. side: {
  16373. height: math.unit(13 + 1 / 12, "feet"),
  16374. weight: math.unit(8.5, "tonnes"),
  16375. name: "Side",
  16376. image: {
  16377. source: "./media/characters/goldeneye/side.svg",
  16378. extra: 1182 / 778,
  16379. bottom: 0.067
  16380. }
  16381. },
  16382. paw: {
  16383. height: math.unit(3.4, "feet"),
  16384. name: "Paw",
  16385. image: {
  16386. source: "./media/characters/goldeneye/paw.svg"
  16387. }
  16388. },
  16389. },
  16390. [
  16391. {
  16392. name: "Normal",
  16393. height: math.unit(13 + 1 / 12, "feet"),
  16394. default: true
  16395. },
  16396. ]
  16397. ))
  16398. characterMakers.push(() => makeCharacter(
  16399. { name: "Leonardo Lycheborne" },
  16400. {
  16401. front: {
  16402. height: math.unit(6 + 1 / 12, "feet"),
  16403. weight: math.unit(210, "lb"),
  16404. name: "Front",
  16405. image: {
  16406. source: "./media/characters/leonardo-lycheborne/front.svg",
  16407. extra: 390 / 365,
  16408. bottom: 0.032
  16409. }
  16410. },
  16411. side: {
  16412. height: math.unit(6 + 1 / 12, "feet"),
  16413. weight: math.unit(210, "lb"),
  16414. name: "Side",
  16415. image: {
  16416. source: "./media/characters/leonardo-lycheborne/side.svg",
  16417. extra: 390 / 365,
  16418. bottom: 0.005
  16419. }
  16420. },
  16421. back: {
  16422. height: math.unit(6 + 1 / 12, "feet"),
  16423. weight: math.unit(210, "lb"),
  16424. name: "Back",
  16425. image: {
  16426. source: "./media/characters/leonardo-lycheborne/back.svg",
  16427. extra: 392 / 366,
  16428. bottom: 0.01
  16429. }
  16430. },
  16431. hand: {
  16432. height: math.unit(1.08, "feet"),
  16433. name: "Hand",
  16434. image: {
  16435. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16436. }
  16437. },
  16438. foot: {
  16439. height: math.unit(1.32, "feet"),
  16440. name: "Foot",
  16441. image: {
  16442. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16443. }
  16444. },
  16445. were: {
  16446. height: math.unit(20, "feet"),
  16447. weight: math.unit(7800, "lb"),
  16448. name: "Were",
  16449. image: {
  16450. source: "./media/characters/leonardo-lycheborne/were.svg",
  16451. extra: 308 / 294,
  16452. bottom: 0.048
  16453. }
  16454. },
  16455. feral: {
  16456. height: math.unit(7.5, "feet"),
  16457. weight: math.unit(600, "lb"),
  16458. name: "Feral",
  16459. image: {
  16460. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16461. extra: 210 / 186,
  16462. bottom: 0.108
  16463. }
  16464. },
  16465. taur: {
  16466. height: math.unit(11, "feet"),
  16467. weight: math.unit(3300, "lb"),
  16468. name: "Taur",
  16469. image: {
  16470. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16471. extra: 320 / 303,
  16472. bottom: 0.025
  16473. }
  16474. },
  16475. barghest: {
  16476. height: math.unit(11, "feet"),
  16477. weight: math.unit(1300, "lb"),
  16478. name: "Barghest",
  16479. image: {
  16480. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16481. extra: 323 / 302,
  16482. bottom: 0.027
  16483. }
  16484. },
  16485. dick: {
  16486. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16487. name: "Dick",
  16488. image: {
  16489. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16490. }
  16491. },
  16492. dickWere: {
  16493. height: math.unit((20) / 3.8, "feet"),
  16494. name: "Dick (Were)",
  16495. image: {
  16496. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16497. }
  16498. },
  16499. },
  16500. [
  16501. {
  16502. name: "Normal",
  16503. height: math.unit(6 + 1 / 12, "feet"),
  16504. default: true
  16505. },
  16506. ]
  16507. ))
  16508. characterMakers.push(() => makeCharacter(
  16509. { name: "Jet" },
  16510. {
  16511. front: {
  16512. height: math.unit(10, "feet"),
  16513. weight: math.unit(350, "lb"),
  16514. name: "Front",
  16515. image: {
  16516. source: "./media/characters/jet/front.svg",
  16517. extra: 2050 / 1980,
  16518. bottom: 0.013
  16519. }
  16520. },
  16521. back: {
  16522. height: math.unit(10, "feet"),
  16523. weight: math.unit(350, "lb"),
  16524. name: "Back",
  16525. image: {
  16526. source: "./media/characters/jet/back.svg",
  16527. extra: 2050 / 1980,
  16528. bottom: 0.013
  16529. }
  16530. },
  16531. },
  16532. [
  16533. {
  16534. name: "Micro",
  16535. height: math.unit(6, "inches")
  16536. },
  16537. {
  16538. name: "Normal",
  16539. height: math.unit(10, "feet"),
  16540. default: true
  16541. },
  16542. {
  16543. name: "Macro",
  16544. height: math.unit(100, "feet")
  16545. },
  16546. ]
  16547. ))
  16548. characterMakers.push(() => makeCharacter(
  16549. { name: "Tanarath" },
  16550. {
  16551. front: {
  16552. height: math.unit(15, "feet"),
  16553. weight: math.unit(2800, "lb"),
  16554. name: "Front",
  16555. image: {
  16556. source: "./media/characters/tanarath/front.svg",
  16557. extra: 2392 / 2220,
  16558. bottom: 0.03
  16559. }
  16560. },
  16561. back: {
  16562. height: math.unit(15, "feet"),
  16563. weight: math.unit(2800, "lb"),
  16564. name: "Back",
  16565. image: {
  16566. source: "./media/characters/tanarath/back.svg",
  16567. extra: 2392 / 2220,
  16568. bottom: 0.03
  16569. }
  16570. },
  16571. },
  16572. [
  16573. {
  16574. name: "Normal",
  16575. height: math.unit(15, "feet"),
  16576. default: true
  16577. },
  16578. ]
  16579. ))
  16580. characterMakers.push(() => makeCharacter(
  16581. { name: "Patty CattyBatty" },
  16582. {
  16583. front: {
  16584. height: math.unit(7 + 1 / 12, "feet"),
  16585. weight: math.unit(175, "lb"),
  16586. name: "Front",
  16587. image: {
  16588. source: "./media/characters/patty-cattybatty/front.svg",
  16589. extra: 908 / 874,
  16590. bottom: 0.025
  16591. }
  16592. },
  16593. },
  16594. [
  16595. {
  16596. name: "Micro",
  16597. height: math.unit(1, "inch")
  16598. },
  16599. {
  16600. name: "Normal",
  16601. height: math.unit(7 + 1 / 12, "feet")
  16602. },
  16603. {
  16604. name: "Mini Macro",
  16605. height: math.unit(155, "feet")
  16606. },
  16607. {
  16608. name: "Macro",
  16609. height: math.unit(1077, "feet")
  16610. },
  16611. {
  16612. name: "Mega Macro",
  16613. height: math.unit(47650, "feet"),
  16614. default: true
  16615. },
  16616. {
  16617. name: "Giga Macro",
  16618. height: math.unit(440, "miles")
  16619. },
  16620. {
  16621. name: "Tera Macro",
  16622. height: math.unit(8700, "miles")
  16623. },
  16624. {
  16625. name: "Planetary Macro",
  16626. height: math.unit(32700, "miles")
  16627. },
  16628. {
  16629. name: "Solar Macro",
  16630. height: math.unit(550000, "miles")
  16631. },
  16632. {
  16633. name: "Celestial Macro",
  16634. height: math.unit(2.5, "AU")
  16635. },
  16636. ]
  16637. ))
  16638. characterMakers.push(() => makeCharacter(
  16639. { name: "Cappu" },
  16640. {
  16641. front: {
  16642. height: math.unit(4 + 5 / 12, "feet"),
  16643. weight: math.unit(90, "lb"),
  16644. name: "Front",
  16645. image: {
  16646. source: "./media/characters/cappu/front.svg",
  16647. extra: 1247 / 1152,
  16648. bottom: 0.012
  16649. }
  16650. },
  16651. },
  16652. [
  16653. {
  16654. name: "Normal",
  16655. height: math.unit(4 + 5 / 12, "feet"),
  16656. default: true
  16657. },
  16658. ]
  16659. ))
  16660. characterMakers.push(() => makeCharacter(
  16661. { name: "Sebi" },
  16662. {
  16663. frontDressed: {
  16664. height: math.unit(70, "cm"),
  16665. weight: math.unit(6, "kg"),
  16666. name: "Front (Dressed)",
  16667. image: {
  16668. source: "./media/characters/sebi/front-dressed.svg",
  16669. extra: 713.5 / 686.5,
  16670. bottom: 0.003
  16671. }
  16672. },
  16673. front: {
  16674. height: math.unit(70, "cm"),
  16675. weight: math.unit(5, "kg"),
  16676. name: "Front",
  16677. image: {
  16678. source: "./media/characters/sebi/front.svg",
  16679. extra: 713.5 / 686.5,
  16680. bottom: 0.003
  16681. }
  16682. }
  16683. },
  16684. [
  16685. {
  16686. name: "Normal",
  16687. height: math.unit(70, "cm"),
  16688. default: true
  16689. },
  16690. {
  16691. name: "Macro",
  16692. height: math.unit(8, "meters")
  16693. },
  16694. ]
  16695. ))
  16696. characterMakers.push(() => makeCharacter(
  16697. { name: "Typhek" },
  16698. {
  16699. front: {
  16700. height: math.unit(6, "feet"),
  16701. weight: math.unit(150, "lb"),
  16702. name: "Front",
  16703. image: {
  16704. source: "./media/characters/typhek/front.svg",
  16705. extra: 1948 / 1929,
  16706. bottom: 0.025
  16707. }
  16708. },
  16709. side: {
  16710. height: math.unit(6, "feet"),
  16711. weight: math.unit(150, "lb"),
  16712. name: "Side",
  16713. image: {
  16714. source: "./media/characters/typhek/side.svg",
  16715. extra: 2034 / 2010,
  16716. bottom: 0.003
  16717. }
  16718. },
  16719. back: {
  16720. height: math.unit(6, "feet"),
  16721. weight: math.unit(150, "lb"),
  16722. name: "Back",
  16723. image: {
  16724. source: "./media/characters/typhek/back.svg",
  16725. extra: 2005 / 1978,
  16726. bottom: 0.004
  16727. }
  16728. },
  16729. palm: {
  16730. height: math.unit(1.2, "feet"),
  16731. name: "Palm",
  16732. image: {
  16733. source: "./media/characters/typhek/palm.svg"
  16734. }
  16735. },
  16736. fist: {
  16737. height: math.unit(1.1, "feet"),
  16738. name: "Fist",
  16739. image: {
  16740. source: "./media/characters/typhek/fist.svg"
  16741. }
  16742. },
  16743. foot: {
  16744. height: math.unit(1.57, "feet"),
  16745. name: "Foot",
  16746. image: {
  16747. source: "./media/characters/typhek/foot.svg"
  16748. }
  16749. },
  16750. sole: {
  16751. height: math.unit(2.05, "feet"),
  16752. name: "Sole",
  16753. image: {
  16754. source: "./media/characters/typhek/sole.svg"
  16755. }
  16756. },
  16757. },
  16758. [
  16759. {
  16760. name: "Macro",
  16761. height: math.unit(40, "stories"),
  16762. default: true
  16763. },
  16764. {
  16765. name: "Megamacro",
  16766. height: math.unit(1, "mile")
  16767. },
  16768. {
  16769. name: "Gigamacro",
  16770. height: math.unit(4000, "solarradii")
  16771. },
  16772. {
  16773. name: "Universal",
  16774. height: math.unit(1.1, "universes")
  16775. }
  16776. ]
  16777. ))
  16778. characterMakers.push(() => makeCharacter(
  16779. { name: "Kassy" },
  16780. {
  16781. side: {
  16782. height: math.unit(5 + 7 / 12, "feet"),
  16783. weight: math.unit(150, "lb"),
  16784. name: "Side",
  16785. image: {
  16786. source: "./media/characters/kassy/side.svg",
  16787. extra: 1280 / 1225,
  16788. bottom: 0.002
  16789. }
  16790. },
  16791. front: {
  16792. height: math.unit(5 + 7 / 12, "feet"),
  16793. weight: math.unit(150, "lb"),
  16794. name: "Front",
  16795. image: {
  16796. source: "./media/characters/kassy/front.svg",
  16797. extra: 1280 / 1225,
  16798. bottom: 0.025
  16799. }
  16800. },
  16801. back: {
  16802. height: math.unit(5 + 7 / 12, "feet"),
  16803. weight: math.unit(150, "lb"),
  16804. name: "Back",
  16805. image: {
  16806. source: "./media/characters/kassy/back.svg",
  16807. extra: 1280 / 1225,
  16808. bottom: 0.002
  16809. }
  16810. },
  16811. foot: {
  16812. height: math.unit(1.266, "feet"),
  16813. name: "Foot",
  16814. image: {
  16815. source: "./media/characters/kassy/foot.svg"
  16816. }
  16817. },
  16818. },
  16819. [
  16820. {
  16821. name: "Normal",
  16822. height: math.unit(5 + 7 / 12, "feet")
  16823. },
  16824. {
  16825. name: "Macro",
  16826. height: math.unit(137, "feet"),
  16827. default: true
  16828. },
  16829. {
  16830. name: "Megamacro",
  16831. height: math.unit(1, "mile")
  16832. },
  16833. ]
  16834. ))
  16835. characterMakers.push(() => makeCharacter(
  16836. { name: "Neil" },
  16837. {
  16838. front: {
  16839. height: math.unit(6 + 1 / 12, "feet"),
  16840. weight: math.unit(200, "lb"),
  16841. name: "Front",
  16842. image: {
  16843. source: "./media/characters/neil/front.svg",
  16844. extra: 1326 / 1250,
  16845. bottom: 0.023
  16846. }
  16847. },
  16848. },
  16849. [
  16850. {
  16851. name: "Normal",
  16852. height: math.unit(6 + 1 / 12, "feet"),
  16853. default: true
  16854. },
  16855. {
  16856. name: "Macro",
  16857. height: math.unit(200, "feet")
  16858. },
  16859. ]
  16860. ))
  16861. characterMakers.push(() => makeCharacter(
  16862. { name: "Atticus" },
  16863. {
  16864. front: {
  16865. height: math.unit(5 + 9 / 12, "feet"),
  16866. weight: math.unit(190, "lb"),
  16867. name: "Front",
  16868. image: {
  16869. source: "./media/characters/atticus/front.svg",
  16870. extra: 2934 / 2785,
  16871. bottom: 0.025
  16872. }
  16873. },
  16874. },
  16875. [
  16876. {
  16877. name: "Normal",
  16878. height: math.unit(5 + 9 / 12, "feet"),
  16879. default: true
  16880. },
  16881. {
  16882. name: "Macro",
  16883. height: math.unit(180, "feet")
  16884. },
  16885. ]
  16886. ))
  16887. characterMakers.push(() => makeCharacter(
  16888. { name: "Milo" },
  16889. {
  16890. side: {
  16891. height: math.unit(9, "feet"),
  16892. weight: math.unit(650, "lb"),
  16893. name: "Side",
  16894. image: {
  16895. source: "./media/characters/milo/side.svg",
  16896. extra: 2644 / 2310,
  16897. bottom: 0.032
  16898. }
  16899. },
  16900. },
  16901. [
  16902. {
  16903. name: "Normal",
  16904. height: math.unit(9, "feet"),
  16905. default: true
  16906. },
  16907. {
  16908. name: "Macro",
  16909. height: math.unit(300, "feet")
  16910. },
  16911. ]
  16912. ))
  16913. characterMakers.push(() => makeCharacter(
  16914. { name: "Ijzer" },
  16915. {
  16916. side: {
  16917. height: math.unit(8, "meters"),
  16918. weight: math.unit(90000, "kg"),
  16919. name: "Side",
  16920. image: {
  16921. source: "./media/characters/ijzer/side.svg",
  16922. extra: 2756 / 1600,
  16923. bottom: 0.01
  16924. }
  16925. },
  16926. },
  16927. [
  16928. {
  16929. name: "Small",
  16930. height: math.unit(3, "meters")
  16931. },
  16932. {
  16933. name: "Normal",
  16934. height: math.unit(8, "meters"),
  16935. default: true
  16936. },
  16937. {
  16938. name: "Normal+",
  16939. height: math.unit(10, "meters")
  16940. },
  16941. {
  16942. name: "Bigger",
  16943. height: math.unit(24, "meters")
  16944. },
  16945. {
  16946. name: "Huge",
  16947. height: math.unit(80, "meters")
  16948. },
  16949. ]
  16950. ))
  16951. characterMakers.push(() => makeCharacter(
  16952. { name: "Luca Cervicum" },
  16953. {
  16954. front: {
  16955. height: math.unit(6 + 2 / 12, "feet"),
  16956. weight: math.unit(153, "lb"),
  16957. name: "Front",
  16958. image: {
  16959. source: "./media/characters/luca-cervicum/front.svg",
  16960. extra: 370 / 327,
  16961. bottom: 0.015
  16962. }
  16963. },
  16964. back: {
  16965. height: math.unit(6 + 2 / 12, "feet"),
  16966. weight: math.unit(153, "lb"),
  16967. name: "Back",
  16968. image: {
  16969. source: "./media/characters/luca-cervicum/back.svg",
  16970. extra: 367 / 333,
  16971. bottom: 0.005
  16972. }
  16973. },
  16974. frontGear: {
  16975. height: math.unit(6 + 2 / 12, "feet"),
  16976. weight: math.unit(173, "lb"),
  16977. name: "Front (Gear)",
  16978. image: {
  16979. source: "./media/characters/luca-cervicum/front-gear.svg",
  16980. extra: 377 / 333,
  16981. bottom: 0.006
  16982. }
  16983. },
  16984. },
  16985. [
  16986. {
  16987. name: "Normal",
  16988. height: math.unit(6 + 2 / 12, "feet"),
  16989. default: true
  16990. },
  16991. ]
  16992. ))
  16993. characterMakers.push(() => makeCharacter(
  16994. { name: "Oliver" },
  16995. {
  16996. front: {
  16997. height: math.unit(6 + 1 / 12, "feet"),
  16998. weight: math.unit(304, "lb"),
  16999. name: "Front",
  17000. image: {
  17001. source: "./media/characters/oliver/front.svg",
  17002. extra: 157 / 143,
  17003. bottom: 0.08
  17004. }
  17005. },
  17006. },
  17007. [
  17008. {
  17009. name: "Normal",
  17010. height: math.unit(6 + 1 / 12, "feet"),
  17011. default: true
  17012. },
  17013. ]
  17014. ))
  17015. characterMakers.push(() => makeCharacter(
  17016. { name: "Shane" },
  17017. {
  17018. front: {
  17019. height: math.unit(5 + 7 / 12, "feet"),
  17020. weight: math.unit(140, "lb"),
  17021. name: "Front",
  17022. image: {
  17023. source: "./media/characters/shane/front.svg",
  17024. extra: 304 / 289,
  17025. bottom: 0.005
  17026. }
  17027. },
  17028. },
  17029. [
  17030. {
  17031. name: "Normal",
  17032. height: math.unit(5 + 7 / 12, "feet"),
  17033. default: true
  17034. },
  17035. ]
  17036. ))
  17037. characterMakers.push(() => makeCharacter(
  17038. { name: "Shin" },
  17039. {
  17040. front: {
  17041. height: math.unit(5 + 9 / 12, "feet"),
  17042. weight: math.unit(178, "lb"),
  17043. name: "Front",
  17044. image: {
  17045. source: "./media/characters/shin/front.svg",
  17046. extra: 159 / 151,
  17047. bottom: 0.015
  17048. }
  17049. },
  17050. },
  17051. [
  17052. {
  17053. name: "Normal",
  17054. height: math.unit(5 + 9 / 12, "feet"),
  17055. default: true
  17056. },
  17057. ]
  17058. ))
  17059. characterMakers.push(() => makeCharacter(
  17060. { name: "Xerxes" },
  17061. {
  17062. front: {
  17063. height: math.unit(5 + 10 / 12, "feet"),
  17064. weight: math.unit(168, "lb"),
  17065. name: "Front",
  17066. image: {
  17067. source: "./media/characters/xerxes/front.svg",
  17068. extra: 282 / 260,
  17069. bottom: 0.045
  17070. }
  17071. },
  17072. },
  17073. [
  17074. {
  17075. name: "Normal",
  17076. height: math.unit(5 + 10 / 12, "feet"),
  17077. default: true
  17078. },
  17079. ]
  17080. ))
  17081. characterMakers.push(() => makeCharacter(
  17082. { name: "Chaska" },
  17083. {
  17084. front: {
  17085. height: math.unit(6 + 7 / 12, "feet"),
  17086. weight: math.unit(208, "lb"),
  17087. name: "Front",
  17088. image: {
  17089. source: "./media/characters/chaska/front.svg",
  17090. extra: 332 / 319,
  17091. bottom: 0.015
  17092. }
  17093. },
  17094. },
  17095. [
  17096. {
  17097. name: "Normal",
  17098. height: math.unit(6 + 7 / 12, "feet"),
  17099. default: true
  17100. },
  17101. ]
  17102. ))
  17103. characterMakers.push(() => makeCharacter(
  17104. { name: "Enuk" },
  17105. {
  17106. front: {
  17107. height: math.unit(5 + 8 / 12, "feet"),
  17108. weight: math.unit(208, "lb"),
  17109. name: "Front",
  17110. image: {
  17111. source: "./media/characters/enuk/front.svg",
  17112. extra: 437 / 406,
  17113. bottom: 0.02
  17114. }
  17115. },
  17116. },
  17117. [
  17118. {
  17119. name: "Normal",
  17120. height: math.unit(5 + 8 / 12, "feet"),
  17121. default: true
  17122. },
  17123. ]
  17124. ))
  17125. characterMakers.push(() => makeCharacter(
  17126. { name: "Bruun" },
  17127. {
  17128. front: {
  17129. height: math.unit(5 + 10 / 12, "feet"),
  17130. weight: math.unit(252, "lb"),
  17131. name: "Front",
  17132. image: {
  17133. source: "./media/characters/bruun/front.svg",
  17134. extra: 197 / 187,
  17135. bottom: 0.012
  17136. }
  17137. },
  17138. },
  17139. [
  17140. {
  17141. name: "Normal",
  17142. height: math.unit(5 + 10 / 12, "feet"),
  17143. default: true
  17144. },
  17145. ]
  17146. ))
  17147. characterMakers.push(() => makeCharacter(
  17148. { name: "Alexeev" },
  17149. {
  17150. front: {
  17151. height: math.unit(6 + 10 / 12, "feet"),
  17152. weight: math.unit(255, "lb"),
  17153. name: "Front",
  17154. image: {
  17155. source: "./media/characters/alexeev/front.svg",
  17156. extra: 213 / 200,
  17157. bottom: 0.05
  17158. }
  17159. },
  17160. },
  17161. [
  17162. {
  17163. name: "Normal",
  17164. height: math.unit(6 + 10 / 12, "feet"),
  17165. default: true
  17166. },
  17167. ]
  17168. ))
  17169. characterMakers.push(() => makeCharacter(
  17170. { name: "Evelyn" },
  17171. {
  17172. front: {
  17173. height: math.unit(2 + 8 / 12, "feet"),
  17174. weight: math.unit(22, "lb"),
  17175. name: "Front",
  17176. image: {
  17177. source: "./media/characters/evelyn/front.svg",
  17178. extra: 208 / 180
  17179. }
  17180. },
  17181. },
  17182. [
  17183. {
  17184. name: "Normal",
  17185. height: math.unit(2 + 8 / 12, "feet"),
  17186. default: true
  17187. },
  17188. ]
  17189. ))
  17190. characterMakers.push(() => makeCharacter(
  17191. { name: "Inca" },
  17192. {
  17193. front: {
  17194. height: math.unit(5 + 9 / 12, "feet"),
  17195. weight: math.unit(139, "lb"),
  17196. name: "Front",
  17197. image: {
  17198. source: "./media/characters/inca/front.svg",
  17199. extra: 294 / 291,
  17200. bottom: 0.03
  17201. }
  17202. },
  17203. },
  17204. [
  17205. {
  17206. name: "Normal",
  17207. height: math.unit(5 + 9 / 12, "feet"),
  17208. default: true
  17209. },
  17210. ]
  17211. ))
  17212. characterMakers.push(() => makeCharacter(
  17213. { name: "Magdalene" },
  17214. {
  17215. front: {
  17216. height: math.unit(5 + 1 / 12, "feet"),
  17217. weight: math.unit(84, "lb"),
  17218. name: "Front",
  17219. image: {
  17220. source: "./media/characters/magdalene/front.svg",
  17221. extra: 293 / 273
  17222. }
  17223. },
  17224. },
  17225. [
  17226. {
  17227. name: "Normal",
  17228. height: math.unit(5 + 1 / 12, "feet"),
  17229. default: true
  17230. },
  17231. ]
  17232. ))
  17233. characterMakers.push(() => makeCharacter(
  17234. { name: "Mera" },
  17235. {
  17236. front: {
  17237. height: math.unit(6 + 3 / 12, "feet"),
  17238. weight: math.unit(185, "lb"),
  17239. name: "Front",
  17240. image: {
  17241. source: "./media/characters/mera/front.svg",
  17242. extra: 291 / 277,
  17243. bottom: 0.03
  17244. }
  17245. },
  17246. },
  17247. [
  17248. {
  17249. name: "Normal",
  17250. height: math.unit(6 + 3 / 12, "feet"),
  17251. default: true
  17252. },
  17253. ]
  17254. ))
  17255. characterMakers.push(() => makeCharacter(
  17256. { name: "Ceres" },
  17257. {
  17258. front: {
  17259. height: math.unit(6 + 7 / 12, "feet"),
  17260. weight: math.unit(160, "lb"),
  17261. name: "Front",
  17262. image: {
  17263. source: "./media/characters/ceres/front.svg",
  17264. extra: 1023 / 950,
  17265. bottom: 0.027
  17266. }
  17267. },
  17268. back: {
  17269. height: math.unit(6 + 7 / 12, "feet"),
  17270. weight: math.unit(160, "lb"),
  17271. name: "Back",
  17272. image: {
  17273. source: "./media/characters/ceres/back.svg",
  17274. extra: 1023 / 950
  17275. }
  17276. },
  17277. },
  17278. [
  17279. {
  17280. name: "Normal",
  17281. height: math.unit(6 + 7 / 12, "feet"),
  17282. default: true
  17283. },
  17284. ]
  17285. ))
  17286. characterMakers.push(() => makeCharacter(
  17287. { name: "Kris" },
  17288. {
  17289. front: {
  17290. height: math.unit(5 + 10 / 12, "feet"),
  17291. weight: math.unit(150, "lb"),
  17292. name: "Front",
  17293. image: {
  17294. source: "./media/characters/kris/front.svg",
  17295. extra: 885 / 803,
  17296. bottom: 0.03
  17297. }
  17298. },
  17299. },
  17300. [
  17301. {
  17302. name: "Normal",
  17303. height: math.unit(5 + 10 / 12, "feet"),
  17304. default: true
  17305. },
  17306. ]
  17307. ))
  17308. characterMakers.push(() => makeCharacter(
  17309. { name: "Taluthus" },
  17310. {
  17311. front: {
  17312. height: math.unit(7, "feet"),
  17313. weight: math.unit(120, "kg"),
  17314. name: "Front",
  17315. image: {
  17316. source: "./media/characters/taluthus/front.svg",
  17317. extra: 903 / 833,
  17318. bottom: 0.015
  17319. }
  17320. },
  17321. },
  17322. [
  17323. {
  17324. name: "Normal",
  17325. height: math.unit(7, "feet"),
  17326. default: true
  17327. },
  17328. {
  17329. name: "Macro",
  17330. height: math.unit(300, "feet")
  17331. },
  17332. ]
  17333. ))
  17334. characterMakers.push(() => makeCharacter(
  17335. { name: "Dawn" },
  17336. {
  17337. front: {
  17338. height: math.unit(5 + 9 / 12, "feet"),
  17339. weight: math.unit(145, "lb"),
  17340. name: "Front",
  17341. image: {
  17342. source: "./media/characters/dawn/front.svg",
  17343. extra: 2094 / 2016,
  17344. bottom: 0.025
  17345. }
  17346. },
  17347. back: {
  17348. height: math.unit(5 + 9 / 12, "feet"),
  17349. weight: math.unit(160, "lb"),
  17350. name: "Back",
  17351. image: {
  17352. source: "./media/characters/dawn/back.svg",
  17353. extra: 2112 / 2080,
  17354. bottom: 0.005
  17355. }
  17356. },
  17357. },
  17358. [
  17359. {
  17360. name: "Normal",
  17361. height: math.unit(6 + 7 / 12, "feet"),
  17362. default: true
  17363. },
  17364. ]
  17365. ))
  17366. characterMakers.push(() => makeCharacter(
  17367. { name: "Arador" },
  17368. {
  17369. anthro: {
  17370. height: math.unit(8 + 3 / 12, "feet"),
  17371. weight: math.unit(450, "lb"),
  17372. name: "Anthro",
  17373. image: {
  17374. source: "./media/characters/arador/anthro.svg",
  17375. extra: 1835 / 1718,
  17376. bottom: 0.025
  17377. }
  17378. },
  17379. feral: {
  17380. height: math.unit(4, "feet"),
  17381. weight: math.unit(200, "lb"),
  17382. name: "Feral",
  17383. image: {
  17384. source: "./media/characters/arador/feral.svg",
  17385. extra: 1683 / 1514,
  17386. bottom: 0.07
  17387. }
  17388. },
  17389. },
  17390. [
  17391. {
  17392. name: "Normal",
  17393. height: math.unit(8 + 3 / 12, "feet")
  17394. },
  17395. {
  17396. name: "Macro",
  17397. height: math.unit(82.5, "feet"),
  17398. default: true
  17399. },
  17400. ]
  17401. ))
  17402. characterMakers.push(() => makeCharacter(
  17403. { name: "Dharsi" },
  17404. {
  17405. front: {
  17406. height: math.unit(5 + 10 / 12, "feet"),
  17407. weight: math.unit(125, "lb"),
  17408. name: "Front",
  17409. image: {
  17410. source: "./media/characters/dharsi/front.svg",
  17411. extra: 716 / 630,
  17412. bottom: 0.035
  17413. }
  17414. },
  17415. },
  17416. [
  17417. {
  17418. name: "Nano",
  17419. height: math.unit(100, "nm")
  17420. },
  17421. {
  17422. name: "Micro",
  17423. height: math.unit(2, "inches")
  17424. },
  17425. {
  17426. name: "Normal",
  17427. height: math.unit(5 + 10 / 12, "feet"),
  17428. default: true
  17429. },
  17430. {
  17431. name: "Macro",
  17432. height: math.unit(1000, "feet")
  17433. },
  17434. {
  17435. name: "Megamacro",
  17436. height: math.unit(10, "miles")
  17437. },
  17438. {
  17439. name: "Gigamacro",
  17440. height: math.unit(3000, "miles")
  17441. },
  17442. {
  17443. name: "Teramacro",
  17444. height: math.unit(500000, "miles")
  17445. },
  17446. {
  17447. name: "Teramacro+",
  17448. height: math.unit(30, "galaxies")
  17449. },
  17450. ]
  17451. ))
  17452. characterMakers.push(() => makeCharacter(
  17453. { name: "Deathy" },
  17454. {
  17455. front: {
  17456. height: math.unit(6, "feet"),
  17457. weight: math.unit(150, "lb"),
  17458. name: "Front",
  17459. image: {
  17460. source: "./media/characters/deathy/front.svg",
  17461. extra: 1552 / 1463,
  17462. bottom: 0.025
  17463. }
  17464. },
  17465. side: {
  17466. height: math.unit(6, "feet"),
  17467. weight: math.unit(150, "lb"),
  17468. name: "Side",
  17469. image: {
  17470. source: "./media/characters/deathy/side.svg",
  17471. extra: 1604 / 1455,
  17472. bottom: 0.025
  17473. }
  17474. },
  17475. back: {
  17476. height: math.unit(6, "feet"),
  17477. weight: math.unit(150, "lb"),
  17478. name: "Back",
  17479. image: {
  17480. source: "./media/characters/deathy/back.svg",
  17481. extra: 1580 / 1463,
  17482. bottom: 0.005
  17483. }
  17484. },
  17485. },
  17486. [
  17487. {
  17488. name: "Micro",
  17489. height: math.unit(5, "millimeters")
  17490. },
  17491. {
  17492. name: "Normal",
  17493. height: math.unit(6 + 5 / 12, "feet"),
  17494. default: true
  17495. },
  17496. ]
  17497. ))
  17498. characterMakers.push(() => makeCharacter(
  17499. { name: "Juniper" },
  17500. {
  17501. front: {
  17502. height: math.unit(16, "feet"),
  17503. weight: math.unit(4000, "lb"),
  17504. name: "Front",
  17505. image: {
  17506. source: "./media/characters/juniper/front.svg",
  17507. bottom: 0.04
  17508. }
  17509. },
  17510. },
  17511. [
  17512. {
  17513. name: "Normal",
  17514. height: math.unit(16, "feet"),
  17515. default: true
  17516. },
  17517. ]
  17518. ))
  17519. characterMakers.push(() => makeCharacter(
  17520. { name: "Hipster" },
  17521. {
  17522. front: {
  17523. height: math.unit(6, "feet"),
  17524. weight: math.unit(150, "lb"),
  17525. name: "Front",
  17526. image: {
  17527. source: "./media/characters/hipster/front.svg",
  17528. extra: 1312 / 1209,
  17529. bottom: 0.025
  17530. }
  17531. },
  17532. back: {
  17533. height: math.unit(6, "feet"),
  17534. weight: math.unit(150, "lb"),
  17535. name: "Back",
  17536. image: {
  17537. source: "./media/characters/hipster/back.svg",
  17538. extra: 1281 / 1196,
  17539. bottom: 0.01
  17540. }
  17541. },
  17542. },
  17543. [
  17544. {
  17545. name: "Micro",
  17546. height: math.unit(1, "mm")
  17547. },
  17548. {
  17549. name: "Normal",
  17550. height: math.unit(4, "inches"),
  17551. default: true
  17552. },
  17553. {
  17554. name: "Macro",
  17555. height: math.unit(500, "feet")
  17556. },
  17557. {
  17558. name: "Megamacro",
  17559. height: math.unit(1000, "miles")
  17560. },
  17561. ]
  17562. ))
  17563. characterMakers.push(() => makeCharacter(
  17564. { name: "Tendirmuldr" },
  17565. {
  17566. front: {
  17567. height: math.unit(6, "feet"),
  17568. weight: math.unit(150, "lb"),
  17569. name: "Front",
  17570. image: {
  17571. source: "./media/characters/tendirmuldr/front.svg",
  17572. extra: 1878 / 1772,
  17573. bottom: 0.015
  17574. }
  17575. },
  17576. },
  17577. [
  17578. {
  17579. name: "Megamacro",
  17580. height: math.unit(1500, "miles"),
  17581. default: true
  17582. },
  17583. ]
  17584. ))
  17585. characterMakers.push(() => makeCharacter(
  17586. { name: "Mort" },
  17587. {
  17588. front: {
  17589. height: math.unit(14, "feet"),
  17590. weight: math.unit(12000, "lb"),
  17591. name: "Front",
  17592. image: {
  17593. source: "./media/characters/mort/front.svg",
  17594. extra: 365 / 318,
  17595. bottom: 0.01
  17596. }
  17597. },
  17598. side: {
  17599. height: math.unit(14, "feet"),
  17600. weight: math.unit(12000, "lb"),
  17601. name: "Side",
  17602. image: {
  17603. source: "./media/characters/mort/side.svg",
  17604. extra: 365 / 318,
  17605. bottom: 0.052
  17606. },
  17607. default: true
  17608. },
  17609. back: {
  17610. height: math.unit(14, "feet"),
  17611. weight: math.unit(12000, "lb"),
  17612. name: "Back",
  17613. image: {
  17614. source: "./media/characters/mort/back.svg",
  17615. extra: 371 / 332,
  17616. bottom: 0.18
  17617. }
  17618. },
  17619. },
  17620. [
  17621. {
  17622. name: "Normal",
  17623. height: math.unit(14, "feet"),
  17624. default: true
  17625. },
  17626. ]
  17627. ))
  17628. characterMakers.push(() => makeCharacter(
  17629. { name: "Lycoa" },
  17630. {
  17631. front: {
  17632. height: math.unit(8, "feet"),
  17633. weight: math.unit(1, "ton"),
  17634. name: "Front",
  17635. image: {
  17636. source: "./media/characters/lycoa/front.svg",
  17637. extra: 1875 / 1789,
  17638. bottom: 0.022
  17639. }
  17640. },
  17641. back: {
  17642. height: math.unit(8, "feet"),
  17643. weight: math.unit(1, "ton"),
  17644. name: "Back",
  17645. image: {
  17646. source: "./media/characters/lycoa/back.svg",
  17647. extra: 1835 / 1781,
  17648. bottom: 0.03
  17649. }
  17650. },
  17651. },
  17652. [
  17653. {
  17654. name: "Normal",
  17655. height: math.unit(8, "feet"),
  17656. default: true
  17657. },
  17658. {
  17659. name: "Macro",
  17660. height: math.unit(30, "feet")
  17661. },
  17662. ]
  17663. ))
  17664. characterMakers.push(() => makeCharacter(
  17665. { name: "Naldara" },
  17666. {
  17667. front: {
  17668. height: math.unit(4 + 2 / 12, "feet"),
  17669. weight: math.unit(70, "lb"),
  17670. name: "Front",
  17671. image: {
  17672. source: "./media/characters/naldara/front.svg",
  17673. extra: 841 / 720,
  17674. bottom: 0.04
  17675. }
  17676. },
  17677. },
  17678. [
  17679. {
  17680. name: "Normal",
  17681. height: math.unit(4 + 2 / 12, "feet"),
  17682. default: true
  17683. },
  17684. ]
  17685. ))
  17686. characterMakers.push(() => makeCharacter(
  17687. { name: "Briar" },
  17688. {
  17689. front: {
  17690. height: math.unit(13 + 7 / 12, "feet"),
  17691. weight: math.unit(1500, "lb"),
  17692. name: "Front",
  17693. image: {
  17694. source: "./media/characters/briar/front.svg",
  17695. extra: 626 / 596,
  17696. bottom: 0.08
  17697. }
  17698. },
  17699. },
  17700. [
  17701. {
  17702. name: "Normal",
  17703. height: math.unit(13 + 7 / 12, "feet"),
  17704. default: true
  17705. },
  17706. ]
  17707. ))
  17708. characterMakers.push(() => makeCharacter(
  17709. { name: "Vanguard" },
  17710. {
  17711. side: {
  17712. height: math.unit(10, "feet"),
  17713. weight: math.unit(500, "lb"),
  17714. name: "Side",
  17715. image: {
  17716. source: "./media/characters/vanguard/side.svg",
  17717. extra: 502 / 425,
  17718. bottom: 0.087
  17719. }
  17720. },
  17721. },
  17722. [
  17723. {
  17724. name: "Normal",
  17725. height: math.unit(10, "feet"),
  17726. default: true
  17727. },
  17728. ]
  17729. ))
  17730. characterMakers.push(() => makeCharacter(
  17731. { name: "Artemis" },
  17732. {
  17733. front: {
  17734. height: math.unit(7.5, "feet"),
  17735. weight: math.unit(2, "lb"),
  17736. name: "Front",
  17737. image: {
  17738. source: "./media/characters/artemis/front.svg",
  17739. extra: 1192 / 1075,
  17740. bottom: 0.07
  17741. }
  17742. },
  17743. },
  17744. [
  17745. {
  17746. name: "Normal",
  17747. height: math.unit(7.5, "feet"),
  17748. default: true
  17749. },
  17750. {
  17751. name: "Enlarged",
  17752. height: math.unit(12, "feet")
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "Kira" },
  17758. {
  17759. front: {
  17760. height: math.unit(5 + 3 / 12, "feet"),
  17761. weight: math.unit(160, "lb"),
  17762. name: "Front",
  17763. image: {
  17764. source: "./media/characters/kira/front.svg",
  17765. extra: 906 / 786,
  17766. bottom: 0.01
  17767. }
  17768. },
  17769. back: {
  17770. height: math.unit(5 + 3 / 12, "feet"),
  17771. weight: math.unit(160, "lb"),
  17772. name: "Back",
  17773. image: {
  17774. source: "./media/characters/kira/back.svg",
  17775. extra: 882 / 757,
  17776. bottom: 0.005
  17777. }
  17778. },
  17779. frontDressed: {
  17780. height: math.unit(5 + 3 / 12, "feet"),
  17781. weight: math.unit(160, "lb"),
  17782. name: "Front (Dressed)",
  17783. image: {
  17784. source: "./media/characters/kira/front-dressed.svg",
  17785. extra: 906 / 786,
  17786. bottom: 0.01
  17787. }
  17788. },
  17789. beans: {
  17790. height: math.unit(0.92, "feet"),
  17791. name: "Beans",
  17792. image: {
  17793. source: "./media/characters/kira/beans.svg"
  17794. }
  17795. },
  17796. },
  17797. [
  17798. {
  17799. name: "Normal",
  17800. height: math.unit(5 + 3 / 12, "feet"),
  17801. default: true
  17802. },
  17803. ]
  17804. ))
  17805. characterMakers.push(() => makeCharacter(
  17806. { name: "Scramble" },
  17807. {
  17808. front: {
  17809. height: math.unit(5 + 4 / 12, "feet"),
  17810. weight: math.unit(145, "lb"),
  17811. name: "Front",
  17812. image: {
  17813. source: "./media/characters/scramble/front.svg",
  17814. extra: 763 / 727,
  17815. bottom: 0.05
  17816. }
  17817. },
  17818. back: {
  17819. height: math.unit(5 + 4 / 12, "feet"),
  17820. weight: math.unit(145, "lb"),
  17821. name: "Back",
  17822. image: {
  17823. source: "./media/characters/scramble/back.svg",
  17824. extra: 826 / 737,
  17825. bottom: 0.002
  17826. }
  17827. },
  17828. },
  17829. [
  17830. {
  17831. name: "Normal",
  17832. height: math.unit(5 + 4 / 12, "feet"),
  17833. default: true
  17834. },
  17835. ]
  17836. ))
  17837. characterMakers.push(() => makeCharacter(
  17838. { name: "Biscuit" },
  17839. {
  17840. side: {
  17841. height: math.unit(6 + 2 / 12, "feet"),
  17842. weight: math.unit(190, "lb"),
  17843. name: "Side",
  17844. image: {
  17845. source: "./media/characters/biscuit/side.svg",
  17846. extra: 858 / 791,
  17847. bottom: 0.044
  17848. }
  17849. },
  17850. },
  17851. [
  17852. {
  17853. name: "Normal",
  17854. height: math.unit(6 + 2 / 12, "feet"),
  17855. default: true
  17856. },
  17857. ]
  17858. ))
  17859. characterMakers.push(() => makeCharacter(
  17860. { name: "Poffin" },
  17861. {
  17862. front: {
  17863. height: math.unit(5 + 2 / 12, "feet"),
  17864. weight: math.unit(120, "lb"),
  17865. name: "Front",
  17866. image: {
  17867. source: "./media/characters/poffin/front.svg",
  17868. extra: 786 / 680,
  17869. bottom: 0.005
  17870. }
  17871. },
  17872. },
  17873. [
  17874. {
  17875. name: "Normal",
  17876. height: math.unit(5 + 2 / 12, "feet"),
  17877. default: true
  17878. },
  17879. ]
  17880. ))
  17881. characterMakers.push(() => makeCharacter(
  17882. { name: "Dhari" },
  17883. {
  17884. front: {
  17885. height: math.unit(6 + 3 / 12, "feet"),
  17886. weight: math.unit(519, "lb"),
  17887. name: "Front",
  17888. image: {
  17889. source: "./media/characters/dhari/front.svg",
  17890. extra: 1048 / 946,
  17891. bottom: 0.015
  17892. }
  17893. },
  17894. back: {
  17895. height: math.unit(6 + 3 / 12, "feet"),
  17896. weight: math.unit(519, "lb"),
  17897. name: "Back",
  17898. image: {
  17899. source: "./media/characters/dhari/back.svg",
  17900. extra: 1048 / 931,
  17901. bottom: 0.005
  17902. }
  17903. },
  17904. frontDressed: {
  17905. height: math.unit(6 + 3 / 12, "feet"),
  17906. weight: math.unit(519, "lb"),
  17907. name: "Front (Dressed)",
  17908. image: {
  17909. source: "./media/characters/dhari/front-dressed.svg",
  17910. extra: 1713 / 1546,
  17911. bottom: 0.02
  17912. }
  17913. },
  17914. backDressed: {
  17915. height: math.unit(6 + 3 / 12, "feet"),
  17916. weight: math.unit(519, "lb"),
  17917. name: "Back (Dressed)",
  17918. image: {
  17919. source: "./media/characters/dhari/back-dressed.svg",
  17920. extra: 1699 / 1537,
  17921. bottom: 0.01
  17922. }
  17923. },
  17924. maw: {
  17925. height: math.unit(0.95, "feet"),
  17926. name: "Maw",
  17927. image: {
  17928. source: "./media/characters/dhari/maw.svg"
  17929. }
  17930. },
  17931. wereFront: {
  17932. height: math.unit(12 + 8 / 12, "feet"),
  17933. weight: math.unit(4000, "lb"),
  17934. name: "Front (Were)",
  17935. image: {
  17936. source: "./media/characters/dhari/were-front.svg",
  17937. extra: 1065 / 969,
  17938. bottom: 0.015
  17939. }
  17940. },
  17941. wereBack: {
  17942. height: math.unit(12 + 8 / 12, "feet"),
  17943. weight: math.unit(4000, "lb"),
  17944. name: "Back (Were)",
  17945. image: {
  17946. source: "./media/characters/dhari/were-back.svg",
  17947. extra: 1065 / 969,
  17948. bottom: 0.012
  17949. }
  17950. },
  17951. wereMaw: {
  17952. height: math.unit(0.625, "meters"),
  17953. name: "Maw (Were)",
  17954. image: {
  17955. source: "./media/characters/dhari/were-maw.svg"
  17956. }
  17957. },
  17958. },
  17959. [
  17960. {
  17961. name: "Normal",
  17962. height: math.unit(6 + 3 / 12, "feet"),
  17963. default: true
  17964. },
  17965. ]
  17966. ))
  17967. characterMakers.push(() => makeCharacter(
  17968. { name: "Rena Dyne" },
  17969. {
  17970. anthro: {
  17971. height: math.unit(5 + 7 / 12, "feet"),
  17972. weight: math.unit(175, "lb"),
  17973. name: "Anthro",
  17974. image: {
  17975. source: "./media/characters/rena-dyne/anthro.svg",
  17976. extra: 1849 / 1785,
  17977. bottom: 0.005
  17978. }
  17979. },
  17980. taur: {
  17981. height: math.unit(15 + 6 / 12, "feet"),
  17982. weight: math.unit(8000, "lb"),
  17983. name: "Taur",
  17984. image: {
  17985. source: "./media/characters/rena-dyne/taur.svg",
  17986. extra: 2315 / 2234,
  17987. bottom: 0.033
  17988. }
  17989. },
  17990. },
  17991. [
  17992. {
  17993. name: "Normal",
  17994. height: math.unit(5 + 7 / 12, "feet"),
  17995. default: true
  17996. },
  17997. ]
  17998. ))
  17999. characterMakers.push(() => makeCharacter(
  18000. { name: "Weremeep" },
  18001. {
  18002. front: {
  18003. height: math.unit(8, "feet"),
  18004. weight: math.unit(600, "lb"),
  18005. name: "Front",
  18006. image: {
  18007. source: "./media/characters/weremeep/front.svg",
  18008. extra: 967 / 862,
  18009. bottom: 0.01
  18010. }
  18011. },
  18012. },
  18013. [
  18014. {
  18015. name: "Normal",
  18016. height: math.unit(8, "feet"),
  18017. default: true
  18018. },
  18019. {
  18020. name: "Lorg",
  18021. height: math.unit(12, "feet")
  18022. },
  18023. {
  18024. name: "Oh Lawd She Comin'",
  18025. height: math.unit(20, "feet")
  18026. },
  18027. ]
  18028. ))
  18029. characterMakers.push(() => makeCharacter(
  18030. { name: "Reza" },
  18031. {
  18032. front: {
  18033. height: math.unit(4, "feet"),
  18034. weight: math.unit(90, "lb"),
  18035. name: "Front",
  18036. image: {
  18037. source: "./media/characters/reza/front.svg",
  18038. extra: 1183 / 1111,
  18039. bottom: 0.017
  18040. }
  18041. },
  18042. back: {
  18043. height: math.unit(4, "feet"),
  18044. weight: math.unit(90, "lb"),
  18045. name: "Back",
  18046. image: {
  18047. source: "./media/characters/reza/back.svg",
  18048. extra: 1183 / 1111,
  18049. bottom: 0.01
  18050. }
  18051. },
  18052. drake: {
  18053. height: math.unit(30, "feet"),
  18054. weight: math.unit(246960, "lb"),
  18055. name: "Drake",
  18056. image: {
  18057. source: "./media/characters/reza/drake.svg",
  18058. extra: 2350/2024,
  18059. bottom: 60.7/2403
  18060. }
  18061. },
  18062. },
  18063. [
  18064. {
  18065. name: "Normal",
  18066. height: math.unit(4, "feet"),
  18067. default: true
  18068. },
  18069. ]
  18070. ))
  18071. characterMakers.push(() => makeCharacter(
  18072. { name: "Athea" },
  18073. {
  18074. side: {
  18075. height: math.unit(15, "feet"),
  18076. weight: math.unit(14, "tons"),
  18077. name: "Side",
  18078. image: {
  18079. source: "./media/characters/athea/side.svg",
  18080. extra: 960 / 540,
  18081. bottom: 0.003
  18082. }
  18083. },
  18084. sitting: {
  18085. height: math.unit(6 * 2.85, "feet"),
  18086. weight: math.unit(14, "tons"),
  18087. name: "Sitting",
  18088. image: {
  18089. source: "./media/characters/athea/sitting.svg",
  18090. extra: 621 / 581,
  18091. bottom: 0.075
  18092. }
  18093. },
  18094. maw: {
  18095. height: math.unit(7.59498031496063, "feet"),
  18096. name: "Maw",
  18097. image: {
  18098. source: "./media/characters/athea/maw.svg"
  18099. }
  18100. },
  18101. },
  18102. [
  18103. {
  18104. name: "Lap Cat",
  18105. height: math.unit(2.5, "feet")
  18106. },
  18107. {
  18108. name: "Minimacro",
  18109. height: math.unit(15, "feet"),
  18110. default: true
  18111. },
  18112. {
  18113. name: "Macro",
  18114. height: math.unit(120, "feet")
  18115. },
  18116. {
  18117. name: "Macro+",
  18118. height: math.unit(640, "feet")
  18119. },
  18120. {
  18121. name: "Colossus",
  18122. height: math.unit(2.2, "miles")
  18123. },
  18124. ]
  18125. ))
  18126. characterMakers.push(() => makeCharacter(
  18127. { name: "Seroko" },
  18128. {
  18129. front: {
  18130. height: math.unit(8 + 8 / 12, "feet"),
  18131. weight: math.unit(130, "kg"),
  18132. name: "Front",
  18133. image: {
  18134. source: "./media/characters/seroko/front.svg",
  18135. extra: 1385 / 1280,
  18136. bottom: 0.025
  18137. }
  18138. },
  18139. back: {
  18140. height: math.unit(8 + 8 / 12, "feet"),
  18141. weight: math.unit(130, "kg"),
  18142. name: "Back",
  18143. image: {
  18144. source: "./media/characters/seroko/back.svg",
  18145. extra: 1369 / 1238,
  18146. bottom: 0.018
  18147. }
  18148. },
  18149. frontDressed: {
  18150. height: math.unit(8 + 8 / 12, "feet"),
  18151. weight: math.unit(130, "kg"),
  18152. name: "Front (Dressed)",
  18153. image: {
  18154. source: "./media/characters/seroko/front-dressed.svg",
  18155. extra: 1366 / 1275,
  18156. bottom: 0.03
  18157. }
  18158. },
  18159. },
  18160. [
  18161. {
  18162. name: "Normal",
  18163. height: math.unit(8 + 8 / 12, "feet"),
  18164. default: true
  18165. },
  18166. ]
  18167. ))
  18168. characterMakers.push(() => makeCharacter(
  18169. { name: "Quatzi" },
  18170. {
  18171. front: {
  18172. height: math.unit(5.5, "feet"),
  18173. weight: math.unit(160, "lb"),
  18174. name: "Front",
  18175. image: {
  18176. source: "./media/characters/quatzi/front.svg",
  18177. extra: 2346 / 2242,
  18178. bottom: 0.015
  18179. }
  18180. },
  18181. },
  18182. [
  18183. {
  18184. name: "Normal",
  18185. height: math.unit(5.5, "feet"),
  18186. default: true
  18187. },
  18188. {
  18189. name: "Big",
  18190. height: math.unit(7.7, "feet")
  18191. },
  18192. ]
  18193. ))
  18194. characterMakers.push(() => makeCharacter(
  18195. { name: "Sen" },
  18196. {
  18197. front: {
  18198. height: math.unit(5 + 11 / 12, "feet"),
  18199. weight: math.unit(180, "lb"),
  18200. name: "Front",
  18201. image: {
  18202. source: "./media/characters/sen/front.svg",
  18203. extra: 1321 / 1254,
  18204. bottom: 0.015
  18205. }
  18206. },
  18207. side: {
  18208. height: math.unit(5 + 11 / 12, "feet"),
  18209. weight: math.unit(180, "lb"),
  18210. name: "Side",
  18211. image: {
  18212. source: "./media/characters/sen/side.svg",
  18213. extra: 1321 / 1254,
  18214. bottom: 0.007
  18215. }
  18216. },
  18217. back: {
  18218. height: math.unit(5 + 11 / 12, "feet"),
  18219. weight: math.unit(180, "lb"),
  18220. name: "Back",
  18221. image: {
  18222. source: "./media/characters/sen/back.svg",
  18223. extra: 1321 / 1254
  18224. }
  18225. },
  18226. },
  18227. [
  18228. {
  18229. name: "Normal",
  18230. height: math.unit(5 + 11 / 12, "feet"),
  18231. default: true
  18232. },
  18233. ]
  18234. ))
  18235. characterMakers.push(() => makeCharacter(
  18236. { name: "Fruity" },
  18237. {
  18238. front: {
  18239. height: math.unit(166.6, "cm"),
  18240. weight: math.unit(66.6, "kg"),
  18241. name: "Front",
  18242. image: {
  18243. source: "./media/characters/fruity/front.svg",
  18244. extra: 1510 / 1386,
  18245. bottom: 0.04
  18246. }
  18247. },
  18248. back: {
  18249. height: math.unit(166.6, "cm"),
  18250. weight: math.unit(66.6, "lb"),
  18251. name: "Back",
  18252. image: {
  18253. source: "./media/characters/fruity/back.svg",
  18254. extra: 1563 / 1435,
  18255. bottom: 0.005
  18256. }
  18257. },
  18258. },
  18259. [
  18260. {
  18261. name: "Normal",
  18262. height: math.unit(166.6, "cm"),
  18263. default: true
  18264. },
  18265. {
  18266. name: "Demonic",
  18267. height: math.unit(166.6, "feet")
  18268. },
  18269. ]
  18270. ))
  18271. characterMakers.push(() => makeCharacter(
  18272. { name: "Zost" },
  18273. {
  18274. side: {
  18275. height: math.unit(10, "feet"),
  18276. weight: math.unit(500, "lb"),
  18277. name: "Side",
  18278. image: {
  18279. source: "./media/characters/zost/side.svg",
  18280. extra: 966 / 880,
  18281. bottom: 0.075
  18282. }
  18283. },
  18284. mawFront: {
  18285. height: math.unit(1.08, "meters"),
  18286. name: "Maw (Front)",
  18287. image: {
  18288. source: "./media/characters/zost/maw-front.svg"
  18289. }
  18290. },
  18291. mawSide: {
  18292. height: math.unit(2.66, "feet"),
  18293. name: "Maw (Side)",
  18294. image: {
  18295. source: "./media/characters/zost/maw-side.svg"
  18296. }
  18297. },
  18298. },
  18299. [
  18300. {
  18301. name: "Normal",
  18302. height: math.unit(10, "feet"),
  18303. default: true
  18304. },
  18305. ]
  18306. ))
  18307. characterMakers.push(() => makeCharacter(
  18308. { name: "Luci" },
  18309. {
  18310. front: {
  18311. height: math.unit(5 + 4 / 12, "feet"),
  18312. weight: math.unit(120, "lb"),
  18313. name: "Front",
  18314. image: {
  18315. source: "./media/characters/luci/front.svg",
  18316. extra: 1985 / 1884,
  18317. bottom: 0.04
  18318. }
  18319. },
  18320. back: {
  18321. height: math.unit(5 + 4 / 12, "feet"),
  18322. weight: math.unit(120, "lb"),
  18323. name: "Back",
  18324. image: {
  18325. source: "./media/characters/luci/back.svg",
  18326. extra: 1892 / 1791,
  18327. bottom: 0.002
  18328. }
  18329. },
  18330. },
  18331. [
  18332. {
  18333. name: "Normal",
  18334. height: math.unit(5 + 4 / 12, "feet"),
  18335. default: true
  18336. },
  18337. ]
  18338. ))
  18339. characterMakers.push(() => makeCharacter(
  18340. { name: "2th" },
  18341. {
  18342. front: {
  18343. height: math.unit(1500, "feet"),
  18344. weight: math.unit(3.8e6, "tons"),
  18345. name: "Front",
  18346. image: {
  18347. source: "./media/characters/2th/front.svg",
  18348. extra: 3489 / 3350,
  18349. bottom: 0.1
  18350. }
  18351. },
  18352. foot: {
  18353. height: math.unit(461, "feet"),
  18354. name: "Foot",
  18355. image: {
  18356. source: "./media/characters/2th/foot.svg"
  18357. }
  18358. },
  18359. },
  18360. [
  18361. {
  18362. name: "\"Micro\"",
  18363. height: math.unit(15 + 7 / 12, "feet")
  18364. },
  18365. {
  18366. name: "Normal",
  18367. height: math.unit(1500, "feet"),
  18368. default: true
  18369. },
  18370. {
  18371. name: "Macro",
  18372. height: math.unit(5000, "feet")
  18373. },
  18374. {
  18375. name: "Megamacro",
  18376. height: math.unit(15, "miles")
  18377. },
  18378. {
  18379. name: "Gigamacro",
  18380. height: math.unit(4000, "miles")
  18381. },
  18382. {
  18383. name: "Galactic",
  18384. height: math.unit(50, "AU")
  18385. },
  18386. ]
  18387. ))
  18388. characterMakers.push(() => makeCharacter(
  18389. { name: "Amethyst" },
  18390. {
  18391. front: {
  18392. height: math.unit(5 + 6 / 12, "feet"),
  18393. weight: math.unit(220, "lb"),
  18394. name: "Front",
  18395. image: {
  18396. source: "./media/characters/amethyst/front.svg",
  18397. extra: 2078 / 2040,
  18398. bottom: 0.045
  18399. }
  18400. },
  18401. back: {
  18402. height: math.unit(5 + 6 / 12, "feet"),
  18403. weight: math.unit(220, "lb"),
  18404. name: "Back",
  18405. image: {
  18406. source: "./media/characters/amethyst/back.svg",
  18407. extra: 2021 / 1989,
  18408. bottom: 0.02
  18409. }
  18410. },
  18411. },
  18412. [
  18413. {
  18414. name: "Normal",
  18415. height: math.unit(5 + 6 / 12, "feet"),
  18416. default: true
  18417. },
  18418. ]
  18419. ))
  18420. characterMakers.push(() => makeCharacter(
  18421. { name: "Yumi Akiyama" },
  18422. {
  18423. front: {
  18424. height: math.unit(4 + 11 / 12, "feet"),
  18425. weight: math.unit(120, "lb"),
  18426. name: "Front",
  18427. image: {
  18428. source: "./media/characters/yumi-akiyama/front.svg",
  18429. extra: 1327 / 1235,
  18430. bottom: 0.02
  18431. }
  18432. },
  18433. back: {
  18434. height: math.unit(4 + 11 / 12, "feet"),
  18435. weight: math.unit(120, "lb"),
  18436. name: "Back",
  18437. image: {
  18438. source: "./media/characters/yumi-akiyama/back.svg",
  18439. extra: 1287 / 1245,
  18440. bottom: 0.002
  18441. }
  18442. },
  18443. },
  18444. [
  18445. {
  18446. name: "Galactic",
  18447. height: math.unit(50, "galaxies"),
  18448. default: true
  18449. },
  18450. {
  18451. name: "Universal",
  18452. height: math.unit(100, "universes")
  18453. },
  18454. ]
  18455. ))
  18456. characterMakers.push(() => makeCharacter(
  18457. { name: "Rifter Yrmori" },
  18458. {
  18459. front: {
  18460. height: math.unit(8, "feet"),
  18461. weight: math.unit(500, "lb"),
  18462. name: "Front",
  18463. image: {
  18464. source: "./media/characters/rifter-yrmori/front.svg",
  18465. extra: 1180 / 1125,
  18466. bottom: 0.02
  18467. }
  18468. },
  18469. back: {
  18470. height: math.unit(8, "feet"),
  18471. weight: math.unit(500, "lb"),
  18472. name: "Back",
  18473. image: {
  18474. source: "./media/characters/rifter-yrmori/back.svg",
  18475. extra: 1190 / 1145,
  18476. bottom: 0.001
  18477. }
  18478. },
  18479. wings: {
  18480. height: math.unit(7.75, "feet"),
  18481. weight: math.unit(500, "lb"),
  18482. name: "Wings",
  18483. image: {
  18484. source: "./media/characters/rifter-yrmori/wings.svg",
  18485. extra: 1357 / 1285
  18486. }
  18487. },
  18488. maw: {
  18489. height: math.unit(0.8, "feet"),
  18490. name: "Maw",
  18491. image: {
  18492. source: "./media/characters/rifter-yrmori/maw.svg"
  18493. }
  18494. },
  18495. },
  18496. [
  18497. {
  18498. name: "Normal",
  18499. height: math.unit(8, "feet"),
  18500. default: true
  18501. },
  18502. {
  18503. name: "Macro",
  18504. height: math.unit(42, "meters")
  18505. },
  18506. ]
  18507. ))
  18508. characterMakers.push(() => makeCharacter(
  18509. { name: "Tahajin" },
  18510. {
  18511. were: {
  18512. height: math.unit(25 + 6 / 12, "feet"),
  18513. weight: math.unit(10000, "lb"),
  18514. name: "Were",
  18515. image: {
  18516. source: "./media/characters/tahajin/were.svg",
  18517. extra: 801 / 770,
  18518. bottom: 0.042
  18519. }
  18520. },
  18521. aquatic: {
  18522. height: math.unit(6 + 4 / 12, "feet"),
  18523. weight: math.unit(160, "lb"),
  18524. name: "Aquatic",
  18525. image: {
  18526. source: "./media/characters/tahajin/aquatic.svg",
  18527. extra: 572 / 542,
  18528. bottom: 0.04
  18529. }
  18530. },
  18531. chow: {
  18532. height: math.unit(8 + 11 / 12, "feet"),
  18533. weight: math.unit(450, "lb"),
  18534. name: "Chow",
  18535. image: {
  18536. source: "./media/characters/tahajin/chow.svg",
  18537. extra: 660 / 640,
  18538. bottom: 0.015
  18539. }
  18540. },
  18541. demiNaga: {
  18542. height: math.unit(6 + 8 / 12, "feet"),
  18543. weight: math.unit(300, "lb"),
  18544. name: "Demi Naga",
  18545. image: {
  18546. source: "./media/characters/tahajin/demi-naga.svg",
  18547. extra: 643 / 615,
  18548. bottom: 0.1
  18549. }
  18550. },
  18551. data: {
  18552. height: math.unit(5, "inches"),
  18553. weight: math.unit(0.1, "lb"),
  18554. name: "Data",
  18555. image: {
  18556. source: "./media/characters/tahajin/data.svg"
  18557. }
  18558. },
  18559. fluu: {
  18560. height: math.unit(5 + 7 / 12, "feet"),
  18561. weight: math.unit(140, "lb"),
  18562. name: "Fluu",
  18563. image: {
  18564. source: "./media/characters/tahajin/fluu.svg",
  18565. extra: 628 / 592,
  18566. bottom: 0.02
  18567. }
  18568. },
  18569. starWarrior: {
  18570. height: math.unit(4 + 5 / 12, "feet"),
  18571. weight: math.unit(50, "lb"),
  18572. name: "Star Warrior",
  18573. image: {
  18574. source: "./media/characters/tahajin/star-warrior.svg"
  18575. }
  18576. },
  18577. },
  18578. [
  18579. {
  18580. name: "Normal",
  18581. height: math.unit(25 + 6 / 12, "feet"),
  18582. default: true
  18583. },
  18584. ]
  18585. ))
  18586. characterMakers.push(() => makeCharacter(
  18587. { name: "Gabira" },
  18588. {
  18589. front: {
  18590. height: math.unit(8, "feet"),
  18591. weight: math.unit(350, "lb"),
  18592. name: "Front",
  18593. image: {
  18594. source: "./media/characters/gabira/front.svg",
  18595. extra: 608 / 580,
  18596. bottom: 0.03
  18597. }
  18598. },
  18599. back: {
  18600. height: math.unit(8, "feet"),
  18601. weight: math.unit(350, "lb"),
  18602. name: "Back",
  18603. image: {
  18604. source: "./media/characters/gabira/back.svg",
  18605. extra: 608 / 580,
  18606. bottom: 0.03
  18607. }
  18608. },
  18609. },
  18610. [
  18611. {
  18612. name: "Normal",
  18613. height: math.unit(8, "feet"),
  18614. default: true
  18615. },
  18616. ]
  18617. ))
  18618. characterMakers.push(() => makeCharacter(
  18619. { name: "Sasha Katraine" },
  18620. {
  18621. front: {
  18622. height: math.unit(5 + 3 / 12, "feet"),
  18623. weight: math.unit(137, "lb"),
  18624. name: "Front",
  18625. image: {
  18626. source: "./media/characters/sasha-katraine/front.svg",
  18627. bottom: 0.045
  18628. }
  18629. },
  18630. },
  18631. [
  18632. {
  18633. name: "Micro",
  18634. height: math.unit(5, "inches")
  18635. },
  18636. {
  18637. name: "Normal",
  18638. height: math.unit(5 + 3 / 12, "feet"),
  18639. default: true
  18640. },
  18641. ]
  18642. ))
  18643. characterMakers.push(() => makeCharacter(
  18644. { name: "Der" },
  18645. {
  18646. side: {
  18647. height: math.unit(4, "inches"),
  18648. weight: math.unit(200, "grams"),
  18649. name: "Side",
  18650. image: {
  18651. source: "./media/characters/der/side.svg",
  18652. extra: 719 / 400,
  18653. bottom: 30.6 / 749.9187
  18654. }
  18655. },
  18656. },
  18657. [
  18658. {
  18659. name: "Micro",
  18660. height: math.unit(4, "inches"),
  18661. default: true
  18662. },
  18663. ]
  18664. ))
  18665. characterMakers.push(() => makeCharacter(
  18666. { name: "Fixerdragon" },
  18667. {
  18668. side: {
  18669. height: math.unit(30, "meters"),
  18670. weight: math.unit(700, "tonnes"),
  18671. name: "Side",
  18672. image: {
  18673. source: "./media/characters/fixerdragon/side.svg",
  18674. extra: (1293.0514 - 116.03) / 1106.86,
  18675. bottom: 116.03 / 1293.0514
  18676. }
  18677. },
  18678. },
  18679. [
  18680. {
  18681. name: "Planck",
  18682. height: math.unit(1.6e-35, "meters")
  18683. },
  18684. {
  18685. name: "Micro",
  18686. height: math.unit(0.4, "meters")
  18687. },
  18688. {
  18689. name: "Normal",
  18690. height: math.unit(30, "meters"),
  18691. default: true
  18692. },
  18693. {
  18694. name: "Megamacro",
  18695. height: math.unit(1.2, "megameters")
  18696. },
  18697. {
  18698. name: "Teramacro",
  18699. height: math.unit(130, "terameters")
  18700. },
  18701. {
  18702. name: "Yottamacro",
  18703. height: math.unit(6200, "yottameters")
  18704. },
  18705. ]
  18706. ));
  18707. characterMakers.push(() => makeCharacter(
  18708. { name: "Kite" },
  18709. {
  18710. front: {
  18711. height: math.unit(8, "feet"),
  18712. weight: math.unit(250, "lb"),
  18713. name: "Front",
  18714. image: {
  18715. source: "./media/characters/kite/front.svg",
  18716. extra: 2796 / 2659,
  18717. bottom: 0.002
  18718. }
  18719. },
  18720. },
  18721. [
  18722. {
  18723. name: "Normal",
  18724. height: math.unit(8, "feet"),
  18725. default: true
  18726. },
  18727. {
  18728. name: "Macro",
  18729. height: math.unit(360, "feet")
  18730. },
  18731. {
  18732. name: "Megamacro",
  18733. height: math.unit(1500, "feet")
  18734. },
  18735. ]
  18736. ))
  18737. characterMakers.push(() => makeCharacter(
  18738. { name: "Poojawa Vynar" },
  18739. {
  18740. front: {
  18741. height: math.unit(5 + 10 / 12, "feet"),
  18742. weight: math.unit(150, "lb"),
  18743. name: "Front",
  18744. image: {
  18745. source: "./media/characters/poojawa-vynar/front.svg",
  18746. extra: (1506.1547 - 55) / 1356.6,
  18747. bottom: 55 / 1506.1547
  18748. }
  18749. },
  18750. frontTailless: {
  18751. height: math.unit(5 + 10 / 12, "feet"),
  18752. weight: math.unit(150, "lb"),
  18753. name: "Front (Tailless)",
  18754. image: {
  18755. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18756. extra: (1506.1547 - 55) / 1356.6,
  18757. bottom: 55 / 1506.1547
  18758. }
  18759. },
  18760. },
  18761. [
  18762. {
  18763. name: "Normal",
  18764. height: math.unit(5 + 10 / 12, "feet"),
  18765. default: true
  18766. },
  18767. ]
  18768. ))
  18769. characterMakers.push(() => makeCharacter(
  18770. { name: "Violette" },
  18771. {
  18772. front: {
  18773. height: math.unit(293, "meters"),
  18774. weight: math.unit(70400, "tons"),
  18775. name: "Front",
  18776. image: {
  18777. source: "./media/characters/violette/front.svg",
  18778. extra: 1227 / 1180,
  18779. bottom: 0.005
  18780. }
  18781. },
  18782. back: {
  18783. height: math.unit(293, "meters"),
  18784. weight: math.unit(70400, "tons"),
  18785. name: "Back",
  18786. image: {
  18787. source: "./media/characters/violette/back.svg",
  18788. extra: 1227 / 1180,
  18789. bottom: 0.005
  18790. }
  18791. },
  18792. },
  18793. [
  18794. {
  18795. name: "Macro",
  18796. height: math.unit(293, "meters"),
  18797. default: true
  18798. },
  18799. ]
  18800. ))
  18801. characterMakers.push(() => makeCharacter(
  18802. { name: "Alessandra" },
  18803. {
  18804. front: {
  18805. height: math.unit(1050, "feet"),
  18806. weight: math.unit(200000, "tons"),
  18807. name: "Front",
  18808. image: {
  18809. source: "./media/characters/alessandra/front.svg",
  18810. extra: 960 / 912,
  18811. bottom: 0.06
  18812. }
  18813. },
  18814. },
  18815. [
  18816. {
  18817. name: "Macro",
  18818. height: math.unit(1050, "feet")
  18819. },
  18820. {
  18821. name: "Macro+",
  18822. height: math.unit(900, "meters"),
  18823. default: true
  18824. },
  18825. ]
  18826. ))
  18827. characterMakers.push(() => makeCharacter(
  18828. { name: "Person", species: "Catdragon" },
  18829. {
  18830. front: {
  18831. height: math.unit(5, "feet"),
  18832. weight: math.unit(187, "lb"),
  18833. name: "Front",
  18834. image: {
  18835. source: "./media/characters/person/front.svg",
  18836. extra: 3087 / 2945,
  18837. bottom: 91 / 3181
  18838. }
  18839. },
  18840. },
  18841. [
  18842. {
  18843. name: "Micro",
  18844. height: math.unit(3, "inches")
  18845. },
  18846. {
  18847. name: "Normal",
  18848. height: math.unit(5, "feet"),
  18849. default: true
  18850. },
  18851. {
  18852. name: "Macro",
  18853. height: math.unit(90, "feet")
  18854. },
  18855. {
  18856. name: "Max Size",
  18857. height: math.unit(280, "feet")
  18858. },
  18859. ]
  18860. ))
  18861. characterMakers.push(() => makeCharacter(
  18862. { name: "Ty" },
  18863. {
  18864. front: {
  18865. height: math.unit(4.5, "meters"),
  18866. weight: math.unit(3200, "lb"),
  18867. name: "Front",
  18868. image: {
  18869. source: "./media/characters/ty/front.svg",
  18870. extra: 1038 / 960,
  18871. bottom: 31.156 / 1068
  18872. }
  18873. },
  18874. back: {
  18875. height: math.unit(4.5, "meters"),
  18876. weight: math.unit(3200, "lb"),
  18877. name: "Back",
  18878. image: {
  18879. source: "./media/characters/ty/back.svg",
  18880. extra: 1044 / 966,
  18881. bottom: 7.48 / 1049
  18882. }
  18883. },
  18884. },
  18885. [
  18886. {
  18887. name: "Normal",
  18888. height: math.unit(4.5, "meters"),
  18889. default: true
  18890. },
  18891. ]
  18892. ))
  18893. characterMakers.push(() => makeCharacter(
  18894. { name: "Rocky" },
  18895. {
  18896. front: {
  18897. height: math.unit(5 + 4 / 12, "feet"),
  18898. weight: math.unit(115, "lb"),
  18899. name: "Front",
  18900. image: {
  18901. source: "./media/characters/rocky/front.svg",
  18902. extra: 1012 / 975,
  18903. bottom: 54 / 1066
  18904. }
  18905. },
  18906. },
  18907. [
  18908. {
  18909. name: "Normal",
  18910. height: math.unit(5 + 4 / 12, "feet"),
  18911. default: true
  18912. },
  18913. ]
  18914. ))
  18915. characterMakers.push(() => makeCharacter(
  18916. { name: "Ruin" },
  18917. {
  18918. upright: {
  18919. height: math.unit(6, "meters"),
  18920. weight: math.unit(4000, "kg"),
  18921. name: "Upright",
  18922. image: {
  18923. source: "./media/characters/ruin/upright.svg",
  18924. extra: 668 / 661,
  18925. bottom: 42 / 799.8396
  18926. }
  18927. },
  18928. },
  18929. [
  18930. {
  18931. name: "Normal",
  18932. height: math.unit(6, "meters"),
  18933. default: true
  18934. },
  18935. ]
  18936. ))
  18937. characterMakers.push(() => makeCharacter(
  18938. { name: "Robin" },
  18939. {
  18940. front: {
  18941. height: math.unit(5, "feet"),
  18942. weight: math.unit(106, "lb"),
  18943. name: "Front",
  18944. image: {
  18945. source: "./media/characters/robin/front.svg",
  18946. extra: 862 / 799,
  18947. bottom: 42.4 / 914.8856
  18948. }
  18949. },
  18950. },
  18951. [
  18952. {
  18953. name: "Normal",
  18954. height: math.unit(5, "feet"),
  18955. default: true
  18956. },
  18957. ]
  18958. ))
  18959. characterMakers.push(() => makeCharacter(
  18960. { name: "Saian" },
  18961. {
  18962. side: {
  18963. height: math.unit(3, "feet"),
  18964. weight: math.unit(225, "lb"),
  18965. name: "Side",
  18966. image: {
  18967. source: "./media/characters/saian/side.svg",
  18968. extra: 566 / 356,
  18969. bottom: 79.7 / 643
  18970. }
  18971. },
  18972. maw: {
  18973. height: math.unit(2.85, "feet"),
  18974. name: "Maw",
  18975. image: {
  18976. source: "./media/characters/saian/maw.svg"
  18977. }
  18978. },
  18979. },
  18980. [
  18981. {
  18982. name: "Normal",
  18983. height: math.unit(3, "feet"),
  18984. default: true
  18985. },
  18986. ]
  18987. ))
  18988. characterMakers.push(() => makeCharacter(
  18989. { name: "Equus Silvermane" },
  18990. {
  18991. side: {
  18992. height: math.unit(8, "feet"),
  18993. weight: math.unit(300, "lb"),
  18994. name: "Side",
  18995. image: {
  18996. source: "./media/characters/equus-silvermane/side.svg",
  18997. extra: 2176 / 2050,
  18998. bottom: 65.7 / 2245
  18999. }
  19000. },
  19001. front: {
  19002. height: math.unit(8, "feet"),
  19003. weight: math.unit(300, "lb"),
  19004. name: "Front",
  19005. image: {
  19006. source: "./media/characters/equus-silvermane/front.svg",
  19007. extra: 4633 / 4400,
  19008. bottom: 71.3 / 4706.915
  19009. }
  19010. },
  19011. sideStepping: {
  19012. height: math.unit(8, "feet"),
  19013. weight: math.unit(300, "lb"),
  19014. name: "Side (Stepping)",
  19015. image: {
  19016. source: "./media/characters/equus-silvermane/side-stepping.svg",
  19017. extra: 1968 / 1860,
  19018. bottom: 16.4 / 1989
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Normal",
  19025. height: math.unit(8, "feet")
  19026. },
  19027. {
  19028. name: "Minimacro",
  19029. height: math.unit(75, "feet"),
  19030. default: true
  19031. },
  19032. {
  19033. name: "Macro",
  19034. height: math.unit(150, "feet")
  19035. },
  19036. {
  19037. name: "Macro+",
  19038. height: math.unit(1000, "feet")
  19039. },
  19040. {
  19041. name: "Megamacro",
  19042. height: math.unit(1, "mile")
  19043. },
  19044. ]
  19045. ))
  19046. characterMakers.push(() => makeCharacter(
  19047. { name: "Windar" },
  19048. {
  19049. side: {
  19050. height: math.unit(20, "feet"),
  19051. weight: math.unit(30000, "kg"),
  19052. name: "Side",
  19053. image: {
  19054. source: "./media/characters/windar/side.svg",
  19055. extra: 1491 / 1248,
  19056. bottom: 82.56 / 1568
  19057. }
  19058. },
  19059. },
  19060. [
  19061. {
  19062. name: "Normal",
  19063. height: math.unit(20, "feet"),
  19064. default: true
  19065. },
  19066. ]
  19067. ))
  19068. characterMakers.push(() => makeCharacter(
  19069. { name: "Melody" },
  19070. {
  19071. side: {
  19072. height: math.unit(15.66, "feet"),
  19073. weight: math.unit(150, "lb"),
  19074. name: "Side",
  19075. image: {
  19076. source: "./media/characters/melody/side.svg",
  19077. extra: 1097 / 944,
  19078. bottom: 11.8 / 1109
  19079. }
  19080. },
  19081. sideOutfit: {
  19082. height: math.unit(15.66, "feet"),
  19083. weight: math.unit(150, "lb"),
  19084. name: "Side (Outfit)",
  19085. image: {
  19086. source: "./media/characters/melody/side-outfit.svg",
  19087. extra: 1097 / 944,
  19088. bottom: 11.8 / 1109
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Normal",
  19095. height: math.unit(15.66, "feet"),
  19096. default: true
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Windera" },
  19102. {
  19103. front: {
  19104. height: math.unit(8, "feet"),
  19105. weight: math.unit(325, "lb"),
  19106. name: "Front",
  19107. image: {
  19108. source: "./media/characters/windera/front.svg",
  19109. extra: 3180 / 2845,
  19110. bottom: 178 / 3365
  19111. }
  19112. },
  19113. },
  19114. [
  19115. {
  19116. name: "Normal",
  19117. height: math.unit(8, "feet"),
  19118. default: true
  19119. },
  19120. ]
  19121. ))
  19122. characterMakers.push(() => makeCharacter(
  19123. { name: "Sonear" },
  19124. {
  19125. front: {
  19126. height: math.unit(28.75, "feet"),
  19127. weight: math.unit(2000, "kg"),
  19128. name: "Front",
  19129. image: {
  19130. source: "./media/characters/sonear/front.svg",
  19131. extra: 1041.1 / 964.9,
  19132. bottom: 53.7 / 1096.6
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Normal",
  19139. height: math.unit(28.75, "feet"),
  19140. default: true
  19141. },
  19142. ]
  19143. ))
  19144. characterMakers.push(() => makeCharacter(
  19145. { name: "Kanara" },
  19146. {
  19147. side: {
  19148. height: math.unit(25.5, "feet"),
  19149. weight: math.unit(23000, "kg"),
  19150. name: "Side",
  19151. image: {
  19152. source: "./media/characters/kanara/side.svg"
  19153. }
  19154. },
  19155. },
  19156. [
  19157. {
  19158. name: "Normal",
  19159. height: math.unit(25.5, "feet"),
  19160. default: true
  19161. },
  19162. ]
  19163. ))
  19164. characterMakers.push(() => makeCharacter(
  19165. { name: "Ereus" },
  19166. {
  19167. side: {
  19168. height: math.unit(10, "feet"),
  19169. weight: math.unit(1000, "kg"),
  19170. name: "Side",
  19171. image: {
  19172. source: "./media/characters/ereus/side.svg",
  19173. extra: 1157 / 959,
  19174. bottom: 153 / 1312.5
  19175. }
  19176. },
  19177. },
  19178. [
  19179. {
  19180. name: "Normal",
  19181. height: math.unit(10, "feet"),
  19182. default: true
  19183. },
  19184. ]
  19185. ))
  19186. characterMakers.push(() => makeCharacter(
  19187. { name: "E-ter" },
  19188. {
  19189. side: {
  19190. height: math.unit(4.5, "feet"),
  19191. weight: math.unit(500, "lb"),
  19192. name: "Side",
  19193. image: {
  19194. source: "./media/characters/e-ter/side.svg",
  19195. extra: 1550 / 1248,
  19196. bottom: 146 / 1694
  19197. }
  19198. },
  19199. },
  19200. [
  19201. {
  19202. name: "Normal",
  19203. height: math.unit(4.5, "feet"),
  19204. default: true
  19205. },
  19206. ]
  19207. ))
  19208. characterMakers.push(() => makeCharacter(
  19209. { name: "Yamie" },
  19210. {
  19211. side: {
  19212. height: math.unit(9.7, "feet"),
  19213. weight: math.unit(4000, "kg"),
  19214. name: "Side",
  19215. image: {
  19216. source: "./media/characters/yamie/side.svg"
  19217. }
  19218. },
  19219. },
  19220. [
  19221. {
  19222. name: "Normal",
  19223. height: math.unit(9.7, "feet"),
  19224. default: true
  19225. },
  19226. ]
  19227. ))
  19228. characterMakers.push(() => makeCharacter(
  19229. { name: "Anders" },
  19230. {
  19231. front: {
  19232. height: math.unit(50, "feet"),
  19233. weight: math.unit(50000, "kg"),
  19234. name: "Front",
  19235. image: {
  19236. source: "./media/characters/anders/front.svg",
  19237. extra: 570 / 539,
  19238. bottom: 14.7 / 586.7
  19239. }
  19240. },
  19241. },
  19242. [
  19243. {
  19244. name: "Large",
  19245. height: math.unit(50, "feet")
  19246. },
  19247. {
  19248. name: "Macro",
  19249. height: math.unit(2000, "feet"),
  19250. default: true
  19251. },
  19252. {
  19253. name: "Megamacro",
  19254. height: math.unit(12, "miles")
  19255. },
  19256. ]
  19257. ))
  19258. characterMakers.push(() => makeCharacter(
  19259. { name: "Reban" },
  19260. {
  19261. front: {
  19262. height: math.unit(7 + 2 / 12, "feet"),
  19263. weight: math.unit(300, "lb"),
  19264. name: "Front",
  19265. image: {
  19266. source: "./media/characters/reban/front.svg",
  19267. extra: 516 / 487,
  19268. bottom: 42.82 / 558.356
  19269. }
  19270. },
  19271. dick: {
  19272. height: math.unit(7 / 5, "feet"),
  19273. name: "Dick",
  19274. image: {
  19275. source: "./media/characters/reban/dick.svg"
  19276. }
  19277. },
  19278. },
  19279. [
  19280. {
  19281. name: "Natural Height",
  19282. height: math.unit(7 + 2 / 12, "feet")
  19283. },
  19284. {
  19285. name: "Macro",
  19286. height: math.unit(500, "feet"),
  19287. default: true
  19288. },
  19289. {
  19290. name: "Canon Height",
  19291. height: math.unit(50, "AU")
  19292. },
  19293. ]
  19294. ))
  19295. characterMakers.push(() => makeCharacter(
  19296. { name: "Terrance Keayes" },
  19297. {
  19298. front: {
  19299. height: math.unit(6, "feet"),
  19300. weight: math.unit(150, "lb"),
  19301. name: "Front",
  19302. image: {
  19303. source: "./media/characters/terrance-keayes/front.svg",
  19304. extra: 1.005,
  19305. bottom: 151 / 1615
  19306. }
  19307. },
  19308. side: {
  19309. height: math.unit(6, "feet"),
  19310. weight: math.unit(150, "lb"),
  19311. name: "Side",
  19312. image: {
  19313. source: "./media/characters/terrance-keayes/side.svg",
  19314. extra: 1.005,
  19315. bottom: 129.4 / 1544
  19316. }
  19317. },
  19318. back: {
  19319. height: math.unit(6, "feet"),
  19320. weight: math.unit(150, "lb"),
  19321. name: "Back",
  19322. image: {
  19323. source: "./media/characters/terrance-keayes/back.svg",
  19324. extra: 1.005,
  19325. bottom: 58.4 / 1557.3
  19326. }
  19327. },
  19328. dick: {
  19329. height: math.unit(6 * 0.208, "feet"),
  19330. name: "Dick",
  19331. image: {
  19332. source: "./media/characters/terrance-keayes/dick.svg"
  19333. }
  19334. },
  19335. },
  19336. [
  19337. {
  19338. name: "Canon Height",
  19339. height: math.unit(35, "miles"),
  19340. default: true
  19341. },
  19342. ]
  19343. ))
  19344. characterMakers.push(() => makeCharacter(
  19345. { name: "Ofelia" },
  19346. {
  19347. front: {
  19348. height: math.unit(6, "feet"),
  19349. weight: math.unit(150, "lb"),
  19350. name: "Front",
  19351. image: {
  19352. source: "./media/characters/ofelia/front.svg",
  19353. extra: 546 / 541,
  19354. bottom: 39 / 583
  19355. }
  19356. },
  19357. back: {
  19358. height: math.unit(6, "feet"),
  19359. weight: math.unit(150, "lb"),
  19360. name: "Back",
  19361. image: {
  19362. source: "./media/characters/ofelia/back.svg",
  19363. extra: 564 / 559.5,
  19364. bottom: 8.69 / 573.02
  19365. }
  19366. },
  19367. maw: {
  19368. height: math.unit(1, "feet"),
  19369. name: "Maw",
  19370. image: {
  19371. source: "./media/characters/ofelia/maw.svg"
  19372. }
  19373. },
  19374. foot: {
  19375. height: math.unit(1.949, "feet"),
  19376. name: "Foot",
  19377. image: {
  19378. source: "./media/characters/ofelia/foot.svg"
  19379. }
  19380. },
  19381. },
  19382. [
  19383. {
  19384. name: "Canon Height",
  19385. height: math.unit(2000, "miles"),
  19386. default: true
  19387. },
  19388. ]
  19389. ))
  19390. characterMakers.push(() => makeCharacter(
  19391. { name: "Samuel" },
  19392. {
  19393. front: {
  19394. height: math.unit(6, "feet"),
  19395. weight: math.unit(150, "lb"),
  19396. name: "Front",
  19397. image: {
  19398. source: "./media/characters/samuel/front.svg",
  19399. extra: 265 / 258,
  19400. bottom: 2 / 266.1566
  19401. }
  19402. },
  19403. },
  19404. [
  19405. {
  19406. name: "Macro",
  19407. height: math.unit(100, "feet"),
  19408. default: true
  19409. },
  19410. {
  19411. name: "Full Size",
  19412. height: math.unit(1000, "miles")
  19413. },
  19414. ]
  19415. ))
  19416. characterMakers.push(() => makeCharacter(
  19417. { name: "Beishir Kiel" },
  19418. {
  19419. front: {
  19420. height: math.unit(6, "feet"),
  19421. weight: math.unit(300, "lb"),
  19422. name: "Front",
  19423. image: {
  19424. source: "./media/characters/beishir-kiel/front.svg",
  19425. extra: 569 / 547,
  19426. bottom: 41.9 / 609
  19427. }
  19428. },
  19429. maw: {
  19430. height: math.unit(6 * 0.202, "feet"),
  19431. name: "Maw",
  19432. image: {
  19433. source: "./media/characters/beishir-kiel/maw.svg"
  19434. }
  19435. },
  19436. },
  19437. [
  19438. {
  19439. name: "Macro",
  19440. height: math.unit(300, "feet"),
  19441. default: true
  19442. },
  19443. ]
  19444. ))
  19445. characterMakers.push(() => makeCharacter(
  19446. { name: "Logan Grey" },
  19447. {
  19448. front: {
  19449. height: math.unit(5 + 8 / 12, "feet"),
  19450. weight: math.unit(120, "lb"),
  19451. name: "Front",
  19452. image: {
  19453. source: "./media/characters/logan-grey/front.svg",
  19454. extra: 2539 / 2393,
  19455. bottom: 97.6 / 2636.37
  19456. }
  19457. },
  19458. frontAlt: {
  19459. height: math.unit(5 + 8 / 12, "feet"),
  19460. weight: math.unit(120, "lb"),
  19461. name: "Front (Alt)",
  19462. image: {
  19463. source: "./media/characters/logan-grey/front-alt.svg",
  19464. extra: 958 / 893,
  19465. bottom: 15 / 970.768
  19466. }
  19467. },
  19468. back: {
  19469. height: math.unit(5 + 8 / 12, "feet"),
  19470. weight: math.unit(120, "lb"),
  19471. name: "Back",
  19472. image: {
  19473. source: "./media/characters/logan-grey/back.svg",
  19474. extra: 958 / 893,
  19475. bottom: 2.1881 / 970.9788
  19476. }
  19477. },
  19478. dick: {
  19479. height: math.unit(1.437, "feet"),
  19480. name: "Dick",
  19481. image: {
  19482. source: "./media/characters/logan-grey/dick.svg"
  19483. }
  19484. },
  19485. },
  19486. [
  19487. {
  19488. name: "Normal",
  19489. height: math.unit(5 + 8 / 12, "feet")
  19490. },
  19491. {
  19492. name: "The 500 Foot Femboy",
  19493. height: math.unit(500, "feet"),
  19494. default: true
  19495. },
  19496. {
  19497. name: "Megmacro",
  19498. height: math.unit(20, "miles")
  19499. },
  19500. ]
  19501. ))
  19502. characterMakers.push(() => makeCharacter(
  19503. { name: "Draganta" },
  19504. {
  19505. front: {
  19506. height: math.unit(8 + 2 / 12, "feet"),
  19507. weight: math.unit(275, "lb"),
  19508. name: "Front",
  19509. image: {
  19510. source: "./media/characters/draganta/front.svg",
  19511. extra: 1177 / 1135,
  19512. bottom: 33.46 / 1212.1
  19513. }
  19514. },
  19515. },
  19516. [
  19517. {
  19518. name: "Normal",
  19519. height: math.unit(8 + 6 / 12, "feet"),
  19520. default: true
  19521. },
  19522. {
  19523. name: "Macro",
  19524. height: math.unit(150, "feet")
  19525. },
  19526. {
  19527. name: "Megamacro",
  19528. height: math.unit(1000, "miles")
  19529. },
  19530. ]
  19531. ))
  19532. characterMakers.push(() => makeCharacter(
  19533. { name: "Voski", species: "Corvid" },
  19534. {
  19535. front: {
  19536. height: math.unit(1.72, "m"),
  19537. weight: math.unit(80, "lb"),
  19538. name: "Front",
  19539. image: {
  19540. source: "./media/characters/voski/front.svg",
  19541. extra: 2076.22 / 2022.4,
  19542. bottom: 102.7 / 2177.3866
  19543. }
  19544. },
  19545. frontNsfw: {
  19546. height: math.unit(1.72, "m"),
  19547. weight: math.unit(80, "lb"),
  19548. name: "Front (NSFW)",
  19549. image: {
  19550. source: "./media/characters/voski/front-nsfw.svg",
  19551. extra: 2076.22 / 2022.4,
  19552. bottom: 102.7 / 2177.3866
  19553. }
  19554. },
  19555. back: {
  19556. height: math.unit(1.72, "m"),
  19557. weight: math.unit(80, "lb"),
  19558. name: "Back",
  19559. image: {
  19560. source: "./media/characters/voski/back.svg",
  19561. extra: 2104 / 2051,
  19562. bottom: 10.45 / 2113.63
  19563. }
  19564. },
  19565. },
  19566. [
  19567. {
  19568. name: "Normal",
  19569. height: math.unit(1.72, "m")
  19570. },
  19571. {
  19572. name: "Macro",
  19573. height: math.unit(55, "m"),
  19574. default: true
  19575. },
  19576. {
  19577. name: "Macro+",
  19578. height: math.unit(300, "m")
  19579. },
  19580. {
  19581. name: "Macro++",
  19582. height: math.unit(700, "m")
  19583. },
  19584. {
  19585. name: "Macro+++",
  19586. height: math.unit(4500, "m")
  19587. },
  19588. {
  19589. name: "Macro++++",
  19590. height: math.unit(45, "km")
  19591. },
  19592. {
  19593. name: "Macro+++++",
  19594. height: math.unit(1220, "km")
  19595. },
  19596. ]
  19597. ))
  19598. characterMakers.push(() => makeCharacter(
  19599. { name: "Icowom Lee" },
  19600. {
  19601. front: {
  19602. height: math.unit(2.3, "m"),
  19603. weight: math.unit(304, "kg"),
  19604. name: "Front",
  19605. image: {
  19606. source: "./media/characters/icowom-lee/front.svg",
  19607. extra: 3076 / 2933,
  19608. bottom: 51.4 / 3125.1889
  19609. }
  19610. },
  19611. },
  19612. [
  19613. {
  19614. name: "Normal",
  19615. height: math.unit(2.3, "meters"),
  19616. default: true
  19617. },
  19618. {
  19619. name: "Macro",
  19620. height: math.unit(94, "meters"),
  19621. default: true
  19622. },
  19623. ]
  19624. ))
  19625. characterMakers.push(() => makeCharacter(
  19626. { name: "Shock Diamond", species: "Aeromorphic Synthetic Pharaoh Hound" },
  19627. {
  19628. front: {
  19629. height: math.unit(22, "meters"),
  19630. weight: math.unit(21000, "kg"),
  19631. name: "Front",
  19632. image: {
  19633. source: "./media/characters/shock-diamond/front.svg",
  19634. extra: 2204 / 2053,
  19635. bottom: 65 / 2239.47
  19636. }
  19637. },
  19638. frontNude: {
  19639. height: math.unit(22, "meters"),
  19640. weight: math.unit(21000, "kg"),
  19641. name: "Front (Nude)",
  19642. image: {
  19643. source: "./media/characters/shock-diamond/front-nude.svg",
  19644. extra: 2514 / 2285,
  19645. bottom: 13 / 2527.56
  19646. }
  19647. },
  19648. },
  19649. [
  19650. {
  19651. name: "Normal",
  19652. height: math.unit(3, "meters")
  19653. },
  19654. {
  19655. name: "Macro",
  19656. height: math.unit(22, "meters"),
  19657. default: true
  19658. },
  19659. ]
  19660. ))
  19661. characterMakers.push(() => makeCharacter(
  19662. { name: "Rory" },
  19663. {
  19664. front: {
  19665. height: math.unit(5 + 4 / 12, "feet"),
  19666. weight: math.unit(120, "lb"),
  19667. name: "Front",
  19668. image: {
  19669. source: "./media/characters/rory/front.svg",
  19670. extra: 589 / 556,
  19671. bottom: 45.7 / 635.76
  19672. }
  19673. },
  19674. frontNude: {
  19675. height: math.unit(5 + 4 / 12, "feet"),
  19676. weight: math.unit(120, "lb"),
  19677. name: "Front (Nude)",
  19678. image: {
  19679. source: "./media/characters/rory/front-nude.svg",
  19680. extra: 589 / 556,
  19681. bottom: 45.7 / 635.76
  19682. }
  19683. },
  19684. side: {
  19685. height: math.unit(5 + 4 / 12, "feet"),
  19686. weight: math.unit(120, "lb"),
  19687. name: "Side",
  19688. image: {
  19689. source: "./media/characters/rory/side.svg",
  19690. extra: 597 / 564,
  19691. bottom: 55 / 653
  19692. }
  19693. },
  19694. back: {
  19695. height: math.unit(5 + 4 / 12, "feet"),
  19696. weight: math.unit(120, "lb"),
  19697. name: "Back",
  19698. image: {
  19699. source: "./media/characters/rory/back.svg",
  19700. extra: 620 / 585,
  19701. bottom: 8.86 / 630.43
  19702. }
  19703. },
  19704. dick: {
  19705. height: math.unit(0.86, "feet"),
  19706. name: "Dick",
  19707. image: {
  19708. source: "./media/characters/rory/dick.svg"
  19709. }
  19710. },
  19711. },
  19712. [
  19713. {
  19714. name: "Normal",
  19715. height: math.unit(5 + 4 / 12, "feet"),
  19716. default: true
  19717. },
  19718. {
  19719. name: "Macro",
  19720. height: math.unit(100, "feet")
  19721. },
  19722. {
  19723. name: "Macro+",
  19724. height: math.unit(140, "feet")
  19725. },
  19726. {
  19727. name: "Macro++",
  19728. height: math.unit(300, "feet")
  19729. },
  19730. ]
  19731. ))
  19732. characterMakers.push(() => makeCharacter(
  19733. { name: "Sprisk" },
  19734. {
  19735. front: {
  19736. height: math.unit(5 + 9 / 12, "feet"),
  19737. weight: math.unit(190, "lb"),
  19738. name: "Front",
  19739. image: {
  19740. source: "./media/characters/sprisk/front.svg",
  19741. extra: 1225 / 1180,
  19742. bottom: 42.7 / 1266.4
  19743. }
  19744. },
  19745. frontNsfw: {
  19746. height: math.unit(5 + 9 / 12, "feet"),
  19747. weight: math.unit(190, "lb"),
  19748. name: "Front (NSFW)",
  19749. image: {
  19750. source: "./media/characters/sprisk/front-nsfw.svg",
  19751. extra: 1225 / 1180,
  19752. bottom: 42.7 / 1266.4
  19753. }
  19754. },
  19755. back: {
  19756. height: math.unit(5 + 9 / 12, "feet"),
  19757. weight: math.unit(190, "lb"),
  19758. name: "Back",
  19759. image: {
  19760. source: "./media/characters/sprisk/back.svg",
  19761. extra: 1247 / 1200,
  19762. bottom: 5.6 / 1253.04
  19763. }
  19764. },
  19765. },
  19766. [
  19767. {
  19768. name: "Tiny",
  19769. height: math.unit(2, "inches")
  19770. },
  19771. {
  19772. name: "Normal",
  19773. height: math.unit(5 + 9 / 12, "feet"),
  19774. default: true
  19775. },
  19776. {
  19777. name: "Mini Macro",
  19778. height: math.unit(18, "feet")
  19779. },
  19780. {
  19781. name: "Macro",
  19782. height: math.unit(100, "feet")
  19783. },
  19784. {
  19785. name: "MACRO",
  19786. height: math.unit(50, "miles")
  19787. },
  19788. {
  19789. name: "M A C R O",
  19790. height: math.unit(300, "miles")
  19791. },
  19792. ]
  19793. ))
  19794. characterMakers.push(() => makeCharacter(
  19795. { name: "Bunsen" },
  19796. {
  19797. side: {
  19798. height: math.unit(15.6, "meters"),
  19799. weight: math.unit(700000, "kg"),
  19800. name: "Side",
  19801. image: {
  19802. source: "./media/characters/bunsen/side.svg",
  19803. extra: 1644 / 358
  19804. }
  19805. },
  19806. foot: {
  19807. height: math.unit(1.611 * 1644 / 358, "meter"),
  19808. name: "Foot",
  19809. image: {
  19810. source: "./media/characters/bunsen/foot.svg"
  19811. }
  19812. },
  19813. },
  19814. [
  19815. {
  19816. name: "Small",
  19817. height: math.unit(10, "feet")
  19818. },
  19819. {
  19820. name: "Normal",
  19821. height: math.unit(15.6, "meters"),
  19822. default: true
  19823. },
  19824. ]
  19825. ))
  19826. characterMakers.push(() => makeCharacter(
  19827. { name: "Sesh" },
  19828. {
  19829. front: {
  19830. height: math.unit(4 + 11 / 12, "feet"),
  19831. weight: math.unit(140, "lb"),
  19832. name: "Front",
  19833. image: {
  19834. source: "./media/characters/sesh/front.svg",
  19835. extra: 3420 / 3231,
  19836. bottom: 72 / 3949.5
  19837. }
  19838. },
  19839. },
  19840. [
  19841. {
  19842. name: "Normal",
  19843. height: math.unit(4 + 11 / 12, "feet")
  19844. },
  19845. {
  19846. name: "Grown",
  19847. height: math.unit(15, "feet"),
  19848. default: true
  19849. },
  19850. {
  19851. name: "Macro",
  19852. height: math.unit(1500, "feet")
  19853. },
  19854. {
  19855. name: "Megamacro",
  19856. height: math.unit(30, "miles")
  19857. },
  19858. {
  19859. name: "Continental",
  19860. height: math.unit(3000, "miles")
  19861. },
  19862. {
  19863. name: "Gravity Mass",
  19864. height: math.unit(300000, "miles")
  19865. },
  19866. {
  19867. name: "Planet Buster",
  19868. height: math.unit(30000000, "miles")
  19869. },
  19870. {
  19871. name: "Big",
  19872. height: math.unit(3000000000, "miles")
  19873. },
  19874. ]
  19875. ))
  19876. characterMakers.push(() => makeCharacter(
  19877. { name: "Pepper" },
  19878. {
  19879. front: {
  19880. height: math.unit(9, "feet"),
  19881. weight: math.unit(350, "lb"),
  19882. name: "Front",
  19883. image: {
  19884. source: "./media/characters/pepper/front.svg",
  19885. extra: 1448/1312,
  19886. bottom: 9.4/1457.88
  19887. }
  19888. },
  19889. back: {
  19890. height: math.unit(9, "feet"),
  19891. weight: math.unit(350, "lb"),
  19892. name: "Back",
  19893. image: {
  19894. source: "./media/characters/pepper/back.svg",
  19895. extra: 1423/1300,
  19896. bottom: 4.6/1429
  19897. }
  19898. },
  19899. maw: {
  19900. height: math.unit(0.932, "feet"),
  19901. name: "Maw",
  19902. image: {
  19903. source: "./media/characters/pepper/maw.svg"
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Normal",
  19910. height: math.unit(9, "feet"),
  19911. default: true
  19912. },
  19913. ]
  19914. ))
  19915. characterMakers.push(() => makeCharacter(
  19916. { name: "Maelstrom" },
  19917. {
  19918. front: {
  19919. height: math.unit(6, "feet"),
  19920. weight: math.unit(150, "lb"),
  19921. name: "Front",
  19922. image: {
  19923. source: "./media/characters/maelstrom/front.svg",
  19924. extra: 2100/1883,
  19925. bottom: 94/2196.7
  19926. }
  19927. },
  19928. },
  19929. [
  19930. {
  19931. name: "Less Kaiju",
  19932. height: math.unit(200, "feet")
  19933. },
  19934. {
  19935. name: "Kaiju",
  19936. height: math.unit(400, "feet"),
  19937. default: true
  19938. },
  19939. {
  19940. name: "Kaiju-er",
  19941. height: math.unit(600, "feet")
  19942. },
  19943. ]
  19944. ))
  19945. characterMakers.push(() => makeCharacter(
  19946. { name: "Lexir" },
  19947. {
  19948. front: {
  19949. height: math.unit(6 + 5/12, "feet"),
  19950. weight: math.unit(180, "lb"),
  19951. name: "Front",
  19952. image: {
  19953. source: "./media/characters/lexir/front.svg",
  19954. extra: 180/172,
  19955. bottom: 12/192
  19956. }
  19957. },
  19958. back: {
  19959. height: math.unit(6 + 5/12, "feet"),
  19960. weight: math.unit(180, "lb"),
  19961. name: "Back",
  19962. image: {
  19963. source: "./media/characters/lexir/back.svg",
  19964. extra: 183.84/175.5,
  19965. bottom: 3.1/187
  19966. }
  19967. },
  19968. },
  19969. [
  19970. {
  19971. name: "Very Smal",
  19972. height: math.unit(1, "nm")
  19973. },
  19974. {
  19975. name: "Normal",
  19976. height: math.unit(6 + 5/12, "feet"),
  19977. default: true
  19978. },
  19979. {
  19980. name: "Macro",
  19981. height: math.unit(1, "mile")
  19982. },
  19983. {
  19984. name: "Megamacro",
  19985. height: math.unit(50, "miles")
  19986. },
  19987. ]
  19988. ))
  19989. characterMakers.push(() => makeCharacter(
  19990. { name: "Maksio" },
  19991. {
  19992. front: {
  19993. height: math.unit(1.5, "meters"),
  19994. weight: math.unit(100, "lb"),
  19995. name: "Front",
  19996. image: {
  19997. source: "./media/characters/maksio/front.svg",
  19998. extra: 1549/1531,
  19999. bottom: 123.7/1674.5429
  20000. }
  20001. },
  20002. back: {
  20003. height: math.unit(1.5, "meters"),
  20004. weight: math.unit(100, "lb"),
  20005. name: "Back",
  20006. image: {
  20007. source: "./media/characters/maksio/back.svg",
  20008. extra: 1541/1509,
  20009. bottom: 97/1639
  20010. }
  20011. },
  20012. hand: {
  20013. height: math.unit(0.621, "feet"),
  20014. name: "Hand",
  20015. image: {
  20016. source: "./media/characters/maksio/hand.svg"
  20017. }
  20018. },
  20019. foot: {
  20020. height: math.unit(1.611, "feet"),
  20021. name: "Foot",
  20022. image: {
  20023. source: "./media/characters/maksio/foot.svg"
  20024. }
  20025. },
  20026. },
  20027. [
  20028. {
  20029. name: "Shrunken",
  20030. height: math.unit(10, "cm")
  20031. },
  20032. {
  20033. name: "Normal",
  20034. height: math.unit(150, "cm"),
  20035. default: true
  20036. },
  20037. ]
  20038. ))
  20039. characterMakers.push(() => makeCharacter(
  20040. { name: "Erza Bear" },
  20041. {
  20042. front: {
  20043. height: math.unit(100, "feet"),
  20044. name: "Front",
  20045. image: {
  20046. source: "./media/characters/erza-bear/front.svg",
  20047. extra: 2449/2390,
  20048. bottom: 46/2494
  20049. }
  20050. },
  20051. back: {
  20052. height: math.unit(100, "feet"),
  20053. name: "Back",
  20054. image: {
  20055. source: "./media/characters/erza-bear/back.svg",
  20056. extra: 2489/2430,
  20057. bottom: 85.4/2480
  20058. }
  20059. },
  20060. tail: {
  20061. height: math.unit(42, "feet"),
  20062. name: "Tail",
  20063. image: {
  20064. source: "./media/characters/erza-bear/tail.svg"
  20065. }
  20066. },
  20067. tongue: {
  20068. height: math.unit(8, "feet"),
  20069. name: "Tongue",
  20070. image: {
  20071. source: "./media/characters/erza-bear/tongue.svg"
  20072. }
  20073. },
  20074. dick: {
  20075. height: math.unit(10.5, "feet"),
  20076. name: "Dick",
  20077. image: {
  20078. source: "./media/characters/erza-bear/dick.svg"
  20079. }
  20080. },
  20081. dickVertical: {
  20082. height: math.unit(16.9, "feet"),
  20083. name: "Dick (Vertical)",
  20084. image: {
  20085. source: "./media/characters/erza-bear/dick-vertical.svg"
  20086. }
  20087. },
  20088. },
  20089. [
  20090. {
  20091. name: "Macro",
  20092. height: math.unit(100, "feet"),
  20093. default: true
  20094. },
  20095. ]
  20096. ))
  20097. characterMakers.push(() => makeCharacter(
  20098. { name: "Violet Flor", species: "Skunk" },
  20099. {
  20100. front: {
  20101. height: math.unit(172, "cm"),
  20102. weight: math.unit(73, "kg"),
  20103. name: "Front",
  20104. image: {
  20105. source: "./media/characters/violet-flor/front.svg",
  20106. extra: 1530/1442,
  20107. bottom: 61.9/1588.8
  20108. }
  20109. },
  20110. back: {
  20111. height: math.unit(180, "cm"),
  20112. weight: math.unit(73, "kg"),
  20113. name: "Back",
  20114. image: {
  20115. source: "./media/characters/violet-flor/back.svg",
  20116. extra: 1692/1630,
  20117. bottom: 20/1712
  20118. }
  20119. },
  20120. },
  20121. [
  20122. {
  20123. name: "Normal",
  20124. height: math.unit(172, "cm"),
  20125. default: true
  20126. },
  20127. ]
  20128. ))
  20129. characterMakers.push(() => makeCharacter(
  20130. { name: "Lynn Rhea", species: "Shark" },
  20131. {
  20132. front: {
  20133. height: math.unit(6, "feet"),
  20134. weight: math.unit(220, "lb"),
  20135. name: "Front",
  20136. image: {
  20137. source: "./media/characters/lynn-rhea/front.svg",
  20138. extra: 310/273
  20139. }
  20140. },
  20141. back: {
  20142. height: math.unit(6, "feet"),
  20143. weight: math.unit(220, "lb"),
  20144. name: "Back",
  20145. image: {
  20146. source: "./media/characters/lynn-rhea/back.svg",
  20147. extra: 310/273
  20148. }
  20149. },
  20150. dicks: {
  20151. height: math.unit(0.9, "feet"),
  20152. name: "Dicks",
  20153. image: {
  20154. source: "./media/characters/lynn-rhea/dicks.svg"
  20155. }
  20156. },
  20157. slit: {
  20158. height: math.unit(0.4, "feet"),
  20159. name: "Slit",
  20160. image: {
  20161. source: "./media/characters/lynn-rhea/slit.svg"
  20162. }
  20163. },
  20164. },
  20165. [
  20166. {
  20167. name: "Micro",
  20168. height: math.unit(1, "inch")
  20169. },
  20170. {
  20171. name: "Macro",
  20172. height: math.unit(60, "feet"),
  20173. default: true
  20174. },
  20175. {
  20176. name: "Megamacro",
  20177. height: math.unit(2, "miles")
  20178. },
  20179. {
  20180. name: "Gigamacro",
  20181. height: math.unit(3, "earths")
  20182. },
  20183. {
  20184. name: "Galactic",
  20185. height: math.unit(0.8, "galaxies")
  20186. },
  20187. ]
  20188. ))
  20189. characterMakers.push(() => makeCharacter(
  20190. { name: "Valathos" },
  20191. {
  20192. front: {
  20193. height: math.unit(1600, "feet"),
  20194. weight: math.unit(85758785169, "kg"),
  20195. name: "Front",
  20196. image: {
  20197. source: "./media/characters/valathos/front.svg",
  20198. extra: 1451/1339
  20199. }
  20200. },
  20201. },
  20202. [
  20203. {
  20204. name: "Macro",
  20205. height: math.unit(1600, "feet"),
  20206. default: true
  20207. },
  20208. ]
  20209. ))
  20210. characterMakers.push(() => makeCharacter(
  20211. { name: "Azula" },
  20212. {
  20213. front: {
  20214. height: math.unit(7 + 5/12, "feet"),
  20215. weight: math.unit(300, "lb"),
  20216. name: "Front",
  20217. image: {
  20218. source: "./media/characters/azula/front.svg",
  20219. extra: 3208/2880,
  20220. bottom: 80.2/3277
  20221. }
  20222. },
  20223. back: {
  20224. height: math.unit(7 + 5/12, "feet"),
  20225. weight: math.unit(300, "lb"),
  20226. name: "Back",
  20227. image: {
  20228. source: "./media/characters/azula/back.svg",
  20229. extra: 3169/2822,
  20230. bottom: 150.6/3321
  20231. }
  20232. },
  20233. },
  20234. [
  20235. {
  20236. name: "Normal",
  20237. height: math.unit(7 + 5/12, "feet"),
  20238. default: true
  20239. },
  20240. {
  20241. name: "Big",
  20242. height: math.unit(20, "feet")
  20243. },
  20244. ]
  20245. ))
  20246. characterMakers.push(() => makeCharacter(
  20247. { name: "Rupert" },
  20248. {
  20249. front: {
  20250. height: math.unit(5 + 1/12, "feet"),
  20251. weight: math.unit(110, "lb"),
  20252. name: "Front",
  20253. image: {
  20254. source: "./media/characters/rupert/front.svg",
  20255. extra: 1549/1495,
  20256. bottom: 54.2/1604.4
  20257. }
  20258. },
  20259. },
  20260. [
  20261. {
  20262. name: "Normal",
  20263. height: math.unit(5 + 1/12, "feet"),
  20264. default: true
  20265. },
  20266. ]
  20267. ))
  20268. characterMakers.push(() => makeCharacter(
  20269. { name: "Sheera Castellar" },
  20270. {
  20271. front: {
  20272. height: math.unit(8 + 4/12, "feet"),
  20273. weight: math.unit(350, "lb"),
  20274. name: "Front",
  20275. image: {
  20276. source: "./media/characters/sheera-castellar/front.svg",
  20277. extra: 1957/1894,
  20278. bottom: 26.97/1975.017
  20279. }
  20280. },
  20281. side: {
  20282. height: math.unit(8 + 4/12, "feet"),
  20283. weight: math.unit(350, "lb"),
  20284. name: "Side",
  20285. image: {
  20286. source: "./media/characters/sheera-castellar/side.svg",
  20287. extra: 1957/1894
  20288. }
  20289. },
  20290. back: {
  20291. height: math.unit(8 + 4/12, "feet"),
  20292. weight: math.unit(350, "lb"),
  20293. name: "Back",
  20294. image: {
  20295. source: "./media/characters/sheera-castellar/back.svg",
  20296. extra: 1957/1894
  20297. }
  20298. },
  20299. angled: {
  20300. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  20301. weight: math.unit(350, "lb"),
  20302. name: "Angled",
  20303. image: {
  20304. source: "./media/characters/sheera-castellar/angled.svg",
  20305. extra: 1807/1707,
  20306. bottom: 68/1875
  20307. }
  20308. },
  20309. genitals: {
  20310. height: math.unit(2.2, "feet"),
  20311. name: "Genitals",
  20312. image: {
  20313. source: "./media/characters/sheera-castellar/genitals.svg"
  20314. }
  20315. },
  20316. },
  20317. [
  20318. {
  20319. name: "Normal",
  20320. height: math.unit(8 + 4/12, "feet")
  20321. },
  20322. {
  20323. name: "Macro",
  20324. height: math.unit(150, "feet"),
  20325. default: true
  20326. },
  20327. {
  20328. name: "Macro+",
  20329. height: math.unit(800, "feet")
  20330. },
  20331. ]
  20332. ))
  20333. characterMakers.push(() => makeCharacter(
  20334. { name: "Jaipur", species: "Black Panther" },
  20335. {
  20336. front: {
  20337. height: math.unit(6, "feet"),
  20338. weight: math.unit(150, "lb"),
  20339. name: "Front",
  20340. image: {
  20341. source: "./media/characters/jaipur/front.svg",
  20342. extra: 3860/3731,
  20343. bottom: 287/4140
  20344. }
  20345. },
  20346. back: {
  20347. height: math.unit(6, "feet"),
  20348. weight: math.unit(150, "lb"),
  20349. name: "Back",
  20350. image: {
  20351. source: "./media/characters/jaipur/back.svg",
  20352. extra: 4060/3930,
  20353. bottom: 151/4200
  20354. }
  20355. },
  20356. },
  20357. [
  20358. {
  20359. name: "Normal",
  20360. height: math.unit(1.85, "meters"),
  20361. default: true
  20362. },
  20363. {
  20364. name: "Macro",
  20365. height: math.unit(150, "meters")
  20366. },
  20367. {
  20368. name: "Macro+",
  20369. height: math.unit(0.5, "miles")
  20370. },
  20371. {
  20372. name: "Macro++",
  20373. height: math.unit(2.5, "miles")
  20374. },
  20375. {
  20376. name: "Macro+++",
  20377. height: math.unit(12, "miles")
  20378. },
  20379. {
  20380. name: "Macro++++",
  20381. height: math.unit(120, "miles")
  20382. },
  20383. {
  20384. name: "Macro+++++",
  20385. height: math.unit(1200, "miles")
  20386. },
  20387. ]
  20388. ))
  20389. characterMakers.push(() => makeCharacter(
  20390. { name: "Sheila (Wolf)" },
  20391. {
  20392. front: {
  20393. height: math.unit(6, "feet"),
  20394. weight: math.unit(150, "lb"),
  20395. name: "Front",
  20396. image: {
  20397. source: "./media/characters/sheila-wolf/front.svg",
  20398. extra: 1931/1808,
  20399. bottom: 29.5/1960
  20400. }
  20401. },
  20402. dick: {
  20403. height: math.unit(1.464, "feet"),
  20404. name: "Dick",
  20405. image: {
  20406. source: "./media/characters/sheila-wolf/dick.svg"
  20407. }
  20408. },
  20409. muzzle: {
  20410. height: math.unit(0.513, "feet"),
  20411. name: "Muzzle",
  20412. image: {
  20413. source: "./media/characters/sheila-wolf/muzzle.svg"
  20414. }
  20415. },
  20416. },
  20417. [
  20418. {
  20419. name: "Macro",
  20420. height: math.unit(70, "feet"),
  20421. default: true
  20422. },
  20423. ]
  20424. ))
  20425. characterMakers.push(() => makeCharacter(
  20426. { name: "Almor", species: "Dragon" },
  20427. {
  20428. front: {
  20429. height: math.unit(32, "meters"),
  20430. weight: math.unit(300000, "kg"),
  20431. name: "Front",
  20432. image: {
  20433. source: "./media/characters/almor/front.svg",
  20434. extra: 1408/1322,
  20435. bottom: 94.6/1506.5
  20436. }
  20437. },
  20438. },
  20439. [
  20440. {
  20441. name: "Macro",
  20442. height: math.unit(32, "meters"),
  20443. default: true
  20444. },
  20445. ]
  20446. ))
  20447. characterMakers.push(() => makeCharacter(
  20448. { name: "Silver" },
  20449. {
  20450. front: {
  20451. height: math.unit(7, "feet"),
  20452. weight: math.unit(200, "lb"),
  20453. name: "Front",
  20454. image: {
  20455. source: "./media/characters/silver/front.svg",
  20456. extra: 472.1/450.5,
  20457. bottom: 26.5/499.424
  20458. }
  20459. },
  20460. },
  20461. [
  20462. {
  20463. name: "Normal",
  20464. height: math.unit(7, "feet"),
  20465. default: true
  20466. },
  20467. {
  20468. name: "Macro",
  20469. height: math.unit(800, "feet")
  20470. },
  20471. {
  20472. name: "Megamacro",
  20473. height: math.unit(250, "miles")
  20474. },
  20475. ]
  20476. ))
  20477. characterMakers.push(() => makeCharacter(
  20478. { name: "Pliskin" },
  20479. {
  20480. front: {
  20481. height: math.unit(6, "feet"),
  20482. weight: math.unit(150, "lb"),
  20483. name: "Front",
  20484. image: {
  20485. source: "./media/characters/pliskin/front.svg",
  20486. extra: 1469/1359,
  20487. bottom: 70/1540
  20488. }
  20489. },
  20490. },
  20491. [
  20492. {
  20493. name: "Micro",
  20494. height: math.unit(3, "inches")
  20495. },
  20496. {
  20497. name: "Normal",
  20498. height: math.unit(5 + 11/12, "feet"),
  20499. default: true
  20500. },
  20501. {
  20502. name: "Macro",
  20503. height: math.unit(120, "feet")
  20504. },
  20505. ]
  20506. ))
  20507. characterMakers.push(() => makeCharacter(
  20508. { name: "Sammy" },
  20509. {
  20510. front: {
  20511. height: math.unit(6, "feet"),
  20512. weight: math.unit(150, "lb"),
  20513. name: "Front",
  20514. image: {
  20515. source: "./media/characters/sammy/front.svg",
  20516. extra: 1193/1089,
  20517. bottom: 30.5/1226
  20518. }
  20519. },
  20520. },
  20521. [
  20522. {
  20523. name: "Macro",
  20524. height: math.unit(1700, "feet"),
  20525. default: true
  20526. },
  20527. {
  20528. name: "Examacro",
  20529. height: math.unit(2.5e9, "lightyears")
  20530. },
  20531. ]
  20532. ))
  20533. characterMakers.push(() => makeCharacter(
  20534. { name: "Kuru", species: "Umbra" },
  20535. {
  20536. front: {
  20537. height: math.unit(21, "meters"),
  20538. weight: math.unit(12, "tonnes"),
  20539. name: "Front",
  20540. image: {
  20541. source: "./media/characters/kuru/front.svg",
  20542. extra: 4301/3785,
  20543. bottom: 371.3/4691
  20544. }
  20545. },
  20546. },
  20547. [
  20548. {
  20549. name: "Macro",
  20550. height: math.unit(21, "meters"),
  20551. default: true
  20552. },
  20553. ]
  20554. ))
  20555. characterMakers.push(() => makeCharacter(
  20556. { name: "Rakka", species: "Umbra" },
  20557. {
  20558. front: {
  20559. height: math.unit(23, "meters"),
  20560. weight: math.unit(12.2, "tonnes"),
  20561. name: "Front",
  20562. image: {
  20563. source: "./media/characters/rakka/front.svg",
  20564. extra: 4670/4169,
  20565. bottom: 301/4968.7
  20566. }
  20567. },
  20568. },
  20569. [
  20570. {
  20571. name: "Macro",
  20572. height: math.unit(23, "meters"),
  20573. default: true
  20574. },
  20575. ]
  20576. ))
  20577. characterMakers.push(() => makeCharacter(
  20578. { name: "Rhys (Feline)" },
  20579. {
  20580. front: {
  20581. height: math.unit(6, "feet"),
  20582. weight: math.unit(150, "lb"),
  20583. name: "Front",
  20584. image: {
  20585. source: "./media/characters/rhys-feline/front.svg",
  20586. extra: 2488/2308,
  20587. bottom: 35.67/2519.19
  20588. }
  20589. },
  20590. },
  20591. [
  20592. {
  20593. name: "Really Small",
  20594. height: math.unit(1, "nm")
  20595. },
  20596. {
  20597. name: "Micro",
  20598. height: math.unit(4, "inches")
  20599. },
  20600. {
  20601. name: "Normal",
  20602. height: math.unit(4 + 10/12, "feet"),
  20603. default: true
  20604. },
  20605. {
  20606. name: "Macro",
  20607. height: math.unit(100, "feet")
  20608. },
  20609. {
  20610. name: "Megamacto",
  20611. height: math.unit(50, "miles")
  20612. },
  20613. ]
  20614. ))
  20615. characterMakers.push(() => makeCharacter(
  20616. { name: "Alydar", species: "Raven/Snow Leopard" },
  20617. {
  20618. side: {
  20619. height: math.unit(30, "feet"),
  20620. weight: math.unit(35000, "kg"),
  20621. name: "Side",
  20622. image: {
  20623. source: "./media/characters/alydar/side.svg",
  20624. extra: 234/222,
  20625. bottom: 6.5/241
  20626. }
  20627. },
  20628. front: {
  20629. height: math.unit(30, "feet"),
  20630. weight: math.unit(35000, "kg"),
  20631. name: "Front",
  20632. image: {
  20633. source: "./media/characters/alydar/front.svg",
  20634. extra: 223.37/210.2,
  20635. bottom: 22.3/246.76
  20636. }
  20637. },
  20638. top: {
  20639. height: math.unit(64.54, "feet"),
  20640. weight: math.unit(35000, "kg"),
  20641. name: "Top",
  20642. image: {
  20643. source: "./media/characters/alydar/top.svg"
  20644. }
  20645. },
  20646. anthro: {
  20647. height: math.unit(30, "feet"),
  20648. weight: math.unit(9000, "kg"),
  20649. name: "Anthro",
  20650. image: {
  20651. source: "./media/characters/alydar/anthro.svg",
  20652. extra: 432/421,
  20653. bottom: 7.18/440
  20654. }
  20655. },
  20656. maw: {
  20657. height: math.unit(11.693, "feet"),
  20658. name: "Maw",
  20659. image: {
  20660. source: "./media/characters/alydar/maw.svg"
  20661. }
  20662. },
  20663. head: {
  20664. height: math.unit(11.693, "feet"),
  20665. name: "Head",
  20666. image: {
  20667. source: "./media/characters/alydar/head.svg"
  20668. }
  20669. },
  20670. headAlt: {
  20671. height: math.unit(12.861, "feet"),
  20672. name: "Head (Alt)",
  20673. image: {
  20674. source: "./media/characters/alydar/head-alt.svg"
  20675. }
  20676. },
  20677. wing: {
  20678. height: math.unit(20.712, "feet"),
  20679. name: "Wing",
  20680. image: {
  20681. source: "./media/characters/alydar/wing.svg"
  20682. }
  20683. },
  20684. wingFeather: {
  20685. height: math.unit(9.662, "feet"),
  20686. name: "Wing Feather",
  20687. image: {
  20688. source: "./media/characters/alydar/wing-feather.svg"
  20689. }
  20690. },
  20691. countourFeather: {
  20692. height: math.unit(4.154, "feet"),
  20693. name: "Contour Feather",
  20694. image: {
  20695. source: "./media/characters/alydar/contour-feather.svg"
  20696. }
  20697. },
  20698. },
  20699. [
  20700. {
  20701. name: "Diplomatic",
  20702. height: math.unit(13, "feet"),
  20703. default: true
  20704. },
  20705. {
  20706. name: "Small",
  20707. height: math.unit(30, "feet")
  20708. },
  20709. {
  20710. name: "Normal",
  20711. height: math.unit(95, "feet"),
  20712. default: true
  20713. },
  20714. {
  20715. name: "Large",
  20716. height: math.unit(285, "feet")
  20717. },
  20718. {
  20719. name: "Incomprehensible",
  20720. height: math.unit(450, "megameters")
  20721. },
  20722. ]
  20723. ))
  20724. characterMakers.push(() => makeCharacter(
  20725. { name: "Selicia" },
  20726. {
  20727. side: {
  20728. height: math.unit(11, "feet"),
  20729. weight: math.unit(1750, "kg"),
  20730. name: "Side",
  20731. image: {
  20732. source: "./media/characters/selicia/side.svg",
  20733. extra: 440/396,
  20734. bottom: 24.8/465.979
  20735. }
  20736. },
  20737. maw: {
  20738. height: math.unit(4.665, "feet"),
  20739. name: "Maw",
  20740. image: {
  20741. source: "./media/characters/selicia/maw.svg"
  20742. }
  20743. },
  20744. },
  20745. [
  20746. {
  20747. name: "Normal",
  20748. height: math.unit(11, "feet"),
  20749. default: true
  20750. },
  20751. ]
  20752. ))
  20753. characterMakers.push(() => makeCharacter(
  20754. { name: "Layla" },
  20755. {
  20756. side: {
  20757. height: math.unit(2 + 6 /12, "feet"),
  20758. weight: math.unit(30, "lb"),
  20759. name: "Side",
  20760. image: {
  20761. source: "./media/characters/layla/side.svg",
  20762. extra: 244/188,
  20763. bottom: 18.2/262.1
  20764. }
  20765. },
  20766. back: {
  20767. height: math.unit(2 + 6 /12, "feet"),
  20768. weight: math.unit(30, "lb"),
  20769. name: "Back",
  20770. image: {
  20771. source: "./media/characters/layla/back.svg",
  20772. extra: 308/241.5,
  20773. bottom: 8.9/316.8
  20774. }
  20775. },
  20776. cumming: {
  20777. height: math.unit(2 + 6 /12, "feet"),
  20778. weight: math.unit(30, "lb"),
  20779. name: "Cumming",
  20780. image: {
  20781. source: "./media/characters/layla/cumming.svg",
  20782. extra: 342/279,
  20783. bottom: 595/938
  20784. }
  20785. },
  20786. dickFlaccid: {
  20787. height: math.unit(2.595, "feet"),
  20788. name: "Flaccid Genitals",
  20789. image: {
  20790. source: "./media/characters/layla/dick-flaccid.svg"
  20791. }
  20792. },
  20793. dickErect: {
  20794. height: math.unit(2.359, "feet"),
  20795. name: "Erect Genitals",
  20796. image: {
  20797. source: "./media/characters/layla/dick-erect.svg"
  20798. }
  20799. },
  20800. },
  20801. [
  20802. {
  20803. name: "Micro",
  20804. height: math.unit(1, "inch")
  20805. },
  20806. {
  20807. name: "Small",
  20808. height: math.unit(1, "foot")
  20809. },
  20810. {
  20811. name: "Normal",
  20812. height: math.unit(2 + 6/12, "feet"),
  20813. default: true
  20814. },
  20815. {
  20816. name: "Macro",
  20817. height: math.unit(200, "feet")
  20818. },
  20819. {
  20820. name: "Megamacro",
  20821. height: math.unit(1000, "miles")
  20822. },
  20823. {
  20824. name: "Planetary",
  20825. height: math.unit(8000, "miles")
  20826. },
  20827. {
  20828. name: "True Layla",
  20829. height: math.unit(200000*7, "multiverses")
  20830. },
  20831. ]
  20832. ))
  20833. characterMakers.push(() => makeCharacter(
  20834. { name: "Knox" },
  20835. {
  20836. back: {
  20837. height: math.unit(10.5, "feet"),
  20838. weight: math.unit(800, "lb"),
  20839. name: "Back",
  20840. image: {
  20841. source: "./media/characters/knox/back.svg",
  20842. extra: 1486/1089,
  20843. bottom: 107/1601.4
  20844. }
  20845. },
  20846. side: {
  20847. height: math.unit(10.5, "feet"),
  20848. weight: math.unit(800, "lb"),
  20849. name: "Side",
  20850. image: {
  20851. source: "./media/characters/knox/side.svg",
  20852. extra: 244/218,
  20853. bottom: 14/260
  20854. }
  20855. },
  20856. },
  20857. [
  20858. {
  20859. name: "Compact",
  20860. height: math.unit(10.5, "feet"),
  20861. default: true
  20862. },
  20863. {
  20864. name: "Dynamax",
  20865. height: math.unit(210, "feet")
  20866. },
  20867. {
  20868. name: "Full Macro",
  20869. height: math.unit(850, "feet")
  20870. },
  20871. ]
  20872. ))
  20873. characterMakers.push(() => makeCharacter(
  20874. { name: "Shin (Pikachu)" },
  20875. {
  20876. front: {
  20877. height: math.unit(6, "feet"),
  20878. weight: math.unit(152, "lb"),
  20879. name: "Front",
  20880. image: {
  20881. source: "./media/characters/shin-pikachu/front.svg",
  20882. extra: 1574/1480,
  20883. bottom: 53.3/1626
  20884. }
  20885. },
  20886. hand: {
  20887. height: math.unit(1.055, "feet"),
  20888. name: "Hand",
  20889. image: {
  20890. source: "./media/characters/shin-pikachu/hand.svg"
  20891. }
  20892. },
  20893. foot: {
  20894. height: math.unit(1.1, "feet"),
  20895. name: "Foot",
  20896. image: {
  20897. source: "./media/characters/shin-pikachu/foot.svg"
  20898. }
  20899. },
  20900. collar: {
  20901. height: math.unit(0.386, "feet"),
  20902. name: "Collar",
  20903. image: {
  20904. source: "./media/characters/shin-pikachu/collar.svg"
  20905. }
  20906. },
  20907. },
  20908. [
  20909. {
  20910. name: "Smallest",
  20911. height: math.unit(0.5, "inches")
  20912. },
  20913. {
  20914. name: "Micro",
  20915. height: math.unit(6, "inches")
  20916. },
  20917. {
  20918. name: "Normal",
  20919. height: math.unit(6, "feet"),
  20920. default: true
  20921. },
  20922. {
  20923. name: "Macro",
  20924. height: math.unit(150, "feet")
  20925. },
  20926. ]
  20927. ))
  20928. characterMakers.push(() => makeCharacter(
  20929. { name: "Kayda" },
  20930. {
  20931. front: {
  20932. height: math.unit(28, "feet"),
  20933. weight: math.unit(10500, "lb"),
  20934. name: "Front",
  20935. image: {
  20936. source: "./media/characters/kayda/front.svg",
  20937. extra: 1536/1428,
  20938. bottom: 68.7/1603
  20939. }
  20940. },
  20941. back: {
  20942. height: math.unit(28, "feet"),
  20943. weight: math.unit(10500, "lb"),
  20944. name: "Back",
  20945. image: {
  20946. source: "./media/characters/kayda/back.svg",
  20947. extra: 1557/1464,
  20948. bottom: 39.5/1597.49
  20949. }
  20950. },
  20951. dick: {
  20952. height: math.unit(3.858, "feet"),
  20953. name: "Dick",
  20954. image: {
  20955. source: "./media/characters/kayda/dick.svg"
  20956. }
  20957. },
  20958. },
  20959. [
  20960. {
  20961. name: "Macro",
  20962. height: math.unit(28, "feet"),
  20963. default: true
  20964. },
  20965. ]
  20966. ))
  20967. characterMakers.push(() => makeCharacter(
  20968. { name: "Brian", species: "Barbary Lion" },
  20969. {
  20970. front: {
  20971. height: math.unit(10 + 11/12, "feet"),
  20972. weight: math.unit(1400, "lb"),
  20973. name: "Front",
  20974. image: {
  20975. source: "./media/characters/brian/front.svg",
  20976. extra: 737/692,
  20977. bottom: 55.4/785
  20978. }
  20979. },
  20980. },
  20981. [
  20982. {
  20983. name: "Normal",
  20984. height: math.unit(10 + 11/12, "feet"),
  20985. default: true
  20986. },
  20987. ]
  20988. ))
  20989. characterMakers.push(() => makeCharacter(
  20990. { name: "Khemri", species: "Jackal" },
  20991. {
  20992. front: {
  20993. height: math.unit(5 + 8/12, "feet"),
  20994. weight: math.unit(140, "lb"),
  20995. name: "Front",
  20996. image: {
  20997. source: "./media/characters/khemri/front.svg",
  20998. extra: 4780/4059,
  20999. bottom: 80.1/4859.25
  21000. }
  21001. },
  21002. },
  21003. [
  21004. {
  21005. name: "Micro",
  21006. height: math.unit(6, "inches")
  21007. },
  21008. {
  21009. name: "Normal",
  21010. height: math.unit(5 + 8/12, "feet"),
  21011. default: true
  21012. },
  21013. ]
  21014. ))
  21015. characterMakers.push(() => makeCharacter(
  21016. { name: "Felix Braveheart" },
  21017. {
  21018. front: {
  21019. height: math.unit(13, "feet"),
  21020. weight: math.unit(1700, "lb"),
  21021. name: "Front",
  21022. image: {
  21023. source: "./media/characters/felix-braveheart/front.svg",
  21024. extra: 1222/1157,
  21025. bottom: 53.2/1280
  21026. }
  21027. },
  21028. back: {
  21029. height: math.unit(13, "feet"),
  21030. weight: math.unit(1700, "lb"),
  21031. name: "Back",
  21032. image: {
  21033. source: "./media/characters/felix-braveheart/back.svg",
  21034. extra: 1277/1203,
  21035. bottom: 50.2/1327
  21036. }
  21037. },
  21038. feral: {
  21039. height: math.unit(6, "feet"),
  21040. weight: math.unit(400, "lb"),
  21041. name: "Feral",
  21042. image: {
  21043. source: "./media/characters/felix-braveheart/feral.svg",
  21044. extra: 682/625,
  21045. bottom: 6.9/688
  21046. }
  21047. },
  21048. },
  21049. [
  21050. {
  21051. name: "Normal",
  21052. height: math.unit(13, "feet"),
  21053. default: true
  21054. },
  21055. ]
  21056. ))
  21057. characterMakers.push(() => makeCharacter(
  21058. { name: "Shadow Blade" },
  21059. {
  21060. side: {
  21061. height: math.unit(5 + 11/12, "feet"),
  21062. weight: math.unit(1400, "lb"),
  21063. name: "Side",
  21064. image: {
  21065. source: "./media/characters/shadow-blade/side.svg",
  21066. extra: 1726/1267,
  21067. bottom: 58.4/1785
  21068. }
  21069. },
  21070. },
  21071. [
  21072. {
  21073. name: "Normal",
  21074. height: math.unit(5 + 11/12, "feet"),
  21075. default: true
  21076. },
  21077. ]
  21078. ))
  21079. characterMakers.push(() => makeCharacter(
  21080. { name: "Karla Halldor" },
  21081. {
  21082. front: {
  21083. height: math.unit(1 + 6/12, "feet"),
  21084. weight: math.unit(25, "lb"),
  21085. name: "Front",
  21086. image: {
  21087. source: "./media/characters/karla-halldor/front.svg",
  21088. extra: 1459/1383,
  21089. bottom: 12/1472
  21090. }
  21091. },
  21092. },
  21093. [
  21094. {
  21095. name: "Normal",
  21096. height: math.unit(1 + 6/12, "feet"),
  21097. default: true
  21098. },
  21099. ]
  21100. ))
  21101. characterMakers.push(() => makeCharacter(
  21102. { name: "Ariam" },
  21103. {
  21104. front: {
  21105. height: math.unit(6 + 2/12, "feet"),
  21106. weight: math.unit(160, "lb"),
  21107. name: "Front",
  21108. image: {
  21109. source: "./media/characters/ariam/front.svg",
  21110. extra: 714/617,
  21111. bottom: 23.4/737,
  21112. }
  21113. },
  21114. squatting: {
  21115. height: math.unit(4.1, "feet"),
  21116. weight: math.unit(160, "lb"),
  21117. name: "Squatting",
  21118. image: {
  21119. source: "./media/characters/ariam/squatting.svg",
  21120. extra: 2617/2112,
  21121. bottom: 61.2/2681,
  21122. }
  21123. },
  21124. },
  21125. [
  21126. {
  21127. name: "Normal",
  21128. height: math.unit(6 + 2/12, "feet"),
  21129. default: true
  21130. },
  21131. {
  21132. name: "Normal+",
  21133. height: math.unit(4, "meters")
  21134. },
  21135. {
  21136. name: "Macro",
  21137. height: math.unit(50, "meters")
  21138. },
  21139. {
  21140. name: "Macro+",
  21141. height: math.unit(100, "meters")
  21142. },
  21143. {
  21144. name: "Megamacro",
  21145. height: math.unit(20, "km")
  21146. },
  21147. ]
  21148. ))
  21149. characterMakers.push(() => makeCharacter(
  21150. { name: "Qodri Class-of-'Fortwelve-Six" },
  21151. {
  21152. front: {
  21153. height: math.unit(1.67, "meters"),
  21154. weight: math.unit(140, "lb"),
  21155. name: "Front",
  21156. image: {
  21157. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  21158. extra: 438/410,
  21159. bottom: 0.75/439
  21160. }
  21161. },
  21162. },
  21163. [
  21164. {
  21165. name: "Shrunken",
  21166. height: math.unit(7.6, "cm")
  21167. },
  21168. {
  21169. name: "Human Scale",
  21170. height: math.unit(1.67, "meters")
  21171. },
  21172. {
  21173. name: "Wolxi Scale",
  21174. height: math.unit(36.7, "meters"),
  21175. default: true
  21176. },
  21177. ]
  21178. ))
  21179. characterMakers.push(() => makeCharacter(
  21180. { name: "Izue Two-Mothers" },
  21181. {
  21182. front: {
  21183. height: math.unit(1.73, "meters"),
  21184. weight: math.unit(240, "lb"),
  21185. name: "Front",
  21186. image: {
  21187. source: "./media/characters/izue-two-mothers/front.svg",
  21188. extra: 469/437,
  21189. bottom: 1.24/470.6
  21190. }
  21191. },
  21192. },
  21193. [
  21194. {
  21195. name: "Shrunken",
  21196. height: math.unit(7.86, "cm")
  21197. },
  21198. {
  21199. name: "Human Scale",
  21200. height: math.unit(1.73, "meters")
  21201. },
  21202. {
  21203. name: "Wolxi Scale",
  21204. height: math.unit(38, "meters"),
  21205. default: true
  21206. },
  21207. ]
  21208. ))
  21209. characterMakers.push(() => makeCharacter(
  21210. { name: "Teeku Love-Shack" },
  21211. {
  21212. front: {
  21213. height: math.unit(1.55, "meters"),
  21214. weight: math.unit(120, "lb"),
  21215. name: "Front",
  21216. image: {
  21217. source: "./media/characters/teeku-love-shack/front.svg",
  21218. extra: 387/362,
  21219. bottom: 1.51/388
  21220. }
  21221. },
  21222. },
  21223. [
  21224. {
  21225. name: "Shrunken",
  21226. height: math.unit(7, "cm")
  21227. },
  21228. {
  21229. name: "Human Scale",
  21230. height: math.unit(1.55, "meters")
  21231. },
  21232. {
  21233. name: "Wolxi Scale",
  21234. height: math.unit(34.1, "meters"),
  21235. default: true
  21236. },
  21237. ]
  21238. ))
  21239. characterMakers.push(() => makeCharacter(
  21240. { name: "Dejma the Red" },
  21241. {
  21242. front: {
  21243. height: math.unit(1.83, "meters"),
  21244. weight: math.unit(135, "lb"),
  21245. name: "Front",
  21246. image: {
  21247. source: "./media/characters/dejma-the-red/front.svg",
  21248. extra: 480/458,
  21249. bottom: 1.8/482
  21250. }
  21251. },
  21252. },
  21253. [
  21254. {
  21255. name: "Shrunken",
  21256. height: math.unit(8.3, "cm")
  21257. },
  21258. {
  21259. name: "Human Scale",
  21260. height: math.unit(1.83, "meters")
  21261. },
  21262. {
  21263. name: "Wolxi Scale",
  21264. height: math.unit(40, "meters"),
  21265. default: true
  21266. },
  21267. ]
  21268. ))
  21269. characterMakers.push(() => makeCharacter(
  21270. { name: "Aki" },
  21271. {
  21272. front: {
  21273. height: math.unit(1.78, "meters"),
  21274. weight: math.unit(65, "kg"),
  21275. name: "Front",
  21276. image: {
  21277. source: "./media/characters/aki/front.svg",
  21278. extra: 452/415
  21279. }
  21280. },
  21281. frontNsfw: {
  21282. height: math.unit(1.78, "meters"),
  21283. weight: math.unit(65, "kg"),
  21284. name: "Front (NSFW)",
  21285. image: {
  21286. source: "./media/characters/aki/front-nsfw.svg",
  21287. extra: 452/415
  21288. }
  21289. },
  21290. back: {
  21291. height: math.unit(1.78, "meters"),
  21292. weight: math.unit(65, "kg"),
  21293. name: "Back",
  21294. image: {
  21295. source: "./media/characters/aki/back.svg",
  21296. extra: 452/415
  21297. }
  21298. },
  21299. rump: {
  21300. height: math.unit(2.05, "feet"),
  21301. name: "Rump",
  21302. image: {
  21303. source: "./media/characters/aki/rump.svg"
  21304. }
  21305. },
  21306. dick: {
  21307. height: math.unit(0.95, "feet"),
  21308. name: "Dick",
  21309. image: {
  21310. source: "./media/characters/aki/dick.svg"
  21311. }
  21312. },
  21313. },
  21314. [
  21315. {
  21316. name: "Micro",
  21317. height: math.unit(15, "cm")
  21318. },
  21319. {
  21320. name: "Normal",
  21321. height: math.unit(178, "cm"),
  21322. default: true
  21323. },
  21324. {
  21325. name: "Macro",
  21326. height: math.unit(214, "m")
  21327. },
  21328. {
  21329. name: "Macro+",
  21330. height: math.unit(534, "m")
  21331. },
  21332. ]
  21333. ))
  21334. characterMakers.push(() => makeCharacter(
  21335. { name: "Ari" },
  21336. {
  21337. front: {
  21338. height: math.unit(5 + 5/12, "feet"),
  21339. weight: math.unit(120, "lb"),
  21340. name: "Front",
  21341. image: {
  21342. source: "./media/characters/ari/front.svg",
  21343. extra: 714.5/682,
  21344. bottom: 8/722.5
  21345. }
  21346. },
  21347. },
  21348. [
  21349. {
  21350. name: "Normal",
  21351. height: math.unit(5 + 5/12, "feet")
  21352. },
  21353. {
  21354. name: "Macro",
  21355. height: math.unit(100, "feet"),
  21356. default: true
  21357. },
  21358. {
  21359. name: "Megamacro",
  21360. height: math.unit(100, "miles")
  21361. },
  21362. {
  21363. name: "Gigamacro",
  21364. height: math.unit(80000, "miles")
  21365. },
  21366. ]
  21367. ))
  21368. characterMakers.push(() => makeCharacter(
  21369. { name: "Bolt" },
  21370. {
  21371. side: {
  21372. height: math.unit(9, "feet"),
  21373. weight: math.unit(400, "kg"),
  21374. name: "Side",
  21375. image: {
  21376. source: "./media/characters/bolt/side.svg",
  21377. extra: 1126/896,
  21378. bottom: 60/1187.3,
  21379. }
  21380. },
  21381. },
  21382. [
  21383. {
  21384. name: "Micro",
  21385. height: math.unit(5, "inches")
  21386. },
  21387. {
  21388. name: "Normal",
  21389. height: math.unit(9, "feet"),
  21390. default: true
  21391. },
  21392. {
  21393. name: "Macro",
  21394. height: math.unit(700, "feet")
  21395. },
  21396. {
  21397. name: "Max Size",
  21398. height: math.unit(1.52e22, "yottameters")
  21399. },
  21400. ]
  21401. ))
  21402. characterMakers.push(() => makeCharacter(
  21403. { name: "Draekon Sylviar", species: "Dra'gal" },
  21404. {
  21405. front: {
  21406. height: math.unit(4.53, "meters"),
  21407. weight: math.unit(3, "tons"),
  21408. name: "Front",
  21409. image: {
  21410. source: "./media/characters/draekon-sylviar/front.svg",
  21411. extra: 1228/1068,
  21412. bottom: 41/1270
  21413. }
  21414. },
  21415. tail: {
  21416. height: math.unit(1.772, "meter"),
  21417. name: "Tail",
  21418. image: {
  21419. source: "./media/characters/draekon-sylviar/tail.svg"
  21420. }
  21421. },
  21422. head: {
  21423. height: math.unit(1.331, "meter"),
  21424. name: "Head",
  21425. image: {
  21426. source: "./media/characters/draekon-sylviar/head.svg"
  21427. }
  21428. },
  21429. hand: {
  21430. height: math.unit(0.564, "meter"),
  21431. name: "Hand",
  21432. image: {
  21433. source: "./media/characters/draekon-sylviar/hand.svg"
  21434. }
  21435. },
  21436. foot: {
  21437. height: math.unit(0.621, "meter"),
  21438. name: "Foot",
  21439. image: {
  21440. source: "./media/characters/draekon-sylviar/foot.svg",
  21441. bottom: 32/324
  21442. }
  21443. },
  21444. dick: {
  21445. height: math.unit(61, "cm"),
  21446. name: "Dick",
  21447. image: {
  21448. source: "./media/characters/draekon-sylviar/dick.svg"
  21449. }
  21450. },
  21451. dickseparated: {
  21452. height: math.unit(61, "cm"),
  21453. name: "Dick-separated",
  21454. image: {
  21455. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  21456. }
  21457. },
  21458. },
  21459. [
  21460. {
  21461. name: "Small",
  21462. height: math.unit(4.53/2, "meters"),
  21463. default: true
  21464. },
  21465. {
  21466. name: "Normal",
  21467. height: math.unit(4.53, "meters"),
  21468. default: true
  21469. },
  21470. {
  21471. name: "Large",
  21472. height: math.unit(4.53*2, "meters"),
  21473. },
  21474. ]
  21475. ))
  21476. characterMakers.push(() => makeCharacter(
  21477. { name: "Brawler", species: "German Shepherd" },
  21478. {
  21479. front: {
  21480. height: math.unit(6 + 2/12, "feet"),
  21481. weight: math.unit(180, "lb"),
  21482. name: "Front",
  21483. image: {
  21484. source: "./media/characters/brawler/front.svg",
  21485. extra: 3301/3027,
  21486. bottom: 138/3439
  21487. }
  21488. },
  21489. },
  21490. [
  21491. {
  21492. name: "Normal",
  21493. height: math.unit(6 + 2/12, "feet"),
  21494. default: true
  21495. },
  21496. ]
  21497. ))
  21498. characterMakers.push(() => makeCharacter(
  21499. { name: "Alex", species: "Bayleef" },
  21500. {
  21501. front: {
  21502. height: math.unit(11, "feet"),
  21503. weight: math.unit(1000, "lb"),
  21504. name: "Front",
  21505. image: {
  21506. source: "./media/characters/alex/front.svg",
  21507. bottom: 44.5/620
  21508. }
  21509. },
  21510. },
  21511. [
  21512. {
  21513. name: "Micro",
  21514. height: math.unit(5, "inches")
  21515. },
  21516. {
  21517. name: "Normal",
  21518. height: math.unit(11, "feet"),
  21519. default: true
  21520. },
  21521. {
  21522. name: "Macro",
  21523. height: math.unit(9.5e9, "feet")
  21524. },
  21525. {
  21526. name: "Max Size",
  21527. height: math.unit(1.4e283, "yottameters")
  21528. },
  21529. ]
  21530. ))
  21531. characterMakers.push(() => makeCharacter(
  21532. { name: "Zenari" },
  21533. {
  21534. female: {
  21535. height: math.unit(29.9, "m"),
  21536. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  21537. name: "Female",
  21538. image: {
  21539. source: "./media/characters/zenari/female.svg",
  21540. extra: 3281.6/3217,
  21541. bottom: 72.2/3353
  21542. }
  21543. },
  21544. male: {
  21545. height: math.unit(27.7, "m"),
  21546. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  21547. name: "Male",
  21548. image: {
  21549. source: "./media/characters/zenari/male.svg",
  21550. extra: 3008/2991,
  21551. bottom: 54.6/3069
  21552. }
  21553. },
  21554. },
  21555. [
  21556. {
  21557. name: "Macro",
  21558. height: math.unit(29.7, "meters"),
  21559. default: true
  21560. },
  21561. ]
  21562. ))
  21563. characterMakers.push(() => makeCharacter(
  21564. { name: "Mactarian" },
  21565. {
  21566. female: {
  21567. height: math.unit(23.8, "m"),
  21568. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  21569. name: "Female",
  21570. image: {
  21571. source: "./media/characters/mactarian/female.svg",
  21572. extra: 2662/2569,
  21573. bottom: 73/2736
  21574. }
  21575. },
  21576. male: {
  21577. height: math.unit(23.8, "m"),
  21578. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  21579. name: "Male",
  21580. image: {
  21581. source: "./media/characters/mactarian/male.svg",
  21582. extra: 2673/2600,
  21583. bottom: 76/2750
  21584. }
  21585. },
  21586. },
  21587. [
  21588. {
  21589. name: "Macro",
  21590. height: math.unit(23.8, "meters"),
  21591. default: true
  21592. },
  21593. ]
  21594. ))
  21595. characterMakers.push(() => makeCharacter(
  21596. { name: "Umok" },
  21597. {
  21598. female: {
  21599. height: math.unit(19.3, "m"),
  21600. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  21601. name: "Female",
  21602. image: {
  21603. source: "./media/characters/umok/female.svg",
  21604. extra: 2186/2078,
  21605. bottom: 87/2277
  21606. }
  21607. },
  21608. male: {
  21609. height: math.unit(19.5, "m"),
  21610. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  21611. name: "Male",
  21612. image: {
  21613. source: "./media/characters/umok/male.svg",
  21614. extra: 2233/2140,
  21615. bottom: 24.4/2258
  21616. }
  21617. },
  21618. },
  21619. [
  21620. {
  21621. name: "Macro",
  21622. height: math.unit(19.3, "meters"),
  21623. default: true
  21624. },
  21625. ]
  21626. ))
  21627. characterMakers.push(() => makeCharacter(
  21628. { name: "Joraxian" },
  21629. {
  21630. female: {
  21631. height: math.unit(26.15, "m"),
  21632. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  21633. name: "Female",
  21634. image: {
  21635. source: "./media/characters/joraxian/female.svg",
  21636. extra: 2943/2831,
  21637. bottom: 27/2972
  21638. }
  21639. },
  21640. male: {
  21641. height: math.unit(25.4, "m"),
  21642. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  21643. name: "Male",
  21644. image: {
  21645. source: "./media/characters/joraxian/male.svg",
  21646. extra: 2835/2741,
  21647. bottom: 27/2862
  21648. }
  21649. },
  21650. },
  21651. [
  21652. {
  21653. name: "Macro",
  21654. height: math.unit(26.15, "meters"),
  21655. default: true
  21656. },
  21657. ]
  21658. ))
  21659. characterMakers.push(() => makeCharacter(
  21660. { name: "Sthara" },
  21661. {
  21662. female: {
  21663. height: math.unit(21.6, "m"),
  21664. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  21665. name: "Female",
  21666. image: {
  21667. source: "./media/characters/sthara/female.svg",
  21668. extra: 2516/2347,
  21669. bottom: 21.5/2537
  21670. }
  21671. },
  21672. male: {
  21673. height: math.unit(24, "m"),
  21674. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  21675. name: "Male",
  21676. image: {
  21677. source: "./media/characters/sthara/male.svg",
  21678. extra: 2732/2607,
  21679. bottom: 23/2732
  21680. }
  21681. },
  21682. },
  21683. [
  21684. {
  21685. name: "Macro",
  21686. height: math.unit(21.6, "meters"),
  21687. default: true
  21688. },
  21689. ]
  21690. ))
  21691. characterMakers.push(() => makeCharacter(
  21692. { name: "Luka Bryzant" },
  21693. {
  21694. front: {
  21695. height: math.unit(6 + 4/12, "feet"),
  21696. weight: math.unit(175, "lb"),
  21697. name: "Front",
  21698. image: {
  21699. source: "./media/characters/luka-bryzant/front.svg",
  21700. extra: 311/289,
  21701. bottom: 4/315
  21702. }
  21703. },
  21704. back: {
  21705. height: math.unit(6 + 4/12, "feet"),
  21706. weight: math.unit(175, "lb"),
  21707. name: "Back",
  21708. image: {
  21709. source: "./media/characters/luka-bryzant/back.svg",
  21710. extra: 311/289,
  21711. bottom: 3.8/313.7
  21712. }
  21713. },
  21714. },
  21715. [
  21716. {
  21717. name: "Micro",
  21718. height: math.unit(10, "inches")
  21719. },
  21720. {
  21721. name: "Normal",
  21722. height: math.unit(6 + 4/12, "feet"),
  21723. default: true
  21724. },
  21725. {
  21726. name: "Large",
  21727. height: math.unit(12, "feet")
  21728. },
  21729. ]
  21730. ))
  21731. characterMakers.push(() => makeCharacter(
  21732. { name: "Aman Aquila" },
  21733. {
  21734. front: {
  21735. height: math.unit(5 + 7/12, "feet"),
  21736. weight: math.unit(185, "lb"),
  21737. name: "Front",
  21738. image: {
  21739. source: "./media/characters/aman-aquila/front.svg",
  21740. extra: 1013/976,
  21741. bottom: 45.6/1057
  21742. }
  21743. },
  21744. side: {
  21745. height: math.unit(5 + 7/12, "feet"),
  21746. weight: math.unit(185, "lb"),
  21747. name: "Side",
  21748. image: {
  21749. source: "./media/characters/aman-aquila/side.svg",
  21750. extra: 1054/1011,
  21751. bottom: 15/1070
  21752. }
  21753. },
  21754. back: {
  21755. height: math.unit(5 + 7/12, "feet"),
  21756. weight: math.unit(185, "lb"),
  21757. name: "Back",
  21758. image: {
  21759. source: "./media/characters/aman-aquila/back.svg",
  21760. extra: 1026/970,
  21761. bottom: 12/1039
  21762. }
  21763. },
  21764. head: {
  21765. height: math.unit(1.211, "feet"),
  21766. name: "Head",
  21767. image: {
  21768. source: "./media/characters/aman-aquila/head.svg",
  21769. }
  21770. },
  21771. },
  21772. [
  21773. {
  21774. name: "Minimicro",
  21775. height: math.unit(0.057, "inches")
  21776. },
  21777. {
  21778. name: "Micro",
  21779. height: math.unit(7, "inches")
  21780. },
  21781. {
  21782. name: "Mini",
  21783. height: math.unit(3 + 7/12, "feet")
  21784. },
  21785. {
  21786. name: "Normal",
  21787. height: math.unit(5 + 7/12, "feet"),
  21788. default: true
  21789. },
  21790. {
  21791. name: "Macro",
  21792. height: math.unit(157 + 7/12, "feet")
  21793. },
  21794. {
  21795. name: "Megamacro",
  21796. height: math.unit(1557 + 7/12, "feet")
  21797. },
  21798. {
  21799. name: "Gigamacro",
  21800. height: math.unit(15557 + 7/12, "feet")
  21801. },
  21802. ]
  21803. ))
  21804. characterMakers.push(() => makeCharacter(
  21805. { name: "Hiphae", species: "Mouse" },
  21806. {
  21807. front: {
  21808. height: math.unit(3 + 2/12, "inches"),
  21809. weight: math.unit(0.3, "ounces"),
  21810. name: "Front",
  21811. image: {
  21812. source: "./media/characters/hiphae/front.svg",
  21813. extra: 1931/1683,
  21814. bottom: 24/1955
  21815. }
  21816. },
  21817. },
  21818. [
  21819. {
  21820. name: "Normal",
  21821. height: math.unit(3 + 1/2, "inches"),
  21822. default: true
  21823. },
  21824. ]
  21825. ))
  21826. characterMakers.push(() => makeCharacter(
  21827. { name: "Nicky", species: "Shark" },
  21828. {
  21829. front: {
  21830. height: math.unit(5 + 10/12, "feet"),
  21831. weight: math.unit(165, "lb"),
  21832. name: "Front",
  21833. image: {
  21834. source: "./media/characters/nicky/front.svg",
  21835. extra: 3144/2886,
  21836. bottom: 45.6/3192
  21837. }
  21838. },
  21839. back: {
  21840. height: math.unit(5 + 10/12, "feet"),
  21841. weight: math.unit(165, "lb"),
  21842. name: "Back",
  21843. image: {
  21844. source: "./media/characters/nicky/back.svg",
  21845. extra: 3055/2804,
  21846. bottom: 28.4/3087
  21847. }
  21848. },
  21849. frontclothed: {
  21850. height: math.unit(5 + 10/12, "feet"),
  21851. weight: math.unit(165, "lb"),
  21852. name: "Front-clothed",
  21853. image: {
  21854. source: "./media/characters/nicky/front-clothed.svg",
  21855. extra: 3184.9/2926.9,
  21856. bottom: 86.5/3239.9
  21857. }
  21858. },
  21859. foot: {
  21860. height: math.unit(1.16, "feet"),
  21861. name: "Foot",
  21862. image: {
  21863. source: "./media/characters/nicky/foot.svg"
  21864. }
  21865. },
  21866. feet: {
  21867. height: math.unit(1.34, "feet"),
  21868. name: "Feet",
  21869. image: {
  21870. source: "./media/characters/nicky/feet.svg"
  21871. }
  21872. },
  21873. maw: {
  21874. height: math.unit(0.9, "feet"),
  21875. name: "Maw",
  21876. image: {
  21877. source: "./media/characters/nicky/maw.svg"
  21878. }
  21879. },
  21880. },
  21881. [
  21882. {
  21883. name: "Normal",
  21884. height: math.unit(5 + 10/12, "feet"),
  21885. default: true
  21886. },
  21887. {
  21888. name: "Macro",
  21889. height: math.unit(60, "feet")
  21890. },
  21891. {
  21892. name: "Megamacro",
  21893. height: math.unit(1, "mile")
  21894. },
  21895. ]
  21896. ))
  21897. characterMakers.push(() => makeCharacter(
  21898. { name: "Blair" },
  21899. {
  21900. side: {
  21901. height: math.unit(10, "feet"),
  21902. weight: math.unit(600, "lb"),
  21903. name: "Side",
  21904. image: {
  21905. source: "./media/characters/blair/side.svg",
  21906. bottom: 16.6/475,
  21907. extra: 458/431
  21908. }
  21909. },
  21910. },
  21911. [
  21912. {
  21913. name: "Micro",
  21914. height: math.unit(8, "inches")
  21915. },
  21916. {
  21917. name: "Normal",
  21918. height: math.unit(10, "feet"),
  21919. default: true
  21920. },
  21921. {
  21922. name: "Macro",
  21923. height: math.unit(180, "feet")
  21924. },
  21925. ]
  21926. ))
  21927. characterMakers.push(() => makeCharacter(
  21928. { name: "Fisher" },
  21929. {
  21930. front: {
  21931. height: math.unit(5 + 4/12, "feet"),
  21932. weight: math.unit(125, "lb"),
  21933. name: "Front",
  21934. image: {
  21935. source: "./media/characters/fisher/front.svg",
  21936. extra: 444/390,
  21937. bottom: 2/444.8
  21938. }
  21939. },
  21940. },
  21941. [
  21942. {
  21943. name: "Micro",
  21944. height: math.unit(4, "inches")
  21945. },
  21946. {
  21947. name: "Normal",
  21948. height: math.unit(5 + 4/12, "feet"),
  21949. default: true
  21950. },
  21951. {
  21952. name: "Macro",
  21953. height: math.unit(100, "feet")
  21954. },
  21955. ]
  21956. ))
  21957. characterMakers.push(() => makeCharacter(
  21958. { name: "Gliss" },
  21959. {
  21960. front: {
  21961. height: math.unit(6.71, "feet"),
  21962. weight: math.unit(200, "lb"),
  21963. capacity: math.unit(1000000, "people"),
  21964. name: "Front",
  21965. image: {
  21966. source: "./media/characters/gliss/front.svg",
  21967. extra: 2347/2231,
  21968. bottom: 113/2462
  21969. }
  21970. },
  21971. },
  21972. [
  21973. {
  21974. name: "Normal",
  21975. height: math.unit(6.71, "feet"),
  21976. default: true
  21977. },
  21978. ]
  21979. ))
  21980. characterMakers.push(() => makeCharacter(
  21981. { name: "Dune Anderson" },
  21982. {
  21983. side: {
  21984. height: math.unit(1.44, "m"),
  21985. weight: math.unit(80, "kg"),
  21986. name: "Side",
  21987. image: {
  21988. source: "./media/characters/dune-anderson/side.svg",
  21989. bottom: 49/1426
  21990. }
  21991. },
  21992. },
  21993. [
  21994. {
  21995. name: "Wolf-sized",
  21996. height: math.unit(1.44, "meters")
  21997. },
  21998. {
  21999. name: "Normal",
  22000. height: math.unit(5.05, "meters"),
  22001. default: true
  22002. },
  22003. {
  22004. name: "Big",
  22005. height: math.unit(14.4, "meters")
  22006. },
  22007. {
  22008. name: "Huge",
  22009. height: math.unit(144, "meters")
  22010. },
  22011. ]
  22012. ))
  22013. //characters
  22014. function makeCharacters() {
  22015. const results = [];
  22016. characterMakers.forEach(character => {
  22017. results.push(character());
  22018. });
  22019. return results;
  22020. }